diff --git a/.solcover.js b/.solcover.js index bdcf50d1..170df9e5 100644 --- a/.solcover.js +++ b/.solcover.js @@ -6,6 +6,7 @@ module.exports = { "shared/InitializableReentrancyGuard.sol", "integrations", "masset/peripheral", + "masset/versions", "peripheral", "savings/peripheral", "upgradability", diff --git a/contracts/feeders/FeederPool.sol b/contracts/feeders/FeederPool.sol index c4f841be..349821d5 100644 --- a/contracts/feeders/FeederPool.sol +++ b/contracts/feeders/FeederPool.sol @@ -122,7 +122,7 @@ contract FeederPool is BassetPersonal calldata _mAsset, BassetPersonal calldata _fAsset, address[] calldata _mpAssets, - InvariantConfig memory _config + BasicConfig memory _config ) public initializer { InitializableToken._initialize(_nameArg, _symbolArg); diff --git a/contracts/interfaces/IInvariantValidator.sol b/contracts/interfaces/IInvariantValidator.sol index 2a115c6b..fcea0bf4 100644 --- a/contracts/interfaces/IInvariantValidator.sol +++ b/contracts/interfaces/IInvariantValidator.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity 0.8.2; -import { BassetData, InvariantConfig } from "../masset/MassetStructs.sol"; +import "../masset/MassetStructs.sol"; abstract contract IInvariantValidator { // Mint @@ -43,4 +43,10 @@ abstract contract IInvariantValidator { uint256[] calldata _rawOutputs, InvariantConfig memory _config ) external view virtual returns (uint256); + + function computePrice(BassetData[] memory _bAssets, InvariantConfig memory _config) + public + virtual + pure + returns (uint256 price, uint256 k); } diff --git a/contracts/interfaces/IMasset.sol b/contracts/interfaces/IMasset.sol index 10e877e0..bf68bea8 100644 --- a/contracts/interfaces/IMasset.sol +++ b/contracts/interfaces/IMasset.sol @@ -96,6 +96,8 @@ abstract contract IMasset { function bAssetIndexes(address) external view virtual returns (uint8); + function getPrice() external view virtual returns (uint256 price, uint256 k); + // SavingsManager function collectInterest() external virtual returns (uint256 swapFeesGained, uint256 newSupply); @@ -107,13 +109,9 @@ abstract contract IMasset { // Admin function setCacheSize(uint256 _cacheSize) external virtual; - function upgradeForgeValidator(address _newForgeValidator) external virtual; - function setFees(uint256 _swapFee, uint256 _redemptionFee) external virtual; function setTransferFeesFlag(address _bAsset, bool _flag) external virtual; function migrateBassets(address[] calldata _bAssets, address _newIntegration) external virtual; } - -abstract contract Deprecated_BasketManager {} diff --git a/contracts/masset/InvariantValidator.sol b/contracts/masset/InvariantValidator.sol deleted file mode 100644 index 1f922c24..00000000 --- a/contracts/masset/InvariantValidator.sol +++ /dev/null @@ -1,356 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later -pragma solidity 0.8.2; - -import { IInvariantValidator } from "../interfaces/IInvariantValidator.sol"; -import { BassetData, InvariantConfig, WeightLimits } from "../masset/MassetStructs.sol"; -import { Root } from "../shared/Root.sol"; - -/** - * @title InvariantValidator - * @author mStable - * @notice Builds on and enforces the StableSwap invariant conceived by Michael Egorov. (https://www.curve.fi/stableswap-paper.pdf) - * Derived by mStable and adapted for the needs of an mAsset, as described in MIP-7 (http://mips.mstable.org/MIPS/mip-7) - * Calculates and validates the result of Masset operations with respect to the invariant. - * This supports low slippage swaps and applies penalties towards min and max regions. - * @dev VERSION: 1.0 - * DATE: 2021-02-04 - */ -contract InvariantValidator is IInvariantValidator { - uint256 internal constant A_PRECISION = 100; - - /*************************************** - EXTERNAL - ****************************************/ - - /** - * @notice Compute the amount of mAsset received for minting - * with `quantity` amount of bAsset index `i`. - * @param _bAssets Array of all bAsset Data - * @param _i Index of bAsset with which to mint - * @param _rawInput Raw amount of bAsset to use in mint - * @param _config Generalised invariantConfig stored externally - * @return mintAmount Quantity of mAssets minted - */ - function computeMint( - BassetData[] calldata _bAssets, - uint8 _i, - uint256 _rawInput, - InvariantConfig memory _config - ) external view override returns (uint256 mintAmount) { - // 1. Get raw reserves - (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); - // 2. Get value of reserves according to invariant - uint256 k0 = _invariant(x, sum, _config.a); - uint256 scaledInput = (_rawInput * _bAssets[_i].ratio) / 1e8; - - // 3. Add deposit to x and sum - x[_i] += scaledInput; - sum += scaledInput; - // 4. Finalise mint - require(_inBounds(x, sum, _config.limits), "Exceeds weight limits"); - mintAmount = _computeMintOutput(x, sum, k0, _config.a); - } - - /** - * @notice Compute the amount of mAsset received for minting - * with the given array of inputs. - * @param _bAssets Array of all bAsset Data - * @param _indices Indexes of bAssets with which to mint - * @param _rawInputs Raw amounts of bAssets to use in mint - * @param _config Generalised invariantConfig stored externally - * @return mintAmount Quantity of mAssets minted - */ - function computeMintMulti( - BassetData[] calldata _bAssets, - uint8[] calldata _indices, - uint256[] calldata _rawInputs, - InvariantConfig memory _config - ) external view override returns (uint256 mintAmount) { - // 1. Get raw reserves - (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); - // 2. Get value of reserves according to invariant - uint256 k0 = _invariant(x, sum, _config.a); - - // 3. Add deposits to x and sum - uint256 len = _indices.length; - uint8 idx; - uint256 scaledInput; - for (uint256 i = 0; i < len; i++) { - idx = _indices[i]; - scaledInput = (_rawInputs[i] * _bAssets[idx].ratio) / 1e8; - x[idx] += scaledInput; - sum += scaledInput; - } - // 4. Finalise mint - require(_inBounds(x, sum, _config.limits), "Exceeds weight limits"); - mintAmount = _computeMintOutput(x, sum, k0, _config.a); - } - - /** - * @notice Compute the amount of bAsset received for swapping - * `quantity` amount of index `input_idx` to index `output_idx`. - * @param _bAssets Array of all bAsset Data - * @param _i Index of bAsset to swap IN - * @param _o Index of bAsset to swap OUT - * @param _rawInput Raw amounts of input bAsset to input - * @param _feeRate Swap fee rate to apply to output - * @param _config Generalised invariantConfig stored externally - * @return bAssetOutputQuantity Raw bAsset output quantity - * @return scaledSwapFee Swap fee collected, in mAsset terms - */ - function computeSwap( - BassetData[] calldata _bAssets, - uint8 _i, - uint8 _o, - uint256 _rawInput, - uint256 _feeRate, - InvariantConfig memory _config - ) external view override returns (uint256 bAssetOutputQuantity, uint256 scaledSwapFee) { - // 1. Get raw reserves - (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); - // 2. Get value of reserves according to invariant - uint256 k0 = _invariant(x, sum, _config.a); - // 3. Add deposits to x and sum - uint256 scaledInput = (_rawInput * _bAssets[_i].ratio) / 1e8; - x[_i] += scaledInput; - sum += scaledInput; - // 4. Calc total mAsset q - uint256 k1 = _invariant(x, sum, _config.a); - scaledSwapFee = ((k1 - k0) * _feeRate) / 1e18; - // 5. Calc output bAsset - uint256 newOutputReserve = _solveInvariant(x, _config.a, _o, k0 + scaledSwapFee); - uint256 output = x[_o] - newOutputReserve - 1; - bAssetOutputQuantity = (output * 1e8) / _bAssets[_o].ratio; - // 6. Check for bounds - x[_o] -= output; - sum -= output; - require(_inBounds(x, sum, _config.limits), "Exceeds weight limits"); - } - - /** - * @notice Compute the amount of bAsset index `i` received for - * redeeming `quantity` amount of mAsset. - * @param _bAssets Array of all bAsset Data - * @param _o Index of output bAsset - * @param _netMassetQuantity Net amount of mAsset to redeem - * @param _config Generalised invariantConfig stored externally - * @return rawOutputUnits Raw bAsset output returned - */ - function computeRedeem( - BassetData[] calldata _bAssets, - uint8 _o, - uint256 _netMassetQuantity, - InvariantConfig memory _config - ) external view override returns (uint256 rawOutputUnits) { - // 1. Get raw reserves - (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); - // 2. Get value of reserves according to invariant - uint256 k0 = _invariant(x, sum, _config.a); - // 3. Compute bAsset output - uint256 newOutputReserve = _solveInvariant(x, _config.a, _o, k0 - _netMassetQuantity); - uint256 output = x[_o] - newOutputReserve - 1; - rawOutputUnits = (output * 1e8) / _bAssets[_o].ratio; - // 4. Check for max weight - x[_o] -= output; - sum -= output; - require(_inBounds(x, sum, _config.limits), "Exceeds weight limits"); - } - - /** - * @notice Compute the amount of mAsset required to redeem - * a given selection of bAssets. - * @param _bAssets Array of all bAsset Data - * @param _indices Indexes of output bAssets - * @param _rawOutputs Desired raw bAsset outputs - * @param _config Generalised invariantConfig stored externally - * @return totalmAssets Amount of mAsset required to redeem bAssets - */ - function computeRedeemExact( - BassetData[] calldata _bAssets, - uint8[] calldata _indices, - uint256[] calldata _rawOutputs, - InvariantConfig memory _config - ) external view override returns (uint256 totalmAssets) { - // 1. Get raw reserves - (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); - // 2. Get value of reserves according to invariant - uint256 k0 = _invariant(x, sum, _config.a); - // 3. Sub deposits from x and sum - uint256 len = _indices.length; - uint256 ratioed; - for (uint256 i = 0; i < len; i++) { - ratioed = (_rawOutputs[i] * _bAssets[_indices[i]].ratio) / 1e8; - x[_indices[i]] -= ratioed; - sum -= ratioed; - } - require(_inBounds(x, sum, _config.limits), "Exceeds weight limits"); - // 4. Get new value of reserves according to invariant - uint256 k1 = _invariant(x, sum, _config.a); - // 5. Total mAsset is the difference between values - totalmAssets = k0 - k1; - } - - /*************************************** - INTERNAL - ****************************************/ - - /** - * @dev Computes the actual mint output after adding mint inputs - * to the vault balances. - * @param _x Scaled vaultBalances - * @param _sum Sum of vaultBalances, to avoid another loop - * @param _k Previous value of invariant, k, before addition - * @param _a Precise amplification coefficient - * @return mintAmount Amount of value added to invariant, in mAsset terms - */ - function _computeMintOutput( - uint256[] memory _x, - uint256 _sum, - uint256 _k, - uint256 _a - ) internal pure returns (uint256 mintAmount) { - // 1. Get value of reserves according to invariant - uint256 kFinal = _invariant(_x, _sum, _a); - // 2. Total minted is the difference between values - mintAmount = kFinal - _k; - } - - /** - * @dev Simply scaled raw reserve values and returns the sum - * @param _bAssets All bAssets - * @return x Scaled vault balances - * @return sum Sum of scaled vault balances - */ - function _getReserves(BassetData[] memory _bAssets) - internal - pure - returns (uint256[] memory x, uint256 sum) - { - uint256 len = _bAssets.length; - x = new uint256[](len); - uint256 r; - for (uint256 i = 0; i < len; i++) { - BassetData memory bAsset = _bAssets[i]; - r = (bAsset.vaultBalance * bAsset.ratio) / 1e8; - x[i] = r; - sum += r; - } - } - - /** - * @dev Checks that no bAsset reserves exceed max weight - * @param _x Scaled bAsset reserves - * @param _sum Sum of x, precomputed - * @param _limits Config object containing max and min weights - * @return inBounds Bool, true if all assets are within bounds - */ - function _inBounds( - uint256[] memory _x, - uint256 _sum, - WeightLimits memory _limits - ) internal pure returns (bool inBounds) { - uint256 len = _x.length; - inBounds = true; - uint256 w; - for (uint256 i = 0; i < len; i++) { - w = (_x[i] * 1e18) / _sum; - if (w > _limits.max || w < _limits.min) return false; - } - } - - /*************************************** - INVARIANT - ****************************************/ - - /** - * @dev Compute the invariant f(x) for a given array of supplies `x`. - * @param _x Scaled vault balances - * @param _sum Sum of scaled vault balances - * @param _a Precise amplification coefficient - * @return k Cumulative value of all assets according to the invariant - */ - function _invariant( - uint256[] memory _x, - uint256 _sum, - uint256 _a - ) internal pure returns (uint256 k) { - uint256 len = _x.length; - - if (_sum == 0) return 0; - - uint256 nA = _a * len; - uint256 kPrev; - k = _sum; - - for (uint256 i = 0; i < 256; i++) { - uint256 kP = k; - for (uint256 j = 0; j < len; j++) { - kP = (kP * k) / (_x[j] * len); - } - kPrev = k; - k = - (((nA * _sum) / A_PRECISION + (kP * len)) * k) / - (((nA - A_PRECISION) * k) / A_PRECISION + ((len + 1) * kP)); - if (_hasConverged(k, kPrev)) { - return k; - } - } - - revert("Invariant did not converge"); - } - - /** - * @dev Checks if a given solution has converged within a factor of 1 - * @param _k Current solution k - * @param _kPrev Previous iteration solution - * @return hasConverged Bool, true if diff abs(k, kPrev) <= 1 - */ - function _hasConverged(uint256 _k, uint256 _kPrev) internal pure returns (bool) { - if (_kPrev > _k) { - return (_kPrev - _k) <= 1; - } else { - return (_k - _kPrev) <= 1; - } - } - - /** - * @dev Solves the invariant for _i with respect to target K, given an array of reserves. - * @param _x Scaled reserve balances - * @param _a Precise amplification coefficient - * @param _idx Index of asset for which to solve - * @param _targetK Target invariant value K - * @return y New reserve of _i - */ - function _solveInvariant( - uint256[] memory _x, - uint256 _a, - uint8 _idx, - uint256 _targetK - ) internal pure returns (uint256 y) { - uint256 len = _x.length; - require(_idx >= 0 && _idx < len, "Invalid index"); - - (uint256 sum_, uint256 nA, uint256 kP) = (0, _a * len, _targetK); - - for (uint256 i = 0; i < len; i++) { - if (i != _idx) { - sum_ += _x[i]; - kP = (kP * _targetK) / (_x[i] * len); - } - } - - uint256 c = (((kP * _targetK) * A_PRECISION) / nA) / len; - uint256 g = (_targetK * (nA - A_PRECISION)) / nA; - uint256 b = 0; - - if (g > sum_) { - b = g - sum_; - y = (Root.sqrt((b**2) + (4 * c)) + b) / 2 + 1; - } else { - b = sum_ - g; - y = (Root.sqrt((b**2) + (4 * c)) - b) / 2 + 1; - } - - if (y < 1e8) revert("Invalid solution"); - } -} diff --git a/contracts/masset/Masset.sol b/contracts/masset/Masset.sol index 229d81bc..96f04331 100644 --- a/contracts/masset/Masset.sol +++ b/contracts/masset/Masset.sol @@ -2,21 +2,19 @@ pragma solidity 0.8.2; pragma abicoder v2; -// External -import { IInvariantValidator } from "../interfaces/IInvariantValidator.sol"; - // Internal import { Initializable } from "../shared/@openzeppelin-2.5/Initializable.sol"; -import { InitializableToken } from "../shared/InitializableToken.sol"; +import { InitializableToken, IERC20 } from "../shared/InitializableToken.sol"; import { ImmutableModule } from "../shared/ImmutableModule.sol"; import { InitializableReentrancyGuard } from "../shared/InitializableReentrancyGuard.sol"; -import { IMasset, Deprecated_BasketManager } from "../interfaces/IMasset.sol"; +import { IMasset } from "../interfaces/IMasset.sol"; import "./MassetStructs.sol"; // Libs import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol"; import { StableMath } from "../shared/StableMath.sol"; -import { Manager } from "./Manager.sol"; +import { MassetLogic } from "./MassetLogic.sol"; +import { MassetManager } from "./MassetManager.sol"; /** * @title Masset @@ -82,41 +80,25 @@ contract Masset is event FeesChanged(uint256 swapFee, uint256 redemptionFee); event WeightLimitsChanged(uint128 min, uint128 max); event ForgeValidatorChanged(address forgeValidator); + event DeficitMinted(uint256 amt); + event SurplusBurned(address creditor, uint256 amt); - // Release 1.0 VARS - IInvariantValidator public forgeValidator; - bool private forgeValidatorLocked; - // Deprecated - maintain for storage layout in mUSD - Deprecated_BasketManager private deprecated_basketManager; - - // Basic redemption fee information - uint256 public swapFee; - uint256 private MAX_FEE; - - // Release 1.1 VARS - uint256 public redemptionFee; - - // Release 2.0 VARS - uint256 public cacheSize; - uint256 public surplus; - - // Release 3.0 VARS - // Struct holding Basket details - BassetPersonal[] public bAssetPersonal; - BassetData[] public bAssetData; - mapping(address => uint8) public override bAssetIndexes; - uint8 public maxBassets; - BasketState public basket; // Amplification Data + uint256 private constant MAX_FEE = 1e16; uint256 private constant A_PRECISION = 100; - AmpData public ampData; - WeightLimits public weightLimits; + uint256 private immutable RECOL_FEE; + // Core data storage + mapping(address => uint8) public override bAssetIndexes; + MassetData public data; /** * @dev Constructor to set immutable bytecode * @param _nexus Nexus address */ - constructor(address _nexus) ImmutableModule(_nexus) {} + constructor(address _nexus, uint256 _recolFee) ImmutableModule(_nexus) { + require(_recolFee <= 5e13, "RecolFee too high"); + RECOL_FEE = _recolFee; + } /** * @dev Initialization function for upgradable proxy contract. @@ -124,32 +106,25 @@ contract Masset is * To avoid variable shadowing appended `Arg` after arguments name. * @param _nameArg Name of the mAsset * @param _symbolArg Symbol of the mAsset - * @param _forgeValidator Address of the AMM implementation * @param _bAssets Array of Basset data */ function initialize( string calldata _nameArg, string calldata _symbolArg, - address _forgeValidator, BassetPersonal[] calldata _bAssets, - InvariantConfig memory _config + BasicConfig memory _config ) public initializer { InitializableToken._initialize(_nameArg, _symbolArg); _initializeReentrancyGuard(); - forgeValidator = IInvariantValidator(_forgeValidator); - - maxBassets = 10; - uint256 len = _bAssets.length; require(len > 0, "No bAssets"); for (uint256 i = 0; i < len; i++) { - Manager.addBasset( - bAssetPersonal, - bAssetData, + MassetManager.addBasset( + data.bAssetPersonal, + data.bAssetData, bAssetIndexes, - maxBassets, _bAssets[i].addr, _bAssets[i].integrator, 1e8, @@ -158,13 +133,12 @@ contract Masset is } uint64 startA = SafeCast.toUint64(_config.a * A_PRECISION); - ampData = AmpData(startA, startA, 0, 0); - weightLimits = _config.limits; + data.ampData = AmpData(startA, startA, 0, 0); + data.weightLimits = _config.limits; - MAX_FEE = 2e16; - swapFee = 6e14; - redemptionFee = 3e14; - cacheSize = 1e17; + data.swapFee = 6e14; + data.redemptionFee = 3e14; + data.cacheSize = 1e17; } /** @@ -190,7 +164,7 @@ contract Masset is // Internal fn for modifier to reduce deployment size function _isHealthy() internal view { - BasketState memory basket_ = basket; + BasketState memory basket_ = data.basket; require(!basket_.undergoingRecol && !basket_.failed, "Unhealthy"); } @@ -204,7 +178,7 @@ contract Masset is // Internal fn for modifier to reduce deployment size function _noRecol() internal view { - BasketState memory basket_ = basket; + BasketState memory basket_ = data.basket; require(!basket_.undergoingRecol, "In recol"); } @@ -227,7 +201,22 @@ contract Masset is uint256 _minOutputQuantity, address _recipient ) external override nonReentrant whenHealthy returns (uint256 mintOutput) { - mintOutput = _mintTo(_input, _inputQuantity, _minOutputQuantity, _recipient); + require(_recipient != address(0), "Invalid recipient"); + require(_inputQuantity > 0, "Qty==0"); + + Asset memory input = _getAsset(_input); + + mintOutput = MassetLogic.mint( + data, + _getConfig(), + input, + _inputQuantity, + _minOutputQuantity + ); + + // Mint the Masset + _mint(_recipient, mintOutput); + emit Minted(msg.sender, _recipient, mintOutput, _input, _inputQuantity); } /** @@ -246,7 +235,22 @@ contract Masset is uint256 _minOutputQuantity, address _recipient ) external override nonReentrant whenHealthy returns (uint256 mintOutput) { - mintOutput = _mintMulti(_inputs, _inputQuantities, _minOutputQuantity, _recipient); + require(_recipient != address(0), "Invalid recipient"); + uint256 len = _inputQuantities.length; + require(len > 0 && len == _inputs.length, "Input array mismatch"); + + uint8[] memory indexes = _getAssets(_inputs); + mintOutput = MassetLogic.mintMulti( + data, + _getConfig(), + indexes, + _inputQuantities, + _minOutputQuantity + ); + + // Mint the Masset + _mint(_recipient, mintOutput); + emit MintedMulti(msg.sender, _recipient, mintOutput, _inputs, _inputQuantities); } /** @@ -263,9 +267,9 @@ contract Masset is { require(_inputQuantity > 0, "Qty==0"); - (uint8 idx, ) = _getAsset(_input); + Asset memory input = _getAsset(_input); - mintOutput = forgeValidator.computeMint(bAssetData, idx, _inputQuantity, _getConfig()); + mintOutput = MassetLogic.computeMint(data.bAssetData, input.idx, _inputQuantity, _getConfig()); } /** @@ -282,94 +286,8 @@ contract Masset is { uint256 len = _inputQuantities.length; require(len > 0 && len == _inputs.length, "Input array mismatch"); - (uint8[] memory indexes, ) = _getBassets(_inputs); - return forgeValidator.computeMintMulti(bAssetData, indexes, _inputQuantities, _getConfig()); - } - - /*************************************** - MINTING (INTERNAL) - ****************************************/ - - /** @dev Mint Single */ - function _mintTo( - address _input, - uint256 _inputQuantity, - uint256 _minMassetQuantity, - address _recipient - ) internal returns (uint256 mAssetMinted) { - require(_recipient != address(0), "Invalid recipient"); - require(_inputQuantity > 0, "Qty==0"); - BassetData[] memory allBassets = bAssetData; - (uint8 bAssetIndex, BassetPersonal memory personal) = _getAsset(_input); - Cache memory cache = _getCacheDetails(); - // Transfer collateral to the platform integration address and call deposit - uint256 quantityDeposited = - Manager.depositTokens( - personal, - allBassets[bAssetIndex].ratio, - _inputQuantity, - cache.maxCache - ); - // Validation should be after token transfer, as bAssetQty is unknown before - mAssetMinted = forgeValidator.computeMint( - allBassets, - bAssetIndex, - quantityDeposited, - _getConfig() - ); - require(mAssetMinted >= _minMassetQuantity, "Mint quantity < min qty"); - // Log the Vault increase - can only be done when basket is healthy - bAssetData[bAssetIndex].vaultBalance = - allBassets[bAssetIndex].vaultBalance + - SafeCast.toUint128(quantityDeposited); - // Mint the Masset - _mint(_recipient, mAssetMinted); - emit Minted(msg.sender, _recipient, mAssetMinted, _input, quantityDeposited); - } - - /** @dev Mint Multi */ - function _mintMulti( - address[] memory _inputs, - uint256[] memory _inputQuantities, - uint256 _minMassetQuantity, - address _recipient - ) internal returns (uint256 mAssetMinted) { - require(_recipient != address(0), "Invalid recipient"); - uint256 len = _inputQuantities.length; - require(len > 0 && len == _inputs.length, "Input array mismatch"); - // Load bAssets from storage into memory - (uint8[] memory indexes, BassetPersonal[] memory personals) = _getBassets(_inputs); - BassetData[] memory allBassets = bAssetData; - Cache memory cache = _getCacheDetails(); - uint256[] memory quantitiesDeposited = new uint256[](len); - // Transfer the Bassets to the integrator, update storage and calc MassetQ - for (uint256 i = 0; i < len; i++) { - uint256 bAssetQuantity = _inputQuantities[i]; - if (bAssetQuantity > 0) { - uint8 idx = indexes[i]; - BassetData memory data = allBassets[idx]; - BassetPersonal memory personal = personals[i]; - uint256 quantityDeposited = - Manager.depositTokens(personal, data.ratio, bAssetQuantity, cache.maxCache); - quantitiesDeposited[i] = quantityDeposited; - bAssetData[idx].vaultBalance = - data.vaultBalance + - SafeCast.toUint128(quantityDeposited); - } - } - // Validate the proposed mint, after token transfer - mAssetMinted = forgeValidator.computeMintMulti( - allBassets, - indexes, - quantitiesDeposited, - _getConfig() - ); - require(mAssetMinted >= _minMassetQuantity, "Mint quantity < min qty"); - require(mAssetMinted > 0, "Zero mAsset quantity"); - - // Mint the Masset - _mint(_recipient, mAssetMinted); - emit MintedMulti(msg.sender, _recipient, mAssetMinted, _inputs, _inputQuantities); + uint8[] memory indexes = _getAssets(_inputs); + return MassetLogic.computeMintMulti(data.bAssetData, indexes, _inputQuantities, _getConfig()); } /*************************************** @@ -393,7 +311,32 @@ contract Masset is uint256 _minOutputQuantity, address _recipient ) external override nonReentrant whenHealthy returns (uint256 swapOutput) { - swapOutput = _swap(_input, _output, _inputQuantity, _minOutputQuantity, _recipient); + require(_recipient != address(0), "Invalid recipient"); + require(_input != _output, "Invalid pair"); + require(_inputQuantity > 0, "Invalid swap quantity"); + + Asset memory input = _getAsset(_input); + Asset memory output = _getAsset(_output); + + uint256 scaledFee; + (swapOutput, scaledFee) = MassetLogic.swap( + data, + _getConfig(), + input, + output, + _inputQuantity, + _minOutputQuantity, + _recipient + ); + + emit Swapped( + msg.sender, + input.addr, + output.addr, + swapOutput, + scaledFee, + _recipient + ); } /** @@ -412,93 +355,21 @@ contract Masset is require(_input != _output, "Invalid pair"); require(_inputQuantity > 0, "Invalid swap quantity"); - // 1. Load the bAssets from storage into memory - BassetData[] memory allBassets = bAssetData; - (uint8 inputIdx, ) = _getAsset(_input); - (uint8 outputIdx, ) = _getAsset(_output); + // 1. Load the bAssets from storage + Asset memory input = _getAsset(_input); + Asset memory output = _getAsset(_output); // 2. If a bAsset swap, calculate the validity, output and fee - (swapOutput, ) = forgeValidator.computeSwap( - allBassets, - inputIdx, - outputIdx, + (swapOutput, ) = MassetLogic.computeSwap( + data.bAssetData, + input.idx, + output.idx, _inputQuantity, - swapFee, + data.swapFee, _getConfig() ); } - /*************************************** - SWAP (INTERNAL) - ****************************************/ - - /** @dev Swap single */ - function _swap( - address _input, - address _output, - uint256 _inputQuantity, - uint256 _minOutputQuantity, - address _recipient - ) internal returns (uint256 swapOutput) { - require(_recipient != address(0), "Invalid recipient"); - require(_input != _output, "Invalid pair"); - require(_inputQuantity > 0, "Invalid swap quantity"); - - // 1. Load the bAssets from storage into memory - BassetData[] memory allBassets = bAssetData; - (uint8 inputIdx, BassetPersonal memory inputPersonal) = _getAsset(_input); - (uint8 outputIdx, BassetPersonal memory outputPersonal) = _getAsset(_output); - // 2. Load cache - Cache memory cache = _getCacheDetails(); - // 3. Deposit the input tokens - uint256 quantityDeposited = - Manager.depositTokens( - inputPersonal, - allBassets[inputIdx].ratio, - _inputQuantity, - cache.maxCache - ); - // 3.1. Update the input balance - bAssetData[inputIdx].vaultBalance = - allBassets[inputIdx].vaultBalance + - SafeCast.toUint128(quantityDeposited); - - // 3. Validate the swap - uint256 scaledFee; - (swapOutput, scaledFee) = forgeValidator.computeSwap( - allBassets, - inputIdx, - outputIdx, - quantityDeposited, - swapFee, - _getConfig() - ); - require(swapOutput >= _minOutputQuantity, "Output qty < minimum qty"); - require(swapOutput > 0, "Zero output quantity"); - //4. Settle the swap - //4.1. Decrease output bal - Manager.withdrawTokens( - swapOutput, - outputPersonal, - allBassets[outputIdx], - _recipient, - cache.maxCache - ); - bAssetData[outputIdx].vaultBalance = - allBassets[outputIdx].vaultBalance - - SafeCast.toUint128(swapOutput); - // Save new surplus to storage - surplus = cache.surplus + scaledFee; - emit Swapped( - msg.sender, - inputPersonal.addr, - outputPersonal.addr, - swapOutput, - scaledFee, - _recipient - ); - } - /*************************************** REDEMPTION (PUBLIC) ****************************************/ @@ -521,7 +392,33 @@ contract Masset is uint256 _minOutputQuantity, address _recipient ) external override nonReentrant whenNoRecol returns (uint256 outputQuantity) { - outputQuantity = _redeem(_output, _mAssetQuantity, _minOutputQuantity, _recipient); + require(_recipient != address(0), "Invalid recipient"); + require(_mAssetQuantity > 0, "Qty==0"); + + Asset memory output = _getAsset(_output); + + // Get config before burning. Config > Burn > CacheSize + InvariantConfig memory config = _getConfig(); + _burn(msg.sender, _mAssetQuantity); + + uint256 scaledFee; + (outputQuantity, scaledFee) = MassetLogic.redeem( + data, + config, + output, + _mAssetQuantity, + _minOutputQuantity, + _recipient + ); + + emit Redeemed( + msg.sender, + _recipient, + _mAssetQuantity, + output.addr, + outputQuantity, + scaledFee + ); } /** @@ -536,7 +433,31 @@ contract Masset is uint256[] calldata _minOutputQuantities, address _recipient ) external override nonReentrant whenNoRecol returns (uint256[] memory outputQuantities) { - outputQuantities = _redeemMasset(_mAssetQuantity, _minOutputQuantities, _recipient); + require(_recipient != address(0), "Invalid recipient"); + require(_mAssetQuantity > 0, "Qty==0"); + + // Get config before burning. Burn > CacheSize + InvariantConfig memory config = _getConfig(); + _burn(msg.sender, _mAssetQuantity); + + address[] memory outputs; + uint256 scaledFee; + (scaledFee, outputs, outputQuantities) = MassetLogic.redeemProportionately( + data, + config, + _mAssetQuantity, + _minOutputQuantities, + _recipient + ); + + emit RedeemedMulti( + msg.sender, + _recipient, + _mAssetQuantity, + outputs, + outputQuantities, + scaledFee + ); } /** @@ -554,12 +475,33 @@ contract Masset is uint256 _maxMassetQuantity, address _recipient ) external override nonReentrant whenNoRecol returns (uint256 mAssetQuantity) { - mAssetQuantity = _redeemExactBassets( - _outputs, + require(_recipient != address(0), "Invalid recipient"); + uint256 len = _outputQuantities.length; + require(len > 0 && len == _outputs.length, "Invalid array input"); + require(_maxMassetQuantity > 0, "Qty==0"); + + uint8[] memory indexes = _getAssets(_outputs); + + uint256 fee; + (mAssetQuantity, fee) = MassetLogic.redeemExactBassets( + data, + _getConfig(), + indexes, _outputQuantities, _maxMassetQuantity, _recipient ); + + _burn(msg.sender, mAssetQuantity); + + emit RedeemedMulti( + msg.sender, + _recipient, + mAssetQuantity, + _outputs, + _outputQuantities, + fee + ); } /** @@ -576,14 +518,14 @@ contract Masset is { require(_mAssetQuantity > 0, "Qty==0"); - (uint8 idx, ) = _getAsset(_output); + Asset memory output = _getAsset(_output); - uint256 scaledFee = _mAssetQuantity.mulTruncate(swapFee); - bAssetOutput = forgeValidator.computeRedeem( - bAssetData, - idx, - _mAssetQuantity - scaledFee, - _getConfig() + (bAssetOutput, ) = MassetLogic.computeRedeem( + data.bAssetData, + output.idx, + _mAssetQuantity, + _getConfig(), + data.swapFee ); } @@ -600,182 +542,11 @@ contract Masset is uint256 len = _outputQuantities.length; require(len > 0 && len == _outputs.length, "Invalid array input"); - (uint8[] memory indexes, ) = _getBassets(_outputs); + uint8[] memory indexes = _getAssets(_outputs); // calculate the value of mAssets need to cover the value of bAssets being redeemed - uint256 mAssetRedeemed = - forgeValidator.computeRedeemExact(bAssetData, indexes, _outputQuantities, _getConfig()); - mAssetQuantity = mAssetRedeemed.divPrecisely(1e18 - swapFee) + 1; - } - - /*************************************** - REDEMPTION (INTERNAL) - ****************************************/ - - /** - * @dev Redeem mAsset for a single bAsset - */ - function _redeem( - address _output, - uint256 _inputQuantity, - uint256 _minOutputQuantity, - address _recipient - ) internal returns (uint256 bAssetQuantity) { - require(_recipient != address(0), "Invalid recipient"); - require(_inputQuantity > 0, "Qty==0"); - - // Load the bAsset data from storage into memory - BassetData[] memory allBassets = bAssetData; - (uint8 bAssetIndex, BassetPersonal memory personal) = _getAsset(_output); - // Calculate redemption quantities - uint256 scaledFee = _inputQuantity.mulTruncate(swapFee); - bAssetQuantity = forgeValidator.computeRedeem( - allBassets, - bAssetIndex, - _inputQuantity - scaledFee, - _getConfig() - ); - require(bAssetQuantity >= _minOutputQuantity, "bAsset qty < min qty"); - require(bAssetQuantity > 0, "Output == 0"); - // Apply fees, burn mAsset and return bAsset to recipient - // 1.0. Burn the full amount of Masset - _burn(msg.sender, _inputQuantity); - surplus += scaledFee; - Cache memory cache = _getCacheDetails(); - // 2.0. Transfer the Bassets to the recipient - Manager.withdrawTokens( - bAssetQuantity, - personal, - allBassets[bAssetIndex], - _recipient, - cache.maxCache - ); - // 3.0. Set vault balance - bAssetData[bAssetIndex].vaultBalance = - allBassets[bAssetIndex].vaultBalance - - SafeCast.toUint128(bAssetQuantity); - - emit Redeemed( - msg.sender, - _recipient, - _inputQuantity, - personal.addr, - bAssetQuantity, - scaledFee - ); - } - - /** - * @dev Redeem mAsset for proportional amount of bAssets - */ - function _redeemMasset( - uint256 _inputQuantity, - uint256[] calldata _minOutputQuantities, - address _recipient - ) internal returns (uint256[] memory outputQuantities) { - require(_recipient != address(0), "Invalid recipient"); - require(_inputQuantity > 0, "Qty==0"); - - // Calculate mAsset redemption quantities - uint256 scaledFee = _inputQuantity.mulTruncate(redemptionFee); - uint256 mAssetRedemptionAmount = _inputQuantity - scaledFee; - - // Burn mAsset quantity - _burn(msg.sender, _inputQuantity); - surplus += scaledFee; - - // Calc cache and total mAsset circulating - Cache memory cache = _getCacheDetails(); - // Total mAsset = (totalSupply + _inputQuantity - scaledFee) + surplus - uint256 totalMasset = cache.vaultBalanceSum + mAssetRedemptionAmount; - - // Load the bAsset data from storage into memory - BassetData[] memory allBassets = bAssetData; - - uint256 len = allBassets.length; - address[] memory outputs = new address[](len); - outputQuantities = new uint256[](len); - for (uint256 i = 0; i < len; i++) { - // Get amount out, proportionate to redemption quantity - // Use `cache.sum` here as the total mAsset supply is actually totalSupply + surplus - uint256 amountOut = (allBassets[i].vaultBalance * mAssetRedemptionAmount) / totalMasset; - require(amountOut > 1, "Output == 0"); - amountOut -= 1; - require(amountOut >= _minOutputQuantities[i], "bAsset qty < min qty"); - // Set output in array - (outputQuantities[i], outputs[i]) = (amountOut, bAssetPersonal[i].addr); - // Transfer the bAsset to the recipient - Manager.withdrawTokens( - amountOut, - bAssetPersonal[i], - allBassets[i], - _recipient, - cache.maxCache - ); - // reduce vaultBalance - bAssetData[i].vaultBalance = allBassets[i].vaultBalance - SafeCast.toUint128(amountOut); - } - - emit RedeemedMulti( - msg.sender, - _recipient, - _inputQuantity, - outputs, - outputQuantities, - scaledFee - ); - } - - /** @dev Redeem mAsset for one or more bAssets */ - function _redeemExactBassets( - address[] memory _outputs, - uint256[] memory _outputQuantities, - uint256 _maxMassetQuantity, - address _recipient - ) internal returns (uint256 mAssetQuantity) { - require(_recipient != address(0), "Invalid recipient"); - uint256 len = _outputQuantities.length; - require(len > 0 && len == _outputs.length, "Invalid array input"); - require(_maxMassetQuantity > 0, "Qty==0"); - - (uint8[] memory indexes, BassetPersonal[] memory personal) = _getBassets(_outputs); - // Load bAsset data from storage to memory - BassetData[] memory allBassets = bAssetData; - // Validate redemption - uint256 mAssetRequired = - forgeValidator.computeRedeemExact(allBassets, indexes, _outputQuantities, _getConfig()); - mAssetQuantity = mAssetRequired.divPrecisely(1e18 - swapFee); - uint256 fee = mAssetQuantity - mAssetRequired; - require(mAssetQuantity > 0, "Must redeem some mAssets"); - mAssetQuantity += 1; - require(mAssetQuantity <= _maxMassetQuantity, "Redeem mAsset qty > max quantity"); - // Apply fees, burn mAsset and return bAsset to recipient - // 1.0. Burn the full amount of Masset - _burn(msg.sender, mAssetQuantity); - surplus += fee; - Cache memory cache = _getCacheDetails(); - // 2.0. Transfer the Bassets to the recipient and count fees - for (uint256 i = 0; i < len; i++) { - uint8 idx = indexes[i]; - Manager.withdrawTokens( - _outputQuantities[i], - personal[i], - allBassets[idx], - _recipient, - cache.maxCache - ); - bAssetData[idx].vaultBalance = - allBassets[idx].vaultBalance - - SafeCast.toUint128(_outputQuantities[i]); - } - emit RedeemedMulti( - msg.sender, - _recipient, - mAssetQuantity, - _outputs, - _outputQuantities, - fee - ); + (mAssetQuantity, ) = + MassetLogic.computeRedeemExact(data.bAssetData, indexes, _outputQuantities, _getConfig(), data.swapFee); } /*************************************** @@ -787,39 +558,39 @@ contract Masset is * @return b Basket struct */ function getBasket() external view override returns (bool, bool) { - return (basket.undergoingRecol, basket.failed); + return (data.basket.undergoingRecol, data.basket.failed); } /** * @dev Get data for a all bAssets in basket * @return personal Struct[] with full bAsset data - * @return data Number of bAssets in the Basket + * @return bData Number of bAssets in the Basket */ function getBassets() external view override - returns (BassetPersonal[] memory personal, BassetData[] memory data) + returns (BassetPersonal[] memory personal, BassetData[] memory bData) { - return (bAssetPersonal, bAssetData); + return (data.bAssetPersonal, data.bAssetData); } /** * @dev Get data for a specific bAsset, if it exists * @param _bAsset Address of bAsset * @return personal Struct with full bAsset data - * @return data Struct with full bAsset data + * @return bData Struct with full bAsset data */ function getBasset(address _bAsset) external view override - returns (BassetPersonal memory personal, BassetData memory data) + returns (BassetPersonal memory personal, BassetData memory bData) { uint8 idx = bAssetIndexes[_bAsset]; - personal = bAssetPersonal[idx]; + personal = data.bAssetPersonal[idx]; require(personal.addr == _bAsset, "Invalid asset"); - data = bAssetData[idx]; + bData = data.bAssetData[idx]; } /** @@ -829,66 +600,54 @@ contract Masset is return _getConfig(); } - /*************************************** - GETTERS - INTERNAL - ****************************************/ - /** - * vaultBalanceSum = totalSupply + 'surplus' - * maxCache = vaultBalanceSum * (cacheSize / 1e18) - * surplus is simply surplus, to reduce SLOADs + * @notice Gets the price of the fpToken, and invariant value k + * @return price Price of an fpToken + * @return k Total value of basket, k */ - struct Cache { - uint256 vaultBalanceSum; - uint256 maxCache; - uint256 surplus; + function getPrice() external view override returns (uint256 price, uint256 k) { + return MassetLogic.computePrice(data.bAssetData, _getConfig()); } - /** - * @dev Gets the supply and cache details for the mAsset, taking into account the surplus - * @return Cache containing (tracked) sum of vault balances, ideal cache size and surplus - */ - function _getCacheDetails() internal view returns (Cache memory) { - // read surplus from storage into memory - uint256 _surplus = surplus; - uint256 sum = totalSupply() + _surplus; - return Cache(sum, sum.mulTruncate(cacheSize), _surplus); - } + /*************************************** + GETTERS - INTERNAL + ****************************************/ /** * @dev Gets a bAsset from storage - * @param _asset Address of the asset - * @return idx Index of the asset - * @return personal Personal details for the asset + * @param _asset Address of the asset + * @return asset Struct containing bAsset details (idx, data) */ function _getAsset(address _asset) internal view - returns (uint8 idx, BassetPersonal memory personal) + returns (Asset memory asset) { - idx = bAssetIndexes[_asset]; - personal = bAssetPersonal[idx]; - require(personal.addr == _asset, "Invalid asset"); + asset.idx = bAssetIndexes[_asset]; + asset.addr = _asset; + asset.exists = data.bAssetPersonal[asset.idx].addr == _asset; + require(asset.exists, "Invalid asset"); } + /** * @dev Gets a an array of bAssets from storage and protects against duplicates * @param _bAssets Addresses of the assets * @return indexes Indexes of the assets - * @return personal Personal details for the assets */ - function _getBassets(address[] memory _bAssets) + function _getAssets(address[] memory _bAssets) internal view - returns (uint8[] memory indexes, BassetPersonal[] memory personal) + returns (uint8[] memory indexes) { uint256 len = _bAssets.length; indexes = new uint8[](len); - personal = new BassetPersonal[](len); + Asset memory input_; for (uint256 i = 0; i < len; i++) { - (indexes[i], personal[i]) = _getAsset(_bAssets[i]); + input_ = _getAsset(_bAssets[i]); + indexes[i] = input_.idx; for (uint256 j = i + 1; j < len; j++) { require(_bAssets[i] != _bAssets[j], "Duplicate asset"); @@ -900,14 +659,14 @@ contract Masset is * @dev Gets all config needed for general InvariantValidator calls */ function _getConfig() internal view returns (InvariantConfig memory) { - return InvariantConfig(_getA(), weightLimits); + return InvariantConfig(totalSupply() + data.surplus, _getA(), data.weightLimits, RECOL_FEE); } /** * @dev Gets current amplification var A */ function _getA() internal view returns (uint256) { - AmpData memory ampData_ = ampData; + AmpData memory ampData_ = data.ampData; uint64 endA = ampData_.targetA; uint64 endTime = ampData_.rampEndTime; @@ -949,10 +708,10 @@ contract Masset is // Set the surplus variable to 1 to optimise for SSTORE costs. // If setting to 0 here, it would save 5k per savings deposit, but cost 20k for the // first surplus call (a SWAP or REDEEM). - uint256 surplusFees = surplus; + uint256 surplusFees = data.surplus; if (surplusFees > 1) { mintAmount = surplusFees - 1; - surplus = 1; + data.surplus = 1; // mint new mAsset to savings manager _mint(msg.sender, mintAmount); @@ -969,7 +728,7 @@ contract Masset is /** * @dev Collects the interest generated from the Basket, minting a relative - * amount of mAsset and sends it over to the SavingsManager. + * amount of mAsset and sends it over to the SavingsMassetManager. * @return mintAmount mAsset units generated from interest collected from lending markets * @return newSupply mAsset total supply after mint */ @@ -981,14 +740,13 @@ contract Masset is nonReentrant returns (uint256 mintAmount, uint256 newSupply) { - uint256[] memory gains; - (mintAmount, gains) = Manager.collectPlatformInterest( - bAssetPersonal, - bAssetData, - forgeValidator, - _getConfig() + (uint8[] memory idxs, uint256[] memory gains) = MassetManager.collectPlatformInterest( + data.bAssetPersonal, + data.bAssetData ); + mintAmount = MassetLogic.computeMintMulti(data.bAssetData, idxs, gains, _getConfig()); + require(mintAmount > 0, "Must collect something"); _mint(msg.sender, mintAmount); @@ -1009,24 +767,11 @@ contract Masset is function setCacheSize(uint256 _cacheSize) external override onlyGovernor { require(_cacheSize <= 2e17, "Must be <= 20%"); - cacheSize = _cacheSize; + data.cacheSize = _cacheSize; emit CacheSizeChanged(_cacheSize); } - /** - * @dev Upgrades the version of ForgeValidator protocol. Governor can do this - * only while ForgeValidator is unlocked. - * @param _newForgeValidator Address of the new ForgeValidator - */ - function upgradeForgeValidator(address _newForgeValidator) external override onlyGovernor { - require(!forgeValidatorLocked, "ForgeVal locked"); - require(_newForgeValidator != address(0), "Null address"); - - forgeValidator = IInvariantValidator(_newForgeValidator); - - emit ForgeValidatorChanged(_newForgeValidator); - } /** * @dev Set the ecosystem fee for sewapping bAssets or redeeming specific bAssets @@ -1036,8 +781,8 @@ contract Masset is require(_swapFee <= MAX_FEE, "Swap rate oob"); require(_redemptionFee <= MAX_FEE, "Redemption rate oob"); - swapFee = _swapFee; - redemptionFee = _redemptionFee; + data.swapFee = _swapFee; + data.redemptionFee = _redemptionFee; emit FeesChanged(_swapFee, _redemptionFee); } @@ -1048,10 +793,10 @@ contract Masset is * @param _max Weight where 100% = 1e18 */ function setWeightLimits(uint128 _min, uint128 _max) external onlyGovernor { - require(_min <= 1e18 / (bAssetData.length * 2), "Min weight oob"); - require(_max >= 1e18 / (bAssetData.length - 1), "Max weight oob"); + require(_min <= 1e18 / (data.bAssetData.length * 2), "Min weight oob"); + require(_max >= 1e18 / (data.bAssetData.length - 1), "Max weight oob"); - weightLimits = WeightLimits(_min, _max); + data.weightLimits = WeightLimits(_min, _max); emit WeightLimitsChanged(_min, _max); } @@ -1062,7 +807,7 @@ contract Masset is * @param _flag Charge transfer fee when its set to 'true', otherwise 'false' */ function setTransferFeesFlag(address _bAsset, bool _flag) external override onlyGovernor { - Manager.setTransferFeesFlag(bAssetPersonal, bAssetIndexes, _bAsset, _flag); + MassetManager.setTransferFeesFlag(data.bAssetPersonal, bAssetIndexes, _bAsset, _flag); } /** @@ -1078,7 +823,7 @@ contract Masset is override onlyGovernor { - Manager.migrateBassets(bAssetPersonal, bAssetIndexes, _bAssets, _newIntegration); + MassetManager.migrateBassets(data.bAssetPersonal, bAssetIndexes, _bAssets, _newIntegration); } /** @@ -1088,7 +833,7 @@ contract Masset is * or above (f) */ function handlePegLoss(address _bAsset, bool _belowPeg) external onlyGovernor { - Manager.handlePegLoss(basket, bAssetPersonal, bAssetIndexes, _bAsset, _belowPeg); + MassetManager.handlePegLoss(data.basket, data.bAssetPersonal, bAssetIndexes, _bAsset, _belowPeg); } /** @@ -1096,7 +841,7 @@ contract Masset is * @param _bAsset Address of the bAsset */ function negateIsolation(address _bAsset) external onlyGovernor { - Manager.negateIsolation(basket, bAssetPersonal, bAssetIndexes, _bAsset); + MassetManager.negateIsolation(data.basket, data.bAssetPersonal, bAssetIndexes, _bAsset); } /** @@ -1105,7 +850,7 @@ contract Masset is * @param _rampEndTime Time at which A will arrive at _targetA */ function startRampA(uint256 _targetA, uint256 _rampEndTime) external onlyGovernor { - Manager.startRampA(ampData, _targetA, _rampEndTime, _getA(), A_PRECISION); + MassetManager.startRampA(data.ampData, _targetA, _rampEndTime, _getA(), A_PRECISION); } /** @@ -1113,6 +858,35 @@ contract Masset is * it to whatever the current value is. */ function stopRampA() external onlyGovernor { - Manager.stopRampA(ampData, _getA()); + MassetManager.stopRampA(data.ampData, _getA()); + } + + /** + * @dev Mints deficit to SAVE if k > token supply + */ + function mintDeficit() external returns (uint256 mintAmount) { + require(msg.sender == _governor() || msg.sender == _proxyAdmin(), "Gov or ProxyAdmin"); + + InvariantConfig memory config = _getConfig(); + (, uint256 k) = MassetLogic.computePrice(data.bAssetData, config); + require(k > config.supply, "No deficit"); + mintAmount = k - config.supply; + data.surplus += mintAmount; + + emit DeficitMinted(mintAmount); + } + + /** + * @dev Burns surplus if token supply > k + */ + function burnSurplus() external returns (uint256 burnAmount) { + InvariantConfig memory config = _getConfig(); + (, uint256 k) = MassetLogic.computePrice(data.bAssetData, config); + require(config.supply > k, "No surplus"); + burnAmount = config.supply - k; + + _burn(msg.sender, burnAmount); + + emit SurplusBurned(msg.sender, burnAmount); } } diff --git a/contracts/masset/MassetLogic.sol b/contracts/masset/MassetLogic.sol new file mode 100644 index 00000000..e82d800c --- /dev/null +++ b/contracts/masset/MassetLogic.sol @@ -0,0 +1,914 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later +pragma solidity 0.8.2; + +// External +import { IPlatformIntegration } from "../interfaces/IPlatformIntegration.sol"; + +// Internal +import "../masset/MassetStructs.sol"; + +// Libs +import { Root } from "../shared/Root.sol"; +import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; +import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; +import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol"; +import { MassetHelpers } from "../shared/MassetHelpers.sol"; +import { StableMath } from "../shared/StableMath.sol"; + +/** + * @title InvariantValidator + * @author mStable + * @notice Builds on and enforces the StableSwap invariant conceived by Michael Egorov. (https://www.curve.fi/stableswap-paper.pdf) + * Derived by mStable and adapted for the needs of an mAsset, as described in MIP-7 (http://mips.mstable.org/MIPS/mip-7) + * Calculates and validates the result of Masset operations with respect to the invariant. + * This supports low slippage swaps and applies penalties towards min and max regions. + * @dev VERSION: 1.0 + * DATE: 2021-02-04 + */ +library MassetLogic { + using StableMath for uint256; + using SafeERC20 for IERC20; + + uint256 internal constant A_PRECISION = 100; + + /*************************************** + MINT + ****************************************/ + + /** + * @notice Transfers token in, updates internal balances and computes the mAsset output + * @param _data Masset storage state + * @param _config Core config for use in the invariant validator + * @param _input Data on the bAsset to deposit for the minted mAsset. + * @param _inputQuantity Quantity in input token units. + * @param _minOutputQuantity Minimum mAsset quantity to be minted. This protects against slippage. + * @return mintOutput Quantity of mAsset minted from the deposited bAsset. + */ + function mint( + MassetData storage _data, + InvariantConfig calldata _config, + Asset calldata _input, + uint256 _inputQuantity, + uint256 _minOutputQuantity + ) external returns (uint256 mintOutput) { + BassetData[] memory cachedBassetData = _data.bAssetData; + // Transfer collateral to the platform integration address and call deposit + uint256 quantityDeposited = + _depositTokens( + _data.bAssetPersonal[_input.idx], + cachedBassetData[_input.idx].ratio, + _inputQuantity, + _getCacheDetails(_data, _config.supply) + ); + // Validation should be after token transfer, as bAssetQty is unknown before + mintOutput = computeMint( + cachedBassetData, + _input.idx, + quantityDeposited, + _config + ); + require(mintOutput >= _minOutputQuantity, "Mint quantity < min qty"); + // Log the Vault increase - can only be done when basket is healthy + _data.bAssetData[_input.idx].vaultBalance = + cachedBassetData[_input.idx].vaultBalance + + SafeCast.toUint128(quantityDeposited); + } + + /** + * @notice Transfers tokens in, updates internal balances and computes the mAsset output. + * Only fAsset & mAsset are supported in this path. + * @param _data Masset storage state + * @param _config Core config for use in the invariant validator + * @param _indices Non-duplicate addresses of the bAssets to deposit for the minted mAsset. + * @param _inputQuantities Quantity of each input in input token units. + * @param _minOutputQuantity Minimum mAsset quantity to be minted. This protects against slippage. + * @return mintOutput Quantity of mAsset minted from the deposited bAsset. + */ + function mintMulti( + MassetData storage _data, + InvariantConfig calldata _config, + uint8[] calldata _indices, + uint256[] calldata _inputQuantities, + uint256 _minOutputQuantity + ) external returns (uint256 mintOutput) { + uint256 len = _indices.length; + uint256[] memory quantitiesDeposited = new uint256[](len); + BassetData[] memory cachedBassetData = _data.bAssetData; + uint256 maxCache = _getCacheDetails(_data, _config.supply); + // Transfer the Bassets to the integrator, update storage and calc MassetQ + for (uint256 i = 0; i < len; i++) { + if (_inputQuantities[i] > 0) { + uint8 idx = _indices[i]; + BassetData memory bData = cachedBassetData[idx]; + quantitiesDeposited[i] = + _depositTokens(_data.bAssetPersonal[idx], bData.ratio, _inputQuantities[i], maxCache); + + + _data.bAssetData[idx].vaultBalance = + bData.vaultBalance + + SafeCast.toUint128(quantitiesDeposited[i]); + } + } + // Validate the proposed mint, after token transfer + mintOutput = computeMintMulti( + cachedBassetData, + _indices, + quantitiesDeposited, + _config + ); + require(mintOutput >= _minOutputQuantity, "Mint quantity < min qty"); + require(mintOutput > 0, "Zero mAsset quantity"); + } + + /*************************************** + SWAP + ****************************************/ + + /** + * @notice Swaps two assets - either internally between fAsset<>mAsset, or between fAsset<>mpAsset by + * first routing through the mAsset pool. + * @param _data Masset storage state + * @param _config Core config for use in the invariant validator + * @param _input Data on bAsset to deposit + * @param _output Data on bAsset to withdraw + * @param _inputQuantity Units of input bAsset to swap in + * @param _minOutputQuantity Minimum quantity of the swap output asset. This protects against slippage + * @param _recipient Address to transfer output asset to + * @return swapOutput Quantity of output asset returned from swap + * @return scaledFee Fee paid, in mAsset terms + */ + function swap( + MassetData storage _data, + InvariantConfig calldata _config, + Asset calldata _input, + Asset calldata _output, + uint256 _inputQuantity, + uint256 _minOutputQuantity, + address _recipient + ) external returns (uint256 swapOutput, uint256 scaledFee) { + BassetData[] memory cachedBassetData = _data.bAssetData; + // 3. Deposit the input tokens + uint256 quantityDeposited = + _depositTokens( + _data.bAssetPersonal[_input.idx], + cachedBassetData[_input.idx].ratio, + _inputQuantity, + _getCacheDetails(_data, _config.supply) + ); + // 3.1. Update the input balance + _data.bAssetData[_input.idx].vaultBalance = + cachedBassetData[_input.idx].vaultBalance + + SafeCast.toUint128(quantityDeposited); + + // 3. Validate the swap + (swapOutput, scaledFee) = computeSwap( + cachedBassetData, + _input.idx, + _output.idx, + quantityDeposited, + _data.swapFee, + _config + ); + require(swapOutput >= _minOutputQuantity, "Output qty < minimum qty"); + require(swapOutput > 0, "Zero output quantity"); + //4. Settle the swap + //4.1. Decrease output bal + uint256 maxCache = _getCacheDetails(_data, _config.supply); + _withdrawTokens( + swapOutput, + _data.bAssetPersonal[_output.idx], + cachedBassetData[_output.idx], + _recipient, + maxCache + ); + _data.bAssetData[_output.idx].vaultBalance = + cachedBassetData[_output.idx].vaultBalance - + SafeCast.toUint128(swapOutput); + // Save new surplus to storage + _data.surplus += scaledFee; + } + + /*************************************** + REDEEM + ****************************************/ + + /** + * @notice Burns a specified quantity of the senders mAsset in return for a bAsset. The output amount is derived + * from the invariant. Supports redemption into either the fAsset, mAsset or assets in the mAsset basket. + * @param _data Masset storage state + * @param _config Core config for use in the invariant validator + * @param _output Data on bAsset to withdraw + * @param _inputQuantity Quantity of mAsset to burn + * @param _minOutputQuantity Minimum bAsset quantity to receive for the burnt mAsset. This protects against slippage. + * @param _recipient Address to transfer the withdrawn bAssets to. + * @return bAssetQuantity Quanity of bAsset units received for the burnt mAsset + * @return scaledFee Fee paid, in mAsset terms + */ + function redeem( + MassetData storage _data, + InvariantConfig calldata _config, + Asset calldata _output, + uint256 _inputQuantity, + uint256 _minOutputQuantity, + address _recipient + ) external returns (uint256 bAssetQuantity, uint256 scaledFee) { + // Load the bAsset data from storage into memory + BassetData[] memory cachedBassetData = _data.bAssetData; + // Calculate redemption quantities + (bAssetQuantity, scaledFee) = computeRedeem( + cachedBassetData, + _output.idx, + _inputQuantity, + _config, + _data.swapFee + ); + require(bAssetQuantity >= _minOutputQuantity, "bAsset qty < min qty"); + require(bAssetQuantity > 0, "Output == 0"); + // Apply fees, burn mAsset and return bAsset to recipient + _data.surplus += scaledFee; + // 2.0. Transfer the Bassets to the recipient + uint256 maxCache = _getCacheDetails(_data, _config.supply - _inputQuantity + scaledFee); + _withdrawTokens( + bAssetQuantity, + _data.bAssetPersonal[_output.idx], + cachedBassetData[_output.idx], + _recipient, + maxCache + ); + // 3.0. Set vault balance + _data.bAssetData[_output.idx].vaultBalance = + cachedBassetData[_output.idx].vaultBalance - + SafeCast.toUint128(bAssetQuantity); + } + + /** + * @dev Credits a recipient with a proportionate amount of bAssets, relative to current vault + * balance levels and desired mAsset quantity. Burns the mAsset as payment. Only fAsset & mAsset are supported in this path. + * @param _data Masset storage state + * @param _config Core config for use in the invariant validator + * @param _inputQuantity Quantity of mAsset to redeem + * @param _minOutputQuantities Min units of output to receive + * @param _recipient Address to credit the withdrawn bAssets + * @return scaledFee Fee collected in mAsset terms + * @return outputs Array of output asset addresses + * @return outputQuantities Array of output asset quantities + */ + function redeemProportionately( + MassetData storage _data, + InvariantConfig calldata _config, + uint256 _inputQuantity, + uint256[] calldata _minOutputQuantities, + address _recipient + ) + external + returns ( + uint256 scaledFee, + address[] memory outputs, + uint256[] memory outputQuantities + ) + { + // Load the bAsset data from storage into memory + BassetData[] memory cachedBassetData = _data.bAssetData; + + // Calculate mAsset redemption quantities + uint256 deductedInput; + (deductedInput, scaledFee) = _getDeducted(cachedBassetData, _config, _inputQuantity, _data.redemptionFee); + + _data.surplus += scaledFee; + + // Calc cache and total mAsset circulating + uint256 maxCache = _getCacheDetails(_data, _config.supply - _inputQuantity + scaledFee); + + uint256 len = cachedBassetData.length; + outputs = new address[](len); + outputQuantities = new uint256[](len); + for (uint256 i = 0; i < len; i++) { + // Get amount out, proportionate to redemption quantity + uint256 amountOut = (cachedBassetData[i].vaultBalance * deductedInput) / _config.supply; + require(amountOut > 1, "Output == 0"); + amountOut -= 1; + require(amountOut >= _minOutputQuantities[i], "bAsset qty < min qty"); + // reduce vaultBalance + _data.bAssetData[i].vaultBalance = cachedBassetData[i].vaultBalance - SafeCast.toUint128(amountOut); + // Set output in array + BassetPersonal memory personal = _data.bAssetPersonal[i]; + (outputQuantities[i], outputs[i]) = (amountOut, personal.addr); + // Transfer the bAsset to the recipient + _withdrawTokens( + amountOut, + personal, + cachedBassetData[i], + _recipient, + maxCache + ); + } + } + + + /** @dev Internal func to get the deducted input to avoid stack depth error */ + function _getDeducted( + BassetData[] memory _bData, + InvariantConfig memory _config, + uint256 _input, + uint256 _redemptionFee + ) + internal + pure + returns (uint256 deductedInput, uint256 scaledFee) + { + deductedInput = _input; + // If supply > k, deduct recolFee + (uint256 price, ) = computePrice(_bData, _config); + if (price < 1e18) { + deductedInput -= ((_input * _config.recolFee) / 1e18); + } + scaledFee = deductedInput.mulTruncate(_redemptionFee); + deductedInput -= scaledFee; + } + + /** + * @dev Credits a recipient with a certain quantity of selected bAssets, in exchange for burning the + * relative mAsset quantity from the sender. Only fAsset & mAsset (0,1) are supported in this path. + * @param _data Masset storage state + * @param _config Core config for use in the invariant validator + * @param _indices Indices of the bAssets to receive + * @param _outputQuantities Units of the bAssets to receive + * @param _maxMassetQuantity Maximum mAsset quantity to burn for the received bAssets. This protects against slippage. + * @param _recipient Address to receive the withdrawn bAssets + * @return mAssetQuantity Quantity of mAsset units to burn as payment + * @return fee Fee collected, in mAsset terms + */ + function redeemExactBassets( + MassetData storage _data, + InvariantConfig memory _config, + uint8[] calldata _indices, + uint256[] calldata _outputQuantities, + uint256 _maxMassetQuantity, + address _recipient + ) external returns (uint256 mAssetQuantity, uint256 fee) { + // Load bAsset data from storage to memory + BassetData[] memory cachedBassetData = _data.bAssetData; + + (mAssetQuantity, fee) = + computeRedeemExact(cachedBassetData, _indices, _outputQuantities, _config, _data.swapFee); + require(mAssetQuantity <= _maxMassetQuantity, "Redeem mAsset qty > max quantity"); + // Apply fees, burn mAsset and return bAsset to recipient + _data.surplus += fee; + // Transfer the Bassets to the recipient and count fees + uint256 maxCache = _getCacheDetails(_data, _config.supply - mAssetQuantity + fee); + for (uint256 i = 0; i < _indices.length; i++) { + uint8 idx = _indices[i]; + _withdrawTokens( + _outputQuantities[i], + _data.bAssetPersonal[idx], + cachedBassetData[idx], + _recipient, + maxCache + ); + _data.bAssetData[idx].vaultBalance = + cachedBassetData[idx].vaultBalance - + SafeCast.toUint128(_outputQuantities[i]); + } + } + + /*************************************** + FORGING - INTERNAL + ****************************************/ + + /** + * @dev Deposits a given asset to the system. If there is sufficient room for the asset + * in the cache, then just transfer, otherwise reset the cache to the desired mid level by + * depositing the delta in the platform + */ + function _depositTokens( + BassetPersonal memory _bAsset, + uint256 _bAssetRatio, + uint256 _quantity, + uint256 _maxCache + ) internal returns (uint256 quantityDeposited) { + // 0. If integration is 0, short circuit + if (_bAsset.integrator == address(0)) { + (uint256 received, ) = + MassetHelpers.transferReturnBalance( + msg.sender, + address(this), + _bAsset.addr, + _quantity + ); + return received; + } + + // 1 - Send all to PI, using the opportunity to get the cache balance and net amount transferred + uint256 cacheBal; + (quantityDeposited, cacheBal) = MassetHelpers.transferReturnBalance( + msg.sender, + _bAsset.integrator, + _bAsset.addr, + _quantity + ); + + // 2 - Deposit X if necessary + // 2.1 - Deposit if xfer fees + if (_bAsset.hasTxFee) { + uint256 deposited = + IPlatformIntegration(_bAsset.integrator).deposit( + _bAsset.addr, + quantityDeposited, + true + ); + + return StableMath.min(deposited, quantityDeposited); + } + // 2.2 - Else Deposit X if Cache > % + // This check is in place to ensure that any token with a txFee is rejected + require(quantityDeposited == _quantity, "Asset not fully transferred"); + + uint256 relativeMaxCache = _maxCache.divRatioPrecisely(_bAssetRatio); + + if (cacheBal > relativeMaxCache) { + uint256 delta = cacheBal - (relativeMaxCache / 2); + IPlatformIntegration(_bAsset.integrator).deposit(_bAsset.addr, delta, false); + } + } + + /** + * @dev Withdraws a given asset from its platformIntegration. If there is sufficient liquidity + * in the cache, then withdraw from there, otherwise withdraw from the lending market and reset the + * cache to the mid level. + */ + function _withdrawTokens( + uint256 _quantity, + BassetPersonal memory _personal, + BassetData memory _data, + address _recipient, + uint256 _maxCache + ) internal { + if (_quantity == 0) return; + + // 1.0 If there is no integrator, send from here + if (_personal.integrator == address(0)) { + IERC20(_personal.addr).safeTransfer(_recipient, _quantity); + } + // 1.1 If txFee then short circuit - there is no cache + else if (_personal.hasTxFee) { + IPlatformIntegration(_personal.integrator).withdraw( + _recipient, + _personal.addr, + _quantity, + _quantity, + true + ); + } + // 1.2. Else, withdraw from either cache or main vault + else { + uint256 cacheBal = IERC20(_personal.addr).balanceOf(_personal.integrator); + // 2.1 - If balance b in cache, simply withdraw + if (cacheBal >= _quantity) { + IPlatformIntegration(_personal.integrator).withdrawRaw( + _recipient, + _personal.addr, + _quantity + ); + } + // 2.2 - Else reset the cache to X, or as far as possible + // - Withdraw X+b from platform + // - Send b to user + else { + uint256 relativeMidCache = _maxCache.divRatioPrecisely(_data.ratio) / 2; + uint256 totalWithdrawal = + StableMath.min( + relativeMidCache + _quantity - cacheBal, + _data.vaultBalance - SafeCast.toUint128(cacheBal) + ); + + IPlatformIntegration(_personal.integrator).withdraw( + _recipient, + _personal.addr, + _quantity, + totalWithdrawal, + false + ); + } + } + } + + /** + * @dev Gets the max cache size, given the supply of mAsset + * @return maxCache Max units of any given bAsset that should be held in the cache + */ + function _getCacheDetails(MassetData storage _data, uint256 _supply) + internal + view + returns (uint256 maxCache) + { + maxCache = (_supply * _data.cacheSize) / 1e18; + } + + /*************************************** + INVARIANT + ****************************************/ + + /** + * @notice Compute the amount of mAsset received for minting + * with `quantity` amount of bAsset index `i`. + * @param _bAssets Array of all bAsset Data + * @param _i Index of bAsset with which to mint + * @param _rawInput Raw amount of bAsset to use in mint + * @param _config Generalised invariantConfig stored externally + * @return mintAmount Quantity of mAssets minted + */ + function computeMint( + BassetData[] memory _bAssets, + uint8 _i, + uint256 _rawInput, + InvariantConfig memory _config + ) public view returns (uint256 mintAmount) { + // 1. Get raw reserves + (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); + // 2. Get value of reserves according to invariant + uint256 k0 = _invariant(x, sum, _config.a); + uint256 scaledInput = (_rawInput * _bAssets[_i].ratio) / 1e8; + + // 3. Add deposit to x and sum + x[_i] += scaledInput; + sum += scaledInput; + // 4. Finalise mint + require(_inBounds(x, sum, _config.limits), "Exceeds weight limits"); + mintAmount = _computeMintOutput(x, sum, k0, _config); + } + + /** + * @notice Compute the amount of mAsset received for minting + * with the given array of inputs. + * @param _bAssets Array of all bAsset Data + * @param _indices Indexes of bAssets with which to mint + * @param _rawInputs Raw amounts of bAssets to use in mint + * @param _config Generalised invariantConfig stored externally + * @return mintAmount Quantity of mAssets minted + */ + function computeMintMulti( + BassetData[] memory _bAssets, + uint8[] memory _indices, + uint256[] memory _rawInputs, + InvariantConfig memory _config + ) public view returns (uint256 mintAmount) { + // 1. Get raw reserves + (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); + // 2. Get value of reserves according to invariant + uint256 k0 = _invariant(x, sum, _config.a); + + // 3. Add deposits to x and sum + uint256 len = _indices.length; + uint8 idx; + uint256 scaledInput; + for (uint256 i = 0; i < len; i++) { + idx = _indices[i]; + scaledInput = (_rawInputs[i] * _bAssets[idx].ratio) / 1e8; + x[idx] += scaledInput; + sum += scaledInput; + } + // 4. Finalise mint + require(_inBounds(x, sum, _config.limits), "Exceeds weight limits"); + mintAmount = _computeMintOutput(x, sum, k0, _config); + } + + /** + * @notice Compute the amount of bAsset received for swapping + * `quantity` amount of index `input_idx` to index `output_idx`. + * @param _bAssets Array of all bAsset Data + * @param _i Index of bAsset to swap IN + * @param _o Index of bAsset to swap OUT + * @param _rawInput Raw amounts of input bAsset to input + * @param _feeRate Swap fee rate to apply to output + * @param _config Generalised invariantConfig stored externally + * @return bAssetOutputQuantity Raw bAsset output quantity + * @return scaledSwapFee Swap fee collected, in mAsset terms + */ + function computeSwap( + BassetData[] memory _bAssets, + uint8 _i, + uint8 _o, + uint256 _rawInput, + uint256 _feeRate, + InvariantConfig memory _config + ) public view returns (uint256 bAssetOutputQuantity, uint256 scaledSwapFee) { + // 1. Get raw reserves + (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); + // 2. Get value of reserves according to invariant + uint256 k0 = _invariant(x, sum, _config.a); + // 3. Add deposits to x and sum + uint256 scaledInput = (_rawInput * _bAssets[_i].ratio) / 1e8; + x[_i] += scaledInput; + sum += scaledInput; + // 4. Calc total mAsset q + uint256 k2; + (k2, scaledSwapFee) = _getSwapFee(k0, _invariant(x, sum, _config.a), _feeRate, _config); + // 5. Calc output bAsset + uint256 newOutputReserve = _solveInvariant(x, _config.a, _o, k2); + require(newOutputReserve < x[_o], "Zero swap output"); + uint256 output = x[_o] - newOutputReserve - 1; + bAssetOutputQuantity = (output * 1e8) / _bAssets[_o].ratio; + // 6. Check for bounds + x[_o] -= output; + sum -= output; + require(_inBounds(x, sum, _config.limits), "Exceeds weight limits"); + } + + /** @dev Gets swap fee and scales to avoid stack depth errors in computeSwap */ + function _getSwapFee( + uint256 _k0, + uint256 _k1, + uint256 _feeRate, + InvariantConfig memory _config + ) internal pure returns (uint256 k2, uint256 scaledSwapFee) { + uint256 minted = _k1 - _k0; + // Under col? Deduct fee + if (_config.supply > _k0) { + minted -= ((minted * _config.recolFee) / 1e18); + } + // base swap fee + scaledSwapFee = (minted * _feeRate) / 1e18; + k2 = _k1 - minted + scaledSwapFee; + // swap fee in lpToken terms + scaledSwapFee = (scaledSwapFee * _config.supply) / _k0; + } + + /** + * @notice Compute the amount of bAsset index `i` received for + * redeeming `quantity` amount of mAsset. + * @param _bAssets Array of all bAsset Data + * @param _o Index of output bAsset + * @param _grossMassetQuantity Net amount of mAsset to redeem + * @param _config Generalised invariantConfig stored externally + * @return rawOutputUnits Raw bAsset output returned + */ + function computeRedeem( + BassetData[] memory _bAssets, + uint8 _o, + uint256 _grossMassetQuantity, + InvariantConfig memory _config, + uint256 _feeRate + ) public view returns (uint256 rawOutputUnits, uint256 scaledFee) { + // 1. Get raw reserves + (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); + // 2. Get value of reserves according to invariant + uint256 k0 = _invariant(x, sum, _config.a); + uint256 redemption; + (redemption, scaledFee) = _getFee(_grossMassetQuantity, _config, _feeRate, k0); + uint256 kFinal = (k0 * (_config.supply - redemption)) / _config.supply + 1; + // 3. Compute bAsset output + uint256 newOutputReserve = _solveInvariant(x, _config.a, _o, kFinal); + uint256 output = x[_o] - newOutputReserve - 1; + rawOutputUnits = (output * 1e8) / _bAssets[_o].ratio; + // 4. Check for max weight + x[_o] -= output; + sum -= output; + require(_inBounds(x, sum, _config.limits), "Exceeds weight limits"); + } + + function _getFee( + uint256 _grossMassetQuantity, + InvariantConfig memory _config, + uint256 _feeRate, + uint256 _k0 + ) internal pure returns (uint256 redemption, uint256 scaledFee) { + redemption = _grossMassetQuantity; + if (_config.supply > _k0) { + redemption -= ((redemption * _config.recolFee) / 1e18); + } + scaledFee = redemption.mulTruncate(_feeRate); + redemption -= scaledFee; + } + + /** + * @notice Compute the amount of mAsset required to redeem + * a given selection of bAssets. + * @param _bAssets Array of all bAsset Data + * @param _indices Indexes of output bAssets + * @param _rawOutputs Desired raw bAsset outputs + * @param _config Generalised invariantConfig stored externally + * @return grossMasset Amount of mAsset required to redeem bAssets + * @return fee Fee to subtract from gross + */ + function computeRedeemExact( + BassetData[] memory _bAssets, + uint8[] memory _indices, + uint256[] memory _rawOutputs, + InvariantConfig memory _config, + uint256 _feeRate + ) public view returns (uint256 grossMasset, uint256 fee) { + // 1. Get raw reserves + (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); + // 2. Get value of reserves according to invariant + uint256 k0 = _invariant(x, sum, _config.a); + // 3. Sub deposits from x and sum + uint256 len = _indices.length; + uint256 ratioed; + for (uint256 i = 0; i < len; i++) { + ratioed = (_rawOutputs[i] * _bAssets[_indices[i]].ratio) / 1e8; + x[_indices[i]] -= ratioed; + sum -= ratioed; + } + require(_inBounds(x, sum, _config.limits), "Exceeds weight limits"); + // 4. Get new value of reserves according to invariant + uint256 k1 = _invariant(x, sum, _config.a); + // 5. Total mAsset is the difference between values + uint256 redeemed = (_config.supply * (k0 - k1)) / k0; + require(redeemed > 1e6, "Must redeem > 1e6 units"); + grossMasset = redeemed.divPrecisely(1e18 - _feeRate); + fee = grossMasset - redeemed; + grossMasset += 1; + if (_config.supply > k0) { + grossMasset = ((grossMasset * 1e18) / (1e18 - _config.recolFee)); + } + } + + /** + * @notice Gets the price of the mAsset, and invariant value k + * @param _bAssets Array of all bAsset Data + * @param _config Generalised InvariantConfig stored externally + * @return price Price of an mAsset + * @return k Total value of basket, k + */ + function computePrice(BassetData[] memory _bAssets, InvariantConfig memory _config) + public + pure + returns (uint256 price, uint256 k) + { + (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); + k = _invariant(x, sum, _config.a); + price = (1e18 * k) / _config.supply; + } + + /*************************************** + INTERNAL + ****************************************/ + + /** + * @dev Computes the actual mint output after adding mint inputs + * to the vault balances. + * @param _x Scaled vaultBalances + * @param _sum Sum of vaultBalances, to avoid another loop + * @param _k Previous value of invariant, k, before addition + * @param _config Generalised InvariantConfig stored externally + * @return mintAmount Amount of value added to invariant, in mAsset terms + */ + function _computeMintOutput( + uint256[] memory _x, + uint256 _sum, + uint256 _k, + InvariantConfig memory _config + ) internal pure returns (uint256 mintAmount) { + // 1. Get value of reserves according to invariant + uint256 kFinal = _invariant(_x, _sum, _config.a); + // 2. Total minted is the difference between values, with respect to total supply + if (_config.supply == 0) { + mintAmount = kFinal - _k; + } else { + mintAmount = (_config.supply * (kFinal - _k)) / _k; + } + // 3. Deviation? deduct recolFee of 0.5 bps + if (_config.supply > _k) { + mintAmount -= ((mintAmount * _config.recolFee) / 1e18); + } + } + + /** + * @dev Simply scaled raw reserve values and returns the sum + * @param _bAssets All bAssets + * @return x Scaled vault balances + * @return sum Sum of scaled vault balances + */ + function _getReserves(BassetData[] memory _bAssets) + internal + pure + returns (uint256[] memory x, uint256 sum) + { + uint256 len = _bAssets.length; + x = new uint256[](len); + uint256 r; + for (uint256 i = 0; i < len; i++) { + BassetData memory bAsset = _bAssets[i]; + r = (bAsset.vaultBalance * bAsset.ratio) / 1e8; + x[i] = r; + sum += r; + } + } + + /** + * @dev Checks that no bAsset reserves exceed max weight + * @param _x Scaled bAsset reserves + * @param _sum Sum of x, precomputed + * @param _limits Config object containing max and min weights + * @return inBounds Bool, true if all assets are within bounds + */ + function _inBounds( + uint256[] memory _x, + uint256 _sum, + WeightLimits memory _limits + ) internal pure returns (bool inBounds) { + uint256 len = _x.length; + inBounds = true; + uint256 w; + for (uint256 i = 0; i < len; i++) { + w = (_x[i] * 1e18) / _sum; + if (w > _limits.max || w < _limits.min) return false; + } + } + + /*************************************** + INVARIANT + ****************************************/ + + /** + * @dev Compute the invariant f(x) for a given array of supplies `x`. + * @param _x Scaled vault balances + * @param _sum Sum of scaled vault balances + * @param _a Precise amplification coefficient + * @return k Cumulative value of all assets according to the invariant + */ + function _invariant( + uint256[] memory _x, + uint256 _sum, + uint256 _a + ) internal pure returns (uint256 k) { + uint256 len = _x.length; + + if (_sum == 0) return 0; + + uint256 nA = _a * len; + uint256 kPrev; + k = _sum; + + for (uint256 i = 0; i < 256; i++) { + uint256 kP = k; + for (uint256 j = 0; j < len; j++) { + kP = (kP * k) / (_x[j] * len); + } + kPrev = k; + k = + (((nA * _sum) / A_PRECISION + (kP * len)) * k) / + (((nA - A_PRECISION) * k) / A_PRECISION + ((len + 1) * kP)); + if (_hasConverged(k, kPrev)) { + return k; + } + } + + revert("Invariant did not converge"); + } + + /** + * @dev Checks if a given solution has converged within a factor of 1 + * @param _k Current solution k + * @param _kPrev Previous iteration solution + * @return hasConverged Bool, true if diff abs(k, kPrev) <= 1 + */ + function _hasConverged(uint256 _k, uint256 _kPrev) internal pure returns (bool) { + if (_kPrev > _k) { + return (_kPrev - _k) <= 1; + } else { + return (_k - _kPrev) <= 1; + } + } + + /** + * @dev Solves the invariant for _i with respect to target K, given an array of reserves. + * @param _x Scaled reserve balances + * @param _a Precise amplification coefficient + * @param _idx Index of asset for which to solve + * @param _targetK Target invariant value K + * @return y New reserve of _i + */ + function _solveInvariant( + uint256[] memory _x, + uint256 _a, + uint8 _idx, + uint256 _targetK + ) internal pure returns (uint256 y) { + uint256 len = _x.length; + require(_idx >= 0 && _idx < len, "Invalid index"); + + (uint256 sum_, uint256 nA, uint256 kP) = (0, _a * len, _targetK); + + for (uint256 i = 0; i < len; i++) { + if (i != _idx) { + sum_ += _x[i]; + kP = (kP * _targetK) / (_x[i] * len); + } + } + + uint256 c = (((kP * _targetK) * A_PRECISION) / nA) / len; + uint256 g = (_targetK * (nA - A_PRECISION)) / nA; + uint256 b = 0; + + if (g > sum_) { + b = g - sum_; + y = (Root.sqrt((b**2) + (4 * c)) + b) / 2 + 1; + } else { + b = sum_ - g; + y = (Root.sqrt((b**2) + (4 * c)) - b) / 2 + 1; + } + + if (y < 1e8) revert("Invalid solution"); + } +} diff --git a/contracts/masset/Manager.sol b/contracts/masset/MassetManager.sol similarity index 74% rename from contracts/masset/Manager.sol rename to contracts/masset/MassetManager.sol index b11f1a8e..80be0c53 100644 --- a/contracts/masset/Manager.sol +++ b/contracts/masset/MassetManager.sol @@ -25,7 +25,7 @@ import { MassetHelpers } from "../shared/MassetHelpers.sol"; * @dev VERSION: 1.0 * DATE: 2021-01-22 */ -library Manager { +library MassetManager { using SafeERC20 for IERC20; using StableMath for uint256; @@ -45,7 +45,6 @@ library Manager { * @param _bAssetPersonal Basset data storage array * @param _bAssetData Basset data storage array * @param _bAssetIndexes Mapping of bAsset address to their index - * @param _maxBassets Max size of the basket * @param _bAsset Address of the ERC20 token to add to the Basket * @param _integration Address of the Platform Integration * @param _mm Base 1e8 var to determine measurement ratio @@ -55,7 +54,6 @@ library Manager { BassetPersonal[] storage _bAssetPersonal, BassetData[] storage _bAssetData, mapping(address => uint8) storage _bAssetIndexes, - uint8 _maxBassets, address _bAsset, address _integration, uint256 _mm, @@ -63,7 +61,6 @@ library Manager { ) external { require(_bAsset != address(0), "bAsset address must be valid"); uint8 bAssetCount = uint8(_bAssetPersonal.length); - require(bAssetCount < _maxBassets, "Max bAssets in Basket"); uint8 idx = _bAssetIndexes[_bAsset]; require( @@ -106,20 +103,17 @@ library Manager { * amount of mAsset and sending it over to the SavingsManager. * @param _bAssetPersonal Basset personal storage array * @param _bAssetData Basset data storage array - * @param _forgeValidator Link to the current InvariantValidator - * @return mintAmount Lending market interest collected + * @return indices Array of bAsset idxs [0,1...] * @return rawGains Raw increases in vault Balance */ function collectPlatformInterest( BassetPersonal[] memory _bAssetPersonal, - BassetData[] storage _bAssetData, - IInvariantValidator _forgeValidator, - InvariantConfig memory _config - ) external returns (uint256 mintAmount, uint256[] memory rawGains) { + BassetData[] storage _bAssetData + ) external returns (uint8[] memory indices, uint256[] memory rawGains) { // Get basket details BassetData[] memory bAssetData_ = _bAssetData; uint256 count = bAssetData_.length; - uint8[] memory indices = new uint8[](count); + indices = new uint8[](count); rawGains = new uint256[](count); // 1. Calculate rawGains in each bAsset, in comparison to current vault balance for (uint256 i = 0; i < count; i++) { @@ -144,7 +138,6 @@ library Manager { rawGains[i] = 0; } } - mintAmount = _forgeValidator.computeMintMulti(bAssetData_, indices, rawGains, _config); } /** @@ -375,125 +368,4 @@ library Manager { idx = _bAssetIndexes[_asset]; require(_bAssetPersonal[idx].addr == _asset, "Invalid asset input"); } - - /*************************************** - FORGING - ****************************************/ - - /** - * @dev Deposits a given asset to the system. If there is sufficient room for the asset - * in the cache, then just transfer, otherwise reset the cache to the desired mid level by - * depositing the delta in the platform - */ - function depositTokens( - BassetPersonal memory _bAsset, - uint256 _bAssetRatio, - uint256 _quantity, - uint256 _maxCache - ) external returns (uint256 quantityDeposited) { - // 0. If integration is 0, short circuit - if (_bAsset.integrator == address(0)) { - (uint256 received, ) = - MassetHelpers.transferReturnBalance( - msg.sender, - address(this), - _bAsset.addr, - _quantity - ); - return received; - } - - // 1 - Send all to PI, using the opportunity to get the cache balance and net amount transferred - uint256 cacheBal; - (quantityDeposited, cacheBal) = MassetHelpers.transferReturnBalance( - msg.sender, - _bAsset.integrator, - _bAsset.addr, - _quantity - ); - - // 2 - Deposit X if necessary - // 2.1 - Deposit if xfer fees - if (_bAsset.hasTxFee) { - uint256 deposited = - IPlatformIntegration(_bAsset.integrator).deposit( - _bAsset.addr, - quantityDeposited, - true - ); - - return StableMath.min(deposited, quantityDeposited); - } - // 2.2 - Else Deposit X if Cache > % - // This check is in place to ensure that any token with a txFee is rejected - require(quantityDeposited == _quantity, "Asset not fully transferred"); - - uint256 relativeMaxCache = _maxCache.divRatioPrecisely(_bAssetRatio); - - if (cacheBal > relativeMaxCache) { - uint256 delta = cacheBal - (relativeMaxCache / 2); - IPlatformIntegration(_bAsset.integrator).deposit(_bAsset.addr, delta, false); - } - } - - /** - * @dev Withdraws a given asset from its platformIntegration. If there is sufficient liquidity - * in the cache, then withdraw from there, otherwise withdraw from the lending market and reset the - * cache to the mid level. - */ - function withdrawTokens( - uint256 _quantity, - BassetPersonal memory _personal, - BassetData memory _data, - address _recipient, - uint256 _maxCache - ) external { - if (_quantity == 0) return; - - // 1.0 If there is no integrator, send from here - if (_personal.integrator == address(0)) { - IERC20(_personal.addr).safeTransfer(_recipient, _quantity); - } - // 1.1 If txFee then short circuit - there is no cache - else if (_personal.hasTxFee) { - IPlatformIntegration(_personal.integrator).withdraw( - _recipient, - _personal.addr, - _quantity, - _quantity, - true - ); - } - // 1.2. Else, withdraw from either cache or main vault - else { - uint256 cacheBal = IERC20(_personal.addr).balanceOf(_personal.integrator); - // 2.1 - If balance b in cache, simply withdraw - if (cacheBal >= _quantity) { - IPlatformIntegration(_personal.integrator).withdrawRaw( - _recipient, - _personal.addr, - _quantity - ); - } - // 2.2 - Else reset the cache to X, or as far as possible - // - Withdraw X+b from platform - // - Send b to user - else { - uint256 relativeMidCache = _maxCache.divRatioPrecisely(_data.ratio) / 2; - uint256 totalWithdrawal = - StableMath.min( - relativeMidCache + _quantity - cacheBal, - _data.vaultBalance - SafeCast.toUint128(cacheBal) - ); - - IPlatformIntegration(_personal.integrator).withdraw( - _recipient, - _personal.addr, - _quantity, - totalWithdrawal, - false - ); - } - } - } } diff --git a/contracts/masset/MassetStructs.sol b/contracts/masset/MassetStructs.sol index 4592e9f6..377e4238 100644 --- a/contracts/masset/MassetStructs.sol +++ b/contracts/masset/MassetStructs.sol @@ -38,22 +38,29 @@ struct BasketState { bool failed; } -struct InvariantConfig { +struct FeederConfig { + uint256 supply; uint256 a; WeightLimits limits; } -struct WeightLimits { - uint128 min; - uint128 max; +struct InvariantConfig { + uint256 supply; + uint256 a; + WeightLimits limits; + uint256 recolFee; } -struct FeederConfig { - uint256 supply; +struct BasicConfig { uint256 a; WeightLimits limits; } +struct WeightLimits { + uint128 min; + uint128 max; +} + struct AmpData { uint64 initialA; uint64 targetA; @@ -73,6 +80,18 @@ struct FeederData { WeightLimits weightLimits; } +struct MassetData { + uint256 swapFee; + uint256 redemptionFee; + uint256 cacheSize; + uint256 surplus; + BassetPersonal[] bAssetPersonal; + BassetData[] bAssetData; + BasketState basket; + AmpData ampData; + WeightLimits weightLimits; +} + struct AssetData { uint8 idx; uint256 amt; diff --git a/contracts/masset/mUSD/MusdV3.sol b/contracts/masset/versions/MV1.sol similarity index 56% rename from contracts/masset/mUSD/MusdV3.sol rename to contracts/masset/versions/MV1.sol index abd8cb96..3a36da4e 100644 --- a/contracts/masset/mUSD/MusdV3.sol +++ b/contracts/masset/versions/MV1.sol @@ -2,27 +2,26 @@ pragma solidity 0.8.2; pragma abicoder v2; -// External -import { IInvariantValidator } from "../../interfaces/IInvariantValidator.sol"; // Internal import { Initializable } from "../../shared/@openzeppelin-2.5/Initializable.sol"; -import { InitializableToken } from "../../shared/InitializableToken.sol"; +import { InitializableToken, IERC20 } from "../../shared/InitializableToken.sol"; import { ImmutableModule } from "../../shared/ImmutableModule.sol"; import { InitializableReentrancyGuard } from "../../shared/InitializableReentrancyGuard.sol"; -import { IMasset, Deprecated_BasketManager } from "../../interfaces/IMasset.sol"; +import { IMasset } from "../../interfaces/IMasset.sol"; import "../MassetStructs.sol"; // Libs import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol"; import { StableMath } from "../../shared/StableMath.sol"; -import { Manager } from "../Manager.sol"; -import { Migrator } from "./Migrator.sol"; +import { MassetManager } from "../MassetManager.sol"; +import { MassetLogic } from "../MassetLogic.sol"; +import { MV1Migrator } from "./MV1Migrator.sol"; // Legacy -import { IBasketManager } from "../../z_mocks/masset/migrate3/IBasketManager.sol"; -import { Basket, Basset } from "../../z_mocks/masset/migrate3/MassetStructsV2.sol"; -import { InitializableModuleV2 } from "../../z_mocks/masset/migrate3/InitializableModuleV2.sol"; +import { IBasketManager } from "../../z_mocks/masset/migrate2/IBasketManager.sol"; +import { Basket, Basset } from "../../z_mocks/masset/migrate2/MassetStructsV1.sol"; +import { InitializableModuleV1 } from "../../z_mocks/masset/migrate2/InitializableModuleV1.sol"; /** * @title Masset used to migrate mUSD from V2.0 to V3.0 @@ -34,11 +33,11 @@ import { InitializableModuleV2 } from "../../z_mocks/masset/migrate3/Initializab * @dev VERSION: 3.0 * DATE: 2021-01-22 */ -contract MusdV3 is +contract MV1 is IMasset, Initializable, InitializableToken, - InitializableModuleV2, + InitializableModuleV1, InitializableReentrancyGuard, ImmutableModule { @@ -89,9 +88,11 @@ contract MusdV3 is event FeesChanged(uint256 swapFee, uint256 redemptionFee); event WeightLimitsChanged(uint128 min, uint128 max); event ForgeValidatorChanged(address forgeValidator); + event DeficitMinted(uint256 amt); + event SurplusBurned(address creditor, uint256 amt); // Release 1.0 VARS - IInvariantValidator public forgeValidator; + address public forgeValidator; bool private forgeValidatorLocked; // Deprecated - maintain for storage layout in mUSD address private deprecated_basketManager; @@ -103,11 +104,11 @@ contract MusdV3 is // Release 1.1 VARS uint256 public redemptionFee; - // Release 2.0 VARS + // Release 1.2 VARS uint256 public cacheSize; uint256 public surplus; - // Release 3.0 VARS + // Release 2.0 VARS // Struct holding Basket details BassetPersonal[] public bAssetPersonal; BassetData[] public bAssetData; @@ -119,41 +120,58 @@ contract MusdV3 is AmpData public ampData; WeightLimits public weightLimits; + // Release 3.0 VARS + uint256 private immutable RECOL_FEE; + MassetData public data; + /** * @dev Constructor to set immutable bytecode * @param _nexus Nexus address */ - constructor(address _nexus) ImmutableModule(_nexus) {} + constructor(address _nexus, uint256 _recolFee) ImmutableModule(_nexus) { + require(_recolFee <= 5e13, "RecolFee too high"); + RECOL_FEE = _recolFee; + } /** - * @dev Upgrades mUSD from v2.0 to v3.0. - * This function should be called via Proxy just after the proxy has been updated. - * @param _forgeValidator Address of the AMM implementation - * @param _config Configutation for the invariant validator including the - * amplification coefficient (A) and weight limits + * @dev Initialization function for upgradable proxy contract. + * This function should be called via Proxy just after contract deployment. + * To avoid variable shadowing appended `Arg` after arguments name. + * @param _nameArg Name of the mAsset + * @param _symbolArg Symbol of the mAsset + * @param _bAssets Array of Basset data */ - function upgrade( - address _forgeValidator, - InvariantConfig memory _config - ) public { - // prevent upgrade being run again by checking the old basket manager - require(deprecated_basketManager != address(0), "already upgraded"); - // Read the Basket Manager details from the mUSD proxy's storage into memory - IBasketManager basketManager = IBasketManager(deprecated_basketManager); - // Update the storage of the Basket Manager in the mUSD Proxy - deprecated_basketManager = address(0); - // Set the state to be undergoingRecol in order to pause after upgrade - basket.undergoingRecol = true; - - forgeValidator = IInvariantValidator(_forgeValidator); - - Migrator.upgrade(basketManager, bAssetPersonal, bAssetData, bAssetIndexes); - - // Set new V3.0 storage variables - maxBassets = 10; + function initialize( + string calldata _nameArg, + string calldata _symbolArg, + BassetPersonal[] calldata _bAssets, + BasicConfig memory _config + ) public initializer { + InitializableToken._initialize(_nameArg, _symbolArg); + + _initializeReentrancyGuard(); + + uint256 len = _bAssets.length; + require(len > 0, "No bAssets"); + for (uint256 i = 0; i < len; i++) { + MassetManager.addBasset( + data.bAssetPersonal, + data.bAssetData, + bAssetIndexes, + _bAssets[i].addr, + _bAssets[i].integrator, + 1e8, + _bAssets[i].hasTxFee + ); + } + uint64 startA = SafeCast.toUint64(_config.a * A_PRECISION); - ampData = AmpData(startA, startA, 0, 0); - weightLimits = _config.limits; + data.ampData = AmpData(startA, startA, 0, 0); + data.weightLimits = _config.limits; + + data.swapFee = 6e14; + data.redemptionFee = 3e14; + data.cacheSize = 1e17; } /** @@ -179,7 +197,7 @@ contract MusdV3 is // Internal fn for modifier to reduce deployment size function _isHealthy() internal view { - BasketState memory basket_ = basket; + BasketState memory basket_ = data.basket; require(!basket_.undergoingRecol && !basket_.failed, "Unhealthy"); } @@ -193,7 +211,7 @@ contract MusdV3 is // Internal fn for modifier to reduce deployment size function _noRecol() internal view { - BasketState memory basket_ = basket; + BasketState memory basket_ = data.basket; require(!basket_.undergoingRecol, "In recol"); } @@ -216,7 +234,22 @@ contract MusdV3 is uint256 _minOutputQuantity, address _recipient ) external override nonReentrant whenHealthy returns (uint256 mintOutput) { - mintOutput = _mintTo(_input, _inputQuantity, _minOutputQuantity, _recipient); + require(_recipient != address(0), "Invalid recipient"); + require(_inputQuantity > 0, "Qty==0"); + + Asset memory input = _getAsset(_input); + + mintOutput = MassetLogic.mint( + data, + _getConfig(), + input, + _inputQuantity, + _minOutputQuantity + ); + + // Mint the Masset + _mint(_recipient, mintOutput); + emit Minted(msg.sender, _recipient, mintOutput, _input, _inputQuantity); } /** @@ -235,7 +268,22 @@ contract MusdV3 is uint256 _minOutputQuantity, address _recipient ) external override nonReentrant whenHealthy returns (uint256 mintOutput) { - mintOutput = _mintMulti(_inputs, _inputQuantities, _minOutputQuantity, _recipient); + require(_recipient != address(0), "Invalid recipient"); + uint256 len = _inputQuantities.length; + require(len > 0 && len == _inputs.length, "Input array mismatch"); + + uint8[] memory indexes = _getAssets(_inputs); + mintOutput = MassetLogic.mintMulti( + data, + _getConfig(), + indexes, + _inputQuantities, + _minOutputQuantity + ); + + // Mint the Masset + _mint(_recipient, mintOutput); + emit MintedMulti(msg.sender, _recipient, mintOutput, _inputs, _inputQuantities); } /** @@ -252,9 +300,9 @@ contract MusdV3 is { require(_inputQuantity > 0, "Qty==0"); - (uint8 idx, ) = _getAsset(_input); + Asset memory input = _getAsset(_input); - mintOutput = forgeValidator.computeMint(bAssetData, idx, _inputQuantity, _getConfig()); + mintOutput = MassetLogic.computeMint(data.bAssetData, input.idx, _inputQuantity, _getConfig()); } /** @@ -271,94 +319,8 @@ contract MusdV3 is { uint256 len = _inputQuantities.length; require(len > 0 && len == _inputs.length, "Input array mismatch"); - (uint8[] memory indexes, ) = _getBassets(_inputs); - return forgeValidator.computeMintMulti(bAssetData, indexes, _inputQuantities, _getConfig()); - } - - /*************************************** - MINTING (INTERNAL) - ****************************************/ - - /** @dev Mint Single */ - function _mintTo( - address _input, - uint256 _inputQuantity, - uint256 _minMassetQuantity, - address _recipient - ) internal returns (uint256 mAssetMinted) { - require(_recipient != address(0), "Invalid recipient"); - require(_inputQuantity > 0, "Qty==0"); - BassetData[] memory allBassets = bAssetData; - (uint8 bAssetIndex, BassetPersonal memory personal) = _getAsset(_input); - Cache memory cache = _getCacheDetails(); - // Transfer collateral to the platform integration address and call deposit - uint256 quantityDeposited = - Manager.depositTokens( - personal, - allBassets[bAssetIndex].ratio, - _inputQuantity, - cache.maxCache - ); - // Validation should be after token transfer, as bAssetQty is unknown before - mAssetMinted = forgeValidator.computeMint( - allBassets, - bAssetIndex, - quantityDeposited, - _getConfig() - ); - require(mAssetMinted >= _minMassetQuantity, "Mint quantity < min qty"); - // Log the Vault increase - can only be done when basket is healthy - bAssetData[bAssetIndex].vaultBalance = - allBassets[bAssetIndex].vaultBalance + - SafeCast.toUint128(quantityDeposited); - // Mint the Masset - _mint(_recipient, mAssetMinted); - emit Minted(msg.sender, _recipient, mAssetMinted, _input, quantityDeposited); - } - - /** @dev Mint Multi */ - function _mintMulti( - address[] memory _inputs, - uint256[] memory _inputQuantities, - uint256 _minMassetQuantity, - address _recipient - ) internal returns (uint256 mAssetMinted) { - require(_recipient != address(0), "Invalid recipient"); - uint256 len = _inputQuantities.length; - require(len > 0 && len == _inputs.length, "Input array mismatch"); - // Load bAssets from storage into memory - (uint8[] memory indexes, BassetPersonal[] memory personals) = _getBassets(_inputs); - BassetData[] memory allBassets = bAssetData; - Cache memory cache = _getCacheDetails(); - uint256[] memory quantitiesDeposited = new uint256[](len); - // Transfer the Bassets to the integrator, update storage and calc MassetQ - for (uint256 i = 0; i < len; i++) { - uint256 bAssetQuantity = _inputQuantities[i]; - if (bAssetQuantity > 0) { - uint8 idx = indexes[i]; - BassetData memory data = allBassets[idx]; - BassetPersonal memory personal = personals[i]; - uint256 quantityDeposited = - Manager.depositTokens(personal, data.ratio, bAssetQuantity, cache.maxCache); - quantitiesDeposited[i] = quantityDeposited; - bAssetData[idx].vaultBalance = - data.vaultBalance + - SafeCast.toUint128(quantityDeposited); - } - } - // Validate the proposed mint, after token transfer - mAssetMinted = forgeValidator.computeMintMulti( - allBassets, - indexes, - quantitiesDeposited, - _getConfig() - ); - require(mAssetMinted >= _minMassetQuantity, "Mint quantity < min qty"); - require(mAssetMinted > 0, "Zero mAsset quantity"); - - // Mint the Masset - _mint(_recipient, mAssetMinted); - emit MintedMulti(msg.sender, _recipient, mAssetMinted, _inputs, _inputQuantities); + uint8[] memory indexes = _getAssets(_inputs); + return MassetLogic.computeMintMulti(data.bAssetData, indexes, _inputQuantities, _getConfig()); } /*************************************** @@ -382,7 +344,32 @@ contract MusdV3 is uint256 _minOutputQuantity, address _recipient ) external override nonReentrant whenHealthy returns (uint256 swapOutput) { - swapOutput = _swap(_input, _output, _inputQuantity, _minOutputQuantity, _recipient); + require(_recipient != address(0), "Invalid recipient"); + require(_input != _output, "Invalid pair"); + require(_inputQuantity > 0, "Invalid swap quantity"); + + Asset memory input = _getAsset(_input); + Asset memory output = _getAsset(_output); + + uint256 scaledFee; + (swapOutput, scaledFee) = MassetLogic.swap( + data, + _getConfig(), + input, + output, + _inputQuantity, + _minOutputQuantity, + _recipient + ); + + emit Swapped( + msg.sender, + input.addr, + output.addr, + swapOutput, + scaledFee, + _recipient + ); } /** @@ -401,93 +388,21 @@ contract MusdV3 is require(_input != _output, "Invalid pair"); require(_inputQuantity > 0, "Invalid swap quantity"); - // 1. Load the bAssets from storage into memory - BassetData[] memory allBassets = bAssetData; - (uint8 inputIdx, ) = _getAsset(_input); - (uint8 outputIdx, ) = _getAsset(_output); + // 1. Load the bAssets from storage + Asset memory input = _getAsset(_input); + Asset memory output = _getAsset(_output); // 2. If a bAsset swap, calculate the validity, output and fee - (swapOutput, ) = forgeValidator.computeSwap( - allBassets, - inputIdx, - outputIdx, + (swapOutput, ) = MassetLogic.computeSwap( + data.bAssetData, + input.idx, + output.idx, _inputQuantity, - swapFee, + data.swapFee, _getConfig() ); } - /*************************************** - SWAP (INTERNAL) - ****************************************/ - - /** @dev Swap single */ - function _swap( - address _input, - address _output, - uint256 _inputQuantity, - uint256 _minOutputQuantity, - address _recipient - ) internal returns (uint256 swapOutput) { - require(_recipient != address(0), "Invalid recipient"); - require(_input != _output, "Invalid pair"); - require(_inputQuantity > 0, "Invalid swap quantity"); - - // 1. Load the bAssets from storage into memory - BassetData[] memory allBassets = bAssetData; - (uint8 inputIdx, BassetPersonal memory inputPersonal) = _getAsset(_input); - (uint8 outputIdx, BassetPersonal memory outputPersonal) = _getAsset(_output); - // 2. Load cache - Cache memory cache = _getCacheDetails(); - // 3. Deposit the input tokens - uint256 quantityDeposited = - Manager.depositTokens( - inputPersonal, - allBassets[inputIdx].ratio, - _inputQuantity, - cache.maxCache - ); - // 3.1. Update the input balance - bAssetData[inputIdx].vaultBalance = - allBassets[inputIdx].vaultBalance + - SafeCast.toUint128(quantityDeposited); - - // 3. Validate the swap - uint256 scaledFee; - (swapOutput, scaledFee) = forgeValidator.computeSwap( - allBassets, - inputIdx, - outputIdx, - quantityDeposited, - swapFee, - _getConfig() - ); - require(swapOutput >= _minOutputQuantity, "Output qty < minimum qty"); - require(swapOutput > 0, "Zero output quantity"); - //4. Settle the swap - //4.1. Decrease output bal - Manager.withdrawTokens( - swapOutput, - outputPersonal, - allBassets[outputIdx], - _recipient, - cache.maxCache - ); - bAssetData[outputIdx].vaultBalance = - allBassets[outputIdx].vaultBalance - - SafeCast.toUint128(swapOutput); - // Save new surplus to storage - surplus = cache.surplus + scaledFee; - emit Swapped( - msg.sender, - inputPersonal.addr, - outputPersonal.addr, - swapOutput, - scaledFee, - _recipient - ); - } - /*************************************** REDEMPTION (PUBLIC) ****************************************/ @@ -510,7 +425,33 @@ contract MusdV3 is uint256 _minOutputQuantity, address _recipient ) external override nonReentrant whenNoRecol returns (uint256 outputQuantity) { - outputQuantity = _redeem(_output, _mAssetQuantity, _minOutputQuantity, _recipient); + require(_recipient != address(0), "Invalid recipient"); + require(_mAssetQuantity > 0, "Qty==0"); + + Asset memory output = _getAsset(_output); + + // Get config before burning. Config > Burn > CacheSize + InvariantConfig memory config = _getConfig(); + _burn(msg.sender, _mAssetQuantity); + + uint256 scaledFee; + (outputQuantity, scaledFee) = MassetLogic.redeem( + data, + config, + output, + _mAssetQuantity, + _minOutputQuantity, + _recipient + ); + + emit Redeemed( + msg.sender, + _recipient, + _mAssetQuantity, + output.addr, + outputQuantity, + scaledFee + ); } /** @@ -525,7 +466,31 @@ contract MusdV3 is uint256[] calldata _minOutputQuantities, address _recipient ) external override nonReentrant whenNoRecol returns (uint256[] memory outputQuantities) { - outputQuantities = _redeemMasset(_mAssetQuantity, _minOutputQuantities, _recipient); + require(_recipient != address(0), "Invalid recipient"); + require(_mAssetQuantity > 0, "Qty==0"); + + // Get config before burning. Burn > CacheSize + InvariantConfig memory config = _getConfig(); + _burn(msg.sender, _mAssetQuantity); + + address[] memory outputs; + uint256 scaledFee; + (scaledFee, outputs, outputQuantities) = MassetLogic.redeemProportionately( + data, + config, + _mAssetQuantity, + _minOutputQuantities, + _recipient + ); + + emit RedeemedMulti( + msg.sender, + _recipient, + _mAssetQuantity, + outputs, + outputQuantities, + scaledFee + ); } /** @@ -543,12 +508,33 @@ contract MusdV3 is uint256 _maxMassetQuantity, address _recipient ) external override nonReentrant whenNoRecol returns (uint256 mAssetQuantity) { - mAssetQuantity = _redeemExactBassets( - _outputs, + require(_recipient != address(0), "Invalid recipient"); + uint256 len = _outputQuantities.length; + require(len > 0 && len == _outputs.length, "Invalid array input"); + require(_maxMassetQuantity > 0, "Qty==0"); + + uint8[] memory indexes = _getAssets(_outputs); + + uint256 fee; + (mAssetQuantity, fee) = MassetLogic.redeemExactBassets( + data, + _getConfig(), + indexes, _outputQuantities, _maxMassetQuantity, _recipient ); + + _burn(msg.sender, mAssetQuantity); + + emit RedeemedMulti( + msg.sender, + _recipient, + mAssetQuantity, + _outputs, + _outputQuantities, + fee + ); } /** @@ -565,14 +551,14 @@ contract MusdV3 is { require(_mAssetQuantity > 0, "Qty==0"); - (uint8 idx, ) = _getAsset(_output); + Asset memory output = _getAsset(_output); - uint256 scaledFee = _mAssetQuantity.mulTruncate(swapFee); - bAssetOutput = forgeValidator.computeRedeem( - bAssetData, - idx, - _mAssetQuantity - scaledFee, - _getConfig() + (bAssetOutput, ) = MassetLogic.computeRedeem( + data.bAssetData, + output.idx, + _mAssetQuantity, + _getConfig(), + data.swapFee ); } @@ -589,182 +575,11 @@ contract MusdV3 is uint256 len = _outputQuantities.length; require(len > 0 && len == _outputs.length, "Invalid array input"); - (uint8[] memory indexes, ) = _getBassets(_outputs); + uint8[] memory indexes = _getAssets(_outputs); // calculate the value of mAssets need to cover the value of bAssets being redeemed - uint256 mAssetRedeemed = - forgeValidator.computeRedeemExact(bAssetData, indexes, _outputQuantities, _getConfig()); - mAssetQuantity = mAssetRedeemed.divPrecisely(1e18 - swapFee) + 1; - } - - /*************************************** - REDEMPTION (INTERNAL) - ****************************************/ - - /** - * @dev Redeem mAsset for a single bAsset - */ - function _redeem( - address _output, - uint256 _inputQuantity, - uint256 _minOutputQuantity, - address _recipient - ) internal returns (uint256 bAssetQuantity) { - require(_recipient != address(0), "Invalid recipient"); - require(_inputQuantity > 0, "Qty==0"); - - // Load the bAsset data from storage into memory - BassetData[] memory allBassets = bAssetData; - (uint8 bAssetIndex, BassetPersonal memory personal) = _getAsset(_output); - // Calculate redemption quantities - uint256 scaledFee = _inputQuantity.mulTruncate(swapFee); - bAssetQuantity = forgeValidator.computeRedeem( - allBassets, - bAssetIndex, - _inputQuantity - scaledFee, - _getConfig() - ); - require(bAssetQuantity >= _minOutputQuantity, "bAsset qty < min qty"); - require(bAssetQuantity > 0, "Output == 0"); - // Apply fees, burn mAsset and return bAsset to recipient - // 1.0. Burn the full amount of Masset - _burn(msg.sender, _inputQuantity); - surplus += scaledFee; - Cache memory cache = _getCacheDetails(); - // 2.0. Transfer the Bassets to the recipient - Manager.withdrawTokens( - bAssetQuantity, - personal, - allBassets[bAssetIndex], - _recipient, - cache.maxCache - ); - // 3.0. Set vault balance - bAssetData[bAssetIndex].vaultBalance = - allBassets[bAssetIndex].vaultBalance - - SafeCast.toUint128(bAssetQuantity); - - emit Redeemed( - msg.sender, - _recipient, - _inputQuantity, - personal.addr, - bAssetQuantity, - scaledFee - ); - } - - /** - * @dev Redeem mAsset for proportional amount of bAssets - */ - function _redeemMasset( - uint256 _inputQuantity, - uint256[] calldata _minOutputQuantities, - address _recipient - ) internal returns (uint256[] memory outputQuantities) { - require(_recipient != address(0), "Invalid recipient"); - require(_inputQuantity > 0, "Qty==0"); - - // Calculate mAsset redemption quantities - uint256 scaledFee = _inputQuantity.mulTruncate(redemptionFee); - uint256 mAssetRedemptionAmount = _inputQuantity - scaledFee; - - // Burn mAsset quantity - _burn(msg.sender, _inputQuantity); - surplus += scaledFee; - - // Calc cache and total mAsset circulating - Cache memory cache = _getCacheDetails(); - // Total mAsset = (totalSupply + _inputQuantity - scaledFee) + surplus - uint256 totalMasset = cache.vaultBalanceSum + mAssetRedemptionAmount; - - // Load the bAsset data from storage into memory - BassetData[] memory allBassets = bAssetData; - - uint256 len = allBassets.length; - address[] memory outputs = new address[](len); - outputQuantities = new uint256[](len); - for (uint256 i = 0; i < len; i++) { - // Get amount out, proportionate to redemption quantity - // Use `cache.sum` here as the total mAsset supply is actually totalSupply + surplus - uint256 amountOut = (allBassets[i].vaultBalance * mAssetRedemptionAmount) / totalMasset; - require(amountOut > 1, "Output == 0"); - amountOut -= 1; - require(amountOut >= _minOutputQuantities[i], "bAsset qty < min qty"); - // Set output in array - (outputQuantities[i], outputs[i]) = (amountOut, bAssetPersonal[i].addr); - // Transfer the bAsset to the recipient - Manager.withdrawTokens( - amountOut, - bAssetPersonal[i], - allBassets[i], - _recipient, - cache.maxCache - ); - // reduce vaultBalance - bAssetData[i].vaultBalance = allBassets[i].vaultBalance - SafeCast.toUint128(amountOut); - } - - emit RedeemedMulti( - msg.sender, - _recipient, - _inputQuantity, - outputs, - outputQuantities, - scaledFee - ); - } - - /** @dev Redeem mAsset for one or more bAssets */ - function _redeemExactBassets( - address[] memory _outputs, - uint256[] memory _outputQuantities, - uint256 _maxMassetQuantity, - address _recipient - ) internal returns (uint256 mAssetQuantity) { - require(_recipient != address(0), "Invalid recipient"); - uint256 len = _outputQuantities.length; - require(len > 0 && len == _outputs.length, "Invalid array input"); - require(_maxMassetQuantity > 0, "Qty==0"); - - (uint8[] memory indexes, BassetPersonal[] memory personal) = _getBassets(_outputs); - // Load bAsset data from storage to memory - BassetData[] memory allBassets = bAssetData; - // Validate redemption - uint256 mAssetRequired = - forgeValidator.computeRedeemExact(allBassets, indexes, _outputQuantities, _getConfig()); - mAssetQuantity = mAssetRequired.divPrecisely(1e18 - swapFee); - uint256 fee = mAssetQuantity - mAssetRequired; - require(mAssetQuantity > 0, "Must redeem some mAssets"); - mAssetQuantity += 1; - require(mAssetQuantity <= _maxMassetQuantity, "Redeem mAsset qty > max quantity"); - // Apply fees, burn mAsset and return bAsset to recipient - // 1.0. Burn the full amount of Masset - _burn(msg.sender, mAssetQuantity); - surplus += fee; - Cache memory cache = _getCacheDetails(); - // 2.0. Transfer the Bassets to the recipient and count fees - for (uint256 i = 0; i < len; i++) { - uint8 idx = indexes[i]; - Manager.withdrawTokens( - _outputQuantities[i], - personal[i], - allBassets[idx], - _recipient, - cache.maxCache - ); - bAssetData[idx].vaultBalance = - allBassets[idx].vaultBalance - - SafeCast.toUint128(_outputQuantities[i]); - } - emit RedeemedMulti( - msg.sender, - _recipient, - mAssetQuantity, - _outputs, - _outputQuantities, - fee - ); + (mAssetQuantity, ) = + MassetLogic.computeRedeemExact(data.bAssetData, indexes, _outputQuantities, _getConfig(), data.swapFee); } /*************************************** @@ -776,39 +591,39 @@ contract MusdV3 is * @return b Basket struct */ function getBasket() external view override returns (bool, bool) { - return (basket.undergoingRecol, basket.failed); + return (data.basket.undergoingRecol, data.basket.failed); } /** * @dev Get data for a all bAssets in basket * @return personal Struct[] with full bAsset data - * @return data Number of bAssets in the Basket + * @return bData Number of bAssets in the Basket */ function getBassets() external view override - returns (BassetPersonal[] memory personal, BassetData[] memory data) + returns (BassetPersonal[] memory personal, BassetData[] memory bData) { - return (bAssetPersonal, bAssetData); + return (data.bAssetPersonal, data.bAssetData); } /** * @dev Get data for a specific bAsset, if it exists * @param _bAsset Address of bAsset * @return personal Struct with full bAsset data - * @return data Struct with full bAsset data + * @return bData Struct with full bAsset data */ function getBasset(address _bAsset) external view override - returns (BassetPersonal memory personal, BassetData memory data) + returns (BassetPersonal memory personal, BassetData memory bData) { uint8 idx = bAssetIndexes[_bAsset]; - personal = bAssetPersonal[idx]; + personal = data.bAssetPersonal[idx]; require(personal.addr == _bAsset, "Invalid asset"); - data = bAssetData[idx]; + bData = data.bAssetData[idx]; } /** @@ -818,66 +633,54 @@ contract MusdV3 is return _getConfig(); } - /*************************************** - GETTERS - INTERNAL - ****************************************/ - /** - * vaultBalanceSum = totalSupply + 'surplus' - * maxCache = vaultBalanceSum * (cacheSize / 1e18) - * surplus is simply surplus, to reduce SLOADs + * @notice Gets the price of the fpToken, and invariant value k + * @return price Price of an fpToken + * @return k Total value of basket, k */ - struct Cache { - uint256 vaultBalanceSum; - uint256 maxCache; - uint256 surplus; + function getPrice() external view override returns (uint256 price, uint256 k) { + return MassetLogic.computePrice(data.bAssetData, _getConfig()); } - /** - * @dev Gets the supply and cache details for the mAsset, taking into account the surplus - * @return Cache containing (tracked) sum of vault balances, ideal cache size and surplus - */ - function _getCacheDetails() internal view returns (Cache memory) { - // read surplus from storage into memory - uint256 _surplus = surplus; - uint256 sum = totalSupply() + _surplus; - return Cache(sum, sum.mulTruncate(cacheSize), _surplus); - } + /*************************************** + GETTERS - INTERNAL + ****************************************/ /** * @dev Gets a bAsset from storage - * @param _asset Address of the asset - * @return idx Index of the asset - * @return personal Personal details for the asset + * @param _asset Address of the asset + * @return asset Struct containing bAsset details (idx, data) */ function _getAsset(address _asset) internal view - returns (uint8 idx, BassetPersonal memory personal) + returns (Asset memory asset) { - idx = bAssetIndexes[_asset]; - personal = bAssetPersonal[idx]; - require(personal.addr == _asset, "Invalid asset"); + asset.idx = bAssetIndexes[_asset]; + asset.addr = _asset; + asset.exists = data.bAssetPersonal[asset.idx].addr == _asset; + require(asset.exists, "Invalid asset"); } + /** * @dev Gets a an array of bAssets from storage and protects against duplicates * @param _bAssets Addresses of the assets * @return indexes Indexes of the assets - * @return personal Personal details for the assets */ - function _getBassets(address[] memory _bAssets) + function _getAssets(address[] memory _bAssets) internal view - returns (uint8[] memory indexes, BassetPersonal[] memory personal) + returns (uint8[] memory indexes) { uint256 len = _bAssets.length; indexes = new uint8[](len); - personal = new BassetPersonal[](len); + Asset memory input_; for (uint256 i = 0; i < len; i++) { - (indexes[i], personal[i]) = _getAsset(_bAssets[i]); + input_ = _getAsset(_bAssets[i]); + indexes[i] = input_.idx; for (uint256 j = i + 1; j < len; j++) { require(_bAssets[i] != _bAssets[j], "Duplicate asset"); @@ -889,14 +692,14 @@ contract MusdV3 is * @dev Gets all config needed for general InvariantValidator calls */ function _getConfig() internal view returns (InvariantConfig memory) { - return InvariantConfig(_getA(), weightLimits); + return InvariantConfig(totalSupply() + data.surplus, _getA(), data.weightLimits, RECOL_FEE); } /** * @dev Gets current amplification var A */ function _getA() internal view returns (uint256) { - AmpData memory ampData_ = ampData; + AmpData memory ampData_ = data.ampData; uint64 endA = ampData_.targetA; uint64 endTime = ampData_.rampEndTime; @@ -938,10 +741,10 @@ contract MusdV3 is // Set the surplus variable to 1 to optimise for SSTORE costs. // If setting to 0 here, it would save 5k per savings deposit, but cost 20k for the // first surplus call (a SWAP or REDEEM). - uint256 surplusFees = surplus; + uint256 surplusFees = data.surplus; if (surplusFees > 1) { mintAmount = surplusFees - 1; - surplus = 1; + data.surplus = 1; // mint new mAsset to savings manager _mint(msg.sender, mintAmount); @@ -958,7 +761,7 @@ contract MusdV3 is /** * @dev Collects the interest generated from the Basket, minting a relative - * amount of mAsset and sends it over to the SavingsManager. + * amount of mAsset and sends it over to the SavingsMassetManager. * @return mintAmount mAsset units generated from interest collected from lending markets * @return newSupply mAsset total supply after mint */ @@ -970,14 +773,13 @@ contract MusdV3 is nonReentrant returns (uint256 mintAmount, uint256 newSupply) { - uint256[] memory gains; - (mintAmount, gains) = Manager.collectPlatformInterest( - bAssetPersonal, - bAssetData, - forgeValidator, - _getConfig() + (uint8[] memory idxs, uint256[] memory gains) = MassetManager.collectPlatformInterest( + data.bAssetPersonal, + data.bAssetData ); + mintAmount = MassetLogic.computeMintMulti(data.bAssetData, idxs, gains, _getConfig()); + require(mintAmount > 0, "Must collect something"); _mint(msg.sender, mintAmount); @@ -998,24 +800,11 @@ contract MusdV3 is function setCacheSize(uint256 _cacheSize) external override onlyGovernor { require(_cacheSize <= 2e17, "Must be <= 20%"); - cacheSize = _cacheSize; + data.cacheSize = _cacheSize; emit CacheSizeChanged(_cacheSize); } - /** - * @dev Upgrades the version of ForgeValidator protocol. Governor can do this - * only while ForgeValidator is unlocked. - * @param _newForgeValidator Address of the new ForgeValidator - */ - function upgradeForgeValidator(address _newForgeValidator) external override onlyGovernor { - require(!forgeValidatorLocked, "ForgeVal locked"); - require(_newForgeValidator != address(0), "Null address"); - - forgeValidator = IInvariantValidator(_newForgeValidator); - - emit ForgeValidatorChanged(_newForgeValidator); - } /** * @dev Set the ecosystem fee for sewapping bAssets or redeeming specific bAssets @@ -1025,8 +814,8 @@ contract MusdV3 is require(_swapFee <= MAX_FEE, "Swap rate oob"); require(_redemptionFee <= MAX_FEE, "Redemption rate oob"); - swapFee = _swapFee; - redemptionFee = _redemptionFee; + data.swapFee = _swapFee; + data.redemptionFee = _redemptionFee; emit FeesChanged(_swapFee, _redemptionFee); } @@ -1037,10 +826,10 @@ contract MusdV3 is * @param _max Weight where 100% = 1e18 */ function setWeightLimits(uint128 _min, uint128 _max) external onlyGovernor { - require(_min <= 1e18 / (bAssetData.length * 2), "Min weight oob"); - require(_max >= 1e18 / (bAssetData.length - 1), "Max weight oob"); + require(_min <= 1e18 / (data.bAssetData.length * 2), "Min weight oob"); + require(_max >= 1e18 / (data.bAssetData.length - 1), "Max weight oob"); - weightLimits = WeightLimits(_min, _max); + data.weightLimits = WeightLimits(_min, _max); emit WeightLimitsChanged(_min, _max); } @@ -1051,7 +840,7 @@ contract MusdV3 is * @param _flag Charge transfer fee when its set to 'true', otherwise 'false' */ function setTransferFeesFlag(address _bAsset, bool _flag) external override onlyGovernor { - Manager.setTransferFeesFlag(bAssetPersonal, bAssetIndexes, _bAsset, _flag); + MassetManager.setTransferFeesFlag(data.bAssetPersonal, bAssetIndexes, _bAsset, _flag); } /** @@ -1067,7 +856,7 @@ contract MusdV3 is override onlyGovernor { - Manager.migrateBassets(bAssetPersonal, bAssetIndexes, _bAssets, _newIntegration); + MassetManager.migrateBassets(data.bAssetPersonal, bAssetIndexes, _bAssets, _newIntegration); } /** @@ -1077,7 +866,7 @@ contract MusdV3 is * or above (f) */ function handlePegLoss(address _bAsset, bool _belowPeg) external onlyGovernor { - Manager.handlePegLoss(basket, bAssetPersonal, bAssetIndexes, _bAsset, _belowPeg); + MassetManager.handlePegLoss(data.basket, data.bAssetPersonal, bAssetIndexes, _bAsset, _belowPeg); } /** @@ -1085,7 +874,7 @@ contract MusdV3 is * @param _bAsset Address of the bAsset */ function negateIsolation(address _bAsset) external onlyGovernor { - Manager.negateIsolation(basket, bAssetPersonal, bAssetIndexes, _bAsset); + MassetManager.negateIsolation(data.basket, data.bAssetPersonal, bAssetIndexes, _bAsset); } /** @@ -1094,7 +883,7 @@ contract MusdV3 is * @param _rampEndTime Time at which A will arrive at _targetA */ function startRampA(uint256 _targetA, uint256 _rampEndTime) external onlyGovernor { - Manager.startRampA(ampData, _targetA, _rampEndTime, _getA(), A_PRECISION); + MassetManager.startRampA(data.ampData, _targetA, _rampEndTime, _getA(), A_PRECISION); } /** @@ -1102,6 +891,36 @@ contract MusdV3 is * it to whatever the current value is. */ function stopRampA() external onlyGovernor { - Manager.stopRampA(ampData, _getA()); + MassetManager.stopRampA(data.ampData, _getA()); + } + + /** + * @dev Mints deficit to SAVE if k > token supply + */ + function mintDeficit() external returns (uint256 mintAmount) { + require(msg.sender == _governor() || msg.sender == _proxyAdmin(), "Gov or ProxyAdmin"); + + InvariantConfig memory config = _getConfig(); + (, uint256 k) = MassetLogic.computePrice(data.bAssetData, config); + require(k > config.supply, "No deficit"); + mintAmount = k - config.supply; + data.surplus += mintAmount; + + emit DeficitMinted(mintAmount); + } + + /** + * @dev Burns surplus if token supply > k + */ + function burnSurplus() external returns (uint256 burnAmount) { + InvariantConfig memory config = _getConfig(); + (, uint256 k) = MassetLogic.computePrice(data.bAssetData, config); + require(config.supply > k, "No surplus"); + burnAmount = config.supply - k; + // Transfer to ensure approval has been given + transferFrom(msg.sender, address(this), burnAmount); + + _burn(address(this), burnAmount); + emit SurplusBurned(msg.sender, burnAmount); } } diff --git a/contracts/masset/mUSD/Migrator.sol b/contracts/masset/versions/MV1Migrator.sol similarity index 92% rename from contracts/masset/mUSD/Migrator.sol rename to contracts/masset/versions/MV1Migrator.sol index 774181a1..c5be6caf 100644 --- a/contracts/masset/mUSD/Migrator.sol +++ b/contracts/masset/versions/MV1Migrator.sol @@ -6,11 +6,11 @@ import "../MassetStructs.sol"; import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol"; -import { IBasketManager } from "../../z_mocks/masset/migrate3/IBasketManager.sol"; -import { Basket, Basset } from "../../z_mocks/masset/migrate3/MassetStructsV2.sol"; +import { IBasketManager } from "../../z_mocks/masset/migrate2/IBasketManager.sol"; +import { Basket, Basset } from "../../z_mocks/masset/migrate2/MassetStructsV1.sol"; -library Migrator { +library MV1Migrator { function upgrade( IBasketManager basketManager, diff --git a/contracts/masset/versions/MV2.sol b/contracts/masset/versions/MV2.sol new file mode 100644 index 00000000..dd314e7d --- /dev/null +++ b/contracts/masset/versions/MV2.sol @@ -0,0 +1,916 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later +pragma solidity 0.8.2; +pragma abicoder v2; + +// Internal +import { Initializable } from "../../shared/@openzeppelin-2.5/Initializable.sol"; +import { InitializableToken, IERC20 } from "../../shared/InitializableToken.sol"; +import { ImmutableModule } from "../../shared/ImmutableModule.sol"; +import { InitializableReentrancyGuard } from "../../shared/InitializableReentrancyGuard.sol"; +import { IMasset } from "../../interfaces/IMasset.sol"; +import "../MassetStructs.sol"; + +// Libs +import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol"; +import { StableMath } from "../../shared/StableMath.sol"; +import { MassetLogic } from "../MassetLogic.sol"; +import { MassetManager } from "../MassetManager.sol"; + +/** + * @title Masset + * @author mStable + * @notice An incentivised constant sum market maker with hard limits at max region. This supports + * low slippage swaps and applies penalties towards min and max regions. AMM produces a + * stablecoin (mAsset) and redirects lending market interest and swap fees to the savings + * contract, producing a second yield bearing asset. + * @dev VERSION: 3.0 + * DATE: 2021-01-22 + */ +contract MV2 is + IMasset, + Initializable, + InitializableToken, + ImmutableModule, + InitializableReentrancyGuard +{ + using StableMath for uint256; + + // Forging Events + event Minted( + address indexed minter, + address recipient, + uint256 mAssetQuantity, + address input, + uint256 inputQuantity + ); + event MintedMulti( + address indexed minter, + address recipient, + uint256 mAssetQuantity, + address[] inputs, + uint256[] inputQuantities + ); + event Swapped( + address indexed swapper, + address input, + address output, + uint256 outputAmount, + uint256 scaledFee, + address recipient + ); + event Redeemed( + address indexed redeemer, + address recipient, + uint256 mAssetQuantity, + address output, + uint256 outputQuantity, + uint256 scaledFee + ); + event RedeemedMulti( + address indexed redeemer, + address recipient, + uint256 mAssetQuantity, + address[] outputs, + uint256[] outputQuantity, + uint256 scaledFee + ); + + // State Events + event CacheSizeChanged(uint256 cacheSize); + event FeesChanged(uint256 swapFee, uint256 redemptionFee); + event WeightLimitsChanged(uint128 min, uint128 max); + event ForgeValidatorChanged(address forgeValidator); + event DeficitMinted(uint256 amt); + event SurplusBurned(address creditor, uint256 amt); + // Release 1.0 VARS + address public deprecated_forgeValidator; + bool private deprecated_forgeValidatorLocked; + // Deprecated - maintain for storage layout in mUSD + address private deprecated_basketManager; + + // Basic redemption fee information + uint256 public deprecated_swapFee; + uint256 private MAX_FEE; + + // Release 1.1 VARS + uint256 public deprecated_redemptionFee; + + // Release 1.2 VARS + uint256 public deprecated_cacheSize; + uint256 public deprecated_surplus; + + // Release 2.0 VARS + // Struct holding Basket details + BassetPersonal[] public deprecated_bAssetPersonal; + BassetData[] public deprecated_bAssetData; + mapping(address => uint8) public override bAssetIndexes; + uint8 public deprecated_maxBassets; + BasketState public deprecated_basket; + // Amplification Data + uint256 private constant A_PRECISION = 100; + AmpData public deprecated_ampData; + WeightLimits public deprecated_weightLimits; + // Core data storage + uint256 private immutable RECOL_FEE; + MassetData public data; + + /** + * @dev Constructor to set immutable bytecode + * @param _nexus Nexus address + */ + constructor(address _nexus, uint256 _recolFee) ImmutableModule(_nexus) { + require(_recolFee <= 5e13, "RecolFee too high"); + RECOL_FEE = _recolFee; + } + + /** + * @dev Initialization function for upgradable proxy contract. + * This function should be called via Proxy just after contract deployment. + * To avoid variable shadowing appended `Arg` after arguments name. + * @param _nameArg Name of the mAsset + * @param _symbolArg Symbol of the mAsset + * @param _bAssets Array of Basset data + */ + function initialize( + string calldata _nameArg, + string calldata _symbolArg, + BassetPersonal[] calldata _bAssets, + BasicConfig memory _config + ) public initializer { + InitializableToken._initialize(_nameArg, _symbolArg); + + _initializeReentrancyGuard(); + + uint256 len = _bAssets.length; + require(len > 0, "No bAssets"); + for (uint256 i = 0; i < len; i++) { + MassetManager.addBasset( + data.bAssetPersonal, + data.bAssetData, + bAssetIndexes, + _bAssets[i].addr, + _bAssets[i].integrator, + 1e8, + _bAssets[i].hasTxFee + ); + } + + uint64 startA = SafeCast.toUint64(_config.a * A_PRECISION); + data.ampData = AmpData(startA, startA, 0, 0); + data.weightLimits = _config.limits; + + data.swapFee = 6e14; + data.redemptionFee = 3e14; + data.cacheSize = 1e17; + } + + /** + * @dev Verifies that the caller is the Savings Manager contract + */ + modifier onlySavingsManager() { + _isSavingsManager(); + _; + } + + // Internal fn for modifier to reduce deployment size + function _isSavingsManager() internal view { + require(_savingsManager() == msg.sender, "Must be savings manager"); + } + + /** + * @dev Requires the overall basket composition to be healthy + */ + modifier whenHealthy() { + _isHealthy(); + _; + } + + // Internal fn for modifier to reduce deployment size + function _isHealthy() internal view { + BasketState memory basket_ = data.basket; + require(!basket_.undergoingRecol && !basket_.failed, "Unhealthy"); + } + + /** + * @dev Requires the basket not to be undergoing recollateralisation + */ + modifier whenNoRecol() { + _noRecol(); + _; + } + + // Internal fn for modifier to reduce deployment size + function _noRecol() internal view { + BasketState memory basket_ = data.basket; + require(!basket_.undergoingRecol, "In recol"); + } + + /*************************************** + MINTING (PUBLIC) + ****************************************/ + + /** + * @dev Mint a single bAsset, at a 1:1 ratio with the bAsset. This contract + * must have approval to spend the senders bAsset + * @param _input Address of the bAsset to deposit for the minted mAsset. + * @param _inputQuantity Quantity in bAsset units + * @param _minOutputQuantity Minimum mAsset quanity to be minted. This protects against slippage. + * @param _recipient Receipient of the newly minted mAsset tokens + * @return mintOutput Quantity of newly minted mAssets for the deposited bAsset. + */ + function mint( + address _input, + uint256 _inputQuantity, + uint256 _minOutputQuantity, + address _recipient + ) external override nonReentrant whenHealthy returns (uint256 mintOutput) { + require(_recipient != address(0), "Invalid recipient"); + require(_inputQuantity > 0, "Qty==0"); + + Asset memory input = _getAsset(_input); + + mintOutput = MassetLogic.mint( + data, + _getConfig(), + input, + _inputQuantity, + _minOutputQuantity + ); + + // Mint the Masset + _mint(_recipient, mintOutput); + emit Minted(msg.sender, _recipient, mintOutput, _input, _inputQuantity); + } + + /** + * @dev Mint with multiple bAssets, at a 1:1 ratio to mAsset. This contract + * must have approval to spend the senders bAssets + * @param _inputs Non-duplicate address array of bASset addresses to deposit for the minted mAsset tokens. + * @param _inputQuantities Quantity of each bAsset to deposit for the minted mAsset. + * Order of array should mirror the above bAsset addresses. + * @param _minOutputQuantity Minimum mAsset quanity to be minted. This protects against slippage. + * @param _recipient Address to receive the newly minted mAsset tokens + * @return mintOutput Quantity of newly minted mAssets for the deposited bAssets. + */ + function mintMulti( + address[] calldata _inputs, + uint256[] calldata _inputQuantities, + uint256 _minOutputQuantity, + address _recipient + ) external override nonReentrant whenHealthy returns (uint256 mintOutput) { + require(_recipient != address(0), "Invalid recipient"); + uint256 len = _inputQuantities.length; + require(len > 0 && len == _inputs.length, "Input array mismatch"); + + uint8[] memory indexes = _getAssets(_inputs); + mintOutput = MassetLogic.mintMulti( + data, + _getConfig(), + indexes, + _inputQuantities, + _minOutputQuantity + ); + + // Mint the Masset + _mint(_recipient, mintOutput); + emit MintedMulti(msg.sender, _recipient, mintOutput, _inputs, _inputQuantities); + } + + /** + * @dev Get the projected output of a given mint + * @param _input Address of the bAsset to deposit for the minted mAsset + * @param _inputQuantity Quantity in bAsset units + * @return mintOutput Estimated mint output in mAsset terms + */ + function getMintOutput(address _input, uint256 _inputQuantity) + external + view + override + returns (uint256 mintOutput) + { + require(_inputQuantity > 0, "Qty==0"); + + Asset memory input = _getAsset(_input); + + mintOutput = MassetLogic.computeMint(data.bAssetData, input.idx, _inputQuantity, _getConfig()); + } + + /** + * @dev Get the projected output of a given mint + * @param _inputs Non-duplicate address array of addresses to bAssets to deposit for the minted mAsset tokens. + * @param _inputQuantities Quantity of each bAsset to deposit for the minted mAsset. + * @return mintOutput Estimated mint output in mAsset terms + */ + function getMintMultiOutput(address[] calldata _inputs, uint256[] calldata _inputQuantities) + external + view + override + returns (uint256 mintOutput) + { + uint256 len = _inputQuantities.length; + require(len > 0 && len == _inputs.length, "Input array mismatch"); + uint8[] memory indexes = _getAssets(_inputs); + return MassetLogic.computeMintMulti(data.bAssetData, indexes, _inputQuantities, _getConfig()); + } + + /*************************************** + SWAP (PUBLIC) + ****************************************/ + + /** + * @dev Swaps one bAsset for another bAsset using the bAsset addresses. + * bAsset <> bAsset swaps will incur a small fee (swapFee()). + * @param _input Address of bAsset to deposit + * @param _output Address of bAsset to receive + * @param _inputQuantity Units of input bAsset to swap + * @param _minOutputQuantity Minimum quantity of the swap output asset. This protects against slippage + * @param _recipient Address to transfer output asset to + * @return swapOutput Quantity of output asset returned from swap + */ + function swap( + address _input, + address _output, + uint256 _inputQuantity, + uint256 _minOutputQuantity, + address _recipient + ) external override nonReentrant whenHealthy returns (uint256 swapOutput) { + require(_recipient != address(0), "Invalid recipient"); + require(_input != _output, "Invalid pair"); + require(_inputQuantity > 0, "Invalid swap quantity"); + + Asset memory input = _getAsset(_input); + Asset memory output = _getAsset(_output); + + uint256 scaledFee; + (swapOutput, scaledFee) = MassetLogic.swap( + data, + _getConfig(), + input, + output, + _inputQuantity, + _minOutputQuantity, + _recipient + ); + + emit Swapped( + msg.sender, + input.addr, + output.addr, + swapOutput, + scaledFee, + _recipient + ); + } + + /** + * @dev Determines both if a trade is valid, and the expected fee or output. + * Swap is valid if it does not result in the input asset exceeding its maximum weight. + * @param _input Address of bAsset to deposit + * @param _output Address of bAsset to receive + * @param _inputQuantity Units of input bAsset to swap + * @return swapOutput Quantity of output asset returned from swap + */ + function getSwapOutput( + address _input, + address _output, + uint256 _inputQuantity + ) external view override returns (uint256 swapOutput) { + require(_input != _output, "Invalid pair"); + require(_inputQuantity > 0, "Invalid swap quantity"); + + // 1. Load the bAssets from storage + Asset memory input = _getAsset(_input); + Asset memory output = _getAsset(_output); + + // 2. If a bAsset swap, calculate the validity, output and fee + (swapOutput, ) = MassetLogic.computeSwap( + data.bAssetData, + input.idx, + output.idx, + _inputQuantity, + data.swapFee, + _getConfig() + ); + } + + /*************************************** + REDEMPTION (PUBLIC) + ****************************************/ + + /** + * @notice Redeems a specified quantity of mAsset in return for a bAsset specified by bAsset address. + * The bAsset is sent to the specified recipient. + * The bAsset quantity is relative to current vault balance levels and desired mAsset quantity. + * The quantity of mAsset is burnt as payment. + * A minimum quantity of bAsset is specified to protect against price slippage between the mAsset and bAsset. + * @param _output Address of the bAsset to receive + * @param _mAssetQuantity Quantity of mAsset to redeem + * @param _minOutputQuantity Minimum bAsset quantity to receive for the burnt mAssets. This protects against slippage. + * @param _recipient Address to transfer the withdrawn bAssets to. + * @return outputQuantity Quanity of bAsset units received for the burnt mAssets + */ + function redeem( + address _output, + uint256 _mAssetQuantity, + uint256 _minOutputQuantity, + address _recipient + ) external override nonReentrant whenNoRecol returns (uint256 outputQuantity) { + require(_recipient != address(0), "Invalid recipient"); + require(_mAssetQuantity > 0, "Qty==0"); + + Asset memory output = _getAsset(_output); + + // Get config before burning. Config > Burn > CacheSize + InvariantConfig memory config = _getConfig(); + _burn(msg.sender, _mAssetQuantity); + + uint256 scaledFee; + (outputQuantity, scaledFee) = MassetLogic.redeem( + data, + config, + output, + _mAssetQuantity, + _minOutputQuantity, + _recipient + ); + + emit Redeemed( + msg.sender, + _recipient, + _mAssetQuantity, + output.addr, + outputQuantity, + scaledFee + ); + } + + /** + * @dev Credits a recipient with a proportionate amount of bAssets, relative to current vault + * balance levels and desired mAsset quantity. Burns the mAsset as payment. + * @param _mAssetQuantity Quantity of mAsset to redeem + * @param _minOutputQuantities Min units of output to receive + * @param _recipient Address to credit the withdrawn bAssets + */ + function redeemMasset( + uint256 _mAssetQuantity, + uint256[] calldata _minOutputQuantities, + address _recipient + ) external override nonReentrant whenNoRecol returns (uint256[] memory outputQuantities) { + require(_recipient != address(0), "Invalid recipient"); + require(_mAssetQuantity > 0, "Qty==0"); + + // Get config before burning. Burn > CacheSize + InvariantConfig memory config = _getConfig(); + _burn(msg.sender, _mAssetQuantity); + + address[] memory outputs; + uint256 scaledFee; + (scaledFee, outputs, outputQuantities) = MassetLogic.redeemProportionately( + data, + config, + _mAssetQuantity, + _minOutputQuantities, + _recipient + ); + + emit RedeemedMulti( + msg.sender, + _recipient, + _mAssetQuantity, + outputs, + outputQuantities, + scaledFee + ); + } + + /** + * @dev Credits a recipient with a certain quantity of selected bAssets, in exchange for burning the + * relative Masset quantity from the sender. Sender also incurs a small fee on the outgoing asset. + * @param _outputs Addresses of the bAssets to receive + * @param _outputQuantities Units of the bAssets to redeem + * @param _maxMassetQuantity Maximum mAsset quantity to burn for the received bAssets. This protects against slippage. + * @param _recipient Address to receive the withdrawn bAssets + * @return mAssetQuantity Quantity of mAsset units burned plus the swap fee to pay for the redeemed bAssets + */ + function redeemExactBassets( + address[] calldata _outputs, + uint256[] calldata _outputQuantities, + uint256 _maxMassetQuantity, + address _recipient + ) external override nonReentrant whenNoRecol returns (uint256 mAssetQuantity) { + require(_recipient != address(0), "Invalid recipient"); + uint256 len = _outputQuantities.length; + require(len > 0 && len == _outputs.length, "Invalid array input"); + require(_maxMassetQuantity > 0, "Qty==0"); + + uint8[] memory indexes = _getAssets(_outputs); + + uint256 fee; + (mAssetQuantity, fee) = MassetLogic.redeemExactBassets( + data, + _getConfig(), + indexes, + _outputQuantities, + _maxMassetQuantity, + _recipient + ); + + _burn(msg.sender, mAssetQuantity); + + emit RedeemedMulti( + msg.sender, + _recipient, + mAssetQuantity, + _outputs, + _outputQuantities, + fee + ); + } + + /** + * @notice Gets the estimated output from a given redeem + * @param _output Address of the bAsset to receive + * @param _mAssetQuantity Quantity of mAsset to redeem + * @return bAssetOutput Estimated quantity of bAsset units received for the burnt mAssets + */ + function getRedeemOutput(address _output, uint256 _mAssetQuantity) + external + view + override + returns (uint256 bAssetOutput) + { + require(_mAssetQuantity > 0, "Qty==0"); + + Asset memory output = _getAsset(_output); + + (bAssetOutput, ) = MassetLogic.computeRedeem( + data.bAssetData, + output.idx, + _mAssetQuantity, + _getConfig(), + data.swapFee + ); + } + + /** + * @notice Gets the estimated output from a given redeem + * @param _outputs Addresses of the bAsset to receive + * @param _outputQuantities Quantities of bAsset to redeem + * @return mAssetQuantity Estimated quantity of mAsset units needed to burn to receive output + */ + function getRedeemExactBassetsOutput( + address[] calldata _outputs, + uint256[] calldata _outputQuantities + ) external view override returns (uint256 mAssetQuantity) { + uint256 len = _outputQuantities.length; + require(len > 0 && len == _outputs.length, "Invalid array input"); + + uint8[] memory indexes = _getAssets(_outputs); + + // calculate the value of mAssets need to cover the value of bAssets being redeemed + (mAssetQuantity, ) = + MassetLogic.computeRedeemExact(data.bAssetData, indexes, _outputQuantities, _getConfig(), data.swapFee); + } + + /*************************************** + GETTERS + ****************************************/ + + /** + * @dev Get basket details for `Masset_MassetStructs.Basket` + * @return b Basket struct + */ + function getBasket() external view override returns (bool, bool) { + return (data.basket.undergoingRecol, data.basket.failed); + } + + /** + * @dev Get data for a all bAssets in basket + * @return personal Struct[] with full bAsset data + * @return bData Number of bAssets in the Basket + */ + function getBassets() + external + view + override + returns (BassetPersonal[] memory personal, BassetData[] memory bData) + { + return (data.bAssetPersonal, data.bAssetData); + } + + /** + * @dev Get data for a specific bAsset, if it exists + * @param _bAsset Address of bAsset + * @return personal Struct with full bAsset data + * @return bData Struct with full bAsset data + */ + function getBasset(address _bAsset) + external + view + override + returns (BassetPersonal memory personal, BassetData memory bData) + { + uint8 idx = bAssetIndexes[_bAsset]; + personal = data.bAssetPersonal[idx]; + require(personal.addr == _bAsset, "Invalid asset"); + bData = data.bAssetData[idx]; + } + + /** + * @dev Gets all config needed for general InvariantValidator calls + */ + function getConfig() external view returns (InvariantConfig memory config) { + return _getConfig(); + } + + /** + * @notice Gets the price of the fpToken, and invariant value k + * @return price Price of an fpToken + * @return k Total value of basket, k + */ + function getPrice() external view override returns (uint256 price, uint256 k) { + return MassetLogic.computePrice(data.bAssetData, _getConfig()); + } + + /*************************************** + GETTERS - INTERNAL + ****************************************/ + + /** + * @dev Gets a bAsset from storage + * @param _asset Address of the asset + * @return asset Struct containing bAsset details (idx, data) + */ + function _getAsset(address _asset) + internal + view + returns (Asset memory asset) + { + asset.idx = bAssetIndexes[_asset]; + asset.addr = _asset; + asset.exists = data.bAssetPersonal[asset.idx].addr == _asset; + require(asset.exists, "Invalid asset"); + } + + + /** + * @dev Gets a an array of bAssets from storage and protects against duplicates + * @param _bAssets Addresses of the assets + * @return indexes Indexes of the assets + */ + function _getAssets(address[] memory _bAssets) + internal + view + returns (uint8[] memory indexes) + { + uint256 len = _bAssets.length; + + indexes = new uint8[](len); + + Asset memory input_; + for (uint256 i = 0; i < len; i++) { + input_ = _getAsset(_bAssets[i]); + indexes[i] = input_.idx; + + for (uint256 j = i + 1; j < len; j++) { + require(_bAssets[i] != _bAssets[j], "Duplicate asset"); + } + } + } + + /** + * @dev Gets all config needed for general InvariantValidator calls + */ + function _getConfig() internal view returns (InvariantConfig memory) { + return InvariantConfig(totalSupply() + data.surplus, _getA(), data.weightLimits, RECOL_FEE); + } + + /** + * @dev Gets current amplification var A + */ + function _getA() internal view returns (uint256) { + AmpData memory ampData_ = data.ampData; + + uint64 endA = ampData_.targetA; + uint64 endTime = ampData_.rampEndTime; + + // If still changing, work out based on current timestmap + if (block.timestamp < endTime) { + uint64 startA = ampData_.initialA; + uint64 startTime = ampData_.rampStartTime; + + (uint256 elapsed, uint256 total) = (block.timestamp - startTime, endTime - startTime); + + if (endA > startA) { + return startA + (((endA - startA) * elapsed) / total); + } else { + return startA - (((startA - endA) * elapsed) / total); + } + } + // Else return final value + else { + return endA; + } + } + + /*************************************** + YIELD + ****************************************/ + + /** + * @dev Converts recently accrued swap and redeem fees into mAsset + * @return mintAmount mAsset units generated from swap and redeem fees + * @return newSupply mAsset total supply after mint + */ + function collectInterest() + external + override + onlySavingsManager + returns (uint256 mintAmount, uint256 newSupply) + { + // Set the surplus variable to 1 to optimise for SSTORE costs. + // If setting to 0 here, it would save 5k per savings deposit, but cost 20k for the + // first surplus call (a SWAP or REDEEM). + uint256 surplusFees = data.surplus; + if (surplusFees > 1) { + mintAmount = surplusFees - 1; + data.surplus = 1; + + // mint new mAsset to savings manager + _mint(msg.sender, mintAmount); + emit MintedMulti( + address(this), + msg.sender, + mintAmount, + new address[](0), + new uint256[](0) + ); + } + newSupply = totalSupply(); + } + + /** + * @dev Collects the interest generated from the Basket, minting a relative + * amount of mAsset and sends it over to the SavingsMassetManager. + * @return mintAmount mAsset units generated from interest collected from lending markets + * @return newSupply mAsset total supply after mint + */ + function collectPlatformInterest() + external + override + onlySavingsManager + whenHealthy + nonReentrant + returns (uint256 mintAmount, uint256 newSupply) + { + (uint8[] memory idxs, uint256[] memory gains) = MassetManager.collectPlatformInterest( + data.bAssetPersonal, + data.bAssetData + ); + + mintAmount = MassetLogic.computeMintMulti(data.bAssetData, idxs, gains, _getConfig()); + + require(mintAmount > 0, "Must collect something"); + + _mint(msg.sender, mintAmount); + emit MintedMulti(address(this), msg.sender, mintAmount, new address[](0), gains); + + newSupply = totalSupply(); + } + + /*************************************** + STATE + ****************************************/ + + /** + * @dev Sets the MAX cache size for each bAsset. The cache will actually revolve around + * _cacheSize * totalSupply / 2 under normal circumstances. + * @param _cacheSize Maximum percent of total mAsset supply to hold for each bAsset + */ + function setCacheSize(uint256 _cacheSize) external override onlyGovernor { + require(_cacheSize <= 2e17, "Must be <= 20%"); + + data.cacheSize = _cacheSize; + + emit CacheSizeChanged(_cacheSize); + } + + + /** + * @dev Set the ecosystem fee for sewapping bAssets or redeeming specific bAssets + * @param _swapFee Fee calculated in (%/100 * 1e18) + */ + function setFees(uint256 _swapFee, uint256 _redemptionFee) external override onlyGovernor { + require(_swapFee <= MAX_FEE, "Swap rate oob"); + require(_redemptionFee <= MAX_FEE, "Redemption rate oob"); + + data.swapFee = _swapFee; + data.redemptionFee = _redemptionFee; + + emit FeesChanged(_swapFee, _redemptionFee); + } + + /** + * @dev Set the maximum weight for a given bAsset + * @param _min Weight where 100% = 1e18 + * @param _max Weight where 100% = 1e18 + */ + function setWeightLimits(uint128 _min, uint128 _max) external onlyGovernor { + require(_min <= 1e18 / (data.bAssetData.length * 2), "Min weight oob"); + require(_max >= 1e18 / (data.bAssetData.length - 1), "Max weight oob"); + + data.weightLimits = WeightLimits(_min, _max); + + emit WeightLimitsChanged(_min, _max); + } + + /** + * @dev Update transfer fee flag for a given bAsset, should it change its fee practice + * @param _bAsset bAsset address + * @param _flag Charge transfer fee when its set to 'true', otherwise 'false' + */ + function setTransferFeesFlag(address _bAsset, bool _flag) external override onlyGovernor { + MassetManager.setTransferFeesFlag(data.bAssetPersonal, bAssetIndexes, _bAsset, _flag); + } + + /** + * @dev Transfers all collateral from one lending market to another - used initially + * to handle the migration between Aave V1 and Aave V2. Note - only supports non + * tx fee enabled assets. Supports going from no integration to integration, but + * not the other way around. + * @param _bAssets Array of basket assets to migrate + * @param _newIntegration Address of the new platform integration + */ + function migrateBassets(address[] calldata _bAssets, address _newIntegration) + external + override + onlyGovernor + { + MassetManager.migrateBassets(data.bAssetPersonal, bAssetIndexes, _bAssets, _newIntegration); + } + + /** + * @dev Executes the Auto Redistribution event by isolating the bAsset from the Basket + * @param _bAsset Address of the ERC20 token to isolate + * @param _belowPeg Bool to describe whether the bAsset deviated below peg (t) + * or above (f) + */ + function handlePegLoss(address _bAsset, bool _belowPeg) external onlyGovernor { + MassetManager.handlePegLoss(data.basket, data.bAssetPersonal, bAssetIndexes, _bAsset, _belowPeg); + } + + /** + * @dev Negates the isolation of a given bAsset + * @param _bAsset Address of the bAsset + */ + function negateIsolation(address _bAsset) external onlyGovernor { + MassetManager.negateIsolation(data.basket, data.bAssetPersonal, bAssetIndexes, _bAsset); + } + + /** + * @dev Starts changing of the amplification var A + * @param _targetA Target A value + * @param _rampEndTime Time at which A will arrive at _targetA + */ + function startRampA(uint256 _targetA, uint256 _rampEndTime) external onlyGovernor { + MassetManager.startRampA(data.ampData, _targetA, _rampEndTime, _getA(), A_PRECISION); + } + + /** + * @dev Stops the changing of the amplification var A, setting + * it to whatever the current value is. + */ + function stopRampA() external onlyGovernor { + MassetManager.stopRampA(data.ampData, _getA()); + } + + /** + * @dev Mints deficit to SAVE if k > token supply + */ + function mintDeficit() external returns (uint256 mintAmount) { + require(msg.sender == _governor() || msg.sender == _proxyAdmin(), "Gov or ProxyAdmin"); + + InvariantConfig memory config = _getConfig(); + (, uint256 k) = MassetLogic.computePrice(data.bAssetData, config); + require(k > config.supply, "No deficit"); + mintAmount = k - config.supply; + data.surplus += mintAmount; + + emit DeficitMinted(mintAmount); + } + + /** + * @dev Burns surplus if token supply > k + */ + function burnSurplus() external returns (uint256 burnAmount) { + InvariantConfig memory config = _getConfig(); + (, uint256 k) = MassetLogic.computePrice(data.bAssetData, config); + require(config.supply > k, "No surplus"); + burnAmount = config.supply - k; + // Transfer to ensure approval has been given + transferFrom(msg.sender, address(this), burnAmount); + + _burn(address(this), burnAmount); + emit SurplusBurned(msg.sender, burnAmount); + } +} diff --git a/contracts/shared/InitializableToken.sol b/contracts/shared/InitializableToken.sol index 1796b4a9..8d86be07 100644 --- a/contracts/shared/InitializableToken.sol +++ b/contracts/shared/InitializableToken.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity 0.8.2; -import { ERC205 } from "./@openzeppelin-2.5/ERC205.sol"; +import { ERC205, IERC20 } from "./@openzeppelin-2.5/ERC205.sol"; import { InitializableERC20Detailed } from "./InitializableERC20Detailed.sol"; /** diff --git a/contracts/z_mocks/masset/ExposedInvariantValidator.sol b/contracts/z_mocks/masset/ExposedInvariantValidator.sol deleted file mode 100644 index 21c1a4ca..00000000 --- a/contracts/z_mocks/masset/ExposedInvariantValidator.sol +++ /dev/null @@ -1,17 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later -pragma solidity 0.8.2; - -import { InvariantValidator } from "../../masset/InvariantValidator.sol"; -import "../../masset/MassetStructs.sol"; - -contract ExposedInvariantValidator is InvariantValidator { - - - function getK( - BassetData[] calldata _bAssets, - InvariantConfig memory _config - ) external pure returns (uint256 k) { - (uint256[] memory x, uint256 sum) = _getReserves(_bAssets); - k = _invariant(x, sum, _config.a); - } -} \ No newline at end of file diff --git a/contracts/z_mocks/masset/ExposedMasset.sol b/contracts/z_mocks/masset/ExposedMasset.sol index efc7d646..9b74cb85 100644 --- a/contracts/z_mocks/masset/ExposedMasset.sol +++ b/contracts/z_mocks/masset/ExposedMasset.sol @@ -1,18 +1,32 @@ // SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity 0.8.2; -import { Masset } from "../../masset/Masset.sol"; -import { ExposedInvariantValidator } from "./ExposedInvariantValidator.sol"; +import { Masset, InvariantConfig } from "../../masset/Masset.sol"; +import { MassetLogic } from "../../masset/MassetLogic.sol"; contract ExposedMasset is Masset { - constructor(address _nexus) Masset(_nexus) {} + constructor(address _nexus, uint256 _recolFee) Masset(_nexus, _recolFee) {} function getK() external view returns (uint256 k) { - k = ExposedInvariantValidator(address(forgeValidator)).getK(bAssetData, _getConfig()); + (, k) = MassetLogic.computePrice(data.bAssetData, _getConfig()); } function getA() public view returns (uint256) { return super._getA(); } + + function simulateRedeemMasset(uint256 _amt, uint256[] calldata _minOut, uint256 _recolFee) + external { + // Get config before burning. Burn > CacheSize + InvariantConfig memory config = _getConfig(); + config.recolFee = _recolFee; + MassetLogic.redeemProportionately( + data, + config, + _amt, + _minOut, + msg.sender + ); + } } \ No newline at end of file diff --git a/contracts/z_mocks/masset/ExposedMassetLogic.sol b/contracts/z_mocks/masset/ExposedMassetLogic.sol new file mode 100644 index 00000000..2b5a13bf --- /dev/null +++ b/contracts/z_mocks/masset/ExposedMassetLogic.sol @@ -0,0 +1,62 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later +pragma solidity 0.8.2; + +import "../../masset/MassetStructs.sol"; +import { MassetLogic } from "../../masset/MassetLogic.sol"; + +contract ExposedMassetLogic { + + function computeMint( + BassetData[] memory _bAssets, + uint8 _i, + uint256 _rawInput, + InvariantConfig memory _config + ) public view returns (uint256 mintAmount) { + return MassetLogic.computeMint(_bAssets, _i, _rawInput, _config); + } + + function computeMintMulti( + BassetData[] memory _bAssets, + uint8[] memory _indices, + uint256[] memory _rawInputs, + InvariantConfig memory _config + ) public view returns (uint256 mintAmount) { + return MassetLogic.computeMintMulti(_bAssets, _indices, _rawInputs, _config); + } + + function computeSwap( + BassetData[] memory _bAssets, + uint8 _i, + uint8 _o, + uint256 _rawInput, + uint256 _feeRate, + InvariantConfig memory _config + ) public view returns (uint256 bAssetOutputQuantity, uint256 scaledSwapFee) { + return MassetLogic.computeSwap(_bAssets, _i, _o, _rawInput, _feeRate, _config); + } + + function computeRedeem( + BassetData[] memory _bAssets, + uint8 _o, + uint256 _netMassetQuantity, + InvariantConfig memory _config, + uint256 _feeRate + ) public view returns (uint256 rawOutputUnits, uint256 scaledFee) { + return MassetLogic.computeRedeem(_bAssets, _o, _netMassetQuantity, _config, _feeRate); + } + + function computeRedeemExact( + BassetData[] memory _bAssets, + uint8[] memory _indices, + uint256[] memory _rawOutputs, + InvariantConfig memory _config, + uint256 _feeRate + ) public view returns (uint256 grossMasset, uint256 fee) { + return MassetLogic.computeRedeemExact(_bAssets, _indices, _rawOutputs, _config, _feeRate); + } + + function getK( + BassetData[] memory _bAssets, InvariantConfig memory _config) external view returns (uint256 k) { + (, k) = MassetLogic.computePrice(_bAssets, _config); + } +} diff --git a/contracts/z_mocks/masset/MockInvariantValidator.sol b/contracts/z_mocks/masset/MockInvariantValidator.sol deleted file mode 100644 index 4c39846a..00000000 --- a/contracts/z_mocks/masset/MockInvariantValidator.sol +++ /dev/null @@ -1,92 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later -pragma solidity 0.8.2; - -import { IInvariantValidator } from "../../interfaces/IInvariantValidator.sol"; -import "../../masset/MassetStructs.sol"; - -// Mock Invariant Validator simply returns 1:1 swap for swap, accounting for decimals -// Deducts any fee, too -contract MockInvariantValidator is IInvariantValidator { - - // Set this to output a diff amount than 1:1 - uint256 public outputMultiplier = 1000e15; - - /** - * @dev Set this to multiply output - * @param _multiplier Where 1.001x = 1001e15 - */ - function setMultiplier(uint256 _multiplier) external { - outputMultiplier = _multiplier; - } - - function _multiplyOutput(uint256 _output) internal view returns (uint256) { - return _output * outputMultiplier / 1e18; - } - - function computeMint( - BassetData[] calldata _bAssets, - uint8 _i, - uint256 _rawInput, - InvariantConfig memory /*_config*/ - ) external view override returns (uint256) { - uint256 scaledInput = (_rawInput * _bAssets[_i].ratio) / 1e8; - return _multiplyOutput(scaledInput); - } - - function computeMintMulti( - BassetData[] calldata _bAssets, - uint8[] calldata _indices, - uint256[] calldata _rawInputs, - InvariantConfig memory /*_config*/ - ) external view override returns (uint256) { - uint256 scaledInput; - uint8 idx; - uint256 len = _indices.length; - for (uint256 i = 0; i < len; i++) { - idx = _indices[i]; - scaledInput += (_rawInputs[i] * _bAssets[idx].ratio) / 1e8; - } - return _multiplyOutput(scaledInput); - } - - // Swap - function computeSwap( - BassetData[] calldata _bAssets, - uint8 _i, - uint8 _o, - uint256 _rawInput, - uint256 _feeRate, - InvariantConfig memory /*_config*/ - ) external view override returns (uint256 bAssetOutputQuantity, uint256 scaledSwapFee) { - uint256 totalReceived = (_rawInput * _bAssets[_i].ratio) / 1e8; - scaledSwapFee = (totalReceived * _feeRate) / 1e18; - uint256 delta = totalReceived - scaledSwapFee; - bAssetOutputQuantity = _multiplyOutput((delta * 1e8) / _bAssets[_o].ratio); - } - - // Redeem - function computeRedeem( - BassetData[] calldata _bAssets, - uint8 _i, - uint256 _mAssetQuantity, - InvariantConfig memory /*_config*/ - ) external view override returns (uint256) { - return _multiplyOutput((_mAssetQuantity * 1e8) / _bAssets[_i].ratio); - } - - function computeRedeemExact( - BassetData[] calldata _bAssets, - uint8[] calldata _indices, - uint256[] calldata _rawOutputs, - InvariantConfig memory /*_config*/ - ) external view override returns (uint256) { - uint256 scaledOutput; - uint8 idx; - uint256 len = _indices.length; - for (uint256 i = 0; i < len; i++) { - idx = _indices[i]; - scaledOutput += (_rawOutputs[i] * _bAssets[idx].ratio) / 1e8; - } - return _multiplyOutput(scaledOutput); - } -} \ No newline at end of file diff --git a/contracts/z_mocks/masset/migrate3/IBasketManager.sol b/contracts/z_mocks/masset/migrate2/IBasketManager.sol similarity index 91% rename from contracts/z_mocks/masset/migrate3/IBasketManager.sol rename to contracts/z_mocks/masset/migrate2/IBasketManager.sol index ac48ccf4..de2aa079 100644 --- a/contracts/z_mocks/masset/migrate3/IBasketManager.sol +++ b/contracts/z_mocks/masset/migrate2/IBasketManager.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity 0.8.2; -import { Basket } from "./MassetStructsV2.sol"; +import { Basket } from "./MassetStructsV1.sol"; /** * @notice Is the Basket Manager V2.0 interface used in the upgrade of mUSD from V2.0 to V3.0. diff --git a/contracts/z_mocks/masset/migrate3/IMassetV2.sol b/contracts/z_mocks/masset/migrate2/IMassetV1.sol similarity index 98% rename from contracts/z_mocks/masset/migrate3/IMassetV2.sol rename to contracts/z_mocks/masset/migrate2/IMassetV1.sol index 8cbb75ad..f0a6002d 100644 --- a/contracts/z_mocks/masset/migrate3/IMassetV2.sol +++ b/contracts/z_mocks/masset/migrate2/IMassetV1.sol @@ -4,7 +4,7 @@ pragma solidity 0.8.2; /** * @title mUSD interface before upgrade to V3 */ -interface IMassetV2 { +interface IMassetV1 { /** @dev Calc interest */ function collectInterest() external returns (uint256 swapFeesGained, uint256 newTotalSupply); diff --git a/contracts/z_mocks/masset/migrate3/InitializableModuleV2.sol b/contracts/z_mocks/masset/migrate2/InitializableModuleV1.sol similarity index 90% rename from contracts/z_mocks/masset/migrate3/InitializableModuleV2.sol rename to contracts/z_mocks/masset/migrate2/InitializableModuleV1.sol index c99d55fe..4cc22440 100644 --- a/contracts/z_mocks/masset/migrate3/InitializableModuleV2.sol +++ b/contracts/z_mocks/masset/migrate2/InitializableModuleV1.sol @@ -10,7 +10,7 @@ pragma solidity 0.8.2; * @dev VERSION: 3.0 * DATE: 2021-02-23 */ -contract InitializableModuleKeysV2 { +contract InitializableModuleKeysV1 { // Governance // Phases bytes32 private KEY_GOVERNANCE_DEPRICATED; // 2.x bytes32 private KEY_STAKING_DEPRICATED; // 1.2 @@ -24,6 +24,6 @@ contract InitializableModuleKeysV2 { bytes32 private KEY_SAVINGS_MANAGER_DEPRICATED; // 1.0 } -contract InitializableModuleV2 is InitializableModuleKeysV2 { +contract InitializableModuleV1 is InitializableModuleKeysV1 { address private nexus_depricated; } \ No newline at end of file diff --git a/contracts/z_mocks/masset/migrate3/MassetStructsV2.sol b/contracts/z_mocks/masset/migrate2/MassetStructsV1.sol similarity index 100% rename from contracts/z_mocks/masset/migrate3/MassetStructsV2.sol rename to contracts/z_mocks/masset/migrate2/MassetStructsV1.sol diff --git a/contracts/z_mocks/masset/migrate3/MusdV3Rebalance.sol b/contracts/z_mocks/masset/migrate2/MusdV2Rebalance.sol similarity index 97% rename from contracts/z_mocks/masset/migrate3/MusdV3Rebalance.sol rename to contracts/z_mocks/masset/migrate2/MusdV2Rebalance.sol index 014e6fb3..aa688081 100644 --- a/contracts/z_mocks/masset/migrate3/MusdV3Rebalance.sol +++ b/contracts/z_mocks/masset/migrate2/MusdV2Rebalance.sol @@ -8,7 +8,7 @@ import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol"; -import { IMassetV2 } from "./IMassetV2.sol"; +import { IMassetV1 } from "./IMassetV1.sol"; import { DyDxFlashLoan } from "../../../peripheral/dydx/DyDxFlashLoan.sol"; import { ICurve } from "../../../peripheral/Curve/ICurve.sol"; @@ -21,12 +21,12 @@ import { ICurve } from "../../../peripheral/Curve/ICurve.sol"; * @dev VERSION: 1.0 * DATE: 2021-03-22 */ -contract MusdV3Rebalance is DyDxFlashLoan, Ownable { +contract MusdV2Rebalance is DyDxFlashLoan, Ownable { using SafeERC20 for IERC20; // Contracts that are called to execute swaps - IMassetV2 constant mUsdV2 = IMassetV2(0xe2f2a5C287993345a840Db3B0845fbC70f5935a5); + IMassetV1 constant mUsdV1 = IMassetV1(0xe2f2a5C287993345a840Db3B0845fbC70f5935a5); ICurve constant curve3pool = ICurve(0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7); ICurve constant curveYpool = ICurve(0x45F783CCE6B7FF23B2ab2D70e416cdb7D6055f51); ICurve constant curveTUSDpool = ICurve(0xEcd5e75AFb02eFa118AF914515D6521aaBd189F1); @@ -155,13 +155,13 @@ contract MusdV3Rebalance is DyDxFlashLoan, Ownable { // Approve mUSD contract to transfer flash token from this contract // console.log("About to approve mUSD contract to transfer %s flash tokens >= %s %s", flashAmount, swapInputs[0], swapInputs[1]); require(flashAmount >= swapInputs[0] + swapInputs[1], "flash loan not >= swap inputs"); - IERC20(flashToken).safeApprove(address(mUsdV2), flashAmount); + IERC20(flashToken).safeApprove(address(mUsdV1), flashAmount); // If swapping flash token into mUSD for TUSD if (swapInputs[0] > 0) { // Swap flash token for TUSD using mUSD // console.log("About to mUSD swap %s flash tokens for TUSD", swapInputs[0]); - uint256 tusdOutput = mUsdV2.swap(flashToken, TUSD, swapInputs[0], address(this)); + uint256 tusdOutput = mUsdV1.swap(flashToken, TUSD, swapInputs[0], address(this)); // console.log("tusdOutput %s", tusdOutput); uint256 halfTusdOutput = tusdOutput / 2; @@ -205,7 +205,7 @@ contract MusdV3Rebalance is DyDxFlashLoan, Ownable { if (swapInputs[1] > 0) { // Swap flash token for USDT using mUSD // console.log("About to mUSD swap %s flash tokens for USDT", swapInputs[1]); - uint256 usdtOutput = mUsdV2.swap(flashToken, USDT, swapInputs[1], address(this)); + uint256 usdtOutput = mUsdV1.swap(flashToken, USDT, swapInputs[1], address(this)); // console.log("usdtOutput %s", usdtOutput); // Convert USDT for flash token using Curve 3pool diff --git a/contracts/z_mocks/masset/migrate3/MusdV3RebalanceSusd.sol b/contracts/z_mocks/masset/migrate2/MusdV2RebalanceSusd.sol similarity index 88% rename from contracts/z_mocks/masset/migrate3/MusdV3RebalanceSusd.sol rename to contracts/z_mocks/masset/migrate2/MusdV2RebalanceSusd.sol index cac2e6bd..26614155 100644 --- a/contracts/z_mocks/masset/migrate3/MusdV3RebalanceSusd.sol +++ b/contracts/z_mocks/masset/migrate2/MusdV2RebalanceSusd.sol @@ -4,7 +4,7 @@ pragma solidity 0.8.2; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; -import { IMassetV2 } from "./IMassetV2.sol"; +import { IMassetV1 } from "./IMassetV1.sol"; /** * @title Contract to balance mUSD bAssets using sUSD in preparation for the mUSD V3 upgrade. @@ -14,12 +14,12 @@ import { IMassetV2 } from "./IMassetV2.sol"; * @dev VERSION: 1.0 * DATE: 2021-03-22 */ -contract MusdV3SusdBalancer is Ownable { +contract MusdV2SusdBalancer is Ownable { using SafeERC20 for IERC20; // address immutable private owner; - IMassetV2 constant mUsdV2 = IMassetV2(0xe2f2a5C287993345a840Db3B0845fbC70f5935a5); + IMassetV1 constant mUsdV1 = IMassetV1(0xe2f2a5C287993345a840Db3B0845fbC70f5935a5); IERC20 constant sUSD = IERC20(0x57Ab1ec28D129707052df4dF418D58a2D46d5f51); /** @@ -42,12 +42,12 @@ contract MusdV3SusdBalancer is Ownable { sUSD.safeTransferFrom(funderAccount, address(this), sUsdTotal); // Approve mUSD contract to transfer sUSD from this contract - IERC20(sUSD).safeApprove(address(mUsdV2), sUsdTotal); + IERC20(sUSD).safeApprove(address(mUsdV1), sUsdTotal); uint256 output; for (uint256 i = 0; i < len; i++) { // Swap sUSD for bAsset using mUSD to balance the bAsset - output = mUsdV2.swap(address(sUSD), bAssets[i], amounts[i], address(this)); + output = mUsdV1.swap(address(sUSD), bAssets[i], amounts[i], address(this)); // Send the swap output back to the funder account IERC20(bAssets[i]).safeTransfer(funderAccount, output); diff --git a/tasks/deployMV3.ts b/tasks/deployMV3.ts index 24cc3635..89717b83 100644 --- a/tasks/deployMV3.ts +++ b/tasks/deployMV3.ts @@ -2,7 +2,7 @@ import "ts-node/register" import "tsconfig-paths/register" import { task } from "hardhat/config" -import { MusdV3__factory } from "types/generated" +import { MV1__factory } from "types/generated" import { DEAD_ADDRESS } from "@utils/constants" import { simpleToExactAmount } from "@utils/math" @@ -20,7 +20,10 @@ task("deployMV3", "Deploys the mUSD V3 implementation").setAction(async (_, hre) const nexus = network.name === "mainnet" ? "0xafce80b19a8ce13dec0739a1aab7a028d6845eb3" : DEAD_ADDRESS - const Manager = await ethers.getContractFactory("Manager") + const Logic = await ethers.getContractFactory("MassetLogic") + const logicLib = await Logic.deploy() + await logicLib.deployTransaction.wait() + const Manager = await ethers.getContractFactory("MassetManager") const managerLib = await Manager.deploy() await managerLib.deployTransaction.wait() const Migrator = await ethers.getContractFactory("Migrator") @@ -28,11 +31,12 @@ task("deployMV3", "Deploys the mUSD V3 implementation").setAction(async (_, hre) await migratorLib.deployTransaction.wait() const linkedAddress = { - __$4ff61640dcfbdf6af5752b96f9de1a9efe$__: migratorLib.address, - __$1a38b0db2bd175b310a9a3f8697d44eb75$__: managerLib.address, + libraries: { + MassetLogic: logicLib.address, + MassetManager: managerLib.address, + }, } - // Implementation - const massetFactory = new MusdV3__factory(linkedAddress, deployer) + const massetFactory = await ethers.getContractFactory("MV1", linkedAddress) const size = massetFactory.bytecode.length / 2 / 1000 if (size > 24.576) { console.error(`Masset size is ${size} kb: ${size - 24.576} kb too big`) diff --git a/tasks/deployMbtc.ts b/tasks/deployMbtc.ts index 98ae7efe..f076ca6c 100644 --- a/tasks/deployMbtc.ts +++ b/tasks/deployMbtc.ts @@ -11,7 +11,6 @@ import { SavingsContract, Masset, Masset__factory, - InvariantValidator__factory, AssetProxy__factory, MockERC20, MockERC20__factory, @@ -59,9 +58,10 @@ const deployBasset = async (sender: Signer, name: string, symbol: string, decima const deployMasset = async (sender: Signer, addresses: CommonAddresses, ethers, bAssetContracts: DeployedBasset[]): Promise => { // Invariant Validator console.log(`Deploying Invariant Validator`) - const forgeVal = await new InvariantValidator__factory(sender).deploy() - const receiptForgeVal = await forgeVal.deployTransaction.wait() - console.log(`Deployed Invariant Validator to ${forgeVal.address}. gas used ${receiptForgeVal.gasUsed}`) + const LogicFactory = await ethers.getContractFactory("MassetLogic") + const logicLib = await LogicFactory.deploy() + const receiptForgeVal = await logicLib.deployTransaction.wait() + console.log(`Deployed Invariant Validator to ${logicLib.address}. gas used ${receiptForgeVal.gasUsed}`) // External linked library const Manager = await ethers.getContractFactory("Manager") @@ -70,10 +70,12 @@ const deployMasset = async (sender: Signer, addresses: CommonAddresses, ethers, console.log(`Deployed Manager library to ${managerLib.address}. gas used ${receiptManager.gasUsed}`) const linkedAddress = { - __$1a38b0db2bd175b310a9a3f8697d44eb75$__: managerLib.address, + libraries: { + MassetLogic: logicLib.address, + MassetManager: managerLib.address, + }, } - // Implementation - const massetFactory = new Masset__factory(linkedAddress, sender) + const massetFactory = await ethers.getContractFactory("Masset", linkedAddress) const size = massetFactory.bytecode.length / 2 / 1000 if (size > 24.576) { console.error(`Masset size is ${size} kb: ${size - 24.576} kb too big`) @@ -87,7 +89,7 @@ const deployMasset = async (sender: Signer, addresses: CommonAddresses, ethers, // Initialization Data console.log( - `Initializing Masset with: ${mBtcName}, ${mBtcSymbol}, ${forgeVal.address}, [${bAssetContracts.map( + `Initializing Masset with: ${mBtcName}, ${mBtcSymbol}, [${bAssetContracts.map( // eslint-disable-next-line (b) => "{" + b.contract.address + ", " + b.integrator + ", " + b.txFee + ", " + 0 + "}", )} ] , ${config.a.toString()}, ${config.limits.min.toString()}, ${config.limits.max.toString()}`, @@ -95,7 +97,6 @@ const deployMasset = async (sender: Signer, addresses: CommonAddresses, ethers, const data = impl.interface.encodeFunctionData("initialize", [ mBtcName, mBtcSymbol, - forgeVal.address, bAssetContracts.map((b) => ({ addr: b.contract.address, integrator: b.integrator, @@ -118,7 +119,7 @@ const deployMasset = async (sender: Signer, addresses: CommonAddresses, ethers, } // Create a Masset contract pointing to the deployed proxy contract - return new Masset__factory(linkedAddress, sender).attach(mBtcProxy.address) + return massetFactory.attach(mBtcProxy.address) } const mint = async (sender: Signer, bAssets: DeployedBasset[], mBTC: Masset) => { @@ -482,6 +483,7 @@ task("initMBTC", "Initializes the mBTC and imBTC implementations").setAction(asy console.log(`Connecting using ${await deployer.getAddress()} and url ${network.name}`) const addresses = { + mBtcLogic: "0x1E91F826fa8aA4fa4D3F595898AF3A64dd188848", mBtcManager: "0x1E91F826fa8aA4fa4D3F595898AF3A64dd188848", mBtcImpl: "0x69AD1387dA6b2Ab2eA4bF2BEE68246bc042B587f", imBtcImpl: "0x1C728F1bda86CD8d19f56E36eb9e24ED3E572A39", @@ -490,13 +492,16 @@ task("initMBTC", "Initializes the mBTC and imBTC implementations").setAction(asy // mBTC Implementation const linkedAddress = { - __$1a38b0db2bd175b310a9a3f8697d44eb75$__: addresses.mBtcManager, + libraries: { + MassetLogic: addresses.mBtcLogic, + MassetManager: addresses.mBtcManager, + }, } - const mBtcImpl = await new Masset__factory(linkedAddress, deployer).attach(addresses.mBtcImpl) + const massetFactory = await ethers.getContractFactory("Masset", linkedAddress) + const mBtcImpl = massetFactory.attach(addresses.mBtcImpl) const tx1 = await mBtcImpl.initialize( "DEAD", "DEAD", - DEAD_ADDRESS, [ { addr: addresses.deadToken, diff --git a/tasks/deployRevenueRecipient.ts b/tasks/deployRevenueRecipient.ts index f710a127..d5149910 100644 --- a/tasks/deployRevenueRecipient.ts +++ b/tasks/deployRevenueRecipient.ts @@ -18,6 +18,7 @@ interface Config { dao: string daoProxy: string nexus: string + balToken: string } task("deployRevenueRecipient", "Deploys an instance of revenue recipient contract").setAction(async (_, hre) => { @@ -49,6 +50,7 @@ task("deployRevenueRecipient", "Deploys an instance of revenue recipient contrac dao: "0xF6FF1F7FCEB2cE6d26687EaaB5988b445d0b94a2", daoProxy: "0x7fFAF4ceD81E7c4E71b3531BD7948d7FA8f20329", nexus: "0xAFcE80b19A8cE13DEc0739a1aaB7A028d6845Eb3", + balToken: "0xba100000625a3754423978a60c9317c58a424e3D", } const poolRights = { @@ -119,7 +121,13 @@ task("deployRevenueRecipient", "Deploys an instance of revenue recipient contrac await tx.wait() // Deploy RevenueRecipient contract - const recipient = await new RevenueRecipient__factory(deployer).deploy(config.nexus, poolAddress, config.mAssets, config.minOuts) + const recipient = await new RevenueRecipient__factory(deployer).deploy( + config.nexus, + poolAddress, + config.balToken, + config.mAssets, + config.minOuts, + ) console.log(`Deploying recipient... ${tx.hash}`) receipt = await recipient.deployTransaction.wait() console.log(`Deployed Recipient to ${recipient.address}. gas used ${receipt.gasUsed}`) diff --git a/tasks/mBTC.ts b/tasks/mBTC.ts index b9e80299..ee12baa0 100644 --- a/tasks/mBTC.ts +++ b/tasks/mBTC.ts @@ -2,7 +2,7 @@ import { btcBassets, capFactor, contracts, startingCap } from "@utils/btcConstan import { Signer } from "ethers" import { formatUnits } from "ethers/lib/utils" import { task, types } from "hardhat/config" -import { Masset, Masset__factory, ExposedInvariantValidator__factory } from "types/generated" +import { Masset, Masset__factory, ExposedMassetLogic__factory } from "types/generated" import { BN } from "@utils/math" import { dumpBassetStorage, dumpConfigStorage, dumpTokenStorage } from "./utils/storage-utils" import { @@ -94,7 +94,16 @@ task("mBTC-snap", "Get the latest data from the mBTC contracts") let exposedValidator if (network.name !== "mainnet") { console.log("Not mainnet") - exposedValidator = await new ExposedInvariantValidator__factory(signer).deploy() + + const LogicFactory = await ethers.getContractFactory("MassetLogic") + const logicLib = await LogicFactory.deploy() + const linkedAddress = { + libraries: { + MassetLogic: logicLib.address, + }, + } + const massetFactory = await ethers.getContractFactory("ExposedMassetLogic", linkedAddress) + exposedValidator = await massetFactory.deploy() } const mAsset = getMasset(signer) diff --git a/tasks/mUSD.ts b/tasks/mUSD.ts index 47d1f38f..3ef65110 100644 --- a/tasks/mUSD.ts +++ b/tasks/mUSD.ts @@ -3,7 +3,7 @@ import "tsconfig-paths/register" import { task, types } from "hardhat/config" import { Signer } from "ethers" -import { Masset, ExposedInvariantValidator__factory, Masset__factory } from "types/generated" +import { Masset, Masset__factory } from "types/generated" import { BN } from "@utils/math" import { dumpBassetStorage, dumpConfigStorage, dumpTokenStorage } from "./utils/storage-utils" import { @@ -44,11 +44,7 @@ const getBalances = async (mAsset: Masset, toBlock: number): Promise = const balancerETHmUSD5050Balance = await mAsset.balanceOf("0xe036cce08cf4e23d33bc6b18e53caf532afa8513", { blockTag: toBlock, }) - const otherBalances = mAssetBalance - .sub(savingBalance) - .sub(curveMusdBalance) - .sub(mStableDAOBalance) - .sub(balancerETHmUSD5050Balance) + const otherBalances = mAssetBalance.sub(savingBalance).sub(curveMusdBalance).sub(mStableDAOBalance).sub(balancerETHmUSD5050Balance) console.log("\nmUSD Holders") console.log(`imUSD ${usdFormatter(savingBalance)} ${savingBalance.mul(100).div(mAssetBalance)}%`) @@ -59,7 +55,7 @@ const getBalances = async (mAsset: Masset, toBlock: number): Promise = ) console.log(`Others ${usdFormatter(otherBalances)} ${otherBalances.mul(100).div(mAssetBalance)}%`) - const surplus = await mAsset.surplus({ + const { surplus } = await mAsset.data({ blockTag: toBlock, }) console.log(`Surplus ${usdFormatter(surplus)}`) @@ -98,7 +94,16 @@ task("mUSD-snap", "Snaps mUSD") let exposedValidator if (network.name !== "mainnet") { console.log("Not mainnet") - exposedValidator = await new ExposedInvariantValidator__factory(signer).deploy() + + const LogicFactory = await ethers.getContractFactory("MassetLogic") + const logicLib = await LogicFactory.deploy() + const linkedAddress = { + libraries: { + MassetLogic: logicLib.address, + }, + } + const massetFactory = await ethers.getContractFactory("ExposedMassetLogic", linkedAddress) + exposedValidator = await massetFactory.deploy() } const mAsset = getMasset(signer) diff --git a/tasks/utils/snap-utils.ts b/tasks/utils/snap-utils.ts index 9a3121d0..bd9edfb2 100644 --- a/tasks/utils/snap-utils.ts +++ b/tasks/utils/snap-utils.ts @@ -2,7 +2,7 @@ import { Signer } from "ethers" import { fullScale, ONE_YEAR } from "@utils/constants" import { applyDecimals, applyRatio, BN } from "@utils/math" import { formatUnits } from "ethers/lib/utils" -import { FeederPool, Masset, ValidatorWithTVLCap__factory, ExposedInvariantValidator } from "types/generated" +import { ExposedMassetLogic, FeederPool, Masset, ValidatorWithTVLCap__factory } from "types/generated" import { QuantityFormatter } from "./quantity-formatters" import { Token } from "./tokens" @@ -114,7 +114,7 @@ export const getBasket = async ( mAssetName = "mBTC", quantityFormatter: QuantityFormatter, tvlConfig?: TvlConfig, - exposedValidator?: ExposedInvariantValidator, + exposedLogic?: ExposedMassetLogic, ): Promise => { const bAssets = await asset.getBassets() const bAssetTotals: BN[] = [] @@ -131,14 +131,18 @@ export const getBasket = async ( console.log(` ${symbol.padEnd(7)} ${quantityFormatter(bAssetTotals[i]).padEnd(20)} ${percentage.toString().padStart(2)}%`) }) - const mAssetSurplus = isFeederPool(asset) ? BN.from(0) : await asset.surplus() + const mAssetSurplus = isFeederPool(asset) ? BN.from(0) : (await asset.data()).surplus const mAssetSupply = await asset.totalSupply() console.log(`Surplus ${formatUnits(mAssetSurplus)}`) console.log(`${mAssetName} ${formatUnits(mAssetSupply)}`) const mAssetTotal = mAssetSupply.add(mAssetSurplus) - if (exposedValidator) { - const k = await exposedValidator.getK(bAssets[1], await asset.getConfig()) + if (exposedLogic) { + const config = { + ...(await asset.getConfig()), + recolFee: 0, + } + const k = await exposedLogic.getK(bAssets[1], config) console.log(`Total (K) ${formatUnits(k)}`) // Sum of base assets less mAsset total supply less mAsset surplus diff --git a/tasks/utils/storage-utils.ts b/tasks/utils/storage-utils.ts index 9146bf11..2e1de5b8 100644 --- a/tasks/utils/storage-utils.ts +++ b/tasks/utils/storage-utils.ts @@ -25,8 +25,8 @@ export const dumpBassetStorage = async (mAsset: Masset, toBlock: number): Promis console.log(` Integration:`, bAssets.personal[i].integrator.toString()) console.log(` Tx fee :`, bAssets.personal[i].hasTxFee.toString()) console.log(` Status :`, bAssets.personal[i].status.toString()) - console.log(` Ratio :`, bAssets.data[i].ratio.toString()) - console.log(` Vault :`, bAssets.data[i].vaultBalance.toString()) + console.log(` Ratio :`, bAssets.bData[i].ratio.toString()) + console.log(` Vault :`, bAssets.bData[i].vaultBalance.toString()) console.log("\n") }) @@ -44,7 +44,7 @@ export const dumpBassetStorage = async (mAsset: Masset, toBlock: number): Promis console.log("RedemptionFee : ", (await mAsset.redemptionFee(override)).toString()) // console.log("GovFee: ", (await mAsset.redemptionFee(override)).toString()) - console.log("Surplus : ", (await mAsset.surplus(override)).toString()) + console.log("Surplus : ", (await mAsset.data(override)).surplus.toString()) } // Get fAsset storage variables diff --git a/test-fork/mUSD/BasketManagerV2.json b/test-fork/mUSD/BasketManagerV1.json similarity index 100% rename from test-fork/mUSD/BasketManagerV2.json rename to test-fork/mUSD/BasketManagerV1.json diff --git a/test-fork/mUSD/MassetV2.json b/test-fork/mUSD/MassetV1.json similarity index 100% rename from test-fork/mUSD/MassetV2.json rename to test-fork/mUSD/MassetV1.json diff --git a/test-fork/mUSD/mUSD-migrate.spec.ts b/test-fork/mUSD/mUSD-migrate.spec.ts.parked similarity index 92% rename from test-fork/mUSD/mUSD-migrate.spec.ts rename to test-fork/mUSD/mUSD-migrate.spec.ts.parked index 5bf0bc91..e8b232d9 100644 --- a/test-fork/mUSD/mUSD-migrate.spec.ts +++ b/test-fork/mUSD/mUSD-migrate.spec.ts.parked @@ -9,21 +9,21 @@ import { DelayedProxyAdmin__factory, ERC20__factory, Masset, - MusdV3, - MusdV3__factory, - MusdV3Rebalance__factory, - MusdV3Rebalance, + MV1, + MV1__factory, + MusdV2Rebalance__factory, + MusdV2Rebalance, AaveV2Integration, } from "types/generated" -import { MusdV3LibraryAddresses } from "types/generated/factories/MusdV3__factory" +import { MV1LibraryAddresses } from "types/generated/factories/MV1__factory" import { BassetStatus } from "@utils/mstable-objects" import { increaseTime } from "@utils/time" import { assertBNClosePercent } from "@utils/assertions" import { formatUnits } from "ethers/lib/utils" -import { abi as MusdV2Abi, bytecode as MusdV2Bytecode } from "./MassetV2.json" -import { abi as BasketManagerV2Abi, bytecode as BasketManagerV2Bytecode } from "./BasketManagerV2.json" +import { abi as MusdV1Abi, bytecode as MusdV1Bytecode } from "./MassetV1.json" +import { abi as BasketManagerV2Abi, bytecode as BasketManagerV2Bytecode } from "./BasketManagerV1.json" import { abi as SavingsManagerAbi, bytecode as SavingsManagerBytecode } from "./SavingsManager.json" // Accounts that are impersonated @@ -34,7 +34,7 @@ const daiWhaleAddress = "0xdb2C46Ed8E850668b942d9Bd6D2ae8803c6789DF" // Mainnet contract addresses const validatorAddress = "0xCa480D596e6717C95a62a4DC1bD4fbD7b7E7d705" -const mUsdV3Address = "0x15B2838Cd28cc353Afbe59385db3F366D8945AEe" +const mUsdV2Address = "0x15B2838Cd28cc353Afbe59385db3F366D8945AEe" const mUsdProxyAddress = "0xe2f2a5C287993345a840Db3B0845fbC70f5935a5" const basketManagerAddress = "0x66126B4aA2a1C07536Ef8E5e8bD4EfDA1FdEA96D" const nexusAddress = "0xAFcE80b19A8cE13DEc0739a1aaB7A028d6845Eb3" @@ -201,33 +201,33 @@ const impersonateAccounts = async () => { return accounts } -interface DeployedMusdV3 { - proxy: MusdV3 - impl: MusdV3 +interface DeployedMV1 { + proxy: MV1 + impl: MV1 } // Deploys Migrator, pulls Manager address and deploys mUSD implementation -const getMusdv3 = async (deployer: Signer): Promise => { - const linkedAddress: MusdV3LibraryAddresses = { +const getMusdv2 = async (deployer: Signer): Promise => { + const linkedAddress: MV1LibraryAddresses = { __$4ff61640dcfbdf6af5752b96f9de1a9efe$__: "0xda681D409319b1f4122B1402C8B5cD4BaEDF9001", // Migrator library __$1a38b0db2bd175b310a9a3f8697d44eb75$__: "0x1E91F826fa8aA4fa4D3F595898AF3A64dd188848", // Masset Manager } // Point to the mUSD contract using the new V3 interface via the existing mUSD proxy - const mUsdV3Factory = new MusdV3__factory(linkedAddress, deployer) - const mUsdV3Proxy = mUsdV3Factory.attach(mUsdProxyAddress) + const mUsdV2Factory = new MusdV1__factory(linkedAddress, deployer) + const mUsdV2Proxy = mUsdV2Factory.attach(mUsdProxyAddress) // Deploy the new mUSD implementation - const mUsdV3Impl = mUsdV3Factory.attach(mUsdV3Address) + const mUsdV2Impl = mUsdV2Factory.attach(mUsdV2Address) return { - proxy: mUsdV3Proxy, - impl: mUsdV3Impl, + proxy: mUsdV2Proxy, + impl: mUsdV2Impl, } } // Test mUSD token storage variables -const validateTokenStorage = async (token: MusdV3 | Masset | Contract, overrideSupply = "45324535157903774527261941") => { +const validateTokenStorage = async (token: MusdV2 | Masset | Contract, overrideSupply = "45324535157903774527261941") => { expect(await token.symbol(), "symbol").to.eq("mUSD") expect(await token.name(), "name").to.eq("mStable USD") expect(await token.decimals(), "decimals").to.eq(18) @@ -237,7 +237,7 @@ const validateTokenStorage = async (token: MusdV3 | Masset | Contract, overrideS } // Test the existing Masset V2 storage variables -const validateUnchangedMassetStorage = async (mUsd: MusdV3 | Masset | Contract, overrideSurplus = "358648087000000000001") => { +const validateUnchangedMassetStorage = async (mUsd: MusdV2 | Masset | Contract, overrideSurplus = "358648087000000000001") => { expect(await mUsd.swapFee(), "swap fee").to.eq(simpleToExactAmount(6, 14)) expect(await mUsd.redemptionFee(), "redemption fee").to.eq(simpleToExactAmount(3, 14)) expect(await mUsd.cacheSize(), "cache size").to.eq(simpleToExactAmount(3, 16)) @@ -260,7 +260,7 @@ const validateBasset = (bAssets, i: number, expectToken: Token, expectVaultBalan } // Test the new Masset V3 storage variables -const validateNewMassetStorage = async (mUsd: MusdV3 | Masset, validator: string, expectVaultBalances?: BN[]) => { +const validateNewMassetStorage = async (mUsd: MusdV2 | Masset, validator: string, expectVaultBalances?: BN[]) => { expect(await mUsd.forgeValidator(), "forge validator").to.eq(validator) expect(await mUsd.maxBassets(), "maxBassets").to.eq(10) @@ -329,7 +329,7 @@ const balanceBasset = async ( const validateFlashLoan = async ( flashToken: Token, basketManager: Contract, - mUsdRebalance: MusdV3Rebalance, + mUsdRebalance: MusdV2Rebalance, scaledTargetBalance: BN, overweightTokenSplits: BN[], // TUSD and USDC proportions in basis points (bps), loanPercentage = 100, @@ -460,7 +460,7 @@ const validateFlashLoan = async ( * Step 1: Deploy contract and propose upgrade to begin the 1 week countdown * 1. Deploy Migrator, Manager & InvariantValidator * 2. Deploy mUSD & propose upgrade with initialization data - * Test 1: i) Deployed mUSDV3 contract has been proposed correctly + * Test 1: i) Deployed mUSDV2 contract has been proposed correctly * * ~~ Wait 6 days ~~ * @@ -492,7 +492,7 @@ const validateFlashLoan = async ( * ------------------------------ * mUSD proxy address: 0xe2f2a5C287993345a840Db3B0845fbC70f5935a5 * Current implementation: 0xe0d0d052d5b1082e52c6b8422acd23415c3df1c4 & https://github.com/mstable/mStable-contracts/blob/6d935eb8c8797e240a7e9fde7603c90d730608ce/contracts/masset/Masset.sol - * New implementation: ../../contracts/masset/mUSD/MusdV3.sol + * New implementation: ../../contracts/masset/mUSD/MusdV2.sol * Contract diff vs current implementation: https://www.diffchecker.com/QqxVbKxb * Contract diff vs Masset.sol: https://www.diffchecker.com/jwpfAgVK */ @@ -506,7 +506,7 @@ describe("mUSD V2.0 to V3.0", () => { let savingsManager: Contract let mUsdV2Factory: ContractFactory let mUsdV2: Contract - let mUsdV3: DeployedMusdV3 + let mUsdV2: DeployedMusdV2 let delayedProxyAdmin: DelayedProxyAdmin let deployer: Signer let governor: Signer @@ -530,7 +530,7 @@ describe("mUSD V2.0 to V3.0", () => { governor = accounts.governor // Point to mUSD contract using the old V2 interface via the proxy - mUsdV2Factory = new ContractFactory(MusdV2Abi, MusdV2Bytecode, deployer) + mUsdV2Factory = new ContractFactory(MusdV1Abi, MusdV1Bytecode, deployer) mUsdV2 = mUsdV2Factory.attach(mUsdProxyAddress) delayedProxyAdmin = new DelayedProxyAdmin__factory(governor).attach(delayedProxyAdminAddress) @@ -558,22 +558,22 @@ describe("mUSD V2.0 to V3.0", () => { * Step 1: Deploy contract and propose upgrade to begin the 1 week countdown * 1. Deploy Migrator & InvariantValidator * 2. Deploy mUSD & propose upgrade with initialization data - * Test 1: i) Deployed mUSDV3 contract has been proposed correctly + * Test 1: i) Deployed mUSDV2 contract has been proposed correctly * ii) Existing storage in BasketManager checks out */ describe("STEP 1: Deploy & propose upgrade", () => { it("gets deployed mUSD impl", async () => { - mUsdV3 = await getMusdv3(deployer) + mUsdV2 = await getMusdv2(deployer) }) it("proposes mUSD upgrade to proxyadmin", async () => { - const data = await mUsdV3.impl.interface.encodeFunctionData("upgrade", [validatorAddress, defaultConfig]) + const data = await mUsdV2.impl.interface.encodeFunctionData("upgrade", [validatorAddress, defaultConfig]) const request = await delayedProxyAdmin.requests(mUsdProxyAddress) expect(request.data).eq(data) - expect(request.implementation).eq(mUsdV3.impl.address) + expect(request.implementation).eq(mUsdV2.impl.address) }) it("checks nexus address on deployed mUSD", async () => { - const assignedNexus = await mUsdV3.impl.nexus() + const assignedNexus = await mUsdV2.impl.nexus() expect(assignedNexus).eq(nexusAddress) }) it("delays 6 days", async () => { @@ -709,46 +709,46 @@ describe("mUSD V2.0 to V3.0", () => { }) it("Should have proper storage", async () => { // validate after the upgrade - await validateTokenStorage(mUsdV3.proxy) - await validateUnchangedMassetStorage(mUsdV3.proxy, "1") - await validateNewMassetStorage(mUsdV3.proxy, validatorAddress, balancedVaultBalances) + await validateTokenStorage(mUsdV2.proxy) + await validateUnchangedMassetStorage(mUsdV2.proxy, "1") + await validateNewMassetStorage(mUsdV2.proxy, validatorAddress, balancedVaultBalances) }) it("blocks mint/swap/redeem", async () => { // mint/swap = Unhealthy - await expect(mUsdV3.proxy.mint(finalBassets[0].address, simpleToExactAmount(1), 0, DEAD_ADDRESS)).to.be.revertedWith( + await expect(mUsdV2.proxy.mint(finalBassets[0].address, simpleToExactAmount(1), 0, DEAD_ADDRESS)).to.be.revertedWith( "Unhealthy", ) await expect( - mUsdV3.proxy.mintMulti([finalBassets[0].address], [simpleToExactAmount(1)], 0, DEAD_ADDRESS), + mUsdV2.proxy.mintMulti([finalBassets[0].address], [simpleToExactAmount(1)], 0, DEAD_ADDRESS), ).to.be.revertedWith("Unhealthy") await expect( - mUsdV3.proxy.swap(finalBassets[0].address, finalBassets[1].address, simpleToExactAmount(1), 0, DEAD_ADDRESS), + mUsdV2.proxy.swap(finalBassets[0].address, finalBassets[1].address, simpleToExactAmount(1), 0, DEAD_ADDRESS), ).to.be.revertedWith("Unhealthy") // redeem = In recol - await expect(mUsdV3.proxy.redeem(finalBassets[0].address, simpleToExactAmount(1), 0, DEAD_ADDRESS)).to.be.revertedWith( + await expect(mUsdV2.proxy.redeem(finalBassets[0].address, simpleToExactAmount(1), 0, DEAD_ADDRESS)).to.be.revertedWith( "In recol", ) await expect( - mUsdV3.proxy.redeemExactBassets([finalBassets[0].address], [simpleToExactAmount(1)], 0, DEAD_ADDRESS), + mUsdV2.proxy.redeemExactBassets([finalBassets[0].address], [simpleToExactAmount(1)], 0, DEAD_ADDRESS), ).to.be.revertedWith("In recol") - await expect(mUsdV3.proxy.redeemMasset(simpleToExactAmount(1), [0], DEAD_ADDRESS)).to.be.revertedWith("In recol") + await expect(mUsdV2.proxy.redeemMasset(simpleToExactAmount(1), [0], DEAD_ADDRESS)).to.be.revertedWith("In recol") }) it("blocks interest collection", async () => { // collectAndDistributeInterest - await expect(savingsManager.collectAndDistributeInterest(mUsdV3.proxy.address)).to.be.revertedWith("Pausable: paused") + await expect(savingsManager.collectAndDistributeInterest(mUsdV2.proxy.address)).to.be.revertedWith("Pausable: paused") // collectAndStreamInterest - await expect(savingsManager.collectAndStreamInterest(mUsdV3.proxy.address)).to.be.revertedWith("Pausable: paused") + await expect(savingsManager.collectAndStreamInterest(mUsdV2.proxy.address)).to.be.revertedWith("Pausable: paused") }) it("Should fail to upgrade mUSD again", async () => { - await expect(mUsdV3.proxy.upgrade(validatorAddress, defaultConfig)).to.revertedWith("already upgraded") + await expect(mUsdV2.proxy.upgrade(validatorAddress, defaultConfig)).to.revertedWith("already upgraded") }) }) describe("unpause system and test", () => { it("Enables mUSD after upgrade", async () => { await savingsManager.unpause() - await mUsdV3.proxy.connect(governor).negateIsolation(finalBassets[0].address) + await mUsdV2.proxy.connect(governor).negateIsolation(finalBassets[0].address) // Get basket state - const basketState = await mUsdV3.proxy.basket() + const basketState = await mUsdV2.proxy.basket() expect(basketState.undergoingRecol, "undergoingRecol").to.be.false expect(basketState[0], "basketState[0]").to.be.false expect(basketState.failed, "undergoingRecol").to.be.false @@ -767,12 +767,12 @@ describe("mUSD V2.0 to V3.0", () => { // Slippage protection check await expect( - mUsdV3.proxy.connect(signer).mint(token.address, qty, simpleToExactAmount(10001), await signer.getAddress()), + mUsdV2.proxy.connect(signer).mint(token.address, qty, simpleToExactAmount(10001), await signer.getAddress()), ).to.be.revertedWith("Mint quantity < min qty") // Real mint - const tx = mUsdV3.proxy.connect(signer).mint(token.address, qty, simpleToExactAmount(9999), await signer.getAddress()) - await expect(tx, "Minted event").to.emit(mUsdV3.proxy, "Minted") + const tx = mUsdV2.proxy.connect(signer).mint(token.address, qty, simpleToExactAmount(9999), await signer.getAddress()) + await expect(tx, "Minted event").to.emit(mUsdV2.proxy, "Minted") await (await tx).wait() }) it("Should mintMulti after upgrade", async () => { @@ -784,14 +784,14 @@ describe("mUSD V2.0 to V3.0", () => { await tokenContract.approve(mUsdProxyAddress, qty) // Slippage protection check await expect( - mUsdV3.proxy.connect(signer).mintMulti([token.address], [qty], simpleToExactAmount(10001), await signer.getAddress()), + mUsdV2.proxy.connect(signer).mintMulti([token.address], [qty], simpleToExactAmount(10001), await signer.getAddress()), ).to.be.revertedWith("Mint quantity < min qty") // Real mint - const tx = mUsdV3.proxy + const tx = mUsdV2.proxy .connect(signer) .mintMulti([token.address], [qty], simpleToExactAmount(9999), await signer.getAddress()) - await expect(tx, "Minted event").to.emit(mUsdV3.proxy, "MintedMulti") + await expect(tx, "Minted event").to.emit(mUsdV2.proxy, "MintedMulti") await (await tx).wait() }) it("Should swap after upgrade", async () => { @@ -803,7 +803,7 @@ describe("mUSD V2.0 to V3.0", () => { await tokenContract.approve(mUsdProxyAddress, qty) // Slippage protection check await expect( - mUsdV3.proxy + mUsdV2.proxy .connect(signer) .swap( token.address, @@ -815,7 +815,7 @@ describe("mUSD V2.0 to V3.0", () => { ).to.be.revertedWith("Output qty < minimum qty") // Real mint - const tx = mUsdV3.proxy + const tx = mUsdV2.proxy .connect(signer) .swap( token.address, @@ -824,7 +824,7 @@ describe("mUSD V2.0 to V3.0", () => { simpleToExactAmount(9990, finalBassets[3].decimals), await signer.getAddress(), ) - await expect(tx, "Swapped event").to.emit(mUsdV3.proxy, "Swapped") + await expect(tx, "Swapped event").to.emit(mUsdV2.proxy, "Swapped") await (await tx).wait() }) it("Should redeem after upgrade", async () => { @@ -833,16 +833,16 @@ describe("mUSD V2.0 to V3.0", () => { const qty = simpleToExactAmount(10000, 18) // Slippage protection check await expect( - mUsdV3.proxy + mUsdV2.proxy .connect(signer) .redeem(token.address, qty, simpleToExactAmount(10001, token.decimals), await signer.getAddress()), ).to.be.revertedWith("bAsset qty < min qty") // Real mint - const tx = mUsdV3.proxy + const tx = mUsdV2.proxy .connect(signer) .redeem(token.address, qty, simpleToExactAmount(9990, token.decimals), await signer.getAddress()) - await expect(tx, "Redeem event").to.emit(mUsdV3.proxy, "Redeemed") + await expect(tx, "Redeem event").to.emit(mUsdV2.proxy, "Redeemed") await (await tx).wait() }) it("Should redeemExact after upgrade", async () => { @@ -850,7 +850,7 @@ describe("mUSD V2.0 to V3.0", () => { const signer = await impersonate(mUsdWhaleAddress) // Slippage protection check await expect( - mUsdV3.proxy + mUsdV2.proxy .connect(signer) .redeemExactBassets( [token.address], @@ -861,7 +861,7 @@ describe("mUSD V2.0 to V3.0", () => { ).to.be.revertedWith("Redeem mAsset qty > max quantity") // Real mint - const tx = mUsdV3.proxy + const tx = mUsdV2.proxy .connect(signer) .redeemExactBassets( [token.address], @@ -869,14 +869,14 @@ describe("mUSD V2.0 to V3.0", () => { simpleToExactAmount(10010), await signer.getAddress(), ) - await expect(tx, "Redeem event").to.emit(mUsdV3.proxy, "RedeemedMulti") + await expect(tx, "Redeem event").to.emit(mUsdV2.proxy, "RedeemedMulti") await (await tx).wait() }) it("Should redeemMasset after upgrade", async () => { const signer = await impersonate(mUsdWhaleAddress) // Slippage protection check await expect( - mUsdV3.proxy.connect(signer).redeemMasset( + mUsdV2.proxy.connect(signer).redeemMasset( simpleToExactAmount(10000), finalBassets.map((b) => simpleToExactAmount(2501, b.decimals)), await signer.getAddress(), @@ -884,21 +884,21 @@ describe("mUSD V2.0 to V3.0", () => { ).to.be.revertedWith("bAsset qty < min qty") // Real mint - const tx = mUsdV3.proxy.connect(signer).redeemMasset( + const tx = mUsdV2.proxy.connect(signer).redeemMasset( simpleToExactAmount(10000), finalBassets.map((b) => simpleToExactAmount(2490, b.decimals)), await signer.getAddress(), ) - await expect(tx, "Redeem event").to.emit(mUsdV3.proxy, "RedeemedMulti") + await expect(tx, "Redeem event").to.emit(mUsdV2.proxy, "RedeemedMulti") await (await tx).wait() }) it("should collect interest after upgrade", async () => { - await savingsManager.collectAndDistributeInterest(mUsdV3.proxy.address) + await savingsManager.collectAndDistributeInterest(mUsdV2.proxy.address) }) }) }) context("Add DAI and balance mUSD bAssets on-chain using DyDx flash loans", () => { - let mUsdRebalancer: MusdV3Rebalance + let mUsdRebalancer: MusdV2Rebalance let scaledTargetBalance: BN let overweightTokenSplits: BN[] before(async () => { @@ -942,7 +942,7 @@ describe("mUSD V2.0 to V3.0", () => { console.log(`TUSD ${overweightTokenSplits[0]} bps, USDT ${overweightTokenSplits[1]} bps of the overweight tokens`) const signer = await impersonate(daiWhaleAddress) - const mUsdRebalancerFactory = new MusdV3Rebalance__factory(signer) + const mUsdRebalancerFactory = new MusdV2Rebalance__factory(signer) mUsdRebalancer = await mUsdRebalancerFactory.attach(rebalancerAddress) }) it("whales approve rebalance contract to fund loan shortfalls", async () => { diff --git a/test-utils/machines/feederMachine.ts b/test-utils/machines/feederMachine.ts index 8181aa51..b174bf22 100644 --- a/test-utils/machines/feederMachine.ts +++ b/test-utils/machines/feederMachine.ts @@ -55,14 +55,13 @@ export class FeederMachine { } public async deployFeeder( - useMockValidator = false, feederWeights: Array = [200, 200], mAssetWeights: Array = [2500, 2500, 2500, 2500], useLendingMarkets = false, useInterestValidator = false, use2dp = false, ): Promise { - const mAssetDetails = await this.mAssetMachine.deployMasset(useMockValidator, useLendingMarkets, false) + const mAssetDetails = await this.mAssetMachine.deployMasset(useLendingMarkets, false) // Mints 10k mAsset to begin with await this.mAssetMachine.seedWithWeightings(mAssetDetails, mAssetWeights) @@ -226,8 +225,8 @@ export class FeederMachine { addr: asset.personal.addr, status: asset.personal.status, isTransferFeeCharged: asset.personal.hasTxFee, - ratio: isMpAsset ? BN.from(asset.data.ratio) : BN.from(asset.vaultData.ratio), - vaultBalance: isMpAsset ? BN.from(asset.data.vaultBalance) : BN.from(asset.vaultData.vaultBalance), + ratio: isMpAsset ? BN.from(asset.bData.ratio) : BN.from(asset.vaultData.ratio), + vaultBalance: isMpAsset ? BN.from(asset.bData.vaultBalance) : BN.from(asset.vaultData.vaultBalance), integratorAddr: asset.personal.integrator, contract: assetContract, pToken: integrator ? await integrator.callStatic["bAssetToPToken(address)"](asset.personal.addr) : null, @@ -255,11 +254,7 @@ export class FeederMachine { const balances = rawBalances.map((b, i) => b.add(platformBalances[i])) // get overweight - const currentVaultUnits = bAssets.map((b) => - BN.from(b.vaultBalance) - .mul(BN.from(b.ratio)) - .div(ratioScale), - ) + const currentVaultUnits = bAssets.map((b) => BN.from(b.vaultBalance).mul(BN.from(b.ratio)).div(ratioScale)) // get total amount const sumOfBassets = currentVaultUnits.reduce((p, c) => p.add(c), BN.from(0)) return { @@ -318,12 +313,7 @@ export class FeederMachine { } const totalSupply = await pool.totalSupply() const { cacheSize, pendingFees } = await pool.data() - const maxC = totalSupply - .add(pendingFees) - .mul(ratioScale) - .div(BN.from(bAsset.ratio)) - .mul(cacheSize) - .div(fullScale) + const maxC = totalSupply.add(pendingFees).mul(ratioScale).div(BN.from(bAsset.ratio)).mul(cacheSize).div(fullScale) const newSum = BN.from(integratorBalBefore).add(amount) const expectInteraction = type === "deposit" ? newSum.gte(maxC) : amount.gt(BN.from(integratorBalBefore)) return { @@ -333,10 +323,7 @@ export class FeederMachine { type === "deposit" ? newSum.sub(maxC.div(2)) : minimum( - maxC - .div(2) - .add(amount) - .sub(BN.from(integratorBalBefore)), + maxC.div(2).add(amount).sub(BN.from(integratorBalBefore)), BN.from(bAsset.vaultBalance).sub(BN.from(integratorBalBefore)), ), rawBalance: diff --git a/test-utils/machines/mAssetMachine.ts b/test-utils/machines/mAssetMachine.ts index 52d2f665..47df4e2a 100644 --- a/test-utils/machines/mAssetMachine.ts +++ b/test-utils/machines/mAssetMachine.ts @@ -1,14 +1,11 @@ import { Signer } from "ethers" import { ethers } from "hardhat" import { - InvariantValidator__factory, - MockInvariantValidator__factory, AssetProxy__factory, MockNexus__factory, ExposedMasset, ExposedMasset__factory, Masset, - InvariantValidator, MockERC20, DelayedProxyAdmin, MockInitializableToken, @@ -19,9 +16,12 @@ import { IPlatformIntegration, MockInitializableToken__factory, MockInitializableTokenWithFee__factory, - Manager, AssetProxy, MockNexus, + MassetLogic, + MassetManager, + MassetLogic__factory, + MassetManager__factory, } from "types/generated" import { BN, minimum, simpleToExactAmount } from "@utils/math" import { fullScale, MainnetAccounts, ratioScale, ZERO_ADDRESS, DEAD_ADDRESS } from "@utils/constants" @@ -31,16 +31,16 @@ import { StandardAccounts } from "./standardAccounts" import { ActionDetails, ATokenDetails, BasketComposition, BassetIntegrationDetails } from "../../types/machines" export interface MassetDetails { - mAsset?: ExposedMasset - forgeValidator?: InvariantValidator + mAsset?: ExposedMasset | Masset bAssets?: Array pTokens?: Array proxyAdmin?: DelayedProxyAdmin platform?: MockPlatformIntegration aavePlatformAddress?: string integrationAddress?: string - managerLib?: Manager - wrappedManagerLib?: Manager + logicLib?: MassetLogic + managerLib?: MassetManager + wrappedManagerLib?: MassetManager nexus?: MockNexus } @@ -62,29 +62,28 @@ export class MassetMachine { public async deployLite(a = 135): Promise { const bAssets = await Promise.all([0, 1, 2].map((i) => this.loadBassetProxy(`${i}BASSET`, `${i}BASSET`, 18))) - const forgeVal = await new InvariantValidator__factory(this.sa.default.signer).deploy() + // 2. Invariant Validator + const logicLib = await new MassetLogic__factory(this.sa.default.signer).deploy() - const ManagerFactory = await ethers.getContractFactory("Manager") - const managerLib = (await ManagerFactory.deploy()) as Manager + // 3. Invariant Validator + const ManagerFactory = await new MassetManager__factory(this.sa.default.signer) + const managerLib = await ManagerFactory.deploy() const nexus = await new MockNexus__factory(this.sa.default.signer).deploy( this.sa.governor.address, this.sa.mockSavingsManager.address, this.sa.mockInterestValidator.address, ) - const MassetFactory = (await ( - await ethers.getContractFactory("ExposedMasset", { - libraries: { - Manager: managerLib.address, - }, - }) - ).connect(this.sa.default.signer)) as ExposedMasset__factory - const impl = (await MassetFactory.deploy(nexus.address)) as ExposedMasset + const mAssetFactoryLibs = { + __$6a4be19f34d71a078def5cee18ccebcd10$__: logicLib.address, + __$3b19b776afde68cd758db0cae1b8e49f94$__: managerLib.address, + } + const MassetFactory = new ExposedMasset__factory(mAssetFactoryLibs, this.sa.default.signer) + const impl = (await MassetFactory.deploy(nexus.address, simpleToExactAmount(5, 13))) as ExposedMasset const data = impl.interface.encodeFunctionData("initialize", [ "mAsset Lite", "mLite", - forgeVal.address, bAssets.map((b) => ({ addr: b.address, integrator: ZERO_ADDRESS, @@ -104,30 +103,21 @@ export class MassetMachine { return { mAsset: (await MassetFactory.attach(mAsset.address)) as ExposedMasset, bAssets, - forgeValidator: forgeVal as InvariantValidator, + logicLib: logicLib as MassetLogic, nexus, } } - public async deployMasset( - useMockValidator = false, - useLendingMarkets = false, - useTransferFees = false, - a = 100, - ): Promise { + public async deployMasset(useLendingMarkets = false, useTransferFees = false, a = 100): Promise { // 1. Bassets const bAssets = await this.loadBassetsLocal(useLendingMarkets, useTransferFees) // 2. Invariant Validator - // If mocks enabled, uses mock which returns 1:1 on all actions - const forgeVal = await (useMockValidator - ? new MockInvariantValidator__factory(this.sa.default.signer).deploy() - : new InvariantValidator__factory(this.sa.default.signer).deploy()) + const logicLib = await new MassetLogic__factory(this.sa.default.signer).deploy() - // 3. Masset - // 3.1. Dependencies - const ManagerFactory = await ethers.getContractFactory("Manager") - const managerLib = (await ManagerFactory.deploy()) as Manager + // 3. Invariant Validator + const ManagerFactory = await new MassetManager__factory(this.sa.default.signer) + const managerLib = await ManagerFactory.deploy() const nexus = await new MockNexus__factory(this.sa.default.signer).deploy( this.sa.governor.address, @@ -146,19 +136,16 @@ export class MassetMachine { : ZERO_ADDRESS // 3.2. Masset - const MassetFactory = (await ( - await ethers.getContractFactory("ExposedMasset", { - libraries: { - Manager: managerLib.address, - }, - }) - ).connect(this.sa.default.signer)) as ExposedMasset__factory - const impl = (await MassetFactory.deploy(nexus.address)) as ExposedMasset + const mAssetFactoryLibs = { + __$6a4be19f34d71a078def5cee18ccebcd10$__: logicLib.address, + __$3b19b776afde68cd758db0cae1b8e49f94$__: managerLib.address, + } + const MassetFactory = new ExposedMasset__factory(mAssetFactoryLibs, this.sa.default.signer) + const impl = (await MassetFactory.deploy(nexus.address, simpleToExactAmount(5, 13))) as Masset const data = impl.interface.encodeFunctionData("initialize", [ "mStable BTC", "mBTC", - forgeVal.address, bAssets.bAssets.map((b, i) => ({ addr: b.address, integrator: integrationAddress, @@ -169,7 +156,7 @@ export class MassetMachine { a, limits: { min: simpleToExactAmount(5, 16), - max: simpleToExactAmount(55, 16), + max: simpleToExactAmount(65, 16), }, }, ]) @@ -183,13 +170,13 @@ export class MassetMachine { bAssets: bAssets.bAssets, aavePlatformAddress: bAssets.aavePlatformAddress, integrationAddress, - forgeValidator: forgeVal as InvariantValidator, platform: useLendingMarkets ? await new MockPlatformIntegration__factory(this.sa.default.signer).attach(integrationAddress) : null, pTokens: useLendingMarkets ? bAssets.aTokens.map((at) => at.aToken) : [], + logicLib, managerLib, - wrappedManagerLib: (await ManagerFactory.attach(mAsset.address)) as Manager, + wrappedManagerLib: await ManagerFactory.attach(mAsset.address), nexus, } } @@ -449,7 +436,7 @@ export class MassetMachine { const tokenFactory = enableUSDTFee ? await new MockInitializableTokenWithFee__factory(this.sa.default.signer) : await new MockInitializableToken__factory(this.sa.default.signer) - const AssetProxyFactory = await ethers.getContractFactory("AssetProxy") + const AssetProxyFactory = new AssetProxy__factory(this.sa.default.signer) // Impl const mockInitializableToken = (await tokenFactory.deploy()) as MockInitializableToken @@ -631,8 +618,8 @@ export class MassetMachine { addr: bAsset.personal.addr, status: bAsset.personal.status, isTransferFeeCharged: bAsset.personal.hasTxFee, - ratio: BN.from(bAsset.data.ratio), - vaultBalance: BN.from(bAsset.data.vaultBalance), + ratio: BN.from(bAsset.bData.ratio), + vaultBalance: BN.from(bAsset.bData.vaultBalance), integratorAddr: bAsset.personal.integrator, contract: bAssetContract, pToken: integrator ? await integrator.callStatic["bAssetToPToken(address)"](bAsset.personal.addr) : null, @@ -647,7 +634,7 @@ export class MassetMachine { const [failed, undergoingRecol] = await mAssetDetails.mAsset.getBasket() // total supply of mAsset const supply = await mAssetDetails.mAsset.totalSupply() - const surplus = await mAssetDetails.mAsset.surplus() + const { surplus } = await mAssetDetails.mAsset.data() // get actual balance of each bAsset const rawBalances = await Promise.all( bAssets.map((b) => @@ -660,11 +647,7 @@ export class MassetMachine { const balances = rawBalances.map((b, i) => b.add(platformBalances[i])) // get overweight - const currentVaultUnits = bAssets.map((b) => - BN.from(b.vaultBalance) - .mul(BN.from(b.ratio)) - .div(ratioScale), - ) + const currentVaultUnits = bAssets.map((b) => BN.from(b.vaultBalance).mul(BN.from(b.ratio)).div(ratioScale)) // get total amount const sumOfBassets = currentVaultUnits.reduce((p, c) => p.add(c), BN.from(0)) return { @@ -741,14 +724,8 @@ export class MassetMachine { } } const totalSupply = await mAsset.totalSupply() - const surplus = await mAsset.surplus() - const cacheSize = await mAsset.cacheSize() - const maxC = totalSupply - .add(surplus) - .mul(ratioScale) - .div(BN.from(bAsset.ratio)) - .mul(cacheSize) - .div(fullScale) + const { cacheSize, surplus } = await mAsset.data() + const maxC = totalSupply.add(surplus).mul(ratioScale).div(BN.from(bAsset.ratio)).mul(cacheSize).div(fullScale) const newSum = BN.from(integratorBalBefore).add(amount) const expectInteraction = type === "deposit" ? newSum.gte(maxC) : amount.gt(BN.from(integratorBalBefore)) return { @@ -758,10 +735,7 @@ export class MassetMachine { type === "deposit" ? newSum.sub(maxC.div(2)) : minimum( - maxC - .div(2) - .add(amount) - .sub(BN.from(integratorBalBefore)), + maxC.div(2).add(amount).sub(BN.from(integratorBalBefore)), BN.from(bAsset.vaultBalance).sub(BN.from(integratorBalBefore)), ), rawBalance: diff --git a/test-utils/validator-data/cross/crossIntegrationData.json b/test-utils/validator-data/cross/crossIntegrationData.json index e0005577..2307c08c 100644 --- a/test-utils/validator-data/cross/crossIntegrationData.json +++ b/test-utils/validator-data/cross/crossIntegrationData.json @@ -4,7 +4,7 @@ "mpAssetReserve2": "33333333333333333333333333", "feederPoolMAssetReserve": "1000000000000000000000000", "feederPoolFAssetReserve": "1000000000000000000000000", - "mAssetA": 30000, + "mAssetA": 12000, "feederPoolA": 30000, "LPTokenSupply": "2000000000000000000000001", "hardMin": 200000000000000000, @@ -12,94148 +12,92961 @@ "swapFeeRate": 800000000000000, "actions": [ { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "10328174502515188957184", - "outputQty0": "10328170959231712923893", - "outputQty": "10319202673515196582537", - "swapFee": "8262396203320087918", + "type": "redeem", + "outputIndex": 1, + "inputQty": "76682690187469502021632", + "outputQty0": "76626556078821858523389", + "outputQty": "76580094854738258815564", + "swapFee1": "46009614112481701212", + "swapFee2": "45975933647293115114", "mpReserves": [ - "33343661507835848522290517", "33333333333333333333333333", + "33256753238478595074517769", "33333333333333333333333333" ], "fpReserves": [ - "1010328170959231712923893", - "989680797326484803417463" + "923373443921178141476611", + "1000000000000000000000000" ], - "mAssetSupply": "100010328170959231712923892", - "LPTokenSupply": "2000000826239620332008792" + "mAssetSupply": "99923419419854825434591724", + "LPTokenSupply": "1923321910773941746148490" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "5566504737063672832", - "outputQty0": "5563563957199101615", - "outputQty": "5561336622531242591", - "swapFee1": "3339902842238203", - "swapFee2": "2225425582879640", + "outputIndex": 0, + "inputQty": "1401236613648489644032", + "outputQty0": "1400044388624081482444", + "outputQty": "1399213062646253320302", + "swapFee1": "840741968189093786", + "swapFee2": "840026633174448889", "mpReserves": [ - "33343661507835848522290517", - "33333327771996710802090742", + "33331934120270687080013031", + "33256753238478595074517769", "33333333333333333333333333" ], "fpReserves": [ - "1010322607395274513822278", - "989680797326484803417463" + "921973399532554059994167", + "1000000000000000000000000" ], - "mAssetSupply": "100010322609620700096701917", - "LPTokenSupply": "1999995260068873552559780" + "mAssetSupply": "99922020215492834527558169", + "LPTokenSupply": "1921920758234490075413836" }, { "type": "swap_fp_to_mp", - "inputQty": "4365174572657477120", + "inputQty": "210306330998252796641280", + "outputIndex": 2, + "outputQty": "209730568924958362581556", + "swapFee": "0", + "redemptionFee": "125915266068930183995", + "mpReserves": [ + "33331934120270687080013031", + "33256753238478595074517769", + "33123602764408374970751777" + ], + "fpReserves": [ + "712114622751003753334767", + "1210306330998252796641280" + ], + "mAssetSupply": "99712287353977353151082764", + "LPTokenSupply": "1921920758234490075413836" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "8351165112663925587968", + "outputQty0": "8327379441187288614680", + "outputQty": "8322417473633017717701", + "swapFee1": "5010699067598355352", + "swapFee2": "4996427664712373168", + "mpReserves": [ + "33331934120270687080013031", + "33248430821004962056800068", + "33123602764408374970751777" + ], + "fpReserves": [ + "703787243309816464720087", + "1210306330998252796641280" + ], + "mAssetSupply": "99703964970963830574841252", + "LPTokenSupply": "1913570094191732909661403" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "1968261884891711668224", + "outputQty0": "1962577506818041130084", + "outputQty": "1961345347254493252699", + "swapFee1": "1180957130935027000", + "swapFee2": "1177546504090824678", + "mpReserves": [ + "33331934120270687080013031", + "33248430821004962056800068", + "33121641419061120477499078" + ], + "fpReserves": [ + "701824665802998423590003", + "1210306330998252796641280" + ], + "mAssetSupply": "99702003571003516624535846", + "LPTokenSupply": "1911601950402554291495879" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "2269334039923691776", + "outputQty0": "2269325836963723402", + "outputQty": "2274550426257083996", + "mpReserves": [ + "33331934120270687080013031", + "33248433090339001980491844", + "33121641419061120477499078" + ], + "fpReserves": [ + "701826935128835387313405", + "1210306330998252796641280" + ], + "mAssetSupply": "99702005840329353588259248", + "LPTokenSupply": "1911604224952980548579875" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "47583407339574231040", + "outputQty0": "47584739893606876942", + "outputQty": "47740715998982800594", + "swapFee": "38155426123780397", + "mpReserves": [ + "33331934120270687080013031", + "33248433090339001980491844", + "33121689002468460051730118" + ], + "fpReserves": [ + "701874519868728994190347", + "1210258590282253813840686" + ], + "mAssetSupply": "99702053425069247195136190", + "LPTokenSupply": "1911604228768523160957914" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "199451441847009574912", + "outputQty0": "199457023291720710345", + "outputQty": "200110299503296830109", + "swapFee": "159932743177978736", + "mpReserves": [ + "33331934120270687080013031", + "33248433090339001980491844", + "33121888453910307061305030" + ], + "fpReserves": [ + "702073976892020714900692", + "1210058479982750517010577" + ], + "mAssetSupply": "99702252882092538915846535", + "LPTokenSupply": "1911604244761797478755787" + }, + { + "type": "redeem", "outputIndex": 0, - "outputQty": "4364028020506735816", + "inputQty": "1120698450075147170742272", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "597177216758838802251776", + "outputQty0": "597164450701250797148021", + "outputQty": "596234903727060846992499", + "swapFee": "478095680960308552682", + "mpReserves": [ + "33331934120270687080013031", + "33248433090339001980491844", + "33719065670669145863556806" + ], + "fpReserves": [ + "1299238427593271512048713", + "613823576255689670018078" + ], + "mAssetSupply": "100299417332793789712994556", + "LPTokenSupply": "1911652054329893509611055" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "22548906490438590464", + "outputQty0": "22549938299864589429", + "outputQty": "22391952502854473289", + "swapFee": "17990579476295860", + "mpReserves": [ + "33331934120270687080013031", + "33248455639245492419082308", + "33719065670669145863556806" + ], + "fpReserves": [ + "1299260977531571376638142", + "613801184303186815544789" + ], + "mAssetSupply": "100299439882732089577583985", + "LPTokenSupply": "1911652056128951457240641" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "384555869065091175415808", + "outputQty0": "385150115533035270186167", + "outputQty": "384888988944377216155523", + "swapFee1": "230733521439054705249", + "swapFee2": "231090069319821162111", + "mpReserves": [ + "33331934120270687080013031", + "32863566650301115202926785", + "33719065670669145863556806" + ], + "fpReserves": [ + "914110861998536106451975", + "613801184303186815544789" + ], + "mAssetSupply": "99914520857268374128559929", + "LPTokenSupply": "1527119260416004187295357" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2092552633610842880", + "outputQty0": "2092783935975513161", + "outputQty": "2085231829041694435", + "swapFee": "1671465703961956", + "mpReserves": [ + "33331934120270687080013031", + "32863568742853748813769665", + "33719065670669145863556806" + ], + "fpReserves": [ + "914112954782472081965136", + "613799099071357773850354" + ], + "mAssetSupply": "99914522950052310104073090", + "LPTokenSupply": "1527119260583150757691552" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "240653927595709038592", + "outputQty0": "240629377559256614822", + "outputQty": "239760401131418131246", + "swapFee": "192185905473952619", + "mpReserves": [ + "33331934120270687080013031", + "32863568742853748813769665", + "33719306324596741572595398" + ], + "fpReserves": [ + "914353584160031338579958", + "613559338670226355719108" + ], + "mAssetSupply": "99914763579429869360687912", + "LPTokenSupply": "1527119279801741305086813" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1523668110948337451008", + "outputQty0": "1523836363899521282374", + "outputQty": "1518304277369785750693", + "swapFee": "1217052407984969070", + "mpReserves": [ + "33331934120270687080013031", + "32865092410964697151220673", + "33719306324596741572595398" + ], + "fpReserves": [ + "915877420523930859862332", + "612041034392856569968415" + ], + "mAssetSupply": "99916287415793768881970286", + "LPTokenSupply": "1527119401506982103583720" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "13372360466685361127424", + "outputQty0": "13386318386025468733033", + "outputQty": "13379635618452438570443", + "swapFee1": "8023416280011216676", + "swapFee2": "8031791031615281239", + "mpReserves": [ + "33331934120270687080013031", + "32865092410964697151220673", + "33705926688978289134024955" + ], + "fpReserves": [ + "902491102137905391129299", + "612041034392856569968415" + ], + "mAssetSupply": "99902909129198775028518492", + "LPTokenSupply": "1513747843381924743577963" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "983022045609448", + "outputQty0": "983014067062643", + "outputQty": "979543960131286", + "swapFee": "785134742608", + "mpReserves": [ + "33331934121253709125622479", + "32865092410964697151220673", + "33705926688978289134024955" + ], + "fpReserves": [ + "902491103120919458191942", + "612041033413312609837129" + ], + "mAssetSupply": "99902909130181789095581135", + "LPTokenSupply": "1513747843382003257052223" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "13620425940634857111552", + "outputQty0": "13620300075282275240448", + "outputQty": "13597864052819111028875", + "mpReserves": [ + "33345554547194343982734031", + "32865092410964697151220673", + "33705926688978289134024955" + ], + "fpReserves": [ + "916111403196201733432390", + "612041033413312609837129" + ], + "mAssetSupply": "99916529430257071370821583", + "LPTokenSupply": "1527345707434822368081098" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "108377867093318156288", + "outputIndex": 0, + "outputQty": "108623542228588779733", "swapFee": "0", - "redemptionFee": "1746308533917255", + "redemptionFee": "65212577921914160", "mpReserves": [ - "33343657143807828015554701", - "33333327771996710802090742", - "33333333333333333333333333" + "33345445923652115393954298", + "32865092410964697151220673", + "33705926688978289134024955" + ], + "fpReserves": [ + "916002715566331876497568", + "612149411280405927993417" + ], + "mAssetSupply": "99916420807839779435800921", + "LPTokenSupply": "1527345707434822368081098" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "4456432244461652148224", + "outputQty0": "4461174754768373889810", + "outputQty": "4458004555462852474581", + "swapFee1": "2673859346676991288", + "swapFee2": "2676704852861024333", + "mpReserves": [ + "33345445923652115393954298", + "32860634406409234298746092", + "33705926688978289134024955" + ], + "fpReserves": [ + "911541540811563502607758", + "612149411280405927993417" + ], + "mAssetSupply": "99911962309789863922935444", + "LPTokenSupply": "1522889542576295383632002" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "2434679306512277438464", + "outputIndex": 1, + "outputQty": "2439738748777943213827", + "swapFee": "0", + "redemptionFee": "1464885083891511613", + "mpReserves": [ + "33345445923652115393954298", + "32858194667660456355532265", + "33705926688978289134024955" ], "fpReserves": [ - "1010318241623939720683917", - "989685162501057460894583" + "909100065671744316584936", + "614584090586918205431881" ], - "mAssetSupply": "100010318245595673837480811", - "LPTokenSupply": "1999995260068873552559780" + "mAssetSupply": "99909522299535128628424235", + "LPTokenSupply": "1522889542576295383632002" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "771298601117689413894144", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "72046428894098637193216", + "outputQty0": "72045213946504615308233", + "outputQty": "71918455170312558919956", + "mpReserves": [ + "33417492352546214031147514", + "32858194667660456355532265", + "33705926688978289134024955" + ], + "fpReserves": [ + "981145279618248931893169", + "614584090586918205431881" + ], + "mAssetSupply": "99981567513481633243732468", + "LPTokenSupply": "1594807997746607942551958" }, { "type": "mint", "inputIndex": 2, - "inputQty": "12597968563387032", - "outputQty0": "12597972881506403", - "outputQty": "12597069574231688", + "inputQty": "2765619965687145431040", + "outputQty0": "2765361211710501710037", + "outputQty": "2760144159090251531747", + "mpReserves": [ + "33417492352546214031147514", + "32858194667660456355532265", + "33708692308943976279455995" + ], + "fpReserves": [ + "983910640829959433603206", + "614584090586918205431881" + ], + "mAssetSupply": "99984332874693343745442505", + "LPTokenSupply": "1597568141905698194083705" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "431162082298409582592", + "outputIndex": 0, + "outputQty": "432383707601693467986", + "swapFee": "0", + "redemptionFee": "259580126702686820", "mpReserves": [ - "33343657143807828015554701", - "33333327771996710802090742", - "33333333345931301896720365" + "33417059968838612337679528", + "32858194667660456355532265", + "33708692308943976279455995" ], "fpReserves": [ - "1010318254221912602190320", - "989685162501057460894583" + "983478007285454955569681", + "615015252669216615014473" ], - "mAssetSupply": "100010318258193646718987214", - "LPTokenSupply": "1999995272665943126791468" + "mAssetSupply": "99983900500728965970095800", + "LPTokenSupply": "1597568141905698194083705" }, { "type": "redeem", + "outputIndex": 1, + "inputQty": "219404505419332618027008", + "outputQty0": "219602156808299470806313", + "outputQty": "219440450927000323895155", + "swapFee1": "131642703251599570816", + "swapFee2": "131761294084979682483", + "mpReserves": [ + "33417059968838612337679528", + "32638754216733456031637110", + "33708692308943976279455995" + ], + "fpReserves": [ + "763875850477155484763368", + "615015252669216615014473" + ], + "mAssetSupply": "99764430105214751478971970", + "LPTokenSupply": "1378176800756690736013778" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "224976515352156404973568", + "outputQty0": "224986415430845101522329", + "outputQty": "224856454876997949947882", + "swapFee1": "134985909211293842984", + "swapFee2": "134991849258507060913", + "mpReserves": [ + "33192203513961614387731646", + "32638754216733456031637110", + "33708692308943976279455995" + ], + "fpReserves": [ + "538889435046310383241039", + "615015252669216615014473" + ], + "mAssetSupply": "99539578681633164884510554", + "LPTokenSupply": "1153213783995455460424508" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "16818929703160880562176", + "outputQty0": "16818842571264986592583", + "outputQty": "16816896333077159759114", + "swapFee": "13452591892376688737", + "mpReserves": [ + "33209022443664775268293822", + "32638754216733456031637110", + "33708692308943976279455995" + ], + "fpReserves": [ + "555708277617575369833622", + "598198356336139455255359" + ], + "mAssetSupply": "99556397524204429871103137", + "LPTokenSupply": "1153215129254644698093381" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "113169413311945328", + "outputQty0": "113140647168189423", + "outputQty": "113057188406847378", + "swapFee1": "67901647987167", + "swapFee2": "67884388300913", + "mpReserves": [ + "33209022443664775268293822", + "32638754103676267624789732", + "33708692308943976279455995" + ], + "fpReserves": [ + "555708164476928201644199", + "598198356336139455255359" + ], + "mAssetSupply": "99556397411131667091214627", + "LPTokenSupply": "1153215016092021550946769" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "188199109685453078396928", "outputIndex": 2, - "inputQty": "61687664052516", - "outputQty0": "61655072283662", - "outputQty": "61630389130148", - "swapFee1": "37012598431", - "swapFee2": "24662028913", + "outputQty": "187535900253613992706774", + "swapFee": "0", + "redemptionFee": "112576271879888196084", "mpReserves": [ - "33343657143807828015554701", - "33333327771996710802090742", - "33333333345869671507590217" + "33209022443664775268293822", + "32638754103676267624789732", + "33521156408690362286749221" ], "fpReserves": [ - "1010318254160257529906658", - "989685162501057460894583" + "368081044677114541502984", + "786397466021592533652287" ], - "mAssetSupply": "100010318258132016308732465", - "LPTokenSupply": "1999995272604259163998795" + "mAssetSupply": "99368882867603733319269496", + "LPTokenSupply": "1153215016092021550946769" }, { "type": "mint", "inputIndex": 0, - "inputQty": "32471967385043783909376", - "outputQty0": "32471910116226045153606", - "outputQty": "32467896642524263750551", + "inputQty": "627489915752792981504", + "outputQty0": "627476127853334828967", + "outputQty": "629496117011009916198", "mpReserves": [ - "33376129111192871799464077", - "33333327771996710802090742", - "33333333345869671507590217" + "33209649933580528061275326", + "32638754103676267624789732", + "33521156408690362286749221" ], "fpReserves": [ - "1042790164276483575060264", - "989685162501057460894583" + "368708520804967876331951", + "786397466021592533652287" ], - "mAssetSupply": "100042790168248242353886071", - "LPTokenSupply": "2032463169246783427749346" + "mAssetSupply": "99369510343731586654098463", + "LPTokenSupply": "1153844512209032560862967" }, { "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "59009384535057129472", + "outputQty0": "59003563622469336195", + "outputQty": "59330182585954685956", + "swapFee": "47354444082667656", + "mpReserves": [ + "33209649933580528061275326", + "32638754103676267624789732", + "33521215418074897343878693" + ], + "fpReserves": [ + "368767524368590345668146", + "786338135839006578966331" + ], + "mAssetSupply": "99369569347295209123434658", + "LPTokenSupply": "1153844516944476969129732" + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "210192017591319789568", - "outputQty0": "210192314921306458976", - "outputQty": "209951103578137801814", - "swapFee": "168124416692401076", + "inputQty": "200324551607400", + "outputQty0": "200349028452463", + "outputQty": "200992189874554", + "mpReserves": [ + "33209649933580528061275326", + "32638754103876592176397132", + "33521215418074897343878693" + ], + "fpReserves": [ + "368767524568939374120609", + "786338135839006578966331" + ], + "mAssetSupply": "99369569347495558151887121", + "LPTokenSupply": "1153844517145469159004286" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "896024307608441384337408", + "hardLimitError": true + }, + { + "type": "swap_fp_to_mp", + "inputQty": "131647904826673770528768", + "outputIndex": 0, + "outputQty": "130134485220179369093650", + "swapFee": "0", + "redemptionFee": "78126690468058599164", "mpReserves": [ - "33376129111192871799464077", - "33333537964014302121880310", - "33333333345869671507590217" + "33079515448360348692181676", + "32638754103876592176397132", + "33521215418074897343878693" ], "fpReserves": [ - "1043000356591404881519240", - "989475211397479323092769" + "238556373788841708846491", + "917986040665680349495099" ], - "mAssetSupply": "100043000360563163660345047", - "LPTokenSupply": "2032463186059225096989453" + "mAssetSupply": "99239436323405928545212167", + "LPTokenSupply": "1153844517145469159004286" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "3666282021734290292736", - "outputQty0": "3664706878286088448808", - "outputQty": "3663235318464706996085", - "swapFee1": "2199769213040574175", - "swapFee2": "1465882751314435379", + "outputIndex": 1, + "inputQty": "270579796283718977454080", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "950776571817309532848128", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "500032789360088098799616", + "outputQty0": "500067184705254948597776", + "outputQty": "501714680711263189771959", + "mpReserves": [ + "33079515448360348692181676", + "33138786893236680275196748", + "33521215418074897343878693" + ], + "fpReserves": [ + "738623558494096657444267", + "917986040665680349495099" + ], + "mAssetSupply": "99739503508111183493809943", + "LPTokenSupply": "1655559197856732348776245" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "79809730193005216", + "outputQty0": "79813048641585878", + "outputQty": "79827330653591882", + "mpReserves": [ + "33079515528170078885186892", + "33138786893236680275196748", + "33521215418074897343878693" + ], + "fpReserves": [ + "738623638307145299030145", + "917986040665680349495099" + ], + "mAssetSupply": "99739503587924232135395821", + "LPTokenSupply": "1655559277684063002368127" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "19400431110537256960", + "outputQty0": "19401237739104131238", + "outputQty": "19404708466956954707", + "mpReserves": [ + "33079534928601189422443852", + "33138786893236680275196748", + "33521215418074897343878693" + ], + "fpReserves": [ + "738643039544884403161383", + "917986040665680349495099" + ], + "mAssetSupply": "99739522989161971239527059", + "LPTokenSupply": "1655578682392529959322834" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "90411442970423024", + "outputQty0": "90413859133100881", + "outputQty": "90430028821796460", + "mpReserves": [ + "33079534928601189422443852", + "33138786983648123245619772", + "33521215418074897343878693" + ], + "fpReserves": [ + "738643129958743536262264", + "917986040665680349495099" + ], + "mAssetSupply": "99739523079575830372627940", + "LPTokenSupply": "1655578772822558781119294" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "120885102995508215808", + "outputQty0": "120790931236060586376", + "outputQty": "120713436645322083058", + "swapFee1": "72531061797304929", + "swapFee2": "72474558741636351", + "mpReserves": [ + "33079414215164544100360794", + "33138786983648123245619772", + "33521215418074897343878693" + ], + "fpReserves": [ + "738522339027507475675888", + "917986040665680349495099" + ], + "mAssetSupply": "99739402361119153053677915", + "LPTokenSupply": "1655457894972669452633978" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "8615853185836161957888", + "outputQty0": "8615262267397762265092", + "outputQty": "8616614368779219178318", + "mpReserves": [ + "33079414215164544100360794", + "33138786983648123245619772", + "33529831271260733505836581" + ], + "fpReserves": [ + "747137601294905237940980", + "917986040665680349495099" + ], + "mAssetSupply": "99748017623386550815943007", + "LPTokenSupply": "1664074509341448671812296" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "19770561469117435904", + "outputQty0": "19771397893155890816", + "outputQty": "19774058475144022030", "mpReserves": [ - "33376129111192871799464077", - "33333537964014302121880310", - "33329670110551206800594132" + "33079433985726013217796698", + "33138786983648123245619772", + "33529831271260733505836581" ], "fpReserves": [ - "1039335649713118793070432", - "989475211397479323092769" + "747157372692798393831796", + "917986040665680349495099" ], - "mAssetSupply": "100039337119567628886331618", - "LPTokenSupply": "2028797124014412110754134" + "mAssetSupply": "99748037394784443971833823", + "LPTokenSupply": "1664094283399923815834326" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "950328972942741632", + "outputIndex": 1, + "outputQty": "948415750342684483", + "swapFee": "0", + "redemptionFee": "569406701053413", + "mpReserves": [ + "33079433985726013217796698", + "33138786035232372902935289", + "33529831271260733505836581" + ], + "fpReserves": [ + "747156423681629971475208", + "917986990994653292236731" + ], + "mAssetSupply": "99748036446342682250530648", + "LPTokenSupply": "1664094283399923815834326" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "8333827342013763158016", + "outputQty0": "8327527138464935394755", + "outputQty": "8322296595016302632633", + "swapFee1": "5000296405208257894", + "swapFee2": "4996516283078961236", + "mpReserves": [ + "33079433985726013217796698", + "33130463738637356600302656", + "33529831271260733505836581" + ], + "fpReserves": [ + "738828896543165036080453", + "917986990994653292236731" + ], + "mAssetSupply": "99739713915720500394097129", + "LPTokenSupply": "1655760956087550573502099" }, { "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "3519341900559764946944", + "outputQty0": "3519442276493108831707", + "outputQty": "3521679978362865196163", + "swapFee": "2816020885065505694", + "mpReserves": [ + "33079433985726013217796698", + "33133983080537916365249600", + "33529831271260733505836581" + ], + "fpReserves": [ + "742348338819658144912160", + "914465311016290427040568" + ], + "mAssetSupply": "99743233357996993502928836", + "LPTokenSupply": "1655761237689639080052668" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "169678488241155923247104", + "outputIndex": 0, + "outputQty": "169051347993953616289321", + "swapFee": "0", + "redemptionFee": "101497397084412512598", + "mpReserves": [ + "32910382637732059601507377", + "33133983080537916365249600", + "33529831271260733505836581" + ], + "fpReserves": [ + "573186010345637290580831", + "1084143799257446350287672" + ], + "mAssetSupply": "99574172526920057061110105", + "LPTokenSupply": "1655761237689639080052668" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "978878121898201510313984", + "outputIndex": 0, + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "42815336804850386075648", + "outputQty0": "42815786917978969294436", + "outputQty": "42970975105025124692684", + "swapFee": "34323576281191114870", + "mpReserves": [ + "32910382637732059601507377", + "33176798417342766751325248", + "33529831271260733505836581" + ], + "fpReserves": [ + "616001797263616259875267", + "1041172824152421225594988" + ], + "mAssetSupply": "99616988313838036030404541", + "LPTokenSupply": "1655764670047267199164155" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "791447997698787377152", + "outputQty0": "791384514334219427938", + "outputQty": "792641431671444486089", + "mpReserves": [ + "32910382637732059601507377", + "33176798417342766751325248", + "33530622719258432293213733" + ], + "fpReserves": [ + "616793181777950479303205", + "1041172824152421225594988" + ], + "mAssetSupply": "99617779698352370249832479", + "LPTokenSupply": "1656557311478938643650244" + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "396984528769176043520", - "outputQty0": "396983350317902692276", - "outputQty": "396535479190942876683", - "swapFee": "317533854221433333", + "inputQty": "534846250634375552", + "outputQty0": "534885820546351448", + "outputQty": "535733400789866397", "mpReserves": [ - "33376526095721640975507597", - "33333537964014302121880310", - "33329670110551206800594132" + "32910383172578310235882929", + "33176798417342766751325248", + "33530622719258432293213733" ], "fpReserves": [ - "1039732633063436695762708", - "989078675918288380216086" + "616793716663771025654653", + "1041172824152421225594988" ], - "mAssetSupply": "100039734102917946789023894", - "LPTokenSupply": "2028797155767797532897467" + "mAssetSupply": "99617780233238190796183927", + "LPTokenSupply": "1656557847212339433516641" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "16970360907885021495296", + "outputQty0": "16971592115217463566436", + "outputQty": "16997188120341947201900", + "mpReserves": [ + "32927353533486195257378225", + "33176798417342766751325248", + "33530622719258432293213733" + ], + "fpReserves": [ + "633765308778988489221089", + "1041172824152421225594988" + ], + "mAssetSupply": "99634751825353408259750363", + "LPTokenSupply": "1673555035332681380718541" }, { "type": "swap_fp_to_mp", - "inputQty": "144989952905548530712576", - "outputIndex": 2, - "outputQty": "144840524390458429078348", + "inputQty": "6303247892258789", + "outputIndex": 1, + "outputQty": "6276551299187549", "swapFee": "0", - "redemptionFee": "57959770906675883330", + "redemptionFee": "3768223492492", + "mpReserves": [ + "32927353533486195257378225", + "33176798411066215452137699", + "33530622719258432293213733" + ], + "fpReserves": [ + "633765302498616001733578", + "1041172830455669117853777" + ], + "mAssetSupply": "99634751819076803995755344", + "LPTokenSupply": "1673555035332681380718541" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "1438365146786858786619392", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "4208612749183493341184", + "outputQty0": "4208646791346530006478", + "outputQty": "4214603644499245551782", + "mpReserves": [ + "32927353533486195257378225", + "33181007023815398945478883", + "33530622719258432293213733" + ], + "fpReserves": [ + "637973949289962531740056", + "1041172830455669117853777" + ], + "mAssetSupply": "99638960465868150525761822", + "LPTokenSupply": "1677769638977180626270323" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "50763063116257875197952", + "outputQty0": "50758867470661179691209", + "outputQty": "50819530645077060276788", + "mpReserves": [ + "32927353533486195257378225", + "33181007023815398945478883", + "33581385782374690168411685" + ], + "fpReserves": [ + "688732816760623711431265", + "1041172830455669117853777" + ], + "mAssetSupply": "99689719333338811705453031", + "LPTokenSupply": "1728589169622257686547111" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "67228656925797974540288", + "outputQty0": "67222456420474421462298", + "outputQty": "67275123622962386632262", + "mpReserves": [ + "32927353533486195257378225", + "33181007023815398945478883", + "33648614439300488142951973" + ], + "fpReserves": [ + "755955273181098132893563", + "1041172830455669117853777" + ], + "mAssetSupply": "99756941789759286126915329", + "LPTokenSupply": "1795864293245220073179373" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "114720334583144294383616", + "outputQty0": "114728544558783962301376", + "outputQty": "114784690935691701731853", + "swapFee": "91808479526762361960", + "mpReserves": [ + "33042073868069339551761841", + "33181007023815398945478883", + "33648614439300488142951973" + ], + "fpReserves": [ + "870683817739882095194939", + "926388139519977416121924" + ], + "mAssetSupply": "99871670334318070089216705", + "LPTokenSupply": "1795873474093172749415569" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "128134247778434873819136", + "outputQty0": "128080311903270371939122", + "outputQty": "128013423823585528590027", + "swapFee1": "76880548667060924291", + "swapFee2": "76848187141962223163", "mpReserves": [ - "33376526095721640975507597", - "33333537964014302121880310", - "33184829586160748371515784" + "33042073868069339551761841", + "33181007023815398945478883", + "33520601015476902614361946" ], "fpReserves": [ - "894833205796746987436817", - "1134068628823836910928662" + "742603505836611723255817", + "926388139519977416121924" ], - "mAssetSupply": "99894892635422163756581333", - "LPTokenSupply": "2028797155767797532897467" + "mAssetSupply": "99743666870601941679500746", + "LPTokenSupply": "1667746914369604581688862" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1274642358809897", + "outputQty0": "1274663402911659", + "outputQty": "1274769243645365", + "mpReserves": [ + "33042073868069339551761841", + "33181007025090041304288780", + "33520601015476902614361946" + ], + "fpReserves": [ + "742603507111275126167476", + "926388139519977416121924" + ], + "mAssetSupply": "99743666871876605082412405", + "LPTokenSupply": "1667746915644373825334227" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "18501627643830103703552", - "outputQty0": "18501472060119535288474", - "outputQty": "18513970181732058117134", - "swapFee": "14813101025634118002", + "inputQty": "104613902176304651829248", + "outputQty0": "104618355564923839714820", + "outputQty": "104601161982664750864032", + "swapFee": "83680517128245855537", + "mpReserves": [ + "33146687770245644203591089", + "33181007025090041304288780", + "33520601015476902614361946" + ], + "fpReserves": [ + "847221862676198965882296", + "821786977537312665257892" + ], + "mAssetSupply": "99848285227441528922127225", + "LPTokenSupply": "1667755283696086649919780" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "17809044136634806697984", + "outputQty0": "17807972044563924720576", + "outputQty": "17792222991630678495684", + "mpReserves": [ + "33146687770245644203591089", + "33181007025090041304288780", + "33538410059613537421059930" + ], + "fpReserves": [ + "865029834720762890602872", + "821786977537312665257892" + ], + "mAssetSupply": "99866093199486092846847801", + "LPTokenSupply": "1685547506687717328415464" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "4907427274223273377792", + "outputQty0": "4907122758558738587366", + "outputQty": "4901340668013282881176", + "swapFee": "3922058499520856684", "mpReserves": [ - "33395027723365471079211149", - "33333537964014302121880310", - "33184829586160748371515784" + "33146687770245644203591089", + "33181007025090041304288780", + "33543317486887760694437722" ], "fpReserves": [ - "913334677856866522725291", - "1115554658642104852811528" + "869936957479321629190238", + "816885636869299382376716" ], - "mAssetSupply": "99913394107482283291869807", - "LPTokenSupply": "2028798637077900096309267" + "mAssetSupply": "99871000322244651585435167", + "LPTokenSupply": "1685547898893567280501132" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "509473646449460663812096", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "411796450250784033996800", + "outputQty0": "411757000135741966706536", + "outputQty": "411094634573185198800891", + "mpReserves": [ + "33146687770245644203591089", + "33181007025090041304288780", + "33955113937138544728434522" + ], + "fpReserves": [ + "1281693957615063595896774", + "816885636869299382376716" + ], + "mAssetSupply": "100282757322380393552141703", + "LPTokenSupply": "2096642533466752479302023" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "19352730945176604672", + "outputQty0": "19353909856680344921", + "outputQty": "19275844105558474665", + "swapFee": "15449312280583773", + "mpReserves": [ + "33146687770245644203591089", + "33181026377820986480893452", + "33955113937138544728434522" + ], + "fpReserves": [ + "1281713311524920276241695", + "816866361025193823902051" + ], + "mAssetSupply": "100282776676290250232486624", + "LPTokenSupply": "2096642535011683707360400" }, { "type": "swap_fp_to_mp", - "inputQty": "5719849867398588923904", + "inputQty": "22451701152190111416320", "outputIndex": 1, - "outputQty": "5709657271029584074335", + "outputQty": "22505494516427581174462", "swapFee": "0", - "redemptionFee": "2284770605075651909", + "redemptionFee": "13512252055840194567", "mpReserves": [ - "33395027723365471079211149", - "33327828306743272537805975", - "33184829586160748371515784" + "33146687770245644203591089", + "33158520883304558899718990", + "33955113937138544728434522" ], "fpReserves": [ - "907622751344177392950863", - "1121274508509503441735432" + "1259192891431853285295998", + "839318062177383935318371" ], - "mAssetSupply": "99907684465740199237747288", - "LPTokenSupply": "2028798637077900096309267" + "mAssetSupply": "100260269768449239081735494", + "LPTokenSupply": "2096642535011683707360400" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "136646720969649321672704", + "outputQty0": "136819164381720358519027", + "outputQty": "136726251652249134251349", + "swapFee1": "81988032581789593003", + "swapFee2": "82091498629032215111", + "mpReserves": [ + "33009961518593395069339740", + "33158520883304558899718990", + "33955113937138544728434522" + ], + "fpReserves": [ + "1122373727050132926776971", + "839318062177383935318371" + ], + "mAssetSupply": "100123532695566147755431578", + "LPTokenSupply": "1960004012845292564646996" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "90160842907774143692800", + "outputQty0": "90168331733124284582903", + "outputQty": "89851263239074735264502", + "swapFee": "72002267204094950438", + "mpReserves": [ + "33100122361501169213032540", + "33158520883304558899718990", + "33955113937138544728434522" + ], + "fpReserves": [ + "1212542058783257211359874", + "749466798938309200053869" + ], + "mAssetSupply": "100213701027299272040014481", + "LPTokenSupply": "1960011213072012974142039" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "667318245598796578816", + "outputQty0": "667358768786568309593", + "outputQty": "665786397455234209880", + "mpReserves": [ + "33100122361501169213032540", + "33159188201550157696297806", + "33955113937138544728434522" + ], + "fpReserves": [ + "1213209417552043779669467", + "749466798938309200053869" + ], + "mAssetSupply": "100214368386068058608324074", + "LPTokenSupply": "1960676999469468208351919" }, { "type": "swap_fp_to_mp", - "inputQty": "33880945740075", + "inputQty": "1483903347951771320320", "outputIndex": 2, - "outputQty": "33818736348911", + "outputQty": "1488402622699842180830", "swapFee": "0", - "redemptionFee": "13533067055", + "redemptionFee": "893457615660184286", + "mpReserves": [ + "33100122361501169213032540", + "33159188201550157696297806", + "33953625534515844886253692" + ], + "fpReserves": [ + "1211720321525943472525763", + "750950702286260971374189" + ], + "mAssetSupply": "100212880183499573961364656", + "LPTokenSupply": "1960676999469468208351919" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "343781124110965276672", + "outputIndex": 1, + "outputQty": "344750383505131615890", + "swapFee": "0", + "redemptionFee": "206986952576919835", + "mpReserves": [ + "33100122361501169213032540", + "33158843451166652564681916", + "33953625534515844886253692" + ], + "fpReserves": [ + "1211375343271648606133106", + "751294483410371936650861" + ], + "mAssetSupply": "100212535412232231671891834", + "LPTokenSupply": "1960676999469468208351919" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "3152085674640020992", + "outputQty0": "3151662292083354134", + "outputQty": "3144274809787390771", + "mpReserves": [ + "33100122361501169213032540", + "33158843451166652564681916", + "33953628686601519526274684" + ], + "fpReserves": [ + "1211378494933940689487240", + "751294483410371936650861" + ], + "mAssetSupply": "100212538563894523755245968", + "LPTokenSupply": "1960680143744277995742690" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "1167056791721431296", + "outputQty0": "1169096918741331840", + "outputQty": "1168307394926756727", + "swapFee1": "700234075032858", + "swapFee2": "701458151244799", + "mpReserves": [ + "33100121193193774286275813", + "33158843451166652564681916", + "33953628686601519526274684" + ], + "fpReserves": [ + "1211377325837021948155400", + "751294483410371936650861" + ], + "mAssetSupply": "100212537395499063165158927", + "LPTokenSupply": "1960678976757509681814679" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "45133822657107616333824", + "outputIndex": 0, + "outputQty": "45241816367179819409101", + "swapFee": "0", + "redemptionFee": "27163537377720294468", + "mpReserves": [ + "33054879376826594466866712", + "33158843451166652564681916", + "33953628686601519526274684" + ], + "fpReserves": [ + "1166104763540821457375342", + "796428306067479552984685" + ], + "mAssetSupply": "100167291996740240394673337", + "LPTokenSupply": "1960678976757509681814679" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "28038863473955492069376", + "outputQty0": "28078000653387413111415", + "outputQty": "28059493847375491314167", + "swapFee1": "16823318084373295241", + "swapFee2": "16846800392032447866", + "mpReserves": [ + "33054879376826594466866712", + "33130783957319277073367749", + "33953628686601519526274684" + ], + "fpReserves": [ + "1138026762887434044263927", + "796428306067479552984685" + ], + "mAssetSupply": "100139230842887245014009788", + "LPTokenSupply": "1932641795615362627074827" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "2026875006414971731968", + "outputQty0": "2029635265755039889165", + "outputQty": "2028701828386966957346", + "swapFee1": "1216125003848983039", + "swapFee2": "1217781159453023933", + "mpReserves": [ + "33054879376826594466866712", + "33130783957319277073367749", + "33951599984773132559317338" + ], + "fpReserves": [ + "1135997127621679004374762", + "796428306067479552984685" + ], + "mAssetSupply": "100137202425402649427144556", + "LPTokenSupply": "1930615042221448040241162" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "404168229698991034466304", + "outputQty0": "404179427484692614996386", + "outputQty": "403176134236854987127006", + "mpReserves": [ + "33054879376826594466866712", + "33534952187018268107834053", + "33951599984773132559317338" + ], + "fpReserves": [ + "1540176555106371619371148", + "796428306067479552984685" + ], + "mAssetSupply": "100541381852887342042140942", + "LPTokenSupply": "2333791176458303027368168" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "188619489206282255073280", + "outputQty0": "188615500845423662419290", + "outputQty": "188012230213195419428788", + "mpReserves": [ + "33054879376826594466866712", + "33723571676224550362907333", + "33951599984773132559317338" + ], + "fpReserves": [ + "1728792055951795281790438", + "796428306067479552984685" + ], + "mAssetSupply": "100729997353732765704560232", + "LPTokenSupply": "2521803406671498446796956" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "11799695323205756928", + "outputQty0": "11801228735381947888", + "outputQty": "11714944584404310300", + "swapFee": "9408743832598033", + "mpReserves": [ + "33054891176521917672623640", + "33723571676224550362907333", + "33951599984773132559317338" + ], + "fpReserves": [ + "1728803857180530663738326", + "796416591122895148674385" + ], + "mAssetSupply": "100730009154961501086508120", + "LPTokenSupply": "2521803407612372830056759" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "17270122276014908243968", + "outputQty0": "17269467040400701383983", + "outputQty": "17139780452924011964465", + "swapFee": "13768124661789654349", "mpReserves": [ - "33395027723365471079211149", - "33327828306743272537805975", - "33184829586126929635166873" + "33054891176521917672623640", + "33740841798500565271151301", + "33951599984773132559317338" ], "fpReserves": [ - "907622751310344725311459", - "1121274508543384387475507" + "1746073324220931365122309", + "779276810669971136709920" ], - "mAssetSupply": "99907684465706380103174939", - "LPTokenSupply": "2028798637077900096309267" + "mAssetSupply": "100747278622001901787892103", + "LPTokenSupply": "2521804784424839009022193" }, { "type": "swap_fp_to_mp", - "inputQty": "308906151689498254114816", + "inputQty": "439989001016425775104", "outputIndex": 0, - "outputQty": "307510048570886429280824", + "outputQty": "442727135578016923476", "swapFee": "0", - "redemptionFee": "123053365152676534139", + "redemptionFee": "265830690615776690", "mpReserves": [ - "33087517674794584649930325", - "33327828306743272537805975", - "33184829586126929635166873" + "33054448449386339655700164", + "33740841798500565271151301", + "33951599984773132559317338" ], "fpReserves": [ - "599989338428653389963613", - "1430180660232882641590323" + "1745630273069905070638509", + "779716799670987562485024" ], - "mAssetSupply": "99600174106189841444361232", - "LPTokenSupply": "2028798637077900096309267" + "mAssetSupply": "100746835836681566109184993", + "LPTokenSupply": "2521804784424839009022193" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "14430812386383156477952", - "outputQty0": "14351338894625815694531", - "outputQty": "14345569825093006865723", - "swapFee1": "8658487431829893886", - "swapFee2": "5740535557850326277", + "inputQty": "1469415431953490176", + "outputQty0": "1473754198829278844", + "outputQty": "1473003183053786075", + "swapFee1": "881649259172094", + "swapFee2": "884252519297567", "mpReserves": [ - "33087517674794584649930325", - "33327828306743272537805975", - "33170484016301836628301150" + "33054448449386339655700164", + "33740841798500565271151301", + "33951598511769949505531263" ], "fpReserves": [ - "585637999534027574269082", - "1430180660232882641590323" + "1745628799315706241359665", + "779716799670987562485024" ], - "mAssetSupply": "99585828507830773478992978", - "LPTokenSupply": "2014368690540260122820703" + "mAssetSupply": "100746834363811619799203716", + "LPTokenSupply": "2521803315097571981449226" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "72294406248775442432", - "outputQty0": "72294584513434917665", - "outputQty": "72660065137639479664", + "type": "swap_fp_to_mp", + "inputQty": "42249904596710074613760", + "outputIndex": 2, + "outputQty": "42501199462254823759927", + "swapFee": "0", + "redemptionFee": "25513808442816488485", "mpReserves": [ - "33087517674794584649930325", - "33327828306743272537805975", - "33170556310708085403743582" + "33054448449386339655700164", + "33740841798500565271151301", + "33909097312307694681771336" ], "fpReserves": [ - "585710294118541009186747", - "1430180660232882641590323" + "1703105785244345427217936", + "821966704267697637098784" ], - "mAssetSupply": "99585900802415286913910643", - "LPTokenSupply": "2014441350605397762300367" + "mAssetSupply": "100704336863548701801550472", + "LPTokenSupply": "2521803315097571981449226" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2877026352696661114880", - "outputQty0": "2860766010108609683335", - "outputQty": "2859659255011950923148", - "swapFee1": "1726215811617996668", - "swapFee2": "1144306404043443873", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1480111328209351213056", + "outputQty0": "1479987384443983856754", + "outputQty": "1469966619747238324083", + "swapFee": "1180151621426933774", "mpReserves": [ - "33087517674794584649930325", - "33324968647488260586882827", - "33170556310708085403743582" + "33054448449386339655700164", + "33740841798500565271151301", + "33910577423635904032984392" ], "fpReserves": [ - "582849528108432399503412", - "1430180660232882641590323" + "1704585772628789411074690", + "820496737647950398774701" ], - "mAssetSupply": "99583041180711582347671181", - "LPTokenSupply": "2011564496874282262985153" + "mAssetSupply": "100705816850933145785407226", + "LPTokenSupply": "2521803433112734124142603" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "84689623374227216", "outputIndex": 0, - "inputQty": "78436704266011501658112", - "outputQty0": "77928767405021236070926", - "outputQty": "77896557438162250706479", - "swapFee1": "47062022559606900994", - "swapFee2": "31171506962008494428", + "outputQty": "85138037624103489", + "swapFee": "0", + "redemptionFee": "51120037037162", "mpReserves": [ - "33009621117356422399223846", - "33324968647488260586882827", - "33170556310708085403743582" + "33054448364248302031596675", + "33740841798500565271151301", + "33910577423635904032984392" ], "fpReserves": [ - "504920760703411163432486", - "1430180660232882641590323" + "1704585687428727682471336", + "820496822337573773001917" ], - "mAssetSupply": "99505143584813523120094683", - "LPTokenSupply": "1933132498810526722017140" + "mAssetSupply": "100705816765784204093841034", + "LPTokenSupply": "2521803433112734124142603" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "16387812932891498496", - "outputQty0": "16267071916186970099", - "outputQty": "16260305664090320718", - "swapFee1": "9832687759734899", - "swapFee2": "6506828766474788", + "type": "swap_fp_to_mp", + "inputQty": "16487809705304920162304", + "outputIndex": 2, + "outputQty": "16575757663451215118232", + "swapFee": "0", + "redemptionFee": "9950604214857914062", "mpReserves": [ - "33009604857050758308903128", - "33324968647488260586882827", - "33170556310708085403743582" + "33054448364248302031596675", + "33740841798500565271151301", + "33894001665972452817866160" ], "fpReserves": [ - "504904493631494976462387", - "1430180660232882641590323" + "1688001347070631159033742", + "836984632042878693164221" ], - "mAssetSupply": "99505127324248435699599372", - "LPTokenSupply": "1933116111980862606492133" + "mAssetSupply": "100689242376030322428317502", + "LPTokenSupply": "2521803433112734124142603" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "30381648656303", - "outputQty0": "30382133393762", - "outputQty": "30589284308787", + "type": "redeem", + "outputIndex": 1, + "inputQty": "242266117974476843909120", + "outputQty0": "242816641363193897220596", + "outputQty": "242676834625920139420999", + "swapFee1": "145359670784686106345", + "swapFee2": "145689984817916338332", "mpReserves": [ - "33009604857081139957559431", - "33324968647488260586882827", - "33170556310708085403743582" + "33054448364248302031596675", + "33498164963874645131730302", + "33894001665972452817866160" ], "fpReserves": [ - "504904493661877109856149", - "1430180660232882641590323" + "1445184705707437261813146", + "836984632042878693164221" ], - "mAssetSupply": "99505127324278817832993134", - "LPTokenSupply": "1933116112011451890800920" + "mAssetSupply": "100446571424651946447435238", + "LPTokenSupply": "2279551851105335748844117" }, { - "type": "swap_fp_to_mp", - "inputQty": "80298577687342688", + "type": "redeem", "outputIndex": 1, - "outputQty": "79422476242219400", - "swapFee": "0", - "redemptionFee": "31781206224231", + "inputQty": "121131128477187726901248", + "outputQty0": "121361749522950491106358", + "outputQty": "121288250895165985266994", + "swapFee1": "72678677086312636140", + "swapFee2": "72817049713770294663", "mpReserves": [ - "33009604857081139957559431", - "33324968568065784344663427", - "33170556310708085403743582" + "33054448364248302031596675", + "33376876712979479146463308", + "33894001665972452817866160" ], "fpReserves": [ - "504904414208861549277300", - "1430180740531460328933011" + "1323822956184486770706788", + "836984632042878693164221" ], - "mAssetSupply": "99505127244857583478638516", - "LPTokenSupply": "1933116112011451890800920" + "mAssetSupply": "100325282492178709726623543", + "LPTokenSupply": "2158427990495856653206483" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "2480527221361835769856", - "outputQty0": "2462168454731530051574", - "outputQty": "2461144115732789114726", - "swapFee1": "1488316332817101461", - "swapFee2": "984867381892612020", + "type": "mint", + "inputIndex": 1, + "inputQty": "94468384694269198336", + "outputQty0": "94469860598808968882", + "outputQty": "94244822083070078278", "mpReserves": [ - "33007143712965407168444705", - "33324968568065784344663427", - "33170556310708085403743582" + "33054448364248302031596675", + "33376971181364173415661644", + "33894001665972452817866160" ], "fpReserves": [ - "502442245754130019225726", - "1430180740531460328933011" + "1323917426045085579675670", + "836984632042878693164221" ], - "mAssetSupply": "99502666061270233841198962", - "LPTokenSupply": "1930635733621723336741210" + "mAssetSupply": "100325376962039308535592425", + "LPTokenSupply": "2158522235317939723284761" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "7234392404454921216", - "outputQty0": "7180612486942330793", - "outputQty": "7177742579597393631", - "swapFee1": "4340635442672952", - "swapFee2": "2872244994776932", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "48521778933354971136", + "outputQty0": "48522536428073364350", + "outputQty": "48323508802446173698", + "swapFee": "38725553093169048", "mpReserves": [ - "33007143712965407168444705", - "33324968568065784344663427", - "33170549132965505806349951" + "33054448364248302031596675", + "33377019703143106770632780", + "33894001665972452817866160" ], "fpReserves": [ - "502435065141643076894933", - "1430180740531460328933011" + "1323965948581513653040020", + "836936308534076246990523" ], - "mAssetSupply": "99502658883529991893645101", - "LPTokenSupply": "1930628499663382426087289" + "mAssetSupply": "100325425484575736608956775", + "LPTokenSupply": "2158522239190495032601665" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "315314640560306941591552", - "outputQty0": "315311236206702303511227", - "outputQty": "316817041313457201842994", - "swapFee": "253292014763156429590", + "type": "swap_fp_to_mp", + "inputQty": "137315323281314567684096", + "outputIndex": 1, + "outputQty": "137542215344967417671364", + "swapFee": "0", + "redemptionFee": "82577104466874212477", "mpReserves": [ - "33007143712965407168444705", - "33324968568065784344663427", - "33485863773525812747941503" + "33054448364248302031596675", + "33239477487798139352961416", + "33894001665972452817866160" ], "fpReserves": [ - "817746301348345380406160", - "1113363699218003127090017" + "1186337441136723298910145", + "974251631815390814674619" ], - "mAssetSupply": "99817970119736694197156328", - "LPTokenSupply": "1930653828864858741730248" + "mAssetSupply": "100187879554235413129039377", + "LPTokenSupply": "2158522239190495032601665" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "144125415036361082142720", - "outputQty0": "144128557468394336437027", - "outputQty": "144166487116557482677948", - "swapFee": "115378037499455577823", + "inputQty": "9034025260102962176", + "outputQty0": "9034792480779324406", + "outputQty": "9015607311637998547", + "swapFee": "7216603996840092", "mpReserves": [ - "33151269128001768250587425", - "33324968568065784344663427", - "33485863773525812747941503" + "33054457398273562134558851", + "33239477487798139352961416", + "33894001665972452817866160" ], "fpReserves": [ - "961874858816739716843187", - "969197212101445644412069" + "1186346475929204078234551", + "974242616208079176676072" ], - "mAssetSupply": "99962098677205088533593355", - "LPTokenSupply": "1930665366668608687288030" + "mAssetSupply": "100187888589027893908363783", + "LPTokenSupply": "2158522239912155432285674" }, { - "type": "swap_fp_to_mp", - "inputQty": "398219501474527251005440", - "outputIndex": 0, - "outputQty": "396717392449956219554338", - "swapFee": "0", - "redemptionFee": "158755277457977742125", + "type": "mint", + "inputIndex": 2, + "inputQty": "29768332324463329280", + "outputQty0": "29764702494369804845", + "outputQty": "29718454181677193427", "mpReserves": [ - "32754551735551812031033087", - "33324968568065784344663427", - "33485863773525812747941503" + "33054457398273562134558851", + "33239477487798139352961416", + "33894031434304777281195440" ], "fpReserves": [ - "564986665171795361529506", - "1367416713575972895417509" + "1186376240631698448039396", + "974242616208079176676072" ], - "mAssetSupply": "99565369238837602156021799", - "LPTokenSupply": "1930665366668608687288030" + "mAssetSupply": "100187918353730388278168628", + "LPTokenSupply": "2158551958366337109479101" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "20705634362068880588800", - "outputQty0": "20705335274149655030114", - "outputQty": "20800243517193302893172", + "type": "redeem", + "outputIndex": 0, + "inputQty": "24332511665698488320", + "outputQty0": "24355756239313609534", + "outputQty": "24339075682263252350", + "swapFee1": "14599506999419092", + "swapFee2": "14613453743588165", "mpReserves": [ - "32754551735551812031033087", - "33345674202427853225252227", - "33485863773525812747941503" + "33054433059197879871306501", + "33239477487798139352961416", + "33894031434304777281195440" ], "fpReserves": [ - "585692000445945016559620", - "1367416713575972895417509" + "1186351884875459134429862", + "974242616208079176676072" ], - "mAssetSupply": "99586074574111751811051913", - "LPTokenSupply": "1951465610185801990181202" + "mAssetSupply": "100187894012587602708147259", + "LPTokenSupply": "2158527627314622110932690" }, { - "type": "swap_fp_to_mp", - "inputQty": "327566868596801152", - "outputIndex": 1, - "outputQty": "324997008155911084", - "swapFee": "0", - "redemptionFee": "130048855969051", + "type": "mint", + "inputIndex": 1, + "inputQty": "2175970254150507209687040", + "outputQty0": "2175673109122925432645803", + "outputQty": "2167506650058331878389954", "mpReserves": [ - "32754551735551812031033087", - "33345673877430845069341143", - "33485863773525812747941503" + "33054433059197879871306501", + "35415447741948646562648456", + "33894031434304777281195440" ], "fpReserves": [ - "585691675323805093930206", - "1367417041142841492218661" + "3362024993998384567075665", + "974242616208079176676072" ], - "mAssetSupply": "99586074249119660744391550", - "LPTokenSupply": "1951465610185801990181202" + "mAssetSupply": "102363567121710528140793062", + "LPTokenSupply": "4326034277372953989322644" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "566178293580288622592", - "outputQty0": "563353275393068563108", - "outputQty": "563136443644935398374", - "swapFee1": "339706976148173173", - "swapFee2": "225341310157227425", + "type": "mint", + "inputIndex": 2, + "inputQty": "2833260664472871632896", + "outputQty0": "2833407651806861412323", + "outputQty": "2817214474391780999798", "mpReserves": [ - "32754551735551812031033087", - "33345110740987200133942769", - "33485863773525812747941503" + "33054433059197879871306501", + "35415447741948646562648456", + "33896864694969250152828336" ], "fpReserves": [ - "585128322048412025367098", - "1367417041142841492218661" + "3364858401650191428487988", + "974242616208079176676072" ], - "mAssetSupply": "99585511121185577833055867", - "LPTokenSupply": "1950899465862919316375927" + "mAssetSupply": "102366400529362335002205385", + "LPTokenSupply": "4328851491847345770322442" }, { "type": "swap_fp_to_mp", - "inputQty": "10813832873004410863616", + "inputQty": "2155177753757708544", "outputIndex": 0, - "outputQty": "10726232263703303378260", + "outputQty": "2185681124487916887", "swapFee": "0", - "redemptionFee": "4292402569377160118", + "redemptionFee": "1312542321704138", "mpReserves": [ - "32743825503288108727654827", - "33345110740987200133942769", - "33485863773525812747941503" + "33054430873516755383389614", + "35415447741948646562648456", + "33896864694969250152828336" ], "fpReserves": [ - "574397315624969125070821", - "1378230874015845903082277" + "3364856214079655254923897", + "974244771385832934384616" ], - "mAssetSupply": "99574784407164704309919708", - "LPTokenSupply": "1950899465862919316375927" + "mAssetSupply": "102366398343104341150345432", + "LPTokenSupply": "4328851491847345770322442" }, { - "type": "swap_fp_to_mp", - "inputQty": "83778103968889565085696", - "outputIndex": 0, - "outputQty": "82942721420442901017973", - "swapFee": "0", - "redemptionFee": "33191962195591699961", + "type": "redeem", + "outputIndex": 2, + "inputQty": "3353321549683354501120", + "outputQty0": "3370571059200582480741", + "outputQty": "3368373820933896183146", + "swapFee1": "2011992929810012700", + "swapFee2": "2022342635520349488", "mpReserves": [ - "32660882781867665826636854", - "33345110740987200133942769", - "33485863773525812747941503" + "33054430873516755383389614", + "35415447741948646562648456", + "33893496321148316256645190" ], "fpReserves": [ - "491417410135989875167036", - "1462008977984735468167973" + "3361485643020454672443156", + "974244771385832934384616" ], - "mAssetSupply": "99491837693637920651715884", - "LPTokenSupply": "1950899465862919316375927" + "mAssetSupply": "102363029794387776088214179", + "LPTokenSupply": "4325498371496955396822592" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "292098601944101511233536", - "outputQty0": "292090465837721657418871", - "outputQty": "293710160829504194072303", - "swapFee": "234718243112090647522", - "mpReserves": [ - "32660882781867665826636854", - "33637209342931301645176305", - "33485863773525812747941503" - ], - "fpReserves": [ - "783507875973711532585907", - "1168298817155231274095670" - ], - "mAssetSupply": "99783928159475642309134755", - "LPTokenSupply": "1950922937687230525440679" + "inputIndex": 2, + "inputQty": "139916189174475123589120", + "hardLimitError": true }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "42268414649518563328", - "outputQty0": "42267460951794354059", - "outputQty": "42353099594396398964", - "swapFee": "33855816991716458", + "inputQty": "701208131622063", + "outputQty0": "701244733861216", + "outputQty": "690325984153980", + "swapFee": "557791305893", "mpReserves": [ - "32660882781867665826636854", - "33637209342931301645176305", - "33485906041940462266504831" + "33054430873516755383389614", + "35415447741948646562648456", + "33893496321849524388267253" ], "fpReserves": [ - "783550143434663326939966", - "1168256464055636877696706" + "3361485643721699406304372", + "974244770695506950230636" ], - "mAssetSupply": "99783970426936594103488814", - "LPTokenSupply": "1950922941072812224612324" + "mAssetSupply": "102363029795089020822075395", + "LPTokenSupply": "4325498371497011175953181" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "818685561585388862046208", - "outputQty0": "818712513194857212470235", - "outputQty": "818481760117311959848464", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1219633417205947564032", + "outputQty0": "1225902862816908365545", + "outputQty": "1224844263097364948810", + "swapFee1": "731780050323568538", + "swapFee2": "735541717690145019", "mpReserves": [ - "33479568343453054688683062", - "33637209342931301645176305", - "33485906041940462266504831" + "33053206029253658018440804", + "35415447741948646562648456", + "33893496321849524388267253" ], "fpReserves": [ - "1602262656629520539410201", - "1168256464055636877696706" + "3360259740858882497938827", + "974244770695506950230636" ], - "mAssetSupply": "100602682940131451315959049", - "LPTokenSupply": "2769404701190124184460788" + "mAssetSupply": "102361804627767921603854869", + "LPTokenSupply": "4324278811257810260746002" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "53544268517756152840192", - "outputQty0": "53544463620333708280258", - "outputQty": "53368983378020923033726", - "swapFee": "42776747673648947441", + "type": "swap_fp_to_mp", + "inputQty": "356264410647729595744256", + "outputIndex": 0, + "outputQty": "359663216179052489634911", + "swapFee": "0", + "redemptionFee": "215991207421249907205", "mpReserves": [ - "33533112611970810841523254", - "33637209342931301645176305", - "33485906041940462266504831" + "32693542813074605528805893", + "35415447741948646562648456", + "33893496321849524388267253" ], "fpReserves": [ - "1655807120249854247690459", - "1114887480677615954662980" + "3000274395156799319262161", + "1330509181343236545974892" ], - "mAssetSupply": "100656227403751785024239307", - "LPTokenSupply": "2769408978864891549355532" + "mAssetSupply": "102002035273273259675085408", + "LPTokenSupply": "4324278811257810260746002" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "5301793756909107200", - "outputQty0": "5301749144921641594", - "outputQty": "5282732601417818059", - "swapFee": "4234665522024894", - "mpReserves": [ - "33533112611970810841523254", - "33637214644725058554283505", - "33485906041940462266504831" - ], - "fpReserves": [ - "1655812421998999169332053", - "1114882197945014536844921" - ], - "mAssetSupply": "100656232705500929945880901", - "LPTokenSupply": "2769408979288358101558021" - }, - { - "type": "mint", "inputIndex": 0, - "inputQty": "1299169063428175429632", - "outputQty0": "1299171441092617637473", - "outputQty": "1297107170338454684063", + "inputQty": "21619727171363504128", + "outputQty0": "21626787169050421518", + "outputQty": "21458226414291993508", + "swapFee": "17238112853245114", "mpReserves": [ - "33534411781034239016952886", - "33637214644725058554283505", - "33485906041940462266504831" + "32693564432801776892310021", + "35415447741948646562648456", + "33893496321849524388267253" ], "fpReserves": [ - "1657111593440091786969526", - "1114882197945014536844921" + "3000296021943968369683679", + "1330487723116822253981384" ], - "mAssetSupply": "100657531876942022563518374", - "LPTokenSupply": "2770706086458696556242084" + "mAssetSupply": "102002056900060428725506926", + "LPTokenSupply": "4324278812981621546070513" }, { "type": "swap_fp_to_mp", - "inputQty": "8387907605126383140864", + "inputQty": "10507416114918886211584", "outputIndex": 2, - "outputQty": "8407577846357366262184", - "swapFee": "0", - "redemptionFee": "3364400039286901230", - "mpReserves": [ - "33534411781034239016952886", - "33637214644725058554283505", - "33477498464094104900242647" - ], - "fpReserves": [ - "1648700593341874533892406", - "1123270105550140919985785" - ], - "mAssetSupply": "100649124241243844597342484", - "LPTokenSupply": "2770706086458696556242084" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "67651840186064888", - "outputIndex": 0, - "outputQty": "67807480045449026", + "outputQty": "10574109672114627227942", "swapFee": "0", - "redemptionFee": "27133886501233", + "redemptionFee": "6348418562081501198", "mpReserves": [ - "33534411713226758971503860", - "33637214644725058554283505", - "33477498464094104900242647" + "32693564432801776892310021", + "35415447741948646562648456", + "33882922212177409761039311" ], "fpReserves": [ - "1648700525507158280808824", - "1123270173201981106050673" + "2989715324340499201019245", + "1340995139231741140192968" ], - "mAssetSupply": "100649124173436262230760135", - "LPTokenSupply": "2770706086458696556242084" + "mAssetSupply": "101991482550875521638343690", + "LPTokenSupply": "4324278812981621546070513" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1025672089936626712576", - "outputQty0": "1026646882800016619392", - "outputQty": "1026234640666387524889", - "swapFee1": "615403253961976027", - "swapFee2": "410658753120006647", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "35558400053611929600", + "outputQty0": "35569979774555982445", + "outputQty": "35297963406215175903", + "swapFee": "28353145015008750", "mpReserves": [ - "33533385478586092583978971", - "33637214644725058554283505", - "33477498464094104900242647" + "32693599991201830504239621", + "35415447741948646562648456", + "33882922212177409761039311" ], "fpReserves": [ - "1647673878624358264189432", - "1123270173201981106050673" + "2989750894320273757001690", + "1340959841268334925017065" ], - "mAssetSupply": "100648097937212215334147390", - "LPTokenSupply": "2769680475909085325727110" + "mAssetSupply": "101991518120855296194326135", + "LPTokenSupply": "4324278815816936047571388" }, { "type": "mint", "inputIndex": 2, - "inputQty": "322682432042754778333184", - "outputQty0": "322681297932545208556569", - "outputQty": "322084889833519984667937", + "inputQty": "334487065099767419764736", + "outputQty0": "334485839780863385087223", + "outputQty": "333202804804529081095839", "mpReserves": [ - "33533385478586092583978971", - "33637214644725058554283505", - "33800180896136859678575831" + "32693599991201830504239621", + "35415447741948646562648456", + "34217409277277177180804047" ], "fpReserves": [ - "1970355176556903472746001", - "1123270173201981106050673" + "3324236734101137142088913", + "1340959841268334925017065" ], - "mAssetSupply": "100970779235144760542703959", - "LPTokenSupply": "3091765365742605310395047" + "mAssetSupply": "102326003960636159579413358", + "LPTokenSupply": "4657481620621465128667227" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "139618790007836472508416", - "outputQty0": "139619851796915373802553", - "outputQty": "139304547585468626677409", + "inputIndex": 1, + "inputQty": "111028776124179046989824", + "outputQty0": "110993451179722775649765", + "outputQty": "110535256321771783651444", "mpReserves": [ - "33673004268593929056487387", - "33637214644725058554283505", - "33800180896136859678575831" + "32693599991201830504239621", + "35526476518072825609638280", + "34217409277277177180804047" ], "fpReserves": [ - "2109975028353818846548554", - "1123270173201981106050673" + "3435230185280859917738678", + "1340959841268334925017065" ], - "mAssetSupply": "101110399086941675916506512", - "LPTokenSupply": "3231069913328073937072456" + "mAssetSupply": "102436997411815882355063123", + "LPTokenSupply": "4768016876943236912318671" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "41133119346522342817792", - "outputQty0": "41204961600018758547911", - "outputQty": "41188154391136675090410", - "swapFee1": "24679871607913405690", - "swapFee2": "16481984640007503419", + "outputIndex": 2, + "inputQty": "146400408311977771008", + "outputQty0": "146929700425147001152", + "outputQty": "146844784016151803322", + "swapFee1": "87840244987186662", + "swapFee2": "88157820255088200", "mpReserves": [ - "33673004268593929056487387", - "33596026490333921879193095", - "33800180896136859678575831" + "32693599991201830504239621", + "35526476518072825609638280", + "34217262432493161029000725" ], "fpReserves": [ - "2068770066753800088000643", - "1123270173201981106050673" + "3435083255580434770737526", + "1340959841268334925017065" ], - "mAssetSupply": "101069210607326297165462020", - "LPTokenSupply": "3189939261968712385595233" + "mAssetSupply": "102436850570273277463150171", + "LPTokenSupply": "4767870485318949433266329" }, { "type": "swap_fp_to_mp", - "inputQty": "5834707794016244736", + "inputQty": "1527475586130298816954368", "outputIndex": 2, - "outputQty": "5859951662750312900", + "outputQty": "1529484154753426700051847", "swapFee": "0", - "redemptionFee": "2344893152869935", + "redemptionFee": "918337137493723268673", "mpReserves": [ - "33673004268593929056487387", - "33596026490333921879193095", - "33800175036185196928262931" + "32693599991201830504239621", + "35526476518072825609638280", + "32687778277739734328948878" ], "fpReserves": [ - "2068764204520917913160846", - "1123276007909775122295409" + "1904521359757562656281994", + "2868435427398633741971433" ], - "mAssetSupply": "101069204747438308143492158", - "LPTokenSupply": "3189939261968712385595233" + "mAssetSupply": "100907207011587899071963312", + "LPTokenSupply": "4767870485318949433266329" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "69951906881172492255232", - "outputQty0": "69951860805030673059260", - "outputQty": "69785814987832920223924", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "9841009795421955948544", + "outputQty0": "9836601614780240450155", + "outputQty": "9856986605426789531610", + "swapFee": "7874525725911938966", "mpReserves": [ - "33742956175475101548742619", - "33596026490333921879193095", - "33800175036185196928262931" + "32693599991201830504239621", + "35536317527868247565586824", + "32687778277739734328948878" ], "fpReserves": [ - "2138716065325948586220106", - "1123276007909775122295409" + "1914357961372342896732149", + "2858578440793206952439823" ], - "mAssetSupply": "101139156608243338816551418", - "LPTokenSupply": "3259725076956545305819157" + "mAssetSupply": "100917043613202679312413467", + "LPTokenSupply": "4767871272771522024460225" }, { "type": "swap_fp_to_mp", - "inputQty": "3919042586695248117760", - "outputIndex": 2, - "outputQty": "3937216961065888737081", + "inputQty": "32766225778761764175872", + "outputIndex": 1, + "outputQty": "32664636445522889461531", "swapFee": "0", - "redemptionFee": "1575503685050781527", + "redemptionFee": "19601796995180768646", "mpReserves": [ - "33742956175475101548742619", - "33596026490333921879193095", - "33796237819224131039525850" + "32693599991201830504239621", + "35503652891422724676125293", + "32687778277739734328948878" ], "fpReserves": [ - "2134777306113321632401952", - "1127195050496470370413169" + "1881688299713708282321908", + "2891344666571968716615695" ], - "mAssetSupply": "101135219424534396913514791", - "LPTokenSupply": "3259725076956545305819157" + "mAssetSupply": "100884393553341039878771872", + "LPTokenSupply": "4767871272771522024460225" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "42908621434528840", - "outputQty0": "42908264567495180", - "outputQty": "42660499084630265", - "swapFee": "34243759369390", + "type": "redeem", + "outputIndex": 1, + "inputQty": "56020916624816447946752", + "outputQty0": "55939680458865518924783", + "outputQty": "55930708367557655391977", + "swapFee1": "33612549974889868768", + "swapFee2": "33563808275319311354", "mpReserves": [ - "33742956175475101548742619", - "33596026490333921879193095", - "33796237862132752474054690" + "32693599991201830504239621", + "35447722183055167020733316", + "32687778277739734328948878" ], "fpReserves": [ - "2134777349021586199897132", - "1127195007835971285782904" + "1825748619254842763397125", + "2891344666571968716615695" ], - "mAssetSupply": "101135219467442661481009971", - "LPTokenSupply": "3259725076959969681756096" + "mAssetSupply": "100828487436690449679158443", + "LPTokenSupply": "4711853717401703065500349" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "82332116026929922048", - "outputQty0": "82331861894461915334", - "outputQty": "81856405283619661204", - "swapFee": "65706508985610280", + "inputIndex": 1, + "inputQty": "147099309295667358203904", + "outputQty0": "147033639000201063472680", + "outputQty": "147326511936563767914986", + "swapFee": "117712323242022534328", "mpReserves": [ - "33743038507591128478664667", - "33596026490333921879193095", - "33796237862132752474054690" + "32693599991201830504239621", + "35594821492350834378937220", + "32687778277739734328948878" ], "fpReserves": [ - "2134859680883480661812466", - "1127113151430687666121700" + "1972782258255043826869805", + "2744018154635404948700709" ], - "mAssetSupply": "101135301799304555942925305", - "LPTokenSupply": "3259725083530620580317124" + "mAssetSupply": "100975521075690650742631123", + "LPTokenSupply": "4711865488634027267753781" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "24671301799260991782912", - "outputQty0": "24715650683769128936401", - "outputQty": "24705461717077179922183", - "swapFee1": "14802781079556595069", - "swapFee2": "9886260273507651574", + "outputIndex": 2, + "inputQty": "505616967502030337736704", + "outputQty0": "504817258699036878377040", + "outputQty": "504371275290862092323029", + "swapFee1": "303370180501218202642", + "swapFee2": "302890355219422127026", "mpReserves": [ - "33743038507591128478664667", - "33571321028616844699270912", - "33796237862132752474054690" + "32693599991201830504239621", + "35594821492350834378937220", + "32183407002448872236625849" ], "fpReserves": [ - "2110144030199711532876065", - "1127113151430687666121700" + "1467964999556006948492765", + "2744018154635404948700709" ], - "mAssetSupply": "101110596034881060321640478", - "LPTokenSupply": "3235055262009467544193718" + "mAssetSupply": "100471006707346833286381109", + "LPTokenSupply": "4206278858150047051837341" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2610296001407018336256", - "outputQty0": "2610329893579465738074", - "outputQty": "2604120467713247122433", - "mpReserves": [ - "33743038507591128478664667", - "33573931324618251717607168", - "33796237862132752474054690" - ], - "fpReserves": [ - "2112754360093290998614139", - "1127113151430687666121700" - ], - "mAssetSupply": "101113206364774639787378552", - "LPTokenSupply": "3237659382477180791316151" + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "2200426938360067061186560", + "hardLimitError": true }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "838319676056532549632", - "outputQty0": "838312073920225418804", - "outputQty": "836315469075256044609", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1822463311996696657920", + "outputQty0": "1821555194358809688044", + "outputQty": "1828940569836690231208", + "swapFee": "1459872113016731513", "mpReserves": [ - "33743038507591128478664667", - "33573931324618251717607168", - "33797076181808809006604322" + "32693599991201830504239621", + "35596643955662831075595140", + "32183407002448872236625849" ], "fpReserves": [ - "2113592672167211224032943", - "1127113151430687666121700" + "1469786554750365758180809", + "2742189214065568258469501" ], - "mAssetSupply": "101114044676848560012797356", - "LPTokenSupply": "3238495697946256047360760" + "mAssetSupply": "100472828262541192096069153", + "LPTokenSupply": "4206279004137258353510492" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "236371434290593", - "outputQty0": "236793749524920", - "outputQty": "236695972689292", - "swapFee1": "141822860574", - "swapFee2": "94717499809", + "outputIndex": 2, + "inputQty": "10447669561089268383744", + "outputQty0": "10422451343184618080066", + "outputQty": "10412766268441558732033", + "swapFee1": "6268601736653561030", + "swapFee2": "6253470805910770848", "mpReserves": [ - "33743038507591128478664667", - "33573931324381555744917876", - "33797076181808809006604322" + "32693599991201830504239621", + "35596643955662831075595140", + "32172994236180430677893816" ], "fpReserves": [ - "2113592671930417474508023", - "1127113151430687666121700" + "1459364103407181140100743", + "2742189214065568258469501" ], - "mAssetSupply": "101114044676611860980772245", - "LPTokenSupply": "3238495697709898795356224" + "mAssetSupply": "100462412064668813388759935", + "LPTokenSupply": "4195831961436342750482851" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "306628507286259810435072", - "outputQty0": "307094870269838030570676", - "outputQty": "306970090838373802753599", - "swapFee1": "183977104371755886261", - "swapFee2": "122837948107935212228", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "683953646813428200767488", + "outputQty0": "684045675498940389022344", + "outputQty": "684920935728291919108030", + "swapFee": "547622448151459353238", "mpReserves": [ - "33436068416752754675911068", - "33573931324381555744917876", - "33797076181808809006604322" + "33377553638015258705007109", + "35596643955662831075595140", + "32172994236180430677893816" ], "fpReserves": [ - "1806497801660579443937347", - "1127113151430687666121700" + "2143409778906121529123087", + "2057268278337276339361471" ], - "mAssetSupply": "100807072644290130885413797", - "LPTokenSupply": "2931885588134076160509778" + "mAssetSupply": "101146457740167753777782279", + "LPTokenSupply": "4195886723681157896418174" }, { "type": "swap_fp_to_mp", - "inputQty": "1873235387458272768", - "outputIndex": 0, - "outputQty": "1878872983713201609", + "inputQty": "221780129528831759351808", + "outputIndex": 1, + "outputQty": "221646603910299608618319", "swapFee": "0", - "redemptionFee": "751862332119440", + "redemptionFee": "133010765367712608997", "mpReserves": [ - "33436066537879770962709459", - "33573931324381555744917876", - "33797076181808809006604322" + "33377553638015258705007109", + "35374997351752531466976821", + "32172994236180430677893816" ], "fpReserves": [ - "1806495922004749145335981", - "1127115024666075124394468" + "1921725169959933847460386", + "2279048407866108098713279" ], - "mAssetSupply": "100807070765386162918931871", - "LPTokenSupply": "2931885588134076160509778" + "mAssetSupply": "100924906141986933808728575", + "LPTokenSupply": "4195886723681157896418174" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "37084591730927916285952", - "outputQty0": "37085157539353058575421", - "outputQty": "37013356340718861308618", + "inputIndex": 2, + "inputQty": "74824640377257220636672", + "outputQty0": "74851958778650209432848", + "outputQty": "74805951068097966071175", "mpReserves": [ - "33473151129610698878995411", - "33573931324381555744917876", - "33797076181808809006604322" + "33377553638015258705007109", + "35374997351752531466976821", + "32247818876557687898530488" ], "fpReserves": [ - "1843581079544102203911402", - "1127115024666075124394468" + "1996577128738584056893234", + "2279048407866108098713279" ], - "mAssetSupply": "100844155922925515977507292", - "LPTokenSupply": "2968898944474795021818396" + "mAssetSupply": "100999758100765584018161423", + "LPTokenSupply": "4270692674749255862489349" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "151051237916060745728", - "outputQty0": "151258508453703834444", - "outputQty": "151197398094453073811", - "swapFee1": "90630742749636447", - "swapFee2": "60503403381481533", + "outputIndex": 0, + "inputQty": "52784022064415931105280", + "outputQty0": "52785889558767004856715", + "outputQty": "52750519214033841195117", + "swapFee1": "31670413238649558663", + "swapFee2": "31671533735260202914", "mpReserves": [ - "33473151129610698878995411", - "33573780126983461291844065", - "33797076181808809006604322" + "33324803118801224863811992", + "35374997351752531466976821", + "32247818876557687898530488" ], "fpReserves": [ - "1843429821035648500076958", - "1127115024666075124394468" + "1943791239179817052036519", + "2279048407866108098713279" ], - "mAssetSupply": "100844004724920465655154381", - "LPTokenSupply": "2968747902299953236036312" + "mAssetSupply": "100947003882740552273507622", + "LPTokenSupply": "4217911819726163796339935" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "12380527018767718400", - "outputQty0": "12380700580001922864", - "outputQty": "12356318190635392019", + "type": "swap_fp_to_mp", + "inputQty": "4003141970580916928512", + "outputIndex": 2, + "outputQty": "3995015246682416992963", + "swapFee": "0", + "redemptionFee": "2399297713470730298", "mpReserves": [ - "33473163510137717646713811", - "33573780126983461291844065", - "33797076181808809006604322" + "33324803118801224863811992", + "35374997351752531466976821", + "32243823861311005481537525" ], "fpReserves": [ - "1843442201736228501999822", - "1127115024666075124394468" + "1939792409657365834873165", + "2283051549836689015641791" ], - "mAssetSupply": "100844017105621045657077245", - "LPTokenSupply": "2968760258618143871428331" + "mAssetSupply": "100943007452515814527074566", + "LPTokenSupply": "4217911819726163796339935" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "143747833966139940012032", - "outputQty0": "143749164182775732256427", - "outputQty": "143447722143345232676633", + "type": "redeem", + "outputIndex": 1, + "inputQty": "2983273834032619008", + "outputQty0": "2983210685684708676", + "outputQty": "2982645088322142363", + "swapFee1": "1789964300419571", + "swapFee2": "1789926411410825", "mpReserves": [ - "33616911344103857586725843", - "33573780126983461291844065", - "33797076181808809006604322" + "33324803118801224863811992", + "35374994369107443144834458", + "32243823861311005481537525" ], "fpReserves": [ - "1987191365919004234256249", - "1127115024666075124394468" + "1939789426446680150164489", + "2283051549836689015641791" ], - "mAssetSupply": "100987766269803821389333672", - "LPTokenSupply": "3112207980761489104104964" + "mAssetSupply": "100943004471095055253776715", + "LPTokenSupply": "4217908836631326193762884" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "101351167311789615480832", - "outputQty0": "101351717456018560525375", - "outputQty": "101117592680536983115427", + "type": "swap_fp_to_mp", + "inputQty": "12526970908080590553088", + "outputIndex": 1, + "outputQty": "12510416682508864545274", + "swapFee": "0", + "redemptionFee": "7507680429804849152", "mpReserves": [ - "33616911344103857586725843", - "33675131294295250907324897", - "33797076181808809006604322" + "33324803118801224863811992", + "35362483952424934280289184", + "32243823861311005481537525" ], "fpReserves": [ - "2088543083375022794781624", - "1127115024666075124394468" + "1927276625730338734910507", + "2295578520744769606194879" ], - "mAssetSupply": "101089117987259839949859047", - "LPTokenSupply": "3213325573442026087220391" + "mAssetSupply": "100930499178059143643371885", + "LPTokenSupply": "4217908836631326193762884" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "90574056542771209043968", - "outputQty0": "90730127938549064682835", - "outputQty": "90692852409596930869516", - "swapFee1": "54344433925662725426", - "swapFee2": "36292051175419625873", + "outputIndex": 1, + "inputQty": "49159459255065228869632", + "outputQty0": "49153856897490507935944", + "outputQty": "49144265316120285063875", + "swapFee1": "29495675553039137321", + "swapFee2": "29492314138494304761", "mpReserves": [ - "33526218491694260655856327", - "33675131294295250907324897", - "33797076181808809006604322" + "33324803118801224863811992", + "35313339687108813995225309", + "32243823861311005481537525" ], "fpReserves": [ - "1997812955436473730098789", - "1127115024666075124394468" + "1878122768832848226974563", + "2295578520744769606194879" ], - "mAssetSupply": "100998424151372466304802085", - "LPTokenSupply": "3122756951342647444448965" + "mAssetSupply": "100881374813475791629740702", + "LPTokenSupply": "4168752326943816268806984" }, { "type": "swap_fp_to_mp", - "inputQty": "537675781224507834368", + "inputQty": "619230405129557504", "outputIndex": 0, - "outputQty": "539784426548766110823", + "outputQty": "617980234370807972", "swapFee": "0", - "redemptionFee": "216003165697150482", + "redemptionFee": "371036463108218", "mpReserves": [ - "33525678707267711889745504", - "33675131294295250907324897", - "33797076181808809006604322" + "33324802500820990493004020", + "35313339687108813995225309", + "32243823861311005481537525" ], "fpReserves": [ - "1997272947522230853893369", - "1127652700447299632228836" + "1878122150438743046610873", + "2295579139975174735752383" ], - "mAssetSupply": "100997884359461389125747147", - "LPTokenSupply": "3122756951342647444448965" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "222022640858382003601408", - "outputIndex": 1, - "outputQty": "222605320180271479114819", - "swapFee": "0", - "redemptionFee": "89078331318933490805", - "mpReserves": [ - "33525678707267711889745504", - "33452525974114979428210078", - "33797076181808809006604322" - ], - "fpReserves": [ - "1774577119224897126879384", - "1349675341305681635830244" - ], - "mAssetSupply": "100775277609495374332223967", - "LPTokenSupply": "3122756951342647444448965" + "mAssetSupply": "100881374195452722912485230", + "LPTokenSupply": "4168752326943816268806984" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "7987061114998294052864", - "outputQty0": "7987111050079188159668", - "outputQty": "7965515823171689350541", - "swapFee": "6381427231118121455", + "inputQty": "10020068597504428474368", + "outputQty0": "10020754731131631577097", + "outputQty": "10025941304485706872306", + "swapFee": "8012968865720016536", "mpReserves": [ - "33533665768382710183798368", - "33452525974114979428210078", - "33797076181808809006604322" + "33334822569418494921478388", + "35313339687108813995225309", + "32243823861311005481537525" ], "fpReserves": [ - "1782564230274976315039052", - "1341709825482509946479703" + "1888142905169874678187970", + "2285553198670689028880077" ], - "mAssetSupply": "100783264720545453520383635", - "LPTokenSupply": "3122757589485370556261110" + "mAssetSupply": "100891394950183854544062327", + "LPTokenSupply": "4168753128240702840808637" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "4154051376302849523712", - "outputQty0": "4157032557226506473263", - "outputQty": "4155452096416317676371", - "swapFee1": "2492430825781709714", - "swapFee2": "1662813022890602589", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "171492016789558979985408", + "outputQty0": "171501165911524253985251", + "outputQty": "171487983552448973879486", + "swapFee": "137112468471948757649", "mpReserves": [ - "33533665768382710183798368", - "33452525974114979428210078", - "33792920729712392688927951" + "33506314586208053901463796", + "35313339687108813995225309", + "32243823861311005481537525" ], "fpReserves": [ - "1778407197717749808565789", - "1341709825482509946479703" + "2059644071081398932173221", + "2114065215118240055000591" ], - "mAssetSupply": "100779109350801249904512961", - "LPTokenSupply": "3118603787352150284908369" + "mAssetSupply": "101062896116095378798047578", + "LPTokenSupply": "4168766839487550035684401" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "58703800423126614016", - "outputQty0": "58704617699435644303", - "outputQty": "58544655896998474709", - "swapFee": "46901992222282007", + "inputIndex": 0, + "inputQty": "460985726291605962358784", + "outputQty0": "460986283034396149722865", + "outputQty": "459997685016687557524512", + "swapFee": "368259305766988021376", "mpReserves": [ - "33533665768382710183798368", - "33452584677915402554824094", - "33792920729712392688927951" + "33967300312499659863822580", + "35313339687108813995225309", + "32243823861311005481537525" ], "fpReserves": [ - "1778465902335449244210092", - "1341651280826612948004994" + "2520630354115795081896086", + "1654067530101552497476079" ], - "mAssetSupply": "100779168055418949340157264", - "LPTokenSupply": "3118603792042349507136569" + "mAssetSupply": "101523882399129774947770443", + "LPTokenSupply": "4168803665418126734486538" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "31991804653017919488", - "outputQty0": "31992249947550330436", - "outputQty": "31950210461648720458", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "10290563972252596961280", + "outputQty0": "10290180817753908294669", + "outputQty": "10250715500761606398388", + "swapFee": "8210692583474629925", "mpReserves": [ - "33533665768382710183798368", - "33452616669720055572743582", - "33792920729712392688927951" + "33977590876471912460783860", + "35313339687108813995225309", + "32243823861311005481537525" ], "fpReserves": [ - "1778497894585396794540528", - "1341651280826612948004994" + "2530920534933548990190755", + "1643816814600790891077691" ], - "mAssetSupply": "100779200047668896890487700", - "LPTokenSupply": "3118635742252811155857027" + "mAssetSupply": "101534172579947528856065112", + "LPTokenSupply": "4168804486487385081949530" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1447644486121605376", - "outputQty0": "1447664634303165399", - "outputQty": "1443719350024368201", - "swapFee": "1156609827829850", + "inputIndex": 2, + "inputQty": "546121696673260830720", + "outputQty0": "546343112969839856610", + "outputQty": "544223557208475185796", + "swapFee": "435922935045312589", "mpReserves": [ - "33533665768382710183798368", - "33452618117364541694348958", - "33792920729712392688927951" + "33977590876471912460783860", + "35313339687108813995225309", + "32244369983007678742368245" ], "fpReserves": [ - "1778499342250031097705927", - "1341649837107262923636793" + "2531466878046518830047365", + "1643272591043582415891895" ], - "mAssetSupply": "100779201495333531193653099", - "LPTokenSupply": "3118635742368472138640012" + "mAssetSupply": "101534718923060498695921722", + "LPTokenSupply": "4168804530079678586480788" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "240228051835012448256", - "outputQty0": "240399770217018348445", - "outputQty": "240308337566307566590", - "swapFee1": "144136831101007468", - "swapFee2": "96159908086807339", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "92677350238540716310528", + "outputQty0": "92714146380332148190977", + "outputQty": "92317596074899289690201", + "swapFee": "73971421520433750671", "mpReserves": [ - "33533665768382710183798368", - "33452618117364541694348958", - "33792680421374826381361361" + "33977590876471912460783860", + "35313339687108813995225309", + "32337047333246219458678773" ], "fpReserves": [ - "1778258942479814079357482", - "1341649837107262923636793" + "2624181024426850978238342", + "1550954994968683126201694" ], - "mAssetSupply": "100778961191723222262111993", - "LPTokenSupply": "3118395528730320236292502" + "mAssetSupply": "101627433069440830844112699", + "LPTokenSupply": "4168811927221830629855855" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "2488827808448398753792", - "outputQty0": "2490600958779260023261", - "outputQty": "2489653472497861974265", - "swapFee1": "1493296685069039252", - "swapFee2": "996240383511704009", + "outputIndex": 1, + "inputQty": "303566984895760", + "outputQty0": "304285996270299", + "outputQty": "304207581364338", + "swapFee1": "182140190937", + "swapFee2": "182571597762", "mpReserves": [ - "33533665768382710183798368", - "33452618117364541694348958", - "33790190767902328519387096" + "33977590876471912460783860", + "35313339686804606413860971", + "32337047333246219458678773" ], "fpReserves": [ - "1775768341521034819334221", - "1341649837107262923636793" + "2624181024122564981968043", + "1550954994968683126201694" ], - "mAssetSupply": "100776471587004826513792741", - "LPTokenSupply": "3115906850251540344442635" + "mAssetSupply": "101627433069136727419440162", + "LPTokenSupply": "4168811926918281858979188" }, { "type": "swap_fp_to_mp", - "inputQty": "215828183252280042061824", - "outputIndex": 0, - "outputQty": "215943080934575311070563", + "inputQty": "65463006151646501666816", + "outputIndex": 1, + "outputQty": "65682020168810896089745", "swapFee": "0", - "redemptionFee": "86412914791197354979", + "redemptionFee": "39419565589748155949", "mpReserves": [ - "33317722687448134872727805", - "33452618117364541694348958", - "33790190767902328519387096" + "33977590876471912460783860", + "35247657666635795517771226", + "32337047333246219458678773" ], "fpReserves": [ - "1559736054543041431884516", - "1557478020359542965698617" + "2558481748139651388718796", + "1616418001120329627868510" ], - "mAssetSupply": "100560525712941624323698015", - "LPTokenSupply": "3115906850251540344442635" + "mAssetSupply": "101561773212719403574346864", + "LPTokenSupply": "4168811926918281858979188" }, { - "type": "swap_fp_to_mp", - "inputQty": "3156830785686885", - "outputIndex": 1, - "outputQty": "3155577339805678", - "swapFee": "0", - "redemptionFee": "1262744429462", + "type": "mint", + "inputIndex": 0, + "inputQty": "144963901729571132669952", + "outputQty0": "144957096639898177736336", + "outputQty": "144546586483640233730186", "mpReserves": [ - "33317722687448134872727805", - "33452618114208964354543280", - "33790190767902328519387096" + "34122554778201483593453812", + "35247657666635795517771226", + "32337047333246219458678773" ], "fpReserves": [ - "1559736051386180358227833", - "1557478023516373751385502" + "2703438844779549566455132", + "1616418001120329627868510" ], - "mAssetSupply": "100560525709786025994470794", - "LPTokenSupply": "3115906850251540344442635" + "mAssetSupply": "101706730309359301752083200", + "LPTokenSupply": "4313358513401922092709374" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "19815823325029613568", - "outputQty0": "19812336786001260026", - "outputQty": "19804280109484382937", - "swapFee1": "11889493995017768", - "swapFee2": "7924934714400504", + "inputQty": "54157624524714419421184", + "outputQty0": "54281944271846148083326", + "outputQty": "54266583134419930922193", + "swapFee1": "32494574714828651652", + "swapFee2": "32569166563107688849", "mpReserves": [ - "33317722687448134872727805", - "33452598309928854870160343", - "33790190767902328519387096" + "34122554778201483593453812", + "35193391083501375586849033", + "32337047333246219458678773" ], "fpReserves": [ - "1559716239049394356967807", - "1557478023516373751385502" + "2649156900507703418371806", + "1616418001120329627868510" ], - "mAssetSupply": "100560505905374174707611272", - "LPTokenSupply": "3115887035617164714330843" + "mAssetSupply": "101652480934254018711688723", + "LPTokenSupply": "4259204138334679156153355" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "6792759088768187629568", - "outputQty0": "6792894282424391947436", - "outputQty": "6789964529661436325608", + "type": "redeem", + "outputIndex": 2, + "inputQty": "110671637214169051168768", + "outputQty0": "110914890150365375311596", + "outputQty": "110803899768602368898360", + "swapFee1": "66402982328501430701", + "swapFee2": "66548934090219225186", "mpReserves": [ - "33324515446536903060357373", - "33452598309928854870160343", - "33790190767902328519387096" + "34122554778201483593453812", + "35193391083501375586849033", + "32226243433477617089780413" ], "fpReserves": [ - "1566509133331818748915243", - "1557478023516373751385502" + "2538242010357338043060210", + "1616418001120329627868510" ], - "mAssetSupply": "100567298799656599099558708", - "LPTokenSupply": "3122677000146826150656451" + "mAssetSupply": "101541632593037743555602313", + "LPTokenSupply": "4148539141418742955127657" }, { "type": "swap_fp_to_mp", - "inputQty": "1762646505898808705024", - "outputIndex": 1, - "outputQty": "1761983522005664450915", + "inputQty": "28340006429432606720", + "outputIndex": 2, + "outputQty": "28403469754332923392", "swapFee": "0", - "redemptionFee": "705080330453801611", + "redemptionFee": "17059323039737288", "mpReserves": [ - "33324515446536903060357373", - "33450836326406849205709428", - "33790190767902328519387096" + "34122554778201483593453812", + "35193391083501375586849033", + "32226215030007862756857021" ], "fpReserves": [ - "1564746432505684244886459", - "1559240670022272560090526" + "2538213578152271814245703", + "1616446341126759060475230" ], - "mAssetSupply": "100565536803910795049331535", - "LPTokenSupply": "3122677000146826150656451" + "mAssetSupply": "101541604177892000366525094", + "LPTokenSupply": "4148539141418742955127657" }, { - "type": "swap_fp_to_mp", - "inputQty": "1300441328295965622272", - "outputIndex": 0, - "outputQty": "1299918772392908945547", - "swapFee": "0", - "redemptionFee": "520185805981096183", + "type": "mint", + "inputIndex": 1, + "inputQty": "11168078610316149129216", + "outputQty0": "11164471043773285012346", + "outputQty": "11133850867093426319335", "mpReserves": [ - "33323215527764510151411826", - "33450836326406849205709428", - "33790190767902328519387096" + "34122554778201483593453812", + "35204559162111691735978249", + "32226215030007862756857021" ], "fpReserves": [ - "1563445967990731504427736", - "1560541111350568525712798" + "2549378049196045099258049", + "1616446341126759060475230" ], - "mAssetSupply": "100564236859581648289968995", - "LPTokenSupply": "3122677000146826150656451" + "mAssetSupply": "101552768648935773651537440", + "LPTokenSupply": "4159672992285836381446992" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "75644992515658924032", - "outputQty0": "75646482812916243860", - "outputQty": "75614288353906863351", + "inputQty": "1209905470627922", + "outputQty0": "1209819095305527", + "outputQty": "1204886927353309", + "swapFee": "965193864827", "mpReserves": [ - "33323291172757025810335858", - "33450836326406849205709428", - "33790190767902328519387096" + "34122554779411389064081734", + "35204559162111691735978249", + "32226215030007862756857021" ], "fpReserves": [ - "1563521614473544420671596", - "1560541111350568525712798" + "2549378050405864194563576", + "1616446339921872133121921" ], - "mAssetSupply": "100564312506064461206212855", - "LPTokenSupply": "3122752614435180057519802" + "mAssetSupply": "101552768650145592746842967", + "LPTokenSupply": "4159672992285932900833474" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "19402734301369604243456", - "outputQty0": "19398949794712779362438", - "outputQty": "19391691520017072412541", - "swapFee1": "11641640580821762546", - "swapFee2": "7759579917885111744", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "401709321345127040", + "outputQty0": "401680643246962108", + "outputQty": "400043078398083044", + "swapFee": "320460880378905", "mpReserves": [ - "33323291172757025810335858", - "33450836326406849205709428", - "33770799076382311446974555" + "34122555181120710409208774", + "35204559162111691735978249", + "32226215030007862756857021" ], "fpReserves": [ - "1544122664678831641309158", - "1560541111350568525712798" + "2549378452086507441525684", + "1616445939878793735038877" ], - "mAssetSupply": "100544921315849666311962161", - "LPTokenSupply": "3103351044297868535452600" + "mAssetSupply": "101552769051826235993805075", + "LPTokenSupply": "4159672992317978988871364" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2074330244896077119488", - "outputQty0": "2074369635920575233739", - "outputQty": "2072836990733889204123", - "swapFee": "1658848729018806444", - "mpReserves": [ - "33325365503001921887455346", - "33450836326406849205709428", - "33770799076382311446974555" - ], - "fpReserves": [ - "1546197034314752216542897", - "1558468274359834636508675" - ], - "mAssetSupply": "100546995685485586887195900", - "LPTokenSupply": "3103351210182741437333244" + "inputIndex": 2, + "inputQty": "1256625801497842053808128", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "50940050599025653579776", + "inputQty": "19564293127562959257600", "outputIndex": 1, - "outputQty": "50905516622642125445406", + "outputQty": "19621588868547096209943", "swapFee": "0", - "redemptionFee": "20370519327924700202", + "redemptionFee": "11776223629595297316", "mpReserves": [ - "33325365503001921887455346", - "33399930809784207080264022", - "33770799076382311446974555" + "34122555181120710409208774", + "35184937573243144639768306", + "32226215030007862756857021" ], "fpReserves": [ - "1495270735994940466035672", - "1609408324958860290088451" + "2529751412703848612665374", + "1636010233006356694296477" ], - "mAssetSupply": "100496089757685103061388877", - "LPTokenSupply": "3103351210182741437333244" + "mAssetSupply": "101533153788667206760242081", + "LPTokenSupply": "4159672992317978988871364" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "854529495688097327742976", - "outputQty0": "854513897099539815812388", - "outputQty": "853691414423710907829522", + "inputIndex": 2, + "inputQty": "4446050936255526993920", + "outputQty0": "4447873707982133755911", + "outputQty": "4435916254726548840797", "mpReserves": [ - "33325365503001921887455346", - "34254460305472304408006998", - "33770799076382311446974555" + "34122555181120710409208774", + "35184937573243144639768306", + "32230661080944118283850941" ], "fpReserves": [ - "2349784633094480281848060", - "1609408324958860290088451" + "2534199286411830746421285", + "1636010233006356694296477" ], - "mAssetSupply": "101350603654784642877201265", - "LPTokenSupply": "3957042624606452345162766" + "mAssetSupply": "101537601662375188893997992", + "LPTokenSupply": "4164108908572705537712161" }, { - "type": "swap_fp_to_mp", - "inputQty": "132559583996084576", - "outputIndex": 1, - "outputQty": "132865327048953826", - "swapFee": "0", - "redemptionFee": "53164957856655", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "157972107614699388928", + "outputQty0": "157921470703248792767", + "outputQty": "157301199261828066678", + "swapFee": "125997165038154997", "mpReserves": [ - "33325365503001921887455346", - "34254460172606977359053172", - "33770799076382311446974555" + "34122555181120710409208774", + "35185095545350759339157234", + "32230661080944118283850941" ], "fpReserves": [ - "2349784500182085640209881", - "1609408457518444286173027" + "2534357207882533995214052", + "1635852931807094866229799" ], - "mAssetSupply": "101350603521925413193419741", - "LPTokenSupply": "3957042624606452345162766" + "mAssetSupply": "101537759583845892142790759", + "LPTokenSupply": "4164108921172422041527660" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "249114477962028384256", - "outputQty0": "249369762840240516383", - "outputQty": "249281452806337688362", - "swapFee1": "149468686777217030", - "swapFee2": "99747905136096206", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "13873724646980965105664", + "outputQty0": "13879389760326867854354", + "outputQty": "13824064836300451036433", + "swapFee": "11073525474238913034", "mpReserves": [ - "33325365503001921887455346", - "34254210891154171021364810", - "33770799076382311446974555" + "34122555181120710409208774", + "35185095545350759339157234", + "32244534805591099248956605" ], "fpReserves": [ - "2349535130419245399693498", - "1609408457518444286173027" + "2548236597642860863068406", + "1622028866970794415193366" ], - "mAssetSupply": "101350354251910478088999564", - "LPTokenSupply": "3956793525075358994500213" + "mAssetSupply": "101551638973606219010645113", + "LPTokenSupply": "4164110028524969465418963" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "88810758821514231808", - "outputQty0": "88810850594235719806", - "outputQty": "88504287160420087930", - "swapFee": "70933366261778380", + "inputIndex": 0, + "inputQty": "1046511698765019850211328", + "hardLimitError": true + }, + { + "type": "swap_fp_to_mp", + "inputQty": "603024284336347392", + "outputIndex": 0, + "outputQty": "604668681667937644", + "swapFee": "0", + "redemptionFee": "362993121164407", "mpReserves": [ - "33325365503001921887455346", - "34254210891154171021364810", - "33770887887141132961206363" + "34122554576452028741271130", + "35185095545350759339157234", + "32244534805591099248956605" ], "fpReserves": [ - "2349623941269839635413304", - "1609319953231283866085097" + "2548235992654325589055826", + "1622029469995078751540758" ], - "mAssetSupply": "101350443062761072324719370", - "LPTokenSupply": "3956793532168695620678051" + "mAssetSupply": "101551638368980676857796940", + "LPTokenSupply": "4164110028524969465418963" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "1002496253148636601384960", "outputIndex": 1, - "inputQty": "1247269811655869202432", - "outputQty0": "1248547136999049627299", - "outputQty": "1248104922183898352795", - "swapFee1": "748361886993521521", - "swapFee2": "499418854799619850", + "outputQty": "1001864812785717114524434", + "swapFee": "0", + "redemptionFee": "601333951971901909648", "mpReserves": [ - "33325365503001921887455346", - "34252962786231987123012015", - "33770887887141132961206363" + "34122554576452028741271130", + "34183230732565042224632800", + "32244534805591099248956605" ], "fpReserves": [ - "2348375394132840585786005", - "1609319953231283866085097" + "1546012739367822406307698", + "2624525723143715352925718" ], - "mAssetSupply": "101349195015042928074711921", - "LPTokenSupply": "3955546337193228450827771" + "mAssetSupply": "100550016449646145576958460", + "LPTokenSupply": "4164110028524969465418963" }, { - "type": "swap_fp_to_mp", - "inputQty": "1576138248622810333184", - "outputIndex": 0, - "outputQty": "1579612225555249914033", - "swapFee": "0", - "redemptionFee": "632126478682717755", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "648817603022648246272", + "outputQty0": "649027400747411469199", + "outputQty": "651059180363132865336", + "swapFee": "519703422484736458", "mpReserves": [ - "33323785890776366637541313", - "34252962786231987123012015", - "33770887887141132961206363" + "34122554576452028741271130", + "34183230732565042224632800", + "32245183623194121897202877" ], "fpReserves": [ - "2346795077936133791396882", - "1610896091479906676418281" + "1546661766768569817776897", + "2623874663963352220060382" ], - "mAssetSupply": "101347615330972699963040553", - "LPTokenSupply": "3955546337193228450827771" + "mAssetSupply": "100550665477046892988427659", + "LPTokenSupply": "4164110080495311713892608" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "381242538718285199835136", - "outputQty0": "381526981811548523343797", - "outputQty": "381387186761217419690200", - "swapFee1": "228745523230971119901", - "swapFee2": "152610792724619409337", + "outputIndex": 2, + "inputQty": "31390912385485530726400", + "outputQty0": "31341251978263008141235", + "outputQty": "31312236644176463202384", + "swapFee1": "18834547431291318435", + "swapFee2": "18804751186957804884", "mpReserves": [ - "33323785890776366637541313", - "33871575599470769703321815", - "33770887887141132961206363" + "34122554576452028741271130", + "34183230732565042224632800", + "32213871386549945434000493" ], "fpReserves": [ - "1965268096124585268053085", - "1610896091479906676418281" + "1515320514790306809635662", + "2623874663963352220060382" ], - "mAssetSupply": "100966240959953876059106093", - "LPTokenSupply": "3574326673027266348104625" + "mAssetSupply": "100519343029819816938091308", + "LPTokenSupply": "4132721051564569312298051" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "28566113443120918528", - "outputQty0": "28565786509207780825", - "outputQty": "28533893524228903856", + "inputIndex": 1, + "inputQty": "3564515295130244612096", + "outputQty0": "3563919365161150692100", + "outputQty": "3567599025040931896554", "mpReserves": [ - "33323785890776366637541313", - "33871575599470769703321815", - "33770916453254576082124891" + "34122554576452028741271130", + "34186795247860172469244896", + "32213871386549945434000493" ], "fpReserves": [ - "1965296661911094475833910", - "1610896091479906676418281" + "1518884434155467960327762", + "2623874663963352220060382" ], - "mAssetSupply": "100966269525740385266886918", - "LPTokenSupply": "3574355206920790577008481" + "mAssetSupply": "100522906949184978088783408", + "LPTokenSupply": "4136288650589610244194605" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "12327136912584413806592", - "outputQty0": "12326990853780173542848", - "outputQty": "12300057237173843966705", - "swapFee": "9850485664478478678", + "type": "redeem", + "outputIndex": 1, + "inputQty": "24469000189804068864", + "outputQty0": "24429263747634701827", + "outputQty": "24418695445808536746", + "swapFee1": "14681400113882441", + "swapFee2": "14657558248580821", "mpReserves": [ - "33323785890776366637541313", - "33871575599470769703321815", - "33783243590167160495931483" + "34122554576452028741271130", + "34186770829164726660708150", + "32213871386549945434000493" ], "fpReserves": [ - "1977623652764874649376758", - "1598596034242732832451576" + "1518860004891720325625935", + "2623874663963352220060382" ], - "mAssetSupply": "100978596516594165440429766", - "LPTokenSupply": "3574356191969357024856348" + "mAssetSupply": "100522882534578788702662402", + "LPTokenSupply": "4136264183057560451513985" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "23113723881771356160", "outputIndex": 2, - "inputQty": "22372786991717", - "outputQty0": "22385386603536", - "outputQty": "22376706592342", - "swapFee1": "13423672195", - "swapFee2": "8954154641", + "outputQty": "22998007536433216585", + "swapFee": "0", + "redemptionFee": "13811633848179973", "mpReserves": [ - "33323785890776366637541313", - "33871575599470769703321815", - "33783243590144783789339141" + "34122554576452028741271130", + "34186770829164726660708150", + "32213848388542409000783908" ], "fpReserves": [ - "1977623652742489262773222", - "1598596034242732832451576" + "1518836985501973359003660", + "2623897777687233991416542" ], - "mAssetSupply": "100978596516571789007980871", - "LPTokenSupply": "3574356191946985580231850" + "mAssetSupply": "100522859529000675584220100", + "LPTokenSupply": "4136264183057560451513985" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "128775667629202140561408", - "outputQty0": "128773549430074715601034", - "outputQty": "128611016240288569835564", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1006373072909704854765568", + "outputQty0": "1006125606664104029943802", + "outputQty": "1005680250287187329591753", + "swapFee": "804681213036498251277", "mpReserves": [ - "33323785890776366637541313", - "33871575599470769703321815", - "33912019257773985929900549" + "34122554576452028741271130", + "35193143902074431515473718", + "32213848388542409000783908" ], "fpReserves": [ - "2106397202172563978374256", - "1598596034242732832451576" + "2524962592166077388947462", + "1618217527400046661824789" ], - "mAssetSupply": "101107370066001863723581905", - "LPTokenSupply": "3702967208187274150067414" + "mAssetSupply": "101528985135664779614163902", + "LPTokenSupply": "4136344651178864101339112" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "12055366501272504320", - "outputQty0": "12064538345350444439", - "outputQty": "12059961412274950411", - "swapFee1": "7233219900763502", - "swapFee2": "4825815338140177", + "inputQty": "14100423640338134990848", + "outputQty0": "14132763962492327521289", + "outputQty": "14118431211291414160211", + "swapFee1": "8460254184202880994", + "swapFee2": "8479658377495396512", "mpReserves": [ - "33323785890776366637541313", - "33871575599470769703321815", - "33912007197812573654950138" + "34122554576452028741271130", + "35193143902074431515473718", + "32199729957331117586623697" ], "fpReserves": [ - "2106385137634218627929817", - "1598596034242732832451576" + "2510829828203585061426173", + "1618217527400046661824789" ], - "mAssetSupply": "101107358006289333711277643", - "LPTokenSupply": "3702955153544094867639444" + "mAssetSupply": "101514860851360664782039125", + "LPTokenSupply": "4122245073563944386636363" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "582005484510477549568", - "outputQty0": "582448023406632307946", - "outputQty": "582193113251068142134", - "swapFee1": "349203290706286529", - "swapFee2": "232979209362652923", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "22089474371623788", + "outputQty0": "22098660245328930", + "outputQty": "22011572658628440", + "swapFee": "17628018770421", "mpReserves": [ - "33323203697663115569399179", - "33871575599470769703321815", - "33912007197812573654950138" + "34122554576452028741271130", + "35193143902074431515473718", + "32199729979420591958247485" ], "fpReserves": [ - "2105802689610811995621871", - "1598596034242732832451576" + "2510829850302245306755103", + "1618217505388474003196349" ], - "mAssetSupply": "101106775791245136441622620", - "LPTokenSupply": "3702373182979913460718528" + "mAssetSupply": "101514860873459325027368055", + "LPTokenSupply": "4122245073565707188513405" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "66736477842593955184640", - "outputQty0": "66738843506179918507413", - "outputQty": "66644865897495566933508", + "inputIndex": 2, + "inputQty": "28810156250248171749376", + "outputQty0": "28822061831310981332991", + "outputQty": "28738528229512627688698", "mpReserves": [ - "33389940175505709524583819", - "33871575599470769703321815", - "33912007197812573654950138" + "34122554576452028741271130", + "35193143902074431515473718", + "32228540135670840129996861" ], "fpReserves": [ - "2172541533116991914129284", - "1598596034242732832451576" + "2539651912133556288088094", + "1618217505388474003196349" ], - "mAssetSupply": "101173514634751316360130033", - "LPTokenSupply": "3769018048877409027652036" + "mAssetSupply": "101543682935290636008701046", + "LPTokenSupply": "4150983601795219816202103" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1862611336566210505474048", - "hardLimitError": true - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "121731967777277629956096", - "outputQty0": "121825493584126029076604", - "outputQty": "121778527886942499183003", - "swapFee1": "73039180666366577973", - "swapFee2": "48730197433650411630", + "type": "mint", + "inputIndex": 1, + "inputQty": "494980142173063104", + "outputQty0": "494820783505571377", + "outputQty": "493377493794373962", "mpReserves": [ - "33389940175505709524583819", - "33871575599470769703321815", - "33790228669925631155767135" + "34122554576452028741271130", + "35193144397054573688536822", + "32228540135670840129996861" ], "fpReserves": [ - "2050716039532865885052680", - "1598596034242732832451576" + "2539652406954339793659471", + "1618217505388474003196349" ], - "mAssetSupply": "101051737871364623981465059", - "LPTokenSupply": "3647293385018198034353737" + "mAssetSupply": "101543683430111419514272423", + "LPTokenSupply": "4150984095172713610576065" }, { - "type": "swap_fp_to_mp", - "inputQty": "75475217043322115719168", - "outputIndex": 0, - "outputQty": "75548131705327263365467", - "swapFee": "0", - "redemptionFee": "30232304106144058464", + "type": "mint", + "inputIndex": 2, + "inputQty": "33629190522942628", + "outputQty0": "33642999947562846", + "outputQty": "33544870275280689", "mpReserves": [ - "33314392043800382261218352", - "33871575599470769703321815", - "33790228669925631155767135" + "34122554576452028741271130", + "35193144397054573688536822", + "32228540169300030652939489" ], "fpReserves": [ - "1975135279267505738890493", - "1674071251286054948170744" + "2539652440597339741222317", + "1618217505388474003196349" ], - "mAssetSupply": "100976187343403369979361336", - "LPTokenSupply": "3647293385018198034353737" + "mAssetSupply": "101543683463754419461835269", + "LPTokenSupply": "4150984128717583885856754" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "4529227589255185825792", - "outputQty0": "4531170549559705118043", - "outputQty": "4529452383797348700120", - "swapFee1": "2717536553553111495", - "swapFee2": "1812468219823882047", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "28247624335480485576704", + "outputQty0": "28259151828369368954894", + "outputQty": "28141704320889944638791", + "swapFee": "22540971537709406330", "mpReserves": [ - "33314392043800382261218352", - "33867046147086972354621695", - "33790228669925631155767135" + "34122554576452028741271130", + "35193144397054573688536822", + "32256787793635511138516193" ], "fpReserves": [ - "1970604108717946033772450", - "1674071251286054948170744" + "2567911592425709110177211", + "1590075801067584058557558" ], - "mAssetSupply": "100971657985322030098125340", - "LPTokenSupply": "3642764429182598203839094" + "mAssetSupply": "101571942615582788830790163", + "LPTokenSupply": "4150986382814737656797387" }, { - "type": "swap_fp_to_mp", - "inputQty": "967632479314659157999616", - "outputIndex": 1, - "outputQty": "964280825223151009458283", - "swapFee": "0", - "redemptionFee": "385870987501870244885", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "3840884266503821066240", + "outputQty0": "3842440559121647905394", + "outputQty": "3825938403409199394780", + "swapFee": "3064675544660710040", "mpReserves": [ - "33314392043800382261218352", - "32902765321863821345163412", - "33790228669925631155767135" + "34122554576452028741271130", + "35193144397054573688536822", + "32260628677902014959582433" ], "fpReserves": [ - "1005926639963270421557720", - "2641703730600714106170360" + "2571754032984830758082605", + "1586249862664174859162778" ], - "mAssetSupply": "100007366387554856356155495", - "LPTokenSupply": "3642764429182598203839094" + "mAssetSupply": "101575785056141910478695557", + "LPTokenSupply": "4150986689282292122868391" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "12485656560931990142976", - "outputQty0": "12485675577168933857375", - "outputQty": "12590040939698314539415", - "swapFee": "10041549355561813307", + "inputQty": "91532166214992315547648", + "outputQty0": "91525146926747221443735", + "outputQty": "91242576342265775388671", "mpReserves": [ - "33326877700361314251361328", - "32902765321863821345163412", - "33790228669925631155767135" + "34214086742667021056818778", + "35193144397054573688536822", + "32260628677902014959582433" ], "fpReserves": [ - "1018412315540439355415095", - "2629113689661015791630945" + "2663279179911577979526340", + "1586249862664174859162778" ], - "mAssetSupply": "100019852063132025290012870", - "LPTokenSupply": "3642765433337533760020424" + "mAssetSupply": "101667310203068657700139292", + "LPTokenSupply": "4242229265624557898257062" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "422670221201327416934400", - "outputQty0": "422664791038923170437064", - "outputQty": "424692969610426376200990", - "swapFee": "339293767841590613159", + "inputIndex": 1, + "inputQty": "25368621901214822432768", + "outputQty0": "25360653580935107056730", + "outputQty": "25240598369752520460267", + "swapFee": "20224384973045560710", "mpReserves": [ - "33749547921562641668295728", - "32902765321863821345163412", - "33790228669925631155767135" + "34214086742667021056818778", + "35218513018955788510969590", + "32260628677902014959582433" ], "fpReserves": [ - "1441077106579362525852159", - "2204420720050589415429955" + "2688639833492513086583070", + "1561009264294422338702511" ], - "mAssetSupply": "100442516854170948460449934", - "LPTokenSupply": "3642799362714317919081739" + "mAssetSupply": "101692670856649592807196022", + "LPTokenSupply": "4242231288063055202813133" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "3855421782260263052902400", - "hardLimitError": true + "inputQty": "173383780482993888", + "outputQty0": "173369555195256854", + "outputQty": "172808577733330544", + "mpReserves": [ + "34214086916050801539812666", + "35218513018955788510969590", + "32260628677902014959582433" + ], + "fpReserves": [ + "2688640006862068281839924", + "1561009264294422338702511" + ], + "mAssetSupply": "101692671030019148002452876", + "LPTokenSupply": "4242231460871632936143677" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "645201815920122477412352", - "outputQty0": "645171168067808917746695", - "outputQty": "644950592849718562902438", - "swapFee": "516266995344436383577", + "inputIndex": 2, + "inputQty": "62303131321455372926976", + "outputQty0": "62328619901223663326438", + "outputQty": "62007703352060951743831", + "swapFee": "49699597817598677815", "mpReserves": [ - "34394749737482764145708080", - "32902765321863821345163412", - "33790228669925631155767135" + "34214086916050801539812666", + "35218513018955788510969590", + "32322931809223470332509409" ], "fpReserves": [ - "2086248274647171443598854", - "1559470127200870852527517" + "2750968626763291945166362", + "1499001560942361386958680" ], - "mAssetSupply": "101087688022238757378196629", - "LPTokenSupply": "3642850989413852362720096" + "mAssetSupply": "101754999649920371665779314", + "LPTokenSupply": "4242236430831414696011458" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "28601843577862705152", - "outputQty0": "28604119521796493546", - "outputQty": "28557220028033671254", + "inputIndex": 0, + "inputQty": "55236921926944771014656", + "outputQty0": "55232438199283422638153", + "outputQty": "55039097557234990524636", "mpReserves": [ - "34394749737482764145708080", - "32902793923707399207868564", - "33790228669925631155767135" + "34269323837977746310827322", + "35218513018955788510969590", + "32322931809223470332509409" ], "fpReserves": [ - "2086276878766693240092400", - "1559470127200870852527517" + "2806201064962575367804515", + "1499001560942361386958680" ], - "mAssetSupply": "101087716626358279174690175", - "LPTokenSupply": "3642879546633880396391350" + "mAssetSupply": "101810232088119655088417467", + "LPTokenSupply": "4297275528388649686536094" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1215294034238204110962688", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "543059933293642055680", + "inputQty": "572937500872138817536", "outputIndex": 0, - "outputQty": "543962945473861337312", + "outputQty": "575437391050449424932", "swapFee": "0", - "redemptionFee": "217657430539465285", + "redemptionFee": "345440166033197190", "mpReserves": [ - "34394205774537290284370768", - "32902793923707399207868564", - "33790228669925631155767135" + "34268748400586695861402390", + "35218513018955788510969590", + "32322931809223470332509409" ], "fpReserves": [ - "2085732735190344576878536", - "1560013187134164494583197" + "2805625331352520039153423", + "1499574498443233525776216" ], - "mAssetSupply": "101087172700439361050941596", - "LPTokenSupply": "3642879546633880396391350" + "mAssetSupply": "101809656699949765792963565", + "LPTokenSupply": "4297275528388649686536094" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "27623809353009544036352", - "outputQty0": "27651944232364802407227", - "outputQty": "27642740423996784322905", - "swapFee1": "16574285611805726421", - "swapFee2": "11060777692945920962", + "inputQty": "1690941640721074961252352", + "outputQty0": "1693724642175821352534710", + "outputQty": "1692618097741939376980567", + "swapFee1": "1014564984432644976751", + "swapFee2": "1016234785305492811520", "mpReserves": [ - "34366563034113293500047863", - "32902793923707399207868564", - "33790228669925631155767135" + "32576130302844756484421823", + "35218513018955788510969590", + "32322931809223470332509409" ], "fpReserves": [ - "2058080790957979774471309", - "1560013187134164494583197" + "1111900689176698686618713", + "1499574498443233525776216" ], - "mAssetSupply": "101059531816984689194455331", - "LPTokenSupply": "3615257394709432032927640" + "mAssetSupply": "100116948292559249933240375", + "LPTokenSupply": "2606435344166017989781417" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "729689744297979551940608", - "outputQty0": "729664709897460159059852", - "outputQty": "724419350286329660481113", - "swapFee": "582499731965713314824", + "type": "mint", + "inputIndex": 1, + "inputQty": "25009940482213833342976", + "outputQty0": "24998879175605000408465", + "outputQty": "24978912725126897788132", "mpReserves": [ - "34366563034113293500047863", - "32902793923707399207868564", - "34519918414223610707707743" + "32576130302844756484421823", + "35243522959438002344312566", + "32322931809223470332509409" ], "fpReserves": [ - "2787745500855439933531161", - "835593836847834834102084" + "1136899568352303687027178", + "1499574498443233525776216" ], - "mAssetSupply": "101789196526882149353515183", - "LPTokenSupply": "3615315644682628604259122" + "mAssetSupply": "100141947171734854933648840", + "LPTokenSupply": "2631414256891144887569549" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "117510626191335184", - "outputQty0": "118085001092465687", - "outputQty": "118044567878272243", - "swapFee1": "70506375714801", - "swapFee2": "47234000436986", + "type": "mint", + "inputIndex": 2, + "inputQty": "493219673242340032", + "outputQty0": "493350247089636707", + "outputQty": "492933487669765296", "mpReserves": [ - "34366563034113293500047863", - "32902793923707399207868564", - "34519918296179042829435500" + "32576130302844756484421823", + "35243522959438002344312566", + "32322932302443143574849441" ], "fpReserves": [ - "2787745382770438841065474", - "835593836847834834102084" + "1136900061702550776663885", + "1499574498443233525776216" ], - "mAssetSupply": "101789196408844382261486482", - "LPTokenSupply": "3615315527179053050495418" + "mAssetSupply": "100141947665085102023285547", + "LPTokenSupply": "2631414749824632557334845" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1604526386157421200408576", - "hardLimitError": true + "inputIndex": 0, + "inputQty": "60779866853846984687616", + "outputQty0": "60791595583872780988460", + "outputQty": "60837694528850907672418", + "swapFee": "48587019063487167174", + "mpReserves": [ + "32636910169698603469109439", + "35243522959438002344312566", + "32322932302443143574849441" + ], + "fpReserves": [ + "1197691657286423557652345", + "1438736803914382618103798" + ], + "mAssetSupply": "100202739260668974804274007", + "LPTokenSupply": "2631419608526538906051562" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "811303014461589680029696", "outputIndex": 0, - "inputQty": "157645097402649622347776", - "outputQty0": "158390239015091735348374", - "outputQty": "158332895669256961367735", - "swapFee1": "94587058441589773408", - "swapFee2": "63356095606036694139", + "hardLimitError": true + }, + { + "type": "swap_fp_to_mp", + "inputQty": "702289196485795119104", + "outputIndex": 2, + "outputQty": "700812253296714764672", + "swapFee": "0", + "redemptionFee": "420853437925850632", "mpReserves": [ - "34208230138444036538680128", - "32902793923707399207868564", - "34519918296179042829435500" + "32636910169698603469109439", + "35243522959438002344312566", + "32322231490189846860084769" ], "fpReserves": [ - "2629355143755347105717100", - "835593836847834834102084" + "1196990234889880473265290", + "1439439093110868413222902" ], - "mAssetSupply": "101630869525924896562832247", - "LPTokenSupply": "3457679888482247587124982" + "mAssetSupply": "100202038259125869645737584", + "LPTokenSupply": "2631419608526538906051562" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1539300129475377233920", - "outputQty0": "1539249398501720334956", - "outputQty": "1531294777390542318131", + "type": "swap_fp_to_mp", + "inputQty": "336510725185169600", + "outputIndex": 0, + "outputQty": "335829470503432406", + "swapFee": "0", + "redemptionFee": "201656484476883", "mpReserves": [ - "34209769438573511915914048", - "32902793923707399207868564", - "34519918296179042829435500" + "32636909833869132965677033", + "35243522959438002344312566", + "32322231490189846860084769" ], "fpReserves": [ - "2630894393153848826052056", - "835593836847834834102084" + "1196989898795739678460112", + "1439439429621593598392502" ], - "mAssetSupply": "101632408775323398283167203", - "LPTokenSupply": "3459211183259638129443113" + "mAssetSupply": "100202037923233385335409289", + "LPTokenSupply": "2631419608526538906051562" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "40068536374913354694656", - "outputQty0": "40065978106002219161445", - "outputQty": "39857238191430391812072", + "inputQty": "307036571019332005396480", + "outputQty0": "307111229274387138161807", + "outputQty": "306763208797592487305200", + "swapFee": "245284746235963407737", "mpReserves": [ - "34209769438573511915914048", - "32902793923707399207868564", - "34559986832553956184130156" + "32636909833869132965677033", + "35243522959438002344312566", + "32629268061209178865481249" ], "fpReserves": [ - "2670960371259851045213501", - "835593836847834834102084" + "1504101128070126816621919", + "1132676220824001111087302" ], - "mAssetSupply": "101672474753429400502328648", - "LPTokenSupply": "3499068421451068521255185" + "mAssetSupply": "100509149152507772473571096", + "LPTokenSupply": "2631444137001162502392335" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "134127622718460088287232", - "outputQty0": "134118324842844182596136", - "outputQty": "131907798576445708335398", - "swapFee": "106716820421818287923", + "type": "mint", + "inputIndex": 0, + "inputQty": "107645958589070753792", + "outputQty0": "107669027489338491655", + "outputQty": "107361619180874362800", "mpReserves": [ - "34209769438573511915914048", - "32902793923707399207868564", - "34694114455272416272417388" + "32637017479827722036430825", + "35243522959438002344312566", + "32629268061209178865481249" ], "fpReserves": [ - "2805078696102695227809637", - "703686038271389125766686" + "1504208797097616155113574", + "1132676220824001111087302" ], - "mAssetSupply": "101806593078272244684924784", - "LPTokenSupply": "3499079093133110703083977" + "mAssetSupply": "100509256821535261812062751", + "LPTokenSupply": "2631551498620343376755135" }, { "type": "swap_fp_to_mp", - "inputQty": "268602842829085864886272", + "inputQty": "75415165559228071936000", "outputIndex": 1, - "outputQty": "272072454674543486290497", + "outputQty": "75516003929963733235267", "swapFee": "0", - "redemptionFee": "108884838026028158016", + "redemptionFee": "45318274906181050939", "mpReserves": [ - "34209769438573511915914048", - "32630721469032855721578067", - "34694114455272416272417388" + "32637017479827722036430825", + "35168006955508038611077299", + "32629268061209178865481249" ], "fpReserves": [ - "2532866601037624832768849", - "972288881100474990652958" + "1428678338920647736881555", + "1208091386383229183023302" ], - "mAssetSupply": "101534489868045200318042012", - "LPTokenSupply": "3499079093133110703083977" + "mAssetSupply": "100433771681633199574881671", + "LPTokenSupply": "2631551498620343376755135" }, { "type": "swap_fp_to_mp", - "inputQty": "20843827125451321507840", + "inputQty": "4707424071797129609216", "outputIndex": 0, - "outputQty": "21022408942342688295975", + "outputQty": "4708790407272274620709", "swapFee": "0", - "redemptionFee": "8412026199915915595", + "redemptionFee": "2827560123533359765", "mpReserves": [ - "34188747029631169227618073", - "32630721469032855721578067", - "34694114455272416272417388" + "32632308689420449761810116", + "35168006955508038611077299", + "32629268061209178865481249" ], "fpReserves": [ - "2511836535537835043779617", - "993132708225926312160798" + "1423965738714758803939130", + "1212798810455026312632518" ], - "mAssetSupply": "101513468214571610444968375", - "LPTokenSupply": "3499079093133110703083977" + "mAssetSupply": "100429061908987434175299011", + "LPTokenSupply": "2631551498620343376755135" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "3064520186980232192", - "outputQty0": "3075399982973378025", - "outputQty": "3074425635953122448", - "swapFee1": "1838712112188139", - "swapFee2": "1230159993189351", - "mpReserves": [ - "34188747029631169227618073", - "32630721469032855721578067", - "34694111380846780319294940" - ], - "fpReserves": [ - "2511833460137852070401592", - "993132708225926312160798" - ], - "mAssetSupply": "101513465140401787464779701", - "LPTokenSupply": "3499076028796794934070598" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "39430830071845039898624", "outputIndex": 0, - "outputQty": "39742780604233272833726", - "swapFee": "0", - "redemptionFee": "15902933144925317622", + "inputQty": "85643754728608671727616", + "outputQty0": "85795997899598352925171", + "outputQty": "85725963667865601295816", + "swapFee1": "51386252837165203036", + "swapFee2": "51477598739759011755", "mpReserves": [ - "34149004249026935954784347", - "32630721469032855721578067", - "34694111380846780319294940" + "32546582725752584160514300", + "35168006955508038611077299", + "32629268061209178865481249" ], "fpReserves": [ - "2472076127275538776345529", - "1032563538297771352059422" + "1338169740815160451013959", + "1212798810455026312632518" ], - "mAssetSupply": "101473723710472619096041260", - "LPTokenSupply": "3499076028796794934070598" + "mAssetSupply": "100343317388686575581385595", + "LPTokenSupply": "2545912882517018421547822" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "7342305944420941299712", - "outputQty0": "7341684112218829951478", - "outputQty": "7313015229185216010786", + "inputQty": "1925389714879483904", + "outputQty0": "1925779357376103804", + "outputQty": "1922980528433006397", + "swapFee": "1537092040319303", "mpReserves": [ - "34149004249026935954784347", - "32630721469032855721578067", - "34701453686791201260594652" + "32546582725752584160514300", + "35168006955508038611077299", + "32629269986598893744965153" ], "fpReserves": [ - "2479417811387757606297007", - "1032563538297771352059422" + "1338171666594517827117763", + "1212796887474497879626121" ], - "mAssetSupply": "101481065394584837925992738", - "LPTokenSupply": "3506389044025980150081384" + "mAssetSupply": "100343319314465932957489399", + "LPTokenSupply": "2545912882670727625579752" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "475968795887432762392576", - "hardLimitError": true + "inputQty": "1300318756028258975744", + "outputQty0": "1299785018001794064261", + "outputQty": "1297887081520515138611", + "swapFee": "1037442887962431160", + "mpReserves": [ + "32546582725752584160514300", + "35169307274264066870053043", + "32629269986598893744965153" + ], + "fpReserves": [ + "1339471451612519621182024", + "1211499000392977364487510" + ], + "mAssetSupply": "100344619099483934751553660", + "LPTokenSupply": "2545912986415016421822868" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "399814391053596451930112", - "outputQty0": "401003795340923025643821", - "outputQty": "400872394835750313625150", - "swapFee1": "239888634632157871158", - "swapFee2": "160401518136369210257", + "outputIndex": 0, + "inputQty": "2630571521572369072128", + "outputQty0": "2635043116372916130859", + "outputQty": "2632871615566773581836", + "swapFee1": "1578342912943421443", + "swapFee2": "1581025869823749678", "mpReserves": [ - "34149004249026935954784347", - "32630721469032855721578067", - "34300581291955450946969502" + "32543949854137017386932464", + "35169307274264066870053043", + "32629269986598893744965153" ], "fpReserves": [ - "2078414016046834580653186", - "1032563538297771352059422" + "1336836408496146705051165", + "1211499000392977364487510" ], - "mAssetSupply": "101080222000762051269559174", - "LPTokenSupply": "3106598641835846913938387" + "mAssetSupply": "100341985637393431659172479", + "LPTokenSupply": "2543282572727735347092884" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "717180408544624187015168", - "hardLimitError": true - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "123163305925366071296", - "outputQty0": "123155953615068567765", - "outputQty": "122364330637793483075", - "swapFee": "98201484723154472", + "type": "swap_fp_to_mp", + "inputQty": "7883510265792123904", + "outputIndex": 0, + "outputQty": "7882169267461638982", + "swapFee": "0", + "redemptionFee": "4733203214459828", "mpReserves": [ - "34149004249026935954784347", - "32630721469032855721578067", - "34300704455261376313040798" + "32543941971967749925293482", + "35169307274264066870053043", + "32629269986598893744965153" ], "fpReserves": [ - "2078537172000449649220951", - "1032441173967133558576347" + "1336828519824122605336857", + "1211506883903243156611414" ], - "mAssetSupply": "101080345156715666338126939", - "LPTokenSupply": "3106598651655995386253834" + "mAssetSupply": "100341977753454610773917999", + "LPTokenSupply": "2543282572727735347092884" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "440579054360281988726784", - "outputQty0": "441584000068144970989866", - "outputQty": "441427488168461864919197", - "swapFee1": "264347432616169193236", - "swapFee2": "176633600027257988395", + "type": "mint", + "inputIndex": 1, + "inputQty": "60585829096106262528", + "outputQty0": "60560941447185920171", + "outputQty": "60422050237410628256", "mpReserves": [ - "34149004249026935954784347", - "32630721469032855721578067", - "33859276967092914448121601" + "32543941971967749925293482", + "35169367860093162976315571", + "32629269986598893744965153" ], "fpReserves": [ - "1636953171932304678231085", - "1032441173967133558576347" + "1336889080765569791257028", + "1211506883903243156611414" ], - "mAssetSupply": "100638937790247548625125468", - "LPTokenSupply": "2666046032038975014446373" + "mAssetSupply": "100342038314396057959838170", + "LPTokenSupply": "2543342994777972757721140" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "12790248416294580781056", - "outputQty0": "12791427471993946405217", - "outputQty": "12737614095048216140686", - "swapFee": "10207009417971404311", + "inputQty": "68910602528098957131776", + "outputQty0": "68881938948632329613338", + "outputQty": "68756485709364522191344", + "swapFee": "54974747532875675445", "mpReserves": [ - "34149004249026935954784347", - "32643511717449150302359123", - "33859276967092914448121601" + "32543941971967749925293482", + "35238278462621261933447347", + "32629269986598893744965153" ], "fpReserves": [ - "1649744599404298624636302", - "1019703559872085342435661" + "1405771019714202120870366", + "1142750398193878634420070" ], - "mAssetSupply": "100651729217719542571530685", - "LPTokenSupply": "2666047052739916811586804" + "mAssetSupply": "100410920253344690289451508", + "LPTokenSupply": "2543348492252726045288684" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "2251927756835029048623104", - "hardLimitError": true + "outputIndex": 0, + "inputQty": "866713954970241990656", + "outputQty0": "868498644871889348198", + "outputQty": "867777810638024861326", + "swapFee1": "520028372982145194", + "swapFee2": "521099186923133608", + "mpReserves": [ + "32543074194157111900432156", + "35238278462621261933447347", + "32629269986598893744965153" + ], + "fpReserves": [ + "1404902521069330231522168", + "1142750398193878634420070" + ], + "mAssetSupply": "100410052275799005323236918", + "LPTokenSupply": "2542481830300593101512547" }, { - "type": "swap_fp_to_mp", - "inputQty": "21476696193112535040", - "outputIndex": 1, - "outputQty": "21541445529557672463", - "swapFee": "0", - "redemptionFee": "8620817004059617", + "type": "redeem", + "outputIndex": 2, + "inputQty": "145270967423841222656", + "outputQty0": "145569963744908155437", + "outputQty": "145452402921561477082", + "swapFee1": "87162580454304733", + "swapFee2": "87341978246944893", "mpReserves": [ - "34149004249026935954784347", - "32643490176003620744686660", - "33859276967092914448121601" + "32543074194157111900432156", + "35238278462621261933447347", + "32629124534195972183488071" ], "fpReserves": [ - "1649723047361788475591915", - "1019725036568278454970701" + "1404756951105585323366731", + "1142750398193878634420070" ], - "mAssetSupply": "100651707674297849426545915", - "LPTokenSupply": "2666047052739916811586804" + "mAssetSupply": "100409906793177238662026374", + "LPTokenSupply": "2542336568049427305720364" }, { "type": "swap_fp_to_mp", - "inputQty": "590877001427966623744", - "outputIndex": 2, - "outputQty": "592728620000213881776", + "inputQty": "2983430007460538089472", + "outputIndex": 1, + "outputQty": "2986999235767791392017", "swapFee": "0", - "redemptionFee": "237178988920229200", + "redemptionFee": "1792520587959616521", "mpReserves": [ - "34149004249026935954784347", - "32643490176003620744686660", - "33858684238472914234239825" + "32543074194157111900432156", + "35235291463385494142055330", + "32629124534195972183488071" ], "fpReserves": [ - "1649130099889487902590155", - "1020315913569706421594445" + "1401769416792319295831078", + "1145733828201339172509542" ], - "mAssetSupply": "100651114964004537773773355", - "LPTokenSupply": "2666047052739916811586804" + "mAssetSupply": "100406921051384560594107242", + "LPTokenSupply": "2542336568049427305720364" }, { "type": "swap_fp_to_mp", - "inputQty": "235332696796544832110592", + "inputQty": "1642613519955179339776", "outputIndex": 2, - "outputQty": "235731984898872450838347", + "outputQty": "1643503012455980681717", "swapFee": "0", - "redemptionFee": "94328335314552545375", + "redemptionFee": "986898732231941543", "mpReserves": [ - "34149004249026935954784347", - "32643490176003620744686660", - "33622952253574041783401478" + "32543074194157111900432156", + "35235291463385494142055330", + "32627481031183516202806354" ], "fpReserves": [ - "1413309261603106539152456", - "1255648610366251253705037" + "1400124585571932726591830", + "1147376441721294351849318" ], - "mAssetSupply": "100415388454053470962881031", - "LPTokenSupply": "2666047052739916811586804" + "mAssetSupply": "100405277207062906256809537", + "LPTokenSupply": "2542336568049427305720364" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "6737481373169346412544", - "outputQty0": "6738044162868681530130", - "outputQty": "6727121684816290136341", - "swapFee": "5382519934765225607", + "inputQty": "3317297258142712725504", + "outputQty0": "3315900246461257525819", + "outputQty": "3307168274826075919762", "mpReserves": [ - "34149004249026935954784347", - "32650227657376790091099204", - "33622952253574041783401478" + "32543074194157111900432156", + "35238608760643636854780834", + "32627481031183516202806354" ], "fpReserves": [ - "1420047305765975220682586", - "1248921488681434963568696" + "1403440485818393984117649", + "1147376441721294351849318" ], - "mAssetSupply": "100422126498216339644411161", - "LPTokenSupply": "2666047590991910288109364" + "mAssetSupply": "100408593107309367514335356", + "LPTokenSupply": "2545643736324253381640126" }, { - "type": "swap_fp_to_mp", - "inputQty": "142913187615743752011776", - "outputIndex": 2, - "outputQty": "142877650174995545673987", - "swapFee": "0", - "redemptionFee": "57173323888614860533", + "type": "mint", + "inputIndex": 1, + "inputQty": "17470775111266095104", + "outputQty0": "17463413294025947583", + "outputQty": "17417360926313010993", "mpReserves": [ - "34149004249026935954784347", - "32650227657376790091099204", - "33480074603399046237727491" + "32543074194157111900432156", + "35238626231418748120875938", + "32627481031183516202806354" ], "fpReserves": [ - "1277113996044438069347724", - "1391834676297178715580472" + "1403457949231688010065232", + "1147376441721294351849318" ], - "mAssetSupply": "100279250361818691107936832", - "LPTokenSupply": "2666047590991910288109364" + "mAssetSupply": "100408610570722661540282939", + "LPTokenSupply": "2545661153685179694651119" }, { - "type": "swap_fp_to_mp", - "inputQty": "224671208534878913036288", - "outputIndex": 0, - "outputQty": "224199755444086626942550", - "swapFee": "0", - "redemptionFee": "89710070004011362147", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "9678225577479927496704", + "outputQty0": "9680231323120482864650", + "outputQty": "9658857260783360143271", + "swapFee": "7723679657353784756", "mpReserves": [ - "33924804493582849327841797", - "32650227657376790091099204", - "33480074603399046237727491" + "32543074194157111900432156", + "35238626231418748120875938", + "32637159256760996130303058" ], "fpReserves": [ - "1052838821034409663978848", - "1616505884832057628616760" + "1413138180554808492929882", + "1137717584460510991706047" ], - "mAssetSupply": "100055064896878666713930103", - "LPTokenSupply": "2666047590991910288109364" + "mAssetSupply": "100418290802045782023147589", + "LPTokenSupply": "2545661926053145430029594" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "4553607724892287488", - "outputQty0": "4548068504917733330", - "outputQty": "4545926581761312566", - "swapFee1": "2732164634935372", - "swapFee2": "1819227401967093", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "54844565455791978446848", + "outputQty0": "54855624527517733527484", + "outputQty": "54714551555168721686092", + "swapFee": "43763926921104015429", "mpReserves": [ - "33924804493582849327841797", - "32650223111450208329786638", - "33480074603399046237727491" + "32543074194157111900432156", + "35238626231418748120875938", + "32692003822216788108749906" ], "fpReserves": [ - "1052834272965904746245518", - "1616505884832057628616760" + "1467993805082326226457366", + "1083003032905342270019955" ], - "mAssetSupply": "100055060350629389198163866", - "LPTokenSupply": "2666043037657401859315413" + "mAssetSupply": "100473146426573299756675073", + "LPTokenSupply": "2545666302445837540431136" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "618114294489580423872512", - "outputQty0": "618145061544939845996728", - "outputQty": "617465089291367177896078", - "swapFee": "494308723487501420616", + "inputQty": "176254512058762967121920", + "outputQty0": "176178840246764478175078", + "outputQty": "175622372734797643991324", "mpReserves": [ - "33924804493582849327841797", - "33268337405939788753659150", - "33480074603399046237727491" + "32543074194157111900432156", + "35414880743477511087997858", + "32692003822216788108749906" ], "fpReserves": [ - "1670979334510844592242246", - "999040795540690450720682" + "1644172645329090704632444", + "1083003032905342270019955" ], - "mAssetSupply": "100673205412174329044160594", - "LPTokenSupply": "2666092468529750609457474" + "mAssetSupply": "100649325266820064234850151", + "LPTokenSupply": "2721288675180635184422460" }, { "type": "swap_fp_to_mp", - "inputQty": "32052203299954296356864", - "outputIndex": 0, - "outputQty": "32155097280222656564394", + "inputQty": "108429443785989541593088", + "outputIndex": 1, + "outputQty": "108664528863518553039560", "swapFee": "0", - "redemptionFee": "12866735160736055325", + "redemptionFee": "65209522374243738856", "mpReserves": [ - "33892649396302626671277403", - "33268337405939788753659150", - "33480074603399046237727491" + "32543074194157111900432156", + "35306216214613992534958298", + "32692003822216788108749906" ], "fpReserves": [ - "1638812496609004453928677", - "1031092998840644747077546" + "1535490108038684473204437", + "1191432476691331811613043" ], - "mAssetSupply": "100641051441007649641902350", - "LPTokenSupply": "2666092468529750609457474" + "mAssetSupply": "100540707939052032247161000", + "LPTokenSupply": "2721288675180635184422460" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "14044013172881080", - "outputQty0": "14043535934865710", - "outputQty": "14005328996708144", + "type": "redeem", + "outputIndex": 0, + "inputQty": "6416014468471743", + "outputQty0": "6430287405978465", + "outputQty": "6424879614859191", + "swapFee1": "3849608681083", + "swapFee2": "3858172443587", "mpReserves": [ - "33892649410346639844158483", - "33268337405939788753659150", - "33480074603399046237727491" + "32543074187732232285572965", + "35306216214613992534958298", + "32692003822216788108749906" ], "fpReserves": [ - "1638812510652540388794387", - "1031092998840644747077546" + "1535490101608397067225972", + "1191432476691331811613043" ], - "mAssetSupply": "100641051455051185576768060", - "LPTokenSupply": "2666092482535079606165618" + "mAssetSupply": "100540707932625603013626122", + "LPTokenSupply": "2721288668765005676818825" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2650310566193968135012352", - "hardLimitError": true - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "504861525122709323776", - "outputQty0": "505934801954091479319", - "outputQty": "505749605938687953971", - "swapFee1": "302916915073625594", - "swapFee2": "202373920781636591", + "type": "swap_fp_to_mp", + "inputQty": "120908133569611903795200", + "outputIndex": 2, + "outputQty": "120943139655978946185749", + "swapFee": "0", + "redemptionFee": "72624903833715554915", "mpReserves": [ - "33892143660740701156204512", - "33268337405939788753659150", - "33480074603399046237727491" + "32543074187732232285572965", + "35306216214613992534958298", + "32571060682560809162564157" ], "fpReserves": [ - "1638306575850586297315068", - "1031092998840644747077546" + "1414448595218871142366962", + "1312340610260943715408243" ], - "mAssetSupply": "100640545722623152266925332", - "LPTokenSupply": "2665587651301648404204401" + "mAssetSupply": "100419739051139910804322027", + "LPTokenSupply": "2721288668765005676818825" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "388996366540442053902336", - "outputQty0": "388993922471711994852171", - "outputQty": "387790579929582287477980", + "inputIndex": 0, + "inputQty": "4899966949481690169344", + "outputQty0": "4901095223874279137500", + "outputQty": "4890010668825559288440", "mpReserves": [ - "33892143660740701156204512", - "33268337405939788753659150", - "33869070969939488291629827" + "32547974154681713975742309", + "35306216214613992534958298", + "32571060682560809162564157" ], "fpReserves": [ - "2027300498322298292167239", - "1031092998840644747077546" + "1419349690442745421504462", + "1312340610260943715408243" ], - "mAssetSupply": "101029539645094864261777503", - "LPTokenSupply": "3053378231231230691682381" + "mAssetSupply": "100424640146363785083459527", + "LPTokenSupply": "2726178679433831236107265" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "230537805915135279104", - "outputQty0": "231198221378011366792", - "outputQty": "231110654143339940853", - "swapFee1": "138322683549081167", - "swapFee2": "92479288551204546", + "type": "swap_fp_to_mp", + "inputQty": "46750220055824352", + "outputIndex": 2, + "outputQty": "46736032691020441", + "swapFee": "0", + "redemptionFee": "28064734049791", "mpReserves": [ - "33891912550086557816263659", - "33268337405939788753659150", - "33869070969939488291629827" + "32547974154681713975742309", + "35306216214613992534958298", + "32571060635824776471543716" ], "fpReserves": [ - "2027069300100920280800447", - "1031092998840644747077546" + "1419349643668188671851500", + "1312340657011163771232595" ], - "mAssetSupply": "101029308539352774801615257", - "LPTokenSupply": "3053147707257583911311393" + "mAssetSupply": "100424640099617293067856356", + "LPTokenSupply": "2726178679433831236107265" }, { - "type": "swap_fp_to_mp", - "inputQty": "61878559876298812948480", - "outputIndex": 0, - "outputQty": "62159877776248579663397", - "swapFee": "0", - "redemptionFee": "24873422444218180642", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1184398689726070", + "outputQty0": "1183882718809897", + "outputQty": "1182320134231833", + "swapFee": "944958914266", "mpReserves": [ - "33829752672310309236600262", - "33268337405939788753659150", - "33869070969939488291629827" + "32547974154681713975742309", + "35306216215798391224684368", + "32571060635824776471543716" ], "fpReserves": [ - "1964885743990374829194132", - "1092971558716943560026026" + "1419349644852071390661397", + "1312340655828843637000762" ], - "mAssetSupply": "100967149856664673568189584", - "LPTokenSupply": "3053147707257583911311393" + "mAssetSupply": "100424640100801175786666253", + "LPTokenSupply": "2726178679433925731998691" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2283816935809698496512", - "outputQty0": "2283777476453487721604", - "outputQty": "2276611622085669599019", + "type": "swap_fp_to_mp", + "inputQty": "120722736925847951769600", + "outputIndex": 1, + "outputQty": "120693742748518879365110", + "swapFee": "0", + "redemptionFee": "72428808440236080780", "mpReserves": [ - "33832036489246118935096774", - "33268337405939788753659150", - "33869070969939488291629827" + "32547974154681713975742309", + "35185522473049872345319258", + "32571060635824776471543716" ], "fpReserves": [ - "1967169521466828316915736", - "1092971558716943560026026" + "1298634964118344589360486", + "1433063392754691588770362" ], - "mAssetSupply": "100969433634141127055911188", - "LPTokenSupply": "3055424318879669580910412" + "mAssetSupply": "100303997848875889221446122", + "LPTokenSupply": "2726178679433925731998691" }, { "type": "swap_fp_to_mp", - "inputQty": "273191037133185777664", - "outputIndex": 1, - "outputQty": "274296583854459873388", + "inputQty": "72783794001196160", + "outputIndex": 2, + "outputQty": "72676943839323765", "swapFee": "0", - "redemptionFee": "109766782297145484", + "redemptionFee": "43641684438609", "mpReserves": [ - "33832036489246118935096774", - "33268063109355934293785762", - "33869070969939488291629827" + "32547974154681713975742309", + "35185522473049872345319258", + "32571060563147832632219951" ], "fpReserves": [ - "1966895104511085453204797", - "1093244749754076745803690" + "1298634891382203858345231", + "1433063465538485589966522" ], - "mAssetSupply": "100969159326952166489345733", - "LPTokenSupply": "3055424318879669580910412" + "mAssetSupply": "100303997776183390174869476", + "LPTokenSupply": "2726178679433925731998691" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "23881375406218438246400", - "outputQty0": "23880855954671183851393", - "outputQty": "23751216120118831930096", - "swapFee": "19044324591135618348", + "inputIndex": 0, + "inputQty": "721295592528783624634368", + "outputQty0": "721409514951403020286631", + "outputQty": "718189119146709502448749", + "swapFee": "575712048941748035626", "mpReserves": [ - "33832036489246118935096774", - "33268063109355934293785762", - "33892952345345706729876227" + "33269269747210497600376677", + "35185522473049872345319258", + "32571060563147832632219951" ], "fpReserves": [ - "1990775960465756637056190", - "1069493533633957913873594" + "2020044406333606878631862", + "714874346391776087517773" ], - "mAssetSupply": "100993040182906837673197126", - "LPTokenSupply": "3055426223312128694472246" + "mAssetSupply": "101025407291134793195156107", + "LPTokenSupply": "2726236250638819906802253" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "2067435328253541120", - "outputQty0": "2072959736416811291", - "outputQty": "2072048784651870607", - "swapFee1": "1240461196952124", - "swapFee2": "829183894566724", + "outputIndex": 0, + "inputQty": "44731617889749952", + "outputQty0": "44971378724134637", + "outputQty": "44940054381416177", + "swapFee1": "26838970733849", + "swapFee2": "26982827234480", "mpReserves": [ - "33832036489246118935096774", - "33268061037307149641915155", - "33892952345345706729876227" + "33269269702270443218960500", + "35185522473049872345319258", + "32571060563147832632219951" ], "fpReserves": [ - "1990773887506020220244899", - "1069493533633957913873594" + "2020044361362228154497225", + "714874346391776087517773" ], - "mAssetSupply": "100993038110776285150952559", - "LPTokenSupply": "3055424156000846560626338" + "mAssetSupply": "101025407246190397298255950", + "LPTokenSupply": "2726236205909885914125685" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "2039699444520792388272128", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "684669155252132967874560", + "outputQty0": "687756213651645697883408", + "outputQty": "687237031345360553543009", + "swapFee1": "410801493151279780724", + "swapFee2": "412653728190987418730", + "mpReserves": [ + "32582032670925082665417491", + "35185522473049872345319258", + "32571060563147832632219951" + ], + "fpReserves": [ + "1332288147710582456613817", + "714874346391776087517773" + ], + "mAssetSupply": "100338063686266942587791272", + "LPTokenSupply": "2041608130807068074229197" }, { "type": "swap_fp_to_mp", - "inputQty": "269364370365756374777856", + "inputQty": "1396795049237209734447104", "outputIndex": 2, - "outputQty": "270109053874555451751866", - "swapFee": "0", - "redemptionFee": "108085373273557538594", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "6830933235093810970624", + "outputQty0": "6856908342189976178321", + "outputQty": "6851323071539476829352", + "swapFee1": "4098559941056286582", + "swapFee2": "4114145005313985706", "mpReserves": [ - "33832036489246118935096774", - "33268061037307149641915155", - "33622843291471151278124361" + "32575181347853543188588139", + "35185522473049872345319258", + "32571060563147832632219951" ], "fpReserves": [ - "1720560454322126373758906", - "1338857903999714288651450" + "1325431239368392480435496", + "714874346391776087517773" ], - "mAssetSupply": "100722932762965664862005160", - "LPTokenSupply": "3055424156000846560626338" + "mAssetSupply": "100331210892069757925598657", + "LPTokenSupply": "2034777607427968368887231" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "12829403202595393110016", - "outputQty0": "12829335240081516442187", - "outputQty": "12802877515882958325311", + "type": "redeem", + "outputIndex": 1, + "inputQty": "73539780965437378920448", + "outputQty0": "73811529776768138659381", + "outputQty": "73797488883865130694106", + "swapFee1": "44123868579262427352", + "swapFee2": "44286917866060883195", "mpReserves": [ - "33832036489246118935096774", - "33268061037307149641915155", - "33635672694673746671234377" + "32575181347853543188588139", + "35111724984166007214625152", + "32571060563147832632219951" ], "fpReserves": [ - "1733389789562207890201093", - "1338857903999714288651450" + "1251619709591624341776115", + "714874346391776087517773" ], - "mAssetSupply": "100735762098205746378447347", - "LPTokenSupply": "3068227033516729518951649" + "mAssetSupply": "100257443649210855847822471", + "LPTokenSupply": "1961242238849388916209518" }, { "type": "swap_fp_to_mp", - "inputQty": "564580931688084078067712", + "inputQty": "1016164175051041", "outputIndex": 1, - "outputQty": "563881801738214470918319", + "outputQty": "1020256391757280", "swapFee": "0", - "redemptionFee": "225654275361883141241", + "redemptionFee": "612273700380", "mpReserves": [ - "33832036489246118935096774", - "32704179235568935170996836", - "33635672694673746671234377" + "32575181347853543188588139", + "35111724983145750822867872", + "32571060563147832632219951" ], "fpReserves": [ - "1169254101157500037097613", - "1903438835687798366719162" + "1251619708571168174474994", + "714874347407940262568814" ], - "mAssetSupply": "100171852064076400408485108", - "LPTokenSupply": "3068227033516729518951649" + "mAssetSupply": "100257443648191011954221730", + "LPTokenSupply": "1961242238849388916209518" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "6744314320741547900928", - "outputQty0": "6744147097636030018860", - "outputQty": "6749081483500551127636", + "inputIndex": 0, + "inputQty": "3093332699944684879872", + "outputQty0": "3093979425465518397891", + "outputQty": "3080972751727771260989", "mpReserves": [ - "33832036489246118935096774", - "32704179235568935170996836", - "33642417008994488219135305" + "32578274680553487873468011", + "35111724983145750822867872", + "32571060563147832632219951" ], "fpReserves": [ - "1175998248255136067116473", - "1903438835687798366719162" + "1254713687996633692872885", + "714874347407940262568814" ], - "mAssetSupply": "100178596211174036438503968", - "LPTokenSupply": "3074976115000230070079285" + "mAssetSupply": "100260537627616477472619621", + "LPTokenSupply": "1964323211601116687470507" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "69313534878749890183168", - "outputQty0": "69310364348768923631494", - "outputQty": "69349587336135260276383", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "89784605028986144", + "outputQty0": "89748326873294565", + "outputQty": "89297271866090385", + "swapFee": "71496526221512", "mpReserves": [ - "33901350024124868825279942", - "32704179235568935170996836", - "33642417008994488219135305" + "32578274680553487873468011", + "35111725072930355851854016", + "32571060563147832632219951" ], "fpReserves": [ - "1245308612603904990747967", - "1903438835687798366719162" + "1254713777744960566167450", + "714874258110668396478429" ], - "mAssetSupply": "100247906575522805362135462", - "LPTokenSupply": "3144325702336365330355668" + "mAssetSupply": "100260537717364804345914186", + "LPTokenSupply": "1964323211608266340092658" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "42976369047210488233984", - "outputQty0": "42928703625357305947207", - "outputQty": "42913531659824828077877", - "swapFee1": "25785821428326292940", - "swapFee2": "17171481450142922378", + "inputQty": "377662934778287040", + "outputQty0": "379031335265496511", + "outputQty": "378724838092298313", + "swapFee1": "226597760866972", + "swapFee2": "227418801159297", + "mpReserves": [ + "32578274301828649781169698", + "35111725072930355851854016", + "32571060563147832632219951" + ], + "fpReserves": [ + "1254713398713625300670939", + "714874258110668396478429" + ], + "mAssetSupply": "100260537338560887881576972", + "LPTokenSupply": "1964322833967991337892315" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "3233550149595851390976", + "outputQty0": "3234224410556674848687", + "outputQty": "3217861891267133874214", + "swapFee": "2576480183896773704", "mpReserves": [ - "33858436492465043997202065", - "32704179235568935170996836", - "33642417008994488219135305" + "32581507851978245632560674", + "35111725072930355851854016", + "32571060563147832632219951" ], "fpReserves": [ - "1202379908978547684800760", - "1903438835687798366719162" + "1257947623124181975519626", + "711656396219401262604215" ], - "mAssetSupply": "100204995043378898199110633", - "LPTokenSupply": "3101351911871297674750978" + "mAssetSupply": "100263771562971444556425659", + "LPTokenSupply": "1964323091616009727569685" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "6208473033719343480832", - "outputQty0": "6208321791187743395691", - "outputQty": "6211915024572965038721", + "inputIndex": 1, + "inputQty": "253756105370431318392832", + "outputQty0": "253648814677018624114942", + "outputQty": "252489364590363431044290", "mpReserves": [ - "33858436492465043997202065", - "32704179235568935170996836", - "33648625482028207562616137" + "32581507851978245632560674", + "35365481178300787170246848", + "32571060563147832632219951" ], "fpReserves": [ - "1208588230769735428196451", - "1903438835687798366719162" + "1511596437801200599634568", + "711656396219401262604215" ], - "mAssetSupply": "100211203365170085942506324", - "LPTokenSupply": "3107563826895870639789699" + "mAssetSupply": "100517420377648463180540601", + "LPTokenSupply": "2216812456206373158613975" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2185060705890144354304", - "outputQty0": "2185006876839799832062", - "outputQty": "2186232394817096977673", + "inputIndex": 1, + "inputQty": "1692906836577923629056", + "outputQty0": "1692158767105985504599", + "outputQty": "1683861913053189564690", "mpReserves": [ - "33858436492465043997202065", - "32704179235568935170996836", - "33650810542734097706970441" + "32581507851978245632560674", + "35367174085137365093875904", + "32571060563147832632219951" ], "fpReserves": [ - "1210773237646575228028513", - "1903438835687798366719162" + "1513288596568306585139167", + "711656396219401262604215" ], - "mAssetSupply": "100213388372046925742338386", - "LPTokenSupply": "3109750059290687736767372" + "mAssetSupply": "100519112536415569166045200", + "LPTokenSupply": "2218496318119426348178665" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "9165323576619445518336", - "outputQty0": "9154553668100155733791", - "outputQty": "9150241241522354841837", - "swapFee1": "5499194145971667311", - "swapFee2": "3661821467240062293", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "968020089435532689408", + "outputQty0": "968241591729761209631", + "outputQty": "961393351637018667263", + "swapFee": "770792723709953514", "mpReserves": [ - "33858436492465043997202065", - "32695028994327412816154999", - "33650810542734097706970441" + "32582475872067681165250082", + "35367174085137365093875904", + "32571060563147832632219951" ], "fpReserves": [ - "1201618683978475072294722", - "1903438835687798366719162" + "1514256838160036346348798", + "710695002867764243936952" ], - "mAssetSupply": "100204237480200292826666888", - "LPTokenSupply": "3100585285633482888415767" + "mAssetSupply": "100520080778007298927254831", + "LPTokenSupply": "2218496395198698719174016" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "6337601289352679260160", - "outputQty0": "6338052526107749781394", - "outputQty": "6353822681797439667112", - "swapFee": "5073383704141803480", + "inputQty": "17364733908166660096", + "outputQty0": "17357059847339641634", + "outputQty": "17234084484401243303", + "swapFee": "13817423538661931", "mpReserves": [ - "33858436492465043997202065", - "32701366595616765495415159", - "33650810542734097706970441" + "32582475872067681165250082", + "35367191449871273260536000", + "32571060563147832632219951" ], "fpReserves": [ - "1207956736504582822076116", - "1897085013006000927052050" + "1514274195219883685990432", + "710677768783279842693649" ], - "mAssetSupply": "100210575532726400576448282", - "LPTokenSupply": "3100585792971853302596115" + "mAssetSupply": "100520098135067146266896465", + "LPTokenSupply": "2218496396580441073040209" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "163426385795026148917248", - "outputQty0": "163418166346700034402486", - "outputQty": "163678031113127204056421", - "swapFee": "130765157488211265917", + "type": "redeem", + "outputIndex": 2, + "inputQty": "5567848417446405865472", + "outputQty0": "5591943363428289125699", + "outputQty": "5587290771717748045517", + "swapFee1": "3340709050467843519", + "swapFee2": "3355166018056973475", "mpReserves": [ - "34021862878260070146119313", - "32701366595616765495415159", - "33650810542734097706970441" + "32582475872067681165250082", + "35367191449871273260536000", + "32565473272376114884174434" ], "fpReserves": [ - "1371374902851282856478602", - "1733406981892873722995629" + "1508682251856455396864733", + "710677768783279842693649" ], - "mAssetSupply": "100373993699073100610850768", - "LPTokenSupply": "3100598869487602123722706" + "mAssetSupply": "100514509546869736034744241", + "LPTokenSupply": "2212928882233899713959088" }, { "type": "redeem", + "outputIndex": 2, + "inputQty": "833277796708253545005056", + "outputQty0": "835874468372906777875358", + "outputQty": "835116734445167037869396", + "swapFee1": "499966678024952127003", + "swapFee2": "501524681023744066725", + "mpReserves": [ + "32582475872067681165250082", + "35367191449871273260536000", + "31730356537930947846305038" + ], + "fpReserves": [ + "672807783483548618989375", + "710677768783279842693649" + ], + "mAssetSupply": "99679136603177853000935608", + "LPTokenSupply": "1379701082193448664166732" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "37877631041184961921024", "outputIndex": 1, - "inputQty": "102356651046952891318272", - "outputQty0": "102326671296446086904191", - "outputQty": "102277558801397657996729", - "swapFee1": "61413990628171734790", - "swapFee2": "40930668518578434761", + "outputQty": "37846483803872040803761", + "swapFee": "0", + "redemptionFee": "22709983692279036941", "mpReserves": [ - "34021862878260070146119313", - "32599089036815367837418430", - "33650810542734097706970441" + "32582475872067681165250082", + "35329344966067401219732239", + "31730356537930947846305038" ], "fpReserves": [ - "1269048231554836769574411", - "1733406981892873722995629" + "634957810663083557420719", + "748555399824464804614673" ], - "mAssetSupply": "100271707958445173102381338", - "LPTokenSupply": "2998248359839712049577913" + "mAssetSupply": "99641309340341080218403893", + "LPTokenSupply": "1379701082193448664166732" }, { "type": "swap_fp_to_mp", - "inputQty": "2101774204048321792", + "inputQty": "140603095720099573661696", "outputIndex": 0, - "outputQty": "2096546561358411582", + "outputQty": "140122128208901815094240", "swapFee": "0", - "redemptionFee": "838904740377553", + "redemptionFee": "84137558966415865529", "mpReserves": [ - "34021860781713508787707731", - "32599089036815367837418430", - "33650810542734097706970441" + "32442353743858779350155842", + "35329344966067401219732239", + "31730356537930947846305038" ], "fpReserves": [ - "1269046134292985825690149", - "1733409083667077771317421" + "494728545719057114871965", + "889158495544564378276369" ], - "mAssetSupply": "100271705862022226898874629", - "LPTokenSupply": "2998248359839712049577913" + "mAssetSupply": "99501164212956020191720668", + "LPTokenSupply": "1379701082193448664166732" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "132445698807609920", - "outputQty0": "132387658039841679", - "outputQty": "132323646265239469", - "swapFee1": "79467419284565", - "swapFee2": "52955063215936", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "356948509784849782931456", + "outputQty0": "356754823050198602435959", + "outputQty": "356617094462111677919895", + "swapFee": "284944752815165516951", "mpReserves": [ - "34021860781713508787707731", - "32599088904491721572178961", - "33650810542734097706970441" + "32442353743858779350155842", + "35686293475852251002663695", + "31730356537930947846305038" ], "fpReserves": [ - "1269046001905327785848470", - "1733409083667077771317421" + "851483368769255717307924", + "532541401082452700356474" ], - "mAssetSupply": "100271705729687523922248886", - "LPTokenSupply": "2998248227401959983896449" + "mAssetSupply": "99857919036006218794156627", + "LPTokenSupply": "1379729576668730180718427" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "4625007312438453", - "outputQty0": "4624734616186705", - "outputQty": "4630977245406857", - "swapFee": "3699188891152", + "inputIndex": 2, + "inputQty": "182642747061555945275392", + "outputQty0": "182712015728511933389843", + "outputQty": "181353132343081886763150", + "swapFee": "145475624231466460568", "mpReserves": [ - "34021860786338516100146184", - "32599088904491721572178961", - "33650810542734097706970441" + "32442353743858779350155842", + "35686293475852251002663695", + "31912999284992503791580430" ], "fpReserves": [ - "1269046006530062402035175", - "1733409079036100525910564" + "1034195384497767650697767", + "351188268739370813593324" ], - "mAssetSupply": "100271705734312258538435591", - "LPTokenSupply": "2998248227402329902785564" + "mAssetSupply": "100040631051734730727546470", + "LPTokenSupply": "1379744124231153327364483" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "525854089230044643721216", - "outputQty0": "525814303171519886242008", - "outputQty": "525359906210406359527131", + "type": "redeem", + "outputIndex": 2, + "inputQty": "156761757677256704", + "outputQty0": "157762395898027984", + "outputQty": "157610588071803041", + "swapFee1": "94057054606354", + "swapFee2": "94657437538816", "mpReserves": [ - "34547714875568560743867400", - "32599088904491721572178961", - "33650810542734097706970441" + "32442353743858779350155842", + "35686293475852251002663695", + "31912999127381915719777389" ], "fpReserves": [ - "1794860309701582288277183", - "1733409079036100525910564" + "1034195226735371752669783", + "351188268739370813593324" ], - "mAssetSupply": "100797520037483778424677599", - "LPTokenSupply": "3523608133612736262312695" + "mAssetSupply": "100040630894066992267057302", + "LPTokenSupply": "1379743967478801355568414" }, { "type": "swap_fp_to_mp", - "inputQty": "883594851705932349440", - "outputIndex": 1, - "outputQty": "883353064026187288291", + "inputQty": "2756863900679362576384", + "outputIndex": 2, + "outputQty": "2785302958909125072787", "swapFee": "0", - "redemptionFee": "353518357657172629", + "redemptionFee": "1672791852301004345", "mpReserves": [ - "34547714875568560743867400", - "32598205551427695384890670", - "33650810542734097706970441" + "32442353743858779350155842", + "35686293475852251002663695", + "31910213824423006594704602" ], "fpReserves": [ - "1793976513807439356702346", - "1734292673887806458260004" + "1031407240314870078761341", + "353945132640050176169708" ], - "mAssetSupply": "100796636595107993150275391", - "LPTokenSupply": "3523608133612736262312695" + "mAssetSupply": "100037844580438342894153205", + "LPTokenSupply": "1379743967478801355568414" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "191967812805872368746496", - "outputQty0": "191948954699910569654844", - "outputQty": "191642358934599747213845", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "51791894899573307473920", + "outputQty0": "51763004731330061895649", + "outputQty": "51037949857856364808273", + "swapFee": "41120089179442172113", "mpReserves": [ - "34739682688374433112613896", - "32598205551427695384890670", - "33650810542734097706970441" + "32442353743858779350155842", + "35738085370751824310137615", + "31910213824423006594704602" ], "fpReserves": [ - "1985925468507349926357190", - "1734292673887806458260004" + "1083170245046200140656990", + "302907182782193811361435" ], - "mAssetSupply": "100988585549807903719930235", - "LPTokenSupply": "3715250492547336009526540" + "mAssetSupply": "100089607585169672956048854", + "LPTokenSupply": "1379748079487719299785625" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "6917057592578558394368", - "outputQty0": "6916335349109117269853", - "outputQty": "6904382511834792451139", - "swapFee": "5523320644790104107", + "type": "swap_fp_to_mp", + "inputQty": "1456564335220829454336", + "outputIndex": 0, + "outputQty": "1478467509907178972481", + "swapFee": "0", + "redemptionFee": "887812985894486950", "mpReserves": [ - "34746599745967011671008264", - "32598205551427695384890670", - "33650810542734097706970441" + "32440875276348872171183361", + "35738085370751824310137615", + "31910213824423006594704602" ], "fpReserves": [ - "1992841803856459043627043", - "1727388291375971665808865" + "1081690556736375995739997", + "304363747117414640815771" ], - "mAssetSupply": "100995501885157012837200088", - "LPTokenSupply": "3715251044879400488536950" + "mAssetSupply": "100088128784672834705618811", + "LPTokenSupply": "1379748079487719299785625" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "253700688511119744", - "outputQty0": "254000864971688859", - "outputQty": "253925832657981307", - "swapFee1": "152220413106671", - "swapFee2": "101600345988675", + "inputQty": "6281897731453275340800", + "outputQty0": "6328582291662236505291", + "outputQty": "6323356636916661864231", + "swapFee1": "3769138638871965204", + "swapFee2": "3797149374997341903", "mpReserves": [ - "34746599492041179013026957", - "32598205551427695384890670", - "33650810542734097706970441" + "32434551919711955509319130", + "35738085370751824310137615", + "31910213824423006594704602" ], "fpReserves": [ - "1992841549855594071938184", - "1727388291375971665808865" + "1075361974444713759234706", + "304363747117414640815771" ], - "mAssetSupply": "100995501631257748211499904", - "LPTokenSupply": "3715250791193934018727873" + "mAssetSupply": "100081803999530547466455423", + "LPTokenSupply": "1373466558670129911641345" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "970945635421663002624", - "outputQty0": "971050197555196251008", - "outputQty": "969344024808653933159", - "swapFee": "775455944687540585", + "type": "redeem", + "outputIndex": 2, + "inputQty": "345239231258792755200", + "outputQty0": "347799359346911263044", + "outputQty": "347463267514719378661", + "swapFee1": "207143538755275653", + "swapFee2": "208679615608146757", "mpReserves": [ - "34746599492041179013026957", - "32599176497063117047893294", - "33650810542734097706970441" + "32434551919711955509319130", + "35738085370751824310137615", + "31909866361155491875325941" ], "fpReserves": [ - "1993812600053149268189192", - "1726418947351163011875706" + "1075014175085366847971662", + "304363747117414640815771" ], - "mAssetSupply": "100996472681455303407750912", - "LPTokenSupply": "3715250868739528487481931" + "mAssetSupply": "100081456408850816163339136", + "LPTokenSupply": "1373121340153224994413710" }, { - "type": "swap_fp_to_mp", - "inputQty": "28419047577517176127488", + "type": "redeem", "outputIndex": 1, - "outputQty": "28428971760018076396268", - "swapFee": "0", - "redemptionFee": "11377375265073283421", - "mpReserves": [ - "34746599492041179013026957", - "32570747525303098971497026", - "33650810542734097706970441" - ], - "fpReserves": [ - "1965369161890466059634359", - "1754837994928680188003194" - ], - "mAssetSupply": "100968040620667885272479500", - "LPTokenSupply": "3715250868739528487481931" + "inputQty": "1293686609592204715360256", + "hardLimitError": true }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "33086272714755482320896", - "outputQty0": "33086215486680015310627", - "outputQty": "33029501933118638197991", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "330323963809716961280", + "outputQty0": "330138232100219060477", + "outputQty": "324793740435761567003", + "swapFee": "262009162435825111", "mpReserves": [ - "34746599492041179013026957", - "32570747525303098971497026", - "33683896815448853189291337" + "32434551919711955509319130", + "35738415694715634027098895", + "31909866361155491875325941" ], "fpReserves": [ - "1998455377377146074944986", - "1754837994928680188003194" + "1075344313317467067032139", + "304038953376978879248768" ], - "mAssetSupply": "101001126836154565287790127", - "LPTokenSupply": "3748280370672647125679922" + "mAssetSupply": "100081786547082916382399613", + "LPTokenSupply": "1373121366354141237996221" }, { - "type": "swap_fp_to_mp", - "inputQty": "1483883996661434368", + "type": "redeem", "outputIndex": 1, - "outputQty": "1484412455191003668", - "swapFee": "0", - "redemptionFee": "594068389749717", + "inputQty": "22667526868125114957824", + "outputQty0": "22834347813395774074035", + "outputQty": "22833448307603374870975", + "swapFee1": "13600516120875068974", + "swapFee2": "13700608688037464444", "mpReserves": [ - "34746599492041179013026957", - "32570746040890643780493358", - "33683896815448853189291337" + "32434551919711955509319130", + "35715582246408030652227920", + "31909866361155491875325941" ], "fpReserves": [ - "1998453892206171700651400", - "1754839478812676849437562" + "1052509965504071292958104", + "304038953376978879248768" ], - "mAssetSupply": "101001125351577659303246258", - "LPTokenSupply": "3748280370672647125679922" + "mAssetSupply": "100058965899878208645790022", + "LPTokenSupply": "1350455199537628210545294" }, { "type": "swap_fp_to_mp", - "inputQty": "36819213223418669301760", - "outputIndex": 0, - "outputQty": "36835326523429999054903", + "inputQty": "402605248487848039940096", + "outputIndex": 1, + "outputQty": "404528423322836455803563", "swapFee": "0", - "redemptionFee": "14738503374309871609", + "redemptionFee": "242734231024327869383", "mpReserves": [ - "34709764165517749013972054", - "32570746040890643780493358", - "33683896815448853189291337" + "32434551919711955509319130", + "35311053823085194196424357", + "31909866361155491875325941" ], "fpReserves": [ - "1961607633770397021626950", - "1791658692036095518739322" + "647952913796858177319172", + "706644201864826919188864" ], - "mAssetSupply": "100964293831645258934093417", - "LPTokenSupply": "3748280370672647125679922" + "mAssetSupply": "99654651582402019858020473", + "LPTokenSupply": "1350455199537628210545294" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "8965134329896497053696", - "outputQty0": "8974187555252883670613", - "outputQty": "8970631058656486848878", - "swapFee1": "5379080597937898232", - "swapFee2": "3589675022101153468", + "outputIndex": 0, + "inputQty": "8861699460850514919424", + "outputQty0": "8880662990936129528519", + "outputQty": "8873623080720081638170", + "swapFee1": "5317019676510308951", + "swapFee2": "5328397794561677717", "mpReserves": [ - "34709764165517749013972054", - "32570746040890643780493358", - "33674926184390196702442459" + "32425678296631235427680960", + "35311053823085194196424357", + "31909866361155491875325941" ], "fpReserves": [ - "1952633446215144137956337", - "1791658692036095518739322" + "639072250805922047790653", + "706644201864826919188864" ], - "mAssetSupply": "100955323233765028151576272", - "LPTokenSupply": "3739315774250810422416049" + "mAssetSupply": "99645776247808878290169671", + "LPTokenSupply": "1341594031778745346656765" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "4436240812565773312", - "outputQty0": "4435786164910224322", - "outputQty": "4429705057963397462", - "swapFee": "3542943412633212", + "type": "redeem", + "outputIndex": 1, + "inputQty": "42204353051748576", + "outputQty0": "42293792531518375", + "outputQty": "42289566944433840", + "swapFee1": "25322611831049", + "swapFee2": "25376275518911", "mpReserves": [ - "34709768601758561579745366", - "32570746040890643780493358", - "33674926184390196702442459" + "32425678296631235427680960", + "35311053780795627251990517", + "31909866361155491875325941" ], "fpReserves": [ - "1952637882001309048180659", - "1791654262331037555341860" + "639072208512129516272278", + "706644201864826919188864" ], - "mAssetSupply": "100955327669551193061800594", - "LPTokenSupply": "3739315774605104763679370" + "mAssetSupply": "99645776205540462034170207", + "LPTokenSupply": "1341593989576924556091293" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "760339838738593152", - "outputQty0": "761103062951471863", - "outputQty": "760801210991439619", - "swapFee1": "456203903243155", - "swapFee2": "304441225180588", + "type": "mint", + "inputIndex": 0, + "inputQty": "680569020709403492352", + "outputQty0": "680700773544323860057", + "outputQty": "678852454259002125205", "mpReserves": [ - "34709768601758561579745366", - "32570746040890643780493358", - "33674925423588985711002840" + "32426358865651944831173312", + "35311053780795627251990517", + "31909866361155491875325941" ], "fpReserves": [ - "1952637120898246096708796", - "1791654262331037555341860" + "639752909285673840132335", + "706644201864826919188864" ], - "mAssetSupply": "100955326908752571335509319", - "LPTokenSupply": "3739315014310886415410533" + "mAssetSupply": "99646456906314006358030264", + "LPTokenSupply": "1342272842031183558216498" }, { "type": "swap_fp_to_mp", - "inputQty": "211719007518004644675584", + "inputQty": "725535242868302282752", "outputIndex": 2, - "outputQty": "211595341263361254488435", + "outputQty": "724375560395774469894", "swapFee": "0", - "redemptionFee": "84672308581471047527", + "redemptionFee": "435030226002972167", "mpReserves": [ - "34709768601758561579745366", - "32570746040890643780493358", - "33463330082325624456514405" + "32426358865651944831173312", + "35311053780795627251990517", + "31909141985595096100856047" ], "fpReserves": [ - "1740956349444568477889673", - "2003373269849042200017444" + "639027858909002219852946", + "707369737107695221471616" ], - "mAssetSupply": "100743730809607475187737723", - "LPTokenSupply": "3739315014310886415410533" + "mAssetSupply": "99645732290967560740723042", + "LPTokenSupply": "1342272842031183558216498" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1081630342220962999566336", - "outputQty0": "1081603585367551227236193", - "outputQty": "1076545601143445722669508", - "swapFee": "863808342886062469660", + "type": "mint", + "inputIndex": 1, + "inputQty": "33310871607976417820672", + "outputQty0": "33294129092807687849112", + "outputQty": "33200954869183953074930", "mpReserves": [ - "34709768601758561579745366", - "32570746040890643780493358", - "34544960424546587456080741" + "32426358865651944831173312", + "35344364652403603669811189", + "31909141985595096100856047" ], "fpReserves": [ - "2822559934812119705125866", - "926827668705596477347936" + "672321988001809907702058", + "707369737107695221471616" ], - "mAssetSupply": "101825334394975026414973916", - "LPTokenSupply": "3739401395145175021657499" + "mAssetSupply": "99679026420060368428572154", + "LPTokenSupply": "1375473796900367511291428" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "549198659142486019014656", - "outputQty0": "549264175238806963416465", - "outputQty": "545896025366142126027634", + "type": "swap_fp_to_mp", + "inputQty": "677298341177265750016", + "outputIndex": 2, + "outputQty": "676433692072161596575", + "swapFee": "0", + "redemptionFee": "406239471685740716", "mpReserves": [ - "34709768601758561579745366", - "33119944700033129799508014", - "34544960424546587456080741" + "32426358865651944831173312", + "35344364652403603669811189", + "31908465551903023939259472" ], "fpReserves": [ - "3371824110050926668542331", - "926827668705596477347936" + "671644922215667006507952", + "708047035448872487221632" ], - "mAssetSupply": "102374598570213833378390381", - "LPTokenSupply": "4285297420511317147685133" + "mAssetSupply": "99678349760513697213118764", + "LPTokenSupply": "1375473796900367511291428" }, { "type": "swap_fp_to_mp", - "inputQty": "199052835908575592448", - "outputIndex": 1, - "outputQty": "202223778898217719385", + "inputQty": "12186113852858100088832", + "outputIndex": 2, + "outputQty": "12169030955537659325754", "swapFee": "0", - "redemptionFee": "80929984249425076", + "redemptionFee": "7308249880618469820", "mpReserves": [ - "34709768601758561579745366", - "33119742476254231581788629", - "34544960424546587456080741" + "32426358865651944831173312", + "35344364652403603669811189", + "31896296520947486279933718" ], "fpReserves": [ - "3371621785090303105850075", - "927026721541505052940384" + "659464505747969556807740", + "720233149301730587310464" ], - "mAssetSupply": "102374396326183194065123201", - "LPTokenSupply": "4285297420511317147685133" + "mAssetSupply": "99666176652295880381888372", + "LPTokenSupply": "1375473796900367511291428" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "433745346448768735641600", - "outputQty0": "436204002293169179098737", - "outputQty": "436041402541135005291927", - "swapFee1": "260247207869261241384", - "swapFee2": "174481600917267671639", + "type": "mint", + "inputIndex": 2, + "inputQty": "825509622591641312296960", + "outputQty0": "825726383437054040425148", + "outputQty": "822217852911361258720430", "mpReserves": [ - "34709768601758561579745366", - "33119742476254231581788629", - "34108919022005452450788814" + "32426358865651944831173312", + "35344364652403603669811189", + "32721806143539127592230678" ], "fpReserves": [ - "2935417782797133926751338", - "927026721541505052940384" + "1485190889185023597232888", + "720233149301730587310464" ], - "mAssetSupply": "101938366805490942153696103", - "LPTokenSupply": "3851578098783335338167671" + "mAssetSupply": "100491903035732934422313520", + "LPTokenSupply": "2197691649811728770011858" }, { "type": "swap_fp_to_mp", - "inputQty": "457384046718481434935296", + "inputQty": "287774049111089600", "outputIndex": 0, - "outputQty": "460846085905162922859283", + "outputQty": "289232415336884017", "swapFee": "0", - "redemptionFee": "184401864336752231518", + "redemptionFee": "173690062773131", "mpReserves": [ - "34248922515853398656886083", - "33119742476254231581788629", - "34108919022005452450788814" + "32426358576419529494289295", + "35344364652403603669811189", + "32721806143539127592230678" ], "fpReserves": [ - "2474413121955253347954808", - "1384410768259986487875680" + "1485190599701585642014258", + "720233437075779698400064" ], - "mAssetSupply": "101477546546513398327131091", - "LPTokenSupply": "3851578098783335338167671" + "mAssetSupply": "100491902746423186529868021", + "LPTokenSupply": "2197691649811728770011858" }, { "type": "swap_fp_to_mp", - "inputQty": "14475545598889269248", - "outputIndex": 0, - "outputQty": "14534333793758602116", + "inputQty": "25752178103436412190720", + "outputIndex": 1, + "outputQty": "25893182834385637786845", "swapFee": "0", - "redemptionFee": "5815819036464606", + "redemptionFee": "15538441914299011397", "mpReserves": [ - "34248907981519604898283967", - "33119742476254231581788629", - "34108919022005452450788814" + "32426358576419529494289295", + "35318471469569218032024344", + "32721806143539127592230678" ], "fpReserves": [ - "2474398582407662186438259", - "1384425243805585377144928" + "1459293196511087289685113", + "745985615179216110590784" ], - "mAssetSupply": "101477532012781626202079148", - "LPTokenSupply": "3851578098783335338167671" + "mAssetSupply": "100466020881674602476550273", + "LPTokenSupply": "2197691649811728770011858" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "42050915224661664989184", - "outputQty0": "42170281108233361498222", - "outputQty": "42154533893355362160243", - "swapFee1": "25230549134796998993", - "swapFee2": "16868112443293344599", + "type": "mint", + "inputIndex": 2, + "inputQty": "15971404356163348480", + "outputQty0": "15974407506154175122", + "outputQty": "15890703993577864643", "mpReserves": [ - "34248907981519604898283967", - "33119742476254231581788629", - "34066764488112097088628571" + "32426358576419529494289295", + "35318471469569218032024344", + "32721822114943483755579158" ], "fpReserves": [ - "2432228301299428824940037", - "1384425243805585377144928" + "1459309170918593443860235", + "745985615179216110590784" ], - "mAssetSupply": "101435378599785836133925525", - "LPTokenSupply": "3809529706613587152878386" + "mAssetSupply": "100466036856082108630725395", + "LPTokenSupply": "2197707540515722347876501" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "88797523732729878806528", - "outputQty0": "88803389269658396863926", - "outputQty": "88312185122767369274483", - "swapFee": "70796376416978992690", + "inputIndex": 0, + "inputQty": "55629840465670602752", + "outputQty0": "55644597054267142735", + "outputQty": "55304310942195642047", + "swapFee": "44282418149882853", "mpReserves": [ - "34248907981519604898283967", - "33208539999986961460595157", - "34066764488112097088628571" + "32426414206259995164892047", + "35318471469569218032024344", + "32721822114943483755579158" ], "fpReserves": [ - "2521031690569087221803963", - "1296113058682818007870445" + "1459364815515647711002970", + "745930310868273914948737" ], - "mAssetSupply": "101524181989055494530789451", - "LPTokenSupply": "3809536786251228850777655" + "mAssetSupply": "100466092500679162897868130", + "LPTokenSupply": "2197707544943964162864786" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "40690773191354526728192", "outputIndex": 1, - "inputQty": "2269268043462211325132800", - "hardLimitError": true - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "9410228785437367861248", - "outputQty0": "9410818900264898955183", - "outputQty": "9353296868478662273796", - "swapFee": "7500137702309324608", + "outputQty": "40884077237328492072547", + "swapFee": "0", + "redemptionFee": "24534566952152446425", "mpReserves": [ - "34248907981519604898283967", - "33217950228772398828456405", - "34066764488112097088628571" + "32426414206259995164892047", + "35277587392331889539951797", + "32721822114943483755579158" ], "fpReserves": [ - "2530442509469352120759146", - "1286759761814339345596649" + "1418473870595393633627232", + "786621084059628441676929" ], - "mAssetSupply": "101533592807955759429744634", - "LPTokenSupply": "3809537536264999081710115" + "mAssetSupply": "100425226090325860972938817", + "LPTokenSupply": "2197707544943964162864786" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "36902261972444483944448", - "outputQty0": "36904518033328014503687", - "outputQty": "36667972967444652562195", - "swapFee": "29409962092020291874", + "type": "swap_fp_to_mp", + "inputQty": "72489791420908384", + "outputIndex": 0, + "outputQty": "72753818157953204", + "swapFee": "0", + "redemptionFee": "43689938924123", "mpReserves": [ - "34248907981519604898283967", - "33254852490744843312400853", - "34066764488112097088628571" + "32426414133506177006938843", + "35277587392331889539951797", + "32721822114943483755579158" ], "fpReserves": [ - "2567347027502680135262833", - "1250091788846894693034454" + "1418473797778828760088380", + "786621156549419862585313" ], - "mAssetSupply": "101570497325989087444248321", - "LPTokenSupply": "3809540477261208283739302" + "mAssetSupply": "100425226017552986038324088", + "LPTokenSupply": "2197707544943964162864786" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "240803513689250908340224", - "outputQty0": "240792440316671672617789", - "outputQty": "238719882198989269076167", - "swapFee": "191831403679303214859", + "inputIndex": 2, + "inputQty": "81491249152308189069312", + "outputQty0": "81505731642816139330074", + "outputQty": "81005939560200638270497", + "swapFee": "64875350687998313095", "mpReserves": [ - "34489711495208855806624191", - "33254852490744843312400853", - "34066764488112097088628571" + "32426414133506177006938843", + "35277587392331889539951797", + "32803313364095791944648470" ], "fpReserves": [ - "2808139467819351807880622", - "1011371906647905423958287" + "1499979529421644899418454", + "705615216989219224314816" ], - "mAssetSupply": "101811289766305759116866110", - "LPTokenSupply": "3809559660401576214060787" + "mAssetSupply": "100506731749195802177654162", + "LPTokenSupply": "2197714032479032962696095" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "937639595792224508444672", - "hardLimitError": true - }, - { - "type": "swap_fp_to_mp", - "inputQty": "23088121592910815232", - "outputIndex": 1, - "outputQty": "23314416100933719760", - "swapFee": "0", - "redemptionFee": "9330130810514225", + "inputQty": "22401667597067857920", + "outputQty0": "22392202364849190232", + "outputQty": "22234169482230496166", + "swapFee": "17813841070726768", "mpReserves": [ - "34489711495208855806624191", - "33254829176328742378681093", - "34066764488112097088628571" + "32426414133506177006938843", + "35277609793999486607809717", + "32803313364095791944648470" ], "fpReserves": [ - "2808116142492325522317429", - "1011394994769498334773519" + "1500001921624009748608686", + "705592982819736993818650" ], - "mAssetSupply": "101811266450308863641817142", - "LPTokenSupply": "3809559660401576214060787" + "mAssetSupply": "100506754141398167026844394", + "LPTokenSupply": "2197714034260417069768771" }, { - "type": "swap_fp_to_mp", - "inputQty": "116910362307044081664", - "outputIndex": 1, - "outputQty": "118056039802418112244", - "swapFee": "0", - "redemptionFee": "47244515790439606", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "345815387822235500675072", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "9097174056840505327616", + "outputQty0": "9098719827536514928167", + "outputQty": "9047860493105744560507", "mpReserves": [ - "34489711495208855806624191", - "33254711120288939960568849", - "34066764488112097088628571" + "32426414133506177006938843", + "35277609793999486607809717", + "32812410538152632449976086" ], "fpReserves": [ - "2807998031202849423302279", - "1011511905131805378855183" + "1509100641451546263536853", + "705592982819736993818650" ], - "mAssetSupply": "101811148386263903333241598", - "LPTokenSupply": "3809559660401576214060787" + "mAssetSupply": "100515852861225703541772561", + "LPTokenSupply": "2206761894753522814329278" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "104642330272384650575872", - "outputQty0": "104649054416339041822324", - "outputQty": "104084026731399518553542", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "33673457697948436", + "outputQty0": "33682542726993123", + "outputQty": "33442368023363251", + "swapFee": "26795098566972", "mpReserves": [ - "34489711495208855806624191", - "33359353450561324611144721", - "34066764488112097088628571" + "32426414167179634704887279", + "35277609793999486607809717", + "32812410538152632449976086" ], "fpReserves": [ - "2912647085619188465124603", - "1011511905131805378855183" + "1509100675134088990529976", + "705592949377368970455399" ], - "mAssetSupply": "101915797440680242375063922", - "LPTokenSupply": "3913643687132975732614329" + "mAssetSupply": "100515852894908246268765684", + "LPTokenSupply": "2206761894756202324185975" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "65663462515165584424960", - "outputQty0": "65982479860631339329552", - "outputQty": "65956576441600986704962", - "swapFee1": "39398077509099350654", - "swapFee2": "26392991944252535731", + "type": "swap_fp_to_mp", + "inputQty": "15174302427128295424", + "outputIndex": 1, + "outputQty": "15268328365256368822", + "swapFee": "0", + "redemptionFee": "9162630544108691", "mpReserves": [ - "34489711495208855806624191", - "33359353450561324611144721", - "34000807911670496101923609" + "32426414167179634704887279", + "35277594525671121351440895", + "32812410538152632449976086" ], "fpReserves": [ - "2846664605758557125795051", - "1011511905131805378855183" + "1509085404083182142710055", + "705608123679796098750823" ], - "mAssetSupply": "101849841353811555288270101", - "LPTokenSupply": "3847984164425561058124434" + "mAssetSupply": "100515837633019969965054454", + "LPTokenSupply": "2206761894756202324185975" }, { "type": "mint", "inputIndex": 0, - "inputQty": "40315515403737917030400", - "outputQty0": "40313354874811909795601", - "outputQty": "40094878557049227020747", + "inputQty": "170485138566539779244032", + "outputQty0": "170528581000426124078485", + "outputQty": "169536463835343498338405", "mpReserves": [ - "34530027010612593723654591", - "33359353450561324611144721", - "34000807911670496101923609" + "32596899305746174484131311", + "35277594525671121351440895", + "32812410538152632449976086" ], "fpReserves": [ - "2886977960633369035590652", - "1011511905131805378855183" + "1679613985083608266788540", + "705608123679796098750823" ], - "mAssetSupply": "101890154708686367198065702", - "LPTokenSupply": "3888079042982610285145181" + "mAssetSupply": "100686366214020396089132939", + "LPTokenSupply": "2376298358591545822524380" }, { "type": "mint", "inputIndex": 0, - "inputQty": "113177238255968251281408", - "outputQty0": "113170625184959465323243", - "outputQty": "112542644579975999074314", + "inputQty": "332146772918548194918400", + "outputQty0": "332216873432228753828611", + "outputQty": "330076635709134970455167", "mpReserves": [ - "34643204248868561974935999", - "33359353450561324611144721", - "34000807911670496101923609" + "32929046078664722679049711", + "35277594525671121351440895", + "32812410538152632449976086" ], "fpReserves": [ - "3000148585818328500913895", - "1011511905131805378855183" + "2011830858515837020617151", + "705608123679796098750823" ], - "mAssetSupply": "102003325333871326663388945", - "LPTokenSupply": "4000621687562586284219495" + "mAssetSupply": "101018583087452624842961550", + "LPTokenSupply": "2706374994300680792979547" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "986682471973234927468544", - "outputQty0": "986650888548370149295420", - "outputQty": "980272582210324518939511", + "inputQty": "676545837157459014189056", + "hardLimitError": true + }, + { + "type": "swap_fp_to_mp", + "inputQty": "6321483266389686878208", + "outputIndex": 0, + "outputQty": "6383817297009846410649", + "swapFee": "0", + "redemptionFee": "3833291072686098030", "mpReserves": [ - "34643204248868561974935999", - "33359353450561324611144721", - "34987490383643731029392153" + "32922662261367712832639062", + "35277594525671121351440895", + "32812410538152632449976086" ], "fpReserves": [ - "3986799474366698650209315", - "1011511905131805378855183" + "2005442040061360190567132", + "711929606946185785629031" ], - "mAssetSupply": "102989976222419696812684365", - "LPTokenSupply": "4980894269772910803159006" + "mAssetSupply": "101012198102289220699009561", + "LPTokenSupply": "2706374994300680792979547" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "39815546435896506056704", - "hardLimitError": true - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "79618457426841", - "outputQty0": "80154040144452", - "outputQty": "80124442437684", - "swapFee1": "47771074456", - "swapFee2": "32061616057", + "type": "mint", + "inputIndex": 0, + "inputQty": "1456606289330219264", + "outputQty0": "1456873560933800076", + "outputQty": "1446982614385324995", "mpReserves": [ - "34643204248788437532498315", - "33359353450561324611144721", - "34987490383643731029392153" + "32922663717974002162858326", + "35277594525671121351440895", + "32812410538152632449976086" ], "fpReserves": [ - "3986799474286544610064863", - "1011511905131805378855183" + "2005443496934921124367208", + "711929606946185785629031" ], - "mAssetSupply": "102989976222339574834155970", - "LPTokenSupply": "4980894269693297122839610" + "mAssetSupply": "101012199559162781632809637", + "LPTokenSupply": "2706376441283295178304542" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "4640069431471315091456", - "outputQty0": "4671264563899253721972", - "outputQty": "4669690353111462168681", - "swapFee1": "2784041658882789054", - "swapFee2": "1868505825559701488", + "inputQty": "21642224366839344", + "outputQty0": "21777087181671473", + "outputQty": "21759409315184623", + "swapFee1": "12985334620103", + "swapFee2": "13066252309002", "mpReserves": [ - "34643204248788437532498315", - "33359353450561324611144721", - "34982820693290619567223472" + "32922663717974002162858326", + "35277594525671121351440895", + "32812410516393223134791463" ], "fpReserves": [ - "3982128209722645356342891", - "1011511905131805378855183" + "2005443475157833942695735", + "711929606946185785629031" ], - "mAssetSupply": "102985306826281501140135486", - "LPTokenSupply": "4976254478665991696027059" + "mAssetSupply": "101012199537398760703447166", + "LPTokenSupply": "2706376419642369344927208" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "9577644288024499978240", - "outputQty0": "9578559437315926011993", - "outputQty": "9508840917935653622299", + "inputIndex": 2, + "inputQty": "117844911249064898592768", + "outputQty0": "117868689468572280151016", + "outputQty": "117051821220650425380661", "mpReserves": [ - "34643204248788437532498315", - "33368931094849349111122961", - "34982820693290619567223472" + "32922663717974002162858326", + "35277594525671121351440895", + "32930255427642288033384231" ], "fpReserves": [ - "3991706769159961282354884", - "1011511905131805378855183" + "2123312164626406222846751", + "711929606946185785629031" ], - "mAssetSupply": "102994885385718817066147479", - "LPTokenSupply": "4985763319583927349649358" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "28519382938211909107712", - "hardLimitError": true + "mAssetSupply": "101130068226867332983598182", + "LPTokenSupply": "2823428240863019770307869" }, { "type": "swap_fp_to_mp", - "inputQty": "2457944046347075", - "outputIndex": 0, - "outputQty": "2503527908725578", + "inputQty": "3923281884544766976", + "outputIndex": 2, + "outputQty": "3965843653081917326", "swapFee": "0", - "redemptionFee": "1001781250881", + "redemptionFee": "2381391026023615", "mpReserves": [ - "34643204246284909623772737", - "33368931094849349111122961", - "34982820693290619567223472" + "32922663717974002162858326", + "35277594525671121351440895", + "32930251461798634951466905" ], "fpReserves": [ - "3991706766655508155151771", - "1011511907589749425202258" + "2123308195641362850153868", + "711933530228070330396007" ], - "mAssetSupply": "102994885383215365720195247", - "LPTokenSupply": "4985763319583927349649358" + "mAssetSupply": "101130064260263680636928914", + "LPTokenSupply": "2823428240863019770307869" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "899037504762901430272", - "outputQty0": "905092314956848029966", - "outputQty": "904644107309579819887", - "swapFee1": "539422502857740858", - "swapFee2": "362036925982739211", + "type": "swap_fp_to_mp", + "inputQty": "8925324032450612953088", + "outputIndex": 2, + "outputQty": "9020636776853054515734", + "swapFee": "0", + "redemptionFee": "5416673473162476624", "mpReserves": [ - "34643204246284909623772737", - "33368026450742039531303074", - "34982820693290619567223472" + "32922663717974002162858326", + "35277594525671121351440895", + "32921230825021781896951171" ], "fpReserves": [ - "3990801674340551307121805", - "1011511907589749425202258" + "2114280406519425389112726", + "720858854260520943349095" ], - "mAssetSupply": "102993980652937334854904492", - "LPTokenSupply": "4984864336021414733993171" + "mAssetSupply": "101121041887815216338364396", + "LPTokenSupply": "2823428240863019770307869" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "581380683389384523776", - "outputQty0": "581344282011478382042", - "outputQty": "570089617203873436878", - "swapFee": "461687103032767084", + "type": "swap_fp_to_mp", + "inputQty": "286200472396543377276928", + "outputIndex": 1, + "outputQty": "288257618421265639000623", + "swapFee": "0", + "redemptionFee": "172997631058896200587", "mpReserves": [ - "34643204246284909623772737", - "33368026450742039531303074", - "34983402073974008951747248" + "32922663717974002162858326", + "34989336907249855712440272", + "32921230825021781896951171" ], "fpReserves": [ - "3991383018622562785503847", - "1010941817972545551765380" + "1825951021421265054800577", + "1007059326657064320626023" ], - "mAssetSupply": "102994561997219346333286534", - "LPTokenSupply": "4984864382190125037269879" + "mAssetSupply": "100832885500348114900252834", + "LPTokenSupply": "2823428240863019770307869" }, { "type": "mint", "inputIndex": 0, - "inputQty": "14062298531698362368", - "outputQty0": "14061868310257415627", - "outputQty": "13959360266573113514", + "inputQty": "29967234810795826085888", + "outputQty0": "29972240112261995789061", + "outputQty": "29821650796523999973615", "mpReserves": [ - "34643218308583441322135105", - "33368026450742039531303074", - "34983402073974008951747248" + "32952630952784797988944214", + "34989336907249855712440272", + "32921230825021781896951171" ], "fpReserves": [ - "3991397080490873042919474", - "1010941817972545551765380" + "1855923261533527050589638", + "1007059326657064320626023" ], - "mAssetSupply": "102994576059087656590702161", - "LPTokenSupply": "4984878341550391610383393" + "mAssetSupply": "100862857740460376896041895", + "LPTokenSupply": "2853249891659543770281484" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3787881013597717921792", - "outputQty0": "3787643333849361462594", - "outputQty": "3713996280739354531733", - "swapFee": "3008016338358460578", + "type": "redeem", + "outputIndex": 0, + "inputQty": "18429197364133586010112", + "outputQty0": "18511348008787449306725", + "outputQty": "18497169843211352846093", + "swapFee1": "11057518418480151606", + "swapFee2": "11106808805272469584", "mpReserves": [ - "34643218308583441322135105", - "33368026450742039531303074", - "34987189954987606669669040" + "32934133782941586636098121", + "34989336907249855712440272", + "32921230825021781896951171" ], "fpReserves": [ - "3995184723824722404382068", - "1007227821691806197233647" + "1837411913524739601282913", + "1007059326657064320626023" ], - "mAssetSupply": "102998363702421505952164755", - "LPTokenSupply": "4984878642352025446229450" + "mAssetSupply": "100844357499260394719204754", + "LPTokenSupply": "2834821800047252032286532" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "408766524450606183088128", - "hardLimitError": true + "type": "redeem", + "outputIndex": 1, + "inputQty": "763967721415501231947776", + "outputQty0": "766742487049512828762427", + "outputQty": "766489050173800763159031", + "swapFee1": "458380632849300739168", + "swapFee2": "460045492229707697257", + "mpReserves": [ + "32934133782941586636098121", + "34222847857076054949281241", + "32921230825021781896951171" + ], + "fpReserves": [ + "1070669426475226772520486", + "1007059326657064320626023" + ], + "mAssetSupply": "100078075057703111598139584", + "LPTokenSupply": "2070899916695035730412672" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "221585711731270813220864", - "hardLimitError": true + "inputIndex": 1, + "inputQty": "1825241183246931197952", + "outputQty0": "1824857643833868332777", + "outputQty": "1818496768862717108131", + "mpReserves": [ + "32934133782941586636098121", + "34224673098259301880479193", + "32921230825021781896951171" + ], + "fpReserves": [ + "1072494284119060640853263", + "1007059326657064320626023" + ], + "mAssetSupply": "100079899915346945466472361", + "LPTokenSupply": "2072718413463898447520803" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "8545070592969612", - "outputQty0": "8544810176878077", - "outputQty": "8378038565639109", - "swapFee": "6785805166043", + "type": "mint", + "inputIndex": 2, + "inputQty": "1045939880933417472", + "outputQty0": "1046053708070990129", + "outputQty": "1042404634062465870", "mpReserves": [ - "34643218317128511915104717", - "33368026450742039531303074", - "34987189954987606669669040" + "32934133782941586636098121", + "34224673098259301880479193", + "32921231870961662830368643" ], "fpReserves": [ - "3995184732369532581260145", - "1007227813313767631594538" + "1072495330172768711843392", + "1007059326657064320626023" ], - "mAssetSupply": "102998363710966316129042832", - "LPTokenSupply": "4984878642352704026746054" + "mAssetSupply": "100079900961400653537462490", + "LPTokenSupply": "2072719455868532509986673" }, { "type": "swap_fp_to_mp", - "inputQty": "14071998343207576403968", - "outputIndex": 0, - "outputQty": "14331307236863653343129", + "inputQty": "90017139177608110407680", + "outputIndex": 2, + "outputQty": "89938517619016382002665", "swapFee": "0", - "redemptionFee": "5734644655843814103", + "redemptionFee": "54001796846848323075", "mpReserves": [ - "34628887009891648261761588", - "33368026450742039531303074", - "34987189954987606669669040" + "32934133782941586636098121", + "34224673098259301880479193", + "32831293353342646448365978" ], "fpReserves": [ - "3980848120729923046001180", - "1021299811656975207998506" + "982492335428021506717149", + "1097076465834672431033703" ], - "mAssetSupply": "102984032833971362437597970", - "LPTokenSupply": "4984878642352704026746054" + "mAssetSupply": "99989951968452753180659322", + "LPTokenSupply": "2072719455868532509986673" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "65998336876367888384", - "outputQty0": "66004603642145082774", - "outputQty": "64752344210983377490", - "swapFee": "52423129590259425", + "type": "mint", + "inputIndex": 2, + "inputQty": "246599361701373", + "outputQty0": "246629971761853", + "outputQty": "245912877849550", "mpReserves": [ - "34628887009891648261761588", - "33368092449078915899191458", - "34987189954987606669669040" + "32934133782941586636098121", + "34224673098259301880479193", + "32831293353589245810067351" ], "fpReserves": [ - "3980914125333565191083954", - "1021235059312764224621016" + "982492335674651478479002", + "1097076465834672431033703" ], - "mAssetSupply": "102984098838575004582680744", - "LPTokenSupply": "4984878647595016985771996" + "mAssetSupply": "99989951968699383152421175", + "LPTokenSupply": "2072719456114445387836223" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "1474575887941011767296", - "outputQty0": "1474715826191299790681", - "outputQty": "1446694583601018562381", - "swapFee": "1171268133107806298", + "inputQty": "19082782994002979323904", + "outputQty0": "19078601392169111783054", + "outputQty": "19022481458268886514644", + "mpReserves": [ + "32934133782941586636098121", + "34243755881253304859803097", + "32831293353589245810067351" + ], + "fpReserves": [ + "1001570937066820590262056", + "1097076465834672431033703" + ], + "mAssetSupply": "100009030570091552264204229", + "LPTokenSupply": "2091741937572714274350867" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "612833000366865320509440", + "outputQty0": "612862468016860009537601", + "outputQty": "610526443666660400394229", "mpReserves": [ - "34628887009891648261761588", - "33369567024966856910958754", - "34987189954987606669669040" + "33546966783308451956607561", + "34243755881253304859803097", + "32831293353589245810067351" ], "fpReserves": [ - "3982388841159756490874635", - "1019788364729163206058635" + "1614433405083680599799657", + "1097076465834672431033703" ], - "mAssetSupply": "102985573554401195882471425", - "LPTokenSupply": "4984878764721830296552625" + "mAssetSupply": "100621893038108412273741830", + "LPTokenSupply": "2702268381239374674745096" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "4903363917350384435200", - "outputQty0": "4936036287010557390521", - "outputQty": "4934373286004026680352", - "swapFee1": "2942018350410230661", - "swapFee2": "1974414514804222956", + "outputIndex": 1, + "inputQty": "824970851598224982016", + "outputQty0": "828206500079968349710", + "outputQty": "827851067772298651128", + "swapFee1": "494982510958934989", + "swapFee2": "496923900047981009", + "mpReserves": [ + "33546966783308451956607561", + "34242928030185532561151969", + "32831293353589245810067351" + ], + "fpReserves": [ + "1613605198583600631449947", + "1097076465834672431033703" + ], + "mAssetSupply": "100621065328532232353373129", + "LPTokenSupply": "2701443459886027545656578" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "283547445957297024", + "outputQty0": "283499002156039939", + "outputQty": "282503895474357856", + "swapFee": "225777739707952", "mpReserves": [ - "34628887009891648261761588", - "33369567024966856910958754", - "34982255581701602642988688" + "33546966783308451956607561", + "34242928313732978518448993", + "32831293353589245810067351" ], "fpReserves": [ - "3977452804872745933484114", - "1019788364729163206058635" + "1613605482082602787489886", + "1097076183330776956675847" ], - "mAssetSupply": "102980639492528700129303860", - "LPTokenSupply": "4979975695006314953140491" + "mAssetSupply": "100621065612031234509413068", + "LPTokenSupply": "2701443459908605319627373" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "469723689692154494976", - "outputQty0": "472851737108411423089", - "outputQty": "472676613928979576254", - "swapFee1": "281834213815292696", - "swapFee2": "189140694843364569", + "outputIndex": 1, + "inputQty": "1672893101570798483668992", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "183429760023444309671936", + "outputQty0": "183459413682698204315535", + "outputQty": "182587862962450224117477", + "swapFee": "146080594588971904341", "mpReserves": [ - "34628414333277719282185334", - "33369567024966856910958754", - "34982255581701602642988688" + "33546966783308451956607561", + "34242928313732978518448993", + "33014723113612690119739287" ], "fpReserves": [ - "3976979953135637522061025", - "1019788364729163206058635" + "1797064895765300991805421", + "914488320368326732558370" ], - "mAssetSupply": "102980166829932286561245340", - "LPTokenSupply": "4979505999500044180174784" + "mAssetSupply": "100804525025713932713728603", + "LPTokenSupply": "2701458067968064216817807" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "18451413413503844352", - "outputQty0": "18450866491395909190", - "outputQty": "18100537987511764564", - "swapFee": "14654253925773072", + "inputQty": "9241018308556551618560", + "outputQty0": "9241127019991641577928", + "outputQty": "9183405352667656946931", + "swapFee": "7351926909857213687", "mpReserves": [ - "34628432784691132786029686", - "33369567024966856910958754", - "34982255581701602642988688" + "33556207801617008508226121", + "34242928313732978518448993", + "33014723113612690119739287" ], "fpReserves": [ - "3976998404002128917970215", - "1019770264191175694294071" + "1806306022785292633383349", + "905304915015659075611439" ], - "mAssetSupply": "102980185280798777957154530", - "LPTokenSupply": "4979506000965469572752091" + "mAssetSupply": "100813766152733924355306531", + "LPTokenSupply": "2701458803160755202539175" }, { "type": "swap_fp_to_mp", - "inputQty": "456446954488265825058816", - "outputIndex": 2, - "outputQty": "461866901898225441010113", + "inputQty": "276539196830702912", + "outputIndex": 1, + "outputQty": "277954292770722529", "swapFee": "0", - "redemptionFee": "184811724578670828061", + "redemptionFee": "166846829302817", "mpReserves": [ - "34628432784691132786029686", - "33369567024966856910958754", - "34520388679803377201978575" + "33556207801617008508226121", + "34242928035778685747726464", + "33014723113612690119739287" ], "fpReserves": [ - "3514969092555451847815305", - "1476217218679441519352887" + "1806305744707243795353854", + "905305191554855906314351" ], - "mAssetSupply": "102518340781076679557827681", - "LPTokenSupply": "4979506000965469572752091" + "mAssetSupply": "100813765874822722346579853", + "LPTokenSupply": "2701458803160755202539175" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "317217616108449824768", - "outputQty0": "318503633862832870005", - "outputQty": "318387032624111466595", - "swapFee1": "190330569665069894", - "swapFee2": "127401453545133148", + "inputQty": "43044198515198132224", + "outputQty0": "43260255391158050032", + "outputQty": "43227953563953631182", + "swapFee1": "25826519109118879", + "swapFee2": "25956153234694830", "mpReserves": [ - "34628432784691132786029686", - "33369567024966856910958754", - "34520070292770753090511980" + "33556207801617008508226121", + "34242928035778685747726464", + "33014679885659126166108105" ], "fpReserves": [ - "3514650588921589014945300", - "1476217218679441519352887" + "1806262484451852637303822", + "905305191554855906314351" ], - "mAssetSupply": "102518022404844270270090824", - "LPTokenSupply": "4979188802382418089434312" + "mAssetSupply": "100813722640523484423224651", + "LPTokenSupply": "2701415761544891915318838" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "666671538593969", - "outputQty0": "666648930737573", - "outputQty": "663558941226567", - "mpReserves": [ - "34628432784691132786029686", - "33369567024966856910958754", - "34520070293437424629105949" - ], - "fpReserves": [ - "3514650589588237945682873", - "1476217218679441519352887" - ], - "mAssetSupply": "102518022405510919200828397", - "LPTokenSupply": "4979188803045977030660879" + "type": "redeem", + "outputIndex": 2, + "inputQty": "3089885269622878808047616", + "insufficientLiquidityError": true }, { "type": "swap_fp_to_mp", - "inputQty": "1174786558604519276544", - "outputIndex": 0, - "outputQty": "1183513555542775298796", + "inputQty": "777419173917486088192", + "outputIndex": 1, + "outputQty": "781391513009257094494", "swapFee": "0", - "redemptionFee": "473573941408546110", + "redemptionFee": "469043678667965718", "mpReserves": [ - "34627249271135590010730890", - "33369567024966856910958754", - "34520070293437424629105949" + "33556207801617008508226121", + "34242146644265676490631970", + "33014679885659126166108105" ], "fpReserves": [ - "3513466654734716580407534", - "1477392005238046038629431" + "1805480744987406027773769", + "906082610728773392402543" ], - "mAssetSupply": "102516838944231339244099168", - "LPTokenSupply": "4979188803045977030660879" + "mAssetSupply": "100812941370102716481660316", + "LPTokenSupply": "2701415761544891915318838" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "114242946098249938763776", - "outputQty0": "114697613731833488330019", - "outputQty": "114656378824897322092111", - "swapFee1": "68545767658949963258", - "swapFee2": "45879045492733395332", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "8675472438656064552960", + "outputQty0": "8674122588833887334095", + "outputQty": "8618657734117943129968", + "swapFee": "6900469861095305746", "mpReserves": [ - "34512592892310692688638779", - "33369567024966856910958754", - "34520070293437424629105949" + "33556207801617008508226121", + "34250822116704332555184930", + "33014679885659126166108105" ], "fpReserves": [ - "3398769041002883092077515", - "1477392005238046038629431" + "1814154867576239915107864", + "897463952994655449272575" ], - "mAssetSupply": "102402187209544998489164481", - "LPTokenSupply": "4864952711524492986893428" + "mAssetSupply": "100821615492691550368994411", + "LPTokenSupply": "2701416451591878024849412" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "869792936732671737856", - "outputQty0": "869760223780205227258", - "outputQty": "865841108313565360879", + "type": "swap_fp_to_mp", + "inputQty": "89606658471360756449280", + "outputIndex": 2, + "outputQty": "89980216129171815196907", + "swapFee": "0", + "redemptionFee": "54028921072438403510", "mpReserves": [ - "34512592892310692688638779", - "33369567024966856910958754", - "34520940086374157300843805" + "33556207801617008508226121", + "34250822116704332555184930", + "32924699669529954350911198" ], "fpReserves": [ - "3399638801226663297304773", - "1477392005238046038629431" + "1724106665788842575924250", + "987070611466016205721855" ], - "mAssetSupply": "102403056969768778694391739", - "LPTokenSupply": "4865818552632806552254307" + "mAssetSupply": "100731621319825225468214307", + "LPTokenSupply": "2701416451591878024849412" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "223101583371318815883264", - "outputQty0": "223116798207890953079636", - "outputQty": "220946755133088984701474", - "swapFee": "177665209820704923242", + "inputQty": "5551389946816561152", + "outputQty0": "5550481368903841929", + "outputQty": "5522051799964694038", "mpReserves": [ - "34512592892310692688638779", - "33592668608338175726842018", - "34520940086374157300843805" + "33556207801617008508226121", + "34250827668094279371746082", + "32924699669529954350911198" ], "fpReserves": [ - "3622755599434554250384409", - "1256445250104957053927957" + "1724112216270211479766179", + "987070611466016205721855" ], - "mAssetSupply": "102626173767976669647471375", - "LPTokenSupply": "4865836319153788622746631" + "mAssetSupply": "100731626870306594372056236", + "LPTokenSupply": "2701421973643677989543450" }, { "type": "mint", "inputIndex": 1, - "inputQty": "285087136739468066684928", - "outputQty0": "285101715853311548083755", - "outputQty": "283464160926618658414190", + "inputQty": "86339488917676594561024", + "outputQty0": "86324770289276766522791", + "outputQty": "85875293910777426769373", "mpReserves": [ - "34512592892310692688638779", - "33877755745077643793526946", - "34520940086374157300843805" + "33556207801617008508226121", + "34337167157011955966307106", + "32924699669529954350911198" ], "fpReserves": [ - "3907857315287865798468164", - "1256445250104957053927957" + "1810436986559488246288970", + "987070611466016205721855" ], - "mAssetSupply": "102911275483829981195555130", - "LPTokenSupply": "5149300480080407281160821" + "mAssetSupply": "100817951640595871138579027", + "LPTokenSupply": "2787297267554455416312823" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "66865391843914063872", - "outputQty0": "67224322478138601326", - "outputQty": "67198792265711468229", - "swapFee1": "40119235106348438", - "swapFee2": "26889728991255440", + "outputIndex": 1, + "inputQty": "16297180529620546486272", + "outputQty0": "16373775649811134540158", + "outputQty": "16366831690647045104701", + "swapFee1": "9778308317772327891", + "swapFee2": "9824265389886680724", "mpReserves": [ - "34512525693518426977170550", - "33877755745077643793526946", - "34520940086374157300843805" + "33556207801617008508226121", + "34320800325321308921202405", + "32924699669529954350911198" ], "fpReserves": [ - "3907790090965387659866838", - "1256445250104957053927957" + "1794063210909677111748812", + "987070611466016205721855" ], - "mAssetSupply": "102911208286397232048209244", - "LPTokenSupply": "5149233618700486877731792" + "mAssetSupply": "100801587689211449890719593", + "LPTokenSupply": "2771001064855666647059340" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "12300055088997842550784", - "outputQty0": "12299801444533301713298", - "outputQty": "12226687367504939405476", + "type": "redeem", + "outputIndex": 0, + "inputQty": "33397213097579749376", + "outputQty0": "33553745989020608508", + "outputQty": "33533287076304652121", + "swapFee1": "20038327858547849", + "swapFee2": "20132247593412365", "mpReserves": [ - "34524825748607424819721334", - "33877755745077643793526946", - "34520940086374157300843805" + "33556174268329932203574000", + "34320800325321308921202405", + "32924699669529954350911198" ], "fpReserves": [ - "3920089892409920961580136", - "1256445250104957053927957" + "1794029657163688091140304", + "987070611466016205721855" ], - "mAssetSupply": "102923508087841765349922542", - "LPTokenSupply": "5161460306067991817137268" + "mAssetSupply": "100801554155597708463523450", + "LPTokenSupply": "2770967669646401853164748" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "322954005183711104", - "outputQty0": "324693001382725219", - "outputQty": "324549476680794908", - "swapFee1": "193772403110226", - "swapFee2": "129877200553090", + "type": "swap_fp_to_mp", + "inputQty": "431520113984310080", + "outputIndex": 0, + "outputQty": "433234540109800835", + "swapFee": "0", + "redemptionFee": "260099316599219", "mpReserves": [ - "34524825748607424819721334", - "33877755420528167112732038", - "34520940086374157300843805" + "33556173835095392093773165", + "34320800325321308921202405", + "32924699669529954350911198" ], "fpReserves": [ - "3920089567716919578854917", - "1256445250104957053927957" + "1794029223664827092440794", + "987071042986130190031935" ], - "mAssetSupply": "102923507763278641167750413", - "LPTokenSupply": "5161459983133363873737186" + "mAssetSupply": "100801553722358946781423159", + "LPTokenSupply": "2770967669646401853164748" }, { "type": "swap_fp_to_mp", - "inputQty": "173986472261016027136", - "outputIndex": 0, - "outputQty": "176111865789021890937", + "inputQty": "23289424569738941431808", + "outputIndex": 1, + "outputQty": "23382079736664714409172", "swapFee": "0", - "redemptionFee": "70471454993258869", + "redemptionFee": "14035243906115385465", "mpReserves": [ - "34524649636741635797830397", - "33877755420528167112732038", - "34520940086374157300843805" + "33556173835095392093773165", + "34297418245584644206793233", + "32924699669529954350911198" ], "fpReserves": [ - "3919913389079436431680258", - "1256619236577218069955093" + "1770637150487968116664608", + "1010360467555869131463743" ], - "mAssetSupply": "102923331655112613013834623", - "LPTokenSupply": "5161459983133363873737186" + "mAssetSupply": "100778175684425993921032438", + "LPTokenSupply": "2770967669646401853164748" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "294694148457470395154432", - "outputQty0": "294685307272344190819393", - "outputQty": "292873201771881506193124", + "type": "redeem", + "outputIndex": 0, + "inputQty": "6008231182849863057408", + "outputQty0": "6035592680117692702551", + "outputQty": "6031920899729495809846", + "swapFee1": "3604938709709917834", + "swapFee2": "3621355608070615621", "mpReserves": [ - "34524649636741635797830397", - "33877755420528167112732038", - "34815634234831627695998237" + "33550141914195662597963319", + "34297418245584644206793233", + "32924699669529954350911198" ], "fpReserves": [ - "4214598696351780622499651", - "1256619236577218069955093" + "1764601557807850423962057", + "1010360467555869131463743" ], - "mAssetSupply": "103218016962384957204654016", - "LPTokenSupply": "5454333184905245379930310" + "mAssetSupply": "100772143713101484298945508", + "LPTokenSupply": "2764959798957422961099123" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2264128183617903656960", - "outputQty0": "2264039015605684049585", - "outputQty": "2230301878992749870949", - "swapFee": "1799733579129058347", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1127144776111432853880832", + "outputQty0": "1130676570703474750281174", + "outputQty": "1130089571686871189915547", + "swapFee1": "676286865666859712328", + "swapFee2": "678405942422084850168", "mpReserves": [ - "34524649636741635797830397", - "33877755420528167112732038", - "34817898363015245599655197" + "33550141914195662597963319", + "33167328673897773016877686", + "32924699669529954350911198" ], "fpReserves": [ - "4216862735367386306549236", - "1254388934698225320084144" + "633924987104375673680883", + "1010360467555869131463743" ], - "mAssetSupply": "103220281001400562888703601", - "LPTokenSupply": "5454333364878603292836144" + "mAssetSupply": "99642145548340431633514502", + "LPTokenSupply": "1637882651532556793189523" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3704800127645929472", - "outputQty0": "3704653957534472755", - "outputQty": "3681093165050564283", + "type": "swap_fp_to_mp", + "inputQty": "99271220519353731514368", + "outputIndex": 2, + "outputQty": "98748813743595558640237", + "swapFee": "0", + "redemptionFee": "59289645903829376764", "mpReserves": [ - "34524649636741635797830397", - "33877755420528167112732038", - "34817902067815373245584669" + "33550141914195662597963319", + "33167328673897773016877686", + "32825950855786358792270961" ], "fpReserves": [ - "4216866440021343841021991", - "1254388934698225320084144" + "535108910597993379072569", + "1109631688075222862978111" ], - "mAssetSupply": "103220284706054520423176356", - "LPTokenSupply": "5454337045971768343400427" + "mAssetSupply": "99543388761479953168282952", + "LPTokenSupply": "1637882651532556793189523" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "196017656009003982913536", - "hardLimitError": true - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "31969441769834516480", - "outputQty0": "31971093634922505735", - "outputQty": "31767763678555525088", + "inputIndex": 0, + "inputQty": "67139830092059331526656", + "outputQty0": "67133338745580555869292", + "outputQty": "67416021256458214595417", + "swapFee": "53675186687508494366", "mpReserves": [ - "34524649636741635797830397", - "33877787389969936947248518", - "34817902067815373245584669" + "33617281744287721929489975", + "33167328673897773016877686", + "32825950855786358792270961" ], "fpReserves": [ - "4216898411114978763527726", - "1254388934698225320084144" + "602242249343573934941861", + "1042215666818764648382694" ], - "mAssetSupply": "103220316677148155345682091", - "LPTokenSupply": "5454368813735446898925515" + "mAssetSupply": "99610522100225533724152244", + "LPTokenSupply": "1637888019051225544038959" }, { - "type": "swap_fp_to_mp", - "inputQty": "109772360935044565434368", - "outputIndex": 1, - "outputQty": "111153052694612830268882", - "swapFee": "0", - "redemptionFee": "44481475427829627739", + "type": "redeem", + "outputIndex": 2, + "inputQty": "38927992047267792027648", + "outputQty0": "38951414060371299002932", + "outputQty": "38924229145467530381441", + "swapFee1": "23356795228360675216", + "swapFee2": "23370848436222779401", "mpReserves": [ - "34524649636741635797830397", - "33766634337275324116979636", - "34817902067815373245584669" + "33617281744287721929489975", + "33167328673897773016877686", + "32787026626640891261889520" ], "fpReserves": [ - "4105694722545404694178468", - "1364161295633269885518512" + "563290835283202635938929", + "1042215666818764648382694" ], - "mAssetSupply": "103109157470054009105960572", - "LPTokenSupply": "5454368813735446898925515" + "mAssetSupply": "99571594057013598647928713", + "LPTokenSupply": "1598962362683480588078832" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "44052471892334442708992", - "outputQty0": "44050514440845721740316", - "outputQty": "43795308451411006077966", + "inputIndex": 0, + "inputQty": "1540358428630125056", + "outputQty0": "1540196141699649523", + "outputQty": "1538653890918106900", "mpReserves": [ - "34524649636741635797830397", - "33766634337275324116979636", - "34861954539707707688293661" + "33617283284646150559615031", + "33167328673897773016877686", + "32787026626640891261889520" ], "fpReserves": [ - "4149745236986250415918784", - "1364161295633269885518512" + "563292375479344335588452", + "1042215666818764648382694" ], - "mAssetSupply": "103153207984494854827700888", - "LPTokenSupply": "5498164122186857905003481" + "mAssetSupply": "99571595597209740347578236", + "LPTokenSupply": "1598963901337371506185732" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "42893697698218819584", - "outputQty0": "42891732398318923726", - "outputQty": "42346783640900464319", - "swapFee": "34113651443360236", + "inputIndex": 1, + "inputQty": "383666310838048000", + "outputQty0": "383668365120669033", + "outputQty": "385187706963954811", + "swapFee": "306627344534450", "mpReserves": [ - "34524649636741635797830397", - "33766634337275324116979636", - "34861997433405405907113245" + "33617283284646150559615031", + "33167329057564083854925686", + "32787026626640891261889520" ], "fpReserves": [ - "4149788128718648734842510", - "1364118948849628985054193" + "563292759147709456257485", + "1042215281631057684427883" ], - "mAssetSupply": "103153250876227253146624614", - "LPTokenSupply": "5498164125598223049339504" + "mAssetSupply": "99571595980878105468247269", + "LPTokenSupply": "1598963901368034240639177" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "17897759360976175497216", - "outputQty0": "17898831543199697284650", - "outputQty": "17668206388179797658407", - "swapFee": "14235553557103835841", + "inputIndex": 0, + "inputQty": "347802920393167421308928", + "outputQty0": "347756539326858077873790", + "outputQty": "347898193225633976618928", + "swapFee": "277551065591941627841", "mpReserves": [ - "34524649636741635797830397", - "33784532096636300292476852", - "34861997433405405907113245" + "33965086205039317980923959", + "33167329057564083854925686", + "32787026626640891261889520" ], "fpReserves": [ - "4167686960261848432127160", - "1346450742461449187395786" + "911049298474567534131275", + "694317088405423707808955" ], - "mAssetSupply": "103171149707770452843909264", - "LPTokenSupply": "5498165549153578759723088" + "mAssetSupply": "99919352520204963546121059", + "LPTokenSupply": "1598991656474593434801961" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "52234166098785107968", - "outputQty0": "52513361876618734190", - "outputQty": "52489243405024043026", - "swapFee1": "31340499659271064", - "swapFee2": "21005344750647493", + "inputQty": "268851569419280842752", + "outputQty0": "269977902349257854735", + "outputQty": "269806792852769148682", + "swapFee1": "161310941651568505", + "swapFee2": "161986741409554712", "mpReserves": [ - "34524649636741635797830397", - "33784479607392895268433826", - "34861997433405405907113245" + "33965086205039317980923959", + "33167059250771231085777004", + "32787026626640891261889520" ], "fpReserves": [ - "4167634446899971813392970", - "1346450742461449187395786" + "910779320572218276276540", + "694317088405423707808955" ], - "mAssetSupply": "103171097215413920975822567", - "LPTokenSupply": "5498113318121529940542226" + "mAssetSupply": "99919082704289355697821036", + "LPTokenSupply": "1598722821036268319116059" }, { - "type": "swap_fp_to_mp", - "inputQty": "131210887461072646701056", - "outputIndex": 1, - "outputQty": "132612115355843253374068", - "swapFee": "0", - "redemptionFee": "53069455552874456982", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "4332403542052400640", + "outputQty0": "4332967015406357530", + "outputQty": "4321487780765311732", + "swapFee": "3449842208917827", "mpReserves": [ - "34524649636741635797830397", - "33651867492037052015059758", - "34861997433405405907113245" + "33965086205039317980923959", + "33167059250771231085777004", + "32787030959044433314290160" ], "fpReserves": [ - "4034960808017785670936067", - "1477661629922521834096842" + "910783653539233682634070", + "694312766917642942497223" ], - "mAssetSupply": "103038476645987287707822646", - "LPTokenSupply": "5498113318121529940542226" + "mAssetSupply": "99919087037256371104178566", + "LPTokenSupply": "1598722821381252540007841" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "78206104241750474227712", - "outputQty0": "78571368907210514215088", - "outputQty": "78534376696659123999599", - "swapFee1": "46923662545050284536", - "swapFee2": "31428547562884205686", + "type": "mint", + "inputIndex": 2, + "inputQty": "126246884459490259763200", + "outputQty0": "126261945660735990970369", + "outputQty": "125633514646206646569327", "mpReserves": [ - "34524649636741635797830397", - "33573333115340392891060159", - "34861997433405405907113245" + "33965086205039317980923959", + "33167059250771231085777004", + "32913277843503923574053360" ], "fpReserves": [ - "3956389439110575156720979", - "1477661629922521834096842" + "1037045599199969673604439", + "694312766917642942497223" ], - "mAssetSupply": "102959936705627640077813244", - "LPTokenSupply": "5419911906246033971342967" + "mAssetSupply": "100045348982917107095148935", + "LPTokenSupply": "1724356336027459186577168" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "50841422833384951906304", - "outputQty0": "50838693488906634336685", - "outputQty": "50572419493520114798657", + "type": "redeem", + "outputIndex": 0, + "inputQty": "72612784730972908158976", + "outputQty0": "72938556954392946758746", + "outputQty": "72905365090342211312379", + "swapFee1": "43567670838583744895", + "swapFee2": "43763134172635768055", "mpReserves": [ - "34524649636741635797830397", - "33573333115340392891060159", - "34912838856238790859019549" + "33892180839948975769611580", + "33167059250771231085777004", + "32913277843503923574053360" ], "fpReserves": [ - "4007228132599481791057664", - "1477661629922521834096842" + "964107042245576726845693", + "694312766917642942497223" ], - "mAssetSupply": "103010775399116546712149929", - "LPTokenSupply": "5470484325739554086141624" + "mAssetSupply": "99972454189096886784158244", + "LPTokenSupply": "1651747908063570136792681" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "2222976170603508736", - "outputQty0": "2222935003540539241", - "outputQty": "2199481793407172572", - "swapFee": "1768980968627625", + "inputQty": "44964067816429158662144", + "outputQty0": "44957648333205799446555", + "outputQty": "44800244179667625470166", + "swapFee": "35784736735908902416", "mpReserves": [ - "34524651859717806401339133", - "33573333115340392891060159", - "34912838856238790859019549" + "33937144907765404928273724", + "33167059250771231085777004", + "32913277843503923574053360" ], "fpReserves": [ - "4007230355534485331596905", - "1477659430440728426924270" + "1009064690578782526292248", + "649512522737975317027057" ], - "mAssetSupply": "103010777622051550252689170", - "LPTokenSupply": "5470484325916452183004386" + "mAssetSupply": "100017411837430092583604799", + "LPTokenSupply": "1651751486537243727682922" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "5402380575566603652956160", - "hardLimitError": true + "type": "swap_fp_to_mp", + "inputQty": "249318674289454347190272", + "outputIndex": 0, + "outputQty": "249432172372785973155041", + "swapFee": "0", + "redemptionFee": "149730228544995826221", + "mpReserves": [ + "33687712735392618955118683", + "33167059250771231085777004", + "32913277843503923574053360" + ], + "fpReserves": [ + "759514309670456149256549", + "898831197027429664217329" + ], + "mAssetSupply": "99768011186750311202395321", + "LPTokenSupply": "1651751486537243727682922" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "7532474196719945383936", - "outputQty0": "7533038306685810873047", - "outputQty": "7453111832824836132784", - "swapFee": "5994661324778657521", + "inputQty": "60403364513786298892288", + "outputQty0": "60404376613709945301704", + "outputQty": "60394375139392100015481", + "swapFee": "48154006668416855518", "mpReserves": [ - "34524651859717806401339133", - "33580865589537112836444095", - "34912838856238790859019549" + "33687712735392618955118683", + "33227462615285017384669292", + "32913277843503923574053360" ], "fpReserves": [ - "4014763393841171142469952", - "1470206318607903590791486" + "819918686284166094558253", + "838436821888037564201848" ], - "mAssetSupply": "103018310660358236063562217", - "LPTokenSupply": "5470484925382584660870138" + "mAssetSupply": "99828415563364021147697025", + "LPTokenSupply": "1651756301937910569368473" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "770421082828174849474560", - "outputQty0": "770458803032974408501156", - "outputQty": "766030491749284328422398", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "987848944189521168171008", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "149372186520682397433856", + "outputQty0": "149355247808651851574473", + "outputQty": "149075500727995435012709", + "swapFee": "118984205502850496836", "mpReserves": [ - "34524651859717806401339133", - "34351286672365287685918655", - "34912838856238790859019549" + "33837084921913301352552539", + "33227462615285017384669292", + "32913277843503923574053360" ], "fpReserves": [ - "4785222196874145550971108", - "1470206318607903590791486" + "969273934092817946132726", + "689361321160042129189139" ], - "mAssetSupply": "103788769463391210472063373", - "LPTokenSupply": "6236515417131868989292536" + "mAssetSupply": "99977770811172672999271498", + "LPTokenSupply": "1651768200358460854418156" }, { - "type": "swap_fp_to_mp", - "inputQty": "88347654755970285568", - "outputIndex": 1, - "outputQty": "89507840020402927610", - "swapFee": "0", - "redemptionFee": "35818309019685005", + "type": "mint", + "inputIndex": 2, + "inputQty": "699239773488908730368", + "outputQty0": "699311819046927856335", + "outputQty": "695730477607876545144", "mpReserves": [ - "34524651859717806401339133", - "34351197164525267282991045", - "34912838856238790859019549" + "33837084921913301352552539", + "33227462615285017384669292", + "32913977083277412482783728" ], "fpReserves": [ - "4785132651101596338456227", - "1470294666262659561077054" + "969973245911864873989061", + "689361321160042129189139" ], - "mAssetSupply": "103788679953436970279233497", - "LPTokenSupply": "6236515417131868989292536" + "mAssetSupply": "99978470122991719927127833", + "LPTokenSupply": "1652463930836068730963300" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "402088120239549071753216", - "hardLimitError": true - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "5807216409256767488", - "outputQty0": "5839885866742663180", - "outputQty": "5837726249067099792", - "swapFee1": "3484329845554060", - "swapFee2": "2335954346697065", + "type": "mint", + "inputIndex": 0, + "inputQty": "53627862188022361489408", + "outputQty0": "53620909086714139853560", + "outputQty": "53341640010272215285438", "mpReserves": [ - "34524651859717806401339133", - "34351197164525267282991045", - "34912833018512541791919757" + "33890712784101323714041947", + "33227462615285017384669292", + "32913977083277412482783728" ], "fpReserves": [ - "4785126811215729595793047", - "1470294666262659561077054" + "1023594154998579013842621", + "689361321160042129189139" ], - "mAssetSupply": "103788674115887057883267382", - "LPTokenSupply": "6236509610263892717080454" + "mAssetSupply": "100032091032078434066981393", + "LPTokenSupply": "1705805570846340946248738" }, { "type": "mint", "inputIndex": 0, - "inputQty": "7573884692307998932992", - "outputQty0": "7573934439636503924210", - "outputQty": "7527012639462477605485", + "inputQty": "795027155606285696", + "outputQty0": "794920661407277911", + "outputQty": "790713224294528073", "mpReserves": [ - "34532225744410114400272125", - "34351197164525267282991045", - "34912833018512541791919757" + "33890713579128479320327643", + "33227462615285017384669292", + "32913977083277412482783728" ], "fpReserves": [ - "4792700745655366099717257", - "1470294666262659561077054" + "1023594949919240421120532", + "689361321160042129189139" ], - "mAssetSupply": "103796248050326694387191592", - "LPTokenSupply": "6244036622903355194685939" + "mAssetSupply": "100032091826999095474259304", + "LPTokenSupply": "1705806361559565240776811" }, { "type": "mint", "inputIndex": 2, - "inputQty": "112313789583516034400256", - "outputQty0": "112310028125336513504737", - "outputQty": "111606551547491084419026", + "inputQty": "742344013294664549400576", + "outputQty0": "742377577077344503451356", + "outputQty": "737674913760911154002753", "mpReserves": [ - "34532225744410114400272125", - "34351197164525267282991045", - "35025146808096057826320013" + "33890713579128479320327643", + "33227462615285017384669292", + "33656321096572077032184304" ], "fpReserves": [ - "4905010773780702613221994", - "1470294666262659561077054" + "1765972526996584924571888", + "689361321160042129189139" ], - "mAssetSupply": "103908558078452030900696329", - "LPTokenSupply": "6355643174450846279104965" + "mAssetSupply": "100774469404076439977710660", + "LPTokenSupply": "2443481275320476394779564" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "2601489436883406553088", - "outputQty0": "2616481348010548838300", - "outputQty": "2615531341378924486961", - "swapFee1": "1560893662130043931", - "swapFee2": "1046592539204219535", + "inputQty": "327878733406852995874816", + "outputQty0": "329954636399454544157112", + "outputQty": "329753071441539928699363", + "swapFee1": "196727240044111797524", + "swapFee2": "197972781839672726494", "mpReserves": [ - "34532225744410114400272125", - "34351197164525267282991045", - "35022531276754678901833052" + "33890713579128479320327643", + "33227462615285017384669292", + "33326568025130537103484941" ], "fpReserves": [ - "4902394292432692064383694", - "1470294666262659561077054" + "1436017890597130380414776", + "689361321160042129189139" ], - "mAssetSupply": "103905942643696559556077564", - "LPTokenSupply": "6353041841103329085556270" + "mAssetSupply": "100444712740458825106280042", + "LPTokenSupply": "2115622214637627810084500" }, { "type": "swap_fp_to_mp", - "inputQty": "32371199418347527602176", + "inputQty": "1160331909296832118784", "outputIndex": 2, - "outputQty": "32805879906464478381875", + "outputQty": "1166600214142820371832", "swapFee": "0", - "redemptionFee": "13127132782462653439", + "redemptionFee": "700407131295201437", "mpReserves": [ - "34532225744410114400272125", - "34351197164525267282991045", - "34989725396848214423451177" + "33890713579128479320327643", + "33227462615285017384669292", + "33325401424916394283113109" ], "fpReserves": [ - "4869576460476535430785179", - "1502665865681007088679230" + "1434850545378305044685478", + "690521653069338961307923" ], - "mAssetSupply": "103873137938873185385132488", - "LPTokenSupply": "6353041841103329085556270" + "mAssetSupply": "100443546095647131065752181", + "LPTokenSupply": "2115622214637627810084500" }, { - "type": "swap_fp_to_mp", - "inputQty": "591403225778730045538304", - "outputIndex": 1, - "outputQty": "596494652037685792672362", - "swapFee": "0", - "redemptionFee": "238704295279294106254", + "type": "redeem", + "outputIndex": 0, + "inputQty": "242975753637247603179520", + "outputQty0": "244345882997325661564113", + "outputQty": "244218933349293192826919", + "swapFee1": "145785452182348561907", + "swapFee2": "146607529798395396938", "mpReserves": [ - "34532225744410114400272125", - "33754702512487581490318683", - "34989725396848214423451177" + "33646494645779186127500724", + "33227462615285017384669292", + "33325401424916394283113109" ], "fpReserves": [ - "4272815722278300165148387", - "2094069091459737134217534" + "1190504662380979383121365", + "690521653069338961307923" ], - "mAssetSupply": "103276615904970229413601950", - "LPTokenSupply": "6353041841103329085556270" + "mAssetSupply": "100199346820179603799585006", + "LPTokenSupply": "1872661039545598441761170" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "19258161888848603250688", - "outputQty0": "19325288772581439919363", - "outputQty": "19318589281783767605157", - "swapFee1": "11554897133309161950", - "swapFee2": "7730115509032575967", + "inputQty": "1287483159568480993280", + "outputQty0": "1294391507504687947182", + "outputQty": "1293591023390903469378", + "swapFee1": "772489895741088595", + "swapFee2": "776634904502812768", "mpReserves": [ - "34532225744410114400272125", - "33754702512487581490318683", - "34970406807566430655846020" + "33646494645779186127500724", + "33227462615285017384669292", + "33324107833893003379643731" ], "fpReserves": [ - "4253490433505718725229024", - "2094069091459737134217534" + "1189210270873474695174183", + "690521653069338961307923" ], - "mAssetSupply": "103257298346313157006258554", - "LPTokenSupply": "6333784834704193813221777" + "mAssetSupply": "100198053205307003614450592", + "LPTokenSupply": "1871373633635019534876749" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "49254043693033168896", - "outputQty0": "49425383675981428333", - "outputQty": "49402399382280669430", - "swapFee1": "29552426215819901", - "swapFee2": "19770153470392571", + "type": "mint", + "inputIndex": 1, + "inputQty": "412138746868120200151040", + "outputQty0": "412142259842177570062688", + "outputQty": "409465835584103680144529", "mpReserves": [ - "34532225744410114400272125", - "33754653110088199209649253", - "34970406807566430655846020" + "33646494645779186127500724", + "33639601362153137584820332", + "33324107833893003379643731" ], "fpReserves": [ - "4253441008122042743800691", - "2094069091459737134217534" + "1601352530715652265236871", + "690521653069338961307923" ], - "mAssetSupply": "103257248940699634495222792", - "LPTokenSupply": "6333735583615743401634871" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1051446022267217092018176", - "hardLimitError": true + "mAssetSupply": "100610195465149181184513280", + "LPTokenSupply": "2280839469219123215021278" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2417041976396213248", - "outputQty0": "2417014801167118057", - "outputQty": "2407190740735472158", + "inputQty": "91985514046968249188352", + "outputQty0": "91982336877839354439621", + "outputQty": "91324304621437286638175", "mpReserves": [ - "34532228161452090796485373", - "33754653110088199209649253", - "34970406807566430655846020" + "33738480159826154376689076", + "33639601362153137584820332", + "33324107833893003379643731" ], "fpReserves": [ - "4253443425136843910918748", - "2094069091459737134217534" + "1693334867593491619676492", + "690521653069338961307923" ], - "mAssetSupply": "103257251357714435662340849", - "LPTokenSupply": "6333737990806484137107029" + "mAssetSupply": "100702177802027020538952901", + "LPTokenSupply": "2372163773840560501659453" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "247688801698307616", - "outputQty0": "248550432558760275", - "outputQty": "248434848680533950", - "swapFee1": "148613281018984", - "swapFee2": "99420173023504", + "type": "mint", + "inputIndex": 1, + "inputQty": "73889944002486276718592", + "outputQty0": "73888179102681077041841", + "outputQty": "73344055720151725784886", "mpReserves": [ - "34532228161452090796485373", - "33754652861653350529115303", - "34970406807566430655846020" + "33738480159826154376689076", + "33713491306155623861538924", + "33324107833893003379643731" ], "fpReserves": [ - "4253443176586411352158473", - "2094069091459737134217534" + "1767223046696172696718333", + "690521653069338961307923" ], - "mAssetSupply": "103257251109263423276604078", - "LPTokenSupply": "6333737743132543766901311" + "mAssetSupply": "100776065981129701615994742", + "LPTokenSupply": "2445507829560712227444339" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "2766282989041999872", - "outputQty0": "2766137073062120167", - "outputQty": "2748078853227873786", - "swapFee": "2203915187526264", + "inputQty": "290352343516140240896", + "outputQty0": "290371591334402193024", + "outputQty": "287582169036427412221", + "swapFee": "230564901473799496", "mpReserves": [ - "34532228161452090796485373", - "33754652861653350529115303", - "34970409573849419697845892" + "33738480159826154376689076", + "33713491306155623861538924", + "33324398186236519519884627" ], "fpReserves": [ - "4253445942723484414278640", - "2094066343380883906343748" + "1767513418287507098911357", + "690234070900302533895702" ], - "mAssetSupply": "103257253875400496338724245", - "LPTokenSupply": "6333737743352935285653937" + "mAssetSupply": "100776356352721036018187766", + "LPTokenSupply": "2445507852617202374824288" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "636143540150702464", - "outputQty0": "636109984764234664", - "outputQty": "631957248449257585", - "swapFee": "506819586257861", + "type": "swap_fp_to_mp", + "inputQty": "17998943510596008542208", + "outputIndex": 0, + "outputQty": "18143700570389491179814", + "swapFee": "0", + "redemptionFee": "10892380096193305243", "mpReserves": [ - "34532228161452090796485373", - "33754652861653350529115303", - "34970410209992959848548356" + "33720336459255764885509262", + "33713491306155623861538924", + "33324398186236519519884627" ], "fpReserves": [ - "4253446578833469178513304", - "2094065711423635457086163" + "1749359451460518256839568", + "708233014410898542437910" ], - "mAssetSupply": "103257254511510481102958909", - "LPTokenSupply": "6333737743403617244279723" + "mAssetSupply": "100758213278274143369421220", + "LPTokenSupply": "2445507852617202374824288" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "70872549434486456320", - "outputQty0": "71119091010249089300", - "outputQty": "71091442504302561185", - "swapFee1": "42523529660691873", - "swapFee2": "28447636404099635", + "outputIndex": 1, + "inputQty": "118184729960626530549760", + "outputQty0": "118964966797516611189768", + "outputQty": "118896163525990700418169", + "swapFee1": "70910837976375918329", + "swapFee2": "71378980078509966713", "mpReserves": [ - "34532157070009586493924188", - "33754652861653350529115303", - "34970410209992959848548356" + "33720336459255764885509262", + "33594595142629633161120755", + "33324398186236519519884627" ], "fpReserves": [ - "4253375459742458929424004", - "2094065711423635457086163" + "1630394484663001645649800", + "708233014410898542437910" ], - "mAssetSupply": "103257183420867107257969244", - "LPTokenSupply": "6333666875106535723892590" + "mAssetSupply": "100639319690456705268198165", + "LPTokenSupply": "2327330213740373481866360" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "529047275644455616512", - "outputQty0": "529081686056069742008", - "outputQty": "525626644626419823851", - "swapFee": "421544889748411082", + "type": "swap_fp_to_mp", + "inputQty": "25908941178178879094784", + "outputIndex": 1, + "outputQty": "26074367987431602808529", + "swapFee": "0", + "redemptionFee": "15653859629671441662", "mpReserves": [ - "34532157070009586493924188", - "33755181908928994984731815", - "34970410209992959848548356" + "33720336459255764885509262", + "33568520774642201558312226", + "33324398186236519519884627" ], "fpReserves": [ - "4253904541428514999166012", - "2093540084779009037262312" + "1604304718613549242879297", + "734141955589077421532694" ], - "mAssetSupply": "103257712502553163327711252", - "LPTokenSupply": "6333666917261024698733698" + "mAssetSupply": "100613245578266882536869324", + "LPTokenSupply": "2327330213740373481866360" }, { - "type": "swap_fp_to_mp", - "inputQty": "209389987120284570746880", + "type": "redeem", "outputIndex": 1, - "outputQty": "210333683125516985191710", + "inputQty": "114249177329740608", + "outputQty0": "114965292141594034", + "outputQty": "114897194606295121", + "swapFee1": "68549506397844", + "swapFee2": "68979175284956", + "mpReserves": [ + "33720336459255764885509262", + "33568520659745006952017105", + "33324398186236519519884627" + ], + "fpReserves": [ + "1604304603648257101285263", + "734141955589077421532694" + ], + "mAssetSupply": "100613245463370569570560246", + "LPTokenSupply": "2327330099498051102765536" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "15370119755758980562944", + "outputIndex": 0, + "outputQty": "15460709614039383042471", "swapFee": "0", - "redemptionFee": "84173208041203754405", + "redemptionFee": "9281590343879678511", "mpReserves": [ - "34532157070009586493924188", - "33544848225803477999540105", - "34970410209992959848548356" + "33704875749641725502466791", + "33568520659745006952017105", + "33324398186236519519884627" ], "fpReserves": [ - "4043471521325505613151412", - "2302930071899293608009192" + "1588835286408457637099601", + "749512075344836402095638" ], - "mAssetSupply": "103047363655658195145451057", - "LPTokenSupply": "6333666917261024698733698" + "mAssetSupply": "100597785427721113986053095", + "LPTokenSupply": "2327330099498051102765536" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "60006061733696897024", - "outputQty0": "60002488152182974345", - "outputQty": "59700711360785507004", - "swapFee": "47831891780128469", + "type": "redeem", + "outputIndex": 1, + "inputQty": "56697061464244649721856", + "outputQty0": "57041676693777367801757", + "outputQty": "57007694397079860539143", + "swapFee1": "34018236878546789833", + "swapFee2": "34225006016266420681", "mpReserves": [ - "34532157070009586493924188", - "33544848225803477999540105", - "34970470216054693545445380" + "33704875749641725502466791", + "33511512965347927091477962", + "33324398186236519519884627" ], "fpReserves": [ - "4043531523813657796125757", - "2302870371187932822502188" + "1531793609714680269297844", + "749512075344836402095638" ], - "mAssetSupply": "103047423658146347328425402", - "LPTokenSupply": "6333666922044213876746544" + "mAssetSupply": "100540777976033352884672019", + "LPTokenSupply": "2270636439857494307722663" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1921929876380847504883712", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1717300914435728508715008", "hardLimitError": true }, { "type": "mint", - "inputIndex": 1, - "inputQty": "46666523176533147779072", - "outputQty0": "46670145074206844082090", - "outputQty": "46503838485451751491466", + "inputIndex": 2, + "inputQty": "8469597544846436352", + "outputQty0": "8469994201831790166", + "outputQty": "8414246922054666357", "mpReserves": [ - "34532157070009586493924188", - "33591514748980011147319177", - "34970470216054693545445380" + "33704875749641725502466791", + "33511512965347927091477962", + "33324406655834064366320979" ], "fpReserves": [ - "4090201668887864640207847", - "2302870371187932822502188" + "1531802079708882101088010", + "749512075344836402095638" ], - "mAssetSupply": "103094093803220554172507492", - "LPTokenSupply": "6380170760529665628238010" + "mAssetSupply": "100540786446027554716462185", + "LPTokenSupply": "2270644854104416362389020" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1212589587726074929741824", - "hardLimitError": true - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "89137225421622738944", - "outputQty0": "89144002695727092120", - "outputQty": "88685929788483413030", - "swapFee": "71059665653873496", + "inputIndex": 0, + "inputQty": "3544257513441111552", + "outputQty0": "3544090962113586882", + "outputQty": "3520706947036354549", + "swapFee": "2816611706471266", "mpReserves": [ - "34532157070009586493924188", - "33591603886205432770058121", - "34970470216054693545445380" + "33704879293899238943578343", + "33511512965347927091477962", + "33324406655834064366320979" ], "fpReserves": [ - "4090290812890560367299967", - "2302781685258144339089158" + "1531805623799844214674892", + "749508554637889365741089" ], - "mAssetSupply": "103094182947223249899599612", - "LPTokenSupply": "6380170767635632193625359" + "mAssetSupply": "100540789990118516830049067", + "LPTokenSupply": "2270644854386077533036146" }, { - "type": "swap_fp_to_mp", - "inputQty": "1700810663589777946705920", - "outputIndex": 2, - "outputQty": "1700489204746493577309457", - "swapFee": "0", - "redemptionFee": "680465406162123120344", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "2125099826281249243136", + "outputQty0": "2124999596190215281171", + "outputQty": "2110927825823722764700", + "swapFee": "1688806242471406532", "mpReserves": [ - "34532157070009586493924188", - "33591603886205432770058121", - "33269981011308199968135923" + "33707004393725520192821479", + "33511512965347927091477962", + "33324406655834064366320979" ], "fpReserves": [ - "2389127297485252566437840", - "4003592348847922285795078" + "1533930623396034429956063", + "747397626812065642976389" ], - "mAssetSupply": "101393699897224104221857829", - "LPTokenSupply": "6380170767635632193625359" + "mAssetSupply": "100542914989714707045330238", + "LPTokenSupply": "2270645023266701780176799" }, { "type": "swap_fp_to_mp", - "inputQty": "968022683750230786048", - "outputIndex": 2, - "outputQty": "963900732373628909060", + "inputQty": "185309559602136088576", + "outputIndex": 0, + "outputQty": "186296707445716063937", "swapFee": "0", - "redemptionFee": "385734773013633327", + "redemptionFee": "111839838759964804", "mpReserves": [ - "34532157070009586493924188", - "33591603886205432770058121", - "33269017110575826339226863" + "33706818097018074476757542", + "33511512965347927091477962", + "33324406655834064366320979" ], "fpReserves": [ - "2388162960552718483119066", - "4004560371531672516581126" + "1533744223664767821947937", + "747582936371667779064965" ], - "mAssetSupply": "101392735946026343152172382", - "LPTokenSupply": "6380170767635632193625359" + "mAssetSupply": "100542728701823279197286916", + "LPTokenSupply": "2270645023266701780176799" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "14109936537362", - "outputQty0": "14095488932220", - "outputQty": "14089112636207", - "swapFee1": "8465961922", - "swapFee2": "5638195572", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "10401510313188969676800", + "outputQty0": "10401990107034740181117", + "outputQty": "10331664113629346231961", + "swapFee": "8266589924490247981", "mpReserves": [ - "34532157070009586493924188", - "33591603886205432770058121", - "33269017110561737226590656" + "33706818097018074476757542", + "33511512965347927091477962", + "33334808166147253335997779" ], "fpReserves": [ - "2388162960538622994186846", - "4004560371531672516581126" + "1544146213771802562129054", + "737251272258038432833004" ], - "mAssetSupply": "101392735946012253301435734", - "LPTokenSupply": "6380170767621523103684189" + "mAssetSupply": "100553130691930313937468033", + "LPTokenSupply": "2270645849925694229201597" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1619988656815043584", - "outputQty0": "1619873455384016550", - "outputQty": "1624768552750942772", - "swapFee": "1296448696933517", + "inputIndex": 2, + "inputQty": "119308556569728069402624", + "outputQty0": "119312776266079735944323", + "outputQty": "118298084282207069676432", + "swapFee": "94798822051755576852", "mpReserves": [ - "34532158689998243308967772", - "33591603886205432770058121", - "33269017110561737226590656" + "33706818097018074476757542", + "33511512965347927091477962", + "33454116722716981405400403" ], "fpReserves": [ - "2388164580412078378203396", - "4004558746763119765638354" + "1663458990037882298073377", + "618953187975831363156572" ], - "mAssetSupply": "101392737565885708685452284", - "LPTokenSupply": "6380170767751167973377540" + "mAssetSupply": "100672443468196393673412356", + "LPTokenSupply": "2270655329807899404759282" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "119973310169140479131648", "outputIndex": 1, - "inputQty": "2389204478829396480", - "outputQty0": "2386758105939046289", - "outputQty": "2385755771367485545", - "swapFee1": "1433522687297637", - "swapFee2": "954703242375618", + "outputQty": "120827681174074552750643", + "swapFee": "0", + "redemptionFee": "72541675035505289845", "mpReserves": [ - "34532158689998243308967772", - "33591601500449661402572576", - "33269017110561737226590656" + "33706818097018074476757542", + "33390685284173852538727319", + "33454116722716981405400403" ], "fpReserves": [ - "2388162193653972439157107", - "4004558746763119765638354" + "1542556198312040148330074", + "738926498144971842288220" ], - "mAssetSupply": "101392735180082305988781613", - "LPTokenSupply": "6380168378690041412710823" + "mAssetSupply": "100551613218145587028958898", + "LPTokenSupply": "2270655329807899404759282" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "185231612636863062343680", - "outputQty0": "184998923426686116293504", - "outputQty": "184920093648618288433956", - "swapFee1": "111138967582117837406", - "swapFee2": "73999569370674446517", + "type": "mint", + "inputIndex": 2, + "inputQty": "10780474746606037499904", + "outputQty0": "10780632446561034293068", + "outputQty": "10708225730590311615777", "mpReserves": [ - "34532158689998243308967772", - "33406681406801043114138620", - "33269017110561737226590656" + "33706818097018074476757542", + "33390685284173852538727319", + "33464897197463587442900307" ], "fpReserves": [ - "2203163270227286322863603", - "4004558746763119765638354" + "1553336830758601182623142", + "738926498144971842288220" ], - "mAssetSupply": "101207810256224990546934626", - "LPTokenSupply": "6194947879949936562150883" + "mAssetSupply": "100562393850592148063251966", + "LPTokenSupply": "2281363555538489716375059" }, { "type": "mint", "inputIndex": 1, - "inputQty": "56337115466998524936192", - "outputQty0": "56338828681104692528588", - "outputQty": "56384483543464867420243", + "inputQty": "73712822496400105472", + "outputQty0": "73715191054510791633", + "outputQty": "73219107859078984775", "mpReserves": [ - "34532158689998243308967772", - "33463018522268041639074812", - "33269017110561737226590656" + "33706818097018074476757542", + "33390758996996348938832791", + "33464897197463587442900307" ], "fpReserves": [ - "2259502098908391015392191", - "4004558746763119765638354" + "1553410545949655693414775", + "738926498144971842288220" ], - "mAssetSupply": "101264149084906095239463214", - "LPTokenSupply": "6251332363493401429571126" + "mAssetSupply": "100562467565783202574043599", + "LPTokenSupply": "2281436774646348795359834" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1179287804118517760", - "outputQty0": "1177717441829715951", - "outputQty": "1177189759860599760", - "swapFee1": "707572682471110", - "swapFee2": "471086976731886", + "type": "swap_fp_to_mp", + "inputQty": "701202002051865088", + "outputIndex": 0, + "outputQty": "705135628250189672", + "swapFee": "0", + "redemptionFee": "423316044029468", "mpReserves": [ - "34532158689998243308967772", - "33463018522268041639074812", - "33269015933371977365990896" + "33706817391882446226567870", + "33390758996996348938832791", + "33464897197463587442900307" ], "fpReserves": [ - "2259500921190949185676240", - "4004558746763119765638354" + "1553409840422915644300097", + "738927199346973894153308" ], - "mAssetSupply": "101264147907659740386479149", - "LPTokenSupply": "6251331184276354579300477" + "mAssetSupply": "100562466860679778568958389", + "LPTokenSupply": "2281436774646348795359834" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "63733086642089995796480", - "outputQty0": "63736013556670027989461", - "outputQty": "63777344552075340612228", + "type": "swap_fp_to_mp", + "inputQty": "625637441741216020430848", + "outputIndex": 1, + "outputQty": "626017196722618739581955", + "swapFee": "0", + "redemptionFee": "375867590446029263651", "mpReserves": [ - "34532158689998243308967772", - "33463018522268041639074812", - "33332749020014067361787376" + "33706817391882446226567870", + "32764741800273730199250836", + "33464897197463587442900307" ], "fpReserves": [ - "2323236934747619213665701", - "4004558746763119765638354" + "926963856346200204881544", + "1364564641088189914584156" ], - "mAssetSupply": "101327883921216410414468610", - "LPTokenSupply": "6315108528828429919912705" + "mAssetSupply": "99936396744193509158803487", + "LPTokenSupply": "2281436774646348795359834" }, { - "type": "swap_fp_to_mp", - "inputQty": "1246060338825228976128", - "outputIndex": 0, - "outputQty": "1240589966204137229912", - "swapFee": "0", - "redemptionFee": "496398242924817704", + "type": "redeem", + "outputIndex": 1, + "inputQty": "35509008663967061508096", + "outputQty0": "35583660839739110034978", + "outputQty": "35557312956060430415035", + "swapFee1": "21305405198380236904", + "swapFee2": "21350196503843466020", "mpReserves": [ - "34530918100032039171737860", - "33463018522268041639074812", - "33332749020014067361787376" + "33706817391882446226567870", + "32729184487317669768835801", + "33464897197463587442900307" ], "fpReserves": [ - "2321995939140307169405008", - "4005804807101944994614482" + "891380195506461094846566", + "1364564641088189914584156" ], - "mAssetSupply": "101326643422007341295025621", - "LPTokenSupply": "6315108528828429919912705" + "mAssetSupply": "99900834433550273892234529", + "LPTokenSupply": "2245929896522901571875428" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "217116343295637683437568", - "outputQty0": "217121422724086559589076", - "outputQty": "217693981305094219766298", - "swapFee": "173752158609240843222", + "type": "mint", + "inputIndex": 2, + "inputQty": "14992153163026604032", + "outputQty0": "14991533889647234903", + "outputQty": "14952409916451131503", "mpReserves": [ - "34530918100032039171737860", - "33680134865563679322512380", - "33332749020014067361787376" + "33706817391882446226567870", + "32729184487317669768835801", + "33464912189616750469504339" ], "fpReserves": [ - "2539117361864393728994084", - "3788110825796850774848184" + "891395187040350742081469", + "1364564641088189914584156" ], - "mAssetSupply": "101543764844731427854614697", - "LPTokenSupply": "6315125904044290843997027" + "mAssetSupply": "99900849425084163539469432", + "LPTokenSupply": "2245944848932818023006931" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "8631242362371062104064", - "outputQty0": "8627907040777524400912", - "outputQty": "8624013547949920550615", - "swapFee1": "5178745417422637262", - "swapFee2": "3451162816311009760", + "outputIndex": 1, + "inputQty": "56687847667355303936", + "outputQty0": "56802066891620953419", + "outputQty": "56759834668702234740", + "swapFee1": "34012708600413182", + "swapFee2": "34081240134972572", "mpReserves": [ - "34530918100032039171737860", - "33680134865563679322512380", - "33324125006466117441236761" + "33706817391882446226567870", + "32729127727483001066601061", + "33464912189616750469504339" ], "fpReserves": [ - "2530489454823616204593172", - "3788110825796850774848184" + "891338384973459121128050", + "1364564641088189914584156" ], - "mAssetSupply": "101535140388853466641223545", - "LPTokenSupply": "6306495179556461524156689" + "mAssetSupply": "99900792657098512053488585", + "LPTokenSupply": "2245888164486421527744313" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3935291060972952748032", - "outputQty0": "3935493527164687214182", - "outputQty": "3943551786777343702476", - "swapFee": "3147733774190705935", + "inputIndex": 0, + "inputQty": "701813150898042613792768", + "outputQty0": "701703373670826550329466", + "outputQty": "699965921882334729911807", + "swapFee": "559182728371063319371", "mpReserves": [ - "34530918100032039171737860", - "33680134865563679322512380", - "33328060297527090393984793" + "34408630542780488840360638", + "32729127727483001066601061", + "33464912189616750469504339" ], "fpReserves": [ - "2534424948350780891807354", - "3784167274010073431145708" + "1593041758644285671457516", + "664598719205855184672349" ], - "mAssetSupply": "101539075882380631328437727", - "LPTokenSupply": "6306495494329838943227282" + "mAssetSupply": "100602496030769338603818051", + "LPTokenSupply": "2245944082759258634076250" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "4348122816491833786368", - "outputQty0": "4346448494759170412855", - "outputQty": "4344486336498439758592", - "swapFee1": "2608873689895100271", - "swapFee2": "1738579397903668165", + "outputIndex": 1, + "inputQty": "407563618020360150056960", + "outputQty0": "410162041887785091648230", + "outputQty": "409818672020767262535178", + "swapFee1": "244538170812216090034", + "swapFee2": "246097225132671054988", "mpReserves": [ - "34530918100032039171737860", - "33680134865563679322512380", - "33323715811190591954226201" + "34408630542780488840360638", + "32319309055462233804065883", + "33464912189616750469504339" ], "fpReserves": [ - "2530078499856021721394499", - "3784167274010073431145708" + "1182879716756500579809286", + "664598719205855184672349" ], - "mAssetSupply": "101534731172465270061693037", - "LPTokenSupply": "6302147632400716098950941" + "mAssetSupply": "100192580086106686183224809", + "LPTokenSupply": "1838404918555979705628293" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "449972111766851237707776", - "outputQty0": "449972618774895685057832", - "outputQty": "449707937343035026019285", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "767226285149697280", + "outputQty0": "767037718865254278", + "outputQty": "763081181894573013", + "swapFee": "609655688129778", "mpReserves": [ - "34530918100032039171737860", - "34130106977330530560220156", - "33323715811190591954226201" + "34408631310006773990057918", + "32319309055462233804065883", + "33464912189616750469504339" ], "fpReserves": [ - "2980051118630917406452331", - "3784167274010073431145708" + "1182880483794219445063564", + "664597956124673290099336" ], - "mAssetSupply": "101984703791240165746750869", - "LPTokenSupply": "6751855569743751124970226" + "mAssetSupply": "100192580853144405048479087", + "LPTokenSupply": "1838404918616945274441270" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "117116314345119825920", - "outputQty0": "117124110796511892400", - "outputQty": "117220080679643267508", - "swapFee": "93612780977436161", + "type": "redeem", + "outputIndex": 0, + "inputQty": "64344174762660560", + "outputQty0": "64724791529262436", + "outputQty": "64701858862175722", + "swapFee1": "38606504857596", + "swapFee2": "38834874917557", "mpReserves": [ - "34530918100032039171737860", - "34130106977330530560220156", - "33323832927504937074052121" + "34408631245304915127882196", + "32319309055462233804065883", + "33464912189616750469504339" ], "fpReserves": [ - "2980168242741713918344731", - "3784050053929393787878200" + "1182880419069427915801128", + "664597956124673290099336" ], - "mAssetSupply": "101984820915350962258643269", - "LPTokenSupply": "6751855579105029222713842" + "mAssetSupply": "100192580788458448394134208", + "LPTokenSupply": "1838404854276631162266469" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "691856630121157793677312", - "outputQty0": "691805724209303131794100", - "outputQty": "690888796524541941355487", + "type": "redeem", + "outputIndex": 0, + "inputQty": "98977867374321815519232", + "outputQty0": "99548631896701685733638", + "outputQty": "99512587768621041326486", + "swapFee1": "59386720424593089311", + "swapFee2": "59729179138021011440", "mpReserves": [ - "35222774730153196965415172", - "34130106977330530560220156", - "33323832927504937074052121" + "34309118657536294086555710", + "32319309055462233804065883", + "33464912189616750469504339" ], "fpReserves": [ - "3671973966951017050138831", - "3784050053929393787878200" + "1083331787172726230067490", + "664597956124673290099336" ], - "mAssetSupply": "102676626639560265390437369", - "LPTokenSupply": "7442744375629571164069329" + "mAssetSupply": "100093091885740884729412010", + "LPTokenSupply": "1739432925574351806056168" }, { - "type": "swap_fp_to_mp", - "inputQty": "10180240115733905801216", - "outputIndex": 2, - "outputQty": "10173046967290417384822", - "swapFee": "0", - "redemptionFee": "4071211303234203312", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "202553387678795701420032", + "outputQty0": "202544496728217756115157", + "outputQty": "201094828628796145674942", + "swapFee": "160980646543714311886", "mpReserves": [ - "35222774730153196965415172", - "34130106977330530560220156", - "33313659880537646656667299" + "34309118657536294086555710", + "32319309055462233804065883", + "33667465577295546170924371" ], "fpReserves": [ - "3661795938692931541858192", - "3794230294045127693679416" + "1285876283900943986182647", + "463503127495877144424394" ], - "mAssetSupply": "102666452682513483116360042", - "LPTokenSupply": "7442744375629571164069329" + "mAssetSupply": "100295636382469102485527167", + "LPTokenSupply": "1739449023639006177487356" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "758188441768300306759680", "outputIndex": 2, - "inputQty": "413748163636489027584", - "outputQty0": "414188124534447415751", - "outputQty": "413985264245724449212", - "swapFee1": "248248898181893416", - "swapFee2": "165675249813778966", + "outputQty": "758288695524576495826593", + "swapFee": "0", + "redemptionFee": "455247288695990740844", "mpReserves": [ - "35222774730153196965415172", - "34130106977330530560220156", - "33313245895273400932218087" + "34309118657536294086555710", + "32319309055462233804065883", + "32909176881770969675097778" ], "fpReserves": [ - "3661381750568397094442441", - "3794230294045127693679416" + "527130802740959418109144", + "1221691569264177451184074" ], - "mAssetSupply": "102666038660064198482723257", - "LPTokenSupply": "7442330652290824493231086" + "mAssetSupply": "99537346148597813908194508", + "LPTokenSupply": "1739449023639006177487356" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "56656918086961879580672", - "outputQty0": "56715660452295311528432", - "outputQty": "56687771479322475281413", - "swapFee1": "33994150852177127748", - "swapFee2": "22686264180918124611", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "184236249180531933052928", + "outputQty0": "184273352127569224516669", + "outputQty": "185001015525598804686666", + "swapFee": "147200266485923668847", "mpReserves": [ - "35222774730153196965415172", - "34130106977330530560220156", - "33256558123794078456936674" + "34309118657536294086555710", + "32503545304642765737118811", + "32909176881770969675097778" ], "fpReserves": [ - "3604666090116101782914009", - "3794230294045127693679416" + "711404154868528642625813", + "1036690553738578646497408" ], - "mAssetSupply": "102609345685876084089319436", - "LPTokenSupply": "7385677133618947831363188" + "mAssetSupply": "99721619500725383132711177", + "LPTokenSupply": "1739463743665654769854240" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1104056914396153613647872", - "outputQty0": "1104119340382361271946686", - "outputQty": "1101289865170689638557199", - "swapFee": "881468967514549432691", + "inputQty": "11104858473203914752", + "outputQty0": "11105758839156357935", + "outputQty": "11126241232363444224", + "swapFee": "8854600862095902", "mpReserves": [ - "35222774730153196965415172", - "34130106977330530560220156", - "34360615038190232070584546" + "34309118657536294086555710", + "32503545304642765737118811", + "32909187986629442879012530" ], "fpReserves": [ - "4708785430498463054860695", - "2692940428874438055122217" + "711415260627367798983748", + "1036679427497346283053184" ], - "mAssetSupply": "103713465026258445361266122", - "LPTokenSupply": "7385765280515699286306457" + "mAssetSupply": "99721630606484222289069112", + "LPTokenSupply": "1739463744551114856063830" }, { "type": "mint", "inputIndex": 2, - "inputQty": "322908596340268138496", - "outputQty0": "322915069679851395766", - "outputQty": "321725752787575199337", + "inputQty": "731808942852574019584", + "outputQty0": "731868230855506468846", + "outputQty": "729394668526128147429", "mpReserves": [ - "35222774730153196965415172", - "34130106977330530560220156", - "34360937946786572338723042" + "34309118657536294086555710", + "32503545304642765737118811", + "32909919795572295453032114" ], "fpReserves": [ - "4709108345568142906256461", - "2692940428874438055122217" + "712147128858223305452594", + "1036679427497346283053184" ], - "mAssetSupply": "103713787941328125212661888", - "LPTokenSupply": "7386087006268486861505794" + "mAssetSupply": "99722362474715077795537958", + "LPTokenSupply": "1740193139219640984211259" }, { "type": "swap_fp_to_mp", - "inputQty": "1623566284848945430528", - "outputIndex": 1, - "outputQty": "1629675977328066356237", + "inputQty": "4110125931814592", + "outputIndex": 2, + "outputQty": "4096519717336571", "swapFee": "0", - "redemptionFee": "652159091481721868", + "redemptionFee": "2459586559516", "mpReserves": [ - "35222774730153196965415172", - "34128477301353202493863919", - "34360937946786572338723042" + "34309118657536294086555710", + "32503545304642765737118811", + "32909919791475775735695543" ], "fpReserves": [ - "4707477947839438601586116", - "2694563995159287000552745" + "712147124758912372924593", + "1036679431607472214867776" ], - "mAssetSupply": "103712158195758512389713411", - "LPTokenSupply": "7386087006268486861505794" + "mAssetSupply": "99722362470618226449569473", + "LPTokenSupply": "1740193139219640984211259" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "31894804256934154207232", - "outputQty0": "31895408639979620174583", - "outputQty": "31733704847011810156038", - "swapFee": "25422133245455178490", + "inputQty": "252140438840264", + "outputQty0": "252160850554325", + "outputQty": "252623852557922", + "swapFee": "201046400505", "mpReserves": [ - "35222774730153196965415172", - "34128477301353202493863919", - "34392832751043506492930274" + "34309118657536294086555710", + "32503545304642765737118811", + "32909919791727916174535807" ], "fpReserves": [ - "4739373356479418221760699", - "2662830290312275190396707" + "712147125011073223478918", + "1036679431354848362309854" ], - "mAssetSupply": "103744053604398492009887994", - "LPTokenSupply": "7386089548481811407023643" + "mAssetSupply": "99722362470870387300123798", + "LPTokenSupply": "1740193139219661088851309" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "5676290396115432374272", - "outputQty0": "5676537944369921692411", - "outputQty": "5655256663821843372279", - "mpReserves": [ - "35222774730153196965415172", - "34134153591749317926238191", - "34392832751043506492930274" - ], - "fpReserves": [ - "4745049894423788143453110", - "2662830290312275190396707" - ], - "mAssetSupply": "103749730142342861931580405", - "LPTokenSupply": "7391744805145633250395922" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "9620093309397250342912", - "outputQty0": "9620508011030631978695", - "outputQty": "9584387260707268387086", + "inputIndex": 0, + "inputQty": "107828366348599861182464", + "outputQty0": "107799452747094657221361", + "outputQty": "107400915822234748142242", "mpReserves": [ - "35222774730153196965415172", - "34143773685058715176581103", - "34392832751043506492930274" + "34416947023884893947738174", + "32503545304642765737118811", + "32909919791727916174535807" ], "fpReserves": [ - "4754670402434818775431805", - "2662830290312275190396707" + "819946577758167880700279", + "1036679431354848362309854" ], - "mAssetSupply": "103759350650353892563559100", - "LPTokenSupply": "7401329192406340518783008" + "mAssetSupply": "99830161923617481957345159", + "LPTokenSupply": "1847594055041895836993551" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1674386728484877992198144", - "outputQty0": "1674201162719755552416849", - "outputQty": "1666930713635438042656576", + "type": "redeem", + "outputIndex": 2, + "inputQty": "379139090320586157588480", + "outputQty0": "379878847790270817194289", + "outputQty": "379604574703517697843702", + "swapFee1": "227483454192351694553", + "swapFee2": "227927308674162490316", "mpReserves": [ - "36897161458638074957613316", - "34143773685058715176581103", - "34392832751043506492930274" + "34416947023884893947738174", + "32503545304642765737118811", + "32530315217024398476692105" ], "fpReserves": [ - "6428871565154574327848654", - "2662830290312275190396707" + "440067729967897063505990", + "1036679431354848362309854" ], - "mAssetSupply": "105433551813073648115975949", - "LPTokenSupply": "9068259906041778561439584" + "mAssetSupply": "99450511003135885302641186", + "LPTokenSupply": "1468477713066728914574526" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "126398412349225692037120", - "outputQty0": "126377711540614423336450", - "outputQty": "125211609681457955542435", - "swapFee": "100601637345224376629", + "type": "swap_fp_to_mp", + "inputQty": "334482613202442496", + "outputIndex": 2, + "outputQty": "331694489525497313", + "swapFee": "0", + "redemptionFee": "199166979171259", "mpReserves": [ - "37023559870987300649650436", - "34143773685058715176581103", - "34392832751043506492930274" + "34416947023884893947738174", + "32503545304642765737118811", + "32530314885329908951194792" ], "fpReserves": [ - "6555249276695188751185104", - "2537618680630817234854272" + "440067398022931778073809", + "1036679765837461564752350" ], - "mAssetSupply": "105559929524614262539312399", - "LPTokenSupply": "9068269966205513083877246" + "mAssetSupply": "99450510671390086996380264", + "LPTokenSupply": "1468477713066728914574526" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "249437463605802480697344", - "outputQty0": "249460189604919072641856", - "outputQty": "246733739915028959618301", - "swapFee": "198510598081439082405", - "mpReserves": [ - "37023559870987300649650436", - "34393211148664517657278447", - "34392832751043506492930274" - ], - "fpReserves": [ - "6804709466300107823826960", - "2290884940715788275235971" - ], - "mAssetSupply": "105809389714219181611954255", - "LPTokenSupply": "9068289817265321227785486" + "type": "redeem", + "outputIndex": 1, + "inputQty": "215232462909645195837440", + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "1335338072169141764096", + "type": "redeem", "outputIndex": 1, - "outputQty": "1350120642613959922297", - "swapFee": "0", - "redemptionFee": "540309127402893165", + "inputQty": "89879388341774055374848", + "outputQty0": "89739475718557260471296", + "outputQty": "89670441128379008977551", + "swapFee1": "53927633005064433224", + "swapFee2": "53843685431134356282", "mpReserves": [ - "37023559870987300649650436", - "34391861028021903697356150", - "34392832751043506492930274" + "34416947023884893947738174", + "32413874863514386728141260", + "32530314885329908951194792" ], "fpReserves": [ - "6803358693481600590913942", - "2292220278787957417000067" + "350327922304374517602513", + "1036679765837461564752350" ], - "mAssetSupply": "105808039481709801781934402", - "LPTokenSupply": "9068289817265321227785486" + "mAssetSupply": "99360825039356960870265250", + "LPTokenSupply": "1378603717488255365643000" }, { - "type": "swap_fp_to_mp", - "inputQty": "80403453351218808619008", + "type": "redeem", "outputIndex": 0, - "outputQty": "81275492742417393469098", - "swapFee": "0", - "redemptionFee": "32518087849269191517", + "inputQty": "92828629990738919424", + "outputQty0": "92545780175583479399", + "outputQty": "92519379561035314074", + "swapFee1": "55697177994443351", + "swapFee2": "55527468105350087", "mpReserves": [ - "36942284378244883256181338", - "34391861028021903697356150", - "34392832751043506492930274" + "34416854504505332912424100", + "32413874863514386728141260", + "32530314885329908951194792" ], "fpReserves": [ - "6722063473858427612120399", - "2372623732139176225619075" + "350235376524198934123114", + "1036679765837461564752350" ], - "mAssetSupply": "105726776780174478072332376", - "LPTokenSupply": "9068289817265321227785486" + "mAssetSupply": "99360732549104253392135938", + "LPTokenSupply": "1378510894427982426167911" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "276162960225505611087872", - "outputQty0": "276182622716704181805994", - "outputQty": "272612342849113931006746", - "swapFee": "219672667339592124905", + "inputQty": "154006213485740192", + "outputQty0": "154028841658538381", + "outputQty": "155674904918893261", + "swapFee": "123525759892863", "mpReserves": [ - "36942284378244883256181338", - "34391861028021903697356150", - "34668995711269012104018146" + "34416854504505332912424100", + "32413874863514386728141260", + "32530315039336122436934984" ], "fpReserves": [ - "6998246096575131793926393", - "2100011389290062294612329" + "350235530553040592661495", + "1036679610162556645859089" ], - "mAssetSupply": "106002959402891182254138370", - "LPTokenSupply": "9068311784532055186997976" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2277645777217575215693824", - "hardLimitError": true + "mAssetSupply": "99360732703133095050674319", + "LPTokenSupply": "1378510894440335002157197" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "238177871286961222713344", - "outputQty0": "238141338948113295303290", - "outputQty": "234174933207024539876757", - "swapFee": "189250708421756306310", + "inputQty": "384578685500229091328", + "outputQty0": "384457604161257724884", + "outputQty": "388560511111430696653", + "swapFee": "308319085932211138", "mpReserves": [ - "37180462249531844478894682", - "34391861028021903697356150", - "34668995711269012104018146" + "34417239083190833141515428", + "32413874863514386728141260", + "32530315039336122436934984" ], "fpReserves": [ - "7236387435523245089229683", - "1865836456083037754735572" + "350619988157201850386379", + "1036291049651445215162436" ], - "mAssetSupply": "106241100741839295549441660", - "LPTokenSupply": "9068330709602897362628607" + "mAssetSupply": "99361117160737256308399203", + "LPTokenSupply": "1378510925272243595378310" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "95993027157691465728000", - "hardLimitError": true - }, - { - "type": "swap_fp_to_mp", - "inputQty": "24733401711587484499968", - "outputIndex": 2, - "outputQty": "25169260331221372937658", - "swapFee": "0", - "redemptionFee": "10072440579143458642", + "inputQty": "2371029031495416152064", + "outputQty0": "2370282027779641878976", + "outputQty": "2395328393648580661733", + "swapFee": "1900747419887253968", "mpReserves": [ - "37180462249531844478894682", - "34391861028021903697356150", - "34643826450937790731080488" + "34419610112222328557667492", + "32413874863514386728141260", + "32530315039336122436934984" ], "fpReserves": [ - "7211206334075386442622288", - "1890569857794625239235540" + "352990270184981492265355", + "1033895721257796634500703" ], - "mAssetSupply": "106215929712832016046292907", - "LPTokenSupply": "9068330709602897362628607" + "mAssetSupply": "99363487442765035950278179", + "LPTokenSupply": "1378511115346985584103706" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "205558305469697143865344", - "outputQty0": "206937876172715550189343", - "outputQty": "206887179552960607668942", - "swapFee1": "123334983281818286319", - "swapFee2": "82775150469086220075", - "mpReserves": [ - "36973575069978883871225740", - "34391861028021903697356150", - "34643826450937790731080488" - ], - "fpReserves": [ - "7004268457902670892432945", - "1890569857794625239235540" - ], - "mAssetSupply": "106009074611809769582323639", - "LPTokenSupply": "8862784737631528400591894" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2372362790490919665664", - "outputQty0": "2372516218657237152536", - "outputQty": "2331013169205977042192", - "swapFee": "1884375518175503794", + "outputIndex": 2, + "inputQty": "23617285564253234790400", + "outputQty0": "23536768404653759215642", + "outputQty": "23519137571567250941608", + "swapFee1": "14170371338551940874", + "swapFee2": "14122061042792255529", "mpReserves": [ - "36973575069978883871225740", - "34391861028021903697356150", - "34646198813728281650746152" + "34419610112222328557667492", + "32413874863514386728141260", + "32506795901764555185993376" ], "fpReserves": [ - "7006640974121328129585481", - "1888238844625419262193348" + "329453501780327733049713", + "1033895721257796634500703" ], - "mAssetSupply": "106011447128028426819476175", - "LPTokenSupply": "8862784926069080218142273" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "844560877763774868619264", - "hardLimitError": true + "mAssetSupply": "99339964796421424983318066", + "LPTokenSupply": "1354895246819866204507393" }, { "type": "swap_fp_to_mp", - "inputQty": "27398151321569272", - "outputIndex": 2, - "outputQty": "27851346644457709", + "inputQty": "125601445849136224", + "outputIndex": 0, + "outputQty": "123987550519771393", "swapFee": "0", - "redemptionFee": "11145716574426", + "redemptionFee": "74413583935286", "mpReserves": [ - "36973575069978883871225740", - "34391861028021903697356150", - "34646198785876935006288443" + "34419609988234778037896099", + "32413874863514386728141260", + "32506795901764555185993376" ], "fpReserves": [ - "7006640946257036693520157", - "1888238872023570583762620" + "329453377757687840905496", + "1033895846859242483636927" ], - "mAssetSupply": "106011447100175281099985277", - "LPTokenSupply": "8862784926069080218142273" + "mAssetSupply": "99339964672473198675109135", + "LPTokenSupply": "1354895246819866204507393" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2517794240746180050944", - "outputQty0": "2517956672086668430497", - "outputQty": "2473793512995343478638", - "swapFee": "1999871832125217208", + "inputIndex": 0, + "inputQty": "12762533537373000564736", + "outputQty0": "12758473147381515452151", + "outputQty": "12903582999110225806385", + "swapFee": "10237951155806156633", "mpReserves": [ - "36973575069978883871225740", - "34391861028021903697356150", - "34648716580117681186339387" + "34432372521772151038460835", + "32413874863514386728141260", + "32506795901764555185993376" ], "fpReserves": [ - "7009158902929123361950654", - "1885765078510575240283982" + "342211850905069356357647", + "1020992263860132257830542" ], - "mAssetSupply": "106013965056847367768415774", - "LPTokenSupply": "8862785126056263430663993" + "mAssetSupply": "99352723145620580190561286", + "LPTokenSupply": "1354896270614981785123056" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "8871549134420352958464", - "outputQty0": "8930530873623308232604", - "outputQty": "8928286345690325233966", - "swapFee1": "5322929480652211775", - "swapFee2": "3572212349449323293", + "type": "mint", + "inputIndex": 2, + "inputQty": "143799091627774951030784", + "outputQty0": "143819203289892291723557", + "outputQty": "143860843653206633679040", "mpReserves": [ - "36964646783633193545991774", - "34391861028021903697356150", - "34648716580117681186339387" + "34432372521772151038460835", + "32413874863514386728141260", + "32650594993392330137024160" ], "fpReserves": [ - "7000228372055500053718050", - "1885765078510575240283982" + "486031054194961648081204", + "1020992263860132257830542" ], - "mAssetSupply": "106005038098186093909506463", - "LPTokenSupply": "8853914109214791142926706" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "264078607573923760439296", - "hardLimitError": true + "mAssetSupply": "99496542348910472482284843", + "LPTokenSupply": "1498757114268188418802096" }, { "type": "swap_fp_to_mp", - "inputQty": "46155734985466758299648", - "outputIndex": 0, - "outputQty": "46909011807137695233872", + "inputQty": "198301159825491132416", + "outputIndex": 2, + "outputQty": "196943307515624351037", "swapFee": "0", - "redemptionFee": "18768352008228845141", + "redemptionFee": "118252002081494058", "mpReserves": [ - "36917737771826055850757902", - "34391861028021903697356150", - "34648716580117681186339387" + "34432372521772151038460835", + "32413874863514386728141260", + "32650398050084814512673123" ], "fpReserves": [ - "6953307492034927940864298", - "1931920813496041998583630" + "485833967524825824650451", + "1021190565019957748962958" ], - "mAssetSupply": "105958135986517530025497852", - "LPTokenSupply": "8853914109214791142926706" + "mAssetSupply": "99496345380492338740348148", + "LPTokenSupply": "1498757114268188418802096" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "9271537759345001365504", - "outputQty0": "9331341286887949862298", - "outputQty": "9327020956635869914277", - "swapFee1": "5562922655607000819", - "swapFee2": "3732536514755179944", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "4184177140861014376448", + "outputQty0": "4182889551311392527546", + "outputQty": "4204997749560806294885", + "swapFee": "3341716170644050339", "mpReserves": [ - "36917737771826055850757902", - "34391861028021903697356150", - "34639389559161045316425110" + "34436556698913012052837283", + "32413874863514386728141260", + "32650398050084814512673123" ], "fpReserves": [ - "6943976150748039991002000", - "1931920813496041998583630" + "490016857076137217177997", + "1016985567270396942668073" ], - "mAssetSupply": "105948808377767156830815498", - "LPTokenSupply": "8844643127747711702261283" + "mAssetSupply": "99500528270043650132875694", + "LPTokenSupply": "1498757448439805483207129" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "245999224339270605996032", - "outputQty0": "246018810160202824542844", - "outputQty": "244270201708309872298234", + "inputIndex": 0, + "inputQty": "313384969073914391035904", + "outputQty0": "313280867959486608349048", + "outputQty": "312317785388280009285102", "mpReserves": [ - "36917737771826055850757902", - "34637860252361174303352182", - "34639389559161045316425110" + "34749941667986926443873187", + "32413874863514386728141260", + "32650398050084814512673123" ], "fpReserves": [ - "7189994960908242815544844", - "1931920813496041998583630" + "803297725035623825527045", + "1016985567270396942668073" ], - "mAssetSupply": "106194827187927359655358342", - "LPTokenSupply": "9088913329456021574559517" + "mAssetSupply": "99813809138003136741224742", + "LPTokenSupply": "1811075233828085492492231" }, { "type": "swap_fp_to_mp", - "inputQty": "133959855406845496655872", + "inputQty": "45026301084665647202304", "outputIndex": 0, - "outputQty": "136050940858395481032636", + "outputQty": "44926916319230164615562", "swapFee": "0", - "redemptionFee": "54434831383736114963", + "redemptionFee": "26962818050684284394", "mpReserves": [ - "36781686830967660369725266", - "34637860252361174303352182", - "34639389559161045316425110" + "34705014751667696279257625", + "32413874863514386728141260", + "32650398050084814512673123" ], "fpReserves": [ - "7053907882448902528135736", - "2065880668902887495239502" + "758359694951150018202783", + "1062011868355062589870377" ], - "mAssetSupply": "106058794544299403104064197", - "LPTokenSupply": "9088913329456021574559517" + "mAssetSupply": "99768898070736713618184874", + "LPTokenSupply": "1811075233828085492492231" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "273416225583147974656", - "outputQty0": "275095591549282844483", - "outputQty": "274967077859590925200", - "swapFee1": "164049735349888784", - "swapFee2": "110038236619713137", + "type": "swap_fp_to_mp", + "inputQty": "842017996076792871387136", + "outputIndex": 1, + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "202155395460556925173760", + "outputQty0": "202194534044869211656145", + "outputQty": "201335837166788376993286", "mpReserves": [ - "36781686830967660369725266", - "34637860252361174303352182", - "34639114592083185725499910" + "34705014751667696279257625", + "32616030258974943653315020", + "32650398050084814512673123" ], "fpReserves": [ - "7053632786857353245291253", - "2065880668902887495239502" + "960554228996019229858928", + "1062011868355062589870377" ], - "mAssetSupply": "106058519558746090440932851", - "LPTokenSupply": "9088639929635411961573739" + "mAssetSupply": "99971092604781582829841019", + "LPTokenSupply": "2012411070994873869485517" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2445888341535706578944", - "outputQty0": "2446052811542205186443", - "outputQty": "2429659618965317538887", + "inputQty": "1840720384161560395776", + "outputQty0": "1841044169497579823480", + "outputQty": "1832436635340886936119", "mpReserves": [ - "36781686830967660369725266", - "34640306140702710009931126", - "34639114592083185725499910" + "34705014751667696279257625", + "32617870979359105213710796", + "32650398050084814512673123" ], "fpReserves": [ - "7056078839668895450477696", - "2065880668902887495239502" + "962395273165516809682408", + "1062011868355062589870377" ], - "mAssetSupply": "106060965611557632646119294", - "LPTokenSupply": "9091069589254377279112626" + "mAssetSupply": "99972933648951080409664499", + "LPTokenSupply": "2014243507630214756421636" }, { - "type": "swap_fp_to_mp", - "inputQty": "77371691884946808373248", - "outputIndex": 2, - "outputQty": "78429273868440444533385", - "swapFee": "0", - "redemptionFee": "31386455378602311406", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1565832675415293165568", + "outputQty0": "1572244747087559295656", + "outputQty": "1571025091328888140760", + "swapFee1": "939499605249175899", + "swapFee2": "943346848252535577", "mpReserves": [ - "36781686830967660369725266", - "34640306140702710009931126", - "34560685318214745280966525" + "34705014751667696279257625", + "32616299954267776325570036", + "32650398050084814512673123" ], "fpReserves": [ - "6977612701222389671962079", - "2143252360787834303612750" + "960823028418429250386752", + "1062011868355062589870377" ], - "mAssetSupply": "105982530859566505469915083", - "LPTokenSupply": "9091069589254377279112626" + "mAssetSupply": "99971362347550841102904420", + "LPTokenSupply": "2012677768904759988173657" }, { - "type": "swap_fp_to_mp", - "inputQty": "1978430428914149", - "outputIndex": 1, - "outputQty": "2004342708264896", - "swapFee": "0", - "redemptionFee": "802109722303", + "type": "mint", + "inputIndex": 1, + "inputQty": "219401932836306583289856", + "outputQty0": "219436404050999555842935", + "outputQty": "218332492588125110676359", "mpReserves": [ - "36781686830967660369725266", - "34640306138698367301666230", - "34560685318214745280966525" + "34705014751667696279257625", + "32835701887104082908859892", + "32650398050084814512673123" ], "fpReserves": [ - "6977612699217115366202197", - "2143252362766264732526899" + "1180259432469428806229687", + "1062011868355062589870377" ], - "mAssetSupply": "105982530857562033273877504", - "LPTokenSupply": "9091069589254377279112626" + "mAssetSupply": "100190798751601840658747355", + "LPTokenSupply": "2231010261492885098850016" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "1076503475863399432192", - "outputQty0": "1082824592893243927606", - "outputQty": "1082321502911572071907", - "swapFee1": "645902085518039659", - "swapFee2": "433129837157297571", + "outputIndex": 0, + "inputQty": "8570751700479534694400", + "outputQty0": "8611608768446877241503", + "outputQty": "8609147796195099603396", + "swapFee1": "5142451020287720816", + "swapFee2": "5166965261068126344", "mpReserves": [ - "36781686830967660369725266", - "34639223817195455729594323", - "34560685318214745280966525" + "34696405603871501179654229", + "32835701887104082908859892", + "32650398050084814512673123" ], "fpReserves": [ - "6976529874624222122274591", - "2143252362766264732526899" + "1171647823700981928988184", + "1062011868355062589870377" ], - "mAssetSupply": "105981448466098977187247469", - "LPTokenSupply": "9089993150368722431484399" + "mAssetSupply": "100182192309798654849632196", + "LPTokenSupply": "2222440024037507592927697" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "1188067662842123776", - "outputQty0": "1195043438017502171", - "outputQty": "1194724235526357673", - "swapFee1": "712840597705274", - "swapFee2": "478017375207000", + "inputQty": "7176152453958638592", + "outputQty0": "7210292163883164124", + "outputQty": "7208226884620888796", + "swapFee1": "4305691472375183", + "swapFee2": "4326175298329898", "mpReserves": [ - "36781685636243424843367593", - "34639223817195455729594323", - "34560685318214745280966525" + "34696398395644616558765433", + "32835701887104082908859892", + "32650398050084814512673123" ], "fpReserves": [ - "6976528679580784104772420", - "2143252362766264732526899" + "1171640613408818045824060", + "1062011868355062589870377" ], - "mAssetSupply": "105981447271533556544952298", - "LPTokenSupply": "9089991962372343649131150" + "mAssetSupply": "100182185103832666264797970", + "LPTokenSupply": "2222432848315622781526623" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "142931535554612847181824", - "outputQty0": "142941212472486478421980", - "outputQty": "142013551488046289186436", + "type": "redeem", + "outputIndex": 2, + "inputQty": "18519310109374307893248", + "outputQty0": "18606939215493992183915", + "outputQty": "18592299163260844359998", + "swapFee1": "11111586065624584735", + "swapFee2": "11164163529296395310", "mpReserves": [ - "36781685636243424843367593", - "34639223817195455729594323", - "34703616853769358128148349" + "34696398395644616558765433", + "32835701887104082908859892", + "32631805750921553668313125" ], "fpReserves": [ - "7119469892053270583194400", - "2143252362766264732526899" + "1153033674193324053640145", + "1062011868355062589870377" ], - "mAssetSupply": "106124388484006043023374278", - "LPTokenSupply": "9232005513860389938317586" + "mAssetSupply": "100163589328780701569009365", + "LPTokenSupply": "2203914649364855036091848" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "223670688934515450052608", - "outputQty0": "223683163459496975416846", - "outputQty": "220014505524255813845217", - "swapFee": "177759517976818230699", + "inputQty": "370597747621491923484672", + "outputQty0": "370655817690358505551979", + "outputQty": "368527165064262834726194", "mpReserves": [ - "36781685636243424843367593", - "34639223817195455729594323", - "34927287542703873578200957" + "34696398395644616558765433", + "32835701887104082908859892", + "33002403498543045591797797" ], "fpReserves": [ - "7343153055512767558611246", - "1923237857242008918681682" + "1523689491883682559192124", + "1062011868355062589870377" ], - "mAssetSupply": "106348071647465539998791124", - "LPTokenSupply": "9232023289812187620140655" + "mAssetSupply": "100534245146471060074561344", + "LPTokenSupply": "2572441814429117870818042" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3792635123869530718208", - "outputQty0": "3792925196485036962767", - "outputQty": "3764885429397117137932", + "inputQty": "6240913306830486110208", + "outputQty0": "6241956415571968299727", + "outputQty": "6203473561116407708213", "mpReserves": [ - "36781685636243424843367593", - "34643016452319325260312531", - "34927287542703873578200957" + "34696398395644616558765433", + "32841942800410913394970100", + "33002403498543045591797797" ], "fpReserves": [ - "7346945980709252595574013", - "1923237857242008918681682" + "1529931448299254527491851", + "1062011868355062589870377" ], - "mAssetSupply": "106351864572662025035753891", - "LPTokenSupply": "9235788175241584737278587" + "mAssetSupply": "100540487102886632042861071", + "LPTokenSupply": "2578645287990234278526255" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "522710594195926707863552", - "hardLimitError": true + "type": "swap_fp_to_mp", + "inputQty": "1150387006148683", + "outputIndex": 1, + "outputQty": "1152444255023692", + "swapFee": "0", + "redemptionFee": "691996953130", + "mpReserves": [ + "34696398395644616558765433", + "32841942799258469139946408", + "33002403498543045591797797" + ], + "fpReserves": [ + "1529931447145926272273912", + "1062011869505449596019060" + ], + "mAssetSupply": "100540487101733995784596262", + "LPTokenSupply": "2578645287990234278526255" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "526404021388502024323072", - "hardLimitError": true - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2216741506083766927360", - "outputQty0": "2216910612736165865838", - "outputQty": "2200516022240229668778", + "inputIndex": 2, + "inputQty": "80567325914149", + "outputQty0": "80577442237703", + "outputQty": "80307653893410", + "swapFee": "64064117173", "mpReserves": [ - "36781685636243424843367593", - "34645233193825409027239891", - "34927287542703873578200957" + "34696398395644616558765433", + "32841942799258469139946408", + "33002403498623612917711946" ], "fpReserves": [ - "7349162891321988761439851", - "1923237857242008918681682" + "1529931447226503714511615", + "1062011869425141942125650" ], - "mAssetSupply": "106354081483274761201619729", - "LPTokenSupply": "9237988691263824966947365" + "mAssetSupply": "100540487101814573226833965", + "LPTokenSupply": "2578645287990240684937972" }, { - "type": "swap_fp_to_mp", - "inputQty": "209280590578886807388160", - "outputIndex": 0, - "outputQty": "212562878256614051806037", - "swapFee": "0", - "redemptionFee": "85049372207374768730", + "type": "mint", + "inputIndex": 1, + "inputQty": "440851783396481256390656", + "outputQty0": "440908695890679647663907", + "outputQty": "437998006655476761057735", "mpReserves": [ - "36569122757986810791561556", - "34645233193825409027239891", - "34927287542703873578200957" + "34696398395644616558765433", + "33282794582654950396337064", + "33002403498623612917711946" ], "fpReserves": [ - "7136539460803551839612402", - "2132518447820895726069842" + "1970840143117183362175522", + "1062011869425141942125650" ], - "mAssetSupply": "106141543102128531654561010", - "LPTokenSupply": "9237988691263824966947365" + "mAssetSupply": "100981395797705252874497872", + "LPTokenSupply": "3016643294645717445995707" }, { "type": "swap_fp_to_mp", - "inputQty": "148114353584306464489472", - "outputIndex": 1, - "outputQty": "149996222715248277421796", + "inputQty": "3751282288183971328", + "outputIndex": 2, + "outputQty": "3766391123348905542", "swapFee": "0", - "redemptionFee": "60026972342171723306", + "redemptionFee": "2261559822650151", "mpReserves": [ - "36569122757986810791561556", - "34495236971110160749818095", - "34927287542703873578200957" + "34696398395644616558765433", + "33282794582654950396337064", + "33002399732232489568806404" ], "fpReserves": [ - "6986472029948122531346425", - "2280632801405202190559314" + "1970836373850812278589366", + "1062015620707430126096978" ], - "mAssetSupply": "105991535698245444518018339", - "LPTokenSupply": "9237988691263824966947365" + "mAssetSupply": "100981392030700441613561867", + "LPTokenSupply": "3016643294645717445995707" }, { "type": "swap_fp_to_mp", - "inputQty": "603733901857408640", - "outputIndex": 1, - "outputQty": "610810304380538192", + "inputQty": "3137063799060223754240", + "outputIndex": 0, + "outputQty": "3150923111578956046499", "swapFee": "0", - "redemptionFee": "244441315355298", + "redemptionFee": "1891218502143808041", "mpReserves": [ - "36569122757986810791561556", - "34495236360299856369279903", - "34927287542703873578200957" + "34693247472533037602718934", + "33282794582654950396337064", + "33002399732232489568806404" ], "fpReserves": [ - "6986471418844834143099441", - "2280633405139104047967954" + "1967684343013905931853111", + "1065152684506490349851218" ], - "mAssetSupply": "105991535087386597445126653", - "LPTokenSupply": "9237988691263824966947365" + "mAssetSupply": "100978241891082037410633653", + "LPTokenSupply": "3016643294645717445995707" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "951135184475641845121024", - "outputQty0": "951142090415818716382009", - "outputQty": "944979779248837336763279", + "type": "redeem", + "outputIndex": 0, + "inputQty": "29944978367051592630272", + "outputQty0": "30137017347204553806942", + "outputQty": "30126348745654075750109", + "swapFee1": "17966987020230955578", + "swapFee2": "18082210408322732284", "mpReserves": [ - "36569122757986810791561556", - "34495236360299856369279903", - "35878422727179515423321981" + "34663121123787383526968825", + "33282794582654950396337064", + "33002399732232489568806404" ], "fpReserves": [ - "7937613509260652859481450", - "2280633405139104047967954" + "1937547325666701378046169", + "1065152684506490349851218" ], - "mAssetSupply": "106942677177802416161508662", - "LPTokenSupply": "10182968470512662303710644" + "mAssetSupply": "100948122955945241179558995", + "LPTokenSupply": "2986700112977367876460992" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "291402013663545050267648", - "outputQty0": "293197811041326852435869", - "outputQty": "293045394724124541218803", - "swapFee1": "174841208198127030160", - "swapFee2": "117279124416530740974", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "10794812073211230208", + "outputQty0": "10795774921444674427", + "outputQty": "10737811030683073858", + "swapFee": "8576623678726188", "mpReserves": [ - "36569122757986810791561556", - "34202190965575731828061100", - "35878422727179515423321981" + "34663121123787383526968825", + "33282805377467023607567272", + "33002399732232489568806404" ], "fpReserves": [ - "7644415698219326007045581", - "2280633405139104047967954" + "1937558121441622822720596", + "1065141946695459666777360" ], - "mAssetSupply": "106649596645885505839813767", - "LPTokenSupply": "9891583940969937066146012" + "mAssetSupply": "100948133751720162624233422", + "LPTokenSupply": "2986700113835030244333610" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "81370374367109357502464", - "outputQty0": "81861774132870219035238", - "outputQty": "81818186596616867847608", - "swapFee1": "48822224620265614501", - "swapFee2": "32744709653148087614", + "outputIndex": 0, + "inputQty": "21730721500046430208", + "outputQty0": "21869605899699123921", + "outputQty": "21861813005395667560", + "swapFee1": "13038432900027858", + "swapFee2": "13121763539819474", "mpReserves": [ - "36569122757986810791561556", - "34120372778979114960213492", - "35878422727179515423321981" + "34663099261974378131301265", + "33282805377467023607567272", + "33002399732232489568806404" ], "fpReserves": [ - "7562553924086455788010343", - "2280633405139104047967954" + "1937536251835723123596675", + "1065141946695459666777360" ], - "mAssetSupply": "106567767616462288768866143", - "LPTokenSupply": "9810218448825289735204998" + "mAssetSupply": "100948111895236026464928975", + "LPTokenSupply": "2986678384417373487906187" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "198506125198281924411392", - "outputQty0": "199684965804987615522942", - "outputQty": "199576733267920515970684", - "swapFee1": "119103675118969154646", - "swapFee2": "79873986321995046209", + "outputIndex": 0, + "inputQty": "1825304985676007604224", + "outputQty0": "1836967707843137304247", + "outputQty": "1836312868968331950463", + "swapFee1": "1095182991405604562", + "swapFee2": "1102180624705882382", "mpReserves": [ - "36569122757986810791561556", - "33920796045711194444242808", - "35878422727179515423321981" + "34661262949105409799350802", + "33282805377467023607567272", + "33002399732232489568806404" ], "fpReserves": [ - "7362868958281468172487401", - "2280633405139104047967954" + "1935699284127879986292428", + "1065141946695459666777360" ], - "mAssetSupply": "106368162524643623148389410", - "LPTokenSupply": "9611724233994519707709070" + "mAssetSupply": "100946276029708808033507110", + "LPTokenSupply": "2984853188949996620862419" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1768322432108499566592", - "outputQty0": "1778710559554519114653", - "outputQty": "1778182047183911938031", - "swapFee1": "1060993459265099739", - "swapFee2": "711484223821807645", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "6978401311819653185536", + "outputQty0": "6979018624974860836912", + "outputQty": "6941264714666865845115", + "swapFee": "5544411341401427402", "mpReserves": [ - "36567344575939626879623525", - "33920796045711194444242808", - "35878422727179515423321981" + "34661262949105409799350802", + "33289783778778843260752808", + "33002399732232489568806404" ], "fpReserves": [ - "7361090247721913653372748", - "2280633405139104047967954" + "1942678302752854847129340", + "1058200681980792800932245" ], - "mAssetSupply": "106366384525568292451082402", - "LPTokenSupply": "9609956017661757134652451" + "mAssetSupply": "100953255048333782894344022", + "LPTokenSupply": "2984853743391130761005159" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "4244906400931539", "outputIndex": 1, - "inputQty": "89783314558232419106816", - "outputQty0": "90307671111763928782438", - "outputQty": "90257832493831563846158", - "swapFee1": "53869988734939451464", - "swapFee2": "36123068444705571512", + "outputQty": "4261861564433936", + "swapFee": "0", + "redemptionFee": "2558876974553", "mpReserves": [ - "36567344575939626879623525", - "33830538213217362880396650", - "35878422727179515423321981" + "34661262949105409799350802", + "33289783774516981696318872", + "33002399732232489568806404" ], "fpReserves": [ - "7270782576610149724590310", - "2280633405139104047967954" + "1942678298488059889540375", + "1058200686225699201863784" ], - "mAssetSupply": "106276112977524973227871476", - "LPTokenSupply": "9520178090102398209490781" + "mAssetSupply": "100953255044071546813729610", + "LPTokenSupply": "2984853743391130761005159" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "1035185655481480773632", - "outputQty0": "1041201335417336089304", - "outputQty": "1040830436505629432514", - "swapFee1": "621111393288888464", - "swapFee2": "416480534166934435", + "outputIndex": 0, + "inputQty": "29476734433506367635456", + "outputQty0": "29665341921428175437061", + "outputQty": "29654677929251503172343", + "swapFee1": "17686040660103820581", + "swapFee2": "17799205152856905262", "mpReserves": [ - "36567344575939626879623525", - "33830538213217362880396650", - "35877381896743009793889467" + "34631608271176158296178459", + "33289783774516981696318872", + "33002399732232489568806404" ], "fpReserves": [ - "7269741375274732388501006", - "2280633405139104047967954" + "1913012956566631714103314", + "1058200686225699201863784" ], - "mAssetSupply": "106275072192670090058716607", - "LPTokenSupply": "9519142966558056057605995" + "mAssetSupply": "100923607501355271495197811", + "LPTokenSupply": "2955378777561690403751761" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "3594210431955782598656", - "outputQty0": "3593829938253829349172", - "outputQty": "3570918665745619006051", + "inputQty": "1195097011234195636224", + "outputQty0": "1194812092042142612704", + "outputQty": "1188459231728674514869", + "swapFee": "949222190811877679", "mpReserves": [ - "36570938786371582662222181", - "33830538213217362880396650", - "35877381896743009793889467" + "34632803368187392491814683", + "33289783774516981696318872", + "33002399732232489568806404" ], "fpReserves": [ - "7273335205212986217850178", - "2280633405139104047967954" + "1914207768658673856716018", + "1057012226993970527348915" ], - "mAssetSupply": "106278666022608343888065779", - "LPTokenSupply": "9522713885223801676612046" + "mAssetSupply": "100924802313447313637810515", + "LPTokenSupply": "2955378872483909484939528" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "14009089597468981248", - "outputQty0": "14007605065669370119", - "outputQty": "13815534124181699836", - "swapFee": "11134628434464922", + "type": "swap_fp_to_mp", + "inputQty": "56048725658345918169088", + "outputIndex": 1, + "outputQty": "56243010582502249769949", + "swapFee": "0", + "redemptionFee": "33769114957335000633", "mpReserves": [ - "36570952795461180131203429", - "33830538213217362880396650", - "35877381896743009793889467" + "34632803368187392491814683", + "33233540763934479446548923", + "33002399732232489568806404" ], "fpReserves": [ - "7273349212818051887220297", - "2280619589604979866268118" + "1857925910396448855660847", + "1113060952652316445518003" ], - "mAssetSupply": "106278680030213409557435898", - "LPTokenSupply": "9522713886337264520058538" + "mAssetSupply": "100868554224300045971755977", + "LPTokenSupply": "2955378872483909484939528" }, { - "type": "swap_fp_to_mp", - "inputQty": "331837219047045201920", - "outputIndex": 2, - "outputQty": "336060938605112421470", - "swapFee": "0", - "redemptionFee": "134472297600351505", + "type": "mint", + "inputIndex": 0, + "inputQty": "386048516073826862235648", + "outputQty0": "385943222469547132924059", + "outputQty": "383242741472354708462477", "mpReserves": [ - "36570952795461180131203429", - "33830538213217362880396650", - "35877045835804404681467997" + "35018851884261219354050331", + "33233540763934479446548923", + "33002399732232489568806404" ], "fpReserves": [ - "7273013032074051008457002", - "2280951426824026911470038" + "2243869132865995988584906", + "1113060952652316445518003" ], - "mAssetSupply": "106278343983941706279024108", - "LPTokenSupply": "9522713886337264520058538" + "mAssetSupply": "101254497446769593104680036", + "LPTokenSupply": "3338621613956264193402005" }, { "type": "swap_fp_to_mp", - "inputQty": "11991904549313982", - "outputIndex": 2, - "outputQty": "12144514715042709", + "inputQty": "5067758326848581271552", + "outputIndex": 1, + "outputQty": "5092648976407827246473", "swapFee": "0", - "redemptionFee": "4859537738938", + "redemptionFee": "3057810541094498062", "mpReserves": [ - "36570952795461180131203429", - "33830538213217362880396650", - "35877045823659889966425288" + "35018851884261219354050331", + "33228448114958071619302450", + "33002399732232489568806404" ], "fpReserves": [ - "7273013019925206661111729", - "2280951438815931460784020" + "2238772781964171825146740", + "1118128710979165026789555" ], - "mAssetSupply": "106278343971797721469417773", - "LPTokenSupply": "9522713886337264520058538" + "mAssetSupply": "101249404153678310035739932", + "LPTokenSupply": "3338621613956264193402005" }, { - "type": "swap_fp_to_mp", - "inputQty": "71598014621705410969600", - "outputIndex": 2, - "outputQty": "72476358771490398296491", - "swapFee": "0", - "redemptionFee": "29000943167659111793", + "type": "redeem", + "outputIndex": 0, + "inputQty": "13836803005720351997952", + "outputQty0": "13930007152950172410017", + "outputQty": "13925849780875447921083", + "swapFee1": "8302081803432211198", + "swapFee2": "8358004291770103446", "mpReserves": [ - "36570952795461180131203429", - "33830538213217362880396650", - "35804569464888399568128797" + "35004926034480343906129248", + "33228448114958071619302450", + "33002399732232489568806404" ], "fpReserves": [ - "7200510662006058881627981", - "2352549453437636871753620" + "2224842774811221652736723", + "1118128710979165026789555" ], - "mAssetSupply": "106205870614821741349045818", - "LPTokenSupply": "9522713886337264520058538" + "mAssetSupply": "101235482504529651633433361", + "LPTokenSupply": "3324785641158724184625172" }, { - "type": "swap_fp_to_mp", - "inputQty": "46627832728418798010368", - "outputIndex": 1, - "outputQty": "47157153125130353227305", - "swapFee": "0", - "redemptionFee": "18873323177195196931", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "169032440417595785216", + "outputQty0": "169053700983126358760", + "outputQty": "167988558116364849252", + "swapFee": "134258697964826093", "mpReserves": [ - "36570952795461180131203429", - "33783381060092232527169345", - "35804569464888399568128797" + "35004926034480343906129248", + "33228617147398489215087666", + "33002399732232489568806404" ], "fpReserves": [ - "7153327354063070889298339", - "2399177286166055669763988" + "2225011828512204779095483", + "1117960722421048661940303" ], - "mAssetSupply": "106158706180201930551913107", - "LPTokenSupply": "9522713886337264520058538" + "mAssetSupply": "101235651558230634759792121", + "LPTokenSupply": "3324785654584593981107781" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "62878766481546256384", - "outputQty0": "63221967276548846935", - "outputQty": "63199252606120029659", - "swapFee1": "37727259888927753", - "swapFee2": "25288786910619538", + "type": "mint", + "inputIndex": 2, + "inputQty": "83274333801306476511232", + "outputQty0": "83289010200684931131938", + "outputQty": "82677082316272332929223", "mpReserves": [ - "36570952795461180131203429", - "33783381060092232527169345", - "35804506265635793448099138" + "35004926034480343906129248", + "33228617147398489215087666", + "33085674066033796045317636" ], "fpReserves": [ - "7153264132095794340451404", - "2399177286166055669763988" + "2308300838712889710227421", + "1117960722421048661940303" ], - "mAssetSupply": "106158642983523440913685710", - "LPTokenSupply": "9522651011343508962694929" + "mAssetSupply": "101318940568431319690924059", + "LPTokenSupply": "3407462736900866314037004" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "33996553096560201695232", - "outputQty0": "33995133096637409478759", - "outputQty": "33789895577444896871528", + "inputQty": "1571874280007074274344960", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "392180303022531870720", + "outputQty0": "394872984702668500143", + "outputQty": "394583641215070064675", + "swapFee1": "235308181813519122", + "swapFee2": "236923790821601100", "mpReserves": [ - "36570952795461180131203429", - "33783381060092232527169345", - "35838502818732353649794370" + "35004926034480343906129248", + "33228222563757274145022991", + "33085674066033796045317636" ], "fpReserves": [ - "7187259265192431749930163", - "2399177286166055669763988" + "2307905965728187041727278", + "1117960722421048661940303" ], - "mAssetSupply": "106192638116620078323164469", - "LPTokenSupply": "9556440906920953859566457" + "mAssetSupply": "101318545932370407844025016", + "LPTokenSupply": "3407070580128661963518196" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "181547364723990593536", - "outputQty0": "182542678436837031535", - "outputQty": "182489485925191248095", - "swapFee1": "108928418834394356", - "swapFee2": "73017071374734812", + "inputQty": "8521879710867979264", + "outputQty0": "8580388007065643000", + "outputQty": "8577760583718514498", + "swapFee1": "5113127826520787", + "swapFee2": "5148232804239385", "mpReserves": [ - "36570770305975254939955334", - "33783381060092232527169345", - "35838502818732353649794370" + "35004917456719760187614750", + "33228222563757274145022991", + "33085674066033796045317636" ], "fpReserves": [ - "7187076722513994912898628", - "2399177286166055669763988" + "2307897385340179976084278", + "1117960722421048661940303" ], - "mAssetSupply": "106192455646958712860867746", - "LPTokenSupply": "9556259370449071752412356" + "mAssetSupply": "101318537357130633582621401", + "LPTokenSupply": "3407062058760263878191010" }, { "type": "mint", "inputIndex": 1, - "inputQty": "709018674912236797952", - "outputQty0": "709130068199673495869", - "outputQty": "704840239970399303685", + "inputQty": "19554448254482", + "outputQty0": "19557046663938", + "outputQty": "19412036181157", "mpReserves": [ - "36570770305975254939955334", - "33784090078767144763967297", - "35838502818732353649794370" + "35004917456719760187614750", + "33228222563776828593277473", + "33085674066033796045317636" ], "fpReserves": [ - "7187785852582194586394497", - "2399177286166055669763988" + "2307897385359737022748216", + "1117960722421048661940303" ], - "mAssetSupply": "106193164777026912534363615", - "LPTokenSupply": "9556964210689042151716041" + "mAssetSupply": "101318537357150190629285339", + "LPTokenSupply": "3407062058779675914372167" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "7682722913673833086976", - "outputQty0": "7682392353494955926361", - "outputQty": "7586836811604685824499", - "swapFee": "6108716399778582174", + "inputQty": "84852683123554550546432", + "outputQty0": "84866420154508291575403", + "outputQty": "84238157902784509575180", + "swapFee": "67385037232849922568", "mpReserves": [ - "36570770305975254939955334", - "33784090078767144763967297", - "35846185541646027482881346" + "35004917456719760187614750", + "33228222563776828593277473", + "33170526749157350595864068" ], "fpReserves": [ - "7195468244935689542320858", - "2391590449354450983939489" + "2392763805514245314323619", + "1033722564518264152365123" ], - "mAssetSupply": "106200847169380407490289976", - "LPTokenSupply": "9556964821560682129574258" + "mAssetSupply": "101403403777304698920860742", + "LPTokenSupply": "3407068797283399199364423" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2604325444134914490368", - "outputQty0": "2604212570233228946562", - "outputQty": "2588397832064813425210", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "76444169594958020608", + "outputQty0": "76454875347558401218", + "outputQty": "75832445886245528003", + "swapFee": "60681803378648135", "mpReserves": [ - "36570770305975254939955334", - "33784090078767144763967297", - "35848789867090162397371714" + "35004917456719760187614750", + "33228299007946423551298081", + "33170526749157350595864068" ], "fpReserves": [ - "7198072457505922771267420", - "2391590449354450983939489" + "2392840260389592872724837", + "1033646732072377906837120" ], - "mAssetSupply": "106203451381950640719236538", - "LPTokenSupply": "9559553219392746942999468" + "mAssetSupply": "101403480232180046479261960", + "LPTokenSupply": "3407068803351579537229236" }, { "type": "swap_fp_to_mp", - "inputQty": "27971162937210240499712", - "outputIndex": 2, - "outputQty": "28287646699728567087451", + "inputQty": "440421684810961321984", + "outputIndex": 0, + "outputQty": "443540977856603274201", "swapFee": "0", - "redemptionFee": "11319104803605021079", + "redemptionFee": "266207933491280534", "mpReserves": [ - "36570770305975254939955334", - "33784090078767144763967297", - "35820502220390433830284263" + "35004473915741903584340549", + "33228299007946423551298081", + "33170526749157350595864068" ], "fpReserves": [ - "7169774695496910218568578", - "2419561612291661224439201" + "2392396580500440738500245", + "1034087153757188868159104" ], - "mAssetSupply": "106175164939046431771558775", - "LPTokenSupply": "9559553219392746942999468" + "mAssetSupply": "101403036818498827836317902", + "LPTokenSupply": "3407068803351579537229236" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "37081938322356231471104", - "outputQty0": "37077850602824430743055", - "outputQty": "36855096342106278044590", + "type": "swap_fp_to_mp", + "inputQty": "224351068357413984", + "outputIndex": 0, + "outputQty": "225939089895110661", + "swapFee": "0", + "redemptionFee": "135605915246866", "mpReserves": [ - "36607852244297611171426438", - "33784090078767144763967297", - "35820502220390433830284263" + "35004473689802813689229888", + "33228299007946423551298081", + "33170526749157350595864068" ], "fpReserves": [ - "7206852546099734649311633", - "2419561612291661224439201" + "2392396354490581993723461", + "1034087378108257225573088" ], - "mAssetSupply": "106212242789649256202301830", - "LPTokenSupply": "9596408315734853221044058" + "mAssetSupply": "101403036592624575006787984", + "LPTokenSupply": "3407068803351579537229236" }, { "type": "mint", "inputIndex": 2, - "inputQty": "242896855643378681905152", - "outputQty0": "242885198867359066200435", - "outputQty": "241402161612975337969294", + "inputQty": "27322120193101272", + "outputQty0": "27326345837440174", + "outputQty": "27111016255341823", "mpReserves": [ - "36607852244297611171426438", - "33784090078767144763967297", - "36063399076033812512189415" + "35004473689802813689229888", + "33228299007946423551298081", + "33170526776479470788965340" ], "fpReserves": [ - "7449737744967093715512068", - "2419561612291661224439201" + "2392396381816927831163635", + "1034087378108257225573088" ], - "mAssetSupply": "106455127988516615268502265", - "LPTokenSupply": "9837810477347828559013352" + "mAssetSupply": "101403036619950920844228158", + "LPTokenSupply": "3407068830462595792571059" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "23324480076010680", - "outputQty0": "23455698677220257", - "outputQty": "23442435018137367", - "swapFee1": "13994688045606", - "swapFee2": "9382279470888", + "type": "swap_fp_to_mp", + "inputQty": "1267515216167264153763840", + "outputIndex": 0, + "outputQty": "1267588260379487170906468", + "swapFee": "0", + "redemptionFee": "760866143736699627843", "mpReserves": [ - "36607852244297611171426438", - "33784090055324709745829930", - "36063399076033812512189415" + "33736885429423326518323420", + "33228299007946423551298081", + "33170526776479470788965340" ], "fpReserves": [ - "7449737721511395038291811", - "2419561612291661224439201" + "1124286142255761784758309", + "2301602594275521379336928" ], - "mAssetSupply": "106455127965070298870752896", - "LPTokenSupply": "9837810454024747951807232" + "mAssetSupply": "100135687246533491497450675", + "LPTokenSupply": "3407068830462595792571059" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "2080445053681429949448192", + "inputQty": "2229974377547406501740544", "hardLimitError": true }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "50995783643526", - "outputQty0": "50990476054040", - "outputQty": "50674796063341", + "type": "redeem", + "outputIndex": 1, + "inputQty": "10886966067183519744", + "outputQty0": "10897743930415771377", + "outputQty": "10890800801065802500", + "swapFee1": "6532179640310111", + "swapFee2": "6538646358249462", "mpReserves": [ - "36607852244348606955069964", - "33784090055324709745829930", - "36063399076033812512189415" + "33736885429423326518323420", + "33228288117145622485495581", + "33170526776479470788965340" ], "fpReserves": [ - "7449737721562385514345851", - "2419561612291661224439201" + "1124275244511831368986932", + "2301602594275521379336928" ], - "mAssetSupply": "106455127965121289346806936", - "LPTokenSupply": "9837810454075422747870573" + "mAssetSupply": "100135676355328207439928760", + "LPTokenSupply": "3407057944149746573082326" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "94210606787403", - "outputQty0": "94200801442915", - "outputQty": "92980420699330", - "swapFee": "74894086448", + "type": "swap_fp_to_mp", + "inputQty": "398039892346558753013760", + "outputIndex": 0, + "outputQty": "393775846664046399321690", + "swapFee": "0", + "redemptionFee": "236394114247686652050", "mpReserves": [ - "36607852244442817561857367", - "33784090055324709745829930", - "36063399076033812512189415" + "33343109582759280119001730", + "33228288117145622485495581", + "33170526776479470788965340" ], "fpReserves": [ - "7449737721656586315788766", - "2419561612198680803739871" + "730285054099020282235996", + "2699642486622080132350688" ], - "mAssetSupply": "106455127965215490148249851", - "LPTokenSupply": "9837810454075430237279217" + "mAssetSupply": "99741922559029644039829874", + "LPTokenSupply": "3407057944149746573082326" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "296474454614806815047680", - "outputQty0": "298111037886937096747187", - "outputQty": "298005593552801618178445", - "swapFee1": "177884672768884089028", - "swapFee2": "119244415154774838698", + "outputIndex": 1, + "inputQty": "1621041806293240", + "outputQty0": "1609606176361676", + "outputQty": "1608632833694965", + "swapFee1": "972625083775", + "swapFee2": "965763705817", "mpReserves": [ - "36607852244442817561857367", - "33784090055324709745829930", - "35765393482481010894010970" + "33343109582759280119001730", + "33228288115536989651800616", + "33170526776479470788965340" ], "fpReserves": [ - "7151626683769649219041579", - "2419561612198680803739871" + "730285052489414105874320", + "2699642486622080132350688" ], - "mAssetSupply": "106157136171743707826341362", - "LPTokenSupply": "9541353787927900310640439" + "mAssetSupply": "99741922557421003627174015", + "LPTokenSupply": "3407057942528802029297463" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "118455232075287012311040", - "outputQty0": "118473214757030973476297", - "outputQty": "117757606770149931304715", + "type": "swap_fp_to_mp", + "inputQty": "3457792449443904512", + "outputIndex": 0, + "outputQty": "3398357077161189137", + "swapFee": "0", + "redemptionFee": "2040189903962089", "mpReserves": [ - "36607852244442817561857367", - "33902545287399996758140970", - "35765393482481010894010970" + "33343106184402202957812593", + "33228288115536989651800616", + "33170526776479470788965340" ], "fpReserves": [ - "7270099898526680192517876", - "2419561612198680803739871" + "730281652172907502392357", + "2699645944414529576255200" ], - "mAssetSupply": "106275609386500738799817659", - "LPTokenSupply": "9659111394698050241945154" + "mAssetSupply": "99741919159144686927654141", + "LPTokenSupply": "3407057942528802029297463" }, { "type": "mint", "inputIndex": 0, - "inputQty": "6637650444562273280", - "outputQty0": "6636925636960294218", - "outputQty": "6596560992261662752", + "inputQty": "80332189853570387935232", + "outputQty0": "80329749870393181151756", + "outputQty": "80761491010459443723312", "mpReserves": [ - "36607858882093262124130647", - "33902545287399996758140970", - "35765393482481010894010970" + "33423438374255773345747825", + "33228288115536989651800616", + "33170526776479470788965340" ], "fpReserves": [ - "7270106535452317152812094", - "2419561612198680803739871" + "810611402043300683544113", + "2699645944414529576255200" ], - "mAssetSupply": "106275616023426375760111877", - "LPTokenSupply": "9659117991259042503607906" + "mAssetSupply": "99822248909015080108805897", + "LPTokenSupply": "3487819433539261473020775" }, { "type": "swap_fp_to_mp", - "inputQty": "76429945936940961366016", + "inputQty": "2481908408334944305152", "outputIndex": 1, - "outputQty": "77257113207105142128155", + "outputQty": "2445756071508427283931", "swapFee": "0", - "redemptionFee": "30919860756975773648", + "redemptionFee": "1468351602863721105", "mpReserves": [ - "36607858882093262124130647", - "33825288174192891616012815", - "35765393482481010894010970" + "33423438374255773345747825", + "33225842359465481224516685", + "33170526776479470788965340" ], "fpReserves": [ - "7192806883559877718691031", - "2495991558135621765105887" + "808164149371861148367750", + "2702127852822864520560352" ], - "mAssetSupply": "106198347291394693301764462", - "LPTokenSupply": "9659117991259042503607906" + "mAssetSupply": "99819803124695243437350639", + "LPTokenSupply": "3487819433539261473020775" }, { "type": "swap_fp_to_mp", - "inputQty": "1140464992641019726004224", + "inputQty": "106028149525478932480", "outputIndex": 1, - "outputQty": "1147505599112239384953782", + "outputQty": "104478483313849034066", "swapFee": "0", - "redemptionFee": "459274738264037470467", + "redemptionFee": "62725462571317678", "mpReserves": [ - "36607858882093262124130647", - "32677782575080652231059033", - "35765393482481010894010970" + "33423438374255773345747825", + "33225737880982167375482619", + "33170526776479470788965340" ], "fpReserves": [ - "6044620037899784042522034", - "3636456550776641491110111" + "808059606934242285570830", + "2702233880972389999492832" ], - "mAssetSupply": "105050619720472863663065932", - "LPTokenSupply": "9659117991259042503607906" + "mAssetSupply": "99819698644983087145871397", + "LPTokenSupply": "3487819433539261473020775" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "217233735859383616", - "outputQty0": "217201403477716212", - "outputQty": "216217589828448214", - "swapFee": "173123367161558", + "inputIndex": 2, + "inputQty": "639471429726186577592320", + "outputQty0": "639454058359704847972285", + "outputQty": "643337632682671471004433", + "swapFee": "511668926726858724163", "mpReserves": [ - "36607859099326997983514263", - "32677782575080652231059033", - "35765393482481010894010970" + "33423438374255773345747825", + "33225737880982167375482619", + "33809998206205657366557660" ], "fpReserves": [ - "6044620255101187520238246", - "3636456334559051662661897" + "1447513665293947133543115", + "2058896248289718528488399" ], - "mAssetSupply": "105050619937674267140782144", - "LPTokenSupply": "9659117991276354840324061" + "mAssetSupply": "100459152703342791993843682", + "LPTokenSupply": "3487870600431934158893191" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "5251063540172411895808", - "outputQty0": "5250281184534224872584", - "outputQty": "5231003464194418098969", + "inputQty": "384531987426794226581504", + "outputQty0": "384525756459348389264867", + "outputQty": "384558324358749263113237", + "swapFee": "306280599234380030018", "mpReserves": [ - "36613110162867170395410071", - "32677782575080652231059033", - "35765393482481010894010970" + "33807970361682567572329329", + "33225737880982167375482619", + "33809998206205657366557660" ], "fpReserves": [ - "6049870536285721745110830", - "3636456334559051662661897" + "1832039421753295522807982", + "1674337923930969265375162" ], - "mAssetSupply": "105055870218858801365654728", - "LPTokenSupply": "9664348994740549258423030" + "mAssetSupply": "100843678459802140383108549", + "LPTokenSupply": "3487901228491857596896192" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "45659988295898758119424", - "outputQty0": "45800246238809478813540", - "outputQty": "45785230242225747899772", - "swapFee1": "27395992977539254871", - "swapFee2": "18320098495523791525", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "34442776872567621812224", + "outputQty0": "34441025740776227692475", + "outputQty": "34388353242069194843905", + "swapFee": "27398992754000905111", "mpReserves": [ - "36613110162867170395410071", - "32677782575080652231059033", - "35719608252238785146111198" + "33807970361682567572329329", + "33225737880982167375482619", + "33844440983078224988369884" ], "fpReserves": [ - "6004070290046912266297290", - "3636456334559051662661897" + "1866480447494071750500457", + "1639949570688900070531257" ], - "mAssetSupply": "105010088292718487410632713", - "LPTokenSupply": "9618691746043948254229093" + "mAssetSupply": "100878119485542916610801024", + "LPTokenSupply": "3487903968391132996986703" }, { - "type": "swap_fp_to_mp", - "inputQty": "1078883081766816448512", - "outputIndex": 2, - "outputQty": "1082501633497582522544", - "swapFee": "0", - "redemptionFee": "433143281948530910", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "181874554287539912704", + "outputQty0": "181892609451453174996", + "outputQty": "181590220948605637121", + "swapFee": "144686837075941077", "mpReserves": [ - "36613110162867170395410071", - "32677782575080652231059033", - "35718525750605287563588654" + "33807970361682567572329329", + "33225919755536454915395323", + "33844440983078224988369884" ], "fpReserves": [ - "6002987431842040939020040", - "3637535217640818479110409" + "1866662340103523203675453", + "1639767980467951464894136" ], - "mAssetSupply": "105009005867656898031886373", - "LPTokenSupply": "9618691746043948254229093" + "mAssetSupply": "100878301378152368063976020", + "LPTokenSupply": "3487903982859816704580810" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "758159322080609178746880", - "outputQty0": "760314279014680540473810", - "outputQty": "759811339280000879138699", - "swapFee1": "454895593248365507248", - "swapFee2": "304125711605872216189", + "inputQty": "281572450541304794841088", + "outputQty0": "282939861227273698409561", + "outputQty": "282735290539973391953969", + "swapFee1": "168943470324782876904", + "swapFee2": "169763916736364219045", "mpReserves": [ - "36613110162867170395410071", - "31917971235800651351920334", - "35718525750605287563588654" + "33807970361682567572329329", + "32943184464996481523441354", + "33844440983078224988369884" ], "fpReserves": [ - "5242673152827360398546230", - "3637535217640818479110409" + "1583722478876249505265892", + "1639767980467951464894136" ], - "mAssetSupply": "104248995714353823363628752", - "LPTokenSupply": "8860577913522663912032937" + "mAssetSupply": "100595531280841830729785504", + "LPTokenSupply": "3206348426665544388027412" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "379721337977224000", - "outputQty0": "379831626935588544", - "outputQty": "378558506918090510", - "swapFee": "302875927913442", - "mpReserves": [ - "36613110162867170395410071", - "31917971615521989329144334", - "35718525750605287563588654" - ], - "fpReserves": [ - "5242673532658987334134774", - "3637534839082311561019899" - ], - "mAssetSupply": "104248996094185450299217296", - "LPTokenSupply": "8860577913552951504824281" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "109243939690126063435776", - "outputIndex": 1, - "outputQty": "109426323142697709362122", - "swapFee": "0", - "redemptionFee": "43800947350696742846", + "inputIndex": 2, + "inputQty": "6586882951915810848768", + "outputQty0": "6586372350155117777514", + "outputQty": "6582441473307499237240", + "swapFee": "5241655263491670213", "mpReserves": [ - "36613110162867170395410071", - "31808545292379291619782212", - "35718525750605287563588654" + "33807970361682567572329329", + "32943184464996481523441354", + "33851027866030140799218652" ], "fpReserves": [ - "5133171164282245477018788", - "3746778778772437624455675" + "1590308851226404623043406", + "1633185538994643965656896" ], - "mAssetSupply": "104139537526756059138844156", - "LPTokenSupply": "8860577913552951504824281" + "mAssetSupply": "100602117653191985847563018", + "LPTokenSupply": "3206348950831070737194433" }, { "type": "mint", "inputIndex": 0, - "inputQty": "883612640103046447104", - "outputQty0": "883453996629299773791", - "outputQty": "880718596566815390859", + "inputQty": "411998240060230528", + "outputQty0": "411970380772627948", + "outputQty": "409815741656977017", "mpReserves": [ - "36613993775507273441857175", - "31808545292379291619782212", - "35718525750605287563588654" + "33807970773680807632559857", + "32943184464996481523441354", + "33851027866030140799218652" ], "fpReserves": [ - "5134054618278874776792579", - "3746778778772437624455675" + "1590309263196785395671354", + "1633185538994643965656896" ], - "mAssetSupply": "104140420980752688438617947", - "LPTokenSupply": "8861458632149518320215140" + "mAssetSupply": "100602118065162366620190966", + "LPTokenSupply": "3206349360646812394171450" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "144170709816484336500736", - "outputQty0": "144213003393276979383739", - "outputQty": "143760131442878077869299", + "inputQty": "1892791194935455907840", + "outputQty0": "1893070305141086509584", + "outputQty": "1891874510357879579138", + "swapFee": "1506532503098527203", "mpReserves": [ - "36613993775507273441857175", - "31952716002195775956282948", - "35718525750605287563588654" + "33807970773680807632559857", + "32945077256191416979349194", + "33851027866030140799218652" ], "fpReserves": [ - "5278267621672151756176318", - "3746778778772437624455675" + "1592202333501926482180938", + "1631293664484286086077758" ], - "mAssetSupply": "104284633984145965418001686", - "LPTokenSupply": "9005218763592396398084439" + "mAssetSupply": "100604011135467507706700550", + "LPTokenSupply": "3206349511300062704024170" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "45808624609639064", - "outputQty0": "45800621651929638", - "outputQty": "45654804340149352", - "mpReserves": [ - "36613993821315898051496239", - "31952716002195775956282948", - "35718525750605287563588654" - ], - "fpReserves": [ - "5278267667472773408105956", - "3746778778772437624455675" - ], - "mAssetSupply": "104284634029946587069931324", - "LPTokenSupply": "9005218809247200738233791" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "65955755254653403136", - "outputQty0": "65974737563286956453", - "outputQty": "65765132868688019672", - "swapFee": "52611751833172226", + "type": "swap_fp_to_mp", + "inputQty": "313233625654308765696", + "outputIndex": 0, + "outputQty": "313016098536807092509", + "swapFee": "0", + "redemptionFee": "187909739547714056", "mpReserves": [ - "36613993821315898051496239", - "31952781957951030609686084", - "35718525750605287563588654" + "33807657757582270825467348", + "32945077256191416979349194", + "33851027866030140799218652" ], "fpReserves": [ - "5278333642210336695062409", - "3746713013639568936436003" + "1591889150602680292087511", + "1631606898109940394843454" ], - "mAssetSupply": "104284700004684150356887777", - "LPTokenSupply": "9005218814508375921551013" + "mAssetSupply": "100603698140478001064321179", + "LPTokenSupply": "3206349511300062704024170" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "736865939019732352", - "outputQty0": "736737207086171424", - "outputQty": "734396475024465584", - "swapFee": "587513242238770", - "mpReserves": [ - "36613994558181837071228591", - "31952781957951030609686084", - "35718525750605287563588654" - ], - "fpReserves": [ - "5278334378947543781233833", - "3746712279243093911970419" - ], - "mAssetSupply": "104284700741421357443059201", - "LPTokenSupply": "9005218814567127245774890" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "342037603485224756314112", - "outputQty0": "342131582257368502443622", - "outputQty": "341007855827114711454205", + "inputQty": "65852971571221090009088", + "outputQty0": "65848182006945855178023", + "outputQty": "65788437440450147582457", + "swapFee": "52399104984143656785", "mpReserves": [ - "36613994558181837071228591", - "32294819561436255366000196", - "35718525750605287563588654" + "33873510729153491915476436", + "32945077256191416979349194", + "33851027866030140799218652" ], "fpReserves": [ - "5620465961204912283677455", - "3746712279243093911970419" + "1657737332609626147265534", + "1565818460669490247260997" ], - "mAssetSupply": "104626832323678725945502823", - "LPTokenSupply": "9346226670394241957229095" + "mAssetSupply": "100669546322484946919499202", + "LPTokenSupply": "3206354751210561118389848" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "82942490213044484833280", - "outputQty0": "83172163212912921179512", - "outputQty": "83152268249109993965563", - "swapFee1": "49765494127826690899", - "swapFee2": "33268865285165168471", + "inputQty": "240392508994590693392384", + "outputQty0": "241520248131476352900038", + "outputQty": "241389460343408802374134", + "swapFee1": "144235505396754416035", + "swapFee2": "144912148878885811740", "mpReserves": [ - "36530842289932727077263028", - "32294819561436255366000196", - "35718525750605287563588654" + "33632121268810083113102302", + "32945077256191416979349194", + "33851027866030140799218652" ], "fpReserves": [ - "5537293797991999362497943", - "3746712279243093911970419" + "1416217084478149794365496", + "1565818460669490247260997" ], - "mAssetSupply": "104543693429331098189491782", - "LPTokenSupply": "9263289156730610255064904" + "mAssetSupply": "100428170986502349452410904", + "LPTokenSupply": "2965976665766510100439067" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "63092170511448151162880", - "outputQty0": "63086621536990755679443", - "outputQty": "62855701004053245092574", - "swapFee": "50299779819292134763", + "inputQty": "13486900487417346654208", + "outputQty0": "13485643549261969081838", + "outputQty": "13483038065257897297906", + "swapFee": "10734000234266003372", "mpReserves": [ - "36530842289932727077263028", - "32294819561436255366000196", - "35781617921116735714751534" + "33632121268810083113102302", + "32945077256191416979349194", + "33864514766517558145872860" ], "fpReserves": [ - "5600380419528990118177386", - "3683856578239040666877845" + "1429702728027411763447334", + "1552335422604232349963091" ], - "mAssetSupply": "104606780050868088945171225", - "LPTokenSupply": "9263294186708592184278380" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "59171824342969704513536", - "outputIndex": 0, - "outputQty": "59327540874673288437422", - "swapFee": "0", - "redemptionFee": "23736837141378922314", - "mpReserves": [ - "36471514749058053788825606", - "32294819561436255366000196", - "35781617921116735714751534" - ], - "fpReserves": [ - "5541038326675542812390496", - "3743028402582010371391381" - ], - "mAssetSupply": "104547461694851783018306649", - "LPTokenSupply": "9263294186708592184278380" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "104087571081856565248", - "outputQty0": "104114550167719410731", - "outputQty": "103765674636958493364", - "mpReserves": [ - "36471514749058053788825606", - "32294923649007337222565444", - "35781617921116735714751534" - ], - "fpReserves": [ - "5541142441225710531801227", - "3743028402582010371391381" - ], - "mAssetSupply": "104547565809401950737717380", - "LPTokenSupply": "9263397952383229142771744" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "73729422864668344320", - "outputQty0": "73932926336998197205", - "outputQty": "73884202757762592933", - "swapFee1": "44237653718801006", - "swapFee2": "29573170534799278", - "mpReserves": [ - "36471514749058053788825606", - "32294849764804579459972511", - "35781617921116735714751534" - ], - "fpReserves": [ - "5541068508299373533604022", - "3743028402582010371391381" - ], - "mAssetSupply": "104547491906048784274319453", - "LPTokenSupply": "9263324227384129846307524" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1410611762566114312192", - "outputQty0": "1414504644430425004295", - "outputQty": "1414068334505050313789", - "swapFee1": "846367057539668587", - "swapFee2": "565801857772170001", - "mpReserves": [ - "36471514749058053788825606", - "32294849764804579459972511", - "35780203852782230664437745" - ], - "fpReserves": [ - "5539654003654943108599727", - "3743028402582010371391381" - ], - "mAssetSupply": "104546077967206211621485159", - "LPTokenSupply": "9261913700258269485962190" + "mAssetSupply": "100441656630051611421492742", + "LPTokenSupply": "2965977739166533527039404" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "8466003015609373696", - "outputQty0": "8468196976603197554", - "outputQty": "8438057644844137522", - "swapFee": "6751861851490895", + "inputIndex": 2, + "inputQty": "20437696574501416861696", + "outputQty0": "20435736061230168929343", + "outputQty": "20428680761917802028104", + "swapFee": "16264765290465172071", "mpReserves": [ - "36471514749058053788825606", - "32294858230807595069346207", - "35780203852782230664437745" + "33632121268810083113102302", + "32945077256191416979349194", + "33884952463092059562734556" ], "fpReserves": [ - "5539662471851919711797281", - "3743019964524365527253859" + "1450138464088641932376677", + "1531906741842314547934987" ], - "mAssetSupply": "104546086435403188224682713", - "LPTokenSupply": "9261913700933455671111279" + "mAssetSupply": "100462092366112841590422085", + "LPTokenSupply": "2965979365643062573556611" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1329449931880861184", - "outputQty0": "1329328246111281394", - "outputQty": "1324874793541429709", + "type": "swap_fp_to_mp", + "inputQty": "37886600462575436038144", + "outputIndex": 2, + "outputQty": "37847259226451123619394", + "swapFee": "0", + "redemptionFee": "22719840920051485923", "mpReserves": [ - "36471514749058053788825606", - "32294858230807595069346207", - "35780205182232162545298929" + "33632121268810083113102302", + "32945077256191416979349194", + "33847105203865608439115162" ], "fpReserves": [ - "5539663801180165823078675", - "3743019964524365527253859" + "1412272062555222789170511", + "1569793342304889983973131" ], - "mAssetSupply": "104546087764731434335964107", - "LPTokenSupply": "9261915025808249212540988" + "mAssetSupply": "100424248684420342498701842", + "LPTokenSupply": "2965979365643062573556611" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "393827418322835668992", "outputIndex": 0, - "inputQty": "9575978247082616029184", - "outputQty0": "9602375488371914286153", - "outputQty": "9600001812493631016891", - "swapFee1": "5745586948249569617", - "swapFee2": "3840950195348765714", + "outputQty": "393329031868040991768", + "swapFee": "0", + "redemptionFee": "236129848242706394", "mpReserves": [ - "36461914747245560157808715", - "32294858230807595069346207", - "35780205182232162545298929" + "33631727939778215072110534", + "32945077256191416979349194", + "33847105203865608439115162" ], "fpReserves": [ - "5530061425691793908792522", - "3743019964524365527253859" + "1411878512808151611846978", + "1570187169723212819642123" ], - "mAssetSupply": "104536489230193257770443668", - "LPTokenSupply": "9252339622119861421468765" + "mAssetSupply": "100423855370803119564084703", + "LPTokenSupply": "2965979365643062573556611" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "929356276668782113456128", - "outputQty0": "929564977668706072950418", - "outputQty": "924420704188657642586561", - "swapFee": "740971632990282784058", + "type": "swap_fp_to_mp", + "inputQty": "43802544446703191195648", + "outputIndex": 2, + "outputQty": "43740458502190569860300", + "swapFee": "0", + "redemptionFee": "26257720590106621749", "mpReserves": [ - "36461914747245560157808715", - "33224214507476377182802335", - "35780205182232162545298929" + "33631727939778215072110534", + "32945077256191416979349194", + "33803364745363417869254862" ], "fpReserves": [ - "6459626403360499981742940", - "2818599260335707884667298" + "1368115645157973908930446", + "1613989714169916010837771" ], - "mAssetSupply": "105466054207861963843394086", - "LPTokenSupply": "9252413719283160449747170" + "mAssetSupply": "100380118760873531967789920", + "LPTokenSupply": "2965979365643062573556611" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1423587267338574273445888", - "outputQty0": "1423440145718451141536716", - "outputQty": "1415724129051246645524901", + "inputQty": "335848418131753176137728", + "outputQty0": "335810998756632001256184", + "outputQty": "334061825460184217762758", "mpReserves": [ - "36461914747245560157808715", - "33224214507476377182802335", - "37203792449570736818744817" + "33631727939778215072110534", + "32945077256191416979349194", + "34139213163495171045392590" ], "fpReserves": [ - "7883066549078951123279656", - "2818599260335707884667298" + "1703926643914605910186630", + "1613989714169916010837771" ], - "mAssetSupply": "106889494353580414984930802", - "LPTokenSupply": "10668137848334407095272071" + "mAssetSupply": "100715929759630163969046104", + "LPTokenSupply": "3300041191103246791319369" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "278192983406705066901504", - "outputQty0": "278150419449565369991434", - "outputQty": "274700652915869444085730", - "swapFee": "221198073437049971749", - "mpReserves": [ - "36461914747245560157808715", - "33224214507476377182802335", - "37481985432977441885646321" - ], - "fpReserves": [ - "8161216968528516493271090", - "2543898607419838440581568" - ], - "mAssetSupply": "107167644773029980354922236", - "LPTokenSupply": "10668159968141750800269245" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "19063883820997625774080", - "outputQty0": "19178414851141504429564", - "outputQty": "19166007009179639826447", - "swapFee1": "11438330292598575464", - "swapFee2": "7671365940456601771", - "mpReserves": [ - "36461914747245560157808715", - "33205048500467197542975888", - "37481985432977441885646321" - ], - "fpReserves": [ - "8142038553677374988841526", - "2543898607419838440581568" - ], - "mAssetSupply": "107148474029544779307094443", - "LPTokenSupply": "10649097228153782434352711" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "6354433409609403203584", - "outputQty0": "6392560950508759389094", - "outputQty": "6388419226630706512148", - "swapFee1": "3812660045765641922", - "swapFee2": "2557024380203503755", + "inputIndex": 1, + "inputQty": "49862285611214282162176", + "outputQty0": "49869874096198054818869", + "outputQty": "49802070032348072833133", + "swapFee": "39672168151721921684", "mpReserves": [ - "36461914747245560157808715", - "33198660081240566836463740", - "37481985432977441885646321" + "33631727939778215072110534", + "32994939541802631261511370", + "34139213163495171045392590" ], "fpReserves": [ - "8135645992726866229452432", - "2543898607419838440581568" + "1753796518010803965005499", + "1564187644137567938004638" ], - "mAssetSupply": "107142084025618650751209104", - "LPTokenSupply": "10642743176010177607713319" + "mAssetSupply": "100765799633726362023864973", + "LPTokenSupply": "3300045158320061963511537" }, { "type": "swap_fp_to_mp", - "inputQty": "1839634873318985957376", + "inputQty": "2144926900634104113397760", "outputIndex": 1, - "outputQty": "1862607207385191300698", - "swapFee": "0", - "redemptionFee": "745526131009268873", - "mpReserves": [ - "36461914747245560157808715", - "33196797474033181645163042", - "37481985432977441885646321" - ], - "fpReserves": [ - "8133782177399343057268970", - "2545738242293157426538944" - ], - "mAssetSupply": "107140220955817258588294515", - "LPTokenSupply": "10642743176010177607713319" + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "795061039241638313984", + "inputQty": "4555806863224549670912", "outputIndex": 1, - "outputQty": "804976885770061920589", + "outputQty": "4555783113597556454109", "swapFee": "0", - "redemptionFee": "322199634499639823", + "redemptionFee": "2735516636231909234", "mpReserves": [ - "36461914747245560157808715", - "33195992497147411583242453", - "37481985432977441885646321" + "33631727939778215072110534", + "32990383758689033705057261", + "34139213163495171045392590" ], "fpReserves": [ - "8132976678313093957710114", - "2546533303332399064852928" + "1749237323617084116282020", + "1568743451000792487675550" ], - "mAssetSupply": "107139415778930643988375482", - "LPTokenSupply": "10642743176010177607713319" + "mAssetSupply": "100761243174849278407050728", + "LPTokenSupply": "3300045158320061963511537" }, { "type": "mint", "inputIndex": 0, - "inputQty": "13626391169867914", - "outputQty0": "13625397345092376", - "outputQty": "13536128583205882", + "inputQty": "17541051926269378166784", + "outputQty0": "17540820150480598096409", + "outputQty": "17439746752033674710743", "mpReserves": [ - "36461914760871951327676629", - "33195992497147411583242453", - "37481985432977441885646321" + "33649268991704484450277318", + "32990383758689033705057261", + "34139213163495171045392590" ], "fpReserves": [ - "8132976691938491302802490", - "2546533303332399064852928" + "1766778143767564714378429", + "1568743451000792487675550" ], - "mAssetSupply": "107139415792556041333467858", - "LPTokenSupply": "10642743189546306190919201" + "mAssetSupply": "100778783994999759005147137", + "LPTokenSupply": "3317484905072095638222280" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1906828710438673408", - "outputQty0": "1906689638025210326", - "outputQty": "1880484925099415622", - "swapFee": "1515358147048300", + "type": "redeem", + "outputIndex": 1, + "inputQty": "6794946823753451", + "outputQty0": "6830334815161915", + "outputQty": "6825211592619851", + "swapFee1": "4076968094252", + "swapFee2": "4098200889097", "mpReserves": [ - "36461916667700661766350037", - "33195992497147411583242453", - "37481985432977441885646321" + "33649268991704484450277318", + "32990383751863822112437410", + "34139213163495171045392590" ], "fpReserves": [ - "8132978598628129328012816", - "2546531422847473965437306" + "1766778136937229899216514", + "1568743451000792487675550" ], - "mAssetSupply": "107139417699245679358678184", - "LPTokenSupply": "10642743189697842005624031" + "mAssetSupply": "100778783988173522390874319", + "LPTokenSupply": "3317484898277556511278254" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "77973084516270243840", - "outputQty0": "77967397450611285191", - "outputQty": "77456580337029290073", - "mpReserves": [ - "36461994640785178036593877", - "33195992497147411583242453", - "37481985432977441885646321" - ], - "fpReserves": [ - "8133056566025579939298007", - "2546531422847473965437306" - ], - "mAssetSupply": "107139495666643129969963375", - "LPTokenSupply": "10642820646278179034914104" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "37688234409325", - "outputIndex": 1, - "outputQty": "38158106035357", - "swapFee": "0", - "redemptionFee": "15273144394", + "inputIndex": 2, + "inputQty": "1264439071832509524213760", + "outputQty0": "1264146153535633389472228", + "outputQty": "1255662303943928958442271", "mpReserves": [ - "36461994640785178036593877", - "33195992497109253477207096", - "37481985432977441885646321" + "33649268991704484450277318", + "32990383751863822112437410", + "35403652235327680569606350" ], "fpReserves": [ - "8133056565987397078312913", - "2546531422885162199846631" + "3030924290472863288688742", + "1568743451000792487675550" ], - "mAssetSupply": "107139495666604962382122675", - "LPTokenSupply": "10642820646278179034914104" + "mAssetSupply": "102042930141709155780346547", + "LPTokenSupply": "4573147202221485469720525" }, { "type": "swap_fp_to_mp", - "inputQty": "1723691169155977984", + "inputQty": "134166152531152650240", "outputIndex": 2, - "outputQty": "1745897193590202279", + "outputQty": "134828919381509990134", "swapFee": "0", - "redemptionFee": "698525263012496", + "redemptionFee": "80919338282793760", "mpReserves": [ - "36461994640785178036593877", - "33195992497109253477207096", - "37481983687080248295444042" + "33649268991704484450277318", + "32990383751863822112437410", + "35403517406408299059616216" ], "fpReserves": [ - "8133054819674239547071272", - "2546533146576331355824615" + "3030789424909058632421604", + "1568877617153323640325790" ], - "mAssetSupply": "107139493920990330113893530", - "LPTokenSupply": "10642820646278179034914104" + "mAssetSupply": "102042795357064689406873169", + "LPTokenSupply": "4573147202221485469720525" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "35051355523194036420608", - "outputQty0": "35048762217043252750015", - "outputQty": "34818726997404334469761", - "mpReserves": [ - "36497045996308372073014485", - "33195992497109253477207096", - "37481983687080248295444042" - ], - "fpReserves": [ - "8168103581891282799821287", - "2546533146576331355824615" - ], - "mAssetSupply": "107174542683207373366643545", - "LPTokenSupply": "10677639373275583369383865" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "92900540224595721977856", - "outputQty0": "92923418633869543576915", - "outputQty": "92309603658196509956283", + "inputIndex": 2, + "inputQty": "322153890138288650452992", + "outputQty0": "322040345890499797320499", + "outputQty": "319554363819657709705847", "mpReserves": [ - "36497045996308372073014485", - "33288893037333849199184952", - "37481983687080248295444042" + "33649268991704484450277318", + "32990383751863822112437410", + "35725671296546587710069208" ], "fpReserves": [ - "8261027000525152343398202", - "2546533146576331355824615" + "3352829770799558429742103", + "1568877617153323640325790" ], - "mAssetSupply": "107267466101841242910220460", - "LPTokenSupply": "10769948976933779879340148" + "mAssetSupply": "102364835702955189204193668", + "LPTokenSupply": "4892701566041143179426372" }, { - "type": "swap_fp_to_mp", - "inputQty": "1133060258081326185316352", - "outputIndex": 2, - "outputQty": "1142565958698002942853883", - "swapFee": "0", - "redemptionFee": "457152185247979057337", + "type": "redeem", + "outputIndex": 0, + "inputQty": "29065973054713609846784", + "outputQty0": "29279546744498272162866", + "outputQty": "29258646120043703836803", + "swapFee1": "17439583832828165908", + "swapFee2": "17567728046698963297", "mpReserves": [ - "36497045996308372073014485", - "33288893037333849199184952", - "36339417728382245352590159" + "33620010345584440746440515", + "32990383751863822112437410", + "35725671296546587710069208" ], "fpReserves": [ - "7118146537405204700054038", - "3679593404657657541140967" + "3323550224055060157579237", + "1568877617153323640325790" ], - "mAssetSupply": "106125042790906543245933633", - "LPTokenSupply": "10769948976933779879340148" + "mAssetSupply": "102335573723938737630994099", + "LPTokenSupply": "4863637336944812852396178" }, { - "type": "swap_fp_to_mp", - "inputQty": "22275909100256490422272", - "outputIndex": 0, - "outputQty": "22384643826145850327425", - "swapFee": "0", - "redemptionFee": "8956502713951654453", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1720063601295506725142528", + "outputQty0": "1730751527601139999303497", + "outputQty": "1728967055030284064874686", + "swapFee1": "1032038160777304035085", + "swapFee2": "1038450916560683999582", "mpReserves": [ - "36474661352482226222687060", - "33288893037333849199184952", - "36339417728382245352590159" + "33620010345584440746440515", + "31261416696833538047562724", + "35725671296546587710069208" ], "fpReserves": [ - "7095755280620325563920449", - "3701869313757914031563239" + "1592798696453920158275740", + "1568877617153323640325790" ], - "mAssetSupply": "106102660490624378061454497", - "LPTokenSupply": "10769948976933779879340148" + "mAssetSupply": "100605860647254158315690184", + "LPTokenSupply": "3143676939465383857657158" }, { "type": "mint", "inputIndex": 2, - "inputQty": "68585925534508038225920", - "outputQty0": "68579474860012808423759", - "outputQty": "68282423244956080942596", + "inputQty": "10447060170162833457152", + "outputQty0": "10441607959769692412778", + "outputQty": "10381536214237463098557", "mpReserves": [ - "36474661352482226222687060", - "33288893037333849199184952", - "36408003653916753390816079" + "33620010345584440746440515", + "31261416696833538047562724", + "35736118356716750543526360" ], "fpReserves": [ - "7164334755480338372344208", - "3701869313757914031563239" + "1603240304413689850688518", + "1568877617153323640325790" ], - "mAssetSupply": "106171239965484390869878256", - "LPTokenSupply": "10838231400178735960282744" + "mAssetSupply": "100616302255213928008102962", + "LPTokenSupply": "3154058475679621320755715" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "12959468769226078027776", - "outputQty0": "12958141821655726208079", - "outputQty": "12880024839825441524372", - "swapFee": "10321396943133750600", - "mpReserves": [ - "36487620821251452300714836", - "33288893037333849199184952", - "36408003653916753390816079" - ], - "fpReserves": [ - "7177292897301994098552287", - "3688989288918088590038867" - ], - "mAssetSupply": "106184198107306046596086335", - "LPTokenSupply": "10838232432318430273657804" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "102472182328078", - "outputIndex": 0, - "outputQty": "102983493039663", - "swapFee": "0", - "redemptionFee": "41205645802", + "inputIndex": 1, + "inputQty": "547259872650259958071296", + "outputQty0": "547555716506751696781007", + "outputQty": "545602822437172057180309", + "swapFee": "435306094742545140170", "mpReserves": [ - "36487620821148468807675173", - "33288893037333849199184952", - "36408003653916753390816079" + "33620010345584440746440515", + "31808676569483798005634020", + "35736118356716750543526360" ], "fpReserves": [ - "7177292897198979984046381", - "3688989289020560772366945" + "2150796020920441547469525", + "1023274794716151583145481" ], - "mAssetSupply": "106184198107203073687226231", - "LPTokenSupply": "10838232432318430273657804" + "mAssetSupply": "101163857971720679704883969", + "LPTokenSupply": "3154102006289095575269732" }, { "type": "swap_fp_to_mp", - "inputQty": "36539034928866597535744", - "outputIndex": 2, - "outputQty": "36718122545931019573515", + "inputQty": "97677976651840729645056", + "outputIndex": 1, + "outputQty": "98096085695482689985153", "swapFee": "0", - "redemptionFee": "14691736035517492078", + "redemptionFee": "58922340176794302795", "mpReserves": [ - "36487620821148468807675173", - "33288893037333849199184952", - "36371285531370822371242564" + "33620010345584440746440515", + "31710580483788315315648867", + "35736118356716750543526360" ], "fpReserves": [ - "7140563557110186253849039", - "3725528323949427369902689" + "2052592120625784376143471", + "1120952771367992312790537" ], - "mAssetSupply": "106147483458850315474520967", - "LPTokenSupply": "10838232432318430273657804" + "mAssetSupply": "101065712993766199327860710", + "LPTokenSupply": "3154102006289095575269732" }, { - "type": "swap_fp_to_mp", - "inputQty": "77128425195067622293504", + "type": "redeem", "outputIndex": 0, - "outputQty": "77488196212656322711745", - "swapFee": "0", - "redemptionFee": "31004532269609420437", + "inputQty": "32465371503357616", + "outputQty0": "32699628784350292", + "outputQty": "32679775749441275", + "swapFee1": "19479222902014", + "swapFee2": "19619777270610", "mpReserves": [ - "36410132624935812484963428", - "33288893037333849199184952", - "36371285531370822371242564" + "33620010312904664996999240", + "31710580483788315315648867", + "35736118356716750543526360" ], "fpReserves": [ - "7063052226436162702754682", - "3802656749144494992196193" + "2052592087926155591793179", + "1120952771367992312790537" ], - "mAssetSupply": "106070003132708561532847047", - "LPTokenSupply": "10838232432318430273657804" + "mAssetSupply": "101065712961086190320781028", + "LPTokenSupply": "3154101973825671994202317" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "7863742350289052631040", - "outputQty0": "7862959892925706742175", - "outputQty": "7818987956466665282857", - "swapFee": "6263919567781485282", + "type": "mint", + "inputIndex": 1, + "inputQty": "24317165617592397824", + "outputQty0": "24329507523189723517", + "outputQty": "24140719427899767572", "mpReserves": [ - "36417996367286101537594468", - "33288893037333849199184952", - "36371285531370822371242564" + "33620010312904664996999240", + "31710604800953932908046691", + "35736118356716750543526360" ], "fpReserves": [ - "7070915186329088409496857", - "3794837761188028326913336" + "2052616417433678781516696", + "1120952771367992312790537" ], - "mAssetSupply": "106077866092601487239589222", - "LPTokenSupply": "10838233058710387051806332" + "mAssetSupply": "101065737290593713510504545", + "LPTokenSupply": "3154126114545099893969889" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "9154145288991970164736", - "outputQty0": "9153229814485962860417", - "outputQty": "9114633922932422663632", + "inputIndex": 2, + "inputQty": "3047894539770994884608", + "outputQty0": "3046415757022223562337", + "outputQty": "3022768723597961082261", "mpReserves": [ - "36427150512575093507759204", - "33288893037333849199184952", - "36371285531370822371242564" + "33620010312904664996999240", + "31710604800953932908046691", + "35739166251256521538410968" ], "fpReserves": [ - "7080068416143574372357274", - "3794837761188028326913336" + "2055662833190701005079033", + "1120952771367992312790537" ], - "mAssetSupply": "106087019322415973202449639", - "LPTokenSupply": "10847347692633319474469964" + "mAssetSupply": "101068783706350735734066882", + "LPTokenSupply": "3157148883268697855052150" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "8308893057380676272128", - "outputQty0": "8310590286683098016158", - "outputQty": "8275511173190200182382", + "inputIndex": 0, + "inputQty": "7460834896215367", + "outputQty0": "7460889928620613", + "outputQty": "7402957318898936", "mpReserves": [ - "36427150512575093507759204", - "33297201930391229875457080", - "36371285531370822371242564" + "33620010320365499893214607", + "31710604800953932908046691", + "35739166251256521538410968" ], "fpReserves": [ - "7088379006430257470373432", - "3794837761188028326913336" + "2055662840651590933699646", + "1120952771367992312790537" ], - "mAssetSupply": "106095329912702656300465797", - "LPTokenSupply": "10855623203806509674652346" + "mAssetSupply": "101068783713811625662687495", + "LPTokenSupply": "3157148890671655173951086" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "20343592276828803301376", - "outputQty0": "20417506810176214660265", - "outputQty": "20411368734108595712219", - "swapFee1": "12206155366097281980", - "swapFee2": "8167002724070485864", + "type": "mint", + "inputIndex": 0, + "inputQty": "12796788264726459056128", + "outputQty0": "12796869165462415649093", + "outputQty": "12697364383811269382690", "mpReserves": [ - "36406739143840984912046985", - "33297201930391229875457080", - "36371285531370822371242564" + "33632807108630226352270735", + "31710604800953932908046691", + "35739166251256521538410968" ], "fpReserves": [ - "7067961499620081255713167", - "3794837761188028326913336" + "2068459709817053349348739", + "1120952771367992312790537" ], - "mAssetSupply": "106074920572895204156291396", - "LPTokenSupply": "10835280832145217481079168" + "mAssetSupply": "101081580582977088078336588", + "LPTokenSupply": "3169846255055466443333776" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1648933495848533753856", - "outputQty0": "1654917071097128708183", - "outputQty": "1654413256044613133711", - "swapFee1": "989360097509120252", - "swapFee2": "661966828438851483", + "type": "mint", + "inputIndex": 1, + "inputQty": "27442493125956976", + "outputQty0": "27456458825525238", + "outputQty": "27242666985582481", "mpReserves": [ - "36406739143840984912046985", - "33297201930391229875457080", - "36369631118114777758108853" + "33632807108630226352270735", + "31710604828396426034003667", + "35739166251256521538410968" ], "fpReserves": [ - "7066306582548984127004984", - "3794837761188028326913336" + "2068459737273512174873977", + "1120952771367992312790537" ], - "mAssetSupply": "106073266317790935466434696", - "LPTokenSupply": "10833631997585378698237337" + "mAssetSupply": "101081580610433546903861826", + "LPTokenSupply": "3169846282298133428916257" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "65425244060766533844992", - "outputQty0": "65418865900085585401954", - "outputQty": "65043578408165953054418", - "swapFee": "52113741414423530639", + "type": "mint", + "inputIndex": 0, + "inputQty": "288653186725345664", + "outputQty0": "288654707333932258", + "outputQty": "286407075055264080", "mpReserves": [ - "36406739143840984912046985", - "33297201930391229875457080", - "36435056362175544291953845" + "33632807397283413077616399", + "31710604828396426034003667", + "35739166251256521538410968" ], "fpReserves": [ - "7131725448449069712406938", - "3729794182779862373858918" + "2068460025928219508806235", + "1120952771367992312790537" ], - "mAssetSupply": "106138685183691021051836650", - "LPTokenSupply": "10833637208959520140590400" + "mAssetSupply": "101081580899088254237794084", + "LPTokenSupply": "3169846568705208484180337" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "32982977505379471065088", - "outputQty0": "32979665806130506899352", - "outputQty": "32783637895365783799838", - "swapFee": "26269745955740272223", + "type": "mint", + "inputIndex": 0, + "inputQty": "214403712665539248128", + "outputQty0": "214404838341660264984", + "outputQty": "212735319384692668655", "mpReserves": [ - "36406739143840984912046985", - "33297201930391229875457080", - "36468039339680923763018933" + "33633021800996078616864527", + "31710604828396426034003667", + "35739166251256521538410968" ], "fpReserves": [ - "7164705114255200219306290", - "3697010544884496590059080" + "2068674430766561169071219", + "1120952771367992312790537" ], - "mAssetSupply": "106171664849497151558736002", - "LPTokenSupply": "10833639835934115714617622" + "mAssetSupply": "101081795303926595898059068", + "LPTokenSupply": "3170059304024593176848992" }, { "type": "swap_fp_to_mp", - "inputQty": "1358493856276462883045376", + "inputQty": "63615694558910541201408", "outputIndex": 0, - "outputQty": "1361931338507499551844008", + "outputQty": "63851166912331402892406", "swapFee": "0", - "redemptionFee": "544960731244922987714", + "redemptionFee": "38334102719648281891", "mpReserves": [ - "35044807805333485360202977", - "33297201930391229875457080", - "36468039339680923763018933" + "33569170634083747213972121", + "31710604828396426034003667", + "35739166251256521538410968" ], "fpReserves": [ - "5802303286142892750018856", - "5055504401160959473104456" + "2004784259567147365918123", + "1184568465926902853991945" ], - "mAssetSupply": "104809807982116089012436282", - "LPTokenSupply": "10833639835934115714617622" + "mAssetSupply": "101017943466829901743187863", + "LPTokenSupply": "3170059304024593176848992" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "399429393508661526528", - "outputQty0": "399424366983650981062", - "outputQty": "398737779549920985757", - "swapFee": "318691693306998135", + "inputIndex": 1, + "inputQty": "1828282908290442496", + "outputQty0": "1829203173457552296", + "outputQty": "1820623418395451395", + "swapFee": "1452401640378948", "mpReserves": [ - "35045207234726994021729505", - "33297201930391229875457080", - "36468039339680923763018933" + "33569170634083747213972121", + "31710606656679334324446163", + "35739166251256521538410968" ], "fpReserves": [ - "5802702710509876400999918", - "5055105663381409552118699" + "2004786088770320823470419", + "1184566645303484458540550" ], - "mAssetSupply": "104810207406483072663417344", - "LPTokenSupply": "10833639867803285045317435" + "mAssetSupply": "101017945296033075200740159", + "LPTokenSupply": "3170059304169833340886886" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "61530887177852502016", - "outputQty0": "61540832313489686838", - "outputQty": "61377527932811018145", + "type": "swap_fp_to_mp", + "inputQty": "99659697212396416", + "outputIndex": 0, + "outputQty": "99987638911833627", + "swapFee": "0", + "redemptionFee": "60029546872074", "mpReserves": [ - "35045207234726994021729505", - "33297263461278407727959096", - "36468039339680923763018933" + "33569170534096108302138494", + "31710606656679334324446163", + "35739166251256521538410968" ], "fpReserves": [ - "5802764251342189890686756", - "5055105663381409552118699" + "2004785988721076036679090", + "1184566744963181670936966" ], - "mAssetSupply": "104810268947315386153104182", - "LPTokenSupply": "10833701245331217856335580" + "mAssetSupply": "101017945196043859960820904", + "LPTokenSupply": "3170059304169833340886886" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "742402350078574309933056", - "outputQty0": "742375799630119603783509", - "outputQty": "740370393503368137911139", - "swapFee": "592210427973347569295", + "type": "redeem", + "outputIndex": 1, + "inputQty": "327804130673452416", + "outputQty0": "330079818733057272", + "outputQty": "329715808625086918", + "swapFee1": "196682478404071", + "swapFee2": "198047891239834", "mpReserves": [ - "35787609584805568331662561", - "33297263461278407727959096", - "36468039339680923763018933" + "33569170534096108302138494", + "31710606326963525699359245", + "35739166251256521538410968" ], "fpReserves": [ - "6545140050972309494470265", - "4314735269878041414207560" + "2004785658641257303621818", + "1184566744963181670936966" ], - "mAssetSupply": "105552644746945505756887691", - "LPTokenSupply": "10833760466374015191092509" + "mAssetSupply": "101017944866162089119003466", + "LPTokenSupply": "3170058976385370915274877" }, { "type": "swap_fp_to_mp", - "inputQty": "129153394372162764800", + "inputQty": "58698859759778784083968", "outputIndex": 2, - "outputQty": "129500302751666715336", + "outputQty": "58901141712451551197354", "swapFee": "0", - "redemptionFee": "51814644091450401", + "redemptionFee": "35344750841987584939", "mpReserves": [ - "35787609584805568331662561", - "33297263461278407727959096", - "36467909839378172096303597" + "33569170534096108302138494", + "31710606326963525699359245", + "35680265109544069987213614" ], "fpReserves": [ - "6545010514362080868466569", - "4314864423272413576972360" + "1945877740571277995390077", + "1243265604722960455020934" ], - "mAssetSupply": "105552515262149921222334396", - "LPTokenSupply": "10833760466374015191092509" + "mAssetSupply": "100959072292842951798356664", + "LPTokenSupply": "3170058976385370915274877" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1829425794809434112", - "outputQty0": "1829318456796320969", - "outputQty": "1822770806519613223", + "inputQty": "26199653997718347448320", + "outputQty0": "26199890524950986199105", + "outputQty": "26009826138293468026986", "mpReserves": [ - "35787611414231363141096673", - "33297263461278407727959096", - "36467909839378172096303597" + "33595370188093826649586814", + "31710606326963525699359245", + "35680265109544069987213614" ], "fpReserves": [ - "6545012343680537664787538", - "4314864423272413576972360" + "1972077631096228981589182", + "1243265604722960455020934" ], - "mAssetSupply": "105552517091468378018655365", - "LPTokenSupply": "10833762289144821710705732" + "mAssetSupply": "100985272183367902784555769", + "LPTokenSupply": "3196068802523664383301863" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "834099401884000438976512", - "outputQty0": "834029493747688016789304", - "outputQty": "829649022638896016235137", - "swapFee": "664702076558743803860", + "inputIndex": 1, + "inputQty": "194507405140418428928", + "outputQty0": "194604797223930211688", + "outputQty": "193801850543349645506", + "swapFee": "154551041254643338", "mpReserves": [ - "36621710816115363580073185", - "33297263461278407727959096", - "36467909839378172096303597" + "33595370188093826649586814", + "31710800834368666117788173", + "35680265109544069987213614" ], "fpReserves": [ - "7379041837428225681576842", - "3485215400633517560737223" + "1972272235893452911800870", + "1243071802872417105375428" ], - "mAssetSupply": "106386546585216066035444669", - "LPTokenSupply": "10833828759352477585086118" + "mAssetSupply": "100985466788165126714767457", + "LPTokenSupply": "3196068817978768508766196" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "42116098763015686455296", - "outputQty0": "42125025371453601527878", - "outputQty": "41922485114446223159039", + "inputIndex": 2, + "inputQty": "27187236872389694324736", + "outputQty0": "27174169590098364035080", + "outputQty": "26975815417779533347522", "mpReserves": [ - "36621710816115363580073185", - "33339379560041423414414392", - "36467909839378172096303597" + "33595370188093826649586814", + "31710800834368666117788173", + "35707452346416459681538350" ], "fpReserves": [ - "7421166862799679283104720", - "3485215400633517560737223" + "1999446405483551275835950", + "1243071802872417105375428" ], - "mAssetSupply": "106428671610587519636972547", - "LPTokenSupply": "10875751244466923808245157" + "mAssetSupply": "101012640957755225078802537", + "LPTokenSupply": "3223044633396548042113718" }, { "type": "mint", "inputIndex": 1, - "inputQty": "212862728087469064192", - "outputQty0": "212907522942815532418", - "outputQty": "211881500437964088146", + "inputQty": "10361627918215820607488", + "outputQty0": "10366829394730944609605", + "outputQty": "10290838669373735377765", "mpReserves": [ - "36621710816115363580073185", - "33339592422769510883478584", - "36467909839378172096303597" + "33595370188093826649586814", + "31721162462286881938395661", + "35707452346416459681538350" ], "fpReserves": [ - "7421379770322622098637138", - "3485215400633517560737223" + "2009813234878282220445555", + "1243071802872417105375428" ], - "mAssetSupply": "106428884518110462452504965", - "LPTokenSupply": "10875963125967361772333303" + "mAssetSupply": "101023007787149956023412142", + "LPTokenSupply": "3233335472065921777491483" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "2256978808887703502848", + "outputQty0": "2272296005800905883479", + "outputQty": "2272026858034847132657", + "swapFee1": "1354187285332622101", + "swapFee2": "1363377603480543530", + "mpReserves": [ + "33595370188093826649586814", + "31721162462286881938395661", + "35705180319558424834405693" + ], + "fpReserves": [ + "2007540938872481314562076", + "1243071802872417105375428" + ], + "mAssetSupply": "101020736854521758598072193", + "LPTokenSupply": "3231078628675762607250845" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1066782130890338289582080", + "hardLimitError": true }, { "type": "mint", "inputIndex": 2, - "inputQty": "27181253378632186855424", - "outputQty0": "27178685569503315720924", - "outputQty": "27047515099635859195201", + "inputQty": "19860897861314111602688", + "outputQty0": "19851306981841256882657", + "outputQty": "19705369770268326957430", "mpReserves": [ - "36621710816115363580073185", - "33339592422769510883478584", - "36495091092756804283159021" + "33595370188093826649586814", + "31721162462286881938395661", + "35725041217419738946008381" ], "fpReserves": [ - "7448558455892125414358062", - "3485215400633517560737223" + "2027392245854322571444733", + "1243071802872417105375428" ], - "mAssetSupply": "106456063203679965768225889", - "LPTokenSupply": "10903010641066997631528504" + "mAssetSupply": "101040588161503599854954850", + "LPTokenSupply": "3250783998446030934208275" }, { "type": "swap_fp_to_mp", - "inputQty": "323694103943107292692480", - "outputIndex": 1, - "outputQty": "325301514148368786427629", + "inputQty": "10234814170379255808", + "outputIndex": 0, + "outputQty": "10265161482134556799", "swapFee": "0", - "redemptionFee": "130201704297426004346", + "redemptionFee": "6162863995694988", "mpReserves": [ - "36621710816115363580073185", - "33014290908621142097050955", - "36495091092756804283159021" + "33595359922932344515030015", + "31721162462286881938395661", + "35725041217419738946008381" ], "fpReserves": [ - "7123054195148560403492130", - "3808909504576624853429703" + "2027381974414329746463777", + "1243082037686587484631236" ], - "mAssetSupply": "106130689144640698183364303", - "LPTokenSupply": "10903010641066997631528504" + "mAssetSupply": "101040577896226471025668882", + "LPTokenSupply": "3250783998446030934208275" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "5347023523424123224064", - "outputQty0": "5346396530118875449255", - "outputQty": "5316157019289595030871", - "swapFee": "4258553788558075109", + "type": "mint", + "inputIndex": 1, + "inputQty": "176375109814291456", + "outputQty0": "176463737144830658", + "outputQty": "175163615799731159", "mpReserves": [ - "36627057839638787703297249", - "33014290908621142097050955", - "36495091092756804283159021" + "33595359922932344515030015", + "31721162638661991752687117", + "35725041217419738946008381" ], "fpReserves": [ - "7128400591678679278941385", - "3803593347557335258398832" + "2027382150878066891294435", + "1243082037686587484631236" ], - "mAssetSupply": "106136035541170817058813558", - "LPTokenSupply": "10903011066922376487336014" + "mAssetSupply": "101040578072690208170499540", + "LPTokenSupply": "3250784173609646733939434" }, { "type": "swap_fp_to_mp", - "inputQty": "648888661820817434214400", - "outputIndex": 1, - "outputQty": "650861021954152569505498", + "inputQty": "7620803329463399424", + "outputIndex": 0, + "outputQty": "7643399042687668176", "swapFee": "0", - "redemptionFee": "260516027696123740880", + "redemptionFee": "4588844405147091", "mpReserves": [ - "36627057839638787703297249", - "32363429886666989527545457", - "36495091092756804283159021" + "33595352279533301827361839", + "31721162638661991752687117", + "35725041217419738946008381" ], "fpReserves": [ - "6477110522438369926740083", - "4452482009378152692613232" + "2027374502804058312809382", + "1243089658489916948030660" ], - "mAssetSupply": "105485005987958203830353136", - "LPTokenSupply": "10903011066922376487336014" + "mAssetSupply": "101040570429205043997161578", + "LPTokenSupply": "3250784173609646733939434" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "286719268569977351831552", - "outputQty0": "286797386500602356135361", - "outputQty": "285689272799706987027583", - "swapFee": "228618690307682198194", - "mpReserves": [ - "36627057839638787703297249", - "32650149155236966879377009", - "36495091092756804283159021" - ], - "fpReserves": [ - "6763907908938972282875444", - "4166792736578445705585649" - ], - "mAssetSupply": "105771803374458806186488497", - "LPTokenSupply": "10903033928791407255555833" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "17633999530656897433600", - "outputQty0": "17691887753096046311585", - "outputQty": "17680171887646462654787", - "swapFee1": "10580399718394138460", - "swapFee2": "7076755101238418524", + "inputIndex": 2, + "inputQty": "3532654522146617294848", + "outputQty0": "3530942515446438628176", + "outputQty": "3515467563685504112701", + "swapFee": "2803934227373359486", "mpReserves": [ - "36627057839638787703297249", - "32632468983349320416722222", - "36495091092756804283159021" + "33595352279533301827361839", + "31721162638661991752687117", + "35728573871941885563303229" ], "fpReserves": [ - "6746216021185876236563859", - "4166792736578445705585649" + "2030905445319504751437558", + "1239574190926231443917959" ], - "mAssetSupply": "105754118563460811378595436", - "LPTokenSupply": "10885400987300722197536079" + "mAssetSupply": "101044101371720490435789754", + "LPTokenSupply": "3250784454003069471275382" }, { - "type": "swap_fp_to_mp", - "inputQty": "101843952872671309463552", - "outputIndex": 2, - "outputQty": "102155606048566887827840", - "swapFee": "0", - "redemptionFee": "40873877043875103369", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "375610241799136739328", + "outputQty0": "375614565554271776297", + "outputQty": "373960098098669874202", + "swapFee": "298272891526528224", "mpReserves": [ - "36627057839638787703297249", - "32632468983349320416722222", - "36392935486708237395331181" + "33595727889775100964101167", + "31721162638661991752687117", + "35728573871941885563303229" ], "fpReserves": [ - "6644031328576188478140708", - "4268636689451117015049201" + "2031281059885059023213855", + "1239200230828132774043757" ], - "mAssetSupply": "105651974744728167495275654", - "LPTokenSupply": "10885400987300722197536079" + "mAssetSupply": "101044476986286044707566051", + "LPTokenSupply": "3250784483830358623928204" }, { "type": "mint", "inputIndex": 2, - "inputQty": "575913578334107834777600", - "outputQty0": "575839116293020751646000", - "outputQty": "573607165980373781193359", + "inputQty": "168503150710828826624", + "outputQty0": "168421449248612090975", + "outputQty": "167177608029596653234", "mpReserves": [ - "36627057839638787703297249", - "32632468983349320416722222", - "36968849065042345230108781" + "33595727889775100964101167", + "31721162638661991752687117", + "35728742375092596392129853" ], "fpReserves": [ - "7219870444869209229786708", - "4268636689451117015049201" + "2031449481334307635304830", + "1239200230828132774043757" ], - "mAssetSupply": "106227813861021188246921654", - "LPTokenSupply": "11459008153281095978729438" + "mAssetSupply": "101044645407735293319657026", + "LPTokenSupply": "3250951661438388220581438" }, { "type": "swap_fp_to_mp", - "inputQty": "30757862487009509376", + "inputQty": "1506681885508236476416", "outputIndex": 1, - "outputQty": "30856960382823835353", + "outputQty": "1510461385546440763504", "swapFee": "0", - "redemptionFee": "12351165417159690", + "redemptionFee": "907277031708219497", "mpReserves": [ - "36627057839638787703297249", - "32632438126388937592886869", - "36968849065042345230108781" + "33595727889775100964101167", + "31719652177276445311923613", + "35728742375092596392129853" ], "fpReserves": [ - "7219839566955666330560590", - "4268667447313604024558577" + "2029937352948127269475046", + "1240706912713641010520173" ], - "mAssetSupply": "106227782995458810764855226", - "LPTokenSupply": "11459008153281095978729438" + "mAssetSupply": "101043134186626144662046739", + "LPTokenSupply": "3250951661438388220581438" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "16802330604347961901056", - "outputQty0": "16799867746490163889189", - "outputQty": "16720689700623245101202", - "swapFee": "13385919675428298543", + "inputQty": "2193412142406174507008", + "outputQty0": "2192347974681224930001", + "outputQty": "2182695423874307324340", + "swapFee": "1740933463625059749", "mpReserves": [ - "36627057839638787703297249", - "32632438126388937592886869", - "36985651395646693192009837" + "33595727889775100964101167", + "31719652177276445311923613", + "35730935787235002566636861" ], "fpReserves": [ - "7236639434702156494449779", - "4251946757612980779457375" + "2032129700922808494405047", + "1238524217289766703195833" ], - "mAssetSupply": "106244582863205300928744415", - "LPTokenSupply": "11459009491873063521559292" + "mAssetSupply": "101045326534600825886976740", + "LPTokenSupply": "3250951835531734583087412" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "200825253610880271122432", + "outputQty0": "202164595445166431331166", + "outputQty": "202037588003629295103240", + "swapFee1": "120495152166528162673", + "swapFee2": "121298757267099858798", + "mpReserves": [ + "33393690301771471668997927", + "31719652177276445311923613", + "35730935787235002566636861" + ], + "fpReserves": [ + "1829965105477642063073881", + "1238524217289766703195833" + ], + "mAssetSupply": "100843283237912926555504372", + "LPTokenSupply": "3050138631436070964781247" }, { "type": "swap_fp_to_mp", - "inputQty": "267123607220403551862784", + "inputQty": "858735178329826000896", "outputIndex": 1, - "outputQty": "267879664765404046018212", + "outputQty": "860163224950146645595", "swapFee": "0", - "redemptionFee": "107225767715618677743", + "redemptionFee": "516658602649294233", "mpReserves": [ - "36627057839638787703297249", - "32364558461623533546868657", - "36985651395646693192009837" + "33393690301771471668997927", + "31718792014051495165278018", + "35730935787235002566636861" ], "fpReserves": [ - "6968575015413109800090752", - "4519070364833384331320159" + "1829104007806559906017897", + "1239382952468096529196729" ], - "mAssetSupply": "105976625669683969853063131", - "LPTokenSupply": "11459009491873063521559292" + "mAssetSupply": "100842422656900447047742621", + "LPTokenSupply": "3050138631436070964781247" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "32981896469706151297024", - "outputQty0": "32991735146508288385062", - "outputQty": "32861765433976038725095", - "swapFee": "26295305891625029608", + "type": "swap_fp_to_mp", + "inputQty": "4577503527676384641024", + "outputIndex": 2, + "outputQty": "4589507595798078700293", + "swapFee": "0", + "redemptionFee": "2753977938821364433", "mpReserves": [ - "36627057839638787703297249", - "32397540358093239698165681", - "36985651395646693192009837" + "33393690301771471668997927", + "31718792014051495165278018", + "35726346279639204487936568" ], "fpReserves": [ - "7001566750559618088475814", - "4486208599399408292595064" + "1824514044575190965294567", + "1243960455995772913837753" ], - "mAssetSupply": "106009617404830478141448193", - "LPTokenSupply": "11459012121403652684062252" + "mAssetSupply": "100837835447647016928383724", + "LPTokenSupply": "3050138631436070964781247" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "137946496265425594089472", - "outputQty0": "137924584188237543078037", - "outputQty": "137403030823492098505632", + "inputIndex": 0, + "inputQty": "141517928320425554608128", + "outputQty0": "141522575420339589304199", + "outputQty": "140506109417330268783008", "mpReserves": [ - "36627057839638787703297249", - "32397540358093239698165681", - "37123597891912118786099309" + "33535208230091897223606055", + "31718792014051495165278018", + "35726346279639204487936568" ], "fpReserves": [ - "7139491334747855631553851", - "4486208599399408292595064" + "1966036619995530554598766", + "1243960455995772913837753" ], - "mAssetSupply": "106147541989018715684526230", - "LPTokenSupply": "11596415152227144782567884" + "mAssetSupply": "100979358023067356517687923", + "LPTokenSupply": "3190644740853401233564255" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "227047766998387643121664", - "outputQty0": "227019087493688614185901", - "outputQty": "225994528592913061148119", - "swapFee": "180913340238806893676", + "type": "swap_fp_to_mp", + "inputQty": "10929605717453564805120", + "outputIndex": 0, + "outputQty": "10958279293012093492345", + "swapFee": "0", + "redemptionFee": "6579059707818626113", "mpReserves": [ - "36854105606637175346418913", - "32397540358093239698165681", - "37123597891912118786099309" + "33524249950798885130113710", + "31718792014051495165278018", + "35726346279639204487936568" ], "fpReserves": [ - "7366510422241544245739752", - "4260214070806495231446945" + "1955071520482499511075726", + "1254890061713226478642873" ], - "mAssetSupply": "106374561076512404298712131", - "LPTokenSupply": "11596433243561168663257251" + "mAssetSupply": "100968399502614033292790996", + "LPTokenSupply": "3190644740853401233564255" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "13046743953232092987392", - "outputQty0": "13045004324938614539941", - "outputQty": "12980968037336430028593", - "swapFee": "10393144108275006106", + "inputQty": "7472364046252521816064", + "outputQty0": "7472530647346137338067", + "outputQty": "7442526258271910345124", + "swapFee": "5934618214690336983", "mpReserves": [ - "36867152350590407439406305", - "32397540358093239698165681", - "37123597891912118786099309" + "33531722314845137651929774", + "31718792014051495165278018", + "35726346279639204487936568" ], "fpReserves": [ - "7379555426566482860279693", - "4247233102769158801418352" + "1962544051129845648413793", + "1247447535454954568297749" ], - "mAssetSupply": "106387606080837342913252072", - "LPTokenSupply": "11596434282875579490757861" + "mAssetSupply": "100975872033261379430129063", + "LPTokenSupply": "3190645334315222702597953" }, { "type": "swap_fp_to_mp", - "inputQty": "2471086658398833868800", + "inputQty": "1395463068215921344512", "outputIndex": 1, - "outputQty": "2479574568948214449324", + "outputQty": "1398478553705628386780", "swapFee": "0", - "redemptionFee": "992534109071647414", + "redemptionFee": "840008679116310032", "mpReserves": [ - "36867152350590407439406305", - "32395060783524291483716357", - "37123597891912118786099309" + "33531722314845137651929774", + "31717393535497789536891238", + "35726346279639204487936568" ], "fpReserves": [ - "7377074091293803741742227", - "4249704189427557635287152" + "1961144036664651798359716", + "1248842998523170489642261" ], - "mAssetSupply": "106385125738098772866362020", - "LPTokenSupply": "11596434282875579490757861" + "mAssetSupply": "100974472858804864696385018", + "LPTokenSupply": "3190645334315222702597953" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "673382689443901981327360", - "outputQty0": "673264701254298951514949", - "outputQty": "670389020583568463848659", - "mpReserves": [ - "36867152350590407439406305", - "32395060783524291483716357", - "37796980581356020767426669" - ], - "fpReserves": [ - "8050338792548102693257176", - "4249704189427557635287152" - ], - "mAssetSupply": "107058390439353071817876969", - "LPTokenSupply": "12266823303459147954606520" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "322103130260088937250816", - "outputIndex": 2, - "outputQty": "323462263676222507672386", - "swapFee": "0", - "redemptionFee": "129412714191262309280", + "inputQty": "5257817895074004992000", + "outputQty0": "5255240521647997274302", + "outputQty": "5233854359330843603774", + "swapFee": "4173558506906801964", "mpReserves": [ - "36867152350590407439406305", - "32395060783524291483716357", - "37473518317679798259754283" + "33531722314845137651929774", + "31717393535497789536891238", + "35731604097534278492928568" ], "fpReserves": [ - "7726807007069946920056983", - "4571807319687646572537968" + "1966399277186299795634018", + "1243609144163839646038487" ], - "mAssetSupply": "106734988066589107306986056", - "LPTokenSupply": "12266823303459147954606520" + "mAssetSupply": "100979728099326512693659320", + "LPTokenSupply": "3190645751671073393278149" }, { "type": "mint", "inputIndex": 1, - "inputQty": "69579026962659205120", - "outputQty0": "69601400210682028417", - "outputQty": "69321081415077255238", + "inputQty": "348128326253417292890112", + "outputQty0": "348290551164673479545179", + "outputQty": "345648758432871899258080", "mpReserves": [ - "36867152350590407439406305", - "32395130362551254142921477", - "37473518317679798259754283" + "33531722314845137651929774", + "32065521861751206829781350", + "35731604097534278492928568" ], "fpReserves": [ - "7726876608470157602085400", - "4571807319687646572537968" + "2314689828350973275179197", + "1243609144163839646038487" ], - "mAssetSupply": "106735057667989317989014473", - "LPTokenSupply": "12266892624540563031861758" + "mAssetSupply": "101328018650491186173204499", + "LPTokenSupply": "3536294510103945292536229" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2540798061037286326272", - "outputQty0": "2541614804206740579770", - "outputQty": "2531377037862471184669", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "238801619117098414374912", + "outputQty0": "238687169347359488587922", + "outputQty": "236931198370685329764442", + "swapFee": "189415208475835704209", "mpReserves": [ - "36867152350590407439406305", - "32397671160612291429247749", - "37473518317679798259754283" + "33531722314845137651929774", + "32065521861751206829781350", + "35970405716651376907303480" ], "fpReserves": [ - "7729418223274364342665170", - "4571807319687646572537968" + "2553376997698332763767119", + "1006677945793154316274045" ], - "mAssetSupply": "106737599282793524729594243", - "LPTokenSupply": "12269424001578425503046427" + "mAssetSupply": "101566705819838545661792421", + "LPTokenSupply": "3536313451624792876106649" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "33904181852340347731968", - "outputQty0": "33899953629467619725270", - "outputQty": "33739456078618370048845", - "swapFee": "27010507394100389832", + "type": "redeem", + "outputIndex": 0, + "inputQty": "5843142830789077499904", + "outputQty0": "5893349605476257197336", + "outputQty": "5889393364626931297497", + "swapFee1": "3505885698473446499", + "swapFee2": "3536009763285754318", "mpReserves": [ - "36901056532442747787138273", - "32397671160612291429247749", - "37473518317679798259754283" + "33525832921480510720632277", + "32065521861751206829781350", + "35970405716651376907303480" ], "fpReserves": [ - "7763318176903831962390440", - "4538067863609028202489123" + "2547483648092856506569783", + "1006677945793154316274045" ], - "mAssetSupply": "106771499236422992349319513", - "LPTokenSupply": "12269426702629164913085410" + "mAssetSupply": "101560816006242832690349403", + "LPTokenSupply": "3530470659382573645951394" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "60841314146918357532672", - "outputQty0": "60830564420847780719738", - "outputQty": "60582160343850200831606", + "inputQty": "1081557079712077937901568", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "37680564242383676375040", + "outputQty0": "38002913510922816297687", + "outputQty": "37998898899691207429823", + "swapFee1": "22608338545430205825", + "swapFee2": "22801748106553689778", "mpReserves": [ - "36901056532442747787138273", - "32397671160612291429247749", - "37534359631826716617286955" + "33525832921480510720632277", + "32065521861751206829781350", + "35932406817751685699873657" ], "fpReserves": [ - "7824148741324679743110178", - "4538067863609028202489123" + "2509480734581933690272096", + "1006677945793154316274045" ], - "mAssetSupply": "106832329800843840130039251", - "LPTokenSupply": "12330008862973015113917016" + "mAssetSupply": "101522835894480016427741494", + "LPTokenSupply": "3492792355974044512596936" }, { "type": "swap_fp_to_mp", - "inputQty": "2206445637100243456", + "inputQty": "385440067445257273344", "outputIndex": 1, - "outputQty": "2213842213430714134", + "outputQty": "388297428540442438479", "swapFee": "0", - "redemptionFee": "886178729762292", + "redemptionFee": "233223247753796884", "mpReserves": [ - "36901056532442747787138273", - "32397668946770077998533615", - "37534359631826716617286955" + "33525832921480510720632277", + "32065133564322666387342871", + "35932406817751685699873657" ], "fpReserves": [ - "7824146525877855337379882", - "4538070070054665302732579" + "2509092029169010695465379", + "1007063385860599573547389" ], - "mAssetSupply": "106832327586283194454071247", - "LPTokenSupply": "12330008862973015113917016" + "mAssetSupply": "101522447422290341186731661", + "LPTokenSupply": "3492792355974044512596936" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "361617565000128528384", - "outputQty0": "361734911513133019674", - "outputQty": "359976790617105620990", - "swapFee": "288202356417376599", + "inputIndex": 2, + "inputQty": "6648899747732363673600", + "outputQty0": "6645627439062603952122", + "outputQty": "6584093335176327052839", + "swapFee": "5268368993018261122", "mpReserves": [ - "36901056532442747787138273", - "32398030564335078127061999", - "37534359631826716617286955" + "33525832921480510720632277", + "32065133564322666387342871", + "35939055717499418063547257" ], "fpReserves": [ - "7824508260789368470399556", - "4537710093264048197111589" + "2515737656608073299417501", + "1000479292525423246494550" ], - "mAssetSupply": "106832689321194707587090921", - "LPTokenSupply": "12330008891793250755654675" + "mAssetSupply": "101529093049729403790683783", + "LPTokenSupply": "3492792882810943814423048" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "115383632081933672906752", - "outputQty0": "115368940840261408123096", - "outputQty": "114786452910950583224586", - "swapFee": "91914697020784636874", + "inputIndex": 2, + "inputQty": "116367787703171557621760", + "outputQty0": "116309473393452053309528", + "outputQty": "115064476490285234482910", + "swapFee": "92192483580145511071", "mpReserves": [ - "37016440164524681460045025", - "32398030564335078127061999", - "37534359631826716617286955" + "33525832921480510720632277", + "32065133564322666387342871", + "36055423505202589621169017" ], "fpReserves": [ - "7939877201629629878522652", - "4422923640353097613887003" + "2632047130001525352727029", + "885414816035138012011640" ], - "mAssetSupply": "106948058262034968995214017", - "LPTokenSupply": "12330018083262952834118362" + "mAssetSupply": "101645402523122855843993311", + "LPTokenSupply": "3492802102059301828974155" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "9997720889182453235712", - "outputQty0": "9995967243343289134311", - "outputQty": "9943413405472891510241", - "swapFee": "7962834252345760993", + "type": "mint", + "inputIndex": 0, + "inputQty": "98023041942154628825088", + "outputQty0": "98029929298250786832226", + "outputQty": "97050519292278638910615", "mpReserves": [ - "37016440164524681460045025", - "32398030564335078127061999", - "37544357352715899070522667" + "33623855963422665349457365", + "32065133564322666387342871", + "36055423505202589621169017" ], "fpReserves": [ - "7949873168872973167656963", - "4412980226947624722376762" + "2730077059299776139559255", + "885414816035138012011640" ], - "mAssetSupply": "106958054229278312284348328", - "LPTokenSupply": "12330018879546378068694461" + "mAssetSupply": "101743432452421106630825537", + "LPTokenSupply": "3589852621351580467884770" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "5024074664602888044544", - "outputQty0": "5025725114208928701375", - "outputQty": "4999173951854851900099", - "swapFee": "4003469201006317076", + "type": "swap_fp_to_mp", + "inputQty": "15286730606463615500288", + "outputIndex": 0, + "outputQty": "15461481860490134649887", + "swapFee": "0", + "redemptionFee": "9283047120696987159", "mpReserves": [ - "37016440164524681460045025", - "32403054638999681015106543", - "37544357352715899070522667" + "33608394481562175214807478", + "32065133564322666387342871", + "36055423505202589621169017" ], "fpReserves": [ - "7954898893987182096358338", - "4407981052995769870476663" + "2714605314098614494292968", + "900701546641601627511928" ], - "mAssetSupply": "106963079954392521213049703", - "LPTokenSupply": "12330019279893298169326168" + "mAssetSupply": "101727969990267065682546409", + "LPTokenSupply": "3589852621351580467884770" }, { "type": "swap_fp_to_mp", - "inputQty": "21152548949528199168", - "outputIndex": 2, - "outputQty": "21243292194543696132", + "inputQty": "123552157091093708800", + "outputIndex": 1, + "outputQty": "124884408280116296569", "swapFee": "0", - "redemptionFee": "8499225117594921", + "redemptionFee": "75010673708406171", "mpReserves": [ - "37016440164524681460045025", - "32403054638999681015106543", - "37544336109423704526826535" + "33608394481562175214807478", + "32065008679914386271046302", + "36055423505202589621169017" ], "fpReserves": [ - "7954877645924388109053894", - "4408002205544719398675831" + "2714480296309100484006883", + "900825098798692721220728" ], - "mAssetSupply": "106963058714828952343340180", - "LPTokenSupply": "12330019279893298169326168" + "mAssetSupply": "101727845047488225380666495", + "LPTokenSupply": "3589852621351580467884770" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "27210410770898108809216", - "outputQty0": "27310294121186574275888", - "outputQty": "27302904091006485518748", - "swapFee1": "16326246462538865285", - "swapFee2": "10924117648474629710", + "outputIndex": 2, + "inputQty": "3902932736574760157184", + "outputQty0": "3939841368374338649351", + "outputQty": "3939458625339305874901", + "swapFee1": "2341759641944856094", + "swapFee2": "2363904821024603189", "mpReserves": [ - "36989137260433674974526277", - "32403054638999681015106543", - "37544336109423704526826535" + "33608394481562175214807478", + "32065008679914386271046302", + "36051484046577250315294116" ], "fpReserves": [ - "7927567351803201534778006", - "4408002205544719398675831" + "2710540454940726145357532", + "900825098798692721220728" ], - "mAssetSupply": "106935759344825414243694002", - "LPTokenSupply": "12302810501747046314403480" + "mAssetSupply": "101723907570024672066620333", + "LPTokenSupply": "3585949922790969902213195" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1416071746067121276190720", - "outputQty0": "1416460403911864088463698", - "outputQty": "1410010751137007816691366", + "type": "swap_fp_to_mp", + "inputQty": "40778925814393492996096", + "outputIndex": 2, + "outputQty": "41232797178041669756926", + "swapFee": "0", + "redemptionFee": "24742163236709804522", "mpReserves": [ - "36989137260433674974526277", - "33819126385066802291297263", - "37544336109423704526826535" + "33608394481562175214807478", + "32065008679914386271046302", + "36010251249399208645537190" ], "fpReserves": [ - "9344027755715065623241704", - "4408002205544719398675831" + "2669303516212876471152918", + "941604024613086214216824" ], - "mAssetSupply": "108352219748737278332157700", - "LPTokenSupply": "13712821252884054131094846" + "mAssetSupply": "101682695373460059102220241", + "LPTokenSupply": "3585949922790969902213195" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "29641441443446347792384", - "outputQty0": "29637558244692667836890", - "outputQty": "29427647286500879515682", - "swapFee": "23594900312894491572", + "type": "redeem", + "outputIndex": 1, + "inputQty": "457699281938752888373248", + "outputQty0": "461691756096881582394975", + "outputQty": "461181224547735318094243", + "swapFee1": "274619569163251733023", + "swapFee2": "277015053658128949436", "mpReserves": [ - "36989137260433674974526277", - "33819126385066802291297263", - "37573977550867150874618919" + "33608394481562175214807478", + "31603827455366650952952059", + "36010251249399208645537190" ], "fpReserves": [ - "9373665313959758291078594", - "4378574558258218519160149" + "2207611760115994888757943", + "941604024613086214216824" ], - "mAssetSupply": "108381857306981970999994590", - "LPTokenSupply": "13712823612374085420544003" + "mAssetSupply": "101221280632416835648774702", + "LPTokenSupply": "3128278102809133339013249" }, { "type": "swap_fp_to_mp", - "inputQty": "414417491954263808", + "inputQty": "173745493780010696704", "outputIndex": 0, - "outputQty": "416931668227241224", + "outputQty": "174953099513563716196", "swapFee": "0", - "redemptionFee": "166825858212325", + "redemptionFee": "105037079467516302", "mpReserves": [ - "36989136843502006747285053", - "33819126385066802291297263", - "37573977550867150874618919" + "33608219528462661651091282", + "31603827455366650952952059", + "36010251249399208645537190" ], "fpReserves": [ - "9373664896895112760265532", - "4378574972675710473423957" + "2207436698316882361587790", + "941777770106866224913528" ], - "mAssetSupply": "108381856890084151327393853", - "LPTokenSupply": "13712823612374085420544003" + "mAssetSupply": "101221105675654802589120851", + "LPTokenSupply": "3128278102809133339013249" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "38651583341849837568", - "outputQty0": "38648445373628089620", - "outputQty": "38459454631920808380", + "inputIndex": 1, + "inputQty": "626290900634329546752", + "outputQty0": "626634928740400755435", + "outputQty": "621061859212818212752", + "mpReserves": [ + "33608219528462661651091282", + "31604453746267285282498811", + "36010251249399208645537190" + ], + "fpReserves": [ + "2208063333245622762343225", + "941777770106866224913528" + ], + "mAssetSupply": "101221732310583542989876286", + "LPTokenSupply": "3128899164668346157226001" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "163762096685522386944", + "outputQty0": "165132541195909458776", + "outputQty": "165121760481607388263", + "swapFee1": "98257258011313432", + "swapFee2": "99079524717545675", "mpReserves": [ - "36989175495085348597122621", - "33819126385066802291297263", - "37573977550867150874618919" + "33608219528462661651091282", + "31604453746267285282498811", + "36010086127638727038148927" ], "fpReserves": [ - "9373703545340486388355152", - "4378574972675710473423957" + "2207898200704426852884449", + "941777770106866224913528" ], - "mAssetSupply": "108381895538529524955483473", - "LPTokenSupply": "13712862071828717341352383" + "mAssetSupply": "101221567277121871797963185", + "LPTokenSupply": "3128735412397386435970400" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "7800214319231361089536", - "outputQty0": "7799184123602019150164", - "outputQty": "7743358854428354875398", - "swapFee": "6208826802313317727", + "inputIndex": 0, + "inputQty": "7173795906569831972864", + "outputQty0": "7173942239248386897171", + "outputQty": "7113760372368712438852", + "swapFee": "5688071510084151873", "mpReserves": [ - "36989175495085348597122621", - "33819126385066802291297263", - "37581777765186382235708455" + "33615393324369231483064146", + "31604453746267285282498811", + "36010086127638727038148927" ], "fpReserves": [ - "9381502729464088407505316", - "4370831613821282118548559" + "2215072142943675239781620", + "934664009734497512474676" ], - "mAssetSupply": "108389694722653126974633637", - "LPTokenSupply": "13712862692711397572684155" + "mAssetSupply": "101228741219361120184860356", + "LPTokenSupply": "3128735981204537444385587" }, { "type": "swap_fp_to_mp", - "inputQty": "524391535131280998400", - "outputIndex": 2, - "outputQty": "527616072939996646198", + "inputQty": "84235646275267185344512", + "outputIndex": 0, + "outputQty": "84762453589369909098290", "swapFee": "0", - "redemptionFee": "211102953115014304", + "redemptionFee": "50889369651482535697", "mpReserves": [ - "36989175495085348597122621", - "33819126385066802291297263", - "37581250149113442239062257" + "33530630870779861573965856", + "31604453746267285282498811", + "36010086127638727038148927" ], "fpReserves": [ - "9380974972081300871744425", - "4371356005356413399546959" + "2130256526857871013619139", + "1018899656009764697819188" ], - "mAssetSupply": "108389167176373292553887050", - "LPTokenSupply": "13712862692711397572684155" + "mAssetSupply": "101143976492644967441233572", + "LPTokenSupply": "3128735981204537444385587" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "14285384514222770176", - "outputQty0": "14283495051235476573", - "outputQty": "14181060977847407068", - "swapFee": "11370806738449163", + "inputIndex": 0, + "inputQty": "237645839808449484947456", + "outputQty0": "237649214917071065999717", + "outputQty": "235419432276384417335362", + "swapFee": "188474501433396424063", "mpReserves": [ - "36989175495085348597122621", - "33819126385066802291297263", - "37581264434497956461832433" + "33768276710588311058913312", + "31604453746267285282498811", + "36010086127638727038148927" ], "fpReserves": [ - "9380989255576352107220998", - "4371341824295435552139891" + "2367905741774942079618856", + "783480223733380280483826" ], - "mAssetSupply": "108389181459868343789363623", - "LPTokenSupply": "13712862693848478246529071" + "mAssetSupply": "101381625707562038507233289", + "LPTokenSupply": "3128754828654680784027993" }, { "type": "mint", "inputIndex": 2, - "inputQty": "23321519213079905173504", - "outputQty0": "23318419070254212186475", - "outputQty": "23204049973486236662318", + "inputQty": "684212525128498485919744", + "outputQty0": "683821349797863379519281", + "outputQty": "676404903924236026847656", "mpReserves": [ - "36989175495085348597122621", - "33819126385066802291297263", - "37604585953711036367005937" + "33768276710588311058913312", + "31604453746267285282498811", + "36694298652767225524068671" ], "fpReserves": [ - "9404307674646606319407473", - "4371341824295435552139891" + "3051727091572805459138137", + "783480223733380280483826" ], - "mAssetSupply": "108412499878938598001550098", - "LPTokenSupply": "13736066743821964483191389" + "mAssetSupply": "102065447057359901886752570", + "LPTokenSupply": "3805159732578916810875649" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "3002432569247295078400", - "outputQty0": "3015433477552129268032", - "outputQty": "3014629784943470427336", - "swapFee1": "1801459541548377047", - "swapFee2": "1206173391020851707", + "type": "mint", + "inputIndex": 1, + "inputQty": "1355338028123057553408", + "outputQty0": "1356178500598023220022", + "outputQty": "1340485246323514227963", "mpReserves": [ - "36989175495085348597122621", - "33819126385066802291297263", - "37601571323926092896578601" + "33768276710588311058913312", + "31605809084295408340052219", + "36694298652767225524068671" ], "fpReserves": [ - "9401292241169054190139441", - "4371341824295435552139891" + "3053083270073403482358159", + "783480223733380280483826" ], - "mAssetSupply": "108409485651634436893133773", - "LPTokenSupply": "13733064491398671342950693" + "mAssetSupply": "102066803235860499909972592", + "LPTokenSupply": "3806500217825240325103612" }, { - "type": "swap_fp_to_mp", - "inputQty": "60994969146919193935872", - "outputIndex": 2, - "outputQty": "61363942302769626353561", - "swapFee": "0", - "redemptionFee": "24552165778235795488", + "type": "mint", + "inputIndex": 0, + "inputQty": "40373561188939424858112", + "outputQty0": "40375329829225645632377", + "outputQty": "39906345926259640290741", "mpReserves": [ - "36989175495085348597122621", - "33819126385066802291297263", - "37540207381623323270225040" + "33808650271777250483771424", + "31605809084295408340052219", + "36694298652767225524068671" ], "fpReserves": [ - "9339911826723464701419199", - "4432336793442354746075763" + "3093458599902629127990536", + "783480223733380280483826" ], - "mAssetSupply": "108348129789354625640209019", - "LPTokenSupply": "13733064491398671342950693" + "mAssetSupply": "102107178565689725555604969", + "LPTokenSupply": "3846406563751499965394353" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "60209058559029904670720", - "outputQty0": "60464196909161496672501", - "outputQty": "60447760343137318455722", - "swapFee1": "36125435135417942802", - "swapFee2": "24185678763664598669", + "outputIndex": 0, + "inputQty": "23640502957085597696", + "outputQty0": "23905004919194582788", + "outputQty": "23889694951159811668", + "swapFee1": "14184301774251358", + "swapFee2": "14343002951516749", "mpReserves": [ - "36989175495085348597122621", - "33819126385066802291297263", - "37479759621280185951769318" + "33808626382082299323959756", + "31605809084295408340052219", + "36694298652767225524068671" ], "fpReserves": [ - "9279447629814303204746698", - "4432336793442354746075763" + "3093434694897709933407748", + "783480223733380280483826" ], - "mAssetSupply": "108287689778124227808135187", - "LPTokenSupply": "13672859045383154980074253" + "mAssetSupply": "102107154675027809312538930", + "LPTokenSupply": "3846382924666973057221792" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "369310245899768448", - "outputQty0": "369391836745200189", - "outputQty": "366851806924282472", - "swapFee": "294092916367613", - "mpReserves": [ - "36989175495085348597122621", - "33819126754377048191065711", - "37479759621280185951769318" - ], - "fpReserves": [ - "9279447999206139949946887", - "4432336426590547821793291" - ], - "mAssetSupply": "108287690147516064553335376", - "LPTokenSupply": "13672859045412564271711014" + "inputQty": "840472458832018103336960", + "hardLimitError": true }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "289098641552921231360", - "outputQty0": "290320756461649036319", - "outputQty": "290140525123401836152", - "swapFee1": "173459184931752738", - "swapFee2": "116128302584659614", - "mpReserves": [ - "36989175495085348597122621", - "33818836613851924789229559", - "37479759621280185951769318" - ], - "fpReserves": [ - "9279157678449678300910568", - "4432336426590547821793291" - ], - "mAssetSupply": "108287399942887905488958671", - "LPTokenSupply": "13672569964116929843654927" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "2125130084547650650112", - "outputQty0": "2124861178547578205450", - "outputQty": "2114646128752167317023", - "mpReserves": [ - "36989175495085348597122621", - "33818836613851924789229559", - "37481884751364733602419430" - ], - "fpReserves": [ - "9281282539628225879116018", - "4432336426590547821793291" - ], - "mAssetSupply": "108289524804066453067164121", - "LPTokenSupply": "13674684610245682010971950" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "15103522550152878358528", - "outputQty0": "15102249460109047336671", - "outputQty": "15029593462562782235637", + "outputIndex": 0, + "inputQty": "102055172632888553242624", + "outputQty0": "103185672595022075854992", + "outputQty": "103118708470693930442884", + "swapFee1": "61233103579733131945", + "swapFee2": "61911403557013245512", "mpReserves": [ - "37004279017635501475481149", - "33818836613851924789229559", - "37481884751364733602419430" + "33705507673611605393516872", + "31605809084295408340052219", + "36694298652767225524068671" ], "fpReserves": [ - "9296384789088334926452689", - "4432336426590547821793291" + "2990249022302687857552756", + "783480223733380280483826" ], - "mAssetSupply": "108304627053526562114500792", - "LPTokenSupply": "13689714203708244793207587" + "mAssetSupply": "102004030913836344249929450", + "LPTokenSupply": "3744333875344442477292362" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "746400486295147680628736", - "outputQty0": "746546397159129797671799", - "outputQty": "742838791826711296342418", + "type": "swap_fp_to_mp", + "inputQty": "533153635204719108423680", + "outputIndex": 0, + "outputQty": "538002180341587597537056", + "swapFee": "0", + "redemptionFee": "323028230105778536278", "mpReserves": [ - "37004279017635501475481149", - "34565237100147072469858295", - "37481884751364733602419430" + "33167505493270017795979816", + "31605809084295408340052219", + "36694298652767225524068671" ], "fpReserves": [ - "10042931186247464724124488", - "4432336426590547821793291" + "2451868638793056963755826", + "1316633858938099388907506" ], - "mAssetSupply": "109051173450685691912172591", - "LPTokenSupply": "14432552995534956089550005" + "mAssetSupply": "101465973558556819134668798", + "LPTokenSupply": "3744333875344442477292362" }, { "type": "mint", "inputIndex": 1, - "inputQty": "107332697085072015360", - "outputQty0": "107350924288349413594", - "outputQty": "106801546732336488919", + "inputQty": "43706506496977863180288", + "outputQty0": "43731099150585774282843", + "outputQty": "43376073330974539732647", "mpReserves": [ - "37004279017635501475481149", - "34565344432844157541873655", - "37481884751364733602419430" + "33167505493270017795979816", + "31649515590792386203232507", + "36694298652767225524068671" ], "fpReserves": [ - "10043038537171753073538082", - "4432336426590547821793291" + "2495599737943642738038669", + "1316633858938099388907506" ], - "mAssetSupply": "109051280801609980261586185", - "LPTokenSupply": "14432659797081688426038924" + "mAssetSupply": "101509704657707404908951641", + "LPTokenSupply": "3787709948675417017025009" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "256357135662835908476928", - "outputQty0": "256398450335214899636938", - "outputQty": "254237365055072422433928", - "swapFee": "204058482336966040662", + "inputQty": "268067710303899520", + "outputQty0": "268217439438922264", + "outputQty": "266666400830756304", + "swapFee": "212825241242676", "mpReserves": [ - "37004279017635501475481149", - "34821701568506993450350583", - "37481884751364733602419430" + "33167505493270017795979816", + "31649515858860096507132027", + "36694298652767225524068671" ], "fpReserves": [ - "10299436987506967973175020", - "4178099061535475399359363" + "2495600006161082176960933", + "1316633592271698558151202" ], - "mAssetSupply": "109307679251945195161223123", - "LPTokenSupply": "14432680202929922122642990" + "mAssetSupply": "101509704925924844347873905", + "LPTokenSupply": "3787709948696699541149276" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "952040421060530405376", - "outputQty0": "956713863410974180772", - "outputQty": "956421582208743950202", - "swapFee1": "571224252636318243", - "swapFee2": "382685545364389672", + "type": "mint", + "inputIndex": 2, + "inputQty": "180344406646037711683584", + "outputQty0": "180222537206355823186244", + "outputQty": "178730790768361039967705", "mpReserves": [ - "37004279017635501475481149", - "34821701568506993450350583", - "37480928329782524858469228" + "33167505493270017795979816", + "31649515858860096507132027", + "36874643059413263235752255" ], "fpReserves": [ - "10298480273643556998994248", - "4178099061535475399359363" + "2675822543367438000147177", + "1316633592271698558151202" ], - "mAssetSupply": "109306722920767329551432023", - "LPTokenSupply": "14431728219631286855869438" + "mAssetSupply": "101689927463131200171060149", + "LPTokenSupply": "3966440739465060581116981" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "5705788031395395584", - "outputQty0": "5706658247141855067", - "outputQty": "5655130224877982748", - "swapFee": "4540300410129589", + "inputQty": "2797484123336346697728", + "outputQty0": "2799087486685371538979", + "outputQty": "2775559224995820193090", "mpReserves": [ - "37004279017635501475481149", - "34821707274295024845746167", - "37480928329782524858469228" + "33167505493270017795979816", + "31652313342983432853829755", + "36874643059413263235752255" ], "fpReserves": [ - "10298485980301804140849315", - "4178093406405250521376615" + "2678621630854123371686156", + "1316633592271698558151202" ], - "mAssetSupply": "109306728627425576693287090", - "LPTokenSupply": "14431728220085316896882396" + "mAssetSupply": "101692726550617885542599128", + "LPTokenSupply": "3969216298690056401310071" }, { - "type": "swap_fp_to_mp", - "inputQty": "213605680632842560", - "outputIndex": 1, - "outputQty": "215260577215919122", - "swapFee": "0", - "redemptionFee": "86151823748868", + "type": "redeem", + "outputIndex": 0, + "inputQty": "887479866122494017536", + "outputQty0": "894467178105359714727", + "outputQty": "893781975162915808188", + "swapFee1": "532487919673496410", + "swapFee2": "536680306863215828", "mpReserves": [ - "37004279017635501475481149", - "34821707059034447629827045", - "37480928329782524858469228" + "33166611711294854880171628", + "31652313342983432853829755", + "36874643059413263235752255" ], "fpReserves": [ - "10298485764922244768678334", - "4178093620010931154219175" + "2677727163676018011971429", + "1316633592271698558151202" ], - "mAssetSupply": "109306728412132169144864977", - "LPTokenSupply": "14431728220085316896882396" + "mAssetSupply": "101691832620120087046100229", + "LPTokenSupply": "3968328872072725874642176" }, { - "type": "swap_fp_to_mp", - "inputQty": "70727251710524310683648", - "outputIndex": 2, - "outputQty": "71280154353466849662887", - "swapFee": "0", - "redemptionFee": "28520834420682208299", + "type": "redeem", + "outputIndex": 1, + "inputQty": "10860720650414192590848", + "outputQty0": "10946139630526264341486", + "outputQty": "10933298038391213916918", + "swapFee1": "6516432390248515554", + "swapFee2": "6567683778315758604", "mpReserves": [ - "37004279017635501475481149", - "34821707059034447629827045", - "37409648175429058008806341" + "33166611711294854880171628", + "31641380044945041639912837", + "36874643059413263235752255" ], "fpReserves": [ - "10227183678870539247929651", - "4248820871721455464902823" + "2666781024045491747629943", + "1316633592271698558151202" ], - "mAssetSupply": "109235454846914884306324593", - "LPTokenSupply": "14431728220085316896882396" + "mAssetSupply": "101680893048173339097517347", + "LPTokenSupply": "3957468803065550706902883" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "286178024621556981825536", - "outputQty0": "287536218296059993940043", - "outputQty": "287444786367468778193232", - "swapFee1": "171706814772934189095", - "swapFee2": "115014487318423997576", + "inputQty": "3879457830011465629696", + "outputQty0": "3909934525271248218449", + "outputQty": "3910282362289756017035", + "swapFee1": "2327674698006879377", + "swapFee2": "2345960715162748931", "mpReserves": [ - "37004279017635501475481149", - "34821707059034447629827045", - "37122203389061589230613109" + "33166611711294854880171628", + "31641380044945041639912837", + "36870732777050973479735220" ], "fpReserves": [ - "9939647460574479253989608", - "4248820871721455464902823" + "2662871089520220499411494", + "1316633592271698558151202" ], - "mAssetSupply": "108948033643106142736382126", - "LPTokenSupply": "14145567366145237208475769" + "mAssetSupply": "101676985459608783012047829", + "LPTokenSupply": "3953589578003009041961124" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "6915193044339946160128", - "outputQty0": "6916168743141288427769", - "outputQty": "6858760049373858705009", - "swapFee": "5503758371425706248", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3554206229047563255808", + "outputQty0": "3582110796612877000248", + "outputQty": "3577904642659336138884", + "swapFee1": "2132523737428537953", + "swapFee2": "2149266477967726200", "mpReserves": [ - "37004279017635501475481149", - "34828622252078787575987173", - "37122203389061589230613109" + "33166611711294854880171628", + "31637802140302382303773953", + "36870732777050973479735220" ], "fpReserves": [ - "9946563629317620542417377", - "4241962111672081606197814" + "2659288978723607622411246", + "1316633592271698558151202" ], - "mAssetSupply": "108954949811849284024809895", - "LPTokenSupply": "14145567916521074351046393" + "mAssetSupply": "101673405498078648102773781", + "LPTokenSupply": "3950035585026335221559111" }, { "type": "mint", "inputIndex": 0, - "inputQty": "669506599041930493952", - "outputQty0": "669464352785631018481", - "outputQty": "665928315978697430104", + "inputQty": "255667569011005549707264", + "outputQty0": "255704104254635331996602", + "outputQty": "253515287402108123767090", "mpReserves": [ - "37004948524234543405975101", - "34828622252078787575987173", - "37122203389061589230613109" + "33422279280305860429878892", + "31637802140302382303773953", + "36870732777050973479735220" ], "fpReserves": [ - "9947233093670406173435858", - "4241962111672081606197814" + "2914993082978242954407848", + "1316633592271698558151202" ], - "mAssetSupply": "108955619276202069655828376", - "LPTokenSupply": "14146233844837053048476497" + "mAssetSupply": "101929109602333283434770383", + "LPTokenSupply": "4203550872428443345326201" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "83408413762810930003968", - "outputQty0": "83419933406939012965115", - "outputQty": "82977856667948140229708", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "286415647199554502656", + "outputQty0": "286450366438361332328", + "outputQty": "284284736775643550030", + "swapFee": "227158527397940988", "mpReserves": [ - "37004948524234543405975101", - "34912030665841598505991141", - "37122203389061589230613109" + "33422565695953059984381548", + "31637802140302382303773953", + "36870732777050973479735220" ], "fpReserves": [ - "10030653027077345186400973", - "4241962111672081606197814" + "2915279533344681315740176", + "1316349307534922914601172" ], - "mAssetSupply": "109039039209609008668793491", - "LPTokenSupply": "14229211701505001188706205" + "mAssetSupply": "101929396052699721796102711", + "LPTokenSupply": "4203550895144296085120299" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "3400939634638522417152", - "outputQty0": "3400733507870611500776", - "outputQty": "3382650124173331086726", + "inputQty": "148936610905982894080", + "outputQty0": "148954659499511759680", + "outputQty": "147828077467287998390", + "swapFee": "118122663297374653", "mpReserves": [ - "37008349463869181928392253", - "34912030665841598505991141", - "37122203389061589230613109" + "33422714632563965967275628", + "31637802140302382303773953", + "36870732777050973479735220" ], "fpReserves": [ - "10034053760585215797901749", - "4241962111672081606197814" + "2915428488004180827499856", + "1316201479457455626602782" ], - "mAssetSupply": "109042439943116879280294267", - "LPTokenSupply": "14232594351629174519792931" + "mAssetSupply": "101929545007359221307862391", + "LPTokenSupply": "4203550906956562414857764" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1321402621441176", - "outputQty0": "1327670601458883", - "outputQty": "1326959799905531", - "swapFee1": "792841572864", - "swapFee2": "531068240583", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "193001427861083982397440", + "outputQty0": "192869665270891329193743", + "outputQty": "191113878801566462074716", + "swapFee": "152927555417687931012", "mpReserves": [ - "37008349463869181928392253", - "34912030664514638706085610", - "37122203389061589230613109" + "33422714632563965967275628", + "31637802140302382303773953", + "37063734204912057462132660" ], "fpReserves": [ - "10034053759257545196442866", - "4241962111672081606197814" + "3108298153275072156693599", + "1125087600655889164528066" ], - "mAssetSupply": "109042439941789739747075967", - "LPTokenSupply": "14232594350307851182509041" + "mAssetSupply": "102122414672630112637056134", + "LPTokenSupply": "4203566199712104183650865" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "91853218435332900388864", - "outputQty0": "92287134436443249463898", - "outputQty": "92237443635654071385731", - "swapFee1": "55111931061199740233", - "swapFee2": "36914853774577299785", + "type": "mint", + "inputIndex": 1, + "inputQty": "521309099092285960749056", + "outputQty0": "521603527217884218006775", + "outputQty": "516326216410687252000185", "mpReserves": [ - "37008349463869181928392253", - "34819793220878984634699879", - "37122203389061589230613109" + "33422714632563965967275628", + "32159111239394668264523009", + "37063734204912057462132660" ], "fpReserves": [ - "9941766624821101946978968", - "4241962111672081606197814" + "3629901680492956374700374", + "1125087600655889164528066" ], - "mAssetSupply": "108950189722207071074911854", - "LPTokenSupply": "14140746643065624402094200" + "mAssetSupply": "102644018199847996855062909", + "LPTokenSupply": "4719892416122791435651050" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1838892341773413860245504", - "outputQty0": "1839043434257983906763270", - "outputQty": "1828630448953186996809825", + "type": "swap_fp_to_mp", + "inputQty": "6452291221783264256", + "outputIndex": 0, + "outputQty": "6533363242070829117", + "swapFee": "0", + "redemptionFee": "3923085158855579", "mpReserves": [ - "37008349463869181928392253", - "36658685562652398494945383", - "37122203389061589230613109" + "33422708099200723896446511", + "32159111239394668264523009", + "37063734204912057462132660" ], "fpReserves": [ - "11780810059079085853742238", - "4241962111672081606197814" + "3629895142017691615401407", + "1125094052947110947792322" ], - "mAssetSupply": "110789233156465054981675124", - "LPTokenSupply": "15969377092018811398904025" + "mAssetSupply": "102644011665295817254619521", + "LPTokenSupply": "4719892416122791435651050" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "25424853765082390200320", - "outputQty0": "25424653850283722430073", - "outputQty": "25144018864053144385745", - "swapFee": "20216823914169124178", + "inputIndex": 2, + "inputQty": "87791758417460149092352", + "outputQty0": "87733841357445479709247", + "outputQty": "86400430158870679262210", + "swapFee": "69444942867786756674", "mpReserves": [ - "37033774317634264318592573", - "36658685562652398494945383", - "37122203389061589230613109" + "33422708099200723896446511", + "32159111239394668264523009", + "37151525963329517611225012" ], "fpReserves": [ - "11806234712929369576172311", - "4216818092808028461812069" + "3717628983375137095110654", + "1038693622788240268530112" ], - "mAssetSupply": "110814657810315338704105197", - "LPTokenSupply": "15969379113701202815816442" + "mAssetSupply": "102731745506653262734328768", + "LPTokenSupply": "4719899360617078214326717" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "25359780360563013451776", - "outputQty0": "25499392879654371892340", - "outputQty": "25489594801192029051928", - "swapFee1": "15215868216337808071", - "swapFee2": "10199757151861748756", + "inputQty": "45276963593330007998464", + "outputQty0": "45756476470166950759213", + "outputQty": "45759344734836748147662", + "swapFee1": "27166178155998004799", + "swapFee2": "27453885882100170455", "mpReserves": [ - "37033774317634264318592573", - "36658685562652398494945383", - "37096713794260397201561181" + "33422708099200723896446511", + "32159111239394668264523009", + "37105766618594680863077350" ], "fpReserves": [ - "11780735320049715204279971", - "4216818092808028461812069" + "3671872506904970144351441", + "1038693622788240268530112" ], - "mAssetSupply": "110789168617192836193961613", - "LPTokenSupply": "15944020854927461436145473" + "mAssetSupply": "102686016484068977883740010", + "LPTokenSupply": "4674625113641563806128732" }, { - "type": "swap_fp_to_mp", - "inputQty": "16802506582529402880", - "outputIndex": 2, - "outputQty": "16970491526209872662", - "swapFee": "0", - "redemptionFee": "6790811106822502", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "357497549709241976094720", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "106450328659444423983104", + "outputQty0": "106379339771530715590496", + "outputQty": "105195655550464473707638", "mpReserves": [ - "37033774317634264318592573", - "36658685562652398494945383", - "37096696823768870991688519" + "33422708099200723896446511", + "32159111239394668264523009", + "37212216947254125287060454" ], "fpReserves": [ - "11780718343021948148023669", - "4216834895314610991214949" + "3778251846676500859941937", + "1038693622788240268530112" ], - "mAssetSupply": "110789151646955880244527813", - "LPTokenSupply": "15944020854927461436145473" + "mAssetSupply": "102792395823840508599330506", + "LPTokenSupply": "4779820769192028279836370" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "81099694156653559808", - "outputQty0": "81098477445082520586", - "outputQty": "80606411513923132247", + "inputQty": "259129993589640772190208", + "hardLimitError": true + }, + { + "type": "swap_fp_to_mp", + "inputQty": "1839509849819925760", + "outputIndex": 1, + "outputQty": "1867639829942344366", + "swapFee": "0", + "redemptionFee": "1121848910766154", "mpReserves": [ - "37033774317634264318592573", - "36658685562652398494945383", - "37096777923463027645248327" + "33422708099200723896446511", + "32159109371754838322178643", + "37212216947254125287060454" ], "fpReserves": [ - "11780799441499393230544255", - "4216834895314610991214949" + "3778249976928316249684410", + "1038695462298090088455872" ], - "mAssetSupply": "110789232745433325327048399", - "LPTokenSupply": "15944101461338975359277720" + "mAssetSupply": "102792393955214172899839133", + "LPTokenSupply": "4779820769192028279836370" }, { "type": "swap_fp_to_mp", - "inputQty": "4414180183607604674560", + "inputQty": "73133702685106592808960", "outputIndex": 0, - "outputQty": "4458228577248133089036", + "outputQty": "74188981014093308659708", "swapFee": "0", - "redemptionFee": "1783988539154215846", + "redemptionFee": "44549008926646056746", "mpReserves": [ - "37029316089057016185503537", - "36658685562652398494945383", - "37096777923463027645248327" + "33348519118186630587786803", + "32159109371754838322178643", + "37212216947254125287060454" ], "fpReserves": [ - "11776339470151507690929172", - "4221249075498218595889509" + "3704001628717239488439686", + "1111829164983196681264832" ], - "mAssetSupply": "110784774558073978941649162", - "LPTokenSupply": "15944101461338975359277720" + "mAssetSupply": "102718190156012022784651155", + "LPTokenSupply": "4779820769192028279836370" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "429197636691190643425280", + "hardLimitError": true }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "3184095327418703675392", - "outputQty0": "3184066010321590667188", - "outputQty": "3148865285650042593393", - "swapFee": "2531812994917801933", + "inputQty": "10997195228863494", + "outputQty0": "10999461357023500", + "outputQty": "10837627649745569", + "swapFee": "8705391154652", "mpReserves": [ - "37032500184384434889178929", - "36658685562652398494945383", - "37096777923463027645248327" + "33348519129183825816650297", + "32159109371754838322178643", + "37212216947254125287060454" ], "fpReserves": [ - "11779523536161829281596360", - "4218100210212568553296116" + "3704001639716700845463186", + "1111829154145569031519263" ], - "mAssetSupply": "110787958624084300532316350", - "LPTokenSupply": "15944101714520274851057913" + "mAssetSupply": "102718190167011484141674655", + "LPTokenSupply": "4779820769192898818951835" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "187898302579790120484864", - "outputQty0": "187894429647413231735754", - "outputQty": "186747551652696456277555", + "inputQty": "24021251980797623140352", + "outputQty0": "24004877374100181190911", + "outputQty": "23643619798275736418109", + "swapFee": "18998024558763470340", "mpReserves": [ - "37032500184384434889178929", - "36658685562652398494945383", - "37284676226042817765733191" + "33348519129183825816650297", + "32159109371754838322178643", + "37236238199234922910200806" ], "fpReserves": [ - "11967417965809242513332114", - "4218100210212568553296116" + "3728006517090801026654097", + "1088185534347293295101154" ], - "mAssetSupply": "110975853053731713764052104", - "LPTokenSupply": "16130849266172971307335468" + "mAssetSupply": "102742195044385584322865566", + "LPTokenSupply": "4779822668995354695298869" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "173513949820258267168768", - "outputQty0": "174475286166020933753039", - "outputQty": "174409160660055031025955", - "swapFee1": "104108369892154960301", - "swapFee2": "69790114466408373501", + "type": "mint", + "inputIndex": 0, + "inputQty": "6078103831233953792", + "outputQty0": "6079367566604928975", + "outputQty": "6013322929227321462", "mpReserves": [ - "37032500184384434889178929", - "36658685562652398494945383", - "37110267065382762734707236" + "33348525207287657050604089", + "32159109371754838322178643", + "37236238199234922910200806" ], "fpReserves": [ - "11792942679643221579579075", - "4218100210212568553296116" + "3728012596458367631583072", + "1088185534347293295101154" ], - "mAssetSupply": "110801447557680159238672566", - "LPTokenSupply": "15957345727189702255662730" + "mAssetSupply": "102742201123753150927794541", + "LPTokenSupply": "4779828682318283922620331" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "87254701643541", - "outputQty0": "87735517711157", - "outputQty": "87701204115902", - "swapFee1": "52352820986", - "swapFee2": "35094207084", + "type": "mint", + "inputIndex": 0, + "inputQty": "133122143302902562816", + "outputQty0": "133149819950515264881", + "outputQty": "131703301410970547342", "mpReserves": [ - "37032500184296733685063027", - "36658685562652398494945383", - "37110267065382762734707236" + "33348658329430959953166905", + "32159109371754838322178643", + "37236238199234922910200806" ], "fpReserves": [ - "11792942679555486061867918", - "4218100210212568553296116" + "3728145746278318146847953", + "1088185534347293295101154" ], - "mAssetSupply": "110801447557592458815168493", - "LPTokenSupply": "15957345727102452789301287" + "mAssetSupply": "102742334273573101443059422", + "LPTokenSupply": "4779960385619694893167673" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "18722257159005518430208", - "outputQty0": "18722712451003858130530", - "outputQty": "18514166569556103833212", - "swapFee": "14887090663708826804", + "type": "mint", + "inputIndex": 0, + "inputQty": "23749548735809196032", + "outputQty0": "23754486047511873784", + "outputQty": "23496418221551166483", "mpReserves": [ - "37032500184296733685063027", - "36677407819811404013375591", - "37110267065382762734707236" + "33348682078979695762362937", + "32159109371754838322178643", + "37236238199234922910200806" ], "fpReserves": [ - "11811665392006489919998448", - "4199586043643012449462904" + "3728169500764365658721737", + "1088185534347293295101154" ], - "mAssetSupply": "110820170270043462673299023", - "LPTokenSupply": "15957347215811519160183967" + "mAssetSupply": "102742358028059148954933206", + "LPTokenSupply": "4779983882037916444334156" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "417105112980372324352", - "outputQty0": "419416007909756532275", - "outputQty": "419251731468316650206", - "swapFee1": "250263067788223394", - "swapFee2": "167766403163902612", + "outputIndex": 2, + "inputQty": "34251989589037452099584", + "outputQty0": "34606485044657374320533", + "outputQty": "34609287417184451562565", + "swapFee1": "20551193753422471259", + "swapFee2": "20763891026794424592", "mpReserves": [ - "37032080932565265368412821", - "36677407819811404013375591", - "37110267065382762734707236" + "33348682078979695762362937", + "32159109371754838322178643", + "37201628911817738458638241" ], "fpReserves": [ - "11811245975998580163466173", - "4199586043643012449462904" + "3693563015719708284401204", + "1088185534347293295101154" ], - "mAssetSupply": "110819751021801956080669360", - "LPTokenSupply": "15956930135724845566681954" + "mAssetSupply": "102707772306905518375037265", + "LPTokenSupply": "4745733947568254334481697" }, { - "type": "swap_fp_to_mp", - "inputQty": "4357488105170306859008", - "outputIndex": 0, - "outputQty": "4401501898843163821028", - "swapFee": "0", - "redemptionFee": "1761290873389688259", + "type": "mint", + "inputIndex": 1, + "inputQty": "4307419355366906368", + "outputQty0": "4309662873717314039", + "outputQty": "4263054706943795685", "mpReserves": [ - "37027679430666422204591793", - "36677407819811404013375591", - "37110267065382762734707236" + "33348682078979695762362937", + "32159113679174193689085011", + "37201628911817738458638241" ], "fpReserves": [ - "11806842748815105942818301", - "4203943531748182756321912" + "3693567325382582001715243", + "1088185534347293295101154" ], - "mAssetSupply": "110815349555909355249709747", - "LPTokenSupply": "15956930135724845566681954" + "mAssetSupply": "102707776616568392092351304", + "LPTokenSupply": "4745738210622961278277382" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "206682246658932005142528", - "outputQty0": "207817044959585868574793", - "outputQty": "207734298621242563450704", - "swapFee1": "124009347995359203085", - "swapFee2": "83126817983834347429", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "82547549431412146176", + "outputQty0": "82564489266767899111", + "outputQty": "81312430034893658770", + "swapFee": "65337251885030398", "mpReserves": [ - "36819945132045179641141089", - "36677407819811404013375591", - "37110267065382762734707236" + "33348764626529127174509113", + "32159113679174193689085011", + "37201628911817738458638241" ], "fpReserves": [ - "11599025703855520074243508", - "4203943531748182756321912" + "3693649889871848769614354", + "1088104221917258401442384" ], - "mAssetSupply": "110607615637767753215482383", - "LPTokenSupply": "15750260290000713097459734" + "mAssetSupply": "102707859181057658860250415", + "LPTokenSupply": "4745738217156686466780421" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "7816493941816710660096", - "outputQty0": "7816526536877640950094", - "outputQty": "7769443337384902435083", + "type": "swap_fp_to_mp", + "inputQty": "46275746510359301718016", + "outputIndex": 2, + "outputQty": "46923314772826958728253", + "swapFee": "0", + "redemptionFee": "28151869141751102259", "mpReserves": [ - "36827761625986996351801185", - "36677407819811404013375591", - "37110267065382762734707236" + "33348764626529127174509113", + "32159113679174193689085011", + "37154705597044911499909988" ], "fpReserves": [ - "11606842230392397715193602", - "4203943531748182756321912" + "3646730107968930265847760", + "1134379968427617703160400" ], - "mAssetSupply": "110615432164304630856432477", - "LPTokenSupply": "15758029733338097999894817" + "mAssetSupply": "102660967551023882107586080", + "LPTokenSupply": "4745738217156686466780421" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "2866563023917031620608", - "outputQty0": "2882207093017497826184", - "outputQty": "2881003337330550102376", - "swapFee1": "1719937814350218972", - "swapFee2": "1152882837206999130", + "outputIndex": 2, + "inputQty": "120184317569111525687296", + "outputQty0": "121377535435515454769668", + "outputQty": "121385249190162072938676", + "swapFee1": "72110590541466915412", + "swapFee2": "72826521261309272861", "mpReserves": [ - "36827761625986996351801185", - "36674526816474073463273215", - "37110267065382762734707236" + "33348764626529127174509113", + "32159113679174193689085011", + "37033320347854749426971312" ], "fpReserves": [ - "11603960023299380217367418", - "4203943531748182756321912" + "3525352572533414811078092", + "1134379968427617703160400" ], - "mAssetSupply": "110612551110094450565605423", - "LPTokenSupply": "15755163342307962403296106" + "mAssetSupply": "102539662842109627962089273", + "LPTokenSupply": "4625561110646629087784666" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "894639163236164567040", - "outputQty0": "894655014752891663633", - "outputQty": "884939075055444303122", - "swapFee": "711412315618680966", - "mpReserves": [ - "36827761625986996351801185", - "36675421455637309627840255", - "37110267065382762734707236" - ], - "fpReserves": [ - "11604854678314133109031051", - "4203058592673127312018790" - ], - "mAssetSupply": "110613445765109203457269056", - "LPTokenSupply": "15755163413449193965164202" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "20339906924608510492672", - "outputQty0": "20339458428997873734203", - "outputQty": "20216819301093691570601", + "inputQty": "12869223855398469632", + "outputQty0": "12875751470231024630", + "outputQty": "12706419292249466450", + "swapFee": "10194003531494348", "mpReserves": [ - "36827761625986996351801185", - "36675421455637309627840255", - "37130606972307371245199908" + "33348764626529127174509113", + "32159126548398049087554643", + "37033320347854749426971312" ], "fpReserves": [ - "11625194136743130982765254", - "4203058592673127312018790" + "3525365448284885042102722", + "1134367262008325453693950" ], - "mAssetSupply": "110633785223538201331003259", - "LPTokenSupply": "15775380232750287656734803" + "mAssetSupply": "102539675717861098193113903", + "LPTokenSupply": "4625561111666029440934100" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "16977862920643490611200", - "outputQty0": "16977930341916595360623", - "outputQty": "16792162705822060093392", - "swapFee": "13500344507457660393", + "type": "redeem", + "outputIndex": 1, + "inputQty": "438674403705118009589760", + "outputQty0": "442847836032713161608201", + "outputQty": "442339570165279240197735", + "swapFee1": "263204642223070805753", + "swapFee2": "265708701619627896964", "mpReserves": [ - "36844739488907639842412385", - "36675421455637309627840255", - "37130606972307371245199908" + "33348764626529127174509113", + "31716786978232769847356908", + "37033320347854749426971312" ], "fpReserves": [ - "11642172067085047578125877", - "4186266429967305251925398" + "3082517612252171880494521", + "1134367262008325453693950" ], - "mAssetSupply": "110650763153880117926363882", - "LPTokenSupply": "15775381582784738402500842" + "mAssetSupply": "102097093590530004659402666", + "LPTokenSupply": "4186913028425133738424915" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "1661781791526978234351616", - "outputQty0": "1670331920929218954822943", - "outputQty": "1669571914561368376418229", - "swapFee1": "997069074916186940610", - "swapFee2": "668132768371687581929", + "inputQty": "117475465873959239680", + "outputQty0": "118559999627383882195", + "outputQty": "118470714324746513302", + "swapFee1": "70485279524375543", + "swapFee2": "71135999776430329", "mpReserves": [ - "35175167574346271465994156", - "36675421455637309627840255", - "37130606972307371245199908" + "33348646155814802427995811", + "31716786978232769847356908", + "37033320347854749426971312" ], "fpReserves": [ - "9971840146155828623302934", - "4186266429967305251925398" + "3082399052252544496612326", + "1134367262008325453693950" ], - "mAssetSupply": "108981099365719270659122868", - "LPTokenSupply": "14113699498165251786843287" + "mAssetSupply": "102096975101666377051950800", + "LPTokenSupply": "4186795560007787731622789" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "183391758953426806898688", - "outputQty0": "183384800476075993619850", - "outputQty": "181736434698183991526427", - "swapFee": "145905412696527358817", + "type": "redeem", + "outputIndex": 1, + "inputQty": "5475057320593430528", + "outputQty0": "5525602622276066059", + "outputQty": "5519031970922032559", + "swapFee1": "3285034392356058", + "swapFee2": "3315361573365639", "mpReserves": [ - "35175167574346271465994156", - "36858813214590736434738943", - "37130606972307371245199908" + "33348646155814802427995811", + "31716781459200798925324349", + "37033320347854749426971312" ], "fpReserves": [ - "10155224946631904616922784", - "4004529995269121260398971" + "3082393526649922220546267", + "1134367262008325453693950" ], - "mAssetSupply": "109164484166195346652742718", - "LPTokenSupply": "14113714088706521439579168" + "mAssetSupply": "102096969579379116349250380", + "LPTokenSupply": "4186790085278970577427866" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "3813542607177631399936", - "outputQty0": "3833137611269662336704", - "outputQty": "3831168205310030792932", - "swapFee1": "2288125564306578839", - "swapFee2": "1533255044507864934", + "type": "mint", + "inputIndex": 0, + "inputQty": "7686603163178855563264", + "outputQty0": "7687775782705187825607", + "outputQty": "7612836979422271418926", "mpReserves": [ - "35171336406140961435201224", - "36858813214590736434738943", - "37130606972307371245199908" + "33356332758977981283559075", + "31716781459200798925324349", + "37033320347854749426971312" ], "fpReserves": [ - "10151391809020634954586080", - "4004529995269121260398971" + "3090081302432627408371874", + "1134367262008325453693950" ], - "mAssetSupply": "109160652561839121498270948", - "LPTokenSupply": "14109900774911900238837115" + "mAssetSupply": "102104657355161821537075987", + "LPTokenSupply": "4194402922258392848846792" }, { "type": "swap_fp_to_mp", - "inputQty": "2331796147218532270080", - "outputIndex": 2, - "outputQty": "2351369953602819985790", + "inputQty": "24737735287581525934080", + "outputIndex": 0, + "outputQty": "24958252012984397403718", "swapFee": "0", - "redemptionFee": "940860855368997478", + "redemptionFee": "14986249401107285079", "mpReserves": [ - "35171336406140961435201224", - "36858813214590736434738943", - "37128255602353768425214118" + "33331374506964996886155357", + "31716781459200798925324349", + "37033320347854749426971312" ], "fpReserves": [ - "10149039656882212460890817", - "4006861791416339792669051" + "3065104220097448599905320", + "1159104997295906979628030" ], - "mAssetSupply": "109158301350561554373573163", - "LPTokenSupply": "14109900774911900238837115" + "mAssetSupply": "102079695259076043835894512", + "LPTokenSupply": "4194402922258392848846792" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "20083085182402197192704", - "outputQty0": "20085359374750053310335", - "outputQty": "19894652877564304369699", - "swapFee": "15976553341936048783", + "inputIndex": 2, + "inputQty": "104671247052668272640", + "outputQty0": "104598764965823451166", + "outputQty": "103539350807837191607", + "swapFee": "82874283746100855", "mpReserves": [ - "35191419491323363632393928", - "36858813214590736434738943", - "37128255602353768425214118" + "33331374506964996886155357", + "31716781459200798925324349", + "37033425019101802095243952" ], "fpReserves": [ - "10169125016256962514201152", - "3986967138538775488299352" + "3065208818862414423356486", + "1159001457945099142436423" ], - "mAssetSupply": "109178386709936304426883498", - "LPTokenSupply": "14109902372567234432441993" + "mAssetSupply": "102079799857841009659345678", + "LPTokenSupply": "4194402930545821223456877" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1062692580237972330250240", - "outputQty0": "1062589015512583040841620", - "outputQty": "1048411275705192905076217", - "swapFee": "844999036580279185552", + "type": "redeem", + "outputIndex": 0, + "inputQty": "89857249590017869742080", + "outputQty0": "90669217998429209036634", + "outputQty": "90599970925792611372531", + "swapFee1": "53914349754010721845", + "swapFee2": "54401530799057525421", "mpReserves": [ - "35191419491323363632393928", - "36858813214590736434738943", - "38190948182591740755464358" + "33240774536039204274782826", + "31716781459200798925324349", + "37033425019101802095243952" ], "fpReserves": [ - "11231714031769545555042772", - "2938555862833582583223135" + "2974539600863985214319852", + "1159001457945099142436423" ], - "mAssetSupply": "110240975725448887467725118", - "LPTokenSupply": "14109986872470892460360548" + "mAssetSupply": "101989185041373379507834465", + "LPTokenSupply": "4104551072390778754786981" }, { "type": "mint", "inputIndex": 2, - "inputQty": "555831084867277684736", - "outputQty0": "555760110396310843748", - "outputQty": "551348404127090180584", + "inputQty": "69093522722795257856", + "outputQty0": "69045194091772086666", + "outputQty": "68389671272340796625", "mpReserves": [ - "35191419491323363632393928", - "36858813214590736434738943", - "38191504013676608033149094" + "33240774536039204274782826", + "31716781459200798925324349", + "37033494112624524890501808" ], "fpReserves": [ - "11232269791879941865886520", - "2938555862833582583223135" + "2974608646058076986406518", + "1159001457945099142436423" ], - "mAssetSupply": "110241531485559283778568866", - "LPTokenSupply": "14110538220875019550541132" + "mAssetSupply": "101989254086567471279921131", + "LPTokenSupply": "4104619462062051095583606" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "22702351305717993472", - "outputQty0": "22699452057973262398", - "outputQty": "22282266082219830824", - "swapFee": "18015405386064994", + "type": "redeem", + "outputIndex": 1, + "inputQty": "65151693333936928", + "outputQty0": "65736717473801440", + "outputQty": "65659175573566322", + "swapFee1": "39091016000362", + "swapFee2": "39442030484280", "mpReserves": [ - "35191419491323363632393928", - "36858813214590736434738943", - "38191526716027913751142566" + "33240774536039204274782826", + "31716781393541623351758027", + "37033494112624524890501808" ], "fpReserves": [ - "11232292491331999839148918", - "2938533580567500363392311" + "2974608580321359512605078", + "1159001457945099142436423" ], - "mAssetSupply": "110241554185011341751831264", - "LPTokenSupply": "14110538222676560089147631" + "mAssetSupply": "101989254020870195836603971", + "LPTokenSupply": "4104619396914266863246714" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "52005856011789371703296", - "outputQty0": "52013321234103445832349", - "outputQty": "51599657148350306952378", + "inputQty": "93567069831243338088448", + "outputQty0": "93582378428864308905622", + "outputQty": "92591183508776641255016", + "swapFee": "74149893722816588722", "mpReserves": [ - "35243425347335153004097224", - "36858813214590736434738943", - "38191526716027913751142566" + "33334341605870447612871274", + "31716781393541623351758027", + "37033494112624524890501808" ], "fpReserves": [ - "11284305812566103284981267", - "2938533580567500363392311" + "3068190958750223821510700", + "1066410274436322501181407" ], - "mAssetSupply": "110293567506245445197663613", - "LPTokenSupply": "14162137879824910396100009" + "mAssetSupply": "102082836399299060145509593", + "LPTokenSupply": "4104626811903639144905586" }, { - "type": "swap_fp_to_mp", - "inputQty": "47841838376435392184320", - "outputIndex": 0, - "outputQty": "48663875569755045977923", - "swapFee": "0", - "redemptionFee": "19476132732250706533", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "12979190366394042548224", + "outputQty0": "12986813666618551671236", + "outputQty": "12834015590831493315774", + "swapFee": "10285007054607929212", "mpReserves": [ - "35194761471765397958119301", - "36858813214590736434738943", - "38191526716027913751142566" + "33334341605870447612871274", + "31729760583908017394306251", + "37033494112624524890501808" ], "fpReserves": [ - "11235615480735476518647349", - "2986375418943935755576631" + "3081177772416842373181936", + "1053576258845491007865633" ], - "mAssetSupply": "110244896650547550682036228", - "LPTokenSupply": "14162137879824910396100009" + "mAssetSupply": "102095823212965678697180829", + "LPTokenSupply": "4104627840404344605698507" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "256961622952726243573760", - "hardLimitError": true - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "118256396909868256067584", - "outputQty0": "119115196377948753657370", - "outputQty": "119082347720342167096872", - "swapFee1": "70953838145920953640", - "swapFee2": "47646078551179501462", + "type": "swap_fp_to_mp", + "inputQty": "99551141286742864", + "outputIndex": 1, + "outputQty": "100552346661722280", + "swapFee": "0", + "redemptionFee": "60403011280804", "mpReserves": [ - "35194761471765397958119301", - "36858813214590736434738943", - "38072444368307571584045694" + "33334341605870447612871274", + "31729760483355670732583971", + "37033494112624524890501808" ], "fpReserves": [ - "11116500284357527764989979", - "2986375418943935755576631" + "3081177671745156905173768", + "1053576358396632294608497" ], - "mAssetSupply": "110125829100248153107880320", - "LPTokenSupply": "14043888578298856732127789" + "mAssetSupply": "102095823112354396240453465", + "LPTokenSupply": "4104627840404344605698507" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "169986169866546348032", - "outputQty0": "169983571846485738239", - "outputQty": "168661621498635541542", + "inputIndex": 2, + "inputQty": "15884220965404782100480", + "outputQty0": "15873224243525132844417", + "outputQty": "15712302264526892036557", "mpReserves": [ - "35194761471765397958119301", - "36858983200760602981086975", - "38072444368307571584045694" + "33334341605870447612871274", + "31729760483355670732583971", + "37049378333589929672602288" ], "fpReserves": [ - "11116670267929374250728218", - "2986375418943935755576631" + "3097050895988682038018185", + "1053576358396632294608497" ], - "mAssetSupply": "110125999083819999593618559", - "LPTokenSupply": "14044057239920355367669331" + "mAssetSupply": "102111696336597921373297882", + "LPTokenSupply": "4120340142668871497735064" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "986306578789408309248", - "outputQty0": "986446019224855272187", - "outputQty": "969073010866700397830", - "swapFee": "783019344166868274", + "inputQty": "1075993139141441280", + "outputQty0": "1076163170432423341", + "outputQty": "1063226416394488468", + "swapFee": "852191471264047", "mpReserves": [ - "35195747778344187366428549", - "36858983200760602981086975", - "38072444368307571584045694" + "33334342681863586754312554", + "31729760483355670732583971", + "37049378333589929672602288" ], "fpReserves": [ - "11117656713948599106000405", - "2985406345933069055178801" + "3097051972151852470441526", + "1053575295170215900120029" ], - "mAssetSupply": "110126985529839224448890746", - "LPTokenSupply": "14044057318222289784356158" + "mAssetSupply": "102111697412761091805721223", + "LPTokenSupply": "4120340142754090644861468" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "18301683378954459676672", - "outputQty0": "18304259166147498279460", - "outputQty": "17979765783172749771485", - "swapFee": "14529413141307393148", - "mpReserves": [ - "35214049461723141826105221", - "36858983200760602981086975", - "38072444368307571584045694" - ], - "fpReserves": [ - "11135960973114746604279865", - "2967426580149896305407316" - ], - "mAssetSupply": "110145289789005371947170206", - "LPTokenSupply": "14044058771163603915095472" + "inputIndex": 1, + "inputQty": "511276272717611992612864", + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "74478421635582181376", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "564292957146427571568640", + "hardLimitError": true + }, + { + "type": "redeem", "outputIndex": 0, - "outputQty": "75729512924356565897", - "swapFee": "0", - "redemptionFee": "30308173525363977", + "inputQty": "49184585492224741998592", + "outputQty0": "49657146471589118434057", + "outputQty": "49619301803352605061614", + "swapFee1": "29510751295334845199", + "swapFee2": "29794287882953471060", "mpReserves": [ - "35213973732210217469539324", - "36858983200760602981086975", - "38072444368307571584045694" + "33284723380060234149250940", + "31729760483355670732583971", + "37049378333589929672602288" ], "fpReserves": [ - "11135885202680933194335783", - "2967501058571531887588692" + "3047394825680263352007469", + "1053575295170215900120029" ], - "mAssetSupply": "110145214048879732062590101", - "LPTokenSupply": "14044058771163603915095472" + "mAssetSupply": "102062070060577385640758226", + "LPTokenSupply": "4071158508336995436347395" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "864189487428409994772480", - "hardLimitError": true - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1043327104028345991430144", - "outputQty0": "1050615766266592638305415", - "outputQty": "1050177350360889972123353", - "swapFee1": "625996262417007594858", - "swapFee2": "420246306506637055322", + "inputQty": "2941597997906270879744", + "outputQty0": "2942086939511614453024", + "outputQty": "2907527426531741182825", + "swapFee": "2329945494598318587", "mpReserves": [ - "35213973732210217469539324", - "35808805850399713008963622", - "38072444368307571584045694" + "33287664978058140420130684", + "31729760483355670732583971", + "37049378333589929672602288" ], "fpReserves": [ - "10085269436414340556030368", - "2967501058571531887588692" + "3050336912619774966460493", + "1050667767743684158937204" ], - "mAssetSupply": "109095018528919646061340008", - "LPTokenSupply": "13000794266761499624424813" + "mAssetSupply": "102065012147516897255211250", + "LPTokenSupply": "4071158741331544896179253" }, { "type": "swap_fp_to_mp", - "inputQty": "731640034123533254656", - "outputIndex": 1, - "outputQty": "741997388605674235562", + "inputQty": "5088553475379472367616", + "outputIndex": 0, + "outputQty": "5140837844161351574812", "swapFee": "0", - "redemptionFee": "296932519935502033", + "redemptionFee": "3086868100027523221", "mpReserves": [ - "35213973732210217469539324", - "35808063853011107334728060", - "38072444368307571584045694" + "33282524140213979068555872", + "31729760483355670732583971", + "37049378333589929672602288" ], "fpReserves": [ - "10084527105114501800947663", - "2968232698605655420843348" + "3045192132453062427758413", + "1055756321219063631304820" ], - "mAssetSupply": "109094276494552327241759336", - "LPTokenSupply": "13000794266761499624424813" + "mAssetSupply": "102059870454218284744032391", + "LPTokenSupply": "4071158741331544896179253" }, { - "type": "swap_fp_to_mp", - "inputQty": "5293088430927312322560", - "outputIndex": 2, - "outputQty": "5368921441153136426389", - "swapFee": "0", - "redemptionFee": "2148103548664590196", + "type": "mint", + "inputIndex": 2, + "inputQty": "1089744115499329408", + "outputQty0": "1088984123905889615", + "outputQty": "1078024531651854210", "mpReserves": [ - "35213973732210217469539324", - "35808063853011107334728060", - "38067075446866418447619305" + "33282524140213979068555872", + "31729760483355670732583971", + "37049379423334045171931696" ], "fpReserves": [ - "10079156846242840325456990", - "2973525787036582733165908" + "3045193221437186333648028", + "1055756321219063631304820" ], - "mAssetSupply": "109088908383784214430858859", - "LPTokenSupply": "13000794266761499624424813" + "mAssetSupply": "102059871543202408649922006", + "LPTokenSupply": "4071159819356076548033463" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "97536240661871084961792", - "outputQty0": "98188432506126520056415", - "outputQty": "98138369921305826942967", - "swapFee1": "58521744397122650977", - "swapFee2": "39275373002450608022", + "type": "mint", + "inputIndex": 2, + "inputQty": "73322194080196051599360", + "outputQty0": "73270684115266217723523", + "outputQty": "72528969502203969720086", "mpReserves": [ - "35115835362288911642596357", - "35808063853011107334728060", - "38067075446866418447619305" + "33282524140213979068555872", + "31729760483355670732583971", + "37122701617414241223531056" ], "fpReserves": [ - "9980968413736713805400575", - "2973525787036582733165908" + "3118463905552452551371551", + "1055756321219063631304820" ], - "mAssetSupply": "108990759226651090361410466", - "LPTokenSupply": "12903263878274068251728118" + "mAssetSupply": "102133142227317674867645529", + "LPTokenSupply": "4143688788858280517753549" }, { - "type": "swap_fp_to_mp", - "inputQty": "114776204301901211107328", - "outputIndex": 2, - "outputQty": "116320266881904974116962", - "swapFee": "0", - "redemptionFee": "46539717236519385857", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "48951990802234", + "outputQty0": "48980815988313", + "outputQty": "48387403189674", + "swapFee": "38785683940", "mpReserves": [ - "35115835362288911642596357", - "35808063853011107334728060", - "37950755179984513473502343" + "33282524140213979068555872", + "31729760483404622723386205", + "37122701617414241223531056" ], "fpReserves": [ - "9864619120645415340755979", - "3088301991338483944273236" + "3118463905601433367359864", + "1055756321170676228115146" ], - "mAssetSupply": "108874456473277028416151727", - "LPTokenSupply": "12903263878274068251728118" + "mAssetSupply": "102133142227366655683633842", + "LPTokenSupply": "4143688788858284396321943" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "539783181935117558874112", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "428972517778933053128704", + "inputQty": "247627875810952156807168", "outputIndex": 2, - "outputQty": "433698852414626686731275", + "outputQty": "249845858207674512666566", "swapFee": "0", - "redemptionFee": "173525520816075397182", + "redemptionFee": "149893987615856132240", "mpReserves": [ - "35115835362288911642596357", - "35808063853011107334728060", - "37517056327569886786771068" + "33282524140213979068555872", + "31729760483404622723386205", + "36872855759206566710864490" ], "fpReserves": [ - "9430805318605226847799285", - "3517274509117416997401940" + "2868640592908339813626406", + "1303384196981628384922314" ], - "mAssetSupply": "108440816196757655998592215", - "LPTokenSupply": "12903263878274068251728118" + "mAssetSupply": "101883468808661177986032624", + "LPTokenSupply": "4143688788858284396321943" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "334992639001164480", - "outputQty0": "335024926531546319", - "outputQty": "332991711004298583", - "mpReserves": [ - "35115835697281550643760837", - "35808063853011107334728060", - "37517056327569886786771068" - ], - "fpReserves": [ - "9430805653630153379345604", - "3517274509117416997401940" - ], - "mAssetSupply": "108440816531782582530138534", - "LPTokenSupply": "12903264211265779256026701" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "7289347736089661538304", - "outputQty0": "7329442239747662444063", - "outputQty": "7325802634318494666423", - "swapFee1": "4373608641653796922", - "swapFee2": "2931776895899064977", + "inputQty": "12310818233623009820672", + "outputQty0": "12312691700554894129243", + "outputQty": "12219482282364961694852", + "swapFee": "9762630394655051475", "mpReserves": [ - "35108509894647232149094414", - "35808063853011107334728060", - "37517056327569886786771068" + "33294834958447602078376544", + "31729760483404622723386205", + "36872855759206566710864490" ], "fpReserves": [ - "9423476211390405716901541", - "3517274509117416997401940" + "2880953284608894707755649", + "1291164714699263423227462" ], - "mAssetSupply": "108433490021319730766759448", - "LPTokenSupply": "12895975300890553759868089" + "mAssetSupply": "101895781500361732880161867", + "LPTokenSupply": "4143689765121323861827090" }, { "type": "mint", "inputIndex": 1, - "inputQty": "85876570093542285770752", - "outputQty0": "85878912994295483493037", - "outputQty": "85356202910623291540060", + "inputQty": "861999084685170889981952", + "outputQty0": "862421050678499890267091", + "outputQty": "854213339401852736628864", "mpReserves": [ - "35108509894647232149094414", - "35893940423104649620498812", - "37517056327569886786771068" + "33294834958447602078376544", + "32591759568089793613368157", + "36872855759206566710864490" ], "fpReserves": [ - "9509355124384701200394578", - "3517274509117416997401940" + "3743374335287394598022740", + "1291164714699263423227462" ], - "mAssetSupply": "108519368934314026250252485", - "LPTokenSupply": "12981331503801177051408149" + "mAssetSupply": "102758202551040232770428958", + "LPTokenSupply": "4997903104523176598455954" }, { "type": "swap_fp_to_mp", - "inputQty": "1215260903400466993381376", + "inputQty": "26696108627136803241984", "outputIndex": 0, - "outputQty": "1222687236819300299704486", + "outputQty": "26962597591852984295742", "swapFee": "0", - "redemptionFee": "489339246758622959769", + "redemptionFee": "16190978875815248080", "mpReserves": [ - "33885822657827931849389928", - "35893940423104649620498812", - "37517056327569886786771068" + "33267872360855749094080802", + "32591759568089793613368157", + "36872855759206566710864490" ], "fpReserves": [ - "8286007007488143800971318", - "4732535412517883990783316" + "3716389370494369184555107", + "1317860823326400226469446" ], - "mAssetSupply": "107296510156664227473788994", - "LPTokenSupply": "12981331503801177051408149" + "mAssetSupply": "102731233777226083172209405", + "LPTokenSupply": "4997903104523176598455954" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "403690703600510016", - "outputQty0": "403764131855780747", - "outputQty": "401992797569895864", + "type": "redeem", + "outputIndex": 1, + "inputQty": "157319148667069548986368", + "outputQty0": "158789432822332729840552", + "outputQty": "158627079729337096220546", + "swapFee1": "94391489200241729391", + "swapFee2": "95273659693399637904", "mpReserves": [ - "33885823061518635449899944", - "35893940423104649620498812", - "37517056327569886786771068" + "33267872360855749094080802", + "32433132488360456517147611", + "36872855759206566710864490" ], "fpReserves": [ - "8286007411252275656752065", - "4732535412517883990783316" + "3557599937672036454714555", + "1317860823326400226469446" ], - "mAssetSupply": "107296510560428359329569741", - "LPTokenSupply": "12981331905793974621304013" + "mAssetSupply": "102572539618063443842006757", + "LPTokenSupply": "4840593395005027073642525" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "3900824335230019567616", - "outputQty0": "3900766168663480610032", - "outputQty": "3881227867872458285806", - "swapFee": "3106920130935077605", + "type": "redeem", + "outputIndex": 1, + "inputQty": "314359312346536560558080", + "outputQty0": "317203333532800800113290", + "outputQty": "316865351803302584746202", + "swapFee1": "188615587407921936334", + "swapFee2": "190322000119680480067", "mpReserves": [ - "33885823061518635449899944", - "35897841247439879640066428", - "37517056327569886786771068" + "33267872360855749094080802", + "32116267136557153932401409", + "36872855759206566710864490" ], "fpReserves": [ - "8289908177420939137362097", - "4728654184650011532497510" + "3240396604139235654601265", + "1317860823326400226469446" ], - "mAssetSupply": "107300411326597022810179773", - "LPTokenSupply": "12981332216485987714811773" + "mAssetSupply": "102255526606530762722373534", + "LPTokenSupply": "4526252944217231305278078" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "6914148351912510464", "outputIndex": 2, - "inputQty": "88666477702898912329728", - "outputQty0": "89002510644679638269255", - "outputQty": "88980767387141313847419", - "swapFee1": "53199886621739347397", - "swapFee2": "35601004257871855307", + "outputQty": "6971605560146885853", + "swapFee": "0", + "redemptionFee": "4182786493662562", "mpReserves": [ - "33885823061518635449899944", - "35897841247439879640066428", - "37428075560182745472923649" + "33267872360855749094080802", + "32116267136557153932401409", + "36872848787601006563978637" ], "fpReserves": [ - "8200905666776259499092842", - "4728654184650011532497510" + "3240389632828412883663175", + "1317867737474752138979910" ], - "mAssetSupply": "107211444416956601043765825", - "LPTokenSupply": "12892671058771750976416784" + "mAssetSupply": "102255519639402726445098006", + "LPTokenSupply": "4526252944217231305278078" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "17839014289700670144512", - "outputQty0": "17842200179294177284805", - "outputQty": "17764368204454750414319", + "type": "redeem", + "outputIndex": 2, + "inputQty": "49293329808597", + "outputQty0": "49730675138754", + "outputQty": "49732777658491", + "swapFee1": "29575997885", + "swapFee2": "29838405083", "mpReserves": [ - "33903662075808336120044456", - "35897841247439879640066428", - "37428075560182745472923649" + "33267872360855749094080802", + "32116267136557153932401409", + "36872848787551273786320146" ], "fpReserves": [ - "8218747866955553676377647", - "4728654184650011532497510" + "3240389632778682208524421", + "1317867737474752138979910" ], - "mAssetSupply": "107229286617135895221050630", - "LPTokenSupply": "12910435426976205726831103" + "mAssetSupply": "102255519639353025608364335", + "LPTokenSupply": "4526252944167940933069269" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "99595499815037602627584", - "outputQty0": "99593494462377498397404", - "outputQty": "99086505781928638664268", - "swapFee": "79325298426056957410", + "type": "mint", + "inputIndex": 0, + "inputQty": "2488991856227676323840", + "outputQty0": "2489463813863469522324", + "outputQty": "2466086135915661931679", "mpReserves": [ - "33903662075808336120044456", - "35997436747254917242694012", - "37428075560182745472923649" + "33270361352711976770404642", + "32116267136557153932401409", + "36872848787551273786320146" ], "fpReserves": [ - "8318341361417931174775051", - "4629567678868082893833242" + "3242879096592545678046745", + "1317867737474752138979910" ], - "mAssetSupply": "107328880111598272719448034", - "LPTokenSupply": "12910443359506048332526844" + "mAssetSupply": "102258009103166889077886659", + "LPTokenSupply": "4528719030303856595000948" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "131361693077846638592", - "outputQty0": "131385497774900905588", - "outputQty": "130796146253845967666", + "type": "redeem", + "outputIndex": 1, + "inputQty": "787152677989257838592", + "outputQty0": "794138754669171148192", + "outputQty": "793269367485723509286", + "swapFee1": "472291606793554703", + "swapFee2": "476483252801502688", "mpReserves": [ - "33903793437501413966683048", - "35997436747254917242694012", - "37428075560182745472923649" + "33270361352711976770404642", + "32115473867189668208892123", + "36872848787551273786320146" ], "fpReserves": [ - "8318472746915706075680639", - "4629567678868082893833242" + "3242084957837876506898553", + "1317867737474752138979910" ], - "mAssetSupply": "107329011497096047620353622", - "LPTokenSupply": "12910574155652302178494510" + "mAssetSupply": "102257215440895472708241155", + "LPTokenSupply": "4527931924855028016517826" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "397013937810152219475968", - "outputQty0": "396999929193174232818038", - "outputQty": "394642459564668775745845", - "swapFee": "316149184034877847618", + "type": "mint", + "inputIndex": 0, + "inputQty": "681219829546053535793152", + "outputQty0": "681309662405010115044760", + "outputQty": "674607722674896522124656", "mpReserves": [ - "33903793437501413966683048", - "36394450685065069462169980", - "37428075560182745472923649" + "33951581182258030306197794", + "32115473867189668208892123", + "36872848787551273786320146" ], "fpReserves": [ - "8715472676108880308498677", - "4234925219303414118087397" + "3923394620242886621943313", + "1317867737474752138979910" ], - "mAssetSupply": "107726011426289221853171660", - "LPTokenSupply": "12910605770570705666279271" + "mAssetSupply": "102938525103300482823285915", + "LPTokenSupply": "5202539647529924538642482" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "261212089089760704", - "outputQty0": "261262793284361312", - "outputQty": "259518237614646024", - "swapFee": "207965626317933", + "inputIndex": 2, + "inputQty": "3830155346025410048", + "outputQty0": "3827896306865633686", + "outputQty": "3780927917519194328", + "swapFee": "3030842876481619", "mpReserves": [ - "33903793698713503056443752", - "36394450685065069462169980", - "37428075560182745472923649" + "33951581182258030306197794", + "32115473867189668208892123", + "36872852617706619811730194" ], "fpReserves": [ - "8715472937371673592859989", - "4234924959785176503441373" + "3923398448139193487576999", + "1317863956546834619785582" ], - "mAssetSupply": "107726011687552015137532972", - "LPTokenSupply": "12910605770591502228911064" + "mAssetSupply": "102938528931196789688919601", + "LPTokenSupply": "5202539647833008826290643" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "878233207505562107904", - "outputQty0": "882114804430634488494", - "outputQty": "881590804735577628443", - "swapFee1": "526939924503337264", - "swapFee2": "352845921772253795", + "type": "mint", + "inputIndex": 2, + "inputQty": "150843620783007039488", + "outputQty0": "150754651034672404537", + "outputQty": "149205193545554031688", "mpReserves": [ - "33902912107908767478815309", - "36394450685065069462169980", - "37428075560182745472923649" + "33951581182258030306197794", + "32115473867189668208892123", + "36873003461327402818769682" ], "fpReserves": [ - "8714590822567242958371495", - "4234924959785176503441373" + "3923549202790228159981536", + "1317863956546834619785582" ], - "mAssetSupply": "107725129925593506275298273", - "LPTokenSupply": "12909727590077989117136886" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "3632533777591559809662976", - "hardLimitError": true + "mAssetSupply": "102938679685847824361324138", + "LPTokenSupply": "5202688853026554380322331" }, { "type": "swap_fp_to_mp", - "inputQty": "5771440032121334267904", + "inputQty": "93090956733265520", "outputIndex": 1, - "outputQty": "5803465925932749454540", + "outputQty": "94063354896072975", "swapFee": "0", - "redemptionFee": "2322205767318708326", + "redemptionFee": "56503231660537", "mpReserves": [ - "33902912107908767478815309", - "36388647219139136712715440", - "37428075560182745472923649" + "33951581182258030306197794", + "32115473773126313312819148", + "36873003461327402818769682" ], "fpReserves": [ - "8708785308148946187555009", - "4240696399817297837709277" + "3923549108618175392419180", + "1317864049637791353051102" ], - "mAssetSupply": "107719326733380976823190113", - "LPTokenSupply": "12909727590077989117136886" + "mAssetSupply": "102938679591732274825422319", + "LPTokenSupply": "5202688853026554380322331" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "175771027138183004160", - "outputQty0": "175746723561431192946", - "outputQty": "174577416839537629045", - "swapFee": "139895807703491597", + "type": "mint", + "inputIndex": 1, + "inputQty": "347065256870818611200", + "outputQty0": "347257828086463340621", + "outputQty": "343688598565836668887", "mpReserves": [ - "33902912107908767478815309", - "36388647219139136712715440", - "37428251331209883655927809" + "33951581182258030306197794", + "32115820838383184131430348", + "36873003461327402818769682" ], "fpReserves": [ - "8708961054872507618747955", - "4240521822400458300080232" + "3923896366446261855759801", + "1317864049637791353051102" ], - "mAssetSupply": "107719502480104538254383059", - "LPTokenSupply": "12909727604067569887486045" + "mAssetSupply": "102939026849560361288762940", + "LPTokenSupply": "5203032541625120216991218" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "529299382382236610330624", - "outputQty0": "529392378591074680359962", - "outputQty": "526690415305521555924110", + "type": "redeem", + "outputIndex": 0, + "inputQty": "5149353902829571072", + "outputQty0": "5199709749308585022", + "outputQty": "5196199600505220785", + "swapFee1": "3089612341697742", + "swapFee2": "3119825849585151", "mpReserves": [ - "34432211490291004089145933", - "36388647219139136712715440", - "37428251331209883655927809" + "33951575986058429800977009", + "32115820838383184131430348", + "36873003461327402818769682" ], "fpReserves": [ - "9238353433463582299107917", - "4240521822400458300080232" + "3923891166736512547174779", + "1317864049637791353051102" ], - "mAssetSupply": "108248894858695612934743021", - "LPTokenSupply": "13436418019373091443410155" + "mAssetSupply": "102939021652970437829763069", + "LPTokenSupply": "5203027392580178621589920" }, { - "type": "swap_fp_to_mp", - "inputQty": "27277990178076927983616", - "outputIndex": 1, - "outputQty": "27446370679576683557514", - "swapFee": "0", - "redemptionFee": "10982621742418081363", + "type": "mint", + "inputIndex": 1, + "inputQty": "73568544251261050945536", + "outputQty0": "73608860117297423120007", + "outputQty": "72848793314331486108867", "mpReserves": [ - "34432211490291004089145933", - "36361200848459560029157926", - "37428251331209883655927809" + "33951575986058429800977009", + "32189389382634445182375884", + "36873003461327402818769682" ], "fpReserves": [ - "9210896879107537095699906", - "4267799812578535228063848" + "3997500026853809970294786", + "1317864049637791353051102" ], - "mAssetSupply": "108221449286961310149416373", - "LPTokenSupply": "13436418019373091443410155" + "mAssetSupply": "103012630513087735252883076", + "LPTokenSupply": "5275876185894510107698787" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "198123987518052712316928", - "outputQty0": "198153707809384237795894", - "outputQty": "197118925653408008297857", + "type": "redeem", + "outputIndex": 1, + "inputQty": "124057465801953452752896", + "outputQty0": "125272410120421413167749", + "outputQty": "125128077359786650774172", + "swapFee1": "74434479481172071651", + "swapFee2": "75163446072252847900", "mpReserves": [ - "34630335477809056801462861", - "36361200848459560029157926", - "37428251331209883655927809" + "33951575986058429800977009", + "32064261305274658531601712", + "36873003461327402818769682" ], "fpReserves": [ - "9409050586916921333495800", - "4267799812578535228063848" + "3872227616733388557127037", + "1317864049637791353051102" ], - "mAssetSupply": "108419602994770694387212267", - "LPTokenSupply": "13633536945026499451708012" + "mAssetSupply": "102887433266413386092563227", + "LPTokenSupply": "5151826163540504772153056" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "47324604897161402908672", - "outputQty0": "47319039994662104834635", - "outputQty": "46959086023546606341183", - "swapFee": "37655589414904582453", + "type": "redeem", + "outputIndex": 1, + "inputQty": "285051815644369027858432", + "outputQty0": "287769820765828113858830", + "outputQty": "287427195238236123495851", + "swapFee1": "171031089386621416715", + "swapFee2": "172661892459496868315", "mpReserves": [ - "34630335477809056801462861", - "36361200848459560029157926", - "37475575936107045058836481" + "33951575986058429800977009", + "31776834110036422408105861", + "36873003461327402818769682" ], "fpReserves": [ - "9456369626911583438330435", - "4220840726554988621722665" + "3584457795967560443268207", + "1317864049637791353051102" ], - "mAssetSupply": "108466922034765356492046902", - "LPTokenSupply": "13633540710585440942166257" + "mAssetSupply": "102599836107540017475572712", + "LPTokenSupply": "4866791451005074406436295" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2726681790340200923136", - "outputQty0": "2727076397265316816003", - "outputQty": "2712538376501605107651", + "type": "redeem", + "outputIndex": 2, + "inputQty": "451454223117901103104", + "outputQty0": "455687409677739926772", + "outputQty": "455695441553275850141", + "swapFee1": "270872533870740661", + "swapFee2": "273412445806643956", "mpReserves": [ - "34633062159599397002385997", - "36361200848459560029157926", - "37475575936107045058836481" + "33951575986058429800977009", + "31776834110036422408105861", + "36872547765885849542919541" ], "fpReserves": [ - "9459096703308848755146438", - "4220840726554988621722665" + "3584002108557882703341435", + "1317864049637791353051102" ], - "mAssetSupply": "108469649111162621808862905", - "LPTokenSupply": "13636253248961942547273908" + "mAssetSupply": "102599380693542785542289896", + "LPTokenSupply": "4866340023869209892407257" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "132332776926546576", - "outputQty0": "132351916092627223", - "outputQty": "131331003352203026", - "swapFee": "105317018163132", + "inputIndex": 2, + "inputQty": "11206626838315085594624", + "outputQty0": "11199696963717668122591", + "outputQty": "11079871374482104543646", + "swapFee": "8871135443165109121", "mpReserves": [ - "34633062291932173928932573", - "36361200848459560029157926", - "37475575936107045058836481" + "33951575986058429800977009", + "31776834110036422408105861", + "36883754392724164628514165" ], "fpReserves": [ - "9459096835660764847773661", - "4220840595223985269519639" + "3595201805521600371464026", + "1306784178263309248507456" ], - "mAssetSupply": "108469649243514537901490128", - "LPTokenSupply": "13636253248972474249090221" + "mAssetSupply": "102610580390506503210412487", + "LPTokenSupply": "4866340910982754208918169" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "3080547219605869821952", - "outputQty0": "3080483866148323252791", - "outputQty": "3056701305619966262378", - "swapFee": "2451246434279724019", + "inputQty": "48766017938652202532864", + "outputQty0": "48795993092142321604799", + "outputQty": "48246682581447295347290", + "swapFee": "38647538259928795898", "mpReserves": [ - "34633062291932173928932573", - "36364281395679165898979878", - "37475575936107045058836481" + "33951575986058429800977009", + "31825600127975074610638725", + "36883754392724164628514165" ], "fpReserves": [ - "9462177319526913171026452", - "4217783893918365303257261" + "3643997798613742693068825", + "1258537495681861953160166" ], - "mAssetSupply": "108472729727380686224742919", - "LPTokenSupply": "13636253494097117677062622" + "mAssetSupply": "102659376383598645532017286", + "LPTokenSupply": "4866344775736580201797758" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "409076735957502674337792", - "outputQty0": "409023384657523388652032", - "outputQty": "406805529402744778128778", + "type": "redeem", + "outputIndex": 1, + "inputQty": "760937779895786966876160", + "outputQty0": "767905687239315540017441", + "outputQty": "766920623346690019858988", + "swapFee1": "456562667937472180125", + "swapFee2": "460743412343589324010", "mpReserves": [ - "34633062291932173928932573", - "36364281395679165898979878", - "37884652672064547733174273" + "33951575986058429800977009", + "31058679504628384590779737", + "36883754392724164628514165" ], "fpReserves": [ - "9871200704184436559678484", - "4217783893918365303257261" + "2876092111374427153051384", + "1258537495681861953160166" ], - "mAssetSupply": "108881753112038209613394951", - "LPTokenSupply": "14043059023499862455191400" + "mAssetSupply": "101891931439771673581323855", + "LPTokenSupply": "4105452652107586982139610" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "50192075613012756529152", - "outputQty0": "50439266278713192386164", - "outputQty": "50419450123681735566023", - "swapFee1": "30115245367807653917", - "swapFee2": "20175706511485276954", + "type": "mint", + "inputIndex": 1, + "inputQty": "160897239386011146911744", + "outputQty0": "161016716951101776670840", + "outputQty": "159511362701542056561196", "mpReserves": [ - "34633062291932173928932573", - "36313861945555484163413855", - "37884652672064547733174273" + "33951575986058429800977009", + "31219576744014395737691481", + "36883754392724164628514165" ], "fpReserves": [ - "9820761437905723367292320", - "4217783893918365303257261" + "3037108828325528929722224", + "1258537495681861953160166" ], - "mAssetSupply": "108831334021466007906285741", - "LPTokenSupply": "13992869959411386479427639" + "mAssetSupply": "102052948156722775357994695", + "LPTokenSupply": "4264964014809129038700806" }, { - "type": "swap_fp_to_mp", - "inputQty": "193834645057075207471104", - "outputIndex": 1, - "outputQty": "195121937009692094873676", - "swapFee": "0", - "redemptionFee": "78080036541319841642", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "76311293544165752832", + "outputQty0": "76366750951904113944", + "outputQty": "75700739126792899686", + "swapFee": "60515362407674203", "mpReserves": [ - "34633062291932173928932573", - "36118740008545792068540179", - "37884652672064547733174273" + "33951575986058429800977009", + "31219653055307939903444313", + "36883754392724164628514165" ], "fpReserves": [ - "9625561346552423763186941", - "4411618538975440510728365" + "3037185195076480833836168", + "1258461794942735160260480" ], - "mAssetSupply": "108636212010149249622022004", - "LPTokenSupply": "13992869959411386479427639" + "mAssetSupply": "102053024523473727262108639", + "LPTokenSupply": "4264964020860665279468226" }, { "type": "mint", "inputIndex": 0, - "inputQty": "31371221803005404", - "outputQty0": "31375913201342931", - "outputQty": "31211896969327815", + "inputQty": "16300746342089", + "outputQty0": "16300700125129", + "outputQty": "16146464997374", "mpReserves": [ - "34633062323303395731937977", - "36118740008545792068540179", - "37884652672064547733174273" + "33951575986074730547319098", + "31219653055307939903444313", + "36883754392724164628514165" ], "fpReserves": [ - "9625561377928336964529872", - "4411618538975440510728365" + "3037185195092781533961297", + "1258461794942735160260480" ], - "mAssetSupply": "108636212041525162823364935", - "LPTokenSupply": "13992869990623283448755454" + "mAssetSupply": "102053024523490027962233768", + "LPTokenSupply": "4264964020876811744465600" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "6269584047488295239680", - "outputQty0": "6298740592758686727211", - "outputQty": "6296179750567985261235", - "swapFee1": "3761750428492977143", - "swapFee2": "2519496237103474690", + "inputQty": "382668005127459776", + "outputQty0": "386091552828946253", + "outputQty": "385579689949759170", + "swapFee1": "229600803076475", + "swapFee2": "231654931697367", "mpReserves": [ - "34633062323303395731937977", - "36112443828795224083278944", - "37884652672064547733174273" + "33951575986074730547319098", + "31219652669728249953685143", + "36883754392724164628514165" ], "fpReserves": [ - "9619262637335578277802661", - "4411618538975440510728365" + "3037184809001228705015044", + "1258461794942735160260480" ], - "mAssetSupply": "108629915820428641240112414", - "LPTokenSupply": "13986600782750838002813488" + "mAssetSupply": "102053024137630130064984882", + "LPTokenSupply": "4264963638231766697313471" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "171696944582360137728", "outputIndex": 0, - "inputQty": "23095202277622636544", - "outputQty0": "23202581457048486355", - "outputQty": "23189837178635694008", - "swapFee1": "13857121366573581", - "swapFee2": "9281032582819394", + "outputQty": "172965471729099962436", + "swapFee": "0", + "redemptionFee": "103841295038306174", "mpReserves": [ - "34633039133466217096243969", - "36112443828795224083278944", - "37884652672064547733174273" + "33951403020603001447356662", + "31219652669728249953685143", + "36883754392724164628514165" ], "fpReserves": [ - "9619239434754121229316306", - "4411618538975440510728365" + "3037011740176164861390409", + "1258633491887317520398208" ], - "mAssetSupply": "108629892627128216774445453", - "LPTokenSupply": "13986577688934272516834302" + "mAssetSupply": "102052851172646361259666421", + "LPTokenSupply": "4264963638231766697313471" }, { - "type": "swap_fp_to_mp", - "inputQty": "106726707134153957048320", + "type": "redeem", "outputIndex": 1, - "outputQty": "107365456029041621576858", - "swapFee": "0", - "redemptionFee": "42963800553926090653", + "inputQty": "24588213251429862735872", + "outputQty0": "24807739373069424702268", + "outputQty": "24774790567044030919472", + "swapFee1": "14752927950857917641", + "swapFee2": "14884643623841654821", "mpReserves": [ - "34633039133466217096243969", - "36005078372766182461702086", - "37884652672064547733174273" + "33951403020603001447356662", + "31194877879161205922765671", + "36883754392724164628514165" ], "fpReserves": [ - "9511829933369306002682498", - "4518345246109594467776685" + "3012204000803095436688141", + "1258633491887317520398208" ], - "mAssetSupply": "108522526089543955473902298", - "LPTokenSupply": "13986577688934272516834302" + "mAssetSupply": "102028058317916915676618974", + "LPTokenSupply": "4240376900273131920369363" }, { "type": "swap_fp_to_mp", - "inputQty": "1047567912627003195392", + "inputQty": "173058458804308768", "outputIndex": 1, - "outputQty": "1053608307262497447917", + "outputQty": "174188307186652471", "swapFee": "0", - "redemptionFee": "421617627948521124", + "redemptionFee": "104652233969248", "mpReserves": [ - "34633039133466217096243969", - "36004024764458919964254169", - "37884652672064547733174273" + "33951403020603001447356662", + "31194877704972898736113200", + "36883754392724164628514165" ], "fpReserves": [ - "9510775889299434699872365", - "4519392814022221470972077" + "3012203826382705487939875", + "1258633664945776324706976" ], - "mAssetSupply": "108521472467091712119613289", - "LPTokenSupply": "13986577688934272516834302" + "mAssetSupply": "102028058143601177961839956", + "LPTokenSupply": "4240376900273131920369363" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "8688304906920154628096", - "outputQty0": "8686977179457207485314", - "outputQty": "8626569062976437309351", - "swapFee": "6914213369952226070", + "type": "swap_fp_to_mp", + "inputQty": "168962847084270789328896", + "outputIndex": 2, + "outputQty": "170094422893643757839426", + "swapFee": "0", + "redemptionFee": "102050962313920389846", "mpReserves": [ - "34633039133466217096243969", - "36004024764458919964254169", - "37893340976971467887802369" + "33951403020603001447356662", + "31194877704972898736113200", + "36713659969830520870674739" ], "fpReserves": [ - "9519462866478891907357679", - "4510766244959245033662726" + "2842118889192838171528219", + "1427596512030047114035872" ], - "mAssetSupply": "108530159444271169327098603", - "LPTokenSupply": "13986578380355609512056909" + "mAssetSupply": "101858075257373624565818146", + "LPTokenSupply": "4240376900273131920369363" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "189634167446188448", - "outputQty0": "189605141699175367", - "outputQty": "188283480430184188", - "swapFee": "150910706513844", - "mpReserves": [ - "34633039133466217096243969", - "36004024764458919964254169", - "37893341166605635333990817" - ], - "fpReserves": [ - "9519463056084033606533046", - "4510766056675764603478538" - ], - "mAssetSupply": "108530159633876311026273970", - "LPTokenSupply": "13986578380370700582708293" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "13682950305915", - "outputQty0": "13683137951155", - "outputQty": "13587758288689", - "swapFee": "10890696299", - "mpReserves": [ - "34633039133466217096243969", - "36004024764472602914560084", - "37893341166605635333990817" - ], - "fpReserves": [ - "9519463056097716744484201", - "4510766056662176845189849" - ], - "mAssetSupply": "108530159633889994164225125", - "LPTokenSupply": "13986578380370701671777922" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "119082809188789537210368", - "outputQty0": "119084003906270042984165", - "outputQty": "118225937594594435365122", - "swapFee": "94779170962454315480", + "inputQty": "577290199510879444140032", + "outputQty0": "576895167589968806585872", + "outputQty": "571660916453240042744444", "mpReserves": [ - "34633039133466217096243969", - "36123107573661392451770452", - "37893341166605635333990817" + "33951403020603001447356662", + "31194877704972898736113200", + "37290950169341400314814771" ], "fpReserves": [ - "9638547060003986787468366", - "4392540119067582409824727" + "3419014056782806978114091", + "1427596512030047114035872" ], - "mAssetSupply": "108649243637796264207209290", - "LPTokenSupply": "13986587858287797917209470" + "mAssetSupply": "102434970424963593372404018", + "LPTokenSupply": "4812037816726371963113807" }, { "type": "swap_fp_to_mp", - "inputQty": "350362267074340495294464", - "outputIndex": 2, - "outputQty": "352374174751361930768117", + "inputQty": "45882915011186718146560", + "outputIndex": 1, + "outputQty": "46166481108228858127389", "swapFee": "0", - "redemptionFee": "140986386565800175940", + "redemptionFee": "27737871348147252782", "mpReserves": [ - "34633039133466217096243969", - "36123107573661392451770452", - "37540966991854273403222700" + "33951403020603001447356662", + "31148711223864669877985811", + "37290950169341400314814771" ], "fpReserves": [ - "9286081093589486347618053", - "4742902386141922905119191" + "3372784271202561556810045", + "1473479427041233832182432" ], - "mAssetSupply": "108296918657768329567534917", - "LPTokenSupply": "13986587858287797917209470" + "mAssetSupply": "102388768377254696098352754", + "LPTokenSupply": "4812037816726371963113807" }, { - "type": "swap_fp_to_mp", - "inputQty": "591718396138019698507776", - "outputIndex": 2, - "outputQty": "594164702732525525293059", - "swapFee": "0", - "redemptionFee": "237734227557728862293", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "21376929572328637988864", + "outputQty0": "21361325780963726055777", + "outputQty": "21187654138496113229556", + "swapFee": "16930838017899517703", "mpReserves": [ - "34633039133466217096243969", - "36123107573661392451770452", - "36946802289121747877929641" + "33951403020603001447356662", + "31148711223864669877985811", + "37312327098913728952803635" ], "fpReserves": [ - "8691745524695164191884301", - "5334620782279942603626967" + "3394145596983525282865822", + "1452291772902737718952876" ], - "mAssetSupply": "107702820823101565140663458", - "LPTokenSupply": "13986587858287797917209470" + "mAssetSupply": "102410129703035659824408531", + "LPTokenSupply": "4812039509810173753065577" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "18497145800558399979520", - "outputQty0": "18563726519743498152513", - "outputQty": "18554052510039657668566", - "swapFee1": "11098287480335039987", - "swapFee2": "7425490607897399261", - "mpReserves": [ - "34614485080956177438575403", - "36123107573661392451770452", - "36946802289121747877929641" - ], - "fpReserves": [ - "8673181798175420693731788", - "5334620782279942603626967" - ], - "mAssetSupply": "107684264522072429539910206", - "LPTokenSupply": "13968091822315987550733948" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "241534289773849368068096", - "outputQty0": "241527147290202241460274", - "outputQty": "240401270570474405258606", - "swapFee": "192404897810069135502", + "outputIndex": 1, + "inputQty": "357491691591261543727104", + "outputQty0": "360563064762690270602160", + "outputQty": "360054090092407286121314", + "swapFee1": "214495014954756926236", + "swapFee2": "216337838857614162361", "mpReserves": [ - "34614485080956177438575403", - "36364641863435241819838548", - "36946802289121747877929641" + "33951403020603001447356662", + "30788657133772262591864497", + "37312327098913728952803635" ], "fpReserves": [ - "8914708945465622935192062", - "5094219511709468198368361" + "3033582532220835012263662", + "1452291772902737718952876" ], - "mAssetSupply": "107925791669362631781370480", - "LPTokenSupply": "13968111062805768557647498" + "mAssetSupply": "102049782976111827167968732", + "LPTokenSupply": "4454569267720407685031096" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7048380454284238520320", - "outputQty0": "7049291454119833411063", - "outputQty": "7017975425461602240706", - "mpReserves": [ - "34621533461410461677095723", - "36364641863435241819838548", - "36946802289121747877929641" - ], - "fpReserves": [ - "8921758236919742768603125", - "5094219511709468198368361" - ], - "mAssetSupply": "107932840960816751614781543", - "LPTokenSupply": "13975129038231230159888204" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "2868497954706671796224", - "outputIndex": 2, - "outputQty": "2879712192025234539954", - "swapFee": "0", - "redemptionFee": "1152243917818336569", + "inputIndex": 1, + "inputQty": "784074799679554846720", + "outputQty0": "784740437477326567634", + "outputQty": "777729951194179596892", "mpReserves": [ - "34621533461410461677095723", - "36364641863435241819838548", - "36943922576929722643389687" + "33951403020603001447356662", + "30789441208571942146711217", + "37312327098913728952803635" ], "fpReserves": [ - "8918877627125196927179840", - "5097088009664174870164585" + "3034367272658312338831296", + "1452291772902737718952876" ], - "mAssetSupply": "107929961503266123591694827", - "LPTokenSupply": "13975129038231230159888204" + "mAssetSupply": "102050567716549304494536366", + "LPTokenSupply": "4455346997671601864627988" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "57312248509624389468160", - "outputQty0": "57307089395214442560369", - "outputQty": "57015950718579260455847", - "swapFee": "45641578894378734931", + "inputIndex": 1, + "inputQty": "26680808117455114240", + "outputQty0": "26703456508320751822", + "outputQty": "26520463307575091942", + "swapFee": "21171909894249349", "mpReserves": [ - "34621533461410461677095723", - "36364641863435241819838548", - "37001234825439347032857847" + "33951403020603001447356662", + "30789467889380059601825457", + "37312327098913728952803635" ], "fpReserves": [ - "8976184716520411369740209", - "5040072058945595609708738" + "3034393976114820659583118", + "1452265252439430143860934" ], - "mAssetSupply": "107987268592661338034255196", - "LPTokenSupply": "13975133602389119597761697" + "mAssetSupply": "102050594420005812815288188", + "LPTokenSupply": "4455346999788792854052922" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "17026889228670334", - "outputQty0": "17093668536793066", - "outputQty": "17087429938373905", - "swapFee1": "10216133537202", - "swapFee2": "6837467414717", + "outputIndex": 2, + "inputQty": "1006118793963661346996224", + "outputQty0": "1013897651893758869073901", + "outputQty": "1013989852162763537482154", + "swapFee1": "603671276378196808197", + "swapFee2": "608338591136255321444", "mpReserves": [ - "34621533461410461677095723", - "36364641846347811881464643", - "37001234825439347032857847" + "33951403020603001447356662", + "30789467889380059601825457", + "36298337246750965415321481" ], "fpReserves": [ - "8976184699426742832947143", - "5040072058945595609708738" + "2020496324221061790509217", + "1452265252439430143860934" ], - "mAssetSupply": "107987268575574506964876847", - "LPTokenSupply": "13975133585363251982445083" + "mAssetSupply": "101037305106703190201535731", + "LPTokenSupply": "3449288572952769326737517" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "10157007006855231488", - "outputQty0": "10156075684966151062", - "outputQty": "10103627260138406219", - "swapFee": "8088263518156832", + "inputIndex": 0, + "inputQty": "49162171027333242880", + "outputQty0": "49157972076734090272", + "outputQty": "49006426580815515610", + "swapFee": "39023197199634663", "mpReserves": [ - "34621533461410461677095723", - "36364641846347811881464643", - "37001244982446353888089335" + "33951452182774028780599542", + "30789467889380059601825457", + "36298337246750965415321481" ], "fpReserves": [ - "8976194855502427799098205", - "5040061955318335471302519" + "2020545482193138524599489", + "1452216246012849328345324" ], - "mAssetSupply": "107987278731650191931027909", - "LPTokenSupply": "13975133586172078334260766" + "mAssetSupply": "101037354264675266935626003", + "LPTokenSupply": "3449288576855089046700983" }, { "type": "mint", "inputIndex": 1, - "inputQty": "158328509782230", - "outputQty0": "158322960836573", - "outputQty": "157609820941786", + "inputQty": "270430956400402084397056", + "outputQty0": "270629799974836348719008", + "outputQty": "268488403647064082277513", "mpReserves": [ - "34621533461410461677095723", - "36364641846506140391246873", - "37001244982446353888089335" + "33951452182774028780599542", + "31059898845780461686222513", + "36298337246750965415321481" ], "fpReserves": [ - "8976194855660750759934778", - "5040061955318335471302519" + "2291175282167974873318497", + "1452216246012849328345324" ], - "mAssetSupply": "107987278731808514891864482", - "LPTokenSupply": "13975133586329688155202552" + "mAssetSupply": "101307984064650103284345011", + "LPTokenSupply": "3717776980502153128978496" }, { "type": "mint", "inputIndex": 2, - "inputQty": "30920935210292728561664", - "outputQty0": "30918072079977033947708", - "outputQty": "30778623008556189030935", - "mpReserves": [ - "34621533461410461677095723", - "36364641846506140391246873", - "37032165917656646616650999" - ], - "fpReserves": [ - "9007112927740727793882486", - "5040061955318335471302519" - ], - "mAssetSupply": "108018196803888491925812190", - "LPTokenSupply": "14005912209338244344233487" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "100245868092673", - "outputIndex": 0, - "outputQty": "100635445309781", - "swapFee": "0", - "redemptionFee": "40275589246", + "inputQty": "748262167537006411776", + "outputQty0": "747816208595479096668", + "outputQty": "741751165043849373073", "mpReserves": [ - "34621533461309826231785942", - "36364641846506140391246873", - "37032165917656646616650999" + "33951452182774028780599542", + "31059898845780461686222513", + "36299085508918502421733257" ], "fpReserves": [ - "9007112927640038820767239", - "5040061955418581339395192" + "2291923098376570352415165", + "1452216246012849328345324" ], - "mAssetSupply": "108018196803787843228286189", - "LPTokenSupply": "14005912209338244344233487" + "mAssetSupply": "101308731880858698763441679", + "LPTokenSupply": "3718518731667196978351569" }, { "type": "mint", "inputIndex": 2, - "inputQty": "6356169496105239707648", - "outputQty0": "6355574034360048809717", - "outputQty": "6326863146705853382910", + "inputQty": "2524051090720609743667200", + "outputQty0": "2522102613264823316884012", + "outputQty": "2497627693200919715093116", "mpReserves": [ - "34621533461309826231785942", - "36364641846506140391246873", - "37038522087152751856358647" + "33951452182774028780599542", + "31059898845780461686222513", + "38823136599639112165400457" ], "fpReserves": [ - "9013468501674398869576956", - "5040061955418581339395192" + "4814025711641393669299177", + "1452216246012849328345324" ], - "mAssetSupply": "108024552377822203277095906", - "LPTokenSupply": "14012239072484950197616397" + "mAssetSupply": "103830834494123522080325691", + "LPTokenSupply": "6216146424868116693444685" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "52706544205088033865728", - "outputQty0": "52913480278619102282172", - "outputQty": "52897198604616608590258", - "swapFee1": "31623926523052820319", - "swapFee2": "21165392111447640912", + "inputQty": "858871919068087936", + "outputQty0": "868081392188763307", + "outputQty": "868379365214329799", + "swapFee1": "515323151440852", + "swapFee2": "520848835313257", "mpReserves": [ - "34621533461309826231785942", - "36364641846506140391246873", - "36985624888548135247768389" + "33951452182774028780599542", + "31059898845780461686222513", + "38823135731259746951070658" ], "fpReserves": [ - "8960555021395779767294784", - "5040061955418581339395192" + "4814024843560001480535870", + "1452216246012849328345324" ], - "mAssetSupply": "107971660062935695622454646", - "LPTokenSupply": "13959535690672514469032700" + "mAssetSupply": "103830833626562978726875641", + "LPTokenSupply": "6216145566047729940500834" }, { "type": "swap_fp_to_mp", - "inputQty": "70920099302488366120960", - "outputIndex": 1, - "outputQty": "71196467569850946603167", + "inputQty": "85684471205067801755648", + "outputIndex": 0, + "outputQty": "86744495475188842136282", "swapFee": "0", - "redemptionFee": "28489032630173787112", - "mpReserves": [ - "34621533461309826231785942", - "36293445378936289444643706", - "36985624888548135247768389" - ], - "fpReserves": [ - "8889332439820345299513983", - "5110982054721069705516152" - ], - "mAssetSupply": "107900465970392891328460957", - "LPTokenSupply": "13959535690672514469032700" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "3013549842386511200256", - "outputQty0": "3013455528428730726530", - "outputQty": "3000118960725601951480", + "redemptionFee": "52084962752206693620", "mpReserves": [ - "34621533461309826231785942", - "36296458928778675955843962", - "36985624888548135247768389" + "33864707687298839938463260", + "31059898845780461686222513", + "38823135731259746951070658" ], "fpReserves": [ - "8892345895348774030240513", - "5110982054721069705516152" + "4727216572306323657835286", + "1537900717217917130100972" ], - "mAssetSupply": "107903479425921320059187487", - "LPTokenSupply": "13962535809633240070984180" + "mAssetSupply": "103744077440272053110868677", + "LPTokenSupply": "6216145566047729940500834" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "16678260209827272704", "outputIndex": 2, - "inputQty": "37941305453017817088", - "outputQty0": "38087123533860516030", - "outputQty": "38075422132654328862", - "swapFee1": "22764783271810690", - "swapFee2": "15234849413544206", + "outputQty": "16888949968960739031", + "swapFee": "0", + "redemptionFee": "10129827767165433", "mpReserves": [ - "34621533461309826231785942", - "36296458928778675955843962", - "36985586813126002593439527" + "33864707687298839938463260", + "31059898845780461686222513", + "38823118842309777990331627" ], "fpReserves": [ - "8892307808225240169724483", - "5110982054721069705516152" + "4727199689260045048778858", + "1537917395478126957373676" ], - "mAssetSupply": "107903441354032635612215663", - "LPTokenSupply": "13962497870604265380348161" + "mAssetSupply": "103744060567355602268977682", + "LPTokenSupply": "6216145566047729940500834" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "79943947934337956052992", - "outputQty0": "79941245324284863917604", - "outputQty": "79586183217811331204958", + "type": "swap_fp_to_mp", + "inputQty": "122988348310158881849344", + "outputIndex": 1, + "outputQty": "124178847428648705411354", + "swapFee": "0", + "redemptionFee": "74621108641468112903", "mpReserves": [ - "34621533461309826231785942", - "36376402876713013911896954", - "36985586813126002593439527" + "33864707687298839938463260", + "30935719998351812980811159", + "38823118842309777990331627" ], "fpReserves": [ - "8972249053549525033642087", - "5110982054721069705516152" + "4602831174857598193938888", + "1660905743788285839223020" ], - "mAssetSupply": "107983382599356920476133267", - "LPTokenSupply": "14042084053822076711553119" + "mAssetSupply": "103619766674061796882250615", + "LPTokenSupply": "6216145566047729940500834" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "389658098411966234624", - "outputQty0": "391167637125884093758", - "outputQty": "390960104965293100379", - "swapFee1": "233794859047179740", - "swapFee2": "156467054850353637", - "mpReserves": [ - "34621142501204860938685563", - "36376402876713013911896954", - "36985586813126002593439527" - ], - "fpReserves": [ - "8971857885912399149548329", - "5110982054721069705516152" - ], - "mAssetSupply": "107982991588186849442393146", - "LPTokenSupply": "14041694419103150650036469" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "13559262499148763496448", - "outputQty0": "13558030801630410595612", - "outputQty": "13489607440848420012357", - "swapFee": "10798057503160116191", + "outputIndex": 1, + "inputQty": "693364771885047080812544", + "outputQty0": "699893225143020772599314", + "outputQty": "698765986560006116705914", + "swapFee1": "416018863131028248487", + "swapFee2": "419935935085812463559", "mpReserves": [ - "34621142501204860938685563", - "36376402876713013911896954", - "36999146075625151356935975" + "33864707687298839938463260", + "30236954011791806864105245", + "38823118842309777990331627" ], "fpReserves": [ - "8985415916714029560143941", - "5097492447280221285503795" + "3902937949714577421339574", + "1660905743788285839223020" ], - "mAssetSupply": "107996549618988479852988758", - "LPTokenSupply": "14041695498908900966048088" + "mAssetSupply": "102920293384853861922114860", + "LPTokenSupply": "5522822396048995962513138" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "230397728036678", - "outputQty0": "230389472547223", - "outputQty": "229222251260067", - "swapFee": "183487408514", + "type": "swap_fp_to_mp", + "inputQty": "3280604336018182111232", + "outputIndex": 2, + "outputQty": "3306892143938185100176", + "swapFee": "0", + "redemptionFee": "1983302736232458480", "mpReserves": [ - "34621142501204860938685563", - "36376402876943411639933632", - "36999146075625151356935975" + "33864707687298839938463260", + "30236954011791806864105245", + "38819811950165839805231451" ], "fpReserves": [ - "8985415916944419032691164", - "5097492447050999034243728" + "3899632445154189990539552", + "1664186348124304021334252" ], - "mAssetSupply": "107996549619218869325535981", - "LPTokenSupply": "14041695498908919314788939" + "mAssetSupply": "102916989863596210723773318", + "LPTokenSupply": "5522822396048995962513138" }, { "type": "mint", "inputIndex": 2, - "inputQty": "34594139199903633408", - "outputQty0": "34590982999575310976", - "outputQty": "34436305380348834409", + "inputQty": "55818089296207839232", + "outputQty0": "55761202978956895515", + "outputQty": "55225280146151939773", "mpReserves": [ - "34621142501204860938685563", - "36376402876943411639933632", - "36999180669764351260569383" + "33864707687298839938463260", + "30236954011791806864105245", + "38819867768255136013070683" ], "fpReserves": [ - "8985450507927418608002140", - "5097492447050999034243728" + "3899688206357168947435067", + "1664186348124304021334252" ], - "mAssetSupply": "107996584210201868900846957", - "LPTokenSupply": "14041729935214299663623348" + "mAssetSupply": "102917045624799189680668833", + "LPTokenSupply": "5522877621329142114452911" }, { - "type": "swap_fp_to_mp", - "inputQty": "30259453753856471040", - "outputIndex": 2, - "outputQty": "30379822705530473252", - "swapFee": "0", - "redemptionFee": "12155682671116809", + "type": "redeem", + "outputIndex": 1, + "inputQty": "11156955721595315290112", + "outputQty0": "11258399639968215848541", + "outputQty": "11239423550915073825245", + "swapFee1": "6694173432957189174", + "swapFee2": "6755039783980929509", "mpReserves": [ - "34621142501204860938685563", - "36376402876943411639933632", - "36999150289941645730096131" + "33864707687298839938463260", + "30225714588240891790280000", + "38819867768255136013070683" ], "fpReserves": [ - "8985420118720740815977436", - "5097522706504752890714768" + "3888429806717200731586526", + "1664186348124304021334252" ], - "mAssetSupply": "107996553833150873779939062", - "LPTokenSupply": "14041729935214299663623348" + "mAssetSupply": "102905793980199005445749801", + "LPTokenSupply": "5511721335024890094881716" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1642887961948197486592", - "outputQty0": "1643103175760574524770", - "outputQty": "1635755374147736157513", + "inputIndex": 2, + "inputQty": "1022714551249921900544", + "outputQty0": "1021671193941061688939", + "outputQty": "1011862368640236075254", "mpReserves": [ - "34622785389166809136172155", - "36376402876943411639933632", - "36999150289941645730096131" + "33864707687298839938463260", + "30225714588240891790280000", + "38820890482806385934971227" ], "fpReserves": [ - "8987063221896501390502206", - "5097522706504752890714768" + "3889451477911141793275465", + "1664186348124304021334252" ], - "mAssetSupply": "107998196936326634354463832", - "LPTokenSupply": "14043365690588447399780861" + "mAssetSupply": "102906815651392946507438740", + "LPTokenSupply": "5512733197393530330956970" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "69100559947207552", - "outputQty0": "69109608139667690", - "outputQty": "68800534837429133", - "mpReserves": [ - "34622785458267369083379707", - "36376402876943411639933632", - "36999150289941645730096131" - ], - "fpReserves": [ - "8987063291006109530169896", - "5097522706504752890714768" - ], - "mAssetSupply": "107998197005436242494131522", - "LPTokenSupply": "14043365759388982237209994" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "970054353693586902482944", - "outputQty0": "973642168483297890612614", - "outputQty": "973313409596018135136018", - "swapFee1": "582032612216152141489", - "swapFee2": "389456867393319156245", + "inputIndex": 2, + "inputQty": "2382365573712736944128", + "outputQty0": "2379934587630954397028", + "outputQty": "2357081106811119323284", "mpReserves": [ - "34622785458267369083379707", - "36376402876943411639933632", - "36025836880345627594960113" + "33864707687298839938463260", + "30225714588240891790280000", + "38823272848380098671915355" ], "fpReserves": [ - "8013421122522811639557282", - "5097522706504752890714768" + "3891831412498772747672493", + "1664186348124304021334252" ], - "mAssetSupply": "107024944293820337922675153", - "LPTokenSupply": "13073369608956616949941198" + "mAssetSupply": "102909195585980577461835768", + "LPTokenSupply": "5515090278500341450280254" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "9933928448277588", - "outputQty0": "9969132343912858", - "outputQty": "9965791050766208", - "swapFee1": "5960357068966", - "swapFee2": "3987652937565", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "11736930002998950625280", + "outputQty0": "11724942629250997981258", + "outputQty": "11627051058108612721678", + "swapFee": "9289812419308905508", "mpReserves": [ - "34622785458267369083379707", - "36376402866977620589167424", - "36025836880345627594960113" + "33864707687298839938463260", + "30225714588240891790280000", + "38835009778383097622540635" ], "fpReserves": [ - "8013421112553679295644424", - "5097522706504752890714768" + "3903556355128023745653751", + "1652559297066195408612574" ], - "mAssetSupply": "107024944283855193231699860", - "LPTokenSupply": "13073369599023284537370506" + "mAssetSupply": "102920920528609828459817026", + "LPTokenSupply": "5515091207481583381170804" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "53725831709210859012096", - "outputQty0": "53723963850092699056152", - "outputQty": "53502516720482810379270", - "swapFee": "42801234041034491425", + "inputIndex": 0, + "inputQty": "199812538428820595671040", + "outputQty0": "199822424823227504026157", + "outputQty": "197873929480618508525777", + "swapFee": "158298890574431713493", "mpReserves": [ - "34622785458267369083379707", - "36376402866977620589167424", - "36079562712054838453972209" + "34064520225727660534134300", + "30225714588240891790280000", + "38835009778383097622540635" ], "fpReserves": [ - "8067145076403771994700576", - "5044020189784270080335498" + "4103378779951251249679908", + "1454685367585576900086797" ], - "mAssetSupply": "107078668247705285930756012", - "LPTokenSupply": "13073373879146688640819648" + "mAssetSupply": "103120742953433055963843183", + "LPTokenSupply": "5515107037370640824342153" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "147646168135355936538624", "outputIndex": 0, - "inputQty": "2515784056391268827136", - "outputQty0": "2524848447233175028177", - "outputQty": "2523580934258095573802", - "swapFee1": "1509470433834761296", - "swapFee2": "1009939378893270011", + "outputQty": "148936907229230010835419", + "swapFee": "0", + "redemptionFee": "89419838696878346364", "mpReserves": [ - "34620261877333110987805905", - "36376402866977620589167424", - "36079562712054838453972209" + "33915583318498430523298881", + "30225714588240891790280000", + "38835009778383097622540635" ], "fpReserves": [ - "8064620227956538819672399", - "5044020189784270080335498" + "3954345715456454005739691", + "1602331535720932836625421" ], - "mAssetSupply": "107076144409197431648997846", - "LPTokenSupply": "13070858246037340755468641" + "mAssetSupply": "102971799308776955598249330", + "LPTokenSupply": "5515107037370640824342153" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "4542119372091132739584", - "outputQty0": "4541953045330792516216", - "outputQty": "4522929380576126052244", + "inputIndex": 1, + "inputQty": "2859254914128295", + "outputQty0": "2862384671601341", + "outputQty": "2834168907250600", "mpReserves": [ - "34620261877333110987805905", - "36376402866977620589167424", - "36084104831426929586711793" + "33915583318498430523298881", + "30225714591100146704408295", + "38835009778383097622540635" ], "fpReserves": [ - "8069162181001869612188615", - "5044020189784270080335498" + "3954345718318838677341032", + "1602331535720932836625421" ], - "mAssetSupply": "107080686362242762441514062", - "LPTokenSupply": "13075381175417916881520885" + "mAssetSupply": "102971799311639340269850671", + "LPTokenSupply": "5515107040204809731592753" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "7852351666654227456", - "outputQty0": "7851855538800526120", - "outputQty": "7818961308621623809", + "type": "redeem", + "outputIndex": 2, + "inputQty": "4851630255885592297472", + "outputQty0": "4896977869464926093850", + "outputQty": "4899027152378865654654", + "swapFee1": "2910978153531355378", + "swapFee2": "2938186721678955656", "mpReserves": [ - "34620261877333110987805905", - "36376410719329287243394880", - "36084104831426929586711793" + "33915583318498430523298881", + "30225714591100146704408295", + "38830110751230718756885981" ], "fpReserves": [ - "8069170032857408412714735", - "5044020189784270080335498" + "3949448740449373751247182", + "1602331535720932836625421" ], - "mAssetSupply": "107080694214098301242040182", - "LPTokenSupply": "13075388994379225503144694" + "mAssetSupply": "102966905271956597022712477", + "LPTokenSupply": "5510255701046739492430818" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1035504099702905648447488", - "outputQty0": "1035407067517430862311186", - "outputQty": "1030856424427907796778823", + "inputQty": "6244318452462124007424", + "outputQty0": "6251146651038944927531", + "outputQty": "6189535491863144055182", "mpReserves": [ - "34620261877333110987805905", - "37411914819032192891842368", - "36084104831426929586711793" + "33915583318498430523298881", + "30231958909552608828415719", + "38830110751230718756885981" ], "fpReserves": [ - "9104577100374839275025921", - "5044020189784270080335498" + "3955699887100412696174713", + "1602331535720932836625421" ], - "mAssetSupply": "108116101281615732104351368", - "LPTokenSupply": "14106245418807133299923517" + "mAssetSupply": "102973156418607635967640008", + "LPTokenSupply": "5516445236538602636486000" }, { - "type": "swap_fp_to_mp", - "inputQty": "1485008980192324352", + "type": "redeem", "outputIndex": 1, - "outputQty": "1491305426541588740", - "swapFee": "0", - "redemptionFee": "596687003051117", + "inputQty": "313786950336832151224320", + "outputQty0": "316665979357836714110697", + "outputQty": "316119641084470538498648", + "swapFee1": "188272170202099290734", + "swapFee2": "189999587614702028466", "mpReserves": [ - "34620261877333110987805905", - "37411913327726766350253628", - "36084104831426929586711793" + "33915583318498430523298881", + "29915839268468138289917071", + "38830110751230718756885981" ], "fpReserves": [ - "9104575608657331647230925", - "5044021674793250272659850" + "3639033907742575982064016", + "1602331535720932836625421" ], - "mAssetSupply": "108116099790494911479607489", - "LPTokenSupply": "14106245418807133299923517" + "mAssetSupply": "102656680438837413955557777", + "LPTokenSupply": "5202677113418790695190753" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "421738439603165883006976", - "outputQty0": "423397052532750191233787", - "outputQty": "423224634213135675861952", - "swapFee1": "253043063761899529804", - "swapFee2": "169358821013100076493", + "inputQty": "11070308898760941568", + "outputQty0": "11170278872511816281", + "outputQty": "11175252868797892134", + "swapFee1": "6642185339256564", + "swapFee2": "6702167323507089", "mpReserves": [ - "34620261877333110987805905", - "37411913327726766350253628", - "35660880197213793910849841" + "33915583318498430523298881", + "29915839268468138289917071", + "38830099575977849958993847" ], "fpReserves": [ - "8681178556124581455997138", - "5044021674793250272659850" + "3639022737463703470247735", + "1602331535720932836625421" ], - "mAssetSupply": "107692872096783174388450195", - "LPTokenSupply": "13684532283510343606869521" + "mAssetSupply": "102656669275260708767248585", + "LPTokenSupply": "5202666043774110468174841" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "615952551656125552918528", - "outputQty0": "618258378846309044023491", - "outputQty": "617923408696022314464341", - "swapFee1": "369571530993675331751", - "swapFee2": "247303351538523617609", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "252280189069100187648", + "outputQty0": "252287318030183781272", + "outputQty": "250297171071461564464", + "swapFee": "199903508590254739", "mpReserves": [ - "34002338468637088673341564", - "37411913327726766350253628", - "35660880197213793910849841" + "33915835598687499623486529", + "29915839268468138289917071", + "38830099575977849958993847" ], "fpReserves": [ - "8062920177278272411973647", - "5044021674793250272659850" + "3639275024781733654029007", + "1602081238549861375060957" ], - "mAssetSupply": "107074861021288403868044313", - "LPTokenSupply": "13068616689007317421484168" + "mAssetSupply": "102656921562578738951029857", + "LPTokenSupply": "5202666063764461327200314" }, { - "type": "swap_fp_to_mp", - "inputQty": "47918210972018412617728", - "outputIndex": 0, - "outputQty": "48051064051976696818880", - "swapFee": "0", - "redemptionFee": "19231281075878939240", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "32023987416725592", + "outputQty0": "32024891680633174", + "outputQty": "31772218586619118", + "swapFee": "25375365928437", "mpReserves": [ - "33954287404585111976522684", - "37411913327726766350253628", - "35660880197213793910849841" + "33915835630711487040212121", + "29915839268468138289917071", + "38830099575977849958993847" ], "fpReserves": [ - "8014841974588575063873324", - "5091939885765268685277578" + "3639275056806625334662181", + "1602081206777642788441839" ], - "mAssetSupply": "107026802049879782398883230", - "LPTokenSupply": "13068616689007317421484168" + "mAssetSupply": "102656921594603630631663031", + "LPTokenSupply": "5202666063766998863793157" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "9391290317475971072", - "outputQty0": "9392851317763724222", - "outputQty": "9354714719159393194", - "swapFee": "7482884305523446", + "type": "mint", + "inputIndex": 2, + "inputQty": "54207491689924943413248", + "outputQty0": "54150662115169980888151", + "outputQty": "53632160581928560016910", "mpReserves": [ - "33954296795875429452493756", - "37411913327726766350253628", - "35660880197213793910849841" + "33915835630711487040212121", + "29915839268468138289917071", + "38884307067667774902407095" ], "fpReserves": [ - "8014851367439892827597546", - "5091930531050549525884384" + "3693425718921795315550332", + "1602081206777642788441839" ], - "mAssetSupply": "107026811442731100162607452", - "LPTokenSupply": "13068616689755605852036512" + "mAssetSupply": "102711072256718800612551182", + "LPTokenSupply": "5256298224348927423810067" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "30864755980330", - "outputQty0": "30869886244372", - "outputQty": "30744548785807", - "swapFee": "24592722435", + "type": "mint", + "inputIndex": 2, + "inputQty": "262452703627004772352", + "outputQty0": "262176615503436525531", + "outputQty": "259658348681861268052", "mpReserves": [ - "33954296795906294208474086", - "37411913327726766350253628", - "35660880197213793910849841" + "33915835630711487040212121", + "29915839268468138289917071", + "38884569520371401907179447" ], "fpReserves": [ - "8014851367470762713841918", - "5091930531019804977098577" + "3693687895537298752075863", + "1602081206777642788441839" ], - "mAssetSupply": "107026811442761970048851824", - "LPTokenSupply": "13068616689755608311308755" + "mAssetSupply": "102711334433334304049076713", + "LPTokenSupply": "5256557882697609285078119" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "310455038927114157948928", - "outputQty0": "311550613754356531995930", - "outputQty": "311423339243833322889135", - "swapFee1": "186273023356268494769", - "swapFee2": "124620245501742612798", + "inputQty": "4056409321901156990976", + "outputQty0": "4093283754923090878877", + "outputQty": "4095134645385300352835", + "swapFee1": "2433845593140694194", + "swapFee2": "2455970252953854527", "mpReserves": [ - "33954296795906294208474086", - "37411913327726766350253628", - "35349456857969960587960706" + "33915835630711487040212121", + "29915839268468138289917071", + "38880474385726016606826612" ], "fpReserves": [ - "7703300753716406181845988", - "5091930531019804977098577" + "3689594611782375661196986", + "1602081206777642788441839" ], - "mAssetSupply": "106715385449253115259468692", - "LPTokenSupply": "12758180278130829780209303" + "mAssetSupply": "102707243605549633912052363", + "LPTokenSupply": "5252501716760267442156562" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "1234440780480790659072", - "outputQty0": "1238732862320923567096", - "outputQty": "1238044170542618161619", - "swapFee1": "740664468288474395", - "swapFee2": "495493144928369426", + "outputIndex": 1, + "inputQty": "1394042474986243620864", + "outputQty0": "1406711170281292240130", + "outputQty": "1404229122694415077363", + "swapFee1": "836425484991746172", + "swapFee2": "844026702168775344", "mpReserves": [ - "33953058751735751590312467", - "37411913327726766350253628", - "35349456857969960587960706" + "33915835630711487040212121", + "29914435039345443874839708", + "38880474385726016606826612" ], "fpReserves": [ - "7702062020854085258278892", - "5091930531019804977098577" + "3688187900612094368956856", + "1602081206777642788441839" ], - "mAssetSupply": "106714147211883939264271022", - "LPTokenSupply": "12756945911416795818397670" + "mAssetSupply": "102705837738406054788587577", + "LPTokenSupply": "5251107757927829697710315" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "200840858775816713011200", - "outputQty0": "200870826563423118582840", - "outputQty": "200046396452175863971770", + "inputIndex": 1, + "inputQty": "25932811656598220963840", + "outputQty0": "25962991781878072084570", + "outputQty": "25713378801219007054860", "mpReserves": [ - "34153899610511568303323667", - "37411913327726766350253628", - "35349456857969960587960706" + "33915835630711487040212121", + "29940367851002042095803548", + "38880474385726016606826612" ], "fpReserves": [ - "7902932847417508376861732", - "5091930531019804977098577" + "3714150892393972441041426", + "1602081206777642788441839" ], - "mAssetSupply": "106915018038447362382853862", - "LPTokenSupply": "12956992307868971682369440" + "mAssetSupply": "102731800730187932860672147", + "LPTokenSupply": "5276821136729048704765175" }, { "type": "swap_fp_to_mp", - "inputQty": "142676979414906535936", - "outputIndex": 0, - "outputQty": "143049580070081928353", + "inputQty": "3877452678549041664", + "outputIndex": 1, + "outputQty": "3899361020799217127", "swapFee": "0", - "redemptionFee": "57250878127418946", - "mpReserves": [ - "34153756560931498221395314", - "37411913327726766350253628", - "35349456857969960587960706" - ], - "fpReserves": [ - "7902789720222189829495223", - "5092073207999219883634513" - ], - "mAssetSupply": "106914874968502921962906299", - "LPTokenSupply": "12956992307868971682369440" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "54021592502617566609408", - "outputQty0": "54029184023578022179037", - "outputQty": "53812243556842353884486", - "swapFee": "43043683759857912078", + "redemptionFee": "2343738960530228", "mpReserves": [ - "34207778153434115788004722", - "37411913327726766350253628", - "35349456857969960587960706" + "33915835630711487040212121", + "29940363951641021296586421", + "38880474385726016606826612" ], "fpReserves": [ - "7956818904245767851674260", - "5038260964442377529750027" + "3714146986162371557327309", + "1602085084230321337483503" ], - "mAssetSupply": "106968904152526499985085336", - "LPTokenSupply": "12956996612237347668160647" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "2574718170023117", - "outputQty0": "2574786714361959", - "outputQty": "2563959075371374", - "mpReserves": [ - "34207778153434115788004722", - "37411913327726766350253628", - "35349456860544678757983823" - ], - "fpReserves": [ - "7956818906820554566036219", - "5038260964442377529750027" - ], - "mAssetSupply": "106968904155101286699447295", - "LPTokenSupply": "12956996614801306743532021" + "mAssetSupply": "102731796826300070937488258", + "LPTokenSupply": "5276821136729048704765175" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "16976479904678123929600", - "outputQty0": "17037883136315388446411", - "outputQty": "17028696379632135723046", - "swapFee1": "10185887942806874357", - "swapFee2": "6815153254526155378", + "inputQty": "8151853973621862039552", + "outputQty0": "8226130755039756872669", + "outputQty": "8220908061930982854985", + "swapFee1": "4891112384173117223", + "swapFee2": "4935678453023854123", "mpReserves": [ - "34190749457054483652281676", - "37411913327726766350253628", - "35349456860544678757983823" + "33907614722649556057357136", + "29940363951641021296586421", + "38880474385726016606826612" ], "fpReserves": [ - "7939781023684239177589808", - "5038260964442377529750027" + "3705920855407331800454640", + "1602085084230321337483503" ], - "mAssetSupply": "106951873087118225837156262", - "LPTokenSupply": "12940021153485422900289856" + "mAssetSupply": "102723575631223484204469712", + "LPTokenSupply": "5268669771866665260037345" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "7010010003543680876544", - "outputQty0": "7010988678258926202828", - "outputQty": "6982386379984324315919", - "swapFee": "5585231724738955589", + "type": "redeem", + "outputIndex": 0, + "inputQty": "112922364159164921413632", + "outputQty0": "113943598645622664529225", + "outputQty": "113870094787204519135795", + "swapFee1": "67753418495498952848", + "swapFee2": "68366159187373598717", "mpReserves": [ - "34197759467058027333158220", - "37411913327726766350253628", - "35349456860544678757983823" + "33793744627862351538221341", + "29940363951641021296586421", + "38880474385726016606826612" ], "fpReserves": [ - "7946792012362498103792636", - "5031278578062393205434108" + "3591977256761709135925415", + "1602085084230321337483503" ], - "mAssetSupply": "106958884075796484763359090", - "LPTokenSupply": "12940021712008595374185414" + "mAssetSupply": "102609700398737048913539204", + "LPTokenSupply": "5155754183049349888518997" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "91304920744107584", - "outputQty0": "91317646190456589", - "outputQty": "90944233349246075", - "swapFee": "72746795834102", - "mpReserves": [ - "34197759558362948077265804", - "37411913327726766350253628", - "35349456860544678757983823" - ], - "fpReserves": [ - "7946792103680144294249225", - "5031278487118159856188033" - ], - "mAssetSupply": "106958884167114130953815679", - "LPTokenSupply": "12940021712015870053768824" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "61628214156727100112896", - "outputQty0": "61850641285688568754262", - "outputQty": "61824154227182687346709", - "swapFee1": "36976928494036260067", - "swapFee2": "24740256514275427501", + "inputIndex": 1, + "inputQty": "819392319309289488384", + "outputQty0": "820334081544041161746", + "outputQty": "813997626386796091762", + "swapFee": "650028610135986343", "mpReserves": [ - "34197759558362948077265804", - "37411913327726766350253628", - "35287632706317496070637114" + "33793744627862351538221341", + "29941183343960330586074805", + "38880474385726016606826612" ], "fpReserves": [ - "7884941462394455725494963", - "5031278487118159856188033" + "3592797590843253177087161", + "1601271086603934541391741" ], - "mAssetSupply": "106897058266084956660488918", - "LPTokenSupply": "12878397195551992357281934" + "mAssetSupply": "102610520732818592954700950", + "LPTokenSupply": "5155754248052210902117631" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "121807740353592672", - "outputQty0": "121824470821575798", - "outputQty": "121334277423891997", - "swapFee": "97051818193104", + "type": "swap_fp_to_mp", + "inputQty": "166975636310453276114944", + "outputIndex": 1, + "outputQty": "167693336192493127346186", + "swapFee": "0", + "redemptionFee": "100793977213732252499", "mpReserves": [ - "34197759680170688430858476", - "37411913327726766350253628", - "35287632706317496070637114" + "33793744627862351538221341", + "29773490007767837458728619", + "38880474385726016606826612" ], "fpReserves": [ - "7884941584218926547070761", - "5031278365783882432296036" + "3424807628820366089587266", + "1768246722914387817506685" ], - "mAssetSupply": "106897058387909427482064716", - "LPTokenSupply": "12878397195561697539101244" + "mAssetSupply": "102442631564772919599453554", + "LPTokenSupply": "5155754248052210902117631" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "18783360566316752699392", - "outputQty0": "18785928524256484456557", - "outputQty": "18707257810723838715464", + "inputIndex": 2, + "inputQty": "87660452228611451125760", + "outputQty0": "87565894192665603927594", + "outputQty": "86778065658877612058415", "mpReserves": [ - "34216543040737005183557868", - "37411913327726766350253628", - "35287632706317496070637114" + "33793744627862351538221341", + "29773490007767837458728619", + "38968134837954628057952372" ], "fpReserves": [ - "7903727512743183031527318", - "5031278365783882432296036" + "3512373523013031693514860", + "1768246722914387817506685" ], - "mAssetSupply": "106915844316433683966521273", - "LPTokenSupply": "12897104453372421377816708" + "mAssetSupply": "102530197458965585203381148", + "LPTokenSupply": "5242532313711088514176046" }, { "type": "swap_fp_to_mp", - "inputQty": "21127870900890180255744", + "inputQty": "198780018050747414347776", "outputIndex": 0, - "outputQty": "21184693525678381575267", + "outputQty": "199573146887848023070836", "swapFee": "0", - "redemptionFee": "8478427973486349856", + "redemptionFee": "119823222539046534357", "mpReserves": [ - "34195358347211326801982601", - "37411913327726766350253628", - "35287632706317496070637114" + "33594171480974503515150505", + "29773490007767837458728619", + "38968134837954628057952372" ], "fpReserves": [ - "7882531442809467156887260", - "5052406236684772612551780" + "3312668152114620802918910", + "1967026740965135231854461" ], - "mAssetSupply": "106894656724927941578231071", - "LPTokenSupply": "12897104453372421377816708" + "mAssetSupply": "102330611911289713359319555", + "LPTokenSupply": "5242532313711088514176046" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "49463098801324455624704", - "outputQty0": "49464511849694455659132", - "outputQty": "49257778181341139191101", - "mpReserves": [ - "34195358347211326801982601", - "37411913327726766350253628", - "35337095805118820526261818" - ], - "fpReserves": [ - "7931995954659161612546392", - "5052406236684772612551780" - ], - "mAssetSupply": "106944121236777636033890203", - "LPTokenSupply": "12946362231553762517007809" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "1351642549975242304913408", + "type": "redeem", "outputIndex": 0, - "outputQty": "1353064562069864209336295", - "swapFee": "0", - "redemptionFee": "541543224744696785900", + "inputQty": "4613772065079989248", + "outputQty0": "4650374696970947274", + "outputQty": "4647217324440449896", + "swapFee1": "2768263239047993", + "swapFee2": "2790224818182568", "mpReserves": [ - "32842293785141462592646306", - "37411913327726766350253628", - "35337095805118820526261818" + "33594166833757179074700609", + "29773490007767837458728619", + "38968134837954628057952372" ], "fpReserves": [ - "6578137892797419647795946", - "6404048786660014917465188" + "3312663501739923831971636", + "1967026740965135231854461" ], - "mAssetSupply": "105590804718140638765925657", - "LPTokenSupply": "12946362231553762517007809" + "mAssetSupply": "102330607263705241206554849", + "LPTokenSupply": "5242527700215849758091597" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "6729959443525977243648", - "outputQty0": "6745112939344156023280", - "outputQty": "6742534399975266669637", - "swapFee1": "4037975666115586346", - "swapFee2": "2698045175737662409", + "type": "mint", + "inputIndex": 1, + "inputQty": "115562192540093055500288", + "outputQty0": "115696524103165003265280", + "outputQty": "114710307470872306449816", "mpReserves": [ - "32842293785141462592646306", - "37411913327726766350253628", - "35330353270718845259592181" + "33594166833757179074700609", + "29889052200307930514228907", + "38968134837954628057952372" ], "fpReserves": [ - "6571392779858075491772666", - "6404048786660014917465188" + "3428360025843088835236916", + "1967026740965135231854461" ], - "mAssetSupply": "105584062303246470347564786", - "LPTokenSupply": "12939632675907803151322795" + "mAssetSupply": "102446303787808406209820129", + "LPTokenSupply": "5357238007686722064541413" }, { "type": "swap_fp_to_mp", - "inputQty": "1032812280016434364416", + "inputQty": "88308945656560643735552", "outputIndex": 1, - "outputQty": "1032783528534257450581", + "outputQty": "88493895630274854525402", "swapFee": "0", - "redemptionFee": "413195075615473186", + "redemptionFee": "53189811910679167707", "mpReserves": [ - "32842293785141462592646306", - "37410880544198232092803047", - "35330353270718845259592181" + "33594166833757179074700609", + "29800558304677655659703505", + "38968134837954628057952372" ], "fpReserves": [ - "6570359792169036808806553", - "6405081598940031351829604" + "3339710339325290222390893", + "2055335686621695875590013" ], - "mAssetSupply": "105583029728752507280071859", - "LPTokenSupply": "12939632675907803151322795" + "mAssetSupply": "102357707291102518276141813", + "LPTokenSupply": "5357238007686722064541413" }, { "type": "swap_fp_to_mp", - "inputQty": "24454812796302464647168", - "outputIndex": 0, - "outputQty": "24442798663416582286721", + "inputQty": "6039228624473878953984", + "outputIndex": 2, + "outputQty": "6063530919815427236830", "swapFee": "0", - "redemptionFee": "9783331685430119741", + "redemptionFee": "3636311828713299288", "mpReserves": [ - "32817850986478046010359585", - "37410880544198232092803047", - "35330353270718845259592181" + "33594166833757179074700609", + "29800558304677655659703505", + "38962071307034812630715542" ], "fpReserves": [ - "6545901462955461509453928", - "6429536411736333816476772" + "3333649819610768056909658", + "2061374915246169754543997" ], - "mAssetSupply": "105558581182870617410838975", - "LPTokenSupply": "12939632675907803151322795" + "mAssetSupply": "102351650407699824823959866", + "LPTokenSupply": "5357238007686722064541413" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "1707322390856758460416", - "outputQty0": "1711119483083818987088", - "outputQty": "1710466362969024899904", - "swapFee1": "1024393434514055076", - "swapFee2": "684447793233527594", + "outputIndex": 1, + "inputQty": "60218249918440760410112", + "outputQty0": "60685935035681998760663", + "outputQty": "60578317645496254280776", + "swapFee1": "36130949951064456246", + "swapFee2": "36411561021409199256", "mpReserves": [ - "32817850986478046010359585", - "37410880544198232092803047", - "35328642804355876234692277" + "33594166833757179074700609", + "29739979987032159405422729", + "38962071307034812630715542" ], "fpReserves": [ - "6544190343472377690466840", - "6429536411736333816476772" + "3272963884575086058148995", + "2061374915246169754543997" ], - "mAssetSupply": "105556870747835326825379481", - "LPTokenSupply": "12937925455956289844267886" + "mAssetSupply": "102291000884225164234398459", + "LPTokenSupply": "5297023370863276410576925" }, { - "type": "swap_fp_to_mp", - "inputQty": "2419332039310564491526144", - "outputIndex": 1, - "outputQty": "2412156575252897514956258", - "swapFee": "0", - "redemptionFee": "965120337196909913798", + "type": "mint", + "inputIndex": 1, + "inputQty": "15546002066453383168", + "outputQty0": "15564380293242432049", + "outputQty": "15435537752088295887", "mpReserves": [ - "32817850986478046010359585", - "34998723968945334577846789", - "35328642804355876234692277" + "33594166833757179074700609", + "29739995533034225858805897", + "38962071307034812630715542" ], "fpReserves": [ - "4131389500480102905969658", - "8848868451046898308002916" + "3272979448955379300581044", + "2061374915246169754543997" ], - "mAssetSupply": "103145035025180248950796097", - "LPTokenSupply": "12937925455956289844267886" + "mAssetSupply": "102291016448605457476830508", + "LPTokenSupply": "5297038806401028498872812" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "979493887626962", - "outputQty0": "977855608593960", - "outputQty": "977523539913112", - "swapFee1": "587696332576", - "swapFee2": "391142243437", + "outputIndex": 0, + "inputQty": "40233489463628655493120", + "outputQty0": "40544155872160369439066", + "outputQty": "40516636103085312143892", + "swapFee1": "24140093678177193295", + "swapFee2": "24326493523296221663", "mpReserves": [ - "32817850986478046010359585", - "34998723967967811037933677", - "35328642804355876234692277" + "33553650197654093762556717", + "29739995533034225858805897", + "38962071307034812630715542" ], "fpReserves": [ - "4131389499502247297375698", - "8848868451046898308002916" + "3232435293083218931141978", + "2061374915246169754543997" ], - "mAssetSupply": "103145035024202784484445574", - "LPTokenSupply": "12937925454976854726274181" + "mAssetSupply": "102250496619226820403613105", + "LPTokenSupply": "5256807730946767661099021" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2186474622122732552192", - "outputQty0": "2186342340473657471238", - "outputQty": "2198550524101729291920", - "swapFee": "1750949190436528647", + "type": "swap_fp_to_mp", + "inputQty": "36525903881161480", + "outputIndex": 0, + "outputQty": "36619310539186963", + "swapFee": "0", + "redemptionFee": "21986585517507", "mpReserves": [ - "32817850986478046010359585", - "35000910442589933770485869", - "35328642804355876234692277" + "33553650161034783223369754", + "29739995533034225858805897", + "38962071307034812630715542" ], "fpReserves": [ - "4133575841842720954846936", - "8846669900522796578710996" + "3232435256438909735295420", + "2061374951772073635705477" ], - "mAssetSupply": "103147221366543258141916812", - "LPTokenSupply": "12937925630071773769927045" + "mAssetSupply": "102250496582604497793284054", + "LPTokenSupply": "5256807730946767661099021" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "623427741580595193446400", - "outputQty0": "623377987413623009661501", - "outputQty": "626104167521318231218117", - "swapFee": "498959981976671626733", + "inputQty": "32230451332548428", + "outputQty0": "32268429483295685", + "outputQty": "32002484429597801", "mpReserves": [ - "32817850986478046010359585", - "35624338184170528963932269", - "35328642804355876234692277" + "33553650161034783223369754", + "29739995565264677191354325", + "38962071307034812630715542" ], "fpReserves": [ - "4756953829256343964508437", - "8220565733001478347492879" + "3232435288707339218591105", + "2061374951772073635705477" ], - "mAssetSupply": "103770599353956881151578313", - "LPTokenSupply": "12937975526069971437089718" + "mAssetSupply": "102250496614872927276579739", + "LPTokenSupply": "5256807762949252090696822" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "5588066267399375872", - "outputQty0": "5587664954384792306", - "outputQty": "5585088434720983956", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1944590726849420328960", + "outputQty0": "1944750355263555822269", + "outputQty": "1936903180301233962638", + "swapFee": "1542976408387682979", "mpReserves": [ - "32817850986478046010359585", - "35624338184170528963932269", - "35328648392422143634068149" + "33555594751761632643698714", + "29739995565264677191354325", + "38962071307034812630715542" ], "fpReserves": [ - "4756959416921298349300743", - "8220565733001478347492879" + "3234380039062602774413374", + "2059438048591772401742839" ], - "mAssetSupply": "103770604941621835536370619", - "LPTokenSupply": "12937981111158406158073674" + "mAssetSupply": "102252441365228190832402008", + "LPTokenSupply": "5256807917246892929465119" }, { "type": "swap_fp_to_mp", - "inputQty": "1921440130371300098048", + "inputQty": "65142882479788425216", "outputIndex": 2, - "outputQty": "1912958534336503901722", + "outputQty": "65387867195193630618", "swapFee": "0", - "redemptionFee": "765434680058371329", + "redemptionFee": "39212931110532769", "mpReserves": [ - "32817850986478046010359585", - "35624338184170528963932269", - "35326735433887807130166427" + "33555594751761632643698714", + "29739995565264677191354325", + "38962005919167617437084924" ], "fpReserves": [ - "4755045830221152420978129", - "8222487173131849647590927" + "3234314684177418553130150", + "2059503191474252190168055" ], - "mAssetSupply": "103768692120356369666419334", - "LPTokenSupply": "12937981111158406158073674" + "mAssetSupply": "102252376049555937721651553", + "LPTokenSupply": "5256807917246892929465119" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "91270987616658172936192", - "outputQty0": "91286888798287991866055", - "outputQty": "91240068647401123475610", + "inputIndex": 1, + "inputQty": "77258387913532531277824", + "outputQty0": "77348773156343822066888", + "outputQty": "76707913078040027870804", "mpReserves": [ - "32909121974094704183295777", - "35624338184170528963932269", - "35326735433887807130166427" + "33555594751761632643698714", + "29817253953178209722632149", + "38962005919167617437084924" ], "fpReserves": [ - "4846332719019440412844184", - "8222487173131849647590927" + "3311663457333762375197038", + "2059503191474252190168055" ], - "mAssetSupply": "103859979009154657658285389", - "LPTokenSupply": "13029221179805807281549284" + "mAssetSupply": "102329724822712281543718441", + "LPTokenSupply": "5333515830324932957335923" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "206618686326270544838656", - "outputQty0": "206585886396479289574794", - "outputQty": "206516115119592777244595", - "swapFee1": "123971211795762326903", - "swapFee2": "82634354558591715829", + "outputIndex": 0, + "inputQty": "34392424620045545472", + "outputQty0": "34660291658746569807", + "outputQty": "34636403977896188173", + "swapFee1": "20635454772027327", + "swapFee2": "20796174995247941", "mpReserves": [ - "32909121974094704183295777", - "35624338184170528963932269", - "35120219318768214352921832" + "33555560115357654747510541", + "29817253953178209722632149", + "38962005919167617437084924" ], "fpReserves": [ - "4639746832622961123269390", - "8222487173131849647590927" + "3311628797042103628627231", + "2059503191474252190168055" ], - "mAssetSupply": "103653475757112736960426424", - "LPTokenSupply": "12822614890600716312943318" + "mAssetSupply": "102329690183216797792396575", + "LPTokenSupply": "5333481439963858388993183" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "783632062896602301333504", "outputIndex": 2, - "inputQty": "83652510617514112", - "outputQty0": "83629007752874662", - "outputQty": "83600228144193755", - "swapFee1": "50191506370508", - "swapFee2": "33451603101149", + "outputQty": "784941824520554160123811", + "swapFee": "0", + "redemptionFee": "470755167329844685675", "mpReserves": [ - "32909121974094704183295777", - "35624338184170528963932269", - "35120219235167986208728077" + "33555560115357654747510541", + "29817253953178209722632149", + "38177064094647063276961113" ], "fpReserves": [ - "4639746748993953370394728", - "8222487173131849647590927" + "2527036851492362485834657", + "2843135254370854491501559" ], - "mAssetSupply": "103653475673517180810652911", - "LPTokenSupply": "12822614806953224846066256" + "mAssetSupply": "101545568992834386494289676", + "LPTokenSupply": "5333481439963858388993183" }, { "type": "swap_fp_to_mp", - "inputQty": "786552424971675631616", - "outputIndex": 1, - "outputQty": "782919840363509724811", + "inputQty": "199002455945712171483136", + "outputIndex": 2, + "outputQty": "198820054506903849992187", "swapFee": "0", - "redemptionFee": "313261236716010576", + "redemptionFee": "119246685364414978006", "mpReserves": [ - "32909121974094704183295777", - "35623555264330165454207458", - "35120219235167986208728077" + "33555560115357654747510541", + "29817253953178209722632149", + "37978244040140159426968926" ], "fpReserves": [ - "4638963595902163343952802", - "8223273725556821323222543" + "2328292375885004189157517", + "3042137710316566662984695" ], - "mAssetSupply": "103652692833686627500221561", - "LPTokenSupply": "12822614806953224846066256" + "mAssetSupply": "101346943763912392612590542", + "LPTokenSupply": "5333481439963858388993183" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "5736478635514434420736", - "outputQty0": "5736156892326830044421", - "outputQty": "5756400280452637774951", - "swapFee": "4587451154466569669", + "type": "redeem", + "outputIndex": 1, + "inputQty": "205199008196295389085696", + "outputQty0": "206243606999801822591000", + "outputQty": "205893955862081000911756", + "swapFee1": "123119404917777233451", + "swapFee2": "123746164199881093554", "mpReserves": [ - "32909121974094704183295777", - "35623555264330165454207458", - "35125955713803500643148813" + "33555560115357654747510541", + "29611359997316128721720393", + "37978244040140159426968926" ], "fpReserves": [ - "4644699752794490173997223", - "8217517325276368685447592" + "2122048768885202366566517", + "3042137710316566662984695" ], - "mAssetSupply": "103658428990578954330265982", - "LPTokenSupply": "12822615265698340292723222" + "mAssetSupply": "101140823903076790671093096", + "LPTokenSupply": "5128294743708054777630832" }, { - "type": "swap_fp_to_mp", - "inputQty": "3030841143208966144", + "type": "redeem", "outputIndex": 2, - "outputQty": "3016757002347254064", - "swapFee": "0", - "redemptionFee": "1207117752345846", + "inputQty": "49745481674294752", + "outputQty0": "49989483084197621", + "outputQty": "50008735838455196", + "swapFee1": "29847289004576", + "swapFee2": "29993689850518", "mpReserves": [ - "32909121974094704183295777", - "35623555264330165454207458", - "35125952697046498295894749" + "33555560115357654747510541", + "29611359997316128721720393", + "37978243990131423588513730" ], "fpReserves": [ - "4644696735000109309382096", - "8217520356117511894413736" + "2122048718895719282368896", + "3042137710316566662984695" ], - "mAssetSupply": "103658425973991691217996701", - "LPTokenSupply": "12822615265698340292723222" + "mAssetSupply": "101140823853117301276745993", + "LPTokenSupply": "5128294693965557832236537" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "48971932555313217011712", - "outputQty0": "48966865128450061405661", - "outputQty": "48949167848879896803260", + "type": "swap_fp_to_mp", + "inputQty": "226408685953497300992", + "outputIndex": 0, + "outputQty": "225704839539775575787", + "swapFee": "0", + "redemptionFee": "135503798161803494", "mpReserves": [ - "32909121974094704183295777", - "35672527196885478671219170", - "35125952697046498295894749" + "33555334410518114971934754", + "29611359997316128721720393", + "37978243990131423588513730" ], "fpReserves": [ - "4693663600128559370787757", - "8217520356117511894413736" + "2121822879232116276544306", + "3042364119002520160285687" ], - "mAssetSupply": "103707392839120141279402362", - "LPTokenSupply": "12871564433547220189526482" + "mAssetSupply": "101140598148957496432724897", + "LPTokenSupply": "5128294693965557832236537" }, { - "type": "swap_fp_to_mp", - "inputQty": "16355697422642846892032", - "outputIndex": 0, - "outputQty": "16277266822045181317822", - "swapFee": "0", - "redemptionFee": "6514596341185783955", + "type": "mint", + "inputIndex": 0, + "inputQty": "175933262508603146240", + "outputQty0": "175932733399584145433", + "outputQty": "174969062563037638536", "mpReserves": [ - "32892844707272659001977955", - "35672527196885478671219170", - "35125952697046498295894749" + "33555510343780623575080994", + "29611359997316128721720393", + "37978243990131423588513730" ], "fpReserves": [ - "4677377109275594910898411", - "8233876053540154741305768" + "2121998811965515860689739", + "3042364119002520160285687" ], - "mAssetSupply": "103691112862863518005296971", - "LPTokenSupply": "12871564433547220189526482" + "mAssetSupply": "101140774081690896016870330", + "LPTokenSupply": "5128469663028120869875073" }, { "type": "swap_fp_to_mp", - "inputQty": "218000015129559629824", + "inputQty": "117839855947400330870784", "outputIndex": 2, - "outputQty": "216997064826705473912", + "outputQty": "117543835497866411998438", "swapFee": "0", - "redemptionFee": "86828757114798864", + "redemptionFee": "70499709276454366827", "mpReserves": [ - "32892844707272659001977955", - "35672527196885478671219170", - "35125735699981671590420837" + "33555510343780623575080994", + "29611359997316128721720393", + "37860700154633557176515292" ], "fpReserves": [ - "4677160037382807913738110", - "8234094053555284300935592" + "2004499296504758582643853", + "3160203974949920491156471" ], - "mAssetSupply": "103690895877799488122935534", - "LPTokenSupply": "12871564433547220189526482" + "mAssetSupply": "101023345065939415193191271", + "LPTokenSupply": "5128469663028120869875073" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "17896483526174601904128", - "outputQty0": "17891972819252854138616", - "outputQty": "17885795114395049002171", - "swapFee1": "10737890115704761142", - "swapFee2": "7156789127701141655", + "type": "mint", + "inputIndex": 0, + "inputQty": "20424826828796326838272", + "outputQty0": "20424552087571035269000", + "outputQty": "20321471765896838328776", "mpReserves": [ - "32892844707272659001977955", - "35672527196885478671219170", - "35107849904867276541418666" + "33575935170609419901919266", + "29611359997316128721720393", + "37860700154633557176515292" ], "fpReserves": [ - "4659268064563555059599494", - "8234094053555284300935592" + "2024923848592329617912853", + "3160203974949920491156471" ], - "mAssetSupply": "103673011061769362969938573", - "LPTokenSupply": "12853669023810057158098468" + "mAssetSupply": "101043769618026986228460271", + "LPTokenSupply": "5148791134794017708203849" }, { - "type": "swap_fp_to_mp", - "inputQty": "103866355844467965034496", - "outputIndex": 1, - "outputQty": "103372183668687455916544", - "swapFee": "0", - "redemptionFee": "41361162363536196463", + "type": "mint", + "inputIndex": 1, + "inputQty": "7093667583719999799296", + "outputQty0": "7101545508414457043088", + "outputQty": "7065459841499114531989", "mpReserves": [ - "32892844707272659001977955", - "35569155013216791215302626", - "35107849904867276541418666" + "33575935170609419901919266", + "29618453664899848721519689", + "37860700154633557176515292" ], "fpReserves": [ - "4555865158654714568440882", - "8337960409399752265970088" + "2032025394100744074955941", + "3160203974949920491156471" ], - "mAssetSupply": "103569649517022886014976424", - "LPTokenSupply": "12853669023810057158098468" + "mAssetSupply": "101050871163535400685503359", + "LPTokenSupply": "5155856594635516822735838" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "159844304388196007936", - "outputQty0": "159767377960559688002", - "outputQty": "159719408380677265991", - "swapFee1": "95906582632917604", - "swapFee2": "63906951184223875", + "type": "mint", + "inputIndex": 1, + "inputQty": "1321102605832734638080", + "outputQty0": "1322568538313386605353", + "outputQty": "1315834254688282916348", "mpReserves": [ - "32892844707272659001977955", - "35568995293808410538036635", - "35107849904867276541418666" + "33575935170609419901919266", + "29619774767505681456157769", + "37860700154633557176515292" ], "fpReserves": [ - "4555705391276754008752880", - "8337960409399752265970088" + "2033347962639057461561294", + "3160203974949920491156471" ], - "mAssetSupply": "103569489813551876639512297", - "LPTokenSupply": "12853509189096327225382292" + "mAssetSupply": "101052193732073714072108712", + "LPTokenSupply": "5157172428890205105652186" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "2381351354254547222528", - "outputQty0": "2380201068090524916001", - "outputQty": "2379385270003458135031", - "swapFee1": "1428810812552728333", - "swapFee2": "952080427236209966", + "outputIndex": 0, + "inputQty": "18173095678963315900416", + "outputQty0": "18254757271717928385332", + "outputQty": "18244038631705483932143", + "swapFee1": "10903857407377989540", + "swapFee2": "10952854363030757031", "mpReserves": [ - "32892844707272659001977955", - "35568995293808410538036635", - "35105470519597273083283635" + "33557691131977714417987123", + "29619774767505681456157769", + "37860700154633557176515292" ], "fpReserves": [ - "4553325190208663483836879", - "8337960409399752265970088" + "2015093205367339533175962", + "3160203974949920491156471" ], - "mAssetSupply": "103567110564564213350806262", - "LPTokenSupply": "12851127980623153933432597" + "mAssetSupply": "101033949927656359174480411", + "LPTokenSupply": "5139000423596982527550724" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "129189513353377", - "outputQty0": "129176613581097", - "outputQty": "129674741718353", - "swapFee": "103329361054", + "type": "redeem", + "outputIndex": 1, + "inputQty": "29236976666519367680", + "outputQty0": "29367734502301471958", + "outputQty": "29317636946266266484", + "swapFee1": "17542185999911620", + "swapFee2": "17620640701380883", "mpReserves": [ - "32892844707272659001977955", - "35568995293937600051390012", - "35105470519597273083283635" + "33557691131977714417987123", + "29619745449868735189891285", + "37860700154633557176515292" ], "fpReserves": [ - "4553325190337840097417976", - "8337960409270077524251735" + "2015063837632837231704004", + "3160203974949920491156471" ], - "mAssetSupply": "103567110564693389964387359", - "LPTokenSupply": "12851127980623164266368702" + "mAssetSupply": "101033920577542497574389336", + "LPTokenSupply": "5138971188374534608174206" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "7624105238770310184960", - "outputQty0": "7625345494371483647180", - "outputQty": "7654651676457414060969", - "swapFee": "6099539443313452124", + "type": "redeem", + "outputIndex": 1, + "inputQty": "21647041606864968089600", + "outputQty0": "21743249394225940878924", + "outputQty": "21706106174904863894464", + "swapFee1": "12988224964118980853", + "swapFee2": "13045949636535564527", "mpReserves": [ - "32900468812511429312162915", - "35568995293937600051390012", - "35105470519597273083283635" + "33557691131977714417987123", + "29598039343693830325996821", + "37860700154633557176515292" ], "fpReserves": [ - "4560950535832211581065156", - "8330305757593620110190766" + "1993320588238611290825080", + "3160203974949920491156471" ], - "mAssetSupply": "103574735910187761448034539", - "LPTokenSupply": "12851128590577108597713914" + "mAssetSupply": "101012190374097908169074939", + "LPTokenSupply": "5117325445590166051982691" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "379967069556480606208", - "outputQty0": "379929220234824846843", - "outputQty": "381384242716156622427", - "swapFee": "303903033313640018", + "type": "redeem", + "outputIndex": 1, + "inputQty": "2123425747706881", + "outputQty0": "2132808134114732", + "outputQty": "2129159632663722", + "swapFee1": "1274055448624", + "swapFee2": "1279684880468", "mpReserves": [ - "32900468812511429312162915", - "35569375261007156531996220", - "35105470519597273083283635" + "33557691131977714417987123", + "29598039341564670693333099", + "37860700154633557176515292" ], "fpReserves": [ - "4561330465052446405911999", - "8329924373350903953568339" + "1993320586105803156710348", + "3160203974949920491156471" ], - "mAssetSupply": "103575115839407996272881382", - "LPTokenSupply": "12851128620967411929077915" + "mAssetSupply": "101012190371966379719840675", + "LPTokenSupply": "5117325443466867709820672" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1133368977441191936", - "outputQty0": "1133256067066451629", - "outputQty": "1137595390957018651", - "swapFee": "906483992058150", - "mpReserves": [ - "32900468812511429312162915", - "35569376394376133973188156", - "35105470519597273083283635" - ], - "fpReserves": [ - "4561331598308513472363628", - "8329923235755512996549688" - ], - "mAssetSupply": "103575116972664063339333011", - "LPTokenSupply": "12851128621058060328283730" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "86378046580765510074368", - "outputIndex": 1, - "outputQty": "85941045061707106902097", - "swapFee": "0", - "redemptionFee": "34386837761822827830", + "inputIndex": 0, + "inputQty": "718592118283265852309504", + "outputQty0": "718539848002749082900899", + "outputQty": "718839043592033078913857", + "swapFee": "571538112080716988457", "mpReserves": [ - "32900468812511429312162915", - "35483435349314426866286059", - "35105470519597273083283635" + "34276283250260980270296627", + "29598039341564670693333099", + "37860700154633557176515292" ], "fpReserves": [ - "4475364503903956402786156", - "8416301282336278506624056" + "2711860434108552239611247", + "2441364931357887412242614" ], - "mAssetSupply": "103489184265097268092583369", - "LPTokenSupply": "12851128621058060328283730" + "mAssetSupply": "101730730219969128802741574", + "LPTokenSupply": "5117382597278075781519517" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "14981133707737351323648", - "outputQty0": "14980234315308669518969", - "outputQty": "14980944598650048160687", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "27219106562389198241792", + "outputQty0": "27215469592748894404023", + "outputQty": "27172758583313230110614", + "swapFee": "21613435820016887619", "mpReserves": [ - "32900468812511429312162915", - "35483435349314426866286059", - "35120451653305010434607283" + "34303502356823369468538419", + "29598039341564670693333099", + "37860700154633557176515292" ], "fpReserves": [ - "4490344738219265072305125", - "8416301282336278506624056" + "2739075903701301134015270", + "2414192172774574182132000" ], - "mAssetSupply": "103504164499412576762102338", - "LPTokenSupply": "12866109565656710376444417" + "mAssetSupply": "101757945689561877697145597", + "LPTokenSupply": "5117384758621657783208278" }, { - "type": "swap_fp_to_mp", - "inputQty": "61329319783474655133696", - "outputIndex": 2, - "outputQty": "61003110360157713033835", - "swapFee": "0", - "redemptionFee": "24409577952632051170", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "109197646027412750336", + "outputQty0": "109182814535630610893", + "outputQty": "109003655999925650331", + "swapFee": "86703834344241522", "mpReserves": [ - "32900468812511429312162915", - "35483435349314426866286059", - "35059448542944852721573448" + "34303611554469396881288755", + "29598039341564670693333099", + "37860700154633557176515292" ], "fpReserves": [ - "4429320793337684944379103", - "8477630602119753161757752" + "2739185086515836764626163", + "2414083169118574256481669" ], - "mAssetSupply": "103443164964108949266227486", - "LPTokenSupply": "12866109565656710376444417" + "mAssetSupply": "101758054872376413327756490", + "LPTokenSupply": "5117384767292041217632430" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "824149031783517256679424", - "outputQty0": "822877100005194850510515", - "outputQty": "822573258589489697946742", - "swapFee1": "494489419070110354007", - "swapFee2": "329150840002077940204", + "type": "mint", + "inputIndex": 1, + "inputQty": "17422666408466298880", + "outputQty0": "17443275328796825385", + "outputQty": "17314978908187399637", "mpReserves": [ - "32900468812511429312162915", - "35483435349314426866286059", - "34236875284355363023626706" + "34303611554469396881288755", + "29598056764231079159631979", + "37860700154633557176515292" ], "fpReserves": [ - "3606443693332490093868588", - "8477630602119753161757752" + "2739202529791165561451548", + "2414083169118574256481669" ], - "mAssetSupply": "102620617014943756493657175", - "LPTokenSupply": "12042009982815100130800393" + "mAssetSupply": "101758072315651742124581875", + "LPTokenSupply": "5117402082270949405032067" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "568782036661883411365888", - "outputQty0": "568845025412879257875886", - "outputQty": "571928489908515332422518", - "swapFee": "455602691793475019877", + "inputQty": "117961883645739", + "outputQty0": "117945860928311", + "outputQty": "117752284210940", + "swapFee": "93662688237", "mpReserves": [ - "33469250849173312723528803", - "35483435349314426866286059", - "34236875284355363023626706" + "34303611554587358764934494", + "29598056764231079159631979", + "37860700154633557176515292" ], "fpReserves": [ - "4175288718745369351744474", - "7905702112211237829335234" + "2739202529909111422379859", + "2414083169000821972270729" ], - "mAssetSupply": "103189462040356635751533061", - "LPTokenSupply": "12042055543084279478302380" + "mAssetSupply": "101758072315769687985510186", + "LPTokenSupply": "5117402082270958771300890" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "187661676073999430320128", - "outputQty0": "187513151414604877820475", - "outputQty": "187434274400201466895273", - "swapFee1": "112597005644399658192", - "swapFee2": "75005260565841951128", - "mpReserves": [ - "33469250849173312723528803", - "35483435349314426866286059", - "34049441009955161556731433" - ], - "fpReserves": [ - "3987775567330764473923999", - "7905702112211237829335234" - ], - "mAssetSupply": "103002023894202596715663714", - "LPTokenSupply": "11854405126710844487948071" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "145617375805133119553536", - "outputQty0": "145600903932407825570330", - "outputQty": "145632748395679580321098", + "outputIndex": 1, + "inputQty": "45968477700865327628288", + "outputQty0": "46280052850506770204954", + "outputQty": "46197400230274591866009", + "swapFee1": "27581086620519196576", + "swapFee2": "27768031710304062122", "mpReserves": [ - "33469250849173312723528803", - "35629052725119559985839595", - "34049441009955161556731433" + "34303611554587358764934494", + "29551859364000804567765970", + "37860700154633557176515292" ], "fpReserves": [ - "4133376471263172299494329", - "7905702112211237829335234" + "2692922477058604652174905", + "2414083169000821972270729" ], - "mAssetSupply": "103147624798135004541234044", - "LPTokenSupply": "12000037875106524068269169" + "mAssetSupply": "101711820030950891519367354", + "LPTokenSupply": "5071436362678755495592259" }, { "type": "swap_fp_to_mp", - "inputQty": "55393978918080914391040", + "inputQty": "23091294689801923461120", "outputIndex": 1, - "outputQty": "55090943348404882107680", + "outputQty": "23065246993774769468235", "swapFee": "0", - "redemptionFee": "22042641469840776884", + "redemptionFee": "13864015525393091835", "mpReserves": [ - "33469250849173312723528803", - "35573961781771155103731915", - "34049441009955161556731433" + "34303611554587358764934494", + "29528794117007029798297735", + "37860700154633557176515292" ], "fpReserves": [ - "4078269867588570357282391", - "7961096091129318743726274" + "2669815784516282832449829", + "2437174463690623895731849" ], - "mAssetSupply": "103092540237101872439798990", - "LPTokenSupply": "12000037875106524068269169" + "mAssetSupply": "101688727202424095092734113", + "LPTokenSupply": "5071436362678755495592259" }, { - "type": "swap_fp_to_mp", - "inputQty": "151023209572060108947456", - "outputIndex": 2, - "outputQty": "150111559088482648970201", - "swapFee": "0", - "redemptionFee": "60070728806168566434", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1157003530322256723968", + "outputQty0": "1164751719397315190510", + "outputQty": "1162659393432368642984", + "swapFee1": "694202118193354034", + "swapFee2": "698851031638389114", "mpReserves": [ - "33469250849173312723528803", - "35573961781771155103731915", - "33899329450866678907761232" + "34303611554587358764934494", + "29527631457613597429654751", + "37860700154633557176515292" ], "fpReserves": [ - "3928093045573148941195787", - "8112119300701378852673730" + "2668651032796885517259319", + "2437174463690623895731849" ], - "mAssetSupply": "102942423485815257192278820", - "LPTokenSupply": "12000037875106524068269169" + "mAssetSupply": "101687563149555729415932717", + "LPTokenSupply": "5070279428568645058203694" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "71403165043395162800128", - "outputQty0": "71308416145252860696603", - "outputQty": "71273818041349412545658", - "swapFee1": "42841899026037097680", - "swapFee2": "28523366458101144278", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "299888174997946545209344", + "outputQty0": "300237610705727443567228", + "outputQty": "299572140654601971291776", + "swapFee": "238408300485484063670", "mpReserves": [ - "33397977031131963310983145", - "35573961781771155103731915", - "33899329450866678907761232" + "34303611554587358764934494", + "29827519632611543974864095", + "37860700154633557176515292" ], "fpReserves": [ - "3856784629427896080499184", - "8112119300701378852673730" + "2968888643502612960826547", + "2137602323036021924440073" ], - "mAssetSupply": "102871143593036462432726495", - "LPTokenSupply": "11928638994253031509178809" + "mAssetSupply": "101987800760261456859499945", + "LPTokenSupply": "5070303269398693606610061" }, { "type": "swap_fp_to_mp", - "inputQty": "282737450222460352", + "inputQty": "1990989425661230972928", "outputIndex": 1, - "outputQty": "280924251455642416", + "outputQty": "1992057468401919819637", "swapFee": "0", - "redemptionFee": "112401040456022", + "redemptionFee": "1197306161257268261", "mpReserves": [ - "33397977031131963310983145", - "35573961500846903648089499", - "33899329450866678907761232" + "34303611554587358764934494", + "29825527575143142055044458", + "37860700154633557176515292" ], "fpReserves": [ - "3856784348425294940443400", - "8112119583438829075134082" + "2966893133233850847056591", + "2139593312461683155413001" ], - "mAssetSupply": "102871143312146262333126733", - "LPTokenSupply": "11928638994253031509178809" + "mAssetSupply": "101985806447298856002998250", + "LPTokenSupply": "5070303269398693606610061" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "99635086601561696", - "outputQty0": "99495918083139545", - "outputQty": "99452424238628338", - "swapFee1": "59781051960937", - "swapFee2": "39798367233255", + "outputIndex": 0, + "inputQty": "10354985712564557578240", + "outputQty0": "10432456239839081861005", + "outputQty": "10427382362559216107390", + "swapFee1": "6212991427538734546", + "swapFee2": "6259473743903449116", "mpReserves": [ - "33397977031131963310983145", - "35573961500846903648089499", - "33899329351414254669132894" + "34293184172224799548827104", + "29825527575143142055044458", + "37860700154633557176515292" ], "fpReserves": [ - "3856784248929376857303855", - "8112119583438829075134082" + "2956460676994011765195586", + "2139593312461683155413001" ], - "mAssetSupply": "102871143212690142617220443", - "LPTokenSupply": "11928638894623923012813206" + "mAssetSupply": "101975380250532760824586361", + "LPTokenSupply": "5059948904985271802905275" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "6576437604957467648", - "outputQty0": "6575640461338231181", - "outputQty": "6580887098804617278", + "inputQty": "174531435141065211904", + "outputQty0": "174728912424728803321", + "outputQty": "174199166638610998622", + "swapFee": "138662470253593216", "mpReserves": [ - "33397977031131963310983145", - "35573968077284508605557147", - "33899329351414254669132894" + "34293184172224799548827104", + "29825702106578283120256362", + "37860700154633557176515292" ], "fpReserves": [ - "3856790824569838195535036", - "8112119583438829075134082" + "2956635405906436493998907", + "2139419113295044544414379" ], - "mAssetSupply": "102871149788330603955451624", - "LPTokenSupply": "11928645475511021817430484" + "mAssetSupply": "101975554979445185553389682", + "LPTokenSupply": "5059948918851518828264596" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "78798591542881714176", - "outputQty0": "78789039999790445167", - "outputQty": "78851897963895213177", + "inputIndex": 2, + "inputQty": "29432453356041040", + "outputQty0": "29406093614511662", + "outputQty": "29170330172545556", "mpReserves": [ - "33397977031131963310983145", - "35574046875876051487271323", - "33899329351414254669132894" + "34293184172224799548827104", + "29825702106578283120256362", + "37860700184066010532556332" ], "fpReserves": [ - "3856869613609837985980203", - "8112119583438829075134082" + "2956635435312530108510569", + "2139419113295044544414379" ], - "mAssetSupply": "102871228577370603745896791", - "LPTokenSupply": "11928724327408985712643661" + "mAssetSupply": "101975555008851279167901344", + "LPTokenSupply": "5059948948021849000810152" }, { - "type": "swap_fp_to_mp", - "inputQty": "37130372148309644017664", - "outputIndex": 1, - "outputQty": "36889095465429222482219", - "swapFee": "0", - "redemptionFee": "14759769864864773369", + "type": "redeem", + "outputIndex": 2, + "inputQty": "555865864449139297746944", + "outputQty0": "559844302596076191001390", + "outputQty": "559988490210339501349643", + "swapFee1": "333519518669483578648", + "swapFee2": "335906581557645714600", "mpReserves": [ - "33397977031131963310983145", - "35537157780410622264789104", - "33899329351414254669132894" + "34293184172224799548827104", + "29825702106578283120256362", + "37300711693855671031206689" ], "fpReserves": [ - "3819970188947676052556755", - "8149249955587138719151746" + "2396791132716453917509179", + "2139419113295044544414379" ], - "mAssetSupply": "102834343912478306677246712", - "LPTokenSupply": "11928724327408985712643661" + "mAssetSupply": "101416046612836760622614554", + "LPTokenSupply": "4504116435524576651421072" }, { - "type": "swap_fp_to_mp", - "inputQty": "9288867777408256", + "type": "redeem", "outputIndex": 1, - "outputQty": "9227708680913450", - "swapFee": "0", - "redemptionFee": "3692121108262", + "inputQty": "324523607998788563632128", + "outputQty0": "326681115238057442279040", + "outputQty": "326120655229967334941441", + "swapFee1": "194714164799273138179", + "swapFee2": "196008669142834465367", "mpReserves": [ - "33397977031131963310983145", - "35537157771182913583875654", - "33899329351414254669132894" + "34293184172224799548827104", + "29499581451348315785314921", + "37300711693855671031206689" ], "fpReserves": [ - "3819970179717373281900297", - "8149249964876006496560002" + "2070110017478396475230139", + "2139419113295044544414379" ], - "mAssetSupply": "102834343903251696027698516", - "LPTokenSupply": "11928724327408985712643661" + "mAssetSupply": "101089561506267846014800881", + "LPTokenSupply": "4179612298942268015102761" }, { - "type": "swap_fp_to_mp", - "inputQty": "377617468575697792", - "outputIndex": 1, - "outputQty": "375131186402023837", - "swapFee": "0", - "redemptionFee": "150094657253685", - "mpReserves": [ - "33397977031131963310983145", - "35537157396051727181851817", - "33899329351414254669132894" - ], - "fpReserves": [ - "3819969804480730147686972", - "8149250342493475072257794" - ], - "mAssetSupply": "102834343528165147550738876", - "LPTokenSupply": "11928724327408985712643661" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "75994636577384992", - "outputQty0": "75985593760475867", - "outputQty": "76406537897174880", - "swapFee": "60843990619235", + "type": "mint", + "inputIndex": 0, + "inputQty": "2579906784245324972032", + "outputQty0": "2579431070241287317679", + "outputQty": "2561377867666936207308", "mpReserves": [ - "33397977031131963310983145", - "35537157472046363759236809", - "33899329351414254669132894" + "34295764079009044873799136", + "29499581451348315785314921", + "37300711693855671031206689" ], "fpReserves": [ - "3819969880466323908162839", - "8149250266086937175082914" + "2072689448548637762547818", + "2139419113295044544414379" ], - "mAssetSupply": "102834343604150741311214743", - "LPTokenSupply": "11928724327415070111705584" + "mAssetSupply": "101092140937338087302118560", + "LPTokenSupply": "4182173676809934951310069" }, { - "type": "swap_fp_to_mp", - "inputQty": "426513300973705823780864", - "outputIndex": 1, - "outputQty": "423235725630028365916079", - "swapFee": "0", - "redemptionFee": "169344058027051536772", + "type": "redeem", + "outputIndex": 2, + "inputQty": "132176263621925605998592", + "outputQty0": "133013399015080047709243", + "outputQty": "133045159188241047787198", + "swapFee1": "79305758173155363599", + "swapFee2": "79808039409048028625", "mpReserves": [ - "33397977031131963310983145", - "35113921746416335393320730", - "33899329351414254669132894" + "34295764079009044873799136", + "29499581451348315785314921", + "37167666534667429983419491" ], "fpReserves": [ - "3396609735398695066231817", - "8575763567060642998863778" + "1939676049533557714838575", + "2139419113295044544414379" ], - "mAssetSupply": "102411152803141139520820493", - "LPTokenSupply": "11928724327415070111705584" + "mAssetSupply": "100959207346362416302437942", + "LPTokenSupply": "4050005343763826660847836" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "224134121348572496527360", - "outputQty0": "223347943757192722442290", - "outputQty": "223240646530057048490022", - "swapFee1": "134480472809143497916", - "swapFee2": "89339177502877088976", + "type": "mint", + "inputIndex": 0, + "inputQty": "752524764415199469895680", + "outputQty0": "752333781714826921305320", + "outputQty": "746796213845103647329897", "mpReserves": [ - "33174736384601906262493123", - "35113921746416335393320730", - "33899329351414254669132894" + "35048288843424244343694816", + "29499581451348315785314921", + "37167666534667429983419491" ], "fpReserves": [ - "3173261791641502343789527", - "8575763567060642998863778" + "2692009831248384636143895", + "2139419113295044544414379" ], - "mAssetSupply": "102187894198561449675467179", - "LPTokenSupply": "11704603654113778529528015" + "mAssetSupply": "101711541128077243223743262", + "LPTokenSupply": "4796801557608930308177733" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "3419045334602584810323968", - "outputQty0": "3418359499743692403489504", - "outputQty": "3425435499747226747849945", - "swapFee": "2734373618128836628520", + "type": "mint", + "inputIndex": 0, + "inputQty": "23980221988883767754752", + "outputQty0": "23972681601319540213798", + "outputQty": "23784146453333626641327", "mpReserves": [ - "33174736384601906262493123", - "38532967081018920203644698", - "33899329351414254669132894" + "35072269065413128111449568", + "29499581451348315785314921", + "37167666534667429983419491" ], "fpReserves": [ - "6591621291385194747279031", - "5150328067313416251013833" + "2715982512849704176357693", + "2139419113295044544414379" ], - "mAssetSupply": "105606253698305142078956683", - "LPTokenSupply": "11704877091475591413190867" + "mAssetSupply": "101735513809678562763957060", + "LPTokenSupply": "4820585704062263934819060" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "2437673623666867200", - "outputQty0": "2445724686117825585", - "outputQty": "2445471320077964791", - "swapFee1": "1462604174200120", - "swapFee2": "978289874447130", + "inputQty": "155991088228999462912", + "outputQty0": "157135443886723253727", + "outputQty": "156850678257560756324", + "swapFee1": "93594652937399677", + "swapFee2": "94281266332033952", "mpReserves": [ - "33174736384601906262493123", - "38532964635547600125679907", - "33899329351414254669132894" + "35072269065413128111449568", + "29499424600670058224558597", + "37167666534667429983419491" ], "fpReserves": [ - "6591618845660508629453446", - "5150328067313416251013833" + "2715825377405817453103966", + "2139419113295044544414379" ], - "mAssetSupply": "105606251253558745835578228", - "LPTokenSupply": "11704874653948228163743679" + "mAssetSupply": "101735356768515942372737285", + "LPTokenSupply": "4820429722333500229096115" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "4170436829342969888768", - "outputQty0": "4171257849566444087572", - "outputQty": "4160922017327923059324", - "swapFee": "3324022311327703502", + "inputQty": "241581036044940705792", + "outputQty0": "241504617475747181905", + "outputQty": "240921278621100046246", + "swapFee": "191681576770146568", "mpReserves": [ - "33178906821431249232381891", - "38532964635547600125679907", - "33899329351414254669132894" + "35072510646449173052155360", + "29499424600670058224558597", + "37167666534667429983419491" ], "fpReserves": [ - "6595790103510075073541018", - "5146167145296088327954509" + "2716066882023293200285871", + "2139178192016423444368133" ], - "mAssetSupply": "105610422511408312279665800", - "LPTokenSupply": "11704874986350459296514029" + "mAssetSupply": "101735598273133418119919190", + "LPTokenSupply": "4820429741501657906110771" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "6425850315672747245568", - "outputQty0": "6447094244150833927129", - "outputQty": "6443732294576180588304", - "swapFee1": "3855510189403648347", - "swapFee2": "2578837697660333570", + "type": "mint", + "inputIndex": 2, + "inputQty": "2837464186946341", + "outputQty0": "2835270515769655", + "outputQty": "2812931912466439", "mpReserves": [ - "33178906821431249232381891", - "38532964635547600125679907", - "33892885619119678488544590" + "35072510646449173052155360", + "29499424600670058224558597", + "37167666537504894170365832" ], "fpReserves": [ - "6589343009265924239613889", - "5146167145296088327954509" + "2716066884858563716055526", + "2139178192016423444368133" ], - "mAssetSupply": "105603977996001859106072241", - "LPTokenSupply": "11698449521585805489633295" + "mAssetSupply": "101735598275968688635688845", + "LPTokenSupply": "4820429744314589818577210" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "15341518840428230606848", - "outputQty0": "15344524916633355029995", - "outputQty": "15306241451916712159463", - "swapFee": "12227799787741542506", + "type": "redeem", + "outputIndex": 1, + "inputQty": "531718150499016572928", + "outputQty0": "535619004593948744166", + "outputQty": "534648285993427155856", + "swapFee1": "319030890299409943", + "swapFee2": "321371402756369246", "mpReserves": [ - "33194248340271677462988739", - "38532964635547600125679907", - "33892885619119678488544590" + "35072510646449173052155360", + "29498889952384064797402741", + "37167666537504894170365832" ], "fpReserves": [ - "6604687534182557594643884", - "5130860903844171615795046" + "2715531265853969767311360", + "2139178192016423444368133" ], - "mAssetSupply": "105619322520918492461102236", - "LPTokenSupply": "11698450744365784263787545" + "mAssetSupply": "101735062978335497443313925", + "LPTokenSupply": "4819898058067179831945276" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1279421145082016038912", - "outputQty0": "1279042367137583143919", - "outputQty": "1275825048336939478276", - "swapFee": "1019233364686699354", + "inputIndex": 2, + "inputQty": "86668198515024855040", + "outputQty0": "86601189762706883234", + "outputQty": "86392047151228530373", + "swapFee": "68735134142488667", "mpReserves": [ - "33194248340271677462988739", - "38534244056692682141718819", - "33892885619119678488544590" + "35072510646449173052155360", + "29498889952384064797402741", + "37167753205703409195220872" ], "fpReserves": [ - "6605966576549695177787803", - "5129585078795834676316770" + "2715617867043732474194594", + "2139091799969272215837760" ], - "mAssetSupply": "105620601563285630044246155", - "LPTokenSupply": "11698450846289120732457480" + "mAssetSupply": "101735149579525260150197159", + "LPTokenSupply": "4819898064940693246194142" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "49068173134854264", - "outputQty0": "49074175211598125", - "outputQty": "48882253604914936", + "type": "redeem", + "outputIndex": 1, + "inputQty": "345035242567071", + "outputQty0": "347566527769032", + "outputQty": "346936598825481", + "swapFee1": "207021145540", + "swapFee2": "208539916661", "mpReserves": [ - "33194248340271677462988739", - "38534244056692682141718819", - "33892885668187851623398854" + "35072510646449173052155360", + "29498889952037128198577260", + "37167753205703409195220872" ], "fpReserves": [ - "6605966625623870389385928", - "5129585078795834676316770" + "2715617866696165946425562", + "2139091799969272215837760" ], - "mAssetSupply": "105620601612359805255844280", - "LPTokenSupply": "11698450895171374337372416" + "mAssetSupply": "101735149579177902162344788", + "LPTokenSupply": "4819898064595678705741625" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "26587963189872660840448", - "outputQty0": "26676168634070368908305", - "outputQty": "26660262356527667350909", - "swapFee1": "15952777913923596504", - "swapFee2": "10670467453628147563", + "outputIndex": 2, + "inputQty": "1650179876243126091776", + "outputQty0": "1662284513320665917513", + "outputQty": "1662572401225851473040", + "swapFee1": "990107925745875655", + "swapFee2": "997370707992399550", "mpReserves": [ - "33167588077915149795637830", - "38534244056692682141718819", - "33892885668187851623398854" + "35072510646449173052155360", + "29498889952037128198577260", + "37166090633302183343747832" ], "fpReserves": [ - "6579290456989800020477623", - "5129585078795834676316770" + "2713955582182845280508049", + "2139091799969272215837760" ], - "mAssetSupply": "105593936114193188515083538", - "LPTokenSupply": "11671864527259293068891618" + "mAssetSupply": "101733488292035289488826825", + "LPTokenSupply": "4818247983730228154237414" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "12655795683661703168", - "outputQty0": "12652037863953681535", - "outputQty": "12602701788316913237", + "type": "swap_fp_to_mp", + "inputQty": "272765385940573728", + "outputIndex": 2, + "outputQty": "273253137914119282", + "swapFee": "0", + "redemptionFee": "163923512194914", "mpReserves": [ - "33167588077915149795637830", - "38534256712488365803421987", - "33892885668187851623398854" + "35072510646449173052155360", + "29498889952037128198577260", + "37166090360049045429628550" ], "fpReserves": [ - "6579303109027663974159158", - "5129585078795834676316770" + "2713955308976991622317106", + "2139092072734658156411488" ], - "mAssetSupply": "105593948766231052468765073", - "LPTokenSupply": "11671877129961081385804855" + "mAssetSupply": "101733488018993359342830796", + "LPTokenSupply": "4818247983730228154237414" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "25015069723089176625152", - "outputQty0": "25097779004308177035027", - "outputQty": "25095174338066837874540", - "swapFee1": "15009041833853505975", - "swapFee2": "10039111601723270814", + "outputIndex": 0, + "inputQty": "7390689576017536745472", + "outputQty0": "7444865075943457513022", + "outputQty": "7442749573292062585774", + "swapFee1": "4434413745610522047", + "swapFee2": "4466919045566074507", "mpReserves": [ - "33167588077915149795637830", - "38509161538150298965547447", - "33892885668187851623398854" + "35065067896875880989569586", + "29498889952037128198577260", + "37166090360049045429628550" ], "fpReserves": [ - "6554205330023355797124131", - "5129585078795834676316770" + "2706510443901048164804084", + "2139092072734658156411488" ], - "mAssetSupply": "105568861026338346015000860", - "LPTokenSupply": "11646863561142175594530300" + "mAssetSupply": "101726047620836461451392281", + "LPTokenSupply": "4810857737595585178544146" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1127340481538346029416448", - "outputQty0": "1130736422518118204666963", - "outputQty": "1130583444308826674797584", - "swapFee1": "676404288923007617649", - "swapFee2": "452294569007247281866", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "75000797577576684978176", + "outputQty0": "74976711532655992181673", + "outputQty": "74780551071350984795133", + "swapFee": "59506814116799916917", "mpReserves": [ - "33167588077915149795637830", - "37378578093841472290749863", - "33892885668187851623398854" + "35140068694453457674547762", + "29498889952037128198577260", + "37166090360049045429628550" ], "fpReserves": [ - "5423468907505237592457168", - "5129585078795834676316770" + "2781487155433704156985757", + "2064311521663307171616355" ], - "mAssetSupply": "104438576898389235057615763", - "LPTokenSupply": "10519590720032721865875616" + "mAssetSupply": "101801024332369117443573954", + "LPTokenSupply": "4810863688276996858535837" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1433494902820872388608", - "outputQty0": "1437449580303542834077", - "outputQty": "1436750951589175777826", - "swapFee1": "860096941692523433", - "swapFee2": "574979832121417133", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "264191143612294791168", + "outputQty0": "264104768296364021221", + "outputQty": "263353295546240553388", + "swapFee": "209577509954791835", "mpReserves": [ - "33167588077915149795637830", - "37378578093841472290749863", - "33891448917236262447621028" + "35140332885597069969338930", + "29498889952037128198577260", + "37166090360049045429628550" ], "fpReserves": [ - "5422031457924934049623091", - "5129585078795834676316770" + "2781751260202000521006978", + "2064048168367760931062967" ], - "mAssetSupply": "104437140023788763636198819", - "LPTokenSupply": "10518157311139595162739351" + "mAssetSupply": "101801288437137413807595175", + "LPTokenSupply": "4810863709234747854015020" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "63953367835771431550976", - "outputQty0": "63963512898020730454959", - "outputQty": "63748079142575137208229", + "inputIndex": 2, + "inputQty": "17876953415949150584832", + "outputQty0": "17863200222418766919562", + "outputQty": "17718750067121075459532", "mpReserves": [ - "33231541445750921227188806", - "37378578093841472290749863", - "33891448917236262447621028" + "35140332885597069969338930", + "29498889952037128198577260", + "37183967313464994580213382" ], "fpReserves": [ - "5485994970822954780078050", - "5129585078795834676316770" + "2799614460424419287926540", + "2064048168367760931062967" ], - "mAssetSupply": "104501103536686784366653778", - "LPTokenSupply": "10581905390282170299947580" + "mAssetSupply": "101819151637359832574514737", + "LPTokenSupply": "4828582459301868929474552" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "151349523208533966848", - "outputQty0": "151772741696223842842", - "outputQty": "151698636868339944063", - "swapFee1": "90809713925120380", - "swapFee2": "60709096678489537", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "7359037083050004447232", + "outputQty0": "7356636204094169477393", + "outputQty": "7335182874717394222071", + "swapFee": "5837634808803685059", "mpReserves": [ - "33231541445750921227188806", - "37378578093841472290749863", - "33891297218599394107676965" + "35147691922680119973786162", + "29498889952037128198577260", + "37183967313464994580213382" ], "fpReserves": [ - "5485843198081258556235208", - "5129585078795834676316770" + "2806971096628513457403933", + "2056712985493043536840896" ], - "mAssetSupply": "104500951824654184821300473", - "LPTokenSupply": "10581754049839933158492770" + "mAssetSupply": "101826508273563926743992130", + "LPTokenSupply": "4828583043065349809843057" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "169402722341276415426560", - "outputQty0": "169867829757464722699887", - "outputQty": "169838395993014588665044", - "swapFee1": "101641633404765849255", - "swapFee2": "67947131902985889079", + "inputQty": "115296067260350424154112", + "outputQty0": "116162158707614396834291", + "outputQty": "115949128499926936310924", + "swapFee1": "69177640356210254492", + "swapFee2": "69697295224568638100", "mpReserves": [ - "33231541445750921227188806", - "37208739697848457702084819", - "33891297218599394107676965" + "35147691922680119973786162", + "29382940823537201262266336", + "37183967313464994580213382" ], "fpReserves": [ - "5315975368323793833535321", - "5129585078795834676316770" + "2690808937920899060569642", + "2056712985493043536840896" ], - "mAssetSupply": "104331151942028623084489665", - "LPTokenSupply": "10412361491661997219651135" + "mAssetSupply": "101710415812151536915795939", + "LPTokenSupply": "4713293893569035006714394" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "103442486465520753180672", - "outputQty0": "103718759637609328593404", - "outputQty": "103668297402557106485200", - "swapFee1": "62065491879312451908", - "swapFee2": "41487503855043731437", + "type": "swap_fp_to_mp", + "inputQty": "11321866089997757579264", + "outputIndex": 1, + "outputQty": "11321281016630951786409", + "swapFee": "0", + "redemptionFee": "6805346802083372836", "mpReserves": [ - "33231541445750921227188806", - "37208739697848457702084819", - "33787628921196837001191765" + "35147691922680119973786162", + "29371619542520570310479927", + "37183967313464994580213382" ], "fpReserves": [ - "5212256608686184504941917", - "5129585078795834676316770" + "2679466693250760105841618", + "2068034851583041294420160" ], - "mAssetSupply": "104227474669894868799627698", - "LPTokenSupply": "10308925211745664397715653" + "mAssetSupply": "101699080372828200044440751", + "LPTokenSupply": "4713293893569035006714394" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "337209471883734784", - "outputQty0": "338100970643311530", - "outputQty": "338041854459343842", - "swapFee1": "202325683130240", - "swapFee2": "135240388257324", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "249706767058126239694848", + "outputQty0": "250012323180668878355426", + "outputQty": "249168040672516306973172", + "swapFee": "198387955614144942597", "mpReserves": [ - "33231541445750921227188806", - "37208739359806603242740977", - "33787628921196837001191765" + "35147691922680119973786162", + "29621326309578696550174775", + "37183967313464994580213382" ], "fpReserves": [ - "5212256270585213861630387", - "5129585078795834676316770" + "2929479016431428984197044", + "1818866810910524987446988" ], - "mAssetSupply": "104227474331929138544573492", - "LPTokenSupply": "10308924874556425082293893" + "mAssetSupply": "101949092696008868922796177", + "LPTokenSupply": "4713313732364596421208653" }, { - "type": "swap_fp_to_mp", - "inputQty": "19801311406701397671936", - "outputIndex": 1, - "outputQty": "19799432416395556479784", - "swapFee": "0", - "redemptionFee": "7921162383602919774", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "194629189394732920340480", + "outputQty0": "194478832666871299626160", + "outputQty": "193495470470869105675970", + "swapFee": "154213538071351956070", "mpReserves": [ - "33231541445750921227188806", - "37188939927390207686261193", - "33787628921196837001191765" + "35147691922680119973786162", + "29621326309578696550174775", + "37378596502859727500553862" ], "fpReserves": [ - "5192453364626206562192934", - "5149386390202536073988706" + "3123957849098300283823204", + "1625371340439655881771018" ], - "mAssetSupply": "104207679347132514848055813", - "LPTokenSupply": "10308924874556425082293893" + "mAssetSupply": "102143571528675740222422337", + "LPTokenSupply": "4713329153718403556404260" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "663437114512524110200832", - "outputQty0": "665023681267552703492400", - "outputQty": "664894089702748862596715", - "swapFee1": "398062268707514466120", - "swapFee2": "266009472507021081396", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1701658760236984434688", + "outputQty0": "1703722839241305488611", + "outputQty": "1693609842025848526293", + "swapFee": "1350261971508252884", "mpReserves": [ - "33231541445750921227188806", - "36524045837687458823664478", - "33787628921196837001191765" + "35147691922680119973786162", + "29623027968338933534609463", + "37378596502859727500553862" ], "fpReserves": [ - "4527429683358653858700534", - "5149386390202536073988706" + "3125661571937541589311815", + "1623677730597630033244725" ], - "mAssetSupply": "103542921675337469165644809", - "LPTokenSupply": "9645527566270771723539673" + "mAssetSupply": "102145275251514981527910948", + "LPTokenSupply": "4713329288744600707229548" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "298601052861687404691456", - "outputQty0": "298635511465540553824653", - "outputQty": "297771868231735682672065", + "inputIndex": 2, + "inputQty": "1679004810555227635712", + "outputQty0": "1677685076608565092879", + "outputQty": "1662022654919419719233", "mpReserves": [ - "33530142498612608631880262", - "36524045837687458823664478", - "33787628921196837001191765" + "35147691922680119973786162", + "29623027968338933534609463", + "37380275507670282728189574" ], "fpReserves": [ - "4826065194824194412525187", - "5149386390202536073988706" + "3127339257014150154404694", + "1623677730597630033244725" ], - "mAssetSupply": "103841557186803009719469462", - "LPTokenSupply": "9943299434502507406211738" + "mAssetSupply": "102146952936591590093003827", + "LPTokenSupply": "4714991311399520126948781" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "5301193199910281216", "outputIndex": 2, - "inputQty": "3774991280454572703744", - "outputQty0": "3784080159323622741251", - "outputQty": "3782267523012769659435", - "swapFee1": "2264994768272743622", - "swapFee2": "1513632063729449096", + "outputQty": "5329649226696445091", + "swapFee": "0", + "redemptionFee": "3197193949730682", "mpReserves": [ - "33530142498612608631880262", - "36524045837687458823664478", - "33783846653673824231532330" + "35147691922680119973786162", + "29623027968338933534609463", + "37380270178021056031744483" ], "fpReserves": [ - "4822281114664870789783936", - "5149386390202536073988706" + "3127333928357567269934474", + "1623683031790829943525941" ], - "mAssetSupply": "103837774620275749826177307", - "LPTokenSupply": "9939524669721529660782356" + "mAssetSupply": "102146947611132201158264289", + "LPTokenSupply": "4714991311399520126948781" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "34338699595907380281344", - "outputQty0": "34420912075607947571986", - "outputQty": "34413192166647133852853", - "swapFee1": "20603219757544428168", - "swapFee2": "13768364830243179028", + "type": "mint", + "inputIndex": 0, + "inputQty": "9747296311797558018048", + "outputQty0": "9744352837773056257604", + "outputQty": "9653318365544918757798", "mpReserves": [ - "33530142498612608631880262", - "36489632645520811689811625", - "33783846653673824231532330" + "35157439218991917531804210", + "29623027968338933534609463", + "37380270178021056031744483" ], "fpReserves": [ - "4787860202589262842211950", - "5149386390202536073988706" + "3137078281195340326192078", + "1623683031790829943525941" ], - "mAssetSupply": "103803367476564972121784349", - "LPTokenSupply": "9905188030447598034943828" + "mAssetSupply": "102156691963969974214521893", + "LPTokenSupply": "4724644629765065045706579" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5197660413257189425152", - "outputQty0": "5198199560750202222616", - "outputQty": "5182717143531609188046", + "inputIndex": 1, + "inputQty": "161569996384284545384448", + "outputQty0": "161763204648666777197182", + "outputQty": "160236129923785234563935", "mpReserves": [ - "33535340159025865821305414", - "36489632645520811689811625", - "33783846653673824231532330" + "35157439218991917531804210", + "29784597964723218079993911", + "37380270178021056031744483" ], "fpReserves": [ - "4793058402150013044434566", - "5149386390202536073988706" + "3298841485844007103389260", + "1623683031790829943525941" ], - "mAssetSupply": "103808565676125722324006965", - "LPTokenSupply": "9910370747591129644131874" + "mAssetSupply": "102318455168618640991719075", + "LPTokenSupply": "4884880759688850280270514" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "36945357827378935496704", - "outputQty0": "36938867672928815196900", - "outputQty": "36925056732003126300471", - "swapFee": "29462633283129659276", + "inputIndex": 2, + "inputQty": "662439732937315975168", + "outputQty0": "661929018430221424547", + "outputQty": "657603582777088928389", + "swapFee": "524495437002841978", "mpReserves": [ - "33535340159025865821305414", - "36526578003348190625308329", - "33783846653673824231532330" + "35157439218991917531804210", + "29784597964723218079993911", + "37380932617753993347719651" ], "fpReserves": [ - "4829997269822941859631466", - "5112461333470532947688235" + "3299503414862437324813807", + "1623025428208052854597552" ], - "mAssetSupply": "103845504543798651139203865", - "LPTokenSupply": "9910373693854457957097801" + "mAssetSupply": "102319117097637071213143622", + "LPTokenSupply": "4884880812138393980554711" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "27650074078890342481920", - "outputQty0": "27645165067892307558955", - "outputQty": "27561024051818533282572", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "242535481923968860160", + "outputQty0": "242348481552351993098", + "outputQty": "240763702157871171716", + "swapFee": "192030259931661974", "mpReserves": [ - "33535340159025865821305414", - "36554228077427080967790249", - "33783846653673824231532330" + "35157439218991917531804210", + "29784597964723218079993911", + "37381175153235917316579811" ], "fpReserves": [ - "4857642434890834167190421", - "5112461333470532947688235" + "3299745763343989676806905", + "1622784664505894983425836" ], - "mAssetSupply": "103873149708866543446762820", - "LPTokenSupply": "9937934717906276490380373" + "mAssetSupply": "102319359446118623565136720", + "LPTokenSupply": "4884880831341419973720908" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3889060494079204786176", - "outputQty0": "3889470626162549841693", - "outputQty": "3877589620321537677839", + "type": "redeem", + "outputIndex": 1, + "inputQty": "30650449147223318528", + "outputQty0": "30926951847696477401", + "outputQty": "30872030165988057429", + "swapFee1": "18390269488333991", + "swapFee2": "18556171108617886", "mpReserves": [ - "33539229219519945026091590", - "36554228077427080967790249", - "33783846653673824231532330" + "35157439218991917531804210", + "29784567092693052091936482", + "37381175153235917316579811" ], "fpReserves": [ - "4861531905516996717032114", - "5112461333470532947688235" + "3299714836392141980329504", + "1622784664505894983425836" ], - "mAssetSupply": "103877039179492705996604513", - "LPTokenSupply": "9941812307526598028058212" + "mAssetSupply": "102319328537722946977277205", + "LPTokenSupply": "4884850182731299699235779" }, { "type": "mint", "inputIndex": 2, - "inputQty": "17795900252356980736", - "outputQty0": "17797331626953280997", - "outputQty": "17742942564567041019", + "inputQty": "125743349520772871749632", + "outputQty0": "125645300730935993639899", + "outputQty": "124438384782499538831123", "mpReserves": [ - "33539229219519945026091590", - "36554228077427080967790249", - "33783864449574076588513066" + "35157439218991917531804210", + "29784567092693052091936482", + "37506918502756690188329443" ], "fpReserves": [ - "4861549702848623670313111", - "5112461333470532947688235" + "3425360137123077973969403", + "1622784664505894983425836" ], - "mAssetSupply": "103877056976824332949885510", - "LPTokenSupply": "9941830050469162595099231" + "mAssetSupply": "102444973838453882970917104", + "LPTokenSupply": "5009288567513799238066902" }, { "type": "swap_fp_to_mp", - "inputQty": "110462057594704256", + "inputQty": "314134518128491364352", "outputIndex": 0, - "outputQty": "110369416826374649", + "outputQty": "315985115467235704495", "swapFee": "0", - "redemptionFee": "44170084643153", + "redemptionFee": "189652023897653993", "mpReserves": [ - "33539229109150528199716941", - "36554228077427080967790249", - "33783864449574076588513066" + "35157123233876450296099715", + "29784567092693052091936482", + "37506918502756690188329443" ], "fpReserves": [ - "4861549592423412062429672", - "5112461443932590542392491" + "3425044050416581883980071", + "1623098799024023474790188" ], - "mAssetSupply": "103877056866443291426645224", - "LPTokenSupply": "9941830050469162595099231" + "mAssetSupply": "102444657941399410778581765", + "LPTokenSupply": "5009288567513799238066902" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "1163022607734525526016", - "outputQty0": "1165887305578682857593", - "outputQty": "1165628647044380468073", - "swapFee1": "697813564640715315", - "swapFee2": "466354922231473143", + "outputIndex": 2, + "inputQty": "555933165599016878080", + "outputQty0": "561027358069045413116", + "outputQty": "561133159019648831626", + "swapFee1": "333559899359410126", + "swapFee2": "336616414841427247", "mpReserves": [ - "33539229109150528199716941", - "36553062448780036587322176", - "33783864449574076588513066" + "35157123233876450296099715", + "29784567092693052091936482", + "37506357369597670539497817" ], "fpReserves": [ - "4860383705117833379572079", - "5112461443932590542392491" + "3424483023058512838566955", + "1623098799024023474790188" ], - "mAssetSupply": "103875891445492634975260774", - "LPTokenSupply": "9940667097642784533644746" + "mAssetSupply": "102444097250657756574595896", + "LPTokenSupply": "5008732667704190157129834" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "59093485480982249472", - "outputQty0": "59239019856952736403", - "outputQty": "59209090089507633687", - "swapFee1": "35456091288589349", - "swapFee2": "23695607942781094", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "177396103636748", + "outputQty0": "177256245107555", + "outputQty": "176021205611785", + "swapFee": "140433116039", "mpReserves": [ - "33539169900060438692083254", - "36553062448780036587322176", - "33783864449574076588513066" + "35157123233876450296099715", + "29784567092693052091936482", + "37506357369775066643134565" ], "fpReserves": [ - "4860324466097976426835676", - "5112461443932590542392491" + "3424483023235769083674510", + "1623098798848002269178403" ], - "mAssetSupply": "103875832230168385965305465", - "LPTokenSupply": "9940608007702912680254208" + "mAssetSupply": "102444097250835012819703451", + "LPTokenSupply": "5008732667704204200441437" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "520076459744732051931136", - "outputQty0": "521255961564461447198131", - "outputQty": "521132385525932562835754", - "swapFee1": "312045875846839231158", - "swapFee2": "208502384625784578879", + "type": "swap_fp_to_mp", + "inputQty": "500661871668389570674688", + "outputIndex": 0, + "outputQty": "502489115607845118944287", + "swapFee": "0", + "redemptionFee": "301602199878455909772", "mpReserves": [ - "33539169900060438692083254", - "36031930063254104024486422", - "33783864449574076588513066" + "34654634118268605177155428", + "29784567092693052091936482", + "37506357369775066643134565" ], "fpReserves": [ - "4339068504533514979637545", - "5112461443932590542392491" + "2921812690105009234053864", + "2123760670516391839853091" ], - "mAssetSupply": "103354784770988550302686213", - "LPTokenSupply": "9420562752545765312246187" + "mAssetSupply": "101941728519904131425992577", + "LPTokenSupply": "5008732667704204200441437" }, { "type": "mint", "inputIndex": 1, - "inputQty": "564730907362111", - "outputQty0": "564647512871224", - "outputQty": "563131867527377", + "inputQty": "44303554512695888", + "outputQty0": "44354175886954120", + "outputQty": "43989486530239863", "mpReserves": [ - "33539169900060438692083254", - "36031930063818834931848533", - "33783864449574076588513066" + "34654634118268605177155428", + "29784567136996606604632370", + "37506357369775066643134565" ], "fpReserves": [ - "4339068505098162492508769", - "5112461443932590542392491" + "2921812734459185121007984", + "2123760670516391839853091" ], - "mAssetSupply": "103354784771553197815557437", - "LPTokenSupply": "9420562753108897179773564" + "mAssetSupply": "101941728564258307312946697", + "LPTokenSupply": "5008732711693690730681300" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "198091006143764768", - "outputQty0": "198061753805973354", - "outputQty": "198120789485825917", - "swapFee": "158024087955198", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1055047924877633650688", + "outputQty0": "1063155781601064228697", + "outputQty": "1063394627697118454371", + "swapFee1": "633028754926580190", + "swapFee2": "637893468960638537", "mpReserves": [ - "33539169900060438692083254", - "36031930261909841075613301", - "33783864449574076588513066" + "34654634118268605177155428", + "29784567136996606604632370", + "37505293975147369524680194" ], "fpReserves": [ - "4339068703159916298482123", - "5112461245811801056566574" + "2920749578677584056779287", + "2123760670516391839853091" ], - "mAssetSupply": "103354784969614951621530791", - "LPTokenSupply": "9420562753124699588569083" + "mAssetSupply": "101940666046370175209356537", + "LPTokenSupply": "5007677727071688589688631" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "75452231150951546880", - "outputQty0": "75609912007434300528", - "outputQty": "75590830463299378778", - "swapFee1": "45271338690570928", - "swapFee2": "30243964802973720", + "outputIndex": 0, + "inputQty": "17698297877880786386944", + "outputQty0": "17834126027301081479402", + "outputQty": "17826969948996533450413", + "swapFee1": "10618978726728471832", + "swapFee2": "10700475616380648887", "mpReserves": [ - "33539169900060438692083254", - "36031854671079377776234523", - "33783864449574076588513066" + "34636807148319608643705015", + "29784567136996606604632370", + "37505293975147369524680194" ], "fpReserves": [ - "4338993093247908864181595", - "5112461245811801056566574" + "2902915452650282975299885", + "2123760670516391839853091" ], - "mAssetSupply": "103354709389946908990203983", - "LPTokenSupply": "9420487305420682506079295" + "mAssetSupply": "101922842620818490508526022", + "LPTokenSupply": "4989980491091680476148870" }, { - "type": "swap_fp_to_mp", - "inputQty": "1573934107251612319744", - "outputIndex": 1, - "outputQty": "1571805692889134551170", - "swapFee": "0", - "redemptionFee": "628881017399273933", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "2090988392129493467136", + "outputQty0": "2090575259595274266694", + "outputQty": "2084393944687598396559", + "swapFee": "1658737555679318991", "mpReserves": [ - "33539169900060438692083254", - "36030282865386488641683353", - "33783864449574076588513066" + "34638898136711738137172151", + "29784567136996606604632370", + "37505293975147369524680194" ], "fpReserves": [ - "4337420890704410679346700", - "5114035179919052668886318" + "2905006027909878249566579", + "2121676276571704241456532" ], - "mAssetSupply": "103353137816284428204643021", - "LPTokenSupply": "9420487305420682506079295" + "mAssetSupply": "101924933196078085782792716", + "LPTokenSupply": "4989980656965436044080769" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1927707399727150006272", - "outputQty0": "1927830613328020058477", - "outputQty": "1922659170610350674674", + "inputIndex": 0, + "inputQty": "423762420603805892608", + "outputQty0": "423678610325467570721", + "outputQty": "420200299657714769250", "mpReserves": [ - "33539169900060438692083254", - "36030282865386488641683353", - "33785792156973803738519338" + "34639321899132341943064759", + "29784567136996606604632370", + "37505293975147369524680194" ], "fpReserves": [ - "4339348721317738699405177", - "5114035179919052668886318" + "2905429706520203717137300", + "2121676276571704241456532" ], - "mAssetSupply": "103355065646897756224701498", - "LPTokenSupply": "9422409964591292856753969" + "mAssetSupply": "101925356874688411250363437", + "LPTokenSupply": "4990400857265093758850019" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1341267731151129673728", - "outputQty0": "1341069823410785102948", - "outputQty": "1337470513059626096726", + "inputQty": "22324396049290842079232", + "outputQty0": "22349815283074183808401", + "outputQty": "22166054991277195218042", "mpReserves": [ - "33539169900060438692083254", - "36031624133117639771357081", - "33785792156973803738519338" + "34639321899132341943064759", + "29806891533045897446711602", + "37505293975147369524680194" ], "fpReserves": [ - "4340689791141149484508125", - "5114035179919052668886318" + "2927779521803277900945701", + "2121676276571704241456532" ], - "mAssetSupply": "103356406716721167009804446", - "LPTokenSupply": "9423747435104352482850695" + "mAssetSupply": "101947706689971485434171838", + "LPTokenSupply": "5012566912256370954068061" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "12121288731075599663104", - "outputQty0": "12146560328848825789800", - "outputQty": "12140921023376416277991", - "swapFee1": "7272773238645359797", - "swapFee2": "4858624131539530315", + "type": "mint", + "inputIndex": 0, + "inputQty": "2838822738126905528025088", + "outputQty0": "2837654952929955059281103", + "outputQty": "2810579497823370656845322", "mpReserves": [ - "33539169900060438692083254", - "36031624133117639771357081", - "33773651235950427322241347" + "37478144637259247471089847", + "29806891533045897446711602", + "37505293975147369524680194" ], "fpReserves": [ - "4328543230812300658718325", - "5114035179919052668886318" + "5765434474733232960226804", + "2121676276571704241456532" ], - "mAssetSupply": "103344265015016449723544961", - "LPTokenSupply": "9411626873650600747723570" + "mAssetSupply": "104785361642901440493452941", + "LPTokenSupply": "7823146410079741610913383" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "368807676720799692095488", - "outputQty0": "368835695869502972497831", - "outputQty": "368757557509709092005080", - "swapFee": "294235066079769736467", + "type": "mint", + "inputIndex": 1, + "inputQty": "35745731244094560141312", + "outputQty0": "35795521209618941311650", + "outputQty": "35410492402516844177839", "mpReserves": [ - "33907977576781238384178742", - "36031624133117639771357081", - "33773651235950427322241347" + "37478144637259247471089847", + "29842637264289992006852914", + "37505293975147369524680194" ], "fpReserves": [ - "4697378926681803631216156", - "4745277622409343576881238" + "5801229995942851901538454", + "2121676276571704241456532" ], - "mAssetSupply": "103713100710885952696042792", - "LPTokenSupply": "9411656297157208724697216" + "mAssetSupply": "104821157164111059434764591", + "LPTokenSupply": "7858556902482258455091222" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "243082812501449024", - "outputQty0": "243728922523493946", - "outputQty": "243664645452095968", - "swapFee1": "145849687500869", - "swapFee2": "97491569009397", + "type": "swap_fp_to_mp", + "inputQty": "9728433150964293632", + "outputIndex": 0, + "outputQty": "9825860895146710253", + "swapFee": "0", + "redemptionFee": "5895425177946267", "mpReserves": [ - "33907977576781238384178742", - "36031623889452994319261113", - "33773651235950427322241347" + "37478134811398352324379594", + "29842637264289992006852914", + "37505293975147369524680194" ], "fpReserves": [ - "4697378682952881107722210", - "4745277622409343576881238" + "5801220170234221991092113", + "2121686005004855205750164" ], - "mAssetSupply": "103713100467254521741558243", - "LPTokenSupply": "9411656054088981191998278" + "mAssetSupply": "104821147344297854702264517", + "LPTokenSupply": "7858556902482258455091222" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "518320166517628731392", - "outputQty0": "518360108247184396828", - "outputQty": "517979845651120117532", - "swapFee": "413340545461608630", + "inputQty": "22556031155655550173184", + "outputQty0": "22541984513236472910532", + "outputQty": "22298985831319141688651", "mpReserves": [ - "33907977576781238384178742", - "36031623889452994319261113", - "33774169556116944950972739" + "37478134811398352324379594", + "29842637264289992006852914", + "37527850006303025074853378" ], "fpReserves": [ - "4697897043061128292119038", - "4744759642563692456763706" + "5823762154747458464002645", + "2121686005004855205750164" ], - "mAssetSupply": "103713618827362768925955071", - "LPTokenSupply": "9411656095423035738159141" + "mAssetSupply": "104843689328811091175175049", + "LPTokenSupply": "7880855888313577596779873" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "34379730663529", - "outputQty0": "34471137951933", - "outputQty": "34455157971297", - "swapFee1": "20627838398", - "swapFee2": "13788455180", + "inputQty": "690689649502119", + "outputQty0": "697803776704007", + "outputQty": "697813516478434", + "swapFee1": "414413789701", + "swapFee2": "418682266022", "mpReserves": [ - "33907977576746783226207445", - "36031623889452994319261113", - "33774169556116944950972739" + "37478134810700538807901160", + "29842637264289992006852914", + "37527850006303025074853378" ], "fpReserves": [ - "4697897043026657154167105", - "4744759642563692456763706" + "5823762154049654687298638", + "2121686005004855205750164" ], - "mAssetSupply": "103713618827328311576458318", - "LPTokenSupply": "9411656095388658070279451" + "mAssetSupply": "104843689328113706080737064", + "LPTokenSupply": "7880855887622929388656724" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "5087743425074664833024", - "outputQty0": "5087049219317102292010", - "outputQty": "5083277457768367752547", - "swapFee": "4056405278730045197", + "inputIndex": 2, + "inputQty": "532144775113409363968", + "outputQty0": "531812521591226737647", + "outputQty": "526088876633902398566", + "swapFee": "420859784891748208", "mpReserves": [ - "33907977576746783226207445", - "36036711632878068984094137", - "33774169556116944950972739" + "37478134810700538807901160", + "29842637264289992006852914", + "37528382151078138484217346" ], "fpReserves": [ - "4702984092245974256459115", - "4739676365105924089011159" + "5824293966571245914036285", + "2121159916128221303351598" ], - "mAssetSupply": "103718705876547628678750328", - "LPTokenSupply": "9411656501029185943283970" + "mAssetSupply": "104844221140635297307474711", + "LPTokenSupply": "7880855929708907877831544" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "313773861790985232580608", + "outputQty0": "313571050070821213478595", + "outputQty": "309562425963444287411715", + "swapFee": "248118348487069866393", + "mpReserves": [ + "37478134810700538807901160", + "29842637264289992006852914", + "37842156012869123716797954" + ], + "fpReserves": [ + "6137865016642067127514880", + "1811597490164777015939883" + ], + "mAssetSupply": "105157792190706118520953306", + "LPTokenSupply": "7880880741543756584818183" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "65742062690158346240", - "outputQty0": "65917351075978481929", - "outputQty": "65899985775729971082", - "swapFee1": "39445237614095007", - "swapFee2": "26366940430391392", + "inputQty": "221792496766279038795776", + "outputQty0": "224305722606027861862629", + "outputQty": "223847593135128215439134", + "swapFee1": "133075498059767423277", + "swapFee2": "134583433563616717117", + "mpReserves": [ + "37478134810700538807901160", + "29618789671154863791413780", + "37842156012869123716797954" + ], + "fpReserves": [ + "5913559294036039265652251", + "1811597490164777015939883" + ], + "mAssetSupply": "104933621051533654275807794", + "LPTokenSupply": "7659101552327283522764734" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "47827080585902712422400", + "outputQty0": "47897187821371534131758", + "outputQty": "47196005810793769303957", + "swapFee": "37868211158734394621", "mpReserves": [ - "33907977576746783226207445", - "36036645732892293254123055", - "33774169556116944950972739" + "37478134810700538807901160", + "29666616751740766503836180", + "37842156012869123716797954" ], "fpReserves": [ - "4702918174894898277977186", - "4739676365105924089011159" + "5961456481857410799784009", + "1764401484353983246635926" ], - "mAssetSupply": "103718639985563493130659791", - "LPTokenSupply": "9411590762911019546347230" + "mAssetSupply": "104981518239355025809939552", + "LPTokenSupply": "7659105339148399396204196" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "506495092247650063351808", - "outputQty0": "506518900867072265599444", - "outputQty": "504782930033218821045519", + "inputIndex": 2, + "inputQty": "287377201653043", + "outputQty0": "287180543391279", + "outputQty": "283761571962391", "mpReserves": [ - "34414472668994433289559253", - "36036645732892293254123055", - "33774169556116944950972739" + "37478134810700538807901160", + "29666616751740766503836180", + "37842156013156500918450997" ], "fpReserves": [ - "5209437075761970543576630", - "4739676365105924089011159" + "5961456482144591343175288", + "1764401484353983246635926" ], - "mAssetSupply": "104225158886430565396259235", - "LPTokenSupply": "9916373692944238367392749" + "mAssetSupply": "104981518239642206353330831", + "LPTokenSupply": "7659105339432160968166587" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "23497677503524", - "outputQty0": "23494840219124", - "outputQty": "23461302346601", - "swapFee": "18728414007", + "inputQty": "1297858509224079509159936", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "857982553148733915136", + "outputQty0": "867798815817150816283", + "outputQty": "867806347165331191429", + "swapFee1": "514789531889240349", + "swapFee2": "520679289490290489", "mpReserves": [ - "34414472668994433289559253", - "36036645732915790931626579", - "33774169556116944950972739" + "37477267004353373476709731", + "29666616751740766503836180", + "37842156013156500918450997" ], "fpReserves": [ - "5209437075785465383795754", - "4739676365082462786664558" + "5960588683328774192359005", + "1764401484353983246635926" ], - "mAssetSupply": "104225158886454060236478359", - "LPTokenSupply": "9916373692944240240234149" + "mAssetSupply": "104980650961505678692805037", + "LPTokenSupply": "7658247408357965423175485" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "648082203527059521667072", - "outputQty0": "647991569219403840880322", - "outputQty": "646477909591655762366008", - "swapFee": "516435119949509943078", + "type": "redeem", + "outputIndex": 1, + "inputQty": "58037199352387600384", + "outputQty0": "58701186198550797394", + "outputQty": "58580426889331825509", + "swapFee1": "34822319611432560", + "swapFee2": "35220711719130478", "mpReserves": [ - "34414472668994433289559253", - "36684727936442850453293651", - "33774169556116944950972739" + "37477267004353373476709731", + "29666558171313877172010671", + "37842156013156500918450997" ], "fpReserves": [ - "5857428645004869224676076", - "4093198455490807024298550" + "5960529982142575641561611", + "1764401484353983246635926" ], - "mAssetSupply": "104873150455673464077358681", - "LPTokenSupply": "9916425336456235191228456" + "mAssetSupply": "104980592295540191861138121", + "LPTokenSupply": "7658189374640844996718357" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "1322070718875420327936", + "outputQty0": "1337195261366460897665", + "outputQty": "1337206665432149424889", + "swapFee1": "793242431325252196", + "swapFee2": "802317156819876538", + "mpReserves": [ + "37475929797687941327284842", + "29666558171313877172010671", + "37842156013156500918450997" + ], + "fpReserves": [ + "5959192786881209180663946", + "1764401484353983246635926" + ], + "mAssetSupply": "104979255902595982220116994", + "LPTokenSupply": "7656867383246212708915640" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3119135686223823634432", - "outputQty0": "3118640135810976678055", - "outputQty": "3104719077110261910115", + "inputQty": "17228933253089507328", + "outputQty0": "17254088744678695006", + "outputQty": "17048707661263905114", "mpReserves": [ - "34414472668994433289559253", - "36687847072129074276928083", - "33774169556116944950972739" + "37475929797687941327284842", + "29666575400247130261517999", + "37842156013156500918450997" ], "fpReserves": [ - "5860547285140680201354131", - "4093198455490807024298550" + "5959210040969953859358952", + "1764401484353983246635926" ], - "mAssetSupply": "104876269095809275054036736", - "LPTokenSupply": "9919530055533345453138571" + "mAssetSupply": "104979273156684726898812000", + "LPTokenSupply": "7656884431953873972820754" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "15060806974947853336576", - "outputQty0": "15119210965803134048631", - "outputQty": "15111422962180986238451", - "swapFee1": "9036484184968712001", - "swapFee2": "6047684386321253619", + "outputIndex": 0, + "inputQty": "6155029753998456389632", + "outputQty0": "6225421714814978471619", + "outputQty": "6225471472097682288987", + "swapFee1": "3693017852399073833", + "swapFee2": "3735253028888987082", "mpReserves": [ - "34414472668994433289559253", - "36687847072129074276928083", - "33759058133154763964734288" + "37469704326215843644995855", + "29666575400247130261517999", + "37842156013156500918450997" ], "fpReserves": [ - "5845428074174877067305500", - "4093198455490807024298550" + "5952984619255138880887333", + "1764401484353983246635926" ], - "mAssetSupply": "104861155932527858241241724", - "LPTokenSupply": "9904470152206816096673195" + "mAssetSupply": "104973051470222940809327463", + "LPTokenSupply": "7650729771501660756338505" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "45275066826225698734080", - "outputQty0": "45280234436018104084349", - "outputQty": "45077852858111445253186", + "type": "swap_fp_to_mp", + "inputQty": "313722376202968658608128", + "outputIndex": 1, + "outputQty": "316811651299709994839332", + "swapFee": "0", + "redemptionFee": "190485791929790305310", "mpReserves": [ - "34414472668994433289559253", - "36687847072129074276928083", - "33804333199980989663468368" + "37469704326215843644995855", + "29349763748947420266678667", + "37842156013156500918450997" ], "fpReserves": [ - "5890708308610895171389849", - "4093198455490807024298550" + "5635508299372155038702559", + "2078123860556951905244054" ], - "mAssetSupply": "104906436166963876345326073", - "LPTokenSupply": "9949548005064927541926381" + "mAssetSupply": "104655765636131886757447999", + "LPTokenSupply": "7650729771501660756338505" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "24878163611660782141440", - "outputQty0": "24975000101651040434880", - "outputQty": "24962178240584311363645", - "swapFee1": "14926898166996469284", - "swapFee2": "9990000040660416173", + "outputIndex": 1, + "inputQty": "12943803908669852090368", + "outputQty0": "13076948431512618113492", + "outputQty": "13049061159736149988584", + "swapFee1": "7766282345201911254", + "swapFee2": "7846169058907570868", "mpReserves": [ - "34414472668994433289559253", - "36687847072129074276928083", - "33779371021740405352104723" + "37469704326215843644995855", + "29336714687787684116690083", + "37842156013156500918450997" ], "fpReserves": [ - "5865733308509244130954969", - "4093198455490807024298550" + "5622431350940642420589067", + "2078123860556951905244054" ], - "mAssetSupply": "104881471156862265965307366", - "LPTokenSupply": "9924671334143083459431869" + "mAssetSupply": "104642696533869433046905375", + "LPTokenSupply": "7637786744221225424439262" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1276131332757864579072", - "outputQty0": "1276196008296138956854", - "outputQty": "1270491446486850555141", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "198931026173533815308288", + "outputQty0": "198785980354049942521715", + "outputQty": "196455243701150353874709", + "swapFee": "157302875131705125306", + "mpReserves": [ + "37469704326215843644995855", + "29336714687787684116690083", + "38041087039330034733759285" + ], + "fpReserves": [ + "5821217331294692363110782", + "1881668616855801551369345" + ], + "mAssetSupply": "104841482514223482989427090", + "LPTokenSupply": "7637802474508738594951792" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1116527776730115840", + "outputQty0": "1115698341003825296", + "outputQty": "1101132907007309467", + "swapFee": "882340868321002", "mpReserves": [ - "34415748800327191154138325", - "36687847072129074276928083", - "33779371021740405352104723" + "37469704326215843644995855", + "29336714687787684116690083", + "38041088155857811463875125" ], "fpReserves": [ - "5867009504517540269911823", - "4093198455490807024298550" + "5821218446993033366936078", + "1881667515722894544059878" ], - "mAssetSupply": "104882747352870562104264220", - "LPTokenSupply": "9925941825589570309987010" + "mAssetSupply": "104841483629921823993252386", + "LPTokenSupply": "7637802474596972681783892" }, { "type": "swap_fp_to_mp", - "inputQty": "133473908895783009124352", - "outputIndex": 1, - "outputQty": "133749023200623135616044", + "inputQty": "398653576884286698553344", + "outputIndex": 2, + "outputQty": "402640320389693733854032", "swapFee": "0", - "redemptionFee": "53512728278425359827", + "redemptionFee": "241556396855158064489", "mpReserves": [ - "34415748800327191154138325", - "36554098048928451141312039", - "33779371021740405352104723" + "37469704326215843644995855", + "29336714687787684116690083", + "37638447835468117730021093" ], "fpReserves": [ - "5733227683821476870344021", - "4226672364386590033422902" + "5418624452234436592787558", + "2280321092607181242613222" ], - "mAssetSupply": "104749019044902777130056245", - "LPTokenSupply": "9925941825589570309987010" + "mAssetSupply": "104439131191560082377168355", + "LPTokenSupply": "7637802474596972681783892" }, { - "type": "swap_fp_to_mp", - "inputQty": "5153826874577792270336", + "type": "redeem", "outputIndex": 1, - "outputQty": "5163321272556679383457", - "swapFee": "0", - "redemptionFee": "2065843303777219727", + "inputQty": "11647131924673847099392", + "outputQty0": "11760267678722294082042", + "outputQty": "11735375579276490957863", + "swapFee1": "6988279154804308259", + "swapFee2": "7056160607233376449", "mpReserves": [ - "34415748800327191154138325", - "36548934727655894461928582", - "33779371021740405352104723" + "37469704326215843644995855", + "29324979312208407625732220", + "37638447835468117730021093" ], "fpReserves": [ - "5728063075562033821024407", - "4231826191261167825693238" + "5406864184555714298705516", + "2280321092607181242613222" ], - "mAssetSupply": "104743856502486637857956358", - "LPTokenSupply": "9925941825589570309987010" + "mAssetSupply": "104427377980041967316462762", + "LPTokenSupply": "7626156041500214315115325" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "43504496386965189427200", - "outputQty0": "43506451151072201728594", - "outputQty": "43378359787132553255213", - "swapFee": "34655430034979643748", + "inputIndex": 2, + "inputQty": "194699488265052192768", + "outputQty0": "194565520601859061734", + "outputQty": "192917146252878207822", + "swapFee": "154063087040798638", "mpReserves": [ - "34459253296714156343565525", - "36548934727655894461928582", - "33779371021740405352104723" + "37469704326215843644995855", + "29324979312208407625732220", + "37638642534956382782213861" ], "fpReserves": [ - "5771569526713106022753001", - "4188447831474035272438025" + "5407058750076316157767250", + "2280128175460928364405400" ], - "mAssetSupply": "104787362953637710059684952", - "LPTokenSupply": "9925945291132573807951384" + "mAssetSupply": "104427572545562569175524496", + "LPTokenSupply": "7626156056906523019195188" }, { "type": "swap_fp_to_mp", - "inputQty": "1428999735863083520", + "inputQty": "3617392832318526717952", "outputIndex": 0, - "outputQty": "1431533115385190804", + "outputQty": "3645520154967690239327", "swapFee": "0", - "redemptionFee": "572867308293464", + "redemptionFee": "2187196764555336565", "mpReserves": [ - "34459251865181040958374721", - "36548934727655894461928582", - "33779371021740405352104723" + "37466058806060875954756528", + "29324979312208407625732220", + "37638642534956382782213861" ], "fpReserves": [ - "5771568094544835289090834", - "4188449260473771135521545" + "5403413422135390596824384", + "2283745568293246891123352" ], - "mAssetSupply": "104787361522042306634316249", - "LPTokenSupply": "9925945291132573807951384" + "mAssetSupply": "104423929404818408169918195", + "LPTokenSupply": "7626156056906523019195188" }, { - "type": "swap_fp_to_mp", - "inputQty": "8667620030513928994816", - "outputIndex": 1, - "outputQty": "8684542821428876635957", - "swapFee": "0", - "redemptionFee": "3474689063738253436", + "type": "mint", + "inputIndex": 0, + "inputQty": "36846450640203976540160", + "outputQty0": "36822315025975220335951", + "outputQty": "36446139711456993924778", "mpReserves": [ - "34459251865181040958374721", - "36540250184834465585292625", - "33779371021740405352104723" + "37502905256701079931296688", + "29324979312208407625732220", + "37638642534956382782213861" ], "fpReserves": [ - "5762881371885489655498484", - "4197116880504285064516361" + "5440235737161365817160335", + "2283745568293246891123352" ], - "mAssetSupply": "104778678274072024738977335", - "LPTokenSupply": "9925945291132573807951384" + "mAssetSupply": "104460751719844383390254146", + "LPTokenSupply": "7662602196617980013119966" }, { - "type": "swap_fp_to_mp", - "inputQty": "502003266278657106116608", - "outputIndex": 0, - "outputQty": "502502719464731492015594", - "swapFee": "0", - "redemptionFee": "201093541801681241916", + "type": "mint", + "inputIndex": 1, + "inputQty": "36113916698571030134784", + "outputQty0": "36168811661607422492871", + "outputQty": "35798298532068528897949", + "mpReserves": [ + "37502905256701079931296688", + "29361093228906978655867004", + "37638642534956382782213861" + ], + "fpReserves": [ + "5476404548822973239653206", + "2283745568293246891123352" + ], + "mAssetSupply": "104496920531505990812747017", + "LPTokenSupply": "7698400495150048542017915" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "45531945673328615424", + "outputQty0": "45600960431961444222", + "outputQty": "45133190756390763476", "mpReserves": [ - "33956749145716309466359127", - "36540250184834465585292625", - "33779371021740405352104723" + "37502905256701079931296688", + "29361138760852651984482428", + "37638642534956382782213861" ], "fpReserves": [ - "5260147517381286550706319", - "4699120146782942170632969" + "5476450149783405201097428", + "2283745568293246891123352" ], - "mAssetSupply": "104276145513109623315427086", - "LPTokenSupply": "9925945291132573807951384" + "mAssetSupply": "104496966132466422774191239", + "LPTokenSupply": "7698445628340804932781391" }, { "type": "mint", "inputIndex": 0, - "inputQty": "56821978115174538674176", - "outputQty0": "56826215023582442227502", - "outputQty": "56615050395225738257819", + "inputQty": "117622397461774987165696", + "outputQty0": "117544469973912174585303", + "outputQty": "116333418541353392407741", "mpReserves": [ - "34013571123831484005033303", - "36540250184834465585292625", - "33779371021740405352104723" + "37620527654162854918462384", + "29361138760852651984482428", + "37638642534956382782213861" ], "fpReserves": [ - "5316973732404868992933821", - "4699120146782942170632969" + "5593994619757317375682731", + "2283745568293246891123352" ], - "mAssetSupply": "104332971728133205757654588", - "LPTokenSupply": "9982560341527799546209203" + "mAssetSupply": "104614510602440334948776542", + "LPTokenSupply": "7814779046882158325189132" }, { "type": "swap_fp_to_mp", - "inputQty": "5000323837792931020800", - "outputIndex": 0, - "outputQty": "5002042050258194054996", + "inputQty": "8456071771510375710720", + "outputIndex": 2, + "outputQty": "8525802414063721014525", "swapFee": "0", - "redemptionFee": "2001763250446641906", + "redemptionFee": "5115102995556007379", "mpReserves": [ - "34008569081781225810978307", - "36540250184834465585292625", - "33779371021740405352104723" + "37620527654162854918462384", + "29361138760852651984482428", + "37630116732542319061199336" ], "fpReserves": [ - "5311969324278752388166517", - "4704120470620735101653769" + "5585469448098057363384149", + "2292201640064757266834072" ], - "mAssetSupply": "104327969321770339599529190", - "LPTokenSupply": "9982560341527799546209203" + "mAssetSupply": "104605990545884070492485339", + "LPTokenSupply": "7814779046882158325189132" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "821745605175476488241152", + "hardLimitError": true }, { "type": "redeem", "outputIndex": 1, - "inputQty": "26213697854904169660416", - "outputQty0": "26295756993623087617688", - "outputQty": "26289499140380176014679", - "swapFee1": "15728218712942501796", - "swapFee2": "10518302797449235047", + "inputQty": "1320834023070034900811776", + "outputQty0": "1333115522843764035435556", + "outputQty": "1330067793939975367340715", + "swapFee1": "792500413842020940487", + "swapFee2": "799869313706258421261", "mpReserves": [ - "34008569081781225810978307", - "36513960685694085409277946", - "33779371021740405352104723" + "37620527654162854918462384", + "28031070966912676617141713", + "37630116732542319061199336" ], "fpReserves": [ - "5285673567285129300548829", - "4704120470620735101653769" + "4252353925254293327948593", + "2292201640064757266834072" ], - "mAssetSupply": "104301684083079513961146549", - "LPTokenSupply": "9956348216494766670798966" + "mAssetSupply": "103273674892354012715471044", + "LPTokenSupply": "6494024273853507626471404" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "40647120637442440298496", - "outputQty0": "40773598395442283604634", - "outputQty": "40763815606619882519074", - "swapFee1": "24388272382465464179", - "swapFee2": "16309439358176913441", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "14437896986407821377536", + "outputQty0": "14426350362669370063611", + "outputQty": "14345378264107339946081", + "swapFee": "11432717969330934152", "mpReserves": [ - "34008569081781225810978307", - "36473196870087465526758872", - "33779371021740405352104723" + "37634965551149262739839920", + "28031070966912676617141713", + "37630116732542319061199336" ], "fpReserves": [ - "5244899968889687016944195", - "4704120470620735101653769" + "4266780275616962698012204", + "2277856261800649926887991" ], - "mAssetSupply": "104260926794123429854455356", - "LPTokenSupply": "9915703534684562477046887" + "mAssetSupply": "103288101242716682085534655", + "LPTokenSupply": "6494025417125304559564819" }, { "type": "mint", + "inputIndex": 2, + "inputQty": "18557655147192000512", + "outputQty0": "18542813571049453172", + "outputQty": "18368159711287308807", + "mpReserves": [ + "37634965551149262739839920", + "28031070966912676617141713", + "37630135290197466253199848" + ], + "fpReserves": [ + "4266798818430533747465376", + "2277856261800649926887991" + ], + "mAssetSupply": "103288119785530253134987827", + "LPTokenSupply": "6494043785285015846873626" + }, + { + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "11952250547447904862208", - "outputQty0": "11953093287761501150504", - "outputQty": "11908942956733338896975", + "inputQty": "15578325616817262821376", + "outputQty0": "15565834232886986961275", + "outputQty": "15476873776132150168331", + "swapFee": "12335295977827217096", "mpReserves": [ - "34020521332328673715840515", - "36473196870087465526758872", - "33779371021740405352104723" + "37650543876766080002661296", + "28031070966912676617141713", + "37630135290197466253199848" ], "fpReserves": [ - "5256853062177448518094699", - "4704120470620735101653769" + "4282364652663420734426651", + "2262379388024517776719660" ], - "mAssetSupply": "104272879887411191355605860", - "LPTokenSupply": "9927612477641295815943862" + "mAssetSupply": "103303685619763140121949102", + "LPTokenSupply": "6494045018814613629595335" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "3501489298952116240384", - "outputQty0": "3512370746927415980267", - "outputQty": "3510719250106139242160", - "swapFee1": "2100893579371269744", - "swapFee2": "1404948298770966392", + "type": "mint", + "inputIndex": 2, + "inputQty": "232486968848569281282048", + "outputQty0": "232297502382457908221258", + "outputQty": "230078237357010079796694", "mpReserves": [ - "34017010613078567576598355", - "36473196870087465526758872", - "33779371021740405352104723" + "37650543876766080002661296", + "28031070966912676617141713", + "37862622259046035534481896" ], "fpReserves": [ - "5253340691430521102114432", - "4704120470620735101653769" + "4514662155045878642647909", + "2262379388024517776719660" ], - "mAssetSupply": "104269368921612562710591985", - "LPTokenSupply": "9924111198431701636830452" + "mAssetSupply": "103535983122145598030170360", + "LPTokenSupply": "6724123256171623709392029" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "19781728465156791336960", - "outputQty0": "19843066858322232779432", - "outputQty": "19833246677563000233801", - "swapFee1": "11869037079094074802", - "swapFee2": "7937226743328893111", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "404863668511760449536", + "outputQty0": "404527155891585823302", + "outputQty": "401965471893289026360", + "swapFee": "320499131072152508", + "mpReserves": [ + "37650543876766080002661296", + "28031070966912676617141713", + "37863027122714547294931432" + ], + "fpReserves": [ + "4515066682201770228471211", + "2261977422552624487693300" + ], + "mAssetSupply": "103536387649301489615993662", + "LPTokenSupply": "6724123288221536816607279" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "23181568022323461619712", + "outputQty0": "23162262108967954545548", + "outputQty": "23013583056888918696456", + "swapFee": "18350826769747650445", "mpReserves": [ - "34017010613078567576598355", - "36473196870087465526758872", - "33759537775062842351870922" + "37650543876766080002661296", + "28031070966912676617141713", + "37886208690736870756551144" ], "fpReserves": [ - "5233497624572198869335000", - "4704120470620735101653769" + "4538228944310738183016759", + "2238963839495735568996844" ], - "mAssetSupply": "104249533791980983806705664", - "LPTokenSupply": "9904330656870252754900972" + "mAssetSupply": "103559549911410457570539210", + "LPTokenSupply": "6724125123304213791372323" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2847954518984069120", + "outputQty0": "2853332292524291567", + "outputQty": "2834772144102370496", + "swapFee": "2260503645651771", + "mpReserves": [ + "37650543876766080002661296", + "28031073814867195601210833", + "37886208690736870756551144" + ], + "fpReserves": [ + "4538231797643030707308326", + "2238961004723591466626348" + ], + "mAssetSupply": "103559552764742750094830777", + "LPTokenSupply": "6724125123530264155937500" }, { "type": "mint", "inputIndex": 1, - "inputQty": "455428987292113436672", - "outputQty0": "455356439071888609637", - "outputQty": "453678662175652260353", + "inputQty": "1448761770184716845056", + "outputQty0": "1451497177432931919217", + "outputQty": "1437403856271652454123", "mpReserves": [ - "34017010613078567576598355", - "36473652299074757640195544", - "33759537775062842351870922" + "37650543876766080002661296", + "28032522576637380318055889", + "37886208690736870756551144" ], "fpReserves": [ - "5233952981011270757944637", - "4704120470620735101653769" + "4539683294820463639227543", + "2238961004723591466626348" ], - "mAssetSupply": "104249989148420055695315301", - "LPTokenSupply": "9904784335532428407161325" + "mAssetSupply": "103561004261920183026749994", + "LPTokenSupply": "6725562527386535808391623" }, { - "type": "swap_fp_to_mp", - "inputQty": "14370300685880404213760", - "outputIndex": 1, - "outputQty": "14376761389626084011978", - "swapFee": "0", - "redemptionFee": "5752091657564660933", + "type": "mint", + "inputIndex": 1, + "inputQty": "100916057637984382484480", + "outputQty0": "101105226005672924354248", + "outputQty": "100119310566121041487940", "mpReserves": [ - "34017010613078567576598355", - "36459275537685131556183566", - "33759537775062842351870922" + "37650543876766080002661296", + "28133438634275364700540369", + "37886208690736870756551144" ], "fpReserves": [ - "5219572751867359105611806", - "4718490771306615505867529" + "4640788520826136563581791", + "2238961004723591466626348" ], - "mAssetSupply": "104235614671367801607643403", - "LPTokenSupply": "9904784335532428407161325" + "mAssetSupply": "103662109487925855951104242", + "LPTokenSupply": "6825681837952656849879563" }, { "type": "swap_fp_to_mp", - "inputQty": "894950356991844", + "inputQty": "52072807624133408980992", "outputIndex": 2, - "outputQty": "895107840090742", + "outputQty": "52386479838136639319669", "swapFee": "0", - "redemptionFee": "358220500151", + "redemptionFee": "31424946635133715485", "mpReserves": [ - "34017010613078567576598355", - "36459275537685131556183566", - "33759537774167734511780180" + "37650543876766080002661296", + "28133438634275364700540369", + "37833822210898734117231475" ], "fpReserves": [ - "5219572750971807855232931", - "4718490772201565862859373" + "4588413609767580371106473", + "2291033812347724875607340" ], - "mAssetSupply": "104235614670472608577764679", - "LPTokenSupply": "9904784335532428407161325" + "mAssetSupply": "103609766001813934892344409", + "LPTokenSupply": "6825681837952656849879563" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1582305527059101777920", - "outputQty0": "1582054702793572638753", - "outputQty": "1579725007702908066211", - "swapFee": "1261002953189350632", + "type": "swap_fp_to_mp", + "inputQty": "17676846140187764", + "outputIndex": 1, + "outputQty": "17732378222261369", + "swapFee": "0", + "redemptionFee": "10665573130486", "mpReserves": [ - "34017010613078567576598355", - "36460857843212190657961486", - "33759537774167734511780180" + "37650543876766080002661296", + "28133438616542986478279000", + "37833822210898734117231475" ], "fpReserves": [ - "5221154805674601427871684", - "4716911047193862954793162" + "4588413591991625153628352", + "2291033830024571015795104" ], - "mAssetSupply": "104237196725175402150403432", - "LPTokenSupply": "9904784461632723726096388" + "mAssetSupply": "103609765984048645247996774", + "LPTokenSupply": "6825681837952656849879563" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "24596177965382024", - "outputQty0": "24671927131377136", - "outputQty": "24665969503439562", - "swapFee1": "14757706779229", - "swapFee2": "9868770852550", + "type": "mint", + "inputIndex": 2, + "inputQty": "248387271749011572260864", + "outputQty0": "248180046303525476800098", + "outputQty": "245756910528376336947175", "mpReserves": [ - "34017010613078567576598355", - "36460857818546221154521924", - "33759537774167734511780180" + "37650543876766080002661296", + "28133438616542986478279000", + "38082209482647745689492339" ], "fpReserves": [ - "5221154781002674296494548", - "4716911047193862954793162" + "4836593638295150630428450", + "2291033830024571015795104" ], - "mAssetSupply": "104237196700513343789878846", - "LPTokenSupply": "9904784437038021531392286" + "mAssetSupply": "103857946030352170724796872", + "LPTokenSupply": "7071438748481033186826738" }, { - "type": "swap_fp_to_mp", - "inputQty": "6384420258331727872", + "type": "redeem", "outputIndex": 1, - "outputQty": "6387191490477322758", - "swapFee": "0", - "redemptionFee": "2555493681846621", + "inputQty": "24646298124916", + "outputQty0": "24876849708641", + "outputQty": "24815260654765", + "swapFee1": "14787778874", + "swapFee2": "14926109825", "mpReserves": [ - "34017010613078567576598355", - "36460851431354730677199166", - "33759537774167734511780180" + "37650543876766080002661296", + "28133438616518171217624235", + "38082209482647745689492339" ], "fpReserves": [ - "5221148392268469679940279", - "4716917431614121286521034" + "4836593638270273780719809", + "2291033830024571015795104" ], - "mAssetSupply": "104237190314334632855171198", - "LPTokenSupply": "9904784437038021531392286" + "mAssetSupply": "103857946030327308801198056", + "LPTokenSupply": "7071438748456388367479709" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "36611782338306240", "outputIndex": 0, - "inputQty": "108434747250082775040", - "outputQty0": "108768690636037778247", - "outputQty": "108717649164392342116", - "swapFee1": "65060848350049665", - "swapFee2": "43507476254415111", + "outputQty": "36845437928687476", + "swapFee": "0", + "redemptionFee": "22103659627779", "mpReserves": [ - "34016901895429403184256239", - "36460851431354730677199166", - "33759537774167734511780180" + "37650543839920642073973820", + "28133438616518171217624235", + "38082209482647745689492339" ], "fpReserves": [ - "5221039623577833642162032", - "4716917431614121286521034" + "4836593601430841067754004", + "2291033866636353354101344" ], - "mAssetSupply": "104237081589151473071808062", - "LPTokenSupply": "9904676008796856283622212" + "mAssetSupply": "103857945993509979747860030", + "LPTokenSupply": "7071438748456388367479709" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "125781390264216174592", "outputIndex": 2, - "inputQty": "2032432704985023643648", - "outputQty0": "2038690606417044431887", - "outputQty": "2037680964301741710800", - "swapFee1": "1219459622991014186", - "swapFee2": "815476242566817772", + "outputQty": "126595283066210402861", + "swapFee": "0", + "redemptionFee": "75938059090260788", "mpReserves": [ - "34016901895429403184256239", - "36460851431354730677199166", - "33757500093203432770069380" + "37650543839920642073973820", + "28133438616518171217624235", + "38082082887364679479089478" ], "fpReserves": [ - "5219000932971416597730145", - "4716917431614121286521034" + "4836467037999023966440180", + "2291159648026617570275936" ], - "mAssetSupply": "104235043714021298594193947", - "LPTokenSupply": "9902643698037833559079982" + "mAssetSupply": "103857819506016221736806994", + "LPTokenSupply": "7071438748456388367479709" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3626788140223346688", - "outputQty0": "3626212816928236429", - "outputQty": "3612914700132618127", + "type": "swap_fp_to_mp", + "inputQty": "88441711402190660173824", + "outputIndex": 0, + "outputQty": "88976149644283099355418", + "swapFee": "0", + "redemptionFee": "53377322421033983311", "mpReserves": [ - "34016901895429403184256239", - "36460855058142870900545854", - "33757500093203432770069380" + "37561567690276358974618402", + "28133438616518171217624235", + "38082082887364679479089478" ], "fpReserves": [ - "5219004559184233525966574", - "4716917431614121286521034" + "4747504833963967327588090", + "2379601359428808230449760" ], - "mAssetSupply": "104235047340234115522430376", - "LPTokenSupply": "9902647310952533691698109" + "mAssetSupply": "103768910679303586131938215", + "LPTokenSupply": "7071438748456388367479709" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "34196921845855377424384", - "outputQty0": "34199250476657062359039", - "outputQty": "34147329226176846400712", - "swapFee": "27258783767059885529", + "inputQty": "258370079211637717336064", + "outputQty0": "258171515644434070687542", + "outputQty": "256284281677523636338255", + "swapFee": "204523527900245561963", "mpReserves": [ - "34051098817275258561680623", - "36460855058142870900545854", - "33757500093203432770069380" + "37819937769487996691954466", + "28133438616518171217624235", + "38082082887364679479089478" ], "fpReserves": [ - "5253203809660890588325613", - "4682770102387944440120322" + "5005676349608401398275632", + "2123317077751284594111505" ], - "mAssetSupply": "104269246590710772584789415", - "LPTokenSupply": "9902650036830910397686661" + "mAssetSupply": "104027082194948020202625757", + "LPTokenSupply": "7071459200809178392035905" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "9938404380888981831680", + "outputQty0": "9957245363528103657245", + "outputQty": "9854376160580194141204", + "mpReserves": [ + "37819937769487996691954466", + "28143377020899060199455915", + "38082082887364679479089478" + ], + "fpReserves": [ + "5015633594971929501932877", + "2123317077751284594111505" + ], + "mAssetSupply": "104037039440311548306283002", + "LPTokenSupply": "7081313576969758586177109" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "432632263035295232", - "outputQty0": "433984236559809881", - "outputQty": "433768783458314793", - "swapFee1": "259579357821177", - "swapFee2": "173593694623923", + "outputIndex": 1, + "inputQty": "1321530832140088784191488", + "outputQty0": "1333766867985032230130622", + "outputQty": "1330202698827223214309479", + "swapFee1": "792918499284053270514", + "swapFee2": "800260120791019338078", "mpReserves": [ - "34051098817275258561680623", - "36460855058142870900545854", - "33757499659434649311754587" + "37819937769487996691954466", + "26813174322071836985146436", + "38082082887364679479089478" ], "fpReserves": [ - "5253203375676654028515732", - "4682770102387944440120322" + "3681866726986897271802255", + "2123317077751284594111505" ], - "mAssetSupply": "104269246156900129719603457", - "LPTokenSupply": "9902649604224605298173546" + "mAssetSupply": "102704072832447307095490458", + "LPTokenSupply": "5759862036679598207312672" }, { "type": "mint", "inputIndex": 0, - "inputQty": "15586459671114274", - "outputQty0": "15587503276782989", - "outputQty": "15529620793906514", + "inputQty": "163906989690219266048", + "outputQty0": "163756029686030340459", + "outputQty": "162232312895348352196", "mpReserves": [ - "34051098832861718232794897", - "36460855058142870900545854", - "33757499659434649311754587" + "37820101676477686911220514", + "26813174322071836985146436", + "38082082887364679479089478" ], "fpReserves": [ - "5253203391264157305298721", - "4682770102387944440120322" + "3682030483016583302142714", + "2123317077751284594111505" ], - "mAssetSupply": "104269246172487632996386446", - "LPTokenSupply": "9902649619754226092080060" + "mAssetSupply": "102704236588476993125830917", + "LPTokenSupply": "5760024268992493555664868" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "199195280455175503872", "outputIndex": 1, - "inputQty": "1845411096183028842496", - "outputQty0": "1851176960576620961278", - "outputQty": "1850727999976627198974", - "swapFee1": "1107246657709817305", - "swapFee2": "740470784230648384", + "outputQty": "199446061487126191626", + "swapFee": "0", + "redemptionFee": "120011090741017363", "mpReserves": [ - "34051098832861718232794897", - "36459004330142894273346880", - "33757499659434649311754587" + "37820101676477686911220514", + "26812974876010349858954810", + "38082082887364679479089478" ], "fpReserves": [ - "5251352214303580684337443", - "4682770102387944440120322" + "3681830464532014939869875", + "2123516273031739769615377" ], - "mAssetSupply": "104267395735997840606073552", - "LPTokenSupply": "9900804319382708834219294" + "mAssetSupply": "102704036690003515504575441", + "LPTokenSupply": "5760024268992493555664868" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "25898928852295365951488", - "outputQty0": "25901403910158733798644", - "outputQty": "25805046580411772595205", + "type": "swap_fp_to_mp", + "inputQty": "204670336866994115051520", + "outputIndex": 2, + "outputQty": "205453691084543479142062", + "swapFee": "0", + "redemptionFee": "123227780435698248422", "mpReserves": [ - "34051098832861718232794897", - "36459004330142894273346880", - "33783398588286944677706075" + "37820101676477686911220514", + "26812974876010349858954810", + "37876629196280135999947416" ], "fpReserves": [ - "5277253618213739418136087", - "4682770102387944440120322" + "3476450830472517859166395", + "2328186609898733884666897" ], - "mAssetSupply": "104293297139907999339872196", - "LPTokenSupply": "9926609365963120606814499" + "mAssetSupply": "102498780283724454122120383", + "LPTokenSupply": "5760024268992493555664868" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "784547131804380831940608", - "outputQty0": "784580074550350428274910", - "outputQty": "782441586451770526484294", - "swapFee": "625184674825482989465", + "inputQty": "913548166386493", + "outputQty0": "912694553979735", + "outputQty": "909381794210334", + "swapFee": "723719452468", "mpReserves": [ - "34835645964666099064735505", - "36459004330142894273346880", - "33783398588286944677706075" + "37820101677391235077607007", + "26812974876010349858954810", + "37876629196280135999947416" ], "fpReserves": [ - "6061833692764089846410997", - "3900328515936173913636028" + "3476450831385212413146130", + "2328186608989352090456563" ], - "mAssetSupply": "105077877214458349768147106", - "LPTokenSupply": "9926671884430603155113445" + "mAssetSupply": "102498780284637148676100118", + "LPTokenSupply": "5760024268992565927610114" }, { - "type": "swap_fp_to_mp", - "inputQty": "94446785732333731840", - "outputIndex": 0, - "outputQty": "94706429051681163479", - "swapFee": "0", - "redemptionFee": "37898357972786995", + "type": "redeem", + "outputIndex": 1, + "inputQty": "6051362921306592903168", + "outputQty0": "6101498652954075493237", + "outputQty": "6084162451280628883283", + "swapFee1": "3630817752783955741", + "swapFee2": "3660899191772445295", "mpReserves": [ - "34835551258237047383572026", - "36459004330142894273346880", - "33783398588286944677706075" + "37820101677391235077607007", + "26806890713559069230071527", + "37876629196280135999947416" ], "fpReserves": [ - "6061738946869157878921056", - "3900422962721906247367868" + "3470349332732258337652893", + "2328186608989352090456563" ], - "mAssetSupply": "105077782506461775773444160", - "LPTokenSupply": "9926671884430603155113445" + "mAssetSupply": "102492682446883386373052176", + "LPTokenSupply": "5753973269153034613102520" }, { - "type": "swap_fp_to_mp", - "inputQty": "612796346694282441129984", - "outputIndex": 0, - "outputQty": "613864368520504387869382", - "swapFee": "0", - "redemptionFee": "245652947490335482182", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "44857078105895763968", + "outputQty0": "44815135181165881111", + "outputQty": "44653093282728264800", + "swapFee": "35536257917294587", "mpReserves": [ - "34221686889716542995702644", - "36459004330142894273346880", - "33783398588286944677706075" + "37820146534469340973370975", + "26806890713559069230071527", + "37876629196280135999947416" ], "fpReserves": [ - "5447606578143319173463766", - "4513219309416188688497852" + "3470394147867439503534004", + "2328141955896069362191763" ], - "mAssetSupply": "104463895790683427403469052", - "LPTokenSupply": "9926671884430603155113445" + "mAssetSupply": "102492727262018567538933287", + "LPTokenSupply": "5753973272706660404831978" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "329924806288203218681856", - "outputQty0": "331018717691386083984100", - "outputQty": "330933180307961250221059", - "swapFee1": "197954883772921931209", - "swapFee2": "132407487076554433593", + "inputQty": "350507285929283974856704", + "outputQty0": "353351171930247284141296", + "outputQty": "352328305934489063873034", + "swapFee1": "210304371557570384914", + "swapFee2": "212010703158148370484", "mpReserves": [ - "34221686889716542995702644", - "36128071149834933023125821", - "33783398588286944677706075" + "37820146534469340973370975", + "26454562407624580166198493", + "37876629196280135999947416" ], "fpReserves": [ - "5116587860451933089479666", - "4513219309416188688497852" + "3117042975937192219392708", + "2328141955896069362191763" ], - "mAssetSupply": "104133009480479117873918545", - "LPTokenSupply": "9596766873630777228624709" + "mAssetSupply": "102139588100791478403162475", + "LPTokenSupply": "5403487017214532187013765" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "142086322085194534748160", - "outputQty0": "142066987082211663554971", - "outputQty": "141806079843866954935783", - "swapFee": "113214318293049112596", + "type": "redeem", + "outputIndex": 0, + "inputQty": "26932910598208037584896", + "outputQty0": "27147325354920797576598", + "outputQty": "27157393410358418821106", + "swapFee1": "16159746358924822550", + "swapFee2": "16288395212952478545", "mpReserves": [ - "34221686889716542995702644", - "36270157471920127557873981", - "33783398588286944677706075" + "37792989141058982554549869", + "26454562407624580166198493", + "37876629196280135999947416" ], "fpReserves": [ - "5258654847534144753034637", - "4371413229572321733562069" + "3089895650582271421816110", + "2328141955896069362191763" ], - "mAssetSupply": "104275076467561329537473516", - "LPTokenSupply": "9596778195062606533535968" + "mAssetSupply": "102112457063831770558064422", + "LPTokenSupply": "5376555722590960041911124" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "45368188399237994643456", - "outputQty0": "45361764263600923632853", - "outputQty": "45178876326887619379422", + "type": "swap_fp_to_mp", + "inputQty": "42977282181155944", + "outputIndex": 1, + "outputQty": "42933815024606045", + "swapFee": "0", + "redemptionFee": "25836376477645", "mpReserves": [ - "34221686889716542995702644", - "36315525660319365552517437", - "33783398588286944677706075" + "37792989141058982554549869", + "26454562364690765141592448", + "37876629196280135999947416" ], "fpReserves": [ - "5304016611797745676667490", - "4371413229572321733562069" + "3089895607521643959073693", + "2328141998873351543347707" ], - "mAssetSupply": "104320438231824930461106369", - "LPTokenSupply": "9641957071389494152915390" + "mAssetSupply": "102112457020796979471799650", + "LPTokenSupply": "5376555722590960041911124" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "172830548288775806517248", - "outputQty0": "173419400659016035724567", - "outputQty": "173332397781616612699787", - "swapFee1": "103698328973265483910", - "swapFee2": "69367760263606414289", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "5629212422958126989312", + "outputQty0": "5642446920807576109668", + "outputQty": "5626933367500920703893", + "swapFee": "4475655062670801491", "mpReserves": [ - "34221686889716542995702644", - "36315525660319365552517437", - "33610066190505328065006288" + "37792989141058982554549869", + "26460191577113723268581760", + "37876629196280135999947416" ], "fpReserves": [ - "5130597211138729640942923", - "4371413229572321733562069" + "3095538054442451535183361", + "2322515065505850622643814" ], - "mAssetSupply": "104147088198926178031796091", - "LPTokenSupply": "9469136892933615672946533" + "mAssetSupply": "102118099467717787047909318", + "LPTokenSupply": "5376556170156466308991273" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "54358581162515881787392", - "outputQty0": "54540544947235872610383", - "outputQty": "54526734389396634564646", - "swapFee1": "32615148697509529072", - "swapFee2": "21816217978894349044", + "type": "mint", + "inputIndex": 0, + "inputQty": "31010972950230428", + "outputQty0": "30980954159406206", + "outputQty": "30717725940664396", "mpReserves": [ - "34221686889716542995702644", - "36260998925929968917952791", - "33610066190505328065006288" + "37792989172069955504780297", + "26460191577113723268581760", + "37876629196280135999947416" ], "fpReserves": [ - "5076056666191493768332540", - "4371413229572321733562069" + "3095538085423405694589567", + "2322515065505850622643814" ], - "mAssetSupply": "104092569470196921053534752", - "LPTokenSupply": "9414781573285969542112048" + "mAssetSupply": "102118099498698741207315524", + "LPTokenSupply": "5376556200874192249655669" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "12963154322109025484800", - "outputQty0": "13006316820819645570391", - "outputQty": "13002997614782202259444", - "swapFee1": "7777892593265415290", - "swapFee2": "5202526728327858228", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "41596487581766489473024", + "outputQty0": "41693982326946477245837", + "outputQty": "41573889674411724377411", + "swapFee": "33071088732496331026", "mpReserves": [ - "34221686889716542995702644", - "36247995928315186715693347", - "33610066190505328065006288" + "37792989172069955504780297", + "26501788064695489758054784", + "37876629196280135999947416" ], "fpReserves": [ - "5063050349370674122762149", - "4371413229572321733562069" + "3137232067750352171835404", + "2280941175831438898266403" ], - "mAssetSupply": "104079568355902829735822589", - "LPTokenSupply": "9401819196753119843168777" + "mAssetSupply": "102159793481025687684561361", + "LPTokenSupply": "5376559507983065499288771" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "23434583591535079424", - "outputQty0": "23512534288394606530", - "outputQty": "23502092462574563604", - "swapFee1": "14060750154921047", - "swapFee2": "9405013715357842", + "inputQty": "127212426728049984", + "outputQty0": "128238952887843527", + "outputQty": "128285620286285017", + "swapFee1": "76327456036829", + "swapFee2": "76943371732706", "mpReserves": [ - "34221663387624080421139040", - "36247995928315186715693347", - "33610066190505328065006288" + "37792989043784335218495280", + "26501788064695489758054784", + "37876629196280135999947416" ], "fpReserves": [ - "5063026836836385728155619", - "4371413229572321733562069" + "3137231939511399283991877", + "2280941175831438898266403" ], - "mAssetSupply": "104079544852773555056573901", - "LPTokenSupply": "9401795763575603323581457" + "mAssetSupply": "102159793352863678168450540", + "LPTokenSupply": "5376559380778271516842469" }, { "type": "mint", "inputIndex": 2, - "inputQty": "12532784158820171776", - "outputQty0": "12534106355013709494", - "outputQty": "12485056744266817127", + "inputQty": "5138673947951165865984", + "outputQty0": "5133632773047167142735", + "outputQty": "5089470465365770688807", "mpReserves": [ - "34221663387624080421139040", - "36247995928315186715693347", - "33610078723289486885178064" + "37792989043784335218495280", + "26501788064695489758054784", + "37881767870228087165813400" ], "fpReserves": [ - "5063039370942740741865113", - "4371413229572321733562069" + "3142365572284446451134612", + "2280941175831438898266403" ], - "mAssetSupply": "104079557386879910070283395", - "LPTokenSupply": "9401808248632347590398584" + "mAssetSupply": "102164926985636725335593275", + "LPTokenSupply": "5381648851243637287531276" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "232901241980939243880448", - "outputQty0": "233658623745739473424410", - "outputQty": "233597295092303078495943", - "swapFee1": "139740745188563546328", - "swapFee2": "93463449498295789369", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "12071117339852074385408", + "outputQty0": "12059260775172271290395", + "outputQty": "12022563872043424782718", + "swapFee": "9564333895373316625", "mpReserves": [ - "34221663387624080421139040", - "36014398633222883637197404", - "33610078723289486885178064" + "37792989043784335218495280", + "26501788064695489758054784", + "37893838987567939240198808" ], "fpReserves": [ - "4829380747197001268440703", - "4371413229572321733562069" + "3154424833059618722425007", + "2268918611959395473483685" ], - "mAssetSupply": "103845992226583668892648354", - "LPTokenSupply": "9168920980725927202872768" + "mAssetSupply": "102176986246411897606883670", + "LPTokenSupply": "5381649807677026824862938" }, { "type": "swap_fp_to_mp", - "inputQty": "621822225957305668599808", - "outputIndex": 1, - "outputQty": "621495167289976778803211", + "inputQty": "984926176839558678708224", + "outputIndex": 2, + "outputQty": "984979934673863631226111", "swapFee": "0", - "redemptionFee": "248669682355268756315", + "redemptionFee": "590802462749794706430", "mpReserves": [ - "34221663387624080421139040", - "35392903465932906858394193", - "33610078723289486885178064" + "37792989043784335218495280", + "26501788064695489758054784", + "36908859052894075608972697" ], "fpReserves": [ - "4207706541308829377651986", - "4993235455529627402161877" + "2169754061809960878375001", + "3253844788798954152191909" ], - "mAssetSupply": "103224566690377852270615952", - "LPTokenSupply": "9168920980725927202872768" + "mAssetSupply": "101192906277624989557540094", + "LPTokenSupply": "5381649807677026824862938" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "43755568954799965601792", - "outputQty0": "43758925261685082620011", - "outputQty": "43632948950725048685719", + "type": "swap_fp_to_mp", + "inputQty": "98091092666765031768064", + "outputIndex": 0, + "outputQty": "97820650609561980072994", + "swapFee": "0", + "redemptionFee": "58667718600341209321", "mpReserves": [ - "34221663387624080421139040", - "35392903465932906858394193", - "33653834292244286850779856" + "37695168393174773238422286", + "26501788064695489758054784", + "36908859052894075608972697" ], "fpReserves": [ - "4251465466570514460271997", - "4993235455529627402161877" + "2071974530809392196172007", + "3351935881465719183959973" ], - "mAssetSupply": "103268325615639537353235963", - "LPTokenSupply": "9212553929676652251558487" + "mAssetSupply": "101095185414343021216546421", + "LPTokenSupply": "5381649807677026824862938" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "10460890687302296141824", - "outputQty0": "10461673966744009526593", - "outputQty": "10464400231574840891436", - "swapFee": "8345047580837663677", + "type": "swap_fp_to_mp", + "inputQty": "609608031362790912", + "outputIndex": 0, + "outputQty": "607728445205874315", + "swapFee": "0", + "redemptionFee": "364486272560681", "mpReserves": [ - "34221663387624080421139040", - "35392903465932906858394193", - "33664295182931589146921680" + "37695167785446328032547971", + "26501788064695489758054784", + "36908859052894075608972697" ], "fpReserves": [ - "4261927140537258469798590", - "4982771055298052561270441" + "2071973923332271261702630", + "3351936491073750546750885" ], - "mAssetSupply": "103278787289606281362762556", - "LPTokenSupply": "9212554764181410335324854" + "mAssetSupply": "101095184807230386554637725", + "LPTokenSupply": "5381649807677026824862938" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "317941563293446766592", - "outputQty0": "317965254288650545780", - "outputQty": "317038191410712569425", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "141382106943854002176", + "outputQty0": "141696534063364450038", + "outputQty": "142079755074312796492", + "swapFee": "112717474112670945", "mpReserves": [ - "34221663387624080421139040", - "35392903465932906858394193", - "33664613124494882593688272" + "37695167785446328032547971", + "26501929446802433612056960", + "36908859052894075608972697" ], "fpReserves": [ - "4262245105791547120344370", - "4982771055298052561270441" + "2072115619866334626152668", + "3351794411318676233954393" ], - "mAssetSupply": "103279105254860570013308336", - "LPTokenSupply": "9212871802372821047894279" + "mAssetSupply": "101095326503764449919087763", + "LPTokenSupply": "5381649818948774236130032" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "168587399926688055296", "outputIndex": 1, - "inputQty": "442944485213087203328", - "outputQty0": "443973147295934657710", - "outputQty": "443836165956275680169", - "swapFee1": "265766691127852321", - "swapFee2": "177589258918373863", - "mpReserves": [ - "34221663387624080421139040", - "35392459629766950582714024", - "33664613124494882593688272" - ], - "fpReserves": [ - "4261801132644251185686660", - "4982771055298052561270441" - ], - "mAssetSupply": "103278661459302532997024489", - "LPTokenSupply": "9212428884464277073476183" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "127796495729790589861888", - "outputQty0": "127805466048355171426508", - "outputQty": "127425964016460169661559", + "outputQty": "167524793955484706036", + "swapFee": "0", + "redemptionFee": "100798896435241277", "mpReserves": [ - "34221663387624080421139040", - "35392459629766950582714024", - "33792409620224673183550160" + "37695167785446328032547971", + "26501761922008478127350924", + "36908859052894075608972697" ], "fpReserves": [ - "4389606598692606357113168", - "4982771055298052561270441" + "2071947621705609224023869", + "3351962998718602922009689" ], - "mAssetSupply": "103406466925350888168450997", - "LPTokenSupply": "9339854848480737243137742" + "mAssetSupply": "101095158606402620952200241", + "LPTokenSupply": "5381649818948774236130032" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "3555691944580150722560", - "outputQty0": "3564326164536711881617", - "outputQty": "3563211413168266517092", - "swapFee1": "2133415166748090433", - "swapFee2": "1425730465814684752", - "mpReserves": [ - "34221663387624080421139040", - "35388896418353782316196932", - "33792409620224673183550160" - ], - "fpReserves": [ - "4386042272528069645231551", - "4982771055298052561270441" - ], - "mAssetSupply": "103402904024916817271254132", - "LPTokenSupply": "9336299369877673767224225" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "63106310829392399433728", - "outputQty0": "63100688590602388523601", - "outputQty": "62908531876805836601846", + "outputIndex": 2, + "inputQty": "2384325974684718592", + "outputQty0": "2396419370037149754", + "outputQty": "2397019015484183616", + "swapFee1": "1430595584810831", + "swapFee2": "1437851622022289", "mpReserves": [ - "34221663387624080421139040", - "35452002729183174715630660", - "33792409620224673183550160" + "37695167785446328032547971", + "26501761922008478127350924", + "36908856655875060124789081" ], "fpReserves": [ - "4449142961118672033755152", - "4982771055298052561270441" + "2071945225286239186874115", + "3351962998718602922009689" ], - "mAssetSupply": "103466004713507419659777733", - "LPTokenSupply": "9399207901754479603826071" + "mAssetSupply": "101095156211421102537072776", + "LPTokenSupply": "5381647434765859109892523" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "15458715542021015076864", - "outputQty0": "15459098120160519301174", - "outputQty": "15458042443204102470021", - "swapFee": "12329227959357177032", + "inputQty": "4460121366375224573952", + "outputQty0": "4455600532153166761679", + "outputQty": "4467586597951731747567", + "swapFee": "3544344295308059989", "mpReserves": [ - "34237122103166101436215904", - "35452002729183174715630660", - "33792409620224673183550160" + "37699627906812703257121923", + "26501761922008478127350924", + "36908856655875060124789081" ], "fpReserves": [ - "4464602059238832553056326", - "4967313012854848458800420" + "2076400825818392353635794", + "3347495412120651190262122" ], - "mAssetSupply": "103481463811627580179078907", - "LPTokenSupply": "9399209134677275539543774" + "mAssetSupply": "101099611811953255703834455", + "LPTokenSupply": "5381647789200288640698521" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "31769289451417582436352", - "outputQty0": "31766382718125448534161", - "outputQty": "31667669626105025747337", + "type": "swap_fp_to_mp", + "inputQty": "2608151098883709075456", + "outputIndex": 1, + "outputQty": "2591763319400729590991", + "swapFee": "0", + "redemptionFee": "1559453421255425663", "mpReserves": [ - "34237122103166101436215904", - "35483772018634592298067012", - "33792409620224673183550160" + "37699627906812703257121923", + "26499170158689077397759933", + "36908856655875060124789081" ], "fpReserves": [ - "4496368441956958001590487", - "4967313012854848458800420" + "2073801736782966644196477", + "3350103563219534899337578" ], - "mAssetSupply": "103513230194345705627613068", - "LPTokenSupply": "9430876804303380565291111" + "mAssetSupply": "101097014282371251249820801", + "LPTokenSupply": "5381647789200288640698521" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "464665990491549202382848", - "outputQty0": "464691030059164146038789", - "outputQty": "464323422957894112417739", - "swapFee": "370529244410478124136", + "type": "swap_fp_to_mp", + "inputQty": "139566030103898767360", + "outputIndex": 0, + "outputQty": "139137485634311740270", + "swapFee": "0", + "redemptionFee": "83447893171582920", "mpReserves": [ - "34237122103166101436215904", - "35483772018634592298067012", - "34257075610716222385933008" + "37699488769327068945381653", + "26499170158689077397759933", + "36908856655875060124789081" ], "fpReserves": [ - "4961059472016122147629276", - "4502989589896954346382681" + "2073662656961014005995053", + "3350243129249638798104938" ], - "mAssetSupply": "103977921224404869773651857", - "LPTokenSupply": "9430913857227821613103524" + "mAssetSupply": "101096875285997191783202297", + "LPTokenSupply": "5381647789200288640698521" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "72429579930497318912", - "outputQty0": "72432514576992987610", - "outputQty": "72327962383674696564", - "swapFee": "57725436373302570", + "inputQty": "33492557029782868459520", + "outputQty0": "33458511512982354629128", + "outputQty": "33544888666930348320341", + "swapFee": "26614418259384278810", "mpReserves": [ - "34237194532746031933534816", - "35483772018634592298067012", - "34257075610716222385933008" + "37732981326356851813841173", + "26499170158689077397759933", + "36908856655875060124789081" ], "fpReserves": [ - "4961131904530699140616886", - "4502917261934570671686117" + "2107121168473996360624181", + "3316698240582708449784597" ], - "mAssetSupply": "103977993656919446766639467", - "LPTokenSupply": "9430913863000365250433781" + "mAssetSupply": "101130333797510174137831425", + "LPTokenSupply": "5381650450642114579126402" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "7516384151368240128", - "outputQty0": "7516673997859157903", - "outputQty": "7488060668843091568", + "inputQty": "3139244931658289774592", + "outputQty0": "3136582809267877292040", + "outputQty": "3144300887071686602234", + "swapFee": "2494725396373046585", "mpReserves": [ - "34237194532746031933534816", - "35483772018634592298067012", - "34257083127100373754173136" + "37732981326356851813841173", + "26499170158689077397759933", + "36911995900806718414563673" ], "fpReserves": [ - "4961139421204696999774789", - "4502917261934570671686117" + "2110257751283264237916221", + "3313553939695636763182363" ], - "mAssetSupply": "103978001173593444625797370", - "LPTokenSupply": "9430921351061034093525349" + "mAssetSupply": "101133470380319442015123465", + "LPTokenSupply": "5381650700114654216431060" }, { "type": "swap_fp_to_mp", - "inputQty": "1230085410007353271517184", - "outputIndex": 1, - "outputQty": "1228250962911121380339436", + "inputQty": "147014312268055531487232", + "outputIndex": 0, + "outputQty": "146524096882223879947409", "swapFee": "0", - "redemptionFee": "491477578987234649175", + "redemptionFee": "87878530189186709685", "mpReserves": [ - "34237194532746031933534816", - "34255521055723470917727576", - "34257083127100373754173136" + "37586457229474627933893764", + "26499170158689077397759933", + "36911995900806718414563673" ], "fpReserves": [ - "3732445473736610376835483", - "5733002671941923943203301" + "1963793534301286388441191", + "3460568251963692294669595" ], - "mAssetSupply": "102749798703704345237507239", - "LPTokenSupply": "9430921351061034093525349" + "mAssetSupply": "100987094041867653352358120", + "LPTokenSupply": "5381650700114654216431060" }, { - "type": "swap_fp_to_mp", - "inputQty": "123482134654697635840", - "outputIndex": 0, - "outputQty": "123054833142319254829", - "swapFee": "0", - "redemptionFee": "49241690966251494", + "type": "redeem", + "outputIndex": 2, + "inputQty": "7128388903607454", + "outputQty0": "7161105186570199", + "outputQty": "7162953887104223", + "swapFee1": "4277033342164", + "swapFee2": "4296663111942", "mpReserves": [ - "34237071477912889614279987", - "34255521055723470917727576", - "34257083127100373754173136" + "37586457229474627933893764", + "26499170158689077397759933", + "36911995893643764527459450" ], "fpReserves": [ - "3732322369509194748099381", - "5733126154076578640839141" + "1963793527140181201870992", + "3460568251963692294669595" ], - "mAssetSupply": "102749675648718620575022631", - "LPTokenSupply": "9430921351061034093525349" + "mAssetSupply": "100987094034710844828899863", + "LPTokenSupply": "5381650692986693016157822" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "122653475357876394393600", - "outputQty0": "122652923083228433809905", - "outputQty": "122422742242374344424600", + "inputQty": "2710182017673583", + "outputQty0": "2716181187720976", + "outputQty": "2725638217113591", + "swapFee": "2161719805779", "mpReserves": [ - "34237071477912889614279987", - "34378174531081347312121176", - "34257083127100373754173136" + "37586457229474627933893764", + "26499170161399259415433516", + "36911995893643764527459450" ], "fpReserves": [ - "3854975292592423181909286", - "5733126154076578640839141" + "1963793529856362389591968", + "3460568249238054077556004" ], - "mAssetSupply": "102872328571801849008832536", - "LPTokenSupply": "9553344093303408437949949" + "mAssetSupply": "100987094037427026016620839", + "LPTokenSupply": "5381650692986909188138399" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2426791867376615817216", - "outputQty0": "2426771167966349361463", - "outputQty": "2422025214458652958521", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "8172485971746643509248", + "outputQty0": "8164323535108345094851", + "outputQty": "8192496511933277035443", + "swapFee": "6497636769448062765", "mpReserves": [ - "34237071477912889614279987", - "34380601322948723927938392", - "34257083127100373754173136" + "37594629715446374577403012", + "26499170161399259415433516", + "36911995893643764527459450" ], "fpReserves": [ - "3857402063760389531270749", - "5733126154076578640839141" + "1971957853391470734686819", + "3452375752726120800520561" ], - "mAssetSupply": "102874755342969815358193999", - "LPTokenSupply": "9555766118517867090908470" + "mAssetSupply": "100995258360962134361715690", + "LPTokenSupply": "5381651342750586132944675" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "102271508051558032", - "outputQty0": "102410579025838277", - "outputQty": "102370495948671655", - "swapFee1": "61362904830934", - "swapFee2": "40964231610335", + "inputQty": "127517290159627", + "outputQty0": "128107705955817", + "outputQty": "127747952016356", + "swapFee1": "76510374095", + "swapFee2": "76864623573", "mpReserves": [ - "34237071477912889614279987", - "34380601220578227979266737", - "34257083127100373754173136" + "37594629715446374577403012", + "26499170161271511463417160", + "36911995893643764527459450" ], "fpReserves": [ - "3857401961349810505432472", - "5733126154076578640839141" + "1971957853263363028731002", + "3452375752726120800520561" ], - "mAssetSupply": "102874755240600200563966057", - "LPTokenSupply": "9555766016252495329833531" + "mAssetSupply": "100995258360834103520383446", + "LPTokenSupply": "5381651342623076493822457" }, { - "type": "mint", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "723976219307008896", + "outputQty0": "723355485251124753", + "outputQty": "725829254739226552", + "swapFee": "575671768148569", + "mpReserves": [ + "37594629715446374577403012", + "26499170161271511463417160", + "36911996617619983834468346" + ], + "fpReserves": [ + "1971958576618848279855755", + "3452375026896866061294009" + ], + "mAssetSupply": "100995259084189588771508199", + "LPTokenSupply": "5381651342680643670637313" + }, + { + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "29519348469636727308288", - "outputQty0": "29519476238161714293585", - "outputQty": "29461168771523116707327", + "inputQty": "1701585138083119759360", + "outputQty0": "1699884471324353150507", + "outputQty": "1705686927345372074896", + "swapFee": "1352824430873724995", "mpReserves": [ - "34266590826382526341588275", - "34380601220578227979266737", - "34257083127100373754173136" + "37596331300584457697162372", + "26499170161271511463417160", + "36911996617619983834468346" ], "fpReserves": [ - "3886921437587972219726057", - "5733126154076578640839141" + "1973658461090172633006262", + "3450669339969520689219113" ], - "mAssetSupply": "102904274716838362278259642", - "LPTokenSupply": "9585227185024018446540858" + "mAssetSupply": "100996958968660913124658706", + "LPTokenSupply": "5381651477963086758009812" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "330637994234658678636544", "outputIndex": 1, - "inputQty": "2018944475696882515968", - "outputQty0": "2021760360296315152806", - "outputQty": "2020966996218220586133", - "swapFee1": "1211366685418129509", - "swapFee2": "808704144118526061", + "outputQty": "327843753817655687124933", + "swapFee": "0", + "redemptionFee": "197269959832659859053", "mpReserves": [ - "34266590826382526341588275", - "34378580253582009758680604", - "34257083127100373754173136" + "37596331300584457697162372", + "26171326407453855776292227", + "36911996617619983834468346" ], "fpReserves": [ - "3884899677227675904573251", - "5733126154076578640839141" + "1644875194702406201250838", + "3781307334204179367855657" ], - "mAssetSupply": "102902253765182210081632897", - "LPTokenSupply": "9583208361684990105837840" + "mAssetSupply": "100668372972232979352762335", + "LPTokenSupply": "5381651477963086758009812" }, { "type": "mint", "inputIndex": 0, - "inputQty": "18607860732652183552", - "outputQty0": "18607922270656485580", - "outputQty": "18570876613919029655", + "inputQty": "223088403806237164044288", + "outputQty0": "222854116979280291355435", + "outputQty": "222022586966542197656577", "mpReserves": [ - "34266609434243258993771827", - "34378580253582009758680604", - "34257083127100373754173136" + "37819419704390694861206660", + "26171326407453855776292227", + "36911996617619983834468346" ], "fpReserves": [ - "3884918285149946561058831", - "5733126154076578640839141" + "1867729311681686492606273", + "3781307334204179367855657" ], - "mAssetSupply": "102902272373104480738118477", - "LPTokenSupply": "9583226932561604024867495" + "mAssetSupply": "100891227089212259644117770", + "LPTokenSupply": "5603674064929628955666389" }, { "type": "swap_fp_to_mp", - "inputQty": "368283367112983642112", - "outputIndex": 0, - "outputQty": "367126440568068142728", + "inputQty": "10283045515271042236416", + "outputIndex": 2, + "outputQty": "10226831898800671361031", "swapFee": "0", - "redemptionFee": "146909827463039049", + "redemptionFee": "6134398498080824030", "mpReserves": [ - "34266242307802690925629099", - "34378580253582009758680604", - "34257083127100373754173136" + "37819419704390694861206660", + "26171326407453855776292227", + "36901769785721183163107315" ], "fpReserves": [ - "3884551010581288963435179", - "5733494437443691624481253" + "1857505314184885119222188", + "3791590379719450410092073" ], - "mAssetSupply": "102901905245445650603533874", - "LPTokenSupply": "9583226932561604024867495" + "mAssetSupply": "100881009226113956351557715", + "LPTokenSupply": "5603674064929628955666389" }, { "type": "redeem", + "outputIndex": 0, + "inputQty": "80558986494574854144000", + "outputQty0": "80833902988852748406104", + "outputQty": "80871189133450286244286", + "swapFee1": "48335391896744912486", + "swapFee2": "48500341793311649043", + "mpReserves": [ + "37738548515257244574962374", + "26171326407453855776292227", + "36901769785721183163107315" + ], + "fpReserves": [ + "1776671411196032370816084", + "3791590379719450410092073" + ], + "mAssetSupply": "100800223823466896914800654", + "LPTokenSupply": "5523119911974243776013637" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "124422731717439354044416", "outputIndex": 1, - "inputQty": "23922442486806024192", - "outputQty0": "23955763475956309635", - "outputQty": "23946361629749481721", - "swapFee1": "14353465492083614", - "swapFee2": "9582305390382523", + "outputQty": "123192757565074566973965", + "swapFee": "0", + "redemptionFee": "74133629806521552253", "mpReserves": [ - "34266242307802690925629099", - "34378556307220380009198883", - "34257083127100373754173136" + "37738548515257244574962374", + "26048133649888781209318262", + "36901769785721183163107315" ], "fpReserves": [ - "3884527054817813007125544", - "5733494437443691624481253" + "1653115361518496450394149", + "3916013111436889764136489" ], - "mAssetSupply": "102901881299264480037606762", - "LPTokenSupply": "9583203011554463768051664" + "mAssetSupply": "100676741907419167515930972", + "LPTokenSupply": "5523119911974243776013637" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "9233530472200368128", - "outputQty0": "9233460892911446925", - "outputQty": "9215085417704222168", + "inputIndex": 2, + "inputQty": "264642909000466208", + "outputQty0": "264406067253312022", + "outputQty": "263642538455676693", "mpReserves": [ - "34266242307802690925629099", - "34378565540750852209567011", - "34257083127100373754173136" + "37738548515257244574962374", + "26048133649888781209318262", + "36901770050364092163573523" ], "fpReserves": [ - "3884536288278705918572469", - "5733494437443691624481253" + "1653115625924563703706171", + "3916013111436889764136489" ], - "mAssetSupply": "102901890532725372949053687", - "LPTokenSupply": "9583212226639881472273832" + "mAssetSupply": "100676742171825234769242994", + "LPTokenSupply": "5523120175616782231690330" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1941868843246249335324672", - "outputQty0": "1941758616011829341674652", - "outputQty": "1936190094593133386744494", + "inputQty": "1043892415589366366208", + "outputQty0": "1042958107184785730982", + "outputQty": "1039943103014986588767", "mpReserves": [ - "34266242307802690925629099", - "34378565540750852209567011", - "36198951970346623089497808" + "37738548515257244574962374", + "26048133649888781209318262", + "36902813942779681529939731" ], "fpReserves": [ - "5826294904290535260247121", - "5733494437443691624481253" + "1654158584031748489437153", + "3916013111436889764136489" ], - "mAssetSupply": "104843649148737202290728339", - "LPTokenSupply": "11519402321233014859018326" + "mAssetSupply": "100677785129932419554973976", + "LPTokenSupply": "5524160118719797218279097" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "1999691618075758559232", - "outputQty0": "2005603165100895428047", - "outputQty": "2004692503754792668527", - "swapFee1": "1199814970845455135", - "swapFee2": "802241266040358171", + "outputIndex": 0, + "inputQty": "256236879633331008", + "outputQty0": "256826373463731612", + "outputQty": "256946806260968959", + "swapFee1": "153742127779998", + "swapFee2": "154095824078238", "mpReserves": [ - "34266242307802690925629099", - "34376560848247097416898484", - "36198951970346623089497808" + "37738548258310438313993415", + "26048133649888781209318262", + "36902813942779681529939731" ], "fpReserves": [ - "5824289301125434364819074", - "5733494437443691624481253" + "1654158327205375025705541", + "3916013111436889764136489" ], - "mAssetSupply": "104841644347813367435658463", - "LPTokenSupply": "11517402749596436185004607" + "mAssetSupply": "100677784873260141915320602", + "LPTokenSupply": "5524159862498291797726088" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "66292631091008971472896", - "outputQty0": "66487321720550486768970", - "outputQty": "66456983206556890448815", - "swapFee1": "39775578654605382883", - "swapFee2": "26594928688220194707", + "type": "mint", + "inputIndex": 0, + "inputQty": "61431436392622488289280", + "outputQty0": "61365538749043908802002", + "outputQty": "61177119739658626959086", "mpReserves": [ - "34266242307802690925629099", - "34310103865040540526449669", - "36198951970346623089497808" + "37799979694703060802282695", + "26048133649888781209318262", + "36902813942779681529939731" ], "fpReserves": [ - "5757801979404883878050104", - "5733494437443691624481253" + "1715523865954418934507543", + "3916013111436889764136489" ], - "mAssetSupply": "104775183621021505169084200", - "LPTokenSupply": "11451114096063292674069999" + "mAssetSupply": "100739150412009185824122604", + "LPTokenSupply": "5585336982237950424685174" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "757265676457374795169792", "outputIndex": 0, - "inputQty": "10985072360766300160", - "outputQty0": "11017159129969398300", - "outputQty": "11012060171038877316", - "swapFee1": "6591043416459780", - "swapFee2": "4406863651987759", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "56604873266527687671808", + "outputQty0": "56543688538135183185582", + "outputQty": "56352075924781837690706", "mpReserves": [ - "34266231295742519886751783", - "34310103865040540526449669", - "36198951970346623089497808" + "37856584567969588489954503", + "26048133649888781209318262", + "36902813942779681529939731" ], "fpReserves": [ - "5757790962245753908651804", - "5733494437443691624481253" + "1772067554492554117693125", + "3916013111436889764136489" ], - "mAssetSupply": "104775172608269238851673659", - "LPTokenSupply": "11451103111650036249415817" + "mAssetSupply": "100795694100547321007308186", + "LPTokenSupply": "5641689058162732262375880" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "2424677338776180097024", - "outputQty0": "2424819025541256661339", - "outputQty": "2422804548821872152749", - "swapFee": "1933043653620164922", + "inputQty": "125017759040785152", + "outputQty0": "125315210956176124", + "outputQty": "124872588699579614", "mpReserves": [ - "34266231295742519886751783", - "34312528542379316706546693", - "36198951970346623089497808" + "37856584567969588489954503", + "26048133774906540250103414", + "36902813942779681529939731" ], "fpReserves": [ - "5760215781271295165313143", - "5731071632894869752328504" + "1772067679807765073869249", + "3916013111436889764136489" ], - "mAssetSupply": "104777597427294780108334998", - "LPTokenSupply": "11451103304954401611432309" + "mAssetSupply": "100795694225862531963484310", + "LPTokenSupply": "5641689183035320961955494" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "151071829728828453814272", - "outputQty0": "151079896557871929474008", - "outputQty": "150542621525720220066275", + "type": "swap_fp_to_mp", + "inputQty": "83266053733582681145344", + "outputIndex": 2, + "outputQty": "82690822862062435220516", + "swapFee": "0", + "redemptionFee": "49600525249311536061", "mpReserves": [ - "34266231295742519886751783", - "34463600372108145160360965", - "36198951970346623089497808" + "37856584567969588489954503", + "26048133774906540250103414", + "36820123119917619094719215" ], "fpReserves": [ - "5911295677829167094787151", - "5731071632894869752328504" + "1689400137725579180433030", + "3999279165170472445281833" ], - "mAssetSupply": "104928677323852652037809006", - "LPTokenSupply": "11601645926480121831498584" + "mAssetSupply": "100713076284305595381584152", + "LPTokenSupply": "5641689183035320961955494" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2458503665474136440832", - "outputQty0": "2465899972578630125099", - "outputQty": "2464793990885748978733", - "swapFee1": "1475102199284481864", - "swapFee2": "986359989031452050", + "type": "mint", + "inputIndex": 0, + "inputQty": "4676938396780677038080", + "outputQty0": "4671837739263049530876", + "outputQty": "4658252498595711534804", "mpReserves": [ - "34266231295742519886751783", - "34461135578117259411382232", - "36198951970346623089497808" + "37861261506366369166992583", + "26048133774906540250103414", + "36820123119917619094719215" ], "fpReserves": [ - "5908829777856588464662052", - "5731071632894869752328504" + "1694071975464842229963906", + "3999279165170472445281833" ], - "mAssetSupply": "104926212410240062439135957", - "LPTokenSupply": "11599187570324867623505938" + "mAssetSupply": "100717748122044858431115028", + "LPTokenSupply": "5646347435533916673490298" }, { "type": "swap_fp_to_mp", - "inputQty": "25987550400438173696", - "outputIndex": 0, - "outputQty": "25980650254184742415", + "inputQty": "32074596495917538344960", + "outputIndex": 1, + "outputQty": "31729749092560603309441", "swapFee": "0", - "redemptionFee": "10397123647439389", + "redemptionFee": "19094534903172148720", "mpReserves": [ - "34266205315092265702009368", - "34461135578117259411382232", - "36198951970346623089497808" + "37861261506366369166992583", + "26016404025813979646793973", + "36820123119917619094719215" ], "fpReserves": [ - "5908803785047469866188768", - "5731097620445270190502200" + "1662247750626221982097010", + "4031353761666389983626793" ], - "mAssetSupply": "104926186427828067488102062", - "LPTokenSupply": "11599187570324867623505938" + "mAssetSupply": "100685942991741141355396852", + "LPTokenSupply": "5646347435533916673490298" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "794349339308170412032", - "outputQty0": "794387933430124904659", - "outputQty": "793591140950880339828", - "swapFee": "633224250477886903", + "type": "swap_fp_to_mp", + "inputQty": "45273107715006169874432", + "outputIndex": 2, + "outputQty": "44910518053294952245992", + "swapFee": "0", + "redemptionFee": "26938888174950561986", "mpReserves": [ - "34266205315092265702009368", - "34461929927456567581794264", - "36198951970346623089497808" + "37861261506366369166992583", + "26016404025813979646793973", + "36775212601864324142473223" ], "fpReserves": [ - "5909598172980899991093427", - "5730304029304319310162372" + "1617349603667971045452122", + "4076626869381396153501225" ], - "mAssetSupply": "104926980815761497613006721", - "LPTokenSupply": "11599187633647292671294628" + "mAssetSupply": "100641071783671065369313950", + "LPTokenSupply": "5646347435533916673490298" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "952585898314044160", - "outputQty0": "955452042473583857", - "outputQty": "955005077298718791", - "swapFee1": "571551538988426", - "swapFee2": "382180816989433", + "type": "mint", + "inputIndex": 2, + "inputQty": "439347688118337792", + "outputQty0": "438964558326761738", + "outputQty": "437980884339094737", "mpReserves": [ - "34266204360087188403290577", - "34461929927456567581794264", - "36198951970346623089497808" + "37861261506366369166992583", + "26016404025813979646793973", + "36775213041212012260811015" ], "fpReserves": [ - "5909597217528857517509570", - "5730304029304319310162372" + "1617350042632529372213860", + "4076626869381396153501225" ], - "mAssetSupply": "104926979860691635956412297", - "LPTokenSupply": "11599186681118549511149310" + "mAssetSupply": "100641072222635623696075688", + "LPTokenSupply": "5646347873514801012585035" }, { - "type": "swap_fp_to_mp", - "inputQty": "294973721330525208576", - "outputIndex": 0, - "outputQty": "294895815281064480669", - "swapFee": "0", - "redemptionFee": "118013534578693925", + "type": "mint", + "inputIndex": 0, + "inputQty": "160023052280945449107456", + "outputQty0": "159845682045607869328666", + "outputQty": "159407818856872264180985", "mpReserves": [ - "34265909464271907338809908", - "34461929927456567581794264", - "36198951970346623089497808" + "38021284558647314616100039", + "26016404025813979646793973", + "36775213041212012260811015" ], "fpReserves": [ - "5909302183692410782694664", - "5730599003025649835370948" + "1777195724678137241542526", + "4076626869381396153501225" ], - "mAssetSupply": "104926684944868723800291316", - "LPTokenSupply": "11599186681118549511149310" + "mAssetSupply": "100800917904681231565404354", + "LPTokenSupply": "5805755692371673276766020" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "138298624364026560512", - "outputQty0": "138308008148927975165", - "outputQty": "138169227783702145806", - "swapFee": "110248335458390313", + "type": "mint", + "inputIndex": 1, + "inputQty": "163675080515950183710720", + "outputQty0": "164062608520911377428515", + "outputQty": "163473268892366998312994", "mpReserves": [ - "34266047762896271365370420", - "34461929927456567581794264", - "36198951970346623089497808" + "38021284558647314616100039", + "26180079106329929830504693", + "36775213041212012260811015" ], "fpReserves": [ - "5909440491700559710669829", - "5730460833797866133225142" + "1941258333199048618971041", + "4076626869381396153501225" ], - "mAssetSupply": "104926823252876872728266481", - "LPTokenSupply": "11599186692143383056988341" + "mAssetSupply": "100964980513202142942832869", + "LPTokenSupply": "5969228961264040275079014" }, { "type": "swap_fp_to_mp", - "inputQty": "41551350431803961769984", + "inputQty": "20841821129444394270720", "outputIndex": 1, - "outputQty": "41539154079403316844584", + "outputQty": "20651507707111052800620", "swapFee": "0", - "redemptionFee": "16623140212331886845", + "redemptionFee": "12427423307653292565", "mpReserves": [ - "34266047762896271365370420", - "34420390773377164264949680", - "36198951970346623089497808" + "38021284558647314616100039", + "26159427598622818777704073", + "36775213041212012260811015" ], "fpReserves": [ - "5867882641169729993554927", - "5772012184229670094995126" + "1920545961019626464695048", + "4097468690510840547771945" ], - "mAssetSupply": "104885282025486255343038424", - "LPTokenSupply": "11599186692143383056988341" + "mAssetSupply": "100944280568446028441849441", + "LPTokenSupply": "5969228961264040275079014" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "629298356895950217150464", - "outputQty0": "631044141303861134685261", - "outputQty": "630746225310899951575135", - "swapFee1": "377579014137570130290", - "swapFee2": "252417656521544453874", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "136622765626009164185600", + "outputQty0": "136505836541164467934153", + "outputQty": "137180078441817745801652", + "swapFee": "108756504248694860862", "mpReserves": [ - "34266047762896271365370420", - "33789644548066264313374545", - "36198951970346623089497808" + "38021284558647314616100039", + "26159427598622818777704073", + "36911835806838021424996615" ], "fpReserves": [ - "5236838499865868858869666", - "5772012184229670094995126" + "2057051797560790932629201", + "3960288612069022801970293" ], - "mAssetSupply": "104254490301838915752807037", - "LPTokenSupply": "10969926093148846596850906" + "mAssetSupply": "101080786404987192909783594", + "LPTokenSupply": "5969239836914465144565100" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "266543148363212061147136", - "outputQty0": "266505211569282766797987", - "outputQty": "265629907592055788756192", + "inputQty": "8116567310972933373952", + "outputQty0": "8109535752993532388963", + "outputQty": "8144730968938614008558", + "swapFee": "6457565219759519375", "mpReserves": [ - "34266047762896271365370420", - "33789644548066264313374545", - "36465495118709835150644944" + "38021284558647314616100039", + "26159427598622818777704073", + "36919952374148994358370567" ], "fpReserves": [ - "5503343711435151625667653", - "5772012184229670094995126" + "2065161333313784465018164", + "3952143881100084187961735" ], - "mAssetSupply": "104520995513408198519605024", - "LPTokenSupply": "11235556000740902385607098" + "mAssetSupply": "101088895940740186442172557", + "LPTokenSupply": "5969240482670987120517037" }, { "type": "swap_fp_to_mp", - "inputQty": "2026266114968651825152", - "outputIndex": 0, - "outputQty": "2024701566627955433066", + "inputQty": "5974936260457995264", + "outputIndex": 2, + "outputQty": "5946133182924423598", "swapFee": "0", - "redemptionFee": "810248465962425823", + "redemptionFee": "3566727098433559", "mpReserves": [ - "34264023061329643409937354", - "33789644548066264313374545", - "36465495118709835150644944" + "38021284558647314616100039", + "26159427598622818777704073", + "36919946428015811433946969" ], "fpReserves": [ - "5501318090270245561109097", - "5774038450344638746820278" + "2065155388768620409085201", + "3952149856036344645956999" ], - "mAssetSupply": "104518970702491758417472291", - "LPTokenSupply": "11235556000740902385607098" + "mAssetSupply": "101088889999761749484673153", + "LPTokenSupply": "5969240482670987120517037" }, { - "type": "swap_fp_to_mp", - "inputQty": "687228769391516160", - "outputIndex": 1, - "outputQty": "686663833563478520", - "swapFee": "0", - "redemptionFee": "274803354736417", + "type": "redeem", + "outputIndex": 0, + "inputQty": "10459645106459", + "outputQty0": "10502337129773", + "outputQty": "10507535676370", + "swapFee1": "6275787063", + "swapFee2": "6301402277", "mpReserves": [ - "34264023061329643409937354", - "33789643861402430749896025", - "36465495118709835150644944" + "38021284558636807080423669", + "26159427598622818777704073", + "36919946428015811433946969" ], "fpReserves": [ - "5501317403261858720065474", - "5774039137573408138336438" + "2065155388758118071955428", + "3952149856036344645956999" ], - "mAssetSupply": "104518970015758174931165085", - "LPTokenSupply": "11235556000740902385607098" + "mAssetSupply": "101088889999751253448945657", + "LPTokenSupply": "5969240482660528102989284" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "36096302308477844324352", - "outputQty0": "36098211312370876154301", - "outputQty": "35976297433224465028458", + "type": "swap_fp_to_mp", + "inputQty": "3706023508296255668224", + "outputIndex": 1, + "outputQty": "3676214014113218267809", + "swapFee": "0", + "redemptionFee": "2212272130191372189", "mpReserves": [ - "34300119363638121254261706", - "33789643861402430749896025", - "36465495118709835150644944" + "38021284558636807080423669", + "26155751384608705559436264", + "36919946428015811433946969" ], "fpReserves": [ - "5537415614574229596219775", - "5774039137573408138336438" + "2061468268541132451639999", + "3955855879544640901625223" ], - "mAssetSupply": "104555068227070545807319386", - "LPTokenSupply": "11271532298174126850635556" + "mAssetSupply": "101085205091806398020002417", + "LPTokenSupply": "5969240482660528102989284" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "165803384109523435520", - "outputQty0": "165820424463737093073", - "outputQty": "165733689532923409823", - "swapFee": "132206850048704012", + "type": "redeem", + "outputIndex": 2, + "inputQty": "2319389944631349477376", + "outputQty0": "2328803887749540072388", + "outputQty": "2329426538712928861942", + "swapFee1": "1391633966778809686", + "swapFee2": "1397282332649724043", "mpReserves": [ - "34300119363638121254261706", - "33789809664786540273331545", - "36465495118709835150644944" + "38021284558636807080423669", + "26155751384608705559436264", + "36917617001477098505085027" ], "fpReserves": [ - "5537581434998693333312848", - "5773873403883875214926615" + "2059139464653382911567611", + "3955855879544640901625223" ], - "mAssetSupply": "104555234047495009544412459", - "LPTokenSupply": "11271532311394811855505957" + "mAssetSupply": "101082877685200981129654072", + "LPTokenSupply": "5966921231879293431392876" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "394137776450393348243456", - "outputQty0": "395190865482627374292594", - "outputQty": "394986867278290363456848", - "swapFee1": "236482665870236008946", - "swapFee2": "158076346193050949717", + "inputQty": "686260696784665057427456", + "outputQty0": "687899839007922577354487", + "outputQty": "685790458068414299902248", + "swapFee1": "411756418070799034456", + "swapFee2": "412739903404753546412", "mpReserves": [ - "34300119363638121254261706", - "33394822797508249909874697", - "36465495118709835150644944" + "38021284558636807080423669", + "25469960926540291259534016", + "36917617001477098505085027" ], "fpReserves": [ - "5142390569516065959020254", - "5773873403883875214926615" + "1371239625645460334213124", + "3955855879544640901625223" ], - "mAssetSupply": "104160201258358575221069582", - "LPTokenSupply": "10877418183211005530863395" + "mAssetSupply": "100395390586096463305845997", + "LPTokenSupply": "5280701710736435453868865" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "12907060817172241580032", - "outputQty0": "12908731031241668141791", - "outputQty": "12908150367120446732918", - "swapFee": "10294388202482273405", - "mpReserves": [ - "34300119363638121254261706", - "33407729858325422151454729", - "36465495118709835150644944" - ], - "fpReserves": [ - "5155299300547307627162045", - "5760965253516754768193697" - ], - "mAssetSupply": "104173109989389816889211373", - "LPTokenSupply": "10877419212649825779090735" + "type": "redeem", + "outputIndex": 1, + "inputQty": "3293146882004982781968384", + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "319103085249169391616", - "outputIndex": 0, - "outputQty": "318727149031592077005", - "swapFee": "0", - "redemptionFee": "127546843280596186", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "366508685241958755467264", + "outputQty0": "367434169796136428895729", + "outputQty": "370148610005313554026729", + "swapFee": "293315012189302713711", "mpReserves": [ - "34299800636489089662184701", - "33407729858325422151454729", - "36465495118709835150644944" + "38021284558636807080423669", + "25836469611782250015001280", + "36917617001477098505085027" ], "fpReserves": [ - "5154980433439106136695970", - "5761284356602003937585313" + "1738673795441596763108853", + "3585707269539327347598494" ], - "mAssetSupply": "104172791249828458679341484", - "LPTokenSupply": "10877419212649825779090735" + "mAssetSupply": "100762824755892599734741726", + "LPTokenSupply": "5280731042237654384140236" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "15022763804098360770560", - "outputQty0": "15020335559311985940942", - "outputQty": "14972655147565209545356", + "type": "redeem", + "outputIndex": 1, + "inputQty": "33541362752881438720", + "outputQty0": "33663884228105912782", + "outputQty": "33560929886848680987", + "swapFee1": "20124817651728863", + "swapFee2": "20198330536863547", "mpReserves": [ - "34299800636489089662184701", - "33407729858325422151454729", - "36480517882513933511415504" + "38021284558636807080423669", + "25836436050852363166320293", + "36917617001477098505085027" ], "fpReserves": [ - "5170000768998418122636912", - "5761284356602003937585313" + "1738640131557368657196071", + "3585707269539327347598494" ], - "mAssetSupply": "104187811585387770665282426", - "LPTokenSupply": "10892391867797390988636091" + "mAssetSupply": "100762791112206702165692491", + "LPTokenSupply": "5280697502887383267874402" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "9113237396878492958720", - "outputQty0": "9111757952058239067087", - "outputQty": "9110929369311595320124", - "swapFee": "7266206866552681473", + "type": "swap_fp_to_mp", + "inputQty": "44911727579500536", + "outputIndex": 2, + "outputQty": "44659950682757067", + "swapFee": "0", + "redemptionFee": "26787875247605", "mpReserves": [ - "34299800636489089662184701", - "33407729858325422151454729", - "36489631119910812004374224" + "38021284558636807080423669", + "25836436050852363166320293", + "36917616956817147822327960" ], "fpReserves": [ - "5179112526950476361703999", - "5752173427232692342265189" + "1738640086910909911187541", + "3585707314451054927099030" ], - "mAssetSupply": "104196923343339828904349513", - "LPTokenSupply": "10892392594418077643904238" + "mAssetSupply": "100762791067587031294931566", + "LPTokenSupply": "5280697502887383267874402" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "42296618089120546816", - "outputQty0": "42298297168459478833", - "outputQty": "42163284305555036206", - "mpReserves": [ - "34299842933107178782731517", - "33407729858325422151454729", - "36489631119910812004374224" - ], - "fpReserves": [ - "5179154825247644821182832", - "5752173427232692342265189" - ], - "mAssetSupply": "104196965641636997363828346", - "LPTokenSupply": "10892434757702383198940444" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "63305912654068367360", - "outputIndex": 1, - "outputQty": "63228222604440387627", - "swapFee": "0", - "redemptionFee": "25304691656882653", + "inputIndex": 1, + "inputQty": "1056312274818163408896", + "outputQty0": "1058916803116541623130", + "outputQty": "1054427360708541423575", "mpReserves": [ - "34299842933107178782731517", - "33407666630102817711067102", - "36489631119910812004374224" + "38021284558636807080423669", + "25837492363127181329729189", + "36917616956817147822327960" ], "fpReserves": [ - "5179091563518502614549713", - "5752236733145346410632549" + "1739699003714026452810671", + "3585707314451054927099030" ], - "mAssetSupply": "104196902405212546814077880", - "LPTokenSupply": "10892434757702383198940444" + "mAssetSupply": "100763849984390147836554696", + "LPTokenSupply": "5281751930248091809297977" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1732458113106387402752", - "outputQty0": "1732682744161996561427", - "outputQty": "1732502214676264424655", - "swapFee": "1381721002200705615", + "inputIndex": 2, + "inputQty": "25412678034680979652608", + "outputQty0": "25389714079002263965025", + "outputQty": "25516789394891005529019", + "swapFee": "20224475816395053230", "mpReserves": [ - "34299842933107178782731517", - "33409399088215924098469854", - "36489631119910812004374224" + "38021284558636807080423669", + "25837492363127181329729189", + "36943029634851828801980568" ], "fpReserves": [ - "5180824246262664611111140", - "5750504230930670146207894" + "1765088717793028716775696", + "3560190525056163921570011" ], - "mAssetSupply": "104198635087956708810639307", - "LPTokenSupply": "10892434895874483419011005" + "mAssetSupply": "100789239698469150100519721", + "LPTokenSupply": "5281753952695673448803300" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "790852608377331768098816", - "outputQty0": "790863813901157674903681", - "outputQty": "790017258043554944245682", - "swapFee": "630513184123551862100", + "type": "redeem", + "outputIndex": 1, + "inputQty": "55416400772207269117952", + "outputQty0": "55621704543083944711077", + "outputQty": "55450968171558608942861", + "swapFee1": "33249840463324361470", + "swapFee2": "33373022725850366826", "mpReserves": [ - "35090695541484510550830333", - "33409399088215924098469854", - "36489631119910812004374224" + "38021284558636807080423669", + "25782041394955622720786328", + "36943029634851828801980568" ], "fpReserves": [ - "5971688060163822286014821", - "4960486972887115201962212" + "1709467013249944772064619", + "3560190525056163921570011" ], - "mAssetSupply": "104989498901857866485542988", - "LPTokenSupply": "10892497947192895774197215" + "mAssetSupply": "100733651366948792006175470", + "LPTokenSupply": "5226340876907512512121495" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "1739288423814661931008", - "outputQty0": "1745562898782195895515", - "outputQty": "1744592455021870673189", - "swapFee1": "1043573054288797158", - "swapFee2": "698225159512878358", + "outputIndex": 0, + "inputQty": "3477554079356280320", + "outputQty0": "3490020960903624392", + "outputQty": "3491887425534239559", + "swapFee1": "2086532447613768", + "swapFee2": "2094012576542174", "mpReserves": [ - "35090695541484510550830333", - "33407654495760902227796665", - "36489631119910812004374224" + "38021281066749381546184110", + "25782041394955622720786328", + "36943029634851828801980568" ], "fpReserves": [ - "5969942497265040090119306", - "4960486972887115201962212" + "1709463523228983868440227", + "3560190525056163921570011" ], - "mAssetSupply": "104987754037184243802525831", - "LPTokenSupply": "10890758763126386541145922" + "mAssetSupply": "100733647879021843679093252", + "LPTokenSupply": "5226337399562086400602551" }, { "type": "mint", "inputIndex": 1, - "inputQty": "336605424187250606866432", - "outputQty0": "336654033226312096096931", - "outputQty": "335213711434316836178662", + "inputQty": "5826917743500367872", + "outputQty0": "5841404071198524330", + "outputQty": "5817045337980444724", "mpReserves": [ - "35090695541484510550830333", - "33744259919948152834663097", - "36489631119910812004374224" + "38021281066749381546184110", + "25782047221873366221154200", + "36943029634851828801980568" ], "fpReserves": [ - "6306596530491352186216237", - "4960486972887115201962212" + "1709469364633055066964557", + "3560190525056163921570011" ], - "mAssetSupply": "105324408070410555898622762", - "LPTokenSupply": "11225972474560703377324584" + "mAssetSupply": "100733653720425914877617582", + "LPTokenSupply": "5226343216607424381047275" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "8380533456986393542656", - "outputQty0": "8379461531754174711763", - "outputQty": "8342884106775165171022", + "inputQty": "169481727658498711355392", + "outputQty0": "169325156427871933566237", + "outputQty": "170078841091239058266909", + "swapFee": "134846673269329913569", "mpReserves": [ - "35090695541484510550830333", - "33744259919948152834663097", - "36498011653367798397916880" + "38021281066749381546184110", + "25782047221873366221154200", + "37112511362510327513335960" ], "fpReserves": [ - "6314975992023106360928000", - "4960486972887115201962212" + "1878794521060927000530794", + "3390111683964924863303102" ], - "mAssetSupply": "105332787531942310073334525", - "LPTokenSupply": "11234315358667478542495606" + "mAssetSupply": "100902978876853786811183819", + "LPTokenSupply": "5226356701274751314038631" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "187397610441416405680128", - "outputQty0": "188097814478594908349714", - "outputQty": "187996344024505715794906", - "swapFee1": "112438566264849843408", - "swapFee2": "75239125791437963339", + "type": "mint", + "inputIndex": 2, + "inputQty": "252887237065106188664832", + "outputQty0": "252645952107454319056737", + "outputQty": "251237106442906410423418", "mpReserves": [ - "35090695541484510550830333", - "33556263575923647118868191", - "36498011653367798397916880" + "38021281066749381546184110", + "25782047221873366221154200", + "37365398599575433702000792" ], "fpReserves": [ - "6126878177544511452578286", - "4960486972887115201962212" + "2131440473168381319587531", + "3390111683964924863303102" ], - "mAssetSupply": "105144764956589506602948150", - "LPTokenSupply": "11046928992082688621799818" + "mAssetSupply": "101155624828961241130240556", + "LPTokenSupply": "5477593807717657724462049" }, { "type": "swap_fp_to_mp", - "inputQty": "4546081214194385920", - "outputIndex": 2, - "outputQty": "4551351105262049204", + "inputQty": "24958209972603451342848", + "outputIndex": 0, + "outputQty": "24885133218946510140433", "swapFee": "0", - "redemptionFee": "1821024631129832", + "redemptionFee": "14923534772308408630", "mpReserves": [ - "35090695541484510550830333", - "33556263575923647118868191", - "36498007102016693135867676" + "37996395933530435036043677", + "25782047221873366221154200", + "37365398599575433702000792" ], "fpReserves": [ - "6126873624982933627996576", - "4960491518968329396348132" + "2106567915214533971869799", + "3415069893937528314645950" ], - "mAssetSupply": "105144760405848953409496272", - "LPTokenSupply": "11046928992082688621799818" + "mAssetSupply": "101130767194542166090931454", + "LPTokenSupply": "5477593807717657724462049" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "6348658494514108825600", - "outputQty0": "6349584151682351257857", - "outputQty": "6335422128370972990630", - "swapFee": "5057907595725057535", + "inputQty": "1292877502410932224", + "outputQty0": "1296148695324367089", + "outputQty": "1288610166163936830", "mpReserves": [ - "35090695541484510550830333", - "33562612234418161227693791", - "36498007102016693135867676" + "37996395933530435036043677", + "25782048514750868632086424", + "37365398599575433702000792" ], "fpReserves": [ - "6133223209134615979254433", - "4954156096839958423357502" + "2106569211363229296236888", + "3415069893937528314645950" ], - "mAssetSupply": "105151109990000635760754129", - "LPTokenSupply": "11046929497873448194305571" + "mAssetSupply": "101130768490690861415298543", + "LPTokenSupply": "5477595096327823888398879" }, { "type": "swap_fp_to_mp", - "inputQty": "944002800494491467776", + "inputQty": "684221594241057700184064", "outputIndex": 0, - "outputQty": "944989895294356816868", + "outputQty": "680044504484063076170183", "swapFee": "0", - "redemptionFee": "378145047679493502", + "redemptionFee": "407840627671560785556", "mpReserves": [ - "35089750551589216194013465", - "33562612234418161227693791", - "36498007102016693135867676" + "37316351429046371959873494", + "25782048514750868632086424", + "37365398599575433702000792" ], "fpReserves": [ - "6132277846515417245497353", - "4955100099640452914825278" + "1426834831910627986975283", + "4099291488178586014830014" ], - "mAssetSupply": "105150165005526484706490551", - "LPTokenSupply": "11046929497873448194305571" + "mAssetSupply": "100451441951865931666822494", + "LPTokenSupply": "5477595096327823888398879" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "1369727430451198208", - "outputQty0": "1374801602169880408", - "outputQty": "1374259524202857378", - "swapFee1": "821836458270718", - "swapFee2": "549920640867952", + "outputIndex": 1, + "inputQty": "63253441715160924291072", + "outputQty0": "63244456491101616984303", + "outputQty": "63051085829248005759411", + "swapFee1": "37952065029096554574", + "swapFee2": "37946673894660970190", "mpReserves": [ - "35089749177329691991156087", - "33562612234418161227693791", - "36498007102016693135867676" + "37316351429046371959873494", + "25718997428921620626327013", + "37365398599575433702000792" ], "fpReserves": [ - "6132276471713815075616945", - "4955100099640452914825278" + "1363590375419526369990980", + "4099291488178586014830014" ], - "mAssetSupply": "105150163631274803177478095", - "LPTokenSupply": "11046928128228201388934434" + "mAssetSupply": "100388235442048724710808381", + "LPTokenSupply": "5414345449819165873763264" }, { "type": "mint", "inputIndex": 1, - "inputQty": "314348203768221513285632", - "outputQty0": "314390554184537730082081", - "outputQty": "313017553634207269639112", + "inputQty": "3651848681160939929600", + "outputQty0": "3660885489023661707668", + "outputQty": "3660350369577653566109", "mpReserves": [ - "35089749177329691991156087", - "33876960438186382740979423", - "36498007102016693135867676" + "37316351429046371959873494", + "25722649277602781566256613", + "37365398599575433702000792" ], "fpReserves": [ - "6446667025898352805699026", - "4955100099640452914825278" + "1367251260908550031698648", + "4099291488178586014830014" ], - "mAssetSupply": "105464554185459340907560176", - "LPTokenSupply": "11359945681862408658573546" + "mAssetSupply": "100391896327537748372516049", + "LPTokenSupply": "5418005800188743527329373" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "662727150001659685371904", + "outputIndex": 0, + "hardLimitError": true }, { "type": "mint", - "inputIndex": 2, - "inputQty": "166900045430899066535936", - "outputQty0": "166878539701879973782846", - "outputQty": "166130173188985902537634", + "inputIndex": 1, + "inputQty": "5389997649540720623616", + "outputQty0": "5403327816479709743969", + "outputQty": "5402266602497770538691", "mpReserves": [ - "35089749177329691991156087", - "33876960438186382740979423", - "36664907147447592202403612" + "37316351429046371959873494", + "25728039275252322286880229", + "37365398599575433702000792" ], "fpReserves": [ - "6613545565600232779481872", - "4955100099640452914825278" + "1372654588725029741442617", + "4099291488178586014830014" ], - "mAssetSupply": "105631432725161220881343022", - "LPTokenSupply": "11526075855051394561111180" + "mAssetSupply": "100397299655354228082260018", + "LPTokenSupply": "5423408066791241297868064" }, { - "type": "swap_fp_to_mp", - "inputQty": "7942988508746122240", - "outputIndex": 1, - "outputQty": "7954508367937146979", - "swapFee": "0", - "redemptionFee": "3183487970862133", + "type": "redeem", + "outputIndex": 2, + "inputQty": "308213520387274833920", + "outputQty0": "308097748432762883193", + "outputQty": "308228513819472393920", + "swapFee1": "184928112232364900", + "swapFee2": "184858649059657729", "mpReserves": [ - "35089749177329691991156087", - "33876952483678014803832444", - "36664907147447592202403612" + "37316351429046371959873494", + "25728039275252322286880229", + "37365090371061614229606872" ], "fpReserves": [ - "6613537606880305624147928", - "4955108042628961660947518" + "1372346490976596978559424", + "4099291488178586014830014" ], - "mAssetSupply": "105631424769624781696871211", - "LPTokenSupply": "11526075855051394561111180" + "mAssetSupply": "100396991742464444379034554", + "LPTokenSupply": "5423099871763665246270634" }, { "type": "swap_fp_to_mp", - "inputQty": "186146758674589625090048", + "inputQty": "5165811340595428327424", "outputIndex": 0, - "outputQty": "186393780905632880219402", + "outputQty": "5108024052684601450965", "swapFee": "0", - "redemptionFee": "74588513948209323462", - "mpReserves": [ - "34903355396424059110936685", - "33876952483678014803832444", - "36664907147447592202403612" - ], - "fpReserves": [ - "6427066322009782315490763", - "5141254801303551286037566" - ], - "mAssetSupply": "105445028073268206597537508", - "LPTokenSupply": "11526075855051394561111180" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "60523394316448118603776", - "outputQty0": "60748617770782560775771", - "outputQty": "60732677217461137194810", - "swapFee1": "36314036589868871162", - "swapFee2": "24299447108313024310", + "redemptionFee": "3063546327813506785", "mpReserves": [ - "34903355396424059110936685", - "33876952483678014803832444", - "36604174470230131065208802" + "37311243404993687358422529", + "25728039275252322286880229", + "37365090371061614229606872" ], "fpReserves": [ - "6366317704238999754714992", - "5141254801303551286037566" + "1367240580430241133917526", + "4104457299519181443157438" ], - "mAssetSupply": "105384303754944532349786047", - "LPTokenSupply": "11465556092138605429394520" + "mAssetSupply": "100391888895464416347899441", + "LPTokenSupply": "5423099871763665246270634" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "21804357162924744114176", - "outputQty0": "21801380877905679230808", - "outputQty": "21751960193821925324013", - "swapFee": "17366132589048219590", + "inputQty": "161714076512872942272512", + "outputQty0": "161546583774632187267037", + "outputQty": "161392367331672337205035", "mpReserves": [ - "34903355396424059110936685", - "33876952483678014803832444", - "36625978827393055809322978" + "37311243404993687358422529", + "25728039275252322286880229", + "37526804447574487171879384" ], "fpReserves": [ - "6388119085116905433945800", - "5119502841109729360713553" + "1528787164204873321184563", + "4104457299519181443157438" ], - "mAssetSupply": "105406105135822438029016855", - "LPTokenSupply": "11465557828751864334216479" + "mAssetSupply": "100553435479239048535166478", + "LPTokenSupply": "5584492239095337583475669" }, { - "type": "swap_fp_to_mp", - "inputQty": "738565510277765393285120", - "outputIndex": 2, - "outputQty": "738811323482470360663686", - "swapFee": "0", - "redemptionFee": "295608676842856105627", + "type": "mint", + "inputIndex": 0, + "inputQty": "234136640184175720136704", + "outputQty0": "233898013534403010085218", + "outputQty": "233311655494585010055270", "mpReserves": [ - "34903355396424059110936685", - "33876952483678014803832444", - "35887167503910585448659292" + "37545380045177863078559233", + "25728039275252322286880229", + "37526804447574487171879384" ], "fpReserves": [ - "5649097393009765169875976", - "5858068351387494753998673" + "1762685177739276331269781", + "4104457299519181443157438" ], - "mAssetSupply": "104667379052392140621052658", - "LPTokenSupply": "11465557828751864334216479" + "mAssetSupply": "100787333492773451545251696", + "LPTokenSupply": "5817803894589922593530939" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1083412203591095591895040", - "outputQty0": "1083479952434889217141944", - "outputQty": "1079374614286409758005997", + "inputQty": "123317588476654956576768", + "outputQty0": "123625347315731148242572", + "outputQty": "123187074176789500086789", "mpReserves": [ - "34903355396424059110936685", - "34960364687269110395727484", - "35887167503910585448659292" + "37545380045177863078559233", + "25851356863728977243456997", + "37526804447574487171879384" ], "fpReserves": [ - "6732577345444654387017920", - "5858068351387494753998673" + "1886310525055007479512353", + "4104457299519181443157438" ], - "mAssetSupply": "105750859004827029838194602", - "LPTokenSupply": "12544932443038274092222476" + "mAssetSupply": "100910958840089182693494268", + "LPTokenSupply": "5940990968766712093617728" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "47723183297414326910976", - "outputQty0": "47724412871176760108071", - "outputQty": "47639496957511191300202", - "swapFee": "38024046222390768099", + "type": "swap_fp_to_mp", + "inputQty": "29124772791887994028032", + "outputIndex": 2, + "outputQty": "28942066572102443772529", + "swapFee": "0", + "redemptionFee": "17358007936334717046", "mpReserves": [ - "34903355396424059110936685", - "35008087870566524722638460", - "35887167503910585448659292" + "37545380045177863078559233", + "25851356863728977243456997", + "37497862381002384728106855" ], "fpReserves": [ - "6780301758315831147125991", - "5810428854429983562698471" + "1857380511827782951100856", + "4133582072311069437185470" ], - "mAssetSupply": "105798583417698206598302673", - "LPTokenSupply": "12544936245442896331299285" + "mAssetSupply": "100882046184869894499799817", + "LPTokenSupply": "5940990968766712093617728" }, { "type": "mint", "inputIndex": 0, - "inputQty": "846715987252679194705920", - "outputQty0": "846722334640978068440037", - "outputQty": "843082073066115755298896", + "inputQty": "194667641410656187449344", + "outputQty0": "194465643705278576503681", + "outputQty": "193674526863444082430658", "mpReserves": [ - "35750071383676738305642605", - "35008087870566524722638460", - "35887167503910585448659292" + "37740047686588519266008577", + "25851356863728977243456997", + "37497862381002384728106855" ], "fpReserves": [ - "7627024092956809215566028", - "5810428854429983562698471" + "2051846155533061527604537", + "4133582072311069437185470" ], - "mAssetSupply": "106645305752339184666742710", - "LPTokenSupply": "13388018318509012086598181" + "mAssetSupply": "101076511828575173076303498", + "LPTokenSupply": "6134665495630156176048386" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "13840323762623176769536", - "outputQty0": "13840055758355883266483", - "outputQty": "13803113355155874522226", - "swapFee": "11022420265436909611", - "mpReserves": [ - "35763911707439361482412141", - "35008087870566524722638460", - "35887167503910585448659292" - ], - "fpReserves": [ - "7640864148715165098832511", - "5796625741074827688176245" - ], - "mAssetSupply": "106659145808097540550009193", - "LPTokenSupply": "13388019420751038630289142" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "922532277929943891968", - "outputIndex": 0, - "outputQty": "923922984926111622924", - "swapFee": "0", - "redemptionFee": "369709774527504154", - "mpReserves": [ - "35762987784454435370789217", - "35008087870566524722638460", - "35887167503910585448659292" - ], - "fpReserves": [ - "7639939874278846338447409", - "5797548273352757632068213" - ], - "mAssetSupply": "106658221903370996317128245", - "LPTokenSupply": "13388019420751038630289142" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "30208676657989049909248", - "outputQty0": "30326592339648610026269", - "outputQty": "30312871096973256333500", - "swapFee1": "18125205994793429945", - "swapFee2": "12130636935859444010", + "inputIndex": 1, + "inputQty": "109619597624949302362112", + "outputQty0": "109891078995109004891573", + "outputQty": "110378416165981356697778", + "swapFee": "87504546162293658926", "mpReserves": [ - "35762987784454435370789217", - "34977774999469551466304960", - "35887167503910585448659292" + "37740047686588519266008577", + "25960976461353926545819109", + "37497862381002384728106855" ], "fpReserves": [ - "7609613281939197728421140", - "5797548273352757632068213" + "2161737234528170532496110", + "4023203656145088080487692" ], - "mAssetSupply": "106627907441668283566545986", - "LPTokenSupply": "13357812556613649059722888" + "mAssetSupply": "101186402907570282081195071", + "LPTokenSupply": "6134674246084772405414278" }, { - "type": "swap_fp_to_mp", - "inputQty": "142255835962084371202048", - "outputIndex": 2, - "outputQty": "142445093444885484986222", - "swapFee": "0", - "redemptionFee": "56999255925919542771", + "type": "mint", + "inputIndex": 2, + "inputQty": "1151354678913435303936", + "outputQty0": "1150215368468746829597", + "outputQty": "1144438715369423204007", "mpReserves": [ - "35762987784454435370789217", - "34977774999469551466304960", - "35744722410465699963673070" + "37740047686588519266008577", + "25960976461353926545819109", + "37499013735681298163410791" ], "fpReserves": [ - "7467115142124398871491258", - "5939804109314842003270261" + "2162887449896639279325707", + "4023203656145088080487692" ], - "mAssetSupply": "106485466301109410629158875", - "LPTokenSupply": "13357812556613649059722888" + "mAssetSupply": "101187553122938750828024668", + "LPTokenSupply": "6135818684800141828618285" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "39036731975355032666112", - "outputQty0": "39183294080652871040045", - "outputQty": "39165653366455308254797", - "swapFee1": "23422039185213019599", - "swapFee2": "15673317632261148416", + "type": "mint", + "inputIndex": 0, + "inputQty": "211967368666283847450624", + "outputQty0": "211743958476176955133643", + "outputQty": "210617543914184863488617", "mpReserves": [ - "35762987784454435370789217", - "34938609346103096158050163", - "35744722410465699963673070" + "37952015055254803113459201", + "25960976461353926545819109", + "37499013735681298163410791" ], "fpReserves": [ - "7427931848043746000451213", - "5939804109314842003270261" + "2374631408372816234459350", + "4023203656145088080487692" ], - "mAssetSupply": "106446298680346390019267246", - "LPTokenSupply": "13318778166842212548358735" + "mAssetSupply": "101399297081414927783158311", + "LPTokenSupply": "6346436228714326692106902" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "79835824373414833946624", - "outputQty0": "79833529575803707009492", - "outputQty": "79486394539889336042444", + "inputIndex": 1, + "inputQty": "37723347797645759348736", + "outputQty0": "37816768263243959050653", + "outputQty": "37603574464567980156375", "mpReserves": [ - "35842823608827850204735841", - "34938609346103096158050163", - "35744722410465699963673070" + "37952015055254803113459201", + "25998699809151572305167845", + "37499013735681298163410791" ], "fpReserves": [ - "7507765377619549707460705", - "5939804109314842003270261" + "2412448176636060193510003", + "4023203656145088080487692" ], - "mAssetSupply": "106526132209922193726276738", - "LPTokenSupply": "13398264561382101884401179" + "mAssetSupply": "101437113849678171742208964", + "LPTokenSupply": "6384039803178894672263277" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "154492365109524", - "outputQty0": "155076557493757", - "outputQty": "155006155920742", - "swapFee1": "92695419065", - "swapFee2": "62030622997", + "inputQty": "128908702846733055426560", + "outputQty0": "129547217165093404947204", + "outputQty": "129147771726324770091624", + "swapFee1": "77345221708039833255", + "swapFee2": "77728330299056042968", "mpReserves": [ - "35842823608827850204735841", - "34938609345948090002129421", - "35744722410465699963673070" + "37952015055254803113459201", + "25869552037425247535076221", + "37499013735681298163410791" ], "fpReserves": [ - "7507765377464473149966948", - "5939804109314842003270261" + "2282900959470966788562799", + "4023203656145088080487692" ], - "mAssetSupply": "106526132209767179199405978", - "LPTokenSupply": "13398264561227618788833561" + "mAssetSupply": "101307644360843377393304728", + "LPTokenSupply": "6255138834854332420820042" }, { "type": "mint", "inputIndex": 1, - "inputQty": "40722280963490078261248", - "outputQty0": "40724426707497654597663", - "outputQty": "40546326651197376757567", + "inputQty": "27023342873551199797248", + "outputQty0": "27091102170101640875105", + "outputQty": "26944558756184850301472", "mpReserves": [ - "35842823608827850204735841", - "34979331626911580080390669", - "35744722410465699963673070" + "37952015055254803113459201", + "25896575380298798734873469", + "37499013735681298163410791" ], "fpReserves": [ - "7548489804171970804564611", - "5939804109314842003270261" + "2309992061641068429437904", + "4023203656145088080487692" ], - "mAssetSupply": "106566856636474676854003641", - "LPTokenSupply": "13438810887878816165591128" + "mAssetSupply": "101334735463013479034179833", + "LPTokenSupply": "6282083393610517271121514" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1692303966515238400", - "outputQty0": "1692268640715700167", - "outputQty": "1684853594745705658", + "inputIndex": 1, + "inputQty": "140118266970249170518016", + "outputQty0": "140465857638662261740998", + "outputQty": "139677095460851441033640", "mpReserves": [ - "35842823608827850204735841", - "34979331626911580080390669", - "35744724102769666478911470" + "37952015055254803113459201", + "26036693647269047905391485", + "37499013735681298163410791" ], "fpReserves": [ - "7548491496440611520264778", - "5939804109314842003270261" + "2450457919279730691178902", + "4023203656145088080487692" ], - "mAssetSupply": "106566858328743317569703808", - "LPTokenSupply": "13438812572732410911296786" + "mAssetSupply": "101475201320652141295920831", + "LPTokenSupply": "6421760489071368712155154" }, { - "type": "swap_fp_to_mp", - "inputQty": "371711019643082244096", - "outputIndex": 2, - "outputQty": "372174306730189380488", - "swapFee": "0", - "redemptionFee": "148926187302069746", + "type": "redeem", + "outputIndex": 1, + "inputQty": "81875401309790381539328", + "outputQty0": "82294095267737645562874", + "outputQty": "82041958009883600794132", + "swapFee1": "49125240785874228923", + "swapFee2": "49376457160642587337", "mpReserves": [ - "35842823608827850204735841", - "34979331626911580080390669", - "35744351928462936289530982" + "37952015055254803113459201", + "25954651689259164304597353", + "37499013735681298163410791" ], "fpReserves": [ - "7548119180972356345898102", - "5940175820334485085514357" + "2368163824011993045616028", + "4023203656145088080487692" ], - "mAssetSupply": "106566486162201249697406878", - "LPTokenSupply": "13438812572732410911296786" + "mAssetSupply": "101392956601841564292945294", + "LPTokenSupply": "6339890000285656918038718" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "375367779812173269696512", - "outputQty0": "375355638173062832480895", - "outputQty": "373682437262809614918870", + "type": "swap_fp_to_mp", + "inputQty": "287425701440658109104128", + "outputIndex": 1, + "outputQty": "285127518506464522759170", + "swapFee": "0", + "redemptionFee": "171612376735380807432", "mpReserves": [ - "35842823608827850204735841", - "34979331626911580080390669", - "36119719708275109559227494" + "37952015055254803113459201", + "25669524170752699781838183", + "37499013735681298163410791" ], "fpReserves": [ - "7923474819145419178378997", - "5940175820334485085514357" + "2082143196119691699895976", + "4310629357585746189591820" ], - "mAssetSupply": "106941841800374312529887773", - "LPTokenSupply": "13812495009995220526215656" + "mAssetSupply": "101107107586325998328032674", + "LPTokenSupply": "6339890000285656918038718" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "559815619145499823570944", - "outputQty0": "559781701950925868695919", - "outputQty": "557183767143203293174114", + "inputQty": "198074423662446720", + "outputQty0": "197874733611308388", + "outputQty": "198900025525598775", + "swapFee": "157622759330065", "mpReserves": [ - "35842823608827850204735841", - "34979331626911580080390669", - "36679535327420609382798438" + "37952015055254803113459201", + "25669524170752699781838183", + "37499013933755721825857511" ], "fpReserves": [ - "8483256521096345047074916", - "5940175820334485085514357" + "2082143393994425311204364", + "4310629158685720663993045" ], - "mAssetSupply": "107501623502325238398583692", - "LPTokenSupply": "14369678777138423819389770" + "mAssetSupply": "101107107784200731939341062", + "LPTokenSupply": "6339890000301419193971724" }, { "type": "swap_fp_to_mp", - "inputQty": "29022493731829673984", - "outputIndex": 0, - "outputQty": "29083143617488152576", - "swapFee": "0", - "redemptionFee": "11637895727839564", - "mpReserves": [ - "35842794525684232716583265", - "34979331626911580080390669", - "36679535327420609382798438" - ], - "fpReserves": [ - "8483227426357025448164008", - "5940204842828216915188341" - ], - "mAssetSupply": "107501594419223814527512348", - "LPTokenSupply": "14369678777138423819389770" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "3045209062961102979072", + "inputQty": "4947590555493505957888", "outputIndex": 2, - "outputQty": "3051793539778402597263", + "outputQty": "4920055994570296848222", "swapFee": "0", - "redemptionFee": "1221111656314464419", + "redemptionFee": "2950829011141663476", "mpReserves": [ - "35842794525684232716583265", - "34979331626911580080390669", - "36676483533880830980201175" + "37952015055254803113459201", + "25669524170752699781838183", + "37494093877761151529009289" ], "fpReserves": [ - "8480174647216239287115466", - "5943250051891178018167413" + "2077225345642522538742985", + "4315576749241214169950933" ], - "mAssetSupply": "107498542861194684680928225", - "LPTokenSupply": "14369678777138423819389770" + "mAssetSupply": "101102192686677840308543159", + "LPTokenSupply": "6339890000301419193971724" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3804469195081431121920", - "outputQty0": "3804175514924609784601", - "outputQty": "3791703250751169064190", - "swapFee": "3028899486928652983", + "inputIndex": 0, + "inputQty": "1513631388325659017216", + "outputQty0": "1511964224401628489028", + "outputQty": "1519851170089690001526", + "swapFee": "1204427975451939637", "mpReserves": [ - "35842794525684232716583265", - "34979331626911580080390669", - "36680288003075912411323095" + "37953528686643128772476417", + "25669524170752699781838183", + "37494093877761151529009289" ], "fpReserves": [ - "8483978822731163896900067", - "5939458348640426849103223" + "2078737309866924167232013", + "4314056898071124479949407" ], - "mAssetSupply": "107502347036709609290712826", - "LPTokenSupply": "14369679080028372512255068" + "mAssetSupply": "101103704650902241937032187", + "LPTokenSupply": "6339890120744216739165687" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "57302421209947387723776", - "outputQty0": "57306933706454903101471", - "outputQty": "57034229347417077069769", + "type": "swap_fp_to_mp", + "inputQty": "49089641889153366884352", + "outputIndex": 1, + "outputQty": "48631059058015353270591", + "swapFee": "0", + "redemptionFee": "29271607771213892491", "mpReserves": [ - "35842794525684232716583265", - "35036634048121527468114445", - "36680288003075912411323095" + "37953528686643128772476417", + "25620893111694684428567592", + "37494093877761151529009289" ], "fpReserves": [ - "8541285756437618800001538", - "5939458348640426849103223" + "2029951296914901013080226", + "4363146539960277846833759" ], - "mAssetSupply": "107559653970416064193814297", - "LPTokenSupply": "14426713309375789589324837" + "mAssetSupply": "101054947909557989996772891", + "LPTokenSupply": "6339890120744216739165687" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "518903208728029390962688", - "outputQty0": "518934459522415147477015", - "outputQty": "516891392102150293544121", - "swapFee": "413128256597963820988", + "type": "swap_fp_to_mp", + "inputQty": "79453783628741", + "outputIndex": 0, + "outputQty": "78985690307630", + "swapFee": "0", + "redemptionFee": "47367373592", "mpReserves": [ - "35842794525684232716583265", - "35555537256849556859077133", - "36680288003075912411323095" + "37953528686564143082168787", + "25620893111694684428567592", + "37494093877761151529009289" ], "fpReserves": [ - "9060220215960033947478553", - "5422566956538276555559102" + "2029951296835955390426184", + "4363146540039731630462500" ], - "mAssetSupply": "108078588429938479341291312", - "LPTokenSupply": "14426754622201449385706935" + "mAssetSupply": "101054947909479091741492441", + "LPTokenSupply": "6339890120744216739165687" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "33345313738179366354944", - "outputQty0": "33346735835279137295587", - "outputQty": "33192700798327299487150", - "swapFee": "26536329449229204421", + "inputQty": "10783918148453419008", + "outputQty0": "10811874428267932504", + "outputQty": "10872763124831706009", + "swapFee": "8615116521443402", "mpReserves": [ - "35842794525684232716583265", - "35588882570587736225432077", - "36680288003075912411323095" + "37953528686564143082168787", + "25620903895612832881986600", + "37494093877761151529009289" ], "fpReserves": [ - "9093566951795313084774140", - "5389374255739949256071952" + "2029962108710383658358688", + "4363135667276606798756491" ], - "mAssetSupply": "108111935165773758478586899", - "LPTokenSupply": "14426757275834394308627377" + "mAssetSupply": "101054958721353520009424945", + "LPTokenSupply": "6339890121605728391310027" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3536385106708380160", - "outputQty0": "3536532204927409621", - "outputQty": "3517732191962540492", + "type": "redeem", + "outputIndex": 1, + "inputQty": "4941424070271358205952", + "outputQty0": "4958118235951222649178", + "outputQty": "4942326836033757949712", + "swapFee1": "2964854442162814923", + "swapFee2": "2974870941570733589", "mpReserves": [ - "35842794525684232716583265", - "35588886106972842933812237", - "36680288003075912411323095" + "37953528686564143082168787", + "25615961568776799124036888", + "37494093877761151529009289" ], "fpReserves": [ - "9093570488327518012183761", - "5389374255739949256071952" + "2025003990474432435709510", + "4363135667276606798756491" ], - "mAssetSupply": "108111938702305963405996520", - "LPTokenSupply": "14426760793566586271167869" + "mAssetSupply": "101050003577988510357509356", + "LPTokenSupply": "6334948994020901249385567" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "262703003474707644416", - "outputQty0": "262687626245060462370", - "outputQty": "261462568379896235153", - "swapFee": "209032944163410083", + "type": "swap_fp_to_mp", + "inputQty": "235823308197487257321472", + "outputIndex": 2, + "outputQty": "234129196047209013807080", + "swapFee": "0", + "redemptionFee": "140421755287484816257", "mpReserves": [ - "35842794525684232716583265", - "35588886106972842933812237", - "36680550706079387118967511" + "37953528686564143082168787", + "25615961568776799124036888", + "37259964681713942515202209" ], "fpReserves": [ - "9093833175953763072646131", - "5389112793171569359836799" + "1790967731661957741947393", + "4598958975474094056077963" ], - "mAssetSupply": "108112201389932208466458890", - "LPTokenSupply": "14426760814469880687508877" + "mAssetSupply": "100816107740931323148563496", + "LPTokenSupply": "6334948994020901249385567" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "124432866453888859897856", - "outputQty0": "124437556133757298993936", - "outputQty": "123836311787967933645463", - "swapFee": "99018535634170554736", + "inputQty": "1625991138153459351552", + "outputQty0": "1630165962759279905295", + "outputQty": "1643408732392904831537", + "swapFee": "1301204507562196100", "mpReserves": [ - "35842794525684232716583265", - "35713318973426731793710093", - "36680550706079387118967511" + "37953528686564143082168787", + "25617587559914952583388440", + "37259964681713942515202209" ], "fpReserves": [ - "9218270732087520371640067", - "5265276481383601426191336" + "1792597897624717021852688", + "4597315566741701151246426" ], - "mAssetSupply": "108236638946065965765452826", - "LPTokenSupply": "14426770716323444104564350" + "mAssetSupply": "100817737906894082428468791", + "LPTokenSupply": "6334949124141352005605177" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "1148845935612503615602688", - "outputQty0": "1154191059303249127835706", - "outputQty": "1153752292008951445079505", - "swapFee1": "689307561367502169361", - "swapFee2": "461676423721299651134", + "outputIndex": 0, + "inputQty": "100323982595207152", + "outputQty0": "100490373191633479", + "outputQty": "100542935751632483", + "swapFee1": "60194389557124", + "swapFee2": "60294223914980", "mpReserves": [ - "35842794525684232716583265", - "35713318973426731793710093", - "35526798414070435673888006" + "37953528586021207330536304", + "25617587559914952583388440", + "37259964681713942515202209" ], "fpReserves": [ - "8064079672784271243804361", - "5265276481383601426191336" + "1792597797134343830219209", + "4597315566741701151246426" ], - "mAssetSupply": "107082909563186437937268254", - "LPTokenSupply": "13277993711467077239178598" + "mAssetSupply": "100817737806464003460750292", + "LPTokenSupply": "6334949023823388849353737" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "16251379940495628173312", - "outputQty0": "16251342653121881093132", - "outputQty": "16188694567181074997717", - "swapFee": "12935371309594874302", + "inputIndex": 2, + "inputQty": "331175203017242836992", + "outputQty0": "330850695046217132047", + "outputQty": "333534349134322662981", + "swapFee": "264083478759583908", "mpReserves": [ - "35842794525684232716583265", - "35729570353367227421883405", - "35526798414070435673888006" + "37953528586021207330536304", + "25617587559914952583388440", + "37260295856916959758039201" ], "fpReserves": [ - "8080331015437393124897493", - "5249087786816420351193619" + "1792928647829390047351256", + "4596982032392566828583445" ], - "mAssetSupply": "107099160905839559818361386", - "LPTokenSupply": "13277995005004208198666028" + "mAssetSupply": "100818068657159049677882339", + "LPTokenSupply": "6334949050231736725312127" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "13790869143417096192", - "outputQty0": "13790685939753202569", - "outputQty": "13737235974870873445", - "swapFee": "10976639038042155", + "inputIndex": 1, + "inputQty": "559814784224752320", + "outputQty0": "561252011753977192", + "outputQty": "565803381647006406", + "swapFee": "447987874811595", "mpReserves": [ - "35842808316553376133679457", - "35729570353367227421883405", - "35526798414070435673888006" + "37953528586021207330536304", + "25617588119729736808140760", + "37260295856916959758039201" ], "fpReserves": [ - "8080344806123332878100062", - "5249074049580445480320174" + "1792929209081401801328448", + "4596981466589185181577039" ], - "mAssetSupply": "107099174696525499571563955", - "LPTokenSupply": "13277995006101872102470243" + "mAssetSupply": "100818069218411061431859531", + "LPTokenSupply": "6334949050276535512793286" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "9732280249284743397376", - "outputQty0": "9775963602970893853141", - "outputQty": "9772180100099381378202", - "swapFee1": "5839368149570846038", - "swapFee2": "3910385441188357541", + "inputQty": "390512150533517934592", + "outputQty0": "391160503450711511868", + "outputQty": "391365085029088437037", + "swapFee1": "234307290320110760", + "swapFee2": "234696302070426907", "mpReserves": [ - "35833036136453276752301255", - "35729570353367227421883405", - "35526798414070435673888006" + "37953137220936178242099267", + "25617588119729736808140760", + "37260295856916959758039201" ], "fpReserves": [ - "8070568842520361984246921", - "5249074049580445480320174" + "1792538048577951089816580", + "4596981466589185181577039" ], - "mAssetSupply": "107089402643307969866068355", - "LPTokenSupply": "13268263309789402316157470" + "mAssetSupply": "100817678292603912790774570", + "LPTokenSupply": "6334558561556731026869770" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "81046306480921280", - "outputQty0": "81409955239726197", - "outputQty": "81378423398872994", - "swapFee1": "48627783888552", - "swapFee2": "32563982095890", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "21723747681930792960", + "outputQty0": "21702460180589079344", + "outputQty": "21878525022220670828", + "swapFee": "17322810322484607", "mpReserves": [ - "35833036055074853353428261", - "35729570353367227421883405", - "35526798414070435673888006" + "37953137220936178242099267", + "25617588119729736808140760", + "37260317580664641688832161" ], "fpReserves": [ - "8070568761110406744520724", - "5249074049580445480320174" + "1792559751038131678895924", + "4596959588064162960906211" ], - "mAssetSupply": "107089402561930578608438048", - "LPTokenSupply": "13268263228747958613625045" + "mAssetSupply": "100817699995064093379853914", + "LPTokenSupply": "6334558563289012059118230" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "4966337565813200912384", - "outputQty0": "4988616150136930096338", - "outputQty": "4986540909403369956354", - "swapFee1": "2979802539487920547", - "swapFee2": "1995446460054772038", + "type": "swap_fp_to_mp", + "inputQty": "34548880414588841984", + "outputIndex": 1, + "outputQty": "34135251867796319403", + "swapFee": "0", + "redemptionFee": "20546059832790442", "mpReserves": [ - "35833036055074853353428261", - "35729570353367227421883405", - "35521811873161032303931652" + "37953137220936178242099267", + "25617553984477869011821357", + "37260317580664641688832161" ], "fpReserves": [ - "8065580144960269814424386", - "5249074049580445480320174" + "1792525507605077028158501", + "4596994136944577549748195" ], - "mAssetSupply": "107084415941226901733113748", - "LPTokenSupply": "13263297189162399361504715" + "mAssetSupply": "100817665772177098561906933", + "LPTokenSupply": "6334558563289012059118230" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "184769204676492492800", - "outputQty0": "185597908648317315216", - "outputQty": "185520670736962269914", - "swapFee1": "110861522805895495", - "swapFee2": "74239163459326926", + "type": "mint", + "inputIndex": 0, + "inputQty": "74096201191297286144", + "outputQty0": "74013035232478554633", + "outputQty": "73846103520853169686", "mpReserves": [ - "35833036055074853353428261", - "35729570353367227421883405", - "35521626352490295341661738" + "37953211317137369539385411", + "25617553984477869011821357", + "37260317580664641688832161" ], "fpReserves": [ - "8065394547051621497109170", - "5249074049580445480320174" + "1792599520640309506713134", + "4596994136944577549748195" ], - "mAssetSupply": "107084230417557416875125458", - "LPTokenSupply": "13263112431043875149601464" + "mAssetSupply": "100817739785212331040461566", + "LPTokenSupply": "6334632409392532912287916" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "991567616660821376", - "outputQty0": "991564383923410236", - "outputQty": "987736295237371644", - "swapFee": "789235796973717", + "type": "swap_fp_to_mp", + "inputQty": "266550433673277347987456", + "outputIndex": 0, + "outputQty": "263829686587585346515232", + "swapFee": "0", + "redemptionFee": "158217978265932202443", "mpReserves": [ - "35833036055074853353428261", - "35729571344934844082704781", - "35521626352490295341661738" + "37689381630549784192870179", + "25617553984477869011821357", + "37260317580664641688832161" ], "fpReserves": [ - "8065395538616005420519406", - "5249073061844150242948530" + "1528902890197089169307214", + "4863544570617854897735651" ], - "mAssetSupply": "107084231409121800798535694", - "LPTokenSupply": "13263112431122798729298835" + "mAssetSupply": "100554201372747376635258089", + "LPTokenSupply": "6334632409392532912287916" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "433351071705167430680576", - "outputQty0": "433352235175762692538074", - "outputQty": "431424129134200130570446", - "swapFee": "344897040479227653674", + "type": "mint", + "inputIndex": 0, + "inputQty": "474770576403040384", + "outputQty0": "474255171810747109", + "outputQty": "474611719150845041", "mpReserves": [ - "35833036055074853353428261", - "35729571344934844082704781", - "35954977424195462772342314" + "37689382105320360595910563", + "25617553984477869011821357", + "37260317580664641688832161" ], "fpReserves": [ - "8498747773791768113057480", - "4817648932709950112378084" + "1528903364452260980054323", + "4863544570617854897735651" ], - "mAssetSupply": "107517583644297563491073768", - "LPTokenSupply": "13263146920826846652064202" + "mAssetSupply": "100554201847002548446005198", + "LPTokenSupply": "6334632884004252063132957" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "9099509034984817033216", - "outputQty0": "9144732865037085330201", - "outputQty": "9140979297417847689228", - "swapFee1": "5459705420990890219", - "swapFee2": "3657893146014834132", + "inputQty": "32738801194570921017344", + "outputQty0": "32688530330645981098635", + "outputQty": "32586045312010398974872", + "swapFee1": "19643280716742552610", + "swapFee2": "19613118198387588659", "mpReserves": [ - "35833036055074853353428261", - "35720430365637426235015553", - "35954977424195462772342314" + "37689382105320360595910563", + "25584967939165858612846485", + "37260317580664641688832161" ], "fpReserves": [ - "8489603040926731027727279", - "4817648932709950112378084" + "1496214834121614998955688", + "4863544570617854897735651" ], - "mAssetSupply": "107508442569325672420577699", - "LPTokenSupply": "13254047957762403934120007" + "mAssetSupply": "100521532929790100852495222", + "LPTokenSupply": "6301896047137752816370874" }, { "type": "swap_fp_to_mp", - "inputQty": "1630944679495963392", + "inputQty": "322263016762051393486848", "outputIndex": 0, - "outputQty": "1637277939597723645", - "swapFee": "0", - "redemptionFee": "655173426428712", - "mpReserves": [ - "35833034417796913755704616", - "35720430365637426235015553", - "35954977424195462772342314" - ], - "fpReserves": [ - "8489601402993164955945720", - "4817650563654629608341476" - ], - "mAssetSupply": "107508440932047279775224852", - "LPTokenSupply": "13254047957762403934120007" + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "1767615211717294817280", - "outputIndex": 2, - "outputQty": "1774494232356226010037", - "swapFee": "0", - "redemptionFee": "710073959141048391", - "mpReserves": [ - "35833034417796913755704616", - "35720430365637426235015553", - "35953202929963106546332277" - ], - "fpReserves": [ - "8487826218095312334967408", - "4819418178866346903158756" - ], - "mAssetSupply": "107506666457223386295294931", - "LPTokenSupply": "13254047957762403934120007" - }, - { - "type": "redeem", + "inputQty": "13797473285068663291904", "outputIndex": 1, - "inputQty": "757122163982259571392512", - "outputQty0": "760763047373129624810986", - "outputQty": "760432403604336431952699", - "swapFee1": "454273298389355742835", - "swapFee2": "304305218949251849924", - "mpReserves": [ - "35833034417796913755704616", - "34959997962033089803062854", - "35953202929963106546332277" - ], - "fpReserves": [ - "7727063170722182710156422", - "4819418178866346903158756" - ], - "mAssetSupply": "106746207715069205922333869", - "LPTokenSupply": "12496971221109983298301778" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "563806091470139097088", - "outputQty0": "563792814638292369817", - "outputQty": "561415421426491853381", - "swapFee": "448663143451723985", + "outputQty": "13568587960003931495272", + "swapFee": "0", + "redemptionFee": "8166818724923520547", "mpReserves": [ - "35833598223888383894801704", - "34959997962033089803062854", - "35953202929963106546332277" + "37689382105320360595910563", + "25571399351205854681351213", + "37260317580664641688832161" ], "fpReserves": [ - "7727626963536821002526239", - "4818856763444920411305375" + "1482603469580075798043405", + "4877342043902923561027555" ], - "mAssetSupply": "106746771507883844214703686", - "LPTokenSupply": "12496971265976297643474176" + "mAssetSupply": "100507929732067286575103486", + "LPTokenSupply": "6301896047137752816370874" }, { "type": "swap_fp_to_mp", - "inputQty": "40781168170854221086720", - "outputIndex": 0, - "outputQty": "40903279367027584239475", + "inputQty": "53498222356290625536", + "outputIndex": 1, + "outputQty": "52603201882664644630", "swapFee": "0", - "redemptionFee": "16367493732311393973", + "redemptionFee": "31661494348679361", "mpReserves": [ - "35792694944521356310562229", - "34959997962033089803062854", - "35953202929963106546332277" + "37689382105320360595910563", + "25571346748003972016706583", + "37260317580664641688832161" ], "fpReserves": [ - "7686708229206042517593635", - "4859637931615774632392095" + "1482550700422827999108283", + "4877395542125279851653091" ], - "mAssetSupply": "106705869141046798041165055", - "LPTokenSupply": "12496971265976297643474176" + "mAssetSupply": "100507876994571533124847725", + "LPTokenSupply": "6301896047137752816370874" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "614144139043219570688", - "outputQty0": "614131198330533879146", - "outputQty": "611611976407165234992", - "swapFee": "488743892371185083", - "mpReserves": [ - "35793309088660399530132917", - "34959997962033089803062854", - "35953202929963106546332277" - ], - "fpReserves": [ - "7687322360404373051472781", - "4859026319639367467157103" - ], - "mAssetSupply": "106706483272245128575044201", - "LPTokenSupply": "12496971314850686880592684" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "3484181781236475392", - "outputQty0": "3500339798285764384", - "outputQty": "3499013456256076386", - "swapFee1": "2090509068741885", - "swapFee2": "1400135919314305", + "inputQty": "532425988110749362290688", + "outputQty0": "531825484847120827064427", + "outputQty": "531253416355004006490964", "mpReserves": [ - "35793305589646943274056531", - "34959997962033089803062854", - "35953202929963106546332277" + "38221808093431109958201251", + "25571346748003972016706583", + "37260317580664641688832161" ], "fpReserves": [ - "7687318860064574765708397", - "4859026319639367467157103" + "2014376185269948826172710", + "4877395542125279851653091" ], - "mAssetSupply": "106706479773305466208594122", - "LPTokenSupply": "12496967830877956550991480" + "mAssetSupply": "101039702479418653951912152", + "LPTokenSupply": "6833149463492756822861838" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "8559332898133389312", - "outputQty0": "8599027088268958969", - "outputQty": "8595092220008349404", - "swapFee1": "5135599738880033", - "swapFee2": "3439610835307583", + "inputQty": "83111671014265003704320", + "outputQty0": "83283172518721298950013", + "outputQty": "83015169802095771339589", + "swapFee1": "49867002608559002222", + "swapFee2": "49969903511232779370", "mpReserves": [ - "35793305589646943274056531", - "34959989366940869794713450", - "35953202929963106546332277" + "38221808093431109958201251", + "25488331578201876245366994", + "37260317580664641688832161" ], "fpReserves": [ - "7687310261037486496749428", - "4859026319639367467157103" + "1931093012751227527222697", + "4877395542125279851653091" ], - "mAssetSupply": "106706471177717988774942736", - "LPTokenSupply": "12496959272058618391490171" + "mAssetSupply": "100956469276803443885741509", + "LPTokenSupply": "6750042779178752675057740" }, { "type": "swap_fp_to_mp", - "inputQty": "9786105080058136756224", - "outputIndex": 0, - "outputQty": "9814701504586090594234", + "inputQty": "15102259304701028352", + "outputIndex": 2, + "outputQty": "14977968419815681809", "swapFee": "0", - "redemptionFee": "3927369937882031414", + "redemptionFee": "8983390171533993", "mpReserves": [ - "35783490888142357183462297", - "34959989366940869794713450", - "35953202929963106546332277" + "38221808093431109958201251", + "25488331578201876245366994", + "37260302602696221873150352" ], "fpReserves": [ - "7677491836192781418213302", - "4868812424719425603913327" + "1931078040434274970567450", + "4877410644384584552681443" ], - "mAssetSupply": "106696656680243221578438024", - "LPTokenSupply": "12496959272058618391490171" + "mAssetSupply": "100956454313469881500620255", + "LPTokenSupply": "6750042779178752675057740" }, { "type": "swap_fp_to_mp", - "inputQty": "410793900757501723279360", + "inputQty": "231184248983585485225984", "outputIndex": 1, - "outputQty": "411723516329704020056102", + "outputQty": "228116007727401895408271", "swapFee": "0", - "redemptionFee": "164766953916273945700", + "redemptionFee": "137318621111018138527", "mpReserves": [ - "35783490888142357183462297", - "34548265850611165774657348", - "35953202929963106546332277" + "38221808093431109958201251", + "25260215570474474349958723", + "37260302602696221873150352" ], "fpReserves": [ - "7265574451402096553962729", - "5279606325476927327192687" + "1702213671915911406355566", + "5108594893368170037907427" ], - "mAssetSupply": "106284904062406452988133151", - "LPTokenSupply": "12496959272058618391490171" + "mAssetSupply": "100727727263572628954546898", + "LPTokenSupply": "6750042779178752675057740" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "696719100852881326080", - "outputQty0": "699637103323960306615", - "outputQty": "699380672450046748253", - "swapFee1": "418031460511728795", - "swapFee2": "279854841329584122", + "inputQty": "276094015622081304068096", + "outputQty0": "275579714918251161225248", + "outputQty": "275739992949819356079825", + "swapFee1": "165656409373248782440", + "swapFee2": "165347828950950696735", "mpReserves": [ - "35782791507469907136714044", - "34548265850611165774657348", - "35953202929963106546332277" + "37946068100481290602121426", + "25260215570474474349958723", + "37260302602696221873150352" ], "fpReserves": [ - "7264874814298772593656114", - "5279606325476927327192687" + "1426633956997660245130318", + "5108594893368170037907427" ], - "mAssetSupply": "106284204705157970357410658", - "LPTokenSupply": "12496262594760911561336970" + "mAssetSupply": "100452312896483328744018385", + "LPTokenSupply": "6473965329197608695867888" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "2696445154261217574912", "outputIndex": 0, - "inputQty": "1062674850572694454272", - "outputQty0": "1067125173801061030535", - "outputQty": "1066733993492331576047", - "swapFee1": "637604910343616672", - "swapFee2": "426850069520424412", + "outputQty": "2655390604971988815796", + "swapFee": "0", + "redemptionFee": "1592339096957428612", "mpReserves": [ - "35781724773476414805137997", - "34548265850611165774657348", - "35953202929963106546332277" + "37943412709876318613305630", + "25260215570474474349958723", + "37260302602696221873150352" ], "fpReserves": [ - "7263807689124971532625579", - "5279606325476927327192687" + "1423980058502731197442279", + "5111291338522431255482339" ], - "mAssetSupply": "106283138006834238816804535", - "LPTokenSupply": "12495199983670829901244365" + "mAssetSupply": "100449660590327496653758958", + "LPTokenSupply": "6473965329197608695867888" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "121136163235970550857728", - "outputQty0": "121145867270157339502503", - "outputQty": "120565125113766702628106", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "204526632701408640", + "outputQty0": "204317825193382218", + "outputQty": "207434086434826221", + "swapFee": "163948284267202", "mpReserves": [ - "35781724773476414805137997", - "34669402013847136325515076", - "35953202929963106546332277" + "37943412709876318613305630", + "25260215570474474349958723", + "37260302807222854574558992" ], "fpReserves": [ - "7384953556395128872128082", - "5279606325476927327192687" + "1423980262820556390824497", + "5111291131088344820656118" ], - "mAssetSupply": "106404283874104396156307038", - "LPTokenSupply": "12615765108784596603872471" + "mAssetSupply": "100449660794645321847141176", + "LPTokenSupply": "6473965329214003524294608" }, { - "type": "swap_fp_to_mp", - "inputQty": "149033708541239598514176", - "outputIndex": 2, - "outputQty": "149300339957772568400988", - "swapFee": "0", - "redemptionFee": "59741600644909375935", + "type": "redeem", + "outputIndex": 1, + "inputQty": "559880950348039323648", + "outputQty0": "557856623163025382124", + "outputQty": "556028622366961717066", + "swapFee1": "335928570208823594", + "swapFee2": "334713973897815229", "mpReserves": [ - "35781724773476414805137997", - "34669402013847136325515076", - "35803902590005333977931289" + "37943412709876318613305630", + "25259659541852107388241657", + "37260302807222854574558992" ], "fpReserves": [ - "7235599554782855432288593", - "5428640034018166925706863" + "1423422406197393365442373", + "5111291131088344820656118" ], - "mAssetSupply": "106254989614092767625843484", - "LPTokenSupply": "12615765108784596603872471" + "mAssetSupply": "100449103272736132719574281", + "LPTokenSupply": "6473405481856512505853319" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "13991078819693458358272", - "outputQty0": "13990595378692422731845", - "outputQty": "13951681257681734788691", - "swapFee": "11140191859227069764", + "type": "mint", + "inputIndex": 1, + "inputQty": "8768033139581550", + "outputQty0": "8791581655520564", + "outputQty": "8818226483636174", "mpReserves": [ - "35795715852296108263496269", - "34669402013847136325515076", - "35803902590005333977931289" + "37943412709876318613305630", + "25259659550620140527823207", + "37260302807222854574558992" ], "fpReserves": [ - "7249590150161547855020438", - "5414688352760485190918172" + "1423422414988975020962937", + "5111291131088344820656118" ], - "mAssetSupply": "106268980209471460048575329", - "LPTokenSupply": "12615766222803782526579447" + "mAssetSupply": "100449103281527714375094845", + "LPTokenSupply": "6473405490674738989489493" }, { - "type": "swap_fp_to_mp", - "inputQty": "18281004878097534681088", - "outputIndex": 0, - "outputQty": "18310538532276375876120", - "swapFee": "0", - "redemptionFee": "7326894062697165292", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "6806009635707957248", + "outputQty0": "6824288690399535483", + "outputQty": "6928446514187921911", + "swapFee": "5475976682448074", "mpReserves": [ - "35777405313763831887620149", - "34669402013847136325515076", - "35803902590005333977931289" + "37943412709876318613305630", + "25259666356629776235780455", + "37260302807222854574558992" ], "fpReserves": [ - "7231272915004804941788041", - "5432969357638582725599260" + "1423429239277665420498420", + "5111284202641830632734207" ], - "mAssetSupply": "106250670301208779832508224", - "LPTokenSupply": "12615766222803782526579447" + "mAssetSupply": "100449110105816404774630328", + "LPTokenSupply": "6473405491222336657734300" }, { - "type": "swap_fp_to_mp", - "inputQty": "55069271768943910912", + "type": "redeem", "outputIndex": 2, - "outputQty": "55157147342663339476", - "swapFee": "0", - "redemptionFee": "22070886564822083", + "inputQty": "46084785384922", + "outputQty0": "45917976027839", + "outputQty": "45937326948121", + "swapFee1": "27650871230", + "swapFee2": "27550785616", "mpReserves": [ - "35777405313763831887620149", - "34669402013847136325515076", - "35803847432857991314591813" + "37943412709876318613305630", + "25259666356629776235780455", + "37260302807176917247610871" ], "fpReserves": [ - "7231217737788392886580303", - "5433024426910351669510172" + "1423429239231747444470581", + "5111284202641830632734207" ], - "mAssetSupply": "106250615146063254342122569", - "LPTokenSupply": "12615766222803782526579447" + "mAssetSupply": "100449110105770514349388105", + "LPTokenSupply": "6473405491176254637436501" }, { - "type": "swap_fp_to_mp", - "inputQty": "34958831087648677888", + "type": "redeem", "outputIndex": 0, - "outputQty": "35014526980589066565", - "swapFee": "0", - "redemptionFee": "14010940924131670", + "inputQty": "647609575202148", + "outputQty0": "645265475384112", + "outputQty": "645628186059015", + "swapFee1": "388565745121", + "swapFee2": "387159285230", "mpReserves": [ - "35777370299236851298553584", - "34669402013847136325515076", - "35803847432857991314591813" + "37943412709230690427246615", + "25259666356629776235780455", + "37260302807176917247610871" ], "fpReserves": [ - "7231182710436082557402891", - "5433059385741439318188060" + "1423429238586481969086469", + "5111284202641830632734207" ], - "mAssetSupply": "106250580132721884937076827", - "LPTokenSupply": "12615766222803782526579447" + "mAssetSupply": "100449110105125636033289223", + "LPTokenSupply": "6473405490528683918808865" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "174302948851994048", - "outputQty0": "175014760902455288", - "outputQty": "174932286020156020", - "swapFee1": "104581769311196", - "swapFee2": "70005904360982", + "type": "mint", + "inputIndex": 0, + "inputQty": "995818893717945188352", + "outputQty0": "994662222924629026376", + "outputQty": "997669213381134820191", "mpReserves": [ - "35777370299236851298553584", - "34669401838914850305359056", - "35803847432857991314591813" + "37944408528124408372434967", + "25259666356629776235780455", + "37260302807176917247610871" ], "fpReserves": [ - "7231182535421321654947603", - "5433059385741439318188060" + "1424423900809406598112845", + "5111284202641830632734207" ], - "mAssetSupply": "106250579957777129938982521", - "LPTokenSupply": "12615766048511291851516518" + "mAssetSupply": "100450104767348560662315599", + "LPTokenSupply": "6474403159742065053629056" }, { - "type": "swap_fp_to_mp", - "inputQty": "41924848009807539470336", - "outputIndex": 1, - "outputQty": "41985100550782189656815", - "swapFee": "0", - "redemptionFee": "16801981125691953465", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "11624314413755033600", + "outputQty0": "11610811640019820511", + "outputQty": "11787797644049961063", + "swapFee": "9316660015615664", "mpReserves": [ - "35777370299236851298553584", - "34627416738364068115702241", - "35803847432857991314591813" + "37944420152438822127468567", + "25259666356629776235780455", + "37260302807176917247610871" ], "fpReserves": [ - "7189177582607091771283014", - "5474984233751246857658396" + "1424435511621046617933356", + "5111272414844186582773144" ], - "mAssetSupply": "106208591806944025747271397", - "LPTokenSupply": "12615766048511291851516518" + "mAssetSupply": "100450116378160200682136110", + "LPTokenSupply": "6474403160673731055190622" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "950615785777070788837376", + "outputIndex": 2, + "hardLimitError": true }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1112592798517115790295040", - "outputQty0": "1112513675354374880695919", - "outputQty": "1107931967465882462786770", - "swapFee": "885690849951548589651", + "inputQty": "21068050861298712313856", + "outputQty0": "21046510143662264879809", + "outputQty": "21361872072700706364611", + "swapFee": "16885362934631452428", "mpReserves": [ - "35777370299236851298553584", - "34627416738364068115702241", - "36916440231375107104886853" + "37944420152438822127468567", + "25259666356629776235780455", + "37281370858038215959924727" ], "fpReserves": [ - "8301691257961466651978933", - "4367052266285364394871626" + "1445482021764708882813165", + "5089910542771485876408533" ], - "mAssetSupply": "107321105482298400627967316", - "LPTokenSupply": "12615854617596287006375483" + "mAssetSupply": "100471162888303862947015919", + "LPTokenSupply": "6474404849210024518335864" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "36728457046287032320", - "outputQty0": "36728402939821825808", - "outputQty": "36514900845259386574", - "swapFee": "29209287344196297", + "inputQty": "14930294261136058482688", + "outputQty0": "14912956017475983354756", + "outputQty": "14950428921147124482943", + "mpReserves": [ + "37959350446699958185951255", + "25259666356629776235780455", + "37281370858038215959924727" + ], + "fpReserves": [ + "1460394977782184866167921", + "5089910542771485876408533" + ], + "mAssetSupply": "100486075844321338930370675", + "LPTokenSupply": "6489355278131171642818807" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "38434516107705827983360", + "outputQty0": "38308775239314057429890", + "outputQty": "38324890477902498758238", + "swapFee1": "23060709664623496790", + "swapFee2": "22985265143588434457", "mpReserves": [ - "35777407027693897585585904", - "34627416738364068115702241", - "36916440231375107104886853" + "37959350446699958185951255", + "25259666356629776235780455", + "37243045967560313461166489" ], "fpReserves": [ - "8301727986364406473804741", - "4367015751384519135485052" + "1422086202542870808738031", + "5089910542771485876408533" ], - "mAssetSupply": "107321142210701340449793124", - "LPTokenSupply": "12615854620517215740795112" + "mAssetSupply": "100447790054347168461375242", + "LPTokenSupply": "6450923068094432277185126" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1099734614512159185436672", - "outputQty0": "1099696143277749531179064", - "outputQty": "1090537936756248619083498", - "swapFee": "874358667731160172040", + "inputIndex": 2, + "inputQty": "4158232659512888832", + "outputQty0": "4154001675945175107", + "outputQty": "4217029643887317382", + "swapFee": "3333024111173682", "mpReserves": [ - "36877141642206056771022576", - "34627416738364068115702241", - "36916440231375107104886853" + "37959350446699958185951255", + "25259666356629776235780455", + "37243050125792972974055321" ], "fpReserves": [ - "9401424129642156004983805", - "3276477814628270516401554" + "1422090356544546753913138", + "5089906325741841989091151" ], - "mAssetSupply": "108420838353979089980972188", - "LPTokenSupply": "12615942056383988856812316" + "mAssetSupply": "100447794208348844406550349", + "LPTokenSupply": "6450923068427734688302494" }, { "type": "swap_fp_to_mp", - "inputQty": "33216806700220099330048", + "inputQty": "61646162350240438419456", "outputIndex": 1, - "outputQty": "33555813883441934928234", + "outputQty": "60429869683290641961272", "swapFee": "0", - "redemptionFee": "13429643564229773168", + "redemptionFee": "36377494487172658255", "mpReserves": [ - "36877141642206056771022576", - "34593860924480626180774007", - "36916440231375107104886853" + "37959350446699958185951255", + "25199236486946485593819183", + "37243050125792972974055321" ], "fpReserves": [ - "9367850020731581572061919", - "3309694621328490615731602" + "1361461199065925656820935", + "5151552488092082427510607" ], - "mAssetSupply": "108387277674712079777823470", - "LPTokenSupply": "12615942056383988856812316" + "mAssetSupply": "100387201428364710482116401", + "LPTokenSupply": "6450923068427734688302494" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "13138470664954789756928", - "outputQty0": "13231268278502753586568", - "outputQty": "13226883293916114880758", - "swapFee1": "7883082398972873854", - "swapFee2": "5292507311401101434", + "outputIndex": 2, + "inputQty": "2165703328085143715840", + "outputQty0": "2155306795057597846782", + "outputQty": "2156222126696846084639", + "swapFee1": "1299421996851086229", + "swapFee2": "1293184077034558708", "mpReserves": [ - "36863914758912140656141818", - "34593860924480626180774007", - "36916440231375107104886853" + "37959350446699958185951255", + "25199236486946485593819183", + "37240893903666276127970682" ], "fpReserves": [ - "9354618752453078818475351", - "3309694621328490615731602" + "1359305892270868058974153", + "5151552488092082427510607" ], - "mAssetSupply": "108374051698940888425338336", - "LPTokenSupply": "12602804374027273964342773" + "mAssetSupply": "100385047414753729918828327", + "LPTokenSupply": "6448757495041849229695276" }, { - "type": "swap_fp_to_mp", - "inputQty": "35828956607436858327040", - "outputIndex": 0, - "outputQty": "36191889043560916846588", - "swapFee": "0", - "redemptionFee": "14481576082886830364", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1626615327103378944", + "outputQty0": "1631016813348968505", + "outputQty": "1658468609620025420", + "swapFee": "1310345029610266", "mpReserves": [ - "36827722869868579739295230", - "34593860924480626180774007", - "36916440231375107104886853" + "37959350446699958185951255", + "25199238113561812697198127", + "37240893903666276127970682" ], "fpReserves": [ - "9318414812245861742563420", - "3345523577935927474058642" + "1359307523287681407942658", + "5151550829623472807485187" ], - "mAssetSupply": "108337862240309754236256769", - "LPTokenSupply": "12602804374027273964342773" + "mAssetSupply": "100385049045770543267796832", + "LPTokenSupply": "6448757495172883732656302" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "485430053849606201016320", - "outputQty0": "485391059312532142219604", - "outputQty": "481672944445214101822296", + "type": "redeem", + "outputIndex": 2, + "inputQty": "21779315498235681832960", + "outputQty0": "21670221161062070690269", + "outputQty": "21679387175505536664704", + "swapFee1": "13067589298941409099", + "swapFee2": "13002132696637242414", "mpReserves": [ - "37313152923718185940311550", - "34593860924480626180774007", - "36916440231375107104886853" + "37959350446699958185951255", + "25199238113561812697198127", + "37219214516490770591305978" ], "fpReserves": [ - "9803805871558393884783024", - "3345523577935927474058642" + "1337637302126619337252389", + "5151550829623472807485187" ], - "mAssetSupply": "108823253299622286378476373", - "LPTokenSupply": "13084477318472488066165069" + "mAssetSupply": "100363391826742177834348977", + "LPTokenSupply": "6426979486433577944964251" }, { - "type": "swap_fp_to_mp", - "inputQty": "416460363139929997312", + "type": "redeem", "outputIndex": 1, - "outputQty": "420928254714034449867", - "swapFee": "0", - "redemptionFee": "168465599965084099", + "inputQty": "246395286806817545388032", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "918290693366146924544", + "outputQty0": "920773087029312657495", + "outputQty": "936714994913565571874", + "swapFee": "740018698838266030", "mpReserves": [ - "37313152923718185940311550", - "34593439996225912146324140", - "36916440231375107104886853" + "37959350446699958185951255", + "25200156404255178844122671", + "37219214516490770591305978" ], "fpReserves": [ - "9803384707558481174534277", - "3345940038299067404055954" + "1338558075213648649909884", + "5150614114628559241913313" ], - "mAssetSupply": "108822832304087973633311725", - "LPTokenSupply": "13084477318472488066165069" + "mAssetSupply": "100364312599829207147006472", + "LPTokenSupply": "6426979560435447828790854" }, { - "type": "swap_fp_to_mp", - "inputQty": "3132022434558437888", + "type": "redeem", "outputIndex": 2, - "outputQty": "3166313428538545386", - "swapFee": "0", - "redemptionFee": "1266956509801885", + "inputQty": "2818977665938586337280", + "outputQty0": "2804306067815046749666", + "outputQty": "2805487003817109575166", + "swapFee1": "1691386599563151802", + "swapFee2": "1682583640689028049", "mpReserves": [ - "37313152923718185940311550", - "34593439996225912146324140", - "36916437065061678566341467" + "37959350446699958185951255", + "25200156404255178844122671", + "37216409029486953481730812" ], "fpReserves": [ - "9803381540167206669821687", - "3345943170321501962493842" + "1335753769145833603160218", + "5150614114628559241913313" ], - "mAssetSupply": "108822829137963655638401020", - "LPTokenSupply": "13084477318472488066165069" + "mAssetSupply": "100361509976345032789284855", + "LPTokenSupply": "6424160751908169198768754" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1249305246151433575727104", + "type": "swap_fp_to_mp", + "inputQty": "110381766484637004070912", + "outputIndex": 0, "hardLimitError": true }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "496257755143196049408", - "outputQty0": "496337073815709391453", - "outputQty": "492474145843356418031", - "mpReserves": [ - "37313152923718185940311550", - "34593936253981055342373548", - "36916437065061678566341467" - ], - "fpReserves": [ - "9803877877241022379213140", - "3345943170321501962493842" - ], - "mAssetSupply": "108823325475037471347792473", - "LPTokenSupply": "13084969792618331422583100" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "900969567097767688404992", + "type": "swap_fp_to_mp", + "inputQty": "162566757621593985253376", + "outputIndex": 2, "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "333849625532122064224256", - "outputIndex": 1, - "outputQty": "337022348849246426913383", + "inputQty": "24513848944311744331776", + "outputIndex": 0, + "outputQty": "24081309967808670031766", "swapFee": "0", - "redemptionFee": "134885982079157870788", + "redemptionFee": "14440521618579094792", "mpReserves": [ - "37313152923718185940311550", - "34256913905131808915460165", - "36916437065061678566341467" + "37935269136732149515919489", + "25200156404255178844122671", + "37216409029486953481730812" ], "fpReserves": [ - "9466662922043127702243019", - "3679792795853624026718098" + "1311686233114868445172058", + "5175127963572870986245089" ], - "mAssetSupply": "108486245405821655828693140", - "LPTokenSupply": "13084969792618331422583100" + "mAssetSupply": "100337456880835686210391487", + "LPTokenSupply": "6424160751908169198768754" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "8201801642878737317888", - "outputQty0": "8203298489888688757213", - "outputQty": "8144465692697345740993", + "inputIndex": 2, + "inputQty": "60911005310427578368", + "outputQty0": "60848751696148107145", + "outputQty": "61166875993023551967", "mpReserves": [ - "37313152923718185940311550", - "34265115706774687652778053", - "36916437065061678566341467" + "37935269136732149515919489", + "25200156404255178844122671", + "37216469940492263909309180" ], "fpReserves": [ - "9474866220533016391000232", - "3679792795853624026718098" + "1311747081866564593279203", + "5175127963572870986245089" ], - "mAssetSupply": "108494448704311544517450353", - "LPTokenSupply": "13093114258311028768324093" + "mAssetSupply": "100337517729587382358498632", + "LPTokenSupply": "6424221918784162222320721" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "12802584785584370", - "outputQty0": "12801686738490338", - "outputQty": "12709850272860797", + "type": "redeem", + "outputIndex": 1, + "inputQty": "5809218254316078366720", + "outputQty0": "5775215601674664029643", + "outputQty": "5756202786880377164232", + "swapFee1": "3485530952589647020", + "swapFee2": "3465129361004798417", "mpReserves": [ - "37313152923718185940311550", - "34265115706774687652778053", - "36916437077864263351925837" + "37935269136732149515919489", + "25194400201468298466958439", + "37216469940492263909309180" ], "fpReserves": [ - "9474866233334703129490570", - "3679792795853624026718098" + "1305971866264889929249560", + "5175127963572870986245089" ], - "mAssetSupply": "108494448717113231255940691", - "LPTokenSupply": "13093114271020879041184890" + "mAssetSupply": "100331745979115068699267406", + "LPTokenSupply": "6418413049082941402918703" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8638558687447626022912", - "outputQty0": "8640130243492989118802", - "outputQty": "8578130281993265140878", + "type": "redeem", + "outputIndex": 2, + "inputQty": "2110193667899409408", + "outputQty0": "2097724531168367285", + "outputQty": "2098612159003845116", + "swapFee1": "1266116200739645", + "swapFee2": "1258634718701020", "mpReserves": [ - "37313152923718185940311550", - "34273754265462135278800965", - "36916437077864263351925837" + "37935269136732149515919489", + "25194400201468298466958439", + "37216467841880104905464064" ], "fpReserves": [ - "9483506363578196118609372", - "3679792795853624026718098" + "1305969768540358760882275", + "5175127963572870986245089" ], - "mAssetSupply": "108503088847356724245059493", - "LPTokenSupply": "13101692401302872306325768" + "mAssetSupply": "100331743882649172249601141", + "LPTokenSupply": "6418410939015885123583259" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "910757041253338624", - "outputQty0": "916791174474010270", - "outputQty": "916520279782507646", - "swapFee1": "546454224752003", - "swapFee2": "366716469789604", + "type": "mint", + "inputIndex": 2, + "inputQty": "381874108687581511680", + "outputQty0": "381483553479255594651", + "outputQty": "383519457536134449147", "mpReserves": [ - "37313152007197906157803904", - "34273754265462135278800965", - "36916437077864263351925837" + "37935269136732149515919489", + "25194400201468298466958439", + "37216849715988792486975744" ], "fpReserves": [ - "9483505446787021644599102", - "3679792795853624026718098" + "1306351252093838016476926", + "5175127963572870986245089" ], - "mAssetSupply": "108503087930932266240838827", - "LPTokenSupply": "13101691490600476475462344" + "mAssetSupply": "100332125366202651505195792", + "LPTokenSupply": "6418794458473421258032406" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "37345040259193350651904", - "outputQty0": "37592130975764938605129", - "outputQty": "37580982379184356053570", - "swapFee1": "22407024155516010391", - "swapFee2": "15036852390305975442", + "outputIndex": 1, + "inputQty": "13147810230165131231232", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "190968538469854624088064", + "outputQty0": "190742457354377031878909", + "outputQty": "193716496728949005841508", + "swapFee": "153155966787274376679", "mpReserves": [ - "37275571024818721801750334", - "34273754265462135278800965", - "36916437077864263351925837" + "38126237675202004140007553", + "25194400201468298466958439", + "37216849715988792486975744" ], "fpReserves": [ - "9445913315811256705993973", - "3679792795853624026718098" + "1497093709448215048355835", + "4981411466843921980403581" ], - "mAssetSupply": "108465510836808891608209140", - "LPTokenSupply": "13064348691043698676411479" + "mAssetSupply": "100522867823557028537074701", + "LPTokenSupply": "6418809774070099985470073" }, { - "type": "swap_fp_to_mp", - "inputQty": "464668074227142494257152", - "outputIndex": 1, - "outputQty": "467952873442270116296370", - "swapFee": "0", - "redemptionFee": "187292875111483097277", + "type": "mint", + "inputIndex": 2, + "inputQty": "171594560405154312486912", + "outputQty0": "171419061874727422500463", + "outputQty": "171510465397863245388776", "mpReserves": [ - "37275571024818721801750334", - "33805801392019865162504595", - "36916437077864263351925837" + "38126237675202004140007553", + "25194400201468298466958439", + "37388444276393946799462656" ], "fpReserves": [ - "8977681128032548962801199", - "4144460870080766520975250" + "1668512771322942470856298", + "4981411466843921980403581" ], - "mAssetSupply": "107997465941905295348113643", - "LPTokenSupply": "13064348691043698676411479" + "mAssetSupply": "100694286885431755959575164", + "LPTokenSupply": "6590320239467963230858849" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "10363307762565626462208", - "outputQty0": "10362413823075158064666", - "outputQty": "10286683095017764295227", - "swapFee": "8236405578820981204", + "inputIndex": 1, + "inputQty": "7845753705747925958656", + "outputQty0": "7867268964752328265561", + "outputQty": "7952210769841484827927", + "swapFee": "6291549381235048658", "mpReserves": [ - "37275571024818721801750334", - "33805801392019865162504595", - "36926800385626828978388045" + "38126237675202004140007553", + "25202245955174046392917095", + "37388444276393946799462656" ], "fpReserves": [ - "8988043541855624120865865", - "4134174186985748756680023" + "1676380040287694799121859", + "4973459256074080495575654" ], - "mAssetSupply": "108007828355728370506178309", - "LPTokenSupply": "13064349514684256558509599" + "mAssetSupply": "100702154154396508287840725", + "LPTokenSupply": "6590320868622901354363714" }, { "type": "swap_fp_to_mp", - "inputQty": "1797065059327938134016", - "outputIndex": 1, - "outputQty": "1807771273784081845996", + "inputQty": "1368922956766523949056", + "outputIndex": 2, + "outputQty": "1353875969116886752497", "swapFee": "0", - "redemptionFee": "723552236759503622", + "redemptionFee": "811972800874995753", "mpReserves": [ - "37275571024818721801750334", - "33803993620746081080658599", - "36926800385626828978388045" + "38126237675202004140007553", + "25202245955174046392917095", + "37387090400424829912710159" ], "fpReserves": [ - "8986234661263725361808562", - "4135971252045076694814039" + "1675026752286236472865566", + "4974828179030847019524710" ], - "mAssetSupply": "108006020198688708506624628", - "LPTokenSupply": "13064349514684256558509599" + "mAssetSupply": "100700801678367850836580185", + "LPTokenSupply": "6590320868622901354363714" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "9486547993319545241600", - "outputQty0": "9485723601551124500950", - "outputQty": "9416065925508509573009", - "swapFee": "7539489898007509355", + "type": "redeem", + "outputIndex": 2, + "inputQty": "121558835106750185472", + "outputQty0": "121534897808110880760", + "outputQty": "121587688672519874149", + "swapFee1": "72935301064050111", + "swapFee2": "72920938684866528", "mpReserves": [ - "37275571024818721801750334", - "33803993620746081080658599", - "36936286933620148523629645" + "38126237675202004140007553", + "25202245955174046392917095", + "37386968812736157392836010" ], "fpReserves": [ - "8995720384865276486309512", - "4126555186119568185241030" + "1674905217388428361984806", + "4974828179030847019524710" ], - "mAssetSupply": "108015505922290259631125578", - "LPTokenSupply": "13064350268633246359260534" + "mAssetSupply": "100700680216390981410565953", + "LPTokenSupply": "6590199317081324710583253" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4231406545524800512", - "outputQty0": "4232311061097442778", - "outputQty": "4204884366256638581", - "mpReserves": [ - "37275571024818721801750334", - "33803997852152626605459111", - "36936286933620148523629645" - ], - "fpReserves": [ - "8995724617176337583752290", - "4126555186119568185241030" - ], - "mAssetSupply": "108015510154601320728568356", - "LPTokenSupply": "13064354473517612615899115" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "961480489527932929179648", - "outputQty0": "966963744884954078684384", - "outputQty": "966336858129365999297542", - "swapFee1": "576888293716759757507", - "swapFee2": "386785497953981631473", + "inputQty": "93403761361388537118720", + "outputQty0": "93658263757740338690122", + "outputQty": "93583503929896547973207", "mpReserves": [ - "37275571024818721801750334", - "32837660994023260606161569", - "36936286933620148523629645" + "38126237675202004140007553", + "25295649716535434930035815", + "37386968812736157392836010" ], "fpReserves": [ - "8028760872291383505067906", - "4126555186119568185241030" + "1768563481146168700674928", + "4974828179030847019524710" ], - "mAssetSupply": "107048933195214320631515445", - "LPTokenSupply": "12102931672819051362695217" + "mAssetSupply": "100794338480148721749256075", + "LPTokenSupply": "6683782821011221258556460" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "7974422627801383305216", - "outputQty0": "7976683595635181327725", - "outputQty": "7928058464290421857656", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "16450504059225006", + "outputQty0": "16433671575389585", + "outputQty": "16593147251526821", + "swapFee": "13131505724019", "mpReserves": [ - "37275571024818721801750334", - "32845635416651061989466785", - "36936286933620148523629645" + "38126237675202004140007553", + "25295649716535434930035815", + "37386968829186661452061016" ], "fpReserves": [ - "8036737555887018686395631", - "4126555186119568185241030" + "1768563497579840276064513", + "4974828162437699767997889" ], - "mAssetSupply": "107056909878809955812843170", - "LPTokenSupply": "12110859731283341784552873" + "mAssetSupply": "100794338496582393324645660", + "LPTokenSupply": "6683782821012534409128861" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "123583819499195884109824", - "outputQty0": "123618254296388924615348", - "outputQty": "122837699299227344789591", - "swapFee": "98288815005965823292", + "type": "redeem", + "outputIndex": 0, + "inputQty": "3059316168155875770368", + "outputQty0": "3061037813940734960140", + "outputQty": "3062798130953851111725", + "swapFee1": "1835589700893525462", + "swapFee2": "1836622688364440976", "mpReserves": [ - "37275571024818721801750334", - "32969219236150257873576609", - "36936286933620148523629645" + "38123174877071050288895828", + "25295649716535434930035815", + "37386968829186661452061016" ], "fpReserves": [ - "8160355810183407611010979", - "4003717486820340840451439" + "1765502459765899541104373", + "4974828162437699767997889" ], - "mAssetSupply": "107180528133106344737458518", - "LPTokenSupply": "12110869560164842381135202" + "mAssetSupply": "100791279295391140954126496", + "LPTokenSupply": "6680723688403348622711039" }, { "type": "swap_fp_to_mp", - "inputQty": "12764800396983432904704", - "outputIndex": 0, - "outputQty": "12835262216390345862477", + "inputQty": "8357170512205351747584", + "outputIndex": 2, + "outputQty": "8272980372283101341353", "swapFee": "0", - "redemptionFee": "5135422803938449803", + "redemptionFee": "4961688143188485378", "mpReserves": [ - "37262735762602331455887857", - "32969219236150257873576609", - "36936286933620148523629645" + "38123174877071050288895828", + "25295649716535434930035815", + "37378695848814378350719663" ], "fpReserves": [ - "8147517253173561486502919", - "4016482287217324273356143" + "1757232979527252065474100", + "4983185332949905119745473" ], - "mAssetSupply": "107167694711519302551400261", - "LPTokenSupply": "12110869560164842381135202" + "mAssetSupply": "100783014776840636666981601", + "LPTokenSupply": "6680723688403348622711039" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "647409360973674114449408", - "outputQty0": "647304820143483026379956", - "outputQty": "642077926987290820423732", - "swapFee": "514528707574216614061", + "inputQty": "604497626848720031055872", + "outputQty0": "603762330862754734452667", + "outputQty": "602047928964362752768749", "mpReserves": [ - "37910145123576005570337265", - "32969219236150257873576609", - "36936286933620148523629645" + "38727672503919770319951700", + "25295649716535434930035815", + "37378695848814378350719663" ], "fpReserves": [ - "8794822073317044512882875", - "3374404360230033452932411" + "2360995310390006799926767", + "4983185332949905119745473" ], - "mAssetSupply": "107814999531662785577780217", - "LPTokenSupply": "12110921013035599802796608" + "mAssetSupply": "101386777107703391401434268", + "LPTokenSupply": "7282771617367711375479788" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "474140441560532610187264", - "outputQty0": "474088234388983683500337", - "outputQty": "468554402627961353002821", - "swapFee": "376448874677929986898", + "type": "redeem", + "outputIndex": 2, + "inputQty": "48118773490276095754240", + "outputQty0": "48288078312168282547149", + "outputQty": "48306452005800367700431", + "swapFee1": "28871264094165657452", + "swapFee2": "28972846987300969528", "mpReserves": [ - "37910145123576005570337265", - "32969219236150257873576609", - "37410427375180681133816909" + "38727672503919770319951700", + "25295649716535434930035815", + "37330389396808577983019232" ], "fpReserves": [ - "9268910307706028196383212", - "2905849957602072099929590" + "2312707232077838517379618", + "4983185332949905119745473" ], - "mAssetSupply": "108289087766051769261280554", - "LPTokenSupply": "12110958657923067595795297" + "mAssetSupply": "101338518002238210419856647", + "LPTokenSupply": "7234655731003844696291293" }, { "type": "swap_fp_to_mp", - "inputQty": "619565101062160908288", + "inputQty": "427663031667154099372032", "outputIndex": 0, - "outputQty": "627529869857830660244", + "outputQty": "424343765885019279064849", "swapFee": "0", - "redemptionFee": "251070623301446425", + "redemptionFee": "254445288873209641187", "mpReserves": [ - "37909517593706147739677021", - "32969219236150257873576609", - "37410427375180681133816909" + "38303328738034751040886851", + "25295649716535434930035815", + "37330389396808577983019232" ], "fpReserves": [ - "9268282631147774580318392", - "2906469522703134260837878" + "1888631750622489115400650", + "5410848364617059219117505" ], - "mAssetSupply": "108288460340564138946662159", - "LPTokenSupply": "12110958657923067595795297" + "mAssetSupply": "100914696966071734227518866", + "LPTokenSupply": "7234655731003844696291293" }, { "type": "mint", "inputIndex": 0, - "inputQty": "5735714885430671310848", - "outputQty0": "5734759992851748323086", - "outputQty": "5686931252363539509640", + "inputQty": "213305202862258340757504", + "outputQty0": "213045526118241074710061", + "outputQty": "212696912287089262015326", "mpReserves": [ - "37915253308591578410987869", - "32969219236150257873576609", - "37410427375180681133816909" + "38516633940897009381644355", + "25295649716535434930035815", + "37330389396808577983019232" ], "fpReserves": [ - "9274017391140626328641478", - "2906469522703134260837878" + "2101677276740730190110711", + "5410848364617059219117505" ], - "mAssetSupply": "108294195100556990694985245", - "LPTokenSupply": "12116645589175431135304937" + "mAssetSupply": "101127742492189975302228927", + "LPTokenSupply": "7447352643290933958306619" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "198029647109390", - "outputQty0": "198005148571312", - "outputQty": "195287876974548", - "swapFee": "157082742363", + "type": "redeem", + "outputIndex": 1, + "inputQty": "401176288766143758336", + "outputQty0": "401850469908973581957", + "outputQty": "400509165301982542783", + "swapFee1": "240705773259686255", + "swapFee2": "241110281945384149", "mpReserves": [ - "37915253308591578410987869", - "32969219236150257873576609", - "37410427375378710780926299" + "38516633940897009381644355", + "25295249207370132947493032", + "37330389396808577983019232" ], "fpReserves": [ - "9274017391338631477212790", - "2906469522507846383863330" + "2101275426270821216528754", + "5410848364617059219117505" ], - "mAssetSupply": "108294195100754995843556557", - "LPTokenSupply": "12116645589175446843579173" + "mAssetSupply": "101127340882830348274031119", + "LPTokenSupply": "7446951491072745140516908" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "31077529851494223872", - "outputQty0": "31073685176876652154", - "outputQty": "30647248845290249444", - "swapFee": "24651579385113875", - "mpReserves": [ - "37915253308591578410987869", - "32969219236150257873576609", - "37410458452908562275150171" - ], - "fpReserves": [ - "9274048465023808353864944", - "2906438875259001093613886" - ], - "mAssetSupply": "108294226174440172720208711", - "LPTokenSupply": "12116645591640604782090560" + "type": "swap_fp_to_mp", + "inputQty": "2195223403638533686034432", + "outputIndex": 2, + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "127651972115188835942400", + "inputQty": "863489999351517544448", "outputIndex": 0, - "outputQty": "129213362771528352343756", + "outputQty": "856337722148615331240", "swapFee": "0", - "redemptionFee": "51697599236061563834", - "mpReserves": [ - "37786039945820050058644113", - "32969219236150257873576609", - "37410458452908562275150171" - ], - "fpReserves": [ - "9144804466933654444277753", - "3034090847374189929556286" - ], - "mAssetSupply": "108165033873949254872185354", - "LPTokenSupply": "12116645591640604782090560" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "512431733179125474525184", - "outputQty0": "512358969781360135572208", - "outputQty": "508164741137491156473413", + "redemptionFee": "513477701641815705", "mpReserves": [ - "37786039945820050058644113", - "32969219236150257873576609", - "37922890186087687749675355" + "38515777603174860766313115", + "25295249207370132947493032", + "37330389396808577983019232" ], "fpReserves": [ - "9657163436715014579849961", - "3034090847374189929556286" + "2100419630101418190352237", + "5411711854616410736661953" ], - "mAssetSupply": "108677392843730615007757562", - "LPTokenSupply": "12624810332778095938563973" + "mAssetSupply": "101126485600138646889670307", + "LPTokenSupply": "7446951491072745140516908" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "1034888965315909249925120", - "hardLimitError": true - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "320128954097050816", - "outputQty0": "320082543539524136", - "outputQty": "315707589497877317", - "swapFee": "253933398709404", + "inputQty": "605160561461697708032", + "outputQty0": "606822850455629129931", + "outputQty": "611789328941648625519", + "swapFee": "484355910646166426", "mpReserves": [ - "37786040265949004155694929", - "32969219236150257873576609", - "37922890186087687749675355" + "38515777603174860766313115", + "25295854367931594645201064", + "37330389396808577983019232" ], "fpReserves": [ - "9657163756797558119374097", - "3034090531666600431678969" + "2101026452951873819482168", + "5411100065287469088036434" ], - "mAssetSupply": "108677393163813158547281698", - "LPTokenSupply": "12624810332803489278434913" + "mAssetSupply": "101127092422989102518800238", + "LPTokenSupply": "7446951539508336205133550" }, { - "type": "swap_fp_to_mp", - "inputQty": "212693491764186578944", - "outputIndex": 2, - "outputQty": "215415713682278689011", - "swapFee": "0", - "redemptionFee": "86187272429992289", + "type": "redeem", + "outputIndex": 0, + "inputQty": "3556360636322890121216", + "outputQty0": "3562292086393723598240", + "outputQty": "3564544997363319422358", + "swapFee1": "2133816381793734072", + "swapFee2": "2137375251836234158", "mpReserves": [ - "37786040265949004155694929", - "32969219236150257873576609", - "37922674770374005470986344" + "38512213058177497446890757", + "25295854367931594645201064", + "37330389396808577983019232" ], "fpReserves": [ - "9656948288616483138649961", - "3034303225158364618257913" + "2097464160865480095883928", + "5411100065287469088036434" ], - "mAssetSupply": "108677177781819355996549851", - "LPTokenSupply": "12624810332803489278434913" + "mAssetSupply": "101123532268277960631436156", + "LPTokenSupply": "7443395392253651494385741" }, { "type": "mint", "inputIndex": 2, - "inputQty": "671720688304548143431680", - "outputQty0": "671602933890919079348373", - "outputQty": "665885078684149505522599", + "inputQty": "44200579384981135360", + "outputQty0": "44156803751024205251", + "outputQty": "44057243095421017386", "mpReserves": [ - "37786040265949004155694929", - "32969219236150257873576609", - "38594395458678553614418024" + "38512213058177497446890757", + "25295854367931594645201064", + "37330433597387962964154592" ], "fpReserves": [ - "10328551222507402217998334", - "3034303225158364618257913" + "2097508317669231120089179", + "5411100065287469088036434" ], - "mAssetSupply": "109348780715710275075898224", - "LPTokenSupply": "13290695411487638783957512" + "mAssetSupply": "101123576425081711655641407", + "LPTokenSupply": "7443439449496746915403127" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "22024964555240103739392", - "outputQty0": "22022168643481019983746", - "outputQty": "21684164115396909542577", - "swapFee": "17464369463129894527", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1051585517673137307648", + "outputQty0": "1053326597567062212928", + "outputQty": "1049811263649093892458", + "swapFee1": "630951310603882384", + "swapFee2": "631995958540237327", "mpReserves": [ - "37808065230504244259434321", - "32969219236150257873576609", - "38594395458678553614418024" + "38512213058177497446890757", + "25294804556667945551308606", + "37330433597387962964154592" ], "fpReserves": [ - "10350573391150883237982080", - "3012619061042967708715336" + "2096454991071664057876251", + "5411100065287469088036434" ], - "mAssetSupply": "109370802884353756095881970", - "LPTokenSupply": "13290697157924585096946964" + "mAssetSupply": "101122523730480103133665806", + "LPTokenSupply": "7442387927074204838483717" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "398047295305468", - "outputQty0": "398185013666666", - "outputQty": "394699529431449", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "2465792496178796429312", + "outputQty0": "2463349669846312997499", + "outputQty": "2483556788611608290441", + "swapFee": "1966234121568948517", "mpReserves": [ - "37808065230504244259434321", - "32969219236548305168882077", - "38594395458678553614418024" + "38512213058177497446890757", + "25294804556667945551308606", + "37332899389884141760583904" ], "fpReserves": [ - "10350573391549068251648746", - "3012619061042967708715336" + "2098918340741510370873750", + "5408616508498857479745993" ], - "mAssetSupply": "109370802884751941109548636", - "LPTokenSupply": "13290697158319284626378413" + "mAssetSupply": "101124987080149949446663305", + "LPTokenSupply": "7442388123697616995378568" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "284442091678607507456", - "outputQty0": "286781727106706428531", - "outputQty": "286567863128962256224", - "swapFee1": "170665255007164504", - "swapFee2": "114712690842682571", - "mpReserves": [ - "37808065230504244259434321", - "32968932668685176206625853", - "38594395458678553614418024" - ], - "fpReserves": [ - "10350286609821961545220215", - "3012619061042967708715336" - ], - "mAssetSupply": "109370516217737525245802676", - "LPTokenSupply": "13290412733294131519587407" + "inputQty": "816906565207626906337280", + "hardLimitError": true }, { "type": "redeem", "outputIndex": 0, - "inputQty": "2775887080590958657536", - "outputQty0": "2798717337823803862941", - "outputQty": "2797954592756387299657", - "swapFee1": "1665532248354575194", - "swapFee2": "1119486935129521545", + "inputQty": "5463552704599563436032", + "outputQty0": "5472605117810018864549", + "outputQty": "5476062556020661566159", + "swapFee1": "3278131622759738061", + "swapFee2": "3283563070686011318", "mpReserves": [ - "37805267275911487872134664", - "32968932668685176206625853", - "38594395458678553614418024" + "38506736995621476785324598", + "25294804556667945551308606", + "37332899389884141760583904" ], "fpReserves": [ - "10347487892484137741357274", - "3012619061042967708715336" + "2093445735623700352009201", + "5408616508498857479745993" ], - "mAssetSupply": "109367718619886636571461280", - "LPTokenSupply": "13287637012766765396387390" + "mAssetSupply": "101119517758595210113810074", + "LPTokenSupply": "7436924898806179707916342" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4550235972274611200", - "outputQty0": "4549355972709984408", - "outputQty": "4479038059594690663", - "swapFee": "3607632578618592", + "type": "mint", + "inputIndex": 1, + "inputQty": "81348471544481027457024", + "outputQty0": "81570752570104555243103", + "outputQty": "81370499182078130463566", "mpReserves": [ - "37805267275911487872134664", - "32968932668685176206625853", - "38594400008914525889029224" + "38506736995621476785324598", + "25376153028212426578765630", + "37332899389884141760583904" ], "fpReserves": [ - "10347492441840110451341682", - "3012614582004908114024673" + "2175016488193804907252304", + "5408616508498857479745993" ], - "mAssetSupply": "109367723169242609281445688", - "LPTokenSupply": "13287637013127528654249249" + "mAssetSupply": "101201088511165314669053177", + "LPTokenSupply": "7518295397988257838379908" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2778542097401038503936", - "outputQty0": "2778004524640245789599", - "outputQty": "2735024891086936084392", - "swapFee": "2202951758484619189", + "type": "mint", + "inputIndex": 1, + "inputQty": "1423896208817505506951168", + "outputQty0": "1427437461581222909993766", + "outputQty": "1420468847920008760961753", "mpReserves": [ - "37805267275911487872134664", - "32968932668685176206625853", - "38597178551011926927533160" + "38506736995621476785324598", + "26800049237029932085716798", + "37332899389884141760583904" ], "fpReserves": [ - "10350270446364750697131281", - "3009879557113821177940281" + "3602453949775027817246070", + "5408616508498857479745993" ], - "mAssetSupply": "109370501173767249527235287", - "LPTokenSupply": "13287637233422704502711167" + "mAssetSupply": "102628525972746537579046943", + "LPTokenSupply": "8938764245908266599341661" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "134194709970364607234048", - "outputQty0": "134177108223005139115007", - "outputQty": "132996891529151079760522", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "63408238762277740544", + "outputQty0": "63551890694260333213", + "outputQty": "63684168059390119823", + "swapFee": "50520746803622046", "mpReserves": [ - "37939461985881852479368712", - "32968932668685176206625853", - "38597178551011926927533160" + "38506736995621476785324598", + "26800112645268694363457342", + "37332899389884141760583904" ], "fpReserves": [ - "10484447554587755836246288", - "3009879557113821177940281" + "3602517501665722077579283", + "5408552824330798089626170" ], - "mAssetSupply": "109504678281990254666350294", - "LPTokenSupply": "13420634124951855582471689" + "mAssetSupply": "102628589524637231839380156", + "LPTokenSupply": "8938764250960341279703865" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "10671239027906412806144", - "outputQty0": "10669795389016436812155", - "outputQty": "10575515892531378028762", + "inputQty": "71305127055885040877568", + "outputQty0": "71228786785691948232397", + "outputQty": "71367687055945604998243", + "swapFee": "56620852577127491278", "mpReserves": [ - "37950133224909758892174856", - "32968932668685176206625853", - "38597178551011926927533160" + "38578042122677361826202166", + "26800112645268694363457342", + "37332899389884141760583904" ], "fpReserves": [ - "10495117349976772273058443", - "3009879557113821177940281" + "3673746288451414025811680", + "5337185137274852484627927" ], - "mAssetSupply": "109515348077379271103162449", - "LPTokenSupply": "13431209640844386960500451" + "mAssetSupply": "102699818311422923787612553", + "LPTokenSupply": "8938769913045598992452992" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "287250703062362849280", - "outputQty0": "287196251664522360376", - "outputQty": "282647205023238160861", - "swapFee": "227726145447908232", + "type": "swap_fp_to_mp", + "inputQty": "37716375188994711552", + "outputIndex": 1, + "outputQty": "37509889174816297732", + "swapFee": "0", + "redemptionFee": "22570631711441500", "mpReserves": [ - "37950133224909758892174856", - "32968932668685176206625853", - "38597465801714989290382440" + "38578042122677361826202166", + "26800075135379519547159610", + "37332899389884141760583904" ], "fpReserves": [ - "10495404546228436795418819", - "3009596909908797939779420" + "3673708670731894956644295", + "5337222853650041479339479" ], - "mAssetSupply": "109515635273630935625522825", - "LPTokenSupply": "13431209663617001505291274" + "mAssetSupply": "102699780716274036429886668", + "LPTokenSupply": "8938769913045598992452992" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1174771259224075", - "outputQty0": "1184537456193934", - "outputQty": "1183648412329315", - "swapFee1": "704862755534", - "swapFee2": "473814982477", + "type": "mint", + "inputIndex": 2, + "inputQty": "762165446293642794762240", + "outputQty0": "761498313890424416165149", + "outputQty": "756256681341976697699282", "mpReserves": [ - "37950133224909758892174856", - "32968932667501527794296538", - "38597465801714989290382440" + "38578042122677361826202166", + "26800075135379519547159610", + "38095064836177784555346144" ], "fpReserves": [ - "10495404545043899339224885", - "3009596909908797939779420" + "4435206984622319372809444", + "5337222853650041479339479" ], - "mAssetSupply": "109515635272446871984311368", - "LPTokenSupply": "13431209662442300732342752" + "mAssetSupply": "103461279030164460846051817", + "LPTokenSupply": "9695026594387575690152274" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "189153071525400196153344", - "outputQty0": "189126414244640988392677", - "outputQty": "187444670885292824287957", + "inputQty": "20074455312727218847744", + "outputQty0": "20053824996958853407306", + "outputQty": "20062140867957774491081", + "swapFee": "15926663932811898622", "mpReserves": [ - "38139286296435159088328200", - "32968932667501527794296538", - "38597465801714989290382440" + "38598116577990089045049910", + "26800075135379519547159610", + "38095064836177784555346144" ], "fpReserves": [ - "10684530959288540327617562", - "3009596909908797939779420" + "4455260809619278226216750", + "5317160712782083704848398" ], - "mAssetSupply": "109704761686691512972704045", - "LPTokenSupply": "13618654333327593556630709" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "646038166619544849743872", - "hardLimitError": true + "mAssetSupply": "103481332855161419699459123", + "LPTokenSupply": "9695028187053968971342136" }, { "type": "swap_fp_to_mp", - "inputQty": "1215376413550823", + "inputQty": "8070793306337697595392", "outputIndex": 1, - "outputQty": "1233599254417649", + "outputQty": "8037352090623281383988", "swapFee": "0", - "redemptionFee": "493813409688", + "redemptionFee": "4836678836324265310", "mpReserves": [ - "38139286296435159088328200", - "32968932666267928539878889", - "38597465801714989290382440" + "38598116577990089045049910", + "26792037783288896265775622", + "38095064836177784555346144" ], "fpReserves": [ - "10684530958054006803396424", - "3009596911124174353330243" + "4447199678225404450698626", + "5325231506088421402443790" ], - "mAssetSupply": "109704761685457473261892595", - "LPTokenSupply": "13618654333327593556630709" + "mAssetSupply": "103473276560446382248206309", + "LPTokenSupply": "9695028187053968971342136" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "971057109710983397376", "outputIndex": 0, - "inputQty": "10043577612221674422272", - "outputQty0": "10128114168727080912587", - "outputQty": "10125541079852027960730", - "swapFee1": "6026146567333004653", - "swapFee2": "4051245667490832365", + "outputQty": "970299486074933360093", + "swapFee": "0", + "redemptionFee": "581929295633402986", "mpReserves": [ - "38129160755355307060367470", - "32968932666267928539878889", - "38597465801714989290382440" + "38597146278504014111689817", + "26792037783288896265775622", + "38095064836177784555346144" ], "fpReserves": [ - "10674402843885279722483837", - "3009596911124174353330243" + "4446229796066015445721137", + "5326202563198132385841166" ], - "mAssetSupply": "109694637622534413671812373", - "LPTokenSupply": "13608611358330028615508902" + "mAssetSupply": "103472307260216288876631806", + "LPTokenSupply": "9695028187053968971342136" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2892393350422324576256", - "outputQty0": "2893424792593741942993", - "outputQty": "2867557263705059323480", + "type": "redeem", + "outputIndex": 0, + "inputQty": "175877622543072755712", + "outputQty0": "177058456684177609340", + "outputQty": "177134628568824671644", + "swapFee1": "105526573525843653", + "swapFee2": "106235074010506565", "mpReserves": [ - "38129160755355307060367470", - "32971825059618350864455145", - "38597465801714989290382440" + "38596969143875445287018173", + "26792037783288896265775622", + "38095064836177784555346144" ], "fpReserves": [ - "10677296268677873464426830", - "3009596911124174353330243" + "4446052737609331268111797", + "5326202563198132385841166" ], - "mAssetSupply": "109697531047327007413755366", - "LPTokenSupply": "13611478915593733674832382" + "mAssetSupply": "103472130307994678709529031", + "LPTokenSupply": "9694852319984083251170789" }, { "type": "swap_fp_to_mp", - "inputQty": "439443000590988264603648", - "outputIndex": 0, - "outputQty": "445258674934584276937057", + "inputQty": "119104226001539070689280", + "outputIndex": 1, + "outputQty": "118586480860554375809713", "swapFee": "0", - "redemptionFee": "178151044753630528327", + "redemptionFee": "71363758432106176094", "mpReserves": [ - "37683902080420722783430413", - "32971825059618350864455145", - "38597465801714989290382440" + "38596969143875445287018173", + "26673451302428341889965909", + "38095064836177784555346144" ], "fpReserves": [ - "10231918656793797143609295", - "3449039911715162617933891" + "4327113140222487641287585", + "5445306789199671456530446" ], - "mAssetSupply": "109252331586487684723466158", - "LPTokenSupply": "13611478915593733674832382" + "mAssetSupply": "103353262074366267188880913", + "LPTokenSupply": "9694852319984083251170789" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "593983770917305111805952", - "outputQty0": "594173526013152914178472", - "outputQty": "589354335751897013833573", + "type": "redeem", + "outputIndex": 0, + "inputQty": "57625893142149556338688", + "outputQty0": "58000275180367399737043", + "outputQty": "58025726392878995522755", + "swapFee1": "34575535885289733803", + "swapFee2": "34800165108220439842", "mpReserves": [ - "37683902080420722783430413", - "33565808830535655976261097", - "38597465801714989290382440" + "38538943417482566291495418", + "26673451302428341889965909", + "38095064836177784555346144" ], "fpReserves": [ - "10826092182806950057787767", - "3449039911715162617933891" + "4269112865042120241550542", + "5445306789199671456530446" ], - "mAssetSupply": "109846505112500837637644630", - "LPTokenSupply": "14200833251345630688665955" + "mAssetSupply": "103295296599351008009583712", + "LPTokenSupply": "9637229884395522223805481" }, { "type": "swap_fp_to_mp", - "inputQty": "8490950459040399884288", - "outputIndex": 2, - "outputQty": "8596859498567844547018", + "inputQty": "762025039311712026624", + "outputIndex": 0, + "outputQty": "761097629697062301751", "swapFee": "0", - "redemptionFee": "3439509611212767452", + "redemptionFee": "456460114643802516", "mpReserves": [ - "37683902080420722783430413", - "33565808830535655976261097", - "38588868942216421445835422" + "38538182319852869229193667", + "26673451302428341889965909", + "38095064836177784555346144" ], "fpReserves": [ - "10817493408778918139156975", - "3457530862174203017818179" + "4268352098184380570689968", + "5446068814238983168557070" ], - "mAssetSupply": "109837909777982416931781290", - "LPTokenSupply": "14200833251345630688665955" + "mAssetSupply": "103294536288953382982525654", + "LPTokenSupply": "9637229884395522223805481" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "11105141582548961329152", - "outputQty0": "11190647934685837863332", - "outputQty": "11188150224284250273306", - "swapFee1": "6663084949529376797", - "swapFee2": "4476259173874335145", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "27671963814252504940544", + "outputQty0": "27737920648053745798404", + "outputQty": "27760456219844600557474", + "swapFee": "22034137157254792035", "mpReserves": [ - "37683902080420722783430413", - "33565808830535655976261097", - "38577680791992137195562116" + "38538182319852869229193667", + "26701123266242594394906453", + "38095064836177784555346144" ], "fpReserves": [ - "10806302760844232301293643", - "3457530862174203017818179" + "4296090018832434316488372", + "5418308358019138567999596" ], - "mAssetSupply": "109826723606306904968253103", - "LPTokenSupply": "14189728776071576680274482" + "mAssetSupply": "103322274209601436728324058", + "LPTokenSupply": "9637232087809237949284684" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "27233540260976480223232", - "outputQty0": "27241595365437633545504", - "outputQty": "26877012195385278105720", - "swapFee": "21613686112012341547", + "type": "redeem", + "outputIndex": 1, + "inputQty": "46799606246493552640", + "outputQty0": "47104740429905773069", + "outputQty": "46964733823822361374", + "swapFee1": "28079763747896131", + "swapFee2": "28262844257943463", "mpReserves": [ - "37683902080420722783430413", - "33593042370796632456484329", - "38577680791992137195562116" + "38538182319852869229193667", + "26701076301508770572545079", + "38095064836177784555346144" ], "fpReserves": [ - "10833544356209669934839147", - "3430653849978817739712459" + "4296042914092004410715303", + "5418308358019138567999596" ], - "mAssetSupply": "109853965201672342601798607", - "LPTokenSupply": "14189730937440187881508636" + "mAssetSupply": "103322227133123851080494452", + "LPTokenSupply": "9637185291010967830521657" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "30313452970232252465152", - "outputQty0": "30322355174137267588462", - "outputQty": "30070757835399981401196", + "type": "redeem", + "outputIndex": 1, + "inputQty": "7308228552797771005952", + "outputQty0": "7355853333871600057741", + "outputQty": "7333981738767790124292", + "swapFee1": "4384937131678662603", + "swapFee2": "4413512000322960034", "mpReserves": [ - "37683902080420722783430413", - "33623355823766864708949481", - "38577680791992137195562116" + "38538182319852869229193667", + "26693742319770002782420787", + "38095064836177784555346144" ], "fpReserves": [ - "10863866711383807202427609", - "3430653849978817739712459" + "4288687060758132810657562", + "5418308358019138567999596" ], - "mAssetSupply": "109884287556846479869387069", - "LPTokenSupply": "14219801695275587862909832" + "mAssetSupply": "103314875693301979803396745", + "LPTokenSupply": "9629877500951883227381965" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "224526707493071093760", - "outputQty0": "224592393866444928621", - "outputQty": "222727172779152440680", + "type": "redeem", + "outputIndex": 2, + "inputQty": "35249170425624276238336", + "outputQty0": "35478187092638633315988", + "outputQty": "35490267069104082610357", + "swapFee1": "21149502255374565743", + "swapFee2": "21286912255583179989", "mpReserves": [ - "37683902080420722783430413", - "33623580350474357780043241", - "38577680791992137195562116" + "38538182319852869229193667", + "26693742319770002782420787", + "38059574569108680472735787" ], "fpReserves": [ - "10864091303777673647356230", - "3430653849978817739712459" + "4253208873665494177341574", + "5418308358019138567999596" ], - "mAssetSupply": "109884512149240346314315690", - "LPTokenSupply": "14220024422448367015350512" + "mAssetSupply": "103279418793121596753260746", + "LPTokenSupply": "9594630445476484488600203" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2518728493436954624", - "outputQty0": "2519465338727536847", - "outputQty": "2498541248960075243", + "type": "redeem", + "outputIndex": 1, + "inputQty": "822384507868982400", + "outputQty0": "827715580927737482", + "outputQty": "825256670285452973", + "swapFee1": "493430704721389", + "swapFee2": "496629348556642", "mpReserves": [ - "37683902080420722783430413", - "33623582869202851216997865", - "38577680791992137195562116" + "38538182319852869229193667", + "26693741494513332496967814", + "38059574569108680472735787" ], "fpReserves": [ - "10864093823243012374893077", - "3430653849978817739712459" + "4253208045949913249604092", + "5418308358019138567999596" ], - "mAssetSupply": "109884514668705685041852537", - "LPTokenSupply": "14220026920989615975425755" + "mAssetSupply": "103279417965902645174079906", + "LPTokenSupply": "9594629623141319690089941" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2900209347234613760", - "outputQty0": "2899920851982785713", - "outputQty": "2875837085872615420", + "inputIndex": 1, + "inputQty": "2979450743777644249088", + "outputQty0": "2986533878798280115899", + "outputQty": "2965513970024587552261", "mpReserves": [ - "37683904980630070018044173", - "33623582869202851216997865", - "38577680791992137195562116" + "38538182319852869229193667", + "26696720945257110141216902", + "38059574569108680472735787" ], "fpReserves": [ - "10864096723163864357678790", - "3430653849978817739712459" + "4256194579828711529719991", + "5418308358019138567999596" ], - "mAssetSupply": "109884517568626537024638250", - "LPTokenSupply": "14220029796826701848041175" + "mAssetSupply": "103282404499781443454195805", + "LPTokenSupply": "9597595137111344277642202" }, { - "type": "swap_fp_to_mp", - "inputQty": "43646207096012077531136", + "type": "redeem", "outputIndex": 1, - "outputQty": "44171830330532876726917", - "swapFee": "0", - "redemptionFee": "17681002011275843924", + "inputQty": "12209326577232273408", + "outputQty0": "12288507274984288153", + "outputQty": "12252012643433333243", + "swapFee1": "7325595946339364", + "swapFee2": "7373104364990572", "mpReserves": [ - "37683904980630070018044173", - "33579411038872318340270948", - "38577680791992137195562116" + "38538182319852869229193667", + "26696708693244466707883659", + "38059574569108680472735787" ], "fpReserves": [ - "10819894218135674747867823", - "3474300057074829817243595" + "4256182291321436545431838", + "5418308358019138567999596" ], - "mAssetSupply": "109840332744600358690671207", - "LPTokenSupply": "14220029796826701848041175" + "mAssetSupply": "103282392218647272834898224", + "LPTokenSupply": "9597582928517326640002730" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "43244230863258529038336", - "outputQty0": "43239813350974583169058", - "outputQty": "42661649033271169437928", - "swapFee": "34307263716888430253", + "inputIndex": 2, + "inputQty": "6063237502941779722240", + "outputQty0": "6057551367914445395099", + "outputQty": "6062570360411903680072", + "swapFee": "4811913272597238795", "mpReserves": [ - "37727149211493328547082509", - "33579411038872318340270948", - "38577680791992137195562116" + "38538182319852869229193667", + "26696708693244466707883659", + "38065637806611622252458027" ], "fpReserves": [ - "10863134031486649331036881", - "3431638408041558647805667" + "4262239842689350990826937", + "5412245787658726664319524" ], - "mAssetSupply": "109883572557951333273840265", - "LPTokenSupply": "14220033227553073536884200" + "mAssetSupply": "103288449770015187280293323", + "LPTokenSupply": "9597583409708653899726609" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "73554028152751724167168", - "outputQty0": "73575689299751605203502", - "outputQty": "72963306367779373840604", + "type": "redeem", + "outputIndex": 1, + "inputQty": "18075688539619210559488", + "outputQty0": "18192951469754174877990", + "outputQty": "18138859976633448027113", + "swapFee1": "10845413123771526335", + "swapFee2": "10915770881852504926", "mpReserves": [ - "37727149211493328547082509", - "33652965067025070064438116", - "38577680791992137195562116" + "38538182319852869229193667", + "26678569833267833259856546", + "38065637806611622252458027" ], "fpReserves": [ - "10936709720786400936240383", - "3431638408041558647805667" + "4244046891219596815948947", + "5412245787658726664319524" ], - "mAssetSupply": "109957148247251084879043767", - "LPTokenSupply": "14292996533920852910724804" + "mAssetSupply": "103270267734316314957920259", + "LPTokenSupply": "9579508805710347066319754" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "4389903534237068296192", - "outputQty0": "4389459575250063518058", - "outputQty": "4329256814113125391900", - "swapFee": "3482273162571339535", + "type": "redeem", + "outputIndex": 2, + "inputQty": "322857238421772708085760", + "outputQty0": "324896960446080490170337", + "outputQty": "325000187332115555170889", + "swapFee1": "193714343053063624851", + "swapFee2": "194938176267648294102", "mpReserves": [ - "37731539115027565615378701", - "33652965067025070064438116", - "38577680791992137195562116" + "38538182319852869229193667", + "26678569833267833259856546", + "37740637619279506697287138" ], "fpReserves": [ - "10941099180361650999758441", - "3427309151227445522413767" + "3919149930773516325778610", + "5412245787658726664319524" ], - "mAssetSupply": "109961537706826334942561825", - "LPTokenSupply": "14292996882148169167858757" + "mAssetSupply": "102945565712046502116044024", + "LPTokenSupply": "9256670938722879664596479" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "532270052484533844967424", - "outputQty0": "532170520280200951940885", - "outputQty": "523472266824490102180437", - "swapFee": "422125862205338563163", + "inputQty": "552563764250853700009984", + "outputQty0": "552048054571077938834061", + "outputQty": "548183235808672274311201", "mpReserves": [ - "37731539115027565615378701", - "33652965067025070064438116", - "39109950844476671040529540" + "38538182319852869229193667", + "26678569833267833259856546", + "38293201383530360397297122" ], "fpReserves": [ - "11473269700641851951699326", - "2903836884402955420233330" + "4471197985344594264612671", + "5412245787658726664319524" ], - "mAssetSupply": "110493708227106535894502710", - "LPTokenSupply": "14293039094734389701715073" + "mAssetSupply": "103497613766617580054878085", + "LPTokenSupply": "9804854174531551938907680" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "269011181099376755867648", - "hardLimitError": true - }, - { - "type": "swap_fp_to_mp", - "inputQty": "279060559458048980025344", - "outputIndex": 1, - "outputQty": "283642851515681027499048", - "swapFee": "0", - "redemptionFee": "113538796011310647449", + "inputIndex": 1, + "inputQty": "437829798418101699608576", + "outputQty0": "438854778034865835984661", + "outputQty": "438801563048051970857201", + "swapFee": "348475935162270064252", "mpReserves": [ - "37731539115027565615378701", - "33369322215509389036939068", - "39109950844476671040529540" + "38538182319852869229193667", + "27116399631685934959465122", + "38293201383530360397297122" ], "fpReserves": [ - "11189422710613575333076156", - "3182897443861004400258674" + "4910052763379460100597332", + "4973444224610674693462323" ], - "mAssetSupply": "110209974775874270586526989", - "LPTokenSupply": "14293039094734389701715073" + "mAssetSupply": "103936468544652445890862746", + "LPTokenSupply": "9804889022125068165914105" }, { - "type": "swap_fp_to_mp", - "inputQty": "161443509754582043459584", - "outputIndex": 2, - "outputQty": "163778935492225449249005", - "swapFee": "0", - "redemptionFee": "65524280815871689894", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3613548397073750", + "outputQty0": "3640177878620246", + "outputQty": "3629733658484069", + "swapFee1": "2168129038244", + "swapFee2": "2184106727172", "mpReserves": [ - "37731539115027565615378701", - "33369322215509389036939068", - "38946171908984445591280535" + "38538182319852869229193667", + "27116399628056201300981053", + "38293201383530360397297122" ], "fpReserves": [ - "11025612008573896108339859", - "3344340953615586443718258" + "4910052759739282221977086", + "4973444224610674693462323" ], - "mAssetSupply": "110046229598115407233480586", - "LPTokenSupply": "14293039094734389701715073" + "mAssetSupply": "103936468541014452118969672", + "LPTokenSupply": "9804889018511736581744179" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "262113482136106237952", - "outputQty0": "264215804834569184972", - "outputQty": "264024387580831811965", - "swapFee1": "157268089281663742", - "swapFee2": "105686321933827673", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1261533700494236160", + "outputQty0": "1260365939777291040", + "outputQty": "1259464643024070921", + "swapFee": "1000316102178739", "mpReserves": [ - "37731539115027565615378701", - "33369058191121808205127103", - "38946171908984445591280535" + "38538182319852869229193667", + "27116399628056201300981053", + "38293202645064060891533282" ], "fpReserves": [ - "11025347792769061539154887", - "3344340953615586443718258" + "4910054020105221999268126", + "4973442965146031669391402" ], - "mAssetSupply": "110045965487996894598123287", - "LPTokenSupply": "14292776996979062523643495" + "mAssetSupply": "103936469801380391896260712", + "LPTokenSupply": "9804889018611768191962052" }, { - "type": "swap_fp_to_mp", - "inputQty": "40944276272169044934656", - "outputIndex": 0, - "outputQty": "41491760217717484872346", - "swapFee": "0", - "redemptionFee": "16601699993849160675", + "type": "mint", + "inputIndex": 2, + "inputQty": "99078225203624721514496", + "outputQty0": "98985834318279659372572", + "outputQty": "98199486700275535321423", "mpReserves": [ - "37690047354809848130506355", - "33369058191121808205127103", - "38946171908984445591280535" + "38538182319852869229193667", + "27116399628056201300981053", + "38392280870267685613047778" ], "fpReserves": [ - "10983843542784438637466074", - "3385285229887755488652914" + "5009039854423501658640698", + "4973442965146031669391402" ], - "mAssetSupply": "110004477839712265545595149", - "LPTokenSupply": "14292776996979062523643495" + "mAssetSupply": "104035455635698671555633284", + "LPTokenSupply": "9903088505312043727283475" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "90992255682485545861120", - "outputQty0": "90983108574428824682516", - "outputQty": "90210926087055654999997", + "inputIndex": 1, + "inputQty": "83110840512629899264", + "outputQty0": "83300830216515921410", + "outputQty": "82636361536291816834", "mpReserves": [ - "37781039610492333676367475", - "33369058191121808205127103", - "38946171908984445591280535" + "38538182319852869229193667", + "27116482738896713930880317", + "38392280870267685613047778" ], "fpReserves": [ - "11074826651358867462148590", - "3385285229887755488652914" + "5009123155253718174562108", + "4973442965146031669391402" ], - "mAssetSupply": "110095460948286694370277665", - "LPTokenSupply": "14382987923066118178643492" + "mAssetSupply": "104035538936528888071554694", + "LPTokenSupply": "9903171141673580019100309" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "626593018949663174164480", - "outputQty0": "631491820080953239954216", - "outputQty": "631354780939633216683495", - "swapFee1": "375955811369797904498", - "swapFee2": "252596728032381295981", + "type": "swap_fp_to_mp", + "inputQty": "9391950055864132435968", + "outputIndex": 1, + "outputQty": "9365220744390637589557", + "swapFee": "0", + "redemptionFee": "5635366591643665692", "mpReserves": [ - "37781039610492333676367475", - "33369058191121808205127103", - "38314817128044812374597040" + "38538182319852869229193667", + "27107117518152323293290760", + "38392280870267685613047778" ], "fpReserves": [ - "10443334831277914222194374", - "3385285229887755488652914" + "4999730877600978731741774", + "4982834915201895801827370" ], - "mAssetSupply": "109464221724933773511619430", - "LPTokenSupply": "13756432499697591984269461" + "mAssetSupply": "104026152294242740272400052", + "LPTokenSupply": "9903171141673580019100309" }, { "type": "mint", "inputIndex": 2, - "inputQty": "46779204606808863801344", - "outputQty0": "46771396837095656258442", - "outputQty": "46386385061656965979594", + "inputQty": "731035773617960818573312", + "outputQty0": "730311864409423052211840", + "outputQty": "724331522530309665228843", "mpReserves": [ - "37781039610492333676367475", - "33369058191121808205127103", - "38361596332651621238398384" + "38538182319852869229193667", + "27107117518152323293290760", + "39123316643885646431621090" ], "fpReserves": [ - "10490106228115009878452816", - "3385285229887755488652914" + "5730042742010401783953614", + "4982834915201895801827370" ], - "mAssetSupply": "109510993121770869167877872", - "LPTokenSupply": "13802818884759248950249055" + "mAssetSupply": "104756464158652163324611892", + "LPTokenSupply": "10627502664203889684329152" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "7747975499190582272", - "outputQty0": "7746672236456865126", - "outputQty": "7682813013381001665", + "type": "swap_fp_to_mp", + "inputQty": "216414649783487072", + "outputIndex": 0, + "outputQty": "216686691648272429", + "swapFee": "0", + "redemptionFee": "129969969438685", "mpReserves": [ - "37781039610492333676367475", - "33369058191121808205127103", - "38361604080627120428980656" + "38538182103166177580921238", + "27107117518152323293290760", + "39123316643885646431621090" ], "fpReserves": [ - "10490113974787246335317942", - "3385285229887755488652914" + "5730042525393786052810503", + "4982835131616545585314442" ], - "mAssetSupply": "109511000868443105624742998", - "LPTokenSupply": "13802826567572262331250720" + "mAssetSupply": "104756463942165517562907466", + "LPTokenSupply": "10627502664203889684329152" }, { "type": "mint", "inputIndex": 2, - "inputQty": "11307313102327367335936", - "outputQty0": "11305407582144751383918", - "outputQty": "11212180264145980477726", + "inputQty": "541244368756718567424", + "outputQty0": "540681550687550368539", + "outputQty": "536139850798193596876", "mpReserves": [ - "37781039610492333676367475", - "33369058191121808205127103", - "38372911393729447796316592" + "38538182103166177580921238", + "27107117518152323293290760", + "39123857888254403150188514" ], "fpReserves": [ - "10501419382369391086701860", - "3385285229887755488652914" + "5730583206944473603179042", + "4982835131616545585314442" ], - "mAssetSupply": "109522306276025250376126916", - "LPTokenSupply": "13814038747836408311728446" + "mAssetSupply": "104757004623716205113276005", + "LPTokenSupply": "10628038804054687877926028" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "495069557577520341057536", - "outputQty0": "495212976598408187612184", - "outputQty": "487559197481273936934730", - "swapFee": "392853534126471369533", + "inputQty": "387197936585403948597248", + "outputQty0": "388091476326374176644057", + "outputQty": "387223231159142068295730", + "swapFee": "307833097672824666339", "mpReserves": [ - "37781039610492333676367475", - "33864127748699328546184639", - "38372911393729447796316592" + "38538182103166177580921238", + "27494315454737727241888008", + "39123857888254403150188514" ], "fpReserves": [ - "10996632358967799274314044", - "2897726032406481551718184" + "6118674683270847779823099", + "4595611900457403517018712" ], - "mAssetSupply": "110017519252623658563739100", - "LPTokenSupply": "13814078033189820958865399" + "mAssetSupply": "105145096100042579289920062", + "LPTokenSupply": "10628069587364455160392661" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "389172599339733483520", - "outputQty0": "389132513684701919142", - "outputQty": "382063035827400566714", - "swapFee": "308369854370498058", + "type": "swap_fp_to_mp", + "inputQty": "36151122341250228813824", + "outputIndex": 1, + "outputQty": "36117029825293679901669", + "swapFee": "0", + "redemptionFee": "21732151012138363501", "mpReserves": [ - "37781428783091673409850995", - "33864127748699328546184639", - "38372911393729447796316592" + "38538182103166177580921238", + "27458198424912433561986339", + "39123857888254403150188514" ], "fpReserves": [ - "10997021491481483976233186", - "2897343969370654151151470" + "6082454431583950507320723", + "4631763022798653745832536" ], - "mAssetSupply": "110017908385137343265658242", - "LPTokenSupply": "13814078064026806395915204" + "mAssetSupply": "105108897580506694155781187", + "LPTokenSupply": "10628069587364455160392661" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3563833782160482816", - "outputQty0": "3563288705701117432", - "outputQty": "3529677277237541315", + "type": "swap_fp_to_mp", + "inputQty": "779778915237782135767040", + "outputIndex": 0, + "outputQty": "780619346829837829221518", + "swapFee": "0", + "redemptionFee": "468262605072502012605", "mpReserves": [ - "37781428783091673409850995", - "33864127748699328546184639", - "38372914957563229956799408" + "37757562756336339751699720", + "27458198424912433561986339", + "39123857888254403150188514" ], "fpReserves": [ - "10997025054770189677350618", - "2897343969370654151151470" + "5302016756463113819644792", + "5411541938036435881599576" ], - "mAssetSupply": "110017911948426048966775674", - "LPTokenSupply": "13814081593704083633456519" + "mAssetSupply": "104328928167990929970117861", + "LPTokenSupply": "10628069587364455160392661" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "6449345655028906459136", - "outputQty0": "6451096555533412300129", - "outputQty": "6390233402884418778012", + "inputIndex": 2, + "inputQty": "723166303358441488384", + "outputQty0": "722404451595815414514", + "outputQty": "716688868343546855466", "mpReserves": [ - "37781428783091673409850995", - "33870577094354357452643775", - "38372914957563229956799408" + "37757562756336339751699720", + "27458198424912433561986339", + "39124581054557761591676898" ], "fpReserves": [ - "11003476151325723089650747", - "2897343969370654151151470" + "5302739160914709635059306", + "5411541938036435881599576" ], - "mAssetSupply": "110024363044981582379075803", - "LPTokenSupply": "13820471827106968052234531" + "mAssetSupply": "104329650572442525785532375", + "LPTokenSupply": "10628786276232798707248127" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "17892435090728909012992", - "outputQty0": "17890586480560293378367", - "outputQty": "17563168660661137821834", - "swapFee": "14177337982942795615", + "type": "swap_fp_to_mp", + "inputQty": "72272221705374917459968", + "outputIndex": 2, + "outputQty": "72288491581832649569650", + "swapFee": "0", + "redemptionFee": "43353621484318177806", "mpReserves": [ - "37799321218182402318863987", - "33870577094354357452643775", - "38372914957563229956799408" + "37757562756336339751699720", + "27458198424912433561986339", + "39052292562975928942107248" ], "fpReserves": [ - "11021366737806283383029114", - "2879780800709993013329636" + "5230483125107512672049016", + "5483814159741810799059544" ], - "mAssetSupply": "110042253631462142672454170", - "LPTokenSupply": "13820473244840766346514092" + "mAssetSupply": "104257437890256813140699891", + "LPTokenSupply": "10628786276232798707248127" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "706398052623161098240", - "outputQty0": "706590053829716997882", - "outputQty": "699887236095247414530", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "182341824010957815808", + "outputQty0": "182151481317693530176", + "outputQty": "182062789632222561651", + "swapFee": "144581369490499735", "mpReserves": [ - "37799321218182402318863987", - "33871283492406980613742015", - "38372914957563229956799408" + "37757562756336339751699720", + "27458198424912433561986339", + "39052474904799939899923056" ], "fpReserves": [ - "11022073327860113100026996", - "2879780800709993013329636" + "5230665276588830365579192", + "5483632096952178576497893" ], - "mAssetSupply": "110042960221515972389452052", - "LPTokenSupply": "13821173132076861593928622" + "mAssetSupply": "104257620041738130834230067", + "LPTokenSupply": "10628786290690935656298100" }, { "type": "swap_fp_to_mp", - "inputQty": "1236133179096106008576", - "outputIndex": 1, - "outputQty": "1257464141451444877612", + "inputQty": "1011661205505949564928", + "outputIndex": 0, + "outputQty": "1011527939035747109738", "swapFee": "0", - "redemptionFee": "503323709117552253", + "redemptionFee": "606805962883664035", "mpReserves": [ - "37799321218182402318863987", - "33870026028265529168864403", - "38372914957563229956799408" + "37756551228397304004589982", + "27458198424912433561986339", + "39052474904799939899923056" ], "fpReserves": [ - "11020815018587319219393917", - "2881016933889089119338212" + "5229653933317357592187358", + "5484643758157684526062821" ], - "mAssetSupply": "110041702415566887626371226", - "LPTokenSupply": "13821173132076861593928622" + "mAssetSupply": "104256609305272620944502268", + "LPTokenSupply": "10628786290690935656298100" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "332642650100859994112", - "outputQty0": "332733081082926362129", - "outputQty": "329577771664504964001", + "type": "redeem", + "outputIndex": 1, + "inputQty": "346599082007699755368448", + "outputQty0": "349080415984647532188372", + "outputQty": "348096706582149982960618", + "swapFee1": "207959449204619853221", + "swapFee2": "209448249590788519313", "mpReserves": [ - "37799321218182402318863987", - "33870358670915630028858515", - "38372914957563229956799408" + "37756551228397304004589982", + "27110101718330283579025721", + "39052474904799939899923056" ], "fpReserves": [ - "11021147751668402145756046", - "2881016933889089119338212" + "4880573517332710059998986", + "5484643758157684526062821" ], - "mAssetSupply": "110042035148647970552733355", - "LPTokenSupply": "13821502709848526098892623" + "mAssetSupply": "103907738337537564200833209", + "LPTokenSupply": "10282208004628156362914974" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "153842019410812896018432", - "outputQty0": "153882991330730516142821", - "outputQty": "152416902015621367794009", + "type": "swap_fp_to_mp", + "inputQty": "31521469360464021422080", + "outputIndex": 0, + "outputQty": "31502500158767516210158", + "swapFee": "0", + "redemptionFee": "18897412109237326855", "mpReserves": [ - "37799321218182402318863987", - "34024200690326442924876947", - "38372914957563229956799408" + "37725048728238536488379824", + "27110101718330283579025721", + "39052474904799939899923056" ], "fpReserves": [ - "11175030742999132661898867", - "2881016933889089119338212" + "4849077830483981181906550", + "5516165227518148547484901" ], - "mAssetSupply": "110195918139978701068876176", - "LPTokenSupply": "13973919611864147466686632" + "mAssetSupply": "103876261548100944560067628", + "LPTokenSupply": "10282208004628156362914974" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "541935124169457926144", - "outputQty0": "546843985515776547119", - "outputQty": "546482702953845576901", - "swapFee1": "325161074501674755", - "swapFee2": "218737594206310618", + "outputIndex": 2, + "inputQty": "249316815208522826383360", + "outputQty0": "251040438543382821099004", + "outputQty": "251157273836078698639178", + "swapFee1": "149590089125113695830", + "swapFee2": "150624263126029692659", "mpReserves": [ - "37799321218182402318863987", - "34023654207623489079300046", - "38372914957563229956799408" + "37725048728238536488379824", + "27110101718330283579025721", + "38801317630963861201283878" ], "fpReserves": [ - "11174483899013616885351748", - "2881016933889089119338212" + "4598037391940598360807546", + "5516165227518148547484901" ], - "mAssetSupply": "110195371514730779498639675", - "LPTokenSupply": "13973377709256085458927963" + "mAssetSupply": "103625371733820687768661283", + "LPTokenSupply": "10032906148428546047901197" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "5425063841046681616384", - "outputQty0": "5474194761655396848986", - "outputQty": "5472545549348179488445", - "swapFee1": "3255038304628008969", - "swapFee2": "2189677904662158739", + "type": "mint", + "inputIndex": 2, + "inputQty": "557321197014125622853632", + "outputQty0": "556716263569876293045468", + "outputQty": "552492422890112464524128", "mpReserves": [ - "37793848672633054139375542", - "34023654207623489079300046", - "38372914957563229956799408" + "37725048728238536488379824", + "27110101718330283579025721", + "39358638827977986824137510" ], "fpReserves": [ - "11169009704251961488502762", - "2881016933889089119338212" + "5154753655510474653853014", + "5516165227518148547484901" ], - "mAssetSupply": "110189899509647028763949428", - "LPTokenSupply": "13967952970918869240112475" + "mAssetSupply": "104182087997390564061706751", + "LPTokenSupply": "10585398571318658512425325" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "73412124353437744", - "outputQty0": "73401293765080944", - "outputQty": "72698971429030702", + "type": "swap_fp_to_mp", + "inputQty": "38175337194036674953216", + "outputIndex": 0, + "outputQty": "38163670952513400700462", + "swapFee": "0", + "redemptionFee": "22893813000052347979", "mpReserves": [ - "37793848672633054139375542", - "34023654207623489079300046", - "38372915030975354310237152" + "37686885057286023087679362", + "27110101718330283579025721", + "39358638827977986824137510" ], "fpReserves": [ - "11169009777653255253583706", - "2881016933889089119338212" + "5116597300510387407221268", + "5554340564712185222438117" ], - "mAssetSupply": "110189899583048322529030372", - "LPTokenSupply": "13967953043617840669143177" + "mAssetSupply": "104143954536203476867422984", + "LPTokenSupply": "10585398571318658512425325" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "368349692829649204150272", - "outputQty0": "371644998762331407549296", - "outputQty": "371547292300736343435732", - "swapFee1": "221009815697789522490", - "swapFee2": "148657999504932563019", + "type": "mint", + "inputIndex": 0, + "inputQty": "92188459965504875921408", + "outputQty0": "92115131827419228785440", + "outputQty": "91399826370434832672039", "mpReserves": [ - "37793848672633054139375542", - "34023654207623489079300046", - "38001367738674617966801420" + "37779073517251527963600770", + "27110101718330283579025721", + "39358638827977986824137510" ], "fpReserves": [ - "10797364778890923846034410", - "2881016933889089119338212" + "5208712432337806636006708", + "5554340564712185222438117" ], - "mAssetSupply": "109818403242285496054044095", - "LPTokenSupply": "13599625451769761243945154" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "283888625761156916576256", - "hardLimitError": true + "mAssetSupply": "104236069668030896096208424", + "LPTokenSupply": "10676798397689093345097364" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "248449925473529797541888", - "hardLimitError": true + "type": "swap_fp_to_mp", + "inputQty": "194928763802992803840", + "outputIndex": 1, + "outputQty": "194280104707984846427", + "swapFee": "0", + "redemptionFee": "116907393284232409", + "mpReserves": [ + "37779073517251527963600770", + "27109907438225575594179294", + "39358638827977986824137510" + ], + "fpReserves": [ + "5208517586682332915323641", + "5554535493475988215241957" + ], + "mAssetSupply": "104235874939282815659757766", + "LPTokenSupply": "10676798397689093345097364" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "635247990881939053608960", - "outputQty0": "640751805231403544762876", - "outputQty": "640321400428898346580204", - "swapFee1": "381148794529163432165", - "swapFee2": "256300722092561417905", + "inputQty": "733332788308588756992", + "outputQty0": "738650779104930234762", + "outputQty": "736506701116661059151", + "swapFee1": "439999672985153254", + "swapFee2": "443190467462958140", "mpReserves": [ - "37793848672633054139375542", - "33383332807194590732719842", - "38001367738674617966801420" + "37779073517251527963600770", + "27109170931524458933120143", + "39358638827977986824137510" ], "fpReserves": [ - "10156612973659520301271534", - "2881016933889089119338212" + "5207778935903227985088879", + "5554535493475988215241957" ], - "mAssetSupply": "109177907737776185070699124", - "LPTokenSupply": "12964415575767275106679410" + "mAssetSupply": "104235136731694178192481144", + "LPTokenSupply": "10676065108900752054855697" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "49643374023466169663488", - "outputQty0": "49635995207132557103217", - "outputQty": "49187282097291366796028", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "3771321132145175953408", + "outputQty0": "3780028918226736248348", + "outputQty": "3778602710003395727114", + "swapFee": "3000446904883654157", "mpReserves": [ - "37793848672633054139375542", - "33383332807194590732719842", - "38051011112698084136464908" + "37779073517251527963600770", + "27112942252656604109073551", + "39358638827977986824137510" ], "fpReserves": [ - "10206248968866652858374751", - "2881016933889089119338212" + "5211558964821454721337227", + "5550756890765984819514843" ], - "mAssetSupply": "109227543732983317627802341", - "LPTokenSupply": "13013602857864566473475438" + "mAssetSupply": "104238916760612404928729492", + "LPTokenSupply": "10676065408945442543221112" }, { - "type": "swap_fp_to_mp", - "inputQty": "7769886355646403575808", - "outputIndex": 0, - "outputQty": "7889395529375757502015", - "swapFee": "0", - "redemptionFee": "3156616723448782772", + "type": "redeem", + "outputIndex": 1, + "inputQty": "169479394662640317890560", + "outputQty0": "170699488012795316050736", + "outputQty": "170199863389366436471481", + "swapFee1": "101687636797584190734", + "swapFee2": "102419692807677189630", "mpReserves": [ - "37785959277103678381873527", - "33383332807194590732719842", - "38051011112698084136464908" + "37779073517251527963600770", + "26942742389267237672602070", + "39358638827977986824137510" ], "fpReserves": [ - "10198357427058030901443990", - "2888786820244735522914020" + "5040859476808659405286491", + "5550756890765984819514843" ], - "mAssetSupply": "109219655347791419119654352", - "LPTokenSupply": "13013602857864566473475438" + "mAssetSupply": "104068319692292417289868386", + "LPTokenSupply": "10506596183046481983749625" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "3842458884152099864576", - "outputQty0": "3841967251028963865771", - "outputQty": "3779803171112325740851", - "swapFee": "3045803724188392154", + "inputQty": "8768291823068676882432", + "outputQty0": "8761100612937633552446", + "outputQty": "8759603929028816367514", + "swapFee": "6954932258144792390", "mpReserves": [ - "37789801735987830481738103", - "33383332807194590732719842", - "38051011112698084136464908" + "37787841809074596640483202", + "26942742389267237672602070", + "39358638827977986824137510" ], "fpReserves": [ - "10202199394309059865309761", - "2885007017073623197173169" + "5049620577421597038838937", + "5541997286836956003147329" ], - "mAssetSupply": "109223497315042448083520123", - "LPTokenSupply": "13013603162444938892314653" + "mAssetSupply": "104077080792905354923420832", + "LPTokenSupply": "10506596878539707798228864" }, { "type": "swap_fp_to_mp", - "inputQty": "471261800541474193408", - "outputIndex": 1, - "outputQty": "478305172843232537679", + "inputQty": "487260645297393", + "outputIndex": 2, + "outputQty": "487220806718983", "swapFee": "0", - "redemptionFee": "191455415813317731", + "redemptionFee": "292175657227", "mpReserves": [ - "37789801735987830481738103", - "33382854502021747500182163", - "38051011112698084136464908" + "37787841809074596640483202", + "26942742389267237672602070", + "39358638827490766017418527" ], "fpReserves": [ - "10201720755769526570980295", - "2885478278874164671366577" + "5049620576934637610126097", + "5541997287324216648444722" ], - "mAssetSupply": "109223018867958330602508388", - "LPTokenSupply": "13013603162444938892314653" + "mAssetSupply": "104077080792418687670365219", + "LPTokenSupply": "10506596878539707798228864" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "10616673688480732", - "outputQty0": "10615313984861590", - "outputQty": "10519320811414986", + "inputIndex": 1, + "inputQty": "1423838196097014910943232", + "outputQty0": "1426905775725240253076516", + "outputQty": "1415297091095377041556449", "mpReserves": [ - "37789801746604504170218835", - "33382854502021747500182163", - "38051011112698084136464908" + "37787841809074596640483202", + "28366580585364252583545302", + "39358638827490766017418527" ], "fpReserves": [ - "10201720766384840555841885", - "2885478278874164671366577" + "6476526352659877863202613", + "5541997287324216648444722" ], - "mAssetSupply": "109223018878573644587369978", - "LPTokenSupply": "13013603172964259703729639" + "mAssetSupply": "105503986568143927923441735", + "LPTokenSupply": "11921893969635084839785313" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1078970829865187672064", - "outputQty0": "1078832610268857916239", - "outputQty": "1069076503942526531204", + "inputIndex": 2, + "inputQty": "7496265243990558", + "outputQty0": "7488827790582778", + "outputQty": "7425046404779075", "mpReserves": [ - "37790880717434369357890899", - "33382854502021747500182163", - "38051011112698084136464908" + "37787841809074596640483202", + "28366580585364252583545302", + "39358638834987031261409085" ], "fpReserves": [ - "10202799598995109413758124", - "2885478278874164671366577" + "6476526360148705653785391", + "5541997287324216648444722" ], - "mAssetSupply": "109224097711183913445286217", - "LPTokenSupply": "13014672249468202230260843" + "mAssetSupply": "105503986575632755714024513", + "LPTokenSupply": "11921893977060131244564388" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "344936166511290802503680", "outputIndex": 1, - "inputQty": "32627140409064730624", - "outputQty0": "32905142060674938343", - "outputQty": "32882222203137625549", - "swapFee1": "19576284245438838", - "swapFee2": "13162056824269975", + "outputQty": "344265024695684273524514", + "swapFee": "0", + "redemptionFee": "207097062072010062544", "mpReserves": [ - "37790880717434369357890899", - "33382821619799544362556614", - "38051011112698084136464908" + "37787841809074596640483202", + "28022315560668568310020788", + "39358638834987031261409085" ], "fpReserves": [ - "10202766693853048738819781", - "2885478278874164671366577" + "6131364590028688882877595", + "5886933453835507450948402" ], - "mAssetSupply": "109224064819203909594617849", - "LPTokenSupply": "13014639624285421590074102" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "305636580145308494725120", - "hardLimitError": true + "mAssetSupply": "105159031902574810953179261", + "LPTokenSupply": "11921893977060131244564388" }, { "type": "mint", "inputIndex": 2, - "inputQty": "134115056534354227363840", - "outputQty0": "134094416810738137237649", - "outputQty": "132876545869643918877553", + "inputQty": "666882469640884", + "outputQty0": "666198236780413", + "outputQty": "660767094797097", "mpReserves": [ - "37790880717434369357890899", - "33382821619799544362556614", - "38185126169232438363828748" + "37787841809074596640483202", + "28022315560668568310020788", + "39358638835653913731049969" ], "fpReserves": [ - "10336861110663786876057430", - "2885478278874164671366577" + "6131364590694887119658008", + "5886933453835507450948402" ], - "mAssetSupply": "109358159236014647731855498", - "LPTokenSupply": "13147516170155065508951655" + "mAssetSupply": "105159031903241009189959674", + "LPTokenSupply": "11921893977720898339361485" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "4242452047937426423808", - "outputQty0": "4278928830311604633217", - "outputQty": "4275929134884936876397", - "swapFee1": "2545471228762455854", - "swapFee2": "1711571532124641853", + "outputIndex": 2, + "inputQty": "115481415256805888", + "outputQty0": "116360750586570191", + "outputQty": "116410373176314714", + "swapFee1": "69288849154083", + "swapFee2": "69816450351942", "mpReserves": [ - "37790880717434369357890899", - "33378545690664659425680217", - "38185126169232438363828748" + "37787841809074596640483202", + "28022315560668568310020788", + "39358638719243540554735255" ], "fpReserves": [ - "10332582181833475271424213", - "2885478278874164671366577" + "6131364474334136533087817", + "5886933453835507450948402" ], - "mAssetSupply": "109353882018755868251864134", - "LPTokenSupply": "13143273972654250958773432" + "mAssetSupply": "105159031786950075053741425", + "LPTokenSupply": "11921893862246411967471005" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1258964198236129712930816", - "hardLimitError": true - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7558184203072097280", - "outputQty0": "7557243027573917412", - "outputQty": "7488331758678295486", + "type": "redeem", + "outputIndex": 2, + "inputQty": "151601543155946753097728", + "outputQty0": "152749655874396428771286", + "outputQty": "152813244426150082385516", + "swapFee1": "90960925893568051858", + "swapFee2": "91649793524637857262", "mpReserves": [ - "37790888275618572429988179", - "33378545690664659425680217", - "38185126169232438363828748" + "37787841809074596640483202", + "28022315560668568310020788", + "39205825474817390472349739" ], "fpReserves": [ - "10332589739076502845341625", - "2885478278874164671366577" + "5978614818459740104316531", + "5886933453835507450948402" ], - "mAssetSupply": "109353889575998895825781546", - "LPTokenSupply": "13143281460986009637068918" + "mAssetSupply": "105006373780869203262827401", + "LPTokenSupply": "11770301415183054571178462" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "272696274811986814959616", - "hardLimitError": true - }, - { - "type": "swap_fp_to_mp", - "inputQty": "3043426703312635822080", - "outputIndex": 2, - "outputQty": "3091311827135730574552", - "swapFee": "0", - "redemptionFee": "1236824455754083269", + "type": "mint", + "inputIndex": 2, + "inputQty": "1275482984258143256576", + "outputQty0": "1274200114123647132513", + "outputQty": "1263907256075825407391", "mpReserves": [ - "37790888275618572429988179", - "33378545690664659425680217", - "38182034857405302633254196" + "37787841809074596640483202", + "28022315560668568310020788", + "39207100957801648615606315" ], "fpReserves": [ - "10329497677937117637167659", - "2888521705577477307188657" + "5979889018573863751449044", + "5886933453835507450948402" ], - "mAssetSupply": "109350798751683966371690849", - "LPTokenSupply": "13143281460986009637068918" + "mAssetSupply": "105007647980983326909959914", + "LPTokenSupply": "11771565322439130396585853" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "174462653920460018810880", - "outputQty0": "175952068241857825493452", - "outputQty": "175902722954768891831776", - "swapFee1": "104677592352276011286", - "swapFee2": "70380827296743130197", + "type": "swap_fp_to_mp", + "inputQty": "4976978377841353687040", + "outputIndex": 2, + "outputQty": "4979487793705979880333", + "swapFee": "0", + "redemptionFee": "2986480305197093072", "mpReserves": [ - "37614985552663803538156403", - "33378545690664659425680217", - "38182034857405302633254196" + "37787841809074596640483202", + "28022315560668568310020788", + "39202121470007942635725982" ], "fpReserves": [ - "10153545609695259811674207", - "2888521705577477307188657" + "5974911551398535262995279", + "5891910432213348804635442" ], - "mAssetSupply": "109174917064269405289327594", - "LPTokenSupply": "12968829274824784845859166" + "mAssetSupply": "105002673500288303618599221", + "LPTokenSupply": "11771565322439130396585853" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "4040846858316448006144", - "outputQty0": "4040383511108834294864", - "outputQty": "3975458655890570713095", - "swapFee": "3203159675675333785", + "inputIndex": 2, + "inputQty": "73910663554593118486528", + "outputQty0": "73836003940610145186790", + "outputQty": "73764017785797679455058", + "swapFee": "58590770475908947903", "mpReserves": [ - "37619026399522119986162547", - "33378545690664659425680217", - "38182034857405302633254196" + "37787841809074596640483202", + "28022315560668568310020788", + "39276032133562535754212510" ], "fpReserves": [ - "10157585993206368645969071", - "2884546246921586736475562" + "6048747555339145408182069", + "5818146414427551125180384" ], - "mAssetSupply": "109178957447780514123622458", - "LPTokenSupply": "12968829595140752413392544" + "mAssetSupply": "105076509504228913763786011", + "LPTokenSupply": "11771571181516177987480643" }, { "type": "swap_fp_to_mp", - "inputQty": "13686710687793082793984", + "inputQty": "92140869947519483904", "outputIndex": 1, - "outputQty": "13888639784070356660274", - "swapFee": "0", - "redemptionFee": "5559325269209720705", - "mpReserves": [ - "37619026399522119986162547", - "33364657050880589069019943", - "38182034857405302633254196" - ], - "fpReserves": [ - "10143687680033344344205390", - "2898232957609379819269546" - ], - "mAssetSupply": "109165064693932759031579482", - "LPTokenSupply": "12968829595140752413392544" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "89914052336698257309696", - "outputIndex": 2, - "outputQty": "91228533768828962090894", + "outputQty": "91921611140671682367", "swapFee": "0", - "redemptionFee": "36500163116465332549", + "redemptionFee": "55298757982418262", "mpReserves": [ - "37619026399522119986162547", - "33364657050880589069019943", - "38090806323636473671163302" + "37787841809074596640483202", + "28022223639057427638338421", + "39276032133562535754212510" ], "fpReserves": [ - "10052437272242181012832048", - "2988147009946078076579242" + "6048655390742508044410688", + "5818238555297498644664288" ], - "mAssetSupply": "109073850786304712165538689", - "LPTokenSupply": "12968829595140752413392544" + "mAssetSupply": "105076417394931034382432892", + "LPTokenSupply": "11771571181516177987480643" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "5583649117620475527168", - "outputQty0": "5582990508891108214831", - "outputQty": "5499382519549972155515", - "swapFee": "4427240540722084460", + "inputQty": "2314473529672331165696", + "outputQty0": "2312817635194916096924", + "outputQty": "2310366712365842396591", + "swapFee": "1835158898037237078", "mpReserves": [ - "37624610048639740461689715", - "33364657050880589069019943", - "38090806323636473671163302" + "37790156282604268971648898", + "28022223639057427638338421", + "39276032133562535754212510" ], "fpReserves": [ - "10058020262751072121046879", - "2982647627426528104423727" + "6050968208377702960507612", + "5815928188585132802267697" ], - "mAssetSupply": "109079433776813603273753520", - "LPTokenSupply": "12968830037864806485600990" + "mAssetSupply": "105078730212566229298529816", + "LPTokenSupply": "11771571365032067791204350" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "393170228423071367168", - "outputQty0": "396414056629546026655", - "outputQty": "396317951906394510960", - "swapFee1": "235902137053842820", - "swapFee2": "158565622651818410", + "inputQty": "582153614808349", + "outputQty0": "586591193993167", + "outputQty": "586834823240331", + "swapFee1": "349292168885", + "swapFee2": "351954716395", "mpReserves": [ - "37624610048639740461689715", - "33364657050880589069019943", - "38090410005684567276652342" + "37790156282604268971648898", + "28022223639057427638338421", + "39276032132975700930972179" ], "fpReserves": [ - "10057623848694442575020224", - "2982647627426528104423727" + "6050968207791111766514445", + "5815928188585132802267697" ], - "mAssetSupply": "109079037521322596379545275", - "LPTokenSupply": "12968436891226597119618104" + "mAssetSupply": "105078730211979990059253044", + "LPTokenSupply": "11771571364449949105612889" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "14493425484064296960", - "outputQty0": "14613001192030248888", - "outputQty": "14602863474239525003", - "swapFee1": "8696055290438578", - "swapFee2": "5845200476812099", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "95129980764624946987008", + "outputQty0": "95323006038203552049591", + "outputQty": "95211579428555758243475", + "swapFee": "75634175388468581373", "mpReserves": [ - "37624610048639740461689715", - "33364642448017114829494940", - "38090410005684567276652342" + "37790156282604268971648898", + "28117353619822052585325429", + "39276032132975700930972179" ], "fpReserves": [ - "10057609235693250544771336", - "2982647627426528104423727" + "6146291213829315318564036", + "5720716609156577044024222" ], - "mAssetSupply": "109079022914166604826108486", - "LPTokenSupply": "12968422398670718584365001" + "mAssetSupply": "105174053218018193611302635", + "LPTokenSupply": "11771578927867487952471026" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "41202313510970124664832", - "outputQty0": "41195772792014966950154", - "outputQty": "40833683906784689845931", + "inputIndex": 1, + "inputQty": "1120431247315884763512832", + "outputQty0": "1122524796103058057363896", + "outputQty": "1112938220581303313500177", "mpReserves": [ - "37624610048639740461689715", - "33364642448017114829494940", - "38131612319195537401317174" + "37790156282604268971648898", + "29237784867137937348838261", + "39276032132975700930972179" ], "fpReserves": [ - "10098805008485265511721490", - "2982647627426528104423727" + "7268816009932373375927932", + "5720716609156577044024222" ], - "mAssetSupply": "109120218686958619793058640", - "LPTokenSupply": "13009256082577503274210932" + "mAssetSupply": "106296578014121251668666531", + "LPTokenSupply": "12884517148448791265971203" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "6412606490621641752576", - "outputQty0": "6414498510957140883181", - "outputQty": "6317404983421544901552", - "swapFee": "5086426301951359536", + "inputIndex": 2, + "inputQty": "16813376326442464313344", + "outputQty0": "16798262061832222299998", + "outputQty": "16757275198340420975659", + "swapFee": "13320380699859025570", "mpReserves": [ - "37624610048639740461689715", - "33371055054507736471247516", - "38131612319195537401317174" + "37790156282604268971648898", + "29237784867137937348838261", + "39292845509302143395285523" ], "fpReserves": [ - "10105219506996222652604671", - "2976330222443106559522175" + "7285614271994205598227930", + "5703959333958236623048563" ], - "mAssetSupply": "109126633185469576933941821", - "LPTokenSupply": "13009256591220133469346885" + "mAssetSupply": "106313376276183083890966529", + "LPTokenSupply": "12884518480486861251873760" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "98552625126656178126848", + "outputQty0": "99366934541480718533677", + "outputQty": "99365869512370160717350", + "swapFee1": "59131575075993706876", + "swapFee2": "59620160724888431120", + "mpReserves": [ + "37690790413091898810931548", + "29237784867137937348838261", + "39292845509302143395285523" + ], + "fpReserves": [ + "7186247337452724879694253", + "5703959333958236623048563" + ], + "mAssetSupply": "106214068961802328060863972", + "LPTokenSupply": "12785971768517712673117599" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "806828849654468031021056", - "outputQty0": "807043092360664778400444", - "outputQty": "799744925919576115817354", + "inputIndex": 2, + "inputQty": "206853067831453646848", + "outputQty0": "206665538262119692649", + "outputQty": "204852486817401927788", "mpReserves": [ - "37624610048639740461689715", - "34177883904162204502268572", - "38131612319195537401317174" + "37690790413091898810931548", + "29237784867137937348838261", + "39293052362369974848932371" ], "fpReserves": [ - "10912262599356887431005115", - "2976330222443106559522175" + "7186454002990986999386902", + "5703959333958236623048563" ], - "mAssetSupply": "109933676277830241712342265", - "LPTokenSupply": "13809001517139709585164239" + "mAssetSupply": "106214275627340590180556621", + "LPTokenSupply": "12786176621004530075045387" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "99255902104454361513984", - "outputQty0": "100121549256669192808345", - "outputQty": "100057462714022130997665", - "swapFee1": "59553541262672616908", - "swapFee2": "40048619702667677123", + "outputIndex": 2, + "inputQty": "2978071029912692064256", + "outputQty0": "3002624027734112850536", + "outputQty": "3003544860789105916589", + "swapFee1": "1786842617947615238", + "swapFee2": "1801574416640467710", + "mpReserves": [ + "37690790413091898810931548", + "29237784867137937348838261", + "39290048817509185743015782" + ], + "fpReserves": [ + "7183451378963252886536366", + "5703959333958236623048563" + ], + "mAssetSupply": "106211274804887272708173795", + "LPTokenSupply": "12783198728658879177742654" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "137649312265903702016", + "outputQty0": "137524573326325113848", + "outputQty": "137200183941101106810", + "swapFee": "109054590413157452", "mpReserves": [ - "37624610048639740461689715", - "34077826441448182371270907", - "38131612319195537401317174" + "37690790413091898810931548", + "29237784867137937348838261", + "39290186466821451646717798" ], "fpReserves": [ - "10812141050100218238196770", - "2976330222443106559522175" + "7183588903536579211650214", + "5703822133774295521941753" ], - "mAssetSupply": "109833594777193275187211043", - "LPTokenSupply": "13709751570389381490911945" + "mAssetSupply": "106211412329460599033287643", + "LPTokenSupply": "12783198739564338219058399" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1007692817109488238592", - "outputQty0": "1007938430565109705378", - "outputQty": "998648279196366750217", + "inputQty": "10426951971304292", + "outputQty0": "10444857463042972", + "outputQty": "10353236301575557", + "mpReserves": [ + "37690790413091898810931548", + "29237784877564889320142553", + "39290186466821451646717798" + ], + "fpReserves": [ + "7183588913981436674693186", + "5703822133774295521941753" + ], + "mAssetSupply": "106211412339905456496330615", + "LPTokenSupply": "12783198749917574520633956" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "621339736255573132312576", + "outputQty0": "626373991937014455137382", + "outputQty": "624875936177595515382558", + "swapFee1": "372803841753343879387", + "swapFee2": "375824395162208673082", "mpReserves": [ - "37624610048639740461689715", - "34078834134265291859509499", - "38131612319195537401317174" + "37690790413091898810931548", + "28612908941387293804759995", + "39290186466821451646717798" ], "fpReserves": [ - "10813148988530783347902148", - "2976330222443106559522175" + "6557214922044422219555804", + "5703822133774295521941753" ], - "mAssetSupply": "109834602715623840296916421", - "LPTokenSupply": "13710750218668577857662162" + "mAssetSupply": "105585414172363604249866315", + "LPTokenSupply": "12161896294046176722709318" }, { "type": "swap_fp_to_mp", - "inputQty": "94710484040532673691648", - "outputIndex": 2, - "outputQty": "96185505306880265908157", + "inputQty": "30229099667679376048128", + "outputIndex": 1, + "outputQty": "30181343459038505562704", "swapFee": "0", - "redemptionFee": "38484427196840169400", + "redemptionFee": "18153740504694085005", "mpReserves": [ - "37624610048639740461689715", - "34078834134265291859509499", - "38035426813888657135409017" + "37690790413091898810931548", + "28582727597928255299197291", + "39290186466821451646717798" ], "fpReserves": [ - "10716937920538682924401088", - "3071040706483639233213823" + "6526958687869932077879380", + "5734051233441974897989881" ], - "mAssetSupply": "109738430132058936713584761", - "LPTokenSupply": "13710750218668577857662162" + "mAssetSupply": "105555176091929618802274896", + "LPTokenSupply": "12161896294046176722709318" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "5636916709460899004416", - "outputQty0": "5684565215090236413797", - "outputQty": "5682839545218836126220", - "swapFee1": "3382150025676539402", - "swapFee2": "2273826086036094565", + "type": "mint", + "inputIndex": 1, + "inputQty": "391739233738475175936", + "outputQty0": "392477173993090899498", + "outputQty": "389147239631963726934", "mpReserves": [ - "37618927209094521625563495", - "34078834134265291859509499", - "38035426813888657135409017" + "37690790413091898810931548", + "28583119337161993774373227", + "39290186466821451646717798" ], "fpReserves": [ - "10711253355323592687987291", - "3071040706483639233213823" + "6527351165043925168778878", + "5734051233441974897989881" ], - "mAssetSupply": "109732747840669932513265529", - "LPTokenSupply": "13705113640174119526311686" + "mAssetSupply": "105555568569103611893174394", + "LPTokenSupply": "12162285441285808686436252" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "97657863375177549611008", - "outputQty0": "98480569993117360137557", - "outputQty": "98450378759133262794894", - "swapFee1": "58594718025106529766", - "swapFee2": "39392227997246944055", + "type": "mint", + "inputIndex": 0, + "inputQty": "921493299000332775325696", + "outputQty0": "920839126556756637070963", + "outputQty": "912832759919258344779730", "mpReserves": [ - "37520476830335388362768601", - "34078834134265291859509499", - "38035426813888657135409017" + "38612283712092231586257244", + "28583119337161993774373227", + "39290186466821451646717798" ], "fpReserves": [ - "10612772785330475327849734", - "3071040706483639233213823" + "7448190291600681805849841", + "5734051233441974897989881" ], - "mAssetSupply": "109634306662904812400072027", - "LPTokenSupply": "13607461636270744487353654" + "mAssetSupply": "106476407695660368530245357", + "LPTokenSupply": "13075118201205067031215982" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3270438256680699904", - "outputQty0": "3269998115580738339", - "outputQty": "3218953424721467081", - "swapFee": "2592647889805504", + "type": "swap_fp_to_mp", + "inputQty": "193802581678089109504", + "outputIndex": 0, + "outputQty": "194181886114096182148", + "swapFee": "0", + "redemptionFee": "116488869963529749", "mpReserves": [ - "37520476830335388362768601", - "34078834134265291859509499", - "38035430084326913816108921" + "38612089530206117490075096", + "28583119337161993774373227", + "39290186466821451646717798" ], "fpReserves": [ - "10612776055328590908588073", - "3071037487530214511746742" + "7447996143484075922934350", + "5734245036023652987099385" ], - "mAssetSupply": "109634309932902927980810366", - "LPTokenSupply": "13607461636530009276334204" + "mAssetSupply": "106476213664032632610859615", + "LPTokenSupply": "13075118201205067031215982" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "837777976876105071591424", - "hardLimitError": true - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "753027806240246071296", - "outputQty0": "752926446446614576642", - "outputQty": "746205608001745733835", + "inputIndex": 0, + "inputQty": "4203298814720029", + "outputQty0": "4200046348692982", + "outputQty": "4189218165121795", + "swapFee": "3330149933717", "mpReserves": [ - "37520476830335388362768601", - "34078834134265291859509499", - "38036183112133154062180217" + "38612089534409416304795125", + "28583119337161993774373227", + "39290186466821451646717798" ], "fpReserves": [ - "10613528981775037523164715", - "3071037487530214511746742" + "7447996147684122271627332", + "5734245031834434821977590" ], - "mAssetSupply": "109635062859349374595387008", - "LPTokenSupply": "13608207842138011022068039" + "mAssetSupply": "106476213668232678959552597", + "LPTokenSupply": "13075118201205400046209353" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "16288896355088392192", - "outputQty0": "16287420631595670555", - "outputQty": "16142031016941229529", + "type": "swap_fp_to_mp", + "inputQty": "6523477764578471936", + "outputIndex": 2, + "outputQty": "6537127829863963736", + "swapFee": "0", + "redemptionFee": "3921064298111142", "mpReserves": [ - "37520493119231743451160793", - "34078834134265291859509499", - "38036183112133154062180217" + "38612089534409416304795125", + "28583119337161993774373227", + "39290179929693621782754062" ], "fpReserves": [ - "10613545269195669118835270", - "3071037487530214511746742" + "7447989612576958753055810", + "5734251555312199400449526" ], - "mAssetSupply": "109635079146770006191057563", - "LPTokenSupply": "13608223984169027963297568" + "mAssetSupply": "106476207137046579739092217", + "LPTokenSupply": "13075118201205400046209353" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "129900827960197074911232", - "outputQty0": "129882865774400062863503", - "outputQty": "127763275758702346308234", - "swapFee": "102975107190328889239", + "type": "redeem", + "outputIndex": 1, + "inputQty": "185686329979113734144", + "outputQty0": "187240391555518920861", + "outputQty": "186759480621423701044", + "swapFee1": "111411797987468240", + "swapFee2": "112344234933311352", "mpReserves": [ - "37520493119231743451160793", - "34078834134265291859509499", - "38166083940093351137091449" + "38612089534409416304795125", + "28582932577681372350672183", + "39290179929693621782754062" ], "fpReserves": [ - "10743428134970069181698773", - "2943274211771512165438508" + "7447802372185403234134949", + "5734251555312199400449526" ], - "mAssetSupply": "109764962012544406253921066", - "LPTokenSupply": "13608234281679746996186491" + "mAssetSupply": "106476020008999259153482708", + "LPTokenSupply": "13074932526016600731222033" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1444000559495053836288000", - "hardLimitError": true + "type": "redeem", + "outputIndex": 2, + "inputQty": "5353916425529737216", + "outputQty0": "5398724693751902306", + "outputQty": "5400394082384155958", + "swapFee1": "3212349855317842", + "swapFee2": "3239234816251141", + "mpReserves": [ + "38612089534409416304795125", + "28582932577681372350672183", + "39290174529299539398598104" + ], + "fpReserves": [ + "7447796973460709482232643", + "5734251555312199400449526" + ], + "mAssetSupply": "106476014613513800217831543", + "LPTokenSupply": "13074927172421410187016601" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "196735520752115013124096", - "outputQty0": "198443252120603338820859", - "outputQty": "198390925160381332540278", - "swapFee1": "118041312451269007874", - "swapFee2": "79377300848241335528", + "inputQty": "38482326362359128064", + "outputQty0": "38804394242988438448", + "outputQty": "38816393187045443893", + "swapFee1": "23089395817415476", + "swapFee2": "23282636545793063", "mpReserves": [ - "37520493119231743451160793", - "34078834134265291859509499", - "37967693014932969804551171" + "38612089534409416304795125", + "28582932577681372350672183", + "39290135712906352353154211" ], "fpReserves": [ - "10544984882849465842877914", - "2943274211771512165438508" + "7447758169066466493794195", + "5734251555312199400449526" ], - "mAssetSupply": "109566598137724651156435735", - "LPTokenSupply": "13411510565058877109963182" + "mAssetSupply": "106475975832402193775186158", + "LPTokenSupply": "13074888692403987409630084" }, { "type": "swap_fp_to_mp", - "inputQty": "137431942121972148731904", + "inputQty": "1361668545633726649860096", "outputIndex": 0, - "outputQty": "139480188821470266748929", + "outputQty": "1362268199613174842093620", "swapFee": "0", - "redemptionFee": "55809461475388338897", + "redemptionFee": "817296449688915523041", "mpReserves": [ - "37381012930410273184411864", - "34078834134265291859509499", - "37967693014932969804551171" + "37249821334796241462701505", + "28582932577681372350672183", + "39290135712906352353154211" ], "fpReserves": [ - "10405461229160994995635287", - "3080706153893484314170412" + "6085597419584940622057676", + "7095920100945926050309622" ], - "mAssetSupply": "109427130293497655697532005", - "LPTokenSupply": "13411510565058877109963182" + "mAssetSupply": "105114632379370356818972680", + "LPTokenSupply": "13074888692403987409630084" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1826911320990203772928", - "outputQty0": "1826665101205881925444", - "outputQty": "1810571020466912694416", + "type": "swap_fp_to_mp", + "inputQty": "1002535777031281704960", + "outputIndex": 0, + "outputQty": "1001487704402699387430", + "swapFee": "0", + "redemptionFee": "600903319563817285", "mpReserves": [ - "37381012930410273184411864", - "34078834134265291859509499", - "37969519926253960008324099" + "37248819847091838763314075", + "28582932577681372350672183", + "39290135712906352353154211" ], "fpReserves": [ - "10407287894262200877560731", - "3080706153893484314170412" + "6084595914052334259915301", + "7096922636722957332014582" ], - "mAssetSupply": "109428956958598861579457449", - "LPTokenSupply": "13413321136079344022657598" + "mAssetSupply": "105113631474741070020647590", + "LPTokenSupply": "13074888692403987409630084" }, { - "type": "swap_fp_to_mp", - "inputQty": "1030265256666011904", - "outputIndex": 2, - "outputQty": "1044891458330577825", - "swapFee": "0", - "redemptionFee": "418067459192216", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "307171353525651192676352", + "outputQty0": "306985763817778615682990", + "outputQty": "306959114753351881759024", + "swapFee": "243715055633649258264", "mpReserves": [ - "37381012930410273184411864", - "34078834134265291859509499", - "37969518881362501677746274" + "37555991200617489955990427", + "28582932577681372350672183", + "39290135712906352353154211" ], "fpReserves": [ - "10407286849093552897018534", - "3080707184158740980182316" + "6391581677870112875598291", + "6789963521969605450255558" ], - "mAssetSupply": "109428955913848281058107468", - "LPTokenSupply": "13413321136079344022657598" + "mAssetSupply": "105420617238558848636330580", + "LPTokenSupply": "13074913063909550774555910" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "828193189339733557248", - "outputQty0": "828384291367257755097", - "outputQty": "815915374228142400369", - "swapFee": "656868083378149917", + "inputQty": "21309778262030723055616", + "outputQty0": "21349581534802821712769", + "outputQty": "21340598360884698003323", + "swapFee": "16944902143197854392", "mpReserves": [ - "37381012930410273184411864", - "34079662327454631593066747", - "37969518881362501677746274" + "37555991200617489955990427", + "28604242355943403073727799", + "39290135712906352353154211" ], "fpReserves": [ - "10408115233384920154773631", - "3079891268784512837781947" + "6412931259404915697311060", + "6768622923608720752252235" ], - "mAssetSupply": "109429784298139648315862565", - "LPTokenSupply": "13413321201766152360472589" + "mAssetSupply": "105441966820093651458043349", + "LPTokenSupply": "13074914758399765094341349" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3386510761219683", - "outputQty0": "3387292085340624", - "outputQty": "3357439476493120", + "type": "swap_fp_to_mp", + "inputQty": "376762014256223092736", + "outputIndex": 2, + "outputQty": "376768459623873050477", + "swapFee": "0", + "redemptionFee": "225976226431541686", "mpReserves": [ - "37381012930410273184411864", - "34079662330841142354286430", - "37969518881362501677746274" + "37555991200617489955990427", + "28604242355943403073727799", + "39289758944446728480103734" ], "fpReserves": [ - "10408115236772212240114255", - "3079891268784512837781947" + "6412554632360863127833593", + "6768999685622976975344971" ], - "mAssetSupply": "109429784301526940401203189", - "LPTokenSupply": "13413321205123591836965709" + "mAssetSupply": "105441590419025825320107568", + "LPTokenSupply": "13074914758399765094341349" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "30703514825287979237376", - "outputQty0": "30700896600207976381487", - "outputQty": "30233843356963368216264", - "swapFee": "24344056058181275528", + "type": "mint", + "inputIndex": 1, + "inputQty": "95396796795358384", + "outputQty0": "95574714950316178", + "outputQty": "94818971424101320", "mpReserves": [ - "37411716445235561163649240", - "34079662330841142354286430", - "37969518881362501677746274" + "37555991200617489955990427", + "28604242451340199869086183", + "39289758944446728480103734" ], "fpReserves": [ - "10438816133372420216495742", - "3049657425427549469565683" + "6412554727935578078149771", + "6768999685622976975344971" ], - "mAssetSupply": "109460485198127148377584676", - "LPTokenSupply": "13413323639529197655093261" + "mAssetSupply": "105441590514600540270423746", + "LPTokenSupply": "13074914853218736518442669" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1244561820350185067249664", - "outputQty0": "1254532060160633540091850", - "outputQty": "1253683074260406898100025", - "swapFee1": "746737092210111040349", - "swapFee2": "501812824064253416036", + "type": "mint", + "inputIndex": 0, + "inputQty": "74030833608562969673728", + "outputQty0": "73984240333758059763143", + "outputQty": "73397784401304657565623", "mpReserves": [ - "37411716445235561163649240", - "32825979256580735456186405", - "37969518881362501677746274" + "37630022034226052925664155", + "28604242451340199869086183", + "39289758944446728480103734" ], "fpReserves": [ - "9184284073211786676403892", - "3049657425427549469565683" + "6486538968269336137912914", + "6768999685622976975344971" ], - "mAssetSupply": "108206454950790579090908862", - "LPTokenSupply": "12168836492888233598947631" + "mAssetSupply": "105515574754934298330186889", + "LPTokenSupply": "13148312637620041176008292" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "128990444289250042052608", - "outputQty0": "129980815525322951736600", - "outputQty": "129951005999572007700687", - "swapFee1": "77394266573550025231", - "swapFee2": "51992326210129180694", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "5425327995918155251712", + "outputQty0": "5420062095626439750020", + "outputQty": "5417226742912766213130", + "swapFee": "4301589081012131696", "mpReserves": [ - "37411716445235561163649240", - "32825979256580735456186405", - "37839567875362929670045587" + "37630022034226052925664155", + "28604242451340199869086183", + "39295184272442646635355446" ], "fpReserves": [ - "9054303257686463724667292", - "3049657425427549469565683" + "6491959030364962577662934", + "6763582458880064209131841" ], - "mAssetSupply": "108076526127591466268352956", - "LPTokenSupply": "12039853788025640911897546" + "mAssetSupply": "105520994817029924769936909", + "LPTokenSupply": "13148313067778949277221461" }, { "type": "swap_fp_to_mp", - "inputQty": "603696900338731712512", + "inputQty": "15462379512093210624", "outputIndex": 2, - "outputQty": "610530010409162812690", + "outputQty": "15463919868117347780", "swapFee": "0", - "redemptionFee": "244268921282790099", + "redemptionFee": "9274907838445907", "mpReserves": [ - "37411716445235561163649240", - "32825979256580735456186405", - "37838957345352520507232897" + "37630022034226052925664155", + "28604242451340199869086183", + "39295168808522778518007666" ], "fpReserves": [ - "9053692585383256749418289", - "3050261122327888201278195" + "6491943572185231834483963", + "6763597921259576302342465" ], - "mAssetSupply": "108075915699557180575894052", - "LPTokenSupply": "12039853788025640911897546" + "mAssetSupply": "105520979368125101865203845", + "LPTokenSupply": "13148313067778949277221461" }, { - "type": "swap_fp_to_mp", - "inputQty": "14636812465660626944", - "outputIndex": 1, - "outputQty": "14795251294412264397", - "swapFee": "0", - "redemptionFee": "5922357206649155", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1543622888270929408", + "outputQty0": "1555062309394086333", + "outputQty": "1555115663631813548", + "swapFee1": "926173732962557", + "swapFee2": "933037385636451", "mpReserves": [ - "37411716445235561163649240", - "32825964461329441043922008", - "37838957345352520507232897" + "37630020479110389293850607", + "28604242451340199869086183", + "39295168808522778518007666" ], "fpReserves": [ - "9053677779490240126529179", - "3050275759140353861905139" + "6491942017122922440397630", + "6763597921259576302342465" ], - "mAssetSupply": "108075900899586521159654097", - "LPTokenSupply": "12039853788025640911897546" + "mAssetSupply": "105520977813995829856753963", + "LPTokenSupply": "13148311524248678379588308" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "344191636200309568", - "outputQty0": "346823190717395448", - "outputQty": "346742371620282795", - "swapFee1": "206514981720185", - "swapFee2": "138729276286958", + "type": "swap_fp_to_mp", + "inputQty": "159348157715334167527424", + "outputIndex": 1, + "outputQty": "158882971912707483622004", + "swapFee": "0", + "redemptionFee": "95567633449313048670", "mpReserves": [ - "37411716445235561163649240", - "32825964461329441043922008", - "37838956998610148886950102" + "37630020479110389293850607", + "28445359479427492385464179", + "39295168808522778518007666" ], "fpReserves": [ - "9053677432667049409133731", - "3050275759140353861905139" + "6332662628040734025946730", + "6922946078974910469869889" ], - "mAssetSupply": "108075900552902059718545607", - "LPTokenSupply": "12039853443854656209759996" + "mAssetSupply": "105361793992547090755351733", + "LPTokenSupply": "13148311524248678379588308" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "161376430807194140672", - "outputQty0": "161355343045250027611", - "outputQty": "159384983643590256307", - "swapFee": "128027966333464021", + "inputIndex": 1, + "inputQty": "125865743195534721024", + "outputQty0": "126106697101141433628", + "outputQty": "126080430745634348209", + "swapFee": "100099687325969065", "mpReserves": [ - "37411877821666368357789912", - "32825964461329441043922008", - "37838956998610148886950102" + "37630020479110389293850607", + "28445485345170687920185203", + "39295168808522778518007666" ], "fpReserves": [ - "9053838788010094659161342", - "3050116374156710271648832" + "6332788734737835167380358", + "6922819998544164835521680" ], - "mAssetSupply": "108076061908245104968573218", - "LPTokenSupply": "12039853456657452843106398" + "mAssetSupply": "105361920099244191896785361", + "LPTokenSupply": "13148311534258647112185214" }, { - "type": "swap_fp_to_mp", - "inputQty": "54726714257083371356160", - "outputIndex": 1, - "outputQty": "55306005937066677702340", - "swapFee": "0", - "redemptionFee": "22138360759683695739", + "type": "mint", + "inputIndex": 1, + "inputQty": "17314375657350041600", + "outputQty0": "17347521493445490399", + "outputQty": "17212421369082686948", "mpReserves": [ - "37411877821666368357789912", - "32770658455392374366219668", - "37838956998610148886950102" + "37630020479110389293850607", + "28445502659546345270226803", + "39295168808522778518007666" ], "fpReserves": [ - "8998492886110885419813176", - "3104843088413793643004992" + "6332806082259328612870757", + "6922819998544164835521680" ], - "mAssetSupply": "108020738144706655412920791", - "LPTokenSupply": "12039853456657452843106398" + "mAssetSupply": "105361937446765685342275760", + "LPTokenSupply": "13148328746680016194872162" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "27282433354749551050752", - "outputQty0": "27278796690378761469232", - "outputQty": "26955236206244404841911", - "swapFee": "21646887566485785143", + "inputIndex": 1, + "inputQty": "11998804700459311104", + "outputQty0": "12021774608171715332", + "outputQty": "12019268733391451237", + "swapFee": "9542520460356875", "mpReserves": [ - "37439160255021117908840664", - "32770658455392374366219668", - "37838956998610148886950102" + "37630020479110389293850607", + "28445514658351045729537907", + "39295168808522778518007666" ], "fpReserves": [ - "9025771682801264181282408", - "3077887852207549238163081" + "6332818104033936784586089", + "6922807979275431444070443" ], - "mAssetSupply": "108048016941397034174390023", - "LPTokenSupply": "12039855621346209491684912" + "mAssetSupply": "105361949468540293513991092", + "LPTokenSupply": "13148328747634268240907849" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "462492984228099520", - "outputQty0": "462415257131567680", - "outputQty": "458658559301713114", + "inputIndex": 0, + "inputQty": "317056389521308385280", + "outputQty0": "316850361554825719870", + "outputQty": "314382741122994219784", "mpReserves": [ - "37439160255021117908840664", - "32770658455392374366219668", - "37838957461103133115049622" + "37630337535499910602235887", + "28445514658351045729537907", + "39295168808522778518007666" ], "fpReserves": [ - "9025772145216521312850088", - "3077887852207549238163081" + "6333134954395491610305959", + "6922807979275431444070443" ], - "mAssetSupply": "108048017403812291305957703", - "LPTokenSupply": "12039856080004768793398026" + "mAssetSupply": "105362266318901848339710962", + "LPTokenSupply": "13148643130375391235127633" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3943410804024702976", - "outputQty0": "3942748069433956169", - "outputQty": "3895536483848517272", - "swapFee": "3128573495983248", + "type": "swap_fp_to_mp", + "inputQty": "308382831617512512", + "outputIndex": 2, + "outputQty": "308319648318226340", + "swapFee": "0", + "redemptionFee": "184920284907602", "mpReserves": [ - "37439160255021117908840664", - "32770658455392374366219668", - "37838961404513937139752598" + "37630337535499910602235887", + "28445514658351045729537907", + "39295168500203130199781326" ], "fpReserves": [ - "9025776087964590746806257", - "3077883956671065389645809" + "6333134646195016764301289", + "6922808287658263061582955" ], - "mAssetSupply": "108048021346560360739913872", - "LPTokenSupply": "12039856080317626142996350" + "mAssetSupply": "105362266010886293778613894", + "LPTokenSupply": "13148643130375391235127633" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "133153918141734026477568", - "outputQty0": "134158975534561304360544", - "outputQty": "134061180775499391506372", - "swapFee1": "79892350885040415886", - "swapFee2": "53663590213824521744", + "outputIndex": 2, + "inputQty": "433900895088788373504", + "outputQty0": "437044226430351709620", + "outputQty": "437213207887428169024", + "swapFee1": "260340537053273024", + "swapFee2": "262226535858211025", "mpReserves": [ - "37439160255021117908840664", - "32636597274616874974713296", - "37838961404513937139752598" + "37630337535499910602235887", + "28445514658351045729537907", + "39294731286995242771612302" ], "fpReserves": [ - "8891617112430029442445713", - "3077883956671065389645809" + "6332697601968586412591669", + "6922808287658263061582955" ], - "mAssetSupply": "107913916034616013260075072", - "LPTokenSupply": "11906710151410980620560370" + "mAssetSupply": "105361829228886399285115299", + "LPTokenSupply": "13148209255514356152081431" }, { "type": "mint", "inputIndex": 1, - "inputQty": "502115197812528", - "outputQty0": "502283057937002", - "outputQty": "498236680914173", + "inputQty": "20075056458315184734208", + "outputQty0": "20113433765365074657247", + "outputQty": "19956683242286210977399", "mpReserves": [ - "37439160255021117908840664", - "32636597275118990172525824", - "37838961404513937139752598" + "37630337535499910602235887", + "28465589714809360914272115", + "39294731286995242771612302" ], "fpReserves": [ - "8891617112932312500382715", - "3077883956671065389645809" + "6352811035733951487248916", + "6922808287658263061582955" ], - "mAssetSupply": "107913916035118296318012074", - "LPTokenSupply": "11906710151909217301474543" + "mAssetSupply": "105381942662651764359772546", + "LPTokenSupply": "13168165938756642363058830" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "53273509593466577879040", - "outputQty0": "53673137984140024481060", - "outputQty": "53633628416203259435355", - "swapFee1": "31964105756079946727", - "swapFee2": "21469255193656009792", + "outputIndex": 0, + "inputQty": "28947192514550480896", + "outputQty0": "29157215465834287518", + "outputQty": "29158612910825489819", + "swapFee1": "17368315508730288", + "swapFee2": "17494329279500572", "mpReserves": [ - "37439160255021117908840664", - "32582963646702786913090469", - "37838961404513937139752598" + "37630308376886999776746068", + "28465589714809360914272115", + "39294731286995242771612302" ], "fpReserves": [ - "8837943974948172475901655", - "3077883956671065389645809" + "6352781878518485652961398", + "6922808287658263061582955" ], - "mAssetSupply": "107860264366389349949540806", - "LPTokenSupply": "11853439838726326331590175" + "mAssetSupply": "105381913522930627804985600", + "LPTokenSupply": "13168136993300959363450962" }, { "type": "swap_fp_to_mp", - "inputQty": "266556246184572321792", - "outputIndex": 1, - "outputQty": "269262567288536017852", + "inputQty": "3292020886150967", + "outputIndex": 2, + "outputQty": "3291407954581440", "swapFee": "0", - "redemptionFee": "107784591424003565", + "redemptionFee": "1974085402528", "mpReserves": [ - "37439160255021117908840664", - "32582694384135498377072617", - "37838961404513937139752598" + "37630308376886999776746068", + "28465589714809360914272115", + "39294731283703834817030862" ], "fpReserves": [ - "8837674513469612466987961", - "3078150512917249961967601" + "6352781875228343315414409", + "6922808290950283947733922" ], - "mAssetSupply": "107859995012695381364630677", - "LPTokenSupply": "11853439838726326331590175" + "mAssetSupply": "105381913519642459552841139", + "LPTokenSupply": "13168136993300959363450962" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1715171982737483008", - "outputQty0": "1728015585473490443", - "outputQty": "1726739979692569249", - "swapFee1": "1029103189642489", - "swapFee2": "691206234189396", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "6580182131792207872", + "outputQty0": "6573705316451756162", + "outputQty": "6572196646604183475", + "swapFee": "5217950673423660", "mpReserves": [ - "37439160255021117908840664", - "32582692657395518684503368", - "37838961404513937139752598" + "37630308376886999776746068", + "28465589714809360914272115", + "39294737863885966609238734" ], "fpReserves": [ - "8837672785454026993497518", - "3078150512917249961967601" + "6352788448933659767170571", + "6922801718753637343550447" ], - "mAssetSupply": "107859993285371002125329630", - "LPTokenSupply": "11853438123657253913071415" + "mAssetSupply": "105381920093347776004597301", + "LPTokenSupply": "13168136993822754430793328" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "251514967238306638594048", - "outputQty0": "253380438349196390882898", - "outputQty": "253312787087875404956683", - "swapFee1": "150908980342983983156", - "swapFee2": "101352175339678556353", + "type": "swap_fp_to_mp", + "inputQty": "76249576715745968", + "outputIndex": 2, + "outputQty": "76235381104992552", + "swapFee": "0", + "redemptionFee": "45723640138687", "mpReserves": [ - "37185847467933242503883981", - "32582692657395518684503368", - "37838961404513937139752598" + "37630308376886999776746068", + "28465589714809360914272115", + "39294737787650585504246182" ], "fpReserves": [ - "8584292347104830602614620", - "3078150512917249961967601" + "6352788372727592869358295", + "6922801795003214059296415" ], - "mAssetSupply": "107606714199197145413003085", - "LPTokenSupply": "11601938247316981572875682" + "mAssetSupply": "105381920017187432746923712", + "LPTokenSupply": "13168136993822754430793328" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "9119168497496531927040", + "outputQty0": "9113254331626420516108", + "outputQty": "9042159309831831423611", + "mpReserves": [ + "37639427545384496308673108", + "28465589714809360914272115", + "39294737787650585504246182" + ], + "fpReserves": [ + "6361901627059219289874403", + "6922801795003214059296415" + ], + "mAssetSupply": "105391033271519059167439820", + "LPTokenSupply": "13177179153132586262216939" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "6677516064287215321088", - "outputQty0": "6676303530027300436019", - "outputQty": "6602423627360676368834", - "swapFee": "5298842766291298344", + "inputIndex": 1, + "inputQty": "1725573145458087034880", + "outputQty0": "1728868490897990990238", + "outputQty": "1728452135288737992323", + "swapFee": "1372300814247538893", "mpReserves": [ - "37185847467933242503883981", - "32582692657395518684503368", - "37845638920578224355073686" + "37639427545384496308673108", + "28467315287954819001306995", + "39294737787650585504246182" ], "fpReserves": [ - "8590968650634857903050639", - "3071548089289889285598767" + "6363630495550117280864641", + "6921073342867925321304092" ], - "mAssetSupply": "107613390502727172713439104", - "LPTokenSupply": "11601938777201258202005516" + "mAssetSupply": "105392762140009957158430058", + "LPTokenSupply": "13177179290362667686970828" }, { "type": "mint", "inputIndex": 1, - "inputQty": "37548205615164661170176", - "outputQty0": "37560550100746751464667", - "outputQty": "37262918031838189136880", + "inputQty": "2753517251903649480704", + "outputQty0": "2758774049635614445346", + "outputQty": "2737237972090192877147", + "mpReserves": [ + "37639427545384496308673108", + "28470068805206722650787699", + "39294737787650585504246182" + ], + "fpReserves": [ + "6366389269599752895309987", + "6921073342867925321304092" + ], + "mAssetSupply": "105395520914059592772875404", + "LPTokenSupply": "13179916528334757879847975" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "653271225874891088592896", + "outputQty0": "652600776455127329222656", + "outputQty": "652014853139526885464698", + "swapFee": "517917138174279791141", "mpReserves": [ - "37185847467933242503883981", - "32620240863010683345673544", - "37845638920578224355073686" + "37639427545384496308673108", + "28470068805206722650787699", + "39948009013525476592839078" ], "fpReserves": [ - "8628529200735604654515306", - "3071548089289889285598767" + "7018990046054880224532643", + "6269058489728398435839394" ], - "mAssetSupply": "107650951052827919464903771", - "LPTokenSupply": "11639201695233096391142396" + "mAssetSupply": "106048121690514720102098060", + "LPTokenSupply": "13179968320048575307827089" }, { "type": "swap_fp_to_mp", - "inputQty": "290078106949022082138112", - "outputIndex": 2, - "outputQty": "292737481246185014906784", + "inputQty": "94317952333080606801920", + "outputIndex": 1, + "outputQty": "94136450150312680520470", "swapFee": "0", - "redemptionFee": "117121668372008281524", + "redemptionFee": "56627946446409138358", "mpReserves": [ - "37185847467933242503883981", - "32620240863010683345673544", - "37552901439332039340166902" + "37639427545384496308673108", + "28375932355056409970267229", + "39948009013525476592839078" ], "fpReserves": [ - "8335725029805583950703957", - "3361626196238911367736879" + "6924610135310864993934689", + "6363376442061479042641314" ], - "mAssetSupply": "107358264003566270769373946", - "LPTokenSupply": "11639201695233096391142396" + "mAssetSupply": "105953798407717151280638464", + "LPTokenSupply": "13179968320048575307827089" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "50420801266377178480640", - "outputQty0": "50763805454048803599299", - "outputQty": "50750152448636387365670", - "swapFee1": "30252480759826307088", - "swapFee2": "20305522181619521439", + "outputIndex": 2, + "inputQty": "615517653357399769088", + "outputQty0": "620356569905746369468", + "outputQty": "620653528556146211483", + "swapFee1": "369310592014439861", + "swapFee2": "372213941943447821", "mpReserves": [ - "37135097315484606116518311", - "32620240863010683345673544", - "37552901439332039340166902" + "37639427545384496308673108", + "28375932355056409970267229", + "39947388359996920446627595" ], "fpReserves": [ - "8284961224351535147104658", - "3361626196238911367736879" + "6923989778740959247565221", + "6363376442061479042641314" ], - "mAssetSupply": "107307520503634403585296086", - "LPTokenSupply": "11588783919214795195292464" + "mAssetSupply": "105953178423361187477716817", + "LPTokenSupply": "13179352839326277109501987" }, { "type": "mint", "inputIndex": 0, - "inputQty": "70410989965294406991872", - "outputQty0": "70401720180423011077874", - "outputQty": "69883546523917460575740", + "inputQty": "2180909362458192773120", + "outputQty0": "2179566227113670151742", + "outputQty": "2161266762878146418897", "mpReserves": [ - "37205508305449900523510183", - "32620240863010683345673544", - "37552901439332039340166902" + "37641608454746954501446228", + "28375932355056409970267229", + "39947388359996920446627595" ], "fpReserves": [ - "8355362944531958158182532", - "3361626196238911367736879" + "6926169344968072917716963", + "6363376442061479042641314" ], - "mAssetSupply": "107377922223814826596373960", - "LPTokenSupply": "11658667465738712655868204" + "mAssetSupply": "105955357989588301147868559", + "LPTokenSupply": "13181514106089155255920884" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "50322058578325274624", - "outputQty0": "50315330989808286347", - "outputQty": "49854751905338734615", - "swapFee": "39955262300853237", + "type": "redeem", + "outputIndex": 2, + "inputQty": "4727046081145377652736", + "outputQty0": "4764206932870593898813", + "outputQty": "4766485168571498406958", + "swapFee1": "2836227648687226591", + "swapFee2": "2858524159722356339", "mpReserves": [ - "37205558627508478848784807", - "32620240863010683345673544", - "37552901439332039340166902" + "37641608454746954501446228", + "28375932355056409970267229", + "39942621874828348948220637" ], "fpReserves": [ - "8355413259862947966468879", - "3361576341487006029002264" + "6921405138035202323818150", + "6363376442061479042641314" ], - "mAssetSupply": "107377972539145816404660307", - "LPTokenSupply": "11658667469734238885953527" + "mAssetSupply": "105950596641179590276326085", + "LPTokenSupply": "13176787343630774746990807" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "69798990225375691276288", - "outputQty0": "69787444405701493318228", - "outputQty": "69271247324254126583913", + "type": "swap_fp_to_mp", + "inputQty": "10211877860818471092224", + "outputIndex": 2, + "outputQty": "10222351732787538309969", + "swapFee": "0", + "redemptionFee": "6130485439923694648", "mpReserves": [ - "37205558627508478848784807", - "32620240863010683345673544", - "37622700429557415031443190" + "37641608454746954501446228", + "28375932355056409970267229", + "39932399523095561409910668" ], "fpReserves": [ - "8425200704268649459787107", - "3361576341487006029002264" + "6911187662301996166070792", + "6373588319922297513733538" ], - "mAssetSupply": "107447759983551517897978535", - "LPTokenSupply": "11727938717058493012537440" + "mAssetSupply": "105940385295931824042273375", + "LPTokenSupply": "13176787343630774746990807" }, { "type": "mint", "inputIndex": 2, - "inputQty": "61231377656567746789376", - "outputQty0": "61221021675095452784820", - "outputQty": "60766110364699948787903", + "inputQty": "6184388410863396864", + "outputQty0": "6177733743544781133", + "outputQty": "6125935632800471199", "mpReserves": [ - "37205558627508478848784807", - "32620240863010683345673544", - "37683931807213982778232566" + "37641608454746954501446228", + "28375932355056409970267229", + "39932405707483972273307532" ], "fpReserves": [ - "8486421725943744912571927", - "3361576341487006029002264" + "6911193840035739710851925", + "6373588319922297513733538" ], - "mAssetSupply": "107508981005226613350763355", - "LPTokenSupply": "11788704827423192961325343" + "mAssetSupply": "105940391473665567587054508", + "LPTokenSupply": "13176793469566407547462006" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "299250145747177897984", - "outputQty0": "301314303470610874664", - "outputQty": "301096628493858494237", - "swapFee1": "179550087448306738", - "swapFee2": "120525721388244349", + "type": "mint", + "inputIndex": 0, + "inputQty": "52875478335472757899264", + "outputQty0": "52842655388344264288980", + "outputQty": "52398948665179475466965", "mpReserves": [ - "37205558627508478848784807", - "32619939766382189487179307", - "37683931807213982778232566" + "37694483933082427259345492", + "28375932355056409970267229", + "39932405707483972273307532" ], "fpReserves": [ - "8486120411640274301697263", - "3361576341487006029002264" + "6964036495424083975140905", + "6373588319922297513733538" ], - "mAssetSupply": "107508679811448864128133040", - "LPTokenSupply": "11788405595232454528258032" + "mAssetSupply": "105993234129053911851343488", + "LPTokenSupply": "13229192418231587022928971" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "87876301288229175296", - "outputQty0": "88482443747678169881", - "outputQty": "88458549730097689246", - "swapFee1": "52725780772937505", - "swapFee2": "35392977499071267", + "type": "swap_fp_to_mp", + "inputQty": "4540521229508540366848", + "outputIndex": 2, + "outputQty": "4545322210291797563895", + "swapFee": "0", + "redemptionFee": "2725904398692383234", "mpReserves": [ - "37205470168958748751095561", - "32619939766382189487179307", - "37683931807213982778232566" + "37694483933082427259345492", + "28375932355056409970267229", + "39927860385273680475743637" ], "fpReserves": [ - "8486031929196526623527382", - "3361576341487006029002264" + "6959493321426263336417320", + "6378128841151806054100386" ], - "mAssetSupply": "107508591364398093949034426", - "LPTokenSupply": "11788317724203744376376486" + "mAssetSupply": "105988693680960489905003137", + "LPTokenSupply": "13229192418231587022928971" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "225045580159045369856", - "outputQty0": "225007124406213308584", - "outputQty": "223331641401807133558", + "type": "redeem", + "outputIndex": 2, + "inputQty": "403718488670940082208768", + "outputQty0": "406856953733623756860781", + "outputQty": "407038371543270169198103", + "swapFee1": "242231093202564049325", + "swapFee2": "244114172240174254116", "mpReserves": [ - "37205470168958748751095561", - "32619939766382189487179307", - "37684156852794141823602422" + "37694483933082427259345492", + "28375932355056409970267229", + "39520822013730410306545534" ], "fpReserves": [ - "8486256936320932836835966", - "3361576341487006029002264" + "6552636367692639579556539", + "6378128841151806054100386" ], - "mAssetSupply": "107508816371522500162343010", - "LPTokenSupply": "11788541055845146183510044" + "mAssetSupply": "105582080841399106322396472", + "LPTokenSupply": "12825498152669967197125135" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "183481941027118911586304", - "outputQty0": "183449637039002454273549", - "outputQty": "181615087989338115175045", - "swapFee": "145659921705315295104", + "type": "swap_fp_to_mp", + "inputQty": "31847017056263676", + "outputIndex": 0, + "outputQty": "31854341976075978", + "swapFee": "0", + "redemptionFee": "19111627341316", "mpReserves": [ - "37205470168958748751095561", - "32619939766382189487179307", - "37867638793821260735188726" + "37694483901228085283269514", + "28375932355056409970267229", + "39520822013730410306545534" ], "fpReserves": [ - "8669706573359935291109515", - "3179961253497667913827219" + "6552636335839927344028678", + "6378128872998823110364062" ], - "mAssetSupply": "107692266008561502616616559", - "LPTokenSupply": "11788555621837316715039554" + "mAssetSupply": "105582080809565505714209927", + "LPTokenSupply": "12825498152669967197125135" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2469606886211367", - "outputQty0": "2469159335751476", - "outputQty": "2449884882628985", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3398805561511401472", + "outputQty0": "3424947786824678435", + "outputQty": "3416193402662146202", + "swapFee1": "2039283336906840", + "swapFee2": "2054968672094807", "mpReserves": [ - "37205470168958748751095561", - "32619939766382189487179307", - "37867638796290867621400093" + "37694483901228085283269514", + "28375928938863007308121027", + "39520822013730410306545534" ], "fpReserves": [ - "8669706575829094626860991", - "3179961253497667913827219" + "6552632910892140519350243", + "6378128872998823110364062" ], - "mAssetSupply": "107692266011030661952368035", - "LPTokenSupply": "11788555624287201597668539" + "mAssetSupply": "105582077386672687561626299", + "LPTokenSupply": "12825494754068334019414347" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "47847580953733433917440", - "outputQty0": "48194455200857709270519", - "outputQty": "48183844246387518057584", - "swapFee1": "28708548572240060350", - "swapFee2": "19277782080343083708", + "type": "swap_fp_to_mp", + "inputQty": "60015350634792907440128", + "outputIndex": 0, + "outputQty": "60025205056812917005176", + "swapFee": "0", + "redemptionFee": "36013434181762215487", "mpReserves": [ - "37205470168958748751095561", - "32619939766382189487179307", - "37819454952044480103342509" + "37634458696171272366264338", + "28375928938863007308121027", + "39520822013730410306545534" ], "fpReserves": [ - "8621512120628236917590472", - "3179961253497667913827219" + "6492610520589203493538565", + "6438144223633616017804190" ], - "mAssetSupply": "107644090833611884586181224", - "LPTokenSupply": "11740710914188325387757134" + "mAssetSupply": "105522091009803932298030108", + "LPTokenSupply": "12825494754068334019414347" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "614431460959570688", - "outputQty0": "618879068675776612", - "outputQty": "618429203354200620", - "swapFee1": "368658876575742", - "swapFee2": "247551627470310", + "outputIndex": 2, + "inputQty": "6225962558751387648", + "outputQty0": "6273467615935513069", + "outputQty": "6276121584186928780", + "swapFee1": "3735577535250832", + "swapFee2": "3764080569561307", "mpReserves": [ - "37205470168958748751095561", - "32619939147952986132978687", - "37819454952044480103342509" + "37634458696171272366264338", + "28375928938863007308121027", + "39520815737608826119616754" ], "fpReserves": [ - "8621511501749168241813860", - "3179961253497667913827219" + "6492604247121587558025496", + "6438144223633616017804190" ], - "mAssetSupply": "107644090214980367537874922", - "LPTokenSupply": "11740710299793730315844020" + "mAssetSupply": "105522084740100396932078346", + "LPTokenSupply": "12825488528479333021551782" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "70062297336069316608", - "outputQty0": "70049789970337979798", - "outputQty": "69504644247250492155", + "inputIndex": 0, + "inputQty": "192745191181580861440", + "outputQty0": "192621331476235974003", + "outputQty": "191048023551035461344", "mpReserves": [ - "37205470168958748751095561", - "32619939147952986132978687", - "37819525014341816172659117" + "37634651441362453947125778", + "28375928938863007308121027", + "39520815737608826119616754" ], "fpReserves": [ - "8621581551539138579793658", - "3179961253497667913827219" + "6492796868453063793999499", + "6438144223633616017804190" ], - "mAssetSupply": "107644160264770337875854720", - "LPTokenSupply": "11740779804437977566336175" + "mAssetSupply": "105522277361431873168052349", + "LPTokenSupply": "12825679576502884057013126" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "26299726911404991578112", - "outputQty0": "26308304289606517281051", - "outputQty": "26103378816722434256803", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "31185804225050174291968", + "outputQty0": "31165694319477223928435", + "outputQty": "31138024497505858864801", + "swapFee": "24728712870913123080", "mpReserves": [ - "37205470168958748751095561", - "32646238874864391124556799", - "37819525014341816172659117" + "37665837245587504121417746", + "28375928938863007308121027", + "39520815737608826119616754" ], "fpReserves": [ - "8647889855828745097074709", - "3179961253497667913827219" + "6523962562772541017927934", + "6407006199136110158939389" ], - "mAssetSupply": "107670468569059944393135771", - "LPTokenSupply": "11766883183254700000592978" + "mAssetSupply": "105553443055751350391980784", + "LPTokenSupply": "12825682049374171148325434" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "330825048185128982937600", - "outputQty0": "330763211512874729174682", - "outputQty": "328154944594954339485664", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "247845334782605066240", + "outputQty0": "248330670842849217981", + "outputQty": "248102214678262805020", + "swapFee": "197035257261293603", "mpReserves": [ - "37205470168958748751095561", - "32646238874864391124556799", - "38150350062526945155596717" + "37665837245587504121417746", + "28376176784197789913187267", + "39520815737608826119616754" ], "fpReserves": [ - "8978653067341619826249391", - "3179961253497667913827219" + "6524210893443383867145915", + "6406758096921431896134369" ], - "mAssetSupply": "108001231780572819122310453", - "LPTokenSupply": "12095038127849654340078642" + "mAssetSupply": "105553691386422193241198765", + "LPTokenSupply": "12825682069077696874454794" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "249974594188618980392960", - "outputQty0": "249943792524040832498533", - "outputQty": "246869586040855874946606", - "swapFee": "198347084061246151861", + "inputQty": "19804708746146592325632", + "outputQty0": "19791866505444216148606", + "outputQty": "19629448675796844828785", "mpReserves": [ - "37455444763147367731488521", - "32646238874864391124556799", - "38150350062526945155596717" + "37685641954333650713743378", + "28376176784197789913187267", + "39520815737608826119616754" ], "fpReserves": [ - "9228596859865660658747924", - "2933091667456812038880613" + "6544002759948828083294521", + "6406758096921431896134369" ], - "mAssetSupply": "108251175573096859954808986", - "LPTokenSupply": "12095057962558060464693828" + "mAssetSupply": "105573483252927637457347371", + "LPTokenSupply": "12845311517753493719283579" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "272166341400322975465472", - "outputQty0": "272128718181821847132155", - "outputQty": "269784469530684637652665", + "inputQty": "1054910953201746051072", + "outputQty0": "1054225338678203395199", + "outputQty": "1053232943766326284676", + "swapFee": "836454872866596334", "mpReserves": [ - "37727611104547690706953993", - "32646238874864391124556799", - "38150350062526945155596717" + "37686696865286852459794450", + "28376176784197789913187267", + "39520815737608826119616754" ], "fpReserves": [ - "9500725578047482505880079", - "2933091667456812038880613" + "6545056985287506286689720", + "6405704863977665569849693" ], - "mAssetSupply": "108523304291278681801941141", - "LPTokenSupply": "12364842432088745102346493" + "mAssetSupply": "105574537478266315660742570", + "LPTokenSupply": "12845311601398981005943212" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1307276493747144359936", - "outputQty0": "1307039086380123909626", - "outputQty": "1288653105313123648734", - "swapFee": "1036541777333917010", + "inputIndex": 0, + "inputQty": "405001264891037350887424", + "outputQty0": "404726415273822344552358", + "outputQty": "404176528746054006494634", + "swapFee": "321090508151258489363", "mpReserves": [ - "37727611104547690706953993", - "32646238874864391124556799", - "38151657339020692299956653" + "38091698130177889810681874", + "28376176784197789913187267", + "39520815737608826119616754" ], "fpReserves": [ - "9502032617133862629789705", - "2931803014351498915231879" + "6949783400561328631242078", + "6001528335231611563355059" ], - "mAssetSupply": "108524611330365061925850767", - "LPTokenSupply": "12364842535742922835738194" + "mAssetSupply": "105979263893540138005294928", + "LPTokenSupply": "12845343710449796131792148" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "59158759975002553974784", - "outputQty0": "59147916779402316173833", - "outputQty": "58297620361385568507755", - "swapFee": "46906067747591247790", + "type": "mint", + "inputIndex": 0, + "inputQty": "377557637805492995620864", + "outputQty0": "377280714887359635722402", + "outputQty": "373992469843280791324942", "mpReserves": [ - "37727611104547690706953993", - "32646238874864391124556799", - "38210816098995694853931437" + "38469255767983382806302738", + "28376176784197789913187267", + "39520815737608826119616754" ], "fpReserves": [ - "9561180533913264945963538", - "2873505393990113346724124" + "7327064115448688266964480", + "6001528335231611563355059" ], - "mAssetSupply": "108583759247144464242024600", - "LPTokenSupply": "12364847226349697594862973" + "mAssetSupply": "106356544608427497641017330", + "LPTokenSupply": "13219336180293076923117090" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "433348440958497536", - "outputQty0": "433268298664386876", - "outputQty": "429436553580707840", + "inputIndex": 1, + "inputQty": "288849433562785", + "outputQty0": "289437915473969", + "outputQty": "286891690140017", "mpReserves": [ - "37727611104547690706953993", - "32646238874864391124556799", - "38210816532344135812428973" + "38469255767983382806302738", + "28376176784486639346750052", + "39520815737608826119616754" ], "fpReserves": [ - "9561180967181563610350414", - "2873505393990113346724124" + "7327064115738126182438449", + "6001528335231611563355059" ], - "mAssetSupply": "108583759680412762906411476", - "LPTokenSupply": "12364847655786251175570813" + "mAssetSupply": "106356544608716935556491299", + "LPTokenSupply": "13219336180579968613257107" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "294999870036418913894400", - "outputQty0": "294942900696306880858685", - "outputQty": "290102121257123105147471", - "swapFee": "233847325440455561248", + "type": "redeem", + "outputIndex": 0, + "inputQty": "126636951324814273937408", + "outputQty0": "127680717692838591161836", + "outputQty": "127699989826326179028851", + "swapFee1": "75982170794888564362", + "swapFee2": "76608430615703154697", "mpReserves": [ - "37727611104547690706953993", - "32646238874864391124556799", - "38505816402380554726323373" + "38341555778157056627273887", + "28376176784486639346750052", + "39520815737608826119616754" ], "fpReserves": [ - "9856123867877870491209099", - "2583403272732990241576653" + "7199383398045287591276613", + "6001528335231611563355059" ], - "mAssetSupply": "108878702581109069787270161", - "LPTokenSupply": "12364871040518795221126937" + "mAssetSupply": "106228940499454712668484160", + "LPTokenSupply": "13092706827472233828176135" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5083352508215487", - "outputQty0": "5085209076577002", - "outputQty": "5036022018835399", + "type": "redeem", + "outputIndex": 1, + "inputQty": "530863102753939088474112", + "outputQty0": "535162331582273156362052", + "outputQty": "533721619680936342159257", + "swapFee1": "318517861652363453084", + "swapFee2": "321097398949363893817", "mpReserves": [ - "37727611104547690706953993", - "32646238879947743632772286", - "38505816402380554726323373" + "38341555778157056627273887", + "27842455164805703004590795", + "39520815737608826119616754" ], "fpReserves": [ - "9856123872963079567786101", - "2583403272732990241576653" + "6664221066463014434914561", + "6001528335231611563355059" ], - "mAssetSupply": "108878702586194278863847163", - "LPTokenSupply": "12364871045554817239962336" + "mAssetSupply": "105694099265271388876015925", + "LPTokenSupply": "12561875576504459976047331" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4864635357621285552128", - "outputQty0": "4863655622084984739498", - "outputQty": "4774372450440122206925", - "swapFee": "3853283181612314494", + "inputIndex": 0, + "inputQty": "682134684260415872", + "outputQty0": "681592231967045262", + "outputQty": "680572583029804078", + "swapFee": "540623353126924", "mpReserves": [ - "37727611104547690706953993", - "32646238879947743632772286", - "38510681037738176011875501" + "38341556460291740887689759", + "27842455164805703004590795", + "39520815737608826119616754" ], "fpReserves": [ - "9860987528585164552525599", - "2578628900282550119369728" + "6664221748055246401959823", + "6001527654659028533550981" ], - "mAssetSupply": "108883566241816363848586661", - "LPTokenSupply": "12364871430883135401193785" + "mAssetSupply": "105694099946863620843061187", + "LPTokenSupply": "12561875576558522311360023" }, { - "type": "swap_fp_to_mp", - "inputQty": "2567708865840008921088", - "outputIndex": 1, - "outputQty": "2611676667561339164569", - "swapFee": "0", - "redemptionFee": "1045470668881463127", + "type": "redeem", + "outputIndex": 0, + "inputQty": "217212807136422592512", + "outputQty0": "218949807749223242905", + "outputQty": "218992583479721732966", + "swapFee1": "130327684281853555", + "swapFee2": "131369884649533945", "mpReserves": [ - "37727611104547690706953993", - "32643627203280182293607717", - "38510681037738176011875501" + "38341337467708261165956793", + "27842455164805703004590795", + "39520815737608826119616754" ], "fpReserves": [ - "9858373851912960894705931", - "2581196609148390128290816" + "6664002798247497178716918", + "6001527654659028533550981" ], - "mAssetSupply": "108880953610614829072230120", - "LPTokenSupply": "12364871430883135401193785" + "mAssetSupply": "105693881128425756269352227", + "LPTokenSupply": "12561658376784154316952866" }, { - "type": "swap_fp_to_mp", - "inputQty": "3435788393492218118144", - "outputIndex": 1, - "outputQty": "3494463701388327252389", - "swapFee": "0", - "redemptionFee": "1398856226532500590", + "type": "mint", + "inputIndex": 2, + "inputQty": "827464212954851835904", + "outputQty0": "826611858440306560868", + "outputQty": "819561916555933170699", "mpReserves": [ - "37727611104547690706953993", - "32640132739578793966355328", - "38510681037738176011875501" + "38341337467708261165956793", + "27842455164805703004590795", + "39521643201821780971452658" ], "fpReserves": [ - "9854876711346629643229919", - "2584632397541882346408960" + "6664829410105937485277786", + "6001527654659028533550981" ], - "mAssetSupply": "108877457868904724353254698", - "LPTokenSupply": "12364871430883135401193785" + "mAssetSupply": "105694707740284196575913095", + "LPTokenSupply": "12562477938700710250123565" }, { "type": "mint", "inputIndex": 1, - "inputQty": "100470032081710479310848", - "outputQty0": "100506399250657651971046", - "outputQty": "99531363509475584959965", + "inputQty": "31217969545847385358336", + "outputQty0": "31285635074900976773952", + "outputQty": "31018571312238230862889", "mpReserves": [ - "37727611104547690706953993", - "32740602771660504445666176", - "38510681037738176011875501" + "38341337467708261165956793", + "27873673134351550389949131", + "39521643201821780971452658" ], "fpReserves": [ - "9955383110597287295200965", - "2584632397541882346408960" + "6696115045180838462051738", + "6001527654659028533550981" ], - "mAssetSupply": "108977964268155382005225744", - "LPTokenSupply": "12464402794392610986153750" + "mAssetSupply": "105725993375359097552687047", + "LPTokenSupply": "12593496510012948480986454" }, { - "type": "swap_fp_to_mp", - "inputQty": "503611183502383382528", - "outputIndex": 2, - "outputQty": "512644401324667830230", - "swapFee": "0", - "redemptionFee": "205099114814697580", + "type": "redeem", + "outputIndex": 0, + "inputQty": "167217527446747296", + "outputQty0": "168557296759448698", + "outputQty": "168589684109934788", + "swapFee1": "100330516468048", + "swapFee2": "101134378055669", "mpReserves": [ - "37727611104547690706953993", - "32740602771660504445666176", - "38510168393336851344045271" + "38341337299118577056022005", + "27873673134351550389949131", + "39521643201821780971452658" ], "fpReserves": [ - "9954870362810250551250475", - "2585136008725384729791488" + "6696114876623541702603040", + "6001527654659028533550981" ], - "mAssetSupply": "108977451725467460075972834", - "LPTokenSupply": "12464402794392610986153750" + "mAssetSupply": "105725993206902935171294018", + "LPTokenSupply": "12593496342805454085885962" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "187988701213610976", - "outputQty0": "188056014796241961", - "outputQty": "184557997877996838", - "swapFee": "148980707743139", + "type": "mint", + "inputIndex": 0, + "inputQty": "1903422099851033968640", + "outputQty0": "1901914352651323850915", + "outputQty": "1885664151628362094418", + "mpReserves": [ + "38343240721218428089990645", + "27873673134351550389949131", + "39521643201821780971452658" + ], + "fpReserves": [ + "6698016790976193026453955", + "6001527654659028533550981" + ], + "mAssetSupply": "105727895121255586495144933", + "LPTokenSupply": "12595382006957082447980380" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "6058064455614618140672", + "outputIndex": 0, + "outputQty": "6063617973027960117066", + "swapFee": "0", + "redemptionFee": "3637472434394278523", "mpReserves": [ - "37727611104547690706953993", - "32740602959649205659277152", - "38510168393336851344045271" + "38337177103245400129873579", + "27873673134351550389949131", + "39521643201821780971452658" ], "fpReserves": [ - "9954870550866265347492436", - "2585135824167386851794650" + "6691954336918869228915582", + "6007585719114643151691653" ], - "mAssetSupply": "108977451913523474872214795", - "LPTokenSupply": "12464402794407509056928063" + "mAssetSupply": "105721836304670697091885083", + "LPTokenSupply": "12595382006957082447980380" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "25769332365018609483776", - "outputQty0": "26006747722282981335727", - "outputQty": "25987013742872674590704", - "swapFee1": "15461599419011165690", - "swapFee2": "10402699088913192534", + "inputQty": "81078158581606828212224", + "outputQty0": "81725749289612697818316", + "outputQty": "81499518478869519858277", + "swapFee1": "48646895148964096927", + "swapFee2": "49035449573767618690", "mpReserves": [ - "37727611104547690706953993", - "32714615945906332984686448", - "38510168393336851344045271" + "38337177103245400129873579", + "27792173615872680870090854", + "39521643201821780971452658" ], "fpReserves": [ - "9928863803143982366156709", - "2585135824167386851794650" + "6610228587629256531097266", + "6007585719114643151691653" ], - "mAssetSupply": "108951455568500280804071602", - "LPTokenSupply": "12438635008202432348560856" + "mAssetSupply": "105640159590830658161685457", + "LPTokenSupply": "12514308713064990516177848" }, { "type": "swap_fp_to_mp", - "inputQty": "2748487561521078468608", + "inputQty": "3831897417041461116928", "outputIndex": 0, - "outputQty": "2797312960150732268941", + "outputQty": "3835082742980739536612", "swapFee": "0", - "redemptionFee": "1119223293822247248", + "redemptionFee": "2300590569838665846", "mpReserves": [ - "37724813791587539974685052", - "32714615945906332984686448", - "38510168393336851344045271" + "38333342020502419390336967", + "27792173615872680870090854", + "39521643201821780971452658" ], "fpReserves": [ - "9926065744909426748036427", - "2587884311728907930263258" + "6606394270012858754686614", + "6011417616531684612808581" ], - "mAssetSupply": "108948658629489019008198568", - "LPTokenSupply": "12438635008202432348560856" + "mAssetSupply": "105636327573804830223940651", + "LPTokenSupply": "12514308713064990516177848" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1153496680882255544975360", - "hardLimitError": true + "type": "redeem", + "outputIndex": 1, + "inputQty": "235962373883356053504", + "outputQty0": "237842290685943029794", + "outputQty": "237181262778687895683", + "swapFee1": "141577424330013632", + "swapFee2": "142705374411565817", + "mpReserves": [ + "38333342020502419390336967", + "27791936434609902182195171", + "39521643201821780971452658" + ], + "fpReserves": [ + "6606156427722172811656820", + "6011417616531684612808581" + ], + "mAssetSupply": "105636089874219518692476674", + "LPTokenSupply": "12514072764848849593125707" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "110152876393104727343104", - "outputQty0": "110130586303356367382634", - "outputQty": "109057588134620336568283", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1375867144316015869952", + "outputQty0": "1386828174398045714250", + "outputQty": "1387432955543357755027", + "swapFee1": "825520286589609521", + "swapFee2": "832096904638827428", "mpReserves": [ - "37724813791587539974685052", - "32714615945906332984686448", - "38620321269729956071388375" + "38333342020502419390336967", + "27791936434609902182195171", + "39520255768866237613697631" ], "fpReserves": [ - "10036196331212783115419061", - "2587884311728907930263258" + "6604769599547774765942570", + "6011417616531684612808581" ], - "mAssetSupply": "109058789215792375375581202", - "LPTokenSupply": "12547692596337052685129139" + "mAssetSupply": "105634703878142025285589852", + "LPTokenSupply": "12512696980256562236216707" }, { "type": "swap_fp_to_mp", - "inputQty": "205419558546602624", + "inputQty": "3040959406826807885824", "outputIndex": 1, - "outputQty": "209031637668145680", + "outputQty": "3034394904111308986682", "swapFee": "0", - "redemptionFee": "83676528149523", + "redemptionFee": "1825711675063794326", "mpReserves": [ - "37724813791587539974685052", - "32714615736874695316540768", - "38620321269729956071388375" + "38333342020502419390336967", + "27788902039705790873208489", + "39520255768866237613697631" ], "fpReserves": [ - "10036196122021462741611275", - "2587884517148466476865882" + "6601726746756001775398816", + "6014458575938511420694405" ], - "mAssetSupply": "109058789006684731529922939", - "LPTokenSupply": "12547692596337052685129139" + "mAssetSupply": "105631662851061927358840424", + "LPTokenSupply": "12512696980256562236216707" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1542556888434015731712", - "outputQty0": "1542355424351286765581", - "outputQty": "1513317398035548071305", - "swapFee": "1221818617789548657", + "inputIndex": 1, + "inputQty": "270439070202175661539328", + "outputQty0": "271020000932102014803885", + "outputQty": "270556857797054316750141", + "swapFee": "214960173665207692997", "mpReserves": [ - "37726356348475973990416764", - "32714615736874695316540768", - "38620321269729956071388375" + "38333342020502419390336967", + "28059341109907966534747817", + "39520255768866237613697631" ], "fpReserves": [ - "10037738477445814028376856", - "2586371199750430928794577" + "6872746747688103790202701", + "5743901718141457103944264" ], - "mAssetSupply": "109060331362109082816688520", - "LPTokenSupply": "12547692718518914464084004" + "mAssetSupply": "105902682851994029373644309", + "LPTokenSupply": "12512718476273928756986006" }, { - "type": "swap_fp_to_mp", - "inputQty": "518343648842533581094912", + "type": "redeem", "outputIndex": 1, - "outputQty": "525718607541968085090116", + "inputQty": "537080399318845315088384", + "outputQty0": "541444255869357446131104", + "outputQty": "539938943120204393400027", + "swapFee1": "322248239591307189053", + "swapFee2": "324866553521614467678", + "mpReserves": [ + "38333342020502419390336967", + "27519402166787762141347790", + "39520255768866237613697631" + ], + "fpReserves": [ + "6331302491818746344071597", + "5743901718141457103944264" + ], + "mAssetSupply": "105361563462678193541980883", + "LPTokenSupply": "11975670301779042572616527" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "85173696234000613376", + "outputQty0": "85856511122172013119", + "outputQty": "85896322927793394313", + "swapFee1": "51104217740400368", + "swapFee2": "51513906673303207", + "mpReserves": [ + "38333342020502419390336967", + "27519402166787762141347790", + "39520169872543309820303318" + ], + "fpReserves": [ + "6331216635307624172058478", + "5743901718141457103944264" + ], + "mAssetSupply": "105361477657680978043270971", + "LPTokenSupply": "11975585133193230346043187" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "3416179559656401141760", + "outputIndex": 2, + "outputQty": "3419962720404269532046", "swapFee": "0", - "redemptionFee": "210452420074811463936", + "redemptionFee": "2051027045252123570", "mpReserves": [ - "37726356348475973990416764", - "32188897129332727231450652", - "38620321269729956071388375" + "38333342020502419390336967", + "27519402166787762141347790", + "39516749909822905550771272" ], "fpReserves": [ - "9511607427258785368535922", - "3104714848592964509889489" + "6327798256898870632773643", + "5747317897701113505086024" ], - "mAssetSupply": "108534410764342128968311522", - "LPTokenSupply": "12547692718518914464084004" + "mAssetSupply": "105358061330299269756109706", + "LPTokenSupply": "11975585133193230346043187" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "27863424882075880128512", - "outputQty0": "27859269544472523700693", - "outputQty": "27497817288811913113078", - "swapFee": "22099617091739803306", + "inputIndex": 2, + "inputQty": "5921942824796651782144", + "outputQty0": "5915646958351696233287", + "outputQty": "5907095889158704692177", + "swapFee": "4692073101747279815", "mpReserves": [ - "37754219773358049870545276", - "32188897129332727231450652", - "38620321269729956071388375" + "38333342020502419390336967", + "27519402166787762141347790", + "39522671852647702202553416" ], "fpReserves": [ - "9539466696803257892236615", - "3077217031304152596776411" + "6333713903857222329006930", + "5741410801811954800393847" ], - "mAssetSupply": "108562270033886601492012215", - "LPTokenSupply": "12547694928480623638064334" + "mAssetSupply": "105363976977257621452342993", + "LPTokenSupply": "11975585602400540520771168" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2488577069118998970368", - "outputQty0": "2489587054424342665523", - "outputQty": "2468469411487973273370", + "inputQty": "968862724887490280292352", + "outputQty0": "970923454091553134876577", + "outputQty": "962399122163445780061969", "mpReserves": [ - "37754219773358049870545276", - "32191385706401846230421020", - "38620321269729956071388375" + "38333342020502419390336967", + "28488264891675252421640142", + "39522671852647702202553416" ], "fpReserves": [ - "9541956283857682234902138", - "3077217031304152596776411" + "7304637357948775463883507", + "5741410801811954800393847" ], - "mAssetSupply": "108564759620941025834677738", - "LPTokenSupply": "12550163397892111611337704" + "mAssetSupply": "106334900431349174587219570", + "LPTokenSupply": "12937984724563986300833137" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "605093626378695213056", - "outputQty0": "605002947459950336894", - "outputQty": "599870564636581651797", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "471492614914003238912", + "outputQty0": "471036724266215844921", + "outputQty": "469891573406993048880", + "swapFee": "373439339248851599", "mpReserves": [ - "37754824866984428565758332", - "32191385706401846230421020", - "38620321269729956071388375" + "38333342020502419390336967", + "28488264891675252421640142", + "39523143345262616205792328" ], "fpReserves": [ - "9542561286805142185239032", - "3077217031304152596776411" + "7305108394673041679728428", + "5740940910238547807344967" ], - "mAssetSupply": "108565364623888485785014632", - "LPTokenSupply": "12550763268456748192989501" + "mAssetSupply": "106335371468073440803064491", + "LPTokenSupply": "12937984761907920225718296" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "279102750586326591995904", - "outputQty0": "281299955423378103326162", - "outputQty": "281227323055764876725223", - "swapFee1": "167461650351795955197", - "swapFee2": "112519982169351241330", + "inputQty": "51580484596139468783616", + "outputQty0": "52016936092541550828241", + "outputQty": "52023497985793448862052", + "swapFee1": "30948290757683681270", + "swapFee2": "31210161655524930496", "mpReserves": [ - "37473597543928663689033109", - "32191385706401846230421020", - "38620321269729956071388375" + "38281318522516625941474915", + "28488264891675252421640142", + "39523143345262616205792328" ], "fpReserves": [ - "9261261331381764081912870", - "3077217031304152596776411" + "7253091458580500128900187", + "5740940910238547807344967" ], - "mAssetSupply": "108284177188447277032929800", - "LPTokenSupply": "12271677264035456780589116" + "mAssetSupply": "106283385742142554777166746", + "LPTokenSupply": "12886407372140856525302807" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "714811558444197216256", - "outputQty0": "715094760426661465793", - "outputQty": "709129938116406723415", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "652547755372792699158528", + "outputQty0": "651886632547338887211179", + "outputQty": "649840286694037356834468", + "swapFee": "516757246749748312486", "mpReserves": [ - "37473597543928663689033109", - "32192100517960290427637276", - "38620321269729956071388375" + "38281318522516625941474915", + "28488264891675252421640142", + "40175691100635408904950856" ], "fpReserves": [ - "9261976426142190743378663", - "3077217031304152596776411" + "7904978091127839016111366", + "5091100623544510450510499" ], - "mAssetSupply": "108284892283207703694395593", - "LPTokenSupply": "12272386393973573187312531" + "mAssetSupply": "106935272374689893664377925", + "LPTokenSupply": "12886459047865531500134055" }, { "type": "swap_fp_to_mp", - "inputQty": "9709425405789275684864", - "outputIndex": 2, - "outputQty": "9822254847096095681966", + "inputQty": "78436202082006835658752", + "outputIndex": 1, + "outputQty": "78466703785387984772461", "swapFee": "0", - "redemptionFee": "3929572591481608788", + "redemptionFee": "47205480972678907817", "mpReserves": [ - "37473597543928663689033109", - "32192100517960290427637276", - "38610499014882859975706409" + "38281318522516625941474915", + "28409798187889864436867681", + "40175691100635408904950856" ], "fpReserves": [ - "9252152494663486721407317", - "3086926456709941872461275" + "7826302289506707503081435", + "5169536825626517286169251" ], - "mAssetSupply": "108275072281301591154033035", - "LPTokenSupply": "12272386393973573187312531" + "mAssetSupply": "106856643778549734830255811", + "LPTokenSupply": "12886459047865531500134055" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "31694419134359638016", - "outputQty0": "31690171799058743088", - "outputQty": "31426506719483442421", + "type": "redeem", + "outputIndex": 2, + "inputQty": "15307695383905890304", + "outputQty0": "15446476467403008960", + "outputQty": "15453641993151002831", + "swapFee1": "9184617230343534", + "swapFee2": "9267885880441805", "mpReserves": [ - "37473629238347798048671125", - "32192100517960290427637276", - "38610499014882859975706409" + "38281318522516625941474915", + "28409798187889864436867681", + "40175675646993415753948025" ], "fpReserves": [ - "9252184184835285780150405", - "3086926456709941872461275" + "7826286843030240100072475", + "5169536825626517286169251" ], - "mAssetSupply": "108275103971473390212776123", - "LPTokenSupply": "12272417820480292670754952" + "mAssetSupply": "106856628341341153307688656", + "LPTokenSupply": "12886443741088609317278104" }, { "type": "mint", "inputIndex": 2, - "inputQty": "8510711263858758656", - "outputQty0": "8508761442175355471", - "outputQty": "8437967687866336765", + "inputQty": "23965968475326741741568", + "outputQty0": "23940445824859433080519", + "outputQty": "23710997322433933740585", "mpReserves": [ - "37473629238347798048671125", - "32192100517960290427637276", - "38610507525594123834465065" + "38281318522516625941474915", + "28409798187889864436867681", + "40199641615468742495689593" ], "fpReserves": [ - "9252192693596727955505876", - "3086926456709941872461275" + "7850227288855099533152994", + "5169536825626517286169251" ], - "mAssetSupply": "108275112480234832388131594", - "LPTokenSupply": "12272426258447980537091717" + "mAssetSupply": "106880568787166012740769175", + "LPTokenSupply": "12910154738411043251018689" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "192196455766225088", - "outputQty0": "192272533976755025", - "outputQty": "190672806621799827", + "inputIndex": 2, + "inputQty": "383891436936625186144256", + "outputQty0": "383472495145488908969652", + "outputQty": "379765710427009248827246", "mpReserves": [ - "37473629238347798048671125", - "32192100710156746193862364", - "38610507525594123834465065" + "38281318522516625941474915", + "28409798187889864436867681", + "40583533052405367681833849" ], "fpReserves": [ - "9252192885869261932260901", - "3086926456709941872461275" + "8233699784000588442122646", + "5169536825626517286169251" ], - "mAssetSupply": "108275112672507366364886619", - "LPTokenSupply": "12272426449120787158891544" + "mAssetSupply": "107264041282311501649738827", + "LPTokenSupply": "13289920448838052499845935" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "55427816188562915328", - "outputQty0": "55859313910863321316", - "outputQty": "55814876543263979744", - "swapFee1": "33256689713137749", - "swapFee2": "22343725564345328", + "type": "swap_fp_to_mp", + "inputQty": "41333886661524720", + "outputIndex": 0, + "outputQty": "41475938007131902", + "swapFee": "0", + "redemptionFee": "24884001189739", "mpReserves": [ - "37473629238347798048671125", - "32192044895280202929882620", - "38610507525594123834465065" + "38281318481040687934343013", + "28409798187889864436867681", + "40583533052405367681833849" ], "fpReserves": [ - "9252137026555351068939585", - "3086926456709941872461275" + "8233699742527253125890396", + "5169536866960403947693971" ], - "mAssetSupply": "108275056835537181065910631", - "LPTokenSupply": "12272371024630267567289990" + "mAssetSupply": "107264041240863050334696316", + "LPTokenSupply": "13289920448838052499845935" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "105322459519820574490624", - "outputQty0": "105308025958404373379034", - "outputQty": "103952683277139205044309", - "swapFee": "83543051494983332206", + "type": "mint", + "inputIndex": 2, + "inputQty": "2030968129613229056", + "outputQty0": "2028701552153409272", + "outputQty": "2008936058033918461", "mpReserves": [ - "37578951697867618623161749", - "32192044895280202929882620", - "38610507525594123834465065" + "38281318481040687934343013", + "28409798187889864436867681", + "40583535083373497295062905" ], "fpReserves": [ - "9357445052513755442318619", - "2982973773432802667416966" + "8233701771228805279299668", + "5169536866960403947693971" ], - "mAssetSupply": "108380364861495585439289665", - "LPTokenSupply": "12272379378935417065623210" + "mAssetSupply": "107264043269564602488105588", + "LPTokenSupply": "13289922457774110533764396" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "11198762371109030461440", - "outputQty0": "11288662944923688750799", - "outputQty": "11279637107113034879643", - "swapFee1": "6719257422665418276", - "swapFee2": "4515465177969475500", + "type": "mint", + "inputIndex": 0, + "inputQty": "56182751797146492928", + "outputQty0": "56145518476669090730", + "outputQty": "55598496060172641011", "mpReserves": [ - "37578951697867618623161749", - "32180765258173089895002977", - "38610507525594123834465065" + "38281374663792485080835941", + "28409798187889864436867681", + "40583535083373497295062905" ], "fpReserves": [ - "9346156389568831753567820", - "2982973773432802667416966" + "8233757916747281948390398", + "5169536866960403947693971" ], - "mAssetSupply": "108369080714015839720014366", - "LPTokenSupply": "12261181288490050301703597" + "mAssetSupply": "107264099415083079157196318", + "LPTokenSupply": "13289978056270170706405407" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "25291367082493693952", - "outputQty0": "25301491664790069200", - "outputQty": "24964340151871328876", - "swapFee": "20068003150118823", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1238781017279475200", + "outputQty0": "1250218566692186380", + "outputQty": "1250864406339466171", + "swapFee1": "743268610367685", + "swapFee2": "750131140015311", "mpReserves": [ - "37578951697867618623161749", - "32180790549540172388696929", - "38610507525594123834465065" + "38281374663792485080835941", + "28409798187889864436867681", + "40583533832509090955596734" ], "fpReserves": [ - "9346181691060496543637020", - "2982948809092650796088090" + "8233756666528715256204018", + "5169536866960403947693971" ], - "mAssetSupply": "108369106015507504510083566", - "LPTokenSupply": "12261181290496850616715479" + "mAssetSupply": "107264098165614643605025249", + "LPTokenSupply": "13289976817563480287966975" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "26207731335607688888320", - "outputQty0": "26204030768430593816956", - "outputQty": "25851590015568559806647", - "swapFee": "20783700266077804261", + "type": "mint", + "inputIndex": 1, + "inputQty": "36646162728413464", + "outputQty0": "36723625617439816", + "outputQty": "36365829145699768", "mpReserves": [ - "37605159429203226312050069", - "32180790549540172388696929", - "38610507525594123834465065" + "38281374663792485080835941", + "28409798224536027165281145", + "40583533832509090955596734" ], "fpReserves": [ - "9372385721828927137453976", - "2957097219077082236281443" + "8233756703252340873643834", + "5169536866960403947693971" ], - "mAssetSupply": "108395310046275935103900522", - "LPTokenSupply": "12261183368866877224495905" + "mAssetSupply": "107264098202338269222465065", + "LPTokenSupply": "13289976853929309433666743" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "5297486128409591808", - "outputQty0": "5296734135332692791", - "outputQty": "5224829617301093156", - "swapFee": "4200865546396597", + "type": "mint", + "inputIndex": 1, + "inputQty": "353852194523760694394880", + "outputQty0": "354583204578701327199413", + "outputQty": "351103865390778806685663", "mpReserves": [ - "37605164726689354721641877", - "32180790549540172388696929", - "38610507525594123834465065" + "38281374663792485080835941", + "28763650419059787859676025", + "40583533832509090955596734" ], "fpReserves": [ - "9372391018563062470146767", - "2957091994247464935188287" + "8588339907831042200843247", + "5169536866960403947693971" ], - "mAssetSupply": "108395315343010070436593313", - "LPTokenSupply": "12261183369286963779135564" + "mAssetSupply": "107618681406916970549664478", + "LPTokenSupply": "13641080719320088240352406" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "22733393176374235136", - "outputQty0": "22742513957243464690", - "outputQty": "22546497325974996563", + "type": "redeem", + "outputIndex": 2, + "inputQty": "31457396129018247380992", + "outputQty0": "31752083386349677459695", + "outputQty": "31767327163837623536992", + "swapFee1": "18874437677410948428", + "swapFee2": "19051250031809806475", "mpReserves": [ - "37605164726689354721641877", - "32180813282933348762932065", - "38610507525594123834465065" + "38281374663792485080835941", + "28763650419059787859676025", + "40551766505345253332059742" ], "fpReserves": [ - "9372413761077019713611457", - "2957091994247464935188287" + "8556587824444692523383552", + "5169536866960403947693971" ], - "mAssetSupply": "108395338085524027680058003", - "LPTokenSupply": "12261205915784289754132127" + "mAssetSupply": "107586948374780652682011258", + "LPTokenSupply": "13609625210634837734066256" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1052453392904637999218688", - "outputQty0": "1052832382446472564557049", - "outputQty": "1043443826275627443218013", + "type": "redeem", + "outputIndex": 2, + "inputQty": "61468273822071341056", + "outputQty0": "62043789793920835094", + "outputQty": "62073449463546842113", + "swapFee1": "36880964293242804", + "swapFee2": "37226273876352501", "mpReserves": [ - "37605164726689354721641877", - "33233266675837986762150753", - "38610507525594123834465065" + "38281374663792485080835941", + "28763650419059787859676025", + "40551704431895789785217629" ], "fpReserves": [ - "10425246143523492278168506", - "2957091994247464935188287" + "8556525780654898602548458", + "5169536866960403947693971" ], - "mAssetSupply": "109448170467970500244615052", - "LPTokenSupply": "13304649742059917197350140" + "mAssetSupply": "107586886368217132637528665", + "LPTokenSupply": "13609563746049112092049480" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "132092382425796101275648", - "outputQty0": "132066643369653400025681", - "outputQty": "129835712437849212472236", - "swapFee": "104675802701974503924", + "type": "mint", + "inputIndex": 0, + "inputQty": "12189157966320947429376", + "outputQty0": "12181468912596169574651", + "outputQty": "12061204387307941181396", "mpReserves": [ - "37605164726689354721641877", - "33233266675837986762150753", - "38742599908019919935740713" + "38293563821758806028265317", + "28763650419059787859676025", + "40551704431895789785217629" ], "fpReserves": [ - "10557312786893145678194187", - "2827256281809615722716051" + "8568707249567494772123109", + "5169536866960403947693971" ], - "mAssetSupply": "109580237111340153644640733", - "LPTokenSupply": "13304660209640187394800532" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "405158097895959604232192", - "hardLimitError": true + "mAssetSupply": "107599067837129728807103316", + "LPTokenSupply": "13621624950436420033230876" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "118042846601570140160", - "outputQty0": "118019418089588624979", - "outputQty": "116890135972333433536", + "inputIndex": 1, + "inputQty": "628592558252108265029632", + "outputQty0": "629808512887782929267893", + "outputQty": "623513405306687694977144", "mpReserves": [ - "37605164726689354721641877", - "33233266675837986762150753", - "38742717950866521505880873" + "38293563821758806028265317", + "29392242977311896124705657", + "40551704431895789785217629" ], "fpReserves": [ - "10557430806311235266819166", - "2827256281809615722716051" + "9198515762455277701391002", + "5169536866960403947693971" ], - "mAssetSupply": "109580355130758243233265712", - "LPTokenSupply": "13304777099776159728234068" + "mAssetSupply": "108228876350017511736371209", + "LPTokenSupply": "14245138355743107728208020" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "24376615750404505600", - "outputQty0": "24371777515411082204", - "outputQty": "23940500782980784480", - "swapFee": "19310857915957507", + "inputQty": "5464145560981331771392", + "outputQty0": "5458586114698192046600", + "outputQty": "5430400560347958903544", + "swapFee": "4322697832807169936", "mpReserves": [ - "37605164726689354721641877", - "33233266675837986762150753", - "38742742327482271910386473" + "38293563821758806028265317", + "29392242977311896124705657", + "40557168577456771116989021" ], "fpReserves": [ - "10557455178088750677901370", - "2827232341308832741931571" + "9203974348569975893437602", + "5164106466400055988790427" ], - "mAssetSupply": "109580379502535758644347916", - "LPTokenSupply": "13304777101707245519829818" + "mAssetSupply": "108234334936132209928417809", + "LPTokenSupply": "14245138788012891008925013" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "280010133321556214939648", - "outputQty0": "279979008364351771755212", - "outputQty": "277276997639430315119841", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "101775985833658644692992", + "outputQty0": "101963393036092004817895", + "outputQty": "101420878762764334235964", + "swapFee": "80743675435669965696", "mpReserves": [ - "37885174860010910936581525", - "33233266675837986762150753", - "38742742327482271910386473" + "38293563821758806028265317", + "29494018963145554769398649", + "40557168577456771116989021" ], "fpReserves": [ - "10837434186453102449656582", - "2827232341308832741931571" + "9305937741606067898255497", + "5062685587637291654554463" ], - "mAssetSupply": "109860358510900110416103128", - "LPTokenSupply": "13582054099346675834949659" + "mAssetSupply": "108336298329168301933235704", + "LPTokenSupply": "14245146862380434575921582" }, { "type": "swap_fp_to_mp", - "inputQty": "28736784665205660450816", + "inputQty": "450353876117952529432576", "outputIndex": 2, - "outputQty": "29242086259919334875430", + "outputQty": "452350134685380026481382", "swapFee": "0", - "redemptionFee": "11699292635450696527", + "redemptionFee": "271307096187577618195", "mpReserves": [ - "37885174860010910936581525", - "33233266675837986762150753", - "38713500241222352575511043" + "38293563821758806028265317", + "29494018963145554769398649", + "40104818442771391090507639" ], "fpReserves": [ - "10808185954864475708337094", - "2855969125974038402382387" + "8853759247960105201262189", + "5513039463755244183987039" ], - "mAssetSupply": "109831121978604119125480167", - "LPTokenSupply": "13582054099346675834949659" + "mAssetSupply": "107884391142618526813860591", + "LPTokenSupply": "14245146862380434575921582" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2275938344634226049024", - "outputQty0": "2275665135102882763407", - "outputQty": "2253699048934608996461", - "mpReserves": [ - "37887450798355545162630549", - "33233266675837986762150753", - "38713500241222352575511043" - ], - "fpReserves": [ - "10810461619999578591100501", - "2855969125974038402382387" - ], - "mAssetSupply": "109833397643739222008243574", - "LPTokenSupply": "13584307798395610443946120" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "35214202043978320183296", - "outputIndex": 2, - "outputQty": "35818386534679012558727", - "swapFee": "0", - "redemptionFee": "14330392022578140914", + "inputIndex": 2, + "inputQty": "333197319922272933249024", + "outputQty0": "332873603486188566644928", + "outputQty": "329598978489090519874101", "mpReserves": [ - "37887450798355545162630549", - "33233266675837986762150753", - "38677681854687673562952316" + "38293563821758806028265317", + "29494018963145554769398649", + "40438015762693664023756663" ], "fpReserves": [ - "10774635639943133238814303", - "2891183328018016722565683" + "9186632851446293767907117", + "5513039463755244183987039" ], - "mAssetSupply": "109797585994074799234098290", - "LPTokenSupply": "13584307798395610443946120" + "mAssetSupply": "108217264746104715380505519", + "LPTokenSupply": "14574745840869525095795683" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "36834485018931895468032", - "outputQty0": "36846638657572592472111", - "outputQty": "36494131331382119974448", + "type": "redeem", + "outputIndex": 1, + "inputQty": "244261844688860981755904", + "outputQty0": "246544546716930285883283", + "outputQty": "245942008627611184957286", + "swapFee1": "146557106813316589053", + "swapFee2": "147926728030158171529", "mpReserves": [ - "37887450798355545162630549", - "33270101160856918657618785", - "38677681854687673562952316" + "38293563821758806028265317", + "29248076954517943584441363", + "40438015762693664023756663" ], "fpReserves": [ - "10811482278600705831286414", - "2891183328018016722565683" + "8940088304729363482023834", + "5513039463755244183987039" ], - "mAssetSupply": "109834432632732371826570401", - "LPTokenSupply": "13620801929726992563920568" + "mAssetSupply": "107970868126115815252793765", + "LPTokenSupply": "14330498651891345445698684" }, { "type": "swap_fp_to_mp", - "inputQty": "1741218781015558848512", - "outputIndex": 2, - "outputQty": "1770841966937361357278", + "inputQty": "604894126867813268193280", + "outputIndex": 1, + "outputQty": "605043783221516543716425", "swapFee": "0", - "redemptionFee": "708488530658875919", + "redemptionFee": "363955449421648399237", "mpReserves": [ - "37887450798355545162630549", - "33270101160856918657618785", - "38675911012720736201595038" + "38293563821758806028265317", + "28643033171296427040724938", + "40438015762693664023756663" ], "fpReserves": [ - "10809711057274058641487254", - "2892924546799032281414195" + "8333495889026616149961260", + "6117933590623057452180319" ], - "mAssetSupply": "109832662119894255295647160", - "LPTokenSupply": "13620801929726992563920568" + "mAssetSupply": "107364639665862489569130428", + "LPTokenSupply": "14330498651891345445698684" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "28858311989722569768960", - "outputQty0": "28867761153140382400230", - "outputQty": "28351169302493072826219", - "swapFee": "22872944010971183371", + "inputIndex": 2, + "inputQty": "723630056080956352102400", + "outputQty0": "722819551878333565871600", + "outputQty": "720118911192927422928132", + "swapFee": "572823494286940778978", "mpReserves": [ - "37887450798355545162630549", - "33298959472846641227387745", - "38675911012720736201595038" + "38293563821758806028265317", + "28643033171296427040724938", + "41161645818774620375859063" ], "fpReserves": [ - "10838578818427199023887484", - "2864573377496539208587976" + "9056315440904949715832860", + "5397814679430130029252187" ], - "mAssetSupply": "109861529881047395678047390", - "LPTokenSupply": "13620804217021393661038905" + "mAssetSupply": "108087459217740823135002028", + "LPTokenSupply": "14330555934240774139776581" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "406452326236077031424", - "outputQty0": "406403957141588626567", - "outputQty": "399056133657446824976", - "swapFee": "321984979271786685", + "inputIndex": 2, + "inputQty": "387176833572686", + "outputQty0": "386725385963712", + "outputQty": "384941677366569", + "swapFee": "306297196773", "mpReserves": [ - "37887857250681781239661973", - "33298959472846641227387745", - "38675911012720736201595038" + "38293563821758806028265317", + "28643033171296427040724938", + "41161645819161797209431749" ], "fpReserves": [ - "10838985222384340612514051", - "2864174321362881761763000" + "9056315441291675101796572", + "5397814679045188351885618" ], - "mAssetSupply": "109861936285004537266673957", - "LPTokenSupply": "13620804249219891588217573" + "mAssetSupply": "108087459218127548520965740", + "LPTokenSupply": "14330555934240804769496258" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5443315926036897595392", - "outputQty0": "5442667246985625217238", - "outputQty": "5390118915261835257797", + "inputIndex": 1, + "inputQty": "1594619043220217659392", + "outputQty0": "1597980004547407606364", + "outputQty": "1582054955616722827508", "mpReserves": [ - "37893300566607818137257365", - "33298959472846641227387745", - "38675911012720736201595038" + "38293563821758806028265317", + "28644627790339647258384330", + "41161645819161797209431749" ], "fpReserves": [ - "10844427889631326237731289", - "2864174321362881761763000" + "9057913421296222509402936", + "5397814679045188351885618" ], - "mAssetSupply": "109867378952251522891891195", - "LPTokenSupply": "13626194368135153423475370" + "mAssetSupply": "108089057198132095928572104", + "LPTokenSupply": "14332137989196421492323766" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2074504626120501231616", - "outputQty0": "2074121313206177078897", - "outputQty": "2036557578968482704386", - "swapFee": "1643273120178461595", + "type": "redeem", + "outputIndex": 2, + "inputQty": "39067638175020659769344", + "outputQty0": "39436941256233217740251", + "outputQty": "39459184078516567633458", + "swapFee1": "23440582905012395861", + "swapFee2": "23662164753739930644", "mpReserves": [ - "37893300566607818137257365", - "33298959472846641227387745", - "38677985517346856702826654" + "38293563821758806028265317", + "28644627790339647258384330", + "41122186635083280641798291" ], "fpReserves": [ - "10846502010944532414810186", - "2862137763783913279058614" + "9018476480039989291662685", + "5397814679045188351885618" ], - "mAssetSupply": "109869453073564729068970092", - "LPTokenSupply": "13626194532462465441321529" + "mAssetSupply": "108049643919040616450762497", + "LPTokenSupply": "14293072695079691333794008" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "234689520200612661166080", - "hardLimitError": true + "type": "swap_fp_to_mp", + "inputQty": "68033219278453888", + "outputIndex": 2, + "outputQty": "68329570099946769", + "swapFee": "0", + "redemptionFee": "40974734141291", + "mpReserves": [ + "38293563821758806028265317", + "28644627790339647258384330", + "41122186566753710541851522" + ], + "fpReserves": [ + "9018476411748765722842852", + "5397814747078407630339506" + ], + "mAssetSupply": "108049643850790367616083955", + "LPTokenSupply": "14293072695079691333794008" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "68118293321044530823168", - "outputQty0": "68140368156484454128127", - "outputQty": "66875020739776645328934", - "swapFee": "53984509609268968178", + "inputQty": "22226320648622103855104", + "outputQty0": "22273009895926166619145", + "outputQty": "22051235786007330180487", "mpReserves": [ - "37893300566607818137257365", - "33367077766167685758210913", - "38677985517346856702826654" + "38293563821758806028265317", + "28666854110988269362239434", + "41122186566753710541851522" ], "fpReserves": [ - "10914642379101016868938313", - "2795262743044136633729680" + "9040749421644691889461997", + "5397814747078407630339506" ], - "mAssetSupply": "109937593441721213523098219", - "LPTokenSupply": "13626199930913426368218346" + "mAssetSupply": "108071916860686293782703100", + "LPTokenSupply": "14315123930865698663974495" }, { - "type": "swap_fp_to_mp", - "inputQty": "136007815690353134010368", - "outputIndex": 2, - "outputQty": "138376276555440561569042", - "swapFee": "0", - "redemptionFee": "55362757785449323124", + "type": "mint", + "inputIndex": 0, + "inputQty": "21065644734701813760", + "outputQty0": "21052897932967370429", + "outputQty": "20843186170212171428", "mpReserves": [ - "37893300566607818137257365", - "33367077766167685758210913", - "38539609240791416141257612" + "38293584887403540730079077", + "28666854110988269362239434", + "41122186566753710541851522" ], "fpReserves": [ - "10776235484637393561127024", - "2931270558734489767740048" + "9040770474542624856832426", + "5397814747078407630339506" ], - "mAssetSupply": "109799241910015375664610054", - "LPTokenSupply": "13626199930913426368218346" + "mAssetSupply": "108071937913584226750073529", + "LPTokenSupply": "14315144774051868876145923" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "613422197950212244242432", - "outputQty0": "613337427915455665377426", - "outputQty": "607417959113575643931352", + "type": "redeem", + "outputIndex": 0, + "inputQty": "298843924927909003264", + "outputQty0": "301669588886942540137", + "outputQty": "301671122068108258689", + "swapFee1": "179306354956745401", + "swapFee2": "181001753332165524", "mpReserves": [ - "38506722764558030381499797", - "33367077766167685758210913", - "38539609240791416141257612" + "38293283216281472621820388", + "28666854110988269362239434", + "41122186566753710541851522" ], "fpReserves": [ - "11389572912552849226504450", - "2931270558734489767740048" + "9040468804953737914292289", + "5397814747078407630339506" ], - "mAssetSupply": "110412579337930831329987480", - "LPTokenSupply": "14233617890027002012149698" + "mAssetSupply": "108071636424997093139698916", + "LPTokenSupply": "14314845948057576462817199" }, { "type": "swap_fp_to_mp", - "inputQty": "19138207322808726323200", - "outputIndex": 0, - "outputQty": "19483495452878384150434", + "inputQty": "75951900133670200016896", + "outputIndex": 1, + "outputQty": "76027981489478740353840", "swapFee": "0", - "redemptionFee": "7795309621561858790", + "redemptionFee": "45740388689202215774", "mpReserves": [ - "38487239269105151997349363", - "33367077766167685758210913", - "38539609240791416141257612" + "38293283216281472621820388", + "28590826129498790621885594", + "41122186566753710541851522" ], "fpReserves": [ - "11370084638498944579527720", - "2950408766057298494063248" + "8964234823805067554668431", + "5473766647212077830356402" ], - "mAssetSupply": "110393098859186548244869540", - "LPTokenSupply": "14233617890027002012149698" + "mAssetSupply": "107995448184237111982290832", + "LPTokenSupply": "14314845948057576462817199" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "163470540880696606720", - "outputQty0": "163525531447389684386", - "outputQty": "160479888431790999692", - "swapFee": "129542063888091923", + "inputQty": "1181495903861226496", + "outputQty0": "1183998578969205744", + "outputQty": "1172292618298206920", "mpReserves": [ - "38487239269105151997349363", - "33367241236708566454817633", - "38539609240791416141257612" + "38293283216281472621820388", + "28590827310994694483112090", + "41122186566753710541851522" ], "fpReserves": [ - "11370248164030391969212106", - "2950248286168866703063556" + "8964236007803646523874175", + "5473766647212077830356402" ], - "mAssetSupply": "110393262384717995634553926", - "LPTokenSupply": "14233617902981208400958890" + "mAssetSupply": "107995449368235690951496576", + "LPTokenSupply": "14314847120350194761024119" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "2400016691828875264", - "outputQty0": "2422247559133381758", - "outputQty": "2421652289458118748", - "swapFee1": "1440010015097325", - "swapFee2": "968899023653352", + "type": "swap_fp_to_mp", + "inputQty": "36931291047018339762176", + "outputIndex": 1, + "outputQty": "36962309177230423335616", + "swapFee": "0", + "redemptionFee": "22237816600670992498", "mpReserves": [ - "38487236847452862539230615", - "33367241236708566454817633", - "38539609240791416141257612" + "38293283216281472621820388", + "28553865001817464059776474", + "41122186566753710541851522" ], "fpReserves": [ - "11370245741782832835830348", - "2950248286168866703063556" + "8927172980135861536376751", + "5510697938259096170118578" ], - "mAssetSupply": "110393259963439335524825520", - "LPTokenSupply": "14233615503108517573593358" + "mAssetSupply": "107958408578384506634991650", + "LPTokenSupply": "14314847120350194761024119" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "7494446785925252907008", - "outputQty0": "7493256365878292904169", - "outputQty": "7353329740025444770730", - "swapFee": "5936011553534386452", + "inputQty": "68207943474546741346304", + "outputQty0": "68127865672758163225733", + "outputQty": "67828699703812682317636", + "swapFee": "53964704580256265833", "mpReserves": [ - "38487236847452862539230615", - "33367241236708566454817633", - "38547103687577341394164620" + "38293283216281472621820388", + "28553865001817464059776474", + "41190394510228257283197826" ], "fpReserves": [ - "11377738998148711128734517", - "2942894956428841258292826" + "8995300845808619699602484", + "5442869238555283487800942" ], - "mAssetSupply": "110400753219805213817729689", - "LPTokenSupply": "14233616096709672927032003" + "mAssetSupply": "108026536444057264798217383", + "LPTokenSupply": "14314852516820652786650702" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "4013001216589437599744", - "outputQty0": "4012382439831941444068", - "outputQty": "3973085499250926682743", + "inputQty": "498228335782592700743680", + "outputQty0": "497906033884737460893834", + "outputQty": "495332458334417071736811", + "swapFee": "394337237499674208369", "mpReserves": [ - "38491249848669451976830359", - "33367241236708566454817633", - "38547103687577341394164620" + "38791511552064065322564068", + "28553865001817464059776474", + "41190394510228257283197826" ], "fpReserves": [ - "11381751380588543070178585", - "2942894956428841258292826" + "9493206879693357160496318", + "4947536780220866416064131" ], - "mAssetSupply": "110404765602245045759173757", - "LPTokenSupply": "14237589182208923853714746" + "mAssetSupply": "108524442477942002259111217", + "LPTokenSupply": "14314891950544402754071538" }, { - "type": "swap_fp_to_mp", - "inputQty": "714497045095143309312", - "outputIndex": 0, - "outputQty": "727371923686781503824", - "swapFee": "0", - "redemptionFee": "291020288736776762", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "116049641400698526498816", + "outputQty0": "115915659268598661220819", + "outputQty": "115208652186600850799178", + "swapFee": "91760729854893479401", "mpReserves": [ - "38490522476745765195326535", - "33367241236708566454817633", - "38547103687577341394164620" + "38791511552064065322564068", + "28553865001817464059776474", + "41306444151628955809696642" ], "fpReserves": [ - "11381023829866701128273341", - "2943609453473936401602138" + "9609122538961955821717137", + "4832328128034265565264953" ], - "mAssetSupply": "110404038342543492554045275", - "LPTokenSupply": "14237589182208923853714746" + "mAssetSupply": "108640358137210600920332036", + "LPTokenSupply": "14314901126617388243419478" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "3140968734658767892774912", - "outputQty0": "3167259556751287651447905", - "outputQty": "3166205569993037776527614", - "swapFee1": "1884581240795260735664", - "swapFee2": "1266903822700515060579", + "type": "mint", + "inputIndex": 2, + "inputQty": "1858911175899189084160", + "outputQty0": "1856751190913585697612", + "outputQty": "1837082353561843422090", "mpReserves": [ - "38490522476745765195326535", - "33367241236708566454817633", - "35380898117584303617637006" + "38791511552064065322564068", + "28553865001817464059776474", + "41308303062804854998780802" ], "fpReserves": [ - "8213764273115413476825436", - "2943609453473936401602138" + "9610979290152869407414749", + "4832328128034265565264953" ], - "mAssetSupply": "107238045689614905417657949", - "LPTokenSupply": "11096808905674235487013400" + "mAssetSupply": "108642214888401514506029648", + "LPTokenSupply": "14316738208970950086841568" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "1111797178032720576512", - "outputQty0": "1120249019437271634667", - "outputQty": "1120073998289507097379", - "swapFee1": "667078306819632345", - "swapFee2": "448099607774908653", + "outputIndex": 1, + "inputQty": "26309809723828640677888", + "outputQty0": "26575415801425247631391", + "outputQty": "26501182728717286975253", + "swapFee1": "15785885834297184406", + "swapFee2": "15945249480855148578", "mpReserves": [ - "38489402402747475688229156", - "33367241236708566454817633", - "35380898117584303617637006" + "38791511552064065322564068", + "28527363819088746772801221", + "41308303062804854998780802" ], "fpReserves": [ - "8212644024095976205190769", - "2943609453473936401602138" + "9584403874351444159783358", + "4832328128034265565264953" ], - "mAssetSupply": "107236925888695075920931935", - "LPTokenSupply": "11095697175204033448400122" + "mAssetSupply": "108615655417849570113546835", + "LPTokenSupply": "14290429977835704875882120" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "213446619143676297740288", - "outputQty0": "215055613819767182153590", - "outputQty": "214917993176502031248493", - "swapFee1": "128067971486205778644", - "swapFee2": "86022245527906872861", + "type": "mint", + "inputIndex": 1, + "inputQty": "250829695464507473920", + "outputQty0": "251382291762377274288", + "outputQty": "248721563052662001524", "mpReserves": [ - "38489402402747475688229156", - "33152323243532064423569140", - "35380898117584303617637006" + "38791511552064065322564068", + "28527614648784211280275141", + "41308303062804854998780802" ], "fpReserves": [ - "7997588410276209023037179", - "2943609453473936401602138" + "9584655256643206537057646", + "4832328128034265565264953" ], - "mAssetSupply": "107021956297120836645651206", - "LPTokenSupply": "10882263362857505771237698" + "mAssetSupply": "108615906800141332490821123", + "LPTokenSupply": "14290678699398757537883644" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "162490829946965639299072", - "outputQty0": "162449395929859666880087", - "outputQty": "160620298807733442706155", - "swapFee": "128910421809224750424", + "inputQty": "35411740875643756216320", + "outputQty0": "35387681724629586028100", + "outputQty": "35163865676296534735118", + "swapFee": "28010307206097971737", "mpReserves": [ - "38651893232694441327528228", - "33152323243532064423569140", - "35380898117584303617637006" + "38826923292939709078780388", + "28527614648784211280275141", + "41308303062804854998780802" ], "fpReserves": [ - "8160037806206068689917266", - "2782989154666202958895983" + "9620042938367836123085746", + "4797164262357969030529835" ], - "mAssetSupply": "107184405693050696312531293", - "LPTokenSupply": "10882276253899686693712740" + "mAssetSupply": "108651294481865962076849223", + "LPTokenSupply": "14290681500429478147680817" }, { - "type": "swap_fp_to_mp", - "inputQty": "643350866901185069056", - "outputIndex": 2, - "outputQty": "650346187726759609446", - "swapFee": "0", - "redemptionFee": "260249397683188613", + "type": "mint", + "inputIndex": 1, + "inputQty": "28485826154148822777856", + "outputQty0": "28548569192454792231276", + "outputQty": "28245040730502601377598", "mpReserves": [ - "38651893232694441327528228", - "33152323243532064423569140", - "35380247771396576858027560" + "38826923292939709078780388", + "28556100474938360103052997", + "41308303062804854998780802" ], "fpReserves": [ - "8159387182711860718384146", - "2783632505533104143965039" + "9648591507560290915317022", + "4797164262357969030529835" ], - "mAssetSupply": "107183755329805886024186786", - "LPTokenSupply": "10882276253899686693712740" + "mAssetSupply": "108679843051058416869080499", + "LPTokenSupply": "14318926541159980749058415" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1467857154493707714560", - "outputQty0": "1467476324406118019171", - "outputQty": "1455146693010024976697", + "inputQty": "48531203701577531392", + "outputQty0": "48498248488310503360", + "outputQty": "47982349513644821737", "mpReserves": [ - "38653361089848935035242788", - "33152323243532064423569140", - "35380247771396576858027560" + "38826971824143410656311780", + "28556100474938360103052997", + "41308303062804854998780802" ], "fpReserves": [ - "8160854659036266836403317", - "2783632505533104143965039" + "9648640005808779225820382", + "4797164262357969030529835" ], - "mAssetSupply": "107185222806130292142205957", - "LPTokenSupply": "10883731400592696718689437" + "mAssetSupply": "108679891549306905179583859", + "LPTokenSupply": "14318974523509494393880152" }, { - "type": "swap_fp_to_mp", - "inputQty": "33983456990994599247872", - "outputIndex": 0, - "outputQty": "34357310968285343067719", - "swapFee": "0", - "redemptionFee": "13744868990328490977", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "406855318631254720", + "outputQty0": "406579041312431775", + "outputQty": "403969508869625000", + "swapFee": "321803250034597", "mpReserves": [ - "38619003778880649692175069", - "33152323243532064423569140", - "35380247771396576858027560" + "38826972230998729287566500", + "28556100474938360103052997", + "41308303062804854998780802" ], "fpReserves": [ - "8126492486560445608958499", - "2817615962524098743212911" + "9648640412387820538252157", + "4797163858388460160904835" ], - "mAssetSupply": "107150874378523461243252116", - "LPTokenSupply": "10883731400592696718689437" + "mAssetSupply": "108679891955885946492015634", + "LPTokenSupply": "14318974523541674718883611" }, { - "type": "swap_fp_to_mp", - "inputQty": "546290099112322499870720", - "outputIndex": 2, - "outputQty": "550879214522552689623180", - "swapFee": "0", - "redemptionFee": "220449331271651368532", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "86335516691740368", + "outputQty0": "86276890086211397", + "outputQty": "85723141981295214", + "swapFee": "68287296686676", "mpReserves": [ - "38619003778880649692175069", - "33152323243532064423569140", - "34829368556874024168404380" + "38826972317334245979306868", + "28556100474938360103052997", + "41308303062804854998780802" ], "fpReserves": [ - "7575369158381317187626844", - "3363906061636421243083631" + "9648640498664710624463554", + "4797163772665318179609621" ], - "mAssetSupply": "106599971499675604473288993", - "LPTokenSupply": "10883731400592696718689437" + "mAssetSupply": "108679892042162836578227031", + "LPTokenSupply": "14318974523548503448552278" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "49539785810483190169600", - "outputQty0": "49869659863642636670440", - "outputQty": "49846600759133323265940", - "swapFee1": "29723871486289914101", - "swapFee2": "19947863945457054668", + "inputQty": "53270078949673091072", + "outputQty0": "53810525070887668347", + "outputQty": "53840675483307650931", + "swapFee1": "31962047369803854", + "swapFee2": "32286315042532601", "mpReserves": [ - "38619003778880649692175069", - "33152323243532064423569140", - "34779521956114890845138440" + "38826972317334245979306868", + "28556100474938360103052997", + "41308249222129371691129871" ], "fpReserves": [ - "7525499498517674550956404", - "3363906061636421243083631" + "9648586688139639736795207", + "4797163772665318179609621" ], - "mAssetSupply": "106550121787675907293673221", - "LPTokenSupply": "10834194587169362157511247" + "mAssetSupply": "108679838263924080733091285", + "LPTokenSupply": "14318921256665758512441591" }, { "type": "mint", "inputIndex": 2, - "inputQty": "26683292027983008628736", - "outputQty0": "26684977712042761409801", - "outputQty": "26492657515957321861805", + "inputQty": "86196122858829530529792", + "outputQty0": "86095697271921448481890", + "outputQty": "85178440133444669890729", "mpReserves": [ - "38619003778880649692175069", - "33152323243532064423569140", - "34806205248142873853767176" + "38826972317334245979306868", + "28556100474938360103052997", + "41394445344988201221659663" ], "fpReserves": [ - "7552184476229717312366205", - "3363906061636421243083631" + "9734682385411561185277097", + "4797163772665318179609621" ], - "mAssetSupply": "106576806765387950055083022", - "LPTokenSupply": "10860687244685319479373052" + "mAssetSupply": "108765933961196002181573175", + "LPTokenSupply": "14404099696799203182332320" }, { - "type": "swap_fp_to_mp", - "inputQty": "222134162637810106368", - "outputIndex": 1, - "outputQty": "223545477508869661121", - "swapFee": "0", - "redemptionFee": "89474771098357445", + "type": "mint", + "inputIndex": 0, + "inputQty": "27055497682297282560", + "outputQty0": "27037269908231952213", + "outputQty": "26748772180485887791", "mpReserves": [ - "38619003778880649692175069", - "33152099698054555553908019", - "34806205248142873853767176" + "38826999372831928276589428", + "28556100474938360103052997", + "41394445344988201221659663" ], "fpReserves": [ - "7551960789301971418751460", - "3364128195799059053189999" + "9734709422681469417229310", + "4797163772665318179609621" ], - "mAssetSupply": "106576583167934975259825722", - "LPTokenSupply": "10860687244685319479373052" + "mAssetSupply": "108765960998465910413525388", + "LPTokenSupply": "14404126445571383668220111" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "195646690273688616960", - "outputQty0": "195592978483763802105", - "outputQty": "194079859879551629021", - "swapFee": "155345606988687228", + "type": "swap_fp_to_mp", + "inputQty": "73773061430146236416000", + "outputIndex": 1, + "outputQty": "73979538592263605902788", + "swapFee": "0", + "redemptionFee": "44512855316824672595", "mpReserves": [ - "38619199425570923380792029", - "33152099698054555553908019", - "34806205248142873853767176" + "38826999372831928276589428", + "28482120936346096497150209", + "41394445344988201221659663" ], "fpReserves": [ - "7552156382280455182553565", - "3363934115939179501560978" + "9660521330486761629569587", + "4870936834095464416025621" ], - "mAssetSupply": "106576778760913459023627827", - "LPTokenSupply": "10860687260219880178241774" + "mAssetSupply": "108691817419126519450538260", + "LPTokenSupply": "14404126445571383668220111" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4509368772472073093120", - "outputQty0": "4509649036920700894778", - "outputQty": "4474703436483839612516", - "swapFee": "3581688462931349101", + "type": "redeem", + "outputIndex": 1, + "inputQty": "430879256367792551624704", + "outputQty0": "435191568835729757051214", + "outputQty": "433937241292317983761987", + "swapFee1": "258527553820675530974", + "swapFee2": "261114941301437854230", "mpReserves": [ - "38619199425570923380792029", - "33152099698054555553908019", - "34810714616915345926860296" + "38826999372831928276589428", + "28048183695053778513388222", + "41394445344988201221659663" ], "fpReserves": [ - "7556666031317375883448343", - "3359459412502695661948462" + "9225329761651031872518373", + "4870936834095464416025621" ], - "mAssetSupply": "106581288409950379724522605", - "LPTokenSupply": "10860687618388726471376684" + "mAssetSupply": "108256886965232091131341276", + "LPTokenSupply": "13973273041958973184148504" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "408740440122734709571584", - "outputQty0": "408623799091135504079488", - "outputQty": "405628545642316567739732", + "type": "swap_fp_to_mp", + "inputQty": "5902745905658951892992", + "outputIndex": 1, + "outputQty": "5914755153945205470440", + "swapFee": "0", + "redemptionFee": "3559334282724526625", "mpReserves": [ - "39027939865693658090363613", - "33152099698054555553908019", - "34810714616915345926860296" + "38826999372831928276589428", + "28042268939899833307917782", + "41394445344988201221659663" ], "fpReserves": [ - "7965289830408511387527831", - "3359459412502695661948462" + "9219397537846490994809863", + "4876839580001123367918613" ], - "mAssetSupply": "106989912209041515228602093", - "LPTokenSupply": "11266316164031043039116416" + "mAssetSupply": "108250958300761832978159391", + "LPTokenSupply": "13973273041958973184148504" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "24353744116567785865216", "outputIndex": 2, - "inputQty": "130046052664935923712", - "outputQty0": "130941917690949414115", - "outputQty": "130879842192771625895", - "swapFee1": "78027631598961554", - "swapFee2": "52376767076379765", + "outputQty": "24489359822367060730942", + "swapFee": "0", + "redemptionFee": "14684499967593904456", "mpReserves": [ - "39027939865693658090363613", - "33152099698054555553908019", - "34810583737073153155234401" + "38826999372831928276589428", + "28042268939899833307917782", + "41369955985165834160928721" ], "fpReserves": [ - "7965158888490820438113716", - "3359459412502695661948462" + "9194923371233834487382513", + "4901193324117691153783829" ], - "mAssetSupply": "106989781319500591355567743", - "LPTokenSupply": "11266186125781141263088859" + "mAssetSupply": "108226498818649144064636497", + "LPTokenSupply": "13973273041958973184148504" }, { "type": "mint", "inputIndex": 2, - "inputQty": "474742790633029447450624", - "outputQty0": "474770625691574549461823", - "outputQty": "471180656320233287244539", + "inputQty": "760720178230430124736512", + "outputQty0": "759757000496528673840909", + "outputQty": "751743807032635390247750", "mpReserves": [ - "39027939865693658090363613", - "33152099698054555553908019", - "35285326527706182602685025" + "38826999372831928276589428", + "28042268939899833307917782", + "42130676163396264285665233" ], "fpReserves": [ - "8439929514182394987575539", - "3359459412502695661948462" + "9954680371730363161223422", + "4901193324117691153783829" ], - "mAssetSupply": "107464551945192165905029566", - "LPTokenSupply": "11737366782101374550333398" + "mAssetSupply": "108986255819145672738477406", + "LPTokenSupply": "14725016848991608574396254" }, { - "type": "swap_fp_to_mp", - "inputQty": "1764991714067676659712", - "outputIndex": 1, - "outputQty": "1778975148545014358605", - "swapFee": "0", - "redemptionFee": "712061206648804565", + "type": "redeem", + "outputIndex": 2, + "inputQty": "23943653802225818402816", + "outputQty0": "24187749321888471889809", + "outputQty": "24204993423026004658923", + "swapFee1": "14366192281335491041", + "swapFee2": "14512649593133083133", "mpReserves": [ - "39027939865693658090363613", - "33150320722906010539549414", - "35285326527706182602685025" + "38826999372831928276589428", + "28042268939899833307917782", + "42106471169973238281006310" ], "fpReserves": [ - "8438149361165772976161759", - "3361224404216763338608174" + "9930492622408474689333613", + "4901193324117691153783829" ], - "mAssetSupply": "107462772504236750542420351", - "LPTokenSupply": "11737366782101374550333398" + "mAssetSupply": "108962082582473377399670730", + "LPTokenSupply": "14701074631808610889542542" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "11445478960476232613888", - "outputQty0": "11527125065023947333805", - "outputQty": "11522012015782339857420", - "swapFee1": "6867287376285739568", - "swapFee2": "4610850026009578933", + "type": "mint", + "inputIndex": 2, + "inputQty": "2489743085010440704", + "outputQty0": "2486480291192060397", + "outputQty": "2459919712755472055", "mpReserves": [ - "39027939865693658090363613", - "33150320722906010539549414", - "35273804515690400262827605" + "38826999372831928276589428", + "28042268939899833307917782", + "42106473659716323291447014" ], "fpReserves": [ - "8426622236100749028827954", - "3361224404216763338608174" + "9930495108888765881394010", + "4901193324117691153783829" ], - "mAssetSupply": "107451249990021752604665479", - "LPTokenSupply": "11725921989869635946293466" + "mAssetSupply": "108962085068953668591731127", + "LPTokenSupply": "14701077091728323645014597" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2236290670478135148937216", - "outputQty0": "2236699297019778162492836", - "outputQty": "2218252043107679759061974", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "122715555762762504208384", + "outputQty0": "122553806687282468471067", + "outputQty": "121731032986286897923535", + "swapFee": "96993507927741378113", "mpReserves": [ - "39027939865693658090363613", - "35386611393384145688486630", - "35273804515690400262827605" + "38826999372831928276589428", + "28042268939899833307917782", + "42229189215479085795655398" ], "fpReserves": [ - "10663321533120527191320790", - "3361224404216763338608174" + "10053048915576048349865077", + "4779462291131404255860294" ], - "mAssetSupply": "109687949287041530767158315", - "LPTokenSupply": "13944174032977315705355440" + "mAssetSupply": "109084638875640951060202194", + "LPTokenSupply": "14701086791079116419152408" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "130525190103026020384768", - "outputQty0": "131602276792145013810369", - "outputQty": "131533534308478471756046", - "swapFee1": "78315114061815612230", - "swapFee2": "52640910716858005524", + "type": "swap_fp_to_mp", + "inputQty": "7565343931096749834240", + "outputIndex": 1, + "outputQty": "7588879020751123924204", + "swapFee": "0", + "redemptionFee": "4567168193067602073", "mpReserves": [ - "39027939865693658090363613", - "35386611393384145688486630", - "35142270981381921791071559" + "38826999372831928276589428", + "28034680060879082183993578", + "42229189215479085795655398" ], "fpReserves": [ - "10531719256328382177510421", - "3361224404216763338608174" + "10045436968587602346408474", + "4787027635062501005694534" ], - "mAssetSupply": "109556399651160102611353470", - "LPTokenSupply": "13813656674385695866531895" + "mAssetSupply": "109077031495820698124347664", + "LPTokenSupply": "14701086791079116419152408" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "66494582127933796646912", - "outputQty0": "66501275567467127053399", - "outputQty": "65596247553477468162518", - "swapFee": "52734540499452544957", + "type": "mint", + "inputIndex": 0, + "inputQty": "52914275777802298982400", + "outputQty0": "52878374259678188960496", + "outputQty": "52305723714757313251892", "mpReserves": [ - "39027939865693658090363613", - "35453105975512079485133542", - "35142270981381921791071559" + "38879913648609730575571828", + "28034680060879082183993578", + "42229189215479085795655398" ], "fpReserves": [ - "10598220531895849304563820", - "3295628156663285870445656" + "10098315342847280535368970", + "4787027635062501005694534" ], - "mAssetSupply": "109622900926727569738406869", - "LPTokenSupply": "13813661947839745811786390" + "mAssetSupply": "109129909870080376313308160", + "LPTokenSupply": "14753392514793873732404300" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "373416955201836928", - "outputQty0": "376541812541333405", - "outputQty": "376342686231824103", - "swapFee1": "224050173121102", - "swapFee2": "150616725016533", + "outputIndex": 0, + "inputQty": "138073323221257702866944", + "outputQty0": "139498907297129404417499", + "outputQty": "139509015858926484072740", + "swapFee1": "82843993932754621720", + "swapFee2": "83699344378277642650", "mpReserves": [ - "39027939865693658090363613", - "35453105975512079485133542", - "35142270605039235559247456" + "38740404632750804091499088", + "28034680060879082183993578", + "42229189215479085795655398" ], "fpReserves": [ - "10598220155354036763230415", - "3295628156663285870445656" + "9958816435550151130951471", + "4787027635062501005694534" ], - "mAssetSupply": "109622900550336373922089997", - "LPTokenSupply": "13813661574445195627261572" + "mAssetSupply": "108990494662127625186533311", + "LPTokenSupply": "14615327475972009304999528" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "586189183890260871872512", - "outputQty0": "586053266177650087115704", - "outputQty": "580753618748325243411112", + "inputIndex": 2, + "inputQty": "16774422022383403532288", + "outputQty0": "16752065740718397909558", + "outputQty": "16571227305654894122964", "mpReserves": [ - "39614129049583918962236125", - "35453105975512079485133542", - "35142270605039235559247456" + "38740404632750804091499088", + "28034680060879082183993578", + "42245963637501469199187686" ], "fpReserves": [ - "11184273421531686850346119", - "3295628156663285870445656" + "9975568501290869528861029", + "4787027635062501005694534" ], - "mAssetSupply": "110208953816514024009205701", - "LPTokenSupply": "14394415193193520870672684" + "mAssetSupply": "109007246727868343584442869", + "LPTokenSupply": "14631898703277664199122492" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "24932457141465558024192", - "outputQty0": "25148496643078136855674", - "outputQty": "25135506025036100470510", - "swapFee1": "14959474284879334814", - "swapFee2": "10059398657231254742", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "74098990636541", + "outputQty0": "74049966853932", + "outputQty": "73544805585793", + "swapFee": "58600290227", "mpReserves": [ - "39614129049583918962236125", - "35427970469487043384663032", - "35142270605039235559247456" + "38740404632824903082135629", + "28034680060879082183993578", + "42245963637501469199187686" ], "fpReserves": [ - "11159124924888608713490445", - "3295628156663285870445656" + "9975568501364919495714961", + "4787027634988956200108741" ], - "mAssetSupply": "110183815379269603103604769", - "LPTokenSupply": "14369484231999483800581973" + "mAssetSupply": "109007246727942393551296801", + "LPTokenSupply": "14631898703277670059151514" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "16666675258487813963776", - "outputQty0": "16810927067715771246268", - "outputQty": "16801747603012759633539", - "swapFee1": "10000005155092688378", - "swapFee2": "6724370827086308498", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "7403262545054699356160", + "outputQty0": "7393384734696782391528", + "outputQty": "7342849599825162692974", + "swapFee": "5850831483820383568", "mpReserves": [ - "39614129049583918962236125", - "35427970469487043384663032", - "35125468857436222799613917" + "38740404632824903082135629", + "28034680060879082183993578", + "42253366900046523898543846" ], "fpReserves": [ - "11142313997820892942244177", - "3295628156663285870445656" + "9982961886099616278106489", + "4779684785389131037415767" ], - "mAssetSupply": "110167011176572714418666999", - "LPTokenSupply": "14352818556741511495887034" + "mAssetSupply": "109014640112677090333688329", + "LPTokenSupply": "14631899288360818441189870" }, { - "type": "swap_fp_to_mp", - "inputQty": "786554059462693615566848", - "outputIndex": 2, - "outputQty": "795001047152368601379778", - "swapFee": "0", - "redemptionFee": "318182857472020613965", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "5709367653856923", + "outputQty0": "5723256317369861", + "outputQty": "5684060708932286", + "swapFee": "4529123431196", "mpReserves": [ - "39614129049583918962236125", - "35427970469487043384663032", - "34330467810283854198234139" + "38740404632824903082135629", + "28034680066588449837850501", + "42253366900046523898543846" ], "fpReserves": [ - "10346856854140841407330706", - "4082182216125979486012504" + "9982961891822872595476350", + "4779684779705070328483481" ], - "mAssetSupply": "109371872215750134904367493", - "LPTokenSupply": "14352818556741511495887034" + "mAssetSupply": "109014640118400346651058190", + "LPTokenSupply": "14631899288361271353532989" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "1435676481418494", - "outputQty0": "1435285127929969", - "outputQty": "1424184182125496", + "inputQty": "261336400919671144448", + "outputQty0": "261163614783704169855", + "outputQty": "259374918014456448617", + "swapFee": "206672936218214818", "mpReserves": [ - "39614129051019595443654619", - "35427970469487043384663032", - "34330467810283854198234139" + "38740665969225822753280077", + "28034680066588449837850501", + "42253366900046523898543846" ], "fpReserves": [ - "10346856855576126535260675", - "4082182216125979486012504" + "9983223055437656299646205", + "4779425404787055872034864" ], - "mAssetSupply": "109371872217185420032297462", - "LPTokenSupply": "14352818558165695678012530" + "mAssetSupply": "109014901282015130355228045", + "LPTokenSupply": "14631899309028564975354470" }, { "type": "swap_fp_to_mp", - "inputQty": "110997462170177216970752", - "outputIndex": 2, - "outputQty": "111866898941417406467856", + "inputQty": "714487022730468399251456", + "outputIndex": 1, + "outputQty": "715755233548902740096923", "swapFee": "0", - "redemptionFee": "44773821815103285107", + "redemptionFee": "430802403454579815057", "mpReserves": [ - "39614129051019595443654619", - "35427970469487043384663032", - "34218600911342436791766283" + "38740665969225822753280077", + "27318924833039547097753578", + "42253366900046523898543846" ], "fpReserves": [ - "10234922301038368322492045", - "4193179678296156702983256" + "9265219049680023274551083", + "5493912427517524271286320" ], - "mAssetSupply": "109259982436469476922813939", - "LPTokenSupply": "14352818558165695678012530" + "mAssetSupply": "108297328078660951909947980", + "LPTokenSupply": "14631899309028564975354470" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2933968822426156400640", - "outputQty0": "2934580080466038433207", - "outputQty": "2908483961725314853739", - "swapFee": "2329888943604949126", + "inputIndex": 0, + "inputQty": "115932403715907640098816", + "outputQty0": "115846190253950315410572", + "outputQty": "115288791470635207516078", + "swapFee": "91743701325953092537", "mpReserves": [ - "39614129051019595443654619", - "35427970469487043384663032", - "34221534880164862948166923" + "38856598372941730393378893", + "27318924833039547097753578", + "42253366900046523898543846" ], "fpReserves": [ - "10237856881118834360925252", - "4190271194334431388129517" + "9381065239933973589961655", + "5378623636046889063770242" ], - "mAssetSupply": "109262917016549942961247146", - "LPTokenSupply": "14352818791154590038507442" + "mAssetSupply": "108413174268914902225358552", + "LPTokenSupply": "14631908483398697570663723" }, { - "type": "swap_fp_to_mp", - "inputQty": "26678999178141765632", + "type": "redeem", "outputIndex": 1, - "outputQty": "26883930999042356084", - "swapFee": "0", - "redemptionFee": "10758812816472650", - "mpReserves": [ - "39614129051019595443654619", - "35427943585556044342306948", - "34221534880164862948166923" - ], - "fpReserves": [ - "10237829984086793179300153", - "4190297873333609529895149" - ], - "mAssetSupply": "109262890130276714596094697", - "LPTokenSupply": "14352818791154590038507442" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "2333191150579817", - "outputIndex": 2, - "outputQty": "2350828460907541", - "swapFee": "0", - "redemptionFee": "940903555701", + "inputQty": "204030014131968147456", + "outputQty0": "206002195201718826565", + "outputQty": "205332039617326676736", + "swapFee1": "122418008479180888", + "swapFee2": "123601317121031295", "mpReserves": [ - "39614129051019595443654619", - "35427943585556044342306948", - "34221534877814034487259382" + "38856598372941730393378893", + "27318719500999929771076842", + "42253366900046523898543846" ], "fpReserves": [ - "10237829981734534290046535", - "4190297875666800680474966" + "9380859237738771871135090", + "5378623636046889063770242" ], - "mAssetSupply": "109262890127925396610396780", - "LPTokenSupply": "14352818791154590038507442" + "mAssetSupply": "108412968390321017627563282", + "LPTokenSupply": "14631704465626366450434355" }, { "type": "mint", "inputIndex": 0, - "inputQty": "11632322107549966925824", - "outputQty0": "11629109017656023453027", - "outputQty": "11540989217961228429466", + "inputQty": "93361865857880571904", + "outputQty0": "93291674568083723879", + "outputQty": "92343100176424847692", "mpReserves": [ - "39625761373127145410580443", - "35427943585556044342306948", - "34221534877814034487259382" + "38856691734807588273950797", + "27318719500999929771076842", + "42253366900046523898543846" ], "fpReserves": [ - "10249459090752190313499562", - "4190297875666800680474966" + "9380952529413339954858969", + "5378623636046889063770242" ], - "mAssetSupply": "109274519236943052633849807", - "LPTokenSupply": "14364359780372551266936908" + "mAssetSupply": "108413061681995585711287161", + "LPTokenSupply": "14631796808726542875282047" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "1644379867947354", - "outputQty0": "1655945217082736", - "outputQty": "1655138073870217", - "swapFee1": "986627920768", - "swapFee2": "662378086833", + "inputQty": "87082006008029926916096", + "outputQty0": "87922337745529719030175", + "outputQty": "87635106225389795285300", + "swapFee1": "52249203604817956149", + "swapFee2": "52753402647317831418", "mpReserves": [ - "39625761373127145410580443", - "35427943583900906268436731", - "34221534877814034487259382" + "38856691734807588273950797", + "27231084394774539975791542", + "42253366900046523898543846" ], "fpReserves": [ - "10249459089096245096416826", - "4190297875666800680474966" + "9293030191667810235828794", + "5378623636046889063770242" ], - "mAssetSupply": "109274519235287769794853904", - "LPTokenSupply": "14364359778728270061781630" + "mAssetSupply": "108325192097652703310088404", + "LPTokenSupply": "14544720027638873430161565" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "153542392187920121856", - "outputQty0": "153555820868433868218", - "outputQty": "152186619431286306095", - "swapFee": "121913496764691904", + "type": "swap_fp_to_mp", + "inputQty": "1457801059786177904640", + "outputIndex": 0, + "outputQty": "1464009862602961219186", + "swapFee": "0", + "redemptionFee": "878264400769423741", "mpReserves": [ - "39625761373127145410580443", - "35428097126293094188558587", - "34221534877814034487259382" + "38855227724944985312731611", + "27231084394774539975791542", + "42253366900046523898543846" ], "fpReserves": [ - "10249612644917113530285044", - "4190145689047369394168871" + "9291566417666527862926562", + "5380081437106675241674882" ], - "mAssetSupply": "109274672791108638228722122", - "LPTokenSupply": "14364359790919619738250820" + "mAssetSupply": "108323729201915821706609913", + "LPTokenSupply": "14544720027638873430161565" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "39806609981449378463744", - "outputQty0": "39814858203443475198871", - "outputQty": "39455918132064137592093", - "swapFee": "31610179064502839911", + "inputQty": "416586058337396593786880", + "outputQty0": "415987567755083010013337", + "outputQty": "413711331473346467508027", + "swapFee": "329391343813698629062", "mpReserves": [ - "39625761373127145410580443", - "35428097126293094188558587", - "34261341487795483865723126" + "38855227724944985312731611", + "27231084394774539975791542", + "42669952958383920492330726" ], "fpReserves": [ - "10289427503120557005483915", - "4150689770915305256576778" + "9707553985421610872939899", + "4966370105633328774166855" ], - "mAssetSupply": "109314487649312081703920993", - "LPTokenSupply": "14364362951937526188534811" + "mAssetSupply": "108739716769670904716623250", + "LPTokenSupply": "14544752966773254800024471" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "63328715638866630934528", - "outputQty0": "63334208023567056354709", - "outputQty": "62746763397892296965211", - "swapFee": "50279618043067810083", + "type": "mint", + "inputIndex": 0, + "inputQty": "2870220488774696042496", + "outputQty0": "2868108180438893971489", + "outputQty": "2837731832650104536186", "mpReserves": [ - "39625761373127145410580443", - "35491425841931960819493115", - "34261341487795483865723126" + "38858097945433760008774107", + "27231084394774539975791542", + "42669952958383920492330726" ], "fpReserves": [ - "10352761711144124061838624", - "4087943007517412959611567" + "9710422093602049766911388", + "4966370105633328774166855" ], - "mAssetSupply": "109377821857335648760275702", - "LPTokenSupply": "14364367979899330495315819" + "mAssetSupply": "108742584877851343610594739", + "LPTokenSupply": "14547590698605904904560657" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "558480949062717603840", - "outputQty0": "562497193736038064148", - "outputQty": "562224574622649037189", - "swapFee1": "335088569437630562", - "swapFee2": "224998877494415225", + "type": "swap_fp_to_mp", + "inputQty": "13124422116505596", + "outputIndex": 2, + "outputQty": "13205924870533963", + "swapFee": "0", + "redemptionFee": "7916719681548", "mpReserves": [ - "39625761373127145410580443", - "35490863617357338170455926", - "34261341487795483865723126" + "38858097945433760008774107", + "27231084394774539975791542", + "42669952945177995621796763" ], "fpReserves": [ - "10352199213950388023774476", - "4087943007517412959611567" + "9710422080407516964331011", + "4966370118757750890672451" ], - "mAssetSupply": "109377259585140790216626779", - "LPTokenSupply": "14363809532459124721475035" + "mAssetSupply": "108742584864664727527695910", + "LPTokenSupply": "14547590698605904904560657" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "265938212918893515636736", - "outputQty0": "265863634273105915301765", - "outputQty": "263158363552602093452818", - "swapFee": "211033608431761187967", + "type": "swap_fp_to_mp", + "inputQty": "5188579650322574336", + "outputIndex": 0, + "outputQty": "5217007683206399985", + "swapFee": "0", + "redemptionFee": "3129778204396493", "mpReserves": [ - "39891699586046038926217179", - "35490863617357338170455926", - "34261341487795483865723126" + "38858092728426076802374122", + "27231084394774539975791542", + "42669952945177995621796763" ], "fpReserves": [ - "10618062848223493939076241", - "3824784643964810866158749" + "9710416864110509636842472", + "4966375307337401213246787" ], - "mAssetSupply": "109643123219413896131928544", - "LPTokenSupply": "14363830635819967897593831" + "mAssetSupply": "108742579651497498404603864", + "LPTokenSupply": "14547590698605904904560657" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "5547114821754161201152", - "outputQty0": "5589438846571555820711", - "outputQty": "5585995309726989961832", - "swapFee1": "3328268893052496720", - "swapFee2": "2235775538628622328", + "type": "swap_fp_to_mp", + "inputQty": "3655882425503004491776", + "outputIndex": 1, + "outputQty": "3663168354193129412816", + "swapFee": "0", + "redemptionFee": "2205234002913594130", "mpReserves": [ - "39891699586046038926217179", - "35490863617357338170455926", - "34255755492485756875761294" + "38858092728426076802374122", + "27227421226420346846378726", + "42669952945177995621796763" ], "fpReserves": [ - "10612473409376922383255530", - "3824784643964810866158749" + "9706741474105653646624962", + "4970031189762904217738563" ], - "mAssetSupply": "109637536016342863204730161", - "LPTokenSupply": "14358283853825103041642351" + "mAssetSupply": "108738906466726645327980484", + "LPTokenSupply": "14547590698605904904560657" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "37297012349209602424832", - "outputQty0": "37300408807095420422901", - "outputQty": "36995481788305951578236", + "type": "swap_fp_to_mp", + "inputQty": "663190116309085323264", + "outputIndex": 0, + "outputQty": "666815194617789262121", + "swapFee": "0", + "redemptionFee": "400034478268269602", "mpReserves": [ - "39891699586046038926217179", - "35528160629706547772880758", - "34255755492485756875761294" + "38857425913231459013112001", + "27227421226420346846378726", + "42669952945177995621796763" ], "fpReserves": [ - "10649773818184017803678431", - "3824784643964810866158749" + "9706074749975206530620767", + "4970694379879213303061827" ], - "mAssetSupply": "109674836425149958625153062", - "LPTokenSupply": "14395279335613408993220587" + "mAssetSupply": "108738240142630676480245891", + "LPTokenSupply": "14547590698605904904560657" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "180768625801356589924352", - "outputQty0": "182143262844254205327174", - "outputQty": "182052971747940087741013", - "swapFee1": "108461175480813953954", - "swapFee2": "72857305137701682130", + "outputIndex": 0, + "inputQty": "113411619665576329216", + "outputQty0": "114556359354054203391", + "outputQty": "114571999665973077780", + "swapFee1": "68046971799345797", + "swapFee2": "68733815612432522", "mpReserves": [ - "39891699586046038926217179", - "35346107657958607685139745", - "34255755492485756875761294" + "38857311341231793040034221", + "27227421226420346846378726", + "42669952945177995621796763" ], "fpReserves": [ - "10467630555339763598351257", - "3824784643964810866158749" + "9705960193615852476417376", + "4970694379879213303061827" ], - "mAssetSupply": "109492766019610842121508018", - "LPTokenSupply": "14214521555929600484691630" + "mAssetSupply": "108738125655005138038475022", + "LPTokenSupply": "14547477293790936508166020" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "65468304607041514635264", - "outputQty0": "65962908381639278904973", - "outputQty": "65929677258912651489711", - "swapFee1": "39280982764224908781", - "swapFee2": "26385163352655711561", + "outputIndex": 0, + "inputQty": "185197759794847013666816", + "outputQty0": "187060467130980684028457", + "outputQty": "187083532747146728200269", + "swapFee1": "111118655876908208200", + "swapFee2": "112236280278588410417", "mpReserves": [ - "39891699586046038926217179", - "35280177980699695033650034", - "34255755492485756875761294" + "38670227808484646311833952", + "27227421226420346846378726", + "42669952945177995621796763" ], "fpReserves": [ - "10401667646958124319446284", - "3824784643964810866158749" + "9518899726484871792388919", + "4970694379879213303061827" ], - "mAssetSupply": "109426829496392555498314606", - "LPTokenSupply": "14149057179420835392547244" + "mAssetSupply": "108551177424154435942856982", + "LPTokenSupply": "14362290645861677185320024" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "25796285483097325043712", - "outputQty0": "25990697215184555316817", - "outputQty": "25974838554855703184179", - "swapFee1": "15477771289858395026", - "swapFee2": "10396278886073822126", + "type": "swap_fp_to_mp", + "inputQty": "38528729496147663519744", + "outputIndex": 0, + "outputQty": "38727742595733508356172", + "swapFee": "0", + "redemptionFee": "23234152261323298522", "mpReserves": [ - "39891699586046038926217179", - "35280177980699695033650034", - "34229780653930901172577115" + "38631500065888912803477780", + "27227421226420346846378726", + "42669952945177995621796763" ], "fpReserves": [ - "10375676949742939764129467", - "3824784643964810866158749" + "9480176139382666294851997", + "5009223109375360966581571" ], - "mAssetSupply": "109400849195456257016819915", - "LPTokenSupply": "14123262441714867053343034" + "mAssetSupply": "108512477071204491768618582", + "LPTokenSupply": "14362290645861677185320024" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "200529648103125032108032", - "outputQty0": "200549417326580380956641", - "outputQty": "198921822905336954328748", + "type": "redeem", + "outputIndex": 1, + "inputQty": "646415475339088084598784", + "outputQty0": "652789252764258269861177", + "outputQty": "650565497684767225856217", + "swapFee1": "387849285203452850759", + "swapFee2": "391673551658554961916", "mpReserves": [ - "39891699586046038926217179", - "35480707628802820065758066", - "34229780653930901172577115" + "38631500065888912803477780", + "26576855728735579620522509", + "42669952945177995621796763" ], "fpReserves": [ - "10576226367069520145086108", - "3824784643964810866158749" + "8827386886618408024990820", + "5009223109375360966581571" ], - "mAssetSupply": "109601398612782837397776556", - "LPTokenSupply": "14322184264620204007671782" + "mAssetSupply": "107860079491991892053719321", + "LPTokenSupply": "13715913955451109446006315" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "33511228540825452412928", - "outputQty0": "33766420959982745962055", - "outputQty": "33749770255200667014136", - "swapFee1": "20106737124495271447", - "swapFee2": "13506568383993098384", + "type": "mint", + "inputIndex": 1, + "inputQty": "16196623910901", + "outputQty0": "16243976253040", + "outputQty": "16077338086233", "mpReserves": [ - "39891699586046038926217179", - "35446957858547619398743930", - "34229780653930901172577115" + "38631500065888912803477780", + "26576855728751776244433410", + "42669952945177995621796763" ], "fpReserves": [ - "10542459946109537399124053", - "3824784643964810866158749" + "8827386886634652001243860", + "5009223109375360966581571" ], - "mAssetSupply": "109567645698391238644912885", - "LPTokenSupply": "14288675046753091004785998" + "mAssetSupply": "107860079492008136029972361", + "LPTokenSupply": "13715913955467186784092548" }, { - "type": "swap_fp_to_mp", - "inputQty": "66969709208882630361088", - "outputIndex": 0, - "outputQty": "67627228358263421497875", - "swapFee": "0", - "redemptionFee": "27053926178498579215", + "type": "mint", + "inputIndex": 2, + "inputQty": "25131324714870735110144", + "outputQty0": "25092417257135499631500", + "outputQty": "24834886098398011599729", "mpReserves": [ - "39824072357687775504719304", - "35446957858547619398743930", - "34229780653930901172577115" + "38631500065888912803477780", + "26576855728751776244433410", + "42695084269892866356906907" ], "fpReserves": [ - "10474825130663290951084863", - "3891754353173693496519837" + "8852479303891787500875360", + "5009223109375360966581571" ], - "mAssetSupply": "109500037936871170695452910", - "LPTokenSupply": "14288675046753091004785998" + "mAssetSupply": "107885171909265271529603861", + "LPTokenSupply": "13740748841565584795692277" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "699604409041048", - "outputQty0": "704848479802272", - "outputQty": "704415301275860", - "swapFee1": "419762645424", - "swapFee2": "281939391920", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "24630307134025177759744", + "outputQty0": "24702282205094452606720", + "outputQty": "24575629413051859937930", + "swapFee": "19558814185702801352", "mpReserves": [ - "39824072357687775504719304", - "35446957858547619398743930", - "34229780653226485871301255" + "38631500065888912803477780", + "26601486035885801422193154", + "42695084269892866356906907" ], "fpReserves": [ - "10474825129958442471282591", - "3891754353173693496519837" + "8877181586096881953482080", + "4984647479962309106643641" ], - "mAssetSupply": "109500037936166604155042558", - "LPTokenSupply": "14288675046053528572009492" + "mAssetSupply": "107909874191470365982210581", + "LPTokenSupply": "13740750797447003365972412" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "133308547811401218916352", - "outputQty0": "134303778481122445707957", - "outputQty": "134237083068372497472551", - "swapFee1": "79985128686840731349", - "swapFee2": "53721511392448978283", + "type": "swap_fp_to_mp", + "inputQty": "331784524413311322685440", + "outputIndex": 0, + "outputQty": "333129994433424820418330", + "swapFee": "0", + "redemptionFee": "199848622310385272271", "mpReserves": [ - "39824072357687775504719304", - "35312720775479246901271379", - "34229780653226485871301255" + "38298370071455487983059450", + "26601486035885801422193154", + "42695084269892866356906907" ], "fpReserves": [ - "10340521351477320025574634", - "3891754353173693496519837" + "8544100548912906499695730", + "5316432004375620429329081" ], - "mAssetSupply": "109365787879196874158312884", - "LPTokenSupply": "14155374496754996037166274" + "mAssetSupply": "107576993002908700913696502", + "LPTokenSupply": "13740750797447003365972412" }, { "type": "swap_fp_to_mp", - "inputQty": "7158066471633191698432", + "inputQty": "734679792682447367307264", "outputIndex": 2, - "outputQty": "7221527837521846324789", + "outputQty": "737241060748686139041641", "swapFee": "0", - "redemptionFee": "2890375282734919892", + "redemptionFee": "441936742746414981804", "mpReserves": [ - "39824072357687775504719304", - "35312720775479246901271379", - "34222559125388964024976466" + "38298370071455487983059450", + "26601486035885801422193154", + "41957843209144180217865266" ], "fpReserves": [ - "10333295413270482725842928", - "3898912419645326688218269" + "7807539311002214863354745", + "6051111797058067796636345" ], - "mAssetSupply": "109358564831365319593501070", - "LPTokenSupply": "14155374496754996037166274" + "mAssetSupply": "106840873701740755692337321", + "LPTokenSupply": "13740750797447003365972412" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "650678589592077598720", - "outputQty0": "655512251505864389332", - "outputQty": "655184002629380678364", - "swapFee1": "390407153755246559", - "swapFee2": "262204900602345755", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "16179827081633333248000", + "outputQty0": "16167384023588146275245", + "outputQty": "16126197606216609209358", + "swapFee": "12814125380151010112", "mpReserves": [ - "39824072357687775504719304", - "35312065591476617520593015", - "34222559125388964024976466" + "38314549898537121316307450", + "26601486035885801422193154", + "41957843209144180217865266" ], "fpReserves": [ - "10332639901018976861453596", - "3898912419645326688218269" + "7823706695025803009629990", + "6034985599451851187426987" ], - "mAssetSupply": "109357909581318714331457493", - "LPTokenSupply": "14154723857206119335092209" + "mAssetSupply": "106857041085764343838612566", + "LPTokenSupply": "13740752078859541381073423" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "274076677746185272819712", - "outputQty0": "274131816811364448433976", - "outputQty": "271930585754030200478771", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1901346511117341696", + "outputQty0": "1917991991487236366", + "outputQty": "1918318690448642671", + "swapFee1": "1140807906670405", + "swapFee2": "1150795194892341", "mpReserves": [ - "39824072357687775504719304", - "35312065591476617520593015", - "34496635803135149297796178" + "38314547980218430867664779", + "26601486035885801422193154", + "41957843209144180217865266" ], "fpReserves": [ - "10606771717830341309887572", - "3898912419645326688218269" + "7823704777033811522393624", + "6034985599451851187426987" ], - "mAssetSupply": "109632041398130078779891469", - "LPTokenSupply": "14426654442960149535570980" + "mAssetSupply": "106857039168923147546268541", + "LPTokenSupply": "13740750177627111054398767" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1207141027005573938282496", - "hardLimitError": true - }, - { - "type": "swap_fp_to_mp", - "inputQty": "477168189945557647622144", - "outputIndex": 1, - "outputQty": "481012224719343248434814", - "swapFee": "0", - "redemptionFee": "192506099129074860063", + "inputIndex": 2, + "inputQty": "265370669170800600285184", + "outputQty0": "264974922029603444032437", + "outputQty": "264220130276998805088744", + "swapFee": "210003141692964902253", "mpReserves": [ - "39824072357687775504719304", - "34831053366757274272158201", - "34496635803135149297796178" + "38314547980218430867664779", + "26601486035885801422193154", + "42223213878314980818150450" ], "fpReserves": [ - "10125506470007654159727929", - "4376080609590884335840413" + "8088679699063414966426061", + "5770765469174852382338243" ], - "mAssetSupply": "109150968656406520704591889", - "LPTokenSupply": "14426654442960149535570980" + "mAssetSupply": "107122014090952750990300978", + "LPTokenSupply": "13740771177941280350888992" }, { - "type": "swap_fp_to_mp", - "inputQty": "186842669885700288", - "outputIndex": 1, - "outputQty": "188122492233480620", - "swapFee": "0", - "redemptionFee": "75289784222988", + "type": "mint", + "inputIndex": 2, + "inputQty": "3413354617491256508416", + "outputQty0": "3408207157215582484689", + "outputQty": "3375723899826734278538", "mpReserves": [ - "39824072357687775504719304", - "34831053178634782038677581", - "34496635803135149297796178" + "38314547980218430867664779", + "26601486035885801422193154", + "42226627232932472074658866" ], "fpReserves": [ - "10125506281783193602257762", - "4376080796433554221540701" + "8092087906220630548910750", + "5770765469174852382338243" ], - "mAssetSupply": "109150968468257349931344710", - "LPTokenSupply": "14426654442960149535570980" + "mAssetSupply": "107125422298109966572785667", + "LPTokenSupply": "13744146901841107085167530" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "70446051515527113736192", - "outputQty0": "70455875520074627557290", - "outputQty": "69871636311201563340547", - "swapFee": "55947789033482338694", + "type": "mint", + "inputIndex": 0, + "inputQty": "1344392486890529280", + "outputQty0": "1343379072138753275", + "outputQty": "1330574583185898493", "mpReserves": [ - "39824072357687775504719304", - "34901499230150309152413773", - "34496635803135149297796178" + "38314549324610917758194059", + "26601486035885801422193154", + "42226627232932472074658866" ], "fpReserves": [ - "10195962157303268229815052", - "4306209160122352658200154" + "8092089249599702687664025", + "5770765469174852382338243" ], - "mAssetSupply": "109221424343777424558902000", - "LPTokenSupply": "14426660037739052883804849" + "mAssetSupply": "107125423641489038711538942", + "LPTokenSupply": "13744148232415690271066023" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "165149715360381835149312", "outputIndex": 1, - "inputQty": "142683214077327891759104", - "outputQty0": "143668173002467338549932", - "outputQty": "143590329074983229096047", - "swapFee1": "85609928446396735055", - "swapFee2": "57467269200986935419", + "outputQty": "164936424058328234444165", + "swapFee": "0", + "redemptionFee": "99304400950716132750", "mpReserves": [ - "39824072357687775504719304", - "34757908901075325923317726", - "34496635803135149297796178" + "38314549324610917758194059", + "26436549611827473187748989", + "42226627232932472074658866" ], "fpReserves": [ - "10052293984300800891265120", - "4306209160122352658200154" + "7926581914681842466412483", + "5935915184535234217487555" ], - "mAssetSupply": "109077813638044158207287487", - "LPTokenSupply": "14283985384654569631719250" + "mAssetSupply": "106960015610972129206420150", + "LPTokenSupply": "13744148232415690271066023" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "11888694808791908089856", - "outputQty0": "11890749417353025550306", - "outputQty": "11802400861727667574814", + "inputIndex": 0, + "inputQty": "75177902734008804966400", + "outputQty0": "75119464970466844972217", + "outputQty": "74413814838557138703377", "mpReserves": [ - "39824072357687775504719304", - "34757908901075325923317726", - "34508524497943941205886034" + "38389727227344926563160459", + "26436549611827473187748989", + "42226627232932472074658866" ], "fpReserves": [ - "10064184733718153916815426", - "4306209160122352658200154" + "8001701379652309311384700", + "5935915184535234217487555" ], - "mAssetSupply": "109089704387461511232837793", - "LPTokenSupply": "14295787785516297299294064" + "mAssetSupply": "107035135075942596051392367", + "LPTokenSupply": "13818562047254247409769400" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "593320728327044224", - "outputQty0": "593143956453198971", - "outputQty": "588735435556385066", + "inputIndex": 1, + "inputQty": "20671915095073679736832", + "outputQty0": "20731693561502115212017", + "outputQty": "20536558737815863621981", "mpReserves": [ - "39824072951008503831763528", - "34757908901075325923317726", - "34508524497943941205886034" + "38389727227344926563160459", + "26457221526922546867485821", + "42226627232932472074658866" ], "fpReserves": [ - "10064185326862110370014397", - "4306209160122352658200154" + "8022433073213811426596717", + "5935915184535234217487555" ], - "mAssetSupply": "109089704980605467686036764", - "LPTokenSupply": "14295788374251732855679130" + "mAssetSupply": "107055866769504098166604384", + "LPTokenSupply": "13839098605992063273391381" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "16867815694303768870912", - "outputQty0": "16870714202054899018728", - "outputQty": "16745264853473977509562", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "658997684525137", + "outputQty0": "660901061851563", + "outputQty": "659006363413762", + "swapFee": "523742192225", "mpReserves": [ - "39824072951008503831763528", - "34757908901075325923317726", - "34525392313638244974756946" + "38389727227344926563160459", + "26457221527581544552010958", + "42226627232932472074658866" ], "fpReserves": [ - "10081056041064165269033125", - "4306209160122352658200154" + "8022433073874712488448280", + "5935915183876227854073793" ], - "mAssetSupply": "109106575694807522585055492", - "LPTokenSupply": "14312533639105206833188692" + "mAssetSupply": "107055866770164999228455947", + "LPTokenSupply": "13839098605992115647610603" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "80671517196830399004672", - "outputQty0": "80647353920687828066506", - "outputQty": "80046054471420977617048", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "4401381570215034006536192", + "hardLimitError": true + }, + { + "type": "swap_fp_to_mp", + "inputQty": "56208094924061431300096", + "outputIndex": 0, + "outputQty": "56331130872733406090758", + "swapFee": "0", + "redemptionFee": "33792713121358815585", "mpReserves": [ - "39904744468205334230768200", - "34757908901075325923317726", - "34525392313638244974756946" + "38333396096472193157069701", + "26457221527581544552010958", + "42226627232932472074658866" ], "fpReserves": [ - "10161703394984853097099631", - "4306209160122352658200154" + "7966111885339114462472546", + "5992123278800289285373889" ], - "mAssetSupply": "109187223048728210413121998", - "LPTokenSupply": "14392579693576627810805740" + "mAssetSupply": "106999579374342522561295798", + "LPTokenSupply": "13839098605992115647610603" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "26155401314502787072", - "outputQty0": "26147512247651175853", - "outputQty": "25927752638592095488", - "swapFee": "20761701381418529", + "inputQty": "6414795559403449745408", + "outputQty0": "6409838061102797055433", + "outputQty": "6392191398312938578444", + "swapFee": "5079840650055766823", "mpReserves": [ - "39904770623606648733555272", - "34757908901075325923317726", - "34525392313638244974756946" + "38339810892031596606815109", + "26457221527581544552010958", + "42226627232932472074658866" ], "fpReserves": [ - "10161729542497100748275484", - "4306183232369714066104666" + "7972521723400217259527979", + "5985731087401976346795445" ], - "mAssetSupply": "109187249196240458064297851", - "LPTokenSupply": "14392579695652797948947592" + "mAssetSupply": "107005989212403625358351231", + "LPTokenSupply": "13839099113976180653187285" }, { - "type": "swap_fp_to_mp", - "inputQty": "9552772517391629287424", - "outputIndex": 1, - "outputQty": "9620523480346530115387", - "swapFee": "0", - "redemptionFee": "3850328377922966509", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "359980880146957749714944", + "outputQty0": "359693280916349744005462", + "outputQty": "358558497216600697245538", + "swapFee": "285038061418471739733", "mpReserves": [ - "39904770623606648733555272", - "34748288377594979393202339", - "34525392313638244974756946" + "38699791772178554356530053", + "26457221527581544552010958", + "42226627232932472074658866" ], "fpReserves": [ - "10152103721552293332002867", - "4315736004887105695392090" + "8332215004316567003533441", + "5627172590185375649549907" ], - "mAssetSupply": "109177627225624028570991743", - "LPTokenSupply": "14392579695652797948947592" + "mAssetSupply": "107365682493319975102356693", + "LPTokenSupply": "13839127617782322500361258" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "17506764165016666112", - "outputQty0": "17501478691981814513", - "outputQty": "17370929495792170965", + "inputIndex": 1, + "inputQty": "289573991639969", + "outputQty0": "290420281410107", + "outputQty": "287596851423741", "mpReserves": [ - "39904788130370813750221384", - "34748288377594979393202339", - "34525392313638244974756946" + "38699791772178554356530053", + "26457221527871118543650927", + "42226627232932472074658866" ], "fpReserves": [ - "10152121223030985313817380", - "4315736004887105695392090" + "8332215004606987284943548", + "5627172590185375649549907" ], - "mAssetSupply": "109177644727102720552806256", - "LPTokenSupply": "14392597066582293741118557" + "mAssetSupply": "107365682493610395383766800", + "LPTokenSupply": "13839127618069919351784999" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "17089312560319396052992", - "outputQty0": "17084145534844610159113", - "outputQty": "16956649658424022053284", + "inputIndex": 2, + "inputQty": "86615777764275380027392", + "outputQty0": "86485318391891641863128", + "outputQty": "85643097321511253576017", "mpReserves": [ - "39921877442931133146274376", - "34748288377594979393202339", - "34525392313638244974756946" + "38699791772178554356530053", + "26457221527871118543650927", + "42313243010696747454686258" ], "fpReserves": [ - "10169205368565829923976493", - "4315736004887105695392090" + "8418700322998878926806676", + "5627172590185375649549907" ], - "mAssetSupply": "109194728872637565162965369", - "LPTokenSupply": "14409553716240717763171841" + "mAssetSupply": "107452167812002287025629928", + "LPTokenSupply": "13924770715391430605361016" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "142902859528676648681472", - "outputQty0": "142923786943694536227997", - "outputQty": "141677659720999261761253", - "swapFee": "113482003960554648994", + "inputQty": "25555648929289203613696", + "outputQty0": "25630470769139314061682", + "outputQty": "25536269221789025813360", + "swapFee": "20304263053819790686", "mpReserves": [ - "39921877442931133146274376", - "34891191237123656041883811", - "34525392313638244974756946" + "38699791772178554356530053", + "26482777176800407747264623", + "42313243010696747454686258" ], "fpReserves": [ - "10312129155509524460204490", - "4174058345166106433630837" + "8444330793768018240868358", + "5601636320963586623736547" ], - "mAssetSupply": "109337652659581259699193366", - "LPTokenSupply": "14409565064441113818636740" + "mAssetSupply": "107477798282771426339691610", + "LPTokenSupply": "13924772745817735987340084" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "952636221915228559900672", - "outputQty0": "959231794511086823972396", - "outputQty": "958644774168574625195073", - "swapFee1": "571581733149137135940", - "swapFee2": "383692717804434729588", + "outputIndex": 1, + "inputQty": "914382999144894327422976", + "outputQty0": "922693081782136990898397", + "outputQty": "919304718776757355655165", + "swapFee1": "548629799486936596453", + "swapFee2": "553615849069282194539", "mpReserves": [ - "39921877442931133146274376", - "34891191237123656041883811", - "33566747539469670349561873" + "38699791772178554356530053", + "25563472458023650391609458", + "42313243010696747454686258" ], "fpReserves": [ - "9352897360998437636232094", - "4174058345166106433630837" + "7521637711985881249969961", + "5601636320963586623736547" ], - "mAssetSupply": "108378804557787977309950558", - "LPTokenSupply": "13456986000699200172449662" + "mAssetSupply": "106555658816838358630987752", + "LPTokenSupply": "13010444609652790353576753" }, { - "type": "swap_fp_to_mp", - "inputQty": "3719245832510585700352", + "type": "redeem", "outputIndex": 2, - "outputQty": "3742700920704308000668", - "swapFee": "0", - "redemptionFee": "1498048286662950981", + "inputQty": "32204245209780267778048", + "outputQty0": "32491874990559611275871", + "outputQty": "32524788390327412673751", + "swapFee1": "19322547125868160666", + "swapFee2": "19495124994335766765", "mpReserves": [ - "39921877442931133146274376", - "34891191237123656041883811", - "33563004838548966041561205" + "38699791772178554356530053", + "25563472458023650391609458", + "42280718222306420042012507" ], "fpReserves": [ - "9349152240281780258779436", - "4177777590998617019331189" + "7489145836995321638694090", + "5601636320963586623736547" ], - "mAssetSupply": "108375060935119606595448881", - "LPTokenSupply": "13456986000699200172449662" + "mAssetSupply": "106523186436972793355478646", + "LPTokenSupply": "12978242296697722672614771" }, { "type": "swap_fp_to_mp", - "inputQty": "66793046587084660736", - "outputIndex": 1, - "outputQty": "67222913255444168824", + "inputQty": "1608826374945781504", + "outputIndex": 2, + "outputQty": "1613662385468237021", "swapFee": "0", - "redemptionFee": "26902861564908973", + "redemptionFee": "967219640679186", "mpReserves": [ - "39921877442931133146274376", - "34891124014210400597714987", - "33563004838548966041561205" + "38699791772178554356530053", + "25563472458023650391609458", + "42280716608644034573775486" ], "fpReserves": [ - "9349084983127867986344590", - "4177844384045204103991925" + "7489144224962587173383860", + "5601637929789961569518051" ], - "mAssetSupply": "108374993704868555887923008", - "LPTokenSupply": "13456986000699200172449662" + "mAssetSupply": "106523184825907278530847602", + "LPTokenSupply": "12978242296697722672614771" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "339150544062591157665792", - "outputQty0": "339229981372936855677020", - "outputQty": "336728744129644532402520", + "inputIndex": 1, + "inputQty": "7537822253470348288", + "outputQty0": "7562280356858728562", + "outputQty": "7490880048449281611", "mpReserves": [ - "39921877442931133146274376", - "34891124014210400597714987", - "33902155382611557199226997" + "38699791772178554356530053", + "25563479995845903861957746", + "42280716608644034573775486" ], "fpReserves": [ - "9688314964500804842021610", - "4177844384045204103991925" + "7489151787242944032112422", + "5601637929789961569518051" ], - "mAssetSupply": "108714223686241492743600028", - "LPTokenSupply": "13793714744828844704852182" + "mAssetSupply": "106523192388187635389576164", + "LPTokenSupply": "12978249787577771121896382" }, { - "type": "swap_fp_to_mp", - "inputQty": "59368430381409251622912", + "type": "redeem", "outputIndex": 2, - "outputQty": "59763758944568807098774", - "swapFee": "0", - "redemptionFee": "23920432269339592281", + "inputQty": "140349246037640740864", + "outputQty0": "141601987154360842079", + "outputQty": "141745135340211433898", + "swapFee1": "84209547622584444", + "swapFee2": "84961192292616505", "mpReserves": [ - "39921877442931133146274376", - "34891124014210400597714987", - "33842391623666988392128223" + "38699791772178554356530053", + "25563479995845903861957746", + "42280574863508694362341588" ], "fpReserves": [ - "9628513883827455861317813", - "4237212814426613355614837" + "7489010185255789671270343", + "5601637929789961569518051" ], - "mAssetSupply": "108654446526000413102488512", - "LPTokenSupply": "13793714744828844704852182" + "mAssetSupply": "106523050871161673321350590", + "LPTokenSupply": "12978109446752688243413962" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "56816501014720960", - "outputQty0": "57203581239191324", - "outputQty": "57198963938637658", - "swapFee1": "34089900608832", - "swapFee2": "22881432495676", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "330281849203687056998400", + "outputQty0": "329743509385504349627475", + "outputQty": "328696770196302430512238", + "swapFee": "261286328437369483676", "mpReserves": [ - "39921877385732169207636718", - "34891124014210400597714987", - "33842391623666988392128223" + "38699791772178554356530053", + "25563479995845903861957746", + "42610856712712381419339988" ], "fpReserves": [ - "9628513826623874622126489", - "4237212814426613355614837" + "7818753694641294020897818", + "5272941159593659139005813" ], - "mAssetSupply": "108654446468819713295792864", - "LPTokenSupply": "13793714688015752680192105" + "mAssetSupply": "106852794380547177670978065", + "LPTokenSupply": "12978135575385531980362329" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "371063623230210", - "outputQty0": "373591610483849", - "outputQty": "373561455295233", - "swapFee1": "222638173938", - "swapFee2": "149436644193", + "type": "mint", + "inputIndex": 1, + "inputQty": "121133227314838541172736", + "outputQty0": "121528241935650889365889", + "outputQty": "120336157281147343634173", "mpReserves": [ - "39921877385358607752341485", - "34891124014210400597714987", - "33842391623666988392128223" + "38699791772178554356530053", + "25684613223160742403130482", + "42610856712712381419339988" ], "fpReserves": [ - "9628513826250283011642640", - "4237212814426613355614837" + "7940281936576944910263707", + "5272941159593659139005813" ], - "mAssetSupply": "108654446468446271121953208", - "LPTokenSupply": "13793714687644711320779288" + "mAssetSupply": "106974322622482828560343954", + "LPTokenSupply": "13098471732666679323996502" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "11815167576192210436096", - "outputQty0": "11811391275688291143469", - "outputQty": "11717836565389542538278", - "swapFee": "9379519059342313291", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1573357918024771567616", + "outputQty0": "1588029475972594206549", + "outputQty": "1589677809544211918908", + "swapFee1": "944014750814862940", + "swapFee2": "952817685583556523", "mpReserves": [ - "39933692552934799962777581", - "34891124014210400597714987", - "33842391623666988392128223" + "38699791772178554356530053", + "25684613223160742403130482", + "42609267034902837207421080" ], "fpReserves": [ - "9640325217525971302786109", - "4225494977861223813076559" + "7938693907100972316057158", + "5272941159593659139005813" ], - "mAssetSupply": "108666257859721959413096677", - "LPTokenSupply": "13793715625596617255010617" + "mAssetSupply": "106972735545824541549693928", + "LPTokenSupply": "13096898469150129633915180" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "5753433305752550768640", - "outputQty0": "5792721177613521011076", - "outputQty": "5789713948485923920829", - "swapFee1": "3452059983451530461", - "swapFee2": "2317088471045408404", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1597640202941595968864256", + "outputQty0": "1596041679271934461994992", + "outputQty": "1585993102443839964072288", + "swapFee": "1263884402838132937861", "mpReserves": [ - "39933692552934799962777581", - "34885334300261914673794158", - "33842391623666988392128223" + "40297431975120150325394309", + "25684613223160742403130482", + "42609267034902837207421080" ], "fpReserves": [ - "9634532496348357781775033", - "4225494977861223813076559" + "9534735586372906778052150", + "3686948057149819174933525" ], - "mAssetSupply": "108660467455632816937494005", - "LPTokenSupply": "13787962537496863049395023" + "mAssetSupply": "108568777225096476011688920", + "LPTokenSupply": "13097024857590413447208966" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "39197580188966329516032", - "outputQty0": "39184993651910357973578", - "outputQty": "38895594621862236928953", + "type": "swap_fp_to_mp", + "inputQty": "19536623492616964538368", + "outputIndex": 1, + "outputQty": "19633238353953461524995", + "swapFee": "0", + "redemptionFee": "11827418523874814462", "mpReserves": [ - "39972890133123766292293613", - "34885334300261914673794158", - "33842391623666988392128223" + "40297431975120150325394309", + "25664979984806788941605487", + "42609267034902837207421080" ], "fpReserves": [ - "9673717490000268139748611", - "4225494977861223813076559" + "9515023222166448753947879", + "3706484680642436139471893" ], - "mAssetSupply": "108699652449284727295467583", - "LPTokenSupply": "13826858132118725286323976" + "mAssetSupply": "108549076688308541862399111", + "LPTokenSupply": "13097024857590413447208966" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "29842643722133674393600", - "outputQty0": "30046704448278363012110", - "outputQty": "30027815306354318518724", - "swapFee1": "17905586233280204636", - "swapFee2": "12018681779311345204", + "outputIndex": 0, + "inputQty": "385918606850010054656", + "outputQty0": "390328250545967481463", + "outputQty": "390528562385905500900", + "swapFee1": "231551164110006032", + "swapFee2": "234196950327580488", "mpReserves": [ - "39972890133123766292293613", - "34885334300261914673794158", - "33812363808360634073609499" + "40297041446557764419893409", + "25664979984806788941605487", + "42609267034902837207421080" ], "fpReserves": [ - "9643670785551989776736501", - "4225494977861223813076559" + "9514632893915902786466416", + "3706484680642436139471893" ], - "mAssetSupply": "108669617763518228243800677", - "LPTokenSupply": "13797017278955214939950839" + "mAssetSupply": "108548686594254946222498136", + "LPTokenSupply": "13096638962138679848154913" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3462355317848757764096", - "outputQty0": "3462768771694198076852", - "outputQty": "3437203327259297056308", + "type": "redeem", + "outputIndex": 0, + "inputQty": "178803082314772557856768", + "outputQty0": "180838421597879829335135", + "outputQty": "180929001608003523963079", + "swapFee1": "107281849388863534714", + "swapFee2": "108503052958727897601", "mpReserves": [ - "39972890133123766292293613", - "34888796655579763431558254", - "33812363808360634073609499" + "40116112444949760895930330", + "25664979984806788941605487", + "42609267034902837207421080" ], "fpReserves": [ - "9647133554323683974813353", - "4225494977861223813076559" + "9333794472318022957131281", + "3706484680642436139471893" ], - "mAssetSupply": "108673080532289922441877529", - "LPTokenSupply": "13800454482282474237007147" + "mAssetSupply": "108367956675710025121060602", + "LPTokenSupply": "12917846608008846176651616" }, { "type": "swap_fp_to_mp", - "inputQty": "405200267706627260416", + "inputQty": "42276445735337", "outputIndex": 0, - "outputQty": "408091474369074389536", + "outputQty": "42662229556683", "swapFee": "0", - "redemptionFee": "163249175663911155", + "redemptionFee": "25584837123", "mpReserves": [ - "39972482041649397217904077", - "34888796655579763431558254", - "33812363808360634073609499" + "40116112444907098666373647", + "25664979984806788941605487", + "42609267034902837207421080" ], "fpReserves": [ - "9646725431384524196925839", - "4225900178128930440336975" + "9333794472275381561924679", + "3706484680684712585207230" ], - "mAssetSupply": "108672672572599938327901170", - "LPTokenSupply": "13800454482282474237007147" + "mAssetSupply": "108367956675667409310691123", + "LPTokenSupply": "12917846608008846176651616" }, { "type": "swap_fp_to_mp", - "inputQty": "814161801107928", + "inputQty": "2133170410115585015808", "outputIndex": 2, - "outputQty": "819517032413130", + "outputQty": "2153630305758433152517", "swapFee": "0", - "redemptionFee": "328013406991", - "mpReserves": [ - "39972482041649397217904077", - "34888796655579763431558254", - "33812363807541117041196369" - ], - "fpReserves": [ - "9646725430564490679447419", - "4225900178943092241444903" - ], - "mAssetSupply": "108672672571780232823829741", - "LPTokenSupply": "13800454482282474237007147" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "523452597336940281856", - "outputQty0": "523572970633952844325", - "outputQty": "519407538251577120507", - "swapFee": "415765850339143765", + "redemptionFee": "1290942917347040340", "mpReserves": [ - "39972482041649397217904077", - "34888796655579763431558254", - "33812887260138453981478225" + "40116112444907098666373647", + "25664979984806788941605487", + "42607113404597078774268563" ], "fpReserves": [ - "9647249003535124632291744", - "4225380771404840664324396" + "9331642900746469828023910", + "3708617851094828170223038" ], - "mAssetSupply": "108673196144750866776674066", - "LPTokenSupply": "13800454523859059270921523" + "mAssetSupply": "108365806395081414923830694", + "LPTokenSupply": "12917846608008846176651616" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "1161229710087189037056", - "outputQty0": "1169165642372781889895", - "outputQty": "1169075437477875732815", - "swapFee1": "696737826052313422", - "swapFee2": "467666256949112755", + "inputQty": "3505694312968180727808", + "outputQty0": "3545459593038126101458", + "outputQty": "3547191469637057119650", + "swapFee1": "2103416587780908436", + "swapFee2": "2127275755822875660", "mpReserves": [ - "39971312966211919342171262", - "34888796655579763431558254", - "33812887260138453981478225" + "40112565253437461609253997", + "25664979984806788941605487", + "42607113404597078774268563" ], "fpReserves": [ - "9646079837892751850401849", - "4225380771404840664324396" + "9328097441153431701922452", + "3708617851094828170223038" ], - "mAssetSupply": "108672027446774750943896926", - "LPTokenSupply": "13799293363822754687115809" + "mAssetSupply": "108362263062764132620604896", + "LPTokenSupply": "12914341124037536774014651" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7114201476480997785600", - "outputQty0": "7111903409144058881729", - "outputQty": "7059382640925956911212", - "mpReserves": [ - "39978427167688400339956862", - "34888796655579763431558254", - "33812887260138453981478225" - ], - "fpReserves": [ - "9653191741301895909283578", - "4225380771404840664324396" - ], - "mAssetSupply": "108679139350183895002778655", - "LPTokenSupply": "13806352746463680644027021" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "259444104996948346404864", - "outputQty0": "259501419303686589404946", - "outputQty": "257274903547960377010115", - "swapFee": "206056410866464132202", + "inputIndex": 1, + "inputQty": "9114844808315173601280", + "outputQty0": "9145907477765398545652", + "outputQty": "9037889228616250517662", "mpReserves": [ - "39978427167688400339956862", - "34888796655579763431558254", - "34072331365135402327883089" + "40112565253437461609253997", + "25674094829615104115206767", + "42607113404597078774268563" ], "fpReserves": [ - "9912693160605582498688524", - "3968105867856880287314281" + "9337243348631197100468104", + "3708617851094828170223038" ], - "mAssetSupply": "108938640769487581592183601", - "LPTokenSupply": "13806373352104767290440241" + "mAssetSupply": "108371408970241898019150548", + "LPTokenSupply": "12923379013266153024532313" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "4402348429213853184", - "outputQty0": "4402913080064893937", - "outputQty": "4368679977224211383", + "inputIndex": 2, + "inputQty": "188402421337159882506240", + "outputQty0": "188107354885724920335518", + "outputQty": "185877047606353128694263", "mpReserves": [ - "39978427167688400339956862", - "34888801057928192645411438", - "34072331365135402327883089" + "40112565253437461609253997", + "25674094829615104115206767", + "42795515825934238656774803" ], "fpReserves": [ - "9912697563518662563582461", - "3968105867856880287314281" + "9525350703516922020803622", + "3708617851094828170223038" ], - "mAssetSupply": "108938645172400661657077538", - "LPTokenSupply": "13806377720784744514651624" + "mAssetSupply": "108559516325127622939486066", + "LPTokenSupply": "13109256060872506153226576" }, { "type": "mint", "inputIndex": 1, - "inputQty": "569224223831683137273856", - "outputQty0": "569286520451377361986850", - "outputQty": "564789379835863497428902", + "inputQty": "19336033489622606544896", + "outputQty0": "19402253746312701011050", + "outputQty": "19171271851694196302449", "mpReserves": [ - "39978427167688400339956862", - "35458025281759875782685294", - "34072331365135402327883089" + "40112565253437461609253997", + "25693430863104726721751663", + "42795515825934238656774803" ], "fpReserves": [ - "10481984083970039925569311", - "3968105867856880287314281" + "9544752957263234721814672", + "3708617851094828170223038" ], - "mAssetSupply": "109507931692852039019064388", - "LPTokenSupply": "14371167100620608012080526" + "mAssetSupply": "108578918578873935640497116", + "LPTokenSupply": "13128427332724200349529025" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "222302467866800717824", - "outputQty0": "222236084583309270978", - "outputQty": "219989174661585428423", - "swapFee": "176362335469972952", + "inputQty": "57955971564067479552", + "outputQty0": "57893753789923450508", + "outputQty": "57332743024820699912", + "swapFee": "45763417887859023", "mpReserves": [ - "39978649470156267140674686", - "35458025281759875782685294", - "34072331365135402327883089" + "40112623209409025676733549", + "25693430863104726721751663", + "42795515825934238656774803" ], "fpReserves": [ - "10482206320054623234840289", - "3967885878682218701885858" + "9544810851017024645265180", + "3708560518351803349523126" ], - "mAssetSupply": "109508153928936622328335366", - "LPTokenSupply": "14371167118256841559077821" + "mAssetSupply": "108578976472627725563947624", + "LPTokenSupply": "13128427337300542138314927" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "81741682639237332074496", - "outputQty0": "81760318678445593948624", - "outputQty": "80914319184689693493233", - "swapFee": "64882254051030549903", + "type": "redeem", + "outputIndex": 0, + "inputQty": "3233019857717533605888", + "outputQty0": "3270021924436999883829", + "outputQty": "3271571342408247684380", + "swapFee1": "1939811914630520163", + "swapFee2": "1962013154662199930", "mpReserves": [ - "39978649470156267140674686", - "35458025281759875782685294", - "34154073047774639659957585" + "40109351638066617429049169", + "25693430863104726721751663", + "42795515825934238656774803" ], "fpReserves": [ - "10563966638733068828788913", - "3886971559497529008392625" + "9541540829092587645381351", + "3708560518351803349523126" ], - "mAssetSupply": "109589914247615067922283990", - "LPTokenSupply": "14371173606482246662132811" + "mAssetSupply": "108575708412716443226263725", + "LPTokenSupply": "13125194511424016067761055" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "45851495875823673344", - "outputQty0": "45837918197763895299", - "outputQty": "45463932049154983236", + "inputIndex": 1, + "inputQty": "10032317591628845940736", + "outputQty0": "10066615861289368984324", + "outputQty": "9946717797985744206190", "mpReserves": [ - "39978695321652142964348030", - "35458025281759875782685294", - "34154073047774639659957585" + "40109351638066617429049169", + "25703463180696355567692399", + "42795515825934238656774803" ], "fpReserves": [ - "10564012476651266592684212", - "3886971559497529008392625" + "9551607444953877014365675", + "3708560518351803349523126" ], - "mAssetSupply": "109589960085533265686179289", - "LPTokenSupply": "14371219070414295817116047" + "mAssetSupply": "108585775028577732595248049", + "LPTokenSupply": "13135141229222001811967245" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "12073131053816668487680", - "outputQty0": "12075843655470044872004", - "outputQty": "11977285960398350373461", + "inputIndex": 1, + "inputQty": "216215731214104475467776", + "outputQty0": "216945749227287739060256", + "outputQty": "214350385877853738197575", "mpReserves": [ - "39978695321652142964348030", - "35458025281759875782685294", - "34166146178828456328445265" + "40109351638066617429049169", + "25919678911910460043160175", + "42795515825934238656774803" ], "fpReserves": [ - "10576088320306736637556216", - "3886971559497529008392625" + "9768553194181164753425931", + "3708560518351803349523126" ], - "mAssetSupply": "109602035929188735731051293", - "LPTokenSupply": "14383196356374694167489508" + "mAssetSupply": "108802720777805020334308305", + "LPTokenSupply": "13349491615099855550164820" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "19036096687835994652672", - "outputQty0": "19040352900440557574218", - "outputQty": "18884823183357348832207", + "type": "redeem", + "outputIndex": 1, + "inputQty": "134149636989626565525504", + "outputQty0": "135695052343725607440528", + "outputQty": "135159340012749822419851", + "swapFee1": "80489782193775939315", + "swapFee2": "81417031406235364464", "mpReserves": [ - "39978695321652142964348030", - "35458025281759875782685294", - "34185182275516292323097937" + "40109351638066617429049169", + "25784519571897710220740324", + "42795515825934238656774803" ], "fpReserves": [ - "10595128673207177195130434", - "3886971559497529008392625" + "9632858141837439145985403", + "3708560518351803349523126" ], - "mAssetSupply": "109621076282089176288625511", - "LPTokenSupply": "14402081179558051516321715" + "mAssetSupply": "108667107142492700962232241", + "LPTokenSupply": "13215350027088448362233247" }, { - "type": "swap_fp_to_mp", - "inputQty": "606141005076315504640", - "outputIndex": 2, - "outputQty": "611786326550421187995", - "swapFee": "0", - "redemptionFee": "244867033747078459", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "42934362049180655616", + "outputQty0": "42867164131223427580", + "outputQty": "42445490321746259030", + "swapFee": "33883715671635179", "mpReserves": [ - "39978695321652142964348030", - "35458025281759875782685294", - "34184570489189741901909942" + "40109351638066617429049169", + "25784519571897710220740324", + "42795558760296287837430419" ], "fpReserves": [ - "10594516505622809498982201", - "3887577700502605323897265" + "9632901009001570369412983", + "3708518072861481603264096" ], - "mAssetSupply": "109620464359371842339555737", - "LPTokenSupply": "14402081179558051516321715" + "mAssetSupply": "108667150009656832185659821", + "LPTokenSupply": "13215350030476819929396764" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "297990830858003302842368", - "outputQty0": "300245610715978644622830", - "outputQty": "300094197780631053624342", - "swapFee1": "178794498514801981705", - "swapFee2": "120098244286391457849", + "type": "mint", + "inputIndex": 1, + "inputQty": "3639448144521243656192", + "outputQty0": "3651770273038435419980", + "outputQty": "3608106402666518363738", "mpReserves": [ - "39978695321652142964348030", - "35157931083979244729060952", - "34184570489189741901909942" + "40109351638066617429049169", + "25788159020042231464396516", + "42795558760296287837430419" ], "fpReserves": [ - "10294270894906830854359371", - "3887577700502605323897265" + "9636552779274608804832963", + "3708518072861481603264096" ], - "mAssetSupply": "109320338846900150086390756", - "LPTokenSupply": "14104108228149899693677517" + "mAssetSupply": "108670801779929870621079801", + "LPTokenSupply": "13218958136879486447760502" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4697370387058174459904", - "outputQty0": "4698369806003309200130", - "outputQty": "4660542364424909555168", + "type": "swap_fp_to_mp", + "inputQty": "374316678068679900921856", + "outputIndex": 0, + "outputQty": "377507733438609415341365", + "swapFee": "0", + "redemptionFee": "226405762023707741758", "mpReserves": [ - "39978695321652142964348030", - "35157931083979244729060952", - "34189267859576800076369846" + "39731843904628008013707804", + "25788159020042231464396516", + "42795558760296287837430419" ], "fpReserves": [ - "10298969264712834163559501", - "3887577700502605323897265" + "9259209842568429235235252", + "4082834750930161504185952" ], - "mAssetSupply": "109325037216706153395590886", - "LPTokenSupply": "14108768770514324603232685" + "mAssetSupply": "108293685248985714759223848", + "LPTokenSupply": "13218958136879486447760502" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "54823751248142716108800", - "outputQty0": "54829921212525374611490", - "outputQty": "54264146843293601967321", - "swapFee": "43510201693923357753", + "inputIndex": 0, + "inputQty": "11917396643713984", + "outputQty0": "11905355485672768", + "outputQty": "11811681984253266", + "swapFee": "9415890867271", "mpReserves": [ - "39978695321652142964348030", - "35212754835227387445169752", - "34189267859576800076369846" + "39731843916545404657421788", + "25788159020042231464396516", + "42795558760296287837430419" ], "fpReserves": [ - "10353799185925359538170991", - "3833313553659311721929944" + "9259209854473784720908020", + "4082834739118479519932686" ], - "mAssetSupply": "109379867137918678770202376", - "LPTokenSupply": "14108773121534493995568460" + "mAssetSupply": "108293685260891070244896616", + "LPTokenSupply": "13218958136880428036847229" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "8388429774766432321536", - "outputQty0": "8452216575172753105193", - "outputQty": "8447897837108312802168", - "swapFee1": "5033057864859859392", - "swapFee2": "3380886630069101242", + "type": "swap_fp_to_mp", + "inputQty": "198377884492669124608", + "outputIndex": 0, + "outputQty": "199873154253267512109", + "swapFee": "0", + "redemptionFee": "119874649697750810", "mpReserves": [ - "39978695321652142964348030", - "35204306937390279132367584", - "34189267859576800076369846" + "39731644043391151389909679", + "25788159020042231464396516", + "42795558760296287837430419" ], "fpReserves": [ - "10345346969350186785065798", - "3833313553659311721929944" + "9259010063390955136224225", + "4083033117002972189057294" ], - "mAssetSupply": "109371418302230136086198425", - "LPTokenSupply": "14100385195065514049232863" + "mAssetSupply": "108293485589682890357963631", + "LPTokenSupply": "13218958136880428036847229" }, { "type": "swap_fp_to_mp", - "inputQty": "7018722514351328067584", - "outputIndex": 0, - "outputQty": "7086452676464449114028", + "inputQty": "21391560306703365832704", + "outputIndex": 2, + "outputQty": "21564124791040803911436", "swapFee": "0", - "redemptionFee": "2834858220390115351", + "redemptionFee": "12925719946756884027", "mpReserves": [ - "39971608868975678515234002", - "35204306937390279132367584", - "34189267859576800076369846" + "39731644043391151389909679", + "25788159020042231464396516", + "42773994635505247033518983" ], "fpReserves": [ - "10338259823799211496686840", - "3840332276173663049997528" + "9237467196813026996178543", + "4104424677309675554889998" ], - "mAssetSupply": "109364333991537381187934818", - "LPTokenSupply": "14100385195065514049232863" + "mAssetSupply": "108271955648824908974801976", + "LPTokenSupply": "13218958136880428036847229" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "191206697111018635264", - "outputQty0": "192658082769030446417", - "outputQty": "192539827277723014048", - "swapFee1": "114724018266611181", - "swapFee2": "77063233107612178", + "outputIndex": 1, + "inputQty": "26621128109266087936", + "outputQty0": "26910595790791783825", + "outputQty": "26804954618852242638", + "swapFee1": "15972676865559652", + "swapFee2": "16146357474475070", "mpReserves": [ - "39971608868975678515234002", - "35204306937390279132367584", - "34189075319749522353355798" + "39731644043391151389909679", + "25788132215087612612153878", + "42773994635505247033518983" ], "fpReserves": [ - "10338067165716442466240423", - "3840332276173663049997528" + "9237440286217236204394718", + "4104424677309675554889998" ], - "mAssetSupply": "109364141410517845265100579", - "LPTokenSupply": "14100193999840804857258717" + "mAssetSupply": "108271928754375475657493221", + "LPTokenSupply": "13218931517349586457315258" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1670495201559803854848", - "outputQty0": "1670680668141926201383", - "outputQty": "1653255138618437478479", - "swapFee": "1325679366843122458", + "type": "redeem", + "outputIndex": 1, + "inputQty": "2775178391739474944", + "outputQty0": "2805354575380938189", + "outputQty": "2794341762443793026", + "swapFee1": "1665107035043684", + "swapFee2": "1683212745228562", "mpReserves": [ - "39971608868975678515234002", - "35205977432591838936222432", - "34189075319749522353355798" + "39731644043391151389909679", + "25788129420745850168360852", + "42773994635505247033518983" ], "fpReserves": [ - "10339737846384584392441806", - "3838679021035044612519049" + "9237437480862660823456529", + "4104424677309675554889998" ], - "mAssetSupply": "109365812091185987191301962", - "LPTokenSupply": "14100194132408741541570962" + "mAssetSupply": "108271925950704113021783594", + "LPTokenSupply": "13218928742337705421344682" }, { "type": "swap_fp_to_mp", - "inputQty": "2661209047064195295608832", + "inputQty": "716274237665211307786240", "outputIndex": 2, - "outputQty": "2671460130042121790926272", + "outputQty": "720945502867834037263412", "swapFee": "0", - "redemptionFee": "1069345923735941369377", + "redemptionFee": "432160948653182919025", "mpReserves": [ - "39971608868975678515234002", - "35205977432591838936222432", - "31517615189707400562429526" + "39731644043391151389909679", + "25788129420745850168360852", + "42053049132637412996255571" ], "fpReserves": [ - "7666373037044730968997340", - "6499888068099239908127881" + "8517169233107355958413468", + "4820698914974886862676238" ], - "mAssetSupply": "106693516627769869709226873", - "LPTokenSupply": "14100194132408741541570962" + "mAssetSupply": "107552089863897461339659558", + "LPTokenSupply": "13218928742337705421344682" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "3304096416283051425792", - "outputQty0": "3302816725303995389424", - "outputQty": "3296517735651434603345", - "swapFee": "2628594976501959802", + "type": "swap_fp_to_mp", + "inputQty": "608797555498559733760", + "outputIndex": 2, + "outputQty": "611968076898863532377", + "swapFee": "0", + "redemptionFee": "366852573181422830", "mpReserves": [ - "39974912965391961566659794", - "35205977432591838936222432", - "31517615189707400562429526" + "39731644043391151389909679", + "25788129420745850168360852", + "42052437164560514132723194" ], "fpReserves": [ - "7669675853770034964386764", - "6496591550363588473524536" + "8516557812152053587029734", + "4821307712530385422409998" ], - "mAssetSupply": "106696819444495173704616297", - "LPTokenSupply": "14100194395268239191766942" + "mAssetSupply": "107551478809794732149698654", + "LPTokenSupply": "13218928742337705421344682" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "9681310953719138877440", - "outputQty0": "9725781234019392335093", - "outputQty": "9725656101665257209833", - "swapFee1": "5808786572231483326", - "swapFee2": "3890312493607756934", - "mpReserves": [ - "39965187309290296309449961", - "35205977432591838936222432", - "31517615189707400562429526" - ], - "fpReserves": [ - "7659950072536015572051671", - "6496591550363588473524536" - ], - "mAssetSupply": "106687097553573647920038138", - "LPTokenSupply": "14090513665193177276037834" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "8237989486418150293504", - "outputIndex": 0, - "outputQty": "8246906385793132229211", - "swapFee": "0", - "redemptionFee": "3298806525108611260", + "outputIndex": 1, + "inputQty": "1992400345135012352", + "outputQty0": "2012249511094487820", + "outputQty": "2004517733135322869", + "swapFee1": "1195440207081007", + "swapFee2": "1207349706656692", "mpReserves": [ - "39956940402904503177220750", - "35205977432591838936222432", - "31517615189707400562429526" + "39731644043391151389909679", + "25788127416228117033037983", + "42052437164560514132723194" ], "fpReserves": [ - "7651703056223244043900607", - "6504829539850006623818040" + "8516555799902542492541914", + "4821307712530385422409998" ], - "mAssetSupply": "106678853836067401500498334", - "LPTokenSupply": "14090513665193177276037834" + "mAssetSupply": "107551476798752570761867526", + "LPTokenSupply": "13218926750056904307040430" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "9850433116265940779008", - "outputQty0": "9854530711705195400256", - "outputQty": "9835854012473965723035", - "swapFee": "7842923519646739729", + "inputIndex": 1, + "inputQty": "23890237774676128432128", + "outputQty0": "23967892683272995502290", + "outputQty": "23845100610602599969328", + "swapFee": "18973692292950764537", "mpReserves": [ - "39956940402904503177220750", - "35205977432591838936222432", - "31527465622823666503208534" + "39731644043391151389909679", + "25812017654002793161470111", + "42052437164560514132723194" ], "fpReserves": [ - "7661557586934949239300863", - "6494993685837532658095005" + "8540523692585815488044204", + "4797462611919782822440670" ], - "mAssetSupply": "106688708366779106695898590", - "LPTokenSupply": "14090514449485529240711806" + "mAssetSupply": "107575444691435843757369816", + "LPTokenSupply": "13218928647426133602116883" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "436328478105792774406144", - "outputQty0": "436330460735282913763145", - "outputQty": "435310032701101563641479", - "swapFee": "347229264336890704460", + "inputQty": "305136312890381823901696", + "outputQty0": "306109965468736374662993", + "outputQty": "302881347243585305509074", "mpReserves": [ - "39956940402904503177220750", - "35642305910697631710628576", - "31527465622823666503208534" + "39731644043391151389909679", + "26117153966893174985371807", + "42052437164560514132723194" ], "fpReserves": [ - "8097888047670232153064008", - "6059683653136431094453526" + "8846633658054551862707197", + "4797462611919782822440670" ], - "mAssetSupply": "107125038827514389609661735", - "LPTokenSupply": "14090549172411962929782252" + "mAssetSupply": "107881554656904580132032809", + "LPTokenSupply": "13521809994669718907625957" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "343507755594180525555712", - "outputQty0": "343651011974561270835189", - "outputQty": "342566249951482875062744", - "swapFee": "273368508904268162027", + "type": "swap_fp_to_mp", + "inputQty": "10598165039305381888", + "outputIndex": 1, + "outputQty": "10608634424586080802", + "swapFee": "0", + "redemptionFee": "6388976456924691", "mpReserves": [ - "39956940402904503177220750", - "35642305910697631710628576", - "31870973378417847028764246" + "39731644043391151389909679", + "26117143358258750399291005", + "42052437164560514132723194" ], "fpReserves": [ - "8441539059644793423899197", - "5717117403184948219390782" + "8846623009760456988222110", + "4797473210084822127822558" ], - "mAssetSupply": "107468689839488950880496924", - "LPTokenSupply": "14090576509262853356598454" + "mAssetSupply": "107881544014999461714472413", + "LPTokenSupply": "13521809994669718907625957" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "41127528894736023683072", - "outputQty0": "41346988268574276149275", - "outputQty": "41313730049427338027123", - "swapFee1": "24676517336841614209", - "swapFee2": "16538795307429710459", + "type": "mint", + "inputIndex": 1, + "inputQty": "978513351727448195072", + "outputQty0": "981581987513648292080", + "outputQty": "971169119066653359209", "mpReserves": [ - "39956940402904503177220750", - "35642305910697631710628576", - "31829659648368419690737123" + "39731644043391151389909679", + "26118121871610477847486077", + "42052437164560514132723194" ], "fpReserves": [ - "8400192071376219147749922", - "5717117403184948219390782" + "8847604591747970636514190", + "4797473210084822127822558" ], - "mAssetSupply": "107427359390015684034058108", - "LPTokenSupply": "14049451448019851017076802" + "mAssetSupply": "107882525596986975362764493", + "LPTokenSupply": "13522781163788785560985166" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "69893523337594840023040", - "outputQty0": "69921727892665496489324", - "outputQty": "69508383781030168175419", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1395099564341782642688", + "outputQty0": "1399474034561780510633", + "outputQty": "1391766758679814747187", + "swapFee": "1107701922827708877", "mpReserves": [ - "39956940402904503177220750", - "35642305910697631710628576", - "31899553171706014530760163" + "39731644043391151389909679", + "26119516971174819630128765", + "42052437164560514132723194" ], "fpReserves": [ - "8470113799268884644239246", - "5717117403184948219390782" + "8849004065782532417024823", + "4796081443326142313075371" ], - "mAssetSupply": "107497281117908349530547432", - "LPTokenSupply": "14118959831800881185252221" + "mAssetSupply": "107883925071021537143275126", + "LPTokenSupply": "13522781274558977843756053" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "654828575388889776128", - "outputQty0": "654831095149716642264", - "outputQty": "652494586405621902080", - "swapFee": "520761064783540823", + "inputQty": "281932808779341609566208", + "outputQty0": "282802792517480599868141", + "outputQty": "281110678621104706121307", + "swapFee": "223829190251893953468", "mpReserves": [ - "39956940402904503177220750", - "35642960739273020600404704", - "31899553171706014530760163" + "39731644043391151389909679", + "26401449779954161239694973", + "42052437164560514132723194" ], "fpReserves": [ - "8470768630364034360881510", - "5716464908598542597488702" + "9131806858300013016892964", + "4514970764705037606954064" ], - "mAssetSupply": "107497935949003499247189696", - "LPTokenSupply": "14118959883876987663606303" + "mAssetSupply": "108166727863539017743143267", + "LPTokenSupply": "13522803657478003033151399" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "4811377827604513947648", - "outputQty0": "4837148404494728471329", - "outputQty": "4836960704548766286034", - "swapFee1": "2886826696562708368", - "swapFee2": "1934859361797891388", + "type": "mint", + "inputIndex": 1, + "inputQty": "14339894367804966567936", + "outputQty0": "14383404348486408788265", + "outputQty": "14225786665411317046700", "mpReserves": [ - "39952103442199954410934716", - "35642960739273020600404704", - "31899553171706014530760163" + "39731644043391151389909679", + "26415789674321966206262909", + "42052437164560514132723194" ], "fpReserves": [ - "8465931481959539632410181", - "5716464908598542597488702" + "9146190262648499425681229", + "4514970764705037606954064" ], - "mAssetSupply": "107493100735458366316609755", - "LPTokenSupply": "14114148794732052805929491" + "mAssetSupply": "108181111267887504151931532", + "LPTokenSupply": "13537029444143414350198099" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "1063647452672637665280", - "outputQty0": "1069343534495361523280", - "outputQty": "1069301876640660057416", - "swapFee1": "638188471603582599", - "swapFee2": "427737413798144609", + "inputQty": "3874254906822589677568", + "outputQty0": "3914838647990335674186", + "outputQty": "3916336985232340141421", + "swapFee1": "2324552944093553806", + "swapFee2": "2348903188794201404", "mpReserves": [ - "39951034140323313750877300", - "35642960739273020600404704", - "31899553171706014530760163" + "39727727706405919049768258", + "26415789674321966206262909", + "42052437164560514132723194" ], "fpReserves": [ - "8464862138425044270886901", - "5716464908598542597488702" + "9142275424000509090007043", + "4514970764705037606954064" ], - "mAssetSupply": "107492031819661284753231084", - "LPTokenSupply": "14113085211098227328622470" + "mAssetSupply": "108177198778142702610458750", + "LPTokenSupply": "13533155421691886169875911" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "380240774922651930984448", - "outputQty0": "382249010340868269169585", - "outputQty": "381937184742366105783868", - "swapFee1": "228144464953591158590", - "swapFee2": "152899604136347307667", + "type": "swap_fp_to_mp", + "inputQty": "8908015735161766281216", + "outputIndex": 1, + "outputQty": "8926466644542192338925", + "swapFee": "0", + "redemptionFee": "5375348623380590857", "mpReserves": [ - "39951034140323313750877300", - "35642960739273020600404704", - "31517615986963648424976295" + "39727727706405919049768258", + "26406863207677424013923984", + "42052437164560514132723194" ], "fpReserves": [ - "8082613128084176001717316", - "5716464908598542597488702" + "9133316509628208105244632", + "4523878780440199373235280" ], - "mAssetSupply": "107109935708924552831369166", - "LPTokenSupply": "13732867250622070756753881" + "mAssetSupply": "108168245239119025006287196", + "LPTokenSupply": "13533155421691886169875911" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "4424352563058017", - "outputQty0": "4447456882846179", - "outputQty": "4445721835202532", - "swapFee1": "2654611537834", - "swapFee2": "1778982753138", + "inputQty": "40486225027787661312", + "outputQty0": "40909848783419213785", + "outputQty": "40761617117661055984", + "swapFee1": "24291735016672596", + "swapFee2": "24545909270051528", "mpReserves": [ - "39951034140323313750877300", - "35642960734827298765202172", - "31517615986963648424976295" + "39727727706405919049768258", + "26406822446060306352868000", + "42052437164560514132723194" ], "fpReserves": [ - "8082613123636719118871137", - "5716464908598542597488702" + "9133275599779424686030847", + "4523878780440199373235280" ], - "mAssetSupply": "107109935704478874931276125", - "LPTokenSupply": "13732867246197983654849647" + "mAssetSupply": "108168204353816150857124939", + "LPTokenSupply": "13533114937896031883881858" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "58973345485834774642688", - "outputQty0": "59280618721823605812106", - "outputQty": "59257381169590479706484", - "swapFee1": "35384007291500864785", - "swapFee2": "23712247488729442324", + "inputQty": "9659576772311810048", + "outputQty0": "9760648747390854994", + "outputQty": "9725282186008469299", + "swapFee1": "5795746063387086", + "swapFee2": "5856389248434512", "mpReserves": [ - "39951034140323313750877300", - "35583703353657708285495688", - "31517615986963648424976295" + "39727727706405919049768258", + "26406812720778120344398701", + "42052437164560514132723194" ], "fpReserves": [ - "8023332504914895513059031", - "5716464908598542597488702" + "9133265839130677295175853", + "4523878780440199373235280" ], - "mAssetSupply": "107050678798004540054906343", - "LPTokenSupply": "13673897439112878030293437" + "mAssetSupply": "108168194599023792714704457", + "LPTokenSupply": "13533105278898834178410518" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "279426214848985497600", - "outputQty0": "279424497490997493214", - "outputQty": "277811930654544654323", + "inputIndex": 0, + "inputQty": "536799450872687408185344", + "outputQty0": "536252193463619977881472", + "outputQty": "530322962914286017270638", "mpReserves": [ - "39951034140323313750877300", - "35583982779872557270993288", - "31517615986963648424976295" + "40264527157278606457953602", + "26406812720778120344398701", + "42052437164560514132723194" ], "fpReserves": [ - "8023611929412386510552245", - "5716464908598542597488702" + "9669518032594297273057325", + "4523878780440199373235280" ], - "mAssetSupply": "107050958222502031052399557", - "LPTokenSupply": "13674175251043532574947760" + "mAssetSupply": "108704446792487412692585929", + "LPTokenSupply": "14063428241813120195681156" }, { "type": "swap_fp_to_mp", - "inputQty": "80609964804249514672128", - "outputIndex": 2, - "outputQty": "80725292049075436670983", + "inputQty": "108400538454364440756224", + "outputIndex": 1, + "outputQty": "108664238368041485579468", "swapFee": "0", - "redemptionFee": "32317027027184362740", + "redemptionFee": "65440784100312917045", "mpReserves": [ - "39951034140323313750877300", - "35583982779872557270993288", - "31436890694914572988305312" + "40264527157278606457953602", + "26298148482410078858819233", + "42052437164560514132723194" ], "fpReserves": [ - "7942819361844425603700376", - "5797074873402792112160830" + "9560450059093775744647823", + "4632279318894563813991504" ], - "mAssetSupply": "106970197971961097329910428", - "LPTokenSupply": "13674175251043532574947760" + "mAssetSupply": "108595444259770991477093472", + "LPTokenSupply": "14063428241813120195681156" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "27429379220118589440", - "outputQty0": "27441349687872147291", - "outputQty": "27359898203374525507", - "swapFee": "21828048913141464", - "mpReserves": [ - "39951034140323313750877300", - "35583982779872557270993288", - "31436918124293793106894752" - ], - "fpReserves": [ - "7942846803194113475847667", - "5797047513504588737635323" - ], - "mAssetSupply": "106970225413310785202057719", - "LPTokenSupply": "13674175253226337466261906" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "96177796053419975245824", - "outputQty0": "96668806587273215605729", - "outputQty": "96666451786793743209774", - "swapFee1": "57706677632051985147", - "swapFee2": "38667522634909286242", + "inputQty": "97305609987310632960", + "outputQty0": "97168983704720035836", + "outputQty": "96516946821775548824", + "swapFee": "76877691022562677", "mpReserves": [ - "39854367688536520007667526", - "35583982779872557270993288", - "31436918124293793106894752" + "40264527157278606457953602", + "26298148482410078858819233", + "42052534470170501443356154" ], "fpReserves": [ - "7846177996606840260241938", - "5797047513504588737635323" + "9560547228077480464683659", + "4632182801947742038442680" ], - "mAssetSupply": "106873595274246146895738232", - "LPTokenSupply": "13578003227840680696214596" + "mAssetSupply": "108595541428754696197129308", + "LPTokenSupply": "14063428249500889297937423" }, { "type": "mint", "inputIndex": 2, - "inputQty": "619647197892150", - "outputQty0": "619915599203133", - "outputQty": "616406339624433", + "inputQty": "23076567848506890387456", + "outputQty0": "23044132426079832567767", + "outputQty": "22789826229925531922962", "mpReserves": [ - "39854367688536520007667526", - "35583982779872557270993288", - "31436918124913440304786902" + "40264527157278606457953602", + "26298148482410078858819233", + "42075611038019008333743610" ], "fpReserves": [ - "7846177997226755859445071", - "5797047513504588737635323" + "9583591360503560297251426", + "4632182801947742038442680" ], - "mAssetSupply": "106873595274866062494941365", - "LPTokenSupply": "13578003228457087035839029" + "mAssetSupply": "108618585561180776029697075", + "LPTokenSupply": "14086218075730814829860385" }, { - "type": "swap_fp_to_mp", - "inputQty": "3111521068863352471552", - "outputIndex": 1, - "outputQty": "3116782553254914570344", - "swapFee": "0", - "redemptionFee": "1247197355339261693", + "type": "redeem", + "outputIndex": 2, + "inputQty": "17045267109830165790720", + "outputQty0": "17225149770274944716950", + "outputQty": "17239051491610840367611", + "swapFee1": "10227160265898099474", + "swapFee2": "10335089862164966830", "mpReserves": [ - "39854367688536520007667526", - "35580865997319302356422944", - "31436918124913440304786902" + "40264527157278606457953602", + "26298148482410078858819233", + "42058371986527397493375999" ], "fpReserves": [ - "7843060003838407705210311", - "5800159034573452090106875" + "9566366210733285352534476", + "4632182801947742038442680" ], - "mAssetSupply": "106870478528675069679968298", - "LPTokenSupply": "13578003228457087035839029" + "mAssetSupply": "108601370746500363249946955", + "LPTokenSupply": "14069173831337011253879612" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "19990341744622447886336", - "outputQty0": "19982870260256710220815", - "outputQty": "19869728723168240589607", + "inputIndex": 2, + "inputQty": "20227051835760043884544", + "outputQty0": "20198610308612385665744", + "outputQty": "19975658262492176010474", "mpReserves": [ - "39874358030281142455553862", - "35580865997319302356422944", - "31436918124913440304786902" + "40264527157278606457953602", + "26298148482410078858819233", + "42078599038363157537260543" ], "fpReserves": [ - "7863042874098664415431126", - "5800159034573452090106875" + "9586564821041897738200220", + "4632182801947742038442680" ], - "mAssetSupply": "106890461398935326390189113", - "LPTokenSupply": "13597872957180255276428636" + "mAssetSupply": "108621569356808975635612699", + "LPTokenSupply": "14089149489599503429890086" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "25526856397424", - "outputQty0": "25526575502100", - "outputQty": "25452817579678", - "swapFee": "20305555509", + "type": "swap_fp_to_mp", + "inputQty": "6953109748694229450752", + "outputIndex": 1, + "outputQty": "6968560657394989842903", + "swapFee": "0", + "redemptionFee": "4196768372232740632", "mpReserves": [ - "39874358030281142455553862", - "35580865997344829212820368", - "31436918124913440304786902" + "40264527157278606457953602", + "26291179921752683868976330", + "42078599038363157537260543" ], "fpReserves": [ - "7863042874124190990933226", - "5800159034547999272527197" + "9579570207088176503812774", + "4639135911696436267893432" ], - "mAssetSupply": "106890461398960852965691213", - "LPTokenSupply": "13597872957180257306984186" + "mAssetSupply": "108614578939623626633965885", + "LPTokenSupply": "14089149489599503429890086" }, { "type": "swap_fp_to_mp", - "inputQty": "154386102095304130560", - "outputIndex": 1, - "outputQty": "154649410540294287360", + "inputQty": "118507533812334862532608", + "outputIndex": 0, + "outputQty": "119242448489578557107634", "swapFee": "0", - "redemptionFee": "61883837353921506", + "redemptionFee": "71512603510344708008", "mpReserves": [ - "39874358030281142455553862", - "35580711347934288918533008", - "31436918124913440304786902" + "40145284708789027900845968", + "26291179921752683868976330", + "42078599038363157537260543" ], "fpReserves": [ - "7862888164530806187166848", - "5800313420650094576657757" + "9460382534570935323798842", + "4757643445508771130426040" ], - "mAssetSupply": "106890306751251305515846341", - "LPTokenSupply": "13597872957180257306984186" + "mAssetSupply": "108495462779709895798659961", + "LPTokenSupply": "14089149489599503429890086" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "55400392956699400470528", - "outputQty0": "55424293052604382038311", - "outputQty": "55109662641766749118059", + "type": "swap_fp_to_mp", + "inputQty": "672825773279282816", + "outputIndex": 0, + "outputQty": "676849843805856178", + "swapFee": "0", + "redemptionFee": "405926612595698", "mpReserves": [ - "39874358030281142455553862", - "35580711347934288918533008", - "31492318517870139705257430" + "40145284031939184094989790", + "26291179921752683868976330", + "42078599038363157537260543" ], "fpReserves": [ - "7918312457583410569205159", - "5800313420650094576657757" + "9460381858026580997633880", + "4757644118334544409708856" ], - "mAssetSupply": "106945731044303909897884652", - "LPTokenSupply": "13652982619822024056102245" + "mAssetSupply": "108495462103571468085090697", + "LPTokenSupply": "14089149489599503429890086" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "142368201471774244864", - "outputQty0": "142429291898415893836", - "outputQty": "141619187222129411041", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1195916573721842822414336", + "outputQty0": "1199410656310169781940858", + "outputQty": "1188698921857226874730830", + "swapFee": "948855937145264871439", "mpReserves": [ - "39874358030281142455553862", - "35580711347934288918533008", - "31492460886071611479502294" + "40145284031939184094989790", + "27487096495474526691390666", + "42078599038363157537260543" ], "fpReserves": [ - "7918454886875308985098995", - "5800313420650094576657757" + "10659792514336750779574738", + "3568945196477317534978026" ], - "mAssetSupply": "106945873473595808313778488", - "LPTokenSupply": "13653124239009246185513286" + "mAssetSupply": "109694872759881637867031555", + "LPTokenSupply": "14089244375193217956377229" }, { "type": "swap_fp_to_mp", - "inputQty": "45108596111242395648", - "outputIndex": 2, - "outputQty": "45168002101657265788", + "inputQty": "244594593220982034399232", + "outputIndex": 1, + "outputQty": "246406411679335434143345", "swapFee": "0", - "redemptionFee": "18082186307642774", + "redemptionFee": "148341718789792723575", "mpReserves": [ - "39874358030281142455553862", - "35580711347934288918533008", - "31492415718069509822236506" + "40145284031939184094989790", + "27240690083795191257247321", + "42078599038363157537260543" ], "fpReserves": [ - "7918409681409539878163843", - "5800358529246205819053405" + "10412556316353762906948205", + "3813539789698299569377258" ], - "mAssetSupply": "106945828286212225514486110", - "LPTokenSupply": "13653124239009246185513286" + "mAssetSupply": "109447784903617439787128597", + "LPTokenSupply": "14089244375193217956377229" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "24859761171612894756864", - "outputQty0": "24850487202115969065352", - "outputQty": "24709021784430854003031", + "inputIndex": 1, + "inputQty": "140205425429906443993088", + "outputQty0": "140595535141769681452746", + "outputQty": "138867305660504185809510", "mpReserves": [ - "39899217791452755350310726", - "35580711347934288918533008", - "31492415718069509822236506" + "40145284031939184094989790", + "27380895509225097701240409", + "42078599038363157537260543" ], "fpReserves": [ - "7943260168611655847229195", - "5800358529246205819053405" + "10553151851495532588400951", + "3813539789698299569377258" ], - "mAssetSupply": "106970678773414341483551462", - "LPTokenSupply": "13677833260793677039516317" + "mAssetSupply": "109588380438759209468581343", + "LPTokenSupply": "14228111680853722142186739" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2509653372143539847168", - "outputQty0": "2522518540863400849977", - "outputQty": "2521530286051759473669", - "swapFee1": "1505792023286123908", - "swapFee2": "1009007416345360339", + "type": "mint", + "inputIndex": 1, + "inputQty": "8280383425960939520", + "outputQty0": "8303237714052929774", + "outputQty": "8200911501225741494", "mpReserves": [ - "39899217791452755350310726", - "35578189817648237159059339", - "31492415718069509822236506" + "40145284031939184094989790", + "27380903789608523662179929", + "42078599038363157537260543" ], "fpReserves": [ - "7940737650070792446379218", - "5800358529246205819053405" + "10553160154733246641330725", + "3813539789698299569377258" ], - "mAssetSupply": "106968157263880894428061824", - "LPTokenSupply": "13675323758000735828281539" + "mAssetSupply": "109588388741996923521511117", + "LPTokenSupply": "14228119881765223367928233" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "720268257696200341323776", - "outputQty0": "720556688033103717023210", - "outputQty": "716351923318621733433186", + "type": "redeem", + "outputIndex": 1, + "inputQty": "71552812379082472", + "outputQty0": "72402139604053735", + "outputQty": "72159534353726778", + "swapFee1": "42931687427449", + "swapFee2": "43441283762432", "mpReserves": [ - "39899217791452755350310726", - "35578189817648237159059339", - "32212683975765710163560282" + "40145284031939184094989790", + "27380903717448989308453151", + "42078599038363157537260543" ], "fpReserves": [ - "8661294338103896163402428", - "5800358529246205819053405" + "10553160082331107037276990", + "3813539789698299569377258" ], - "mAssetSupply": "107688713951913998145085034", - "LPTokenSupply": "14391675681319357561714725" + "mAssetSupply": "109588388669638225201219814", + "LPTokenSupply": "14228119810216704157588505" }, { - "type": "swap_fp_to_mp", - "inputQty": "11301223142175725846528", - "outputIndex": 2, - "outputQty": "11324427203381948681396", - "swapFee": "0", - "redemptionFee": "4533269067702142290", + "type": "redeem", + "outputIndex": 0, + "inputQty": "3159547595865055232", + "outputQty0": "3197051217790190970", + "outputQty": "3198114614838490272", + "swapFee1": "1895728557519033", + "swapFee2": "1918230730674114", "mpReserves": [ - "39899217791452755350310726", - "35578189817648237159059339", - "32201359548562328214878886" + "40145280833824569256499518", + "27380903717448989308453151", + "42078599038363157537260543" ], "fpReserves": [ - "8649961165434640807675242", - "5811659752388381544899933" + "10553156885279889247086020", + "3813539789698299569377258" ], - "mAssetSupply": "107677385312513810491500138", - "LPTokenSupply": "14391675681319357561714725" + "mAssetSupply": "109588385474505238141702958", + "LPTokenSupply": "14228116650858681148285176" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "33261384758066621186048", - "outputQty0": "33249706214766049155241", - "outputQty": "33128611525559733929128", - "swapFee": "26441047462804024696", + "inputIndex": 1, + "inputQty": "885577480862522786447360", + "outputQty0": "887900402214139068120822", + "outputQty": "875084023714987642567292", + "swapFee": "701426177166391988934", "mpReserves": [ - "39932479176210821971496774", - "35578189817648237159059339", - "32201359548562328214878886" + "40145280833824569256499518", + "28266481198311512094900511", + "42078599038363157537260543" ], "fpReserves": [ - "8683210871649406856830483", - "5778531140862821810970805" + "11441057287494028315206842", + "2938455765983311926809966" ], - "mAssetSupply": "107710635018728576540655379", - "LPTokenSupply": "14391678325424103842117194" + "mAssetSupply": "110476285876719377209823780", + "LPTokenSupply": "14228186793476397787484069" }, { "type": "mint", "inputIndex": 1, - "inputQty": "10616696810819029041152", - "outputQty0": "10616882626226377665914", - "outputQty": "10553235661402449336762", - "mpReserves": [ - "39932479176210821971496774", - "35588806514459056188100491", - "32201359548562328214878886" - ], - "fpReserves": [ - "8693827754275633234496397", - "5778531140862821810970805" - ], - "mAssetSupply": "107721251901354802918321293", - "LPTokenSupply": "14402231561085506291453956" + "inputQty": "422869573699381963522048", + "hardLimitError": true }, { "type": "mint", - "inputIndex": 0, - "inputQty": "515896220921733796855808", - "outputQty0": "515707948400316622852643", - "outputQty": "512566981332914845427438", + "inputIndex": 2, + "inputQty": "103130140252724051050496", + "outputQty0": "103005225602439071572302", + "outputQty": "101534653858514792047261", "mpReserves": [ - "40448375397132555768352582", - "35588806514459056188100491", - "32201359548562328214878886" + "40145280833824569256499518", + "28266481198311512094900511", + "42181729178615881588311039" ], "fpReserves": [ - "9209535702675949857349040", - "5778531140862821810970805" + "11544062513096467386779144", + "2938455765983311926809966" ], - "mAssetSupply": "108236959849755119541173936", - "LPTokenSupply": "14914798542418421136881394" + "mAssetSupply": "110579291102321816281396082", + "LPTokenSupply": "14329721447334912579531330" }, { "type": "swap_fp_to_mp", - "inputQty": "40439250258071451074560", - "outputIndex": 1, - "outputQty": "40556368863857440378729", + "inputQty": "2039115200432038739968", + "outputIndex": 2, + "outputQty": "2078656923627233156127", "swapFee": "0", - "redemptionFee": "16229576218609157942", + "redemptionFee": "1246423529564074972", "mpReserves": [ - "40448375397132555768352582", - "35548250145595198747721762", - "32201359548562328214878886" + "40145280833824569256499518", + "28266481198311512094900511", + "42179650521692254355154912" ], "fpReserves": [ - "9168961762129426962493236", - "5818970391120893262045365" + "11541985140547193928491297", + "2940494881183743965549934" ], - "mAssetSupply": "108196402138784815255476074", - "LPTokenSupply": "14914798542418421136881394" + "mAssetSupply": "110577214976196072387183207", + "LPTokenSupply": "14329721447334912579531330" }, { "type": "swap_fp_to_mp", - "inputQty": "8738076513428451622912", - "outputIndex": 0, - "outputQty": "8766484544629019056797", + "inputQty": "64997528226399281152", + "outputIndex": 2, + "outputQty": "66256976309650464219", "swapFee": "0", - "redemptionFee": "3506667239548661574", + "redemptionFee": "39729627505316778", "mpReserves": [ - "40439608912587926749295785", - "35548250145595198747721762", - "32201359548562328214878886" + "40145280833824569256499518", + "28266481198311512094900511", + "42179584264715944704690693" ], "fpReserves": [ - "9160195094030555308558186", - "5827708467634321713668277" + "11541918924501351733860394", + "2940559878711970364831086" ], - "mAssetSupply": "108187638977353183150202598", - "LPTokenSupply": "14914798542418421136881394" + "mAssetSupply": "110577148799879857697869082", + "LPTokenSupply": "14329721447334912579531330" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "81732397479134146592768", - "outputQty0": "82186623629938356661084", - "outputQty": "82150727721526815994464", - "swapFee1": "49039438487480487955", - "swapFee2": "32874649451975342664", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "13862946550268601303040", + "outputQty0": "13846058159474364960828", + "outputQty": "13579132653472991800039", + "swapFee": "10918408260376185960", "mpReserves": [ - "40439608912587926749295785", - "35466099417873671931727298", - "32201359548562328214878886" + "40145280833824569256499518", + "28266481198311512094900511", + "42193447211266213305993733" ], "fpReserves": [ - "9078008470400616951897102", - "5827708467634321713668277" + "11555764982660826098821222", + "2926980746058497373031047" ], - "mAssetSupply": "108105485228372696768884178", - "LPTokenSupply": "14833071048883135738337421" + "mAssetSupply": "110590994858039332062829910", + "LPTokenSupply": "14329722539175738617149926" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2074810435552282396327936", - "outputQty0": "2085486499042699298069436", - "outputQty": "2084425380353357264466765", - "swapFee1": "1244886261331369437796", - "swapFee2": "834194599617079719227", - "mpReserves": [ - "40439608912587926749295785", - "33381674037520314667260533", - "32201359548562328214878886" - ], - "fpReserves": [ - "6992521971357917653827666", - "5827708467634321713668277" - ], - "mAssetSupply": "106020832923929614550533969", - "LPTokenSupply": "12758385101956986478953264" + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "45565394436666190462976", + "hardLimitError": true }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2150847732690241792", - "outputQty0": "2151236815706502601", - "outputQty": "2139668551225382512", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "879474496585877159936", + "outputQty0": "878741078204604696885", + "outputQty": "861715131694282240013", + "swapFee": "692913120278408724", "mpReserves": [ - "40439608912587926749295785", - "33381676188368047357502325", - "32201359548562328214878886" + "40146160308321155133659454", + "28266481198311512094900511", + "42193447211266213305993733" ], "fpReserves": [ - "6992524122594733360330267", - "5827708467634321713668277" + "11556643723739030703518107", + "2926119030926803090791034" ], - "mAssetSupply": "106020835075166430257036570", - "LPTokenSupply": "12758387241625537704335776" + "mAssetSupply": "110591873599117536667526795", + "LPTokenSupply": "14329722608467050644990798" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "77070310222619935244288", - "outputQty0": "77094109062243488143418", - "outputQty": "76678215017077022385496", + "inputQty": "1262430932444970221568", + "outputQty0": "1260891869282258495801", + "outputQty": "1236443685134174264620", + "swapFee": "994247652546312446", "mpReserves": [ - "40439608912587926749295785", - "33381676188368047357502325", - "32278429858784948150123174" + "40146160308321155133659454", + "28266481198311512094900511", + "42194709642198658276215301" ], "fpReserves": [ - "7069618231656976848473685", - "5827708467634321713668277" + "11557904615608312962013908", + "2924882587241668916526414" ], - "mAssetSupply": "106097929184228673745179988", - "LPTokenSupply": "12835065456642614726721272" + "mAssetSupply": "110593134490986818926022596", + "LPTokenSupply": "14329722707891815899622042" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "260403086137872382689280", - "outputQty0": "261647497747987194962266", - "outputQty": "261492338775205489367725", - "swapFee1": "156241851682723429613", - "swapFee2": "104658999099194877984", - "mpReserves": [ - "40439608912587926749295785", - "33120183849592841868134600", - "32278429858784948150123174" - ], - "fpReserves": [ - "6807970733908989653511419", - "5827708467634321713668277" - ], - "mAssetSupply": "105836386345479785745095706", - "LPTokenSupply": "12574677994689910616374953" + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1182881764347026004246528", + "hardLimitError": true }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1162837420501007501099008", - "outputQty0": "1162282772536875180489759", - "outputQty": "1155823682166963749384742", - "mpReserves": [ - "41602446333088934250394793", - "33120183849592841868134600", - "32278429858784948150123174" - ], - "fpReserves": [ - "7970253506445864834001178", - "5827708467634321713668277" - ], - "mAssetSupply": "106998669118016660925585465", - "LPTokenSupply": "13730501676856874365759695" + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "46694848875413825912832", + "hardLimitError": true }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "110186067893396275462144", - "outputQty0": "110211868605497477579167", - "outputQty": "109872725262956488975506", - "swapFee": "87656511365627749500", + "inputIndex": 2, + "inputQty": "2313336782704103391232", + "outputQty0": "2310516018585842958798", + "outputQty": "2265661160162414307234", + "swapFee": "1821897898738081263", "mpReserves": [ - "41602446333088934250394793", - "33230369917486238143596744", - "32278429858784948150123174" + "40146160308321155133659454", + "28266481198311512094900511", + "42197022978981362379606533" ], "fpReserves": [ - "8080465375051362311580345", - "5717835742371365224692771" + "11560215131626898804972706", + "2922616926081506502219180" ], - "mAssetSupply": "107108880986622158403164632", - "LPTokenSupply": "13730510442508010928534645" + "mAssetSupply": "110595445007005404768981394", + "LPTokenSupply": "14329722890081605773430168" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "240295796471563796086784", - "outputQty0": "240374617102819225692750", - "outputQty": "238943983426708392146105", + "inputIndex": 1, + "inputQty": "2395444866531681280", + "outputQty0": "2401437383446121986", + "outputQty": "2366975571203933321", "mpReserves": [ - "41602446333088934250394793", - "33230369917486238143596744", - "32518725655256511946209958" + "40146160308321155133659454", + "28266483593756378626581791", + "42197022978981362379606533" ], "fpReserves": [ - "8320839992154181537273095", - "5717835742371365224692771" + "11560217533064282251094692", + "2922616926081506502219180" ], - "mAssetSupply": "107349255603724977628857382", - "LPTokenSupply": "13969454425934719320680750" + "mAssetSupply": "110595447408442788215103380", + "LPTokenSupply": "14329725257057176977363489" }, { "type": "swap_fp_to_mp", - "inputQty": "2097078177810921984", - "outputIndex": 1, - "outputQty": "2101262568684917747", + "inputQty": "244978209376428976242688", + "outputIndex": 2, + "outputQty": "249391342766214632740988", "swapFee": "0", - "redemptionFee": "841042204393280", + "redemptionFee": "149544375987226769427", "mpReserves": [ - "41602446333088934250394793", - "33230367816223669458678997", - "32518725655256511946209958" + "40146160308321155133659454", + "28266483593756378626581791", + "41947631636215147746865545" ], "fpReserves": [ - "8320837889548670554072313", - "5717837839449543035614755" + "11310976906418904302048594", + "3167595135457935478461868" ], - "mAssetSupply": "107349253501960508850049880", - "LPTokenSupply": "13969454425934719320680750" + "mAssetSupply": "110346356326173397492826709", + "LPTokenSupply": "14329725257057176977363489" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "167943909991737556992", - "outputQty0": "167860808755133411982", - "outputQty": "167285568388013421830", - "swapFee": "133483202349754682", + "inputQty": "639354632579238823198720", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "77639917806366998528", + "outputQty0": "77547648550762763772", + "outputQty": "76271238515361563663", + "swapFee": "61187205800728023", "mpReserves": [ - "41602614276998925987951785", - "33230367816223669458678997", - "32518725655256511946209958" + "40146160308321155133659454", + "28266483593756378626581791", + "41947709276132954113864073" ], "fpReserves": [ - "8321005750357425687484295", - "5717670553881155022192925" + "11311054454067455064812366", + "3167518864219420116898205" ], - "mAssetSupply": "107349421362769263983461862", - "LPTokenSupply": "13969454439283039555656218" + "mAssetSupply": "110346433873821948255590481", + "LPTokenSupply": "14329725263175897557436291" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "29001066973086959534080", - "outputQty0": "29007963164175938339152", - "outputQty": "28907581697470115692281", - "swapFee": "23067050668129585037", + "inputIndex": 2, + "inputQty": "7919570561149130768384", + "outputQty0": "7910154783776736734981", + "outputQty": "7779619643938136834901", + "swapFee": "6241313321435539596", "mpReserves": [ - "41602614276998925987951785", - "33259368883196756418213077", - "32518725655256511946209958" + "40146160308321155133659454", + "28266483593756378626581791", + "41955628846694103244632457" ], "fpReserves": [ - "8350013713521601625823447", - "5688762972183684906500644" + "11318964608851231801547347", + "3159739244575481980063304" ], - "mAssetSupply": "107378429325933439921801014", - "LPTokenSupply": "13969456745988106368614721" + "mAssetSupply": "110354344028605724992325462", + "LPTokenSupply": "14329725887307229700990250" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "84097760391832354816", - "outputQty0": "84056221489198775838", - "outputQty": "83762523983396327348", - "swapFee": "66839716506108422", + "inputQty": "20326740376327936", + "outputQty0": "20309499970574357", + "outputQty": "19973490807691159", + "swapFee": "16024435402974", "mpReserves": [ - "41602698374759317820306601", - "33259368883196756418213077", - "32518725655256511946209958" + "40146160328647895509987390", + "28266483593756378626581791", + "41955628846694103244632457" ], "fpReserves": [ - "8350097769743090824599285", - "5688679209659701510173296" + "11318964629160731772121704", + "3159739224601991172372145" ], - "mAssetSupply": "107378513382154929120576852", - "LPTokenSupply": "13969456752672078019225563" + "mAssetSupply": "110354344048915224962899819", + "LPTokenSupply": "14329725887308832144530547" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1318267479216751422472192", - "outputQty0": "1318517033240347556715444", - "outputQty": "1310250771787947408957249", + "type": "redeem", + "outputIndex": 2, + "inputQty": "18758329136875890016256", + "outputQty0": "19008059580107853322708", + "outputQty": "19019254021337288050441", + "swapFee1": "11254997482125534009", + "swapFee2": "11404835748064711993", "mpReserves": [ - "41602698374759317820306601", - "34577636362413507840685269", - "32518725655256511946209958" + "40146160328647895509987390", + "28266483593756378626581791", + "41936609592672765956582016" ], "fpReserves": [ - "9668614802983438381314729", - "5688679209659701510173296" + "11299956569580623918798996", + "3159739224601991172372145" ], - "mAssetSupply": "108697030415395276677292296", - "LPTokenSupply": "15279707524460025428182812" + "mAssetSupply": "110335347394170865174289104", + "LPTokenSupply": "14310968683671704467067691" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "642869778299928576000", - "outputQty0": "642961716535196270163", - "outputQty": "639920710087394562364", - "swapFee": "511023426423108569", + "inputIndex": 2, + "inputQty": "8166046241695619072", + "outputQty0": "8156352792018972638", + "outputQty": "8021776716229777410", + "swapFee": "6435519150246420", "mpReserves": [ - "41602698374759317820306601", - "34578279232191807769261269", - "32518725655256511946209958" + "40146160328647895509987390", + "28266483593756378626581791", + "41936617758719007652201088" ], "fpReserves": [ - "9669257764699973577584892", - "5688039288949614115610932" + "11299964725933415937771634", + "3159731202825274942594735" ], - "mAssetSupply": "108697673377111811873562459", - "LPTokenSupply": "15279707575562368070493668" + "mAssetSupply": "110335355550523657193261742", + "LPTokenSupply": "14310968684315256382092333" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1910546031272095383552", - "outputQty0": "1909677352499529289073", - "outputQty": "1900639022429770915889", - "swapFee": "1517802696554676177", + "type": "mint", + "inputIndex": 1, + "inputQty": "457040372007423967232", + "outputQty0": "458171694358009318992", + "outputQty": "451882780326629008565", "mpReserves": [ - "41604608920790589915690153", - "34578279232191807769261269", - "32518725655256511946209958" + "40146160328647895509987390", + "28266940634128386050549023", + "41936617758719007652201088" ], "fpReserves": [ - "9671167442052473106873965", - "5686138649927184344695043" + "11300422897627773947090626", + "3159731202825274942594735" ], - "mAssetSupply": "108699583054464311402851532", - "LPTokenSupply": "15279707727342637725961285" + "mAssetSupply": "110335813722218015202580734", + "LPTokenSupply": "14311420567095583011100898" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "1168590581766809620316160", "outputIndex": 0, - "inputQty": "5310735237870374617088", - "outputQty0": "5342308082301704710117", - "outputQty": "5342599858113858356503", - "swapFee1": "3186441142722224770", - "swapFee2": "2136923232920681884", + "outputQty": "1181795534940153423807172", + "swapFee": "0", + "redemptionFee": "708957193540947622613", "mpReserves": [ - "41599266320932476057333650", - "34578279232191807769261269", - "32518725655256511946209958" + "38964364793707742086180218", + "28266940634128386050549023", + "41936617758719007652201088" ], "fpReserves": [ - "9665825133970171402163848", - "5686138649927184344695043" + "10118827575059527909401489", + "4328321784592084562910895" ], - "mAssetSupply": "108694242883305242618823299", - "LPTokenSupply": "15274397310748881623566674" + "mAssetSupply": "109154927356843310112514210", + "LPTokenSupply": "14311420567095583011100898" }, { - "type": "swap_fp_to_mp", - "inputQty": "300640695886919229243392", - "outputIndex": 0, - "outputQty": "301730628218601714292320", - "swapFee": "0", - "redemptionFee": "120686574373068291981", + "type": "mint", + "inputIndex": 0, + "inputQty": "691843219220742830817280", + "outputQty0": "691334030498647193738918", + "outputQty": "683199289822848193535168", "mpReserves": [ - "41297535692713874343041330", - "34578279232191807769261269", - "32518725655256511946209958" + "39656208012928484916997498", + "28266940634128386050549023", + "41936617758719007652201088" ], "fpReserves": [ - "9364108698037500672208962", - "5986779345814103573938435" + "10810161605558175103140407", + "4328321784592084562910895" ], - "mAssetSupply": "108392647133946944957160394", - "LPTokenSupply": "15274397310748881623566674" + "mAssetSupply": "109846261387341957306253128", + "LPTokenSupply": "14994619856918431204636066" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "10617734593089628012544", - "outputQty0": "10613064713507327538768", - "outputQty": "10570404411492372577070", - "swapFee": "8437532590355799167", + "inputQty": "28269299882112191561728", + "outputQty0": "28247102244672108102451", + "outputQty": "27984536674593917631969", + "swapFee": "22328508830761862885", "mpReserves": [ - "41308153427306963971053874", - "34578279232191807769261269", - "32518725655256511946209958" + "39684477312810597108559226", + "28266940634128386050549023", + "41936617758719007652201088" ], "fpReserves": [ - "9374721762751007999747730", - "5976208941402611201361365" + "10838408707802847211242858", + "4300337247917490645278926" ], - "mAssetSupply": "108403260198660452284699162", - "LPTokenSupply": "15274398154502140659146590" + "mAssetSupply": "109874508489586629414355579", + "LPTokenSupply": "14994622089769314280822354" }, { "type": "swap_fp_to_mp", - "inputQty": "395366263991556320002048", - "outputIndex": 0, - "outputQty": "396488132026112863489053", + "inputQty": "2864400955224378843332608", + "outputIndex": 1, + "outputQty": "2865749460578176860511999", "swapFee": "0", - "redemptionFee": "158590458308483247449", + "redemptionFee": "1725442417697007978191", "mpReserves": [ - "40911665295280851107564821", - "34578279232191807769261269", - "32518725655256511946209958" + "39684477312810597108559226", + "25401191173550209190037024", + "41936617758719007652201088" ], "fpReserves": [ - "8978245616979799881124906", - "6371575205394167521363413" + "7962671344974500580923486", + "7164738203141869488611534" ], - "mAssetSupply": "108006942643347552649323787", - "LPTokenSupply": "15274398154502140659146590" + "mAssetSupply": "107000496569175979792014398", + "LPTokenSupply": "14994622089769314280822354" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3122253183294716928", - "outputQty0": "3123330543665629195", - "outputQty": "3113401850620694997", - "swapFee": "2483926453452978", + "type": "swap_fp_to_mp", + "inputQty": "36547514401325133594624", + "outputIndex": 0, + "outputQty": "36590190778394667663177", + "swapFee": "0", + "redemptionFee": "21943205720057986768", "mpReserves": [ - "40911665295280851107564821", - "34578279232191807769261269", - "32518728777509695240926886" + "39647887122032202440896049", + "25401191173550209190037024", + "41936617758719007652201088" ], "fpReserves": [ - "8978248740310343546754101", - "6371572091992316900668416" + "7926099335441070602975367", + "7201285717543194622206158" ], - "mAssetSupply": "108006945766678096314952982", - "LPTokenSupply": "15274398154750533304491887" + "mAssetSupply": "106963946502848269872053047", + "LPTokenSupply": "14994622089769314280822354" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1963830806674879", - "outputQty0": "1963005367914126", - "outputQty": "1951426883305284", + "inputIndex": 2, + "inputQty": "1521810605817817873776640", + "outputQty0": "1519338226595307213447984", + "outputQty": "1505118487400998123976496", "mpReserves": [ - "40911665297244681914239700", - "34578279232191807769261269", - "32518728777509695240926886" + "39647887122032202440896049", + "25401191173550209190037024", + "43458428364536825525977728" ], "fpReserves": [ - "8978248742273348914668227", - "6371572091992316900668416" + "9445437562036377816423351", + "7201285717543194622206158" ], - "mAssetSupply": "108006945768641101682867108", - "LPTokenSupply": "15274398156701960187797171" + "mAssetSupply": "108483284729443577085501031", + "LPTokenSupply": "16499740577170312404798850" }, { "type": "swap_fp_to_mp", - "inputQty": "3259805016459141709824", - "outputIndex": 0, - "outputQty": "3267639706603003585836", + "inputQty": "742088935255811424256", + "outputIndex": 2, + "outputQty": "744297327310382885688", "swapFee": "0", - "redemptionFee": "1307029418759341332", + "redemptionFee": "446078312818601634", "mpReserves": [ - "40908397657538078910653864", - "34578279232191807769261269", - "32518728777509695240926886" + "39647887122032202440896049", + "25401191173550209190037024", + "43457684067209515143092040" ], "fpReserves": [ - "8974981168726450561336195", - "6374831897008776042378240" + "9444694098181680147033293", + "7202027806478450433630414" ], - "mAssetSupply": "108003679502123622088876408", - "LPTokenSupply": "15274398156701960187797171" + "mAssetSupply": "108482541711667192234712607", + "LPTokenSupply": "16499740577170312404798850" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "94264230638138608", - "outputQty0": "94224624864504990", - "outputQty": "93925722026916587", - "swapFee": "74935292082621", + "inputQty": "495502804297595420672", + "outputQty0": "495004402848307547862", + "outputQty": "493693807477680737977", + "swapFee": "392192736033223951", "mpReserves": [ - "40908397751802309548792472", - "34578279232191807769261269", - "32518728777509695240926886" + "39648382624836500036316721", + "25401191173550209190037024", + "43457684067209515143092040" ], "fpReserves": [ - "8974981262951075425841185", - "6374831803083054015461653" + "9445189102584528454581155", + "7201534112670972752892437" ], - "mAssetSupply": "108003679596348246953381398", - "LPTokenSupply": "15274398156709453717005433" + "mAssetSupply": "108483036716070040542260469", + "LPTokenSupply": "16499740616389586008121245" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1108599606676638587158528", - "outputQty0": "1108935218112528000642140", - "outputQty": "1104014311457300935158715", - "swapFee": "881750457041097376095", + "inputQty": "7236019223985111040", + "outputQty0": "7223580032212834429", + "outputQty": "7204451365818365893", + "swapFee": "5723251540925093", "mpReserves": [ - "40908397751802309548792472", - "34578279232191807769261269", - "33627328384186333828085414" + "39648382624836500036316721", + "25401191173550209190037024", + "43457691303228739128203080" ], "fpReserves": [ - "10083916481063603426483325", - "5270817491625753080302938" + "9445196326164560667415584", + "7201526908219606934526544" ], - "mAssetSupply": "109112614814460774954023538", - "LPTokenSupply": "15274486331755157826743042" + "mAssetSupply": "108483043939650072755094898", + "LPTokenSupply": "16499740616961911162213754" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "41095246512001071972352", - "outputQty0": "41079365578490178709437", - "outputQty": "40792828504970293647017", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3243292662574600652062720", + "outputQty0": "3270777899467221714929871", + "outputQty": "3254899515973856569134096", + "swapFee1": "1945975597544760391237", + "swapFee2": "1962466739680333028957", "mpReserves": [ - "40949492998314310620764824", - "34578279232191807769261269", - "33627328384186333828085414" + "39648382624836500036316721", + "22146291657576352620902928", + "43457691303228739128203080" ], "fpReserves": [ - "10124995846642093605192762", - "5270817491625753080302938" + "6174418426697338952485713", + "7201526908219606934526544" ], - "mAssetSupply": "109153694180039265132732975", - "LPTokenSupply": "15315279160260128120390059" + "mAssetSupply": "105214228506922531373193984", + "LPTokenSupply": "13256642551947064986190157" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "23920203800959479808", - "outputQty0": "23924095809763088014", - "outputQty": "23782421372087617911", - "swapFee": "19005636382176433", + "inputIndex": 2, + "inputQty": "377137039195119217016832", + "outputQty0": "376313566111845021954171", + "outputQty": "376256416129243429228020", + "swapFee": "298498828035231394179", "mpReserves": [ - "40949492998314310620764824", - "34578303152395608728741077", - "33627328384186333828085414" + "39648382624836500036316721", + "22146291657576352620902928", + "43834828342423858345219912" ], "fpReserves": [ - "10125019770737903368280776", - "5270793709204380992685027" + "6550731992809183974439884", + "6825270492090363505298524" ], - "mAssetSupply": "109153718104135074895820989", - "LPTokenSupply": "15315279162160691758607702" + "mAssetSupply": "105590542073034376395148155", + "LPTokenSupply": "13256672401829868509329574" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2198425356212523761664", - "outputQty0": "2199002726583190427627", - "outputQty": "2183647252772514665705", + "type": "swap_fp_to_mp", + "inputQty": "8064612832482114404352", + "outputIndex": 2, + "outputQty": "8075339917816758171742", + "swapFee": "0", + "redemptionFee": "4837412632577429349", "mpReserves": [ - "40949492998314310620764824", - "34578303152395608728741077", - "33629526809542546351847078" + "39648382624836500036316721", + "22146291657576352620902928", + "43826753002506041587048170" ], "fpReserves": [ - "10127218773464486558708403", - "5270793709204380992685027" + "6542669638421554925524765", + "6833335104922845619702876" ], - "mAssetSupply": "109155917106861658086248616", - "LPTokenSupply": "15317462809413464273273407" + "mAssetSupply": "105582484556059379923662385", + "LPTokenSupply": "13256672401829868509329574" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "247650765351734804480", - "outputQty0": "247691076609732901904", - "outputQty": "245961360422180136640", + "type": "redeem", + "outputIndex": 1, + "inputQty": "52146562105896910848", + "outputQty0": "52576660567068762723", + "outputQty": "52276289754023056027", + "swapFee1": "31287937263538146", + "swapFee2": "31545996340241257", "mpReserves": [ - "40949492998314310620764824", - "34578550803160960463545557", - "33629526809542546351847078" + "39648382624836500036316721", + "22146239381286598597846901", + "43826753002506041587048170" ], "fpReserves": [ - "10127466464541096291610307", - "5270793709204380992685027" + "6542617061760987856762042", + "6833335104922845619702876" ], - "mAssetSupply": "109156164797938267819150520", - "LPTokenSupply": "15317708770773886453410047" + "mAssetSupply": "105582432010944809195140919", + "LPTokenSupply": "13256620258396556338772540" }, { "type": "swap_fp_to_mp", - "inputQty": "108148095101566730240", + "inputQty": "53689530558988035293184", "outputIndex": 1, - "outputQty": "108644407883680153617", + "outputQty": "53363768324580950605257", "swapFee": "0", - "redemptionFee": "43482229659067895", + "redemptionFee": "32202719643496591500", "mpReserves": [ - "40949492998314310620764824", - "34578442158753076783391940", - "33629526809542546351847078" + "39648382624836500036316721", + "22092875612962017647241644", + "43826753002506041587048170" ], "fpReserves": [ - "10127357758966948621871478", - "5270901857299482559415267" + "6488945862355160204261909", + "6887024635481833654996060" ], - "mAssetSupply": "109156056135846349808479586", - "LPTokenSupply": "15317708770773886453410047" + "mAssetSupply": "105528793014258625039232286", + "LPTokenSupply": "13256620258396556338772540" }, { "type": "swap_fp_to_mp", - "inputQty": "29877476513101715079168", + "inputQty": "195358505909293074612224", "outputIndex": 0, - "outputQty": "30029720502464493959939", + "outputQty": "195401483215219758617704", "swapFee": "0", - "redemptionFee": "12012048656015933361", - "mpReserves": [ - "40919463277811846126804885", - "34578442158753076783391940", - "33629526809542546351847078" - ], - "fpReserves": [ - "10097327637326908788467717", - "5300779333812584274494435" - ], - "mAssetSupply": "109126038026254965991009186", - "LPTokenSupply": "15317708770773886453410047" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "152130295295883378688", - "outputQty0": "152071588522060135544", - "outputQty": "151014329780779460934", + "redemptionFee": "117145953009978721153", "mpReserves": [ - "40919615408107142010183573", - "34578442158753076783391940", - "33629526809542546351847078" + "39452981141621280277699017", + "22092875612962017647241644", + "43826753002506041587048170" ], "fpReserves": [ - "10097479708915430848603261", - "5300779333812584274494435" + "6293702607338529002338987", + "7082383141391126729608284" ], - "mAssetSupply": "109126190097843488051144730", - "LPTokenSupply": "15317859785103667232870981" + "mAssetSupply": "105333666905195003816030517", + "LPTokenSupply": "13256620258396556338772540" }, { "type": "swap_fp_to_mp", - "inputQty": "119191920849774037696512", + "inputQty": "340307834876286337024", "outputIndex": 2, - "outputQty": "119694646804675148012426", + "outputQty": "340594221595439443652", "swapFee": "0", - "redemptionFee": "47909758478501694344", + "redemptionFee": "204024129880972044", "mpReserves": [ - "40919615408107142010183573", - "34578442158753076783391940", - "33509832162737871203834652" + "39452981141621280277699017", + "22092875612962017647241644", + "43826412408284446147604518" ], "fpReserves": [ - "9977705312719176612741728", - "5419971254662358312190947" + "6293362567122060715598313", + "7082723449226003015945308" ], - "mAssetSupply": "109006463611405712316977541", - "LPTokenSupply": "15317859785103667232870981" + "mAssetSupply": "105333327069002665410261887", + "LPTokenSupply": "13256620258396556338772540" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "16055726085357327876096", - "outputQty0": "16156416664642313778711", - "outputQty": "16156241799430634218613", - "swapFee1": "9633435651214396725", - "swapFee2": "6462566665856925511", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "113906388421363984", + "outputQty0": "114492298691025530", + "outputQty": "114490779836945519", + "swapFee": "90813619146877", "mpReserves": [ - "40903459166307711375964960", - "34578442158753076783391940", - "33509832162737871203834652" + "39452981141621280277699017", + "22092875726868406068605628", + "43826412408284446147604518" ], "fpReserves": [ - "9961548896054534298963017", - "5419971254662358312190947" + "6293362681614359406623843", + "7082723334735223178999789" ], - "mAssetSupply": "108990313657307735860124341", - "LPTokenSupply": "15301805022361875026434557" + "mAssetSupply": "105333327183494964101287417", + "LPTokenSupply": "13256620258405637700687227" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1088845708790560502841344", - "outputQty0": "1088392938873932128648843", - "outputQty": "1080757885980891667154958", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "15304287040027586723840", + "outputQty0": "15382942379927129867842", + "outputQty": "15382499181672830136611", + "swapFee": "12201472121448919037", "mpReserves": [ - "41992304875098271878806304", - "34578442158753076783391940", - "33509832162737871203834652" + "39452981141621280277699017", + "22108180013908433655329468", + "43826412408284446147604518" ], "fpReserves": [ - "11049941834928466427611860", - "5419971254662358312190947" + "6308745623994286536491685", + "7067340835553550348863178" ], - "mAssetSupply": "110078706596181667988773184", - "LPTokenSupply": "16382562908342766693589515" + "mAssetSupply": "105348710125874891231155259", + "LPTokenSupply": "13256621478552849845579130" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "73953903578482409472", - "outputQty0": "73967902685080558977", - "outputQty": "73481904691443172867", - "swapFee": "58748188434062958", + "type": "redeem", + "outputIndex": 2, + "inputQty": "47809712390707088", + "outputQty0": "48192366184432406", + "outputQty": "48270767969224915", + "swapFee1": "28685827434424", + "swapFee2": "28915419710659", "mpReserves": [ - "41992304875098271878806304", - "34578516112656655265801412", - "33509832162737871203834652" + "39452981141621280277699017", + "22108180013908433655329468", + "43826412360013678178379603" ], "fpReserves": [ - "11050015802831151508170837", - "5419897772757666869018080" + "6308745575801920352059279", + "7067340835553550348863178" ], - "mAssetSupply": "110078780564084353069332161", - "LPTokenSupply": "16382562914217585536995810" + "mAssetSupply": "105348710077711440466433512", + "LPTokenSupply": "13256621430746006037615484" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "1712954713512761360384", "outputIndex": 2, - "inputQty": "258900915882780191096832", - "outputQty0": "260610815163731059963077", - "outputQty": "260425006116145635589850", - "swapFee1": "155340549529668114658", - "swapFee2": "104244326065492423985", + "outputQty": "1714441711508471161765", + "swapFee": "0", + "redemptionFee": "1026994373202347797", "mpReserves": [ - "41992304875098271878806304", - "34578516112656655265801412", - "33249407156621725568244802" + "39452981141621280277699017", + "22108180013908433655329468", + "43824697918302169707217838" ], "fpReserves": [ - "10789404987667420448207760", - "5419897772757666869018080" + "6307033918513249772397493", + "7069053790267063110223562" ], - "mAssetSupply": "109818273993246687501793069", - "LPTokenSupply": "16123677532389758312710443" + "mAssetSupply": "105346999447417143089119523", + "LPTokenSupply": "13256621430746006037615484" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "55446200092965428264960", - "outputQty0": "55463993507500142109172", - "outputQty": "55068484205565240237871", + "type": "swap_fp_to_mp", + "inputQty": "83035592063262352", + "outputIndex": 0, + "outputQty": "83038445096421941", + "swapFee": "0", + "redemptionFee": "49783533535229", "mpReserves": [ - "41992304875098271878806304", - "34578516112656655265801412", - "33304853356714690996509762" + "39452981058582835181277076", + "22108180013908433655329468", + "43824697918302169707217838" ], "fpReserves": [ - "10844868981174920590316932", - "5419897772757666869018080" + "6307033835540693880349079", + "7069053873302655173485914" ], - "mAssetSupply": "109873737986754187643902241", - "LPTokenSupply": "16178746016595323552948314" + "mAssetSupply": "105346999364494370730606338", + "LPTokenSupply": "13256621430746006037615484" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "27217234006902619242496", - "outputQty0": "27225883396048227224297", - "outputQty": "27051569895646003560207", - "swapFee": "21625083504788741716", + "type": "redeem", + "outputIndex": 0, + "inputQty": "4610765972015010021376", + "outputQty0": "4647654504912446330326", + "outputQty": "4651343677991438075461", + "swapFee1": "2766459583209006012", + "swapFee2": "2788592702947467798", "mpReserves": [ - "41992304875098271878806304", - "34578516112656655265801412", - "33332070590721593615752258" + "39448329714904843743201615", + "22108180013908433655329468", + "43824697918302169707217838" ], "fpReserves": [ - "10872094864570968817541229", - "5392846202862020865457873" + "6302386181035781434018753", + "7069053873302655173485914" ], - "mAssetSupply": "109900963870150235871126538", - "LPTokenSupply": "16178748179103674031822485" + "mAssetSupply": "105342354498582161231743810", + "LPTokenSupply": "13252010941419949348494709" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "10920098417190039552", - "outputQty0": "10922097634194677839", - "outputQty": "10851712489326044411", - "swapFee": "8675034453982556", + "inputQty": "153467830408830175412224", + "outputQty0": "154249101670047289813899", + "outputQty": "154219640772868247558496", + "swapFee": "122341292732455475744", "mpReserves": [ - "41992304875098271878806304", - "34578527032755072455840964", - "33332070590721593615752258" + "39448329714904843743201615", + "22261647844317263830741692", + "43824697918302169707217838" ], "fpReserves": [ - "10872105786668603012219068", - "5392835351149531539413462" + "6456635282705828723832652", + "6914834232529786925927418" ], - "mAssetSupply": "109900974792247870065804377", - "LPTokenSupply": "16178748179971177477220740" + "mAssetSupply": "105496603600252208521557709", + "LPTokenSupply": "13252023175549222594042283" }, { - "type": "swap_fp_to_mp", - "inputQty": "303015644476908608", - "outputIndex": 0, - "outputQty": "304751714025587552", - "swapFee": "0", - "redemptionFee": "121894820129282", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "294845960761235419955200", + "outputQty0": "294435828921454526044684", + "outputQty": "294248078133171850294164", + "swapFee": "233481549405802590995", "mpReserves": [ - "41992304570346557853218752", - "34578527032755072455840964", - "33332070590721593615752258" + "39743175675666079163156815", + "22261647844317263830741692", + "43824697918302169707217838" ], "fpReserves": [ - "10872105481931552689012390", - "5392835654165176016322070" + "6751071111627283249877336", + "6620586154396615075633254" ], - "mAssetSupply": "109900974487632714562726981", - "LPTokenSupply": "16178748179971177477220740" + "mAssetSupply": "105791039429173663047602393", + "LPTokenSupply": "13252046523704163174301382" }, { "type": "mint", "inputIndex": 2, - "inputQty": "714533928258625664", - "outputQty0": "714760267554047702", - "outputQty": "709635879360878112", + "inputQty": "17012761467835842560", + "outputQty0": "16975614962896346925", + "outputQty": "16822689583134562786", "mpReserves": [ - "41992304570346557853218752", - "34578527032755072455840964", - "33332071305255521874377922" + "39743175675666079163156815", + "22261647844317263830741692", + "43824714931063637543060398" ], "fpReserves": [ - "10872106196691820243060092", - "5392835654165176016322070" + "6751088087242246146224261", + "6620586154396615075633254" ], - "mAssetSupply": "109900975202392982116774683", - "LPTokenSupply": "16178748889607056838098852" + "mAssetSupply": "105791056404788625943949318", + "LPTokenSupply": "13252063346393746308864168" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "234454726662972216705024", - "outputQty0": "234348331620093048157465", - "outputQty": "232658848181417896995887", + "type": "redeem", + "outputIndex": 2, + "inputQty": "209021606110126825013248", + "outputQty0": "210784184663191824294021", + "outputQty": "211115832450338022740115", + "swapFee1": "125412963666076095007", + "swapFee2": "126470510797915094576", "mpReserves": [ - "42226759297009530069923776", - "34578527032755072455840964", - "33332071305255521874377922" + "39743175675666079163156815", + "22261647844317263830741692", + "43613599098613299520320283" ], "fpReserves": [ - "11106454528311913291217557", - "5392835654165176016322070" + "6540303902579054321930240", + "6620586154396615075633254" ], - "mAssetSupply": "110135323534013075164932148", - "LPTokenSupply": "16411407737788474735094739" + "mAssetSupply": "105580398690636232034749873", + "LPTokenSupply": "13043054281579986091460420" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "241981055592836559273984", - "outputQty0": "243591604353323273117708", - "outputQty": "243604660778323553117385", - "swapFee1": "145188633355701935564", - "swapFee2": "97436641741329309247", + "outputIndex": 2, + "inputQty": "85478637220687503163392", + "outputQty0": "86193723399712615056748", + "outputQty": "86327696550214977421106", + "swapFee1": "51287182332412501898", + "swapFee2": "51716234039827569034", "mpReserves": [ - "41983154636231206516806391", - "34578527032755072455840964", - "33332071305255521874377922" + "39743175675666079163156815", + "22261647844317263830741692", + "43527271402063084542899177" ], "fpReserves": [ - "10862862923958590018099849", - "5392835654165176016322070" + "6454110179179341706873492", + "6620586154396615075633254" ], - "mAssetSupply": "109891829366301493221123687", - "LPTokenSupply": "16169441201058973746014311" + "mAssetSupply": "105494256683470559247262159", + "LPTokenSupply": "12957580773077531829547217" }, { - "type": "swap_fp_to_mp", - "inputQty": "580152279377578885120", + "type": "redeem", "outputIndex": 2, - "outputQty": "583024070740209418930", - "swapFee": "0", - "redemptionFee": "233376790652434874", + "inputQty": "343167075375066", + "outputQty0": "346031429870364", + "outputQty": "346567356796855", + "swapFee1": "205900245225", + "swapFee2": "207618857922", "mpReserves": [ - "41983154636231206516806391", - "34578527032755072455840964", - "33331488281184781664958992" + "39743175675666079163156815", + "22261647844317263830741692", + "43527271401716517186102322" ], "fpReserves": [ - "10862279481981958930914416", - "5393415806444553595207190" + "6454110178833310277003128", + "6620586154396615075633254" ], - "mAssetSupply": "109891246157701652786373128", - "LPTokenSupply": "16169441201058973746014311" + "mAssetSupply": "105494256683124735436249717", + "LPTokenSupply": "12957580772734385344196673" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1678663444260260352", - "outputQty0": "1677911957245645705", - "outputQty": "1667117909399797832", - "swapFee": "1332700163040270", + "inputIndex": 2, + "inputQty": "2770852208456073478144", + "outputQty0": "2764906969248195869668", + "outputQty": "2763153401219857119406", + "swapFee": "2192298109310340487", "mpReserves": [ - "41983156314894650777066743", - "34578527032755072455840964", - "33331488281184781664958992" + "39743175675666079163156815", + "22261647844317263830741692", + "43530042253924973259580466" ], "fpReserves": [ - "10862281159893916176560121", - "5393414139326644195409358" + "6456875085802558472872796", + "6617823000995395218513848" ], - "mAssetSupply": "109891247835613610032018833", - "LPTokenSupply": "16169441201192243762318338" + "mAssetSupply": "105497021590093983632119385", + "LPTokenSupply": "12957580991964196275230721" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "65501740163845677121536", - "outputQty0": "65522311663164883539193", - "outputQty": "65094128309033659316524", - "swapFee": "52041236009525057773", + "inputQty": "7471879996924617555968", + "outputQty0": "7455843165306612340968", + "outputQty": "7389652842714408787179", "mpReserves": [ - "41983156314894650777066743", - "34578527032755072455840964", - "33396990021348627342080528" + "39743175675666079163156815", + "22261647844317263830741692", + "43537514133921897877136434" ], "fpReserves": [ - "10927803471557081060099314", - "5328320011017610536092834" + "6464330928967865085213764", + "6617823000995395218513848" ], - "mAssetSupply": "109956770147276774915558026", - "LPTokenSupply": "16169446405315844714824115" + "mAssetSupply": "105504477433259290244460353", + "LPTokenSupply": "12964970644806910684017900" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "29991305290537452", - "outputQty0": "29996856107873217", - "outputQty": "29797742653796215", - "swapFee": "23823640533811", - "mpReserves": [ - "41983156314894650777066743", - "34578527062746377746378416", - "33396990021348627342080528" - ], - "fpReserves": [ - "10927803501553937167972531", - "5328319981219867882296619" - ], - "mAssetSupply": "109956770177273631023431243", - "LPTokenSupply": "16169446405318227078877496" - }, - { - "type": "mint", "inputIndex": 0, - "inputQty": "68597038755857190354944", - "outputQty0": "68566354370517608869896", - "outputQty": "68068833931890634939430", + "inputQty": "1049784420613785387008", + "outputQty0": "1048285131559862602573", + "outputQty": "1047608224387095687504", + "swapFee": "831181229689981571", "mpReserves": [ - "42051753353650507967421687", - "34578527062746377746378416", - "33396990021348627342080528" + "39744225460086692948543823", + "22261647844317263830741692", + "43537514133921897877136434" ], "fpReserves": [ - "10996369855924454776842427", - "5328319981219867882296619" + "6465379214099424947816337", + "6616775392771008122826344" ], - "mAssetSupply": "110025336531644148632301139", - "LPTokenSupply": "16237515239250117713816926" + "mAssetSupply": "105505525718390850107062926", + "LPTokenSupply": "12964970727925033653016057" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2045149045801328312320", - "outputQty0": "2045531531728516186470", - "outputQty": "2030664290328203287759", + "inputIndex": 2, + "inputQty": "113887701879616253722624", + "outputQty0": "113642388081928397095275", + "outputQty": "112629878059752783117844", "mpReserves": [ - "42051753353650507967421687", - "34580572211792179074690736", - "33396990021348627342080528" + "39744225460086692948543823", + "22261647844317263830741692", + "43651401835801514130859058" ], "fpReserves": [ - "10998415387456183293028897", - "5328319981219867882296619" + "6579021602181353344911612", + "6616775392771008122826344" ], - "mAssetSupply": "110027382063175877148487609", - "LPTokenSupply": "16239545903540445917104685" + "mAssetSupply": "105619168106472778504158201", + "LPTokenSupply": "13077600605984786436133901" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "264832571990278047531008", - "outputQty0": "264879658736027054801337", - "outputQty": "262942382756274311553585", + "type": "redeem", + "outputIndex": 0, + "inputQty": "763530381593857757282304", + "outputQty0": "769794795809552894933838", + "outputQty": "770385593622165574392475", + "swapFee1": "458118228956314654369", + "swapFee2": "461876877485731736960", "mpReserves": [ - "42051753353650507967421687", - "34845404783782457122221744", - "33396990021348627342080528" + "38973839866464527374151348", + "22261647844317263830741692", + "43651401835801514130859058" ], "fpReserves": [ - "11263295046192210347830234", - "5328319981219867882296619" + "5809226806371800449977774", + "6616775392771008122826344" ], - "mAssetSupply": "110292261721911904203288946", - "LPTokenSupply": "16502488286296720228658270" + "mAssetSupply": "104849835187540711340961323", + "LPTokenSupply": "12314116036213824310317033" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "54683588494600414691328", - "outputQty0": "54692710809897920459144", - "outputQty": "54305467094769863832905", - "swapFee": "43431775732574738536", + "inputQty": "8799560633654119424", + "outputQty0": "8843138604662525839", + "outputQty": "8767564031429047389", "mpReserves": [ - "42051753353650507967421687", - "34900088372277057536913072", - "33396990021348627342080528" + "38973839866464527374151348", + "22261656643877897484861116", + "43651401835801514130859058" ], "fpReserves": [ - "11317987757002108268289378", - "5274014514125098018463714" + "5809235649510405112503613", + "6616775392771008122826344" ], - "mAssetSupply": "110346954432721802123748090", - "LPTokenSupply": "16502492629474293486132123" + "mAssetSupply": "104849844030679316003487162", + "LPTokenSupply": "12314124803777855739364422" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "1882423906596179561938944", - "outputQty0": "1894726118445346212526895", - "outputQty": "1894712273348575462493014", - "swapFee1": "1129454343957707737163", - "swapFee2": "757890447378138485010", + "outputIndex": 2, + "inputQty": "225527286240245383692288", + "outputQty0": "227318406133971947169860", + "outputQty": "227680609348923980766718", + "swapFee1": "135316371744147230215", + "swapFee2": "136391043680383168301", "mpReserves": [ - "40157041080301932504928673", - "34900088372277057536913072", - "33396990021348627342080528" + "38973839866464527374151348", + "22261656643877897484861116", + "43423721226452590150092340" ], "fpReserves": [ - "9423261638556762055762483", - "5274014514125098018463714" + "5581917243376433165333753", + "6616775392771008122826344" ], - "mAssetSupply": "108452986204723834049706205", - "LPTokenSupply": "14620181668312509694966895" + "mAssetSupply": "104622662015589024439485603", + "LPTokenSupply": "12088611049174784770395155" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "400463975246827343577088", "outputIndex": 1, - "inputQty": "10605821498749274", - "outputQty0": "10672243926074439", - "outputQty": "10666804040251002", - "swapFee1": "6363492899249", - "swapFee2": "4268897570429", + "outputQty": "397582437733742419315632", + "swapFee": "0", + "redemptionFee": "239892982612650563157", "mpReserves": [ - "40157041080301932504928673", - "34900088361610253496662070", - "33396990021348627342080528" + "38973839866464527374151348", + "21864074206144155065545484", + "43423721226452590150092340" ], "fpReserves": [ - "9423261627884518129688044", - "5274014514125098018463714" + "5182095605688682226737574", + "7017239368017835466403432" ], - "mAssetSupply": "108452986194055859021202195", - "LPTokenSupply": "14620181657707324545507545" + "mAssetSupply": "104223080270883886151452581", + "LPTokenSupply": "12088611049174784770395155" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "254227780332936265728", - "outputQty0": "254295431305481700183", - "outputQty": "252561095639558886310", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "6919854628279157784576", + "outputQty0": "6910288216779831246010", + "outputQty": "6919111933424071356845", + "swapFee": "5484610478286384636", "mpReserves": [ - "40157041080301932504928673", - "34900088361610253496662070", - "33397244249128960278346256" + "38980759721092806531935924", + "21864074206144155065545484", + "43423721226452590150092340" ], "fpReserves": [ - "9423515923315823611388227", - "5274014514125098018463714" + "5189005893905462057983584", + "7010320256084411395046587" ], - "mAssetSupply": "108453240489487164502902378", - "LPTokenSupply": "14620434218802964104393855" + "mAssetSupply": "104229990559100665982698591", + "LPTokenSupply": "12088611597635832599033618" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "57805959262769090920448", - "outputQty0": "57821218789495580643432", - "outputQty": "57426254806672682605778", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "29086654188725837824", + "outputQty0": "29236224091052412479", + "outputQty": "29273303952781619266", + "swapFee": "23204257789443775", "mpReserves": [ - "40157041080301932504928673", - "34900088361610253496662070", - "33455050208391729369266704" + "38980759721092806531935924", + "21864103292798343791383308", + "43423721226452590150092340" ], "fpReserves": [ - "9481337142105319192031659", - "5274014514125098018463714" + "5189035130129553110396063", + "7010290982780458613427321" ], - "mAssetSupply": "108511061708276660083545810", - "LPTokenSupply": "14677860473609636786999633" + "mAssetSupply": "104230019795324757035111070", + "LPTokenSupply": "12088611599956258377977995" }, { - "type": "swap_fp_to_mp", - "inputQty": "559704173938729680896", - "outputIndex": 1, - "outputQty": "561922350904643018989", - "swapFee": "0", - "redemptionFee": "224884020422493988", + "type": "redeem", + "outputIndex": 0, + "inputQty": "10134337527859573161984", + "outputQty0": "10208842348141687993596", + "outputQty": "10216838882621353255241", + "swapFee1": "6080602516715743897", + "swapFee2": "6125305408885012796", "mpReserves": [ - "40157041080301932504928673", - "34899526439259348853643081", - "33455050208391729369266704" + "38970542882210185178680683", + "21864103292798343791383308", + "43423721226452590150092340" ], "fpReserves": [ - "9480774932054262957060168", - "5274574218299036748144610" + "5178826287781411422402467", + "7010290982780458613427321" ], - "mAssetSupply": "108510499723109624271068307", - "LPTokenSupply": "14677860473609636786999633" + "mAssetSupply": "104219817078282024232130270", + "LPTokenSupply": "12078477870488650476390400" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "53271033884040432189440", - "outputQty0": "53252680885992911830770", - "outputQty": "52968890810322315368217", - "swapFee": "42310299580597175629", + "inputQty": "935187423003837210820608", + "outputQty0": "933831925081311772118701", + "outputQty": "934016030979214157459489", + "swapFee": "740918157228549244007", "mpReserves": [ - "40210312114185972937118113", - "34899526439259348853643081", - "33455050208391729369266704" + "39905730305214022389501291", + "21864103292798343791383308", + "43423721226452590150092340" ], "fpReserves": [ - "9534027612940255868890938", - "5221605327488714432776393" + "6112658212862723194521168", + "6076274951801244455967832" ], - "mAssetSupply": "108563752403995617182899077", - "LPTokenSupply": "14677864704639594846717195" + "mAssetSupply": "105153649003363336004248971", + "LPTokenSupply": "12078551962304373331314800" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "18805389269193224880128", - "outputQty0": "18810331586953964848114", - "outputQty": "18680515174277691256139", + "type": "redeem", + "outputIndex": 0, + "inputQty": "9622159905989100306432", + "outputQty0": "9704432851573024426231", + "outputQty": "9713336662664807043830", + "swapFee1": "5773295943593460183", + "swapFee2": "5822659710943814655", "mpReserves": [ - "40210312114185972937118113", - "34899526439259348853643081", - "33473855597660922594146832" + "39896016968551357582457461", + "21864103292798343791383308", + "43423721226452590150092340" ], "fpReserves": [ - "9552837944527209833739052", - "5221605327488714432776393" + "6102953780011150170094937", + "6076274951801244455967832" ], - "mAssetSupply": "108582562735582571147747191", - "LPTokenSupply": "14696545219813872537973334" + "mAssetSupply": "105143950393171473923637395", + "LPTokenSupply": "12068930379727978590354386" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2197794031330266710016", - "outputQty0": "2198369956243313637222", - "outputQty": "2186435831182441914096", - "swapFee": "1746551853488952851", + "type": "swap_fp_to_mp", + "inputQty": "357511528376819507003392", + "outputIndex": 2, + "outputQty": "357941841351304008569200", + "swapFee": "0", + "redemptionFee": "214429524831976724362", "mpReserves": [ - "40210312114185972937118113", - "34899526439259348853643081", - "33476053391692252860856848" + "39896016968551357582457461", + "21864103292798343791383308", + "43065779385101286141523140" ], "fpReserves": [ - "9555036314483453147376274", - "5219418891657531990862297" + "5745571238624522296157036", + "6433786480178063962971224" ], - "mAssetSupply": "108584761105538814461384413", - "LPTokenSupply": "14696545394469057886868619" + "mAssetSupply": "104786782281309678026423856", + "LPTokenSupply": "12068930379727978590354386" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1623277285680506732544", - "outputQty0": "1623462391651740727505", - "outputQty": "1614640175262271187415", - "swapFee": "1289798726392438914", + "type": "swap_fp_to_mp", + "inputQty": "456839497107133947707392", + "outputIndex": 1, + "outputQty": "453555259008651060411635", + "swapFee": "0", + "redemptionFee": "273755633524839377010", "mpReserves": [ - "40210312114185972937118113", - "34901149716545029360375625", - "33476053391692252860856848" + "39896016968551357582457461", + "21410548033789692730971673", + "43065779385101286141523140" ], "fpReserves": [ - "9556659776875104888103779", - "5217804251482269719674882" + "5289311849416456667805645", + "6890625977285197910678616" ], - "mAssetSupply": "108586384567930466202111918", - "LPTokenSupply": "14696545523448930526112510" + "mAssetSupply": "104330796647735137237449475", + "LPTokenSupply": "12068930379727978590354386" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "11112788415053386", - "outputQty0": "11114055030694615", - "outputQty": "11037269065480948", + "inputIndex": 0, + "inputQty": "343133224309253197529088", + "outputQty0": "342574141654824812496829", + "outputQty": "339755192762592762791052", "mpReserves": [ - "40210312114185972937118113", - "34901149727657817775429011", - "33476053391692252860856848" + "40239150192860610779986549", + "21410548033789692730971673", + "43065779385101286141523140" ], "fpReserves": [ - "9556659787989159918798394", - "5217804251482269719674882" + "5631885991071281480302474", + "6890625977285197910678616" ], - "mAssetSupply": "108586384579044521232806533", - "LPTokenSupply": "14696545534486199591593458" + "mAssetSupply": "104673370789389962049946304", + "LPTokenSupply": "12408685572490571353145438" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "8235956344453495521280", - "outputQty0": "8233111657428580975965", - "outputQty": "8188252722309503197501", - "swapFee": "6540973967546578951", + "inputQty": "4058580720961804304384", + "outputQty0": "4051867598996421961272", + "outputQty": "4054111264537894328735", + "swapFee": "3214426473391256608", "mpReserves": [ - "40218548070530426432639393", - "34901149727657817775429011", - "33476053391692252860856848" + "40243208773581572584290933", + "21410548033789692730971673", + "43065779385101286141523140" ], "fpReserves": [ - "9564892899646588499774359", - "5209615998759960216477381" + "5635937858670277902263746", + "6886571866020660016349881" ], - "mAssetSupply": "108594617690701949813782498", - "LPTokenSupply": "14696546188583596346251353" + "mAssetSupply": "104677422656988958471907576", + "LPTokenSupply": "12408685893933218692271098" }, { "type": "swap_fp_to_mp", - "inputQty": "50634926476318968", - "outputIndex": 0, - "outputQty": "50869445665811697", + "inputQty": "2171783441585961655336960", + "outputIndex": 1, + "outputQty": "2147148728517148919412358", "swapFee": "0", - "redemptionFee": "20348885433238", + "redemptionFee": "1297162222024099746675", "mpReserves": [ - "40218548019660980766827696", - "34901149727657817775429011", - "33476053391692252860856848" + "40243208773581572584290933", + "19263399305272543811559315", + "43065779385101286141523140" ], "fpReserves": [ - "9564892848774374916679029", - "5209616049394886692796349" + "3474000821963444991137674", + "9058355307606621671686841" ], - "mAssetSupply": "108594617639850085116120406", - "LPTokenSupply": "14696546188583596346251353" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "6704312983710646272", - "outputQty0": "6746964632107255729", - "outputQty": "6742497436444181736", - "swapFee1": "4022587790226387", - "swapFee2": "2698785852842902", - "mpReserves": [ - "40218548019660980766827696", - "34901149727657817775429011", - "33476046649194816416675112" - ], - "fpReserves": [ - "9564886101809742809423300", - "5209616049394886692796349" - ], - "mAssetSupply": "108594610895584238861707579", - "LPTokenSupply": "14696539484672871414627719" + "mAssetSupply": "102516782782504149660528179", + "LPTokenSupply": "12408685893933218692271098" }, { "type": "swap_fp_to_mp", - "inputQty": "688898156753294983168", + "inputQty": "8964116106595202498560", "outputIndex": 1, - "outputQty": "691769904211967925348", + "outputQty": "8814361189421400785154", "swapFee": "0", - "redemptionFee": "276850313528944754", + "redemptionFee": "5329340775098532282", "mpReserves": [ - "40218548019660980766827696", - "34900457957753605807503663", - "33476046649194816416675112" + "40243208773581572584290933", + "19254584944083122410774161", + "43065779385101286141523140" ], "fpReserves": [ - "9564193976025920447537804", - "5210304947551639987779517" + "3465118587338280770667411", + "9067319423713216874185401" ], - "mAssetSupply": "108593919046650730028766837", - "LPTokenSupply": "14696539484672871414627719" + "mAssetSupply": "102507905877219760538590198", + "LPTokenSupply": "12408685893933218692271098" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8543718325206436864", - "outputQty0": "8544694572548564904", - "outputQty": "8485590094472937548", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "45456555142043861516288", + "outputQty0": "45364334785306065634439", + "outputQty": "45740519606414809072695", + "swapFee": "36170154375440549501", "mpReserves": [ - "40218548019660980766827696", - "34900466501471931013940527", - "33476046649194816416675112" + "40288665328723616445807221", + "19254584944083122410774161", + "43065779385101286141523140" ], "fpReserves": [ - "9564202520720492996102708", - "5210304947551639987779517" + "3510482922123586836301850", + "9021578904106802065112706" ], - "mAssetSupply": "108593927591345302577331741", - "LPTokenSupply": "14696547970262965887565267" + "mAssetSupply": "102553270212005066604224637", + "LPTokenSupply": "12408689510948656236326048" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1026514000681640635924480", - "outputQty0": "1026596805499864251774560", - "outputQty": "1019305481702634919061613", + "inputQty": "2409330193608395456512", + "outputQty0": "2426453197209215845876", + "outputQty": "2418003362875658020136", "mpReserves": [ - "40218548019660980766827696", - "35926980502153571649865007", - "33476046649194816416675112" + "40288665328723616445807221", + "19256994274276730806230673", + "43065779385101286141523140" ], "fpReserves": [ - "10590799326220357247877268", - "5210304947551639987779517" + "3512909375320796052147726", + "9021578904106802065112706" ], - "mAssetSupply": "109620524396845166829106301", - "LPTokenSupply": "15715853451965600806626880" + "mAssetSupply": "102555696665202275820070513", + "LPTokenSupply": "12411107514311531894346184" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "135266474055394763210752", - "outputQty0": "135272340169264063812766", - "outputQty": "134358058212633791768579", - "swapFee": "107426887274508632162", + "inputIndex": 0, + "inputQty": "1050445611848886950821888", + "outputQty0": "1048231015919749278531229", + "outputQty": "1053998628007855397124104", + "swapFee": "834545492287881579573", "mpReserves": [ - "40218548019660980766827696", - "36062246976208966413075759", - "33476046649194816416675112" + "41339110940572503396629109", + "19256994274276730806230673", + "43065779385101286141523140" ], "fpReserves": [ - "10726071666389621311690034", - "5075946889339006196010938" + "4561140391240545330678955", + "7967580276098946667988602" ], - "mAssetSupply": "109755796737014430892919067", - "LPTokenSupply": "15715864194654328257490096" + "mAssetSupply": "103603927681122025098601742", + "LPTokenSupply": "12411190968860760682504141" }, { "type": "mint", "inputIndex": 1, - "inputQty": "841338590503232602112", - "outputQty0": "841371469758757736461", - "outputQty": "835112998832348570516", + "inputQty": "837766006900564992", + "outputQty0": "843886798325057503", + "outputQty": "838201044431435021", "mpReserves": [ - "40218548019660980766827696", - "36063088314799469645677871", - "33476046649194816416675112" + "41339110940572503396629109", + "19256995112042737706795665", + "43065779385101286141523140" ], "fpReserves": [ - "10726913037859380069426495", - "5075946889339006196010938" + "4561141235127343655736458", + "7967580276098946667988602" ], - "mAssetSupply": "109756638108484189650655528", - "LPTokenSupply": "15716699307653160606060612" + "mAssetSupply": "103603928525008823423659245", + "LPTokenSupply": "12411191807061805113939162" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2486577662055371243520", - "outputQty0": "2503708597880530747017", - "outputQty": "2502609182555305424773", - "swapFee1": "1491946597233222746", - "swapFee2": "1001483439152212298", + "type": "mint", + "inputIndex": 1, + "inputQty": "1602474012316467986432", + "outputQty0": "1614180733397068931994", + "outputQty": "1603303369571523381707", "mpReserves": [ - "40218548019660980766827696", - "36060585705616914340253098", - "33476046649194816416675112" + "41339110940572503396629109", + "19258597586055054174782097", + "43065779385101286141523140" ], "fpReserves": [ - "10724409329261499538679478", - "5075946889339006196010938" + "4562755415860740724668452", + "7967580276098946667988602" ], - "mAssetSupply": "109754135401369748272120809", - "LPTokenSupply": "15714212879185764958139366" + "mAssetSupply": "103605542705742220492591239", + "LPTokenSupply": "12412795110431376637320869" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "76298814841088410386432", - "outputQty0": "76301623784956395031663", - "outputQty": "75758604173582844302037", - "swapFee": "60586457298344169887", + "type": "swap_fp_to_mp", + "inputQty": "32343143186131697664", + "outputIndex": 2, + "outputQty": "32269763259390658034", + "swapFee": "0", + "redemptionFee": "19324743418459976", "mpReserves": [ - "40218548019660980766827696", - "36136884520458002750639530", - "33476046649194816416675112" + "41339110940572503396629109", + "19258597586055054174782097", + "43065747115338026750865106" ], "fpReserves": [ - "10800710953046455933711141", - "5000188285165423351708901" + "4562723207955043291373945", + "7967612619242132799686266" ], - "mAssetSupply": "109830437025154704667152472", - "LPTokenSupply": "15714218937831494792556354" + "mAssetSupply": "103605510517161266477756708", + "LPTokenSupply": "12412795110431376637320869" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "7206716994308960256", - "outputQty0": "7257013929955760725", - "outputQty": "7256361057426645715", - "swapFee1": "4324030196585376", - "swapFee2": "2902805571982304", + "inputQty": "8362966594249548627968", + "outputQty0": "8414613988970865123892", + "outputQty": "8427966190224642850759", + "swapFee1": "5017779956549729176", + "swapFee2": "5048768393382519074", "mpReserves": [ - "40218540763299923340181981", - "36136884520458002750639530", - "33476046649194816416675112" + "41330682974382278753778350", + "19258597586055054174782097", + "43065747115338026750865106" ], "fpReserves": [ - "10800703696032525977950416", - "5000188285165423351708901" + "4554308593966072426250053", + "7967612619242132799686266" ], - "mAssetSupply": "109830429771043580283374051", - "LPTokenSupply": "15714211731546903503254635" + "mAssetSupply": "103597100951940688995151890", + "LPTokenSupply": "12404432645615122743665818" }, { "type": "swap_fp_to_mp", - "inputQty": "45783260710802341888", + "inputQty": "9454383028821905375232", "outputIndex": 0, - "outputQty": "46076617852428996415", + "outputQty": "9429469441232499072816", "swapFee": "0", - "redemptionFee": "18432305416651147", + "redemptionFee": "5648725608526103977", "mpReserves": [ - "40218494686682070911185566", - "36136884520458002750639530", - "33476046649194816416675112" + "41321253504941046254705534", + "19258597586055054174782097", + "43065747115338026750865106" ], "fpReserves": [ - "10800657615268984350082291", - "5000234068426134154050789" + "4544894051285195586287947", + "7977067002270954705061498" ], - "mAssetSupply": "109830383708712344072157073", - "LPTokenSupply": "15714211731546903503254635" + "mAssetSupply": "103587692057985420681293761", + "LPTokenSupply": "12404432645615122743665818" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "334599357041282008481792", - "outputQty0": "334492736270486015980177", - "outputQty": "331955044098498516097055", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "812602172669579730354176", + "outputQty0": "810511896697452122680755", + "outputQty": "812344308976700094509190", + "swapFee": "643757626514108583330", "mpReserves": [ - "40553094043723352919667358", - "36136884520458002750639530", - "33476046649194816416675112" + "41321253504941046254705534", + "19258597586055054174782097", + "43878349288007606481219282" ], "fpReserves": [ - "11135150351539470366062468", - "5000234068426134154050789" + "5355405947982647708968702", + "7164722693294254610552308" ], - "mAssetSupply": "110164876444982830088137250", - "LPTokenSupply": "16046166775645402019351690" + "mAssetSupply": "104398203954682872803974516", + "LPTokenSupply": "12404497021377774154524151" }, { - "type": "swap_fp_to_mp", - "inputQty": "882293921622567474429952", - "outputIndex": 0, - "outputQty": "887008931750047933173494", - "swapFee": "0", - "redemptionFee": "354837510686770442885", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "6191362406391807", + "outputQty0": "6178117034180715", + "outputQty": "6185507809701967", + "swapFee": "4902440233819", "mpReserves": [ - "39666085111973304986493864", - "36136884520458002750639530", - "33476046649194816416675112" + "41321253511132408661097341", + "19258597586055054174782097", + "43878349288007606481219282" ], "fpReserves": [ - "10248056574822544258849714", - "5882527990048701628480741" + "5355405954160764743149417", + "7164722687108746800850341" ], - "mAssetSupply": "109278137505776590751367381", - "LPTokenSupply": "16046166775645402019351690" + "mAssetSupply": "104398203960860989838155231", + "LPTokenSupply": "12404497021378264398547532" }, { - "type": "swap_fp_to_mp", - "inputQty": "86115735118732784", - "outputIndex": 1, - "outputQty": "86439200239472509", - "swapFee": "0", - "redemptionFee": "34590164837406", + "type": "mint", + "inputIndex": 1, + "inputQty": "67826760664398996439040", + "outputQty0": "68330886888620182450886", + "outputQty": "67775344407284226357889", "mpReserves": [ - "39666085111973304986493864", - "36136884434018802511167021", - "33476046649194816416675112" + "41321253511132408661097341", + "19326424346719453171221137", + "43878349288007606481219282" ], "fpReserves": [ - "10248056488347132165332673", - "5882528076164436747213525" + "5423736841049384925600303", + "7164722687108746800850341" ], - "mAssetSupply": "109278137419335768822687746", - "LPTokenSupply": "16046166775645402019351690" + "mAssetSupply": "104466534847749610020606117", + "LPTokenSupply": "12472272365785548624905421" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "65418845828266263052288", - "outputQty0": "65400328618420543646700", - "outputQty": "65070842703372418013598", - "swapFee": "51966728243808298848", + "inputQty": "3367997564900296097792", + "outputQty0": "3360835327566457734840", + "outputQty": "3364531010791613484902", + "swapFee": "2666735406833590099", "mpReserves": [ - "39731503957801571249546152", - "36136884434018802511167021", - "33476046649194816416675112" + "41324621508697308957195133", + "19326424346719453171221137", + "43878349288007606481219282" ], "fpReserves": [ - "10313456816965552708979373", - "5817457233461064329199927" + "5427097676376951383335143", + "7161358156097955187365439" ], - "mAssetSupply": "109343537747954189366334446", - "LPTokenSupply": "16046171972318226400181574" + "mAssetSupply": "104469895683077176478340957", + "LPTokenSupply": "12472272632459089308264430" }, { - "type": "swap_fp_to_mp", - "inputQty": "2210607872881269669888", - "outputIndex": 1, - "outputQty": "2219267982849363149443", - "swapFee": "0", - "redemptionFee": "888080791255857369", + "type": "mint", + "inputIndex": 2, + "inputQty": "19947926498455", + "outputQty0": "19895780130585", + "outputQty": "19733412629029", "mpReserves": [ - "39731503957801571249546152", - "36134665166035953148017578", - "33476046649194816416675112" + "41324621508697308957195133", + "19326424346719453171221137", + "43878349288027554407717737" ], "fpReserves": [ - "10311236614987413065555764", - "5819667841333945598869815" + "5427097676396847163465728", + "7161358156097955187365439" ], - "mAssetSupply": "109341318434056840978768206", - "LPTokenSupply": "16046171972318226400181574" + "mAssetSupply": "104469895683097072258471542", + "LPTokenSupply": "12472272632478822720893459" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "282742095530900226048", - "outputQty0": "282823761337537965946", - "outputQty": "280898592732605657992", + "type": "redeem", + "outputIndex": 1, + "inputQty": "546372968556648333312", + "outputQty0": "550537916070652510549", + "outputQty": "546163659620633300388", + "swapFee1": "327823781133988999", + "swapFee2": "330322749642391506", "mpReserves": [ - "39731503957801571249546152", - "36134665166035953148017578", - "33476329391290347316901160" + "41324621508697308957195133", + "19325878183059832537920749", + "43878349288027554407717737" ], "fpReserves": [ - "10311519438748750603521710", - "5819667841333945598869815" + "5426547138480776510955179", + "7161358156097955187365439" ], - "mAssetSupply": "109341601257818178516734152", - "LPTokenSupply": "16046452870910959005839566" + "mAssetSupply": "104469345475503751248352499", + "LPTokenSupply": "12471726292292644185959046" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "12722620399243363352576", - "outputQty0": "12722879577682129916253", - "outputQty": "12636247964653624161945", + "type": "swap_fp_to_mp", + "inputQty": "107696117027424566247424", + "outputIndex": 1, + "outputQty": "106619516630709102742170", + "swapFee": "0", + "redemptionFee": "64487020443317577195", "mpReserves": [ - "39731503957801571249546152", - "36147387786435196511370154", - "33476329391290347316901160" + "41324621508697308957195133", + "19219258666429123435178579", + "43878349288027554407717737" ], "fpReserves": [ - "10324242318326432733437963", - "5819667841333945598869815" + "5319068771075247215628912", + "7269054273125379753612863" ], - "mAssetSupply": "109354324137395860646650405", - "LPTokenSupply": "16059089118875612630001511" + "mAssetSupply": "104361931595118665270603427", + "LPTokenSupply": "12471726292292644185959046" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "14185763960276022984704", - "outputQty0": "14186041064345376594875", - "outputQty": "14113052413190487169184", - "swapFee": "11271506472618020443", + "inputIndex": 0, + "inputQty": "888543292090413481984", + "outputQty0": "886635172614016525221", + "outputQty": "887834355397059788050", + "swapFee": "703623070859106945", "mpReserves": [ - "39731503957801571249546152", - "36161573550395472534354858", - "33476329391290347316901160" + "41325510051989399370677117", + "19219258666429123435178579", + "43878349288027554407717737" ], "fpReserves": [ - "10338428359390778110032838", - "5805554788920755111700631" + "5319955406247861232154133", + "7268166438769982693824813" ], - "mAssetSupply": "109368510178460206023245280", - "LPTokenSupply": "16059090246026259891803555" + "mAssetSupply": "104362818230291279287128648", + "LPTokenSupply": "12471726362654951271869740" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "26783307857154807955456", - "outputQty0": "26951056174730991503010", - "outputQty": "26932446025980683777362", - "swapFee1": "16069984714292884773", - "swapFee2": "10780422469892396601", + "type": "swap_fp_to_mp", + "inputQty": "117307770247840235520", + "outputIndex": 0, + "outputQty": "117237250858608105261", + "swapFee": "0", + "redemptionFee": "70233428609656597", "mpReserves": [ - "39731503957801571249546152", - "36161573550395472534354858", - "33449396945264366633123798" + "41325392814738540762571856", + "19219258666429123435178579", + "43878349288027554407717737" ], "fpReserves": [ - "10311477303216047118529828", - "5805554788920755111700631" + "5319838350533511804491719", + "7268283746540230534060333" ], - "mAssetSupply": "109341569902707944924138871", - "LPTokenSupply": "16032308545167576513136576" + "mAssetSupply": "104362701244810358469122831", + "LPTokenSupply": "12471726362654951271869740" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "502726222034746", - "outputQty0": "505873048841146", - "outputQty": "505661501698764", - "swapFee1": "301635733220", - "swapFee2": "202349219536", + "type": "swap_fp_to_mp", + "inputQty": "51946835770244312", + "outputIndex": 0, + "outputQty": "51915600195058872", + "swapFee": "0", + "redemptionFee": "31101127024917", "mpReserves": [ - "39731503957801571249546152", - "36161573549889811032656094", - "33449396945264366633123798" + "41325392762822940567512984", + "19219258666429123435178579", + "43878349288027554407717737" ], "fpReserves": [ - "10311477302710174069688682", - "5805554788920755111700631" + "5319838298698300096296599", + "7268283798487066304304645" ], - "mAssetSupply": "109341569902202274224517261", - "LPTokenSupply": "16032308544664880454675152" + "mAssetSupply": "104362701193006247887952628", + "LPTokenSupply": "12471726362654951271869740" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "41530012124759497637888", - "outputQty0": "41789676904665382836348", - "outputQty": "41760714788943468354616", - "swapFee1": "24918007274855698582", - "swapFee2": "16715870761866153134", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "26554726997038600192", + "outputQty0": "26753802394884593490", + "outputQty": "26789965126301595332", + "swapFee": "21231481105501633", "mpReserves": [ - "39731503957801571249546152", - "36161573549889811032656094", - "33407636230475423164769182" + "41325392762822940567512984", + "19219285221156120473778771", + "43878349288027554407717737" ], "fpReserves": [ - "10269687625805508686852334", - "5805554788920755111700631" + "5319865052500694980890089", + "7268257008521940002709313" ], - "mAssetSupply": "109299796941168370707834047", - "LPTokenSupply": "15990781024340848442607122" + "mAssetSupply": "104362727946808642772546118", + "LPTokenSupply": "12471726364778099382419903" }, { - "type": "swap_fp_to_mp", - "inputQty": "800768722205311519162368", - "outputIndex": 1, - "outputQty": "803119326199309243188226", - "swapFee": "0", - "redemptionFee": "321389804080631493012", + "type": "mint", + "inputIndex": 2, + "inputQty": "325116423320178161352704", + "outputQty0": "324252449562350173082457", + "outputQty": "321612970549947159163158", "mpReserves": [ - "39731503957801571249546152", - "35358454223690501789467868", - "33407636230475423164769182" + "41325392762822940567512984", + "19219285221156120473778771", + "44203465711347732569070441" ], "fpReserves": [ - "9466213115603929954320850", - "6606323511126066630862999" + "5644117502063045153972546", + "7268257008521940002709313" ], - "mAssetSupply": "108496643820770872606795575", - "LPTokenSupply": "15990781024340848442607122" + "mAssetSupply": "104686980396370992945628575", + "LPTokenSupply": "12793339335328046541583061" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "7005017997113441648640", - "outputQty0": "7006891336876119451941", - "outputQty": "6964041834879144667526", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "44593283274280771584", + "outputQty0": "44930490651294175817", + "outputQty": "44971807248823560917", + "swapFee": "35647505295727962", "mpReserves": [ - "39731503957801571249546152", - "35358454223690501789467868", - "33414641248472536606417822" + "41325392762822940567512984", + "19219329814439394754550355", + "44203465711347732569070441" ], "fpReserves": [ - "9473220006940806073772791", - "6606323511126066630862999" + "5644162432553696448148363", + "7268212036714691179148396" ], - "mAssetSupply": "108503650712107748726247516", - "LPTokenSupply": "15997745066175727587274648" + "mAssetSupply": "104687025326861644239804392", + "LPTokenSupply": "12793339338892797071155857" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "20228217747794074533888", - "outputQty0": "20221955945387172958963", - "outputQty": "20154564742445893648631", - "swapFee": "16078560063085383848", + "inputIndex": 2, + "inputQty": "1623345735784729673728", + "outputQty0": "1618995885623372580703", + "outputQty": "1620481622753864656876", + "swapFee": "1284498071431238533", "mpReserves": [ - "39751732175549365324080040", - "35358454223690501789467868", - "33414641248472536606417822" + "41325392762822940567512984", + "19219329814439394754550355", + "44205089057083517298744169" ], "fpReserves": [ - "9493441962886193246731754", - "6586168946383620737214368" + "5645781428439319820729066", + "7266591555091937314491520" ], - "mAssetSupply": "108523872668053135899206479", - "LPTokenSupply": "15997746674031733895813032" + "mAssetSupply": "104688644322747267612385095", + "LPTokenSupply": "12793339467342604214279710" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "652196495142493749248", - "outputQty0": "652241170740059238496", - "outputQty": "650054040701173820886", - "swapFee": "518592303178290326", + "inputQty": "29766607794784157696", + "outputQty0": "29991706916373451983", + "outputQty": "30019174273813803587", + "swapFee": "23795137066681585", "mpReserves": [ - "39751732175549365324080040", - "35359106420185644283217116", - "33414641248472536606417822" + "41325392762822940567512984", + "19219359581047189538708051", + "44205089057083517298744169" ], "fpReserves": [ - "9494094204056933305970250", - "6585518892342919563393482" + "5645811420146236194181049", + "7266561535917663500687933" ], - "mAssetSupply": "108524524909223875958444975", - "LPTokenSupply": "15997746725890964213642064" + "mAssetSupply": "104688674314454183985837078", + "LPTokenSupply": "12793339469722117920947868" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "67345367905658980007936", - "outputQty0": "67719612038557423234237", - "outputQty": "67687740719619734368808", - "swapFee1": "40407220743395388004", - "swapFee2": "27087844815422969293", + "type": "swap_fp_to_mp", + "inputQty": "359385871875135438848", + "outputIndex": 0, + "outputQty": "359319985121765663928", + "swapFee": "0", + "redemptionFee": "215261794505595957", "mpReserves": [ - "39751732175549365324080040", - "35291418679466024548848308", - "33414641248472536606417822" + "41325033442837818801849056", + "19219359581047189538708051", + "44205089057083517298744169" ], "fpReserves": [ - "9426374592018375882736013", - "6585518892342919563393482" + "5645452650488726867584434", + "7266920921789538636126781" ], - "mAssetSupply": "108456832385030133958180031", - "LPTokenSupply": "15930405398707379573172928" + "mAssetSupply": "104688315760058469164836420", + "LPTokenSupply": "12793339469722117920947868" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "9676353448909442383872", - "outputQty0": "9730021187408373096057", - "outputQty": "9725417489488032317999", - "swapFee1": "5805812069345665430", - "swapFee2": "3892008474963349238", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "7768785019236340727808", + "outputQty0": "7747963071148659593411", + "outputQty": "7754997259640394081747", + "swapFee": "6147146400407280971", "mpReserves": [ - "39751732175549365324080040", - "35281693261976536516530309", - "33414641248472536606417822" + "41325033442837818801849056", + "19219359581047189538708051", + "44212857842102753639471977" ], "fpReserves": [ - "9416644570830967509639956", - "6585518892342919563393482" + "5653200613559875527177845", + "7259165924529898242045034" ], - "mAssetSupply": "108447106255851200548433212", - "LPTokenSupply": "15920729625839677065355599" + "mAssetSupply": "104696063723129617824429831", + "LPTokenSupply": "12793340084436757961675965" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "350679886456702797611008", - "outputQty0": "352603209298638202294104", - "outputQty": "352432211732160922204197", - "swapFee1": "210407931874021678566", - "swapFee2": "141041283719455280917", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "20806170548505141051392", + "outputQty0": "20750365503861814938816", + "outputQty": "20768539375826208481120", + "swapFee": "16462861625028618313", "mpReserves": [ - "39751732175549365324080040", - "34929261050244375594326112", - "33414641248472536606417822" + "41325033442837818801849056", + "19219359581047189538708051", + "44233664012651258780523369" ], "fpReserves": [ - "9064041361532329307345852", - "6585518892342919563393482" + "5673950979063737342116661", + "7238397385154072033563914" ], - "mAssetSupply": "108094644087836281801420025", - "LPTokenSupply": "15570070780176161669912447" + "mAssetSupply": "104716814088633479639368647", + "LPTokenSupply": "12793341730722920464537796" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "42082826689079658151936", - "outputQty0": "42311267314458380035576", - "outputQty": "42283571835963001744149", - "swapFee1": "25249696013447794891", - "swapFee2": "16924506925783352014", + "type": "swap_fp_to_mp", + "inputQty": "3586624917380927586304", + "outputIndex": 0, + "outputQty": "3586174717948202358004", + "swapFee": "0", + "redemptionFee": "2148413097267864374", "mpReserves": [ - "39751732175549365324080040", - "34929261050244375594326112", - "33372357676636573604673673" + "41321447268119870599491052", + "19219359581047189538708051", + "44233664012651258780523369" ], "fpReserves": [ - "9021730094217870927310276", - "6585518892342919563393482" + "5670370290568290901492782", + "7241984010071452961150218" ], - "mAssetSupply": "108052349745028749204736463", - "LPTokenSupply": "15527990478456683356540000" + "mAssetSupply": "104713235548551130466609142", + "LPTokenSupply": "12793341730722920464537796" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "46812018504414458281984", - "outputQty0": "46816399272573192926900", - "outputQty": "46675348152700591171842", - "swapFee": "37228473942109056672", + "type": "swap_fp_to_mp", + "inputQty": "6116066612413744545792", + "outputIndex": 2, + "outputQty": "6118631992473533318082", + "swapFee": "0", + "redemptionFee": "3663526374994322210", "mpReserves": [ - "39751732175549365324080040", - "34976073068748790052608096", - "33372357676636573604673673" + "41321447268119870599491052", + "19219359581047189538708051", + "44227545380658785247205287" ], "fpReserves": [ - "9068546493490444120237176", - "6538843544190218972221640" + "5664264413276633697808248", + "7248100076683866705696010" ], - "mAssetSupply": "108099166144301322397663363", - "LPTokenSupply": "15527994201304077567445667" + "mAssetSupply": "104707133334785848257246818", + "LPTokenSupply": "12793341730722920464537796" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "124818956080455904", - "outputQty0": "124778696122577707", - "outputQty": "124026206084718682", + "inputQty": "1383213043594533535744", + "outputQty0": "1380268096511271807172", + "outputQty": "1381472713500860772692", + "swapFee": "1095063862241924529", "mpReserves": [ - "39751732300368321404535944", - "34976073068748790052608096", - "33372357676636573604673673" + "41322830481163465133026796", + "19219359581047189538708051", + "44227545380658785247205287" ], "fpReserves": [ - "9068546618269140242814883", - "6538843544190218972221640" + "5665644681373144969615420", + "7246718603970365844923318" ], - "mAssetSupply": "108099166269080018520241070", - "LPTokenSupply": "15527994325330283652164349" + "mAssetSupply": "104708513602882359529053990", + "LPTokenSupply": "12793341840229306688730248" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2212773988573663461376", - "outputQty0": "2212977488085783719319", - "outputQty": "2206203559236066782369", - "swapFee": "1759704852219078361", + "type": "redeem", + "outputIndex": 1, + "inputQty": "41648753044974", + "outputQty0": "41971637555102", + "outputQty": "41631465303980", + "swapFee1": "24989251826", + "swapFee2": "25182982533", "mpReserves": [ - "39751732300368321404535944", - "34978285842737363716069472", - "33372357676636573604673673" + "41322830481163465133026796", + "19219359581005558073404071", + "44227545380658785247205287" ], "fpReserves": [ - "9070759595757226026534202", - "6536637340630982905439271" + "5665644681331173332060318", + "7246718603970365844923318" ], - "mAssetSupply": "108101379246568104303960389", - "LPTokenSupply": "15527994501300768874072185" + "mAssetSupply": "104708513602840413074481421", + "LPTokenSupply": "12793341840187660434610456" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "36939381074242339602432", - "outputQty0": "36927433324266683295496", - "outputQty": "36812968908734889125678", - "swapFee": "29363545678662912475", + "type": "redeem", + "outputIndex": 1, + "inputQty": "19131420932269981696", + "outputQty0": "19279738314258179434", + "outputQty": "19123479491568942866", + "swapFee1": "11478852559361989", + "swapFee2": "11567842988554907", "mpReserves": [ - "39788671681442563744138376", - "34978285842737363716069472", - "33372357676636573604673673" + "41322830481163465133026796", + "19219340457526066504461205", + "44227545380658785247205287" ], "fpReserves": [ - "9107687029081492709829698", - "6499824371722248016313593" + "5665625401592859073880884", + "7246718603970365844923318" ], - "mAssetSupply": "108138306679892370987255885", - "LPTokenSupply": "15527997437655336740363432" + "mAssetSupply": "104708494334669941804856894", + "LPTokenSupply": "12793322709914613420564958" }, { - "type": "swap_fp_to_mp", - "inputQty": "76060925183387399880704", - "outputIndex": 1, - "outputQty": "76195651419447126307791", - "swapFee": "0", - "redemptionFee": "30493368250206241712", + "type": "mint", + "inputIndex": 2, + "inputQty": "116331777356031744", + "outputQty0": "116019678311171265", + "outputQty": "115058073219809682", "mpReserves": [ - "39788671681442563744138376", - "34902090191317916589761681", - "33372357676636573604673673" + "41322830481163465133026796", + "19219340457526066504461205", + "44227545496990562603237031" ], "fpReserves": [ - "9031453608455977105548946", - "6575885296905635416194297" + "5665625517612537385052149", + "7246718603970365844923318" ], - "mAssetSupply": "108062103752635105589216845", - "LPTokenSupply": "15527997437655336740363432" + "mAssetSupply": "104708494450689620116028159", + "LPTokenSupply": "12793322824972686640374640" }, { - "type": "swap_fp_to_mp", - "inputQty": "230832528655827142180864", - "outputIndex": 1, - "outputQty": "231170116932027263570703", - "swapFee": "0", - "redemptionFee": "92514825218947694192", + "type": "redeem", + "outputIndex": 2, + "inputQty": "3053814214907110883328", + "outputQty0": "3077485715488885549772", + "outputQty": "3083912210697712749228", + "swapFee1": "1832288528944266529", + "swapFee2": "1846491429293331329", "mpReserves": [ - "39788671681442563744138376", - "34670920074385889326190978", - "33372357676636573604673673" + "41322830481163465133026796", + "19219340457526066504461205", + "44224461584779864890487803" ], "fpReserves": [ - "8800166545408607870067261", - "6806717825561462558375161" + "5662548031897048499502377", + "7246718603970365844923318" ], - "mAssetSupply": "107830909204412955301429352", - "LPTokenSupply": "15527997437655336740363432" + "mAssetSupply": "104705418811465560523809716", + "LPTokenSupply": "12790269193986632423917964" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "200920749079286022144", - "outputQty0": "201974299291138710779", - "outputQty": "201843335485795183550", - "swapFee1": "120552449447571613", - "swapFee2": "80789719716455484", + "outputIndex": 0, + "inputQty": "4288515107923044073472", + "outputQty0": "4321746598646956343201", + "outputQty": "4328368696177135800499", + "swapFee1": "2573109064753826444", + "swapFee2": "2593047959188173805", "mpReserves": [ - "39788671681442563744138376", - "34670920074385889326190978", - "33372155833301087809490123" + "41318502112467287997226297", + "19219340457526066504461205", + "44224461584779864890487803" ], "fpReserves": [ - "8799964571109316731356482", - "6806717825561462558375161" + "5658226285298401543159176", + "7246718603970365844923318" ], - "mAssetSupply": "107830707310903383879174057", - "LPTokenSupply": "15527796528961502399098449" + "mAssetSupply": "104701099657914872755640320", + "LPTokenSupply": "12785980936189615855227136" }, { - "type": "swap_fp_to_mp", - "inputQty": "1027905001295886548992", - "outputIndex": 0, - "outputQty": "1029633479722931213389", - "swapFee": "0", - "redemptionFee": "411880823960476657", + "type": "mint", + "inputIndex": 1, + "inputQty": "158019821241900682182656", + "outputQty0": "159204317547348115587092", + "outputQty": "157876835997684500705079", "mpReserves": [ - "39787642047962840812924987", - "34670920074385889326190978", - "33372155833301087809490123" + "41318502112467287997226297", + "19377360278767967186643861", + "44224461584779864890487803" ], "fpReserves": [ - "8798934869049415539713673", - "6807745730562758444924153" + "5817430602845749658746268", + "7246718603970365844923318" ], - "mAssetSupply": "107829678020724306648007905", - "LPTokenSupply": "15527796528961502399098449" + "mAssetSupply": "104860303975462220871227412", + "LPTokenSupply": "12943857772187300355932215" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "206568725065967530409984", - "outputQty0": "206498751971642294185066", - "outputQty": "205933417990960796341276", - "swapFee": "164232829933117809732", + "inputQty": "1799708194134909696", + "outputQty0": "1795931768812445567", + "outputQty": "1797160210241029981", + "swapFee": "1424688203568206", "mpReserves": [ - "39994210773028808343334971", - "34670920074385889326190978", - "33372155833301087809490123" + "41318503912175482132135993", + "19377360278767967186643861", + "44224461584779864890487803" ], "fpReserves": [ - "9005433621021057833898739", - "6601812312571797648582877" + "5817432398777518471191835", + "7246716806810155603893337" ], - "mAssetSupply": "108036176772695948942192971", - "LPTokenSupply": "15527812952244495710879422" + "mAssetSupply": "104860305771393989683672979", + "LPTokenSupply": "12943857772329769176289035" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "794868019833106333696", - "outputQty0": "799178017924117938135", - "outputQty": "799133292195599383314", - "swapFee1": "476920811899863800", - "swapFee2": "319671207169647175", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "106605112608529584", + "outputQty0": "106381417303648732", + "outputQty": "106454183400156410", + "swapFee": "84390928812270", "mpReserves": [ - "39993411639736612743951657", - "34670920074385889326190978", - "33372155833301087809490123" + "41318504018780594740665577", + "19377360278767967186643861", + "44224461584779864890487803" ], "fpReserves": [ - "9004634443003133715960604", - "6601812312571797648582877" + "5817432505158935774840567", + "7246716700355972203736927" ], - "mAssetSupply": "108035377914349231993902011", - "LPTokenSupply": "15527018131916743794532106" + "mAssetSupply": "104860305877775406987321711", + "LPTokenSupply": "12943857772338208269170262" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "230552857743343715614720", - "outputQty0": "231793490930856950326353", - "outputQty": "231779125542510043460968", - "swapFee1": "138331714646006229368", - "swapFee2": "92717396372342780130", + "type": "mint", + "inputIndex": 0, + "inputQty": "22036598154442280", + "outputQty0": "21990357561998736", + "outputQty": "21805813769114864", "mpReserves": [ - "39761632514194102700490689", - "34670920074385889326190978", - "33372155833301087809490123" + "41318504040817192895107857", + "19377360278767967186643861", + "44224461584779864890487803" ], "fpReserves": [ - "8772840952072276765634251", - "6601812312571797648582877" + "5817432527149293336839303", + "7246716700355972203736927" ], - "mAssetSupply": "107803677140814747386355788", - "LPTokenSupply": "15296479107344864679540322" + "mAssetSupply": "104860305899765764549320447", + "LPTokenSupply": "12943857794144022038285126" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "22085411965888851968", - "outputQty0": "22078078630201478705", - "outputQty": "22017516247942986895", - "swapFee": "17557966266744796", + "type": "redeem", + "outputIndex": 2, + "inputQty": "10886997154359367680", + "outputQty0": "10972546885035069251", + "outputQty": "10995113111166629306", + "swapFee1": "6532198292615620", + "swapFee2": "6583528131021041", "mpReserves": [ - "39761654599606068589342657", - "34670920074385889326190978", - "33372155833301087809490123" + "41318504040817192895107857", + "19377360278767967186643861", + "44224450589666753723858497" ], "fpReserves": [ - "8772863030150906967112956", - "6601790295055549705595982" + "5817421554602408301770052", + "7246716700355972203736927" ], - "mAssetSupply": "107803699218893377587834493", - "LPTokenSupply": "15296479109100661306214801" + "mAssetSupply": "104860294933802407645272237", + "LPTokenSupply": "12943846907800087508179008" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "75738625147926797615104", - "outputQty0": "75757180496975776921259", - "outputQty": "75307958480197123082174", + "inputIndex": 0, + "inputQty": "1182996364865362995445760", + "outputQty0": "1180413794442643808923849", + "outputQty": "1170096699419805240157543", "mpReserves": [ - "39761654599606068589342657", - "34670920074385889326190978", - "33447894458449014607105227" + "42501500405682555890553617", + "19377360278767967186643861", + "44224450589666753723858497" ], "fpReserves": [ - "8848620210647882744034215", - "6601790295055549705595982" + "6997835349045052110693901", + "7246716700355972203736927" ], - "mAssetSupply": "107879456399390353364755752", - "LPTokenSupply": "15371787067580858429296975" + "mAssetSupply": "106040708728245051454196086", + "LPTokenSupply": "14113943607219892748336551" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "45483301956981306163200", - "outputQty0": "45488471874245177875362", - "outputQty": "45358828534960509930843", - "swapFee": "36174209610313611595", + "inputIndex": 0, + "inputQty": "27468970687155552256", + "outputQty0": "27406696523693310367", + "outputQty": "27391112361731855468", + "swapFee": "21726882423338137", "mpReserves": [ - "39761654599606068589342657", - "34716403376342870632354178", - "33447894458449014607105227" + "42501527874653243046105873", + "19377360278767967186643861", + "44224450589666753723858497" ], "fpReserves": [ - "8894108682522127921909577", - "6556431466520589195665139" + "6997862755741575804004268", + "7246689309243610471881459" ], - "mAssetSupply": "107924944871264598542631114", - "LPTokenSupply": "15371790685001819460658134" + "mAssetSupply": "106040736134941575147506453", + "LPTokenSupply": "14113943609392580990670364" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "48834635920181037105152", - "outputQty0": "49098659673673657088390", - "outputQty": "49066970219391534740905", - "swapFee1": "29300781552108622263", - "swapFee2": "19639463869469462835", + "outputIndex": 1, + "inputQty": "20128188815379349504", + "outputQty0": "20299872651179583107", + "outputQty": "20133566652442440135", + "swapFee1": "12076913289227609", + "swapFee2": "12179923590707749", "mpReserves": [ - "39761654599606068589342657", - "34716403376342870632354178", - "33398827488229623072364322" + "42501527874653243046105873", + "19377340145201314744203726", + "44224450589666753723858497" ], "fpReserves": [ - "8845010022848454264821187", - "6556431466520589195665139" + "6997842455868924624421161", + "7246689309243610471881459" ], - "mAssetSupply": "107875865851054794355005559", - "LPTokenSupply": "15322958979159793634415208" + "mAssetSupply": "106040715847248847558631095", + "LPTokenSupply": "14113923482411456940243620" }, { - "type": "swap_fp_to_mp", - "inputQty": "54602827041643528", - "outputIndex": 2, - "outputQty": "54679862540874155", - "swapFee": "0", - "redemptionFee": "21886109815796", + "type": "mint", + "inputIndex": 2, + "inputQty": "67523558631022687944704", + "outputQty0": "67348296703605422839304", + "outputQty": "66737561216975764279597", "mpReserves": [ - "39761654599606068589342657", - "34716403376342870632354178", - "33398827433549760531490167" + "42501527874653243046105873", + "19377340145201314744203726", + "44291974148297776411803201" ], "fpReserves": [ - "8845009968133179725329938", - "6556431521123416237308667" + "7065190752572530047260465", + "7246689309243610471881459" ], - "mAssetSupply": "107875865796361405925330106", - "LPTokenSupply": "15322958979159793634415208" + "mAssetSupply": "106108064143952452981470399", + "LPTokenSupply": "14180661043628432704523217" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "2459092759663856320512", - "outputQty0": "2472369441011998401129", - "outputQty": "2470769089227517978256", - "swapFee1": "1475455655798313792", - "swapFee2": "988947776404799360", + "outputIndex": 0, + "inputQty": "234797126665560621056", + "outputQty0": "236807451221740977199", + "outputQty": "237202314426607188985", + "swapFee1": "140878275999336372", + "swapFee2": "142084470733044586", "mpReserves": [ - "39761654599606068589342657", - "34716403376342870632354178", - "33396356664460533013511911" + "42501290672338816438916888", + "19377340145201314744203726", + "44291974148297776411803201" ], "fpReserves": [ - "8842537598692167726928809", - "6556431521123416237308667" + "7064953945121308306283266", + "7246689309243610471881459" ], - "mAssetSupply": "107873394415868170331728337", - "LPTokenSupply": "15320500033945695357926075" + "mAssetSupply": "106107827478585701973537786", + "LPTokenSupply": "14180426260589594743835798" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "87386056413654749806592", - "outputQty0": "87407411121649824730781", - "outputQty": "87150674998783571720719", - "swapFee": "69507642478043822155", + "inputQty": "143098040583381824", + "outputQty0": "142725965291590758", + "outputQty": "141429422821073048", "mpReserves": [ - "39761654599606068589342657", - "34716403376342870632354178", - "33483742720874187763318503" + "42501290672338816438916888", + "19377340145201314744203726", + "44291974291395816995185025" ], "fpReserves": [ - "8929945009813817551659590", - "6469280846124632665587948" + "7064954087847273597874024", + "7246689309243610471881459" ], - "mAssetSupply": "107960801826989820156459118", - "LPTokenSupply": "15320506984709943162308290" + "mAssetSupply": "106107827621311667265128544", + "LPTokenSupply": "14180426402019017564908846" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "63349616247039287296", - "outputQty0": "63356798244782516142", - "outputQty": "62973921310277670712", + "inputQty": "466225153392761344", + "outputQty0": "469800424791614244", + "outputQty": "469503569120663602", + "swapFee": "372426153987957", "mpReserves": [ - "39761654599606068589342657", - "34716466725959117671641474", - "33483742720874187763318503" + "42501290672338816438916888", + "19377340611426468136965070", + "44291974291395816995185025" ], "fpReserves": [ - "8930008366612062334175732", - "6469280846124632665587948" + "7064954557647698389488268", + "7246688839740041351217857" ], - "mAssetSupply": "107960865183788064938975260", - "LPTokenSupply": "15320569958631253439979002" + "mAssetSupply": "106107828091112092056742788", + "LPTokenSupply": "14180426402056260180307641" }, { "type": "swap_fp_to_mp", - "inputQty": "10653540517548602163200", - "outputIndex": 0, - "outputQty": "10676407937708478220615", + "inputQty": "19532654006455", + "outputIndex": 1, + "outputQty": "19369117350667", "swapFee": "0", - "redemptionFee": "4270875261353924195", + "redemptionFee": "11717620819", "mpReserves": [ - "39750978191668360111122042", - "34716466725959117671641474", - "33483742720874187763318503" + "42501290672338816438916888", + "19377340611407099019614403", + "44291974291395816995185025" ], "fpReserves": [ - "8919331178458677523687407", - "6479934386642181267751148" + "7064954557628169021455174", + "7246688839759574005224312" ], - "mAssetSupply": "107950192266509941482411130", - "LPTokenSupply": "15320569958631253439979002" + "mAssetSupply": "106107828091092574406330513", + "LPTokenSupply": "14180426402056260180307641" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "86764209541956719607808", - "outputQty0": "86784836981122473061968", - "outputQty": "86516747845656300272053", - "swapFee": "69007866056703451721", + "type": "mint", + "inputIndex": 0, + "inputQty": "56039069806587782627328", + "outputQty0": "55911995678166855079990", + "outputQty": "55403350638240341494663", "mpReserves": [ - "39750978191668360111122042", - "34716466725959117671641474", - "33570506930416144482926311" + "42557329742145404221544216", + "19377340611407099019614403", + "44291974291395816995185025" ], "fpReserves": [ - "9006116015439799996749375", - "6393417638796524967479095" + "7120866553306335876535164", + "7246688839759574005224312" ], - "mAssetSupply": "108036977103491063955473098", - "LPTokenSupply": "15320576859417859110324174" + "mAssetSupply": "106163740086770741261410503", + "LPTokenSupply": "14235829752694500521802304" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1172657043533994869653504", - "outputQty0": "1172241811440104108879626", - "outputQty": "1164845573811136808138540", + "inputQty": "8929842554956881920", + "outputQty0": "8909558025402041462", + "outputQty": "8828389308562347081", "mpReserves": [ - "40923635235202354980775546", - "34716466725959117671641474", - "33570506930416144482926311" + "42557338671987959178426136", + "19377340611407099019614403", + "44291974291395816995185025" ], "fpReserves": [ - "10178357826879904105629001", - "6393417638796524967479095" + "7120875462864361278576626", + "7246688839759574005224312" ], - "mAssetSupply": "109209218914931168064352724", - "LPTokenSupply": "16485422433228995918462714" + "mAssetSupply": "106163748996328766663451965", + "LPTokenSupply": "14235838581083809084149385" }, { "type": "swap_fp_to_mp", - "inputQty": "39085681403163108704256", - "outputIndex": 1, - "outputQty": "39194098111534553680767", + "inputQty": "23300911125728042418176", + "outputIndex": 0, + "outputQty": "23336701048494644099858", "swapFee": "0", - "redemptionFee": "15686295061321761240", + "redemptionFee": "13978624585088586479", "mpReserves": [ - "40923635235202354980775546", - "34677272627847583117960707", - "33570506930416144482926311" + "42534001970939464534326278", + "19377340611407099019614403", + "44291974291395816995185025" ], "fpReserves": [ - "10139142089226599702526689", - "6432503320199688076183351" + "7097577755222546967777202", + "7269989750885302047642488" ], - "mAssetSupply": "109170018863572924983011652", - "LPTokenSupply": "16485422433228995918462714" + "mAssetSupply": "106140465267311537441239020", + "LPTokenSupply": "14235838581083809084149385" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "138120042189832476164096", - "outputQty0": "138066386752157024409564", - "outputQty": "137483640901050337689780", - "swapFee": "109736035381324982071", + "type": "redeem", + "outputIndex": 2, + "inputQty": "742627025203852484804608", + "outputQty0": "748848293704421524482495", + "outputQty": "750310474813917642645139", + "swapFee1": "445576215122311490882", + "swapFee2": "449308976222652914689", "mpReserves": [ - "41061755277392187456939642", - "34677272627847583117960707", - "33570506930416144482926311" + "42534001970939464534326278", + "19377340611407099019614403", + "43541663816581899352539886" ], "fpReserves": [ - "10277208475978756726936253", - "6295019679298637738493571" + "6348729461518125443294707", + "7269989750885302047642488" ], - "mAssetSupply": "109308085250325082007421216", - "LPTokenSupply": "16485433406832534050960921" + "mAssetSupply": "105392066282583338569671214", + "LPTokenSupply": "13493256113501468830493865" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "11049280683807032213504", - "outputQty0": "11051014385339734259076", - "outputQty": "10978156775643680759930", + "inputIndex": 2, + "inputQty": "48074514700809663414272", + "outputQty0": "47954339191068536088771", + "outputQty": "47534845017022857165901", "mpReserves": [ - "41061755277392187456939642", - "34688321908531390150174211", - "33570506930416144482926311" + "42534001970939464534326278", + "19377340611407099019614403", + "43589738331282709015954158" ], "fpReserves": [ - "10288259490364096461195329", - "6295019679298637738493571" + "6396683800709193979383478", + "7269989750885302047642488" ], - "mAssetSupply": "109319136264710421741680292", - "LPTokenSupply": "16496411563608177731720851" + "mAssetSupply": "105440020621774407105759985", + "LPTokenSupply": "13540790958518491687659766" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "4812487522205773594624", - "outputQty0": "4813805856554517303791", - "outputQty": "4782056931632433938849", + "inputQty": "131655143686021794758656", + "outputQty0": "131324418807424992323389", + "outputQty": "131314321039692507428889", + "swapFee": "104135292961798325344", "mpReserves": [ - "41061755277392187456939642", - "34688321908531390150174211", - "33575319417938350256520935" + "42534001970939464534326278", + "19377340611407099019614403", + "43721393474968730810712814" ], "fpReserves": [ - "10293073296220650978499120", - "6295019679298637738493571" + "6528008219516618971706867", + "7138675429845609540213599" ], - "mAssetSupply": "109323950070566976258984083", - "LPTokenSupply": "16501193620539810165659700" + "mAssetSupply": "105571345040581832098083374", + "LPTokenSupply": "13540801372047787867492300" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "325074372470861752958976", + "outputQty0": "327768237564087165211479", + "outputQty": "328318141767432591019631", + "swapFee1": "195044623482517051775", + "swapFee2": "196660942538452299126", + "mpReserves": [ + "42205683829172031943306647", + "19377340611407099019614403", + "43721393474968730810712814" + ], + "fpReserves": [ + "6200239981952531806495388", + "7138675429845609540213599" + ], + "mAssetSupply": "105243773463960283385171021", + "LPTokenSupply": "13215746504039274366238501" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "4532446620000828416", - "outputQty0": "4559804356224632808", - "outputQty": "4556732965037250594", - "swapFee1": "2719467972000497", - "swapFee2": "1823921742489853", + "inputQty": "163945353663800", + "outputQty0": "165290769959819", + "outputQty": "165611863481400", + "swapFee1": "98367212198", + "swapFee2": "99174461975", "mpReserves": [ - "41061755277392187456939642", - "34688321908531390150174211", - "33575314861205385219270341" + "42205683829172031943306647", + "19377340611407099019614403", + "43721393474803118947231414" ], "fpReserves": [ - "10293068736416294753866312", - "6295019679298637738493571" + "6200239981787241036535569", + "7138675429845609540213599" ], - "mAssetSupply": "109323945512586541776841128", - "LPTokenSupply": "16501189088365136962031333" + "mAssetSupply": "105243773463795091789673177", + "LPTokenSupply": "13215746503875338849295920" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "293119075787533156352", - "outputQty0": "293199318136794482379", - "outputQty": "291265314575960858896", + "type": "redeem", + "outputIndex": 2, + "inputQty": "49495248734445006487552", + "outputQty0": "49900698578354513448438", + "outputQty": "49997464849580598902047", + "swapFee1": "29697149240667003892", + "swapFee2": "29940419147012708069", "mpReserves": [ - "41061755277392187456939642", - "34688321908531390150174211", - "33575607980281172752426693" + "42205683829172031943306647", + "19377340611407099019614403", + "43671396009953538348329367" ], "fpReserves": [ - "10293361935734431548348691", - "6295019679298637738493571" + "6150339283208886523087131", + "7138675429845609540213599" ], - "mAssetSupply": "109324238711904678571323507", - "LPTokenSupply": "16501480353679712922890229" + "mAssetSupply": "105193902705635884288932808", + "LPTokenSupply": "13166254224855817909508757" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2035327140146300", - "outputQty0": "2035646087503723", - "outputQty": "2026719003004730", - "swapFee": "1617774758106", + "type": "swap_fp_to_mp", + "inputQty": "2531845405739438080", + "outputIndex": 0, + "outputQty": "2533516257129081946", + "swapFee": "0", + "redemptionFee": "1517595019892980", "mpReserves": [ - "41061755277392187456939642", - "34688321910566717290320511", - "33575607980281172752426693" + "42205681295655774814224701", + "19377340611407099019614403", + "43671396009953538348329367" ], "fpReserves": [ - "10293361937770077635852414", - "6295019677271918735488841" + "6150336753883853368119260", + "7138677961691015279651679" ], - "mAssetSupply": "109324238713940324658827230", - "LPTokenSupply": "16501480353679874700366039" + "mAssetSupply": "105193900177828446153857917", + "LPTokenSupply": "13166254224855817909508757" }, { "type": "swap_fp_to_mp", - "inputQty": "152519877031269498880", - "outputIndex": 1, - "outputQty": "152983899593520916407", + "inputQty": "649057730595078608519168", + "outputIndex": 2, + "outputQty": "649187191123262626970512", "swapFee": "0", - "redemptionFee": "61227640592223527", + "redemptionFee": "388777080251317470532", "mpReserves": [ - "41061755277392187456939642", - "34688168926667123769404104", - "33575607980281172752426693" + "42205681295655774814224701", + "19377340611407099019614403", + "43022208818830275721358855" ], "fpReserves": [ - "10293208868668597077032774", - "6295172197148950004987721" + "5502374953464990917231041", + "7787735692286093888170847" ], - "mAssetSupply": "109324085706066484692231117", - "LPTokenSupply": "16501480353679874700366039" + "mAssetSupply": "104546327154489835020440230", + "LPTokenSupply": "13166254224855817909508757" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "61655421828232116174848", - "outputQty0": "61631191940899578320453", - "outputQty": "61356687865266294027387", - "swapFee": "48979244988036309366", + "inputQty": "141256502714515144704", + "outputQty0": "140933527487153605712", + "outputQty": "141161574182092582772", + "swapFee": "111854326803414805", "mpReserves": [ - "41123410699220419573114490", - "34688168926667123769404104", - "33575607980281172752426693" + "42205822552158489329369405", + "19377340611407099019614403", + "43022208818830275721358855" ], "fpReserves": [ - "10354840060609496655353227", - "6233815509283683710960334" + "5502515886992478070836753", + "7787594530711911795588075" ], - "mAssetSupply": "109385716898007384270551570", - "LPTokenSupply": "16501485251604373503996975" + "mAssetSupply": "104546468088017322174045942", + "LPTokenSupply": "13166254236041250589850237" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "655685384042569007104", - "outputQty0": "655866098569921838053", - "outputQty": "652898891324583898208", - "swapFee": "521203081461082165", + "inputIndex": 0, + "inputQty": "136072261872434685149184", + "outputQty0": "135759838384453708350942", + "outputQty": "135957876591427705194761", + "swapFee": "107742280737909284956", "mpReserves": [ - "41123410699220419573114490", - "34688168926667123769404104", - "33576263665665215321433797" + "42341894814030924014518589", + "19377340611407099019614403", + "43022208818830275721358855" ], "fpReserves": [ - "10355495926708066577191280", - "6233162610392359127062126" + "5638275725376931779187695", + "7651636654120484090393314" ], - "mAssetSupply": "109386372764105954192389623", - "LPTokenSupply": "16501485303724681650105191" + "mAssetSupply": "104682227926401775882396884", + "LPTokenSupply": "13166265010269324380778732" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "118006108632613486854144", - "outputQty0": "118024344214025254249080", - "outputQty": "117237060543210114075960", + "inputIndex": 0, + "inputQty": "491568702374857983131648", + "outputQty0": "490418475085024779609831", + "outputQty": "486358538973062531719950", "mpReserves": [ - "41123410699220419573114490", - "34806175035299737256258248", - "33576263665665215321433797" + "42833463516405781997650237", + "19377340611407099019614403", + "43022208818830275721358855" ], "fpReserves": [ - "10473520270922091831440360", - "6233162610392359127062126" + "6128694200461956558797526", + "7651636654120484090393314" ], - "mAssetSupply": "109504397108319979446638703", - "LPTokenSupply": "16618722364267891764181151" + "mAssetSupply": "105172646401486800662006715", + "LPTokenSupply": "13652623549242386912498682" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "178232339186323062784", - "outputQty0": "178162640612052997117", - "outputQty": "177338468743595585917", - "swapFee": "141576668302521564", + "type": "redeem", + "outputIndex": 2, + "inputQty": "6637836781318373376", + "outputQty0": "6690335085059024309", + "outputQty": "6702473044651931893", + "swapFee1": "3982702068791024", + "swapFee2": "4014201051035414", "mpReserves": [ - "41123588931559605896177274", - "34806175035299737256258248", - "33576263665665215321433797" + "42833463516405781997650237", + "19377340611407099019614403", + "43022202116357231069426962" ], "fpReserves": [ - "10473698433562703884437477", - "6232985271923615531476209" + "6128687510126871499773217", + "7651636654120484090393314" ], - "mAssetSupply": "109504575270960591499635820", - "LPTokenSupply": "16618722378425558594433307" + "mAssetSupply": "105172639715165916654017820", + "LPTokenSupply": "13652616911803875801004408" }, { - "type": "swap_fp_to_mp", - "inputQty": "238228696826265045303296", - "outputIndex": 1, - "outputQty": "238946919395983809858361", - "swapFee": "0", - "redemptionFee": "95632185446836427306", + "type": "mint", + "inputIndex": 0, + "inputQty": "88352883125881579503616", + "outputQty0": "88142577826150884846606", + "outputQty": "87396033266799935684464", "mpReserves": [ - "41123588931559605896177274", - "34567228115903753446399887", - "33576263665665215321433797" + "42921816399531663577153853", + "19377340611407099019614403", + "43022202116357231069426962" ], "fpReserves": [ - "10234617969945612816171903", - "6471213968749880576779505" + "6216830087953022384619823", + "7651636654120484090393314" ], - "mAssetSupply": "109265590439528947267797552", - "LPTokenSupply": "16618722378425558594433307" + "mAssetSupply": "105260782292992067538864426", + "LPTokenSupply": "13740012945070675736688872" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "9312376198895804", - "outputQty0": "9308669186006009", - "outputQty": "9270501365193055", - "swapFee": "7398607386010", + "inputQty": "11882408670031163392", + "outputQty0": "11854052280354517255", + "outputQty": "11753327845083152473", "mpReserves": [ - "41123588940871982095073078", - "34567228115903753446399887", - "33576263665665215321433797" + "42921828281940333608317245", + "19377340611407099019614403", + "43022202116357231069426962" ], "fpReserves": [ - "10234617979254282002177912", - "6471213959479379211586450" + "6216841942005302739137078", + "7651636654120484090393314" ], - "mAssetSupply": "109265590448837616453803561", - "LPTokenSupply": "16618722378426298455171908" + "mAssetSupply": "105260794147044347893381681", + "LPTokenSupply": "13740024698398520819841345" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "516617943568173812940800", - "outputQty0": "516405666476468457630434", - "outputQty": "513012354683295631104843", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1319794114225351688192", + "outputQty0": "1330305366136464311445", + "outputQty": "1319608803131049991221", + "swapFee1": "791876468535211012", + "swapFee2": "798183219681878586", "mpReserves": [ - "41640206884440155908013878", - "34567228115903753446399887", - "33576263665665215321433797" + "42921828281940333608317245", + "19376021002603967969623182", + "43022202116357231069426962" ], "fpReserves": [ - "10751023645730750459808346", - "6471213959479379211586450" + "6215511636639166274825633", + "7651636654120484090393314" ], - "mAssetSupply": "109781996115314084911433995", - "LPTokenSupply": "17131734733109594086276751" + "mAssetSupply": "105259464639861431110948822", + "LPTokenSupply": "13738704983471942321674254" }, { "type": "swap_fp_to_mp", - "inputQty": "742926995906821", + "inputQty": "5486472717281953792", "outputIndex": 2, - "outputQty": "745194521663374", + "outputQty": "5488706294117924559", "swapFee": "0", - "redemptionFee": "298282755875", + "redemptionFee": "3287273765707215", "mpReserves": [ - "41640206884440155908013878", - "34567228115903753446399887", - "33576263664920020799770423" + "42921828281940333608317245", + "19376021002603967969623182", + "43022196627650936951502403" ], "fpReserves": [ - "10751023644985043570118784", - "6471213960222306207493271" + "6215506157849556762800163", + "7651642140593201372347106" ], - "mAssetSupply": "109781996114568676304500308", - "LPTokenSupply": "17131734733109594086276751" + "mAssetSupply": "105259459164359095364630567", + "LPTokenSupply": "13738704983471942321674254" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5271827611247493896994816", - "outputQty0": "5268938570372282979140534", - "outputQty": "5229856095120903547886914", + "type": "swap_fp_to_mp", + "inputQty": "23105439053185401487360", + "outputIndex": 1, + "outputQty": "22886782989640200662488", + "swapFee": "0", + "redemptionFee": "13843523887230072133", "mpReserves": [ - "46912034495687649805008694", - "34567228115903753446399887", - "33576263664920020799770423" + "42921828281940333608317245", + "19353134219614327768960694", + "43022196627650936951502403" ], "fpReserves": [ - "16019962215357326549259318", - "6471213960222306207493271" + "6192433618037506642578174", + "7674747579646386773834466" ], - "mAssetSupply": "115050934684940959283640842", - "LPTokenSupply": "22361590828230497634163665" + "mAssetSupply": "105236400468070932474480711", + "LPTokenSupply": "13738704983471942321674254" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1940953487101863514865664", - "outputQty0": "1939575456134019786971852", - "outputQty": "1923264216958347139453050", + "type": "redeem", + "outputIndex": 0, + "inputQty": "125877535184925579280384", + "outputQty0": "126871612778632224883464", + "outputQty": "127098277792487056522930", + "swapFee1": "75526521110955347568", + "swapFee2": "76122967667179334930", + "mpReserves": [ + "42794730004147846551794315", + "19353134219614327768960694", + "43022196627650936951502403" + ], + "fpReserves": [ + "6065562005258874417694710", + "7674747579646386773834466" + ], + "mAssetSupply": "105109604978259967428932177", + "LPTokenSupply": "13612835000939127837928626" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "50616324928790364160", + "outputQty0": "50995774180345461400", + "outputQty": "51036274922723180104", + "swapFee": "40454126435479883", + "mpReserves": [ + "42794730004147846551794315", + "19353184835939256559324854", + "43022196627650936951502403" + ], + "fpReserves": [ + "6065613001033054763156110", + "7674696543371464050654362" + ], + "mAssetSupply": "105109655974034147774393577", + "LPTokenSupply": "13612835004984540481476614" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1128530981091957120", + "outputQty0": "1125803821749460400", + "outputQty": "1126697871505566634", + "swapFee": "893082001122329", + "mpReserves": [ + "42794730004147846551794315", + "19353184835939256559324854", + "43022197756181918043459523" + ], + "fpReserves": [ + "6065614126836876512616510", + "7674695416673592545087728" + ], + "mAssetSupply": "105109657099837969523853977", + "LPTokenSupply": "13612835005073848681588846" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "36447051070856499200", + "outputQty0": "36733567173669326777", + "outputQty": "36798868073540845777", + "swapFee1": "21868230642513899", + "swapFee2": "22040140304201596", "mpReserves": [ - "48852987982789513319874358", - "34567228115903753446399887", - "33576263664920020799770423" + "42794693205279773010948538", + "19353184835939256559324854", + "43022197756181918043459523" ], "fpReserves": [ - "17959537671491346336231170", - "6471213960222306207493271" + "6065577393269702843289733", + "7674695416673592545087728" ], - "mAssetSupply": "116990510141074979070612694", - "LPTokenSupply": "24284855045188844773616715" + "mAssetSupply": "105109620388310936158728796", + "LPTokenSupply": "13612798560209600889341035" }, { "type": "swap_fp_to_mp", - "inputQty": "455832499058547479281664", - "outputIndex": 2, - "outputQty": "459712227462070804637661", + "inputQty": "181087220198575150465024", + "outputIndex": 1, + "outputQty": "179297540324089042401612", "swapFee": "0", - "redemptionFee": "184055849654658043655", + "redemptionFee": "108458481171151674075", "mpReserves": [ - "48852987982789513319874358", - "34567228115903753446399887", - "33116551437457949995132762" + "42794693205279773010948538", + "19173887295615167516923242", + "43022197756181918043459523" ], "fpReserves": [ - "17499398047354701227093598", - "6927046459280853686774935" + "5884813257984450053164102", + "7855782636872167695552752" ], - "mAssetSupply": "116530554572787988619518777", - "LPTokenSupply": "24284855045188844773616715" + "mAssetSupply": "104928964711506854520277240", + "LPTokenSupply": "13612798560209600889341035" }, { "type": "swap_fp_to_mp", - "inputQty": "83184969266212816", - "outputIndex": 2, - "outputQty": "83827610491902012", + "inputQty": "209060906573661863936", + "outputIndex": 0, + "outputQty": "209025643648654811110", "swapFee": "0", - "redemptionFee": "33562872636498", + "redemptionFee": "125188414997296147", "mpReserves": [ - "48852987982789513319874358", - "34567228115903753446399887", - "33116551353630339503230750" + "42794484179636124356137428", + "19173887295615167516923242", + "43022197756181918043459523" ], "fpReserves": [ - "17499397963447519635846675", - "6927046542465822952987751" + "5884604610626121226251031", + "7855991697778741357416688" ], - "mAssetSupply": "116530554488914369900908352", - "LPTokenSupply": "24284855045188844773616715" + "mAssetSupply": "104928756189336940690660316", + "LPTokenSupply": "13612798560209600889341035" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "328085856093882810368", - "outputQty0": "327834429967683988606", - "outputQty": "324752492967131255619", - "swapFee": "260106870079955066", + "inputQty": "13499325042055370752", + "outputQty0": "13466809811097047665", + "outputQty": "13356666057422912315", "mpReserves": [ - "48853316068645607202684726", - "34567228115903753446399887", - "33116551353630339503230750" + "42794497678961166411508180", + "19173887295615167516923242", + "43022197756181918043459523" ], "fpReserves": [ - "17499725797877487319835281", - "6926721789972855821732132" + "5884618077435932323298696", + "7855991697778741357416688" ], - "mAssetSupply": "116530882323344337584896958", - "LPTokenSupply": "24284855071199531781612221" + "mAssetSupply": "104928769656146751787707981", + "LPTokenSupply": "13612811916875658312253350" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "881914899284653506560", - "outputQty0": "881239027631646992464", - "outputQty": "872952953619062694401", - "swapFee": "699182939631876051", + "inputQty": "24818176120413203988480", + "outputQty0": "24758354652719404043853", + "outputQty": "24555642862934342473784", "mpReserves": [ - "48854197983544891856191286", - "34567228115903753446399887", - "33116551353630339503230750" + "42819315855081579615496660", + "19173887295615167516923242", + "43022197756181918043459523" ], "fpReserves": [ - "17500607036905118966827745", - "6925848837019236759037731" + "5909376432088651727342549", + "7855991697778741357416688" ], - "mAssetSupply": "116531763562371969231889422", - "LPTokenSupply": "24284855141117825744799826" + "mAssetSupply": "104953528010799471191751834", + "LPTokenSupply": "13637367559738592654727134" }, { "type": "swap_fp_to_mp", - "inputQty": "4673559692688371482624", - "outputIndex": 2, - "outputQty": "4709647111814896916837", + "inputQty": "431236291459120373956608", + "outputIndex": 1, + "outputQty": "426580253429428334777552", "swapFee": "0", - "redemptionFee": "1885647500641230601", + "redemptionFee": "258112741541966211549", "mpReserves": [ - "48854197983544891856191286", - "34567228115903753446399887", - "33111841706518524606313913" + "42819315855081579615496660", + "18747307042185739182145690", + "43022197756181918043459523" ], "fpReserves": [ - "17495892918153515890324640", - "6930522396711925130520355" + "5479188529518708041426300", + "8287227989237861731373296" ], - "mAssetSupply": "116527051329267866796616918", - "LPTokenSupply": "24284855141117825744799826" + "mAssetSupply": "104523598220971069472047134", + "LPTokenSupply": "13637367559738592654727134" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "45928795697805164281856", - "outputQty0": "46282119225265692874910", - "outputQty": "46238116642280367202560", - "swapFee1": "27557277418683098569", - "swapFee2": "18512847690106277149", + "type": "mint", + "inputIndex": 0, + "inputQty": "8737952546164665483264", + "outputQty0": "8716116243179143609697", + "outputQty": "8649658371184951726682", "mpReserves": [ - "48854197983544891856191286", - "34567228115903753446399887", - "33065603589876244239111353" + "42828053807627744280979924", + "18747307042185739182145690", + "43022197756181918043459523" ], "fpReserves": [ - "17449610798928250197449730", - "6930522396711925130520355" + "5487904645761887185035997", + "8287227989237861731373296" ], - "mAssetSupply": "116480787722890291210019157", - "LPTokenSupply": "24238929101147762448827826" + "mAssetSupply": "104532314337214248615656831", + "LPTokenSupply": "13646017218109777606453816" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2290789734102220288", - "outputQty0": "2308401298221839617", - "outputQty": "2306611447185808977", - "swapFee1": "1374473840461332", - "swapFee2": "923360519288735", + "type": "swap_fp_to_mp", + "inputQty": "1044522895412587973836800", + "outputIndex": 0, + "outputQty": "1041841797068908335215064", + "swapFee": "0", + "redemptionFee": "623963113605254029936", "mpReserves": [ - "48854197983544891856191286", - "34567225809292306260590910", - "33065603589876244239111353" + "41786212010558835945764860", + "18747307042185739182145690", + "43022197756181918043459523" ], "fpReserves": [ - "17449608490526951975610113", - "6930522396711925130520355" + "4447966123086463801808752", + "9331750884650449705210096" ], - "mAssetSupply": "116480785415412353507468275", - "LPTokenSupply": "24238926810495475730653671" + "mAssetSupply": "103492999777652430486459522", + "LPTokenSupply": "13646017218109777606453816" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "21742198873975886446592", - "outputQty0": "21750348199409054547019", - "outputQty": "21571397563856950941913", + "inputIndex": 2, + "inputQty": "92771409803185324032", + "outputQty0": "92531172139082871499", + "outputQty": "92013836335928252578", "mpReserves": [ - "48854197983544891856191286", - "34588968008166282147037502", - "33065603589876244239111353" + "41786212010558835945764860", + "18747307042185739182145690", + "43022290527591721228783555" ], "fpReserves": [ - "17471358838726361030157132", - "6930522396711925130520355" + "4448058654258602884680251", + "9331750884650449705210096" ], - "mAssetSupply": "116502535763611762562015294", - "LPTokenSupply": "24260498208059332681595584" + "mAssetSupply": "103493092308824569569331021", + "LPTokenSupply": "13646109231946113534706394" }, { - "type": "swap_fp_to_mp", - "inputQty": "299249984303572312915968", - "outputIndex": 0, - "outputQty": "301811507949315469088002", - "swapFee": "0", - "redemptionFee": "120681014219586022398", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "166860840068714889216", + "outputQty0": "166428739929897359481", + "outputQty": "167317109342757671552", + "swapFee": "132398567213664499", "mpReserves": [ - "48552386475595576387103284", - "34588968008166282147037502", - "33065603589876244239111353" + "41786212010558835945764860", + "18747307042185739182145690", + "43022457388431789943672771" ], "fpReserves": [ - "17169656303177395974159917", - "7229772381015497443436323" + "4448225082998532782039732", + "9331583567541106947538544" ], - "mAssetSupply": "116200953909077017092040477", - "LPTokenSupply": "24260498208059332681595584" + "mAssetSupply": "103493258737564499466690502", + "LPTokenSupply": "13646109245185970256072843" }, { "type": "swap_fp_to_mp", - "inputQty": "10265176225744181788672", - "outputIndex": 2, - "outputQty": "10334910701377431604487", + "inputQty": "67910703021088441368576", + "outputIndex": 0, + "outputQty": "67605161062459184605179", "swapFee": "0", - "redemptionFee": "4137871657395563368", + "redemptionFee": "40492211594996150288", "mpReserves": [ - "48552386475595576387103284", - "34588968008166282147037502", - "33055268679174866807506866" + "41718606849496376761159681", + "18747307042185739182145690", + "43022457388431789943672771" ], "fpReserves": [ - "17159311624033907065737706", - "7240037557241241625224995" + "4380738063673539198225465", + "9399494270562195388907120" ], - "mAssetSupply": "116190613367805185579181634", - "LPTokenSupply": "24260498208059332681595584" + "mAssetSupply": "103425812210451100879026523", + "LPTokenSupply": "13646109245185970256072843" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "120398072746659540893696", - "outputQty0": "121290289397337105553758", - "outputQty": "121197013442268577224392", - "swapFee1": "72238843647995724536", - "swapFee2": "48516115758934842221", + "type": "mint", + "inputIndex": 1, + "inputQty": "11271258095879008026624", + "outputQty0": "11359392034240552127151", + "outputQty": "11297833311401611088458", "mpReserves": [ - "48552386475595576387103284", - "34467770994724013569813110", - "33055268679174866807506866" + "41718606849496376761159681", + "18758578300281618190172314", + "43022457388431789943672771" ], "fpReserves": [ - "17038021334636569960183948", - "7240037557241241625224995" + "4392097455707779750352616", + "9399494270562195388907120" ], - "mAssetSupply": "116069371594523607408470097", - "LPTokenSupply": "24140107359197037940274341" + "mAssetSupply": "103437171602485341431153674", + "LPTokenSupply": "13657407078497371867161301" }, { - "type": "swap_fp_to_mp", - "inputQty": "881908738045994598400", - "outputIndex": 1, - "outputQty": "887949331856085470495", - "swapFee": "0", - "redemptionFee": "355454759376716101", + "type": "redeem", + "outputIndex": 2, + "inputQty": "476769504074363001896960", + "outputQty0": "478844679792315893456863", + "outputQty": "479784260059730482828727", + "swapFee1": "286061702444617801138", + "swapFee2": "287306807875389536074", "mpReserves": [ - "48552386475595576387103284", - "34466883045392157484342615", - "33055268679174866807506866" + "41718606849496376761159681", + "18758578300281618190172314", + "42542673128372059460844044" ], "fpReserves": [ - "17037132697738128169930670", - "7240919465979287619823395" + "3913252775915463856895753", + "9399494270562195388907120" ], - "mAssetSupply": "116068483313079924994932920", - "LPTokenSupply": "24140107359197037940274341" + "mAssetSupply": "102958614229500900927232885", + "LPTokenSupply": "13180666180593253327044454" }, { "type": "swap_fp_to_mp", - "inputQty": "27645547587459264", + "inputQty": "27154484781944332", "outputIndex": 2, - "outputQty": "27830232222529928", + "outputQty": "26992999248878790", "swapFee": "0", - "redemptionFee": "11142569656456", + "redemptionFee": "16164628173015", "mpReserves": [ - "48552386475595576387103284", - "34466883045392157484342615", - "33055268651344634584976938" + "41718606849496376761159681", + "18758578300281618190172314", + "42542673101379060211965254" ], "fpReserves": [ - "17037132669881704028789210", - "7240919493624835207282659" + "3913252748974416901869441", + "9399494297716680170851452" ], - "mAssetSupply": "116068483285234643423447916", - "LPTokenSupply": "24140107359197037940274341" + "mAssetSupply": "102958614202576018600379588", + "LPTokenSupply": "13180666180593253327044454" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "3730861917967458762752", - "outputQty0": "3758459414417238147073", - "outputQty": "3759807172420323667077", - "swapFee1": "2238517150780475257", - "swapFee2": "1503383765766895258", + "type": "swap_fp_to_mp", + "inputQty": "196280690612243464192", + "outputIndex": 2, + "outputQty": "195113323368874393340", + "swapFee": "0", + "redemptionFee": "116842679769959309", "mpReserves": [ - "48548626668423156063436207", - "34466883045392157484342615", - "33055268651344634584976938" + "41718606849496376761159681", + "18758578300281618190172314", + "42542477988055691337571914" ], "fpReserves": [ - "17033374210467286790642137", - "7240919493624835207282659" + "3913058011174800303020642", + "9399690578407292414315644" ], - "mAssetSupply": "116064726329203991952196101", - "LPTokenSupply": "24136376721130785559559114" + "mAssetSupply": "102958419581619081771490098", + "LPTokenSupply": "13180666180593253327044454" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "19732623490686476353536", - "outputQty0": "19743274987851235901477", - "outputQty": "19586505657669034344866", + "inputQty": "26386553590310097649664", + "outputQty0": "26319918785271927563243", + "outputQty": "26505431422627563421054", + "swapFee": "20962676006378525585", "mpReserves": [ - "48548626668423156063436207", - "34466883045392157484342615", - "33075001274835321061330474" + "41718606849496376761159681", + "18758578300281618190172314", + "42568864541646001435221578" ], "fpReserves": [ - "17053117485455138026543614", - "7240919493624835207282659" + "3939377929960072230583885", + "9373185146984664850894590" ], - "mAssetSupply": "116084469604191843188097578", - "LPTokenSupply": "24155963226788454593903980" + "mAssetSupply": "102984739500404353699053341", + "LPTokenSupply": "13180668276860853964897012" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "182208574968203168448512", - "outputQty0": "183553069883689827935266", - "outputQty": "183618034407158342581657", - "swapFee1": "109325144980921901069", - "swapFee2": "73421227953475931174", + "outputIndex": 2, + "inputQty": "42143538488002182381568", + "outputQty0": "42306020147447430641185", + "outputQty": "42387631659799756715052", + "swapFee1": "25286123092801309428", + "swapFee2": "25383612088468458384", "mpReserves": [ - "48365008634015997720854550", - "34466883045392157484342615", - "33075001274835321061330474" + "41718606849496376761159681", + "18758578300281618190172314", + "42526476909986201678506526" ], "fpReserves": [ - "16869564415571448198608348", - "7240919493624835207282659" + "3897071909812624799942700", + "9373185146984664850894590" ], - "mAssetSupply": "115900989955536106836093486", - "LPTokenSupply": "23973765584334749517645574" + "mAssetSupply": "102942458863868994736870540", + "LPTokenSupply": "13138527266985161062646386" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "17067485725628376", - "outputQty0": "17193107360260546", - "outputQty": "17177073537315083", - "swapFee1": "10240491435377", - "swapFee2": "6877242944104", + "type": "swap_fp_to_mp", + "inputQty": "373339685700197744640", + "outputIndex": 1, + "outputQty": "367342310786031522382", + "swapFee": "0", + "redemptionFee": "222238608447830546", "mpReserves": [ - "48365008634015997720854550", - "34466883045392157484342615", - "33075001257658247524015391" + "41718606849496376761159681", + "18758210957970832158649932", + "42526476909986201678506526" ], "fpReserves": [ - "16869564398378340838347802", - "7240919493624835207282659" + "3896701512131878415698126", + "9373558486670365048639230" ], - "mAssetSupply": "115900989938349876718777044", - "LPTokenSupply": "23973765567268287841160735" + "mAssetSupply": "102942088688426856800456512", + "LPTokenSupply": "13138527266985161062646386" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "14713628116489998336", - "outputQty0": "14702597150298770551", - "outputQty": "14586415327038779598", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "16144501190293217869824", + "outputQty0": "16103777732155199944365", + "outputQty": "16218035048427560321452", + "swapFee": "12826270150405331889", "mpReserves": [ - "48365023347644114210852886", - "34466883045392157484342615", - "33075001257658247524015391" + "41718606849496376761159681", + "18758210957970832158649932", + "42542621411176494896376350" ], "fpReserves": [ - "16869579100975491137118353", - "7240919493624835207282659" + "3912805289864033615642491", + "9357340451621937488317778" ], - "mAssetSupply": "115901004640947027017547595", - "LPTokenSupply": "23973780153683614879940333" + "mAssetSupply": "102958192466159012000400877", + "LPTokenSupply": "13138528549612176103179574" }, { "type": "swap_fp_to_mp", - "inputQty": "84067984002405086789632", + "inputQty": "140904088540822421504", "outputIndex": 2, - "outputQty": "84608788158233336647353", + "outputQty": "140074893480280281839", "swapFee": "0", - "redemptionFee": "33875228471353776989", + "redemptionFee": "83883173447441504", "mpReserves": [ - "48365023347644114210852886", - "34466883045392157484342615", - "32990392469500014187368038" + "41718606849496376761159681", + "18758210957970832158649932", + "42542481336283014616094511" ], "fpReserves": [ - "16784891029797106694644049", - "7324987477627240294072291" + "3912665484574954546468047", + "9357481355710478310739282" ], - "mAssetSupply": "115816350444997113928850280", - "LPTokenSupply": "23973780153683614879940333" + "mAssetSupply": "102958052744753106378667937", + "LPTokenSupply": "13138528549612176103179574" }, { "type": "swap_fp_to_mp", - "inputQty": "41358531055596997705728", + "inputQty": "9030919758781402316800", "outputIndex": 1, - "outputQty": "41624698652401479973695", + "outputQty": "8886304211416330183668", "swapFee": "0", - "redemptionFee": "16662666600854168550", + "redemptionFee": "5376169650278997974", "mpReserves": [ - "48365023347644114210852886", - "34425258346739756004368920", - "32990392469500014187368038" + "41718606849496376761159681", + "18749324653759415828466264", + "42542481336283014616094511" ], "fpReserves": [ - "16743234363294971273268028", - "7366346008682837291778019" + "3903705201824489549844280", + "9366512275469259713056082" ], - "mAssetSupply": "115774710441161579361642809", - "LPTokenSupply": "23973780153683614879940333" + "mAssetSupply": "102949097838172291661042144", + "LPTokenSupply": "13138528549612176103179574" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "45836927370528489472", - "outputQty0": "45861622343854932328", - "outputQty": "45503835802444680918", + "type": "redeem", + "outputIndex": 2, + "inputQty": "13987318250180788092928", + "outputQty0": "14040603197487648671926", + "outputQty": "14067691023461226500395", + "swapFee1": "8392390950108472855", + "swapFee2": "8424361918492589203", "mpReserves": [ - "48365023347644114210852886", - "34425258346739756004368920", - "32990438306427384715857510" + "41718606849496376761159681", + "18749324653759415828466264", + "42528413645259553389594116" ], "fpReserves": [ - "16743280224917315128200356", - "7366346008682837291778019" + "3889664598627001901172354", + "9366512275469259713056082" ], - "mAssetSupply": "115774756302783923216575137", - "LPTokenSupply": "23973825657519417324621251" + "mAssetSupply": "102935065659336722504959421", + "LPTokenSupply": "13124542070601090325933931" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "347036352302234401243136", - "outputQty0": "349540281351603954367463", - "outputQty": "349207068082737748941652", - "swapFee1": "208221811381340640745", - "swapFee2": "139816112540641581746", + "type": "mint", + "inputIndex": 1, + "inputQty": "19199550683228499968", + "outputQty0": "19347793999999397950", + "outputQty": "19263144256881925818", "mpReserves": [ - "48365023347644114210852886", - "34425258346739756004368920", - "32641231238344646966915858" + "41718606849496376761159681", + "18749343853310099056966232", + "42528413645259553389594116" ], "fpReserves": [ - "16393739943565711173832893", - "7366346008682837291778019" + "3889683946421001900570304", + "9366512275469259713056082" ], - "mAssetSupply": "115425355837544859903789420", - "LPTokenSupply": "23626810127398321057442189" + "mAssetSupply": "102935085007130722504357371", + "LPTokenSupply": "13124561333745347207859749" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3037018443514709016576", - "outputQty0": "3038746100432197862765", - "outputQty": "3015271455034266012845", + "type": "swap_fp_to_mp", + "inputQty": "473647626513803770855424", + "outputIndex": 2, + "outputQty": "470145003530051607041808", + "swapFee": "0", + "redemptionFee": "281553480496129364955", "mpReserves": [ - "48365023347644114210852886", - "34425258346739756004368920", - "32644268256788161675932434" + "41718606849496376761159681", + "18749343853310099056966232", + "42058268641729501782552308" ], "fpReserves": [ - "16396778689666143371695658", - "7366346008682837291778019" + "3420428145594119625644866", + "9840159901983063483911506" ], - "mAssetSupply": "115428394583645292101652185", - "LPTokenSupply": "23629825398853355323455034" + "mAssetSupply": "102466110759784336358796888", + "LPTokenSupply": "13124561333745347207859749" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1156075648971742773248", - "outputQty0": "1164377209388423172610", - "outputQty": "1163249820579060579639", - "swapFee1": "693645389383045663", - "swapFee2": "465750883755369269", + "type": "mint", + "inputIndex": 1, + "inputQty": "54496444598455663329280", + "outputQty0": "54910658654072242976199", + "outputQty": "54781120348944955703092", "mpReserves": [ - "48365023347644114210852886", - "34425258346739756004368920", - "32643105006967582615352795" + "41718606849496376761159681", + "18803840297908554720295512", + "42058268641729501782552308" ], "fpReserves": [ - "16395614312456754948523048", - "7366346008682837291778019" + "3475338804248191868621065", + "9840159901983063483911506" ], - "mAssetSupply": "115427230672186787433848844", - "LPTokenSupply": "23628669392568922518986352" + "mAssetSupply": "102521021418438408601773087", + "LPTokenSupply": "13179342454094292163562841" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "4550734885863842381824", - "outputQty0": "4553322595933636696292", - "outputQty": "4518574362248105798699", - "swapFee": "3614515724311965717", + "inputQty": "726482416345440583680", + "outputQty0": "724705482388024369805", + "outputQty": "731824642401552313872", + "swapFee": "578332554118491064", "mpReserves": [ - "48365023347644114210852886", - "34425258346739756004368920", - "32647655741853446457734619" + "41718606849496376761159681", + "18803840297908554720295512", + "42058995124145847223135988" ], "fpReserves": [ - "16400167635052688585219340", - "7361827434320589185979320" + "3476063509730579892990870", + "9839428077340661931597634" ], - "mAssetSupply": "115431783994782721070545136", - "LPTokenSupply": "23628669754020494950182923" + "mAssetSupply": "102521746123920796626142892", + "LPTokenSupply": "13179342511927547575411947" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "71896487580832", - "outputQty0": "72413023022212", - "outputQty": "72439456504537", - "swapFee1": "43137892548", - "swapFee2": "28965209208", + "outputIndex": 1, + "inputQty": "332115043736278144122880", + "outputQty0": "332499606934107521009697", + "outputQty": "329752150062003968117155", + "swapFee1": "199269026241766886473", + "swapFee2": "199499764160464512605", "mpReserves": [ - "48365023347571674754348349", - "34425258346739756004368920", - "32647655741853446457734619" + "41718606849496376761159681", + "18474088147846550752178357", + "42058995124145847223135988" ], "fpReserves": [ - "16400167634980275562197128", - "7361827434320589185979320" + "3143563902796472371981173", + "9839428077340661931597634" ], - "mAssetSupply": "115431783994710337012732132", - "LPTokenSupply": "23628669753948602776391345" + "mAssetSupply": "102189446016750849569645800", + "LPTokenSupply": "12847247395093893607977714" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "4203033027689169551360", - "outputQty0": "4199818341019557347018", - "outputQty": "4167356206143280889828", + "inputQty": "184367946301267744", + "outputQty0": "183916751737542271", + "outputQty": "186098393008683285", + "swapFee": "146989044554610", "mpReserves": [ - "48369226380599363923899709", - "34425258346739756004368920", - "32647655741853446457734619" + "41718607033864323062427425", + "18474088147846550752178357", + "42058995124145847223135988" ], "fpReserves": [ - "16404367453321295119544146", - "7361827434320589185979320" + "3143564086713224109523444", + "9839427891242268922914349" ], - "mAssetSupply": "115435983813051356570079150", - "LPTokenSupply": "23632837110154746057281173" + "mAssetSupply": "102189446200667601307188071", + "LPTokenSupply": "12847247395108592512433175" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "2325707185705994682368", - "outputQty0": "2342417806429019224283", - "outputQty": "2340150052039817923058", - "swapFee1": "1395424311423596809", - "swapFee2": "936967122571607689", + "type": "swap_fp_to_mp", + "inputQty": "7720775318759910932480", + "outputIndex": 0, + "outputQty": "7638006722164499710504", + "swapFee": "0", + "redemptionFee": "4574335886344992009", "mpReserves": [ - "48369226380599363923899709", - "34425258346739756004368920", - "32645315591801406639811561" + "41710969027142158562716921", + "18474088147846550752178357", + "42058995124145847223135988" ], "fpReserves": [ - "16402025035514866100319863", - "7361827434320589185979320" + "3135940193569315789507386", + "9847148666561028833846829" ], - "mAssetSupply": "115433642332212050122462556", - "LPTokenSupply": "23630511542511471204958485" + "mAssetSupply": "102181826881859579332164022", + "LPTokenSupply": "12847247395108592512433175" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "168787311267029319680", - "outputQty0": "170000034992249556079", - "outputQty": "169871451482277639446", - "swapFee1": "101272386760217591", - "swapFee2": "68000013996899822", - "mpReserves": [ - "48369226380599363923899709", - "34425088475288273726729474", - "32645315591801406639811561" - ], - "fpReserves": [ - "16401855035479873850763784", - "7361827434320589185979320" - ], - "mAssetSupply": "115433472400177071869806299", - "LPTokenSupply": "23630342765327442851660564" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "62170620132860134162432", - "outputIndex": 1, - "outputQty": "62546635534350311741814", - "swapFee": "0", - "redemptionFee": "25037652500718248278", + "outputIndex": 2, + "inputQty": "2894949576541771661312", + "outputQty0": "2895878431923749596943", + "outputQty": "2901434718104534705921", + "swapFee1": "1736969745925062996", + "swapFee2": "1737527059154249758", "mpReserves": [ - "48369226380599363923899709", - "34362541839753923414987660", - "32645315591801406639811561" + "41710969027142158562716921", + "18474088147846550752178357", + "42056093689427742688430067" ], "fpReserves": [ - "16339260904228078230066939", - "7423998054453449320141752" + "3133044315137392039910443", + "9847148666561028833846829" ], - "mAssetSupply": "115370903306577776967357732", - "LPTokenSupply": "23630342765327442851660564" + "mAssetSupply": "102178932740954714736816837", + "LPTokenSupply": "12844352619229025333278162" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "37411947169075511164928", - "outputQty0": "37383226421338516167916", - "outputQty": "37095921112964790372523", + "inputIndex": 1, + "inputQty": "3560558526914971566080", + "outputQty0": "3588601693157665460064", + "outputQty": "3585291184366576172528", "mpReserves": [ - "48406638327768439435064637", - "34362541839753923414987660", - "32645315591801406639811561" + "41710969027142158562716921", + "18477648706373465723744437", + "42056093689427742688430067" ], "fpReserves": [ - "16376644130649416746234855", - "7423998054453449320141752" + "3136632916830549705370507", + "9847148666561028833846829" ], - "mAssetSupply": "115408286532999115483525648", - "LPTokenSupply": "23667438686440407642033087" + "mAssetSupply": "102182521342647872402276901", + "LPTokenSupply": "12847937910413391909450690" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "194164974217577027862528", - "outputQty0": "194273550495165136758305", - "outputQty": "192766734505851558832740", - "swapFee": "154220043384779546049", + "inputIndex": 1, + "inputQty": "237486785250527981600768", + "outputQty0": "239330568765126903364950", + "outputQty": "241936239361899890737434", + "swapFee": "191173587246457050994", "mpReserves": [ - "48406638327768439435064637", - "34362541839753923414987660", - "32839480566018983667674089" + "41710969027142158562716921", + "18715135491623993705345205", + "42056093689427742688430067" ], "fpReserves": [ - "16570917681144581882993160", - "7231231319947597761309012" + "3375963485595676608735457", + "9605212427199128943109395" ], - "mAssetSupply": "115602560083494280620283953", - "LPTokenSupply": "23667454108444746119987691" + "mAssetSupply": "102421851911412999305641851", + "LPTokenSupply": "12847957027772116555155789" }, { "type": "mint", "inputIndex": 1, - "inputQty": "332391880063143676739584", - "outputQty0": "332510549934152083798470", - "outputQty": "329887320632499147041126", + "inputQty": "64591389910578266112", + "outputQty0": "65085796702700216425", + "outputQty": "64927665269308438277", "mpReserves": [ - "48406638327768439435064637", - "34694933719817067091727244", - "32839480566018983667674089" + "41710969027142158562716921", + "18715200083013904283611317", + "42056093689427742688430067" ], "fpReserves": [ - "16903428231078733966791630", - "7231231319947597761309012" + "3376028571392379308951882", + "9605212427199128943109395" ], - "mAssetSupply": "115935070633428432704082423", - "LPTokenSupply": "23997341429077245267028817" + "mAssetSupply": "102421916997209702005858276", + "LPTokenSupply": "12848021955437385863594066" }, { - "type": "swap_fp_to_mp", - "inputQty": "9313583787452315729920", - "outputIndex": 2, - "outputQty": "9374619715652873163497", - "swapFee": "0", - "redemptionFee": "3753462183159770362", + "type": "redeem", + "outputIndex": 0, + "inputQty": "9195921005059180068864", + "outputQty0": "9212614398726293123105", + "outputQty": "9229201537636608147567", + "swapFee1": "5517552603035508041", + "swapFee2": "5527568639235775873", "mpReserves": [ - "48406638327768439435064637", - "34694933719817067091727244", - "32830105946303330794510592" + "41701739825604521954569354", + "18715200083013904283611317", + "42056093689427742688430067" ], "fpReserves": [ - "16894044575620834540885611", - "7240544903735050077038932" + "3366815956993653015828777", + "9605212427199128943109395" ], - "mAssetSupply": "115925690731432716437946766", - "LPTokenSupply": "23997341429077245267028817" + "mAssetSupply": "102412709910379614948511044", + "LPTokenSupply": "12838826586187586987076006" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "11386765501327883632640", - "outputQty0": "11390677262567628245968", - "outputQty": "11300421983539086013548", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "91833148731508293369856", + "outputQty0": "91612558049891497210469", + "outputQty": "92494635458787652793035", + "swapFee": "73101284266569885851", "mpReserves": [ - "48406638327768439435064637", - "34706320485318394975359884", - "32830105946303330794510592" + "41793572974336030247939210", + "18715200083013904283611317", + "42056093689427742688430067" ], "fpReserves": [ - "16905435252883402169131579", - "7240544903735050077038932" + "3458428515043544513039246", + "9512717791740341290316360" ], - "mAssetSupply": "115937081408695284066192734", - "LPTokenSupply": "24008641851060784353042365" + "mAssetSupply": "102504322468429506445721513", + "LPTokenSupply": "12838833896316013644064591" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "21830690891632574464", - "outputQty0": "21991878026522462863", - "outputQty": "21999631908374890783", - "swapFee1": "13098414534979544", - "swapFee2": "8796751210608985", + "outputIndex": 2, + "inputQty": "1432777985857881344", + "outputQty0": "1436061452122278528", + "outputQty": "1438738647134138753", + "swapFee1": "859666791514728", + "swapFee2": "861636871273367", "mpReserves": [ - "48406616328136531060173854", - "34706320485318394975359884", - "32830105946303330794510592" + "41793572974336030247939210", + "18715200083013904283611317", + "42056092250689095554291314" ], "fpReserves": [ - "16905413261005375646668716", - "7240544903735050077038932" + "3458427078982092390760718", + "9512717791740341290316360" ], - "mAssetSupply": "115937059425614008754338856", - "LPTokenSupply": "24008620021679734173965855" + "mAssetSupply": "102504321033229691194716352", + "LPTokenSupply": "12838832463623994465334719" }, { "type": "mint", "inputIndex": 2, - "inputQty": "211029707588753371955200", - "outputQty0": "211146865853167254351653", - "outputQty": "209468095853864263632446", - "mpReserves": [ - "48406616328136531060173854", - "34706320485318394975359884", - "33041135653892084166465792" - ], - "fpReserves": [ - "17116560126858542901020369", - "7240544903735050077038932" - ], - "mAssetSupply": "116148206291467176008690509", - "LPTokenSupply": "24218088117533598437598301" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "575386194596610506752", - "outputQty0": "574957234402174041230", - "outputQty": "570110281703396601673", - "swapFee": "456296872512819902", + "inputQty": "281594458451917586563072", + "outputQty0": "280896201544499443281930", + "outputQty": "279949133258899910096829", "mpReserves": [ - "48407191714331127670680606", - "34706320485318394975359884", - "33041135653892084166465792" + "41793572974336030247939210", + "18715200083013904283611317", + "42337686709141013140854386" ], "fpReserves": [ - "17117135084092945075061599", - "7239974793453346680437259" + "3739323280526591834042648", + "9512717791740341290316360" ], - "mAssetSupply": "116148781248701578182731739", - "LPTokenSupply": "24218088163163285688880291" + "mAssetSupply": "102785217234774190637998282", + "LPTokenSupply": "13118781596882894375431548" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "12480025497855380684800", - "outputQty0": "12470717923116244507710", - "outputQty": "12365366714124386094407", - "swapFee": "9896976971008968941", + "inputIndex": 1, + "inputQty": "122993814498369421312", + "outputQty0": "123944379667310816952", + "outputQty": "124934022958061109798", + "swapFee": "98776359576812701", "mpReserves": [ - "48419671739828983051365406", - "34706320485318394975359884", - "33041135653892084166465792" + "41793572974336030247939210", + "18715323076828402653032629", + "42337686709141013140854386" ], "fpReserves": [ - "17129605802016061319569309", - "7227609426739222294342852" + "3739447224906259144859600", + "9512592857717383229206562" ], - "mAssetSupply": "116161251966624694427239449", - "LPTokenSupply": "24218089152860982789777185" + "mAssetSupply": "102785341179153857948815234", + "LPTokenSupply": "13118781606760530333112818" }, { "type": "swap_fp_to_mp", - "inputQty": "1741959335735432", + "inputQty": "632232883782402141323264", "outputIndex": 2, - "outputQty": "1753764634691837", + "outputQty": "626528959244736026707743", "swapFee": "0", - "redemptionFee": "702170107619", + "redemptionFee": "375219590319877172891", "mpReserves": [ - "48419671739828983051365406", - "34706320485318394975359884", - "33041135652138319531773955" + "41793572974336030247939210", + "18715323076828402653032629", + "41711157749896277114146643" ], "fpReserves": [ - "17129605800260636050520330", - "7227609428481181630078284" + "3114081241039797190040730", + "10144825741499785370529826" ], - "mAssetSupply": "116161251964869971328298089", - "LPTokenSupply": "24218089152860982789777185" + "mAssetSupply": "102160350414877715871169255", + "LPTokenSupply": "13118781606760530333112818" }, { "type": "mint", "inputIndex": 1, - "inputQty": "284992698436230932594688", - "outputQty0": "285089733929212859017990", - "outputQty": "282802713457306064607208", + "inputQty": "3522380413055172870144", + "outputQty0": "3549148110929043243582", + "outputQty": "3547984573160439615360", "mpReserves": [ - "48419671739828983051365406", - "34991313183754625907954572", - "33041135652138319531773955" + "41793572974336030247939210", + "18718845457241457825902773", + "41711157749896277114146643" ], "fpReserves": [ - "17414695534189848909538320", - "7227609428481181630078284" + "3117630389150726233284312", + "10144825741499785370529826" ], - "mAssetSupply": "116446341698799184187316079", - "LPTokenSupply": "24500891866318288854384393" + "mAssetSupply": "102163899562988644914412837", + "LPTokenSupply": "13122329591333690772728178" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "22798766547942496010240", - "outputQty0": "22970087258165576597118", - "outputQty": "22948095380927420052928", - "swapFee1": "13679259928765497606", - "swapFee2": "9188034903266230638", + "outputIndex": 0, + "inputQty": "1635395056021206", + "outputQty0": "1634966292173941", + "outputQty": "1637958705801668", + "swapFee1": "981237033612", + "swapFee2": "980979775304", "mpReserves": [ - "48419671739828983051365406", - "34991313183754625907954572", - "33018187556757392111721027" + "41793572972698071542137542", + "18718845457241457825902773", + "41711157749896277114146643" ], "fpReserves": [ - "17391725446931683332941202", - "7227609428481181630078284" + "3117630387515759941110371", + "10144825741499785370529826" ], - "mAssetSupply": "116423380799575921876949599", - "LPTokenSupply": "24478094467696339234923913" + "mAssetSupply": "102163899561354659602014200", + "LPTokenSupply": "13122329589698393840410333" }, { - "type": "swap_fp_to_mp", - "inputQty": "475658616081314349056", - "outputIndex": 1, - "outputQty": "479089698509421557307", - "swapFee": "0", - "redemptionFee": "191775628541879400", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "97902041527800549081088", + "outputQty0": "97665436619920987231338", + "outputQty": "98864515417481359609916", + "swapFee": "78084944213826495909", "mpReserves": [ - "48419671739828983051365406", - "34990834094056116486397265", - "33018187556757392111721027" + "41793572972698071542137542", + "18718845457241457825902773", + "41809059791424077663227731" ], "fpReserves": [ - "17391246007860328634440034", - "7228085087097262944427340" + "3215295824135680928341709", + "10045961226082304010919910" ], - "mAssetSupply": "116422901552280195720327831", - "LPTokenSupply": "24478094467696339234923913" + "mAssetSupply": "102261564997974580589245538", + "LPTokenSupply": "13122337398192815223059923" }, { "type": "swap_fp_to_mp", - "inputQty": "49896095282326306816", - "outputIndex": 2, - "outputQty": "50244424119148650053", + "inputQty": "46988015955396503011328", + "outputIndex": 1, + "outputQty": "46012773867858187976620", "swapFee": "0", - "redemptionFee": "20117049488694492", + "redemptionFee": "27835245583027588349", "mpReserves": [ - "48419671739828983051365406", - "34990834094056116486397265", - "33018137312333272963070974" + "41793572972698071542137542", + "18672832683373599637926153", + "41809059791424077663227731" ], "fpReserves": [ - "17391195715236606898208598", - "7228134983192545270734156" + "3168903748163968281091961", + "10092949242037700513931238" ], - "mAssetSupply": "116422851279773523472790887", - "LPTokenSupply": "24478094467696339234923913" + "mAssetSupply": "102215200757248450969584139", + "LPTokenSupply": "13122337398192815223059923" }, { - "type": "swap_fp_to_mp", - "inputQty": "511691261856458309894144", - "outputIndex": 0, - "outputQty": "515575443326978397393320", - "swapFee": "0", - "redemptionFee": "206162633971196211528", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "963281730431149911572480", + "outputQty0": "960872045731967350958253", + "outputQty": "969259887309764455683515", + "swapFee": "766614269995553746044", "mpReserves": [ - "47904096296502004653972086", - "34990834094056116486397265", - "33018137312333272963070974" + "41793572972698071542137542", + "18672832683373599637926153", + "42772341521855227574800211" ], "fpReserves": [ - "16875789130308616369387806", - "7739826245049003580628300" + "4129775793895935632050214", + "9123689354727936058247723" ], - "mAssetSupply": "115907650857479504140181623", - "LPTokenSupply": "24478094467696339234923913" + "mAssetSupply": "103176072802980418320542392", + "LPTokenSupply": "13122414059619814778434527" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "58221375876894331764736", - "outputQty0": "58634647393796852566973", - "outputQty": "58579276766832692984609", - "swapFee1": "34932825526136599058", - "swapFee2": "23453858957518741026", + "outputIndex": 1, + "inputQty": "115149888219140210032640", + "outputQty0": "115676533056346836705406", + "outputQty": "114699738190180932213960", + "swapFee1": "69089932931484126019", + "swapFee2": "69405919833808102023", "mpReserves": [ - "47904096296502004653972086", - "34990834094056116486397265", - "32959558035566440270086365" + "41793572972698071542137542", + "18558132945183418705712193", + "42772341521855227574800211" ], "fpReserves": [ - "16817154482914819516820833", - "7739826245049003580628300" + "4014099260839588795344808", + "9123689354727936058247723" ], - "mAssetSupply": "115849039663944664806355676", - "LPTokenSupply": "24419876585101997516819082" + "mAssetSupply": "103060465675843905291939009", + "LPTokenSupply": "13007271080393967716814488" }, { - "type": "swap_fp_to_mp", - "inputQty": "13836661654714874593280", - "outputIndex": 2, - "outputQty": "13914168297549541551959", - "swapFee": "0", - "redemptionFee": "5570945377771287897", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "13395241781072857399296", + "outputQty0": "13501850511897633576089", + "outputQty": "13587128371706205366537", + "swapFee": "10747022253872657580", "mpReserves": [ - "47904096296502004653972086", - "34990834094056116486397265", - "32945643867268890728534406" + "41793572972698071542137542", + "18571528186964491563111489", + "42772341521855227574800211" ], "fpReserves": [ - "16803227119470391297076631", - "7753662906703718455221580" + "4027601111351486428920897", + "9110102226356229852881186" ], - "mAssetSupply": "115835117871445614357899371", - "LPTokenSupply": "24419876585101997516819082" + "mAssetSupply": "103073967526355802925515098", + "LPTokenSupply": "13007272155096193104080246" }, { "type": "mint", "inputIndex": 2, - "inputQty": "269744652989615354937344", - "outputQty0": "269889522256502958633643", - "outputQty": "267822287914841945529946", + "inputQty": "17773488254367391744", + "outputQty0": "17727443171764530274", + "outputQty": "17637541937438809030", "mpReserves": [ - "47904096296502004653972086", - "34990834094056116486397265", - "33215388520258506083471750" + "41793572972698071542137542", + "18571528186964491563111489", + "42772359295343481942191955" ], "fpReserves": [ - "17073116641726894255710274", - "7753662906703718455221580" + "4027618838794658193451171", + "9110102226356229852881186" ], - "mAssetSupply": "116105007393702117316533014", - "LPTokenSupply": "24687698873016839462349028" + "mAssetSupply": "103073985253798974690045372", + "LPTokenSupply": "13007289792638130542889276" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "78796223968461920", - "outputQty0": "78821532001443167", - "outputQty": "78215331885001306", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1240849075834346255941632", + "outputQty0": "1243959398204459529954330", + "outputQty": "1232643693146641655021663", + "swapFee1": "744509445500607753564", + "swapFee2": "746375638922675717972", "mpReserves": [ - "47904096296502004653972086", - "34990834172852340454859185", - "33215388520258506083471750" + "41793572972698071542137542", + "17338884493817849908089826", + "42772359295343481942191955" ], "fpReserves": [ - "17073116720548426257153441", - "7753662906703718455221580" + "2783659440590198663496841", + "9110102226356229852881186" ], - "mAssetSupply": "116105007472523649317976181", - "LPTokenSupply": "24687698951232171347350334" + "mAssetSupply": "101830772231233437835809014", + "LPTokenSupply": "11766515167748334347723000" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "819477726052196024320", - "outputQty0": "819740903710411655601", - "outputQty": "813436368128866676780", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3385800770361062", + "outputQty0": "3384975914922273", + "outputQty": "3351977625628064", + "swapFee1": "2031480462216", + "swapFee2": "2030985548953", "mpReserves": [ - "47904096296502004653972086", - "34991653650578392650883505", - "33215388520258506083471750" + "41793572972698071542137542", + "17338884490465872282461762", + "42772359295343481942191955" ], "fpReserves": [ - "17073936461452136668809042", - "7753662906703718455221580" + "2783659437205222748574568", + "9110102226356229852881186" ], - "mAssetSupply": "116105827213427359729631782", - "LPTokenSupply": "24688512387600300214027114" + "mAssetSupply": "101830772227850492906435694", + "LPTokenSupply": "11766515164362736725408159" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "45237853952649912320", - "outputQty0": "45205738262432030611", - "outputQty": "44858061468088768341", + "type": "swap_fp_to_mp", + "inputQty": "31098529750477044711424", + "outputIndex": 1, + "outputQty": "30373698291998992286675", + "swapFee": "0", + "redemptionFee": "18403944932641052949", "mpReserves": [ - "47904141534355957303884406", - "34991653650578392650883505", - "33215388520258506083471750" + "41793572972698071542137542", + "17308510792173873290175087", + "42772359295343481942191955" ], "fpReserves": [ - "17073981667190399100839653", - "7753662906703718455221580" + "2752986195650820993659485", + "9141200756106706897592610" ], - "mAssetSupply": "116105872419165622161662393", - "LPTokenSupply": "24688557245661768302795455" + "mAssetSupply": "101800117390241023792573560", + "LPTokenSupply": "11766515164362736725408159" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "209173007567066870317056", - "outputQty0": "209281134033287094487099", - "outputQty": "207666498024325773106071", + "inputIndex": 1, + "inputQty": "11442913590628992417792", + "outputQty0": "11548954237049924668675", + "outputQty": "11547426185426109642079", "mpReserves": [ - "47904141534355957303884406", - "34991653650578392650883505", - "33424561527825572953788806" + "41793572972698071542137542", + "17319953705764502282592879", + "42772359295343481942191955" ], "fpReserves": [ - "17283262801223686195326752", - "7753662906703718455221580" + "2764535149887870918328160", + "9141200756106706897592610" ], - "mAssetSupply": "116315153553198909256149492", - "LPTokenSupply": "24896223743686094075901526" + "mAssetSupply": "101811666344478073717242235", + "LPTokenSupply": "11778062590548162835050238" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "60150047177606758400", - "outputQty0": "60582824601476776361", - "outputQty": "60527830663448976854", - "swapFee1": "36090028306564055", - "swapFee2": "24233129840590710", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "3890618307375888596992", + "outputQty0": "3926637958416077223686", + "outputQty": "3978097089751605125499", + "swapFee": "3140734059909693666", "mpReserves": [ - "47904141534355957303884406", - "34991653650578392650883505", - "33424500999994909504811952" + "41793572972698071542137542", + "17323844324071878171189871", + "42772359295343481942191955" ], "fpReserves": [ - "17283202218399084718550391", - "7753662906703718455221580" + "2768461787846286995551846", + "9137222659016955292467111" ], - "mAssetSupply": "116315092994607437619963841", - "LPTokenSupply": "24896163597247919299799531" + "mAssetSupply": "101815592982436489794465921", + "LPTokenSupply": "11778062904621568826019604" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "13545071269683994296320", - "outputQty0": "13549516709069922446046", - "outputQty": "13444632133003246136895", + "type": "redeem", + "outputIndex": 2, + "inputQty": "661814742205886889984", + "outputQty0": "661551516237680528667", + "outputQty": "663056779307381974576", + "swapFee1": "397088845323532133", + "swapFee2": "396930909742608317", "mpReserves": [ - "47904141534355957303884406", - "35005198721848076645179825", - "33424500999994909504811952" + "41793572972698071542137542", + "17323844324071878171189871", + "42771696238564174560217379" ], "fpReserves": [ - "17296751735108154640996437", - "7753662906703718455221580" + "2767800236330049315023179", + "9137222659016955292467111" ], - "mAssetSupply": "116328642511316507542409887", - "LPTokenSupply": "24909608229380922545936426" + "mAssetSupply": "101814931827851161856545571", + "LPTokenSupply": "11777401129588247471482833" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "145636190513092255285248", - "outputQty0": "145709398625763696178249", - "outputQty": "144568357763235239033113", - "swapFee": "115663052240338782876", + "type": "mint", + "inputIndex": 1, + "inputQty": "31436180236128527319040", + "outputQty0": "31726574723472024086611", + "outputQty": "31716955136749984830323", "mpReserves": [ - "47904141534355957303884406", - "35005198721848076645179825", - "33570137190508001760097200" + "41793572972698071542137542", + "17355280504308006698508911", + "42771696238564174560217379" ], "fpReserves": [ - "17442461133733918337174686", - "7609094548940483216188467" + "2799526811053521339109790", + "9137222659016955292467111" ], - "mAssetSupply": "116474351909942271238588136", - "LPTokenSupply": "24909619795686146579814713" + "mAssetSupply": "101846658402574633880632182", + "LPTokenSupply": "11809118084724997456313156" }, { - "type": "swap_fp_to_mp", - "inputQty": "14783212561175142203392", - "outputIndex": 2, - "outputQty": "14877027951188549424034", - "swapFee": "0", - "redemptionFee": "5956152892353598349", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "17546103752182247424", + "outputQty0": "17707870399518291489", + "outputQty": "17934828233119032826", + "swapFee": "14160557173088641", "mpReserves": [ - "47904141534355957303884406", - "35005198721848076645179825", - "33555260162556813210673166" + "41793572972698071542137542", + "17355298050411758880756335", + "42771696238564174560217379" ], "fpReserves": [ - "17427570751503034341301246", - "7623877761501658358391859" + "2799544518923920857401279", + "9137204724188722173434285" ], - "mAssetSupply": "116459467483864279596313045", - "LPTokenSupply": "24909619795686146579814713" + "mAssetSupply": "101846676110445033398923671", + "LPTokenSupply": "11809118086141053173622020" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "27667900931597733462016", - "outputQty0": "27869840499610429812008", - "outputQty": "27849406272279045891031", - "swapFee1": "16600740558958640077", - "swapFee2": "11147936199844171924", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "2329622681356083", + "outputQty0": "2322956913680297", + "outputQty": "2352729508131090", + "swapFee": "1857612485856", "mpReserves": [ - "47904141534355957303884406", - "34977349315575797599288794", - "33555260162556813210673166" + "41793572972698071542137542", + "17355298050411758880756335", + "42771696240893797241573462" ], "fpReserves": [ - "17399700911003423911489238", - "7623877761501658358391859" + "2799544521246877771081576", + "9137204721835992665303195" ], - "mAssetSupply": "116431608791300869010672961", - "LPTokenSupply": "24881953554828604742216704" + "mAssetSupply": "101846676112767990312603968", + "LPTokenSupply": "11809118086141238934870605" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "161636939449938378752", - "outputQty0": "162816240248673149829", - "outputQty": "162696693506934249525", - "swapFee1": "96982163669963027", - "swapFee2": "65126496099469259", + "type": "mint", + "inputIndex": 0, + "inputQty": "105061815336462532608", + "outputQty0": "104781483841269977143", + "outputQty": "104738989524579991098", "mpReserves": [ - "47904141534355957303884406", - "34977186618882290665039269", - "33555260162556813210673166" + "41793678034513408004670150", + "17355298050411758880756335", + "42771696240893797241573462" ], "fpReserves": [ - "17399538094763175238339409", - "7623877761501658358391859" + "2799649302730719041058719", + "9137204721835992665303195" ], - "mAssetSupply": "116431446040187116436992391", - "LPTokenSupply": "24881791927587371170834254" + "mAssetSupply": "101846780894251831582581111", + "LPTokenSupply": "11809222825130763514861703" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "6519871354779317829632", - "outputQty0": "6567435077554860741711", - "outputQty": "6561545981561972911270", - "swapFee1": "3911922812867590697", - "swapFee2": "2626974031021944296", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "60124681127434775429120", + "outputQty0": "60676936441022914961886", + "outputQty": "61434631490897141317848", + "swapFee": "48512686530125334168", "mpReserves": [ - "47904141534355957303884406", - "34977186618882290665039269", - "33548698616575251237761896" + "41793678034513408004670150", + "17415422731539193656185455", + "42771696240893797241573462" ], "fpReserves": [ - "17392970659685620377597698", - "7623877761501658358391859" + "2860326239171741956020605", + "9075770090345095523985347" ], - "mAssetSupply": "116424881232083592598194976", - "LPTokenSupply": "24875272447424873139763691" + "mAssetSupply": "101907457830692854497542997", + "LPTokenSupply": "11809227676399416527395119" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "2509091222235824259072", - "outputQty0": "2527393187463443350789", - "outputQty": "2528151381420636516843", - "swapFee1": "1505454733341494555", - "swapFee2": "1010957274985377340", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "360425161272627", + "outputQty0": "359468500430964", + "outputQty": "363841696817787", + "swapFee": "287316683561", "mpReserves": [ - "47901613382974536667367563", - "34977186618882290665039269", - "33548698616575251237761896" + "41793678034873833165942777", + "17415422731539193656185455", + "42771696240893797241573462" ], "fpReserves": [ - "17390443266498156934246909", - "7623877761501658358391859" + "2860326239531210456451569", + "9075770089981253827167560" ], - "mAssetSupply": "116422354849853404140221527", - "LPTokenSupply": "24872763506748110649654074" + "mAssetSupply": "101907457831052322997973961", + "LPTokenSupply": "11809227676399445259063475" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "381523165921882669056", - "outputQty0": "384305984889024117753", - "outputQty": "384023922021850687709", - "swapFee1": "228913899553129601", - "swapFee2": "153722393955609647", + "type": "swap_fp_to_mp", + "inputQty": "2686087839499295916032", + "outputIndex": 0, + "outputQty": "2657104366571650531950", + "swapFee": "0", + "redemptionFee": "1590985943843858480", "mpReserves": [ - "47901613382974536667367563", - "34976802594960268814351560", - "33548698616575251237761896" + "41791020930507261515410827", + "17415422731539193656185455", + "42771696240893797241573462" ], "fpReserves": [ - "17390058960513267910129156", - "7623877761501658358391859" + "2857674596291470692316867", + "9078456177820753123083592" ], - "mAssetSupply": "116421970697590909071713421", - "LPTokenSupply": "24872382006473578722297978" + "mAssetSupply": "101904807778798527077697739", + "LPTokenSupply": "11809227676399445259063475" }, { - "type": "swap_fp_to_mp", - "inputQty": "22258800910092636160", - "outputIndex": 0, - "outputQty": "22425823749805677279", - "swapFee": "0", - "redemptionFee": "8967639687190184", + "type": "mint", + "inputIndex": 0, + "inputQty": "64205597936717643776", + "outputQty0": "64035204820006087320", + "outputQty": "63979038854101385980", "mpReserves": [ - "47901590957150786861690284", - "34976802594960268814351560", - "33548698616575251237761896" + "41791085136105198233054603", + "17415422731539193656185455", + "42771696240893797241573462" ], "fpReserves": [ - "17390036541414049934667207", - "7623900020302568451028019" + "2857738631496290698404187", + "9078456177820753123083592" ], - "mAssetSupply": "116421948287459330783441656", - "LPTokenSupply": "24872382006473578722297978" + "mAssetSupply": "101904871814003347083785059", + "LPTokenSupply": "11809291655438299360449455" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "6463291229408296173568", - "outputQty0": "6510428961476807640325", - "outputQty": "6504588097601438306844", - "swapFee1": "3877974737644977704", - "swapFee2": "2604171584590723056", + "type": "mint", + "inputIndex": 1, + "inputQty": "4324856877714042257408", + "outputQty0": "4364420055691982663130", + "outputQty": "4360534936179761702031", "mpReserves": [ - "47901590957150786861690284", - "34976802594960268814351560", - "33542194028477649799455052" + "41791085136105198233054603", + "17419747588416907698442863", + "42771696240893797241573462" ], "fpReserves": [ - "17383526112452573127026882", - "7623900020302568451028019" + "2862103051551982681067317", + "9078456177820753123083592" ], - "mAssetSupply": "116415440462669438566524387", - "LPTokenSupply": "24865919103041644190622180" + "mAssetSupply": "101909236234059039066448189", + "LPTokenSupply": "11813652190374479122151486" }, { "type": "swap_fp_to_mp", - "inputQty": "40567563281708916736", - "outputIndex": 0, - "outputQty": "40871770240816322561", + "inputQty": "835294558695676313600", + "outputIndex": 1, + "outputQty": "816633427370062093026", "swapFee": "0", - "redemptionFee": "16343802519075925", + "redemptionFee": "494758203882344793", "mpReserves": [ - "47901550085380546045367723", - "34976802594960268814351560", - "33542194028477649799455052" + "41791085136105198233054603", + "17418930954989537636349837", + "42771696240893797241573462" ], "fpReserves": [ - "17383485252946275437212755", - "7623940587865850159944755" + "2861278454545512106411395", + "9079291472379448799397192" ], - "mAssetSupply": "116415399619506943395786185", - "LPTokenSupply": "24865919103041644190622180" + "mAssetSupply": "101908412131810772374137060", + "LPTokenSupply": "11813652190374479122151486" }, { - "type": "swap_fp_to_mp", - "inputQty": "253104305855730912", - "outputIndex": 0, - "outputQty": "255002264319547985", - "swapFee": "0", - "redemptionFee": "101970299527124", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "4508908389318713147392", + "outputQty0": "4496072756781580340820", + "outputQty": "4550671522005551419604", + "swapFee": "3593585573089808631", "mpReserves": [ - "47901549830378281725819738", - "34976802594960268814351560", - "33542194028477649799455052" + "41791085136105198233054603", + "17418930954989537636349837", + "42776205149283115954720854" ], "fpReserves": [ - "17383484998020526619402363", - "7623940840970156015675667" + "2865774527302293686752215", + "9074740800857443247977588" ], - "mAssetSupply": "116415399364683164877502917", - "LPTokenSupply": "24865919103041644190622180" + "mAssetSupply": "101912908204567553954477880", + "LPTokenSupply": "11813652549733036431132349" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "10991941888061843456", - "outputQty0": "10984248206554864885", - "outputQty": "10898182791745336374", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1426088238225480744960", + "outputQty0": "1426555823316445760823", + "outputQty": "1412775544894156663919", + "swapFee1": "855652942935288446", + "swapFee2": "855933493989867456", "mpReserves": [ - "47901560822320169787663194", - "34976802594960268814351560", - "33542194028477649799455052" + "41791085136105198233054603", + "17417518179444643479685918", + "42776205149283115954720854" ], "fpReserves": [ - "17383495982268733174267248", - "7623940840970156015675667" + "2864347971478977240991392", + "9074740800857443247977588" ], - "mAssetSupply": "116415410348931371432367802", - "LPTokenSupply": "24865930001224435935958554" + "mAssetSupply": "101911482504677731498584513", + "LPTokenSupply": "11812226547060105243916233" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "150990436529412574806016", - "outputQty0": "150884260574479836338212", - "outputQty": "149657619755650324777190", - "swapFee": "119759503624871822896", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1549904954428417638400", + "outputQty0": "1550399684802367359145", + "outputQty": "1553893807198511583914", + "swapFee1": "929942972657050583", + "swapFee2": "930239810881420415", "mpReserves": [ - "48052551258849582362469210", - "34976802594960268814351560", - "33542194028477649799455052" + "41791085136105198233054603", + "17417518179444643479685918", + "42774651255475917443136940" ], "fpReserves": [ - "17534380242843213010605460", - "7474283221214505690898477" + "2862797571794174873632247", + "9074740800857443247977588" ], - "mAssetSupply": "116566294609505851268706014", - "LPTokenSupply": "24865941977174798423140843" + "mAssetSupply": "101909933035232740012645783", + "LPTokenSupply": "11810676735099974091982891" }, { "type": "mint", "inputIndex": 1, - "inputQty": "11875584505468451553280", - "outputQty0": "11879597645473941288083", - "outputQty": "11785064580606640188252", + "inputQty": "16487261217780660174848", + "outputQty0": "16637942910000472494275", + "outputQty": "16621919953876143256016", "mpReserves": [ - "48052551258849582362469210", - "34988678179465737265904840", - "33542194028477649799455052" + "41791085136105198233054603", + "17434005440662424139860766", + "42774651255475917443136940" ], "fpReserves": [ - "17546259840488686951893543", - "7474283221214505690898477" + "2879435514704175346126522", + "9074740800857443247977588" ], - "mAssetSupply": "116578174207151325209994097", - "LPTokenSupply": "24877727041755405063329095" + "mAssetSupply": "101926570978142740485140058", + "LPTokenSupply": "11827298655053850235238907" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "213765045384816757833728", - "outputQty0": "213613121237442119288335", - "outputQty": "211771969957970436980256", - "swapFee": "169526075869894076310", + "inputQty": "1530069809282964567097344", + "outputQty0": "1525843964580251776011702", + "outputQty": "1519823130171073977150120", "mpReserves": [ - "48266316304234399120302938", - "34988678179465737265904840", - "33542194028477649799455052" + "43321154945388162800151947", + "17434005440662424139860766", + "42774651255475917443136940" ], "fpReserves": [ - "17759872961726129071181878", - "7262511251256535253918221" + "4405279479284427122138224", + "9074740800857443247977588" ], - "mAssetSupply": "116791787328388767329282432", - "LPTokenSupply": "24877743994362992052736726" + "mAssetSupply": "103452414942722992261151760", + "LPTokenSupply": "13347121785224924212389027" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "136767233179901558784", - "outputQty0": "137806493303545676750", - "outputQty": "137681189273263548050", - "swapFee1": "82060339907940935", - "swapFee2": "55122597321418270", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "175998758200133615091712", + "outputQty0": "175490819392437148018019", + "outputQty": "176331421631859783181349", + "swapFee": "139541357789981688779", "mpReserves": [ - "48266316304234399120302938", - "34988678179465737265904840", - "33542056347288376535907002" + "43497153703588296415243659", + "17434005440662424139860766", + "42774651255475917443136940" ], "fpReserves": [ - "17759735155232825525505128", - "7262511251256535253918221" + "4580770298676864270156243", + "8898409379225583464796239" ], - "mAssetSupply": "116791649577018061105023952", - "LPTokenSupply": "24877607235335846141972035" + "mAssetSupply": "103627905762115429409169779", + "LPTokenSupply": "13347135739360703210557904" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "844667121345269071872", - "outputQty0": "851085436700735746042", - "outputQty": "850452664382395404208", - "swapFee1": "506800272807161443", - "swapFee2": "340434174680294298", + "type": "swap_fp_to_mp", + "inputQty": "36923071662518144335872", + "outputIndex": 2, + "outputQty": "36806424696642656491438", + "swapFee": "0", + "redemptionFee": "22036222417017669878", "mpReserves": [ - "48266316304234399120302938", - "34987827726801354870500632", - "33542056347288376535907002" + "43497153703588296415243659", + "17434005440662424139860766", + "42737844830779274786645502" ], "fpReserves": [ - "17758884069796124789759086", - "7262511251256535253918221" + "4544043261315168153692178", + "8935332450888101609132111" ], - "mAssetSupply": "116790798832015535049572208", - "LPTokenSupply": "24876762618894528153616307" + "mAssetSupply": "103591200760976150310375592", + "LPTokenSupply": "13347135739360703210557904" }, { "type": "mint", "inputIndex": 2, - "inputQty": "43404779224320920518656", - "outputQty0": "43426825261528321889856", - "outputQty": "43073246366369017315941", + "inputQty": "8921069756949333016576", + "outputQty0": "8896505118414449409740", + "outputQty": "8840662395687979141768", "mpReserves": [ - "48266316304234399120302938", - "34987827726801354870500632", - "33585461126512697456425658" + "43497153703588296415243659", + "17434005440662424139860766", + "42746765900536224119662078" ], "fpReserves": [ - "17802310895057653111648942", - "7262511251256535253918221" + "4552939766433582603101918", + "8935332450888101609132111" ], - "mAssetSupply": "116834225657277063371462064", - "LPTokenSupply": "24919835865260897170932248" + "mAssetSupply": "103600097266094564759785332", + "LPTokenSupply": "13355976401756391189699672" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "962842395781877120", - "outputQty0": "970168822928307621", - "outputQty": "970473643832753316", - "swapFee1": "577705437469126", - "swapFee2": "388067529171323", + "type": "mint", + "inputIndex": 1, + "inputQty": "3204043357285696512", + "outputQty0": "3234560546392944541", + "outputQty": "3214234881393018694", "mpReserves": [ - "48266315333760755287549622", - "34987827726801354870500632", - "33585461126512697456425658" + "43497153703588296415243659", + "17434008644705781425557278", + "42746765900536224119662078" ], "fpReserves": [ - "17802309924888830183341321", - "7262511251256535253918221" + "4552943000994128996046459", + "8935332450888101609132111" ], - "mAssetSupply": "116834224687496307972325766", - "LPTokenSupply": "24919834902476271932802040" + "mAssetSupply": "103600100500655111152729873", + "LPTokenSupply": "13355979615991272582718366" }, { "type": "mint", "inputIndex": 0, - "inputQty": "13320904774082881388544", - "outputQty0": "13311390247361154846669", - "outputQty": "13202918740478256100076", + "inputQty": "8721390057800235745280", + "outputQty0": "8696091679548081577073", + "outputQty": "8641387193972264824458", "mpReserves": [ - "48279636238534838168938166", - "34987827726801354870500632", - "33585461126512697456425658" + "43505875093646096650988939", + "17434008644705781425557278", + "42746765900536224119662078" ], "fpReserves": [ - "17815621315136191338187990", - "7262511251256535253918221" + "4561639092673677077623532", + "8935332450888101609132111" ], - "mAssetSupply": "116847536077743669127172435", - "LPTokenSupply": "24933037821216750188902116" + "mAssetSupply": "103608796592334659234306946", + "LPTokenSupply": "13364621003185244847542824" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "45281702322848", - "outputQty0": "45297357645279", - "outputQty": "44928167189004", + "type": "redeem", + "outputIndex": 2, + "inputQty": "2746264687175717093376", + "outputQty0": "2762004652294992622960", + "outputQty": "2767969255179881300659", + "swapFee1": "1647758812305430256", + "swapFee2": "1657202791376995573", "mpReserves": [ - "48279636238534838168938166", - "34987827726846636572823480", - "33585461126512697456425658" + "43505875093646096650988939", + "17434008644705781425557278", + "42743997931281044238361419" ], "fpReserves": [ - "17815621315181488695833269", - "7262511251256535253918221" + "4558877088021382085000572", + "8935332450888101609132111" ], - "mAssetSupply": "116847536077788966484817714", - "LPTokenSupply": "24933037821261678356091120" + "mAssetSupply": "103606036244885155618679559", + "LPTokenSupply": "13361874903273950360992473" }, { "type": "swap_fp_to_mp", - "inputQty": "2709885753320870", - "outputIndex": 2, - "outputQty": "2729719342661189", + "inputQty": "437290758438055892221952", + "outputIndex": 1, + "outputQty": "430117534191734924417528", "swapFee": "0", - "redemptionFee": "1092877972884", + "redemptionFee": "260752104896074386509", "mpReserves": [ - "48279636238534838168938166", - "34987827726846636572823480", - "33585461123782978113764469" + "43505875093646096650988939", + "17003891110514046501139750", + "42743997931281044238361419" ], "fpReserves": [ - "17815621312449293763622153", - "7262511253966421007239091" + "4124290246527924774150838", + "9372623209326157501354063" ], - "mAssetSupply": "116847536075057864430579482", - "LPTokenSupply": "24933037821261678356091120" + "mAssetSupply": "103171710155496594382216334", + "LPTokenSupply": "13361874903273950360992473" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "632706483648843942461440", - "outputQty0": "632910422205204842844037", - "outputQty": "627703889149239218571904", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "3358308615924004434214912", + "outputQty0": "3347401467986170460950175", + "outputQty": "3352147117040277992151642", + "swapFee": "2658422830610511932666", "mpReserves": [ - "48279636238534838168938166", - "35620534210495480515284920", - "33585461123782978113764469" + "46864183709570101085203851", + "17003891110514046501139750", + "42743997931281044238361419" ], "fpReserves": [ - "18448531734654498606466190", - "7262511253966421007239091" + "7471691714514095235101013", + "6020476092285879509202421" ], - "mAssetSupply": "117480446497263069273423519", - "LPTokenSupply": "25560741710410917574663024" + "mAssetSupply": "106519111623482764843166509", + "LPTokenSupply": "13362140745557011412185739" }, { "type": "swap_fp_to_mp", - "inputQty": "14489347254587995717632", - "outputIndex": 0, - "outputQty": "14620413393968446144289", + "inputQty": "4941150679741167042560", + "outputIndex": 2, + "outputQty": "4958727848759027492788", "swapFee": "0", - "redemptionFee": "5846433501198786483", - "mpReserves": [ - "48265015825140869722793877", - "35620534210495480515284920", - "33585461123782978113764469" - ], - "fpReserves": [ - "18433915650901501640257292", - "7277000601221009002956723" - ], - "mAssetSupply": "117465836259943573506001104", - "LPTokenSupply": "25560741710410917574663024" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "223981539055367323648", - "outputQty0": "225718316382090419152", - "outputQty": "225560632025528176093", - "swapFee1": "134388923433220394", - "swapFee2": "90287326552836167", + "redemptionFee": "2969000340587518058", "mpReserves": [ - "48265015825140869722793877", - "35620308649863454987108827", - "33585461123782978113764469" + "46864183709570101085203851", + "17003891110514046501139750", + "42739039203432285210868631" ], "fpReserves": [ - "18433689932585119549838140", - "7277000601221009002956723" + "7466743380613116038337054", + "6025417242965620676244981" ], - "mAssetSupply": "117465610631914517968418119", - "LPTokenSupply": "25560517742310754550661415" + "mAssetSupply": "106514166258582126233920608", + "LPTokenSupply": "13362140745557011412185739" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "35855557464723510263808", - "outputQty0": "36133427473078765438782", - "outputQty": "36108137676440696062021", - "swapFee1": "21513334478834106158", - "swapFee2": "14453370989231506175", + "type": "mint", + "inputIndex": 2, + "inputQty": "661187194629552823336960", + "outputQty0": "659372678133843879162711", + "outputQty": "652508662096186918940241", "mpReserves": [ - "48265015825140869722793877", - "35584200512187014291046806", - "33585461123782978113764469" + "46864183709570101085203851", + "17003891110514046501139750", + "43400226398061838034205591" ], "fpReserves": [ - "18397556505112040784399358", - "7277000601221009002956723" + "8126116058746959917499765", + "6025417242965620676244981" ], - "mAssetSupply": "117429491657812428434485512", - "LPTokenSupply": "25524664336179478923808222" + "mAssetSupply": "107173538936715970113083319", + "LPTokenSupply": "14014649407653198331125980" }, { "type": "mint", "inputIndex": 1, - "inputQty": "815077133306398244864", - "outputQty0": "815322786232457843377", - "outputQty": "808570256145610506230", + "inputQty": "176508815399514963968", + "outputQty0": "178464398577726645226", + "outputQty": "176583493232732020746", "mpReserves": [ - "48265015825140869722793877", - "35585015589320320689291670", - "33585461123782978113764469" + "46864183709570101085203851", + "17004067619329446016103718", + "43400226398061838034205591" ], "fpReserves": [ - "18398371827898273242242735", - "7277000601221009002956723" + "8126294523145537644144991", + "6025417242965620676244981" ], - "mAssetSupply": "117430306980598660892328889", - "LPTokenSupply": "25525472906435624534314452" + "mAssetSupply": "107173717401114547839728545", + "LPTokenSupply": "14014825991146431063146726" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "76973826451237467324416", - "outputQty0": "76996809020726366634079", - "outputQty": "76358404045197736926576", + "type": "swap_fp_to_mp", + "inputQty": "1105530794374144175636480", + "outputIndex": 0, + "outputQty": "1109666608414452002006060", + "swapFee": "0", + "redemptionFee": "663950244577886756212", "mpReserves": [ - "48265015825140869722793877", - "35661989415771558156616086", - "33585461123782978113764469" + "45754517101155649083197791", + "17004067619329446016103718", + "43400226398061838034205591" ], "fpReserves": [ - "18475368636918999608876814", - "7277000601221009002956723" + "7019710782182393050456713", + "7130948037339764851881461" ], - "mAssetSupply": "117507303789619387258962968", - "LPTokenSupply": "25601831310480822271241028" + "mAssetSupply": "106067797610395981132796479", + "LPTokenSupply": "14014825991146431063146726" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "155523293083686072745984", - "outputQty0": "155568428340486781637370", - "outputQty": "154274247577260283112968", + "inputIndex": 2, + "inputQty": "23526260273683210698752", + "outputQty0": "23459256194034458155231", + "outputQty": "23235159529086147524474", "mpReserves": [ - "48265015825140869722793877", - "35817512708855244229362070", - "33585461123782978113764469" + "45754517101155649083197791", + "17004067619329446016103718", + "43423752658335521244904343" ], "fpReserves": [ - "18630937065259486390514184", - "7277000601221009002956723" + "7043170038376427508611944", + "7130948037339764851881461" ], - "mAssetSupply": "117662872217959874040600338", - "LPTokenSupply": "25756105558058082554353996" + "mAssetSupply": "106091256866590015590951710", + "LPTokenSupply": "14038061150675517210671200" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "274363920983147048599552", "outputIndex": 0, - "inputQty": "32107907383152017408", - "outputQty0": "32358433492268930460", - "outputQty": "32367828175880068891", - "swapFee1": "19264744429891210", - "swapFee2": "12943373396907572", + "outputQty": "275007710198163451406200", + "swapFee": "0", + "redemptionFee": "164562548130694053745", "mpReserves": [ - "48264983457312693842724986", - "35817512708855244229362070", - "33585461123782978113764469" + "45479509390957485631791591", + "17004067619329446016103718", + "43423752658335521244904343" ], "fpReserves": [ - "18630904706825994121583724", - "7277000601221009002956723" + "6768899124825270752369465", + "7405311958322911900481013" ], - "mAssetSupply": "117662839872469755168577450", - "LPTokenSupply": "25756073452077173845325709" + "mAssetSupply": "105817150515586989528762976", + "LPTokenSupply": "14038061150675517210671200" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "799672941592691998720", - "outputQty0": "805912412795099735259", - "outputQty": "805158584835635196974", - "swapFee1": "479803764955615199", - "swapFee2": "322364965118039894", - "mpReserves": [ - "48264983457312693842724986", - "35817512708855244229362070", - "33584655965198142478567495" - ], - "fpReserves": [ - "18630098794413199021848465", - "7277000601221009002956723" - ], - "mAssetSupply": "117662034282421925186882085", - "LPTokenSupply": "25755273827115957648888508" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "153407973786766469496832", - "outputQty0": "153489209240018764703052", - "outputQty": "151978888279208146369491", - "swapFee": "121765364037231087218", - "mpReserves": [ - "48264983457312693842724986", - "35817512708855244229362070", - "33738063938984908948064327" - ], - "fpReserves": [ - "18783588003653217786551517", - "7125021712941800856587232" - ], - "mAssetSupply": "117815523491661943951585137", - "LPTokenSupply": "25755286003652361371997229" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "423243244245746561581056", - "outputQty0": "423457361252010341408535", - "outputQty": "418891745570466756169620", - "swapFee": "335878110066402777541", + "outputIndex": 0, + "inputQty": "899714793840499228672", + "outputQty0": "907612388256487672005", + "outputQty": "910032682542592609364", + "swapFee1": "539828876304299537", + "swapFee2": "544567432953892603", "mpReserves": [ - "48264983457312693842724986", - "35817512708855244229362070", - "34161307183230655509645383" + "45478599358274943039182227", + "17004067619329446016103718", + "43423752658335521244904343" ], "fpReserves": [ - "19207045364905228127960052", - "6706129967371334100417612" + "6767991512437014264697460", + "7405311958322911900481013" ], - "mAssetSupply": "118238980852913954292993672", - "LPTokenSupply": "25755319591463368012274983" + "mAssetSupply": "105816243447766165994983574", + "LPTokenSupply": "14037161489864564341872481" }, { "type": "swap_fp_to_mp", - "inputQty": "190415164102036", - "outputIndex": 1, - "outputQty": "192345772050914", + "inputQty": "49751419126573563904", + "outputIndex": 2, + "outputQty": "49834512458211343853", "swapFee": "0", - "redemptionFee": "76992575204", + "redemptionFee": "29833005334348224", "mpReserves": [ - "48264983457312693842724986", - "35817512708662898457311156", - "34161307183230655509645383" + "45478599358274943039182227", + "17004067619329446016103718", + "43423702823823063033560490" ], "fpReserves": [ - "19207045364712746689949274", - "6706129967561749264519648" + "6767941790761457017656734", + "7405361709742038474044917" ], - "mAssetSupply": "118238980852721549847558098", - "LPTokenSupply": "25755319591463368012274983" + "mAssetSupply": "105816193755923614082291072", + "LPTokenSupply": "14037161489864564341872481" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "30884303749605528436736", - "outputQty0": "31142037396887990346975", - "outputQty": "31150499932504796474793", - "swapFee1": "18530582249763317062", - "swapFee2": "12456814958755196138", + "inputQty": "3818125299862057517056", + "outputQty0": "3851635581920399143318", + "outputQty": "3861905281049042557815", + "swapFee1": "2290875179917234510", + "swapFee2": "2310981349152239485", "mpReserves": [ - "48233832957380189046250193", - "35817512708662898457311156", - "34161307183230655509645383" + "45474737452993893996624412", + "17004067619329446016103718", + "43423702823823063033560490" ], "fpReserves": [ - "19175903327315858699602299", - "6706129967561749264519648" + "6764090155179536618513416", + "7405361709742038474044917" ], - "mAssetSupply": "118207851272139620612407261", - "LPTokenSupply": "25724437140771987460169953" + "mAssetSupply": "105812344431323042835387239", + "LPTokenSupply": "14033343593652220276078876" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "607089598075926609920", - "outputQty0": "612153749132389847893", - "outputQty": "611722812819242018791", - "swapFee1": "364253758845555965", - "swapFee2": "244861499652955939", + "inputQty": "270843067744116998144", + "outputQty0": "273219906819454467030", + "outputQty": "270159735441430925551", + "swapFee1": "162505840646470198", + "swapFee2": "163931944091672680", "mpReserves": [ - "48233832957380189046250193", - "35816900985850079215292365", - "34161307183230655509645383" + "45474737452993893996624412", + "17003797459594004585178167", + "43423702823823063033560490" ], "fpReserves": [ - "19175291173566726309754406", - "6706129967561749264519648" + "6763816935272717164046386", + "7405361709742038474044917" ], - "mAssetSupply": "118207239363251987875515307", - "LPTokenSupply": "25723830087599287418115629" + "mAssetSupply": "105812071375348167472592889", + "LPTokenSupply": "14033072766835060223727751" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "3352117723004768616448", - "outputQty0": "3380078352469675368747", - "outputQty": "3377078600172504660301", - "swapFee1": "2011270633802861169", - "swapFee2": "1352031340987870147", - "mpReserves": [ - "48233832957380189046250193", - "35816900985850079215292365", - "34157930104630483004985082" - ], - "fpReserves": [ - "19171911095214256634385659", - "6706129967561749264519648" - ], - "mAssetSupply": "118203860636930859188016707", - "LPTokenSupply": "25720478171003346029785297" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "5670634244625369399296", - "outputQty0": "5673400499738246275490", - "outputQty": "5623091158884208526220", + "outputIndex": 0, + "inputQty": "59660450656801415168", + "outputQty0": "60184008661079226356", + "outputQty": "60344465932159999919", + "swapFee1": "35796270394080849", + "swapFee2": "36110405196647535", "mpReserves": [ - "48233832957380189046250193", - "35816900985850079215292365", - "34163600738875108374384378" + "45474677108527961836624493", + "17003797459594004585178167", + "43423702823823063033560490" ], "fpReserves": [ - "19177584495713994880661149", - "6706129967561749264519648" + "6763756751264056084820030", + "7405361709742038474044917" ], - "mAssetSupply": "118209534037430597434292197", - "LPTokenSupply": "25726101262162230238311517" + "mAssetSupply": "105812011227449911590014068", + "LPTokenSupply": "14033013109964030461720667" }, { "type": "mint", "inputIndex": 0, - "inputQty": "93865653461443488", - "outputQty0": "93802684759370727", - "outputQty": "92970814250111541", + "inputQty": "800006954369797455872", + "outputQty0": "797400948236694998737", + "outputQty": "789989697234435900293", "mpReserves": [ - "48233833051245842507693681", - "35816900985850079215292365", - "34163600738875108374384378" + "45475477115482331634080365", + "17003797459594004585178167", + "43423702823823063033560490" ], "fpReserves": [ - "19177584589516679640031876", - "6706129967561749264519648" + "6764554152212292779818767", + "7405361709742038474044917" ], - "mAssetSupply": "118209534131233282193662924", - "LPTokenSupply": "25726101355133044488423058" + "mAssetSupply": "105812808628398148285012805", + "LPTokenSupply": "14033803099661264897620960" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "671129766028874382049280", - "outputQty0": "671318039602134349211888", - "outputQty": "662678885021941800212073", - "swapFee": "532245970835740399451", + "type": "redeem", + "outputIndex": 0, + "inputQty": "101723565354439346749440", + "outputQty0": "102613550589936221769767", + "outputQty": "102886385197039614203560", + "swapFee1": "61034139212663608049", + "swapFee2": "61568130353961733061", "mpReserves": [ - "48233833051245842507693681", - "36488030751878953597341645", - "34163600738875108374384378" + "45372590730285292019876805", + "17003797459594004585178167", + "43423702823823063033560490" ], "fpReserves": [ - "19848902629118813989243764", - "6043451082539807464307575" + "6661940601622356558049000", + "7405361709742038474044917" ], - "mAssetSupply": "118880852170835416542874812", - "LPTokenSupply": "25726154579730128062463003" + "mAssetSupply": "105710256645938566024976099", + "LPTokenSupply": "13932085637720746817232324" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "6487313955434499407872", - "outputQty0": "6483082708467248733821", - "outputQty": "6389761012190011606873", - "swapFee": "5136653103789668734", + "inputQty": "3315684484190676975616", + "outputQty0": "3304931307972725189280", + "outputQty": "3304602073088381018532", + "swapFee": "2619499078394304793", "mpReserves": [ - "48240320365201277007101553", - "36488030751878953597341645", - "34163600738875108374384378" + "45375906414769482696852421", + "17003797459594004585178167", + "43423702823823063033560490" ], "fpReserves": [ - "19855385711827281237977585", - "6037061321527617452700702" + "6665245532930329283238280", + "7402057107668950093026385" ], - "mAssetSupply": "118887335253543883791608633", - "LPTokenSupply": "25726155093395438441429876" + "mAssetSupply": "105713561577246538750165379", + "LPTokenSupply": "13932085899670654656662803" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "845605577666695545225216", - "outputQty0": "846009558774829189340802", - "outputQty": "831774429074902267639594", - "swapFee": "670223294649692683949", - "mpReserves": [ - "48240320365201277007101553", - "36488030751878953597341645", - "35009206316541803919609594" - ], - "fpReserves": [ - "20701395270602110427318387", - "5205286892452715185061108" - ], - "mAssetSupply": "119733344812318712980949435", - "LPTokenSupply": "25726222115724903410698270" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "705283836080265650765824", - "outputIndex": 2, - "outputQty": "716427553158910060767875", - "swapFee": "0", - "redemptionFee": "286821192004355774969", + "type": "redeem", + "outputIndex": 1, + "inputQty": "244386557721482952704", + "outputQty0": "246519877765222925900", + "outputQty": "243764851091508943045", + "swapFee1": "146631934632889771", + "swapFee2": "147911926659133755", "mpReserves": [ - "48240320365201277007101553", - "36488030751878953597341645", - "34292778763382893858841719" + "45375906414769482696852421", + "17003553694742913076235122", + "43423702823823063033560490" ], "fpReserves": [ - "19984342290591220989893963", - "5910570728532980835826932" + "6664999013052564060312380", + "7402057107668950093026385" ], - "mAssetSupply": "119016578653499827899299980", - "LPTokenSupply": "25726222115724903410698270" + "mAssetSupply": "105713315205280700186373234", + "LPTokenSupply": "13931841527776126636999076" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2941714737403674624", - "outputQty0": "2942484715860510116", - "outputQty": "2898144931339827324", - "swapFee": "2330945079794306", + "inputIndex": 0, + "inputQty": "370732097568517365170176", + "outputQty0": "369519881568140675772222", + "outputQty": "369352414056142026195510", + "swapFee": "292854102563053053157", "mpReserves": [ - "48240320365201277007101553", - "36488033693593691001016269", - "34292778763382893858841719" + "45746638512338000062022597", + "17003553694742913076235122", + "43423702823823063033560490" ], "fpReserves": [ - "19984345233075936850404079", - "5910567830388049495999608" + "7034518894620704736084602", + "7032704693612808066830875" ], - "mAssetSupply": "119016581595984543759810096", - "LPTokenSupply": "25726222115957997918677700" + "mAssetSupply": "106082835086848840862145456", + "LPTokenSupply": "13931870813186382942304391" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "22740120585744106389504", - "outputQty0": "22725364853681649180226", - "outputQty": "22381553084767635949791", - "swapFee": "18002270371307906157", + "inputIndex": 2, + "inputQty": "3418437464786879381504", + "outputQty0": "3408693041067803019855", + "outputQty": "3405949339602933529807", + "swapFee": "2700711602540915320", "mpReserves": [ - "48263060485787021113491057", - "36488033693593691001016269", - "34292778763382893858841719" + "45746638512338000062022597", + "17003553694742913076235122", + "43427121261287849912941994" ], "fpReserves": [ - "20007070597929618499584305", - "5888186277303281860049817" + "7037927587661772539104457", + "7029298744273205133301068" ], - "mAssetSupply": "119039306960838225408990322", - "LPTokenSupply": "25726223916185035049468315" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "763953957407191283531776", - "hardLimitError": true + "mAssetSupply": "106086243779889908665165311", + "LPTokenSupply": "13931871083257543196395923" }, { - "type": "swap_fp_to_mp", - "inputQty": "252480796005079701258240", - "outputIndex": 0, - "outputQty": "256061680017294583386445", - "swapFee": "0", - "redemptionFee": "102399680449714401942", + "type": "redeem", + "outputIndex": 2, + "inputQty": "17271100877349998592", + "outputQty0": "17428505795457289977", + "outputQty": "17467846051488289671", + "swapFee1": "10362660526409999", + "swapFee2": "10457103477274373", "mpReserves": [ - "48006998805769726530104612", - "36488033693593691001016269", - "34292778763382893858841719" + "45746638512338000062022597", + "17003553694742913076235122", + "43427103793441798424652323" ], "fpReserves": [ - "19751071396805332494729047", - "6140667073308361561308057" + "7037910159155977081814480", + "7029298744273205133301068" ], - "mAssetSupply": "118783410159394389118537006", - "LPTokenSupply": "25726223916185035049468315" + "mAssetSupply": "106086226361841216685149707", + "LPTokenSupply": "13931853813192931899038330" }, { "type": "swap_fp_to_mp", - "inputQty": "202259502846993963679744", + "inputQty": "2717727951551648768", "outputIndex": 1, - "outputQty": "204713204408623755445545", + "outputQty": "2687118548465087019", "swapFee": "0", - "redemptionFee": "81939543122940016490", + "redemptionFee": "1630649988203828", "mpReserves": [ - "48006998805769726530104612", - "36283320489185067245570724", - "34292778763382893858841719" + "45746638512338000062022597", + "17003551007624364611148103", + "43427103793441798424652323" ], "fpReserves": [ - "19546222538997982453501869", - "6342926576155355524987801" + "7037907441405996742099621", + "7029301462001156684949836" ], - "mAssetSupply": "118578643241130162017326318", - "LPTokenSupply": "25726223916185035049468315" + "mAssetSupply": "106086223645721886333638676", + "LPTokenSupply": "13931853813192931899038330" }, { "type": "mint", "inputIndex": 0, - "inputQty": "120098760318710579200", - "outputQty0": "120021405308471075252", - "outputQty": "118906798589819413540", + "inputQty": "5422158820527081259008", + "outputQty0": "5404285546038532806413", + "outputQty": "5352256885211533318856", "mpReserves": [ - "48007118904530045240683812", - "36283320489185067245570724", - "34292778763382893858841719" + "45752060671158527143281605", + "17003551007624364611148103", + "43427103793441798424652323" ], "fpReserves": [ - "19546342560403290924577121", - "6342926576155355524987801" + "7043311726952035274906034", + "7029301462001156684949836" ], - "mAssetSupply": "118578763262535470488401570", - "LPTokenSupply": "25726342822983624868881855" + "mAssetSupply": "106091627931267924866445089", + "LPTokenSupply": "13937206070078143432357186" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "10032792017201920000", - "outputQty0": "10037674385159420157", - "outputQty": "9944457011861593944", + "type": "redeem", + "outputIndex": 1, + "inputQty": "5216815630038583296", + "outputQty0": "5264373842788737244", + "outputQty": "5205032417151614485", + "swapFee1": "3130089378023149", + "swapFee2": "3158624305673242", "mpReserves": [ - "48007118904530045240683812", - "36283320489185067245570724", - "34292788796174911060761719" + "45752060671158527143281605", + "17003545802591947459533618", + "43427103793441798424652323" ], "fpReserves": [ - "19546352598077676083997278", - "6342926576155355524987801" + "7043306462578192486168790", + "7029301462001156684949836" ], - "mAssetSupply": "118578773300209855647821727", - "LPTokenSupply": "25726352767440636730475799" + "mAssetSupply": "106091622670052706383381087", + "LPTokenSupply": "13937200853575522331576204" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "17949442449066331996160", - "outputQty0": "17958164553826469584169", - "outputQty": "17724492907038504802884", - "swapFee": "14233078933223284815", + "type": "mint", + "inputIndex": 1, + "inputQty": "156176706152053899264", + "outputQty0": "157862452117501083497", + "outputQty": "156342459509362386052", "mpReserves": [ - "48007118904530045240683812", - "36283320489185067245570724", - "34310738238623977392757879" + "45752060671158527143281605", + "17003701979298099513432882", + "43427103793441798424652323" ], "fpReserves": [ - "19564310762631502553581447", - "6325202083248317020184917" + "7043464325030309987252287", + "7029301462001156684949836" ], - "mAssetSupply": "118596731464763682117405896", - "LPTokenSupply": "25726354190748530052804280" + "mAssetSupply": "106091780532504823884464584", + "LPTokenSupply": "13937357196035031693962256" }, { - "type": "swap_fp_to_mp", - "inputQty": "429559641159574166175744", - "outputIndex": 1, - "outputQty": "434201124796353737243747", - "swapFee": "0", - "redemptionFee": "173799531679594429071", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1542388712001178106331136", + "outputQty0": "1537817204282664688506373", + "outputQty": "1534234501025788126535932", + "swapFee": "1218007453974475008575", "mpReserves": [ - "48007118904530045240683812", - "35849119364388713508326977", - "34310738238623977392757879" + "45752060671158527143281605", + "17003701979298099513432882", + "44969492505442976530983459" ], "fpReserves": [ - "19129811933432516480901481", - "6754761724407891186360661" + "8581281529312974675758660", + "5495066960975368558413904" ], - "mAssetSupply": "118162406435096375639155001", - "LPTokenSupply": "25726354190748530052804280" + "mAssetSupply": "107629597736787488572970957", + "LPTokenSupply": "13937478996780429141463113" }, { "type": "swap_fp_to_mp", - "inputQty": "11441861688309497987072", - "outputIndex": 2, - "outputQty": "11553282171491318060877", + "inputQty": "83648250460589258702848", + "outputIndex": 0, + "outputQty": "84128287121534277309786", "swapFee": "0", - "redemptionFee": "4625337427700303271", + "redemptionFee": "50344709361552633011", "mpReserves": [ - "48007118904530045240683812", - "35849119364388713508326977", - "34299184956452486074697002" + "45667932384036992865971819", + "17003701979298099513432882", + "44969492505442976530983459" ], "fpReserves": [ - "19118248589863265722723785", - "6766203586096200684347733" + "8497373680377053620739166", + "5578715211435957817116752" ], - "mAssetSupply": "118150847716864552581280576", - "LPTokenSupply": "25726354190748530052804280" + "mAssetSupply": "107545740232560929070584474", + "LPTokenSupply": "13937478996780429141463113" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "608506993754804584448", - "outputQty0": "613573860084024062409", - "outputQty": "613144273710058927052", - "swapFee1": "365104196252882750", - "swapFee2": "245429544033609624", - "mpReserves": [ - "48007118904530045240683812", - "35848506220115003449399925", - "34299184956452486074697002" - ], - "fpReserves": [ - "19117635016003181698661376", - "6766203586096200684347733" - ], - "mAssetSupply": "118150234388434012590827791", - "LPTokenSupply": "25725745720265194873508107" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "88662857642212969152512", - "outputQty0": "88689209316621797899917", - "outputQty": "87674752910950710342131", - "swapFee": "70322446539390450788", + "type": "mint", + "inputIndex": 2, + "inputQty": "11265578559314855985152", + "outputQty0": "11230868851003181463180", + "outputQty": "11107042756209243708902", "mpReserves": [ - "48007118904530045240683812", - "35937169077757216418552437", - "34299184956452486074697002" + "45667932384036992865971819", + "17003701979298099513432882", + "44980758084002291386968611" ], "fpReserves": [ - "19206324225319803496561293", - "6678528833185249974005602" + "8508604549228056802202346", + "5578715211435957817116752" ], - "mAssetSupply": "118238923597750634388727708", - "LPTokenSupply": "25725752752509848812553185" + "mAssetSupply": "107556971101411932252047654", + "LPTokenSupply": "13948586039536638385172015" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "2168497403650446336", - "outputQty0": "2167080101158257433", - "outputQty": "2141935974476912082", - "swapFee": "1718163076424074", + "inputQty": "16595931399464472", + "outputQty0": "16542622394008937", + "outputQty": "16360196540693440", "mpReserves": [ - "48007121073027448891130148", - "35937169077757216418552437", - "34299184956452486074697002" + "45667932400632924265436291", + "17003701979298099513432882", + "44980758084002291386968611" ], "fpReserves": [ - "19206326392399904654818726", - "6678526691249275497093520" + "8508604565770679196211283", + "5578715211435957817116752" ], - "mAssetSupply": "118238925764830735546985141", - "LPTokenSupply": "25725752752681665120195592" + "mAssetSupply": "107556971117954554646056591", + "LPTokenSupply": "13948586055896834925865455" }, { "type": "swap_fp_to_mp", - "inputQty": "23771079151981268", + "inputQty": "6456597606211466035200", "outputIndex": 1, - "outputQty": "24014213225263844", + "outputQty": "6400596738950714839070", "swapFee": "0", - "redemptionFee": "9612354873344", + "redemptionFee": "3885595271317289673", "mpReserves": [ - "48007121073027448891130148", - "35937169053743003193288593", - "34299184956452486074697002" + "45667932400632924265436291", + "16997301382559148798593812", + "44980758084002291386968611" ], "fpReserves": [ - "19206326368369017471457460", - "6678526715020354649074788" + "8502128573651817046756234", + "5585171809042169283151952" ], - "mAssetSupply": "118238925740809460718497219", - "LPTokenSupply": "25725752752681665120195592" + "mAssetSupply": "107550499011430963813891215", + "LPTokenSupply": "13948586055896834925865455" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1295318884975605461286912", - "outputQty0": "1294436558875009351250920", - "outputQty": "1282649954054072681258926", - "mpReserves": [ - "49302439958003054352417060", - "35937169053743003193288593", - "34299184956452486074697002" - ], - "fpReserves": [ - "20500762927244026822708380", - "6678526715020354649074788" - ], - "mAssetSupply": "119533362299684470069748139", - "LPTokenSupply": "27008402706735737801454518" - }, - { - "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "2258207468377141504", - "outputQty0": "2259367520524819693", - "outputQty": "2230239894873877221", - "swapFee": "1790739372931186", + "inputQty": "184621691585928189968384", + "outputQty0": "184049948020282113593307", + "outputQty": "182015102500090804900746", "mpReserves": [ - "49302439958003054352417060", - "35937169053743003193288593", - "34299187214659954451838506" + "45667932400632924265436291", + "16997301382559148798593812", + "45165379775588219576936995" ], "fpReserves": [ - "20500765186611547347528073", - "6678524484780459775197567" + "8686178521672099160349541", + "5585171809042169283151952" ], - "mAssetSupply": "119533364559051990594567832", - "LPTokenSupply": "27008402706914811738747636" + "mAssetSupply": "107734548959451245927484522", + "LPTokenSupply": "14130601158396925730766201" }, { "type": "swap_fp_to_mp", - "inputQty": "42936155320726170107904", - "outputIndex": 0, - "outputQty": "43471603571283461570579", + "inputQty": "9203520170188533137408", + "outputIndex": 2, + "outputQty": "9255857521994515123449", "swapFee": "0", - "redemptionFee": "17383289819154008199", + "redemptionFee": "5539569667758529339", "mpReserves": [ - "49258968354431770890846481", - "35937169053743003193288593", - "34299187214659954451838506" + "45667932400632924265436291", + "16997301382559148798593812", + "45156123918066225061813546" ], "fpReserves": [ - "20457306962063662327029063", - "6721460640101185945305471" + "8676945905559168278117401", + "5594375329212357816289360" ], - "mAssetSupply": "119489923717793924728077021", - "LPTokenSupply": "27008402706914811738747636" + "mAssetSupply": "107725321882907982803781721", + "LPTokenSupply": "14130601158396925730766201" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "20996986569019604598784", - "outputQty0": "21179726076398628337392", - "outputQty": "21160394099437441850785", - "swapFee1": "12598191941411762759", - "swapFee2": "8471890430559451334", + "inputQty": "2080865529106093047808", + "outputQty0": "2102919707747810918556", + "outputQty": "2108211688437344963655", + "swapFee1": "1248519317463655828", + "swapFee2": "1261751824648686551", "mpReserves": [ - "49258968354431770890846481", - "35937169053743003193288593", - "34278026820560517009987721" + "45667932400632924265436291", + "16997301382559148798593812", + "45154015706377787716849891" ], "fpReserves": [ - "20436127235987263698691671", - "6721460640101185945305471" + "8674842985851420467198845", + "5594375329212357816289360" ], - "mAssetSupply": "119468752463607956659190963", - "LPTokenSupply": "26987406980164986275325127" + "mAssetSupply": "107723220224952059641549716", + "LPTokenSupply": "14128520417719751384083975" }, { "type": "mint", "inputIndex": 2, - "inputQty": "31644215709077526806528", - "outputQty0": "31660442935236310553704", - "outputQty": "31368388151763329216407", + "inputQty": "2494269621041687", + "outputQty0": "2486516141158131", + "outputQty": "2458963540887513", "mpReserves": [ - "49258968354431770890846481", - "35937169053743003193288593", - "34309671036269594536794249" + "45667932400632924265436291", + "16997301382559148798593812", + "45154015708872057337891578" ], "fpReserves": [ - "20467787678922500009245375", - "6721460640101185945305471" + "8674842988337936608356976", + "5594375329212357816289360" ], - "mAssetSupply": "119500412906543192969744667", - "LPTokenSupply": "27018775368316749604541534" + "mAssetSupply": "107723220227438575782707847", + "LPTokenSupply": "14128520420178714924971488" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "12103332041695061606400", - "outputQty0": "12094779094857137898786", - "outputQty": "11940564608235952650052", - "swapFee": "9586514522420595832", + "type": "swap_fp_to_mp", + "inputQty": "25220288312295956480", + "outputIndex": 0, + "outputQty": "25365823215117643539", + "swapFee": "0", + "redemptionFee": "15179810183665443", "mpReserves": [ - "49271071686473465952452881", - "35937169053743003193288593", - "34309671036269594536794249" + "45667907034809709147792752", + "16997301382559148798593812", + "45154015708872057337891578" ], "fpReserves": [ - "20479882458017357147144161", - "6709520075492949992655419" + "8674817688654297165951973", + "5594400549500670112245840" ], - "mAssetSupply": "119512507685638050107643453", - "LPTokenSupply": "27018776326968201846601117" + "mAssetSupply": "107723194942934746523968287", + "LPTokenSupply": "14128520420178714924971488" }, { "type": "swap_fp_to_mp", - "inputQty": "79685024340681375744", - "outputIndex": 2, - "outputQty": "80578070682415407207", + "inputQty": "53660124203373050200064", + "outputIndex": 1, + "outputQty": "53194349104559853879261", "swapFee": "0", - "redemptionFee": "32260631539662771", + "redemptionFee": "32295328607702804376", "mpReserves": [ - "49271071686473465952452881", - "35937169053743003193288593", - "34309590458198912121387042" + "45667907034809709147792752", + "16944107033454588944714551", + "45154015708872057337891578" ], "fpReserves": [ - "20479801806438507990214485", - "6709599760517290674031163" + "8620992140974792491990533", + "5648060673704043162445904" ], - "mAssetSupply": "119512427066319832490376548", - "LPTokenSupply": "27018776326968201846601117" + "mAssetSupply": "107669401690583849552811223", + "LPTokenSupply": "14128520420178714924971488" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "35316859338896236544", - "outputQty0": "35334937937718754504", - "outputQty": "35008407437153231006", + "inputIndex": 1, + "inputQty": "88639518481464504090624", + "outputQty0": "89635303114145568942498", + "outputQty": "88645122789308236503169", "mpReserves": [ - "49271071686473465952452881", - "35937169053743003193288593", - "34309625775058251017623586" + "45667907034809709147792752", + "17032746551936053448805175", + "45154015708872057337891578" ], "fpReserves": [ - "20479837141376445708968989", - "6709599760517290674031163" + "8710627444088938060933031", + "5648060673704043162445904" ], - "mAssetSupply": "119512462401257770209131052", - "LPTokenSupply": "27018811335375638999832123" + "mAssetSupply": "107759036993697995121753721", + "LPTokenSupply": "14217165542968023161474657" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2640447765734173442048", - "outputQty0": "2641799117318390711573", - "outputQty": "2617385336381786768111", + "type": "redeem", + "outputIndex": 2, + "inputQty": "21773610250093", + "outputQty0": "22003983468561", + "outputQty": "22059149954870", + "swapFee1": "13064166150", + "swapFee2": "13202390081", "mpReserves": [ - "49271071686473465952452881", - "35937169053743003193288593", - "34312266222823985191065634" + "45667907034809709147792752", + "17032746551936053448805175", + "45154015708849998187936708" ], "fpReserves": [ - "20482478940493764099680562", - "6709599760517290674031163" + "8710627444066934077464470", + "5648060673704043162445904" ], - "mAssetSupply": "119515104200375088599842625", - "LPTokenSupply": "27021428720712020786600234" + "mAssetSupply": "107759036993676004340675241", + "LPTokenSupply": "14217165542946250857641179" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "127060569702419529728", - "outputQty0": "127125583642861243042", - "outputQty": "125950727786882037590", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "563258540011291076984832", + "outputQty0": "561435455994946834385341", + "outputQty": "558846992311587463662622", + "swapFee": "444133399985692231882", "mpReserves": [ - "49271071686473465952452881", - "35937169053743003193288593", - "34312393283393687610595362" + "46231165574821000224777584", + "17032746551936053448805175", + "45154015708849998187936708" ], "fpReserves": [ - "20482606066077406960923604", - "6709599760517290674031163" + "9272062900061880911849811", + "5089213681392455698783282" ], - "mAssetSupply": "119515231325958731461085667", - "LPTokenSupply": "27021554671439807668637824" + "mAssetSupply": "108320472449670951175060582", + "LPTokenSupply": "14217209956286249426864367" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "33018477504255341101056", - "outputQty0": "33035328019709182538913", - "outputQty": "32729887754656725387774", + "inputIndex": 1, + "inputQty": "548009130702771777961984", + "outputQty0": "554008699055053485792498", + "outputQty": "547499752600217011629787", "mpReserves": [ - "49271071686473465952452881", - "35937169053743003193288593", - "34345411760897942951696418" + "46231165574821000224777584", + "17580755682638825226767159", + "45154015708849998187936708" ], "fpReserves": [ - "20515641394097116143462517", - "6709599760517290674031163" + "9826071599116934397642309", + "5089213681392455698783282" ], - "mAssetSupply": "119548266653978440643624580", - "LPTokenSupply": "27054284559194464394025598" + "mAssetSupply": "108874481148726004660853080", + "LPTokenSupply": "14764709708886466438494154" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "37838168987797309882368", - "outputQty0": "38168340856640037012392", - "outputQty": "38140381951804175851474", - "swapFee1": "22702901392678385929", - "swapFee2": "15267336342656014804", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "502977991555908039081984", + "outputQty0": "501483376975820408757866", + "outputQty": "498058019662988933165483", + "swapFee": "396395759327040202793", "mpReserves": [ - "49271071686473465952452881", - "35899028671791199017437119", - "34345411760897942951696418" + "46231165574821000224777584", + "17580755682638825226767159", + "45656993700405906227018692" ], "fpReserves": [ - "20477473053240476106450125", - "6709599760517290674031163" + "10327554976092754806400175", + "4591155661729466765617799" ], - "mAssetSupply": "119510113580458143262626992", - "LPTokenSupply": "27016448660496806351981822" + "mAssetSupply": "109375964525701825069610946", + "LPTokenSupply": "14764749348462399142514433" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "193871489680595096698880", - "outputQty0": "193733652977907338241564", - "outputQty": "191181337889041371346244", - "swapFee": "153550885197367787895", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1117066399558874276298752", + "outputQty0": "1130220803922514036113079", + "outputQty": "1116725277821822229668383", + "swapFee1": "670239839735324565779", + "swapFee2": "678132482353508421667", "mpReserves": [ - "49464943176154061049151761", - "35899028671791199017437119", - "34345411760897942951696418" + "46231165574821000224777584", + "16464030404817002997098776", + "45656993700405906227018692" ], "fpReserves": [ - "20671206706218383444691689", - "6518418422628249302684919" + "9197334172170240770287096", + "4591155661729466765617799" ], - "mAssetSupply": "119703847233436050600868556", - "LPTokenSupply": "27016464015585326088760611" + "mAssetSupply": "108246421854261664541919534", + "LPTokenSupply": "13647749972887498398672258" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "85265810947070341677056", - "outputQty0": "86026399421082404536427", - "outputQty": "85962522561466683903188", - "swapFee1": "51159486568242205006", - "swapFee2": "34410559768432961814", + "inputQty": "1934116197406610680709120", + "outputQty0": "1955738851238038856715027", + "outputQty": "1927598288805115048226755", + "swapFee1": "1160469718443966408425", + "swapFee2": "1173443310742823314029", "mpReserves": [ - "49464943176154061049151761", - "35813066149229732333533931", - "34345411760897942951696418" + "46231165574821000224777584", + "14536432116011887948872021", + "45656993700405906227018692" ], "fpReserves": [ - "20585180306797301040155262", - "6518418422628249302684919" + "7241595320932201913572069", + "4591155661729466765617799" ], - "mAssetSupply": "119617855244574736629293943", - "LPTokenSupply": "26931203320586912571304055" + "mAssetSupply": "106291856446334368508518536", + "LPTokenSupply": "11713749822452732114603980" }, { "type": "swap_fp_to_mp", - "inputQty": "1245214996414348", - "outputIndex": 2, - "outputQty": "1260092844873278", + "inputQty": "1253542846599328694272", + "outputIndex": 0, + "outputQty": "1261980860802703047807", "swapFee": "0", - "redemptionFee": "504496282944", + "redemptionFee": "754599503398389505", "mpReserves": [ - "49464943176154061049151761", - "35813066149229732333533931", - "34345411759637850106823140" + "46229903593960197521729777", + "14536432116011887948872021", + "45656993700405906227018692" ], "fpReserves": [ - "20585180305536060332794029", - "6518418423873464299099267" + "7240337655093204597729338", + "4592409204576066094312071" ], - "mAssetSupply": "119617855243314000418215654", - "LPTokenSupply": "26931203320586912571304055" + "mAssetSupply": "106290599535094874591065310", + "LPTokenSupply": "11713749822452732114603980" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "29309874146204016705536", - "outputQty0": "29324804147340804828889", - "outputQty": "28927151830695421050167", - "swapFee": "23238607322886994715", + "type": "redeem", + "outputIndex": 0, + "inputQty": "6218815786022212", + "outputQty0": "6286231667243037", + "outputQty": "6307798958717305", + "swapFee1": "3731289471613", + "swapFee2": "3771739000345", "mpReserves": [ - "49464943176154061049151761", - "35813066149229732333533931", - "34374721633784054123528676" + "46229903587652398563012472", + "14536432116011887948872021", + "45656993700405906227018692" ], "fpReserves": [ - "20614505109683401137622918", - "6489491272042768878049100" + "7240337648806972930486301", + "4592409204576066094312071" ], - "mAssetSupply": "119647180047461341223044543", - "LPTokenSupply": "26931205644447644860003526" + "mAssetSupply": "106290599528812414662822618", + "LPTokenSupply": "11713749816234289457528929" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "448272686676829901160448", - "outputQty0": "448492454714700043622832", - "outputQty": "444224281642581425107781", + "inputIndex": 1, + "inputQty": "3069263686622083072", + "outputQty0": "3118070297275294880", + "outputQty": "3082780173548146948", "mpReserves": [ - "49464943176154061049151761", - "35813066149229732333533931", - "34822994320460884024689124" + "46229903587652398563012472", + "14536435185275574570955093", + "45656993700405906227018692" ], "fpReserves": [ - "21062997564398101181245750", - "6489491272042768878049100" + "7240340766877270205781181", + "4592409204576066094312071" ], - "mAssetSupply": "120095672502176041266667375", - "LPTokenSupply": "27375429926090226285111307" + "mAssetSupply": "106290602646882711938117498", + "LPTokenSupply": "11713752899014463005675877" }, { "type": "mint", "inputIndex": 2, - "inputQty": "4819679209968200843264", - "outputQty0": "4821955487690772345603", - "outputQty": "4775783653356308931190", - "mpReserves": [ - "49464943176154061049151761", - "35813066149229732333533931", - "34827813999670852225532388" - ], - "fpReserves": [ - "21067819519885791953591353", - "6489491272042768878049100" - ], - "mAssetSupply": "120100494457663732039012978", - "LPTokenSupply": "27380205709743582594042497" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "3010310349259903860736", - "outputQty0": "3008194372745407549739", - "outputQty": "2979386863063822319360", + "inputQty": "9075228544959432884224", + "outputQty0": "9039806410127934948582", + "outputQty": "8937476176037182722423", "mpReserves": [ - "49467953486503320953012497", - "35813066149229732333533931", - "34827813999670852225532388" + "46229903587652398563012472", + "14536435185275574570955093", + "45666068928950865659902916" ], "fpReserves": [ - "21070827714258537361141092", - "6489491272042768878049100" + "7249380573287398140729763", + "4592409204576066094312071" ], - "mAssetSupply": "120103502652036477446562717", - "LPTokenSupply": "27383185096606646416361857" + "mAssetSupply": "106299642453292839873066080", + "LPTokenSupply": "11722690375190500188398300" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "652208878144701", - "outputQty0": "652516844158540", - "outputQty": "646267863539030", + "type": "redeem", + "outputIndex": 0, + "inputQty": "17342973074217552052224", + "outputQty0": "17530984020239956727842", + "outputQty": "17591099462054575054885", + "swapFee1": "10405783844530531231", + "swapFee2": "10518590412143974036", "mpReserves": [ - "49467953486503320953012497", - "35813066149229732333533931", - "34827814000323061103677089" + "46212312488190343987957587", + "14536435185275574570955093", + "45666068928950865659902916" ], "fpReserves": [ - "21070827714911054205299632", - "6489491272042768878049100" + "7231849589267158184001921", + "4592409204576066094312071" ], - "mAssetSupply": "120103502652688994290721257", - "LPTokenSupply": "27383185097252914279900887" + "mAssetSupply": "106282121987863012060312274", + "LPTokenSupply": "11705348442694667089399199" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "33695164716282290372608", "outputIndex": 0, - "inputQty": "255295724796961325056", - "outputQty0": "257609597524994352841", - "outputQty": "257687699719435689222", - "swapFee1": "153177434878176795", - "swapFee2": "103043839009997741", + "outputQty": "33919674242243501235495", + "swapFee": "0", + "redemptionFee": "20282336255008914920", "mpReserves": [ - "49467695798803601517323275", - "35813066149229732333533931", - "34827814000323061103677089" + "46178392813948100486722092", + "14536435185275574570955093", + "45666068928950865659902916" ], "fpReserves": [ - "21070570105313529210946791", - "6489491272042768878049100" + "7198045695508809992467764", + "4626104369292348384684679" ], - "mAssetSupply": "120103245146135308306366157", - "LPTokenSupply": "27382929816845860806393510" + "mAssetSupply": "106248338376440918877693037", + "LPTokenSupply": "11705348442694667089399199" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "151324578071874916843520", - "outputQty0": "151217724090376582502039", - "outputQty": "149766607222273659212140", + "type": "redeem", + "outputIndex": 1, + "inputQty": "320373851002870169600000", + "outputQty0": "323809262411333695865704", + "outputQty": "318440160848420204292483", + "swapFee1": "192224310601722101760", + "swapFee2": "194285557446800217519", "mpReserves": [ - "49619020376875476434166795", - "35813066149229732333533931", - "34827814000323061103677089" + "46178392813948100486722092", + "14217995024427154366662610", + "45666068928950865659902916" ], "fpReserves": [ - "21221787829403905793448830", - "6489491272042768878049100" + "6874236433097476296602060", + "4626104369292348384684679" ], - "mAssetSupply": "120254462870225684888868196", - "LPTokenSupply": "27532696424068134465605650" + "mAssetSupply": "105924723399587031982044852", + "LPTokenSupply": "11384993814122857092009375" }, { "type": "swap_fp_to_mp", - "inputQty": "740505112455758280130560", - "outputIndex": 2, - "outputQty": "748768623445023429960869", + "inputQty": "18198487331488353222656", + "outputIndex": 1, + "outputQty": "17939455424840539733941", "swapFee": "0", - "redemptionFee": "299779114603777710869", + "redemptionFee": "10949391011586236904", "mpReserves": [ - "49619020376875476434166795", - "35813066149229732333533931", - "34079045376878037673716220" + "46178392813948100486722092", + "14200055569002313826928669", + "45666068928950865659902916" ], "fpReserves": [ - "20472340042894461516274093", - "7229996384498527158179660" + "6855987448078165901760498", + "4644302856623836737907335" ], - "mAssetSupply": "119505314862830844389404328", - "LPTokenSupply": "27532696424068134465605650" + "mAssetSupply": "105906485363958733173440194", + "LPTokenSupply": "11384993814122857092009375" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "8158362275672632590336", - "outputQty0": "8161140829605566733030", - "outputQty": "8088704152291543151662", + "inputQty": "42723575501131030528", + "outputQty0": "43435571430361415042", + "outputQty": "43281853982877499018", + "swapFee": "34361942782719398", "mpReserves": [ - "49619020376875476434166795", - "35821224511505404966124267", - "34079045376878037673716220" + "46178392813948100486722092", + "14200098292577814957959197", + "45666068928950865659902916" ], "fpReserves": [ - "20480501183724067083007123", - "7229996384498527158179660" + "6856030883649596263175540", + "4644259574769853860408317" ], - "mAssetSupply": "119513476003660449956137358", - "LPTokenSupply": "27540785128220426008757312" + "mAssetSupply": "105906528799530163534855236", + "LPTokenSupply": "11384993817559051370281314" }, { "type": "mint", "inputIndex": 0, - "inputQty": "10232785697687793041408", - "outputQty0": "10225293885686505377747", - "outputQty": "10134514025809664745340", + "inputQty": "607547450288756752384", + "outputQty0": "605037647342148185531", + "outputQty": "598307576837921829026", "mpReserves": [ - "49629253162573164227208203", - "35821224511505404966124267", - "34079045376878037673716220" + "46179000361398389243474476", + "14200098292577814957959197", + "45666068928950865659902916" ], "fpReserves": [ - "20490726477609753588384870", - "7229996384498527158179660" + "6856635921296938411361071", + "4644259574769853860408317" ], - "mAssetSupply": "119523701297546136461515105", - "LPTokenSupply": "27550919642246235673502652" + "mAssetSupply": "105907133837177505683040767", + "LPTokenSupply": "11385592125135889292110340" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "131620310450852474126336", - "outputQty0": "131690370891817558921051", - "outputQty": "130168077738839376390076", - "swapFee": "104415219897575613613", + "type": "redeem", + "outputIndex": 2, + "inputQty": "44610008385082", + "outputQty0": "45084743929716", + "outputQty": "45239890561044", + "swapFee1": "26766005031", + "swapFee2": "27050846357", "mpReserves": [ - "49629253162573164227208203", - "35821224511505404966124267", - "34210665687328890147842556" + "46179000361398389243474476", + "14200098292577814957959197", + "45666068928905625769341872" ], "fpReserves": [ - "20622416848501571147305921", - "7099828306759687781789584" + "6856635921251853667431355", + "4644259574769853860408317" ], - "mAssetSupply": "119655391668437954020436156", - "LPTokenSupply": "27550930083768225431064013" + "mAssetSupply": "105907133837132447989957408", + "LPTokenSupply": "11385592125091281960325761" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "10833316329071678", - "outputQty0": "10925170792933651", - "outputQty": "10915049724748137", - "swapFee1": "6499989797443", - "swapFee2": "4370068317173", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "29404254554090427645952", + "outputQty0": "29285764209029005765706", + "outputQty": "29180875947260746743000", + "swapFee": "23167844152154852802", "mpReserves": [ - "49629253162573164227208203", - "35821224511505404966124267", - "34210665676413840423094419" + "46179000361398389243474476", + "14200098292577814957959197", + "45695473183459716196987824" ], "fpReserves": [ - "20622416837576400354372270", - "7099828306759687781789584" + "6885921685460882673197061", + "4615078698822593113665317" ], - "mAssetSupply": "119655391657517153295819678", - "LPTokenSupply": "27550930072935559100972079" + "mAssetSupply": "105936419601341476995723114", + "LPTokenSupply": "11385594441875697175811041" }, { "type": "mint", "inputIndex": 2, - "inputQty": "818198496928559661056", - "outputQty0": "818629567822677707005", - "outputQty": "811259729724151945978", + "inputQty": "495247701179004682240", + "outputQty0": "493250824261739726682", + "outputQty": "487746651429219426206", "mpReserves": [ - "49629253162573164227208203", - "35821224511505404966124267", - "34211483874910768982755475" + "46179000361398389243474476", + "14200098292577814957959197", + "45695968431160895201670064" ], "fpReserves": [ - "20623235467144223032079275", - "7099828306759687781789584" + "6886414936285144412923743", + "4615078698822593113665317" ], - "mAssetSupply": "119656210287084975973526683", - "LPTokenSupply": "27551741332665283252918057" + "mAssetSupply": "105936912852165738735449796", + "LPTokenSupply": "11386082188527126395237247" }, { "type": "swap_fp_to_mp", - "inputQty": "594887645445365646229504", - "outputIndex": 0, - "outputQty": "601087143556652671277541", + "inputQty": "43728169801212512698368", + "outputIndex": 1, + "outputQty": "43102021258048802519643", "swapFee": "0", - "redemptionFee": "240358936688364369117", + "redemptionFee": "26309609441387949387", "mpReserves": [ - "49028166019016511555930662", - "35821224511505404966124267", - "34211483874910768982755475" + "46179000361398389243474476", + "14156996271319766155439554", + "45695968431160895201670064" ], "fpReserves": [ - "20022338125423312109286750", - "7694715952205053428019088" + "6842565587216164497277847", + "4658806868623805626363685" ], - "mAssetSupply": "119055553304300753415103275", - "LPTokenSupply": "27551741332665283252918057" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "21377298951329334427648", - "outputQty0": "21362261312382743115334", - "outputQty": "21150862548288620915969", - "swapFee": "16944770483570086999", - "mpReserves": [ - "49049543317967840890358310", - "35821224511505404966124267", - "34211483874910768982755475" - ], - "fpReserves": [ - "20043700386735694852402084", - "7673565089656764807103119" - ], - "mAssetSupply": "119076915565613136158218609", - "LPTokenSupply": "27551743027142331609926756" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "666756478593162058661888", - "outputQty0": "672019149154246691435044", - "outputQty": "672213938976995455753826", - "swapFee1": "400053887155897235197", - "swapFee2": "268807659661698676574", - "mpReserves": [ - "48377329378990845434604484", - "35821224511505404966124267", - "34211483874910768982755475" - ], - "fpReserves": [ - "19371681237581448160967040", - "7673565089656764807103119" - ], - "mAssetSupply": "118405165224118551165460139", - "LPTokenSupply": "26885026553937885140988387" + "mAssetSupply": "105893089812706200207753287", + "LPTokenSupply": "11386082188527126395237247" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "77785036224342169485312", - "outputQty0": "77822777078915109815693", - "outputQty": "77083575145041203496339", - "swapFee": "61736958134906061275", - "mpReserves": [ - "48377329378990845434604484", - "35821224511505404966124267", - "34289268911135111152240787" - ], - "fpReserves": [ - "19449504014660363270782733", - "7596481514511723603606780" - ], - "mAssetSupply": "118482988001197466275275832", - "LPTokenSupply": "26885032727633698631594514" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "132508431074466543435776", - "outputQty0": "132549204397138788571905", - "outputQty": "131250182632936656951519", - "swapFee": "105144054073377066813", + "inputQty": "2900611894643442", + "outputQty0": "2888870040020932", + "outputQty": "2878762072325596", + "swapFee": "2285422204135", "mpReserves": [ - "48377329378990845434604484", - "35953732942579871509560043", - "34289268911135111152240787" + "46179000361398389243474476", + "14156996271319766155439554", + "45695968434061507096313506" ], "fpReserves": [ - "19582053219057502059354638", - "7465231331878786946655261" + "6842565590105034537298779", + "4658806865745043554038089" ], - "mAssetSupply": "118615537205594605063847737", - "LPTokenSupply": "26885043242039105969301195" + "mAssetSupply": "105893089815595070247774219", + "LPTokenSupply": "11386082188527354937457660" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "916471912741477285888", - "outputQty0": "915858546288796436863", - "outputQty": "906703129499505670514", - "swapFee": "726429546870815790", + "type": "swap_fp_to_mp", + "inputQty": "1544327249932429434028032", + "outputIndex": 2, + "outputQty": "1550670500379221184921136", + "swapFee": "0", + "redemptionFee": "927308000530169515812", "mpReserves": [ - "48378245850903586911890372", - "35953732942579871509560043", - "34289268911135111152240787" + "46179000361398389243474476", + "14156996271319766155439554", + "44145297933682285911392370" ], "fpReserves": [ - "19582969077603790855791501", - "7464324628749287440984747" + "5297052255888085344277328", + "6203134115677472988066121" ], - "mAssetSupply": "118616453064140893860284600", - "LPTokenSupply": "26885043314682060656382774" + "mAssetSupply": "104348503789378651224268580", + "LPTokenSupply": "11386082188527354937457660" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "271627510045574529024", - "outputQty0": "271759725135071358331", - "outputQty": "269042585924231294087", - "swapFee": "215550920159493605", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3697764777364986026524672", + "outputQty0": "3718719319369879556467205", + "outputQty": "3636854444668198555397624", + "swapFee1": "2218658866418991615914", + "swapFee2": "2231231591621927733880", "mpReserves": [ - "48378245850903586911890372", - "35953732942579871509560043", - "34289540538645156726769811" + "46179000361398389243474476", + "10520141826651567600041930", + "44145297933682285911392370" ], "fpReserves": [ - "19583240837328925927149832", - "7464055586163363209690660" + "1578332936518205787810123", + "6203134115677472988066121" ], - "mAssetSupply": "118616724823866028931642931", - "LPTokenSupply": "26885043336237152672332134" + "mAssetSupply": "100632015701600393595535255", + "LPTokenSupply": "7688539277049010810094579" }, { "type": "swap_fp_to_mp", - "inputQty": "9432685202154976182272", + "inputQty": "11377860835919036416", "outputIndex": 0, - "outputQty": "9522756825145482595040", + "outputQty": "11228952065331847399", "swapFee": "0", - "redemptionFee": "3808077375998990534", + "redemptionFee": "6700815078681024", "mpReserves": [ - "48368723094078441429295332", - "35953732942579871509560043", - "34289540538645156726769811" + "46178989132446323911627077", + "10520141826651567600041930", + "44145297933682285911392370" ], "fpReserves": [ - "19573720643888928450814676", - "7473488271365518185872932" + "1578321768493074652769234", + "6203145493538308907102537" ], - "mAssetSupply": "118607208438503407454298309", - "LPTokenSupply": "26885043336237152672332134" + "mAssetSupply": "100632004540276077539175390", + "LPTokenSupply": "7688539277049010810094579" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1906708763638332129280", - "outputQty0": "1907636135907931226637", - "outputQty": "1891357479410432331490", + "inputQty": "8012328659570761138176", + "outputQty0": "7967934485709514466417", + "outputQty": "8110333616271919943961", + "swapFee": "6391794857189728707", "mpReserves": [ - "48368723094078441429295332", - "35953732942579871509560043", - "34291447247408795058899091" + "46178989132446323911627077", + "10520141826651567600041930", + "44153310262341856672530546" ], "fpReserves": [ - "19575628280024836382041313", - "7473488271365518185872932" + "1586289702978784167235651", + "6195035159922036987158576" ], - "mAssetSupply": "118609116074639315385524946", - "LPTokenSupply": "26886934693716563104663624" + "mAssetSupply": "100639972474761787053641807", + "LPTokenSupply": "7688539916228496529067449" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "26041640186389590016", - "outputQty0": "26049525538642144974", - "outputQty": "25789761779797619862", - "swapFee": "20661782586378307", + "inputQty": "7364075728025372672", + "outputQty0": "7581292211082453851", + "outputQty": "7601307292777813348", "mpReserves": [ - "48368723094078441429295332", - "35953758984220057899150059", - "34291447247408795058899091" + "46178989132446323911627077", + "10520149190727295625414602", + "44153310262341856672530546" ], "fpReserves": [ - "19575654329550375024186287", - "7473462481603738388253070" + "1586297284270995249689502", + "6195035159922036987158576" ], - "mAssetSupply": "118609142124164854027669920", - "LPTokenSupply": "26886934695782741363301454" + "mAssetSupply": "100639980056053998136095658", + "LPTokenSupply": "7688547517535789306880797" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2346089466294058352640", - "outputQty0": "2347230145364855468573", - "outputQty": "2323815455436787182636", - "swapFee": "1861759235156195318", - "mpReserves": [ - "48368723094078441429295332", - "35953758984220057899150059", - "34293793336875089117251731" - ], - "fpReserves": [ - "19578001559695739879654860", - "7471138666148301601070434" - ], - "mAssetSupply": "118611489354310218883138493", - "LPTokenSupply": "26886934881958664878920985" + "type": "redeem", + "outputIndex": 2, + "inputQty": "1055130407697877060026368", + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "14628964978073079382016", + "type": "redeem", "outputIndex": 2, - "outputQty": "14751184077035993807486", - "swapFee": "0", - "redemptionFee": "5905707673538985453", + "inputQty": "239034196739199238144", + "outputQty0": "238261317370786361690", + "outputQty": "239445245011203858406", + "swapFee1": "143420518043519542", + "swapFee2": "142956790422471817", "mpReserves": [ - "48368723094078441429295332", - "35953758984220057899150059", - "34279042152798053123444245" + "46178989132446323911627077", + "10520149190727295625414602", + "44153070817096845468672140" ], "fpReserves": [ - "19563237290511892416020699", - "7485767631126374680452450" + "1586059022953624463327812", + "6195035159922036987158576" ], - "mAssetSupply": "118596730990834044958489785", - "LPTokenSupply": "26886934881958664878920985" + "mAssetSupply": "100639741937693417772205785", + "LPTokenSupply": "7688308497681101911994607" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "89570223856616390656", - "outputQty0": "89510283748843886353", - "outputQty": "88620984985910871412", - "swapFee": "70997878789604579", + "inputQty": "91992814785204435550208", + "outputQty0": "91437994525028449528548", + "outputQty": "92962313034848264797649", + "swapFee": "73293747198698305363", "mpReserves": [ - "48368812664302298045685988", - "35953758984220057899150059", - "34279042152798053123444245" + "46270981947231528347177285", + "10520149190727295625414602", + "44153070817096845468672140" ], "fpReserves": [ - "19563326800795641259907052", - "7485679010141388769581038" + "1677497017478652912856360", + "6102072846887188722360927" ], - "mAssetSupply": "118596820501117793802376138", - "LPTokenSupply": "26886934889058452757881442" + "mAssetSupply": "100731179932218446221734333", + "LPTokenSupply": "7688315827055821781825143" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "533406129661567107072", - "outputQty0": "537668874950722710361", - "outputQty": "537291339159280197996", - "swapFee1": "320043677796940264", - "swapFee2": "215067549980289084", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "316952842511554969600", + "outputQty0": "315197704572468584426", + "outputQty": "320121888592720324822", + "swapFee": "252401767766860682", "mpReserves": [ - "48368812664302298045685988", - "35953221692880898618952063", - "34279042152798053123444245" + "46270981947231528347177285", + "10520149190727295625414602", + "44153387769939357023641740" ], "fpReserves": [ - "19562789131920690537196691", - "7485679010141388769581038" + "1677812215183225381440786", + "6101752724998596002036105" ], - "mAssetSupply": "118596283047310393059954861", - "LPTokenSupply": "26886401514933158970468396" + "mAssetSupply": "100731495129923018690318759", + "LPTokenSupply": "7688315852295998558511211" }, { - "type": "swap_fp_to_mp", - "inputQty": "130066016757201166663680", + "type": "redeem", "outputIndex": 0, - "outputQty": "131275645967929564827282", - "swapFee": "0", - "redemptionFee": "52496263326080225056", + "inputQty": "142248781632009072", + "outputQty0": "142026682077395998", + "outputQty": "142803995657870875", + "swapFee1": "85349268979205", + "swapFee2": "85216009246437", "mpReserves": [ - "48237537018334368480858706", - "35953221692880898618952063", - "34279042152798053123444245" + "46270981804427532689306410", + "10520149190727295625414602", + "44153387769939357023641740" ], "fpReserves": [ - "19431548473605489974555539", - "7615745026898589936244718" + "1677812073156543304044788", + "6101752724998596002036105" ], - "mAssetSupply": "118465094885258518577538765", - "LPTokenSupply": "26886401514933158970468396" + "mAssetSupply": "100731494987981552622169198", + "LPTokenSupply": "7688315710055751853400059" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "31186265774385409294336", - "outputQty0": "31165549425467755855279", - "outputQty": "30903138596814940080931", - "mpReserves": [ - "48268723284108753890153042", - "35953221692880898618952063", - "34279042152798053123444245" - ], - "fpReserves": [ - "19462714023030957730410818", - "7615745026898589936244718" - ], - "mAssetSupply": "118496260434683986333394044", - "LPTokenSupply": "26917304653529973910549327" - }, - { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "166297780627288537169920", "outputIndex": 1, - "inputQty": "3416685734818239", - "outputQty0": "3443643070699297", - "outputQty": "3441234679109117", - "swapFee1": "2050011440890", - "swapFee2": "1377457228279", - "mpReserves": [ - "48268723284108753890153042", - "35953221689439663939842946", - "34279042152798053123444245" - ], - "fpReserves": [ - "19462714019587314659711521", - "7615745026898589936244718" - ], - "mAssetSupply": "118496260431241720719923026", - "LPTokenSupply": "26917304650113493176875177" + "hardLimitError": true }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "21936033168968743124992", - "outputQty0": "21942587696840821103758", - "outputQty": "21731706545743365243805", - "swapFee": "17406160533489556829", + "inputIndex": 2, + "inputQty": "311689020819735", + "outputQty0": "309963021746027", + "outputQty": "314804371171671", + "swapFee": "248209175755", "mpReserves": [ - "48268723284108753890153042", - "35975157722608632682967938", - "34279042152798053123444245" + "46270981804427532689306410", + "10520149190727295625414602", + "44153387770251046044461475" ], "fpReserves": [ - "19484656607284155480815279", - "7594013320352846571000913" + "1677812073466506325790815", + "6101752724683791630864434" ], - "mAssetSupply": "118518203018938561541026784", - "LPTokenSupply": "26917306390729546525830859" + "mAssetSupply": "100731494988291515643915225", + "LPTokenSupply": "7688315710055776674317634" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "11918360230095208448", - "outputQty0": "11910442549214633988", - "outputQty": "11795603524776197230", - "swapFee": "9447918484167271", + "inputQty": "138718623206581728", + "outputQty0": "137880769079308638", + "outputQty": "138013527477310046", "mpReserves": [ - "48268735202468983985361490", - "35975157722608632682967938", - "34279042152798053123444245" + "46270981943146155895888138", + "10520149190727295625414602", + "44153387770251046044461475" ], "fpReserves": [ - "19484668517726704695449267", - "7594001524749321794803683" + "1677812211347275405099453", + "6101752724683791630864434" ], - "mAssetSupply": "118518214929381110755660772", - "LPTokenSupply": "26917306391674338374247586" + "mAssetSupply": "100731495126172284723223863", + "LPTokenSupply": "7688315848069304151627680" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "16775788273879931158528", - "outputQty0": "16908426287901115679728", - "outputQty": "16896617201412537095119", - "swapFee1": "10065472964327958695", - "swapFee2": "6763370515160446271", + "inputQty": "10356485069369923584", + "outputQty0": "10340314327410123534", + "outputQty": "10037424947839622700", + "swapFee1": "6213891041621954", + "swapFee2": "6204188596446074", "mpReserves": [ - "48268735202468983985361490", - "35958261105407220145872819", - "34279042152798053123444245" + "46270981943146155895888138", + "10520139153302347785791902", + "44153387770251046044461475" ], "fpReserves": [ - "19467760091438803579769539", - "7594001524749321794803683" + "1677801871032947994975919", + "6101752724683791630864434" ], - "mAssetSupply": "118501313266463724800427315", - "LPTokenSupply": "26900531609947754875884927" + "mAssetSupply": "100731484792062145909546403", + "LPTokenSupply": "7688305492205623885866291" }, { - "type": "swap_fp_to_mp", - "inputQty": "49323760352893184507904", + "type": "redeem", "outputIndex": 0, - "outputQty": "49773017950231968272221", - "swapFee": "0", - "redemptionFee": "19903954233732539874", - "mpReserves": [ - "48218962184518752017089269", - "35958261105407220145872819", - "34279042152798053123444245" - ], - "fpReserves": [ - "19418000205854472230082869", - "7643325285102214979311587" - ], - "mAssetSupply": "118451573284833627183280519", - "LPTokenSupply": "26900531609947754875884927" + "inputQty": "256118090871445276065792", + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "1047497833992294020153344", - "outputIndex": 2, - "outputQty": "1054300579331149272294691", - "swapFee": "0", - "redemptionFee": "422110838784857369604", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "24615896284849262592", + "outputQty0": "25343489451783251555", + "outputQty": "25739329863039378768", + "swapFee": "20294312481290866", "mpReserves": [ - "48218962184518752017089269", - "35958261105407220145872819", - "33224741573466903851149554" + "46270981943146155895888138", + "10520163769198632635054494", + "44153387770251046044461475" ], "fpReserves": [ - "18362723108892328806071933", - "8690823119094508999464931" + "1677827214522399778227474", + "6101726985353928591485666" ], - "mAssetSupply": "117396718298710268616639187", - "LPTokenSupply": "26900531609947754875884927" + "mAssetSupply": "100731510135551597692797958", + "LPTokenSupply": "7688305494235055133995377" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "250849374258335791972352", - "outputQty0": "250989644333909780945466", - "outputQty": "249065153050976432861447", - "mpReserves": [ - "48218962184518752017089269", - "35958261105407220145872819", - "33475590947725239643121906" - ], - "fpReserves": [ - "18613712753226238587017399", - "8690823119094508999464931" - ], - "mAssetSupply": "117647707943044178397584653", - "LPTokenSupply": "27149596762998731308746374" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "130373775608144773120", - "outputQty0": "131305779846167283650", - "outputQty": "131181291716055286903", - "swapFee1": "78224265364886863", - "swapFee2": "52522311938466913", - "mpReserves": [ - "48218962184518752017089269", - "35958261105407220145872819", - "33475459766433523587835003" - ], - "fpReserves": [ - "18613581447446392419733749", - "8690823119094508999464931" - ], - "mAssetSupply": "117647576689786644168767916", - "LPTokenSupply": "27149466397045549700461940" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "761016895682936176640", - "outputQty0": "766457114278624576457", - "outputQty": "766677748468204968398", - "swapFee1": "456610137409761705", - "swapFee2": "306582845711449830", + "inputQty": "34894067642696519680", + "outputQty0": "34700839583265642635", + "outputQty": "35242810084787014710", + "swapFee": "27787386645825995", "mpReserves": [ - "48218195506770283812120871", - "35958261105407220145872819", - "33475459766433523587835003" + "46270981943146155895888138", + "10520163769198632635054494", + "44153422664318688740981155" ], "fpReserves": [ - "18612814990332113795157292", - "8690823119094508999464931" + "1677861915361983043870109", + "6101691742543843804470956" ], - "mAssetSupply": "117646810539255211255641289", - "LPTokenSupply": "27148705425810880505261470" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "556388629196104737488896", - "outputQty0": "560333030651954779253340", - "outputQty": "559946838037469070134778", - "swapFee1": "333833177517662842493", - "swapFee2": "224133212260781911701", - "mpReserves": [ - "48218195506770283812120871", - "35398314267369751075738041", - "33475459766433523587835003" - ], - "fpReserves": [ - "18052481959680159015903952", - "8690823119094508999464931" - ], - "mAssetSupply": "117086701641815517258299650", - "LPTokenSupply": "26592350179932527534056823" + "mAssetSupply": "100731544836391180958440593", + "LPTokenSupply": "7688305497013793798577976" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "182393916643187449921536", - "outputQty0": "182488934176796339392029", - "outputQty": "181217442309186134518762", - "swapFee": "144880604012227502857", + "inputIndex": 1, + "inputQty": "939739502212661641216", + "outputQty0": "967513672921365299932", + "outputQty": "982614179421015244804", + "swapFee": "774750646704445511", "mpReserves": [ - "48218195506770283812120871", - "35398314267369751075738041", - "33657853683076711037756539" + "46270981943146155895888138", + "10521103508700845296695710", + "44153422664318688740981155" ], "fpReserves": [ - "18234970893856955355295981", - "8509605676785322864946169" + "1678829429034904409170041", + "6100709128364422789226152" ], - "mAssetSupply": "117269190575992313597691679", - "LPTokenSupply": "26592364667992928756807108" + "mAssetSupply": "100732512350064102323740525", + "LPTokenSupply": "7688305574488858469022527" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1294352862269630054400", - "outputQty0": "1303629410741994408352", - "outputQty": "1304017823869179557935", - "swapFee1": "776611717361778032", - "swapFee2": "521451764296797763", + "type": "mint", + "inputIndex": 0, + "inputQty": "1372349334745442043297792", + "outputQty0": "1363880875713550093538519", + "outputQty": "1358373214389999219709177", "mpReserves": [ - "48216891488946414632562936", - "35398314267369751075738041", - "33657853683076711037756539" + "47643331277891597939185930", + "10521103508700845296695710", + "44153422664318688740981155" ], "fpReserves": [ - "18233667264446213360887629", - "8509605676785322864946169" + "3042710304748454502708560", + "6100709128364422789226152" ], - "mAssetSupply": "117267887468033335900081090", - "LPTokenSupply": "26591070392791830862930511" + "mAssetSupply": "102096393225777652417279044", + "LPTokenSupply": "9046678788878857688731704" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "148328829785935169191936", - "outputQty0": "149389488657087321164884", - "outputQty": "149252192012585919510851", - "swapFee1": "88997297871561101515", - "swapFee2": "59755795462834928465", + "inputQty": "3181593413441479168", + "outputQty0": "3201704496233370193", + "outputQty": "3217408286769418545", + "swapFee1": "1908956048064887", + "swapFee2": "1921022697740022", "mpReserves": [ - "48216891488946414632562936", - "35398314267369751075738041", - "33508601491064125118245688" + "47643331277891597939185930", + "10521103508700845296695710", + "44153419446910401971562610" ], "fpReserves": [ - "18084277775789126039722745", - "8509605676785322864946169" + "3042707103043958269338367", + "6100709128364422789226152" ], - "mAssetSupply": "117118557735171711413844671", - "LPTokenSupply": "26442750462735682849848726" + "mAssetSupply": "102096390025994178881648873", + "LPTokenSupply": "9046675607476339852059024" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "50042068754163778453504", - "outputQty0": "50057530348086689177088", - "outputQty": "49701843005028194974843", - "swapFee": "39738144432956080465", + "inputQty": "15576710151114506371072", + "outputQty0": "16050735907951067703332", + "outputQty": "15940034685741987545495", "mpReserves": [ - "48216891488946414632562936", - "35448356336123914854191545", - "33508601491064125118245688" + "47643331277891597939185930", + "10536680218851959803066782", + "44153419446910401971562610" ], "fpReserves": [ - "18134335306137212728899833", - "8459903833780294669971326" + "3058757838951909337041699", + "6100709128364422789226152" ], - "mAssetSupply": "117168615265519798103021759", - "LPTokenSupply": "26442754436550126145456772" + "mAssetSupply": "102112440761902129949352205", + "LPTokenSupply": "9062615642162081839604519" }, { - "type": "swap_fp_to_mp", - "inputQty": "9801210389327108898816", + "type": "redeem", "outputIndex": 1, - "outputQty": "9856893070392494480617", - "swapFee": "0", - "redemptionFee": "3945547874036627677", - "mpReserves": [ - "48216891488946414632562936", - "35438499443053522359710928", - "33508601491064125118245688" - ], - "fpReserves": [ - "18124471436452121159706049", - "8469705044169621778870142" - ], - "mAssetSupply": "117158755341382580570455652", - "LPTokenSupply": "26442754436550126145456772" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "5777288570616646991872", - "outputIndex": 2, - "outputQty": "5808737852113766119357", - "swapFee": "0", - "redemptionFee": "2325650835825638337", + "inputQty": "69166979413882123059200", + "outputQty0": "69600946736986128376673", + "outputQty": "67495055345325779644262", + "swapFee1": "41500187648329273835", + "swapFee2": "41760568042191677026", "mpReserves": [ - "48216891488946414632562936", - "35438499443053522359710928", - "33502792753212011352126331" + "47643331277891597939185930", + "10469185163506634023422520", + "44153419446910401971562610" ], "fpReserves": [ - "18118657309362557063863052", - "8475482332740238425862014" + "2989156892214923208665026", + "6100709128364422789226152" ], - "mAssetSupply": "117152943539943852300250992", - "LPTokenSupply": "26442754436550126145456772" + "mAssetSupply": "102042881575733186012652558", + "LPTokenSupply": "8993452812766964549472702" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "114621264657134483668992", - "outputQty0": "114656051281334755372469", - "outputQty": "113825299339890024991858", - "swapFee": "91016799386429212358", + "inputQty": "16177730444273775542272", + "outputQty0": "16674887785404394835658", + "outputQty": "16562000440542026122478", "mpReserves": [ - "48216891488946414632562936", - "35553120707710656843379920", - "33502792753212011352126331" + "47643331277891597939185930", + "10485362893950907798964792", + "44153419446910401971562610" ], "fpReserves": [ - "18233313360643891819235521", - "8361657033400348400870156" + "3005831780000327603500684", + "6100709128364422789226152" ], - "mAssetSupply": "117267599591225187055623461", - "LPTokenSupply": "26442763538230064788378007" + "mAssetSupply": "102059556463518590407488216", + "LPTokenSupply": "9010014813207506575595180" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "8062402011218795520", - "outputQty0": "8064815368377728179", - "outputQty": "8005396626723159663", - "swapFee": "6401610507283230", + "inputIndex": 2, + "inputQty": "5482900234965659680768", + "outputQty0": "5452736677014095414734", + "outputQty": "5479657652925293875151", + "swapFee": "4332536509024861439", "mpReserves": [ - "48216891488946414632562936", - "35553128770112668062175440", - "33502792753212011352126331" + "47643331277891597939185930", + "10485362893950907798964792", + "44158902347145367631243378" ], "fpReserves": [ - "18233321425459260196963700", - "8361649028003721677710493" + "3011284516677341698915418", + "6095229470711497495351001" ], - "mAssetSupply": "117267607656040555433351640", - "LPTokenSupply": "26442763538870225839106330" + "mAssetSupply": "102065009200195604502902950", + "LPTokenSupply": "9010015246461157478081323" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1754600968490622720", - "outputQty0": "1755126180924459047", - "outputQty": "1742195005934387355", - "swapFee": "1393166939518489", + "type": "mint", + "inputIndex": 0, + "inputQty": "1237926537601001472", + "outputQty0": "1230095318478107984", + "outputQty": "1221716317768452632", "mpReserves": [ - "48216891488946414632562936", - "35553130524713636552798160", - "33502792753212011352126331" + "47643332515818135540187402", + "10485362893950907798964792", + "44158902347145367631243378" ], "fpReserves": [ - "18233323180585441121422747", - "8361647285808715743323138" + "3011285746772660177023402", + "6095229470711497495351001" ], - "mAssetSupply": "117267609411166736357810687", - "LPTokenSupply": "26442763539009542533058178" + "mAssetSupply": "102065010430290922981010934", + "LPTokenSupply": "9010016468177475246533955" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "971045228306692906680320", - "outputQty0": "977974992812233184959650", - "outputQty": "977256061179999619247140", - "swapFee1": "582627136984015744008", - "swapFee2": "391189997124893273983", + "outputIndex": 0, + "inputQty": "12654657561045241954304", + "outputQty0": "12733599370601871335943", + "outputQty": "12806961381260857984947", + "swapFee1": "7592794536627145172", + "swapFee2": "7640159622361122801", "mpReserves": [ - "48216891488946414632562936", - "34575874463533636933551020", - "33502792753212011352126331" + "47630525554436874682202455", + "10485362893950907798964792", + "44158902347145367631243378" ], "fpReserves": [ - "17255348187773207936463097", - "8361647285808715743323138" + "2998552147402058305687459", + "6095229470711497495351001" ], - "mAssetSupply": "116290025608351628066125020", - "LPTokenSupply": "25471776573416548027952258" + "mAssetSupply": "102052284471079943470797792", + "LPTokenSupply": "8997362569895883667294168" }, { "type": "swap_fp_to_mp", - "inputQty": "42055353151510684893184", - "outputIndex": 0, - "outputQty": "42317487532131160618920", + "inputQty": "10936698361486331871232", + "outputIndex": 1, + "outputQty": "10543270404914546277995", "swapFee": "0", - "redemptionFee": "16921480725261260767", + "redemptionFee": "6524142202341701428", "mpReserves": [ - "48174574001414283471944016", - "34575874463533636933551020", - "33502792753212011352126331" + "47630525554436874682202455", + "10474819623545993252686797", + "44158902347145367631243378" ], "fpReserves": [ - "17213044485960054784543793", - "8403702638960226428216322" + "2987678577064822136639194", + "6106166169072983827222233" ], - "mAssetSupply": "116247738828019200175466483", - "LPTokenSupply": "25471776573416548027952258" + "mAssetSupply": "102041417424884909643450955", + "LPTokenSupply": "8997362569895883667294168" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "70535940472422023561216", - "outputQty0": "71030609647546316696840", - "outputQty": "70975683709903984012442", - "swapFee1": "42321564283453214136", - "swapFee2": "28412243859018526678", + "type": "swap_fp_to_mp", + "inputQty": "4669828306022829654016", + "outputIndex": 2, + "outputQty": "4665584225032070805381", + "swapFee": "0", + "redemptionFee": "2785600834240710733", "mpReserves": [ - "48174574001414283471944016", - "34504898779823732949538578", - "33502792753212011352126331" + "47630525554436874682202455", + "10474819623545993252686797", + "44154236762920335560437997" ], "fpReserves": [ - "17142013876312508467846953", - "8403702638960226428216322" + "2983035909007754285417047", + "6110835997379006656876249" ], - "mAssetSupply": "116176736630615512877296321", - "LPTokenSupply": "25401244865100554349712455" + "mAssetSupply": "102036777542428676032939541", + "LPTokenSupply": "8997362569895883667294168" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "76011117236867612672", - "outputQty0": "76039718848600699634", - "outputQty": "75539658572709843067", - "swapFee": "60372267438436339", + "type": "swap_fp_to_mp", + "inputQty": "244954030741133644005376", + "outputIndex": 1, + "outputQty": "235784120731674785978676", + "swapFee": "0", + "redemptionFee": "146006089807661409454", "mpReserves": [ - "48174574001414283471944016", - "34504974790940969817151250", - "33502792753212011352126331" + "47630525554436874682202455", + "10239035502814318466708121", + "44154236762920335560437997" ], "fpReserves": [ - "17142089916031357068546587", - "8403627099301653718373255" + "2739692425994985269659408", + "6355790028120140300881625" ], - "mAssetSupply": "116176812670334361477995955", - "LPTokenSupply": "25401244871137781093556088" + "mAssetSupply": "101793580065505714678591356", + "LPTokenSupply": "8997362569895883667294168" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "616892257205076287815680", - "outputQty0": "617109928957698813707234", - "outputQty": "612407035163720264866896", - "mpReserves": [ - "48174574001414283471944016", - "35121867048146046104966930", - "33502792753212011352126331" - ], - "fpReserves": [ - "17759199844989055882253821", - "8403627099301653718373255" - ], - "mAssetSupply": "116793922599292060291703189", - "LPTokenSupply": "26013651906301501358422984" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "14348624217939134906368", - "outputQty0": "14338450535227437174413", - "outputQty": "14238056379805372412896", - "swapFee": "11382559631885014329", + "inputIndex": 2, + "inputQty": "539197147093538432", + "outputQty0": "536143404748847782", + "outputQty": "533107605245289016", "mpReserves": [ - "48188922625632222606850384", - "35121867048146046104966930", - "33502792753212011352126331" + "47630525554436874682202455", + "10239035502814318466708121", + "44154237302117482653976429" ], "fpReserves": [ - "17773538295524283319428234", - "8389389042921848345960359" + "2739692962138390018507190", + "6355790028120140300881625" ], - "mAssetSupply": "116808261049827287728877602", - "LPTokenSupply": "26013653044557464546924416" + "mAssetSupply": "101793580601649119427439138", + "LPTokenSupply": "8997363103003488912583184" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "126930272995572598177792", - "outputQty0": "127836385852482869978090", - "outputQty": "127742473966454104063258", - "swapFee1": "76158163797343558906", - "swapFee2": "51134554340993147991", + "outputIndex": 0, + "inputQty": "29504263079000727879680", + "outputQty0": "29652928919229292260274", + "outputQty": "29828846848262797345001", + "swapFee1": "17702557847400436727", + "swapFee2": "17791757351537575356", "mpReserves": [ - "48188922625632222606850384", - "34994124574179592000903672", - "33502792753212011352126331" + "47600696707588611884857454", + "10239035502814318466708121", + "44154237302117482653976429" ], "fpReserves": [ - "17645701909671800449450144", - "8389389042921848345960359" + "2710040033219160726246916", + "6355790028120140300881625" ], - "mAssetSupply": "116680475798529145852047503", - "LPTokenSupply": "25886730387378271683102514" + "mAssetSupply": "101763945464487241672754220", + "LPTokenSupply": "8967860610180272924747176" }, { - "type": "swap_fp_to_mp", - "inputQty": "3191906173159192133632", - "outputIndex": 2, - "outputQty": "3208677590743108778205", - "swapFee": "0", - "redemptionFee": "1284640615912824847", + "type": "mint", + "inputIndex": 2, + "inputQty": "956384876443754430464", + "outputQty0": "950967077291498955223", + "outputQty": "945678093449499096377", "mpReserves": [ - "48188922625632222606850384", - "34994124574179592000903672", - "33499584075621268243348126" + "47600696707588611884857454", + "10239035502814318466708121", + "44155193686993926408406893" ], "fpReserves": [ - "17642490308132018387332200", - "8392580949095007538093991" + "2710991000296452225202139", + "6355790028120140300881625" ], - "mAssetSupply": "116677265481629979702754406", - "LPTokenSupply": "25886730387378271683102514" + "mAssetSupply": "101764896431564533171709443", + "LPTokenSupply": "8968806288273722423843553" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "95773059758289108992", - "outputQty0": "95822002434406916184", - "outputQty": "95087001402657999643", + "inputQty": "81849188731506835456", + "outputQty0": "81385514857362173509", + "outputQty": "81936585970553250930", + "swapFee": "64746179451855653", "mpReserves": [ - "48188922625632222606850384", - "34994124574179592000903672", - "33499679848681026532457118" + "47600696707588611884857454", + "10239035502814318466708121", + "44155275536182657915242349" ], "fpReserves": [ - "17642586130134452794248384", - "8392580949095007538093991" + "2711072385811309587375648", + "6355708091534169747630695" ], - "mAssetSupply": "116677361303632414109670590", - "LPTokenSupply": "25886825474379674341102157" + "mAssetSupply": "101764977817079390533882952", + "LPTokenSupply": "8968806294748340369029118" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "100541537837157120475136", - "outputQty0": "101256792689154314224964", - "outputQty": "101164167172268103436336", - "swapFee1": "60324922702294272285", - "swapFee2": "40502717075661725689", + "type": "swap_fp_to_mp", + "inputQty": "207907077258870456844288", + "outputIndex": 0, + "outputQty": "207394954984504531362533", + "swapFee": "0", + "redemptionFee": "123705973046840495401", "mpReserves": [ - "48188922625632222606850384", - "34994124574179592000903672", - "33398515681508758429020782" + "47393301752604107353494921", + "10239035502814318466708121", + "44155275536182657915242349" ], "fpReserves": [ - "17541329337445298480023420", - "8392580949095007538093991" + "2504895764066575428373676", + "6563615168793040204474983" ], - "mAssetSupply": "116576145013660335457171315", - "LPTokenSupply": "25786289969034787450054249" + "mAssetSupply": "101558924901307703215376381", + "LPTokenSupply": "8968806294748340369029118" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "231762133925778805489664", - "outputQty0": "231594959306347994472563", - "outputQty": "229950600513905462670126", - "swapFee": "183853841025680332979", + "type": "mint", + "inputIndex": 1, + "inputQty": "475995108252921425297408", + "outputQty0": "490549778722336625466000", + "outputQty": "487924543628470009617600", "mpReserves": [ - "48420684759558001412340048", - "34994124574179592000903672", - "33398515681508758429020782" + "47393301752604107353494921", + "10715030611067239892005529", + "44155275536182657915242349" ], "fpReserves": [ - "17772924296751646474495983", - "8162630348581102075423865" + "2995445542788912053839676", + "6563615168793040204474983" ], - "mAssetSupply": "116807739972966683451643878", - "LPTokenSupply": "25786308354418890018087546" + "mAssetSupply": "102049474680030039840842381", + "LPTokenSupply": "9456730838376810378646718" }, { "type": "mint", "inputIndex": 0, - "inputQty": "352684953292848704", - "outputQty0": "352428800327122925", - "outputQty": "349674651810941656", + "inputQty": "1958829196142688862208", + "outputQty0": "1946831517383879128485", + "outputQty": "1934797777889395934944", "mpReserves": [ - "48420685112242954705188752", - "34994124574179592000903672", - "33398515681508758429020782" + "47395260581800250042357129", + "10715030611067239892005529", + "44155275536182657915242349" ], "fpReserves": [ - "17772924649180446801618908", - "8162630348581102075423865" + "2997392374306295932968161", + "6563615168793040204474983" ], - "mAssetSupply": "116807740325395483778766803", - "LPTokenSupply": "25786308704093541829029202" + "mAssetSupply": "102051421511547423719970866", + "LPTokenSupply": "9458665636154699774581662" }, { "type": "mint", "inputIndex": 0, - "inputQty": "35817002322092572", - "outputQty0": "35790988647883450", - "outputQty": "35511290454305432", + "inputQty": "1558842638300753408", + "outputQty0": "1549294558910158463", + "outputQty": "1539713757678799946", "mpReserves": [ - "48420685148059957027281324", - "34994124574179592000903672", - "33398515681508758429020782" + "47395262140642888343110537", + "10715030611067239892005529", + "44155275536182657915242349" ], "fpReserves": [ - "17772924684971435449502358", - "8162630348581102075423865" + "2997393923600854843126624", + "6563615168793040204474983" ], - "mAssetSupply": "116807740361186472426650253", - "LPTokenSupply": "25786308739604832283334634" + "mAssetSupply": "102051423060841982630129329", + "LPTokenSupply": "9458667175868457453381608" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "1523445363593991826702336", - "outputQty0": "1534259763191019470566988", - "outputQty": "1532736690748744608401374", - "swapFee1": "914067218156395096021", - "swapFee2": "613703905276407788226", - "mpReserves": [ - "48420685148059957027281324", - "34994124574179592000903672", - "31865778990760013820619408" - ], - "fpReserves": [ - "16238664921780415978935370", - "8162630348581102075423865" - ], - "mAssetSupply": "115274094301900729363871491", - "LPTokenSupply": "24262954782732656096141900" + "inputQty": "2611771975886921281830912", + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "4739736197923871916032", - "outputIndex": 2, - "outputQty": "4760873436900033332370", - "swapFee": "0", - "redemptionFee": "1906373390786645526", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "88794417789017595576320", + "outputQty0": "88317054250206698316536", + "outputQty": "88811532022961317752265", + "swapFee": "70208042255065241382", "mpReserves": [ - "48420685148059957027281324", - "34994124574179592000903672", - "31861018117323113787287038" + "47395262140642888343110537", + "10715030611067239892005529", + "44244069953971675510818669" ], "fpReserves": [ - "16233898988303449365119482", - "8167370084779025947339897" + "3085710977851061541443160", + "6474803636770078886722718" ], - "mAssetSupply": "115269330274797153536701129", - "LPTokenSupply": "24262954782732656096141900" + "mAssetSupply": "102139740115092189328445865", + "LPTokenSupply": "9458674196672682959905746" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "36224610473510573178880", - "outputQty0": "36234915185847975111769", - "outputQty": "35962902036250581708312", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1566075232767906414592", + "outputQty0": "1575440243303987790563", + "outputQty": "1529698445693553038260", + "swapFee1": "939645139660743848", + "swapFee2": "945264145982392674", "mpReserves": [ - "48420685148059957027281324", - "35030349184653102574082552", - "31861018117323113787287038" + "47395262140642888343110537", + "10713500912621546338967269", + "44244069953971675510818669" ], "fpReserves": [ - "16270133903489297340231251", - "8167370084779025947339897" + "3084135537607757553652597", + "6474803636770078886722718" ], - "mAssetSupply": "115305565189983001511812898", - "LPTokenSupply": "24298917684768906677850212" + "mAssetSupply": "102138165620113031323047976", + "LPTokenSupply": "9457108215404429019565538" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "712342263285280778747904", - "outputQty0": "712792002491188117733468", - "outputQty": "707741860043253188987252", - "swapFee": "565904805834554620733", + "inputIndex": 0, + "inputQty": "289306489907938033664", + "outputQty0": "287535262835780436404", + "outputQty": "289072308982033797788", + "swapFee": "228524001356527587", "mpReserves": [ - "48420685148059957027281324", - "35030349184653102574082552", - "32573360380608394566034942" + "47395551447132796281144201", + "10713500912621546338967269", + "44244069953971675510818669" ], "fpReserves": [ - "16982925905980485457964719", - "7459628224735772758352645" + "3084423072870593334089001", + "6474514564461096852924930" ], - "mAssetSupply": "116018357192474189629546366", - "LPTokenSupply": "24298974275249490133312285" + "mAssetSupply": "102138453155375867103484380", + "LPTokenSupply": "9457108238256829155218296" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "80894392428650450386944", - "outputQty0": "80833430178361901977266", - "outputQty": "80182218801884238616908", + "type": "swap_fp_to_mp", + "inputQty": "4019168522031113699328", + "outputIndex": 0, + "outputQty": "4016751218239456341533", + "swapFee": "0", + "redemptionFee": "2396734514216595508", "mpReserves": [ - "48501579540488607477668268", - "35030349184653102574082552", - "32573360380608394566034942" + "47391534695914556824802668", + "10713500912621546338967269", + "44244069953971675510818669" ], "fpReserves": [ - "17063759336158847359941985", - "7459628224735772758352645" + "3080428515346899008241901", + "6478533732983127966624258" ], - "mAssetSupply": "116099190622652551531523632", - "LPTokenSupply": "24379156494051374371929193" + "mAssetSupply": "102134460994586686994232788", + "LPTokenSupply": "9457108238256829155218296" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "454336996786842718175232", - "outputQty0": "457731404650664159239082", - "outputQty": "457397731153228932021180", - "swapFee1": "272602198072105630905", - "swapFee2": "183092561860265663695", + "outputIndex": 2, + "inputQty": "685652254163496624717824", + "outputQty0": "688961205890966064766724", + "outputQty": "692229083720965579253192", + "swapFee1": "411391352498097974830", + "swapFee2": "413376723534579638860", "mpReserves": [ - "48501579540488607477668268", - "34572951453499873642061372", - "32573360380608394566034942" + "47391534695914556824802668", + "10713500912621546338967269", + "43551840870250709931565477" ], "fpReserves": [ - "16606027931508183200702903", - "7459628224735772758352645" + "2391467309455932943475177", + "6478533732983127966624258" ], - "mAssetSupply": "115641642310563747637948245", - "LPTokenSupply": "23924846757484338864317051" + "mAssetSupply": "101445913165419255509104924", + "LPTokenSupply": "8771497123228582340297955" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "135012175580114962087936", - "outputQty0": "135058268137654195269920", - "outputQty": "134005189212845609050880", - "swapFee": "107184087054712180554", + "inputQty": "223463681551160951439360", + "outputQty0": "229781791281630909283901", + "outputQty": "231613802241519522119769", + "swapFee": "182985041075219449884", "mpReserves": [ - "48501579540488607477668268", - "34707963629079988604149308", - "32573360380608394566034942" + "47391534695914556824802668", + "10936964594172707290406629", + "43551840870250709931565477" ], "fpReserves": [ - "16741086199645837395972823", - "7325623035522927149301765" + "2621249100737563852759078", + "6246919930741608444504489" ], - "mAssetSupply": "115776700578701401833218165", - "LPTokenSupply": "23924857475893044335535106" + "mAssetSupply": "101675694956700886418388825", + "LPTokenSupply": "8771515421732689862242943" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "220814491871091707871232", - "outputQty0": "222472711446776255971610", - "outputQty": "222307086434136244196412", - "swapFee1": "132488695122655024722", - "swapFee2": "88989084578710502388", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "321170542592356733943808", + "outputQty0": "319231369533462048424722", + "outputQty": "321109711434442849391112", + "swapFee": "253849126096570947982", "mpReserves": [ - "48501579540488607477668268", - "34485656542645852359952896", - "32573360380608394566034942" + "47712705238506913558746476", + "10936964594172707290406629", + "43551840870250709931565477" ], "fpReserves": [ - "16518613488199061140001213", - "7325623035522927149301765" + "2940480470271025901183800", + "5925810219307165595113377" ], - "mAssetSupply": "115554316856339204287748943", - "LPTokenSupply": "23704056232891464893166346" + "mAssetSupply": "101994926326234348466813547", + "LPTokenSupply": "8771540806645299519337741" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "44045207489766359040", - "outputQty0": "44374982358179997298", - "outputQty": "44391471001466419918", - "swapFee1": "26427124493859815", - "swapFee2": "17749992943271998", + "type": "mint", + "inputIndex": 1, + "inputQty": "49261604663388088", + "outputQty0": "50635991660015688", + "outputQty": "50284568989321932", "mpReserves": [ - "48501535149017606011248350", - "34485656542645852359952896", - "32573360380608394566034942" + "47712705238506913558746476", + "10936964643434311953794717", + "43551840870250709931565477" ], "fpReserves": [ - "16518569113216702960003915", - "7325623035522927149301765" + "2940480520907017561199488", + "5925810219307165595113377" ], - "mAssetSupply": "115554272499106839051023643", - "LPTokenSupply": "23704012190326687576193287" + "mAssetSupply": "101994926376870340126829235", + "LPTokenSupply": "8771540856929868508659673" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "21600584172613740265472", - "outputQty0": "21583913854048818797390", - "outputQty": "21415104919410515871333", - "swapFee": "17128481046911796046", + "inputIndex": 1, + "inputQty": "8719866016966512738304", + "outputQty0": "8962954712578569881013", + "outputQty": "9006392110614810233806", + "swapFee": "7120519137828250037", "mpReserves": [ - "48523135733190219751513822", - "34485656542645852359952896", - "32573360380608394566034942" + "47712705238506913558746476", + "10945684509451278466533021", + "43551840870250709931565477" ], "fpReserves": [ - "16540153027070751778801305", - "7304207930603516633430432" + "2949443475619596131080501", + "5916803827196550784879571" ], - "mAssetSupply": "115575856412960887869821033", - "LPTokenSupply": "23704013903174792267372891" + "mAssetSupply": "102003889331582918696710248", + "LPTokenSupply": "8771541568981782291484676" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "14582840326300003991552", - "outputQty0": "14692259983335089683745", - "outputQty": "14681179486814264292783", - "swapFee1": "8749704195780002394", - "swapFee2": "5876903993334035873", + "type": "mint", + "inputIndex": 0, + "inputQty": "121687893718930817024", + "outputQty0": "120950212619315623643", + "outputQty": "120106600801562792968", "mpReserves": [ - "48523135733190219751513822", - "34470975363159038095660113", - "32573360380608394566034942" + "47712826926400632489563500", + "10945684509451278466533021", + "43551840870250709931565477" ], "fpReserves": [ - "16525460767087416689117560", - "7304207930603516633430432" + "2949564425832215446704144", + "5916803827196550784879571" ], - "mAssetSupply": "115561170029881546114173161", - "LPTokenSupply": "23689431937818911841381578" + "mAssetSupply": "102004010281795538012333891", + "LPTokenSupply": "8771661675582583854277644" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "78278425547290198016", - "outputQty0": "78323971518323586838", - "outputQty": "77710132487610671762", - "swapFee": "62155302377817814", + "inputIndex": 0, + "inputQty": "254090296654310048", + "outputQty0": "252549979433107287", + "outputQty": "253767330011272928", + "swapFee": "200630750610878", "mpReserves": [ - "48523135733190219751513822", - "34470975363159038095660113", - "32573438659033941856232958" + "47712827180490929143873548", + "10945684509451278466533021", + "43551840870250709931565477" ], "fpReserves": [ - "16525539091058935012704398", - "7304130220471029022758670" + "2949564678382194879811431", + "5916803573429220773606643" ], - "mAssetSupply": "115561248353853064437759999", - "LPTokenSupply": "23689431944034442079163359" + "mAssetSupply": "102004010534345517445441178", + "LPTokenSupply": "8771661675602646929338731" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2413256459712436633600", - "outputQty0": "2431359739473285944214", - "outputQty": "2429524469321153357309", - "swapFee1": "1447953875827461980", - "swapFee2": "972543895789314377", + "type": "mint", + "inputIndex": 1, + "inputQty": "277300426663332347904", + "outputQty0": "285024567295943397043", + "outputQty": "283036413416037996651", "mpReserves": [ - "48523135733190219751513822", - "34468545838689716942302804", - "32573438659033941856232958" + "47712827180490929143873548", + "10945961809877941798880925", + "43551840870250709931565477" ], "fpReserves": [ - "16523107731319461726760184", - "7304130220471029022758670" + "2949849702949490823208474", + "5916803573429220773606643" ], - "mAssetSupply": "115558817966657486941130162", - "LPTokenSupply": "23687018832370117225275957" + "mAssetSupply": "102004295558912813388838221", + "LPTokenSupply": "8771944712016062967335382" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "27313962337888196624384", - "outputQty0": "27518761006728126564718", - "outputQty": "27491726741691410819555", - "swapFee1": "16388377402732917974", - "swapFee2": "11007504402691250625", + "type": "mint", + "inputIndex": 0, + "inputQty": "497477831260175926820864", + "outputQty0": "494439286822400525364026", + "outputQty": "490723366298581606579937", "mpReserves": [ - "48523135733190219751513822", - "34468545838689716942302804", - "32545946932292250445413403" + "48210305011751105070694412", + "10945961809877941798880925", + "43551840870250709931565477" ], "fpReserves": [ - "16495588970312733600195466", - "7304130220471029022758670" + "3444288989771891348572500", + "5916803573429220773606643" ], - "mAssetSupply": "115531310213155161505816069", - "LPTokenSupply": "23659706508869969301943370" + "mAssetSupply": "102498734845735213914202247", + "LPTokenSupply": "9262668078314644573915319" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "18922065831616250380288", + "outputIndex": 1, + "outputQty": "18316903190615823776728", + "swapFee": "0", + "redemptionFee": "11307038089145676692", + "mpReserves": [ + "48210305011751105070694412", + "10927644906687325975104197", + "43551840870250709931565477" + ], + "fpReserves": [ + "3425443926289981887417582", + "5935725639260837023986931" + ], + "mAssetSupply": "102479901089291393598724021", + "LPTokenSupply": "9262668078314644573915319" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "69480018001543376666624", - "outputQty0": "69504440184733319956837", - "outputQty": "68955121395163125790730", - "swapFee": "55156309782327052495", + "inputIndex": 2, + "inputQty": "6310763702854259572736", + "outputQty0": "6278662426762110488586", + "outputQty": "6299443134532322450020", + "swapFee": "4983034913880536996", "mpReserves": [ - "48523135733190219751513822", - "34538025856691260318969428", - "32545946932292250445413403" + "48210305011751105070694412", + "10927644906687325975104197", + "43558151633953564191138213" ], "fpReserves": [ - "16565093410497466920152303", - "7235175099075865896967940" + "3431722588716743997906168", + "5929426196126304701536911" ], - "mAssetSupply": "115600814653339894825772906", - "LPTokenSupply": "23659712024500947534648619" + "mAssetSupply": "102486179751718155709212607", + "LPTokenSupply": "9262668576618135961969018" }, { - "type": "mint", + "type": "swap_fp_to_mp", + "inputQty": "3557562405601700546084864", + "outputIndex": 1, + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "11375299163936194560", - "outputQty0": "11379267241424648157", - "outputQty": "11287182268654904045", + "inputQty": "1435243510717922267889664", + "outputQty0": "1471102732032993753792051", + "outputQty": "1472228447025098347627632", + "swapFee": "1166419572088289277990", "mpReserves": [ - "48523135733190219751513822", - "34538037231990424255163988", - "32545946932292250445413403" + "48210305011751105070694412", + "12362888417405248242993861", + "43558151633953564191138213" ], "fpReserves": [ - "16565104789764708344800460", - "7235175099075865896967940" + "4902825320749737751698219", + "4457197749101206353909279" ], - "mAssetSupply": "115600826032607136250421063", - "LPTokenSupply": "23659723311683216189552664" + "mAssetSupply": "103957282483751149463004658", + "LPTokenSupply": "9262785218575344790896817" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "559623564420720348889088", - "outputQty0": "559938243607932157520984", - "outputQty": "555368694151496487892429", + "inputIndex": 1, + "inputQty": "70156021059381133312", + "outputQty0": "71704683403454740145", + "outputQty": "70938363480600729244", "mpReserves": [ - "48523135733190219751513822", - "34538037231990424255163988", - "33105570496712970794302491" + "48210305011751105070694412", + "12362958573426307624127173", + "43558151633953564191138213" ], "fpReserves": [ - "17125043033372640502321444", - "7235175099075865896967940" + "4902897025433141206438364", + "4457197749101206353909279" ], - "mAssetSupply": "116160764276215068407942047", - "LPTokenSupply": "24215092005834712677445093" + "mAssetSupply": "103957354188434552917744803", + "LPTokenSupply": "9262856156938825391626061" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "14335531733990716211200", - "outputQty0": "14324726646937072170219", - "outputQty": "14203451555459313267311", - "swapFee": "11365457717906841007", + "type": "swap_fp_to_mp", + "inputQty": "1630367757077797", + "outputIndex": 0, + "outputQty": "1639191911613072", + "swapFee": "0", + "redemptionFee": "978840586839", "mpReserves": [ - "48537471264924210467725022", - "34538037231990424255163988", - "33105570496712970794302491" + "48210305010111913159081340", + "12362958573426307624127173", + "43558151633953564191138213" ], "fpReserves": [ - "17139367760019577574491663", - "7220971647520406583700629" + "4902897023801740228372635", + "4457197750731574110987076" ], - "mAssetSupply": "116175089002862005480112266", - "LPTokenSupply": "24215093142380484468129193" + "mAssetSupply": "103957354186804130780265913", + "LPTokenSupply": "9262856156938825391626061" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "170168979380823325147136", - "outputQty0": "170259402253642706845383", - "outputQty": "168852732364079861161505", + "type": "redeem", + "outputIndex": 2, + "inputQty": "12122856302978441216", + "outputQty0": "12246462816236909777", + "outputQty": "12292463029209730515", + "swapFee1": "7273713781787064", + "swapFee2": "7347877689742145", "mpReserves": [ - "48537471264924210467725022", - "34538037231990424255163988", - "33275739476093794119449627" + "48210305010111913159081340", + "12362958573426307624127173", + "43558139341490534981407698" ], "fpReserves": [ - "17309627162273220281337046", - "7220971647520406583700629" + "4902884777338923991462858", + "4457197750731574110987076" ], - "mAssetSupply": "116345348405115648186957649", - "LPTokenSupply": "24383945874744564329290698" + "mAssetSupply": "103957341947689192233098281", + "LPTokenSupply": "9262844034809893791363551" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "324660372637100539904", - "outputQty0": "324417325703036646607", - "outputQty": "321619020090747487934", - "swapFee": "257384227062842891", + "type": "redeem", + "outputIndex": 1, + "inputQty": "273356786803706674806784", + "outputQty0": "276118533822882622003515", + "outputQty": "269862073544551080362004", + "swapFee1": "164014072082224004884", + "swapFee2": "165671120293729573202", "mpReserves": [ - "48537795925296847568264926", - "34538037231990424255163988", - "33275739476093794119449627" + "48210305010111913159081340", + "12093096499881756543765169", + "43558139341490534981407698" ], "fpReserves": [ - "17309951579598923317983653", - "7220650028500315836212695" + "4626766243516041369459343", + "4457197750731574110987076" ], - "mAssetSupply": "116345672822441351223604256", - "LPTokenSupply": "24383945900482987035574987" + "mAssetSupply": "103681389084986603340667968", + "LPTokenSupply": "8989503649413395338957255" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "7050307048019677151232", - "outputQty0": "7054000567388890871645", - "outputQty": "6995566888867280158550", + "inputIndex": 0, + "inputQty": "326579747402782277632", + "outputQty0": "324787157339972973505", + "outputQty": "321370776300375425143", "mpReserves": [ - "48537795925296847568264926", - "34538037231990424255163988", - "33282789783141813796600859" + "48210631589859315941358972", + "12093096499881756543765169", + "43558139341490534981407698" ], "fpReserves": [ - "17317005580166312208855298", - "7220650028500315836212695" + "4627091030673381342432848", + "4457197750731574110987076" ], - "mAssetSupply": "116352726823008740114475901", - "LPTokenSupply": "24390941467371854315733537" + "mAssetSupply": "103681713872143943313641473", + "LPTokenSupply": "8989825020189695714382398" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "205561361959144443084800", - "outputQty0": "207148955976200284499832", - "outputQty": "206986509271127469443457", - "swapFee1": "123336817175486665850", - "swapFee2": "82859582390480113799", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "14668219118907092992", + "outputQty0": "15006710997888341928", + "outputQty": "14990988889166971288", + "swapFee": "11879084939505166", "mpReserves": [ - "48537795925296847568264926", - "34331050722719296785720531", - "33282789783141813796600859" + "48210631589859315941358972", + "12093111168100875450858161", + "43558139341490534981407698" ], "fpReserves": [ - "17109856624190111924355466", - "7220650028500315836212695" + "4627106037384379230774776", + "4457182759742684944015788" ], - "mAssetSupply": "116145660726614930310089868", - "LPTokenSupply": "24185392439094427421315322" + "mAssetSupply": "103681728878854941201983401", + "LPTokenSupply": "8989825021377604208332914" }, { - "type": "swap_fp_to_mp", - "inputQty": "944655861064796586639360", - "outputIndex": 1, - "outputQty": "950045390636166819906625", - "swapFee": "0", - "redemptionFee": "380333833247499045470", + "type": "mint", + "inputIndex": 0, + "inputQty": "26745296920169232203776", + "outputQty0": "26598430454437423384824", + "outputQty": "26318396882739783527315", "mpReserves": [ - "48537795925296847568264926", - "33381005332083129965813906", - "33282789783141813796600859" + "48237376886779485173562748", + "12093111168100875450858161", + "43558139341490534981407698" ], "fpReserves": [ - "16159022041071364310680059", - "8165305889565112422852055" + "4653704467838816654159600", + "4457182759742684944015788" ], - "mAssetSupply": "115195206477329430195459931", - "LPTokenSupply": "24185392439094427421315322" + "mAssetSupply": "103708327309309378625368225", + "LPTokenSupply": "9016143418260343991860229" }, { - "type": "swap_fp_to_mp", - "inputQty": "66781295307166891114496", + "type": "redeem", "outputIndex": 0, - "outputQty": "67168033635491771002048", - "swapFee": "0", - "redemptionFee": "26856939480578287450", + "inputQty": "2573934254942073", + "outputQty0": "2599784886907461", + "outputQty": "2612577470693568", + "swapFee1": "1544360552965", + "swapFee2": "1559870932144", "mpReserves": [ - "48470627891661355797262878", - "33381005332083129965813906", - "33282789783141813796600859" + "48237376884166907702869180", + "12093111168100875450858161", + "43558139341490534981407698" ], "fpReserves": [ - "16091879692369918592054922", - "8232087184872279313966551" + "4653704465239031767252139", + "4457182759742684944015788" ], - "mAssetSupply": "115128090985567465055122244", - "LPTokenSupply": "24185392439094427421315322" + "mAssetSupply": "103708327306711153609392908", + "LPTokenSupply": "9016143415686564172973452" }, { "type": "swap_fp_to_mp", - "inputQty": "23981160031236583424", + "inputQty": "28167178525852668264448", "outputIndex": 2, - "outputQty": "24088032280592156863", + "outputQty": "28283420201829281350557", "swapFee": "0", - "redemptionFee": "9643682257350526", + "redemptionFee": "16904446717946327079", "mpReserves": [ - "48470627891661355797262878", - "33381005332083129965813906", - "33282765695109533204443996" + "48237376884166907702869180", + "12093111168100875450858161", + "43529855921288705700057141" ], "fpReserves": [ - "16091855583164275215739445", - "8232111166032310550549975" + "4625530387375787888787096", + "4485349938268537612280236" ], - "mAssetSupply": "115128066886005503936157293", - "LPTokenSupply": "24185392439094427421315322" + "mAssetSupply": "103680170133294627677254944", + "LPTokenSupply": "9016143415686564172973452" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "620243205426524572352512", - "outputQty0": "620517041339123643990066", - "outputQty": "615825730513966934409686", + "inputQty": "55401151203380813824", + "outputQty0": "56679634406814308807", + "outputQty": "56622740354443865734", + "swapFee": "44867708922463941", "mpReserves": [ - "48470627891661355797262878", - "34001248537509654538166418", - "33282765695109533204443996" + "48237376884166907702869180", + "12093166569252078831671985", + "43529855921288705700057141" ], "fpReserves": [ - "16712372624503398859729511", - "8232111166032310550549975" + "4625587067010194703095903", + "4485293315528183168414502" ], - "mAssetSupply": "115748583927344627580147359", - "LPTokenSupply": "24801218169608394355725008" + "mAssetSupply": "103680226812929034491563751", + "LPTokenSupply": "9016143420173335065219846" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "18315982134531925737472", - "outputQty0": "18302024451991867209835", - "outputQty": "18182307811590340157337", - "swapFee": "14529876952501701029", + "inputIndex": 2, + "inputQty": "67470308219927897571328", + "outputQty0": "67168905371971128245481", + "outputQty": "67094910690001358818186", + "swapFee": "53169781105421117473", "mpReserves": [ - "48488943873795887723000350", - "34001248537509654538166418", - "33282765695109533204443996" + "48237376884166907702869180", + "12093166569252078831671985", + "43597326229508633597628469" ], "fpReserves": [ - "16730674648955390726939346", - "8213928858220720210392638" + "4692755972382165831341384", + "4418198404838181809596316" ], - "mAssetSupply": "115766885951796619447357194", - "LPTokenSupply": "24801219622596089605895110" + "mAssetSupply": "103747395718301005619809232", + "LPTokenSupply": "9016148737151445607331593" }, { - "type": "swap_fp_to_mp", - "inputQty": "682000269896299229216768", - "outputIndex": 0, - "outputQty": "685739567766586050019463", - "swapFee": "0", - "redemptionFee": "274200432289210442127", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "25954747592690592907264", + "outputQty0": "26553252858725374457170", + "outputQty": "26520373760459075069502", + "swapFee": "21017291092719285746", "mpReserves": [ - "47803204306029301672980887", - "34001248537509654538166418", - "33282765695109533204443996" + "48237376884166907702869180", + "12119121316844769424579249", + "43597326229508633597628469" ], "fpReserves": [ - "16045173568232364621621055", - "8895929128117019439609406" + "4719309225240891205798554", + "4391678031077722734526814" ], - "mAssetSupply": "115081659071505882552481030", - "LPTokenSupply": "24801219622596089605895110" + "mAssetSupply": "103773948971159730994266402", + "LPTokenSupply": "9016150838880554879260167" }, { - "type": "swap_fp_to_mp", - "inputQty": "40122735175639064576", - "outputIndex": 0, - "outputQty": "40317111966092389706", - "swapFee": "0", - "redemptionFee": "16121475776346073", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "42978075302873358336", + "outputQty0": "42786356158685678514", + "outputQty": "42731714466381000271", + "swapFee": "33864996684791960", "mpReserves": [ - "47803163988917335580591181", - "34001248537509654538166418", - "33282765695109533204443996" + "48237376884166907702869180", + "12119121316844769424579249", + "43597369207583936470986805" ], "fpReserves": [ - "16045133264542923756436933", - "8895969250852195078673982" + "4719352011597049891477068", + "4391635299363256353526543" ], - "mAssetSupply": "115081618783937917463642981", - "LPTokenSupply": "24801219622596089605895110" + "mAssetSupply": "103773991757515889679944916", + "LPTokenSupply": "9016150842267054547739363" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "10208596138841365020672", - "outputQty0": "10201113120168102873652", - "outputQty": "10147100523350720761439", - "swapFee": "8102077763061812171", + "inputIndex": 1, + "inputQty": "15077187366953932800", + "outputQty0": "15424112456843818106", + "outputQty": "15404413285289498086", + "swapFee": "12208038628716204", "mpReserves": [ - "47813372585056176945611853", - "34001248537509654538166418", - "33282765695109533204443996" + "48237376884166907702869180", + "12119136394032136378512049", + "43597369207583936470986805" ], "fpReserves": [ - "16055334377663091859310585", - "8885822150328844357912543" + "4719367435709506735295174", + "4391619894949971064028457" ], - "mAssetSupply": "115091819897058085566516633", - "LPTokenSupply": "24801220432803865912076327" + "mAssetSupply": "103774007181628346523763022", + "LPTokenSupply": "9016150843487858410610983" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "190863456474364500770816", - "outputQty0": "192130590372745315113702", - "outputQty": "191959877614113792027326", - "swapFee1": "114518073884618700462", - "swapFee2": "76852236149098126045", + "type": "swap_fp_to_mp", + "inputQty": "332414177409718943744", + "outputIndex": 1, + "outputQty": "324897242965126158251", + "swapFee": "0", + "redemptionFee": "199543705758686450", "mpReserves": [ - "47813372585056176945611853", - "34001248537509654538166418", - "33090805817495419412416670" + "48237376884166907702869180", + "12118811496789171252353798", + "43597369207583936470986805" ], "fpReserves": [ - "15863203787290346544196883", - "8885822150328844357912543" + "4719034862866575591211276", + "4391952309127380782972201" ], - "mAssetSupply": "114899766158921489349528976", - "LPTokenSupply": "24610368428136889873175557" + "mAssetSupply": "103773674808329121138365574", + "LPTokenSupply": "9016150843487858410610983" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "57109377279072755777536", - "outputQty0": "57067085405462847770994", - "outputQty": "56657301862207706084927", + "type": "redeem", + "outputIndex": 0, + "inputQty": "508436785902250818011136", + "outputQty0": "513499851015310908702511", + "outputQty": "515995690314841799041606", + "swapFee1": "305062071541350490806", + "swapFee2": "308099910609186545221", "mpReserves": [ - "47870481962335249701389389", - "34001248537509654538166418", - "33090805817495419412416670" + "47721381193852065903827574", + "12118811496789171252353798", + "43597369207583936470986805" ], "fpReserves": [ - "15920270872695809391967877", - "8885822150328844357912543" + "4205535011851264682508765", + "4391952309127380782972201" ], - "mAssetSupply": "114956833244326952197299970", - "LPTokenSupply": "24667025729999097579260484" + "mAssetSupply": "103260483057224419416208284", + "LPTokenSupply": "8507744563792761727648927" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "10061639799567269494784", - "outputQty0": "10065571888480897464361", - "outputQty": "10012927763851847680943", - "swapFee": "7994576305090504128", + "type": "mint", + "inputIndex": 0, + "inputQty": "81918993101482457300992", + "outputQty0": "81476900125051295347774", + "outputQty": "80635641548300566933991", "mpReserves": [ - "47870481962335249701389389", - "34011310177309221807661202", - "33090805817495419412416670" + "47803300186953548361128566", + "12118811496789171252353798", + "43597369207583936470986805" ], "fpReserves": [ - "15930336444584290289432238", - "8875809222564992510231600" + "4287011911976315977856539", + "4391952309127380782972201" ], - "mAssetSupply": "114966898816215433094764331", - "LPTokenSupply": "24667026529456728088310896" + "mAssetSupply": "103341959957349470711556058", + "LPTokenSupply": "8588380205341062294582918" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "4995663645336810396057600", - "outputQty0": "5025889483285828275656377", - "outputQty": "5020808887104235436045761", - "swapFee1": "2997398187202086237634", - "swapFee2": "2010355793314331310262", + "type": "mint", + "inputIndex": 2, + "inputQty": "209168541293334627352576", + "outputQty0": "208227437360259047558831", + "outputQty": "206054451813214708807717", "mpReserves": [ - "47870481962335249701389389", - "28990501290204986371615441", - "33090805817495419412416670" + "47803300186953548361128566", + "12118811496789171252353798", + "43806537748877271098339381" ], "fpReserves": [ - "10904446961298462013775861", - "8875809222564992510231600" + "4495239349336575025415370", + "4391952309127380782972201" ], - "mAssetSupply": "109943019688722919150418216", - "LPTokenSupply": "19671662623938637900877059" + "mAssetSupply": "103550187394709729759114889", + "LPTokenSupply": "8794434657154277003390635" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "13559991810158350336", - "outputQty0": "13635154057214510646", - "outputQty": "13617978731066157097", - "swapFee1": "8135995086095010", - "swapFee2": "5454061622885804", + "type": "swap_fp_to_mp", + "inputQty": "659766097320045051904", + "outputIndex": 0, + "outputQty": "663047915913743467505", + "swapFee": "0", + "redemptionFee": "395920226001806035", "mpReserves": [ - "47870481962335249701389389", - "28990487672226255305458344", - "33090805817495419412416670" + "47802637139037634617661061", + "12118811496789171252353798", + "43806537748877271098339381" ], "fpReserves": [ - "10904433326144404799265215", - "8875809222564992510231600" + "4494579482293238682023366", + "4392612075224700828024105" ], - "mAssetSupply": "109943006059022923558793374", - "LPTokenSupply": "19671649064760427251136224" + "mAssetSupply": "103549527923586619417528920", + "LPTokenSupply": "8794434657154277003390635" }, { - "type": "swap_fp_to_mp", - "inputQty": "166871783137512849408", - "outputIndex": 0, - "outputQty": "167189372213204000067", - "swapFee": "0", - "redemptionFee": "66841361598269314", + "type": "redeem", + "outputIndex": 2, + "inputQty": "652397438788164911104", + "outputQty0": "658932204078080727106", + "outputQty": "661525780782359904458", + "swapFee1": "391438463272898946", + "swapFee2": "395359322446848436", "mpReserves": [ - "47870314772963036497389322", - "28990487672226255305458344", - "33090805817495419412416670" + "47802637139037634617661061", + "12118811496789171252353798", + "43805876223096488738434923" ], "fpReserves": [ - "10904266222740409125979259", - "8875976094348130023081008" + "4493920550089160601296260", + "4392612075224700828024105" ], - "mAssetSupply": "109942839022460289483776732", - "LPTokenSupply": "19671649064760427251136224" + "mAssetSupply": "103548869386741863783650250", + "LPTokenSupply": "8793782298859335165769425" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "393984707829837332480", - "outputQty0": "396168476678104613766", - "outputQty": "395669442240778099310", - "swapFee1": "236390824697902399", - "swapFee2": "158467390671241845", + "type": "mint", + "inputIndex": 0, + "inputQty": "630017414255826829312", + "outputQty0": "626618786984050239165", + "outputQty": "620032220226757818716", "mpReserves": [ - "47870314772963036497389322", - "28990092002784014527359034", - "33090805817495419412416670" + "47803267156451890444490373", + "12118811496789171252353798", + "43805876223096488738434923" ], "fpReserves": [ - "10903870054263731021365493", - "8875976094348130023081008" + "4494547168876144651535425", + "4392612075224700828024105" ], - "mAssetSupply": "109942443012451002050404811", - "LPTokenSupply": "19671255103691679883593983" + "mAssetSupply": "103549496005528847833889415", + "LPTokenSupply": "8794402331079561923588141" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "414557136852670283776", - "outputQty0": "414682791278675475318", - "outputQty": "412149523672443284074", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "836615116158477218611200", + "outputQty0": "854516632179833091591836", + "outputQty": "852565785959922421653731", + "swapFee": "676233127257931394935", "mpReserves": [ - "47870314772963036497389322", - "28990092002784014527359034", - "33091220374632272082700446" + "47803267156451890444490373", + "12955426612947648470964998", + "43805876223096488738434923" ], "fpReserves": [ - "10904284737055009696840811", - "8875976094348130023081008" + "5349063801055977743127261", + "3540046289264778406370374" ], - "mAssetSupply": "109942857695242280725880129", - "LPTokenSupply": "19671667253215352326878057" + "mAssetSupply": "104404012637708680925481251", + "LPTokenSupply": "8794469954392287716727634" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "91846666289259392", - "outputQty0": "91874503951217262", - "outputQty": "91313243718110529", + "inputIndex": 1, + "inputQty": "13951455643223027875840", + "outputQty0": "14230235555133992754086", + "outputQty": "14062229347124805168012", "mpReserves": [ - "47870314772963036497389322", - "28990092002784014527359034", - "33091220466478938371959838" + "47803267156451890444490373", + "12969378068590871498840838", + "43805876223096488738434923" ], "fpReserves": [ - "10904284828929513648058073", - "8875976094348130023081008" + "5363294036611111735881347", + "3540046289264778406370374" ], - "mAssetSupply": "109942857787116784677097391", - "LPTokenSupply": "19671667344528596044988586" + "mAssetSupply": "104418242873263814918235337", + "LPTokenSupply": "8808532183739412521895646" }, { - "type": "swap_fp_to_mp", - "inputQty": "154495288826367574016", + "type": "redeem", "outputIndex": 1, - "outputQty": "154514809457233282146", - "swapFee": "0", - "redemptionFee": "61883878915854779", + "inputQty": "311176269608921711247360", + "outputQty0": "314676185458072485342833", + "outputQty": "308184607096755857288464", + "swapFee1": "186705761765353026748", + "swapFee2": "188805711274843491205", "mpReserves": [ - "47870314772963036497389322", - "28989937487974557294076888", - "33091220466478938371959838" + "47803267156451890444490373", + "12661193461494115641552374", + "43805876223096488738434923" ], "fpReserves": [ - "10904130119232224011109342", - "8876130589636956390655024" + "5048617851153039250538514", + "3540046289264778406370374" ], - "mAssetSupply": "109942703139303373956003439", - "LPTokenSupply": "19671667344528596044988586" + "mAssetSupply": "104103755493517017276383709", + "LPTokenSupply": "8497374584706667345950960" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "13020983134475294720", - "outputQty0": "13009082002640509104", - "outputQty": "12980661494889768271", - "swapFee": "10343688746440040", + "inputIndex": 1, + "inputQty": "6605317767296618332160", + "outputQty0": "6743651668223251359778", + "outputQty": "6721512383968021007369", + "swapFee": "5332119429074178177", "mpReserves": [ - "47870327793946170972684042", - "28989937487974557294076888", - "33091220466478938371959838" + "47803267156451890444490373", + "12667798779261412259884534", + "43805876223096488738434923" ], "fpReserves": [ - "10904143128314226651618446", - "8876117608975461500886753" + "5055361502821262501898292", + "3533324776880810385363005" ], - "mAssetSupply": "109942716148385376596512543", - "LPTokenSupply": "19671667345562964919632590" + "mAssetSupply": "104110499145185240527743487", + "LPTokenSupply": "8497375117918610253368777" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "79106415536155018657792", - "outputQty0": "79174158727316383211282", - "outputQty": "78996721748857688447683", - "swapFee": "62951679544762017089", + "inputIndex": 0, + "inputQty": "36752909656036795744256", + "outputQty0": "36564576994775729734600", + "outputQty": "36441601206047134264043", + "swapFee": "28910561304019781555", "mpReserves": [ - "47870327793946170972684042", - "29069043903510712312734680", - "33091220466478938371959838" + "47840020066107927240234629", + "12667798779261412259884534", + "43805876223096488738434923" ], "fpReserves": [ - "10983317287041543034829728", - "8797120887226603812439070" + "5091926079816038231632892", + "3496883175674763251098962" ], - "mAssetSupply": "110021890307112692979723825", - "LPTokenSupply": "19671673640730919395834298" + "mAssetSupply": "104147063722180016257478087", + "LPTokenSupply": "8497378008974740655346932" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "202444575466318176", - "outputQty0": "203577571455930063", - "outputQty": "203433813396963389", - "swapFee1": "121466745279790", - "swapFee2": "81431028582372", + "outputIndex": 0, + "inputQty": "232168751079637703983104", + "outputQty0": "234760729031520865210247", + "outputQty": "235824385533526202879315", + "swapFee1": "139301250647782622389", + "swapFee2": "140856437418912519126", "mpReserves": [ - "47870327793946170972684042", - "29069043903510712312734680", - "33091220263045124974996449" + "47604195680574401037355314", + "12667798779261412259884534", + "43805876223096488738434923" ], "fpReserves": [ - "10983317083463971578899665", - "8797120887226603812439070" + "4857165350784517366422645", + "3496883175674763251098962" ], - "mAssetSupply": "110021890103616552552376134", - "LPTokenSupply": "19671673438298490604044101" + "mAssetSupply": "103912443849585914304786966", + "LPTokenSupply": "8265223188020167729626066" }, { "type": "swap_fp_to_mp", - "inputQty": "284456577332250181632", - "outputIndex": 1, - "outputQty": "284527171203764037296", + "inputQty": "134256925608444679946240", + "outputIndex": 0, + "outputQty": "135135128375915866336028", "swapFee": "0", - "redemptionFee": "113953410128900289", + "redemptionFee": "80717886025311859518", "mpReserves": [ - "47870327793946170972684042", - "29068759376339508548697384", - "33091220263045124974996449" + "47469060552198485171019286", + "12667798779261412259884534", + "43805876223096488738434923" ], "fpReserves": [ - "10983032199938649328175807", - "8797405343803936062620702" + "4722635540742330933891321", + "3631140101283207931045202" ], - "mAssetSupply": "110021605334044640430552565", - "LPTokenSupply": "19671673438298490604044101" + "mAssetSupply": "103777994757429753184115160", + "LPTokenSupply": "8265223188020167729626066" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "3686416960752777", - "outputQty0": "3689557633578802", - "outputQty": "3681081715169161", - "swapFee": "2933458341447", + "inputQty": "15160290735799082", + "outputQty0": "15475214027945783", + "outputQty": "15435169320261586", + "swapFee": "12239402545688", "mpReserves": [ - "47870327793946170972684042", - "29068759380025925509450161", - "33091220263045124974996449" + "47469060552198485171019286", + "12667798794421702995683616", + "43805876223096488738434923" ], "fpReserves": [ - "10983032203628206961754609", - "8797405340122854347451541" + "4722635556217544961837104", + "3631140085848038610783616" ], - "mAssetSupply": "110021605337734198064131367", - "LPTokenSupply": "19671673438298783949878245" + "mAssetSupply": "103777994772904967212060943", + "LPTokenSupply": "8265223188021391669880634" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "17530121113667979182080", - "outputQty0": "17628182209983809027778", - "outputQty": "17606113939957519123900", - "swapFee1": "10518072668200787509", - "swapFee2": "7051272883993523611", + "outputIndex": 0, + "inputQty": "18996819674475568037888", + "outputQty0": "19203655582077389595234", + "outputQty": "19289812199103421373473", + "swapFee1": "11398091804685340822", + "swapFee2": "11522193349246433757", "mpReserves": [ - "47870327793946170972684042", - "29051153266085967990326261", - "33091220263045124974996449" + "47449770739999381749645813", + "12667798794421702995683616", + "43805876223096488738434923" ], "fpReserves": [ - "10965404021418223152726831", - "8797405340122854347451541" + "4703431900635467572241870", + "3631140085848038610783616" ], - "mAssetSupply": "110003984206797098248627200", - "LPTokenSupply": "19654144368992382790774915" + "mAssetSupply": "103758802639516239068899466", + "LPTokenSupply": "8246227508156096570376828" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "208682322930776014848", - "outputQty0": "208746100966971027749", - "outputQty": "208268874474883862281", - "swapFee": "165968611283957180", + "inputIndex": 1, + "inputQty": "742869028191755904", + "outputQty0": "758293785740760480", + "outputQty": "756353732101918252", + "swapFee": "599744195934772", "mpReserves": [ - "47870327793946170972684042", - "29051153266085967990326261", - "33091428945368055751011297" + "47449770739999381749645813", + "12667799537290731187439520", + "43805876223096488738434923" ], "fpReserves": [ - "10965612767519190123754580", - "8797197071248379463589260" + "4703432658929253313002350", + "3631139329494306508865364" ], - "mAssetSupply": "110004192952898065219654949", - "LPTokenSupply": "19654144385589243919170633" + "mAssetSupply": "103758803397810024809659946", + "LPTokenSupply": "8246227508216070989970305" }, { - "type": "swap_fp_to_mp", - "inputQty": "7050119544823574691840", - "outputIndex": 2, - "outputQty": "7055603822816776915351", - "swapFee": "0", - "redemptionFee": "2824234545836839672", + "type": "mint", + "inputIndex": 1, + "inputQty": "5535020171303725056", + "outputQty0": "5649947969121148690", + "outputQty": "5585769585401934017", "mpReserves": [ - "47870327793946170972684042", - "29051153266085967990326261", - "33084373341545238974095946" + "47449770739999381749645813", + "12667805072310902491164576", + "43805876223096488738434923" ], "fpReserves": [ - "10958552181154598024573039", - "8804247190793203038281100" + "4703438308877222434151040", + "3631139329494306508865364" ], - "mAssetSupply": "109997135190768018957313080", - "LPTokenSupply": "19654144385589243919170633" + "mAssetSupply": "103758809047757993930808636", + "LPTokenSupply": "8246233093985656391904322" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2739973936644503485022208", - "outputQty0": "2741921636663207367223100", - "outputQty": "2724056712255737105771541", + "type": "swap_fp_to_mp", + "inputQty": "379302432839125312733184", + "outputIndex": 0, + "outputQty": "381418610202518834184404", + "swapFee": "0", + "redemptionFee": "227836703943006034931", "mpReserves": [ - "47870327793946170972684042", - "31791127202730471475348469", - "33084373341545238974095946" + "47068352129796862915461409", + "12667805072310902491164576", + "43805876223096488738434923" ], "fpReserves": [ - "13700473817817805391796139", - "8804247190793203038281100" + "4323710468972212375931284", + "4010441762333431821598548" ], - "mAssetSupply": "112739056827431226324536180", - "LPTokenSupply": "22378201097844981024942174" + "mAssetSupply": "103379309044556926878623811", + "LPTokenSupply": "8246233093985656391904322" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "356561234592949862400", - "outputQty0": "356767185013557369209", - "outputQty": "355352540136936112828", - "swapFee": "283456796963116101", + "type": "swap_fp_to_mp", + "inputQty": "24248823844144", + "outputIndex": 2, + "outputQty": "24351003760810", + "swapFee": "0", + "redemptionFee": "14556559997", "mpReserves": [ - "47870327793946170972684042", - "31791483763965064425210869", - "33084373341545238974095946" + "47068352129796862915461409", + "12667805072310902491164576", + "43805876223072137734674113" ], "fpReserves": [ - "13700830585002818949165348", - "8803891838253066102168272" + "4323710468947951442602265", + "4010441762357680645442692" ], - "mAssetSupply": "112739413594616239881905389", - "LPTokenSupply": "22378201126190660721253784" + "mAssetSupply": "103379309044532680501854789", + "LPTokenSupply": "8246233093985656391904322" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "887166007865726848", - "outputQty0": "892755084299990951", - "outputQty": "892027022668194262", - "swapFee1": "532299604719436", - "swapFee2": "357102033719996", + "type": "mint", + "inputIndex": 0, + "inputQty": "10047173443428699602944", + "outputQty0": "9996947088255767997118", + "outputQty": "9889073616967040977943", "mpReserves": [ - "47870327793946170972684042", - "31791483763965064425210869", - "33084372449518216305901684" + "47078399303240291615064353", + "12667805072310902491164576", + "43805876223072137734674113" ], "fpReserves": [ - "13700829692247734649174397", - "8803891838253066102168272" + "4333707416036207210599383", + "4010441762357680645442692" ], - "mAssetSupply": "112739412702218257615634434", - "LPTokenSupply": "22378200239077882815998879" + "mAssetSupply": "103389305991620936269851907", + "LPTokenSupply": "8256122167602623432882265" }, { - "type": "swap_fp_to_mp", - "inputQty": "732424345498346061824", - "outputIndex": 0, - "outputQty": "735054892125604505602", - "swapFee": "0", - "redemptionFee": "293900644490556911", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "69209421719470088192", + "outputQty0": "68863381382692198506", + "outputQty": "68772879006595134689", + "swapFee": "54496037855261986", "mpReserves": [ - "47869592739054045368178440", - "31791483763965064425210869", - "33084372449518216305901684" + "47078468512662011085152545", + "12667805072310902491164576", + "43805876223072137734674113" ], "fpReserves": [ - "13700094940636508256895424", - "8804624262598564448230096" + "4333776279417589902797889", + "4010372989478674050308003" ], - "mAssetSupply": "112738678244507675713912372", - "LPTokenSupply": "22378200239077882815998879" + "mAssetSupply": "103389374855002318962050413", + "LPTokenSupply": "8256122173052227218408463" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "19524888980512600", - "outputQty0": "19533008179565605", - "outputQty": "19455573124635812", - "swapFee": "15519267493149", + "type": "mint", + "inputIndex": 0, + "inputQty": "4956544084396913721344", + "outputQty0": "4931759758733081265182", + "outputQty": "4878515395720722250668", "mpReserves": [ - "47869592739054045368178440", - "31791483763965064425210869", - "33084372469043105286414284" + "47083425056746407998873889", + "12667805072310902491164576", + "43805876223072137734674113" ], "fpReserves": [ - "13700094960169516436461029", - "8804624243142991323594284" + "4338708039176322984063071", + "4010372989478674050308003" ], - "mAssetSupply": "112738678264040683893477977", - "LPTokenSupply": "22378200239079434742748193" + "mAssetSupply": "103394306614761052043315595", + "LPTokenSupply": "8261000688447947940659131" }, { - "type": "swap_fp_to_mp", - "inputQty": "7987660426235419295744", - "outputIndex": 0, - "outputQty": "8016292804131193479542", - "swapFee": "0", - "redemptionFee": "3205194741918965665", + "type": "mint", + "inputIndex": 1, + "inputQty": "49661896949951428034560", + "outputQty0": "50680443601729817549718", + "outputQty": "50132260948468951397137", "mpReserves": [ - "47861576446249914174698898", - "31791483763965064425210869", - "33084372469043105286414284" + "47083425056746407998873889", + "12717466969260853919199136", + "43805876223072137734674113" ], "fpReserves": [ - "13692081973314719022297377", - "8812611903569226742890028" + "4389388482778052801612789", + "4010372989478674050308003" ], - "mAssetSupply": "112730668482380628398279990", - "LPTokenSupply": "22378200239079434742748193" + "mAssetSupply": "103444987058362781860865313", + "LPTokenSupply": "8311132949396416892056268" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2641939024651911430144", - "outputQty0": "2643036694113133910089", - "outputQty": "2624927221534332952669", + "inputIndex": 1, + "inputQty": "935664891303419497676800", + "outputQty0": "953454381902338503866969", + "outputQty": "942821974674448834852242", "mpReserves": [ - "47861576446249914174698898", - "31791483763965064425210869", - "33087014408067757197844428" + "47083425056746407998873889", + "13653131860564273416875936", + "43805876223072137734674113" ], "fpReserves": [ - "13694725010008832156207466", - "8812611903569226742890028" + "5342842864680391305479758", + "4010372989478674050308003" ], - "mAssetSupply": "112733311519074741532190079", - "LPTokenSupply": "22380825166300969075700862" + "mAssetSupply": "104398441440265120364732282", + "LPTokenSupply": "9253954924070865726908510" }, { "type": "swap_fp_to_mp", - "inputQty": "47150254502865888", + "inputQty": "789229119580306669568", "outputIndex": 2, - "outputQty": "47260985718509069", + "outputQty": "793391955720037175649", "swapFee": "0", - "redemptionFee": "18919814529465", + "redemptionFee": "474468389690850186", "mpReserves": [ - "47861576446249914174698898", - "31791483763965064425210869", - "33087014360806771479335359" + "47083425056746407998873889", + "13653131860564273416875936", + "43805082831116417697498464" ], "fpReserves": [ - "13694724962709295832544784", - "8812611950719481245755916" + "5342052084030906555168392", + "4011162218598254356977571" ], - "mAssetSupply": "112733311471794125023056862", - "LPTokenSupply": "22380825166300969075700862" + "mAssetSupply": "104397651134084025305271102", + "LPTokenSupply": "9253954924070865726908510" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "30037432019375", - "outputQty0": "30226524106639", - "outputQty": "30238986945865", - "swapFee1": "18022459211", - "swapFee2": "12090609642", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "668365109063270137856", + "outputQty0": "665310864937504983101", + "outputQty": "663474438124311552028", + "swapFee": "526156886374014554", "mpReserves": [ - "47861576446219675187753033", - "31791483763965064425210869", - "33087014360806771479335359" + "47084093421855471269011745", + "13653131860564273416875936", + "43805082831116417697498464" ], "fpReserves": [ - "13694724962679069308438145", - "8812611950719481245755916" + "5342717394895844060151493", + "4010498744160130045425543" ], - "mAssetSupply": "112733311471763910589559865", - "LPTokenSupply": "22380825166270933445927408" + "mAssetSupply": "104398316444948962810254203", + "LPTokenSupply": "9253954976686554364309965" }, { - "type": "swap_fp_to_mp", - "inputQty": "260969030893634261614592", - "outputIndex": 1, - "outputQty": "261484507137642921646325", - "swapFee": "0", - "redemptionFee": "104697323706855456724", + "type": "redeem", + "outputIndex": 2, + "inputQty": "5000735763125061632", + "outputQty0": "5055602596456262221", + "outputQty": "5072296651989748630", + "swapFee1": "3000441457875036", + "swapFee2": "3033361557873757", "mpReserves": [ - "47861576446219675187753033", - "31529999256827421503564544", - "33087014360806771479335359" + "47084093421855471269011745", + "13653131860564273416875936", + "43805077758819765707749834" ], "fpReserves": [ - "13432981653411930666626475", - "9073580981613115507370508" + "5342712339293247603889272", + "4010498744160130045425543" ], - "mAssetSupply": "112471672859820478803204919", - "LPTokenSupply": "22380825166270933445927408" + "mAssetSupply": "104398311392379727911865739", + "LPTokenSupply": "9253949976250835385035836" }, { - "type": "swap_fp_to_mp", - "inputQty": "80073462028123914240", - "outputIndex": 0, - "outputQty": "80329193306846321439", - "swapFee": "0", - "redemptionFee": "32118149791535762", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1064137913509154258944", + "outputQty0": "1082962350422097076799", + "outputQty": "1079970098164437394636", + "swapFee": "856452994037915098", "mpReserves": [ - "47861496117026368341431594", - "31529999256827421503564544", - "33087014360806771479335359" + "47084093421855471269011745", + "13654195998477782571134880", + "43805077758819765707749834" ], "fpReserves": [ - "13432901358037451827219249", - "9073661055075143631284748" + "5343795301643669700966071", + "4009418774061965608030907" ], - "mAssetSupply": "112471592596564149755333455", - "LPTokenSupply": "22380825166270933445927408" + "mAssetSupply": "104399394354730150008942538", + "LPTokenSupply": "9253950061896134788827345" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1573874735172354048000", - "outputQty0": "1583534215967267986044", - "outputQty": "1584201111212662390905", - "swapFee1": "944324841103412428", - "swapFee2": "633413686386907194", + "type": "mint", + "inputIndex": 2, + "inputQty": "4300530900128158973952", + "outputQty0": "4283805278219851946135", + "outputQty": "4234760176162850976470", "mpReserves": [ - "47859911915915155679040689", - "31529999256827421503564544", - "33087014360806771479335359" + "47084093421855471269011745", + "13654195998477782571134880", + "43809378289719893866723786" ], "fpReserves": [ - "13431317823821484559233205", - "9073661055075143631284748" + "5348079106921889552912206", + "4009418774061965608030907" ], - "mAssetSupply": "112470009695761868874254605", - "LPTokenSupply": "22379251385968245202220650" + "mAssetSupply": "104403678160008369860888673", + "LPTokenSupply": "9258184822072297639803815" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "118675843947696008200192", - "outputQty0": "118578129121520482057987", - "outputQty": "117782449997523411042117", + "inputIndex": 2, + "inputQty": "1241513380742184192", + "outputQty0": "1236684439443641294", + "outputQty": "1222524154699205817", "mpReserves": [ - "47978587759862851687240881", - "31529999256827421503564544", - "33087014360806771479335359" + "47084093421855471269011745", + "13654195998477782571134880", + "43809379531233274608907978" ], "fpReserves": [ - "13549895952943005041291192", - "9073661055075143631284748" + "5348080343606328996553500", + "4009418774061965608030907" ], - "mAssetSupply": "112588587824883389356312592", - "LPTokenSupply": "22497033835965768613262767" + "mAssetSupply": "104403679396692809304529967", + "LPTokenSupply": "9258186044596452339009632" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "318698154918990246313984", - "outputQty0": "320650864727408630254980", - "outputQty": "320387342416778727165950", - "swapFee1": "191218892951394147788", - "swapFee2": "128260345890963452101", + "type": "mint", + "inputIndex": 0, + "inputQty": "151574961955943424720896", + "outputQty0": "150880559301726729905025", + "outputQty": "149146395674468708170778", "mpReserves": [ - "47978587759862851687240881", - "31529999256827421503564544", - "32766627018389992752169409" + "47235668383811414693732641", + "13654195998477782571134880", + "43809379531233274608907978" ], "fpReserves": [ - "13229245088215596411036212", - "9073661055075143631284748" + "5498960902908055726458525", + "4009418774061965608030907" ], - "mAssetSupply": "112268065220501871689509713", - "LPTokenSupply": "22178354802936073506363561" + "mAssetSupply": "104554559955994536034434992", + "LPTokenSupply": "9407332440270921047180410" }, { "type": "swap_fp_to_mp", - "inputQty": "17438132947535655862272", + "inputQty": "1105218783963974729728", "outputIndex": 2, - "outputQty": "17469515206268198803988", + "outputQty": "1111278656782655195293", "swapFee": "0", - "redemptionFee": "6993652319992611402", + "redemptionFee": "664577098777371740", "mpReserves": [ - "47978587759862851687240881", - "31529999256827421503564544", - "32749157503183724553365421" + "47235668383811414693732641", + "13654195998477782571134880", + "43808268252576491953712685" ], "fpReserves": [ - "13211760957415614882529618", - "9091099188022679287147020" + "5497853274410093440224428", + "4010523992845929582760635" ], - "mAssetSupply": "112250588083354210153614521", - "LPTokenSupply": "22178354802936073506363561" + "mAssetSupply": "104553452992073672525572635", + "LPTokenSupply": "9407332440270921047180410" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "174767012346868459896832", - "outputQty0": "175826873006624768349862", - "outputQty": "175678460205514148839876", - "swapFee1": "104860207408121075938", - "swapFee2": "70330749202649907339", + "outputIndex": 1, + "inputQty": "14849435948432882663424", + "outputQty0": "15013647857824751011100", + "outputQty": "14742648915632467169574", + "swapFee1": "8909661569059729598", + "swapFee2": "9008188714694850606", "mpReserves": [ - "47978587759862851687240881", - "31529999256827421503564544", - "32573479042978210404525545" + "47235668383811414693732641", + "13639453349562150103965306", + "43808268252576491953712685" ], "fpReserves": [ - "13035934084408990114179756", - "9091099188022679287147020" + "5482839626552268689213328", + "4010523992845929582760635" ], - "mAssetSupply": "112074831541096788035171998", - "LPTokenSupply": "22003598276609945858574322" + "mAssetSupply": "104538448352404562469412141", + "LPTokenSupply": "9392483895288645070489945" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "53948737932074844160", - "outputQty0": "54274978532695785572", - "outputQty": "54221532237794571701", - "swapFee1": "32369242759244906", - "swapFee2": "21709991413078314", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "146537957228517", + "outputQty0": "145863968674854", + "outputQty": "145433418261495", + "swapFee": "115346013760", "mpReserves": [ - "47978587759862851687240881", - "31529945035295183708992843", - "32573479042978210404525545" + "47235668383957952650961158", + "13639453349562150103965306", + "43808268252576491953712685" ], "fpReserves": [ - "13035879809430457418394184", - "9091099188022679287147020" + "5482839626698132657888182", + "4010523992700496164499140" ], - "mAssetSupply": "112074777287828246752464740", - "LPTokenSupply": "22003544331108938059654652" + "mAssetSupply": "104538448352550426438086995", + "LPTokenSupply": "9392483895288656605091321" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "166856466996193380007936", - "outputQty0": "167862038861136632131722", - "outputQty": "167935714357417972658147", - "swapFee1": "100113880197716028004", - "swapFee2": "67144815544454652852", + "outputIndex": 2, + "inputQty": "1026569198326548577386496", + "outputQty0": "1037588268198929193804279", + "outputQty": "1040921476704204259157149", + "swapFee1": "615941518995929146431", + "swapFee2": "622552960919357516282", "mpReserves": [ - "47810652045505433714582734", - "31529945035295183708992843", - "32573479042978210404525545" + "47235668383957952650961158", + "13639453349562150103965306", + "42767346775872287694555536" ], "fpReserves": [ - "12868017770569320786262462", - "9091099188022679287147020" + "4445251358499203464083903", + "4010523992700496164499140" ], - "mAssetSupply": "111906982393782654574985870", - "LPTokenSupply": "21836697875500764451249516" + "mAssetSupply": "103501482637312416601798998", + "LPTokenSupply": "8365976291114007620619468" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "62715484634305443921920", - "outputQty0": "62663041119398147014398", - "outputQty": "62458887560292290703391", - "swapFee": "49800666924624456530", + "type": "mint", + "inputIndex": 1, + "inputQty": "24060075516927301124096", + "outputQty0": "24477820638466444135593", + "outputQty": "24209795177562508411993", "mpReserves": [ - "47873367530139739158504654", - "31529945035295183708992843", - "32573479042978210404525545" + "47235668383957952650961158", + "13663513425079077405089402", + "42767346775872287694555536" ], "fpReserves": [ - "12930680811688718933276860", - "9028640300462386996443629" + "4469729179137669908219496", + "4010523992700496164499140" ], - "mAssetSupply": "111969645434902052722000268", - "LPTokenSupply": "21836702855567456913695169" + "mAssetSupply": "103525960457950883045934591", + "LPTokenSupply": "8390186086291570129031461" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "68556021021384976", - "outputQty0": "68970756086452141", - "outputQty": "68912257849090055", - "swapFee1": "41133612612830", - "swapFee2": "27588302434580", + "type": "mint", + "inputIndex": 0, + "inputQty": "743630569743673196544", + "outputQty0": "740182449291554989929", + "outputQty": "732071073746074574560", "mpReserves": [ - "47873367530139739158504654", - "31529945035295183708992843", - "32573478974065952555435490" + "47236412014527696324157702", + "13663513425079077405089402", + "42767346775872287694555536" ], "fpReserves": [ - "12930680742717962846824719", - "9028640300462386996443629" + "4470469361586961463209425", + "4010523992700496164499140" ], - "mAssetSupply": "111969645365958884937982707", - "LPTokenSupply": "21836702787015549253571476" + "mAssetSupply": "103526700640400174600924520", + "LPTokenSupply": "8390918157365316203606021" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "8519008816205250560", - "outputQty0": "8523964593986757633", - "outputQty": "8495809678369905397", - "swapFee": "6774099713722338", + "inputIndex": 0, + "inputQty": "13349021195534350", + "outputQty0": "13287122689734522", + "outputQty": "13266903925461383", + "swapFee": "10513208600212", "mpReserves": [ - "47873367530139739158504654", - "31529953554303999914243403", - "32573478974065952555435490" + "47236412027876717519692052", + "13663513425079077405089402", + "42767346775872287694555536" ], "fpReserves": [ - "12930689266682556833582352", - "9028631804652708626538232" + "4470469374874084152943947", + "4010523979433592239037757" ], - "mAssetSupply": "111969653889923478924740340", - "LPTokenSupply": "21836702787692959224943709" + "mAssetSupply": "103526700653687297290659042", + "LPTokenSupply": "8390918157366367524466042" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "267159789684523402264576", - "outputQty0": "267276605369409584473726", - "outputQty": "266341301239016054137819", - "swapFee": "212401070892306960294", + "inputIndex": 0, + "inputQty": "19928719779500765184", + "outputQty0": "19836311626014675073", + "outputQty": "19806126459888458576", + "swapFee": "15695142234978552", "mpReserves": [ - "47873367530139739158504654", - "31529953554303999914243403", - "32840638763750475957700066" + "47236431956596497020457236", + "13663513425079077405089402", + "42767346775872287694555536" ], "fpReserves": [ - "13197965872051966418056078", - "8762290503413692572400413" + "4470489211185710167619020", + "4010504173307132350579181" ], - "mAssetSupply": "112236930495292888509214066", - "LPTokenSupply": "21836724027800048455639738" + "mAssetSupply": "103526720489998923305334115", + "LPTokenSupply": "8390918158935881747963897" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "204650266922803691520", - "outputQty0": "204771455124180641435", - "outputQty": "204013947703664706235", - "swapFee": "162706731180301117", + "inputIndex": 0, + "inputQty": "111449623726092768", + "outputQty0": "110932839025650459", + "outputQty": "110764027614471836", + "swapFee": "87773709006632", "mpReserves": [ - "47873367530139739158504654", - "31530158204570922717934923", - "32840638763750475957700066" + "47236432068046120746550004", + "13663513425079077405089402", + "42767346775872287694555536" ], "fpReserves": [ - "13198170643507090598697513", - "8762086489465988907694178" + "4470489322118549193269479", + "4010504062543104736107345" ], - "mAssetSupply": "112237135266748012689855501", - "LPTokenSupply": "21836724044070721573669849" + "mAssetSupply": "103526720600931762330984574", + "LPTokenSupply": "8390918158944659118864560" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "14371986381890719318016", - "outputQty0": "14461365571312600234679", - "outputQty": "14449416372344027946808", - "swapFee1": "8623191829134431590", - "swapFee2": "5784546228525040093", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "749605362726586695024640", + "outputQty0": "746084802880238073984341", + "outputQty": "744004536978786640816660", + "swapFee": "590179649960232362843", "mpReserves": [ - "47873367530139739158504654", - "31530158204570922717934923", - "32826189347378131929753258" + "47986037430772707441574644", + "13663513425079077405089402", + "42767346775872287694555536" ], "fpReserves": [ - "13183709277935777998462834", - "8762086489465988907694178" + "5216574124998787267253820", + "3266499525564318095290685" ], - "mAssetSupply": "112222679685722928614660915", - "LPTokenSupply": "21822352920008013767794992" + "mAssetSupply": "104272805403812000404968915", + "LPTokenSupply": "8390977176909655142100844" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "198934143635754844160", - "outputQty0": "200171025090517266515", - "outputQty": "200257078777589755700", - "swapFee1": "119360486181452906", - "swapFee2": "80068410036206906", + "type": "mint", + "inputIndex": 0, + "inputQty": "31833360549593927680", + "outputQty0": "31681958997213348543", + "outputQty": "31297071018884822459", "mpReserves": [ - "47873167273060961568748954", - "31530158204570922717934923", - "32826189347378131929753258" + "47986069264133257035502324", + "13663513425079077405089402", + "42767346775872287694555536" ], "fpReserves": [ - "13183509106910687481196319", - "8762086489465988907694178" + "5216605806957784480602363", + "3266499525564318095290685" ], - "mAssetSupply": "112222479594766248133601306", - "LPTokenSupply": "21822153997800426631096122" + "mAssetSupply": "104272837085770997618317458", + "LPTokenSupply": "8391008473980674026923303" }, { - "type": "swap_fp_to_mp", - "inputQty": "24035718910326456975360", - "outputIndex": 1, - "outputQty": "24081093802868600335367", - "swapFee": "0", - "redemptionFee": "9642003510161283729", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "54497503983931349794816", + "outputQty0": "54238074776819265566723", + "outputQty": "54004955510900919096224", + "swapFee": "42862598870663118015", "mpReserves": [ - "47873167273060961568748954", - "31506077110768054117599556", - "32826189347378131929753258" + "48040566768117188385297140", + "13663513425079077405089402", + "42767346775872287694555536" ], "fpReserves": [ - "13159404098135284271872163", - "8786122208376315364669538" + "5270843881734603746169086", + "3212494570053417176194461" ], - "mAssetSupply": "112198384227994355085560879", - "LPTokenSupply": "21822153997800426631096122" + "mAssetSupply": "104327075160547816883884181", + "LPTokenSupply": "8391012760240561093235104" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "142626135239953230069760", - "outputQty0": "142507255689838788386723", - "outputQty": "141541335273542340962695", + "type": "swap_fp_to_mp", + "inputQty": "61895959569508631314432", + "outputIndex": 1, + "outputQty": "60992950494256147765898", + "swapFee": "0", + "redemptionFee": "37267415704578009647", "mpReserves": [ - "48015793408300914798818714", - "31506077110768054117599556", - "32826189347378131929753258" + "48040566768117188385297140", + "13602520474584821257323504", + "42767346775872287694555536" ], "fpReserves": [ - "13301911353825123060258886", - "8786122208376315364669538" + "5208731522226973730089113", + "3274390529622925807508893" ], - "mAssetSupply": "112340891483684193873947602", - "LPTokenSupply": "21963695333073968972058817" + "mAssetSupply": "104265000068455891445813855", + "LPTokenSupply": "8391012760240561093235104" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "283206286789342", - "outputQty0": "284972827309540", - "outputQty": "284688400191336", - "swapFee1": "169923772073", - "swapFee2": "113989130923", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "301925609932310251044864", + "outputQty0": "300472143008351046563170", + "outputQty": "299022973285231064526987", + "swapFee": "237437197566383247126", "mpReserves": [ - "48015793408300914798818714", - "31506077110483365717408220", - "32826189347378131929753258" + "48342492378049498636342004", + "13602520474584821257323504", + "42767346775872287694555536" ], "fpReserves": [ - "13301911353540150232949346", - "8786122208376315364669538" + "5509203665235324776652283", + "2975367556337694742981906" ], - "mAssetSupply": "112340891483399335035768985", - "LPTokenSupply": "21963695332790779677646682" + "mAssetSupply": "104565472211464242492377025", + "LPTokenSupply": "8391036503960317731559816" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "54377467455418197344256", - "outputQty0": "54716291239155135114818", - "outputQty": "54740136911025565501713", - "swapFee1": "32626480473250918406", - "swapFee2": "21886516495662054045", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "78492903071941270700032", + "outputQty0": "78112669626909375851493", + "outputQty": "77663443665720471779081", + "swapFee": "61696456043060690058", "mpReserves": [ - "47961053271389889233317001", - "31506077110483365717408220", - "32826189347378131929753258" + "48420985281121439907042036", + "13602520474584821257323504", + "42767346775872287694555536" ], "fpReserves": [ - "13247195062300995097834528", - "8786122208376315364669538" + "5587316334862234152503776", + "2897704112671974271202825" ], - "mAssetSupply": "112286197078676675562708212", - "LPTokenSupply": "21909321127983408805394266" + "mAssetSupply": "104643584881091151868228518", + "LPTokenSupply": "8391042673605922037628821" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "8609095527667005915136", - "outputQty0": "8601911880374629555509", - "outputQty": "8543552865586372235075", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "174341253856961786544128", + "outputQty0": "177435929295511189925656", + "outputQty": "176287086572581209966057", + "swapFee": "140120033629276867727", "mpReserves": [ - "47969662366917556239232137", - "31506077110483365717408220", - "32826189347378131929753258" + "48420985281121439907042036", + "13776861728441783043867632", + "42767346775872287694555536" ], "fpReserves": [ - "13255796974181369727390037", - "8786122208376315364669538" + "5764752264157745342429432", + "2721417026099393061236768" ], - "mAssetSupply": "112294798990557050192263721", - "LPTokenSupply": "21917864680848995177629341" + "mAssetSupply": "104821020810386663058154174", + "LPTokenSupply": "8391056685609284965315593" }, { - "type": "swap_fp_to_mp", - "inputQty": "982169561899461640192", - "outputIndex": 1, - "outputQty": "984058340386693314553", - "swapFee": "0", - "redemptionFee": "394015996260028386", + "type": "redeem", + "outputIndex": 2, + "inputQty": "4312062647321112870912", + "outputQty0": "4367064835446576451394", + "outputQty": "4380237250934462396334", + "swapFee1": "2587237588392667722", + "swapFee2": "2620238901267945870", "mpReserves": [ - "47969662366917556239232137", - "31505093052142979024093667", - "32826189347378131929753258" + "48420985281121439907042036", + "13776861728441783043867632", + "42762966538621353232159202" ], "fpReserves": [ - "13254811934190719656424579", - "8787104377938214826309730" + "5760385199322298765978038", + "2721417026099393061236768" ], - "mAssetSupply": "112293814344582396381326649", - "LPTokenSupply": "21917864680848995177629341" + "mAssetSupply": "104816656365790117749648650", + "LPTokenSupply": "8386744881685722691711453" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "5654101921453645496320", - "outputQty0": "5689306739352936287551", - "outputQty": "5683635255549717839188", - "swapFee1": "3392461152872187297", - "swapFee2": "2275722695741174515", + "inputQty": "1638774860559624699904", + "outputQty0": "1659675234171651659108", + "outputQty": "1630115578262244317979", + "swapFee1": "983264916335774819", + "swapFee2": "995805140502990995", "mpReserves": [ - "47969662366917556239232137", - "31499409416887429306254479", - "32826189347378131929753258" + "48420985281121439907042036", + "13775231612863520799549653", + "42762966538621353232159202" ], "fpReserves": [ - "13249122627451366720137028", - "8787104377938214826309730" + "5758725524088127114318930", + "2721417026099393061236768" ], - "mAssetSupply": "112288127313565739186213613", - "LPTokenSupply": "21912210918173656819351750" + "mAssetSupply": "104814997686361086600980537", + "LPTokenSupply": "8385106205151654700589030" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "28878065494092649857024", - "outputQty0": "28895288042554657551160", - "outputQty": "28787523721084235114030", - "swapFee": "22959337794125560428", + "type": "swap_fp_to_mp", + "inputQty": "37509857487546384121856", + "outputIndex": 1, + "outputQty": "37065616165080862558016", + "swapFee": "0", + "redemptionFee": "22643764814968126337", "mpReserves": [ - "47969662366917556239232137", - "31528287482381521956111503", - "32826189347378131929753258" + "48420985281121439907042036", + "13738165996698439936991637", + "42762966538621353232159202" ], "fpReserves": [ - "13278017915493921377688188", - "8758316854217130591195700" + "5720985916063180237089891", + "2758926883586939445358624" ], - "mAssetSupply": "112317022601608293843764773", - "LPTokenSupply": "21912213214107436231907792" + "mAssetSupply": "104777280722100954691877835", + "LPTokenSupply": "8385106205151654700589030" }, { "type": "mint", "inputIndex": 1, - "inputQty": "10725342749244587507712", - "outputQty0": "10731719563214344799255", - "outputQty": "10658707804381895900955", + "inputQty": "4326983830365658415104", + "outputQty0": "4403205611971218345427", + "outputQty": "4345480631786880033888", "mpReserves": [ - "47969662366917556239232137", - "31539012825130766543619215", - "32826189347378131929753258" + "48420985281121439907042036", + "13742492980528805595406741", + "42762966538621353232159202" ], "fpReserves": [ - "13288749635057135722487443", - "8758316854217130591195700" + "5725389121675151455435318", + "2758926883586939445358624" ], - "mAssetSupply": "112327754321171508188564028", - "LPTokenSupply": "21922871921911818127808747" + "mAssetSupply": "104781683927712925910223262", + "LPTokenSupply": "8389451685783441580622918" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "21004755028774341312512", - "outputQty0": "21135920909100481850394", - "outputQty": "21118353575214284911133", - "swapFee1": "12602853017264604787", - "swapFee2": "8454368363640192740", + "inputQty": "23980331561306199949312", + "outputQty0": "24284144019745912073210", + "outputQty": "24357644293445774078196", + "swapFee1": "14388198936783719969", + "swapFee2": "14570486411847547243", "mpReserves": [ - "47969662366917556239232137", - "31539012825130766543619215", - "32805070993802917644842125" + "48420985281121439907042036", + "13742492980528805595406741", + "42738608894327907458081006" ], "fpReserves": [ - "13267613714148035240637049", - "8758316854217130591195700" + "5701104977655405543362108", + "2758926883586939445358624" ], - "mAssetSupply": "112306626854630771346906374", - "LPTokenSupply": "21901868427168345512956713" + "mAssetSupply": "104757414354179591845697295", + "LPTokenSupply": "8365472793042029059045602" }, { "type": "mint", "inputIndex": 0, - "inputQty": "30228022891275630936064", - "outputQty0": "30202787720883109847206", - "outputQty": "29997296617187917239233", + "inputQty": "101320472277736", + "outputQty0": "100834786554821", + "outputQty": "99514176626315", "mpReserves": [ - "47999890389808831870168201", - "31539012825130766543619215", - "32805070993802917644842125" + "48420985281222760379319772", + "13742492980528805595406741", + "42738608894327907458081006" ], "fpReserves": [ - "13297816501868918350484255", - "8758316854217130591195700" + "5701104977756240329916929", + "2758926883586939445358624" ], - "mAssetSupply": "112336829642351654456753580", - "LPTokenSupply": "21931865723785533430195946" + "mAssetSupply": "104757414354280426632252116", + "LPTokenSupply": "8365472793141543235671917" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "1096386130599904949567488", + "outputIndex": 0, + "outputQty": "1104555886979285183901258", + "swapFee": "0", + "redemptionFee": "660010460865109894880", + "mpReserves": [ + "47316429394243475195418514", + "13742492980528805595406741", + "42738608894327907458081006" + ], + "fpReserves": [ + "4601087542981057171782224", + "3855313014186844394926112" + ], + "mAssetSupply": "103658056929966108584012291", + "LPTokenSupply": "8365472793141543235671917" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "560827888393367823843328", + "outputQty0": "570061829171179327466912", + "outputQty": "563522087014684114234467", + "mpReserves": [ + "47316429394243475195418514", + "14303320868922173419250069", + "42738608894327907458081006" + ], + "fpReserves": [ + "5171149372152236499249136", + "3855313014186844394926112" + ], + "mAssetSupply": "104228118759137287911479203", + "LPTokenSupply": "8928994880156227349906384" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "2409568751091592986624", + "outputQty0": "2447645212841435078181", + "outputQty": "2419129907993845757600", + "mpReserves": [ + "47316429394243475195418514", + "14305730437673265012236693", + "42738608894327907458081006" + ], + "fpReserves": [ + "5173597017365077934327317", + "3855313014186844394926112" + ], + "mAssetSupply": "104230566404350129346557384", + "LPTokenSupply": "8931414010064221195663984" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "66858459634357551104", - "outputQty0": "66887433380022038027", - "outputQty": "66635695883995509294", - "swapFee": "53145684842003873", + "inputIndex": 0, + "inputQty": "27530506269327824", + "outputQty0": "27409354473516859", + "outputQty": "27332206661241281", + "swapFee": "21672010154599", "mpReserves": [ - "47999890389808831870168201", - "31539012825130766543619215", - "32805137852262552002393229" + "47316429421773981464746338", + "14305730437673265012236693", + "42738608894327907458081006" ], "fpReserves": [ - "13297883389302298372522282", - "8758250218521246595686406" + "5173597044774432407844176", + "3855312986854637733684831" ], - "mAssetSupply": "112336896529785034478791607", - "LPTokenSupply": "21931865729100101914396333" + "mAssetSupply": "104230566431759483820074243", + "LPTokenSupply": "8931414010066388396679443" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "14034401614584388517888", - "outputQty0": "14122091658937656978892", - "outputQty": "14110319662340193003187", - "swapFee1": "8420640968750633110", - "swapFee2": "5648836663575062791", + "inputQty": "9879478336536467996672", + "outputQty0": "9989911465195363695680", + "outputQty": "10018603320914601765302", + "swapFee1": "5927687001921880798", + "swapFee2": "5993946879117218217", "mpReserves": [ - "47999890389808831870168201", - "31539012825130766543619215", - "32791027532600211809390042" + "47316429421773981464746338", + "14305730437673265012236693", + "42728590291006992856315704" ], "fpReserves": [ - "13283761297643360715543390", - "8758250218521246595686406" + "5163607133309237044148496", + "3855312986854637733684831" ], - "mAssetSupply": "112322780086962760396875506", - "LPTokenSupply": "21917832169549614400941756" + "mAssetSupply": "104220582514241167573596780", + "LPTokenSupply": "8921535124498552120870850" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "23504102330709352448", - "outputQty0": "23484454343223209357", - "outputQty": "23396268459718463539", - "swapFee": "18659726522088498", + "type": "swap_fp_to_mp", + "inputQty": "327737948377955762176", + "outputIndex": 0, + "outputQty": "329649023376682063822", + "swapFee": "0", + "redemptionFee": "197037149909923665", "mpReserves": [ - "47999913893911162579520649", - "31539012825130766543619215", - "32791027532600211809390042" + "47316099772750604782682516", + "14305730437673265012236693", + "42728590291006992856315704" ], "fpReserves": [ - "13283784782097703938752747", - "8758226822252786877222867" + "5163278738059387171372167", + "3855640724803015689447007" ], - "mAssetSupply": "112322803571417103620084863", - "LPTokenSupply": "21917832171415587053150605" + "mAssetSupply": "104220254316028467610744116", + "LPTokenSupply": "8921535124498552120870850" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "159190613703483", - "outputQty0": "159285127816419", - "outputQty": "158686997383947", - "swapFee": "126561036685", + "inputIndex": 0, + "inputQty": "376102913409646133248", + "outputQty0": "374447654243736189559", + "outputQty": "373399189273547385467", + "swapFee": "296069746963706288", "mpReserves": [ - "47999913893911162579520649", - "31539012825289957157322698", - "32791027532600211809390042" + "47316475875664014428815764", + "14305730437673265012236693", + "42728590291006992856315704" ], "fpReserves": [ - "13283784782256989066569166", - "8758226822094099879838920" + "5163653185713630907561726", + "3855267325613742142061540" ], - "mAssetSupply": "112322803571576388747901282", - "LPTokenSupply": "21917832171415599709254273" + "mAssetSupply": "104220628763682711346933675", + "LPTokenSupply": "8921535154105526817241478" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "803210648724458831872", - "outputQty0": "802539199276746792552", - "outputQty": "797078362903579415036", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1231158465970379423744", + "outputQty0": "1244917006469071725901", + "outputQty": "1248491332840030307574", + "swapFee1": "738695079582227654", + "swapFee2": "746950203881443035", "mpReserves": [ - "48000717104559887038352521", - "31539012825289957157322698", - "32791027532600211809390042" + "47316475875664014428815764", + "14305730437673265012236693", + "42727341799674152826008130" ], "fpReserves": [ - "13284587321456265813361718", - "8758226822094099879838920" + "5162408268707161835835825", + "3855267325613742142061540" ], - "mAssetSupply": "112323606110775665494693834", - "LPTokenSupply": "21918629249778503288669309" + "mAssetSupply": "104219384593626446156650809", + "LPTokenSupply": "8920304069509064396040499" }, { "type": "mint", "inputIndex": 2, - "inputQty": "16056878479365126488064", - "outputQty0": "16063845455374664231513", - "outputQty": "15954507146995698397756", + "inputQty": "624658812910943076352", + "outputQty0": "622496777108653237044", + "outputQty": "615247784234392315333", "mpReserves": [ - "48000717104559887038352521", - "31539012825289957157322698", - "32807084411079576935878106" + "47316475875664014428815764", + "14305730437673265012236693", + "42727966458487063769084482" ], "fpReserves": [ - "13300651166911640477593231", - "8758226822094099879838920" + "5163030765484270489072869", + "3855267325613742142061540" ], - "mAssetSupply": "112339669956231040158925347", - "LPTokenSupply": "21934583756925498987067065" + "mAssetSupply": "104220007090403554809887853", + "LPTokenSupply": "8920919317293298788355832" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "12620884607017103360", - "outputQty0": "12699777508768631273", - "outputQty": "12689200382432651382", - "swapFee1": "7572530764210262", - "swapFee2": "5079911003507452", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "45576613059204573298688", + "outputQty0": "45375863544142158267883", + "outputQty": "45245393765053066303260", + "swapFee": "35877467567837336190", "mpReserves": [ - "48000717104559887038352521", - "31539012825289957157322698", - "32807071721879194503226724" + "47362052488723219002114452", + "14305730437673265012236693", + "42727966458487063769084482" ], "fpReserves": [ - "13300638467134131708961958", - "8758226822094099879838920" + "5208406629028412647340752", + "3810021931848689075758280" ], - "mAssetSupply": "112339657261533442393801526", - "LPTokenSupply": "21934571136798145046384731" + "mAssetSupply": "104265382953947696968155736", + "LPTokenSupply": "8920922905040055572089451" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "299050695583022645248", - "outputQty0": "300920044236367976773", - "outputQty": "300669416261501949417", - "swapFee1": "179430417349813587", - "swapFee2": "120368017694547190", + "outputIndex": 1, + "inputQty": "9326891569475219357696", + "outputQty0": "9431739817824303727440", + "outputQty": "9279252114149541139971", + "swapFee1": "5596134941685131614", + "swapFee2": "5659043890694582236", "mpReserves": [ - "48000717104559887038352521", - "31539012825289957157322698", - "32806771052462933001277307" + "47362052488723219002114452", + "14296451185559115471096722", + "42727966458487063769084482" ], "fpReserves": [ - "13300337547089895340985185", - "8758226822094099879838920" + "5198974889210588343613312", + "3810021931848689075758280" ], - "mAssetSupply": "112339356461857223720371943", - "LPTokenSupply": "21934272104045603758720841" + "mAssetSupply": "104255956873173763359010532", + "LPTokenSupply": "8911596573084074521244916" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "164348963615345410048", - "outputQty0": "164420165974161958679", - "outputQty": "163801076192217671069", - "swapFee": "130640585544618147", + "type": "swap_fp_to_mp", + "inputQty": "13848966771337823518720", + "outputIndex": 0, + "outputQty": "13931454535276745611918", + "swapFee": "0", + "redemptionFee": "8327001521518666677", "mpReserves": [ - "48000717104559887038352521", - "31539012825289957157322698", - "32806935401426548346687355" + "47348121034187942256502534", + "14296451185559115471096722", + "42727966458487063769084482" ], "fpReserves": [ - "13300501967255869502943864", - "8758063021017907662167851" + "5185096553341390565817443", + "3823870898620026899277000" ], - "mAssetSupply": "112339520882023197882330622", - "LPTokenSupply": "21934272117109662313182655" + "mAssetSupply": "104242086864306087099881340", + "LPTokenSupply": "8911596573084074521244916" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "163890008427825332224", + "outputQty0": "166484134425824418759", + "outputQty": "164538259253482147758", + "mpReserves": [ + "47348121034187942256502534", + "14296615075567543296428946", + "42727966458487063769084482" + ], + "fpReserves": [ + "5185263037475816390236202", + "3823870898620026899277000" + ], + "mAssetSupply": "104242253348440512924300099", + "LPTokenSupply": "8911761111343328003392674" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "25829484523131580186624", - "outputQty0": "25990863038428259244559", - "outputQty": "25969187692449165612338", - "swapFee1": "15497690713878948111", - "swapFee2": "10396345215371303697", + "outputIndex": 1, + "inputQty": "374197825883457032552448", + "outputQty0": "378351632369684228997335", + "outputQty": "372074272018365066398871", + "swapFee1": "224518695530074219531", + "swapFee2": "227010979421810537398", "mpReserves": [ - "48000717104559887038352521", - "31539012825289957157322698", - "32780966213734099181075017" + "47348121034187942256502534", + "13924540803549178230030075", + "42727966458487063769084482" ], "fpReserves": [ - "13274511104217441243699305", - "8758063021017907662167851" + "4806911405106132161238867", + "3823870898620026899277000" ], - "mAssetSupply": "112313540415329984994389760", - "LPTokenSupply": "21908444182355602120890842" + "mAssetSupply": "103864128727050250505840162", + "LPTokenSupply": "8537585737329423978262179" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "356657108825740180193280", - "outputQty0": "356356040870468855370829", - "outputQty": "354920270142471385638671", - "swapFee": "283133252710117439382", + "type": "redeem", + "outputIndex": 1, + "inputQty": "520700542542060912640", + "outputQty0": "526429727259470408115", + "outputQty": "517469099266104855339", + "swapFee1": "312420325525236547", + "swapFee2": "315857836355682244", "mpReserves": [ - "48357374213385627218545801", - "31539012825289957157322698", - "32780966213734099181075017" + "47348121034187942256502534", + "13924023334449912125174736", + "42727966458487063769084482" ], "fpReserves": [ - "13630867145087910099070134", - "8403142750875436276529180" + "4806384975378872690830752", + "3823870898620026899277000" ], - "mAssetSupply": "112669896456200453849760589", - "LPTokenSupply": "21908472495680873132634780" + "mAssetSupply": "103863602613180827391114291", + "LPTokenSupply": "8537065068028914469873193" }, { "type": "mint", "inputIndex": 1, - "inputQty": "10564742232476248702976", - "outputQty0": "10571134188797971023403", - "outputQty": "10496756293057666534484", + "inputQty": "1105209167999443402752", + "outputQty0": "1123671850355829347203", + "outputQty": "1110775704652917833983", "mpReserves": [ - "48357374213385627218545801", - "31549577567522433406025674", - "32780966213734099181075017" + "47348121034187942256502534", + "13925128543617911568577488", + "42727966458487063769084482" ], "fpReserves": [ - "13641438279276708070093537", - "8403142750875436276529180" + "4807508647229228520177955", + "3823870898620026899277000" ], - "mAssetSupply": "112680467590389251820783992", - "LPTokenSupply": "21918969251973930799169264" + "mAssetSupply": "103864726285031183220461494", + "LPTokenSupply": "8538175843733567387707176" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "3569703677830933512192", - "outputQty0": "3571299376475089060422", - "outputQty": "3555851280067931403786", - "swapFee": "2836932660738480188", + "inputQty": "1700780631957695627264", + "outputQty0": "1694667412083844301090", + "outputQty": "1690685929137873553368", + "swapFee": "1340173226874044307", "mpReserves": [ - "48357374213385627218545801", - "31549577567522433406025674", - "32784535917411930114587209" + "47348121034187942256502534", + "13925128543617911568577488", + "42729667239119021464711746" ], "fpReserves": [ - "13645009578653183159153959", - "8399586899595368345125394" + "4809203314641312364479045", + "3822180212690889025723632" ], - "mAssetSupply": "112684038889765726909844414", - "LPTokenSupply": "21918969535667196873017282" + "mAssetSupply": "103866420952443267064762584", + "LPTokenSupply": "8538175977750890075111606" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "353939548109223378288640", - "outputQty0": "354147787626944687391254", - "outputQty": "352507699552038990385650", - "swapFee": "281311743095661727242", + "inputIndex": 0, + "inputQty": "2257976514616258985984", + "outputQty0": "2247698459037571280882", + "outputQty": "2242403036358924760078", + "swapFee": "1777515055034518348", "mpReserves": [ - "48357374213385627218545801", - "31903517115631656784314314", - "32784535917411930114587209" + "47350379010702558515488518", + "13925128543617911568577488", + "42729667239119021464711746" ], "fpReserves": [ - "13999157366280127846545213", - "8047079200043329354739744" + "4811451013100349935759927", + "3819937809654530100963554" ], - "mAssetSupply": "113038186677392671597235668", - "LPTokenSupply": "21918997666841506439190006" + "mAssetSupply": "103868668650902304636043466", + "LPTokenSupply": "8538176155502395578563440" }, { "type": "swap_fp_to_mp", - "inputQty": "15497769461095707181056", + "inputQty": "196711442745099617828864", "outputIndex": 0, - "outputQty": "15568912003817034075557", + "outputQty": "197734672627921349770937", "swapFee": "0", - "redemptionFee": "6224828694739711170", + "redemptionFee": "118173492428154965895", "mpReserves": [ - "48341805301381810184470244", - "31903517115631656784314314", - "32784535917411930114587209" + "47152644338074637165717581", + "13925128543617911568577488", + "42729667239119021464711746" ], "fpReserves": [ - "13983595294543278568619960", - "8062576969504425061920800" + "4614495192386758325933366", + "4016649252399629718792418" ], - "mAssetSupply": "113022630830484517059021585", - "LPTokenSupply": "21918997666841506439190006" + "mAssetSupply": "103671831003681141181182800", + "LPTokenSupply": "8538176155502395578563440" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "116578051918223124725760", - "outputQty0": "116479964623148896397080", - "outputQty": "115631539926576647845543", + "inputQty": "17980398759934884315136", + "outputQty0": "17899084857308241633999", + "outputQty": "17867702766426795287392", + "swapFee": "14158838966302890864", "mpReserves": [ - "48458383353300033309196004", - "31903517115631656784314314", - "32784535917411930114587209" + "47170624736834572050032717", + "13925128543617911568577488", + "42729667239119021464711746" ], "fpReserves": [ - "14100075259166427465017040", - "8062576969504425061920800" + "4632394277244066567567365", + "3998781549633202923505026" ], - "mAssetSupply": "113139110795107665955418665", - "LPTokenSupply": "22034629206768083087035549" + "mAssetSupply": "103689730088538449422816799", + "LPTokenSupply": "8538177571386292208852526" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "450281690611012096491520", - "outputQty0": "450531725490584789749507", - "outputQty": "447219350868400706226788", + "inputQty": "18824530341016190976", + "outputQty0": "19137671308760852513", + "outputQty": "19103576525976136998", + "swapFee": "15138278758399289", "mpReserves": [ - "48458383353300033309196004", - "32353798806242668880805834", - "32784535917411930114587209" + "47170624736834572050032717", + "13925147368148252584768464", + "42729667239119021464711746" ], "fpReserves": [ - "14550606984657012254766547", - "8062576969504425061920800" + "4632413414915375328419878", + "3998762446056676947368028" ], - "mAssetSupply": "113589642520598250745168172", - "LPTokenSupply": "22481848557636483793262337" + "mAssetSupply": "103689749226209758183669312", + "LPTokenSupply": "8538177572900120084692454" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "8186016147497799385088", - "outputQty0": "8189953242826104834818", - "outputQty": "8146550233083246392979", - "swapFee": "6503431956046996483", + "type": "redeem", + "outputIndex": 2, + "inputQty": "96494491960420996218880", + "outputQty0": "97528136408271595672387", + "outputQty": "97821229717923979206480", + "swapFee1": "57896695176252597731", + "swapFee2": "58516881844962957403", "mpReserves": [ - "48458383353300033309196004", - "32353798806242668880805834", - "32792721933559427913972297" + "47170624736834572050032717", + "13925147368148252584768464", + "42631846009401097485505266" ], "fpReserves": [ - "14558796937899838359601365", - "8054430419271341815527821" + "4534885278507103732747491", + "3998762446056676947368028" ], - "mAssetSupply": "113597832473841076850002990", - "LPTokenSupply": "22481849207979679397961985" + "mAssetSupply": "103592279606683331550954328", + "LPTokenSupply": "8441688870609216713733347" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1242059763525215059968", - "outputQty0": "1241030394336209373065", - "outputQty": "1234442563060354781668", - "swapFee": "985465574912060978", + "type": "redeem", + "outputIndex": 0, + "inputQty": "945339515664584409088", + "outputQty0": "955439280829739767196", + "outputQty": "959209525700475664866", + "swapFee1": "567203709398750645", + "swapFee2": "573263568497843860", "mpReserves": [ - "48459625413063558524255972", - "32353798806242668880805834", - "32792721933559427913972297" + "47169665527308871574367851", + "13925147368148252584768464", + "42631846009401097485505266" ], "fpReserves": [ - "14560037968294174568974430", - "8053195976708281460746153" + "4533929839226273992980295", + "3998762446056676947368028" ], - "mAssetSupply": "113599073504235413059376055", - "LPTokenSupply": "22481849306526236889168082" + "mAssetSupply": "103591324740666070309030992", + "LPTokenSupply": "8440743587813923069199323" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "940904352266462080", - "outputQty0": "941408292388502712", - "outputQty": "934429966789359222", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "63469196004525184", + "outputQty0": "63181798534333597", + "outputQty": "63078418978470580", + "swapFee": "49981139667155", "mpReserves": [ - "48459625413063558524255972", - "32353799747147021147267914", - "32792721933559427913972297" + "47169665590778067578893035", + "13925147368148252584768464", + "42631846009401097485505266" ], "fpReserves": [ - "14560038909702466957477142", - "8053195976708281460746153" + "4533929902408072527313892", + "3998762382978257968897448" ], - "mAssetSupply": "113599074445643705447878767", - "LPTokenSupply": "22481850240956203678527304" + "mAssetSupply": "103591324803847868843364589", + "LPTokenSupply": "8440743587818921183166038" }, { - "type": "swap_fp_to_mp", - "inputQty": "15393553077216024576", - "outputIndex": 1, - "outputQty": "15448881257274592463", - "swapFee": "0", - "redemptionFee": "6185336355547205", + "type": "redeem", + "outputIndex": 0, + "inputQty": "3689203907002430464", + "outputQty0": "3728617393642121392", + "outputQty": "3743330550754858252", + "swapFee1": "2213522344201458", + "swapFee2": "2237170436185272", "mpReserves": [ - "48459625413063558524255972", - "32353784298265763872675451", - "32792721933559427913972297" + "47169661847447516824034783", + "13925147368148252584768464", + "42631846009401097485505266" ], "fpReserves": [ - "14560023446361578089463036", - "8053211370261358676770729" + "4533926173790678885192500", + "3998762382978257968897448" ], - "mAssetSupply": "113599058988488152935411866", - "LPTokenSupply": "22481850240956203678527304" + "mAssetSupply": "103591321077467645637428469", + "LPTokenSupply": "8440739898836366415155719" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "59439941865256469397504", - "outputQty0": "59471621939020777949182", - "outputQty": "59030359340037383908272", + "type": "swap_fp_to_mp", + "inputQty": "50398890260325056", + "outputIndex": 1, + "outputQty": "49587736667544079", + "swapFee": "0", + "redemptionFee": "30264662279240", "mpReserves": [ - "48459625413063558524255972", - "32413224240131020342072955", - "32792721933559427913972297" + "47169661847447516824034783", + "13925147318560515917224385", + "42631846009401097485505266" ], "fpReserves": [ - "14619495068300598867412218", - "8053211370261358676770729" + "4533926123349575086458570", + "3998762433377148229222504" ], - "mAssetSupply": "113658530610427173713361048", - "LPTokenSupply": "22540880600296241062435576" + "mAssetSupply": "103591321027056806500973779", + "LPTokenSupply": "8440739898836366415155719" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "258213549098732486656", - "outputQty0": "258350493172554150276", - "outputQty": "256431769175231549926", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "245140644310852130832384", + "outputQty0": "244025884586277722550990", + "outputQty": "243530584282526961450844", + "swapFee": "193025122100823568698", "mpReserves": [ - "48459625413063558524255972", - "32413482453680119074559611", - "32792721933559427913972297" + "47414802491758368954867167", + "13925147318560515917224385", + "42631846009401097485505266" ], "fpReserves": [ - "14619753418793771421562494", - "8053211370261358676770729" + "4777952007935852809009560", + "3755231849094621267771660" ], - "mAssetSupply": "113658788960920346267511324", - "LPTokenSupply": "22541137032065416293985502" + "mAssetSupply": "103835346911643084223524769", + "LPTokenSupply": "8440759201348576497512588" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "468057710778469931024384", - "outputQty0": "468274503629375130810595", - "outputQty": "465553903549250640799646", - "swapFee": "371816587177231590634", + "type": "swap_fp_to_mp", + "inputQty": "818535647295336867692544", + "outputIndex": 2, + "outputQty": "821186890167748437510753", + "swapFee": "0", + "redemptionFee": "491280031274560419711", "mpReserves": [ - "48459625413063558524255972", - "32413482453680119074559611", - "33260779644337897844996681" + "47414802491758368954867167", + "13925147318560515917224385", + "41810659119233349047994513" ], "fpReserves": [ - "15088027922423146552373089", - "7587657466712108035971083" + "3959151955811585442824452", + "4573767496389958135464204" ], - "mAssetSupply": "114127063464549721398321919", - "LPTokenSupply": "22541174213724134017144565" + "mAssetSupply": "103017038139550091417759372", + "LPTokenSupply": "8440759201348576497512588" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "265385162335636617691136", - "outputQty0": "265168138352973388035070", - "outputQty": "263100024561689840168351", + "type": "redeem", + "outputIndex": 2, + "inputQty": "60451413082232438784", + "outputQty0": "61043241470930955016", + "outputQty": "61216861371778987132", + "swapFee1": "36270847849339463", + "swapFee2": "36625944882558573", "mpReserves": [ - "48725010575399195141947108", - "32413482453680119074559611", - "33260779644337897844996681" + "47414802491758368954867167", + "13925147318560515917224385", + "41810597902371977269007381" ], "fpReserves": [ - "15353196060776119940408159", - "7587657466712108035971083" + "3959090912570114511869436", + "4573767496389958135464204" ], - "mAssetSupply": "114392231602902694786356989", - "LPTokenSupply": "22804274238285823857312916" + "mAssetSupply": "103016977132934565369362929", + "LPTokenSupply": "8440698753562579050007750" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "226265732233752163123200", - "outputQty0": "226078290952045282677242", - "outputQty": "224554480407404231262462", - "swapFee": "179441278260700570375", + "type": "swap_fp_to_mp", + "inputQty": "11809622852297706962944", + "outputIndex": 1, + "outputQty": "11600526564718890019786", + "swapFee": "0", + "redemptionFee": "7078812304394866813", "mpReserves": [ - "48951276307632947305070308", - "32413482453680119074559611", - "33260779644337897844996681" + "47414802491758368954867167", + "13913546791995797027204599", + "41810597902371977269007381" ], "fpReserves": [ - "15579274351728165223085401", - "7363102986304703804708621" + "3947292892062789733846602", + "4585577119242255842427148" ], - "mAssetSupply": "114618309893854740069034231", - "LPTokenSupply": "22804292182413649927369953" + "mAssetSupply": "103005186191239544986206908", + "LPTokenSupply": "8440698753562579050007750" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "89668825271078960", - "outputQty0": "90338365496626274", - "outputQty": "90260797750267239", - "swapFee1": "53801295162647", - "swapFee2": "36135346198650", + "type": "mint", + "inputIndex": 0, + "inputQty": "15172305806754047852544", + "outputQty0": "15102347692434487186137", + "outputQty": "14947152794081463317719", "mpReserves": [ - "48951276307632947305070308", - "32413482453680119074559611", - "33260779554077100094729442" + "47429974797565123002719711", + "13913546791995797027204599", + "41810597902371977269007381" ], "fpReserves": [ - "15579274261389799726459127", - "7363102986304703804708621" + "3962395239755224221032739", + "4585577119242255842427148" ], - "mAssetSupply": "114618309803552509918606607", - "LPTokenSupply": "22804292092750204785807257" + "mAssetSupply": "103020288538931979473393045", + "LPTokenSupply": "8455645906356660513325469" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1813197612842366070161408", - "outputQty0": "1814080475376270841280537", - "outputQty": "1796407302633192492538995", - "swapFee": "1439323554578310746232", + "type": "swap_fp_to_mp", + "inputQty": "337748212850421056", + "outputIndex": 0, + "outputQty": "338778803741937865", + "swapFee": "0", + "redemptionFee": "202451263581430", "mpReserves": [ - "48951276307632947305070308", - "34226680066522485144721019", - "33260779554077100094729442" + "47429974458786319260781846", + "13913546791995797027204599", + "41810597902371977269007381" ], "fpReserves": [ - "17393354736766070567739664", - "5566695683671511312169626" + "3962394902336451585314893", + "4585577456990468692848204" ], - "mAssetSupply": "116432390278928780759887144", - "LPTokenSupply": "22804436025105662616881880" + "mAssetSupply": "103020288201715658101256629", + "LPTokenSupply": "8455645906356660513325469" }, { "type": "swap_fp_to_mp", - "inputQty": "1238821658189454972551168", - "outputIndex": 1, - "outputQty": "1250079194404132824891339", + "inputQty": "49282179844314375389184", + "outputIndex": 2, + "outputQty": "49370197898983518891664", "swapFee": "0", - "redemptionFee": "500463445367825414117", + "redemptionFee": "29538131240971969485", "mpReserves": [ - "48951276307632947305070308", - "32976600872118352319829680", - "33260779554077100094729442" + "47429974458786319260781846", + "13913546791995797027204599", + "41761227704472993750115717" ], "fpReserves": [ - "16142196123346507032445470", - "6805517341860966284720794" + "3913164683601498302838820", + "4634859636834783068237388" ], - "mAssetSupply": "115181732128954585050007067", - "LPTokenSupply": "22804436025105662616881880" + "mAssetSupply": "102971087521111945790750041", + "LPTokenSupply": "8455645906356660513325469" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "434411473382826770432", - "outputQty0": "434620170363832799991", - "outputQty": "430917169685816459385", + "inputIndex": 0, + "inputQty": "3778707918285620379648", + "outputQty0": "3761270164809280847817", + "outputQty": "3722903793278147179382", "mpReserves": [ - "48951276307632947305070308", - "32976600872118352319829680", - "33261213965550482921499874" + "47433753166704604881161494", + "13913546791995797027204599", + "41761227704472993750115717" ], "fpReserves": [ - "16142630743516870865245461", - "6805517341860966284720794" + "3916925953766307583686637", + "4634859636834783068237388" ], - "mAssetSupply": "115182166749124948882807058", - "LPTokenSupply": "22804866942275348433341265" + "mAssetSupply": "102974848791276755071597858", + "LPTokenSupply": "8459368810149938660504851" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4476257836964338728960", - "outputQty0": "4478407368213721477075", - "outputQty": "4440248114671033216927", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "524953382914059730944", + "outputQty0": "522530681991181733003", + "outputQty": "522701306650367224302", + "swapFee": "413759697090023002", "mpReserves": [ - "48951276307632947305070308", - "32976600872118352319829680", - "33265690223387447260228834" + "47434278120087518940892438", + "13913546791995797027204599", + "41761227704472993750115717" ], "fpReserves": [ - "16147109150885084586722536", - "6805517341860966284720794" + "3917448484448298765419640", + "4634336935528132701013086" ], - "mAssetSupply": "115186645156493162604284133", - "LPTokenSupply": "22809307190390019466558192" + "mAssetSupply": "102975371321958746253330861", + "LPTokenSupply": "8459368851525908369507151" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "96955964723312296198144", - "outputQty0": "97729337241643894187596", - "outputQty": "97642974371491567221418", - "swapFee1": "58173578833987377718", - "swapFee2": "39091734896657557675", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "910288074147327104", + "outputQty0": "925233558079823118", + "outputQty": "925534897119525738", + "swapFee": "732634652363066", "mpReserves": [ - "48951276307632947305070308", - "32976600872118352319829680", - "33168047249015955693007416" + "47434278120087518940892438", + "13913547702283871174531703", + "41761227704472993750115717" ], "fpReserves": [ - "16049379813643440692534940", - "6805517341860966284720794" + "3917449409681856845242758", + "4634336009993235581487348" ], - "mAssetSupply": "115088954910986415367654212", - "LPTokenSupply": "22712357043024590569097819" + "mAssetSupply": "102975372247192304333153979", + "LPTokenSupply": "8459368851599171834743457" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "6561988838257687789568", - "outputQty0": "6565345107704861930532", - "outputQty": "6509545194944180718817", + "inputQty": "3112930773534157307904", + "outputQty0": "3164028462236272453764", + "outputQty": "3165042777159165770755", + "swapFee": "2505392714007881828", "mpReserves": [ - "48951276307632947305070308", - "32983162860956610007619248", - "33168047249015955693007416" + "47434278120087518940892438", + "13916660633057405331839607", + "41761227704472993750115717" ], "fpReserves": [ - "16055945158751145554465472", - "6805517341860966284720794" + "3920613438144093117696522", + "4631170967216076415716593" ], - "mAssetSupply": "115095520256094120229584744", - "LPTokenSupply": "22718866588219534749816636" + "mAssetSupply": "102978536275654540605607743", + "LPTokenSupply": "8459369102138443235531639" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "24703546902421992112128", - "outputQty0": "24900297284911059315098", - "outputQty": "24877593482152579557369", - "swapFee1": "14822128141453195267", - "swapFee2": "9960118913964423726", + "outputIndex": 2, + "inputQty": "228965086297263425191936", + "outputQty0": "231161608685058285380162", + "outputQty": "231812927821640598483495", + "swapFee1": "137379051778358055115", + "swapFee2": "138696965211034971228", "mpReserves": [ - "48951276307632947305070308", - "32958285267474457428061879", - "33168047249015955693007416" + "47434278120087518940892438", + "13916660633057405331839607", + "41529414776651353151632222" ], "fpReserves": [ - "16031044861466234495150374", - "6805517341860966284720794" + "3689451829459034832316360", + "4631170967216076415716593" ], - "mAssetSupply": "115070629918928123134693372", - "LPTokenSupply": "22694164523529926903024034" + "mAssetSupply": "102747513363934693355198809", + "LPTokenSupply": "8230417753746357646145214" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "49741710383018898620416", - "outputQty0": "50137414491899557957682", - "outputQty": "50091538846840863690116", - "swapFee1": "29845026229811339172", - "swapFee2": "20054965796759823183", + "outputIndex": 2, + "inputQty": "283175829646696530313216", + "outputQty0": "285817104586918738487438", + "outputQty": "286609490717085837905490", + "swapFee1": "169905497788017918187", + "swapFee2": "171490262752151243092", "mpReserves": [ - "48951276307632947305070308", - "32908193728627616564371763", - "33168047249015955693007416" + "47434278120087518940892438", + "13916660633057405331839607", + "41242805285934267313726732" ], "fpReserves": [ - "15980907446974334937192692", - "6805517341860966284720794" + "3403634724872116093828922", + "4631170967216076415716593" ], - "mAssetSupply": "115020512559402020336558873", - "LPTokenSupply": "22644425797649530985537535" + "mAssetSupply": "102461867749610526767954463", + "LPTokenSupply": "7947258914649439917623816" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1421333614251029823488", - "outputQty0": "1422069239759272050488", - "outputQty": "1410211052571174549211", - "swapFee": "1128005202430409811", + "inputIndex": 2, + "inputQty": "20876507638010753024", + "outputQty0": "20806820019397345490", + "outputQty": "20834307575625735575", + "swapFee": "16484214746471612", "mpReserves": [ - "48951276307632947305070308", - "32909615062241867594195251", - "33168047249015955693007416" + "47434278120087518940892438", + "13916660633057405331839607", + "41242826162441905324479756" ], "fpReserves": [ - "15982329516214094209243180", - "6804107130808395110171583" + "3403655531692135491174412", + "4631150132908500789981018" ], - "mAssetSupply": "115021934628641779608609361", - "LPTokenSupply": "22644425910450051228578516" + "mAssetSupply": "102461888556430546165299953", + "LPTokenSupply": "7947258916297861392270977" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "17895546049868103680", - "outputQty0": "17880870147406600010", - "outputQty": "17731730223542346107", - "swapFee": "14183340609555470", + "type": "mint", + "inputIndex": 2, + "inputQty": "101589997900894602002432", + "outputQty0": "101249982005796003976453", + "outputQty": "100262948401465106731645", "mpReserves": [ - "48951294203178997173173988", - "32909615062241867594195251", - "33168047249015955693007416" + "47434278120087518940892438", + "13916660633057405331839607", + "41344416160342799926482188" ], "fpReserves": [ - "15982347397084241615843190", - "6804089399078171567825476" + "3504905513697931495150865", + "4631150132908500789981018" ], - "mAssetSupply": "115021952509511927015209371", - "LPTokenSupply": "22644425911868385289534063" + "mAssetSupply": "102563138538436342169276406", + "LPTokenSupply": "8047521864699326499002622" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "153133514147279", - "outputQty0": "154351091097277", - "outputQty": "154209547293055", - "swapFee1": "91880108488", - "swapFee2": "61740436438", + "outputIndex": 0, + "inputQty": "469865073155811940761600", + "outputQty0": "474087805763137953239103", + "outputQty": "475991156058365104980119", + "swapFee1": "281919043893487164456", + "swapFee2": "284452683457882771943", "mpReserves": [ - "48951294203178997173173988", - "32909615062087658046902196", - "33168047249015955693007416" + "46958286964029153835912319", + "13916660633057405331839607", + "41344416160342799926482188" ], "fpReserves": [ - "15982347396929890524745913", - "6804089399078171567825476" + "3030817707934793541911762", + "4631150132908500789981018" ], - "mAssetSupply": "115021952509357637664548532", - "LPTokenSupply": "22644425911715260963397632" + "mAssetSupply": "102089335185356662098809246", + "LPTokenSupply": "7577684983447903906957467" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "665965815309643546624", - "outputQty0": "666310433237500312641", - "outputQty": "660752247186510134598", - "swapFee": "528526117323501296", + "type": "redeem", + "outputIndex": 1, + "inputQty": "196383394881218730262528", + "outputQty0": "198052902446334158232058", + "outputQty": "194757567975981303483414", + "swapFee1": "117830036928731238157", + "swapFee2": "118831741467800494939", "mpReserves": [ - "48951294203178997173173988", - "32910281027902967690448820", - "33168047249015955693007416" + "46958286964029153835912319", + "13721903065081424028356193", + "41344416160342799926482188" ], "fpReserves": [ - "15983013707363128025058554", - "6803428646830985057690878" + "2832764805488459383679704", + "4631150132908500789981018" ], - "mAssetSupply": "115022618819790875164861173", - "LPTokenSupply": "22644425964567872695747761" + "mAssetSupply": "101891401114651795741072127", + "LPTokenSupply": "7381313371570378049818754" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "7796798927096298602496", - "outputQty0": "7800830707566982744061", - "outputQty": "7735663201610960597499", - "swapFee": "6187711073261959255", + "inputQty": "264409805484331014029312", + "outputQty0": "268700370237040668728143", + "outputQty": "266255798078872437484186", "mpReserves": [ - "48951294203178997173173988", - "32918077826830063989051316", - "33168047249015955693007416" + "46958286964029153835912319", + "13986312870565755042385505", + "41344416160342799926482188" ], "fpReserves": [ - "15990814538070695007802615", - "6795692983629374097093379" + "3101465175725500052407847", + "4631150132908500789981018" ], - "mAssetSupply": "115030419650498442147605234", - "LPTokenSupply": "22644426583338980021943686" + "mAssetSupply": "102160101484888836409800270", + "LPTokenSupply": "7647569169649250487302940" }, { - "type": "swap_fp_to_mp", - "inputQty": "5742755173679682560", - "outputIndex": 2, - "outputQty": "5781441912719986846", - "swapFee": "0", - "redemptionFee": "2314626569387715", + "type": "redeem", + "outputIndex": 1, + "inputQty": "7143600496359404544", + "outputQty0": "7206464611773710627", + "outputQty": "7089327667213408421", + "swapFee1": "4286160297815642", + "swapFee2": "4323878767064226", "mpReserves": [ - "48951294203178997173173988", - "32918077826830063989051316", - "33168041467574042973020570" + "46958286964029153835912319", + "13986305781238087828977084", + "41344416160342799926482188" ], "fpReserves": [ - "15990808751504271538514938", - "6795698726384547776775939" + "3101457969260888278697220", + "4631150132908500789981018" ], - "mAssetSupply": "115030413866246645247705272", - "LPTokenSupply": "22644426583338980021943686" + "mAssetSupply": "102160094282748103403153869", + "LPTokenSupply": "7647562026477370157679960" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5240491431181182566400", - "outputQty0": "5243198389897318412671", - "outputQty": "5198673793350188384870", + "type": "redeem", + "outputIndex": 0, + "inputQty": "504494665804210856001536", + "outputQty0": "508704579002488955345026", + "outputQty": "510693150682800863196697", + "swapFee1": "302696799482526513600", + "swapFee2": "305222747401493373207", "mpReserves": [ - "48951294203178997173173988", - "32923318318261245171617716", - "33168041467574042973020570" + "46447593813346352972715622", + "13986305781238087828977084", + "41344416160342799926482188" ], "fpReserves": [ - "15996051949894168856927609", - "6795698726384547776775939" + "2592753390258399323352194", + "4631150132908500789981018" ], - "mAssetSupply": "115035657064636542566117943", - "LPTokenSupply": "22649625257132330210328556" + "mAssetSupply": "101651694926493015941182050", + "LPTokenSupply": "7143097630353107554329784" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "4015335064977286365184", - "outputQty0": "4047295628659583727751", - "outputQty": "4043588216054254197582", - "swapFee1": "2409201038986371819", - "swapFee2": "1618918251463833491", + "inputQty": "4464469458406183272448", + "outputQty0": "4499524373982820790570", + "outputQty": "4427220419306396618333", + "swapFee1": "2678681675043709963", + "swapFee2": "2699714624389692474", "mpReserves": [ - "48951294203178997173173988", - "32919274730045190917420134", - "33168041467574042973020570" + "46447593813346352972715622", + "13981878560818781432358751", + "41344416160342799926482188" ], "fpReserves": [ - "15992004654265509273199858", - "6795698726384547776775939" + "2588253865884416502561624", + "4631150132908500789981018" ], - "mAssetSupply": "115031611387926134446223683", - "LPTokenSupply": "22645610162987456822600553" + "mAssetSupply": "101647198101833657510083954", + "LPTokenSupply": "7138633428762868875428332" }, { - "type": "mint", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "67081676700795860418560", + "outputQty0": "68131506013515861454360", + "outputQty": "68365407014171244427010", + "swapFee": "54044080695310733718", + "mpReserves": [ + "46447593813346352972715622", + "14048960237519577292777311", + "41344416160342799926482188" + ], + "fpReserves": [ + "2656385371897932364015984", + "4562784725894329545554008" + ], + "mAssetSupply": "101715329607847173371538314", + "LPTokenSupply": "7138638833170938406501703" + }, + { + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "5948131864790037504", - "outputQty0": "5951023033028590239", - "outputQty": "5900489306875827896", + "inputQty": "1013805954758504909635584", + "outputQty0": "1010315065015710177179054", + "outputQty": "1011290618719112277169262", + "swapFee": "800592705520762657003", "mpReserves": [ - "48951294203178997173173988", - "32919274730045190917420134", - "33168047415705907763058074" + "46447593813346352972715622", + "14048960237519577292777311", + "42358222115101304836117772" ], "fpReserves": [ - "15992010605288542301790097", - "6795698726384547776775939" + "3666700436913642541195038", + "3551494107175217268384746" ], - "mAssetSupply": "115031617338949167474813922", - "LPTokenSupply": "22645616063476763698428449" + "mAssetSupply": "102725644672862883548717368", + "LPTokenSupply": "7138718892441490482767403" }, { "type": "swap_fp_to_mp", - "inputQty": "274212262267352481792", - "outputIndex": 0, - "outputQty": "276420472688545018817", + "inputQty": "2691195032089007104", + "outputIndex": 1, + "outputQty": "2647971768310908752", "swapFee": "0", - "redemptionFee": "110521757173374048", + "redemptionFee": "1615058567817354", "mpReserves": [ - "48951017782706308628155171", - "32919274730045190917420134", - "33168047415705907763058074" + "46447593813346352972715622", + "14048957589547808981868559", + "42358222115101304836117772" ], "fpReserves": [ - "15991734300895608866668489", - "6795972938646815129257731" + "3666697745149362845604361", + "3551496798370249357391850" ], - "mAssetSupply": "115031341145077991213066362", - "LPTokenSupply": "22645616063476763698428449" + "mAssetSupply": "102725641982713662420944045", + "LPTokenSupply": "7138718892441490482767403" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1414047373033482747904", - "outputQty0": "1414777869371490317053", - "outputQty": "1402764214591884409122", + "inputQty": "79954204189890150400", + "outputQty0": "81227724443889725308", + "outputQty": "80325007346272108661", "mpReserves": [ - "48951017782706308628155171", - "32920688777418224400168038", - "33168047415705907763058074" + "46447593813346352972715622", + "14049037543751998872018959", + "42358222115101304836117772" ], "fpReserves": [ - "15993149078764980356985542", - "6795972938646815129257731" + "3666778972873806735329669", + "3551496798370249357391850" ], - "mAssetSupply": "115032755922947362703383415", - "LPTokenSupply": "22647018827691355582837571" + "mAssetSupply": "102725723210438106310669353", + "LPTokenSupply": "7138799217448836754876064" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "4494759161597355098112", - "outputQty0": "4530531705409027824953", - "outputQty": "4526380560972983336208", - "swapFee1": "2696855496958413058", - "swapFee2": "1812212682163611129", + "type": "swap_fp_to_mp", + "inputQty": "18263591403205248942080", + "outputIndex": 2, + "outputQty": "18320513158783945542084", + "swapFee": "0", + "redemptionFee": "10960106503765675806", "mpReserves": [ - "48951017782706308628155171", - "32916162396857251416831830", - "33168047415705907763058074" + "46447593813346352972715622", + "14049037543751998872018959", + "42339901601942520890575688" ], "fpReserves": [ - "15988618547059571329160589", - "6795972938646815129257731" + "3648512128700863942319100", + "3569760389773454606333930" ], - "mAssetSupply": "115028227203454635839169591", - "LPTokenSupply": "22642524338215307923580764" + "mAssetSupply": "102707467326371667283334590", + "LPTokenSupply": "7138799217448836754876064" }, { "type": "swap_fp_to_mp", - "inputQty": "186723175259021401653248", + "inputQty": "195903817405590419800064", "outputIndex": 2, - "outputQty": "187928913714759984978929", + "outputQty": "196433515391866913295036", "swapFee": "0", - "redemptionFee": "75238787841107580549", + "redemptionFee": "117516980007496034130", "mpReserves": [ - "48951017782706308628155171", - "32916162396857251416831830", - "32980118501991147778079145" + "46447593813346352972715622", + "14049037543751998872018959", + "42143468086550653977280652" ], "fpReserves": [ - "15800521577456802377787073", - "6982696113905836530910979" + "3452650495355037218768794", + "3765664207179045026133994" ], - "mAssetSupply": "114840205472639707995376624", - "LPTokenSupply": "22642524338215307923580764" + "mAssetSupply": "102511723210005848055818414", + "LPTokenSupply": "7138799217448836754876064" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "528876569084858329989120", - "outputQty0": "528433784603734327714384", - "outputQty": "523995610810054528601806", + "inputIndex": 2, + "inputQty": "1335612584689203398311936", + "outputQty0": "1330797669057012777311475", + "outputQty": "1315788147004897420832896", "mpReserves": [ - "49479894351791166958144291", - "32916162396857251416831830", - "32980118501991147778079145" + "46447593813346352972715622", + "14049037543751998872018959", + "43479080671239857375592588" ], "fpReserves": [ - "16328955362060536705501457", - "6982696113905836530910979" + "4783448164412049996080269", + "3765664207179045026133994" ], - "mAssetSupply": "115368639257243442323091008", - "LPTokenSupply": "23166519949025362452182570" + "mAssetSupply": "103842520879062860833129889", + "LPTokenSupply": "8454587364453734175708960" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "487762352168368842211328", - "outputQty0": "488009105527015101714502", - "outputQty": "483615135837075956912945", - "swapFee": "387078204451930554097", + "type": "mint", + "inputIndex": 0, + "inputQty": "5423615925959947976704", + "outputQty0": "5400141517265420816958", + "outputQty": "5336608208561319536941", "mpReserves": [ - "49479894351791166958144291", - "33403924749025620259043158", - "32980118501991147778079145" + "46453017429272312920692326", + "14049037543751998872018959", + "43479080671239857375592588" ], "fpReserves": [ - "16816964467587551807215959", - "6499080978068760573998034" + "4788848305929315416897227", + "3765664207179045026133994" ], - "mAssetSupply": "115856648362770457424805510", - "LPTokenSupply": "23166558656845807645237979" + "mAssetSupply": "103847921020580126253946847", + "LPTokenSupply": "8459923972662295495245901" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "58414150242868609024", - "outputQty0": "58442492952277562284", - "outputQty": "57871166469048158014", - "swapFee": "46337163642794370", + "inputQty": "141317170127819718656", + "outputQty0": "143624938461746727994", + "outputQty": "143276254244590717975", + "swapFee": "113547933370618540", "mpReserves": [ - "49479894351791166958144291", - "33403983163175863127652182", - "32980118501991147778079145" + "46453017429272312920692326", + "14049178860922126691737615", + "43479080671239857375592588" ], "fpReserves": [ - "16817022910080504084778243", - "6499023106902291525840020" + "4788991930867777163625221", + "3765520930924800435416019" ], - "mAssetSupply": "115856706805263409702367794", - "LPTokenSupply": "23166558661479524009517416" + "mAssetSupply": "103848064645518588000674841", + "LPTokenSupply": "8459923984017088832307755" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "353752125539718252199936", - "outputQty0": "356703099640851107066349", - "outputQty": "356363385454625171789386", - "swapFee1": "212251275323830951319", - "swapFee2": "142681239856340442826", + "type": "mint", + "inputIndex": 1, + "inputQty": "2433019267062489939968", + "outputQty0": "2472744048338909382932", + "outputQty": "2443645081825083116756", "mpReserves": [ - "49479894351791166958144291", - "33403983163175863127652182", - "32623755116536522606289759" + "46453017429272312920692326", + "14051611880189189181677583", + "43479080671239857375592588" ], "fpReserves": [ - "16460319810439652977711894", - "6499023106902291525840020" + "4791464674916116073008153", + "3765520930924800435416019" ], - "mAssetSupply": "115500146386862414935744271", - "LPTokenSupply": "22812827761067338140412611" + "mAssetSupply": "103850537389566926910057773", + "LPTokenSupply": "8462367629098913915424511" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "101310542410378", - "outputQty0": "101224974061643", - "outputQty": "100331290579900", + "type": "redeem", + "outputIndex": 0, + "inputQty": "169597598139761331011584", + "outputQty0": "171504613479099915507380", + "outputQty": "172144352187322847354526", + "swapFee1": "101758558883856798606", + "swapFee2": "102902768087459949304", "mpReserves": [ - "49479894351892477500554669", - "33403983163175863127652182", - "32623755116536522606289759" + "46280873077084990073337800", + "14051611880189189181677583", + "43479080671239857375592588" ], "fpReserves": [ - "16460319810540877951773537", - "6499023106902291525840020" + "4619960061437016157500773", + "3765520930924800435416019" ], - "mAssetSupply": "115500146386963639909805914", - "LPTokenSupply": "22812827761167669430992511" + "mAssetSupply": "103679135678855914454499697", + "LPTokenSupply": "8292780206815040970092787" }, { - "type": "swap_fp_to_mp", - "inputQty": "2911862884930907275264", - "outputIndex": 2, - "outputQty": "2934402860242561560108", - "swapFee": "0", - "redemptionFee": "1174898629293017266", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "187790372495407153152", + "outputQty0": "190843636276762478187", + "outputQty": "190428341373488863352", + "swapFee": "150893665962274148", "mpReserves": [ - "49479894351892477500554669", - "33403983163175863127652182", - "32620820713676280044729651" + "46280873077084990073337800", + "14051799670561684588830735", + "43479080671239857375592588" ], "fpReserves": [ - "16457382563967645408607331", - "6501934969787222433115284" + "4620150905073292919978960", + "3765330502583426946552667" ], - "mAssetSupply": "115497210315289036659656974", - "LPTokenSupply": "22812827761167669430992511" + "mAssetSupply": "103679326522492191216977884", + "LPTokenSupply": "8292780221904407566320201" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "6285959206696103444480", - "outputQty0": "6289533139071562327370", - "outputQty": "6234016861066542494921", + "type": "redeem", + "outputIndex": 1, + "inputQty": "227316038014808497324032", + "outputQty0": "229843237932387656266859", + "outputQty": "225970012873931825170489", + "swapFee1": "136389622808885098394", + "swapFee2": "137905942759432593760", "mpReserves": [ - "49479894351892477500554669", - "33403983163175863127652182", - "32627106672882976148174131" + "46280873077084990073337800", + "13825829657687752763660246", + "43479080671239857375592588" ], "fpReserves": [ - "16463672097106716970934701", - "6501934969787222433115284" + "4390307667140905263712101", + "3765330502583426946552667" ], - "mAssetSupply": "115503499848428108221984344", - "LPTokenSupply": "22819061778028735973487432" + "mAssetSupply": "103449621190502562993304785", + "LPTokenSupply": "8065477822851879957506008" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "4352528076975003648", - "outputQty0": "4388657926672316222", - "outputQty": "4384833651944986210", - "swapFee1": "2611516846185002", - "swapFee2": "1755463170668926", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "3986548764343006658560", + "outputQty0": "3971376128064609045175", + "outputQty": "3964099674091821958207", + "swapFee": "3140483974761922122", "mpReserves": [ - "49479894351892477500554669", - "33403978778342211182665972", - "32627106672882976148174131" + "46280873077084990073337800", + "13825829657687752763660246", + "43483067220004200382251148" ], "fpReserves": [ - "16463667708448790298618479", - "6501934969787222433115284" + "4394279043268969872757276", + "3761366402909335124594460" ], - "mAssetSupply": "115503495461525644720337048", - "LPTokenSupply": "22819057425761810683102284" + "mAssetSupply": "103453592566630627602349960", + "LPTokenSupply": "8065478136900277433698220" }, { - "type": "swap_fp_to_mp", - "inputQty": "377229937012027642871808", - "outputIndex": 1, - "outputQty": "379953149637078002665037", - "swapFee": "0", - "redemptionFee": "152116248688136144716", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "37737362369574214828032", + "outputQty0": "38369869373977724785479", + "outputQty": "38296832928315682289077", + "swapFee": "30341547116180329559", "mpReserves": [ - "49479894351892477500554669", - "33024025628705133180000935", - "32627106672882976148174131" + "46280873077084990073337800", + "13863567020057326978488278", + "43483067220004200382251148" ], "fpReserves": [ - "16083377086728449936826034", - "6879164906799250075987092" + "4432648912642947597542755", + "3723069569981019442305383" ], - "mAssetSupply": "115123356956053992494689319", - "LPTokenSupply": "22819057425761810683102284" + "mAssetSupply": "103491962436004605327135439", + "LPTokenSupply": "8065481171054989051731175" }, { - "type": "swap_fp_to_mp", - "inputQty": "229714204666296172544", - "outputIndex": 1, - "outputQty": "231236806210147037852", - "swapFee": "0", - "redemptionFee": "92578372034961330", + "type": "redeem", + "outputIndex": 0, + "inputQty": "294437085649694881742848", + "outputQty0": "297679404923852038856563", + "outputQty": "298800192420098766145896", + "swapFee1": "176662251389816929045", + "swapFee2": "178607642954311223313", "mpReserves": [ - "49479894351892477500554669", - "33023794391898923032963083", - "32627106672882976148174131" + "45982072884664891307191904", + "13863567020057326978488278", + "43483067220004200382251148" ], "fpReserves": [ - "16083145640798362533500536", - "6879394621003916372159636" + "4134969507719095558686192", + "3723069569981019442305383" ], - "mAssetSupply": "115123125602702277126325151", - "LPTokenSupply": "22819057425761810683102284" + "mAssetSupply": "103194461638723707599502189", + "LPTokenSupply": "7771061751630433151681231" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "609448077183494", - "outputQty0": "609755250737900", - "outputQty": "604579770285817", + "inputIndex": 2, + "inputQty": "76025054787742566711296", + "outputQty0": "75735234909528268283992", + "outputQty": "74870016513426142038737", "mpReserves": [ - "49479894351892477500554669", - "33023794392508371110146577", - "32627106672882976148174131" + "45982072884664891307191904", + "13863567020057326978488278", + "43559092274791942948962444" ], "fpReserves": [ - "16083145641408117784238436", - "6879394621003916372159636" + "4210704742628623826970184", + "3723069569981019442305383" ], - "mAssetSupply": "115123125603312032377063051", - "LPTokenSupply": "22819057426366390453388101" + "mAssetSupply": "103270196873633235867786181", + "LPTokenSupply": "7845931768143859293719968" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "409187621243605357690880", - "outputQty0": "408833545787221464730349", - "outputQty": "405200795841234671115789", - "swapFee": "324273641596732126722", + "type": "swap_fp_to_mp", + "inputQty": "341461749555380023721984", + "outputIndex": 2, + "outputQty": "342639100566269505562696", + "swapFee": "0", + "redemptionFee": "204927255951366447939", "mpReserves": [ - "49889081973136082858245549", - "33023794392508371110146577", - "32627106672882976148174131" + "45982072884664891307191904", + "13863567020057326978488278", + "43216453174225673443399748" ], "fpReserves": [ - "16491979187195339248968785", - "6474193825162681701043847" + "3869159316043013080404257", + "4064531319536399466027367" ], - "mAssetSupply": "115531959149099253841793400", - "LPTokenSupply": "22819089853730550126600773" + "mAssetSupply": "102928856374303576487668193", + "LPTokenSupply": "7845931768143859293719968" }, { - "type": "swap_fp_to_mp", - "inputQty": "704779815045360202547200", + "type": "redeem", "outputIndex": 1, - "outputQty": "709545708459512391390649", - "swapFee": "0", - "redemptionFee": "284087530753066580244", + "inputQty": "200179713485431082319872", + "outputQty0": "202244970704528223704817", + "outputQty": "198794829172318012653619", + "swapFee1": "120107828091258649391", + "swapFee2": "121346982422716934222", "mpReserves": [ - "49889081973136082858245549", - "32314248684048858718755928", - "32627106672882976148174131" + "45982072884664891307191904", + "13664772190885008965834659", + "43216453174225673443399748" ], "fpReserves": [ - "15781760360312672798357956", - "7178973640208041903591047" + "3666914345338484856699440", + "4064531319536399466027367" ], - "mAssetSupply": "114822024409747340457762815", - "LPTokenSupply": "22819089853730550126600773" + "mAssetSupply": "102726732750581470980897598", + "LPTokenSupply": "7645764065441237337265035" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1332192034899013060788224", - "outputQty0": "1330958799427223284606445", - "outputQty": "1318341300213353681136227", - "swapFee": "1055804516796472555803", + "type": "redeem", + "outputIndex": 1, + "inputQty": "957477848273284628480", + "outputQty0": "967278152041734966308", + "outputQty": "950543705268543034628", + "swapFee1": "574486708963970777", + "swapFee2": "580366891225040979", "mpReserves": [ - "51221274008035095919033773", - "32314248684048858718755928", - "32627106672882976148174131" + "45982072884664891307191904", + "13663821647179740422800031", + "43216453174225673443399748" ], "fpReserves": [ - "17112719159739896082964401", - "5860632339994688222454820" + "3665947067186443121733132", + "4064531319536399466027367" ], - "mAssetSupply": "116152983209174563742369260", - "LPTokenSupply": "22819195434182229773856353" + "mAssetSupply": "102725766052796320470972269", + "LPTokenSupply": "7644806645041634949033632" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "458531167668340327972864", - "outputQty0": "458807875543777035773230", - "outputQty": "452857088079070222236102", - "swapFee": "363517934552211565765", + "type": "swap_fp_to_mp", + "inputQty": "39858373447887850831872", + "outputIndex": 2, + "outputQty": "39957498723608253260802", + "swapFee": "0", + "redemptionFee": "23896950306256465336", "mpReserves": [ - "51221274008035095919033773", - "32772779851717199046728792", - "32627106672882976148174131" + "45982072884664891307191904", + "13663821647179740422800031", + "43176495675502065190138946" ], "fpReserves": [ - "17571527035283673118737631", - "5407775251915618000218718" + "3626118816676015679506300", + "4104389692984287316859239" ], - "mAssetSupply": "116611791084718340778142490", - "LPTokenSupply": "22819231785975684995012929" + "mAssetSupply": "102685961699236199285210773", + "LPTokenSupply": "7644806645041634949033632" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "123299779472895550423040", "outputIndex": 0, - "inputQty": "51811122212182097920", - "outputQty0": "52309194409278805174", - "outputQty": "52337404187867680218", - "swapFee1": "31086673327309258", - "swapFee2": "20923677763711522", + "outputQty": "123642187831860181015503", + "swapFee": "0", + "redemptionFee": "73902702351547593182", "mpReserves": [ - "51221221670630908051353555", - "32772779851717199046728792", - "32627106672882976148174131" + "45858430696833031126176401", + "13663821647179740422800031", + "43176495675502065190138946" ], "fpReserves": [ - "17571474726089263839932457", - "5407775251915618000218718" + "3502947646090103024202895", + "4227689472457182867282279" ], - "mAssetSupply": "116611738796447609263048838", - "LPTokenSupply": "22819179977962140145645934" + "mAssetSupply": "102562864431352638177500550", + "LPTokenSupply": "7644806645041634949033632" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "200139682593011283263488", - "outputQty0": "202057275498075593006993", - "outputQty": "201853184294664171453946", - "swapFee1": "120083809555806769958", - "swapFee2": "80822910199230237202", + "type": "mint", + "inputIndex": 2, + "inputQty": "170755425410706588041216", + "outputQty0": "170098130467622185751260", + "outputQty": "168310849952834586053278", "mpReserves": [ - "51221221670630908051353555", - "32772779851717199046728792", - "32425253488588311976720185" + "45858430696833031126176401", + "13663821647179740422800031", + "43347251100912771778180162" ], "fpReserves": [ - "17369417450591188246925464", - "5407775251915618000218718" + "3673045776557725209954155", + "4227689472457182867282279" ], - "mAssetSupply": "116409762343859732900279047", - "LPTokenSupply": "22619052303750084443059441" + "mAssetSupply": "102732962561820260363251810", + "LPTokenSupply": "7813117494994469535086910" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "525494075592563966869504", - "outputQty0": "524991379596592593870510", - "outputQty": "519668274674024939759243", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1575172390328448581632", + "outputQty0": "1591080252280675541484", + "outputQty": "1597136001231330029125", + "swapFee1": "945103434197069148", + "swapFee2": "954648151368405324", "mpReserves": [ - "51746715746223472018223059", - "32772779851717199046728792", - "32425253488588311976720185" + "45856833560831799796147276", + "13663821647179740422800031", + "43347251100912771778180162" ], "fpReserves": [ - "17894408830187780840795974", - "5407775251915618000218718" + "3671454696305444534412671", + "4227689472457182867282279" ], - "mAssetSupply": "116934753723456325494149557", - "LPTokenSupply": "23138720578424109382818684" + "mAssetSupply": "102731372436216131056115650", + "LPTokenSupply": "7811542417114484506212192" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "155017543007505865506816", - "outputQty0": "155108234837321560186903", - "outputQty": "153519198543710722699512", + "inputIndex": 0, + "inputQty": "7286397309275218", + "outputQty0": "7254415662182499", + "outputQty": "7177580645403211", "mpReserves": [ - "51746715746223472018223059", - "32927797394724704912235608", - "32425253488588311976720185" + "45856833568118197105422494", + "13663821647179740422800031", + "43347251100912771778180162" ], "fpReserves": [ - "18049517065025102400982877", - "5407775251915618000218718" + "3671454703559860196595170", + "4227689472457182867282279" ], - "mAssetSupply": "117089861958293647054336460", - "LPTokenSupply": "23292239776967820105518196" + "mAssetSupply": "102731372443470546718298149", + "LPTokenSupply": "7811542424292065151615403" }, { "type": "mint", "inputIndex": 0, - "inputQty": "95025082364733177856", - "outputQty0": "94933612232748066872", - "outputQty": "93958768518802953158", + "inputQty": "1911370116493797228544", + "outputQty0": "1902980385835461212861", + "outputQty": "1882823231303125840659", "mpReserves": [ - "51746810771305836751400915", - "32927797394724704912235608", - "32425253488588311976720185" + "45858744938234690902651038", + "13663821647179740422800031", + "43347251100912771778180162" ], "fpReserves": [ - "18049611998637335149049749", - "5407775251915618000218718" + "3673357683945695657808031", + "4227689472457182867282279" ], - "mAssetSupply": "117089956891905879802403332", - "LPTokenSupply": "23292333735736338908471354" + "mAssetSupply": "102733275423856382179511010", + "LPTokenSupply": "7813425247523368277456062" }, { "type": "swap_fp_to_mp", - "inputQty": "11813599554342092800", - "outputIndex": 1, - "outputQty": "11969247199458523883", + "inputQty": "880727808910466744320", + "outputIndex": 2, + "outputQty": "882783150936802159874", "swapFee": "0", - "redemptionFee": "4792383365323765", + "redemptionFee": "527940229989455525", "mpReserves": [ - "51746810771305836751400915", - "32927785425477505453711725", - "32425253488588311976720185" + "45858744938234690902651038", + "13663821647179740422800031", + "43346368317761834976020288" ], "fpReserves": [ - "18049600017678921839635760", - "5407787065515172342311518" + "3672477783562379898598935", + "4228570200266093334026599" ], - "mAssetSupply": "117089944915739849858313108", - "LPTokenSupply": "23292333735736338908471354" + "mAssetSupply": "102732396051413296409757439", + "LPTokenSupply": "7813425247523368277456062" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "862037889711173120", - "outputQty0": "862592788874779415", - "outputQty": "853735092962668375", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "142736174302944690176", + "outputQty0": "142109621551436455430", + "outputQty": "142129642653643715762", + "swapFee": "112483539364753995", "mpReserves": [ - "51746810771305836751400915", - "32927785425477505453711725", - "32425254350626201687893305" + "45858887674408993847341214", + "13663821647179740422800031", + "43346368317761834976020288" ], "fpReserves": [ - "18049600880271710714415175", - "5407787065515172342311518" + "3672619893183931335054365", + "4228428070623439690310837" ], - "mAssetSupply": "117089945778332638733092523", - "LPTokenSupply": "23292334589471431871139729" + "mAssetSupply": "102732538161034847846212869", + "LPTokenSupply": "7813425258771722213931461" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "29712043017266544640", - "outputQty0": "30002299902600926292", - "outputQty": "29972973030157029126", - "swapFee1": "17827225810359926", - "swapFee2": "12000919961040370", + "outputIndex": 0, + "inputQty": "1507586770316260352", + "outputQty0": "1522811851916056757", + "outputQty": "1528608139516224770", + "swapFee1": "904552062189756", + "swapFee2": "913687111149634", "mpReserves": [ - "51746810771305836751400915", - "32927755452504475296682599", - "32425254350626201687893305" + "45858886145800854331116444", + "13663821647179740422800031", + "43346368317761834976020288" ], "fpReserves": [ - "18049570877971808113488883", - "5407787065515172342311518" + "3672618370372079418997608", + "4228428070623439690310837" ], - "mAssetSupply": "117089915788033656093206601", - "LPTokenSupply": "23292304879211137185631081" + "mAssetSupply": "102732536639136683041305746", + "LPTokenSupply": "7813423751275407103890084" }, { - "type": "swap_fp_to_mp", - "inputQty": "3571205187820570279936", - "outputIndex": 0, - "outputQty": "3623798419874107588388", - "swapFee": "0", - "redemptionFee": "1448703663092338955", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "25502346143999119360", + "outputQty0": "25935785367530651301", + "outputQty": "25939431876857966377", + "swapFee": "20528858429880009", "mpReserves": [ - "51743186972885962643812527", - "32927755452504475296682599", - "32425254350626201687893305" + "45858886145800854331116444", + "13663847149525884421919391", + "43346368317761834976020288" ], "fpReserves": [ - "18045949118814077266099263", - "5411358270702992912591454" + "3672644306157446949648909", + "4228402131191562832344460" ], - "mAssetSupply": "117086295477579588338155936", - "LPTokenSupply": "23292304879211137185631081" + "mAssetSupply": "102732562574922050571957047", + "LPTokenSupply": "7813423753328292946878084" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "82525713702943588352", - "outputQty0": "82578825499319141425", - "outputQty": "81361843151569340095", - "swapFee": "65384996371340481", + "inputQty": "205950718104115141935104", + "outputQty0": "205151473757763712007730", + "outputQty": "202958574913543208171700", "mpReserves": [ - "51743186972885962643812527", - "32927755452504475296682599", - "32425336876339904631481657" + "45858886145800854331116444", + "13663847149525884421919391", + "43552319035865950117955392" ], "fpReserves": [ - "18046031697639576585240688", - "5411276908859841343251359" + "3877795779915210661656639", + "4228402131191562832344460" ], - "mAssetSupply": "117086378056405087657297361", - "LPTokenSupply": "23292304885749636822765129" + "mAssetSupply": "102937714048679814283964777", + "LPTokenSupply": "8016382328241836155049784" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "37028209753928390148096", - "outputQty0": "37389542742206857989521", - "outputQty": "37350483832222140991923", - "swapFee1": "22216925852357034088", - "swapFee2": "14955817096882743195", + "inputQty": "29337257806148273176576", + "outputQty0": "29638866502851791936401", + "outputQty": "29736923679262386417553", + "swapFee1": "17602354683688963905", + "swapFee2": "17783319901711075161", "mpReserves": [ - "51743186972885962643812527", - "32927755452504475296682599", - "32387986392507682490489734" + "45858886145800854331116444", + "13663847149525884421919391", + "43522582112186687731537839" ], "fpReserves": [ - "18008642154897369727251167", - "5411276908859841343251359" + "3848156913412358869720238", + "4228402131191562832344460" ], - "mAssetSupply": "117049003469479977682051035", - "LPTokenSupply": "23255278897688293668320441" + "mAssetSupply": "102908092965496864203103537", + "LPTokenSupply": "7987046830671156250769598" }, { "type": "mint", "inputIndex": 1, - "inputQty": "521322584805529299714048", - "outputQty0": "521611042465969810807404", - "outputQty": "516220814439608587722821", + "inputQty": "3542487052216244371456", + "outputQty0": "3602916584531205817437", + "outputQty": "3564148093612707513552", "mpReserves": [ - "51743186972885962643812527", - "33449078037310004596396647", - "32387986392507682490489734" + "45858886145800854331116444", + "13667389636578100666290847", + "43522582112186687731537839" ], "fpReserves": [ - "18530253197363339538058571", - "5411276908859841343251359" + "3851759829996890075537675", + "4228402131191562832344460" ], - "mAssetSupply": "117570614511945947492858439", - "LPTokenSupply": "23771499712127902256043262" + "mAssetSupply": "102911695882081395408920974", + "LPTokenSupply": "7990610978764768958283150" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "631499478694064317005824", - "outputQty0": "630893220711439244952946", - "outputQty": "624261664770748888383097", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "702368603585100138938368", + "outputQty0": "699594084175172895506375", + "outputQty": "698658100286888953659884", + "swapFee": "553491407508408821291", "mpReserves": [ - "52374686451580026960818351", - "33449078037310004596396647", - "32387986392507682490489734" + "45858886145800854331116444", + "13667389636578100666290847", + "44224950715771787870476207" ], "fpReserves": [ - "19161146418074778783011517", - "5411276908859841343251359" + "4551353914172062971044050", + "3529744030904673878684576" ], - "mAssetSupply": "118201507732657386737811385", - "LPTokenSupply": "24395761376898651144426359" + "mAssetSupply": "103611289966256568304427349", + "LPTokenSupply": "7990666327905519799165279" }, { "type": "swap_fp_to_mp", - "inputQty": "315385207687897921093632", - "outputIndex": 1, - "outputQty": "319722026734336003212734", + "inputQty": "6776313373380202987520", + "outputIndex": 2, + "outputQty": "6811182192133443758666", "swapFee": "0", - "redemptionFee": "128012247230317391499", + "redemptionFee": "4072773323672331209", "mpReserves": [ - "52374686451580026960818351", - "33129356010575668593183913", - "32387986392507682490489734" + "45858886145800854331116444", + "13667389636578100666290847", + "44218139533579654426717541" ], "fpReserves": [ - "18841115799998985304262297", - "5726662116547739264344991" + "4544565958632609085695109", + "3536520344278054081672096" ], - "mAssetSupply": "117881605126828823576453664", - "LPTokenSupply": "24395761376898651144426359" + "mAssetSupply": "103604506083490438091409617", + "LPTokenSupply": "7990666327905519799165279" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "760260648221727916032", - "outputQty0": "767626406488336362479", - "outputQty": "766875272424889316088", - "swapFee1": "456156388933036749", - "swapFee2": "307050562595334544", + "type": "mint", + "inputIndex": 1, + "inputQty": "9463871791413915648", + "outputQty0": "9627790999680136894", + "outputQty": "9512963058880415927", "mpReserves": [ - "52374686451580026960818351", - "33128589135303243703867825", - "32387986392507682490489734" + "45858886145800854331116444", + "13667399100449892080206495", + "44218139533579654426717541" ], "fpReserves": [ - "18840348173592496967899818", - "5726662116547739264344991" + "4544575586423608765832003", + "3536520344278054081672096" ], - "mAssetSupply": "117880837807472897835425729", - "LPTokenSupply": "24395001161866068309814001" + "mAssetSupply": "103604515711281437771546511", + "LPTokenSupply": "7990675840868578679581206" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "36655077279543125344256", - "outputQty0": "36618995535902451079232", - "outputQty": "36087488351575259805785", - "swapFee": "28996531962036961854", + "type": "swap_fp_to_mp", + "inputQty": "84986767130679289315328", + "outputIndex": 1, + "outputQty": "83610540269951328464480", + "swapFee": "0", + "redemptionFee": "51071317517706250795", "mpReserves": [ - "52411341528859570086162607", - "33128589135303243703867825", - "32387986392507682490489734" + "45858886145800854331116444", + "13583788560179940751742015", + "44218139533579654426717541" ], "fpReserves": [ - "18876967169128399418979050", - "5690574628196164004539206" + "4459456723894098347838824", + "3621507111408733370987424" ], - "mAssetSupply": "117917456803008800286504961", - "LPTokenSupply": "24395004061519264513510186" + "mAssetSupply": "103519447920069445059804127", + "LPTokenSupply": "7990675840868578679581206" }, { "type": "swap_fp_to_mp", - "inputQty": "2631406798638346752", - "outputIndex": 1, - "outputQty": "2665675467489019941", + "inputQty": "234315592682475750424576", + "outputIndex": 2, + "outputQty": "235355955633122016385881", "swapFee": "0", - "redemptionFee": "1067315885355447", + "redemptionFee": "140730288014645516461", "mpReserves": [ - "52411341528859570086162607", - "33128586469627776214847884", - "32387986392507682490489734" + "45858886145800854331116444", + "13583788560179940751742015", + "43982783577946532410331660" ], "fpReserves": [ - "18876964500838686030360904", - "5690577259602962642885958" + "4224906243869689153736469", + "3855822704091209121412000" ], - "mAssetSupply": "117917454135786402783242262", - "LPTokenSupply": "24395004061519264513510186" + "mAssetSupply": "103285038170333050511218233", + "LPTokenSupply": "7990675840868578679581206" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "10416813422489376915456", + "outputQty0": "10530898634314154981141", + "outputQty": "10343973481317952100550", + "swapFee1": "6250088053493626149", + "swapFee2": "6318539180588492988", + "mpReserves": [ + "45858886145800854331116444", + "13573444586698622799641465", + "43982783577946532410331660" + ], + "fpReserves": [ + "4214375345235374998755328", + "3855822704091209121412000" + ], + "mAssetSupply": "103274513590237916944730080", + "LPTokenSupply": "7980259652454894652028364" }, { "type": "mint", "inputIndex": 2, - "inputQty": "97369927563604775665664", - "outputQty0": "97435456608891571580737", - "outputQty": "96436675037943378427722", + "inputQty": "1153648355051933138944", + "outputQty0": "1149028192847494440146", + "outputQty": "1135901622760848126925", "mpReserves": [ - "52411341528859570086162607", - "33128586469627776214847884", - "32485356320071287266155398" + "45858886145800854331116444", + "13573444586698622799641465", + "43983937226301584343470604" ], "fpReserves": [ - "18974399957447577601941641", - "5690577259602962642885958" + "4215524373428222493195474", + "3855822704091209121412000" ], - "mAssetSupply": "118014889592395294354822999", - "LPTokenSupply": "24491440736557207891937908" + "mAssetSupply": "103275662618430764439170226", + "LPTokenSupply": "7981395554077655500155289" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7859590812021133672448", - "outputQty0": "7851872902513541385115", - "outputQty": "7771264255999739173812", + "inputIndex": 1, + "inputQty": "20832370928147275776", + "outputQty0": "21196396679513926806", + "outputQty": "20954238419297578401", "mpReserves": [ - "52419201119671591219835055", - "33128586469627776214847884", - "32485356320071287266155398" + "45858886145800854331116444", + "13573465419069550946917241", + "43983937226301584343470604" ], "fpReserves": [ - "18982251830350091143326756", - "5690577259602962642885958" + "4215545569824902007122280", + "3855822704091209121412000" ], - "mAssetSupply": "118022741465297807896208114", - "LPTokenSupply": "24499212000813207631111720" + "mAssetSupply": "103275683814827443953097032", + "LPTokenSupply": "7981416508316074797733690" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "5906810337548600320", - "outputQty0": "5910759916969752938", - "outputQty": "5823614810608558557", - "swapFee": "4680057792017931", + "type": "mint", + "inputIndex": 1, + "inputQty": "626175261529387351146496", + "outputQty0": "636625456500529348347304", + "outputQty": "629209102932825913824064", "mpReserves": [ - "52419201119671591219835055", - "33128586469627776214847884", - "32485362226881624814755718" + "45858886145800854331116444", + "14199640680598938298063737", + "43983937226301584343470604" ], "fpReserves": [ - "18982257741110008113079694", - "5690571435988152034327401" + "4852171026325431355469584", + "3855822704091209121412000" ], - "mAssetSupply": "118022747376057724865961052", - "LPTokenSupply": "24499212001281213410313513" + "mAssetSupply": "103912309271327973301444336", + "LPTokenSupply": "8610625611248900711557754" }, { - "type": "swap_fp_to_mp", - "inputQty": "193198681439000384765952", - "outputIndex": 0, - "outputQty": "195944669502028955554235", - "swapFee": "0", - "redemptionFee": "78332543508682625648", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1257849733778881336311808", + "outputQty0": "1271602970595494734582178", + "outputQty": "1275517665930592488916113", + "swapFee1": "754709840267328801787", + "swapFee2": "762961782357296840749", "mpReserves": [ - "52223256450169562264280820", - "33128586469627776214847884", - "32485362226881624814755718" + "45858886145800854331116444", + "14199640680598938298063737", + "42708419560370991854554491" ], "fpReserves": [ - "18786426382338301548958722", - "5883770117427152419093353" + "3580568055729936620887406", + "3855822704091209121412000" ], - "mAssetSupply": "117826994349829526984465728", - "LPTokenSupply": "24499212001281213410313513" + "mAssetSupply": "102641469262514835863702907", + "LPTokenSupply": "7352851348454046108126124" }, { "type": "swap_fp_to_mp", - "inputQty": "15249834796042346823680", - "outputIndex": 1, - "outputQty": "15434180835524316973658", + "inputQty": "3926835467290421760", + "outputIndex": 2, + "outputQty": "3936573809814736731", "swapFee": "0", - "redemptionFee": "6179716626985404000", + "redemptionFee": "2354943303339004", "mpReserves": [ - "52223256450169562264280820", - "33113152288792251897874226", - "32485362226881624814755718" + "45858886145800854331116444", + "14199640680598938298063737", + "42708415623797182039817760" ], "fpReserves": [ - "18770977090770838038957931", - "5899019952223194765917033" + "3580564130824431055879231", + "3855826630926676411833760" ], - "mAssetSupply": "117811551237978690459868937", - "LPTokenSupply": "24499212001281213410313513" + "mAssetSupply": "102641465339964273602033736", + "LPTokenSupply": "7352851348454046108126124" }, { "type": "mint", "inputIndex": 1, - "inputQty": "56603215956003285630976", - "outputQty0": "56635865199934212746741", - "outputQty": "56068495030268288339783", + "inputQty": "83466299377286320", + "outputQty0": "84758994757593361", + "outputQty": "83828186381792727", "mpReserves": [ - "52223256450169562264280820", - "33169755504748255183505202", - "32485362226881624814755718" + "45858886145800854331116444", + "14199640764065237675350057", + "42708415623797182039817760" ], "fpReserves": [ - "18827612955970772251704672", - "5899019952223194765917033" + "3580564215583425813472592", + "3855826630926676411833760" ], - "mAssetSupply": "117868187103178624672615678", - "LPTokenSupply": "24555280496311481698653296" + "mAssetSupply": "102641465424723268359627097", + "LPTokenSupply": "7352851432282232489918851" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "4230536134130113445888", - "outputQty0": "4270814064963433741700", - "outputQty": "4266654681294099037220", - "swapFee1": "2538321680478068067", - "swapFee2": "1708325625985373496", + "type": "mint", + "inputIndex": 1, + "inputQty": "39580665708126733860864", + "outputQty0": "40191929121025241448675", + "outputQty": "39749782056108637137674", "mpReserves": [ - "52223256450169562264280820", - "33165488850066961084467982", - "32485362226881624814755718" + "45858886145800854331116444", + "14239221429773364409210921", + "42708415623797182039817760" ], "fpReserves": [ - "18823342141905808817962972", - "5899019952223194765917033" + "3620756144704451054921267", + "3855826630926676411833760" ], - "mAssetSupply": "117863917997439287224247474", - "LPTokenSupply": "24551050214009519633014214" + "mAssetSupply": "102681657353844293601075772", + "LPTokenSupply": "7392601214338341127056525" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "107242748427093252505600", - "outputQty0": "107313357140425969583725", - "outputQty": "105812004700328863558573", - "swapFee": "84988738835052672405", + "type": "swap_fp_to_mp", + "inputQty": "714815184095849218048", + "outputIndex": 0, + "outputQty": "717098863359323870153", + "swapFee": "0", + "redemptionFee": "428709646337013989", "mpReserves": [ - "52223256450169562264280820", - "33165488850066961084467982", - "32592604975308718067261318" + "45858169046937495007246291", + "14239221429773364409210921", + "42708415623797182039817760" ], "fpReserves": [ - "18930655499046234787546697", - "5793207947522865902358460" + "3620041628627222698272155", + "3856541446110772261051808" ], - "mAssetSupply": "117971231354579713193831199", - "LPTokenSupply": "24551058712883403138281454" + "mAssetSupply": "102680943266476711581440649", + "LPTokenSupply": "7392601214338341127056525" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "408108283942023921664", - "outputQty0": "408374925306807377370", - "outputQty": "402550587582200788450", - "swapFee": "323381727481799808", + "type": "mint", + "inputIndex": 1, + "inputQty": "124157014834762299211776", + "outputQty0": "126051975639248186009263", + "outputQty": "124655754116745806700964", "mpReserves": [ - "52223256450169562264280820", - "33165488850066961084467982", - "32593013083592660091182982" + "45858169046937495007246291", + "14363378444608126708422697", + "42708415623797182039817760" ], "fpReserves": [ - "18931063873971541594924067", - "5792805396935283701570010" + "3746093604266470884281418", + "3856541446110772261051808" ], - "mAssetSupply": "117971639729505020001208569", - "LPTokenSupply": "24551058745221575886461434" + "mAssetSupply": "102806995242115959767449912", + "LPTokenSupply": "7517256968455086933757489" }, { - "type": "swap_fp_to_mp", - "inputQty": "88720649981153853440", - "outputIndex": 0, - "outputQty": "89983614808919364034", - "swapFee": "0", - "redemptionFee": "35972953371946987", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "10888916226734", + "outputQty0": "10850740805123", + "outputQty": "10844147496632", + "swapFee": "8583947149", "mpReserves": [ - "52223166466554753344916786", - "33165488850066961084467982", - "32593013083592660091182982" + "45858169046937495007246291", + "14363378444608126708422697", + "42708415623808070956044494" ], "fpReserves": [ - "18930973941588111727454969", - "5792894117585264855423450" + "3746093604277321625086541", + "3856541446099928113555176" ], - "mAssetSupply": "117971549833094543505686458", - "LPTokenSupply": "24551058745221575886461434" + "mAssetSupply": "102806995242126810508255035", + "LPTokenSupply": "7517256968455087792152203" }, { "type": "mint", "inputIndex": 1, - "inputQty": "449169679249135246508032", - "outputQty0": "449420742663653519061461", - "outputQty": "444826750112374151836831", + "inputQty": "1781561989242567786496", + "outputQty0": "1808508571725782784741", + "outputQty": "1788372066295291776584", "mpReserves": [ - "52223166466554753344916786", - "33614658529316096330976014", - "32593013083592660091182982" + "45858169046937495007246291", + "14365160006597369276209193", + "42708415623808070956044494" ], "fpReserves": [ - "19380394684251765246516430", - "5792894117585264855423450" + "3747902112849047407871282", + "3856541446099928113555176" ], - "mAssetSupply": "118420970575758197024747919", - "LPTokenSupply": "24995885495333950038298265" + "mAssetSupply": "102808803750698536291039776", + "LPTokenSupply": "7519045340521383083928787" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "58857480495378588499968", - "outputQty0": "59433038755763781498227", - "outputQty": "59369282213842688245439", - "swapFee1": "35314488297227153099", - "swapFee2": "23773215502305512599", + "type": "swap_fp_to_mp", + "inputQty": "115802705955181088", + "outputIndex": 1, + "outputQty": "113987448358488408", + "swapFee": "0", + "redemptionFee": "69468471995682", "mpReserves": [ - "52223166466554753344916786", - "33614658529316096330976014", - "32533643801378817402937543" + "45858169046937495007246291", + "14365159892609920917720785", + "42708415623808070956044494" ], "fpReserves": [ - "19320961645496001465018203", - "5792894117585264855423450" + "3747901997068260748399883", + "3856541561902634068736264" ], - "mAssetSupply": "118361561310217935548762291", - "LPTokenSupply": "24937031546287401172513606" + "mAssetSupply": "102808803634987218103564059", + "LPTokenSupply": "7519045340521383083928787" }, { - "type": "swap_fp_to_mp", - "inputQty": "11311937242677276672", - "outputIndex": 1, - "outputQty": "11461244168807126312", - "swapFee": "0", - "redemptionFee": "4588794966351099", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "426610169354085184", + "outputQty0": "424838125844041130", + "outputQty": "424578619940690186", + "swapFee": "336086002564357", "mpReserves": [ - "52223166466554753344916786", - "33614647068071927523849702", - "32533643801378817402937543" + "45858169473547664361331475", + "14365159892609920917720785", + "42708415623808070956044494" ], "fpReserves": [ - "19320950173508585587268497", - "5792905429522507532700122" + "3747902421906386592441013", + "3856541137324014128046078" ], - "mAssetSupply": "118361549842819314637363684", - "LPTokenSupply": "24937031546287401172513606" + "mAssetSupply": "102808804059825343947605189", + "LPTokenSupply": "7519045340554991684185222" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "64555758570368518848512", - "outputQty0": "64599219075423928980896", - "outputQty": "63635878870171857128497", - "swapFee": "51148094298522291904", + "inputIndex": 1, + "inputQty": "45537135079691766464512", + "outputQty0": "46223572942728363318532", + "outputQty": "46191616947143161109061", + "swapFee": "36566341164839139245", "mpReserves": [ - "52223166466554753344916786", - "33614647068071927523849702", - "32598199559949185921786055" + "45858169473547664361331475", + "14410697027689612684185297", + "42708415623808070956044494" ], "fpReserves": [ - "19385549392584009516249393", - "5729269550652335675571625" + "3794125994849114955759545", + "3810349520376870966937017" ], - "mAssetSupply": "118426149061894738566344580", - "LPTokenSupply": "24937036661096831024742796" + "mAssetSupply": "102855027632768072310923721", + "LPTokenSupply": "7519048997189108168099146" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "76216586758327927570432", - "outputQty0": "76143720144529607197731", - "outputQty": "74978975703287510125482", - "swapFee": "60283613383658634602", + "type": "redeem", + "outputIndex": 0, + "inputQty": "21759133124422434816", + "outputQty0": "21992830754007153914", + "outputQty": "22070952137608821274", + "swapFee1": "13055479874653460", + "swapFee2": "13195698452404292", "mpReserves": [ - "52299383053313081272487218", - "33614647068071927523849702", - "32598199559949185921786055" + "45858147402595526752510201", + "14410697027689612684185297", + "42708415623808070956044494" ], "fpReserves": [ - "19461693112728539123447124", - "5654290574949048165446143" + "3794104002018360948605631", + "3810349520376870966937017" ], - "mAssetSupply": "118502292782039268173542311", - "LPTokenSupply": "24937042689458169390606256" + "mAssetSupply": "102855005653133016756174099", + "LPTokenSupply": "7519027239361531733129676" }, { "type": "swap_fp_to_mp", - "inputQty": "329063725312124477505536", + "inputQty": "522768299505233", "outputIndex": 2, - "outputQty": "333313928737079170429531", + "outputQty": "524269459337580", "swapFee": "0", - "redemptionFee": "133470759519013522085", + "redemptionFee": "313652104528", + "mpReserves": [ + "45858147402595526752510201", + "14410697027689612684185297", + "42708415623283801496706914" + ], + "fpReserves": [ + "3794104001495607441058126", + "3810349520899639266442250" + ], + "mAssetSupply": "102855005652610576900731122", + "LPTokenSupply": "7519027239361531733129676" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "65413662183510232793088", + "outputQty0": "65185029100984822319776", + "outputQty": "64451851032527940788664", "mpReserves": [ - "52299383053313081272487218", - "33614647068071927523849702", - "32264885631212106751356524" + "45858147402595526752510201", + "14410697027689612684185297", + "42773829285467311729500002" ], "fpReserves": [ - "19128016213931005318234585", - "5983354300261172642951679" + "3859289030596592263377902", + "3810349520899639266442250" ], - "mAssetSupply": "118168749354001253381851857", - "LPTokenSupply": "24937042689458169390606256" + "mAssetSupply": "102920190681711561723050898", + "LPTokenSupply": "7583479090394059673918340" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "37492302595629307133952", - "outputQty0": "37455943504462336133368", - "outputQty": "36936947806323555602020", - "swapFee": "29663657741385366448", + "inputQty": "2290874375753320932311040", + "outputQty0": "2280996884763004151387857", + "outputQty": "2265069031315118613205445", + "swapFee": "1802787845264709698079", "mpReserves": [ - "52336875355908710579621170", - "33614647068071927523849702", - "32264885631212106751356524" + "48149021778348847684821241", + "14410697027689612684185297", + "42773829285467311729500002" ], "fpReserves": [ - "19165472157435467654367953", - "5946417352454849087349659" + "6140285915359596414765759", + "1545280489584520653236805" ], - "mAssetSupply": "118206205297505715717985225", - "LPTokenSupply": "24937045655823943529142900" + "mAssetSupply": "105201187566474565874438755", + "LPTokenSupply": "7583659369178586144888147" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "107512233211250675286016", - "outputQty0": "107568737666107262824148", - "outputQty": "106039536580392704498371", - "swapFee": "85185555439433739490", + "type": "mint", + "inputIndex": 2, + "inputQty": "134729231331734690201600", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "221257412046196408320", + "outputQty0": "224958825208259311349", + "outputQty": "225589569595217312059", + "swapFee1": "132754447227717844", + "swapFee2": "134975295124955586", "mpReserves": [ - "52336875355908710579621170", - "33722159301283178199135718", - "32264885631212106751356524" + "48149021778348847684821241", + "14410697027689612684185297", + "42773603695897716512187943" ], "fpReserves": [ - "19273040895101574917192101", - "5840377815874456382851288" + "6140060956534388155454410", + "1545280489584520653236805" ], - "mAssetSupply": "118313774035171822980809373", - "LPTokenSupply": "24937054174379487472516849" + "mAssetSupply": "105200962742624652740082992", + "LPTokenSupply": "7583438125041984671251611" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "1587835277378927984640", - "outputQty0": "1586299562150318229415", - "outputQty": "1563309180352925103764", - "swapFee": "1256069745174975619", + "inputQty": "2994134130497161265152", + "outputQty0": "2980696200842241162684", + "outputQty": "2922243230128620469265", + "swapFee": "2343911374555545848", "mpReserves": [ - "52338463191186089507605810", - "33722159301283178199135718", - "32264885631212106751356524" + "48152015912479344846086393", + "14410697027689612684185297", + "42773603695897716512187943" ], "fpReserves": [ - "19274627194663725235421516", - "5838814506694103457747524" + "6143041652735230396617094", + "1542358246354392032767540" ], - "mAssetSupply": "118315360334733973299038788", - "LPTokenSupply": "24937054299986461990014410" + "mAssetSupply": "105203943438825494981245676", + "LPTokenSupply": "7583438359433122126806195" }, { - "type": "swap_fp_to_mp", - "inputQty": "47382724870605832192", - "outputIndex": 2, - "outputQty": "47987990739149245264", - "swapFee": "0", - "redemptionFee": "19216510399511657", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "52506013460406173696", + "outputQty0": "52327800110245601449", + "outputQty": "51299604939313941021", + "swapFee": "41148088429619618", "mpReserves": [ - "52338463191186089507605810", - "33722159301283178199135718", - "32264837643221367602111260" + "48152015912479344846086393", + "14410697027689612684185297", + "42773656201911176918361639" ], "fpReserves": [ - "19274579153387726456277127", - "5838861889418974063579716" + "6143093980535340642218543", + "1542306946749452718826519" ], - "mAssetSupply": "118315312312674484919406056", - "LPTokenSupply": "24937054299986461990014410" + "mAssetSupply": "105203995766625605226847125", + "LPTokenSupply": "7583438363547930969768156" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "24455053767069275258880", - "outputQty0": "24431388145230155722403", - "outputQty": "24075660057134257417212", - "swapFee": "19345253066707410930", + "type": "redeem", + "outputIndex": 2, + "inputQty": "3709631163239215136768", + "outputQty0": "3771743069379774559504", + "outputQty": "3782316600998870512036", + "swapFee1": "2225778697943529082", + "swapFee2": "2263045841627864735", "mpReserves": [ - "52362918244953158782864690", - "33722159301283178199135718", - "32264837643221367602111260" + "48152015912479344846086393", + "14410697027689612684185297", + "42769873885310178047849603" ], "fpReserves": [ - "19299010541532956611999530", - "5814786229361839806162504" + "6139322237465960867659039", + "1542306946749452718826519" ], - "mAssetSupply": "118339743700819715075128459", - "LPTokenSupply": "24937056234511768660755503" + "mAssetSupply": "105200226286602067080152356", + "LPTokenSupply": "7579728954962561548984296" }, { - "type": "swap_fp_to_mp", - "inputQty": "753443330449256958918656", - "outputIndex": 0, - "outputQty": "763057514674078906546967", - "swapFee": "0", - "redemptionFee": "305054359306412146895", + "type": "redeem", + "outputIndex": 2, + "inputQty": "6387485150386504859648", + "outputQty0": "6494399165733074126593", + "outputQty": "6512599653007632287510", + "swapFee1": "3832491090231902915", + "swapFee2": "3896639499439844475", "mpReserves": [ - "51599860730279079876317723", - "33722159301283178199135718", - "32264837643221367602111260" + "48152015912479344846086393", + "14410697027689612684185297", + "42763361285657170415562093" ], "fpReserves": [ - "18536374643266926244759856", - "6568229559811096765081160" + "6132827838300227793532446", + "1542306946749452718826519" ], - "mAssetSupply": "117577412856912991120035680", - "LPTokenSupply": "24937056234511768660755503" + "mAssetSupply": "105193735784075833445870238", + "LPTokenSupply": "7573341853061284067314939" }, { "type": "swap_fp_to_mp", - "inputQty": "116083486431075090432", - "outputIndex": 2, - "outputQty": "117183692733236188419", + "inputQty": "124140373730651692597248", + "outputIndex": 0, + "outputQty": "126819942542356755755048", "swapFee": "0", - "redemptionFee": "46924337468375235", + "redemptionFee": "75796620761237325308", "mpReserves": [ - "51599860730279079876317723", - "33722159301283178199135718", - "32264720459528634365922841" + "48025195969936988090331345", + "14410697027689612684185297", + "42763361285657170415562093" ], "fpReserves": [ - "18536257332423255306671516", - "6568345643297527840171592" + "6006500137031498918019065", + "1666447320480104411423767" ], - "mAssetSupply": "117577295592993657650322575", - "LPTokenSupply": "24937056234511768660755503" + "mAssetSupply": "105067483879427865807682165", + "LPTokenSupply": "7573341853061284067314939" }, { - "type": "swap_fp_to_mp", - "inputQty": "1540768305042058641408", - "outputIndex": 1, - "outputQty": "1555656904597711909793", - "swapFee": "0", - "redemptionFee": "622821609330244920", + "type": "redeem", + "outputIndex": 2, + "inputQty": "357632708164385984", + "outputQty0": "363391484929286894", + "outputQty": "364411837062064541", + "swapFee1": "214579624898631", + "swapFee2": "218034890957572", "mpReserves": [ - "51599860730279079876317723", - "33720603644378580487225925", - "32264720459528634365922841" + "48025195969936988090331345", + "14410697027689612684185297", + "42763360921245333353497552" ], "fpReserves": [ - "18534700278399929694371456", - "6569886411602569898813000" + "6006499773640013988732171", + "1666447320480104411423767" ], - "mAssetSupply": "117575739161791941368267435", - "LPTokenSupply": "24937056234511768660755503" + "mAssetSupply": "105067483516254415769352843", + "LPTokenSupply": "7573341495450033865418818" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "13555057840741555372032", - "outputQty0": "13561797689034994121810", - "outputQty": "13434121546334253572119", + "inputIndex": 2, + "inputQty": "36967766629207211245568", + "outputQty0": "36842024526122877771222", + "outputQty": "36235750532464626487263", "mpReserves": [ - "51599860730279079876317723", - "33734158702219322042597957", - "32264720459528634365922841" + "48025195969936988090331345", + "14410697027689612684185297", + "42800328687874540564743120" ], "fpReserves": [ - "18548262076088964688493266", - "6569886411602569898813000" + "6043341798166136866503393", + "1666447320480104411423767" ], - "mAssetSupply": "117589300959480976362389245", - "LPTokenSupply": "24950490356058102914327622" + "mAssetSupply": "105104325540780538647124065", + "LPTokenSupply": "7609577245982498491906081" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "7050345589386811", - "outputQty0": "7043746519263765", - "outputQty": "6964424283304682", - "swapFee": "5581937201266", + "inputIndex": 1, + "inputQty": "2458623098034135760896", + "outputQty0": "2497580017555289947776", + "outputQty": "2455365426678320196313", + "swapFee": "1965144864489532824", "mpReserves": [ - "51599860737329425465704534", - "33734158702219322042597957", - "32264720459528634365922841" + "48025195969936988090331345", + "14413155650787646819946193", + "42800328687874540564743120" ], "fpReserves": [ - "18548262083132711207757031", - "6569886404638145615508318" + "6045839378183692156451169", + "1663991955053426091227454" ], - "mAssetSupply": "117589300966524722881653010", - "LPTokenSupply": "24950490356058661108047748" + "mAssetSupply": "105106823120798093937071841", + "LPTokenSupply": "7609577442496984940859363" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "492445566887557726208", - "outputQty0": "492690126926670207059", - "outputQty": "487141308844399355126", - "swapFee": "390440678576842986", + "inputIndex": 0, + "inputQty": "4297856274906183892992", + "outputQty0": "4278657374683702959091", + "outputQty": "4206037893718031601287", + "swapFee": "3366488898795517257", "mpReserves": [ - "51599860737329425465704534", - "33734651147786209600324165", - "32264720459528634365922841" + "48029493826211894274224337", + "14413155650787646819946193", + "42800328687874540564743120" ], "fpReserves": [ - "18548754773259637877964090", - "6569399263329301216153192" + "6050118035558375859410260", + "1659785917159708059626167" ], - "mAssetSupply": "117589793656651649551860069", - "LPTokenSupply": "24950490395102728965732046" + "mAssetSupply": "105111101778172777640030932", + "LPTokenSupply": "7609577779145874820411088" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "79983943384425536", - "outputQty0": "80695837877409644", - "outputQty": "80739129507504406", - "swapFee1": "47990366030655", - "swapFee2": "32278335150963", + "inputQty": "272112150627858685886464", + "outputQty0": "276474245451373652373414", + "outputQty": "277542360274201083283257", + "swapFee1": "163267290376715211531", + "swapFee2": "165884547270824191424", "mpReserves": [ - "51599860656590295958200128", - "33734651147786209600324165", - "32264720459528634365922841" + "47751951465937693190941080", + "14413155650787646819946193", + "42800328687874540564743120" ], "fpReserves": [ - "18548754692563800000554446", - "6569399263329301216153192" + "5773643790107002207036846", + "1659785917159708059626167" ], - "mAssetSupply": "117589793575988090009601388", - "LPTokenSupply": "24950490315123584617909575" + "mAssetSupply": "104834793417268674811848942", + "LPTokenSupply": "7337481955247053806045777" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "65411995657958309494784", - "outputQty0": "65350681926574535303992", - "outputQty": "64606593600853148103435", - "swapFee": "51787794463325960563", + "type": "swap_fp_to_mp", + "inputQty": "59619146354865368", + "outputIndex": 2, + "outputQty": "60697403848995564", + "swapFee": "0", + "redemptionFee": "36315815670311", "mpReserves": [ - "51665272652248254267694912", - "33734651147786209600324165", - "32264720459528634365922841" + "47751951465937693190941080", + "14413155650787646819946193", + "42800328627177136715747556" ], "fpReserves": [ - "18614105374490374535858438", - "6504792669728448068049757" + "5773643729580642756517303", + "1659785976778854414491535" ], - "mAssetSupply": "117655144257914664544905380", - "LPTokenSupply": "24950495493903030950505631" + "mAssetSupply": "104834793356778631176999710", + "LPTokenSupply": "7337481955247053806045777" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "7297857029736772927488", - "outputQty0": "7363300180610651035715", - "outputQty": "7356684090587583888014", - "swapFee1": "4378714217842063756", - "swapFee2": "2945320072244260414", + "type": "mint", + "inputIndex": 2, + "inputQty": "11992220234197738", + "outputQty0": "11951251276792365", + "outputQty": "11757042255769969", "mpReserves": [ - "51665272652248254267694912", - "33727294463695622016436151", - "32264720459528634365922841" + "47751951465937693190941080", + "14413155650787646819946193", + "42800328639169356949945294" ], "fpReserves": [ - "18606742074309763884822723", - "6504792669728448068049757" + "5773643741531894033309668", + "1659785976778854414491535" ], - "mAssetSupply": "117647783903054126138130079", - "LPTokenSupply": "24943198074744715961784518" + "mAssetSupply": "104834793368729882453792075", + "LPTokenSupply": "7337481967004096061815746" }, { "type": "swap_fp_to_mp", - "inputQty": "50484556785191317667840", - "outputIndex": 2, - "outputQty": "50970603036331243851930", + "inputQty": "119313218843433150447616", + "outputIndex": 1, + "outputQty": "119030302664941113198638", "swapFee": "0", - "redemptionFee": "20410462822646531941", + "redemptionFee": "72595504246292807766", "mpReserves": [ - "51665272652248254267694912", - "33727294463695622016436151", - "32213749856492303122070911" + "47751951465937693190941080", + "14294125348122705706747555", + "42800328639169356949945294" ], "fpReserves": [ - "18555715917253147554969593", - "6555277226513639385717597" + "5652651234454739353698193", + "1779099195622287564939151" ], - "mAssetSupply": "117596778156460332454808890", - "LPTokenSupply": "24943198074744715961784518" + "mAssetSupply": "104713873457156974066988366", + "LPTokenSupply": "7337481967004096061815746" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "82308104848693755117568", - "outputQty0": "82348750461732613851561", - "outputQty": "81404587788623970777666", - "swapFee": "65257001087865531620", + "type": "redeem", + "outputIndex": 1, + "inputQty": "76832017769986927886336", + "outputQty0": "78011678647460076489524", + "outputQty": "76729615710209961071273", + "swapFee1": "46099210661992156731", + "swapFee2": "46807007188476045893", "mpReserves": [ - "51665272652248254267694912", - "33809602568544315771553719", - "32213749856492303122070911" + "47751951465937693190941080", + "14217395732412495745676282", + "42800328639169356949945294" ], "fpReserves": [ - "18638064667714880168821154", - "6473872638725015414939931" + "5574639555807279277208669", + "1779099195622287564939151" ], - "mAssetSupply": "117679126906922065068660451", - "LPTokenSupply": "24943204600444824748337680" + "mAssetSupply": "104635908585516702466544735", + "LPTokenSupply": "7260654559155175333145083" }, { - "type": "swap_fp_to_mp", - "inputQty": "16520560868292818894848", - "outputIndex": 2, - "outputQty": "16682633536797019116558", - "swapFee": "0", - "redemptionFee": "6680369264967243737", + "type": "redeem", + "outputIndex": 0, + "inputQty": "148817174743752162410496", + "outputQty0": "151086401305650306986056", + "outputQty": "151676270406369862769453", + "swapFee1": "89290304846251297446", + "swapFee2": "90651840783390184191", "mpReserves": [ - "51665272652248254267694912", - "33809602568544315771553719", - "32197067222955506102954353" + "47600275195531323328171627", + "14217395732412495745676282", + "42800328639169356949945294" ], "fpReserves": [ - "18621363744552462059477150", - "6490393199593308233834779" + "5423553154501628970222613", + "1779099195622287564939151" ], - "mAssetSupply": "117662432664128911926560184", - "LPTokenSupply": "24943204600444824748337680" + "mAssetSupply": "104484912836051835549742870", + "LPTokenSupply": "7111846313441907795864331" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "9974586039338383966208", - "outputQty0": "9981530437101215743950", - "outputQty": "9886707120981852170403", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1110309092372621295616", + "outputQty0": "1127170177387516210652", + "outputQty": "1131557412601500256766", + "swapFee1": "666185455423572777", + "swapFee2": "676302106432509726", "mpReserves": [ - "51665272652248254267694912", - "33809602568544315771553719", - "32207041808994844486920561" + "47599143638118721827914861", + "14217395732412495745676282", + "42800328639169356949945294" ], "fpReserves": [ - "18631345274989563275221100", - "6490393199593308233834779" + "5422425984324241454011961", + "1779099195622287564939151" ], - "mAssetSupply": "117672414194566013142304134", - "LPTokenSupply": "24953091307565806600508083" + "mAssetSupply": "104483786342176554466041944", + "LPTokenSupply": "7110736070968080716925992" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "38958985677963956060160", - "outputQty0": "39308888846959359837830", - "outputQty": "39273852805139319360649", - "swapFee1": "23375391406778373636", - "swapFee2": "15723555538783743935", + "type": "mint", + "inputIndex": 0, + "inputQty": "6761099099733464449024", + "outputQty0": "6730841322086831160343", + "outputQty": "6626159741991763395410", "mpReserves": [ - "51665272652248254267694912", - "33770328715739176452193070", - "32207041808994844486920561" + "47605904737218455292363885", + "14217395732412495745676282", + "42800328639169356949945294" ], "fpReserves": [ - "18592036386142603915383270", - "6490393199593308233834779" + "5429156825646328285172304", + "1779099195622287564939151" ], - "mAssetSupply": "117633121029274592566210239", - "LPTokenSupply": "24914134659426983322285286" + "mAssetSupply": "104490517183498641297202287", + "LPTokenSupply": "7117362230710072480321402" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2053649195162732068864", - "outputQty0": "2051719557240412275597", - "outputQty": "2032244659295089138284", + "inputQty": "12707180018051640721408", + "outputQty0": "12650292738257156125175", + "outputQty": "12453433132678054590526", "mpReserves": [ - "51667326301443416999763776", - "33770328715739176452193070", - "32207041808994844486920561" + "47618611917236506933085293", + "14217395732412495745676282", + "42800328639169356949945294" ], "fpReserves": [ - "18594088105699844327658867", - "6490393199593308233834779" + "5441807118384585441297479", + "1779099195622287564939151" ], - "mAssetSupply": "117635172748831832978485836", - "LPTokenSupply": "24916166904086278411423570" + "mAssetSupply": "104503167476236898453327462", + "LPTokenSupply": "7129815663842750534911928" }, { - "type": "swap_fp_to_mp", - "inputQty": "453976508176438661218304", - "outputIndex": 2, - "outputQty": "458009204685968122329117", - "swapFee": "0", - "redemptionFee": "183408291864715099768", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "170726692943103004770304", + "outputQty0": "173448262380383853741604", + "outputQty": "170972410038898492948937", + "swapFee": "136587135385973635587", "mpReserves": [ - "51667326301443416999763776", - "33770328715739176452193070", - "31749032604308876364591444" + "47618611917236506933085293", + "14388122425355598750446586", + "42800328639169356949945294" ], "fpReserves": [ - "18135567376038056578237774", - "6944369707769746895053083" + "5615255380764969295039083", + "1608126785583389071990214" ], - "mAssetSupply": "117176835427461909944164511", - "LPTokenSupply": "24916166904086278411423570" + "mAssetSupply": "104676615738617282307069066", + "LPTokenSupply": "7129829322556289132275486" }, { - "type": "mint", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "463999593497162623746048", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "316517737604792320", - "outputQty0": "316751566107813133", - "outputQty": "313882312185547508", + "inputQty": "2033060852539360303644672", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "12303156603597260587008", + "outputQty0": "12499509009836499928388", + "outputQty": "12547377734873562718243", + "swapFee1": "7381893962158356352", + "swapFee2": "7499705405901899957", "mpReserves": [ - "51667326301443416999763776", - "33770328715739176452193070", - "31749032920826613969383764" + "47606064539501633370367050", + "14388122425355598750446586", + "42800328639169356949945294" ], "fpReserves": [ - "18135567692789622686050907", - "6944369707769746895053083" + "5602755871755132795110695", + "1608126785583389071990214" ], - "mAssetSupply": "117176835744213476051977644", - "LPTokenSupply": "24916167217968590596971078" + "mAssetSupply": "104664123729312851709040635", + "LPTokenSupply": "7117526904142088087524113" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "9836238723695910060032", - "outputQty0": "9826837567140124874399", - "outputQty": "9737810405136412666401", + "inputIndex": 2, + "inputQty": "51970632015575122968576", + "outputQty0": "51792066217964631785438", + "outputQty": "50946792769245083022658", "mpReserves": [ - "51677162540167112909823808", - "33770328715739176452193070", - "31749032920826613969383764" + "47606064539501633370367050", + "14388122425355598750446586", + "42852299271184932072913870" ], "fpReserves": [ - "18145394530356762810925306", - "6944369707769746895053083" + "5654547937973097426896133", + "1608126785583389071990214" ], - "mAssetSupply": "117186662581780616176852043", - "LPTokenSupply": "24925905028373727009637479" + "mAssetSupply": "104715915795530816340826073", + "LPTokenSupply": "7168473696911333170546771" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "62325148959615928500224", - "outputQty0": "62265486070311258751561", - "outputQty": "61700828394048314066897", + "type": "swap_fp_to_mp", + "inputQty": "4295212452704437665792", + "outputIndex": 2, + "outputQty": "4374032237131409367031", + "swapFee": "0", + "redemptionFee": "2616961906030737132", "mpReserves": [ - "51739487689126728838324032", - "33770328715739176452193070", - "31749032920826613969383764" + "47606064539501633370367050", + "14388122425355598750446586", + "42847925238947800663546839" ], "fpReserves": [ - "18207660016427074069676867", - "6944369707769746895053083" + "5650186334796379531675335", + "1612421998036093509656006" ], - "mAssetSupply": "117248928067850927435603604", - "LPTokenSupply": "24987605856767775323704376" + "mAssetSupply": "104711556809316004476342407", + "LPTokenSupply": "7168473696911333170546771" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "105740278354417375248384", - "outputQty0": "106643346739520930462745", - "outputQty": "106549282201139219612680", - "swapFee1": "63444167012650425149", - "swapFee2": "42657338695808372185", + "type": "mint", + "inputIndex": 1, + "inputQty": "3636664438222305099776", + "outputQty0": "3693959806221774509711", + "outputQty": "3633640811603750320476", "mpReserves": [ - "51739487689126728838324032", - "33663779433538037232580390", - "31749032920826613969383764" + "47606064539501633370367050", + "14391759089793821055546362", + "42847925238947800663546839" ], "fpReserves": [ - "18101016669687553139214122", - "6944369707769746895053083" + "5653880294602601306185046", + "1612421998036093509656006" ], - "mAssetSupply": "117142327378450102313513044", - "LPTokenSupply": "24881871922830059213498506" + "mAssetSupply": "104715250769122226250852118", + "LPTokenSupply": "7172107337722936920867247" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "26055579223685697896448", - "outputQty0": "26068239479740644571669", - "outputQty": "25809263203847832466033", - "swapFee": "20665747011699154998", + "inputQty": "655464930702425497534464", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "500018497717234927927296", + "outputQty0": "507879960754068815201439", + "outputQty": "499419507838634964112721", + "swapFee1": "300011098630340956756", + "swapFee2": "304727976452441289120", "mpReserves": [ - "51739487689126728838324032", - "33689835012761722930476838", - "31749032920826613969383764" + "47606064539501633370367050", + "13892339581955186091433641", + "42847925238947800663546839" ], "fpReserves": [ - "18127084909167293783785791", - "6918560444565899062587050" + "5146000333848532490983607", + "1612421998036093509656006" ], - "mAssetSupply": "117168395617929842958084713", - "LPTokenSupply": "24881873989404760383414005" + "mAssetSupply": "104207675536344609876939799", + "LPTokenSupply": "6672118841115565027035626" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "787982987657346023424", "outputIndex": 1, - "inputQty": "235134995813603737600", - "outputQty0": "237146266507796615135", - "outputQty": "236936542323768892969", - "swapFee1": "141080997488162242", - "swapFee2": "94858506603118646", + "outputQty": "784543630050344122869", + "swapFee": "0", + "redemptionFee": "478983523892473705", "mpReserves": [ - "51739487689126728838324032", - "33689598076219399161583869", - "31749032920826613969383764" + "47606064539501633370367050", + "13891555038325135747310772", + "42847925238947800663546839" ], "fpReserves": [ - "18126847762900785987170656", - "6918560444565899062587050" + "5145202027975378368141184", + "1613209981023750855679430" ], - "mAssetSupply": "117168158566521841764588224", - "LPTokenSupply": "24881638868517046528492629" + "mAssetSupply": "104206877709454979646571081", + "LPTokenSupply": "6672118841115565027035626" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "35822186023400647950336", - "outputQty0": "35848564457267364223630", - "outputQty": "35488855517566380991042", - "swapFee": "28418433400358597037", + "type": "mint", + "inputIndex": 0, + "inputQty": "66511430766410946576384", + "outputQty0": "66205125154806290022708", + "outputQty": "65153903124058073006591", "mpReserves": [ - "51739487689126728838324032", - "33689598076219399161583869", - "31784855106850014617334100" + "47672575970268044316943434", + "13891555038325135747310772", + "42847925238947800663546839" ], "fpReserves": [ - "18162696327358053351394286", - "6883071589048332681596008" + "5211407153130184658163892", + "1613209981023750855679430" ], - "mAssetSupply": "117204007130979109128811854", - "LPTokenSupply": "24881641710360386564352332" + "mAssetSupply": "104273082834609785936593789", + "LPTokenSupply": "6737272744239623100042217" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "508627310687909211799552", - "outputQty0": "512961880324324602608021", - "outputQty": "512496214715064566950764", - "swapFee1": "305176386412745527079", - "swapFee2": "205184752129729841043", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "38313063216551297024", + "outputQty0": "38174683675554516951", + "outputQty": "37640244649986008838", + "swapFee": "30053783093579452", "mpReserves": [ - "51739487689126728838324032", - "33177101861504334594633105", - "31784855106850014617334100" + "47672575970268044316943434", + "13891555038325135747310772", + "42847963552011017214843863" ], "fpReserves": [ - "17649734447033728748786265", - "6883071589048332681596008" + "5211445327813860212680843", + "1613172340779100869670592" ], - "mAssetSupply": "116691250435406914256044876", - "LPTokenSupply": "24373044917311118627105487" + "mAssetSupply": "104273121009293461491110740", + "LPTokenSupply": "6737272747245001409400162" }, { - "type": "swap_fp_to_mp", - "inputQty": "39581934840025523945472", - "outputIndex": 0, - "outputQty": "39955404863302806078009", - "swapFee": "0", - "redemptionFee": "15972962922122218061", + "type": "mint", + "inputIndex": 0, + "inputQty": "3582463632908615168", + "outputQty0": "3565946567338429916", + "outputQty": "3509202888997901738", "mpReserves": [ - "51699532284263426032246023", - "33177101861504334594633105", - "31784855106850014617334100" + "47672579552731677225558602", + "13891555038325135747310772", + "42847963552011017214843863" ], "fpReserves": [ - "17609802039728423203632069", - "6922653523888358205541480" + "5211448893760427551110759", + "1613172340779100869670592" ], - "mAssetSupply": "116651334001064530833108741", - "LPTokenSupply": "24373044917311118627105487" + "mAssetSupply": "104273124575240028829540656", + "LPTokenSupply": "6737276256447890407301900" }, { "type": "swap_fp_to_mp", - "inputQty": "196988816794194640896", - "outputIndex": 0, - "outputQty": "198834739335183641534", + "inputQty": "411686633142832594944", + "outputIndex": 2, + "outputQty": "418457592823971116929", "swapFee": "0", - "redemptionFee": "79488184999903121", + "redemptionFee": "250317920751645903", "mpReserves": [ - "51699333449524090848604489", - "33177101861504334594633105", - "31784855106850014617334100" + "47672579552731677225558602", + "13891555038325135747310772", + "42847545094418193243726934" ], "fpReserves": [ - "17609603319265923445827323", - "6922850512705152400182376" + "5211031697225841474605110", + "1613584027412243702265536" ], - "mAssetSupply": "116651135360090216075207116", - "LPTokenSupply": "24373044917311118627105487" + "mAssetSupply": "104272707629023363504680910", + "LPTokenSupply": "6737276256447890407301900" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "84100640555334761447424", - "outputQty0": "84160268440280919664666", - "outputQty": "83349072555398957140360", - "swapFee": "66724500337565168858", + "inputQty": "99813881649391440", + "outputQty0": "99453379552490310", + "outputQty": "97870991567655872", "mpReserves": [ - "51699333449524090848604489", - "33177101861504334594633105", - "31868955747405349378781524" + "47672579552731677225558602", + "13891555038325135747310772", + "42847545194232074893118374" ], "fpReserves": [ - "17693763587706204365491989", - "6839501440149753443042016" + "5211031796679221027095420", + "1613584027412243702265536" ], - "mAssetSupply": "116735295628530496994871782", - "LPTokenSupply": "24373051589761152383622372" + "mAssetSupply": "104272707728476743057171220", + "LPTokenSupply": "6737276354318881974957772" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "14327000706426", - "outputQty0": "14334630849772", - "outputQty": "14205137365814", + "inputQty": "666724570983737747046400", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "81662536920063400738816", + "outputQty0": "81285503699157204118294", + "outputQty": "79988770228490077058536", "mpReserves": [ - "51699333449524090848604489", - "33177101861518661595339531", - "31868955747405349378781524" + "47754242089651740626297418", + "13891555038325135747310772", + "42847545194232074893118374" ], "fpReserves": [ - "17693763587720538996341761", - "6839501440149753443042016" + "5292317300378378231213714", + "1613584027412243702265536" ], - "mAssetSupply": "116735295628544831625721554", - "LPTokenSupply": "24373051589775357520988186" + "mAssetSupply": "104353993232175900261289514", + "LPTokenSupply": "6817265124547372052016308" }, { - "type": "swap_fp_to_mp", - "inputQty": "8442545175714437", - "outputIndex": 2, - "outputQty": "8509634077701458", - "swapFee": "0", - "redemptionFee": "3407616064203", + "type": "redeem", + "outputIndex": 1, + "inputQty": "9278633897699660791808", + "outputQty0": "9423751716887347095044", + "outputQty": "9260643549946574288710", + "swapFee1": "5567180338619796475", + "swapFee2": "5654251030132408257", "mpReserves": [ - "51699333449524090848604489", - "33177101861518661595339531", - "31868955738895715301080066" + "47754242089651740626297418", + "13882294394775189173022062", + "42847545194232074893118374" ], "fpReserves": [ - "17693763579201498835832086", - "6839501448592298618756453" + "5282893548661490884118670", + "1613584027412243702265536" ], - "mAssetSupply": "116735295620029199081276082", - "LPTokenSupply": "24373051589775357520988186" + "mAssetSupply": "104344575134710043046602727", + "LPTokenSupply": "6807987047367706253204147" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "132576949609598694719488", - "outputQty0": "133702963985889666799672", - "outputQty": "133779079826999952783124", - "swapFee1": "79546169765759216831", - "swapFee2": "53481185594355866719", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "60829353293117902553088", + "outputQty0": "60609362006492911328768", + "outputQty": "59707151356692735782004", + "swapFee": "47710863691501627506", "mpReserves": [ - "51565554369697090895821365", - "33177101861518661595339531", - "31868955738895715301080066" + "47754242089651740626297418", + "13882294394775189173022062", + "42908374547525192795671462" ], "fpReserves": [ - "17560060615215609169032414", - "6839501448592298618756453" + "5343502910667983795447438", + "1553876876055550966483532" ], - "mAssetSupply": "116601646137228903770343129", - "LPTokenSupply": "24240482594782735402190381" + "mAssetSupply": "104405184496716535957931495", + "LPTokenSupply": "6807991818454075403366897" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "433583806601170358632448", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "174051387352254364254208", - "outputIndex": 1, - "outputQty": "175394530092241505425520", + "inputQty": "7344334857707479629824", + "outputIndex": 0, + "outputQty": "7483446007111205972823", "swapFee": "0", - "redemptionFee": "70223504920794145076", + "redemptionFee": "4471990137675828347", "mpReserves": [ - "51565554369697090895821365", - "33001707331426420089914011", - "31868955738895715301080066" + "47746758643644629420324595", + "13882294394775189173022062", + "42908374547525192795671462" ], "fpReserves": [ - "17384501852913623806339963", - "7013552835944552983010661" + "5336049593771857414868818", + "1561221210913258446113356" ], - "mAssetSupply": "116426157598431839201795754", - "LPTokenSupply": "24240482594782735402190381" + "mAssetSupply": "104397735651810547253181222", + "LPTokenSupply": "6807991818454075403366897" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "854238817680829054976", "outputIndex": 0, - "inputQty": "78740346419390", - "outputQty0": "79395642889407", - "outputQty": "79441069094260", - "swapFee1": "47244207851", - "swapFee2": "31758257155", + "outputQty": "870343742048999186594", + "swapFee": "0", + "redemptionFee": "520104132935707087", "mpReserves": [ - "51565554369617649826727105", - "33001707331426420089914011", - "31868955738895715301080066" + "47745888299902580421138001", + "13882294394775189173022062", + "42908374547525192795671462" ], "fpReserves": [ - "17384501852834228163450556", - "7013552835944552983010661" + "5335182753550297903057096", + "1562075449730939275168332" ], - "mAssetSupply": "116426157598352475317163502", - "LPTokenSupply": "24240482594703999780191776" + "mAssetSupply": "104396869331693120677076587", + "LPTokenSupply": "6807991818454075403366897" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "4847744541812351565824", - "outputQty0": "4843034005575960130357", - "outputQty": "4798866354074061369241", - "swapFee": "3840141597832733308", + "type": "mint", + "inputIndex": 2, + "inputQty": "10040358763849449472", + "outputQty0": "10003991838795465082", + "outputQty": "9841657176082473861", "mpReserves": [ - "51570402114159462178292929", - "33001707331426420089914011", - "31868955738895715301080066" + "47745888299902580421138001", + "13882294394775189173022062", + "42908384587883956645120934" ], "fpReserves": [ - "17389344886839804123580913", - "7008753969590478921641420" + "5335192757542136698522178", + "1562075449730939275168332" ], - "mAssetSupply": "116431000632358051277293859", - "LPTokenSupply": "24240482978718159563465106" + "mAssetSupply": "104396879335684959472541669", + "LPTokenSupply": "6808001660111251485840758" }, { "type": "swap_fp_to_mp", - "inputQty": "202981697689682914050048", + "inputQty": "186804062002447722217472", "outputIndex": 1, - "outputQty": "204431300152207476793436", + "outputQty": "185902859497246322869508", "swapFee": "0", - "redemptionFee": "81850482184162079112", + "redemptionFee": "113536008113430235661", "mpReserves": [ - "51570402114159462178292929", - "32797276031274212613120575", - "31868955738895715301080066" + "47745888299902580421138001", + "13696391535277942850152554", + "42908384587883956645120934" ], "fpReserves": [ - "17184718681379398925800622", - "7211735667280161835691468" + "5145966077353086305752286", + "1748879511733386997385804" ], - "mAssetSupply": "116226456277379830241592680", - "LPTokenSupply": "24240482978718159563465106" + "mAssetSupply": "104207766191504022510007438", + "LPTokenSupply": "6808001660111251485840758" }, { - "type": "swap_fp_to_mp", - "inputQty": "382580305822404401168384", - "outputIndex": 0, - "outputQty": "385589900689359172174868", - "swapFee": "0", - "redemptionFee": "154147963153506094455", + "type": "mint", + "inputIndex": 1, + "inputQty": "141227006104133873696768", + "outputQty0": "143673823239515731066346", + "outputQty": "141446031006069016303050", "mpReserves": [ - "51184812213470103006118061", - "32797276031274212613120575", - "31868955738895715301080066" + "47745888299902580421138001", + "13837618541382076723849322", + "42908384587883956645120934" ], "fpReserves": [ - "16799348773495633689661263", - "7594315973102566236859852" + "5289639900592602036818632", + "1748879511733386997385804" ], - "mAssetSupply": "115841240517459218511547776", - "LPTokenSupply": "24240482978718159563465106" + "mAssetSupply": "104351440014743538241073784", + "LPTokenSupply": "6949447691117320502143808" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "18630344442305728512", - "outputQty0": "18642866024148459861", - "outputQty": "18502159029124707681", - "swapFee": "14789333993106290", + "inputQty": "69246355278350312800256", + "outputQty0": "68993996761249511008721", + "outputQty": "68087687876688319276586", + "swapFee": "54333706405462376769", "mpReserves": [ - "51184812213470103006118061", - "32797276031274212613120575", - "31868974369240157606808578" + "47745888299902580421138001", + "13837618541382076723849322", + "42977630943162306957921190" ], "fpReserves": [ - "16799367416361657838121124", - "7594297470943537112152171" + "5358633897353851547827353", + "1680791823856698678109218" ], - "mAssetSupply": "115841259160325242660007637", - "LPTokenSupply": "24240482980197092962775735" + "mAssetSupply": "104420434011504787752082505", + "LPTokenSupply": "6949453124487961048381484" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "227817035605280259309568", - "outputQty0": "227596745711657902062679", - "outputQty": "225814923712433068234449", - "swapFee": "180546991250324039291", + "type": "swap_fp_to_mp", + "inputQty": "25449809540928820477952", + "outputIndex": 2, + "outputQty": "25855968181983241084234", + "swapFee": "0", + "redemptionFee": "15466266499634223964", + "mpReserves": [ + "47745888299902580421138001", + "13837618541382076723849322", + "42951774974980323716836956" + ], + "fpReserves": [ + "5332856786521127841219931", + "1706241633397627498587170" + ], + "mAssetSupply": "104394672366938563679699047", + "LPTokenSupply": "6949453124487961048381484" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "19477131771966", + "outputQty0": "19776953240726", + "outputQty": "19857201225736", + "swapFee1": "11686279063", + "swapFee2": "11866171944", "mpReserves": [ - "51412629249075383265427629", - "32797276031274212613120575", - "31868974369240157606808578" + "47745888299882723219912265", + "13837618541382076723849322", + "42951774974980323716836956" ], "fpReserves": [ - "17026964162073315740183803", - "7368482547231104043917722" + "5332856786501350887979205", + "1706241633397627498587170" ], - "mAssetSupply": "116068855906036900562070316", - "LPTokenSupply": "24240501034896217995179664" + "mAssetSupply": "104394672366918798592630265", + "LPTokenSupply": "6949453124468485085237424" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "545888843997758423040", - "outputQty0": "546260029597621794204", - "outputQty": "541583655205562097233", + "inputIndex": 0, + "inputQty": "31366480285117", + "outputQty0": "31220976552982", + "outputQty": "30729213440004", "mpReserves": [ - "51412629249075383265427629", - "32797276031274212613120575", - "31869520258084155365231618" + "47745888299914089700197382", + "13837618541382076723849322", + "42951774974980323716836956" ], "fpReserves": [ - "17027510422102913361978007", - "7368482547231104043917722" + "5332856786532571864532187", + "1706241633397627498587170" ], - "mAssetSupply": "116069402166066498183864520", - "LPTokenSupply": "24241042618551423557276897" + "mAssetSupply": "104394672366950019569183247", + "LPTokenSupply": "6949453124499214298677428" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "418001985564947509149696", - "outputQty0": "421336799394624687645818", - "outputQty": "420925768742687530159383", - "swapFee1": "250801191338968505489", - "swapFee2": "168534719757849875058", + "type": "mint", + "inputIndex": 1, + "inputQty": "9667490597674166517760", + "outputQty0": "9833278989402531910085", + "outputQty": "9678347130387920760809", "mpReserves": [ - "51412629249075383265427629", - "32376350262531525082961192", - "31869520258084155365231618" + "47745888299914089700197382", + "13847286031979750890367082", + "42951774974980323716836956" ], "fpReserves": [ - "16606173622708288674332189", - "7368482547231104043917722" + "5342690065521974396442272", + "1706241633397627498587170" ], - "mAssetSupply": "115648233901391631346093760", - "LPTokenSupply": "23823065713105609944977749" + "mAssetSupply": "104404505645939422101093332", + "LPTokenSupply": "6959131471629602219438237" }, { - "type": "swap_fp_to_mp", - "inputQty": "5185673687317888368640", + "type": "redeem", "outputIndex": 1, - "outputQty": "5216956208241812870037", - "swapFee": "0", - "redemptionFee": "2088860925036121179", + "inputQty": "454280239849362021154816", + "outputQty0": "461171436592804239249279", + "outputQty": "452866821367956228855297", + "swapFee1": "272568143909617212692", + "swapFee2": "276702861955682543549", "mpReserves": [ - "51412629249075383265427629", - "32371133306323283270091155", - "31869520258084155365231618" + "47745888299914089700197382", + "13394419210611794661511785", + "42951774974980323716836956" ], "fpReserves": [ - "16600951470395698371383056", - "7373668220918421932286362" + "4881518628929170157192993", + "1706241633397627498587170" ], - "mAssetSupply": "115643013837939966079265806", - "LPTokenSupply": "23823065713105609944977749" + "mAssetSupply": "103943610912208573544387602", + "LPTokenSupply": "6504878488594631160004690" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "16174885349841208082432", - "outputQty0": "16185597803670493372314", - "outputQty": "16059452611177206857217", - "swapFee": "12838849047110353212", + "type": "swap_fp_to_mp", + "inputQty": "404038090430892541476864", + "outputIndex": 0, + "outputQty": "409118669599956394184175", + "swapFee": "0", + "redemptionFee": "244442228990592447301", "mpReserves": [ - "51412629249075383265427629", - "32371133306323283270091155", - "31885695143433996573314050" + "47336769630314133306013207", + "13394419210611794661511785", + "42951774974980323716836956" ], "fpReserves": [ - "16617137068199368864755370", - "7357608768307244725429145" + "4474114913944849411690067", + "2110279723828520040064034" ], - "mAssetSupply": "115659199435743636572638120", - "LPTokenSupply": "23823066996990514656013070" + "mAssetSupply": "103536451639453243391331977", + "LPTokenSupply": "6504878488594631160004690" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2192967613960502", - "outputQty0": "2194418288887494", - "outputQty": "2175814540433147", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "5527630267966929920", + "outputQty0": "5501338960808027194", + "outputQty": "5462688957487870053", + "swapFee": "4339202689561708", "mpReserves": [ - "51412629249075383265427629", - "32371133306323283270091155", - "31885695145626964187274552" + "47336775157944401272943127", + "13394419210611794661511785", + "42951774974980323716836956" ], "fpReserves": [ - "16617137070393787153642864", - "7357608768307244725429145" + "4474120415283810219717261", + "2110274261139562552193981" ], - "mAssetSupply": "115659199437938054861525614", - "LPTokenSupply": "23823066999166329196446217" + "mAssetSupply": "103536457140792204199359171", + "LPTokenSupply": "6504878489028551428960860" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "998501820277504212992", - "outputQty0": "1006434908891979813825", - "outputQty": "1005367223658844720766", - "swapFee1": "599101092166502527", - "swapFee2": "402573963556791925", + "type": "swap_fp_to_mp", + "inputQty": "634110611524887232118784", + "outputIndex": 0, + "outputQty": "639341185610113056597171", + "swapFee": "0", + "redemptionFee": "382029187013511801793", "mpReserves": [ - "51412629249075383265427629", - "32371133306323283270091155", - "31884689778403305342553786" + "46697433972334288216345956", + "13394419210611794661511785", + "42951774974980323716836956" ], "fpReserves": [ - "16616130635484895173829039", - "7357608768307244725429145" + "3837405103594623883395592", + "2744384872664449784312765" ], - "mAssetSupply": "115658193405603126438503714", - "LPTokenSupply": "23822068557256160908883477" + "mAssetSupply": "102900123858290031374839295", + "LPTokenSupply": "6504878489028551428960860" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "8116770798651218853888", - "outputQty0": "8122137762214897260427", - "outputQty": "8058592156501838969611", - "swapFee": "6442619246202823081", + "inputQty": "165189435248105390080", + "outputQty0": "164551441422083522377", + "outputQty": "162470875159906952282", "mpReserves": [ - "51412629249075383265427629", - "32371133306323283270091155", - "31892806549201956561407674" + "46697433972334288216345956", + "13394419210611794661511785", + "42951940164415571822227036" ], "fpReserves": [ - "16624252773247110071089466", - "7349550176150742886459534" + "3837569655036045966917969", + "2744384872664449784312765" ], - "mAssetSupply": "115666315543365341335764141", - "LPTokenSupply": "23822069201518085529165785" + "mAssetSupply": "102900288409731453458361672", + "LPTokenSupply": "6505040959903711335913142" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "74887004175788752764928", - "outputQty0": "75481781080956211909278", - "outputQty": "75525868703117683910934", - "swapFee1": "44932202505473251658", - "swapFee2": "30192712432382484763", + "type": "mint", + "inputIndex": 1, + "inputQty": "124187422359258768", + "outputQty0": "126409497490667701", + "outputQty": "124811184362954219", "mpReserves": [ - "51337103380372265581516695", - "32371133306323283270091155", - "31892806549201956561407674" + "46697433972334288216345956", + "13394419334799217020770553", + "42951940164415571822227036" ], "fpReserves": [ - "16548770992166153859180188", - "7349550176150742886459534" + "3837569781445543457585670", + "2744384872664449784312765" ], - "mAssetSupply": "115590863954996817506339626", - "LPTokenSupply": "23747186690562547323726022" + "mAssetSupply": "102900288536140950949029373", + "LPTokenSupply": "6505041084714895698867361" }, { - "type": "swap_fp_to_mp", - "inputQty": "15735682353433326", - "outputIndex": 1, - "outputQty": "15830550394975996", - "swapFee": "0", - "redemptionFee": "6338518400100", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "46451547851529107013632", + "outputQty0": "47279781277802397150577", + "outputQty": "47126918497354383091448", + "swapFee": "37344858136304846472", "mpReserves": [ - "51337103380372265581516695", - "32371133290492732875115159", - "31892806549201956561407674" + "46697433972334288216345956", + "13440870882650746127784185", + "42951940164415571822227036" ], "fpReserves": [ - "16548770976319857858927822", - "7349550191886425239892860" + "3884849562723345854736247", + "2697257954167095401221317" ], - "mAssetSupply": "115590863939156860024487360", - "LPTokenSupply": "23747186690562547323726022" + "mAssetSupply": "102947568317418753346179950", + "LPTokenSupply": "6505044819200709329352008" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "9350386521051918336", - "outputQty0": "9424579491606275696", - "outputQty": "9415214793794034429", - "swapFee1": "5610231912631151", - "swapFee2": "3769831796642510", + "inputQty": "83697162983098741161984", + "outputQty0": "84723540761336988308917", + "outputQty": "83185360913593667946565", + "swapFee1": "50218297789859244697", + "swapFee2": "50834124456802192985", "mpReserves": [ - "51337103380372265581516695", - "32371123875277939081080730", - "31892806549201956561407674" + "46697433972334288216345956", + "13357685521737152459837620", + "42951940164415571822227036" ], "fpReserves": [ - "16548761551740366252652126", - "7349550191886425239892860" + "3800126021962008866427330", + "2697257954167095401221317" ], - "mAssetSupply": "115590854518347200214854174", - "LPTokenSupply": "23747177340737049463070801" + "mAssetSupply": "102862895610781873160064018", + "LPTokenSupply": "6421352678047389574114493" }, { "type": "swap_fp_to_mp", - "inputQty": "3667131696410290", + "inputQty": "411418841528458610212864", "outputIndex": 1, - "outputQty": "3689240246251989", + "outputQty": "404265402563243092927883", "swapFee": "0", - "redemptionFee": "1477163877449", + "redemptionFee": "247210264376147011697", "mpReserves": [ - "51337103380372265581516695", - "32371123871588698834828741", - "31892806549201956561407674" + "46697433972334288216345956", + "12953420119173909366909737", + "42951940164415571822227036" ], "fpReserves": [ - "16548761548047456559029231", - "7349550195553556936303150" + "3388108914668430513597994", + "3108676795695554011434181" ], - "mAssetSupply": "115590854514655767685108728", - "LPTokenSupply": "23747177340737049463070801" + "mAssetSupply": "102451125713752670954246379", + "LPTokenSupply": "6421352678047389574114493" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "366271715011142721994752", - "outputQty0": "369161308035578021182076", - "outputQty": "368764339335826354265065", - "swapFee1": "219763029006685633196", - "swapFee2": "147664523214231208472", + "outputIndex": 1, + "inputQty": "1819087440712357319278592", + "outputQty0": "1837440341106538441272822", + "outputQty": "1796346600182664132836450", + "swapFee1": "1091452464427414391567", + "swapFee2": "1102464204663923064763", "mpReserves": [ - "51337103380372265581516695", - "32371123871588698834828741", - "31524042209866130207142609" + "46697433972334288216345956", + "11157073518991245234073287", + "42951940164415571822227036" ], "fpReserves": [ - "16179600240011878537847155", - "7349550195553556936303150" + "1550668573561892072325172", + "3108676795695554011434181" ], - "mAssetSupply": "115221840871143403895135124", - "LPTokenSupply": "23380927602028807409639368" + "mAssetSupply": "100614787836850796436038320", + "LPTokenSupply": "4602374382581474996275057" }, { - "type": "swap_fp_to_mp", - "inputQty": "279904901110278920339456", - "outputIndex": 2, - "outputQty": "281382812614688685065780", - "swapFee": "0", - "redemptionFee": "112677882646241839095", + "type": "mint", + "inputIndex": 0, + "inputQty": "24959764759787142643712", + "outputQty0": "24815652510596587622765", + "outputQty": "24602486427506960791104", "mpReserves": [ - "51337103380372265581516695", - "32371123871588698834828741", - "31242659397251441522076829" + "46722393737094075358989668", + "11157073518991245234073287", + "42951940164415571822227036" ], "fpReserves": [ - "15897905533396273940108677", - "7629455096663835856642606" + "1575484226072488659947937", + "3108676795695554011434181" ], - "mAssetSupply": "114940258842410445539235741", - "LPTokenSupply": "23380927602028807409639368" + "mAssetSupply": "100639603489361393023661085", + "LPTokenSupply": "4626976869008981957066161" }, { "type": "mint", "inputIndex": 2, - "inputQty": "517408734288226637840384", - "outputQty0": "517769036160249787283471", - "outputQty": "513505005046650892248316", + "inputQty": "704641582567310877523968", + "outputQty0": "701138031248396502471155", + "outputQty": "694260391503802872269197", "mpReserves": [ - "51337103380372265581516695", - "32371123871588698834828741", - "31760068131539668159917213" + "46722393737094075358989668", + "11157073518991245234073287", + "43656581746982882699751004" ], "fpReserves": [ - "16415674569556523727392148", - "7629455096663835856642606" + "2276622257320885162419092", + "3108676795695554011434181" ], - "mAssetSupply": "115458027878570695326519212", - "LPTokenSupply": "23894432607075458301887684" + "mAssetSupply": "101340741520609789526132240", + "LPTokenSupply": "5321237260512784829335358" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "3493531801334314434560", - "outputQty0": "3495588785742161772012", - "outputQty": "3470395112057149354486", - "swapFee": "2773268276972688968", + "type": "redeem", + "outputIndex": 1, + "inputQty": "16968878673260910592", + "outputQty0": "17141614172849456669", + "outputQty": "16692770532134654557", + "swapFee1": "10181327203956546", + "swapFee2": "10284968503709674", "mpReserves": [ - "51337103380372265581516695", - "32374617403390033149263301", - "31760068131539668159917213" + "46722393737094075358989668", + "11157056826220713099418730", + "43656581746982882699751004" ], "fpReserves": [ - "16419170158342265889164160", - "7625984701551778707288120" + "2276605115706712312962423", + "3108676795695554011434181" ], - "mAssetSupply": "115461523467356437488291224", - "LPTokenSupply": "23894432884402285999156580" + "mAssetSupply": "101340724389280585180385245", + "LPTokenSupply": "5321220292652244288820420" }, { "type": "swap_fp_to_mp", - "inputQty": "933471466916416107577344", + "inputQty": "3764958479407220523008", "outputIndex": 2, - "outputQty": "937512266803814180566007", + "outputQty": "3773606124167076722844", "swapFee": "0", - "redemptionFee": "375424166206812491700", + "redemptionFee": "2254106444598434955", "mpReserves": [ - "51337103380372265581516695", - "32374617403390033149263301", - "30822555864735853979351206" + "46722393737094075358989668", + "11157056826220713099418730", + "43652808140858715623028160" ], "fpReserves": [ - "15480609742825234659913993", - "8559456168468194814865464" + "2272848271632381588036021", + "3112441754174961231957189" ], - "mAssetSupply": "114523338476005613071532757", - "LPTokenSupply": "23894432884402285999156580" + "mAssetSupply": "101336969799312699053893798", + "LPTokenSupply": "5321220292652244288820420" }, { - "type": "swap_fp_to_mp", - "inputQty": "5274081603097650176", - "outputIndex": 1, - "outputQty": "5292974449265848072", - "swapFee": "0", - "redemptionFee": "2119203889405922", - "mpReserves": [ - "51337103380372265581516695", - "32374612110415583883415229", - "30822555864735853979351206" - ], - "fpReserves": [ - "15480604444815511145106808", - "8559461442549797912515640" - ], - "mAssetSupply": "114523333180115093446131494", - "LPTokenSupply": "23894432884402285999156580" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "70386195457037213630464", - "outputIndex": 1, - "outputQty": "70633708973253185616128", - "swapFee": "0", - "redemptionFee": "28280453068983926426", + "type": "mint", + "inputIndex": 1, + "inputQty": "2465762946446946992128", + "outputQty0": "2530524923808653679787", + "outputQty": "2503546723511649928390", "mpReserves": [ - "51337103380372265581516695", - "32303978401442330697799101", - "30822555864735853979351206" + "46722393737094075358989668", + "11159522589167160046410858", + "43652808140858715623028160" ], "fpReserves": [ - "15409903312143051329040187", - "8629847638006835126146104" + "2275378796556190241715808", + "3112441754174961231957189" ], - "mAssetSupply": "114452660327895702613991299", - "LPTokenSupply": "23894432884402285999156580" + "mAssetSupply": "101339500324236507707573585", + "LPTokenSupply": "5323723839375755938748810" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2935348883458890399744", - "outputQty0": "2936984701470459128747", - "outputQty": "2921736027507782934780", - "swapFee": "2331690689212973584", + "inputIndex": 2, + "inputQty": "27035061433115309244416", + "outputQty0": "26898802461243003021093", + "outputQty": "26933357212676904607248", + "swapFee": "21289037727235157126", "mpReserves": [ - "51337103380372265581516695", - "32306913750325789588198845", - "30822555864735853979351206" + "46722393737094075358989668", + "11159522589167160046410858", + "43679843202291830932272576" ], "fpReserves": [ - "15412840296844521788168934", - "8626925901979327343211324" + "2302277599017433244736901", + "3085508396962284327349941" ], - "mAssetSupply": "114455597312597173073120046", - "LPTokenSupply": "23894433117571354920453938" + "mAssetSupply": "101366399126697750710594678", + "LPTokenSupply": "5323725968279528662264522" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "100682568310632564654080", - "outputQty0": "100579441952347244314538", - "outputQty": "99812028112266400773794", + "inputIndex": 1, + "inputQty": "369284013971527892992", + "outputQty0": "378986230139001198973", + "outputQty": "374910867909352284355", "mpReserves": [ - "51437785948682898146170775", - "32306913750325789588198845", - "30822555864735853979351206" + "46722393737094075358989668", + "11159891873181131574303850", + "43679843202291830932272576" ], "fpReserves": [ - "15513419738796869032483472", - "8626925901979327343211324" + "2302656585247572245935874", + "3085508396962284327349941" ], - "mAssetSupply": "114556176754549520317434584", - "LPTokenSupply": "23994245145683621321227732" + "mAssetSupply": "101366778112927889711793651", + "LPTokenSupply": "5324100879147438014548877" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "326755226718443798528", - "outputQty0": "327005517795823799811", - "outputQty": "324506807684779326600", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "7703588858608075407360", + "outputQty0": "7905839291205924011403", + "outputQty": "7915215227416961392999", + "swapFee": "6256613014934385712", "mpReserves": [ - "51437785948682898146170775", - "32306913750325789588198845", - "30822882619962572423149734" + "46722393737094075358989668", + "11167595462039739649711210", + "43679843202291830932272576" ], "fpReserves": [ - "15513746744314664856283283", - "8626925901979327343211324" + "2310562424538778169947277", + "3077593181734867365956942" ], - "mAssetSupply": "114556503760067316141234395", - "LPTokenSupply": "23994569652491306100554332" + "mAssetSupply": "101374683952219095635805054", + "LPTokenSupply": "5324101504808739507987448" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "105864977682700795904", - "outputQty0": "105924318012926527011", - "outputQty": "105114925444355949858", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "135087961499783642742784", + "outputQty0": "134311199825357265252073", + "outputQty": "134418732494432398575075", + "swapFee": "106278314864768653946", "mpReserves": [ - "51437785948682898146170775", - "32307019615303472288994749", - "30822882619962572423149734" + "46857481698593859001732452", + "11167595462039739649711210", + "43679843202291830932272576" ], "fpReserves": [ - "15513852668632677782810294", - "8626925901979327343211324" + "2444873624364135435199350", + "2943174449240434967381867" ], - "mAssetSupply": "114556609684385329067761406", - "LPTokenSupply": "23994674767416750456504190" + "mAssetSupply": "101508995152044452901057127", + "LPTokenSupply": "5324112132640225984852842" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "381506737917694736072704", - "outputQty0": "381112021544193550448111", - "outputQty": "378183718495674641576862", + "inputQty": "33905795350929004822528", + "outputQty0": "33710310071636167709917", + "outputQty": "33722408793659378299026", + "swapFee": "26665686778712192536", "mpReserves": [ - "51819292686600592882243479", - "32307019615303472288994749", - "30822882619962572423149734" + "46891387493944788006554980", + "11167595462039739649711210", + "43679843202291830932272576" ], "fpReserves": [ - "15894964690176871333258405", - "8626925901979327343211324" + "2478583934435771602909267", + "2909452040446775589082841" ], - "mAssetSupply": "114937721705929522618209517", - "LPTokenSupply": "24372858485912425098081052" + "mAssetSupply": "101542705462116089068767044", + "LPTokenSupply": "5324114799208903856072095" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2643173393904534814720", - "outputQty0": "2645234717418004529310", - "outputQty": "2624797508491557832697", + "type": "swap_fp_to_mp", + "inputQty": "146746737073802115547136", + "outputIndex": 2, + "outputQty": "147183865035479210841963", + "swapFee": "0", + "redemptionFee": "87920048565857718826", "mpReserves": [ - "51819292686600592882243479", - "32307019615303472288994749", - "30825525793356476957964454" + "46891387493944788006554980", + "11167595462039739649711210", + "43532659337256351721430613" ], "fpReserves": [ - "15897609924894289337787715", - "8626925901979327343211324" + "2332050520159342071531261", + "3056198777520577704629977" ], - "mAssetSupply": "114940366940646940622738827", - "LPTokenSupply": "24375483283420916655913749" + "mAssetSupply": "101396259967888225395107864", + "LPTokenSupply": "5324114799208903856072095" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "99700194448360587264", - "outputQty0": "100416223018218480190", - "outputQty": "100480829802761042103", - "swapFee1": "59820116669016352", - "swapFee2": "40166489207287392", + "inputQty": "24567722626943262720", + "outputQty0": "24822759860646770315", + "outputQty": "24951966292492494288", + "swapFee1": "14740633576165957", + "swapFee2": "14893655916388062", "mpReserves": [ - "51819192205770790121201376", - "32307019615303472288994749", - "30825525793356476957964454" + "46891362541978495514060692", + "11167595462039739649711210", + "43532659337256351721430613" ], "fpReserves": [ - "15897509508671271119307525", - "8626925901979327343211324" + "2332025697399481424760946", + "3056198777520577704629977" ], - "mAssetSupply": "114940266564590411611546029", - "LPTokenSupply": "24375383589208479962228120" + "mAssetSupply": "101396235160022020664725611", + "LPTokenSupply": "5324090232960340270425970" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1234869869240683855872", - "outputQty0": "1233582216866567333655", - "outputQty": "1226799585503330623525", - "swapFee": "979240799234463187", + "type": "swap_fp_to_mp", + "inputQty": "56610600476597960704", + "outputIndex": 2, + "outputQty": "56756228451702902658", + "swapFee": "0", + "redemptionFee": "33903722795134394", "mpReserves": [ - "51820427075640030805057248", - "32307019615303472288994749", - "30825525793356476957964454" + "46891362541978495514060692", + "11167595462039739649711210", + "43532602581027900018527955" ], "fpReserves": [ - "15898743090888137686641180", - "8625699102393824012587799" + "2331969191194822867437263", + "3056255388121054302590681" ], - "mAssetSupply": "114941500146807278178879684", - "LPTokenSupply": "24375383687132559885674438" + "mAssetSupply": "101396178687721084902536322", + "LPTokenSupply": "5324090232960340270425970" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "34578806830000190259200", "outputIndex": 1, - "inputQty": "46077347216895523160064", - "outputQty0": "46408064129135989649238", - "outputQty": "46362812549197712992254", - "swapFee1": "27646408330137313896", - "swapFee2": "18563225651654395859", + "outputQty": "33606083523254819549954", + "swapFee": "0", + "redemptionFee": "20707051217760033672", "mpReserves": [ - "51820427075640030805057248", - "32260656802754274576002495", - "30825525793356476957964454" + "46891362541978495514060692", + "11133989378516484830161256", + "43532602581027900018527955" ], "fpReserves": [ - "15852335026759001696991942", - "8625699102393824012587799" + "2297457439165222811316330", + "3090834194951054492849881" ], - "mAssetSupply": "114895110645903793843626305", - "LPTokenSupply": "24329309104556497376245763" + "mAssetSupply": "101361687642742702606449061", + "LPTokenSupply": "5324090232960340270425970" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "151376750681001689088", - "outputQty0": "152462612885036496900", - "outputQty": "152313620022834110225", - "swapFee1": "90826050408601013", - "swapFee2": "60985045154014598", + "type": "swap_fp_to_mp", + "inputQty": "35252996397646986870784", + "outputIndex": 0, + "outputQty": "35361486306542473597077", + "swapFee": "0", + "redemptionFee": "21106666990104233012", "mpReserves": [ - "51820427075640030805057248", - "32260504489134251741892270", - "30825525793356476957964454" + "46856001055671953040463615", + "11133989378516484830161256", + "43532602581027900018527955" ], "fpReserves": [ - "15852182564146116660495042", - "8625699102393824012587799" + "2262279660848382422962622", + "3126087191348701479720665" ], - "mAssetSupply": "114894958244275953961144003", - "LPTokenSupply": "24329157736888421415416776" + "mAssetSupply": "101326530971092852322328365", + "LPTokenSupply": "5324090232960340270425970" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "155507668800587202560", - "outputQty0": "155345265710479506602", - "outputQty": "154495467257315198708", - "swapFee": "123317063134496230", + "type": "redeem", + "outputIndex": 0, + "inputQty": "30688141522040610881536", + "outputQty0": "30998847127577829287303", + "outputQty": "31160540032920937423906", + "swapFee1": "18412884913224366528", + "swapFee2": "18599308276546697572", "mpReserves": [ - "51820582583308831392259808", - "32260504489134251741892270", - "30825525793356476957964454" + "46824840515639032103039709", + "11133989378516484830161256", + "43532602581027900018527955" ], "fpReserves": [ - "15852337909411827140001644", - "8625544606926566697389091" + "2231280813720804593675319", + "3126087191348701479720665" ], - "mAssetSupply": "114895113589541664440650605", - "LPTokenSupply": "24329157749220127728866399" + "mAssetSupply": "101295550723273551039738634", + "LPTokenSupply": "5293403932726790981981086" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "1581215147979151104", - "outputQty0": "1579563814271268492", - "outputQty": "1570922772202271590", - "swapFee": "1253898231904602", + "inputQty": "9879810480501155692544", + "outputQty0": "9822666063775641435359", + "outputQty": "9718548416758384261626", "mpReserves": [ - "51820584164523979371410912", - "32260504489134251741892270", - "30825525793356476957964454" + "46834720326119533258732253", + "11133989378516484830161256", + "43532602581027900018527955" ], "fpReserves": [ - "15852339488975641411270136", - "8625543036003794495117501" + "2241103479784580235110678", + "3126087191348701479720665" ], - "mAssetSupply": "114895115169105478711919097", - "LPTokenSupply": "24329157749345517552056859" + "mAssetSupply": "101305373389337326681173993", + "LPTokenSupply": "5303122481143549366242712" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "560182459670183215104", "outputIndex": 1, - "inputQty": "819880447245473349107712", - "outputQty0": "825685259665328976192359", - "outputQty": "824846048588342964797949", - "swapFee1": "491928268347284009464", - "swapFee2": "330274103866131590476", + "outputQty": "544199552968895652429", + "swapFee": "0", + "redemptionFee": "335334540863305521", "mpReserves": [ - "51820584164523979371410912", - "31435658440545908777094321", - "30825525793356476957964454" + "46834720326119533258732253", + "11133445178963515934508827", + "43532602581027900018527955" ], "fpReserves": [ - "15026654229310312435077777", - "8625543036003794495117501" + "2240544588883141392574772", + "3126647373808371662935769" ], - "mAssetSupply": "114069760183544015867317214", - "LPTokenSupply": "23509326494926878931350093" + "mAssetSupply": "101304814833770428701943608", + "LPTokenSupply": "5303122481143549366242712" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4736364602368272", - "outputQty0": "4731283264460310", - "outputQty": "4695552005342865", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "16116998455771636170752", + "outputQty0": "16541571936302370025516", + "outputQty": "16565770111242342204148", + "swapFee": "13092675085719602603", "mpReserves": [ - "51820584169260343973779184", - "31435658440545908777094321", - "30825525793356476957964454" + "46834720326119533258732253", + "11149562177419287570679579", + "43532602581027900018527955" ], "fpReserves": [ - "15026654234041595699538087", - "8625543036003794495117501" + "2257086160819443762600288", + "3110081603697129320731621" ], - "mAssetSupply": "114069760188275299131777524", - "LPTokenSupply": "23509326499622430936692958" + "mAssetSupply": "101321356405706731071969124", + "LPTokenSupply": "5303123790411057938202972" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "433815404927869614292992", - "outputQty0": "434091206541884142705839", - "outputQty": "430791669235193924540717", + "inputQty": "146040667234176192", + "outputQty0": "149882286017023489", + "outputQty": "150094405569246010", + "swapFee": "118627107878099", "mpReserves": [ - "51820584169260343973779184", - "31869473845473778391387313", - "30825525793356476957964454" + "46834720326119533258732253", + "11149562323459954804855771", + "43532602581027900018527955" ], "fpReserves": [ - "15460745440583479842243926", - "8625543036003794495117501" + "2257086310701729779623777", + "3110081453602723751485611" ], - "mAssetSupply": "114503851394817183274483363", - "LPTokenSupply": "23940118168857624861233675" + "mAssetSupply": "101321356555589017088992613", + "LPTokenSupply": "5303123790422920648990781" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "259179762588815795945472", - "outputQty0": "261013302145336376593093", - "outputQty": "260745323337901364327140", - "swapFee1": "155507857553289477567", - "swapFee2": "104405320858134550637", + "type": "swap_fp_to_mp", + "inputQty": "288878762405519071117312", + "outputIndex": 2, + "outputQty": "289252298588730672014141", + "swapFee": "0", + "redemptionFee": "172789470516350119704", "mpReserves": [ - "51820584169260343973779184", - "31608728522135877027060173", - "30825525793356476957964454" + "46834720326119533258732253", + "11149562323459954804855771", + "43243350282439169346513814" ], "fpReserves": [ - "15199732138438143465650833", - "8625543036003794495117501" + "1969103859841146246782795", + "3398960216008242822602923" ], - "mAssetSupply": "114242942497992705032440907", - "LPTokenSupply": "23680953957054564394235959" + "mAssetSupply": "101033546894198949906271335", + "LPTokenSupply": "5303123790422920648990781" }, { "type": "swap_fp_to_mp", - "inputQty": "806680336934380706463744", + "inputQty": "264746267830043275165696", "outputIndex": 1, - "outputQty": "808734325016462741536273", + "outputQty": "256361324393423228452395", "swapFee": "0", - "redemptionFee": "323843315193004283418", + "redemptionFee": "158027407379283163490", "mpReserves": [ - "51820584169260343973779184", - "30799994197119414285523900", - "30825525793356476957964454" + "46834720326119533258732253", + "10893200999066531576403376", + "43243350282439169346513814" ], "fpReserves": [ - "14390123850455632757104305", - "9432223372938175201581245" + "1705724847542340974297938", + "3663706483838286097768619" ], - "mAssetSupply": "113433658053325387328177797", - "LPTokenSupply": "23680953957054564394235959" + "mAssetSupply": "100770325909307523916949968", + "LPTokenSupply": "5303123790422920648990781" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5423760672956837888", - "outputQty0": "5427672713554514172", - "outputQty": "5389026558637514753", + "type": "redeem", + "outputIndex": 1, + "inputQty": "4056890637645160382464", + "outputQty0": "4087219535000292175782", + "outputQty": "3975840981923379723446", + "swapFee1": "2434134382587096229", + "swapFee2": "2452331721000175305", "mpReserves": [ - "51820584169260343973779184", - "30799999620880087242361788", - "30825525793356476957964454" + "46834720326119533258732253", + "10889225158084608196679930", + "43243350282439169346513814" ], "fpReserves": [ - "14390129278128346311618477", - "9432223372938175201581245" + "1701637628007340682122156", + "3663706483838286097768619" ], - "mAssetSupply": "113433663480998100882691969", - "LPTokenSupply": "23680959346081123031750712" + "mAssetSupply": "100766241142104244624949491", + "LPTokenSupply": "5299067143198713747317939" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "258825379531154639552512", - "outputQty0": "259007664716105544717517", - "outputQty": "257156016102698527533867", - "mpReserves": [ - "51820584169260343973779184", - "30799999620880087242361788", - "31084351172887631597516966" - ], - "fpReserves": [ - "14649136942844451856335994", - "9432223372938175201581245" - ], - "mAssetSupply": "113692671145714206427409486", - "LPTokenSupply": "23938115362183821559284579" + "type": "redeem", + "outputIndex": 0, + "inputQty": "879821722482421817933824", + "hardLimitError": true }, { "type": "mint", "inputIndex": 1, - "inputQty": "125540461328110977024", - "outputQty0": "125632366310040603018", - "outputQty": "124730612854469520219", - "mpReserves": [ - "51820584169260343973779184", - "30800125161341415353338812", - "31084351172887631597516966" - ], - "fpReserves": [ - "14649262575210761896939012", - "9432223372938175201581245" - ], - "mAssetSupply": "113692796778080516468012504", - "LPTokenSupply": "23938240092796676028804798" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "13597386425821040640", - "outputQty0": "13606783286751572358", - "outputQty": "13553051761017784918", - "swapFee": "10807293960413069", - "mpReserves": [ - "51820584169260343973779184", - "30800125161341415353338812", - "31084364770274057418557606" - ], - "fpReserves": [ - "14649276181994048648511370", - "9432209819886414183796327" - ], - "mAssetSupply": "113692810384863803219584862", - "LPTokenSupply": "23938240093877405424846104" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "149746430562949234688", - "outputQty0": "149583758982534983615", - "outputQty": "148993053440631370777", - "swapFee": "118808066786693745", + "inputQty": "347430792706622599725056", + "outputQty0": "356658585820465289059318", + "outputQty": "353541395377741728908614", "mpReserves": [ - "51820733915690906923013872", - "30800125161341415353338812", - "31084364770274057418557606" + "46834720326119533258732253", + "11236655950791230796404986", + "43243350282439169346513814" ], "fpReserves": [ - "14649425765753031183494985", - "9432060826832973552425550" + "2058296213827805971181474", + "3663706483838286097768619" ], - "mAssetSupply": "113692959968622785754568477", - "LPTokenSupply": "23938240105758212103515478" + "mAssetSupply": "101122899727924709914008809", + "LPTokenSupply": "5652608538576455476226553" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "1285054385947254980608", - "outputQty0": "1293568176615642356902", - "outputQty": "1292157676274487024319", - "swapFee1": "771032631568352988", - "swapFee2": "517427270646256942", + "outputIndex": 1, + "inputQty": "21033424732774490112", + "outputQty0": "21219430219938903862", + "outputQty": "20674559303864868265", + "swapFee1": "12620054839664694", + "swapFee2": "12731658131963342", "mpReserves": [ - "51820733915690906923013872", - "30800125161341415353338812", - "31083072612597782931533287" + "46834720326119533258732253", + "11236635276231926931536721", + "43243350282439169346513814" ], "fpReserves": [ - "14648132197576415541138083", - "9432060826832973552425550" + "2058274994397586032277612", + "3663706483838286097768619" ], - "mAssetSupply": "113691666917873440758468517", - "LPTokenSupply": "23936955128475528005370168" + "mAssetSupply": "101122878521226148107068289", + "LPTokenSupply": "5652587506413728185702910" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "6491407586137014796288", - "outputQty0": "6484354642743756703867", - "outputQty": "6437808095022581760176", + "type": "swap_fp_to_mp", + "inputQty": "34199520530795153326080", + "outputIndex": 1, + "outputQty": "33169340190933497956145", + "swapFee": "0", + "redemptionFee": "20427623557861779854", "mpReserves": [ - "51827225323277043937810160", - "30800125161341415353338812", - "31083072612597782931533287" + "46834720326119533258732253", + "11203465936040993433580576", + "43243350282439169346513814" ], "fpReserves": [ - "14654616552219159297841950", - "9432060826832973552425550" + "2024228955134483065852885", + "3697906004369081251094699" ], - "mAssetSupply": "113698151272516184515172384", - "LPTokenSupply": "23943392936570550587130344" + "mAssetSupply": "101088852909586603002423416", + "LPTokenSupply": "5652587506413728185702910" }, { "type": "swap_fp_to_mp", - "inputQty": "182815241600845557530624", - "outputIndex": 1, - "outputQty": "183160569748787531245513", + "inputQty": "1131657761195640881152", + "outputIndex": 0, + "outputQty": "1132272103870766224148", "swapFee": "0", - "redemptionFee": "73347915151152572122", + "redemptionFee": "675858374814164030", "mpReserves": [ - "51827225323277043937810160", - "30616964591592627822093299", - "31083072612597782931533287" + "46833588054015662492508105", + "11203465936040993433580576", + "43243350282439169346513814" ], "fpReserves": [ - "14471246764341277867534820", - "9614876068433819109956174" + "2023102524509792792468449", + "3699037662130276891975851" ], - "mAssetSupply": "113514854832553454237437376", - "LPTokenSupply": "23943392936570550587130344" + "mAssetSupply": "101087727154820287543203010", + "LPTokenSupply": "5652587506413728185702910" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "1146793674265229918208", - "outputQty0": "1154273985368432145995", - "outputQty": "1155075214045478769516", - "swapFee1": "688076204559137950", - "swapFee2": "461709594147372858", + "outputIndex": 2, + "inputQty": "120303697819642737197056", + "outputQty0": "121322595805062207349447", + "outputQty": "121849059075007252956082", + "swapFee1": "72182218691785642318", + "swapFee2": "72793557483037324409", "mpReserves": [ - "51826070248062998459040644", - "30616964591592627822093299", - "31083072612597782931533287" + "46833588054015662492508105", + "11203465936040993433580576", + "43121501223364162093557732" ], "fpReserves": [ - "14470092490355909435388825", - "9614876068433819109956174" + "1901779928704730585119002", + "3699037662130276891975851" ], - "mAssetSupply": "113513701020277679952664239", - "LPTokenSupply": "23942246211703905813125931" + "mAssetSupply": "100966477352572708373177972", + "LPTokenSupply": "5532291026815954627070085" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "313306428609533117988864", - "outputQty0": "313515724836066970975230", - "outputQty": "312288521983804457800954", - "swapFee": "249029043999620672658", + "type": "mint", + "inputIndex": 1, + "inputQty": "75988619058765119488", + "outputQty0": "77950893440483198408", + "outputQty": "77265443553902152464", "mpReserves": [ - "51826070248062998459040644", - "30616964591592627822093299", - "31396379041207316049522151" + "46833588054015662492508105", + "11203541924660052198700064", + "43121501223364162093557732" ], "fpReserves": [ - "14783608215191976406364055", - "9302587546450014652155220" + "1901857879598171068317410", + "3699037662130276891975851" ], - "mAssetSupply": "113827216745113746923639469", - "LPTokenSupply": "23942271114608305775193196" + "mAssetSupply": "100966555303466148856376380", + "LPTokenSupply": "5532368292259508529222549" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "411236575302325148581888", - "outputQty0": "410787882501665949623000", - "outputQty": "408958416938623226206933", - "swapFee": "326229096444437485727", + "inputQty": "217322635234698692919296", + "outputQty0": "216066270262689535283713", + "outputQty": "214088032679067126461232", "mpReserves": [ - "52237306823365323607622532", - "30616964591592627822093299", - "31396379041207316049522151" + "47050910689250361185427401", + "11203541924660052198700064", + "43121501223364162093557732" ], "fpReserves": [ - "15194396097693642355987055", - "8893629129511391425948287" + "2117924149860860603601123", + "3699037662130276891975851" ], - "mAssetSupply": "114238004627615412873262469", - "LPTokenSupply": "23942303737517950218941768" + "mAssetSupply": "101182621573728838391660093", + "LPTokenSupply": "5746456324938575655683781" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "27723011738329505792", - "outputQty0": "27741502878008504554", - "outputQty": "27609007890126594638", - "swapFee": "22026453406471968", + "inputIndex": 1, + "inputQty": "148037382003968396230656", + "outputQty0": "151829171323946211803560", + "outputQty": "152268152394999323685055", + "swapFee": "120286856427070175228", "mpReserves": [ - "52237306823365323607622532", - "30616964591592627822093299", - "31396406764219054379027943" + "47050910689250361185427401", + "11351579306664020594930720", + "43121501223364162093557732" ], "fpReserves": [ - "15194423839196520364491609", - "8893601520503501299353649" + "2269753321184806815404683", + "3546769509735277568290796" ], - "mAssetSupply": "114238032369118290881767023", - "LPTokenSupply": "23942303739720595559588964" + "mAssetSupply": "101334450745052784603463653", + "LPTokenSupply": "5746468353624218362701303" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "924122040974783283200", "outputIndex": 1, - "inputQty": "268463630291452362752", - "outputQty0": "270333703469535544544", - "outputQty": "270015023180507349397", - "swapFee1": "161078178174871417", - "swapFee2": "108133481387814217", - "mpReserves": [ - "52237306823365323607622532", - "30616694576569447314743902", - "31396406764219054379027943" - ], - "fpReserves": [ - "15194153505493050828947065", - "8893601520503501299353649" - ], - "mAssetSupply": "114237762143548302734036696", - "LPTokenSupply": "23942035292198121924713353" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "5443510759039676973056", - "outputQty0": "5481425866196563619333", - "outputQty": "5475579678590457220856", - "swapFee1": "3266106455423806183", - "swapFee2": "2192570346478625447", + "outputQty": "897907395014261866430", + "swapFee": "0", + "redemptionFee": "552696229069276148", "mpReserves": [ - "52237306823365323607622532", - "30616694576569447314743902", - "31390931184540463921807087" + "47050910689250361185427401", + "11350681399269006333064290", + "43121501223364162093557732" ], "fpReserves": [ - "15188672079626854265327732", - "8893601520503501299353649" + "2268832160803024688489954", + "3547693631776252351573996" ], - "mAssetSupply": "114232282910252452649042810", - "LPTokenSupply": "23936592108049727790120915" + "mAssetSupply": "101333530137367231545825072", + "LPTokenSupply": "5746468353624218362701303" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2244792883508606664704", - "outputQty0": "2242323066172191884872", - "outputQty": "2225477326863597212951", + "inputQty": "369473317044178533744640", + "outputQty0": "367349686576998263700060", + "outputQty": "363503258371952087697173", "mpReserves": [ - "52239551616248832214287236", - "30616694576569447314743902", - "31390931184540463921807087" + "47420384006294539719172041", + "11350681399269006333064290", + "43121501223364162093557732" ], "fpReserves": [ - "15190914402693026457212604", - "8893601520503501299353649" + "2636181847380022952190014", + "3547693631776252351573996" ], - "mAssetSupply": "114234525233318624840927682", - "LPTokenSupply": "23938817585376591387333866" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "78834416666262789685248", - "outputIndex": 0, - "outputQty": "79199482916615587745546", - "swapFee": "0", - "redemptionFee": "31657653539813782931", - "mpReserves": [ - "52160352133332216626541690", - "30616694576569447314743902", - "31390931184540463921807087" - ], - "fpReserves": [ - "15111770268843491999883849", - "8972435937169764089038897" - ], - "mAssetSupply": "114155412757122630197381858", - "LPTokenSupply": "23938817585376591387333866" + "mAssetSupply": "101700879823944229809525132", + "LPTokenSupply": "6109971611996170450398476" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "398861514462449620746240", - "outputQty0": "398420575936033738734609", - "outputQty": "396438733854839221763381", - "swapFee": "316342870361325690487", + "inputQty": "255810677937158160384", + "outputQty0": "254331800154297458624", + "outputQty": "254646941012839422687", + "swapFee": "201269001887362178", "mpReserves": [ - "52559213647794666247287930", - "30616694576569447314743902", - "31390931184540463921807087" + "47420639816972476877332425", + "11350681399269006333064290", + "43121501223364162093557732" ], "fpReserves": [ - "15510190844779525738618458", - "8575997203314924867275516" + "2636436179180177249648638", + "3547438984835239512151309" ], - "mAssetSupply": "114553833333058663936116467", - "LPTokenSupply": "23938849219663627519902914" + "mAssetSupply": "101701134155744384106983756", + "LPTokenSupply": "6109971632123070639134693" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "35488243700254945280", - "outputQty0": "35742885663274250763", - "outputQty": "35704344739822158824", - "swapFee1": "21292946220152967", - "swapFee2": "14297154265309700", - "mpReserves": [ - "52559213647794666247287930", - "30616694576569447314743902", - "31390895480195724099648263" - ], - "fpReserves": [ - "15510155101893862464367695", - "8575997203314924867275516" - ], - "mAssetSupply": "114553797604470154927175404", - "LPTokenSupply": "23938813733549221886972930" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "62804207529926640795648", - "outputIndex": 0, - "outputQty": "63130647488461067478585", - "swapFee": "0", - "redemptionFee": "25234253145282382359", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2081001215163185758208", + "outputQty0": "2134055184626197405222", + "outputQty": "2136687053236069833056", + "swapFee": "1688810417411743474", "mpReserves": [ - "52496083000306205179809345", - "30616694576569447314743902", - "31390895480195724099648263" + "47420639816972476877332425", + "11352762400484169518822498", + "43121501223364162093557732" ], "fpReserves": [ - "15447069469030656508467965", - "8638801410844851508071164" + "2638570234364803447053860", + "3545302297782003442318253" ], - "mAssetSupply": "114490737205860094253658033", - "LPTokenSupply": "23938813733549221886972930" + "mAssetSupply": "101703268210929010304388978", + "LPTokenSupply": "6109971801004112380309040" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "222267943981046443278336", - "outputQty0": "222440736222641771641136", - "outputQty": "221239846478448405058121", - "swapFee": "176581387416018519359", + "inputIndex": 0, + "inputQty": "147636200696690010750976", + "outputQty0": "146780903562476516041661", + "outputQty": "146909985680544442491962", + "swapFee": "116143218644257196982", "mpReserves": [ - "52496083000306205179809345", - "30838962520550493758022238", - "31390895480195724099648263" + "47568276017669166888083401", + "11352762400484169518822498", + "43121501223364162093557732" ], "fpReserves": [ - "15669510205253298280109101", - "8417561564366403103013043" + "2785351137927279963095521", + "3398392312101458999826291" ], - "mAssetSupply": "114713177942082736025299169", - "LPTokenSupply": "23938831391687963488824865" + "mAssetSupply": "101850049114491486820430639", + "LPTokenSupply": "6109983415325976806028738" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "276663225244937573367808", - "outputQty0": "278669769424913895879912", - "outputQty": "278341086152902051443278", - "swapFee1": "165997935146962544020", - "swapFee2": "111467907769965558351", + "outputIndex": 0, + "inputQty": "1447178487811862953984", + "outputQty0": "1462692172837722773119", + "outputQty": "1470352109693083659650", + "swapFee1": "868307092687117772", + "swapFee2": "877615303702633663", "mpReserves": [ - "52496083000306205179809345", - "30560621434397591706578960", - "31390895480195724099648263" + "47566805665559473804423751", + "11352762400484169518822498", + "43121501223364162093557732" ], "fpReserves": [ - "15390840435828384384229189", - "8417561564366403103013043" + "2783888445754442240322402", + "3398392312101458999826291" ], - "mAssetSupply": "114434619640565592094977608", - "LPTokenSupply": "23662184766236540611711459" + "mAssetSupply": "101848587299933952800291183", + "LPTokenSupply": "6108536323668874211786531" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "675165264401965907968", - "outputQty0": "674413460912095313833", - "outputQty": "669172635922874558060", + "type": "redeem", + "outputIndex": 0, + "inputQty": "530122579751272841216", + "outputQty0": "535804802934622372602", + "outputQty": "538610647791906029302", + "swapFee1": "318073547850763704", + "swapFee2": "321482881760773423", "mpReserves": [ - "52496758165570607145717313", - "30560621434397591706578960", - "31390895480195724099648263" + "47566267054911681898394449", + "11352762400484169518822498", + "43121501223364162093557732" ], "fpReserves": [ - "15391514849289296479543022", - "8417561564366403103013043" + "2783352640951507617949800", + "3398392312101458999826291" ], - "mAssetSupply": "114435294054026504190291441", - "LPTokenSupply": "23662853938872463486269519" + "mAssetSupply": "101848051816613899938692004", + "LPTokenSupply": "6108006232896477724021685" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "924621450759408768", - "outputQty0": "923591861712037062", - "outputQty": "916414616163163416", + "inputIndex": 1, + "inputQty": "8701502073772663", + "outputQty0": "8924044334587057", + "outputQty": "8824109811409203", "mpReserves": [ - "52496759090192057905126081", - "30560621434397591706578960", - "31390895480195724099648263" + "47566267054911681898394449", + "11352762409185671592595161", + "43121501223364162093557732" ], "fpReserves": [ - "15391515772881158191580084", - "8417561564366403103013043" + "2783352649875551952536857", + "3398392312101458999826291" ], - "mAssetSupply": "114435294977618365902328503", - "LPTokenSupply": "23662854855287079649432935" + "mAssetSupply": "101848051825537944273279061", + "LPTokenSupply": "6108006241720587535430888" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "853400568981744970104832", - "outputQty0": "852434560386335234521726", - "outputQty": "845728501790509306695203", + "type": "swap_fp_to_mp", + "inputQty": "18844980625446115737600", + "outputIndex": 1, + "outputQty": "18337818612414245308227", + "swapFee": "0", + "redemptionFee": "11291317229296281637", "mpReserves": [ - "53350159659173802875230913", - "30560621434397591706578960", - "31390895480195724099648263" + "47566267054911681898394449", + "11334424590573257347286934", + "43121501223364162093557732" ], "fpReserves": [ - "16243950333267493426101810", - "8417561564366403103013043" + "2764533787826724816473832", + "3417237292726905115563891" ], - "mAssetSupply": "115287729538004701136850229", - "LPTokenSupply": "24508583357077588956128138" + "mAssetSupply": "101829244254806346433497673", + "LPTokenSupply": "6108006241720587535430888" }, { "type": "mint", "inputIndex": 0, - "inputQty": "8660985791240232960", - "outputQty0": "8651022614971917983", - "outputQty": "8582141525682759863", + "inputQty": "918872444542812216623104", + "outputQty0": "913451195128117863064169", + "outputQty": "902781618182908503863560", "mpReserves": [ - "53350168320159594115463873", - "30560621434397591706578960", - "31390895480195724099648263" + "48485139499454494115017553", + "11334424590573257347286934", + "43121501223364162093557732" ], "fpReserves": [ - "16243958984290108398019793", - "8417561564366403103013043" + "3677984982954842679538001", + "3417237292726905115563891" ], - "mAssetSupply": "115287738189027316108768212", - "LPTokenSupply": "24508591939219114638888001" + "mAssetSupply": "102742695449934464296561842", + "LPTokenSupply": "7010787859903496039294448" }, { - "type": "swap_fp_to_mp", - "inputQty": "81631883596124", - "outputIndex": 0, - "outputQty": "82118092932425", - "swapFee": "0", - "redemptionFee": "32822580336", - "mpReserves": [ - "53350168320077476022531448", - "30560621434397591706578960", - "31390895480195724099648263" - ], - "fpReserves": [ - "16243958984208051947177341", - "8417561564448034986609167" - ], - "mAssetSupply": "115287738188945292480506096", - "LPTokenSupply": "24508591939219114638888001" - }, - { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "20587494472470695936", - "outputQty0": "20563811608467975779", - "outputQty": "20400078558256942555", + "inputQty": "32581224636150014017536", + "outputQty0": "32386207714401603772503", + "outputQty": "32342535939441722373595", + "swapFee": "25594266552119275996", "mpReserves": [ - "53350188907571948493227384", - "30560621434397591706578960", - "31390895480195724099648263" + "48517720724090644129035089", + "11334424590573257347286934", + "43121501223364162093557732" ], "fpReserves": [ - "16243979548019660415153120", - "8417561564448034986609167" + "3710371190669244283310504", + "3384894756787463393190296" ], - "mAssetSupply": "115287758752756900948481875", - "LPTokenSupply": "24508612339297672895830556" + "mAssetSupply": "102775081657648865900334345", + "LPTokenSupply": "7010790419330151251222047" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "129493829550843312996352", - "outputQty0": "130452934890167976641641", - "outputQty": "130291996800961555745338", - "swapFee1": "77696297730505987797", - "swapFee2": "52181173956067190656", + "inputQty": "42494645888080809033728", + "outputQty0": "42992589850045999837448", + "outputQty": "41864873909245956190853", + "swapFee1": "25496787532848485420", + "swapFee2": "25795553910027599902", "mpReserves": [ - "53350188907571948493227384", - "30430329437596630150833622", - "31390895480195724099648263" + "48517720724090644129035089", + "11292559716664011391096081", + "43121501223364162093557732" ], "fpReserves": [ - "16113526613129492438511479", - "8417561564448034986609167" + "3667378600819198283473056", + "3384894756787463393190296" ], - "mAssetSupply": "115157357999040689039030890", - "LPTokenSupply": "24379126279376602633432983" + "mAssetSupply": "102732114863352729928096799", + "LPTokenSupply": "6968298323120823727036861" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "411434865356575424", - "outputQty0": "411722720160065089", - "outputQty": "409299585513290204", - "swapFee": "326764215178998", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1339780639925654052143104", + "outputQty0": "1354450972970069759734820", + "outputQty": "1359962412618388224985844", + "swapFee1": "803868383955392431285", + "swapFee2": "812670583782041855840", "mpReserves": [ - "53350188907571948493227384", - "30430329437596630150833622", - "31390895891630589456223687" + "48517720724090644129035089", + "11292559716664011391096081", + "41761538810745773868571888" ], "fpReserves": [ - "16113527024852212598576568", - "8417561155148449473318963" + "2312927627849128523738236", + "3384894756787463393190296" ], - "mAssetSupply": "115157358410763409199095979", - "LPTokenSupply": "24379126279409279054950882" + "mAssetSupply": "101378476560966442210217819", + "LPTokenSupply": "5628598070033565214136885" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "478843699359656483749888", - "outputQty0": "482358414600323137312908", - "outputQty": "481816390046641217015001", - "swapFee1": "287306219615793890249", - "swapFee2": "192943365840129254925", + "type": "swap_fp_to_mp", + "inputQty": "2827235997652768260096", + "outputIndex": 1, + "outputQty": "2747376248427626717387", + "swapFee": "0", + "redemptionFee": "1691793820649487090", "mpReserves": [ - "53350188907571948493227384", - "30430329437596630150833622", - "30909079501583948239208686" + "48517720724090644129035089", + "11289812340415583764378694", + "41761538810745773868571888" ], "fpReserves": [ - "15631168610251889461263660", - "8417561155148449473318963" + "2310107971481379378587449", + "3387721992785116161450392" ], - "mAssetSupply": "114675192939528926191037996", - "LPTokenSupply": "23900311310671584150590018" + "mAssetSupply": "101375658596392513714554122", + "LPTokenSupply": "5628598070033565214136885" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "35857995980140416335872", - "outputQty0": "36119466270642735852346", - "outputQty": "36075307416560923363215", - "swapFee1": "21514797588084249801", - "swapFee2": "14447786508257094340", + "inputQty": "898361998592270008320", + "outputQty0": "907412316335362621349", + "outputQty": "884144237788069559019", + "swapFee1": "539017199155362004", + "swapFee2": "544447389801217572", "mpReserves": [ - "53350188907571948493227384", - "30394254130180069227470407", - "30909079501583948239208686" + "48517720724090644129035089", + "11288928196177795694819675", + "41761538810745773868571888" ], "fpReserves": [ - "15595049143981246725411314", - "8417561155148449473318963" + "2309200559165044015966100", + "3387721992785116161450392" ], - "mAssetSupply": "114639087921044791712279990", - "LPTokenSupply": "23864455466171202542679126" + "mAssetSupply": "101374751728523568153150345", + "LPTokenSupply": "5627699761936692859664765" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3506169666549164", - "outputQty0": "3508792837797176", - "outputQty": "3489316304212599", - "swapFee": "2785051175887", + "inputIndex": 0, + "inputQty": "3054095276455204749312", + "outputQty0": "3035531952045920375202", + "outputQty": "3041264448612636021884", + "swapFee": "2402757110992572477", "mpReserves": [ - "53350188907571948493227384", - "30394254130180069227470407", - "30909079505090117905757850" + "48520774819367099333784401", + "11288928196177795694819675", + "41761538810745773868571888" ], "fpReserves": [ - "15595049147490039563208490", - "8417561151659133169106364" + "2312236091117089936341302", + "3384680728336503525428508" ], - "mAssetSupply": "114639087924553584550077166", - "LPTokenSupply": "23864455466171481047796714" + "mAssetSupply": "101377787260475614073525547", + "LPTokenSupply": "5627700002212403958922012" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "169624530033815", - "outputQty0": "169425330055674", - "outputQty": "168098487324783", + "inputIndex": 2, + "inputQty": "28428259324570390528", + "outputQty0": "28299801178082415799", + "outputQty": "28000457483837022262", "mpReserves": [ - "53350188907741573023261199", - "30394254130180069227470407", - "30909079505090117905757850" + "48520774819367099333784401", + "11288928196177795694819675", + "41761567239005098438962416" ], "fpReserves": [ - "15595049147659464893264164", - "8417561151659133169106364" + "2312264390918268018757101", + "3384680728336503525428508" ], - "mAssetSupply": "114639087924723009880132840", - "LPTokenSupply": "23864455466339579535121497" + "mAssetSupply": "101377815560276792155941346", + "LPTokenSupply": "5627728002669887795944274" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1062142301493518532608", - "outputQty0": "1062936892827599129889", - "outputQty": "1057035732510395486527", - "swapFee": "843689959047450417", + "inputQty": "2031518452466241503232", + "outputQty0": "2022338261334193922405", + "outputQty": "2026127832078622352890", + "swapFee": "1600754127697368991", "mpReserves": [ - "53350188907741573023261199", - "30394254130180069227470407", - "30910141647391611424290458" + "48520774819367099333784401", + "11288928196177795694819675", + "41763598757457564680465648" ], "fpReserves": [ - "15596112084552292492394053", - "8416504115926622773619837" + "2314286729179602212679506", + "3382654600504424903075618" ], - "mAssetSupply": "114640150861615837479262729", - "LPTokenSupply": "23864455550708575439866538" + "mAssetSupply": "101379837898538126349863751", + "LPTokenSupply": "5627728162745300565681173" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "351988580935537275174912", - "outputQty0": "351572547804657831281339", - "outputQty": "348805085029715785714086", + "type": "redeem", + "outputIndex": 2, + "inputQty": "172945394678674539675648", + "outputQty0": "174658087533673780568439", + "outputQty": "175342638321849116965802", + "swapFee1": "103767236807204723805", + "swapFee2": "104794852520204268341", "mpReserves": [ - "53702177488677110298436111", - "30394254130180069227470407", - "30910141647391611424290458" + "48520774819367099333784401", + "11288928196177795694819675", + "41588256119135715563499846" ], "fpReserves": [ - "15947684632356950323675392", - "8416504115926622773619837" + "2139628641645928432111067", + "3382654600504424903075618" ], - "mAssetSupply": "114991723409420495310544068", - "LPTokenSupply": "24213260635738291225580624" + "mAssetSupply": "101205284605856972773563653", + "LPTokenSupply": "5454793144790306746477905" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4232405724500921942016", - "outputQty0": "4235626272474854039332", - "outputQty": "4211130395821868865192", - "swapFee": "3361692726521768398", - "mpReserves": [ - "53702177488677110298436111", - "30394254130180069227470407", - "30914374053116112346232474" - ], - "fpReserves": [ - "15951920258629425177714724", - "8412292985530800904754645" - ], - "mAssetSupply": "114995959035692970164583400", - "LPTokenSupply": "24213260971907563877757463" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "890058098695988864", - "outputQty0": "888999445399784872", - "outputQty": "881963965373928703", + "inputIndex": 1, + "inputQty": "24767168886961596268544", + "outputQty0": "25400147722500118649070", + "outputQty": "25461779953467414466256", + "swapFee": "20111817811035236493", "mpReserves": [ - "53702178378735208994424975", - "30394254130180069227470407", - "30914374053116112346232474" + "48520774819367099333784401", + "11313695365064757291088219", + "41588256119135715563499846" ], "fpReserves": [ - "15951921147628870577499596", - "8412292985530800904754645" + "2165028789368428550760137", + "3357192820550957488609362" ], - "mAssetSupply": "114995959924692415564368272", - "LPTokenSupply": "24213261853871529251686166" + "mAssetSupply": "101230684753579472892212723", + "LPTokenSupply": "5454795155972087850001554" }, { - "type": "swap_fp_to_mp", - "inputQty": "2024985895532157992960", + "type": "redeem", "outputIndex": 1, - "outputQty": "2032619541505701053144", - "swapFee": "0", - "redemptionFee": "814055957984772337", + "inputQty": "604485634012033734148096", + "outputQty0": "609858460161637576238853", + "outputQty": "593518801477780311812921", + "swapFee1": "362691380407220240488", + "swapFee2": "365915076096982545743", "mpReserves": [ - "53702178378735208994424975", - "30392221510638563526417263", - "30914374053116112346232474" + "48520774819367099333784401", + "10720176563586976979275298", + "41588256119135715563499846" ], "fpReserves": [ - "15949886007733908646656806", - "8414317971426333062747605" + "1555170329206790974521284", + "3357192820550957488609362" ], - "mAssetSupply": "114993925598853411618297819", - "LPTokenSupply": "24213261853871529251686166" + "mAssetSupply": "100621192208493932298519613", + "LPTokenSupply": "4850345791098094837877506" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1346007461035416259395584", - "outputQty0": "1344367220136554421947483", - "outputQty": "1334651763797877832646440", - "swapFee": "1066823860196167284796", + "type": "mint", + "inputIndex": 2, + "inputQty": "1531949732517870829568", + "outputQty0": "1524595563158596414773", + "outputQty": "1512005318432489598656", "mpReserves": [ - "55048185839770625253820559", - "30392221510638563526417263", - "30914374053116112346232474" + "48520774819367099333784401", + "10720176563586976979275298", + "41589788068868233434329414" ], "fpReserves": [ - "17294253227870463068604289", - "7079666207628455230101165" + "1556694924769949570936057", + "3357192820550957488609362" ], - "mAssetSupply": "116338292818989966040245302", - "LPTokenSupply": "24213368536257548868414645" + "mAssetSupply": "100622716804057090894934386", + "LPTokenSupply": "4851857796416527327476162" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "497561014232102555615232", - "outputQty0": "497951307566884227435781", - "outputQty": "493469676585851125915311", + "inputQty": "117589615999681019904", + "outputQty0": "117025103729633569099", + "outputQty": "117688928344323477279", + "swapFee": "92846548838087835", "mpReserves": [ - "55048185839770625253820559", - "30392221510638563526417263", - "31411935067348214901847706" + "48520774819367099333784401", + "10720176563586976979275298", + "41589905658484233115349318" ], "fpReserves": [ - "17792204535437347296040070", - "7079666207628455230101165" + "1556811949873679204505156", + "3357075131622613165132083" ], - "mAssetSupply": "116836244126556850267681083", - "LPTokenSupply": "24706838212843399994329956" + "mAssetSupply": "100622833829160820528503485", + "LPTokenSupply": "4851857805701182211284945" }, { - "type": "swap_fp_to_mp", - "inputQty": "83733734291003372732416", - "outputIndex": 2, - "outputQty": "84345200878518841013715", - "swapFee": "0", - "redemptionFee": "33777309580470823947", - "mpReserves": [ - "55048185839770625253820559", - "30392221510638563526417263", - "31327589866469696060833991" - ], - "fpReserves": [ - "17707761261486170236171012", - "7163399941919458602833581" - ], - "mAssetSupply": "116751834629915253678635972", - "LPTokenSupply": "24706838212843399994329956" + "type": "redeem", + "outputIndex": 1, + "inputQty": "1553191264466171305394176", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "2485128024645950464", + "inputQty": "17990470745302077800448", "outputIndex": 0, - "outputQty": "2507961350023067622", + "outputQty": "17977990412352672909008", "swapFee": "0", - "redemptionFee": "1002349436822401", + "redemptionFee": "10723695337959224020", "mpReserves": [ - "55048183331809275230752937", - "30392221510638563526417263", - "31327589866469696060833991" + "48502796828954746660875393", + "10720176563586976979275298", + "41589905658484233115349318" ], "fpReserves": [ - "17707758755612578180167216", - "7163402427047483248784045" + "1538939124310413831137061", + "3375065602367915242932531" ], - "mAssetSupply": "116751832125044011059454577", - "LPTokenSupply": "24706838212843399994329956" + "mAssetSupply": "100604971727292893114359410", + "LPTokenSupply": "4851857805701182211284945" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "369679427975721189376", - "outputQty0": "372809050323923461566", - "outputQty": "372321282390145335498", - "swapFee1": "221807656785432713", - "swapFee2": "149123620129569384", + "inputQty": "13846031193428077838336", + "outputQty0": "13950461516142167164089", + "outputQty": "13556708783807002658979", + "swapFee1": "8307618716056846703", + "swapFee2": "8370276909685300298", "mpReserves": [ - "55048183331809275230752937", - "30391849189356173381081765", - "31327589866469696060833991" + "48502796828954746660875393", + "10706619854803169976616319", + "41589905658484233115349318" ], "fpReserves": [ - "17707385946562254256705650", - "7163402427047483248784045" + "1524988662794271663972972", + "3375065602367915242932531" ], - "mAssetSupply": "116751459465117307265562395", - "LPTokenSupply": "24706468555596189951683851" + "mAssetSupply": "100591029636053660632495619", + "LPTokenSupply": "4838012605269625739131279" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "71000207228665", - "outputQty0": "71601276210985", - "outputQty": "71507594536217", - "swapFee1": "42600124337", - "swapFee2": "28640510484", + "inputQty": "89616586515338586226688", + "outputQty0": "90264258557291137949227", + "outputQty": "87693478313094307472057", + "swapFee1": "53769951909203151736", + "swapFee2": "54158555134374682769", "mpReserves": [ - "55048183331809275230752937", - "30391849189284665786545548", - "31327589866469696060833991" + "48502796828954746660875393", + "10618926376490075669144262", + "41589905658484233115349318" ], "fpReserves": [ - "17707385946490652980494665", - "7163402427047483248784045" + "1434724404236980526023745", + "3375065602367915242932531" ], - "mAssetSupply": "116751459465045734629861894", - "LPTokenSupply": "24706468555525194004467619" + "mAssetSupply": "100500819536051503869229161", + "LPTokenSupply": "4748401395749478073219764" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "238707516971625984", - "outputQty0": "240728351690188729", - "outputQty": "240413387536172351", - "swapFee1": "143224510182975", - "swapFee2": "96291340676075", + "inputQty": "488671148820211198590976", + "outputQty0": "490852205697798406853097", + "outputQty": "476136406498138643726586", + "swapFee1": "293202689292126719154", + "swapFee2": "294511323418679044111", "mpReserves": [ - "55048183331809275230752937", - "30391848948871278250373197", - "31327589866469696060833991" + "48502796828954746660875393", + "10142789969991937025417676", + "41589905658484233115349318" ], "fpReserves": [ - "17707385705762301290305936", - "7163402427047483248784045" + "943872198539182119170648", + "3375065602367915242932531" ], - "mAssetSupply": "116751459224413674280349240", - "LPTokenSupply": "24706468316831999483859932" + "mAssetSupply": "100010261841677124141420175", + "LPTokenSupply": "4259759567198196087300703" }, { "type": "swap_fp_to_mp", - "inputQty": "71938021738903856", + "inputQty": "79047301397118915182592", "outputIndex": 1, - "outputQty": "72443621032266166", + "outputQty": "75234841207509883385368", "swapFee": "0", - "redemptionFee": "29015411596836", + "redemptionFee": "46610663072870265135", "mpReserves": [ - "55048183331809275230752937", - "30391848876427657218107031", - "31327589866469696060833991" + "48502796828954746660875393", + "10067555128784427142032308", + "41589905658484233115349318" ], "fpReserves": [ - "17707385633223772298215732", - "7163402498985504987687901" + "866187760084398343944601", + "3454112903765034158115123" ], - "mAssetSupply": "116751459151904160699855872", - "LPTokenSupply": "24706468316831999483859932" + "mAssetSupply": "99932624013885413236459263", + "LPTokenSupply": "4259759567198196087300703" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "57546807753648832512", - "outputQty0": "58033983392813799277", - "outputQty": "57966324196966956159", - "swapFee1": "34528084652189299", - "swapFee2": "23213593357125519", + "type": "swap_fp_to_mp", + "inputQty": "567148765181155672064", + "outputIndex": 1, + "outputQty": "538750701454635760819", + "swapFee": "0", + "redemptionFee": "333852600573090403", "mpReserves": [ - "55048183331809275230752937", - "30391848876427657218107031", - "31327531900145499093877832" + "48502796828954746660875393", + "10067016378082972506271489", + "41589905658484233115349318" ], "fpReserves": [ - "17707327599240379484416455", - "7163402498985504987687901" + "865631339083443193272279", + "3454680052530215313787187" ], - "mAssetSupply": "116751401141134361243182114", - "LPTokenSupply": "24706410773477054300246349" + "mAssetSupply": "99932067926737058658877344", + "LPTokenSupply": "4259759567198196087300703" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "44909824808549711872", - "outputQty0": "45290018665945849287", - "outputQty": "45237216834389718592", - "swapFee1": "26945894885129827", - "swapFee2": "18116007466378339", - "mpReserves": [ - "55048183331809275230752937", - "30391848876427657218107031", - "31327486662928664704159240" - ], - "fpReserves": [ - "17707282309221713538567168", - "7163402498985504987687901" - ], - "mAssetSupply": "116751355869231702763711166", - "LPTokenSupply": "24706365866346835239047459" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "438136349833810631720960", - "outputQty0": "441821478232401579822324", - "outputQty": "441232103700562726117996", - "swapFee1": "262881809900286379032", - "swapFee2": "176728591292960631928", - "mpReserves": [ - "55048183331809275230752937", - "29950616772727094491989035", - "31327486662928664704159240" - ], - "fpReserves": [ - "17265460830989311958744844", - "7163402498985504987687901" - ], - "mAssetSupply": "116309711119590594144520770", - "LPTokenSupply": "24268255804694014635964402" + "inputQty": "24292041404238155218944", + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "21105511944117725167616", - "outputIndex": 0, - "outputQty": "21291221242074343295026", - "swapFee": "0", - "redemptionFee": "8509252532400542342", + "type": "mint", + "inputIndex": 0, + "inputQty": "5751895307905753153536", + "outputQty0": "5712156107742852512325", + "outputQty": "5718164084850656120230", "mpReserves": [ - "55026892110567200887457911", - "29950616772727094491989035", - "31327486662928664704159240" + "48508548724262652414028929", + "10067016378082972506271489", + "41589905658484233115349318" ], "fpReserves": [ - "17244187699658310602888992", - "7184508010929622712855517" + "871343495191186045784604", + "3454680052530215313787187" ], - "mAssetSupply": "116288446497512125189207260", - "LPTokenSupply": "24268255804694014635964402" + "mAssetSupply": "99937780082844801511389669", + "LPTokenSupply": "4265477731283046743420933" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "16278377100741022056448", - "outputQty0": "16414235052071009499802", - "outputQty": "16428179752477572365440", - "swapFee1": "9767026260444613233", - "swapFee2": "6565694020828403799", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1023336560191375232", + "outputQty0": "1016265863541679795", + "outputQty": "1034823001287682712", + "swapFee": "813798737055559", "mpReserves": [ - "55010463930814723315092471", - "29950616772727094491989035", - "31327486662928664704159240" + "48508549747599212605404161", + "10067016378082972506271489", + "41589905658484233115349318" ], "fpReserves": [ - "17227773464606239593389190", - "7184508010929622712855517" + "871344511457049587464399", + "3454679017707214026104475" ], - "mAssetSupply": "116272038828154075008111257", - "LPTokenSupply": "24251978404295899658369277" + "mAssetSupply": "99937781099110665053069464", + "LPTokenSupply": "4265477731364426617126488" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "15733383048008405352448", - "outputQty0": "15745117031511136003270", - "outputQty": "15605424012456698595439", - "mpReserves": [ - "55010463930814723315092471", - "29950616772727094491989035", - "31343220045976673109511688" - ], - "fpReserves": [ - "17243518581637750729392460", - "7184508010929622712855517" - ], - "mAssetSupply": "116287783945185586144114527", - "LPTokenSupply": "24267583828308356356964716" + "type": "swap_fp_to_mp", + "inputQty": "363332277127336630943744", + "outputIndex": 2, + "hardLimitError": true }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "131703513275262520262656", - "outputQty0": "132800821191612094152933", - "outputQty": "132913135942617217352713", - "swapFee1": "79022107965157512157", - "swapFee2": "53120328476644837661", + "outputIndex": 1, + "inputQty": "195331533057024786432", + "outputQty0": "195025220005252171963", + "outputQty": "188830572816502678319", + "swapFee1": "117198919834214871", + "swapFee2": "117015132003151303", "mpReserves": [ - "54877550794872106097739758", - "29950616772727094491989035", - "31343220045976673109511688" + "48508549747599212605404161", + "10066827547510156003593170", + "41589905658484233115349318" ], "fpReserves": [ - "17110717760446138635239527", - "7184508010929622712855517" + "871149486237044335292436", + "3454679017707214026104475" ], - "mAssetSupply": "116155036244322450694799255", - "LPTokenSupply": "24135888217243890352453275" + "mAssetSupply": "99937586190905791804048804", + "LPTokenSupply": "4265282411551261575761543" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "75783127461909384658944", - "outputQty0": "76412779725694531394788", - "outputQty": "76325421937123701808062", - "swapFee1": "45469876477145630795", - "swapFee2": "30565111890277812557", + "type": "swap_fp_to_mp", + "inputQty": "9760281287332740", + "outputIndex": 1, + "outputQty": "9273297044494835", + "swapFee": "0", + "redemptionFee": "5746509651205", "mpReserves": [ - "54877550794872106097739758", - "29950616772727094491989035", - "31266894624039549407703626" + "48508549747599212605404161", + "10066827538236858959098335", + "41589905658484233115349318" ], "fpReserves": [ - "17034304980720444103844739", - "7184508010929622712855517" + "871149476659528249950685", + "3454679027467495313437215" ], - "mAssetSupply": "116078654029708646441217024", - "LPTokenSupply": "24060109636769628682357410" + "mAssetSupply": "99937586181334022228358258", + "LPTokenSupply": "4265282411551261575761543" }, { "type": "swap_fp_to_mp", - "inputQty": "5913948981035086643200", + "inputQty": "1772453990795907956736", "outputIndex": 2, - "outputQty": "5952811166391818118850", + "outputQty": "1747246446929678183965", "swapFee": "0", - "redemptionFee": "2383860135906679126", + "redemptionFee": "1043516008251222596", "mpReserves": [ - "54877550794872106097739758", - "29950616772727094491989035", - "31260941812873157589584776" + "48508549747599212605404161", + "10066827538236858959098335", + "41588158412037303437165353" ], "fpReserves": [ - "17028345330380677406027618", - "7190421959910657799498717" + "869410283312442878956868", + "3456451481458291221393951" ], - "mAssetSupply": "116072696763229015650079029", - "LPTokenSupply": "24060109636769628682357410" + "mAssetSupply": "99935848031502945108587037", + "LPTokenSupply": "4265282411551261575761543" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4539177448407341465600", - "outputQty0": "4533526339053122172961", - "outputQty": "4493526113482070062996", + "inputQty": "29930717679431977009152", + "outputQty0": "29723817951072502753227", + "outputQty": "29741926375291618995895", "mpReserves": [ - "54882089972320513439205358", - "29950616772727094491989035", - "31260941812873157589584776" + "48538480465278644582413313", + "10066827538236858959098335", + "41588158412037303437165353" ], "fpReserves": [ - "17032878856719730528200579", - "7190421959910657799498717" + "899134101263515381710095", + "3456451481458291221393951" ], - "mAssetSupply": "116077230289568068772251990", - "LPTokenSupply": "24064603162883110752420406" + "mAssetSupply": "99965571849454017611340264", + "LPTokenSupply": "4295024337926553194757438" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "134177565371751968", - "outputQty0": "134305249940065739", - "outputQty": "133120172910879358", + "type": "swap_fp_to_mp", + "inputQty": "453789166650050281472", + "outputIndex": 1, + "outputQty": "431556597770129627855", + "swapFee": "0", + "redemptionFee": "267434441450021653", "mpReserves": [ - "54882089972320513439205358", - "29950616906904659863741003", - "31260941812873157589584776" + "48538480465278644582413313", + "10066395981639088829470480", + "41588158412037303437165353" ], "fpReserves": [ - "17032878991024980468266318", - "7190421959910657799498717" + "898688377194432012288225", + "3456905270624941271675423" ], - "mAssetSupply": "116077230423873318712317729", - "LPTokenSupply": "24064603296003283663299764" + "mAssetSupply": "99965126392819375691940047", + "LPTokenSupply": "4295024337926553194757438" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "44624381166249", - "outputQty0": "44994628251148", - "outputQty": "44942971594366", - "swapFee1": "26774628699", - "swapFee2": "17997851300", - "mpReserves": [ - "54882089972320513439205358", - "29950616906904659863741003", - "31260941812828214617990410" - ], - "fpReserves": [ - "17032878990979985840015170", - "7190421959910657799498717" - ], - "mAssetSupply": "116077230423828342081917881", - "LPTokenSupply": "24064603295958661959596384" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "7071393660139339776000", "outputIndex": 0, - "outputQty": "7131965257614075781790", - "swapFee": "0", - "redemptionFee": "2850374798682595764", + "inputQty": "1178992716452994613248", + "outputQty0": "1178019038471468764838", + "outputQty": "1185510953933280946281", + "swapFee1": "707395629871796767", + "swapFee2": "706811423082881258", "mpReserves": [ - "54874958007062899363423568", - "29950616906904659863741003", - "31260941812828214617990410" + "48537294954324711301467032", + "10066395981639088829470480", + "41588158412037303437165353" ], "fpReserves": [ - "17025753053983279350603587", - "7197493353570797139274717" + "897510358155960543523387", + "3456905270624941271675423" ], - "mAssetSupply": "116070107337206434275102062", - "LPTokenSupply": "24064603295958661959596384" + "mAssetSupply": "99963949080592327306056467", + "LPTokenSupply": "4293845415949663187323866" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "777809588135088750592", - "outputQty0": "784258356364869936074", - "outputQty": "784921673572804287870", - "swapFee1": "466685752881053250", - "swapFee2": "313703342545947974", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1188191734740375", + "outputQty0": "1179974606715274", + "outputQty": "1200424408771955", + "swapFee": "944207989758", "mpReserves": [ - "54874173085389326559135698", - "29950616906904659863741003", - "31260941812828214617990410" + "48537294955512903036207407", + "10066395981639088829470480", + "41588158412037303437165353" ], "fpReserves": [ - "17024968795626914480667513", - "7197493353570797139274717" + "897510359335935150238661", + "3456905269424516862903468" ], - "mAssetSupply": "116069323392553411951113962", - "LPTokenSupply": "24063825533039102158951117" + "mAssetSupply": "99963949081772301912771741", + "LPTokenSupply": "4293845415949757608122841" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "66744363336524939264", - "outputQty0": "67297730578708533145", - "outputQty": "67206878044717711219", - "swapFee1": "40046618001914963", - "swapFee2": "26919092231483413", + "inputQty": "5605579883303235747840", + "outputQty0": "5600433993522065612250", + "outputQty": "5422329328051748611079", + "swapFee1": "3363347929981941448", + "swapFee2": "3360260396113239367", "mpReserves": [ - "54874173085389326559135698", - "29950549700026615146029784", - "31260941812828214617990410" + "48537294955512903036207407", + "10060973652311037080859401", + "41588158412037303437165353" ], "fpReserves": [ - "17024901497896335772134368", - "7197493353570797139274717" + "891909925342413084626411", + "3456905269424516862903468" ], - "mAssetSupply": "116069256121741925474064230", - "LPTokenSupply": "24063758792680427434203349" + "mAssetSupply": "99958352008039175960398858", + "LPTokenSupply": "4288240172401247370569145" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "29250474231051254235136", - "outputQty0": "29492877932269153851573", - "outputQty": "29517803429490012324082", - "swapFee1": "17550284538630752541", - "swapFee2": "11797151172907661540", + "type": "swap_fp_to_mp", + "inputQty": "2366144913806891520", + "outputIndex": 2, + "outputQty": "2334289888162090825", + "swapFee": "0", + "redemptionFee": "1394115388684823", "mpReserves": [ - "54844655281959836546811616", - "29950549700026615146029784", - "31260941812828214617990410" + "48537294955512903036207407", + "10060973652311037080859401", + "41588156077747415275074528" ], "fpReserves": [ - "16995408619964066618282795", - "7197493353570797139274717" + "891907601816765276586516", + "3456907635569430669794988" ], - "mAssetSupply": "116039775040960829227874197", - "LPTokenSupply": "24034510073477830043043467" + "mAssetSupply": "99958349685907643541043786", + "LPTokenSupply": "4288240172401247370569145" }, { - "type": "swap_fp_to_mp", - "inputQty": "90403164807066200047616", - "outputIndex": 0, - "outputQty": "91162713451650931950652", - "swapFee": "0", - "redemptionFee": "36434388520418980129", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "14449695465343700992", + "outputQty0": "14349707043918910305", + "outputQty": "14601222325882375896", + "swapFee": "11484292852421955", "mpReserves": [ - "54753492568508185614860964", - "29950549700026615146029784", - "31260941812828214617990410" + "48537309405208368379908399", + "10060973652311037080859401", + "41588156077747415275074528" ], "fpReserves": [ - "16904322648663019167960193", - "7287896518377863339322333" + "891921951523809195496821", + "3456893034347104787419092" ], - "mAssetSupply": "115948725504048302196531724", - "LPTokenSupply": "24034510073477830043043467" + "mAssetSupply": "99958364035614687459954091", + "LPTokenSupply": "4288240173549676655811340" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "3353882516285374332928", - "outputQty0": "3357056058044178521279", - "outputQty": "3329619217909329234266", - "swapFee": "2662178016203138422", + "inputIndex": 2, + "inputQty": "34447572730744745984", + "outputQty0": "34268149400366559476", + "outputQty": "34868748956084127553", + "swapFee": "27425309513713422", "mpReserves": [ - "54753492568508185614860964", - "29953903582542900520362712", - "31260941812828214617990410" + "48537309405208368379908399", + "10060973652311037080859401", + "41588190525320146019820512" ], "fpReserves": [ - "16907679704721063346481472", - "7284566899159954010088067" + "891956219673209562056297", + "3456858165598148703291539" ], - "mAssetSupply": "115952082560106346375053003", - "LPTokenSupply": "24034510339695631663357309" + "mAssetSupply": "99958398303764087826513567", + "LPTokenSupply": "4288240176292207607182682" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "155876513976981263482880", - "outputQty0": "155682799904057567824475", - "outputQty": "154319154822763978014036", + "inputIndex": 1, + "inputQty": "222339782492472853135360", + "outputQty0": "229354682686375063556939", + "outputQty": "228863497065739876025006", "mpReserves": [ - "54909369082485166878343844", - "29953903582542900520362712", - "31260941812828214617990410" + "48537309405208368379908399", + "10283313434803509933994761", + "41588190525320146019820512" ], "fpReserves": [ - "17063362504625120914305947", - "7284566899159954010088067" + "1121310902359584625613236", + "3456858165598148703291539" ], - "mAssetSupply": "116107765360010403942877478", - "LPTokenSupply": "24188829494518395641371345" + "mAssetSupply": "100187752986450462890070506", + "LPTokenSupply": "4517103673357947483207688" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "68359522915613644161024", - "outputQty0": "68410550223101776804525", - "outputQty": "67836262511720408739721", - "swapFee": "54247581953816075475", + "inputIndex": 1, + "inputQty": "222981146819960323964928", + "outputQty0": "229719311823364822198293", + "outputQty": "231805937532707181860250", + "swapFee": "182758272613290258478", "mpReserves": [ - "54909369082485166878343844", - "29953903582542900520362712", - "31329301335743828262151434" + "48537309405208368379908399", + "10506294581623470257959689", + "41588190525320146019820512" ], "fpReserves": [ - "17131773054848222691110472", - "7216730636648233601348346" + "1351030214182949447811529", + "3225052228065441521431289" ], - "mAssetSupply": "116176175910233505719682003", - "LPTokenSupply": "24188834919276591022978892" + "mAssetSupply": "100417472298273827712268799", + "LPTokenSupply": "4517121949185208812233535" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "983138275425789312", - "outputQty0": "983868590427497089", - "outputQty": "975517759884500451", - "swapFee": "780140543239761", + "type": "swap_fp_to_mp", + "inputQty": "3801114310681942818816", + "outputIndex": 1, + "outputQty": "3660878105644099452501", + "swapFee": "0", + "redemptionFee": "2262879030540698264", "mpReserves": [ - "54909369082485166878343844", - "29953903582542900520362712", - "31329302318882103687940746" + "48537309405208368379908399", + "10502633703517826158507188", + "41588190525320146019820512" ], "fpReserves": [ - "17131774038716813118607561", - "7216729661130473716847895" + "1347258749132048284036960", + "3228853342376123464250105" ], - "mAssetSupply": "116176176894102096147179092", - "LPTokenSupply": "24188834919354605077302868" + "mAssetSupply": "100413703096101957089192494", + "LPTokenSupply": "4517121949185208812233535" }, { "type": "swap_fp_to_mp", - "inputQty": "988014721518550795681792", - "outputIndex": 1, - "outputQty": "993044837559758862324929", - "swapFee": "0", - "redemptionFee": "397780537733683409320", + "inputQty": "877667982089342079205376", + "outputIndex": 0, + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "338781391946428", + "outputQty0": "348809295121980", + "outputQty": "346225241887868", "mpReserves": [ - "54909369082485166878343844", - "28960858744983141658037783", - "31329302318882103687940746" + "48537309405208368379908399", + "10502633703856607550453616", + "41588190525320146019820512" ], "fpReserves": [ - "16137322694382604595306685", - "8204744382649024512529687" + "1347258749480857579158940", + "3228853342376123464250105" ], - "mAssetSupply": "115182123330305621307287536", - "LPTokenSupply": "24188834919354605077302868" + "mAssetSupply": "100413703096450766384314474", + "LPTokenSupply": "4517121949531434054121403" }, { "type": "mint", "inputIndex": 0, - "inputQty": "225746937023717571559424", - "outputQty0": "225455735337491313452523", - "outputQty": "223623252605822168223776", + "inputQty": "2114057238101724504260608", + "outputQty0": "2099680777156375698909880", + "outputQty": "2077027428080391798244080", "mpReserves": [ - "55135116019508884449903268", - "28960858744983141658037783", - "31329302318882103687940746" + "50651366643310092884169007", + "10502633703856607550453616", + "41588190525320146019820512" ], "fpReserves": [ - "16362778429720095908759208", - "8204744382649024512529687" + "3446939526637233278068820", + "3228853342376123464250105" ], - "mAssetSupply": "115407579065643112620740059", - "LPTokenSupply": "24412458171960427245526644" + "mAssetSupply": "102513383873607142083224354", + "LPTokenSupply": "6594149377611825852365483" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "199306356866957940097024", - "outputQty0": "199520601265874226213282", - "outputQty": "198218058992629450405847", - "swapFee": "158311501915309253962", + "type": "mint", + "inputIndex": 2, + "inputQty": "1042333012426457088000", + "outputQty0": "1037299455774023279094", + "outputQty": "1024398127872259058654", "mpReserves": [ - "55135116019508884449903268", - "29160165101850099598134807", - "31329302318882103687940746" + "50651366643310092884169007", + "10502633703856607550453616", + "41589232858332572476908512" ], "fpReserves": [ - "16562299030985970134972490", - "8006526323656395062123840" + "3447976826093007301347914", + "3228853342376123464250105" ], - "mAssetSupply": "115607099666908986846953341", - "LPTokenSupply": "24412474003110618776452040" + "mAssetSupply": "102514421173062916106503448", + "LPTokenSupply": "6595173775739698111424137" }, { - "type": "swap_fp_to_mp", - "inputQty": "582566622230443851776", - "outputIndex": 2, - "outputQty": "585393939936263935863", - "swapFee": "0", - "redemptionFee": "234419251176460753", + "type": "mint", + "inputIndex": 1, + "inputQty": "17739542169404604416", + "outputQty0": "18291265755164499808", + "outputQty": "18063760714009347369", "mpReserves": [ - "55135116019508884449903268", - "29160165101850099598134807", - "31328716924942167424004883" + "50651366643310092884169007", + "10502651443398776955058032", + "41589232858332572476908512" ], "fpReserves": [ - "16561712982858028983087833", - "8007108890278625505975616" + "3447995117358762465847722", + "3228853342376123464250105" ], - "mAssetSupply": "115606513853200296871529437", - "LPTokenSupply": "24412474003110618776452040" + "mAssetSupply": "102514439464328671271003256", + "LPTokenSupply": "6595191839500412120771506" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "77938101087596246466560", - "outputQty0": "78542139984237952607196", - "outputQty": "78611710193128437340744", - "swapFee1": "46762860652557747879", - "swapFee2": "31416855993695181042", + "type": "mint", + "inputIndex": 1, + "inputQty": "96250042248996", + "outputQty0": "99243542791285", + "outputQty": "98009160113629", "mpReserves": [ - "55056504309315756012562524", - "29160165101850099598134807", - "31328716924942167424004883" + "50651366643310092884169007", + "10502651443495026997307028", + "41589232858332572476908512" ], "fpReserves": [ - "16483170842873791030480637", - "8007108890278625505975616" + "3447995117458006008639007", + "3228853342376123464250105" ], - "mAssetSupply": "115528003130072052614103283", - "LPTokenSupply": "24334540578309087785760267" + "mAssetSupply": "102514439464427914813794541", + "LPTokenSupply": "6595191839598421280885135" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "1399992668038302688870400", - "outputQty0": "1401355093216418427788848", - "outputQty": "1389531488667991744210971", + "inputQty": "43766108392790188032", + "outputQty0": "45127285202526823838", + "outputQty": "45071539736438241288", + "swapFee": "35652795966789208", "mpReserves": [ - "55056504309315756012562524", - "30560157769888402287005207", - "31328716924942167424004883" + "50651366643310092884169007", + "10502695209603419787495060", + "41589232858332572476908512" ], "fpReserves": [ - "17884525936090209458269485", - "8007108890278625505975616" + "3448040244743208535462845", + "3228808270836387026008817" ], - "mAssetSupply": "116929358223288471041892131", - "LPTokenSupply": "25724072066977079529971238" + "mAssetSupply": "102514484591713117340618379", + "LPTokenSupply": "6595191843163700877564055" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "2173707116178033664", - "outputQty0": "2191235491400068366", - "outputQty": "2193047349295570916", - "swapFee1": "1304224269706820", - "swapFee2": "876494196560027", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "35310197642641876713472", + "outputQty0": "36404716022370118816117", + "outputQty": "36357096846445367627858", + "swapFee": "28761044526911238554", "mpReserves": [ - "55056502116268406716991608", - "30560157769888402287005207", - "31328716924942167424004883" + "50651366643310092884169007", + "10538005407246061664208532", + "41589232858332572476908512" ], "fpReserves": [ - "17884523744854718058201119", - "8007108890278625505975616" + "3484444960765578654278962", + "3192451173989941658380959" ], - "mAssetSupply": "116929356032929473838383792", - "LPTokenSupply": "25724069893400385778908256" + "mAssetSupply": "102550889307735487459434496", + "LPTokenSupply": "6595194719268153568687910" }, { "type": "swap_fp_to_mp", - "inputQty": "111849878012180362690560", - "outputIndex": 0, - "outputQty": "112702564130471128009589", + "inputQty": "512319411477328500359168", + "outputIndex": 1, + "outputQty": "495718346984605147922221", "swapFee": "0", - "redemptionFee": "45043889189918112263", + "redemptionFee": "307255519303615246472", "mpReserves": [ - "54943799552137935588982019", - "30560157769888402287005207", - "31328716924942167424004883" + "50651366643310092884169007", + "10042287060261456516286311", + "41589232858332572476908512" ], "fpReserves": [ - "17771914021879922777542479", - "8118958768290805868666176" + "2972352428592886576824992", + "3704770585467270158740127" ], - "mAssetSupply": "116816791353843868475837415", - "LPTokenSupply": "25724069893400385778908256" + "mAssetSupply": "102039104031082098997226998", + "LPTokenSupply": "6595194719268153568687910" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1079640116989965394509824", - "outputQty0": "1088125808466481192787557", - "outputQty": "1088994848479669968266910", - "swapFee1": "647784070193979236705", - "swapFee2": "435250323386592477115", + "type": "swap_fp_to_mp", + "inputQty": "536255017908777485598720", + "outputIndex": 2, + "outputQty": "537184292513427194905727", + "swapFee": "0", + "redemptionFee": "320871450032112486362", "mpReserves": [ - "53854804703658265620715109", - "30560157769888402287005207", - "31328716924942167424004883" + "50651366643310092884169007", + "10042287060261456516286311", + "41052048565819145282002785" ], "fpReserves": [ - "16683788213413441584754922", - "8118958768290805868666176" + "2437566678539365766220362", + "4241025603376047644338847" ], - "mAssetSupply": "115729100795700773875526973", - "LPTokenSupply": "24644494554817439782322102" + "mAssetSupply": "101504639152478610299108730", + "LPTokenSupply": "6595194719268153568687910" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "29039655621563305164800", - "outputQty0": "29064126734634765735003", - "outputQty": "28822928048875002123733", + "inputQty": "197832143176837", + "outputQty0": "204488962490235", + "outputQty": "205176279702538", + "swapFee": "161974927648", "mpReserves": [ - "53854804703658265620715109", - "30589197425509965592170007", - "31328716924942167424004883" + "50651366643310092884169007", + "10042287060459288659463148", + "41052048565819145282002785" ], "fpReserves": [ - "16712852340148076350489925", - "8118958768290805868666176" + "2437566678743854728710597", + "4241025603170871364636309" ], - "mAssetSupply": "115758164922435408641261976", - "LPTokenSupply": "24673317482866314784445835" + "mAssetSupply": "101504639152683099261598965", + "LPTokenSupply": "6595194719268169766180674" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "379176687447920724672512", - "outputQty0": "382104998323311607252740", - "outputQty": "382397650808629158153919", - "swapFee1": "227506012468752434803", - "swapFee2": "152841999329324642901", + "outputIndex": 2, + "inputQty": "4501953651678313971712", + "outputQty0": "4544122422007365148730", + "outputQty": "4564229758606912639235", + "swapFee1": "2701172191006988383", + "swapFee2": "2726473453204419089", "mpReserves": [ - "53472407052849636462561190", - "30589197425509965592170007", - "31328716924942167424004883" + "50651366643310092884169007", + "10042287060459288659463148", + "41047484336060538369363550" ], "fpReserves": [ - "16330747341824764743237185", - "8118958768290805868666176" + "2433022556321847363561867", + "4241025603170871364636309" ], - "mAssetSupply": "115376212766111426358652137", - "LPTokenSupply": "24294163546019640935016803" + "mAssetSupply": "101500097756734545100869324", + "LPTokenSupply": "6590693035733710552907800" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "26111877352343893704704", - "outputQty0": "26312531158162006298035", - "outputQty": "26332452027723159712833", - "swapFee1": "15667126411406336222", - "swapFee2": "10525012463264802519", + "type": "mint", + "inputIndex": 0, + "inputQty": "87942002068898424291328", + "outputQty0": "87292605305492442648214", + "outputQty": "86422144120634163740092", "mpReserves": [ - "53446074600821913302848357", - "30589197425509965592170007", - "31328716924942167424004883" + "50739308645378991308460335", + "10042287060459288659463148", + "41047484336060538369363550" ], "fpReserves": [ - "16304434810666602736939150", - "8118958768290805868666176" + "2520315161627339806210081", + "4241025603170871364636309" ], - "mAssetSupply": "115349910759965727617156621", - "LPTokenSupply": "24268053235379938181945721" + "mAssetSupply": "101587390362040037543517538", + "LPTokenSupply": "6677115179854344716647892" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "235020331099113357312", - "outputQty0": "235188634411321259506", - "outputQty": "233683143956750641494", - "swapFee": "186604526623501020", + "inputIndex": 1, + "inputQty": "4295556442597456084992", + "outputQty0": "4440321364731719497359", + "outputQty": "4453823927434911597576", + "swapFee": "3516463389422740436", "mpReserves": [ - "53446074600821913302848357", - "30589197425509965592170007", - "31328951945273266537362195" + "50739308645378991308460335", + "10046582616901886115548140", + "41047484336060538369363550" ], "fpReserves": [ - "16304669999301014058198656", - "8118725085146849118024682" + "2524755482992071525707440", + "4236571779243436453038733" ], - "mAssetSupply": "115350145948600138938416127", - "LPTokenSupply": "24268053254040390844295823" + "mAssetSupply": "101591830683404769263014897", + "LPTokenSupply": "6677115531500683658921935" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1554788799310879151620096", + "outputQty0": "1543062080561439807721135", + "outputQty": "1525691589107184418575196", + "mpReserves": [ + "52294097444689870460080431", + "10046582616901886115548140", + "41047484336060538369363550" + ], + "fpReserves": [ + "4067817563553511333428575", + "4236571779243436453038733" + ], + "mAssetSupply": "103134892763966209070736032", + "LPTokenSupply": "8202807120607868077497131" }, { "type": "swap_fp_to_mp", - "inputQty": "5162594195648092831744", + "inputQty": "18013032020610912", "outputIndex": 1, - "outputQty": "5185312236636442351619", + "outputQty": "17389861924983320", "swapFee": "0", - "redemptionFee": "2076668328256114458", + "redemptionFee": "10804908258031", "mpReserves": [ - "53446074600821913302848357", - "30584012113273329149818388", - "31328951945273266537362195" + "52294097444689870460080431", + "10046582599512024190564820", + "41047484336060538369363550" ], "fpReserves": [ - "16299478328480373772052834", - "8123887679342497210856426" + "4067817545545330903376816", + "4236571797256468473649645" ], - "mAssetSupply": "115344956354447826908384763", - "LPTokenSupply": "24268053254040390844295823" + "mAssetSupply": "103134892745968833548942304", + "LPTokenSupply": "8202807120607868077497131" }, { "type": "swap_fp_to_mp", - "inputQty": "194237160817766105088", - "outputIndex": 0, - "outputQty": "195477865671279923313", + "inputQty": "23575474712384636977152", + "outputIndex": 1, + "outputQty": "22757278338048011925849", "swapFee": "0", - "redemptionFee": "78132023469261511", + "redemptionFee": "14140941750511867071", "mpReserves": [ - "53445879122956242022925044", - "30584012113273329149818388", - "31328951945273266537362195" + "52294097444689870460080431", + "10023825321173976178638971", + "41047484336060538369363550" ], "fpReserves": [ - "16299282998421700618273004", - "8124081916503314976961514" + "4044249309294477791590328", + "4260147271968853110626797" ], - "mAssetSupply": "115344761102521177223866444", - "LPTokenSupply": "24268053254040390844295823" + "mAssetSupply": "103111338650659730949022887", + "LPTokenSupply": "8202807120607868077497131" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1353570310229197848576", - "outputQty0": "1354539218155561490011", - "outputQty": "1345881222153130037862", - "swapFee": "1074728836920832893", + "inputIndex": 0, + "inputQty": "29942824953304842240000", + "outputQty0": "29711771337124329629757", + "outputQty": "29696828355344131385881", + "swapFee": "23482500922395568037", "mpReserves": [ - "53445879122956242022925044", - "30584012113273329149818388", - "31330305515583495735210771" + "52324040269643175302320431", + "10023825321173976178638971", + "41047484336060538369363550" ], "fpReserves": [ - "16300637537639856179763015", - "8122736035281161846923652" + "4073961080631602121220085", + "4230450443613508979240916" ], - "mAssetSupply": "115346115641739332785356455", - "LPTokenSupply": "24268053361513274536379112" + "mAssetSupply": "103141050421996855278652644", + "LPTokenSupply": "8202809468857960317053934" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "127077985775686961332224", - "outputQty0": "128051988351744641542866", - "outputQty": "127894215161825580484020", - "swapFee1": "76246791465412176799", - "swapFee2": "51220795340697856617", + "outputIndex": 0, + "inputQty": "50234044693245616717824", + "outputQty0": "50818198144469603101736", + "outputQty": "51182550149946686885925", + "swapFee1": "30140426815947370030", + "swapFee2": "30490918886681761861", "mpReserves": [ - "53445879122956242022925044", - "30456117898111503569334368", - "31330305515583495735210771" + "52272857719493228615434506", + "10023825321173976178638971", + "41047484336060538369363550" ], "fpReserves": [ - "16172585549288111538220149", - "8122736035281161846923652" + "4023142882487132518118349", + "4230450443613508979240916" ], - "mAssetSupply": "115218114874182928841670206", - "LPTokenSupply": "24140983000416734116264567" + "mAssetSupply": "103090262714771272357312769", + "LPTokenSupply": "8152578438207396295073113" }, { - "type": "swap_fp_to_mp", - "inputQty": "129613960781728169984", - "outputIndex": 2, - "outputQty": "130187534758008144654", - "swapFee": "0", - "redemptionFee": "52132860663174192", + "type": "mint", + "inputIndex": 1, + "inputQty": "177988766337827220750336", + "outputQty0": "184123542658186840339826", + "outputQty": "181887286591240201883309", "mpReserves": [ - "53445879122956242022925044", - "30456117898111503569334368", - "31330175328048737727066117" + "52272857719493228615434506", + "10201814087511803399389307", + "41047484336060538369363550" ], "fpReserves": [ - "16172455217136453602737713", - "8122865649241943575093636" + "4207266425145319358458175", + "4230450443613508979240916" ], - "mAssetSupply": "115217984594164131569361962", - "LPTokenSupply": "24140983000416734116264567" + "mAssetSupply": "103274386257429459197652595", + "LPTokenSupply": "8334465724798636496956422" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "61855010699227489632256", - "outputQty0": "61898756167721747628910", - "outputQty": "61391374361760052285190", + "type": "swap_fp_to_mp", + "inputQty": "484189249467748122624", + "outputIndex": 2, + "outputQty": "486223605722310419806", + "swapFee": "0", + "redemptionFee": "290502756277162587", "mpReserves": [ - "53445879122956242022925044", - "30456117898111503569334368", - "31392030338747965216698373" + "52272857719493228615434506", + "10201814087511803399389307", + "41046998112454816058943744" ], "fpReserves": [ - "16234353973304175350366623", - "8122865649241943575093636" + "4206782253884857420812523", + "4230934632862976727363540" ], - "mAssetSupply": "115279883350331853316990872", - "LPTokenSupply": "24202374374778494168549757" + "mAssetSupply": "103273902376671753537169530", + "LPTokenSupply": "8334465724798636496956422" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "28999484593551867641856", - "outputQty0": "29019858986415951088350", - "outputQty": "28834784794125840290981", - "swapFee": "23025347741304652013", + "inputQty": "1171742393092532814741504", + "outputQty0": "1165945163600601783877191", + "outputQty": "1162762959251017200752238", + "swapFee": "920982071228010906847", "mpReserves": [ - "53445879122956242022925044", - "30456117898111503569334368", - "31421029823341517084340229" + "52272857719493228615434506", + "10201814087511803399389307", + "42218740505547348873685248" ], "fpReserves": [ - "16263373832290591301454973", - "8094030864447817734802655" + "5372727417485459204689714", + "3068171673611959526611302" ], - "mAssetSupply": "115308903209318269268079222", - "LPTokenSupply": "24202376677313268299014958" + "mAssetSupply": "104439847540272355321046721", + "LPTokenSupply": "8334557823005759298047106" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "195172213301173974728704", - "outputQty0": "196668216422943658627981", - "outputQty": "196449840490716356279030", - "swapFee1": "117103327980704384837", - "swapFee2": "78667286569177463451", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "45376958098187", + "outputQty0": "46948023217383", + "outputQty": "46713088042610", + "swapFee": "37028375088", "mpReserves": [ - "53445879122956242022925044", - "30456117898111503569334368", - "31224579982850800728061199" + "52272857719493228615434506", + "10201814087557180357487494", + "42218740505547348873685248" ], "fpReserves": [ - "16066705615867647642826992", - "8094030864447817734802655" + "5372727417532407227907097", + "3068171673565246438568692" ], - "mAssetSupply": "115112313660181894786914692", - "LPTokenSupply": "24007216174344892394724737" + "mAssetSupply": "104439847540319303344264104", + "LPTokenSupply": "8334557823005763000884614" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "106850495621427937280", - "outputQty0": "106927564744556913285", - "outputQty": "106256795464392003833", - "swapFee": "84841966245055669", + "inputIndex": 1, + "inputQty": "334014866232556060672", + "outputQty0": "345578930036356060019", + "outputQty": "343849313633763546749", + "swapFee": "272561525562390885", "mpReserves": [ - "53445879122956242022925044", - "30456117898111503569334368", - "31224686833346422155998479" + "52272857719493228615434506", + "10202148102423412913548166", + "42218740505547348873685248" ], "fpReserves": [ - "16066812543432392199740277", - "8093924607652353342798822" + "5373072996462443583967116", + "3067827824251612675021943" ], - "mAssetSupply": "115112420587746639343827977", - "LPTokenSupply": "24007216182829089019230303" + "mAssetSupply": "104440193119249339700324123", + "LPTokenSupply": "8334557850261915557123702" }, { "type": "mint", "inputIndex": 0, - "inputQty": "351488065389062208", - "outputQty0": "351078755728695669", - "outputQty": "348205466296002112", + "inputQty": "58686599250392320573440", + "outputQty0": "58245631822089720343353", + "outputQty": "57422535784152112539192", "mpReserves": [ - "53445879474444307411987252", - "30456117898111503569334368", - "31224686833346422155998479" + "52331544318743620936007946", + "10202148102423412913548166", + "42218740505547348873685248" ], "fpReserves": [ - "16066812894511147928435946", - "8093924607652353342798822" + "5431318628284533304310469", + "3067827824251612675021943" ], - "mAssetSupply": "115112420938825395072523646", - "LPTokenSupply": "24007216531034555315232415" + "mAssetSupply": "104498438751071429420667476", + "LPTokenSupply": "8391980386046067669662894" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "663787427219798753280", - "outputQty0": "663014433829596351282", - "outputQty": "657588158473019772251", + "type": "redeem", + "outputIndex": 0, + "inputQty": "57360291204594694881280", + "outputQty0": "58147587349947608880428", + "outputQty": "58552660575507905170188", + "swapFee1": "34416174722756816928", + "swapFee2": "34888552409968565328", "mpReserves": [ - "53446543261871527210740532", - "30456117898111503569334368", - "31224686833346422155998479" + "52272991658168113030837758", + "10202148102423412913548166", + "42218740505547348873685248" ], "fpReserves": [ - "16067475908944977524787228", - "8093924607652353342798822" + "5373171040934585695430041", + "3067827824251612675021943" ], - "mAssetSupply": "115113083953259224668874928", - "LPTokenSupply": "24007874119193028335004666" + "mAssetSupply": "104440326052273891780352376", + "LPTokenSupply": "8334623536458945250463306" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "46717893899375108096", + "outputIndex": 1, + "outputQty": "45318279358724466988", + "swapFee": "0", + "redemptionFee": "28149223051965167", + "mpReserves": [ + "52272991658168113030837758", + "10202102784144054189081178", + "42218740505547348873685248" + ], + "fpReserves": [ + "5373124125562832420150471", + "3067874542145512050130039" + ], + "mAssetSupply": "104440279165051361557037973", + "LPTokenSupply": "8334623536458945250463306" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "59414308010469974081536", - "outputQty0": "59345041845576253654454", - "outputQty": "58858940720176700327024", + "inputIndex": 1, + "inputQty": "1015433889164027625472", + "outputQty0": "1050585435321231417922", + "outputQty": "1035754204837814224127", + "mpReserves": [ + "52272991658168113030837758", + "10203118218033218216706650", + "42218740505547348873685248" + ], + "fpReserves": [ + "5374174710998153651568393", + "3067874542145512050130039" + ], + "mAssetSupply": "104441329750486682788455895", + "LPTokenSupply": "8335659290663783064687433" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "2562209632224522", + "outputQty0": "2549207128394564", + "outputQty": "2536441743860333", + "swapFee": "2010575076785", "mpReserves": [ - "53505957569881997184822068", - "30456117898111503569334368", - "31224686833346422155998479" + "52272991658168113030837758", + "10203118218033218216706650", + "42218740508109558505909770" ], "fpReserves": [ - "16126820950790553778441682", - "8093924607652353342798822" + "5374174713547360779962957", + "3067874539609070306269706" ], - "mAssetSupply": "115172428995104800922529382", - "LPTokenSupply": "24066733059913205035331690" + "mAssetSupply": "104441329753035889916850459", + "LPTokenSupply": "8335659290663984122195111" }, { "type": "swap_fp_to_mp", - "inputQty": "566947855897893722390528", + "inputQty": "571388219097697214267392", "outputIndex": 1, - "outputQty": "569056674110589227306443", + "outputQty": "552545724555639962974810", "swapFee": "0", - "redemptionFee": "227911857477941999814", + "redemptionFee": "343861128479116986679", "mpReserves": [ - "53505957569881997184822068", - "29887061224000914342027925", - "31224686833346422155998479" + "52272991658168113030837758", + "9650572493477578253731840", + "42218740508109558505909770" ], "fpReserves": [ - "15557041307095698778906556", - "8660872463550247065189350" + "4801072832748832468830240", + "3639262758706767520537098" ], - "mAssetSupply": "114602877263267423864994070", - "LPTokenSupply": "24066733059913205035331690" + "mAssetSupply": "103868571733365840722704421", + "LPTokenSupply": "8335659290663984122195111" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "24613891946251896750080", - "outputQty0": "24584605032711015252645", - "outputQty": "24455101456345728272488", - "swapFee": "19513661821700561202", + "type": "mint", + "inputIndex": 2, + "inputQty": "1713279465854768", + "outputQty0": "1703934910160000", + "outputQty": "1681428665999750", "mpReserves": [ - "53530571461828249081572148", - "29887061224000914342027925", - "31224686833346422155998479" + "52272991658168113030837758", + "9650572493477578253731840", + "42218740509822837971764538" ], "fpReserves": [ - "15581625912128409794159201", - "8636417362093901336916862" + "4801072834452767378990240", + "3639262758706767520537098" ], - "mAssetSupply": "114627461868300134880246715", - "LPTokenSupply": "24066735011279387205387810" + "mAssetSupply": "103868571735069775632864421", + "LPTokenSupply": "8335659292345412788194861" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "137156324172789809414144", - "outputQty0": "138155664241229124460844", - "outputQty": "138002774385500165191228", - "swapFee1": "82293794503673885648", - "swapFee2": "55262265696491649784", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "66234599360114567675904", + "outputQty0": "68777733972231200574790", + "outputQty": "68584355858143284143774", + "swapFee": "54294218119140260226", "mpReserves": [ - "53530571461828249081572148", - "29887061224000914342027925", - "31086684058960921990807251" + "52272991658168113030837758", + "9716807092837692821407744", + "42218740509822837971764538" ], "fpReserves": [ - "15443470247887180669698357", - "8636417362093901336916862" + "4869850568424998579565030", + "3570678402848624236393324" ], - "mAssetSupply": "114489361466324602247435655", - "LPTokenSupply": "23929586916486047763362230" + "mAssetSupply": "103937349469042006833439211", + "LPTokenSupply": "8335664721767224702220883" }, { "type": "swap_fp_to_mp", - "inputQty": "65975482547319204741120", + "inputQty": "6167196298784083542016", "outputIndex": 1, - "outputQty": "66177544195223431669530", + "outputQty": "5949584747515659676693", "swapFee": "0", - "redemptionFee": "26505478117698488986", + "redemptionFee": "3708196129167665409", "mpReserves": [ - "53530571461828249081572148", - "29820883679805690910358395", - "31086684058960921990807251" + "52272991658168113030837758", + "9710857508090177161731051", + "42218740509822837971764538" ], "fpReserves": [ - "15377206552592934447232457", - "8702392844641220541657982" + "4863670241543052470549517", + "3576845599147408319935340" ], - "mAssetSupply": "114423124276508473723458741", - "LPTokenSupply": "23929586916486047763362230" + "mAssetSupply": "103931172850356189892089107", + "LPTokenSupply": "8335664721767224702220883" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "7727234832418057748480", - "outputQty0": "7783111991544196721156", - "outputQty": "7772959659048563488879", - "swapFee1": "4636340899450834649", - "swapFee2": "3113244796617678688", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "56440959568125820928", + "outputQty0": "56135569606421899317", + "outputQty": "55972108747784128229", + "swapFee": "44310815611206933", "mpReserves": [ - "53530571461828249081572148", - "29813110720146642346869516", - "31086684058960921990807251" + "52272991658168113030837758", + "9710857508090177161731051", + "42218796950782406097585466" ], "fpReserves": [ - "15369423440601390250511301", - "8702392844641220541657982" + "4863726377112658892448834", + "3576789627038660535807111" ], - "mAssetSupply": "114415344277761726144416273", - "LPTokenSupply": "23921860145287719650697214" + "mAssetSupply": "103931228985925796313988424", + "LPTokenSupply": "8335664726198306263341576" }, { "type": "swap_fp_to_mp", - "inputQty": "10631813993590373220352", + "inputQty": "245713538325365632", "outputIndex": 0, - "outputQty": "10686034402268327469748", + "outputQty": "248049702479544772", "swapFee": "0", - "redemptionFee": "4271000749895206102", + "redemptionFee": "147740399746327", "mpReserves": [ - "53519885427425980754102400", - "29813110720146642346869516", - "31086684058960921990807251" + "52272991410118410551292986", + "9710857508090177161731051", + "42218796950782406097585466" ], "fpReserves": [ - "15358745938726652235254353", - "8713024658634810914878334" + "4863726130878659315235594", + "3576789872752198861172743" ], - "mAssetSupply": "114404671046887738024365427", - "LPTokenSupply": "23921860145287719650697214" + "mAssetSupply": "103931228739839537136521511", + "LPTokenSupply": "8335664726198306263341576" }, { "type": "mint", "inputIndex": 2, - "inputQty": "62498567607292035858432", - "outputQty0": "62542804265130195569567", - "outputQty": "62056553716445136379767", + "inputQty": "763961144858393600", + "outputQty0": "759827509578475659", + "outputQty": "749715699046646111", "mpReserves": [ - "53519885427425980754102400", - "29813110720146642346869516", - "31149182626568214026665683" + "52272991410118410551292986", + "9710857508090177161731051", + "42218797714743550955979066" ], "fpReserves": [ - "15421288742991782430823920", - "8713024658634810914878334" + "4863726890706168893711253", + "3576789872752198861172743" ], - "mAssetSupply": "114467213851152868219934994", - "LPTokenSupply": "23983916699004164787076981" + "mAssetSupply": "103931229499667046714997170", + "LPTokenSupply": "8335665475914005309987687" }, { "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "14597487571110569984", + "outputQty0": "14481940791634212152", + "outputQty": "14439769071879404985", + "swapFee": "11431371645534774", + "mpReserves": [ + "52273006007605981661862970", + "9710857508090177161731051", + "42218797714743550955979066" + ], + "fpReserves": [ + "4863741372646960527923405", + "3576775432983126981767758" + ], + "mAssetSupply": "103931243981607838349209322", + "LPTokenSupply": "8335665477057142474541164" + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "15660521627290917928960", - "outputQty0": "15674731554038554303776", - "outputQty": "15594504348786526236167", - "swapFee": "12442183298919547143", + "inputQty": "7236007797104000892928", + "outputQty0": "7512095317549728245549", + "outputQty": "7412105915749080960010", "mpReserves": [ - "53519885427425980754102400", - "29828771241773933264798476", - "31149182626568214026665683" + "52273006007605981661862970", + "9718093515887281162623979", + "42218797714743550955979066" ], "fpReserves": [ - "15436963474545820985127696", - "8697430154286024388642167" + "4871253467964510256168954", + "3576775432983126981767758" ], - "mAssetSupply": "114482888582706906774238770", - "LPTokenSupply": "23983917943222494679031695" + "mAssetSupply": "103938756076925388077454871", + "LPTokenSupply": "8343077582972891555501174" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "170559779551076646912", - "outputQty0": "170355959291030170539", - "outputQty": "169028587556816964124", + "inputIndex": 1, + "inputQty": "108433588466311348224", + "outputQty0": "112567737638319308973", + "outputQty": "111069136177260042894", "mpReserves": [ - "53520055987205531830749312", - "29828771241773933264798476", - "31149182626568214026665683" + "52273006007605981661862970", + "9718201949475747473972203", + "42218797714743550955979066" ], "fpReserves": [ - "15437133830505112015298235", - "8697430154286024388642167" + "4871366035702148575477927", + "3576775432983126981767758" ], - "mAssetSupply": "114483058938666197804409309", - "LPTokenSupply": "23984086971810051495995819" + "mAssetSupply": "103938868644663026396763844", + "LPTokenSupply": "8343188652109068815544068" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "946639202323566956642304", - "outputQty0": "947261337260838396583315", - "outputQty": "941563636146330286311300", - "swapFee": "751825279933950967696", + "inputQty": "1269198587224102", + "outputQty0": "1262337885576446", + "outputQty": "1258647266241412", + "swapFee": "996425983907", "mpReserves": [ - "53520055987205531830749312", - "29828771241773933264798476", - "32095821828891780983307987" + "52273006007605981661862970", + "9718201949475747473972203", + "42218797716012749543203168" ], "fpReserves": [ - "16384395167765950411881550", - "7755866518139694102330867" + "4871366036964486461054373", + "3576775431724479715526346" ], - "mAssetSupply": "115430320275927036200992624", - "LPTokenSupply": "23984162154338044891092588" + "mAssetSupply": "103938868645925364282340290", + "LPTokenSupply": "8343188652109168458142458" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "68922660546374191284224", - "outputQty0": "68842519415536631403228", - "outputQty": "68260262067583159598538", + "type": "swap_fp_to_mp", + "inputQty": "7956299945308865953792", + "outputIndex": 0, + "outputQty": "8031866460978382820368", + "swapFee": "0", + "redemptionFee": "4783878971659504001", "mpReserves": [ - "53588978647751906022033536", - "29828771241773933264798476", - "32095821828891780983307987" + "52264974141145003279042602", + "9718201949475747473972203", + "42218797716012749543203168" ], "fpReserves": [ - "16453237687181487043284778", - "7755866518139694102330867" + "4863392905345053954384790", + "3584731731669788581480138" ], - "mAssetSupply": "115499162795342572832395852", - "LPTokenSupply": "24052422416405628050691126" + "mAssetSupply": "103930900298184903435174708", + "LPTokenSupply": "8343188652109168458142458" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "7624721993831024689152", - "outputQty0": "7629390488545949323969", - "outputQty": "7575670901316310480856", - "swapFee": "6051835541659138843", + "inputQty": "2994985065658719404032", + "outputQty0": "2978793398961209894273", + "outputQty": "2939169824980070018959", "mpReserves": [ - "53588978647751906022033536", - "29828771241773933264798476", - "32103446550885612007997139" + "52264974141145003279042602", + "9718201949475747473972203", + "42221792701078408262607200" ], "fpReserves": [ - "16460867077670032992608747", - "7748290847238377791850011" + "4866371698744015164279063", + "3584731731669788581480138" ], - "mAssetSupply": "115506792185831118781719821", - "LPTokenSupply": "24052423021589182216605010" + "mAssetSupply": "103933879091583864645068981", + "LPTokenSupply": "8346127821934148528161417" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1356231595861433871499264", - "outputQty0": "1366776688447254103371889", - "outputQty": "1364820329370091213646862", - "swapFee1": "813738957516860322899", - "swapFee2": "546710675378901641348", + "type": "mint", + "inputIndex": 2, + "inputQty": "490388962655529521381376", + "outputQty0": "487710782245941705935485", + "outputQty": "481148964748481512479344", "mpReserves": [ - "53588978647751906022033536", - "28463950912403842051151614", - "32103446550885612007997139" + "52264974141145003279042602", + "9718201949475747473972203", + "42712181663733937783988576" ], "fpReserves": [ - "15094090389222778889236858", - "7748290847238377791850011" + "5354082480989956870214548", + "3584731731669788581480138" ], - "mAssetSupply": "114140562208059243579989280", - "LPTokenSupply": "22696272799623500031138035" + "mAssetSupply": "104421589873829806351004466", + "LPTokenSupply": "8827276786682630040640761" }, { "type": "mint", "inputIndex": 1, - "inputQty": "205092039487972368711680", - "outputQty0": "205318838907881438833958", - "outputQty": "203634235437886838178462", + "inputQty": "136398384292607645712384", + "outputQty0": "141574084697324440024077", + "outputQty": "139642481369584103308157", "mpReserves": [ - "53588978647751906022033536", - "28669042951891814419863294", - "32103446550885612007997139" + "52264974141145003279042602", + "9854600333768355119684587", + "42712181663733937783988576" ], "fpReserves": [ - "15299409228130660328070816", - "7748290847238377791850011" + "5495656565687281310238625", + "3584731731669788581480138" ], - "mAssetSupply": "114345881046967125018823238", - "LPTokenSupply": "22899907035061386869316497" + "mAssetSupply": "104563163958527130791028543", + "LPTokenSupply": "8966919268052214143948918" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "352656055476587520", + "outputQty0": "365854142443636971", + "outputQty": "364448453110363564", + "swapFee": "288677888888150", + "mpReserves": [ + "52264974141145003279042602", + "9854600686424410596272107", + "42712181663733937783988576" + ], + "fpReserves": [ + "5495656931541423753875596", + "3584731367221335471116574" + ], + "mAssetSupply": "104563164324381273234665514", + "LPTokenSupply": "8966919268081081932837733" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "4097995106459571200", - "outputQty0": "4129519753917948647", - "outputQty": "4123363160907309255", - "swapFee1": "2458797063875742", - "swapFee2": "1651807901567179", + "inputQty": "2750497339961567084544", + "outputQty0": "2786985188923002707489", + "outputQty": "2684807435964156527100", + "swapFee1": "1650298403976940250", + "swapFee2": "1672191113353801624", "mpReserves": [ - "53588978647751906022033536", - "28669038828528653512554039", - "32103446550885612007997139" + "52264974141145003279042602", + "9851915878988446439745007", + "42712181663733937783988576" ], "fpReserves": [ - "15299405098610906410122169", - "7748290847238377791850011" + "5492869946352500751168107", + "3584731367221335471116574" ], - "mAssetSupply": "114345876919099179002441770", - "LPTokenSupply": "22899902937312160116132871" + "mAssetSupply": "104560379011383463585759649", + "LPTokenSupply": "8964168935770960763447214" }, { - "type": "swap_fp_to_mp", - "inputQty": "70084364219510404677632", + "type": "redeem", "outputIndex": 2, - "outputQty": "70393054105531455368745", - "swapFee": "0", - "redemptionFee": "28184423990091873510", + "inputQty": "20499554099059339264", + "outputQty0": "20771485567557400911", + "outputQty": "20872161352587576145", + "swapFee1": "12299732459435603", + "swapFee2": "12462891340534440", "mpReserves": [ - "53588978647751906022033536", - "28669038828528653512554039", - "32033053496780080552628394" + "52264974141145003279042602", + "9851915878988446439745007", + "42712160791572585196412431" ], "fpReserves": [ - "15228944038635676726346468", - "7818375211457888196527643" + "5492849174866933193767196", + "3584731367221335471116574" ], - "mAssetSupply": "114275444043547939410539579", - "LPTokenSupply": "22899902937312160116132871" + "mAssetSupply": "104560358252360787368893178", + "LPTokenSupply": "8964148437446834950051510" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "243764643348677006458880", - "outputQty0": "245620314661504609494077", - "outputQty": "245250965651495287719442", - "swapFee1": "146258786009206203875", - "swapFee2": "98248125864601843797", + "type": "mint", + "inputIndex": 0, + "inputQty": "121479994325813375795200", + "outputQty0": "120534692721444034526405", + "outputQty": "118881122701777590576574", "mpReserves": [ - "53588978647751906022033536", - "28423787862877158224834597", - "32033053496780080552628394" + "52386454135470816654837802", + "9851915878988446439745007", + "42712160791572585196412431" ], "fpReserves": [ - "14983323723974172116852391", - "7818375211457888196527643" + "5613383867588377228293601", + "3584731367221335471116574" ], - "mAssetSupply": "114029921977012299402889299", - "LPTokenSupply": "22656152919842084030294378" + "mAssetSupply": "104680892945082231403419583", + "LPTokenSupply": "9083029560148612540628084" }, { - "type": "swap_fp_to_mp", - "inputQty": "734567319495241236480", - "outputIndex": 2, - "outputQty": "737625869782107464814", - "swapFee": "0", - "redemptionFee": "295333248530696755", + "type": "mint", + "inputIndex": 2, + "inputQty": "8550842526374458368", + "outputQty0": "8504541064342605963", + "outputQty": "8387574957074759190", "mpReserves": [ - "53588978647751906022033536", - "28423787862877158224834597", - "32032315870910298445163580" + "52386454135470816654837802", + "9851915878988446439745007", + "42712169342415111570870799" ], "fpReserves": [ - "14982585390852845374963523", - "7819109778777383437764123" + "5613392372129441570899564", + "3584731367221335471116574" ], - "mAssetSupply": "114029183939224221191697186", - "LPTokenSupply": "22656152919842084030294378" + "mAssetSupply": "104680901449623295746025546", + "LPTokenSupply": "9083037947723569615387274" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3261743154401608990720", - "outputQty0": "3265400313363466851663", - "outputQty": "3238863079596978701259", + "inputIndex": 2, + "inputQty": "1361418756925826048", + "outputQty0": "1354046887851492519", + "outputQty": "1335424175008123830", "mpReserves": [ - "53588978647751906022033536", - "28427049606031559833825317", - "32032315870910298445163580" + "52386454135470816654837802", + "9851915878988446439745007", + "42712170703833868496696847" ], "fpReserves": [ - "14985850791166208841815186", - "7819109778777383437764123" + "5613393726176329422392083", + "3584731367221335471116574" ], - "mAssetSupply": "114032449339537584658548849", - "LPTokenSupply": "22659391782921681008995637" + "mAssetSupply": "104680902803670183597518065", + "LPTokenSupply": "9083039283147744623511104" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "18364762195441922048", - "outputQty0": "18385349312179086992", - "outputQty": "18276914762614789822", - "swapFee": "14588742517735410", + "type": "swap_fp_to_mp", + "inputQty": "21842445875322650624", + "outputIndex": 2, + "outputQty": "22019078119886668926", + "swapFee": "0", + "redemptionFee": "13147797667537288", "mpReserves": [ - "53588978647751906022033536", - "28427067970793755275747365", - "32032315870910298445163580" + "52386454135470816654837802", + "9851915878988446439745007", + "42712148684755748610027921" ], "fpReserves": [ - "14985869176515521020902178", - "7819091501862620822974301" + "5613371813180216860244233", + "3584753209667210793767198" ], - "mAssetSupply": "114032467724886896837635841", - "LPTokenSupply": "22659391784380555260769178" + "mAssetSupply": "104680880903821868702907503", + "LPTokenSupply": "9083039283147744623511104" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4776692729478221135872", - "outputQty0": "4782045947501987745556", - "outputQty": "4743178576170691733095", + "inputQty": "144430833403871665061888", + "outputQty0": "149776192681916559014474", + "outputQty": "147709867549955499900164", "mpReserves": [ - "53588978647751906022033536", - "28431844663523233496883237", - "32032315870910298445163580" + "52386454135470816654837802", + "9996346712392318104806895", + "42712148684755748610027921" ], "fpReserves": [ - "14990651222463023008647734", - "7819091501862620822974301" + "5763148005862133419258707", + "3584753209667210793767198" ], - "mAssetSupply": "114037249770834398825381397", - "LPTokenSupply": "22664134962956725952502273" + "mAssetSupply": "104830657096503785261921977", + "LPTokenSupply": "9230749150697700123411268" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "6040466214215828373504", - "outputQty0": "6047231427480841250318", - "outputQty": "6011508202599308393554", - "swapFee": "4798458463012270916", + "type": "mint", + "inputIndex": 2, + "inputQty": "25623525179056040443904", + "outputQty0": "25487275019759749352595", + "outputQty": "25134383514210365902641", "mpReserves": [ - "53588978647751906022033536", - "28437885129737449325256741", - "32032315870910298445163580" + "52386454135470816654837802", + "9996346712392318104806895", + "42737772209934804650471825" ], "fpReserves": [ - "14996698453890503849898052", - "7813079993660021514580747" + "5788635280881893168611302", + "3584753209667210793767198" ], - "mAssetSupply": "114043297002261879666631715", - "LPTokenSupply": "22664135442802572253729364" + "mAssetSupply": "104856144371523545011274572", + "LPTokenSupply": "9255883534211910489313909" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "854065658762343219200", - "outputQty0": "853019671738576153276", - "outputQty": "846082195764614444385", + "type": "redeem", + "outputIndex": 2, + "inputQty": "5107291111192403116032", + "outputQty0": "5175921103403789527017", + "outputQty": "5200480075314855992777", + "swapFee1": "3064374666715441869", + "swapFee2": "3105552662042273716", "mpReserves": [ - "53589832713410668365252736", - "28437885129737449325256741", - "32032315870910298445163580" + "52386454135470816654837802", + "9996346712392318104806895", + "42732571729859489794479048" ], "fpReserves": [ - "14997551473562242426051328", - "7813079993660021514580747" + "5783459359778489379084285", + "3584753209667210793767198" ], - "mAssetSupply": "114044150021933618242784991", - "LPTokenSupply": "22664981524998336868173749" + "mAssetSupply": "104850971555972803264021271", + "LPTokenSupply": "9250776549538184757742063" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "517309278536573517824", - "outputQty0": "517598503899067078170", - "outputQty": "513388871017181784867", + "inputIndex": 0, + "inputQty": "240873480924159585288192", + "outputQty0": "239019844873773862575914", + "outputQty": "235693360859649247257326", "mpReserves": [ - "53589832713410668365252736", - "28437885129737449325256741", - "32032833180188835018681404" + "52627327616394976240125994", + "9996346712392318104806895", + "42732571729859489794479048" ], "fpReserves": [ - "14998069072066141493129498", - "7813079993660021514580747" + "6022479204652263241660199", + "3584753209667210793767198" ], - "mAssetSupply": "114044667620437517309863161", - "LPTokenSupply": "22665494913869354049958616" + "mAssetSupply": "105089991400846577126597185", + "LPTokenSupply": "9486469910397834004999389" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "20365015902658699264", - "outputQty0": "20519684880255310877", - "outputQty": "20488537116784952863", - "swapFee1": "12219009541595219", - "swapFee2": "8207873952102124", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "406619155677039424", + "outputQty0": "404460944145093398", + "outputQty": "402590577869552155", + "swapFee": "319044125205534", "mpReserves": [ - "53589832713410668365252736", - "28437864641200332540303878", - "32032833180188835018681404" + "52627327616394976240125994", + "9996346712392318104806895", + "42732572136478645471518472" ], "fpReserves": [ - "14998048552381261237818621", - "7813079993660021514580747" + "6022479609113207386753597", + "3584752807076632924215043" ], - "mAssetSupply": "114044647108960511006654408", - "LPTokenSupply": "22665474550075352345418873" + "mAssetSupply": "105089991805307521271690583", + "LPTokenSupply": "9486469910429738417519942" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "344841803221172811202560", - "outputQty0": "347446200169724502398063", - "outputQty": "346910788002124162169845", - "swapFee1": "206905081932703686721", - "swapFee2": "138978480067889800959", + "type": "mint", + "inputIndex": 0, + "inputQty": "13804194880778592256", + "outputQty0": "13697640028676426191", + "outputQty": "13506098748801850997", "mpReserves": [ - "53589832713410668365252736", - "28090953853198208378134033", - "32032833180188835018681404" + "52627341420589857018718250", + "9996346712392318104806895", + "42732572136478645471518472" ], "fpReserves": [ - "14650602352211536735420558", - "7813079993660021514580747" + "6022493306753236063179788", + "3584752807076632924215043" ], - "mAssetSupply": "113697339887270854394057304", - "LPTokenSupply": "22320653437362372804584985" + "mAssetSupply": "105090005502947549948116774", + "LPTokenSupply": "9486483416528487219370939" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "22570659913957394874368", - "outputQty0": "22582909241071955844840", - "outputQty": "22454299925837465504176", - "swapFee": "17920704281315824902", + "inputQty": "2969038840152486912", + "outputQty0": "2953280080555569735", + "outputQty": "2911982803736639538", "mpReserves": [ - "53589832713410668365252736", - "28090953853198208378134033", - "32055403840102792413555772" + "52627341420589857018718250", + "9996346712392318104806895", + "42732575105517485624005384" ], "fpReserves": [ - "14673185261452608691265398", - "7790625693734184049076571" + "6022496260033316618749523", + "3584752807076632924215043" ], - "mAssetSupply": "113719922796511926349902144", - "LPTokenSupply": "22320655229432800936167475" + "mAssetSupply": "105090008456227630503686509", + "LPTokenSupply": "9486486328511290956010477" }, { "type": "mint", "inputIndex": 1, - "inputQty": "7577024620565073920", - "outputQty0": "7585867749429303242", - "outputQty": "7524618480374413380", + "inputQty": "17936609658159987949568", + "outputQty0": "18593574665880118013150", + "outputQty": "18333475670461344322774", "mpReserves": [ - "53589832713410668365252736", - "28090961430222828943207953", - "32055403840102792413555772" + "52627341420589857018718250", + "10014283322050478092756463", + "42732575105517485624005384" ], "fpReserves": [ - "14673192847320358120568640", - "7790625693734184049076571" + "6041089834699196736762673", + "3584752807076632924215043" ], - "mAssetSupply": "113719930382379675779205386", - "LPTokenSupply": "22320662754051281310580855" + "mAssetSupply": "105108602030893510621699659", + "LPTokenSupply": "9504819804181752300333251" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "50508803336298", - "outputQty0": "50446207333349", - "outputQty": "50038898139584", + "inputIndex": 2, + "inputQty": "75441357594119018381312", + "outputQty0": "75041242448795297184007", + "outputQty": "73989587303289387503254", "mpReserves": [ - "53589832713461177168589034", - "28090961430222828943207953", - "32055403840102792413555772" + "52627341420589857018718250", + "10014283322050478092756463", + "42808016463111604642386696" ], "fpReserves": [ - "14673192847370804327901989", - "7790625693734184049076571" + "6116131077147992033946680", + "3584752807076632924215043" ], - "mAssetSupply": "113719930382430121986538735", - "LPTokenSupply": "22320662754101320208720439" + "mAssetSupply": "105183643273342305918883666", + "LPTokenSupply": "9578809391485041687836505" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "70516879163188593033216", - "outputQty0": "70429377155132875100970", - "outputQty": "69860121455201005123475", + "type": "swap_fp_to_mp", + "inputQty": "319359063066606", + "outputIndex": 2, + "outputQty": "322149811527276", + "swapFee": "0", + "redemptionFee": "192378582436", "mpReserves": [ - "53660349592624365761622250", - "28090961430222828943207953", - "32055403840102792413555772" + "52627341420589857018718250", + "10014283322050478092756463", + "42808016462789454830859420" ], "fpReserves": [ - "14743622224525937203002959", - "7790625693734184049076571" + "6116131076827361063218974", + "3584752807395991987281649" ], - "mAssetSupply": "113790359759585254861639705", - "LPTokenSupply": "22390522875556521213843914" + "mAssetSupply": "105183643273021867326738396", + "LPTokenSupply": "9578809391485041687836505" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "303690455599207736672256", - "outputQty0": "304039626956475034183700", - "outputQty": "301568460525411152374591", + "type": "redeem", + "outputIndex": 0, + "inputQty": "12670867084115900891136", + "outputQty0": "12843476554695952299629", + "outputQty": "12935364910566695283462", + "swapFee1": "7602520250469540534", + "swapFee2": "7706085932817571379", "mpReserves": [ - "53660349592624365761622250", - "28394651885822036679880209", - "32055403840102792413555772" + "52614406055679290323434788", + "10014283322050478092756463", + "42808016462789454830859420" ], "fpReserves": [ - "15047661851482412237186659", - "7790625693734184049076571" + "6103287600272665110919345", + "3584752807395991987281649" ], - "mAssetSupply": "114094399386541729895823405", - "LPTokenSupply": "22692091336081932366218505" + "mAssetSupply": "105170807502553104192010146", + "LPTokenSupply": "9566139284652950833899422" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "91203150438250871521280", - "outputQty0": "91897696414890790681580", - "outputQty": "91809350874307396093857", - "swapFee1": "54721890262950522912", - "swapFee2": "36759078565956316272", + "inputQty": "205933982432472694784", + "outputQty0": "208738721161495818245", + "outputQty": "209727647699988131802", + "swapFee1": "123560389459483616", + "swapFee2": "125243232696897490", "mpReserves": [ - "53660349592624365761622250", - "28394651885822036679880209", - "31963594489228485017461915" + "52614406055679290323434788", + "10014283322050478092756463", + "42807806735141754842727618" ], "fpReserves": [ - "14955764155067521446505079", - "7790625693734184049076571" + "6103078861551503615101100", + "3584752807395991987281649" ], - "mAssetSupply": "114002538449205405061458097", - "LPTokenSupply": "22600893657832707789749516" + "mAssetSupply": "105170598889075175393089391", + "LPTokenSupply": "9565933363026557307152999" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "418016333622908809117696", - "outputQty0": "417497445493958038410237", - "outputQty": "414076311344602345963057", + "type": "redeem", + "outputIndex": 2, + "inputQty": "26576716926466905866240", + "outputQty0": "26938478446511866918444", + "outputQty": "27066022152023555489793", + "swapFee1": "15946030155880143519", + "swapFee2": "16163087067907120151", "mpReserves": [ - "54078365926247274570739946", - "28394651885822036679880209", - "31963594489228485017461915" + "52614406055679290323434788", + "10014283322050478092756463", + "42780740712989731287237825" ], "fpReserves": [ - "15373261600561479484915316", - "7790625693734184049076571" + "6076140383104991748182656", + "3584752807395991987281649" ], - "mAssetSupply": "114420035894699363099868334", - "LPTokenSupply": "23014969969177310135712573" + "mAssetSupply": "105143676573715731433291098", + "LPTokenSupply": "9539358240703105989301110" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "164559903852364981862400", - "outputQty0": "164654178695771733920423", - "outputQty": "163293520477754945381704", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "26141063772772801445888", + "outputQty0": "25939726239372739829373", + "outputQty": "25816348468648204510657", + "swapFee": "20460792741191540084", "mpReserves": [ - "54078365926247274570739946", - "28394651885822036679880209", - "32128154393080849999324315" + "52640547119452063124880676", + "10014283322050478092756463", + "42780740712989731287237825" ], "fpReserves": [ - "15537915779257251218835739", - "7790625693734184049076571" + "6102080109344364488012029", + "3558936458927343782770992" ], - "mAssetSupply": "114584690073395134833788757", - "LPTokenSupply": "23178263489655065081094277" + "mAssetSupply": "105169616299955104173120471", + "LPTokenSupply": "9539360286782380108455118" }, { - "type": "swap_fp_to_mp", - "inputQty": "333618856152396357173248", - "outputIndex": 1, - "outputQty": "334831122645424921266812", - "swapFee": "0", - "redemptionFee": "134143306041250980024", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "72726274829128411643904", + "outputQty0": "72165438097893934033579", + "outputQty": "71807676763689713688458", + "swapFee": "56919751055131838060", "mpReserves": [ - "54078365926247274570739946", - "28059820763176611758613397", - "32128154393080849999324315" + "52713273394281191536524580", + "10014283322050478092756463", + "42780740712989731287237825" ], "fpReserves": [ - "15202557514154123768774849", - "8124244549886580406249819" + "6174245547442258422045608", + "3487128782163654069082534" ], - "mAssetSupply": "114249465951598048634707891", - "LPTokenSupply": "23178263489655065081094277" + "mAssetSupply": "105241781738052998107154050", + "LPTokenSupply": "9539365978757485621638924" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "973536470594526218551296", - "outputQty0": "974637853729791469705820", - "outputQty": "968125382611397235324957", - "swapFee": "773343366956959143235", + "inputQty": "114320142274039056957440", + "outputQty0": "118464832023137675820414", + "outputQty": "117829052608154728076849", + "swapFee": "93425917439702201279", "mpReserves": [ - "54078365926247274570739946", - "29033357233771137977164693", - "32128154393080849999324315" + "52713273394281191536524580", + "10128603464324517149713903", + "42780740712989731287237825" ], "fpReserves": [ - "16177195367883915238480669", - "7156119167275183170924862" + "6292710379465396097866022", + "3369299729555499341005685" ], - "mAssetSupply": "115224103805327840104413711", - "LPTokenSupply": "23178340823991760777008600" + "mAssetSupply": "105360246570076135782974464", + "LPTokenSupply": "9539375321349229591859051" }, { - "type": "swap_fp_to_mp", - "inputQty": "615818619919469379584", - "outputIndex": 0, - "outputQty": "620686582711358170575", - "swapFee": "0", - "redemptionFee": "248071694737998772", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "525695398098968", + "outputQty0": "521686782073813", + "outputQty": "518748685137628", + "swapFee": "411355183927", "mpReserves": [ - "54077745239664563212569371", - "29033357233771137977164693", - "32128154393080849999324315" + "52713273394806886934623548", + "10128603464324517149713903", + "42780740712989731287237825" ], "fpReserves": [ - "16176575188647070241549163", - "7156734985895102640304446" + "6292710379987082879939835", + "3369299729036750655868057" ], - "mAssetSupply": "115223483874162689845480977", - "LPTokenSupply": "23178340823991760777008600" + "mAssetSupply": "105360246570597822565048277", + "LPTokenSupply": "9539375321349270727377443" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "51689698617737448", - "outputQty0": "52117005363054590", - "outputQty": "52065304569655308", - "swapFee1": "31013819170642", - "swapFee2": "20846802145221", + "outputIndex": 0, + "inputQty": "1642448199441695113216", + "outputQty0": "1665381236689242955877", + "outputQty": "1677170764714901933070", + "swapFee1": "985468919665017067", + "swapFee2": "999228742013545773", "mpReserves": [ - "54077745239664563212569371", - "29033357233771137977164693", - "32128154341015545429669007" + "52711596224042172032690478", + "10128603464324517149713903", + "42780740712989731287237825" ], "fpReserves": [ - "16176575136530064878494573", - "7156734985895102640304446" + "6291044998750393636983958", + "3369299729036750655868057" ], - "mAssetSupply": "115223483822066531284571608", - "LPTokenSupply": "23178340772305163541188216" + "mAssetSupply": "105358582188589875335638173", + "LPTokenSupply": "9537732971696720998765933" }, { - "type": "swap_fp_to_mp", - "inputQty": "157180401743656157184", - "outputIndex": 1, - "outputQty": "158061130022160456450", - "swapFee": "0", - "redemptionFee": "63317293968366804", + "type": "mint", + "inputIndex": 2, + "inputQty": "28057727027810731556864", + "outputQty0": "27911048162117512061115", + "outputQty": "27509977855659787221219", "mpReserves": [ - "54077745239664563212569371", - "29033199172641115816708243", - "32128154341015545429669007" + "52711596224042172032690478", + "10128603464324517149713903", + "42808798440017542018794689" ], "fpReserves": [ - "16176416843295143961483352", - "7156892166296846296461630" + "6318956046912511149045073", + "3369299729036750655868057" ], - "mAssetSupply": "115223325592148904335927191", - "LPTokenSupply": "23178340772305163541188216" + "mAssetSupply": "105386493236751992847699288", + "LPTokenSupply": "9565242949552380785987152" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "6501538717104831", - "outputQty0": "6555284585230293", - "outputQty": "6545672525498004", - "swapFee1": "3900923230262", - "swapFee2": "2622113834092", + "type": "swap_fp_to_mp", + "inputQty": "1553486427346205375725568", + "outputIndex": 2, + "outputQty": "1563731161424590877614006", + "swapFee": "0", + "redemptionFee": "934051709930969758966", "mpReserves": [ - "54077745239664563212569371", - "29033199166095443291210239", - "32128154341015545429669007" + "52711596224042172032690478", + "10128603464324517149713903", + "41245067278592951141180683" ], "fpReserves": [ - "16176416836739859376253059", - "7156892166296846296461630" + "4762203197027561550767130", + "4922786156382956031593625" ], - "mAssetSupply": "115223325585596241864530990", - "LPTokenSupply": "23178340765804014916406411" + "mAssetSupply": "103830674438576974219180311", + "LPTokenSupply": "9565242949552380785987152" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "15640956008017350656", - "outputQty0": "15770254100793968514", - "outputQty": "15754609884691168368", - "swapFee1": "9384573604810410", - "swapFee2": "6308101640317587", + "type": "swap_fp_to_mp", + "inputQty": "10899781392463258714112", + "outputIndex": 0, + "outputQty": "10975183697649785761414", + "swapFee": "0", + "redemptionFee": "6538334358807687517", "mpReserves": [ - "54077745239664563212569371", - "29033199166095443291210239", - "32128138586405660738500639" + "52700621040344522246929064", + "10128603464324517149713903", + "41245067278592951141180683" ], "fpReserves": [ - "16176401066485758582284545", - "7156892166296846296461630" + "4751305973096215404905010", + "4933685937775419290307737" ], - "mAssetSupply": "115223309821650242710880063", - "LPTokenSupply": "23178325125786464259536796" + "mAssetSupply": "103819783752979986881005708", + "LPTokenSupply": "9565242949552380785987152" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "31159114434118152192", - "outputQty0": "31192388323451508806", - "outputQty": "30918084264937248384", + "type": "redeem", + "outputIndex": 2, + "inputQty": "3515555267837558259712", + "outputQty0": "3556974619397990408512", + "outputQty": "3572299478515143373954", + "swapFee1": "2109333160702534955", + "swapFee2": "2134184771638794245", "mpReserves": [ - "54077745239664563212569371", - "29033230325209877409362431", - "32128138586405660738500639" + "52700621040344522246929064", + "10128603464324517149713903", + "41241494979114435997806729" ], "fpReserves": [ - "16176432258874082033793351", - "7156892166296846296461630" + "4747748998476817414496498", + "4933685937775419290307737" ], - "mAssetSupply": "115223341014038566162388869", - "LPTokenSupply": "23178356043870729196785180" + "mAssetSupply": "103816228912545360529391441", + "LPTokenSupply": "9561727605217859297980935" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "4112986051656941568", - "outputQty0": "4107980300049818104", - "outputQty": "4075837872642251539", - "swapFee": "3257483952729765", + "inputQty": "24308676177442136653824", + "outputQty0": "24121487339631353892481", + "outputQty": "24107529512804431448557", + "swapFee": "19060896472963698025", "mpReserves": [ - "54077749352650614869510939", - "29033230325209877409362431", - "32128138586405660738500639" + "52724929716521964383582888", + "10128603464324517149713903", + "41241494979114435997806729" ], "fpReserves": [ - "16176436366854382083611455", - "7156888090458973654210091" + "4771870485816448768388979", + "4909578408262614858859180" ], - "mAssetSupply": "115223345122018866212206973", - "LPTokenSupply": "23178356044196477592058156" + "mAssetSupply": "103840350399884991883283922", + "LPTokenSupply": "9561729511307506594350737" }, { "type": "mint", "inputIndex": 2, - "inputQty": "142078131604307874676736", - "outputQty0": "142161346690122225772694", - "outputQty": "140908678093231104045678", + "inputQty": "481889332681926883934208", + "outputQty0": "479509103877020675813306", + "outputQty": "473548645135143906329404", "mpReserves": [ - "54077749352650614869510939", - "29033230325209877409362431", - "32270216718009968613177375" + "52724929716521964383582888", + "10128603464324517149713903", + "41723384311796362881740937" ], "fpReserves": [ - "16318597713544504309384149", - "7156888090458973654210091" + "5251379589693469444202285", + "4909578408262614858859180" ], - "mAssetSupply": "115365506468708988437979667", - "LPTokenSupply": "23319264722289708696103834" + "mAssetSupply": "104319859503762012559097228", + "LPTokenSupply": "10035278156442650500680141" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "515236233778437711462400", - "outputQty0": "514605942367007705492410", - "outputQty": "510029620894733295171098", + "inputIndex": 2, + "inputQty": "585075517880577971716096", + "outputQty0": "582116639304137943618166", + "outputQty": "574694522507075387922254", "mpReserves": [ - "54592985586429052580973339", - "29033230325209877409362431", - "32270216718009968613177375" + "52724929716521964383582888", + "10128603464324517149713903", + "42308459829676940853457033" ], "fpReserves": [ - "16833203655911512014876559", - "7156888090458973654210091" + "5833496228997607387820451", + "4909578408262614858859180" ], - "mAssetSupply": "115880112411075996143472077", - "LPTokenSupply": "23829294343184441991274932" + "mAssetSupply": "104901976143066150502715394", + "LPTokenSupply": "10609972678949725888602395" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "82964399987248309731328", - "outputQty0": "83054883411760454797456", - "outputQty": "82351094978881133333160", - "swapFee": "65848133479765888489", + "type": "swap_fp_to_mp", + "inputQty": "441062139251592009875456", + "outputIndex": 2, + "outputQty": "443310715510710319386397", + "swapFee": "0", + "redemptionFee": "264795996795976765939", "mpReserves": [ - "54592985586429052580973339", - "29116194725197125719093759", - "32270216718009968613177375" + "52724929716521964383582888", + "10128603464324517149713903", + "41865149114166230534070636" ], "fpReserves": [ - "16916258539323272469674015", - "7074536995480092520876931" + "5392169567670979444588444", + "5350640547514206868734636" ], - "mAssetSupply": "115963167294487756598269533", - "LPTokenSupply": "23829300927997789967863780" + "mAssetSupply": "104460914277736318536249326", + "LPTokenSupply": "10609972678949725888602395" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "404207860025536610304", - "outputQty0": "404450466168491630671", - "outputQty": "400976118137769915383", - "swapFee": "320639387916946042", + "type": "redeem", + "outputIndex": 0, + "inputQty": "94573104269702430720", + "outputQty0": "95702148260903382398", + "outputQty": "96384157849282602969", + "swapFee1": "56743862561821458", + "swapFee2": "57421288956542029", "mpReserves": [ - "54592985586429052580973339", - "29116194725197125719093759", - "32270620925869994149787679" + "52724833332364115100979919", + "10128603464324517149713903", + "41865149114166230534070636" ], "fpReserves": [ - "16916662989789440961304686", - "7074136019361954750961548" + "5392073865522718541206046", + "5350640547514206868734636" ], - "mAssetSupply": "115963571744953925089900204", - "LPTokenSupply": "23829300960061728759558384" + "mAssetSupply": "104460818633009346589408957", + "LPTokenSupply": "10609878111519842442353820" }, { - "type": "swap_fp_to_mp", - "inputQty": "13014089138548527595520", + "type": "redeem", "outputIndex": 2, - "outputQty": "13102995169195645685329", - "swapFee": "0", - "redemptionFee": "5246445667292862695", + "inputQty": "42568841655512752717824", + "outputQty0": "43076471187315917571137", + "outputQty": "43267802510315835992919", + "swapFee1": "25541304993307651630", + "swapFee2": "25845882712389550542", "mpReserves": [ - "54592985586429052580973339", - "29116194725197125719093759", - "32257517930700798504102350" + "52724833332364115100979919", + "10128603464324517149713903", + "41821881311655914698077717" ], "fpReserves": [ - "16903546875621208804565191", - "7087150108500503278557068" + "5348997394335402623634909", + "5350640547514206868734636" ], - "mAssetSupply": "115950460877231360226023404", - "LPTokenSupply": "23829300960061728759558384" + "mAssetSupply": "104417768007704743061388362", + "LPTokenSupply": "10567311823994829020401159" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "215969701209070494547968", - "outputQty0": "216201029766303346084648", - "outputQty": "214245764537022136665474", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "766045588043151146221568", + "outputQty0": "762139775819048493299055", + "outputQty": "760799388060533844920819", + "swapFee": "602038710488007235227", "mpReserves": [ - "54592985586429052580973339", - "29332164426406196213641727", - "32257517930700798504102350" + "52724833332364115100979919", + "10128603464324517149713903", + "42587926899699065844299285" ], "fpReserves": [ - "17119747905387512150649839", - "7087150108500503278557068" + "6111137170154451116933964", + "4589841159453673023813817" ], - "mAssetSupply": "116166661906997663572108052", - "LPTokenSupply": "24043546724598750896223858" + "mAssetSupply": "105179907783523791554687417", + "LPTokenSupply": "10567372027865877821124681" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "77568599229021724606464", - "outputQty0": "77615677953995862829967", - "outputQty": "76929045377773563320414", - "swapFee": "61528738506875097127", + "type": "swap_fp_to_mp", + "inputQty": "8836173438962030870528", + "outputIndex": 1, + "outputQty": "8542613837348191351534", + "swapFee": "0", + "redemptionFee": "5312044290286706363", "mpReserves": [ - "54592985586429052580973339", - "29332164426406196213641727", - "32335086529929820228708814" + "52724833332364115100979919", + "10120060850487168958362369", + "42587926899699065844299285" ], "fpReserves": [ - "17197363583341508013479806", - "7010221063122729715236654" + "6102283763003973272995528", + "4598677332892635054684345" ], - "mAssetSupply": "116244277584951659434938019", - "LPTokenSupply": "24043552877472601583733570" + "mAssetSupply": "105171059688417603997455344", + "LPTokenSupply": "10567372027865877821124681" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "103619241298635450744832", + "outputIndex": 0, + "outputQty": "104540972294298105129520", + "swapFee": "0", + "redemptionFee": "62283144599419609309", + "mpReserves": [ + "52620292360069816995850399", + "10120060850487168958362369", + "42587926899699065844299285" + ], + "fpReserves": [ + "5998478522004940590813233", + "4702296574191270505429177" + ], + "mAssetSupply": "105067316730563170734882358", + "LPTokenSupply": "10567372027865877821124681" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "22090075240890684", - "outputQty0": "22113509284469152", - "outputQty": "21915387607076382", - "swapFee": "17529140751635", + "inputIndex": 0, + "inputQty": "920037886636715147264", + "outputQty0": "913024004280941991392", + "outputQty": "910786512379466725964", + "swapFee": "720789416528575020", "mpReserves": [ - "54592985586429052580973339", - "29332164448496271454532411", - "32335086529929820228708814" + "52621212397956453710997663", + "10120060850487168958362369", + "42587926899699065844299285" ], "fpReserves": [ - "17197363605455017297948958", - "7010221041207342108160272" + "5999391546009221532804625", + "4701385787678891038703213" ], - "mAssetSupply": "116244277607065168719407171", - "LPTokenSupply": "24043552877474354497808733" + "mAssetSupply": "105068229754567451676873750", + "LPTokenSupply": "10567372099944819473982183" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1214217333944034263040", - "outputQty0": "1215505332452575251444", - "outputQty": "1204397305757680723207", + "inputQty": "6382812902564958306304", + "outputQty0": "6610574392692384746326", + "outputQty": "6523403966870391092731", "mpReserves": [ - "54592985586429052580973339", - "29333378665830215488795451", - "32335086529929820228708814" + "52621212397956453710997663", + "10126443663389733916668673", + "42587926899699065844299285" ], "fpReserves": [ - "17198579110787469873200402", - "7010221041207342108160272" + "6006002120401913917550951", + "4701385787678891038703213" ], - "mAssetSupply": "116245493112397621294658615", - "LPTokenSupply": "24044757274780112178531940" + "mAssetSupply": "105074840328960144061620076", + "LPTokenSupply": "10573895503911689865074914" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "2711870793993151840256", - "outputQty0": "2735239434830433201778", - "outputQty": "2732496718662737320895", - "swapFee1": "1627122476395891104", - "swapFee2": "1094095773932173280", + "outputIndex": 1, + "inputQty": "853179667033029787779072", + "outputQty0": "863858115086461794845410", + "outputQty": "831076899414483537527992", + "swapFee1": "511907800219817872667", + "swapFee2": "518314869051877076907", "mpReserves": [ - "54592985586429052580973339", - "29333378665830215488795451", - "32332354033211157491387919" + "52621212397956453710997663", + "9295366763975250379140681", + "42587926899699065844299285" ], "fpReserves": [ - "17195843871352639439998624", - "7010221041207342108160272" + "5142144005315452122705541", + "4701385787678891038703213" ], - "mAssetSupply": "116242758967058564793630117", - "LPTokenSupply": "24042045566698366666280794" + "mAssetSupply": "104211500528742734143851573", + "LPTokenSupply": "9720767027658682059083108" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "7493109686515393363968", - "outputQty0": "7501053154942544760338", - "outputQty": "7433776059682451543835", - "swapFee": "5946000389478465909", + "type": "redeem", + "outputIndex": 2, + "inputQty": "129938070308625137532928", + "outputQty0": "131532071022940866732420", + "outputQty": "132216591994050620208822", + "swapFee1": "77962842185175082519", + "swapFee2": "78919242613764520039", "mpReserves": [ - "54592985586429052580973339", - "29340871775516730882159419", - "32332354033211157491387919" + "52621212397956453710997663", + "9295366763975250379140681", + "42455710307705015224090463" ], "fpReserves": [ - "17203344924507581984758962", - "7002787265147659656616437" + "5010611934292511255973121", + "4701385787678891038703213" ], - "mAssetSupply": "116250260020213507338390455", - "LPTokenSupply": "24042046161298405614127384" + "mAssetSupply": "104080047376962407041639192", + "LPTokenSupply": "9590836753634275439058431" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "8264419699957434368", - "outputQty0": "8335689026212362924", - "outputQty": "8327326781644031916", - "swapFee1": "4958651819974460", - "swapFee2": "3334275610484945", + "type": "mint", + "inputIndex": 2, + "inputQty": "15544140490684539863040", + "outputQty0": "15454595078991182851077", + "outputQty": "15258595326195017898324", "mpReserves": [ - "54592985586429052580973339", - "29340871775516730882159419", - "32332345705884375847356003" + "52621212397956453710997663", + "9295366763975250379140681", + "42471254448195699763953503" ], "fpReserves": [ - "17203336588818555772396038", - "7002787265147659656616437" + "5026066529371502438824198", + "4701385787678891038703213" ], - "mAssetSupply": "116250251687858756736512476", - "LPTokenSupply": "24042037897374570838690462" + "mAssetSupply": "104095501972041398224490269", + "LPTokenSupply": "9606095348960470456956755" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "860629229222008608260096", - "outputQty0": "859563956278291173277639", - "outputQty": "851611678048704425535316", + "inputIndex": 2, + "inputQty": "44622141513959689158656", + "outputQty0": "44364776401865043208765", + "outputQty": "43801292206957031149390", "mpReserves": [ - "55453614815651061189233435", - "29340871775516730882159419", - "32332345705884375847356003" + "52621212397956453710997663", + "9295366763975250379140681", + "42515876589709659453112159" ], "fpReserves": [ - "18062900545096846945673677", - "7002787265147659656616437" + "5070431305773367482032963", + "4701385787678891038703213" ], - "mAssetSupply": "117109815644137047909790115", - "LPTokenSupply": "24893649575423275264225778" + "mAssetSupply": "104139866748443263267699034", + "LPTokenSupply": "9649896641167427488106145" }, { "type": "swap_fp_to_mp", - "inputQty": "8896082803149528629248", + "inputQty": "1111809950384625025024", "outputIndex": 0, - "outputQty": "8983829980468481916461", + "outputQty": "1121060060154876712336", "swapFee": "0", - "redemptionFee": "3590454416146417438", + "redemptionFee": "667419672755562180", "mpReserves": [ - "55444630985670592707316974", - "29340871775516730882159419", - "32332345705884375847356003" + "52620091337896298834285327", + "9295366763975250379140681", + "42515876589709659453112159" ], "fpReserves": [ - "18053924409056480902076257", - "7011683347950809185245685" + "5069318939652108211732017", + "4702497597629275663728237" ], - "mAssetSupply": "117100843098551098012610133", - "LPTokenSupply": "24893649575423275264225778" + "mAssetSupply": "104138755049741676752960268", + "LPTokenSupply": "9649896641167427488106145" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "31377705764594581504", - "outputQty0": "31412082387681771986", - "outputQty": "31107467213584602721", - "swapFee": "24894701476244323", + "inputIndex": 0, + "inputQty": "1385443607721114075136", + "outputQty0": "1373874489038146901325", + "outputQty": "1372088526997566709290", + "swapFee": "1085125569045190891", "mpReserves": [ - "55444630985670592707316974", - "29340903153222495476740923", - "32332345705884375847356003" + "52621476781504019948360463", + "9295366763975250379140681", + "42515876589709659453112159" ], "fpReserves": [ - "18053955821138868583848243", - "7011652240483595600642964" + "5070692814141146358633342", + "4701125509102278097018947" ], - "mAssetSupply": "117100874510633485694382119", - "LPTokenSupply": "24893649577912745411850210" + "mAssetSupply": "104140128924230714899861593", + "LPTokenSupply": "9649896749679984392625234" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "13655344617953899315200", - "outputQty0": "13775934458199368550049", - "outputQty": "13787735804915645046634", - "swapFee1": "8193206770772339589", - "swapFee2": "5510373783279747420", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "746643583274245423104", + "outputQty0": "740408586454317471526", + "outputQty": "739443960035931402488", + "swapFee": "584794989366020777", "mpReserves": [ - "55430843249865677062270340", - "29340903153222495476740923", - "32332345705884375847356003" + "52622223425087294193783567", + "9295366763975250379140681", + "42515876589709659453112159" ], "fpReserves": [ - "18040179886680669215298194", - "7011652240483595600642964" + "5071433222727600676104868", + "4700386065142242165616459" ], - "mAssetSupply": "117087104086549069605579490", - "LPTokenSupply": "24879995052615468589768968" + "mAssetSupply": "104140869332817169217333119", + "LPTokenSupply": "9649896808159483329227311" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1635872172544672661504", - "outputQty0": "1637663261330530388878", - "outputQty": "1622355689012965210896", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "7409878528616859648", + "outputQty0": "7367103151753147511", + "outputQty": "7357497555010615578", + "swapFee": "5818735302110480", "mpReserves": [ - "55430843249865677062270340", - "29342539025395040149402427", - "32332345705884375847356003" + "52622223425087294193783567", + "9295366763975250379140681", + "42515883999588188069971807" ], "fpReserves": [ - "18041817549941999745687072", - "7011652240483595600642964" + "5071440589830752429252379", + "4700378707644687155000881" ], - "mAssetSupply": "117088741749810400135968368", - "LPTokenSupply": "24881617408304481554979864" + "mAssetSupply": "104140876699920320970480630", + "LPTokenSupply": "9649896808741356859438359" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "24787481474051656908800", + "outputQty0": "25091488876271506475035", + "outputQty": "25287538401946406846505", + "swapFee1": "14872488884430994145", + "swapFee2": "15054893325762903885", + "mpReserves": [ + "52596935886685347786937062", + "9295366763975250379140681", + "42515883999588188069971807" + ], + "fpReserves": [ + "5046349100954480922777344", + "4700378707644687155000881" + ], + "mAssetSupply": "104115800265937375226909480", + "LPTokenSupply": "9625110814516193645628973" }, { "type": "mint", "inputIndex": 2, - "inputQty": "38772124020030000070656", - "outputQty0": "38796594744475362909021", - "outputQty": "38433761598421537947832", + "inputQty": "77734399808436992737280", + "outputQty0": "77284868901836045901221", + "outputQty": "76301316457682053531129", "mpReserves": [ - "55430843249865677062270340", - "29342539025395040149402427", - "32371117829904405847426659" + "52596935886685347786937062", + "9295366763975250379140681", + "42593618399396625062709087" ], "fpReserves": [ - "18080614144686475108596093", - "7011652240483595600642964" + "5123633969856316968678565", + "4700378707644687155000881" ], - "mAssetSupply": "117127538344554875498877389", - "LPTokenSupply": "24920051169902903092927696" + "mAssetSupply": "104193085134839211272810701", + "LPTokenSupply": "9701412130973875699160102" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1441416695531967468273664", - "outputQty0": "1453893917535574792362398", - "outputQty": "1451580799530884874472787", - "swapFee1": "864850017319180480964", - "swapFee2": "581557567014229916944", + "type": "mint", + "inputIndex": 0, + "inputQty": "376923085554403246080", + "outputQty0": "373778839493319818160", + "outputQty": "369013003095050947426", "mpReserves": [ - "55430843249865677062270340", - "27890958225864155274929640", - "32371117829904405847426659" + "52597312809770902190183142", + "9295366763975250379140681", + "42593618399396625062709087" ], "fpReserves": [ - "16626720227150900316233695", - "7011652240483595600642964" + "5124007748695810288496725", + "4700378707644687155000881" ], - "mAssetSupply": "115674225984586314936431935", - "LPTokenSupply": "23478720959372667542702128" + "mAssetSupply": "104193458913678704592628861", + "LPTokenSupply": "9701781143976970750107528" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "8932475912492604719104", - "outputQty0": "8937526804616441623733", - "outputQty": "8856824848048186397738", + "type": "swap_fp_to_mp", + "inputQty": "19640051081251180544", + "outputIndex": 2, + "outputQty": "19753932945777106588", + "swapFee": "0", + "redemptionFee": "11790787347011174", "mpReserves": [ - "55430843249865677062270340", - "27890958225864155274929640", - "32380050305816898452145763" + "52597312809770902190183142", + "9295366763975250379140681", + "42593598645463679285602499" ], "fpReserves": [ - "16635657753955516757857428", - "7011652240483595600642964" + "5123988097383565269872184", + "4700398347695768406181425" ], - "mAssetSupply": "115683163511390931378055668", - "LPTokenSupply": "23487577784220715729099866" + "mAssetSupply": "104193439274157246921015494", + "LPTokenSupply": "9701781143976970750107528" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "418537774972779991400448", - "outputQty0": "422075910860048280265315", - "outputQty": "421660037765223596248024", - "swapFee1": "251122664983667994840", - "swapFee2": "168830364344019312106", + "inputQty": "3854490953532031", + "outputQty0": "3901929845720274", + "outputQty": "3922306021820024", + "swapFee1": "2312694572119", + "swapFee2": "2341157907432", "mpReserves": [ - "55430843249865677062270340", - "27890958225864155274929640", - "31958390268051674855897739" + "52597312809770902190183142", + "9295366763975250379140681", + "42593598641541373263782475" ], "fpReserves": [ - "16213581843095468477592113", - "7011652240483595600642964" + "5123988093481635424151910", + "4700398347695768406181425" ], - "mAssetSupply": "115261256430895227117102459", - "LPTokenSupply": "23069065121514434104498902" + "mAssetSupply": "104193439270257658233202652", + "LPTokenSupply": "9701781140122711066032708" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "325120841633468608", - "outputQty0": "327854911451099861", - "outputQty": "328161249847130370", - "swapFee1": "195072504980081", - "swapFee2": "131141964580439", + "type": "mint", + "inputIndex": 2, + "inputQty": "695828236663998119936", + "outputQty0": "691798061352791302963", + "outputQty": "682977137339517949100", "mpReserves": [ - "55430842921704427215139970", - "27890958225864155274929640", - "31958390268051674855897739" + "52597312809770902190183142", + "9295366763975250379140681", + "42594294469778037261902411" ], "fpReserves": [ - "16213581515240557026492252", - "7011652240483595600642964" + "5124679891542988215454873", + "4700398347695768406181425" ], - "mAssetSupply": "115261256103171457630583037", - "LPTokenSupply": "23069064796413099721528302" + "mAssetSupply": "104194131068319011024505615", + "LPTokenSupply": "9702464117260050583981808" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1567655025455554625536", - "outputQty0": "1569653762051091954626", - "outputQty": "1555629750376080548629", + "inputIndex": 2, + "inputQty": "59390068427646582784", + "outputQty0": "59046081270264287322", + "outputQty": "58293187506591901161", + "mpReserves": [ + "52597312809770902190183142", + "9295366763975250379140681", + "42594353859846464908485195" + ], + "fpReserves": [ + "5124738937624258479742195", + "4700398347695768406181425" + ], + "mAssetSupply": "104194190114400281288792937", + "LPTokenSupply": "9702522410447557175882969" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1338586944708590080", + "outputQty0": "1327420611358375692", + "outputQty": "1325597341333215449", + "swapFee": "1048395767853924", "mpReserves": [ - "55430842921704427215139970", - "27892525880889610829555176", - "31958390268051674855897739" + "52597314148357846898773222", + "9295366763975250379140681", + "42594353859846464908485195" ], "fpReserves": [ - "16215151169002608118446878", - "7011652240483595600642964" + "5124740265044869838117887", + "4700397022098427072965976" ], - "mAssetSupply": "115262825756933508722537663", - "LPTokenSupply": "23070620426163475802076931" + "mAssetSupply": "104194191441820892647168629", + "LPTokenSupply": "9702522410552396752668361" }, { "type": "swap_fp_to_mp", - "inputQty": "4041710227930376192", - "outputIndex": 2, - "outputQty": "4067473459496040605", + "inputQty": "927601528897750040576", + "outputIndex": 1, + "outputQty": "889981052738837476490", "swapFee": "0", - "redemptionFee": "1628628458241186", + "redemptionFee": "556879865025188039", "mpReserves": [ - "55430842921704427215139970", - "27892525880889610829555176", - "31958386200578215359857134" + "52597314148357846898773222", + "9294476782922511541664191", + "42594353859846464908485195" ], "fpReserves": [ - "16215147097431462515480229", - "7011656282193823531019156" + "5123812131936494524719201", + "4701324623627324823006552" ], - "mAssetSupply": "115262821686990991577812200", - "LPTokenSupply": "23070620426163475802076931" + "mAssetSupply": "104193263865592382358957982", + "LPTokenSupply": "9702522410552396752668361" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "934591642219933184", + "outputQty0": "929177829957804139", + "outputQty": "917331019445936363", + "mpReserves": [ + "52597314148357846898773222", + "9294476782922511541664191", + "42594354794438107128418379" + ], + "fpReserves": [ + "5123813061114324482523340", + "4701324623627324823006552" + ], + "mAssetSupply": "104193264794770212316762121", + "LPTokenSupply": "9702523327883416198604724" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "63732853181555494879232", - "outputQty0": "64268307732401863455387", - "outputQty": "64203418946186918296982", - "swapFee1": "38239711908933296927", - "swapFee2": "25707323092960745382", + "outputIndex": 1, + "inputQty": "12739080460402898944", + "outputQty0": "12895856261490734223", + "outputQty": "12365708059516781542", + "swapFee1": "7643448276241739", + "swapFee2": "7737513756894440", + "mpReserves": [ + "52597314148357846898773222", + "9294464417214452024882649", + "42594354794438107128418379" + ], + "fpReserves": [ + "5123800165258062991789117", + "4701324623627324823006552" + ], + "mAssetSupply": "104193251906651464582922338", + "LPTokenSupply": "9702510589567300623329953" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "55524832918042637762560", + "outputQty0": "55061284614123372753157", + "outputQty": "54981662923645756844313", + "swapFee": "43486668699935284979", "mpReserves": [ - "55430842921704427215139970", - "27892525880889610829555176", - "31894182781632028441560152" + "52652838981275889536535782", + "9294464417214452024882649", + "42594354794438107128418379" ], "fpReserves": [ - "16150878789699060652024842", - "7011656282193823531019156" + "5178861449872186364542274", + "4646342960703679066162239" ], - "mAssetSupply": "115198579086581682675102195", - "LPTokenSupply": "23006891396953111200527391" + "mAssetSupply": "104248313191265587955675495", + "LPTokenSupply": "9702514938234170616858450" }, { "type": "swap_fp_to_mp", - "inputQty": "109680762910167598628864", - "outputIndex": 2, - "outputQty": "110356080426043459807046", + "inputQty": "2035043166818350336", + "outputIndex": 0, + "outputQty": "2052437769980167763", "swapFee": "0", - "redemptionFee": "44187437117976277614", + "redemptionFee": "1221907883201207", "mpReserves": [ - "55430842921704427215139970", - "27892525880889610829555176", - "31783826701205984981753106" + "52652836928838119556368019", + "9294464417214452024882649", + "42594354794438107128418379" ], "fpReserves": [ - "16040410196904119957987888", - "7121337045103991129648020" + "5178859413359047695863697", + "4646344995746845884512575" ], - "mAssetSupply": "115088154681223859957342855", - "LPTokenSupply": "23006891396953111200527391" + "mAssetSupply": "104248311155974357170198125", + "LPTokenSupply": "9702514938234170616858450" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "208755115208025", - "outputQty0": "209019620388373", - "outputQty": "207393598368360", - "swapFee": "165739276907", + "type": "redeem", + "outputIndex": 1, + "inputQty": "31407251676946690473984", + "outputQty0": "31795863953413724876235", + "outputQty": "30483161185579310756138", + "swapFee1": "18844351006168014284", + "swapFee2": "19077518372048234925", "mpReserves": [ - "55430842921704427215139970", - "27892525881098365944763201", - "31783826701205984981753106" + "52652836928838119556368019", + "9263981256028872714126511", + "42594354794438107128418379" ], "fpReserves": [ - "16040410197113139578376261", - "7121337044896597531279660" + "5147063549405633970987462", + "4646344995746845884512575" ], - "mAssetSupply": "115088154681432879577731228", - "LPTokenSupply": "23006891396953127774455081" + "mAssetSupply": "104216534369539315493556815", + "LPTokenSupply": "9671109570992324543185894" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7336126173214767104", - "outputQty0": "7326300772846862683", - "outputQty": "7261613701191065947", + "inputIndex": 2, + "inputQty": "3218363621566978195456", + "outputQty0": "3199650614401914432680", + "outputQty": "3158670151619856327064", "mpReserves": [ - "55430850257830600429907074", - "27892525881098365944763201", - "31783826701205984981753106" + "52652836928838119556368019", + "9263981256028872714126511", + "42597573158059674106613835" ], "fpReserves": [ - "16040417523413912425238944", - "7121337044896597531279660" + "5150263200020035885420142", + "4646344995746845884512575" ], - "mAssetSupply": "115088162007733652424593911", - "LPTokenSupply": "23006898658566828965521028" + "mAssetSupply": "104219734020153717407989495", + "LPTokenSupply": "9674268241143944399512958" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "809058775328492355584", - "outputQty0": "809564206991313611771", - "outputQty": "802416132552387719219", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "25812957341819896", + "outputQty0": "25596560819392608", + "outputQty": "25558572815581496", + "swapFee": "20214960298005", "mpReserves": [ - "55430850257830600429907074", - "27892525881098365944763201", - "31784635759981313474108690" + "52652836954651076898187915", + "9263981256028872714126511", + "42597573158059674106613835" ], "fpReserves": [ - "16041227087620903738850715", - "7121337044896597531279660" + "5150263225616596704812750", + "4646344970188273068931079" ], - "mAssetSupply": "115088971571940643738205682", - "LPTokenSupply": "23007701074699381353240247" + "mAssetSupply": "104219734045750278227382103", + "LPTokenSupply": "9674268241145965895542758" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1004296640835895820288", - "outputQty0": "1004923947577121930109", - "outputQty": "997104375573802225647", - "swapFee": "796840567905977712", + "inputIndex": 1, + "inputQty": "6016125888796451405824", + "outputQty0": "6272116137393091964709", + "outputQty": "6262753721383279938532", + "swapFee": "4953412841142647091", "mpReserves": [ - "55430850257830600429907074", - "27892525881098365944763201", - "31785640056622149369928978" + "52652836954651076898187915", + "9269997381917669165532335", + "42597573158059674106613835" ], "fpReserves": [ - "16042232011568480860780824", - "7120339940521023729054013" + "5156535341753989796777459", + "4640082216466889788992547" ], - "mAssetSupply": "115089976495888220860135791", - "LPTokenSupply": "23007701154383438143838018" + "mAssetSupply": "104226006161887671319346812", + "LPTokenSupply": "9674268736487250009807467" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "91193940729690429849600", - "outputQty0": "91308899416983918130842", - "outputQty": "90501556783741923545715", + "inputQty": "82798878406242052603904", + "outputQty0": "86288936431268532017668", + "outputQty": "86149138379559072887785", + "swapFee": "68144555949803424676", "mpReserves": [ - "55430850257830600429907074", - "27983719821828056374612801", - "31785640056622149369928978" + "52652836954651076898187915", + "9352796260323911218136239", + "42597573158059674106613835" ], "fpReserves": [ - "16133540910985464778911666", - "7120339940521023729054013" + "5242824278185258328795127", + "4553933078087330716104762" ], - "mAssetSupply": "115181285395305204778266633", - "LPTokenSupply": "23098202711167180067383733" + "mAssetSupply": "104312295098318939851364480", + "LPTokenSupply": "9674275550942844990149934" }, { "type": "mint", "inputIndex": 2, - "inputQty": "296455838349726981292032", - "outputQty0": "296637744400288412081211", - "outputQty": "294000562496058716288027", + "inputQty": "19124181919480147869696", + "outputQty0": "19014266053492395675246", + "outputQty": "18768227449529756528006", "mpReserves": [ - "55430850257830600429907074", - "27983719821828056374612801", - "32082095894971876351221010" + "52652836954651076898187915", + "9352796260323911218136239", + "42616697339979154254483531" ], "fpReserves": [ - "16430178655385753190992877", - "7120339940521023729054013" + "5261838544238750724470373", + "4553933078087330716104762" ], - "mAssetSupply": "115477923139705493190347844", - "LPTokenSupply": "23392203273663238783671760" + "mAssetSupply": "104331309364372432247039726", + "LPTokenSupply": "9693043778392374746677940" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "321273487047194432", - "outputQty0": "323972877498090060", - "outputQty": "324272755513130730", - "swapFee1": "192764092228316", - "swapFee2": "129589150999236", + "type": "mint", + "inputIndex": 0, + "inputQty": "65378445593419374592", + "outputQty0": "64835944147272610909", + "outputQty": "63996621032481076694", "mpReserves": [ - "55430849933557844916776344", - "27983719821828056374612801", - "32082095894971876351221010" + "52652902333096670317562507", + "9352796260323911218136239", + "42616697339979154254483531" ], "fpReserves": [ - "16430178331412875692902817", - "7120339940521023729054013" + "5261903380182897997081282", + "4553933078087330716104762" ], - "mAssetSupply": "115477922815862204843257020", - "LPTokenSupply": "23392202952409028145700159" + "mAssetSupply": "104331374200316579519650635", + "LPTokenSupply": "9693107775013407227754634" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "3565516313294832402432", - "outputQty0": "3595472722418971035788", - "outputQty": "3591883569341556082195", - "swapFee1": "2139309787976899441", - "swapFee2": "1438189088967588414", + "inputQty": "4406609209504951173120", + "outputQty0": "4461717878164861429581", + "outputQty": "4484824798455095019144", + "swapFee1": "2643965525702970703", + "swapFee2": "2677030726898916857", "mpReserves": [ - "55430849933557844916776344", - "27983719821828056374612801", - "32078504011402534795138815" + "52652902333096670317562507", + "9352796260323911218136239", + "42612212515180699159464387" ], "fpReserves": [ - "16426582858690456721867029", - "7120339940521023729054013" + "5257441662304733135651701", + "4553933078087330716104762" ], - "mAssetSupply": "115474328781328874839809646", - "LPTokenSupply": "23388637650026712110987671" + "mAssetSupply": "104326915159469141557137911", + "LPTokenSupply": "9688701430200454846878584" }, { "type": "swap_fp_to_mp", - "inputQty": "1146367934560794604208128", + "inputQty": "37405935112379281965056", "outputIndex": 2, - "outputQty": "1151991906386668499428768", + "outputQty": "37633612267490709309318", "swapFee": "0", - "redemptionFee": "461284625821904550024", + "redemptionFee": "22463937813307058999", "mpReserves": [ - "55430849933557844916776344", - "27983719821828056374612801", - "30926512105015866295710047" + "52652902333096670317562507", + "9352796260323911218136239", + "42574578902913208450155069" ], "fpReserves": [ - "15273371294135695346805988", - "8266707875081818333262141" + "5220001765949221370651713", + "4591339013199709998069818" ], - "mAssetSupply": "114321578501399935369298629", - "LPTokenSupply": "23388637650026712110987671" + "mAssetSupply": "104289497727051443099196922", + "LPTokenSupply": "9688701430200454846878584" }, { "type": "mint", "inputIndex": 0, - "inputQty": "641420345366388932608", - "outputQty0": "640543628602664868463", - "outputQty": "635363035717220876654", + "inputQty": "193989935090958365360128", + "outputQty0": "192375967850244078955284", + "outputQty": "189884336795759549936229", "mpReserves": [ - "55431491353903211305708952", - "27983719821828056374612801", - "30926512105015866295710047" + "52846892268187628682922635", + "9352796260323911218136239", + "42574578902913208450155069" ], "fpReserves": [ - "15274011837764298011674451", - "8266707875081818333262141" + "5412377733799465449606997", + "4591339013199709998069818" ], - "mAssetSupply": "114322219045028538034167092", - "LPTokenSupply": "23389273013062429331864325" + "mAssetSupply": "104481873694901687178152206", + "LPTokenSupply": "9878585766996214396814813" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "175402194897385923018752", - "outputQty0": "175526697078424434367665", - "outputQty": "174528081042297174684418", - "swapFee": "139282818480088086866", + "type": "mint", + "inputIndex": 1, + "inputQty": "296258921774152622800896", + "outputQty0": "308308503589698584509368", + "outputQty": "304271397427956415579493", "mpReserves": [ - "55431491353903211305708952", - "27983719821828056374612801", - "31101914299913252218728799" + "52846892268187628682922635", + "9649055182098063840937135", + "42574578902913208450155069" ], "fpReserves": [ - "15449538534842722446042116", - "8092179794039521158577723" + "5720686237389164034116365", + "4591339013199709998069818" ], - "mAssetSupply": "114497745742106962468534757", - "LPTokenSupply": "23389286941344277340673011" + "mAssetSupply": "104790182198491385762661574", + "LPTokenSupply": "10182857164424170812394306" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "196005175245443680", - "outputQty0": "195738565709358904", - "outputQty": "194591996823787801", - "swapFee": "155305344683673", + "type": "swap_fp_to_mp", + "inputQty": "28931192423861148712960", + "outputIndex": 0, + "outputQty": "29191098600574893454065", + "swapFee": "0", + "redemptionFee": "17383832099080320293", "mpReserves": [ - "55431491549908386551152632", - "27983719821828056374612801", - "31101914299913252218728799" + "52817701169587053789468570", + "9649055182098063840937135", + "42574578902913208450155069" ], "fpReserves": [ - "15449538730581288155401020", - "8092179599447524334789922" + "5691713183890696833626769", + "4620270205623571146782778" ], - "mAssetSupply": "114497745937845528177893661", - "LPTokenSupply": "23389286941359807875141378" + "mAssetSupply": "104761226528825017642492271", + "LPTokenSupply": "10182857164424170812394306" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "47368554681877015822336", + "outputQty0": "49226316893850533230371", + "outputQty": "48578623716460519520549", + "mpReserves": [ + "52817701169587053789468570", + "9696423736779940856759471", + "42574578902913208450155069" + ], + "fpReserves": [ + "5740939500784547366857140", + "4620270205623571146782778" + ], + "mAssetSupply": "104810452845718868175722642", + "LPTokenSupply": "10231435788140631331914855" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "326364009572039552", "outputIndex": 2, - "inputQty": "415909300851587525115904", - "outputQty0": "419079702709427490261110", - "outputQty": "418609384412615469548010", - "swapFee1": "249545580510952515069", - "swapFee2": "167631881083770996104", + "outputQty": "328445012481959316", + "swapFee": "0", + "redemptionFee": "196105766704577", "mpReserves": [ - "55431491549908386551152632", - "27983719821828056374612801", - "30683304915500636749180789" + "52817701169587053789468570", + "9696423736779940856759471", + "42574578574468195968195753" ], "fpReserves": [ - "15030459027871860665139910", - "8092179599447524334789922" + "5740939173941602859227876", + "4620270531987580718822330" ], - "mAssetSupply": "114078833867017184458628655", - "LPTokenSupply": "22973402595066271445276980" + "mAssetSupply": "104810452519072029434797955", + "LPTokenSupply": "10231435788140631331914855" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "226154178887851016192", - "outputQty0": "225842950998238754807", - "outputQty": "224008783644680475277", + "type": "redeem", + "outputIndex": 0, + "inputQty": "679666244112157638656", + "outputQty0": "688324054273951415964", + "outputQty": "693472821717515879341", + "swapFee1": "407799746467294583", + "swapFee2": "412994432564370849", "mpReserves": [ - "55431717704087274402168824", - "27983719821828056374612801", - "30683304915500636749180789" + "52817007696765336273589229", + "9696423736779940856759471", + "42574578574468195968195753" ], "fpReserves": [ - "15030684870822858903894717", - "8092179599447524334789922" + "5740250849887328907811912", + "4620270531987580718822330" ], - "mAssetSupply": "114079059709968182697383462", - "LPTokenSupply": "22973626603849916125752257" + "mAssetSupply": "104809764608012188047752840", + "LPTokenSupply": "10230756162676493821005657" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "199832574560391386890240", - "outputQty0": "200070491142319647972739", - "outputQty": "198440947234243162349836", + "inputQty": "3667937739714073", + "outputQty0": "3811093332577817", + "outputQty": "3802467590474231", + "swapFee": "3008719750882", "mpReserves": [ - "55431717704087274402168824", - "28183552396388447761503041", - "30683304915500636749180789" + "52817007696765336273589229", + "9696423740447878596473544", + "42574578574468195968195753" ], "fpReserves": [ - "15230755361965178551867456", - "8092179599447524334789922" + "5740250853698422240389729", + "4620270528185113128348099" ], - "mAssetSupply": "114279130201110502345356201", - "LPTokenSupply": "23172067551084159288102093" + "mAssetSupply": "104809764611823281380330657", + "LPTokenSupply": "10230756162676794692980745" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "509818839928517030838272", - "outputQty0": "513677886064735339800669", - "outputQty": "514169369997390587677525", - "swapFee1": "305891303957110218502", - "swapFee2": "205471154425894135920", + "type": "swap_fp_to_mp", + "inputQty": "304056187398432357351424", + "outputIndex": 1, + "outputQty": "292430692593545449064675", + "swapFee": "0", + "redemptionFee": "182626771815706200389", "mpReserves": [ - "54917548334089883814491299", - "28183552396388447761503041", - "30683304915500636749180789" + "52817007696765336273589229", + "9403993047854333147408869", + "42574578574468195968195753" ], "fpReserves": [ - "14717077475900443212066787", - "8092179599447524334789922" + "5435872900672245239741352", + "4924326715583545485699523" ], - "mAssetSupply": "113765657786200192899691452", - "LPTokenSupply": "22662279300286037968285671" + "mAssetSupply": "104505569285568920085882669", + "LPTokenSupply": "10230756162676794692980745" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "174247827752068914872320", - "outputQty0": "174012958053851356946743", - "outputQty": "173050195390089489281747", - "swapFee": "138085513561197456577", + "inputIndex": 2, + "inputQty": "24972134439083548082176", + "outputQty0": "24829904301560986261415", + "outputQty": "24792942696036456833858", + "swapFee": "19609467932187386642", "mpReserves": [ - "55091796161841952729363619", - "28183552396388447761503041", - "30683304915500636749180789" + "52817007696765336273589229", + "9403993047854333147408869", + "42599550708907279516277929" ], "fpReserves": [ - "14891090433954294569013530", - "7919129404057434845508175" + "5460702804973806226002767", + "4899533772887509028865665" ], - "mAssetSupply": "113939670744254044256638195", - "LPTokenSupply": "22662293108837394088031328" + "mAssetSupply": "104530399189870481072144084", + "LPTokenSupply": "10230758123623587911719409" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "21619941960935693877248", + "outputQty0": "21496689252734328755837", + "outputQty": "21220654372108466706058", + "mpReserves": [ + "52817007696765336273589229", + "9403993047854333147408869", + "42621170650868215210155177" + ], + "fpReserves": [ + "5482199494226540554758604", + "4899533772887509028865665" + ], + "mAssetSupply": "104551895879123215400899921", + "LPTokenSupply": "10251978777995696378425467" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "952628873524949680128", - "outputQty0": "959911532461269210565", - "outputQty": "958816111674877422434", - "swapFee1": "571577324114969808", - "swapFee2": "383964612984507684", + "inputQty": "1429651400437183033638912", + "outputQty0": "1446691409012913925089811", + "outputQty": "1453871428009634241881995", + "swapFee1": "857790840262309820183", + "swapFee2": "868014845407748355053", "mpReserves": [ - "55091796161841952729363619", - "28183552396388447761503041", - "30682346099388961871758355" + "52817007696765336273589229", + "9403993047854333147408869", + "41167299222858580968273182" ], "fpReserves": [ - "14890130522421833299802965", - "7919129404057434845508175" + "4035508085213626629668793", + "4899533772887509028865665" ], - "mAssetSupply": "113938711216686195971935314", - "LPTokenSupply": "22661340537121601549848180" + "mAssetSupply": "103106072484955709224165163", + "LPTokenSupply": "8822413156642539575768573" }, { - "type": "swap_fp_to_mp", - "inputQty": "39312584926725365760", - "outputIndex": 0, - "outputQty": "39543987345304917520", - "swapFee": "0", - "redemptionFee": "15802533185887425", + "type": "mint", + "inputIndex": 1, + "inputQty": "6566807857769247408128", + "outputQty0": "6831961277532855677188", + "outputQty": "6750648025195489806423", "mpReserves": [ - "55091756617854607424446099", - "28183552396388447761503041", - "30682346099388961871758355" + "52817007696765336273589229", + "9410559855712102394816997", + "41167299222858580968273182" ], "fpReserves": [ - "14890091016088868581238760", - "7919168716642361570873935" + "4042340046491159485345981", + "4899533772887509028865665" ], - "mAssetSupply": "113938671726155764439258534", - "LPTokenSupply": "22661340537121601549848180" + "mAssetSupply": "103112904446233242079842351", + "LPTokenSupply": "8829163804667735065574996" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "22688082246026257235968", - "outputQty0": "22861462623989000213918", - "outputQty": "22883240670102754600116", - "swapFee1": "13612849347615754341", - "swapFee2": "9144585049595600085", + "type": "swap_fp_to_mp", + "inputQty": "237435501287771373568", + "outputIndex": 2, + "outputQty": "238263676260001623254", + "swapFee": "0", + "redemptionFee": "142277140332826543", "mpReserves": [ - "55068873377184504669845983", - "28183552396388447761503041", - "30682346099388961871758355" + "52817007696765336273589229", + "9410559855712102394816997", + "41167060959182320966649928" ], "fpReserves": [ - "14867229553464879581024842", - "7919168716642361570873935" + "4042102917923938107772790", + "4899771208388796800239233" ], - "mAssetSupply": "113915819408116825034644701", - "LPTokenSupply": "22638653816160510054187646" + "mAssetSupply": "103112667459943161035095703", + "LPTokenSupply": "8829163804667735065574996" }, { "type": "mint", "inputIndex": 2, - "inputQty": "20040598350044893184", - "outputQty0": "20055452169110930194", - "outputQty": "19891454263877259489", + "inputQty": "140222833587023779987456", + "outputQty0": "139468758697313957177169", + "outputQty": "137799601240082393477554", "mpReserves": [ - "55068873377184504669845983", - "28183552396388447761503041", - "30682366139987311916651539" + "52817007696765336273589229", + "9410559855712102394816997", + "41307283792769344746637384" ], "fpReserves": [ - "14867249608917048691955036", - "7919168716642361570873935" + "4181571676621252064949959", + "4899771208388796800239233" ], - "mAssetSupply": "113915839463568994145574895", - "LPTokenSupply": "22638673707614773931447135" + "mAssetSupply": "103252136218640474992272872", + "LPTokenSupply": "8966963405907817459052550" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "26446416101108390821888", - "outputQty0": "26410676387545144819802", - "outputQty": "26194627224747902113595", + "type": "swap_fp_to_mp", + "inputQty": "22667580388301600718848", + "outputIndex": 2, + "outputQty": "22751854951838612955101", + "swapFee": "0", + "redemptionFee": "13585664516876935196", "mpReserves": [ - "55095319793285613060667871", - "28183552396388447761503041", - "30682366139987311916651539" + "52817007696765336273589229", + "9410559855712102394816997", + "41284531937817506133682283" ], "fpReserves": [ - "14893660285304593836774838", - "7919168716642361570873935" + "4158928902426457172955596", + "4922438788777098400958081" ], - "mAssetSupply": "113942250139956539290394697", - "LPTokenSupply": "22664868334839521833560730" + "mAssetSupply": "103229507030110196977213705", + "LPTokenSupply": "8966963405907817459052550" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "45686388806414982184960", - "outputQty0": "45624574572318102987668", - "outputQty": "45362333031607664214877", - "swapFee": "36200765788320257175", + "type": "swap_fp_to_mp", + "inputQty": "262945328620573088", + "outputIndex": 1, + "outputQty": "252289117269837741", + "swapFee": "0", + "redemptionFee": "157589124077201", "mpReserves": [ - "55141006182092028042852831", - "28183552396388447761503041", - "30682366139987311916651539" + "52817007696765336273589229", + "9410559603422985124979256", + "41284531937817506133682283" ], "fpReserves": [ - "14939284859876911939762506", - "7873806383610753906659058" + "4158928639777917044287170", + "4922439051722427021531169" ], - "mAssetSupply": "113987874714528857393382365", - "LPTokenSupply": "22664871954916100665586447" + "mAssetSupply": "103229506767619245972622480", + "LPTokenSupply": "8966963405907817459052550" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "8956577220311299129344", - "outputQty0": "9025348117848778075106", - "outputQty": "9011249460861493705073", - "swapFee1": "5373946332186779477", - "swapFee2": "3610139247139511230", + "inputQty": "322212128547957911846912", + "outputQty0": "325877787305922066263158", + "outputQty": "312611376319520099463789", + "swapFee1": "193327277128774747108", + "swapFee2": "195526672383553239757", "mpReserves": [ - "55141006182092028042852831", - "28174541146927586267797968", - "30682366139987311916651539" + "52817007696765336273589229", + "9097948227103465025515467", + "41284531937817506133682283" ], "fpReserves": [ - "14930259511759063161687400", - "7873806383610753906659058" + "3833050852471994978024012", + "4922439051722427021531169" ], - "mAssetSupply": "113978852976550255754818489", - "LPTokenSupply": "22655915915090422585135050" + "mAssetSupply": "102903824506985707459599079", + "LPTokenSupply": "8644770610087572424680348" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "311824652234167746560", + "outputQty0": "315327482754183759794", + "outputQty": "302078104839267440571", + "swapFee1": "187094791340500647", + "swapFee2": "189196489652510255", + "mpReserves": [ + "52817007696765336273589229", + "9097646148998625758074896", + "41284531937817506133682283" + ], + "fpReserves": [ + "3832735524989240794264218", + "4922439051722427021531169" + ], + "mAssetSupply": "102903509368699442928349540", + "LPTokenSupply": "8644458804144817390983852" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "142622304441276928360448", - "outputQty0": "142428676412402213539312", - "outputQty": "141583943574852646287300", - "swapFee": "113005043096803015136", + "inputQty": "709058632302119679426560", + "outputQty0": "702875431631150600289431", + "outputQty": "702731138316324063631920", + "swapFee": "555537409857247401141", "mpReserves": [ - "55283628486533304971213279", - "28174541146927586267797968", - "30682366139987311916651539" + "53526066329067455953015789", + "9097646148998625758074896", + "41284531937817506133682283" ], "fpReserves": [ - "15072688188171465375226712", - "7732222440035901260371758" + "4535610956620391394553649", + "4219707913406102957899249" ], - "mAssetSupply": "114121281652962657968357801", - "LPTokenSupply": "22655927215594732265436563" + "mAssetSupply": "103606384800330593528638971", + "LPTokenSupply": "8644514357885803115723966" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "10745242863675146240", - "outputQty0": "10828871786648843362", - "outputQty": "10811878846162019467", - "swapFee1": "6447145718205087", - "swapFee2": "4331548714659537", + "type": "mint", + "inputIndex": 0, + "inputQty": "26192924465212428288", + "outputQty0": "25962547010075427612", + "outputQty": "25628053563802526206", "mpReserves": [ - "55283628486533304971213279", - "28174530335048740105778501", - "30682366139987311916651539" + "53526092521991921165444077", + "9097646148998625758074896", + "41284531937817506133682283" ], "fpReserves": [ - "15072677359299678726383350", - "7732222440035901260371758" + "4535636919167401469981261", + "4219707913406102957899249" ], - "mAssetSupply": "114121270828422420034173976", - "LPTokenSupply": "22655916470996583162110831" + "mAssetSupply": "103606410762877603604066583", + "LPTokenSupply": "8644539985939366918250172" }, { - "type": "swap_fp_to_mp", - "inputQty": "13056779808712761344", - "outputIndex": 2, - "outputQty": "13111030452561179756", - "swapFee": "0", - "redemptionFee": "5250440648747438", + "type": "mint", + "inputIndex": 0, + "inputQty": "281274332836937424961536", + "outputQty0": "278792027383008491885021", + "outputQty": "275173680516700772541257", "mpReserves": [ - "55283628486533304971213279", - "28174530335048740105778501", - "30682353028956859355471783" + "53807366854828858590405613", + "9097646148998625758074896", + "41284531937817506133682283" ], "fpReserves": [ - "15072664233198056857787452", - "7732235496815709973133102" + "4814428946550409961866282", + "4219707913406102957899249" ], - "mAssetSupply": "114121257707571238814325516", - "LPTokenSupply": "22655916470996583162110831" + "mAssetSupply": "103885202790260612095951604", + "LPTokenSupply": "8919713666456067690791429" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "13192846812673046528", - "outputQty0": "13295524980604183612", - "outputQty": "13280259262862371774", - "swapFee1": "7915708087603827", - "swapFee2": "5318209992241673", + "outputIndex": 0, + "inputQty": "51059933010853265408", + "outputQty0": "51705146731279506883", + "outputQty": "52135786476844510112", + "swapFee1": "30635959806511959", + "swapFee2": "31023088038767704", "mpReserves": [ - "55283628486533304971213279", - "28174530335048740105778501", - "30682339748697596493100009" + "53807314719042381745895501", + "9097646148998625758074896", + "41284531937817506133682283" ], "fpReserves": [ - "15072650937673076253603840", - "7732235496815709973133102" + "4814377241403678682359399", + "4219707913406102957899249" ], - "mAssetSupply": "114121244417364468202383577", - "LPTokenSupply": "22655903278941341297824685" + "mAssetSupply": "103885151116136968855212425", + "LPTokenSupply": "8919662609586652818177216" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10497719869412873338880", - "outputQty0": "10510005727566539220057", - "outputQty": "10422568882893732933114", + "type": "redeem", + "outputIndex": 2, + "inputQty": "594560114150122421485568", + "outputQty0": "601947377081362072624256", + "outputQty": "604915930287560645887843", + "swapFee1": "356736068490073452891", + "swapFee2": "361168426248817243574", "mpReserves": [ - "55283628486533304971213279", - "28185028054918152979117381", - "30682339748697596493100009" + "53807314719042381745895501", + "9097646148998625758074896", + "40679616007529945487794440" ], "fpReserves": [ - "15083160943400642792823897", - "7732235496815709973133102" + "4212429864322316609735143", + "4219707913406102957899249" ], - "mAssetSupply": "114131754423092034741603634", - "LPTokenSupply": "22666325847824235030757799" + "mAssetSupply": "103283564907481855599831743", + "LPTokenSupply": "8325138169043379404036937" }, { - "type": "swap_fp_to_mp", - "inputQty": "173844271751554316369920", - "outputIndex": 0, - "outputQty": "174904461700146078526884", - "swapFee": "0", - "redemptionFee": "69894844352550071777", + "type": "mint", + "inputIndex": 1, + "inputQty": "111205205674084406394880", + "outputQty0": "116013038291354489143149", + "outputQty": "114536389164856036036064", "mpReserves": [ - "55108724024833158892686395", - "28185028054918152979117381", - "30682339748697596493100009" + "53807314719042381745895501", + "9208851354672710164469776", + "40679616007529945487794440" ], "fpReserves": [ - "14908423832519267613379242", - "7906079768567264289503022" + "4328442902613671098878292", + "4219707913406102957899249" ], - "mAssetSupply": "113957087207055012112230756", - "LPTokenSupply": "22666325847824235030757799" + "mAssetSupply": "103399577945773210088974892", + "LPTokenSupply": "8439674558208235440073001" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "37112476217802776576", - "outputQty0": "37396825086397904030", - "outputQty": "37354120180276344070", - "swapFee1": "22267485730681665", - "swapFee2": "14958730034559161", + "outputIndex": 1, + "inputQty": "1108631743360106627072", + "outputQty0": "1122300300025273778237", + "outputQty": "1075671697901025904069", + "swapFee1": "665179046016063976", + "swapFee2": "673380180015164266", "mpReserves": [ - "55108724024833158892686395", - "28185028054918152979117381", - "30682302394577416216755939" + "53807314719042381745895501", + "9207775682974809138565707", + "40679616007529945487794440" ], "fpReserves": [ - "14908386435694181215475212", - "7906079768567264289503022" + "4327320602313645825100055", + "4219707913406102957899249" ], - "mAssetSupply": "113957049825188655748885887", - "LPTokenSupply": "22666288737574765801049389" + "mAssetSupply": "103398456318853364830360921", + "LPTokenSupply": "8438565992982779935052326" }, { - "type": "swap_fp_to_mp", - "inputQty": "2321706965753475072", + "type": "redeem", "outputIndex": 0, - "outputQty": "2335443791049018567", - "swapFee": "0", - "redemptionFee": "933287332260127", + "inputQty": "45889060705037304463360", + "outputQty0": "46454000069968204737500", + "outputQty": "46836960169757486777422", + "swapFee1": "27533436423022382678", + "swapFee2": "27872400041980922842", "mpReserves": [ - "55108721689389367843667828", - "28185028054918152979117381", - "30682302394577416216755939" + "53760477758872624259118079", + "9207775682974809138565707", + "40679616007529945487794440" ], "fpReserves": [ - "14908384102475850565155657", - "7906082090274230042978094" + "4280866602243677620362555", + "4219707913406102957899249" ], - "mAssetSupply": "113957047492903612430826459", - "LPTokenSupply": "22666288737574765801049389" + "mAssetSupply": "103352030191183438606546263", + "LPTokenSupply": "8392679685621384932827233" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "212953586852224761856", - "outputQty0": "212665560652991047756", - "outputQty": "211446998446676746778", - "swapFee": "168737530122730111", + "inputQty": "1285179181273254335610880", + "outputQty0": "1273738425096362456655999", + "outputQty": "1269808373148750813041600", + "swapFee": "1005572558211472093195", + "mpReserves": [ + "55045656940145878594728959", + "9207775682974809138565707", + "40679616007529945487794440" + ], + "fpReserves": [ + "5554605027340040077018554", + "2949899540257352144857649" + ], + "mAssetSupply": "104625768616279801063202262", + "LPTokenSupply": "8392780242877206080036552" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "62227999382822019137536", + "outputQty0": "63125310719725530429618", + "outputQty": "63421623464789665696214", + "swapFee1": "37336799629693211482", + "swapFee2": "37875186431835318257", "mpReserves": [ - "55108934642976220068429684", - "28185028054918152979117381", - "30682302394577416216755939" + "55045656940145878594728959", + "9207775682974809138565707", + "40616194384065155822098226" ], "fpReserves": [ - "14908596768036503556203413", - "7905870643275783366231316" + "5491479716620314546588936", + "2949899540257352144857649" ], - "mAssetSupply": "113957260158464265421874215", - "LPTokenSupply": "22666288754448518813322400" + "mAssetSupply": "104562681180746507368090901", + "LPTokenSupply": "8330555977174347030220164" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "4942588590362274816", - "outputQty0": "4980458518075484231", - "outputQty": "4972689815754518545", - "swapFee1": "2965553154217364", - "swapFee2": "1992183407230193", + "inputQty": "168142707856400327901184", + "outputQty0": "170555032764923531622411", + "outputQty": "163158555481441302753861", + "swapFee1": "100885624713840196740", + "swapFee2": "102333019658954118973", "mpReserves": [ - "55108934642976220068429684", - "28185023082228337224598836", - "30682302394577416216755939" + "55045656940145878594728959", + "9044617127493367835811846", + "40616194384065155822098226" ], "fpReserves": [ - "14908591787577985480719182", - "7905870643275783366231316" + "5320924683855391014966525", + "2949899540257352144857649" ], - "mAssetSupply": "113957255179997930753620177", - "LPTokenSupply": "22666283812156483766469320" + "mAssetSupply": "104392228481001242790587463", + "LPTokenSupply": "8162423357880418086338654" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "762535704988812050432", - "outputQty0": "763421463831712826746", - "outputQty": "759046366323222931973", - "swapFee": "605729595711807461", + "inputIndex": 0, + "inputQty": "89607815188827588263936", + "outputQty0": "88781689067151444919271", + "outputQty": "88291748209650202321501", + "swapFee": "69979844303306571758", "mpReserves": [ - "55108934642976220068429684", - "28185785617933326036649268", - "30682302394577416216755939" + "55135264755334706182992895", + "9044617127493367835811846", + "40616194384065155822098226" ], "fpReserves": [ - "14909355209041817193545928", - "7905111596909460143299343" + "5409706372922542459885796", + "2861607792047701942536148" ], - "mAssetSupply": "113958018601461762466446923", - "LPTokenSupply": "22666283872729443337650066" + "mAssetSupply": "104481010170068394235506734", + "LPTokenSupply": "8162430355864848416995829" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "316441659201859026944", - "outputQty0": "318866386763236616444", - "outputQty": "318502241046570129857", - "swapFee1": "189864995521115416", - "swapFee2": "127546554705294646", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "268797978570964829470720", + "outputQty0": "266309517034580839252316", + "outputQty": "264567005381273754039751", + "swapFee": "209862710160987800621", "mpReserves": [ - "55108934642976220068429684", - "28185785617933326036649268", - "30681983892336369646626082" + "55404062733905671012463615", + "9044617127493367835811846", + "40616194384065155822098226" ], "fpReserves": [ - "14909036342655053956929484", - "7905111596909460143299343" + "5676015889957123299138112", + "2597040786666428188496397" ], - "mAssetSupply": "113957699862621553935125125", - "LPTokenSupply": "22665967450056741030734663" + "mAssetSupply": "104747319687102975074759050", + "LPTokenSupply": "8162451342135864515775891" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "2220109857855852773376", - "outputQty0": "2237120732780762182084", - "outputQty": "2239254393017970740697", - "swapFee1": "1332065914713511664", - "swapFee2": "894848293112304872", + "outputIndex": 1, + "inputQty": "33393080871661554630656", + "outputQty0": "33895426359930224905642", + "outputQty": "32383997670256381785766", + "swapFee1": "20035848522996932778", + "swapFee2": "20337255815958134943", "mpReserves": [ - "55106695388583202097688987", - "28185785617933326036649268", - "30681983892336369646626082" + "55404062733905671012463615", + "9012233129823111454026080", + "40616194384065155822098226" ], "fpReserves": [ - "14906799221922273194747400", - "7905111596909460143299343" + "5642120463597193074232470", + "2597040786666428188496397" ], - "mAssetSupply": "113955463636737066285247913", - "LPTokenSupply": "22663747473405476649312453" + "mAssetSupply": "104713444597998860807988351", + "LPTokenSupply": "8129060264849055260838512" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "502980532916542046208", - "outputQty0": "502300289901157129890", - "outputQty": "498181830399943861539", + "inputQty": "113924038550170093223936", + "outputQty0": "112860766097137213823952", + "outputQty": "111988733804548696619455", + "swapFee": "88894483483726247252", "mpReserves": [ - "55107198369116118639735195", - "28185785617933326036649268", - "30681983892336369646626082" + "55517986772455841105687551", + "9012233129823111454026080", + "40616194384065155822098226" ], "fpReserves": [ - "14907301522212174351877290", - "7905111596909460143299343" + "5754981229694330288056422", + "2485052052861879491876942" ], - "mAssetSupply": "113955965937026967442377803", - "LPTokenSupply": "22664245655235876593173992" + "mAssetSupply": "104826305364095998021812303", + "LPTokenSupply": "8129069154297403633463237" }, { - "type": "swap_fp_to_mp", - "inputQty": "1756002853049298688", - "outputIndex": 2, - "outputQty": "1762695063933321437", - "swapFee": "0", - "redemptionFee": "705884111324548", + "type": "mint", + "inputIndex": 2, + "inputQty": "1067239694882769792", + "outputQty0": "1061490479661245053", + "outputQty": "1044861795501630742", "mpReserves": [ - "55107198369116118639735195", - "28185785617933326036649268", - "30681982129641305713304645" + "55517986772455841105687551", + "9012233129823111454026080", + "40616195451304850704868018" ], "fpReserves": [ - "14907299757501896040507215", - "7905113352912313192598031" + "5754982291184809949301475", + "2485052052861879491876942" ], - "mAssetSupply": "113955964173022573242332276", - "LPTokenSupply": "22664245655235876593173992" + "mAssetSupply": "104826306425586477683057356", + "LPTokenSupply": "8129070199159199135093979" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "101662638851810253602816", - "outputQty0": "101524915892355092320058", - "outputQty": "100932864052966584532037", - "swapFee": "80553007842115673359", + "inputIndex": 1, + "inputQty": "1191099123982420934656", + "outputQty0": "1246274489975725128098", + "outputQty": "1236115026038236641302", + "swapFee": "981400431447433920", "mpReserves": [ - "55208861007967928893338011", - "28185785617933326036649268", - "30681982129641305713304645" + "55517986772455841105687551", + "9013424228947093874960736", + "40616195451304850704868018" ], "fpReserves": [ - "15008824673394251132827273", - "7804180488859346608065994" + "5756228565674785674429573", + "2483815937835841255235640" ], - "mAssetSupply": "114057489088914928334652334", - "LPTokenSupply": "22664253710536660804741327" + "mAssetSupply": "104827552700076453408185454", + "LPTokenSupply": "8129070297299242279837371" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "17318940096075170578432", - "outputQty0": "17339114651178528073183", - "outputQty": "17235918633195675751553", - "swapFee": "13756510971193553338", + "inputQty": "1763660253673217851392", + "outputQty0": "1845331950947515196945", + "outputQty": "1830266930156543610625", + "swapFee": "1453133846345912577", "mpReserves": [ - "55208861007967928893338011", - "28203104558029401207227700", - "30681982129641305713304645" + "55517986772455841105687551", + "9015187889200767092812128", + "40616195451304850704868018" ], "fpReserves": [ - "15026163788045429660900456", - "7786944570226150932314441" + "5758073897625733189626518", + "2481985670905684711625015" ], - "mAssetSupply": "114074828203566106862725517", - "LPTokenSupply": "22664255086187757924096660" + "mAssetSupply": "104829398032027400923382399", + "LPTokenSupply": "8129070442612626914428628" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "10410771894765820575744", - "outputQty0": "10491436702483147324168", - "outputQty": "10475042866164605709902", - "swapFee1": "6246463136859492345", - "swapFee2": "4196574680993258929", + "outputIndex": 0, + "inputQty": "575323136160552487747584", + "outputQty0": "584009414515178443967201", + "outputQty": "589125495184755220193049", + "swapFee1": "345193881696331492648", + "swapFee2": "350405648709107066380", "mpReserves": [ - "55208861007967928893338011", - "28192629515163236601517798", - "30681982129641305713304645" + "54928861277271085885494502", + "9015187889200767092812128", + "40616195451304850704868018" ], "fpReserves": [ - "15015672351342946513576288", - "7786944570226150932314441" + "5174064483110554745659317", + "2481985670905684711625015" ], - "mAssetSupply": "114064340963438304708660278", - "LPTokenSupply": "22653844938939305789470150" + "mAssetSupply": "104245739023160931586481578", + "LPTokenSupply": "7553781825840244059830308" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "1563114150350975488", - "outputQty0": "1560993529493583933", - "outputQty": "1548063807570590587", + "inputQty": "638255817891958144", + "outputQty0": "632373823686556203", + "outputQty": "628057101014472740", + "swapFee": "498161432401204", "mpReserves": [ - "55208862571082079244313499", - "28192629515163236601517798", - "30681982129641305713304645" + "54928861915526903777452646", + "9015187889200767092812128", + "40616195451304850704868018" ], "fpReserves": [ - "15015673912336476007160221", - "7786944570226150932314441" + "5174065115484378432215520", + "2481985042848583697152275" ], - "mAssetSupply": "114064342524431834202244211", - "LPTokenSupply": "22653846487003113360060737" + "mAssetSupply": "104245739655534755273037781", + "LPTokenSupply": "7553781825890060203070428" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "55585649611770282639360", - "outputQty0": "56015901879436721957232", - "outputQty": "55951525503841444930334", - "swapFee1": "33351389767062169583", - "swapFee2": "22406360751774688782", + "outputIndex": 1, + "inputQty": "381977225466985119744", + "outputQty0": "387677434996330534747", + "outputQty": "370521102083947220034", + "swapFee1": "229186335280191071", + "swapFee2": "232606460997798320", + "mpReserves": [ + "54928861915526903777452646", + "9014817368098683145592094", + "40616195451304850704868018" + ], + "fpReserves": [ + "5173677438049382101680773", + "2481985042848583697152275" + ], + "mAssetSupply": "104245352210706219940301354", + "LPTokenSupply": "7553399871583226745969791" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "702609527768278309535744", + "outputQty0": "732406186604514965612973", + "outputQty": "724900115865534040831798", + "swapFee": "576809333415752057786", + "mpReserves": [ + "54928861915526903777452646", + "9717426895866961455127838", + "40616195451304850704868018" + ], + "fpReserves": [ + "5906083624653897067293746", + "1757084926983049656320477" + ], + "mAssetSupply": "104977758397310734905914327", + "LPTokenSupply": "7553457552516568321175569" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "330582948985810444091392", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "823202743647925567488", + "outputQty0": "837402454501108823489", + "outputQty": "805195709700896105727", + "swapFee1": "493921646188755340", + "swapFee2": "502441472700665294", "mpReserves": [ - "55208862571082079244313499", - "28192629515163236601517798", - "30626030604137464268374311" + "54928861915526903777452646", + "9716621700157260559022111", + "40616195451304850704868018" ], "fpReserves": [ - "14959658010457039285202989", - "7786944570226150932314441" + "5905246222199395958470257", + "1757084926983049656320477" ], - "mAssetSupply": "114008349028913149254975761", - "LPTokenSupply": "22598264172530319783638335" + "mAssetSupply": "104976921497297706497756132", + "LPTokenSupply": "7552634399165085014483615" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "1498704682312394080256", - "outputQty0": "1510296666608826952963", - "outputQty": "1508556155602815879462", - "swapFee1": "899222809387436448", - "swapFee2": "604118666643530781", + "inputQty": "1259236392982311862272", + "outputQty0": "1280956172102323603427", + "outputQty": "1286490222901692636303", + "swapFee1": "755541835789387117", + "swapFee2": "768573703261394162", "mpReserves": [ - "55208862571082079244313499", - "28192629515163236601517798", - "30624522047981861452494849" + "54928861915526903777452646", + "9716621700157260559022111", + "40614908961081949012231715" ], "fpReserves": [ - "14958147713790430458250026", - "7786944570226150932314441" + "5903965266027293634866830", + "1757084926983049656320477" ], - "mAssetSupply": "114006839336365207071553579", - "LPTokenSupply": "22596765557770288328301723" + "mAssetSupply": "104975641309699307435546867", + "LPTokenSupply": "7551375238326286281560054" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1195477214362504192", - "outputQty0": "1196377864965545326", - "outputQty": "1189293337210750095", - "swapFee": "949186527775707", + "inputQty": "589081306374309760", + "outputQty0": "586195437909246210", + "outputQty": "577450735231639682", + "swapFee": "460728407098126", "mpReserves": [ - "55208862571082079244313499", - "28192629515163236601517798", - "30624523243459075814999041" + "54928861915526903777452646", + "9716621700157260559022111", + "40614909550163255386541475" ], "fpReserves": [ - "14958148910168295423795352", - "7786943380932813721564346" + "5903965852222731544113040", + "1757084349532314424680795" ], - "mAssetSupply": "114006840532743072037098905", - "LPTokenSupply": "22596765557865206981079293" + "mAssetSupply": "104975641895894745344793077", + "LPTokenSupply": "7551375238372359122269866" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "165823084357820448", - "outputQty0": "167105646551456837", - "outputQty": "166844838058351861", - "swapFee1": "99493850614692", - "swapFee2": "66842258620582", + "outputIndex": 2, + "inputQty": "109673267168711180025856", + "outputQty0": "111558912530997789718989", + "outputQty": "112039345343006218389546", + "swapFee1": "65803960301226708015", + "swapFee2": "66935347518598673831", "mpReserves": [ - "55208862571082079244313499", - "28192629348318398543165937", - "30624523243459075814999041" + "54928861915526903777452646", + "9716621700157260559022111", + "40502870204820249168151929" ], "fpReserves": [ - "14958148743062648872338515", - "7786943380932813721564346" + "5792406939691733754394051", + "1757084349532314424680795" ], - "mAssetSupply": "114006840365704267744262650", - "LPTokenSupply": "22596765392052072008320314" + "mAssetSupply": "104864149918711266153747919", + "LPTokenSupply": "7441708551599678064914811" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "45896243319357619306496", - "outputQty0": "45930703935412018450416", - "outputQty": "45656556646756493451881", - "swapFee": "36440462669423783308", + "inputQty": "10250711718558913527808", + "outputQty0": "10200757065859933829579", + "outputQty": "10022728597183925766264", "mpReserves": [ - "55208862571082079244313499", - "28192629348318398543165937", - "30670419486778433434305537" + "54928861915526903777452646", + "9716621700157260559022111", + "40513120916538808081679737" ], "fpReserves": [ - "15004079446998060890788931", - "7741286824286057228112465" + "5802607696757593688223630", + "1757084349532314424680795" ], - "mAssetSupply": "114052771069639679762713066", - "LPTokenSupply": "22596769036098338950698644" + "mAssetSupply": "104874350675777126087577498", + "LPTokenSupply": "7451731280196861990681075" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2303294629674570496", + "outputQty0": "2393830265708706008", + "outputQty": "2359104565285531369", + "swapFee": "1881632363181673", + "mpReserves": [ + "54928861915526903777452646", + "9716624003451890233592607", + "40513120916538808081679737" + ], + "fpReserves": [ + "5802610090587859396929638", + "1757081990427749139149426" + ], + "mAssetSupply": "104874353069607391796283506", + "LPTokenSupply": "7451731280385025226999242" }, { "type": "swap_fp_to_mp", - "inputQty": "21743046938722069118976", + "inputQty": "110023192222764679168", "outputIndex": 2, - "outputQty": "21831543093724405081209", + "outputQty": "112032468946407048425", "swapFee": "0", - "redemptionFee": "8742659434857476401", + "redemptionFee": "66931979041284034", "mpReserves": [ - "55208862571082079244313499", - "28192629348318398543165937", - "30648587943684709029224328" + "54928861915526903777452646", + "9716624003451890233592607", + "40513008884069861674631312" ], "fpReserves": [ - "14982222798410917199785114", - "7763029871224779297231441" + "5802498537289457256872335", + "1757192013619971903828594" ], - "mAssetSupply": "114030923163711970929185650", - "LPTokenSupply": "22596769036098338950698644" + "mAssetSupply": "104874241583240968697510237", + "LPTokenSupply": "7451731280385025226999242" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "108820400351653392", - "outputQty0": "108672627579872095", - "outputQty": "108023753609648085", - "swapFee": "86217485435125", + "inputQty": "11462521176655154", + "outputQty0": "11364712385220130", + "outputQty": "11199873626261233", + "swapFee": "8933056160912", "mpReserves": [ - "55208862679902479595966891", - "28192629348318398543165937", - "30648587943684709029224328" + "54928861926989424954107800", + "9716624003451890233592607", + "40513008884069861674631312" ], "fpReserves": [ - "14982222907083544779657209", - "7763029763201025687583356" + "5802498548654169642092465", + "1757192002420098277567361" ], - "mAssetSupply": "114030923272384598509057745", - "LPTokenSupply": "22596769036106960699242156" + "mAssetSupply": "104874241594605681082730367", + "LPTokenSupply": "7451731280385918532615333" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1236586505373286924288", - "outputQty0": "1246173710030099555819", - "outputQty": "1247369071877618628220", - "swapFee1": "741951903223972154", - "swapFee2": "498469484012039822", + "type": "mint", + "inputIndex": 1, + "inputQty": "42947637399597793280", + "outputQty0": "44635769719800778822", + "outputQty": "43856568428448876997", "mpReserves": [ - "55207615310830601977338671", - "28192629348318398543165937", - "30648587943684709029224328" + "54928861926989424954107800", + "9716666951089289831385887", + "40513008884069861674631312" ], "fpReserves": [ - "14980976733373514680101390", - "7763029763201025687583356" + "5802543184423889442871287", + "1757192002420098277567361" ], - "mAssetSupply": "114029677597144052421541748", - "LPTokenSupply": "22595532523796777734715083" + "mAssetSupply": "104874286230375400883509189", + "LPTokenSupply": "7451775136954346981492330" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "5458631117209984827392", - "outputQty0": "5500947322357499270868", - "outputQty": "5506223140651960242887", - "swapFee1": "3275178670325990896", - "swapFee2": "2200378928942999708", + "type": "mint", + "inputIndex": 1, + "inputQty": "7889896451199503171584", + "outputQty0": "8199771878052199249582", + "outputQty": "8056597488792142323879", "mpReserves": [ - "55202109087689950017095784", - "28192629348318398543165937", - "30648587943684709029224328" + "54928861926989424954107800", + "9724556847540489334557471", + "40513008884069861674631312" ], "fpReserves": [ - "14975475786051157180830522", - "7763029763201025687583356" + "5810742956301941642120869", + "1757192002420098277567361" ], - "mAssetSupply": "114024178850200623865270588", - "LPTokenSupply": "22590074220197434782486780" + "mAssetSupply": "104882486002253453082758771", + "LPTokenSupply": "7459831734443139123816209" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1116164433835509547008", - "outputQty0": "1124816366709344445135", - "outputQty": "1125894982388032104519", - "swapFee1": "669698660301305728", - "swapFee2": "449926546683737778", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "39501323303843048456192", + "outputQty0": "39308802349160108150082", + "outputQty": "38723767522055876943498", + "swapFee": "30897246125843147730", "mpReserves": [ - "55200983192707561984991265", - "28192629348318398543165937", - "30648587943684709029224328" + "54928861926989424954107800", + "9724556847540489334557471", + "40552510207373704723087504" ], "fpReserves": [ - "14974350969684447836385387", - "7763029763201025687583356" + "5850051758651101750270951", + "1718468234898042400623863" ], - "mAssetSupply": "114023054483760461204563231", - "LPTokenSupply": "22588958122733465303070344" + "mAssetSupply": "104921794804602613190908853", + "LPTokenSupply": "7459834824167751708130982" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "153439458870336547717120", - "outputQty0": "153230623784326838071072", - "outputQty": "152292048336491769450546", - "swapFee": "121566367629211564577", + "type": "redeem", + "outputIndex": 2, + "inputQty": "361945147965818863091712", + "outputQty0": "368153010360062957967818", + "outputQty": "369719361224925759996339", + "swapFee1": "217167088779491317855", + "swapFee2": "220891806216037774780", "mpReserves": [ - "55354422651577898532708385", - "28192629348318398543165937", - "30648587943684709029224328" + "54928861926989424954107800", + "9724556847540489334557471", + "40182790846148778963091165" ], "fpReserves": [ - "15127581593468774674456459", - "7610737714864533918132810" + "5481898748291038792303133", + "1718468234898042400623863" ], - "mAssetSupply": "114176285107544788042634303", - "LPTokenSupply": "22588970279370228224226801" + "mAssetSupply": "104553862686048766270715815", + "LPTokenSupply": "7097911392910810794171055" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "46217148900910112440320", - "outputQty0": "46580479050083966533599", - "outputQty": "46507270728498575233235", - "swapFee1": "27730289340546067464", - "swapFee2": "18632191620033586613", + "outputIndex": 0, + "inputQty": "339906597827296521879552", + "outputQty0": "345624207943971556550289", + "outputQty": "348381181319931569164417", + "swapFee1": "203943958696377913127", + "swapFee2": "207374524766382933930", "mpReserves": [ - "55354422651577898532708385", - "28146122077589899967932702", - "30648587943684709029224328" + "54580480745669493384943383", + "9724556847540489334557471", + "40182790846148778963091165" ], "fpReserves": [ - "15081001114418690707922860", - "7610737714864533918132810" + "5136274540347067235752844", + "1718468234898042400623863" ], - "mAssetSupply": "114129723260686324109687317", - "LPTokenSupply": "22542755903498252166393227" + "mAssetSupply": "104208445852629561097099456", + "LPTokenSupply": "6758025189479383910082815" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "45811575295333752832", - "outputQty0": "46171504506793234650", - "outputQty": "46216193942849170816", - "swapFee1": "27486945177200251", - "swapFee2": "18468601802717293", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "619491484473288871116800", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "28826852411717078482944", + "outputQty0": "28688120940189156873445", + "outputQty": "28200273963035577257832", "mpReserves": [ - "55354376435383955683537569", - "28146122077589899967932702", - "30648587943684709029224328" + "54580480745669493384943383", + "9724556847540489334557471", + "40211617698560496041574109" ], "fpReserves": [ - "15080954942914183914688210", - "7610737714864533918132810" + "5164962661287256392626289", + "1718468234898042400623863" ], - "mAssetSupply": "114129677107650419119169960", - "LPTokenSupply": "22542710094671651350360420" + "mAssetSupply": "104237133973569750253972901", + "LPTokenSupply": "6786225463442419487340647" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "31521787789640917319680", - "outputQty0": "31769322145145254925966", - "outputQty": "31719219665000847760232", - "swapFee1": "18913072673784550391", - "swapFee2": "12707728858058101970", + "inputQty": "114553558978320352149504", + "outputQty0": "116460258463385827194357", + "outputQty": "112003391429380510641953", + "swapFee1": "68732135386992211289", + "swapFee2": "69876155078031496316", "mpReserves": [ - "55354376435383955683537569", - "28114402857924899120172470", - "30648587943684709029224328" + "54580480745669493384943383", + "9612553456111108823915518", + "40211617698560496041574109" ], "fpReserves": [ - "15049185620769038659762244", - "7610737714864533918132810" + "5048502402823870565431932", + "1718468234898042400623863" ], - "mAssetSupply": "114097920493234131922345964", - "LPTokenSupply": "22511190198189277811495779" + "mAssetSupply": "104120743591261442458274860", + "LPTokenSupply": "6671678777677637834412271" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "760655333493835305058304", - "outputQty0": "766553695169017616454817", - "outputQty": "765301354509666683797394", - "swapFee1": "456393200096301183034", - "swapFee2": "306621478067607046581", + "type": "swap_fp_to_mp", + "inputQty": "544525773070467", + "outputIndex": 0, + "outputQty": "555133425504565", + "swapFee": "0", + "redemptionFee": "330422294922", "mpReserves": [ - "55354376435383955683537569", - "27349101503415232436375076", - "30648587943684709029224328" + "54580480745114359959438818", + "9612553456111108823915518", + "40211617698560496041574109" ], "fpReserves": [ - "14282631925600021043307427", - "7610737714864533918132810" + "5048502402273166740560886", + "1718468235442568173694330" ], - "mAssetSupply": "113331673419543181912937728", - "LPTokenSupply": "21750580504015452136555778" + "mAssetSupply": "104120743590711069055698736", + "LPTokenSupply": "6671678777677637834412271" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "5164111545688259584", - "outputQty0": "5170781742583459165", - "outputQty": "5141408414155558340", - "swapFee": "4102645724887919", + "type": "redeem", + "outputIndex": 2, + "inputQty": "46672155012053071822848", + "outputQty0": "47445563061429540525473", + "outputQty": "47649979289338556810063", + "swapFee1": "28003293007231843093", + "swapFee2": "28467337836857724315", "mpReserves": [ - "55354376435383955683537569", - "27349106667526778124634660", - "30648587943684709029224328" + "54580480745114359959438818", + "9612553456111108823915518", + "40163967719271157484764046" ], "fpReserves": [ - "14282637096381763626766592", - "7610732573456119762574470" + "5001056839211737200035413", + "1718468235442568173694330" ], - "mAssetSupply": "113331678590324924496396893", - "LPTokenSupply": "21750580504425716709044569" + "mAssetSupply": "104073326494987476372897578", + "LPTokenSupply": "6625009422994885485773732" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1495036196321311744", - "outputQty0": "1496967251036620677", - "outputQty": "1488463514922359583", - "swapFee": "1187736512102487", + "type": "mint", + "inputIndex": 0, + "inputQty": "147905484370530560", + "outputQty0": "146636863880402040", + "outputQty": "144162856220365563", "mpReserves": [ - "55354376435383955683537569", - "27349108162562974445946404", - "30648587943684709029224328" + "54580480893019844329969378", + "9612553456111108823915518", + "40163967719271157484764046" ], "fpReserves": [ - "14282638593349014663387269", - "7610731084992604840214887" + "5001056985848601080437453", + "1718468235442568173694330" ], - "mAssetSupply": "113331680087292175533017570", - "LPTokenSupply": "21750580504544490360254817" + "mAssetSupply": "104073326641624340253299618", + "LPTokenSupply": "6625009567157741706139295" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2004145545713504818823168", - "outputQty0": "2006451307344456202152886", - "outputQty": "1989478636862440236735358", + "inputIndex": 0, + "inputQty": "988215325779194468630528", + "outputQty0": "979639223415540087481273", + "outputQty": "962643999390464461502048", "mpReserves": [ - "55354376435383955683537569", - "29353253708276479264769572", - "30648587943684709029224328" + "55568696218799038798599906", + "9612553456111108823915518", + "40163967719271157484764046" ], "fpReserves": [ - "16289089900693470865540155", - "7610731084992604840214887" + "5980696209264141167918726", + "1718468235442568173694330" ], - "mAssetSupply": "115338131394636631735170456", - "LPTokenSupply": "23740059141406930596990175" + "mAssetSupply": "105052965865039880340780891", + "LPTokenSupply": "7587653566548206167641343" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "14227853160842419765248", - "outputQty0": "14242316704399774387636", - "outputQty": "14118383012680704726499", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "151591664887404381077504", + "outputQty0": "150857381548254602796872", + "outputQty": "148241546444984541010858", + "swapFee": "118526265139822395483", "mpReserves": [ - "55354376435383955683537569", - "29367481561437321684534820", - "30648587943684709029224328" + "55568696218799038798599906", + "9612553456111108823915518", + "40315559384158561865841550" ], "fpReserves": [ - "16303332217397870639927791", - "7610731084992604840214887" + "6131553590812395770715598", + "1570226688997583632683472" ], - "mAssetSupply": "115352373711341031509558092", - "LPTokenSupply": "23754177524419611301716674" + "mAssetSupply": "105203823246588134943577763", + "LPTokenSupply": "7587665419174720149880891" }, { "type": "swap_fp_to_mp", - "inputQty": "450551849236448192", + "inputQty": "2906843832686372864", "outputIndex": 0, - "outputQty": "453847777935891131", + "outputQty": "2985260867407244066", "swapFee": "0", - "redemptionFee": "181373318034869", + "redemptionFee": "1776512492701631", "mpReserves": [ - "55354375981536177747646438", - "29367481561437321684534820", - "30648587943684709029224328" + "55568693233538171391355840", + "9612553456111108823915518", + "40315559384158561865841550" ], "fpReserves": [ - "16303331763964575552753018", - "7610731535544454076663079" + "6131550629958241267995808", + "1570229595841416319056336" ], - "mAssetSupply": "115352373258089109740418188", - "LPTokenSupply": "23754177524419611301716674" + "mAssetSupply": "105203820287510492933559604", + "LPTokenSupply": "7587665419174720149880891" }, { - "type": "swap_fp_to_mp", - "inputQty": "51677976322228820639744", - "outputIndex": 0, - "outputQty": "52052807951178279530810", - "swapFee": "0", - "redemptionFee": "20802131764013876109", + "type": "redeem", + "outputIndex": 2, + "inputQty": "925893734668814436532224", + "outputQty0": "942338985505589821684510", + "outputQty": "946263977291862535724643", + "swapFee1": "555536240801288661919", + "swapFee2": "565403391303353893010", "mpReserves": [ - "55302323173584999468115628", - "29367481561437321684534820", - "30648587943684709029224328" + "55568693233538171391355840", + "9612553456111108823915518", + "39369295406866699330116907" ], "fpReserves": [ - "16251326434554540862478873", - "7662409511866682897302823" + "5189211644452651446311298", + "1570229595841416319056336" ], - "mAssetSupply": "115300388730810839064020152", - "LPTokenSupply": "23754177524419611301716674" + "mAssetSupply": "104262046705396206465768104", + "LPTokenSupply": "6661827238129985842214858" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "166367148719983362048", - "outputQty0": "166535756837026773674", - "outputQty": "165092701280767954324", + "inputIndex": 2, + "inputQty": "38384215017820826632192", + "outputQty0": "38206414118503625208961", + "outputQty": "37532484464125280494104", "mpReserves": [ - "55302323173584999468115628", - "29367647928586041667896868", - "30648587943684709029224328" + "55568693233538171391355840", + "9612553456111108823915518", + "39407679621884520156749099" ], "fpReserves": [ - "16251492970311377889252547", - "7662409511866682897302823" + "5227418058571155071520259", + "1570229595841416319056336" ], - "mAssetSupply": "115300555266567676090793826", - "LPTokenSupply": "23754342617120892069670998" + "mAssetSupply": "104300253119514710090977065", + "LPTokenSupply": "6699359722594111122708962" }, { - "type": "swap_fp_to_mp", - "inputQty": "1797832477507076096", - "outputIndex": 2, - "outputQty": "1806931558107144111", - "swapFee": "0", - "redemptionFee": "723644878742534", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "25782347382709723070464", + "outputQty0": "25662711917107576247947", + "outputQty": "25279075631353528023702", + "swapFee": "20167341274006149011", "mpReserves": [ - "55302323173584999468115628", - "29367647928586041667896868", - "30648586136753150922080217" + "55568693233538171391355840", + "9612553456111108823915518", + "39433461969267229879819563" ], "fpReserves": [ - "16251491161199181032915425", - "7662411309699160404378919" + "5253080770488262647768206", + "1544950520210062791032634" ], - "mAssetSupply": "115300553458179124113199238", - "LPTokenSupply": "23754342617120892069670998" + "mAssetSupply": "104325915831431817667225012", + "LPTokenSupply": "6699361739328238523323863" }, { - "type": "swap_fp_to_mp", - "inputQty": "553070411183573820243968", - "outputIndex": 2, - "outputQty": "555516780084742221131852", - "swapFee": "0", - "redemptionFee": "222481873661939177029", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1012984124617366232367104", + "outputQty0": "1030118812017789829089957", + "outputQty": "1038552549223929708231678", + "swapFee1": "607790474770419739420", + "swapFee2": "618071287210673897453", "mpReserves": [ - "55302323173584999468115628", - "29367647928586041667896868", - "30093069356668408700948365" + "54530140684314241683124162", + "9612553456111108823915518", + "39433461969267229879819563" ], "fpReserves": [ - "15695286477044333090341781", - "8215481720882734224622887" + "4222961958470472818678249", + "1544950520210062791032634" ], - "mAssetSupply": "114744571255897938109802623", - "LPTokenSupply": "23754342617120892069670998" + "mAssetSupply": "103296415090701238512032508", + "LPTokenSupply": "5686438393758349332930701" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "473435167941402975797248", - "outputQty0": "472799364183654518068233", - "outputQty": "468860151538382599027912", + "type": "redeem", + "outputIndex": 0, + "inputQty": "851839447101105766400", + "outputQty0": "865837051548784162177", + "outputQty": "872831610193061171220", + "swapFee1": "511103668260663459", + "swapFee2": "519502230929270497", "mpReserves": [ - "55775758341526402443912876", - "29367647928586041667896868", - "30093069356668408700948365" + "54529267852704048621952942", + "9612553456111108823915518", + "39433461969267229879819563" ], "fpReserves": [ - "16168085841227987608410014", - "8215481720882734224622887" + "4222096121418924034516072", + "1544950520210062791032634" ], - "mAssetSupply": "115217370620081592627870856", - "LPTokenSupply": "24223202768659274668698910" + "mAssetSupply": "103295549773151920657140828", + "LPTokenSupply": "5685586605421615053230646" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "442144229053839393685504", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "2161379057132289189216256", - "outputIndex": 1, - "outputQty": "2165792803170557015003418", + "inputQty": "44836341654256844800", + "outputIndex": 2, + "outputQty": "45471021232149532104", "swapFee": "0", - "redemptionFee": "867664050654628989434", + "redemptionFee": "27170541358007532", "mpReserves": [ - "55775758341526402443912876", - "27201855125415484652893450", - "30093069356668408700948365" + "54529267852704048621952942", + "9612553456111108823915518", + "39433416498245997730287459" ], "fpReserves": [ - "13998925714591415134823128", - "10376860778015023413839143" + "4222050837183327355294669", + "1544995356551717047877434" ], - "mAssetSupply": "113049078157495674783273404", - "LPTokenSupply": "24223202768659274668698910" + "mAssetSupply": "103295504516086865335926957", + "LPTokenSupply": "5685586605421615053230646" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "46091803470426333184", - "outputQty0": "46394946866312974292", - "outputQty": "46339735306517169141", - "swapFee1": "27655082082255799", - "swapFee2": "18557978746525189", + "inputQty": "12804962536793452544", + "outputQty0": "13015368574712980178", + "outputQty": "13069053472932465464", + "swapFee1": "7682977522076071", + "swapFee2": "7809221144827788", "mpReserves": [ - "55775758341526402443912876", - "27201855125415484652893450", - "30093023016933102183779224" + "54529267852704048621952942", + "9612553456111108823915518", + "39433403429192524797821995" ], "fpReserves": [ - "13998879319644548821848836", - "10376860778015023413839143" + "4222037821814752642314491", + "1544995356551717047877434" ], - "mAssetSupply": "113049031781106787216824301", - "LPTokenSupply": "24223156679621312450591305" + "mAssetSupply": "103295491508527511767774567", + "LPTokenSupply": "5685573801227376011985709" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "655105325077774204928", - "outputQty0": "659413867173298851715", - "outputQty": "658629115257253953621", - "swapFee1": "393063195046664522", - "swapFee2": "263765546869319540", + "outputIndex": 1, + "inputQty": "1996282946426052864", + "outputQty0": "2029085057091249060", + "outputQty": "1951680455584748998", + "swapFee1": "1197769767855631", + "swapFee2": "1217451034254749", "mpReserves": [ - "55775758341526402443912876", - "27201855125415484652893450", - "30092364387817844929825603" + "54529267852704048621952942", + "9612551504430653239166520", + "39433403429192524797821995" ], "fpReserves": [ - "13998219905777375522997121", - "10376860778015023413839143" + "4222035792729695551065431", + "1544995356551717047877434" ], - "mAssetSupply": "113048372631005160787292126", - "LPTokenSupply": "24222501613602554181052829" + "mAssetSupply": "103295489480659905710780256", + "LPTokenSupply": "5685571805064206562718408" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "67308887345286992625664", - "outputQty0": "67751048941993088142657", - "outputQty": "67822351211976562612708", - "swapFee1": "40385332407172195575", - "swapFee2": "27100419576797235257", + "outputIndex": 1, + "inputQty": "701467843616688429858816", + "outputQty0": "712706916646573611614768", + "outputQty": "683571998252117554534588", + "swapFee1": "420880706170013057915", + "swapFee2": "427624149987944166968", "mpReserves": [ - "55707935990314425881300168", - "27201855125415484652893450", - "30092364387817844929825603" + "54529267852704048621952942", + "8928979506178535684631932", + "39433403429192524797821995" ], "fpReserves": [ - "13930468856835382434854464", - "10376860778015023413839143" + "3509328876083121939450663", + "1544995356551717047877434" ], - "mAssetSupply": "112980648682482744496384726", - "LPTokenSupply": "24155196764790507905646722" + "mAssetSupply": "102583210188163320043332456", + "LPTokenSupply": "4984146049518135134165383" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "100668645443559751680000", - "outputQty0": "100747416308936588736951", - "outputQty": "100457288019531357587616", - "swapFee": "80023468957692603218", + "type": "swap_fp_to_mp", + "inputQty": "1479062519805258737123328", + "outputIndex": 0, + "outputQty": "1494107041611517848677587", + "swapFee": "0", + "redemptionFee": "888816147891226593162", "mpReserves": [ - "55707935990314425881300168", - "27201855125415484652893450", - "30193033033261404681505603" + "53035160811092530773275355", + "8928979506178535684631932", + "39433403429192524797821995" ], "fpReserves": [ - "14031216273144319023591415", - "10276403489995492056251527" + "2027968629597744284180261", + "3024057876356975785000762" ], - "mAssetSupply": "113081396098791681085121677", - "LPTokenSupply": "24155204767137403674907043" + "mAssetSupply": "101102738757825833614655216", + "LPTokenSupply": "4984146049518135134165383" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "42230376303008661504", - "outputQty0": "42509923834098678922", - "outputQty": "42459943442197544676", - "swapFee1": "25338225781805196", - "swapFee2": "17003969533639471", + "outputIndex": 1, + "inputQty": "38487755674793755541504", + "outputQty0": "38920874591882331184469", + "outputQty": "37265968338399315445472", + "swapFee1": "23092653404876253324", + "swapFee2": "23352524755129398710", "mpReserves": [ - "55707935990314425881300168", - "27201855125415484652893450", - "30192990573317962483960927" + "53035160811092530773275355", + "8891713537840136369186460", + "39433403429192524797821995" ], "fpReserves": [ - "14031173763220484924912493", - "10276403489995492056251527" + "1989047755005861952995792", + "3024057876356975785000762" ], - "mAssetSupply": "113081353605871816520082226", - "LPTokenSupply": "24155162539294923244426058" + "mAssetSupply": "101063841235758706412869457", + "LPTokenSupply": "4945660603108681866249211" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "312967448884000619233280", - "outputQty0": "312512878765557123415148", - "outputQty": "311531431675387839055264", - "swapFee": "248208552806112245039", + "type": "redeem", + "outputIndex": 1, + "inputQty": "932654238746279018496", + "outputQty0": "943108116794512136882", + "outputQty": "902846601740819810303", + "swapFee1": "559592543247767411", + "swapFee2": "565864870076707282", "mpReserves": [ - "56020903439198426500533448", - "27201855125415484652893450", - "30192990573317962483960927" + "53035160811092530773275355", + "8890810691238395549376157", + "39433403429192524797821995" ], "fpReserves": [ - "14343686641986042048327641", - "9964872058320104217196263" + "1988104646889067440858910", + "3024057876356975785000762" ], - "mAssetSupply": "113393866484637373643497374", - "LPTokenSupply": "24155187360150203855650561" + "mAssetSupply": "101062898693506781977439857", + "LPTokenSupply": "4944728004829189912007456" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2642955072717827072", - "outputQty0": "2645040886788769353", - "outputQty": "2636201428699042832", - "swapFee": "2100485847188301", + "type": "swap_fp_to_mp", + "inputQty": "22518523432420552704", + "outputIndex": 2, + "outputQty": "22558013932740936787", + "swapFee": "0", + "redemptionFee": "13470840647315582", "mpReserves": [ - "56020903439198426500533448", - "27201855125415484652893450", - "30192993216273035201787999" + "53035160811092530773275355", + "8890810691238395549376157", + "39433380871178592056885208" ], "fpReserves": [ - "14343689287026928837096994", - "9964869422118675518153431" + "1988082195487988581554302", + "3024080394880408205553466" ], - "mAssetSupply": "113393869129678260432266727", - "LPTokenSupply": "24155187360360252440369391" + "mAssetSupply": "101062876255576543765450831", + "LPTokenSupply": "4944728004829189912007456" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "358236268545705216", - "outputQty0": "358711128393853214", - "outputQty": "356075614577142667", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "8061199238972761440256", + "outputQty0": "8018278551708939431361", + "outputQty": "8035599203183640632269", + "swapFee": "6339658687800941499", "mpReserves": [ - "56020903439198426500533448", - "27201855483651753198598666", - "30192993216273035201787999" + "53035160811092530773275355", + "8890810691238395549376157", + "39441442070417564818325464" ], "fpReserves": [ - "14343689645738057230950208", - "9964869422118675518153431" + "1996100474039697520985663", + "3016044795677224564921197" ], - "mAssetSupply": "113393869488389388826119941", - "LPTokenSupply": "24155187716435867017512058" + "mAssetSupply": "101070894534128252704882192", + "LPTokenSupply": "4944728638795058692101605" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "134172638757519648", - "outputQty0": "134350491204758796", - "outputQty": "133363394484192377", + "type": "redeem", + "outputIndex": 2, + "inputQty": "17693765449177851904", + "outputQty0": "17892673826379615511", + "outputQty": "17977676238396741249", + "swapFee1": "10616259269506711", + "swapFee2": "10735604295827769", "mpReserves": [ - "56020903439198426500533448", - "27201855617824391956118314", - "30192993216273035201787999" + "53035160811092530773275355", + "8890810691238395549376157", + "39441424092741326421584215" ], "fpReserves": [ - "14343689780088548435709004", - "9964869422118675518153431" + "1996082581365871141370152", + "3016044795677224564921197" ], - "mAssetSupply": "113393869622739880030878737", - "LPTokenSupply": "24155187849799261501704435" + "mAssetSupply": "101070876652190030621094450", + "LPTokenSupply": "4944710946091235441200372" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "97031001288175", - "outputQty0": "97159620662905", - "outputQty": "96445771816792", + "inputIndex": 0, + "inputQty": "3455837702844403712", + "outputQty0": "3424724608561578513", + "outputQty": "3384620863533735838", "mpReserves": [ - "56020903439198426500533448", - "27201855617921422957406489", - "30192993216273035201787999" + "53035164266930233617679067", + "8890810691238395549376157", + "39441424092741326421584215" ], "fpReserves": [ - "14343689780185708056371909", - "9964869422118675518153431" + "1996086006090479702948665", + "3016044795677224564921197" ], - "mAssetSupply": "113393869622837039651541642", - "LPTokenSupply": "24155187849895707273521227" + "mAssetSupply": "101070880076914639182672963", + "LPTokenSupply": "4944714330712098974936210" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "62437717594860622446592", - "outputQty0": "62346494231853676043469", - "outputQty": "62135580731251686841918", - "swapFee": "49510396840085671177", + "inputIndex": 1, + "inputQty": "1405199898526155008", + "outputQty0": "1466997775637406496", + "outputQty": "1470126980245212107", + "swapFee": "1159855303097628", "mpReserves": [ - "56083341156793287122980040", - "27201855617921422957406489", - "30192993216273035201787999" + "53035164266930233617679067", + "8890812096438294075531165", + "39441424092741326421584215" ], "fpReserves": [ - "14406036274417561732415378", - "9902733841387423831311513" + "1996087473088255340355161", + "3016043325550244319709090" ], - "mAssetSupply": "113456216117068893327585111", - "LPTokenSupply": "24155192800935391282088344" + "mAssetSupply": "101070881543912414820079459", + "LPTokenSupply": "4944714330828084505245972" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "461405264949831794688", - "outputQty0": "461770551148142145082", - "outputQty": "460189270845860419120", - "swapFee": "366689202816080000", + "type": "swap_fp_to_mp", + "inputQty": "27421267843238925959168", + "outputIndex": 0, + "outputQty": "27570200028358750653269", + "swapFee": "0", + "redemptionFee": "16403082052384185465", "mpReserves": [ - "56083341156793287122980040", - "27201855617921422957406489", - "30193454621537985033582687" + "53007594066901874867025798", + "8890812096438294075531165", + "39441424092741326421584215" ], "fpReserves": [ - "14406498044968709874560460", - "9902273652116577970892393" + "1968749003000948364578774", + "3043464593393483245668258" ], - "mAssetSupply": "113456677887620041469730193", - "LPTokenSupply": "24155192837604311563696344" + "mAssetSupply": "101043559476907160228488537", + "LPTokenSupply": "4944714330828084505245972" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "164523752873862251937792", - "outputQty0": "165644932372369673754342", - "outputQty": "165446096453901821271646", - "swapFee1": "98714251724317351162", - "swapFee2": "66257972948947869501", + "type": "mint", + "inputIndex": 0, + "inputQty": "7414418666830765056", + "outputQty0": "7347710872106328850", + "outputQty": "7262487049293527695", "mpReserves": [ - "56083341156793287122980040", - "27201855617921422957406489", - "30028008525084083212311041" + "53007601481320541697790854", + "8890812096438294075531165", + "39441424092741326421584215" ], "fpReserves": [ - "14240853112596340200806118", - "9902273652116577970892393" + "1968756350711820470907624", + "3043464593393483245668258" ], - "mAssetSupply": "113291099213220620743845352", - "LPTokenSupply": "23990678956155621743493668" + "mAssetSupply": "101043566824618032334817387", + "LPTokenSupply": "4944721593315133798773667" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "3357651320682217209856", - "outputQty0": "3380481576231635434756", - "outputQty": "3374670625091797682904", - "swapFee1": "2014590792409330325", - "swapFee2": "1352192630492654173", + "outputIndex": 0, + "inputQty": "3241462684703412715520", + "outputQty0": "3277519240764424853922", + "outputQty": "3305289348288032224264", + "swapFee1": "1944877610822047629", + "swapFee2": "1966511544458654912", "mpReserves": [ - "56083341156793287122980040", - "27198480947296331159723585", - "30028008525084083212311041" + "53004296191972253665566590", + "8890812096438294075531165", + "39441424092741326421584215" ], "fpReserves": [ - "14237472631020108565371362", - "9902273652116577970892393" + "1965478831471056046053702", + "3043464593393483245668258" ], - "mAssetSupply": "113287720083837019601064769", - "LPTokenSupply": "23987321506294018767216844" + "mAssetSupply": "101040291271888812368618377", + "LPTokenSupply": "4941480325118191468262909" }, { - "type": "swap_fp_to_mp", - "inputQty": "4461978941880895275008", + "type": "redeem", "outputIndex": 0, - "outputQty": "4478096313456743468419", - "swapFee": "0", - "redemptionFee": "1789322573921328315", + "inputQty": "18045650409566439997440", + "outputQty0": "18245883804502691119939", + "outputQty": "18400435454696258235935", + "swapFee1": "10827390245739863998", + "swapFee2": "10947530282701614671", "mpReserves": [ - "56078863060479830379511621", - "27198480947296331159723585", - "30028008525084083212311041" + "52985895756517557407330655", + "8890812096438294075531165", + "39441424092741326421584215" ], "fpReserves": [ - "14232999324585305244582778", - "9906735631058458866167401" + "1947232947666553354933763", + "3043464593393483245668258" ], - "mAssetSupply": "113283248566724790201604500", - "LPTokenSupply": "23987321506294018767216844" + "mAssetSupply": "101022056335614592379113109", + "LPTokenSupply": "4923435757447649602251868" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "4495321033762475606016", - "outputQty0": "4488716524271233867332", - "outputQty": "4473768087339275578628", - "swapFee": "3564589324706747596", + "type": "swap_fp_to_mp", + "inputQty": "139406374919661600768", + "outputIndex": 2, + "outputQty": "139620206344145687018", + "swapFee": "0", + "redemptionFee": "83375797499445479", "mpReserves": [ - "56083358381513592855117637", - "27198480947296331159723585", - "30028008525084083212311041" + "52985895756517557407330655", + "8890812096438294075531165", + "39441284472534982275897197" ], "fpReserves": [ - "14237488041109576478450110", - "9902261862971119590588773" + "1947093988004054279134065", + "3043603999768402907269026" ], - "mAssetSupply": "113287737283249061435471832", - "LPTokenSupply": "23987321862752951237891603" + "mAssetSupply": "101021917459327890802758890", + "LPTokenSupply": "4923435757447649602251868" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "83913040280027616", - "outputQty0": "83789746902648443", - "outputQty": "83510460275252736", - "swapFee": "66539158102218", + "type": "mint", + "inputIndex": 1, + "inputQty": "218722836593886330880", + "outputQty0": "228330266790782740240", + "outputQty": "225693995573798574664", "mpReserves": [ - "56083358465426633135145253", - "27198480947296331159723585", - "30028008525084083212311041" + "52985895756517557407330655", + "8891030819274887961862045", + "39441284472534982275897197" ], "fpReserves": [ - "14237488124899323381098553", - "9902261779460659315336037" + "1947322318270845061874305", + "3043603999768402907269026" ], - "mAssetSupply": "113287737367038808338120275", - "LPTokenSupply": "23987321862759605153701824" + "mAssetSupply": "101022145789594681585499130", + "LPTokenSupply": "4923661451443223400826532" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4264226034199720624128", - "outputQty0": "4269859823848406579770", - "outputQty": "4238477153717427973583", + "inputQty": "2811931928427412062208", + "outputQty0": "2935404795626909719824", + "outputQty": "2901501025298477611157", "mpReserves": [ - "56083358465426633135145253", - "27202745173330530880347713", - "30028008525084083212311041" + "52985895756517557407330655", + "8893842751203315373924253", + "39441284472534982275897197" ], "fpReserves": [ - "14241757984723171787678323", - "9902261779460659315336037" + "1950257723066471971594129", + "3043603999768402907269026" ], - "mAssetSupply": "113292007226862656744700045", - "LPTokenSupply": "23991560339913322581675407" + "mAssetSupply": "101025081194390308495218954", + "LPTokenSupply": "4926562952468521878437689" }, { "type": "swap_fp_to_mp", - "inputQty": "317114686551633543823360", + "inputQty": "1435695964747804157411328", "outputIndex": 1, - "outputQty": "317301633833028532684774", - "swapFee": "0", - "redemptionFee": "127142273434601584377", - "mpReserves": [ - "56083358465426633135145253", - "26885443539497502347662939", - "30028008525084083212311041" - ], - "fpReserves": [ - "13923902301136667826735208", - "10219376466012292859159397" - ], - "mAssetSupply": "112974278685549587385341307", - "LPTokenSupply": "23991560339913322581675407" + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "478538037600948206960640", - "outputIndex": 1, - "outputQty": "478551275990147021363260", - "swapFee": "0", - "redemptionFee": "191766867477787912380", + "type": "mint", + "inputIndex": 2, + "inputQty": "138139901088126233214976", + "outputQty0": "137401769485158979688861", + "outputQty": "135791248785933415814713", "mpReserves": [ - "56083358465426633135145253", - "26406892263507355326299679", - "30028008525084083212311041" + "52985895756517557407330655", + "8893842751203315373924253", + "39579424373623108509112173" ], "fpReserves": [ - "13444485132442198045783965", - "10697914503613241066120037" + "2087659492551630951282990", + "3043603999768402907269026" ], - "mAssetSupply": "112495053283722595392302444", - "LPTokenSupply": "23991560339913322581675407" + "mAssetSupply": "101162482963875467474907815", + "LPTokenSupply": "5062354201254455294252402" }, { "type": "mint", "inputIndex": 0, - "inputQty": "804140359443967488557056", - "outputQty0": "802911320918063201625022", - "outputQty": "797274963667001379029212", + "inputQty": "689171114416137830400", + "outputQty0": "682981405865332272280", + "outputQty": "674866938243317587158", "mpReserves": [ - "56887498824870600623702309", - "26406892263507355326299679", - "30028008525084083212311041" + "52986584927631973545161055", + "8893842751203315373924253", + "39579424373623108509112173" ], "fpReserves": [ - "14247396453360261247408987", - "10697914503613241066120037" + "2088342473957496283555270", + "3043603999768402907269026" ], - "mAssetSupply": "113297964604640658593927466", - "LPTokenSupply": "24788835303580323960704619" + "mAssetSupply": "101163165945281332807180095", + "LPTokenSupply": "5063029068192698611839560" }, { "type": "swap_fp_to_mp", - "inputQty": "102970934877505223393280", + "inputQty": "18897594587806117888", "outputIndex": 0, - "outputQty": "103285174772843964899292", + "outputQty": "19007097043015228545", "swapFee": "0", - "redemptionFee": "41266759412455903356", - "mpReserves": [ - "56784213650097756658803017", - "26406892263507355326299679", - "30028008525084083212311041" - ], - "fpReserves": [ - "14144229554829121489017305", - "10800885438490746289513317" - ], - "mAssetSupply": "113194838972868931291439140", - "LPTokenSupply": "24788835303580323960704619" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "13455284366808236032", - "outputQty0": "13542780153158891197", - "outputQty": "13526509457529416276", - "swapFee1": "8073170620084941", - "swapFee2": "5417112061263556", + "redemptionFee": "11308616571339065", "mpReserves": [ - "56784213650097756658803017", - "26406892263507355326299679", - "30027994998574625682894765" + "52986565920534930529932510", + "8893842751203315373924253", + "39579424373623108509112173" ], "fpReserves": [ - "14144216012048968330126108", - "10800885438490746289513317" + "2088323626263210718445852", + "3043622897362990713386914" ], - "mAssetSupply": "113194825435505890193811499", - "LPTokenSupply": "24788821849103274214477081" + "mAssetSupply": "101163147108895663813409742", + "LPTokenSupply": "5063029068192698611839560" }, { "type": "swap_fp_to_mp", - "inputQty": "11698212211684240523264", - "outputIndex": 0, - "outputQty": "11733082517666413917491", + "inputQty": "49380621562378620764160", + "outputIndex": 2, + "outputQty": "49477830385278987094463", "swapFee": "0", - "redemptionFee": "4687871140291757072", + "redemptionFee": "29545464337940351898", "mpReserves": [ - "56772480567580090244885526", - "26406892263507355326299679", - "30027994998574625682894765" + "52986565920534930529932510", + "8893842751203315373924253", + "39529946543237829522017710" ], "fpReserves": [ - "14132496334198238937444594", - "10812583650702430530036581" + "2039081185699976798615004", + "3093003518925369334151074" ], - "mAssetSupply": "113183110445526301092887057", - "LPTokenSupply": "24788821849103274214477081" + "mAssetSupply": "101113934213796767833930792", + "LPTokenSupply": "5063029068192698611839560" }, { - "type": "swap_fp_to_mp", - "inputQty": "3503106539046312955871232", - "outputIndex": 1, - "outputQty": "3494999642961433190028266", - "swapFee": "0", - "redemptionFee": "1401100954769391117076", + "type": "redeem", + "outputIndex": 2, + "inputQty": "52867175651697311744", + "outputQty0": "53460602353032918720", + "outputQty": "53715815218257240418", + "swapFee1": "31720305391018387", + "swapFee2": "32076361411819751", "mpReserves": [ - "56772480567580090244885526", - "22911892620545922136271413", - "30027994998574625682894765" + "52986565920534930529932510", + "8893842751203315373924253", + "39529892827422611264777292" ], "fpReserves": [ - "10629743947274761144753735", - "14315690189748743485907813" + "2039027725097623765696284", + "3093003518925369334151074" ], - "mAssetSupply": "109681759159557592691313274", - "LPTokenSupply": "24788821849103274214477081" + "mAssetSupply": "101113880785270776212831823", + "LPTokenSupply": "5062976204189077453629654" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "4972235431679138725888", - "outputQty0": "4975343833091754989840", - "outputQty": "4981523789357533438478", - "swapFee": "3959924030380998003", + "inputQty": "528195088044686527430656", + "outputQty0": "525334743589598248029196", + "outputQty": "525662093293173422673678", + "swapFee": "415133508732418007970", "mpReserves": [ - "56772480567580090244885526", - "22911892620545922136271413", - "30032967234006304821620653" + "52986565920534930529932510", + "8893842751203315373924253", + "40058087915467297792207948" ], "fpReserves": [ - "10634719291107852899743575", - "14310708665959385952469335" + "2564362468687222013725480", + "2567341425632195911477396" ], - "mAssetSupply": "109686734503390684446303114", - "LPTokenSupply": "24788822245095677252576881" + "mAssetSupply": "101639215528860374460861019", + "LPTokenSupply": "5063017717539950695430451" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "25660253108224948961280", "outputIndex": 0, - "inputQty": "235158779301064110768128", - "outputQty0": "236214863953953784284848", - "outputQty": "236534282877977472749538", - "swapFee1": "141095267580638466460", - "swapFee2": "94485945581581513713", + "outputQty": "25874590657378610605358", + "swapFee": "0", + "redemptionFee": "15395013759408809757", "mpReserves": [ - "56535946284702112772135988", - "22911892620545922136271413", - "30032967234006304821620653" + "52960691329877551919327152", + "8893842751203315373924253", + "40058087915467297792207948" ], "fpReserves": [ - "10398504427153899115458727", - "14310708665959385952469335" + "2538704112421540664129882", + "2593001678740420860438676" ], - "mAssetSupply": "109450614125382312243531979", - "LPTokenSupply": "24553677575321371205655399" + "mAssetSupply": "101613572567608452520075178", + "LPTokenSupply": "5063017717539950695430451" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "4701005489503721750528", - "outputQty0": "4692806785579207724483", - "outputQty": "4699391328479379356750", - "swapFee": "3735376006178989966", + "type": "swap_fp_to_mp", + "inputQty": "989714207047991033856", + "outputIndex": 2, + "outputQty": "994432008530292084515", + "swapFee": "0", + "redemptionFee": "593743772990651459", "mpReserves": [ - "56540647290191616493886516", - "22911892620545922136271413", - "30032967234006304821620653" + "52960691329877551919327152", + "8893842751203315373924253", + "40057093483458767500123433" ], "fpReserves": [ - "10403197233939478323183210", - "14306009274630906573112585" + "2537714539466556245030322", + "2593991392947468851472532" ], - "mAssetSupply": "109455306932167891451256462", - "LPTokenSupply": "24553677948858971823554395" + "mAssetSupply": "101612583588397241091627077", + "LPTokenSupply": "5063017717539950695430451" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "176568975189304442880", - "outputQty0": "176953798793745940932", - "outputQty": "176063948792190836377", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "38984998790087160365056", + "outputQty0": "38771045088776780932571", + "outputQty": "38741779603772600444113", + "swapFee": "30603144173018186835", "mpReserves": [ - "56540647290191616493886516", - "22912069189521111440714293", - "30032967234006304821620653" + "52960691329877551919327152", + "8893842751203315373924253", + "40096078482248854660488489" ], "fpReserves": [ - "10403374187738272069124142", - "14306009274630906573112585" + "2576485584555333025962893", + "2555249613343696251028419" ], - "mAssetSupply": "109455483885966685197197394", - "LPTokenSupply": "24553854012807764014390772" + "mAssetSupply": "101651354633486017872559648", + "LPTokenSupply": "5063020777854367997249134" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "29476196382056852226048", - "outputQty0": "29494281886214807196302", - "outputQty": "29345782939499382379507", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2312806340400719331328", + "outputQty0": "2415455136490615039072", + "outputQty": "2413375441948926773158", + "swapFee": "1906434592010646735", "mpReserves": [ - "56540647290191616493886516", - "22912069189521111440714293", - "30062443430388361673846701" + "52960691329877551919327152", + "8896155557543716093255581", + "40096078482248854660488489" ], "fpReserves": [ - "10432868469624486876320444", - "14306009274630906573112585" + "2578901039691823641001965", + "2552836237901747324255261" ], - "mAssetSupply": "109484978167852900004393696", - "LPTokenSupply": "24583199795747263396770279" + "mAssetSupply": "101653770088622508487598720", + "LPTokenSupply": "5063020968497827198313807" }, { - "type": "swap_fp_to_mp", - "inputQty": "224653512653972304822272", - "outputIndex": 0, - "outputQty": "224433485852499017822161", - "swapFee": "0", - "redemptionFee": "89653294418996137386", + "type": "redeem", + "outputIndex": 2, + "inputQty": "34350756211130753875968", + "outputQty0": "34796467072508363809404", + "outputQty": "34967446621080631392007", + "swapFee1": "20610453726678452325", + "swapFee2": "20877880243505018285", "mpReserves": [ - "56316213804339117476064355", - "22912069189521111440714293", - "30062443430388361673846701" + "52960691329877551919327152", + "8896155557543716093255581", + "40061111035627774029096482" ], "fpReserves": [ - "10208735233576996532855371", - "14530662787284878877934857" + "2544104572619315277192561", + "2552836237901747324255261" ], - "mAssetSupply": "109260934585099828657066009", - "LPTokenSupply": "24583199795747263396770279" + "mAssetSupply": "101618994499430243628807601", + "LPTokenSupply": "5028672273332069112283071" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10730162037156923572224", - "outputQty0": "10753381529801922722748", - "outputQty": "10700908138691771446089", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "3639608252303182", + "outputQty0": "3607046112175240", + "outputQty": "3604242256194392", + "swapFee": "2847018960872", "mpReserves": [ - "56316213804339117476064355", - "22922799351558268364286517", - "30062443430388361673846701" + "52960691333517160171630334", + "8896155557543716093255581", + "40061111035627774029096482" ], "fpReserves": [ - "10219488615106798455578119", - "14530662787284878877934857" + "2544104576226361389367801", + "2552836234297505068060869" ], - "mAssetSupply": "109271687966629630579788757", - "LPTokenSupply": "24593900703885955168216368" + "mAssetSupply": "101618994503037289740982841", + "LPTokenSupply": "5028672273332353814179158" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "3028142648911785915056128", - "outputQty0": "3033695403806814496340012", - "outputQty": "3033415855069663974693629", - "swapFee": "2413767913585100552459", + "type": "redeem", + "outputIndex": 0, + "inputQty": "221362317441962704896", + "outputQty0": "224230299097562831840", + "outputQty": "226118750680629016115", + "swapFee1": "132817390465177622", + "swapFee2": "134538179458537699", "mpReserves": [ - "56316213804339117476064355", - "25950942000470054279342645", - "30062443430388361673846701" + "52960465214766479542614219", + "8896155557543716093255581", + "40061111035627774029096482" ], "fpReserves": [ - "13253184018913612951918131", - "11497246932215214903241228" + "2543880345927263826535961", + "2552836234297505068060869" ], - "mAssetSupply": "112305383370436445076128769", - "LPTokenSupply": "24594142080677313678271613" + "mAssetSupply": "101618770407276371636688700", + "LPTokenSupply": "5028450924296650897992024" }, { "type": "mint", "inputIndex": 1, - "inputQty": "549963463840545411956736", - "outputQty0": "550784132939913859064657", - "outputQty": "547029540942883138404898", + "inputQty": "41943660628482199650304", + "outputQty0": "43794937686333717857251", + "outputQty": "43207626727893928980730", "mpReserves": [ - "56316213804339117476064355", - "26500905464310599691299381", - "30062443430388361673846701" + "52960465214766479542614219", + "8938099218172198292905885", + "40061111035627774029096482" ], "fpReserves": [ - "13803968151853526810982788", - "11497246932215214903241228" + "2587675283613597544393212", + "2552836234297505068060869" ], - "mAssetSupply": "112856167503376358935193426", - "LPTokenSupply": "25141171621620196816676511" + "mAssetSupply": "101662565344962705354545951", + "LPTokenSupply": "5071658551024544826972754" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "82323327617734895730688", - "outputQty0": "82198518698166838123482", - "outputQty": "82028273067225944550266", - "swapFee": "65305791101913792498", + "inputIndex": 1, + "inputQty": "1502900277843159808", + "outputQty0": "1568926344749772711", + "outputQty": "1567530466891762568", + "swapFee": "1238274273218204", "mpReserves": [ - "56398537131956852371795043", - "26500905464310599691299381", - "30062443430388361673846701" + "52960465214766479542614219", + "8938100721072476136065693", + "40061111035627774029096482" ], "fpReserves": [ - "13886166670551693649106270", - "11415218659147988958690962" + "2587676852539942294165923", + "2552834666767038176298301" ], - "mAssetSupply": "112938366022074525773316908", - "LPTokenSupply": "25141178152199307008055760" + "mAssetSupply": "101662566913889050104318662", + "LPTokenSupply": "5071658551148372254294574" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "81660284525315157393408", "outputIndex": 0, - "inputQty": "1709610440439785848832", - "outputQty0": "1720495364665057668255", - "outputQty": "1722421719640358002051", - "swapFee1": "1025766264263871509", - "swapFee2": "688198145866023067", + "outputQty": "82333711885925651513561", + "swapFee": "0", + "redemptionFee": "48990257289287586168", "mpReserves": [ - "56396814710237212013792992", - "26500905464310599691299381", - "30062443430388361673846701" + "52878131502880553891100658", + "8938100721072476136065693", + "40061111035627774029096482" ], "fpReserves": [ - "13884446175187028591438015", - "11415218659147988958690962" + "2506026423724462983885329", + "2634494951292353333691709" ], - "mAssetSupply": "112936646214908006581671720", - "LPTokenSupply": "25139468644335493648594078" + "mAssetSupply": "101580965475330860081624236", + "LPTokenSupply": "5071658551148372254294574" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1899831516750030080", - "outputQty0": "1896947739935664737", - "outputQty": "1892934634991200191", - "swapFee": "1507052637169460", + "type": "mint", + "inputIndex": 1, + "inputQty": "753078046490411008000", + "outputQty0": "786095617074665474719", + "outputQty": "775696336947997350163", "mpReserves": [ - "56396816610068728763823072", - "26500905464310599691299381", - "30062443430388361673846701" + "52878131502880553891100658", + "8938853799118966547073693", + "40061111035627774029096482" ], "fpReserves": [ - "13884448072134768527102752", - "11415216766213353967490771" + "2506812519341537649360048", + "2634494951292353333691709" ], - "mAssetSupply": "112936648111855746517336457", - "LPTokenSupply": "25139468644486198912311024" + "mAssetSupply": "101581751570947934747098955", + "LPTokenSupply": "5072434247485320251644737" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2587506724232133869568", - "outputQty0": "2589542392281555486567", - "outputQty": "2584060356503735943985", - "swapFee": "2057292072820204433", + "type": "swap_fp_to_mp", + "inputQty": "2709171194539286528", + "outputIndex": 2, + "outputQty": "2721493429259152193", + "swapFee": "0", + "redemptionFee": "1624967453402393", "mpReserves": [ - "56396816610068728763823072", - "26500905464310599691299381", - "30065030937112593807716269" + "52878131502880553891100658", + "8938853799118966547073693", + "40061108314134344769944289" ], "fpReserves": [ - "13887037614527050082589319", - "11412632705856850231546786" + "2506809811062448645370050", + "2634497660463547872978237" ], - "mAssetSupply": "112939237654248028072823024", - "LPTokenSupply": "25139468850215406194331467" + "mAssetSupply": "101581748864293813196511350", + "LPTokenSupply": "5072434247485320251644737" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "100599909081466880000", - "outputQty0": "100745813526975496291", - "outputQty": "100048245462634634028", + "inputIndex": 2, + "inputQty": "6517509577135967174656", + "outputQty0": "6481966668783709697910", + "outputQty": "6396185084324957106562", "mpReserves": [ - "56396816610068728763823072", - "26501006064219681158179381", - "30065030937112593807716269" + "52878131502880553891100658", + "8938853799118966547073693", + "40067625823711480737118945" ], "fpReserves": [ - "13887138360340577058085610", - "11412632705856850231546786" + "2513291777731232355067960", + "2634497660463547872978237" ], - "mAssetSupply": "112939338400061555048319315", - "LPTokenSupply": "25139568898460868828965495" + "mAssetSupply": "101588230830962596906209260", + "LPTokenSupply": "5078830432569645208751299" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "470727300929161088991232", - "outputQty0": "473699323995391674844348", - "outputQty": "473124290314333050177922", - "swapFee1": "282436380557496653394", - "swapFee2": "189479729598156669937", + "type": "mint", + "inputIndex": 0, + "inputQty": "1607962424307561049096192", + "outputQty0": "1593397517329234935146508", + "outputQty": "1570962246094708080376457", "mpReserves": [ - "56396816610068728763823072", - "26501006064219681158179381", - "29591906646798260757538347" + "54486093927188114940196850", + "8938853799118966547073693", + "40067625823711480737118945" ], "fpReserves": [ - "13413439036345185383241262", - "11412632705856850231546786" + "4106689295060467290214468", + "2634497660463547872978237" ], - "mAssetSupply": "112465828555795761530144904", - "LPTokenSupply": "24668869841169763489639602" + "mAssetSupply": "103181628348291831841355768", + "LPTokenSupply": "6649792678664353289127756" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "38379859009475245506560", - "outputQty0": "38620283144357979818238", - "outputQty": "38572204127023718832504", - "swapFee1": "23027915405685147303", - "swapFee2": "15448113257743191927", + "outputIndex": 1, + "inputQty": "191843685873647169306624", + "outputQty0": "194590946489953355920153", + "outputQty": "185834928192803099066877", + "swapFee1": "115106211524188301583", + "swapFee2": "116754567893972013552", "mpReserves": [ - "56396816610068728763823072", - "26501006064219681158179381", - "29553334442671237038705843" + "54486093927188114940196850", + "8753018870926163448006816", + "40067625823711480737118945" ], "fpReserves": [ - "13374818753200827403423024", - "11412632705856850231546786" + "3912098348570513934294315", + "2634497660463547872978237" ], - "mAssetSupply": "112427223720764661293518593", - "LPTokenSupply": "24630492284951828812647772" + "mAssetSupply": "102987154156369772457449167", + "LPTokenSupply": "6457960503411858538651290" }, { - "type": "swap_fp_to_mp", - "inputQty": "86870486782487871488", - "outputIndex": 2, - "outputQty": "86854288699689554443", - "swapFee": "0", - "redemptionFee": "34785102593395388", + "type": "mint", + "inputIndex": 0, + "inputQty": "58588155831008440090624", + "outputQty0": "58035036654929629041315", + "outputQty": "57183599702388180134576", "mpReserves": [ - "56396816610068728763823072", - "26501006064219681158179381", - "29553247588382537349151400" + "54544682083019123380287474", + "8753018870926163448006816", + "40067625823711480737118945" ], "fpReserves": [ - "13374731790444343914951295", - "11412719576343632719418274" + "3970133385225443563335630", + "2634497660463547872978237" ], - "mAssetSupply": "112427136792793280398442252", - "LPTokenSupply": "24630492284951828812647772" + "mAssetSupply": "103045189193024702086490482", + "LPTokenSupply": "6515144103114246718785866" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "2399789596668873670656", - "outputQty0": "2414812953095638425975", - "outputQty": "2411800609932249674171", - "swapFee1": "1439873758001324202", - "swapFee2": "965925181238255370", + "outputIndex": 1, + "inputQty": "1009467387326264832", + "outputQty0": "1023907386103491809", + "outputQty": "976863792585263179", + "swapFee1": "605680432395758", + "swapFee2": "614344431662095", "mpReserves": [ - "56396816610068728763823072", - "26501006064219681158179381", - "29550835787772605099477229" + "54544682083019123380287474", + "8753017894062370862743637", + "40067625823711480737118945" ], "fpReserves": [ - "13372316977491248276525320", - "11412719576343632719418274" + "3970132361318057459843821", + "2634497660463547872978237" ], - "mAssetSupply": "112424722945765365998271647", - "LPTokenSupply": "24628092639342535739109536" + "mAssetSupply": "103045188169731660414660768", + "LPTokenSupply": "6515143093707427435760609" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "22321365044514041856", - "outputQty0": "22287009417806694404", - "outputQty": "22135070555310174301", + "inputIndex": 2, + "inputQty": "25346761064330886643712", + "outputQty0": "25206961254849508969357", + "outputQty": "24836306952315579274518", "mpReserves": [ - "56396838931433773277864928", - "26501006064219681158179381", - "29550835787772605099477229" + "54544682083019123380287474", + "8753017894062370862743637", + "40092972584775811623762657" ], "fpReserves": [ - "13372339264500666083219724", - "11412719576343632719418274" + "3995339322572906968813178", + "2634497660463547872978237" ], - "mAssetSupply": "112424745232774783804966051", - "LPTokenSupply": "24628114774413091049283837" + "mAssetSupply": "103070395130986509923630125", + "LPTokenSupply": "6539979400659743015035127" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1686290776757606285312", - "outputQty0": "1696846707642523349278", - "outputQty": "1694729556940990148303", - "swapFee1": "1011774466054563771", - "swapFee2": "678738683057009339", + "type": "mint", + "inputIndex": 2, + "inputQty": "2126047479143906304", + "outputQty0": "2114314300488050396", + "outputQty": "2083203231526818374", "mpReserves": [ - "56396838931433773277864928", - "26501006064219681158179381", - "29549141058215664109328926" + "54544682083019123380287474", + "8753017894062370862743637", + "40092974710823290767668961" ], "fpReserves": [ - "13370642417793023559870446", - "11412719576343632719418274" + "3995341436887207456863574", + "2634497660463547872978237" ], - "mAssetSupply": "112423049064805824338626112", - "LPTokenSupply": "24626428584813780048454902" + "mAssetSupply": "103070397245300810411680521", + "LPTokenSupply": "6539981483862974541853501" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "52045650957458792", - "outputQty0": "52371440515160522", - "outputQty": "52431194480154991", - "swapFee1": "31227390574475", - "swapFee2": "20948576206064", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "257834583952283362394112", + "outputQty0": "256403057401319803590975", + "outputQty": "255262015525985863856534", + "swapFee": "202083511826402727802", "mpReserves": [ - "56396838879002578797709937", - "26501006064219681158179381", - "29549141058215664109328926" + "54544682083019123380287474", + "8753017894062370862743637", + "40350809294775574130063073" ], "fpReserves": [ - "13370642365421583044709924", - "11412719576343632719418274" + "4251744494288527260454549", + "2379235644937562009121703" ], - "mAssetSupply": "112423049012455332399671654", - "LPTokenSupply": "24626428532771251830053557" + "mAssetSupply": "103326800302702130215271496", + "LPTokenSupply": "6540001692214157182126281" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2103619693635474817024", - "outputQty0": "2116787170122852154456", - "outputQty": "2112927374320403741779", - "swapFee1": "1262171816181284890", - "swapFee2": "846714868049140861", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "67876231544733207363584", + "outputQty0": "67235573426811591660111", + "outputQty": "66871673374181342172229", + "swapFee": "52965022926808261393", "mpReserves": [ - "56396838879002578797709937", - "26498893136845360754437602", - "29549141058215664109328926" + "54612558314563856587651058", + "8753017894062370862743637", + "40350809294775574130063073" ], "fpReserves": [ - "13368525578251460192555468", - "11412719576343632719418274" + "4318980067715338852114660", + "2312363971563380666949474" ], - "mAssetSupply": "112420933072000077596658059", - "LPTokenSupply": "24624325039294797973365022" + "mAssetSupply": "103394035876128941806931607", + "LPTokenSupply": "6540006988716449862952420" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "624000767322537472", - "outputQty0": "623040230850256762", - "outputQty": "621883266981729881", - "swapFee": "495034588266900", + "type": "mint", + "inputIndex": 2, + "inputQty": "9924919681628722", + "outputQty0": "9869523312101202", + "outputQty": "9717117834593571", "mpReserves": [ - "56396839503003346120247409", - "26498893136845360754437602", - "29549141058215664109328926" + "54612558314563856587651058", + "8753017894062370862743637", + "40350809304700493811691795" ], "fpReserves": [ - "13368526201291691042812230", - "11412718954460365737688393" + "4318980077584862164215862", + "2312363971563380666949474" ], - "mAssetSupply": "112420933695040308446914821", - "LPTokenSupply": "24624325039344301432191712" + "mAssetSupply": "103394035885998465119032809", + "LPTokenSupply": "6540006998433567697545991" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "653263984856830574592", - "outputQty0": "652258392957503605246", - "outputQty": "651046936436722795984", - "swapFee": "518249743983321016", + "type": "redeem", + "outputIndex": 0, + "inputQty": "15493301568140522553344", + "outputQty0": "15726758198432733232236", + "outputQty": "15867177247174786069400", + "swapFee1": "9295980940884313532", + "swapFee2": "9436054919059639939", "mpReserves": [ - "56397492766988202950822001", - "26498893136845360754437602", - "29549141058215664109328926" + "54596691137316681801581658", + "8753017894062370862743637", + "40350809304700493811691795" ], "fpReserves": [ - "13369178459684648546417476", - "11412067907523929014892409" + "4303253319386429430983626", + "2312363971563380666949474" ], - "mAssetSupply": "112421585953433265950520067", - "LPTokenSupply": "24624325091169275830523813" + "mAssetSupply": "103378318563854951445440512", + "LPTokenSupply": "6524514626463521263424000" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "73532850977086461968384", - "outputQty0": "73992490625850615168381", - "outputQty": "73857106064557887570901", - "swapFee1": "44119710586251877181", - "swapFee2": "29596996250340246067", + "type": "swap_fp_to_mp", + "inputQty": "9386957867756441600", + "outputIndex": 0, + "outputQty": "9516428305607820003", + "swapFee": "0", + "redemptionFee": "5659336699255990", "mpReserves": [ - "56397492766988202950822001", - "26425036030780802866866701", - "29549141058215664109328926" + "54596681620888376193761655", + "8753017894062370862743637", + "40350809304700493811691795" ], "fpReserves": [ - "13295185969058797931249095", - "11412067907523929014892409" + "4303243887158597337666903", + "2312373358521248423391074" ], - "mAssetSupply": "112347623059803665675597753", - "LPTokenSupply": "24550796652163247993743147" + "mAssetSupply": "103378309137286456051379779", + "LPTokenSupply": "6524514626463521263424000" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "799504048060959", - "outputQty0": "800179845098939", - "outputQty": "798723602309324", - "swapFee": "635790148467", + "type": "swap_fp_to_mp", + "inputQty": "71670275823304481701888", + "outputIndex": 2, + "outputQty": "72358971450909865605490", + "swapFee": "0", + "redemptionFee": "43199343613695822284", "mpReserves": [ - "56397492766988202950822001", - "26425036030780802866866701", - "29549141059015168157389885" + "54596681620888376193761655", + "8753017894062370862743637", + "40278450333249583946086305" ], "fpReserves": [ - "13295185969858977776348034", - "11412067906725205412583085" + "4231244981135770967193019", + "2384043634344552905092962" ], - "mAssetSupply": "112347623060603845520696692", - "LPTokenSupply": "24550796652163311572757993" + "mAssetSupply": "103306353430607243376728179", + "LPTokenSupply": "6524514626463521263424000" }, { "type": "mint", "inputIndex": 1, - "inputQty": "64387244674724424318976", - "outputQty0": "64479518648676587888162", - "outputQty": "64040494271045801004226", + "inputQty": "335346259997023010816", + "outputQty0": "351362483821523913081", + "outputQty": "345998234446803871951", "mpReserves": [ - "56397492766988202950822001", - "26489423275455527291185677", - "29549141059015168157389885" + "54596681620888376193761655", + "8753353240322367885754453", + "40278450333249583946086305" ], "fpReserves": [ - "13359665488507654364236196", - "11412067906725205412583085" + "4231596343619592491106100", + "2384043634344552905092962" ], - "mAssetSupply": "112412102579252522108584854", - "LPTokenSupply": "24614837146434357373762219" + "mAssetSupply": "103306704793091064900641260", + "LPTokenSupply": "6524860624697968067295951" }, { "type": "swap_fp_to_mp", - "inputQty": "8716570878331155644416", + "inputQty": "1144945803289251454910464", "outputIndex": 1, - "outputQty": "8709790525966441633826", + "outputQty": "1086859080428160531022901", "swapFee": "0", - "redemptionFee": "3490289131641831704", + "redemptionFee": "688019163822414780988", "mpReserves": [ - "56397492766988202950822001", - "26480713484929560849551851", - "29549141059015168157389885" + "54596681620888376193761655", + "7666494159894207354731552", + "40278450333249583946086305" ], "fpReserves": [ - "13350939765678549784974794", - "11420784477603536568227501" + "3084897737248901189458041", + "3528989437633804360003426" ], - "mAssetSupply": "112403380346712549171155156", - "LPTokenSupply": "24614837146434357373762219" + "mAssetSupply": "102160694205884196013774189", + "LPTokenSupply": "6524860624697968067295951" }, { - "type": "swap_fp_to_mp", - "inputQty": "1649658432437031796736", - "outputIndex": 1, - "outputQty": "1648364329917715254631", - "swapFee": "0", - "redemptionFee": "660552397552498080", + "type": "mint", + "inputIndex": 2, + "inputQty": "72284926707839996526592", + "outputQty0": "71807672106124700560757", + "outputQty": "70872082667388440455266", "mpReserves": [ - "56397492766988202950822001", - "26479065120599643134297220", - "29549141059015168157389885" + "54596681620888376193761655", + "7666494159894207354731552", + "40350735259957423942612897" ], "fpReserves": [ - "13349288384684668539772560", - "11422434136035973600024237" + "3156705409355025890018798", + "3528989437633804360003426" ], - "mAssetSupply": "112401729626271065478451002", - "LPTokenSupply": "24614837146434357373762219" + "mAssetSupply": "102232501877990320714334946", + "LPTokenSupply": "6595732707365356507751217" }, { - "type": "swap_fp_to_mp", - "inputQty": "106619408579414972170240", + "type": "redeem", "outputIndex": 0, - "outputQty": "106845976588836314366235", - "swapFee": "0", - "redemptionFee": "42689739528235980134", + "inputQty": "20823067903313861148672", + "outputQty0": "21085908158610779580709", + "outputQty": "21303655858505214363422", + "swapFee1": "12493840741988316689", + "swapFee2": "12651544895166467748", "mpReserves": [ - "56290646790399366636455766", - "26479065120599643134297220", - "29549141059015168157389885" + "54575377965029870979398233", + "7666494159894207354731552", + "40350735259957423942612897" ], "fpReserves": [ - "13242564035864078589437446", - "11529053544615388572194477" + "3135619501196415110438089", + "3528989437633804360003426" ], - "mAssetSupply": "112295047967190003764096022", - "LPTokenSupply": "24614837146434357373762219" + "mAssetSupply": "102211428621376605101221985", + "LPTokenSupply": "6574910888846116845434213" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "639997544373262592", - "outputQty0": "639014897393126092", - "outputQty": "637913376156176721", - "swapFee": "507757757473316", + "type": "mint", + "inputIndex": 2, + "inputQty": "22154186662965465088", + "outputQty0": "22007661756006828157", + "outputQty": "21720513657860783601", "mpReserves": [ - "56290647430396911009718358", - "26479065120599643134297220", - "29549141059015168157389885" + "54575377965029870979398233", + "7666494159894207354731552", + "40350757414144086908077985" ], "fpReserves": [ - "13242564674878975982563538", - "11529052906702012416017756" + "3135641508858171117266246", + "3528989437633804360003426" ], - "mAssetSupply": "112295048606204901157222114", - "LPTokenSupply": "24614837146485133149509550" + "mAssetSupply": "102211450629038361108050142", + "LPTokenSupply": "6574932609359774706217814" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "26221151403270041763840", - "outputQty0": "26180875577183516246543", - "outputQty": "26135369148477749803850", - "swapFee": "20803116271840180270", + "type": "redeem", + "outputIndex": 0, + "inputQty": "16903463092174597390336", + "outputQty0": "17116486055055092078670", + "outputQty": "17293160105090426343693", + "swapFee1": "10142077855304758434", + "swapFee2": "10269891633033055247", "mpReserves": [ - "56316868581800181051482198", - "26479065120599643134297220", - "29549141059015168157389885" + "54558084804924780553054540", + "7666494159894207354731552", + "40350757414144086908077985" ], "fpReserves": [ - "13268745550456159498810081", - "11502917537553534666213906" + "3118525022803116025187576", + "3528989437633804360003426" ], - "mAssetSupply": "112321229481782084673468657", - "LPTokenSupply": "24614839226796760333527577" + "mAssetSupply": "102194344412874939049026719", + "LPTokenSupply": "6558030160475385639303321" }, { - "type": "swap_fp_to_mp", - "inputQty": "194065165778282151936", - "outputIndex": 0, - "outputQty": "194471450368286656121", - "swapFee": "0", - "redemptionFee": "77700129167770867", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1001196844069891891789824", + "outputQty0": "994433489513189360038980", + "outputQty": "992411627867047352596354", + "swapFee": "784796816242178541117", "mpReserves": [ - "56316674110349812764826077", - "26479065120599643134297220", - "29549141059015168157389885" + "54558084804924780553054540", + "7666494159894207354731552", + "41351954258213978799867809" ], "fpReserves": [ - "13268551300133240071642031", - "11503111602719312948365842" + "4112958512316305385226556", + "2536577809766757007407072" ], - "mAssetSupply": "112321035309159294414071474", - "LPTokenSupply": "24614839226796760333527577" + "mAssetSupply": "103188777902388128409065699", + "LPTokenSupply": "6558108640157009857157432" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "25523791157622653059072", - "outputQty0": "25484555814980498488639", - "outputQty": "25439541546808990657456", - "swapFee": "20249543290921553653", + "type": "mint", + "inputIndex": 2, + "inputQty": "13268936020612604", + "outputQty0": "13177452053328753", + "outputQty": "12978803349930519", "mpReserves": [ - "56342197901507435417885149", - "26479065120599643134297220", - "29549141059015168157389885" + "54558084804924780553054540", + "7666494159894207354731552", + "41351954271482914820480413" ], "fpReserves": [ - "13294035855948220570130670", - "11477672061172503957708386" + "4112958525493757438555309", + "2536577809766757007407072" ], - "mAssetSupply": "112346519864974274912560113", - "LPTokenSupply": "24614841251751089425682942" + "mAssetSupply": "103188777915565580462394452", + "LPTokenSupply": "6558108653135813207087951" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1760763230112668188672", - "outputQty0": "1763274871373693744754", - "outputQty": "1760133906132281634770", - "swapFee": "1401049322650119253", + "inputIndex": 2, + "inputQty": "23509068077743194112", + "outputQty0": "23346982449698679867", + "outputQty": "23246297515836922700", + "swapFee": "18396023143312043", "mpReserves": [ - "56342197901507435417885149", - "26480825883829755802485892", - "29549141059015168157389885" + "54558084804924780553054540", + "7666494159894207354731552", + "41351977780550992563674525" ], "fpReserves": [ - "13295799130819594263875424", - "11475911927266371676073616" + "4112981872476207137235176", + "2536554563469241170484372" ], - "mAssetSupply": "112348283139845648606304867", - "LPTokenSupply": "24614841391856021690694867" + "mAssetSupply": "103188801262548030161074319", + "LPTokenSupply": "6558108654975415521419155" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "59089661710770628460544", - "outputQty0": "58998717183866213751713", - "outputQty": "58597978303420606384413", + "inputIndex": 1, + "inputQty": "64508295234109208", + "outputQty0": "68580501955004653", + "outputQty": "67546654609714529", "mpReserves": [ - "56401287563218206046345693", - "26480825883829755802485892", - "29549141059015168157389885" + "54558084804924780553054540", + "7666494224402502588840760", + "41351977780550992563674525" ], "fpReserves": [ - "13354797848003460477627137", - "11475911927266371676073616" + "4112981941056709092239829", + "2536554563469241170484372" ], - "mAssetSupply": "112407281857029514820056580", - "LPTokenSupply": "24673439370159442297079280" + "mAssetSupply": "103188801331128532116078972", + "LPTokenSupply": "6558108722522070131133684" }, { - "type": "swap_fp_to_mp", - "inputQty": "7489000513583374336", - "outputIndex": 2, - "outputQty": "7487247461565878743", - "swapFee": "0", - "redemptionFee": "2998638379432268", + "type": "mint", + "inputIndex": 2, + "inputQty": "34434978899276064", + "outputQty0": "34197563373571274", + "outputQty": "33682036960131623", "mpReserves": [ - "56401287563218206046345693", - "26480825883829755802485892", - "29549133571767706591511142" + "54558084804924780553054540", + "7666494224402502588840760", + "41351977814985971462950589" ], "fpReserves": [ - "13354790351407511896954809", - "11475919416266885259447952" + "4112981975254272465811103", + "2536554563469241170484372" ], - "mAssetSupply": "112407274363432204618816520", - "LPTokenSupply": "24673439370159442297079280" + "mAssetSupply": "103188801365326095489650246", + "LPTokenSupply": "6558108756204107091265307" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "223008727722062", - "outputQty0": "222665188050807", - "outputQty": "222261636377515", - "swapFee": "176920985224", + "inputIndex": 2, + "inputQty": "43769719313614489255936", + "outputQty0": "43467679924139868568408", + "outputQty": "43274977696857024552352", + "swapFee": "34249327337898459636", "mpReserves": [ - "56401287563441214774067755", - "26480825883829755802485892", - "29549133571767706591511142" + "54558084804924780553054540", + "7666494224402502588840760", + "41395747534299585952206525" ], "fpReserves": [ - "13354790351630177085005616", - "11475919416044623623070437" + "4156449655178412334379511", + "2493279585772384145932020" ], - "mAssetSupply": "112407274363654869806867327", - "LPTokenSupply": "24673439370159459989177802" + "mAssetSupply": "103232269045250235358218654", + "LPTokenSupply": "6558112181136840881111270" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "507806113520527671296", - "outputQty0": "507023844179013403128", - "outputQty": "503576431647637541101", - "mpReserves": [ - "56401795369554735301739051", - "26480825883829755802485892", - "29549133571767706591511142" - ], - "fpReserves": [ - "13355297375474356098408744", - "11475919416044623623070437" - ], - "mAssetSupply": "112407781387499048820270455", - "LPTokenSupply": "24673942946591107626718903" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "24583166031155727171584", - "outputQty0": "24736537274035306705601", - "outputQty": "24705651901333753381897", - "swapFee1": "14749899618693436302", - "swapFee2": "9894614909614122682", + "inputIndex": 1, + "inputQty": "83907932543654027067392", + "outputQty0": "89152437692098147979344", + "outputQty": "87796799987253506530413", "mpReserves": [ - "56401795369554735301739051", - "26480825883829755802485892", - "29524427919866372838129245" + "54558084804924780553054540", + "7750402156946156615908152", + "41395747534299585952206525" ], "fpReserves": [ - "13330560838200320791703143", - "11475919416044623623070437" + "4245602092870510482358855", + "2493279585772384145932020" ], - "mAssetSupply": "112383054744839923127687536", - "LPTokenSupply": "24649361255549913768890949" + "mAssetSupply": "103321421482942333506197998", + "LPTokenSupply": "6645908981124094387641683" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "440050856502510419968", - "outputQty0": "442795199461074838443", - "outputQty": "441986793893230196365", - "swapFee1": "264030513901506251", - "swapFee2": "177118079784429935", + "outputIndex": 0, + "inputQty": "142804402643835755167744", + "outputQty0": "144919130993914732254676", + "outputQty": "146385728274116303748077", + "swapFee1": "85682641586301453100", + "swapFee2": "86951478596348839352", "mpReserves": [ - "56401795369554735301739051", - "26480383897035862572289527", - "29524427919866372838129245" + "54411699076650664249306463", + "7750402156946156615908152", + "41395747534299585952206525" ], "fpReserves": [ - "13330118043000859716864700", - "11475919416044623623070437" + "4100682961876595750104179", + "2493279585772384145932020" ], - "mAssetSupply": "112382612126758541837279028", - "LPTokenSupply": "24648921231096462648621606" + "mAssetSupply": "103176589303427015122782674", + "LPTokenSupply": "6503113146744417262619249" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "181324982245913031344128", - "outputQty0": "181044688122695880396175", - "outputQty": "180700719563450735955629", - "swapFee": "143848673024456933876", + "inputQty": "10417199516637261824", + "outputQty0": "10306828548312601842", + "outputQty": "10150806177679327240", "mpReserves": [ - "56583120351800648333083179", - "26480383897035862572289527", - "29524427919866372838129245" + "54411709493850180886568287", + "7750402156946156615908152", + "41395747534299585952206525" ], "fpReserves": [ - "13511162731123555597260875", - "11295218696481172887114808" + "4100693268705144062706021", + "2493279585772384145932020" ], - "mAssetSupply": "112563656814881237717675203", - "LPTokenSupply": "24648935615963765094314993" + "mAssetSupply": "103176599610255563435384516", + "LPTokenSupply": "6503123297550594941946489" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "5297342327701444231168", - "outputQty0": "5330895379743506077326", - "outputQty": "5321109590629891194989", - "swapFee1": "3178405396620866538", - "swapFee2": "2132358151897402430", + "outputIndex": 2, + "inputQty": "227677445641822732288", + "outputQty0": "231038221564893165564", + "outputQty": "232485821200492433857", + "swapFee1": "136606467385093639", + "swapFee2": "138622932938935899", "mpReserves": [ - "56583120351800648333083179", - "26475062787445232681094538", - "29524427919866372838129245" + "54411709493850180886568287", + "7750402156946156615908152", + "41395515048478385459772668" ], "fpReserves": [ - "13505831835743812091183549", - "11295218696481172887114808" + "4100462230483579169540457", + "2493279585772384145932020" ], - "mAssetSupply": "112558328051859646109000307", - "LPTokenSupply": "24643638591476603312170478" + "mAssetSupply": "103176368710656931481154851", + "LPTokenSupply": "6502895633765599857723564" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "17180177945127301414912", - "outputQty0": "17194909945319016613968", - "outputQty": "17076406385665662272461", + "type": "swap_fp_to_mp", + "inputQty": "28687309097972122255360", + "outputIndex": 2, + "outputQty": "28970013725097730169595", + "swapFee": "0", + "redemptionFee": "17273846600294126483", "mpReserves": [ - "56583120351800648333083179", - "26475062787445232681094538", - "29541608097811500139544157" + "54411709493850180886568287", + "7750402156946156615908152", + "41366545034753287729603073" ], "fpReserves": [ - "13523026745689131107797517", - "11295218696481172887114808" + "4071672486149755625401696", + "2521966894870356268187380" ], - "mAssetSupply": "112575522961804965125614275", - "LPTokenSupply": "24660714997862268974442939" + "mAssetSupply": "103147596240169708231142573", + "LPTokenSupply": "6502895633765599857723564" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "9623008637472494059520", - "outputQty0": "9683983113725446901768", - "outputQty": "9671820435477431130835", - "swapFee1": "5773805182483496435", - "swapFee2": "3873593245490178760", + "inputQty": "36341877236203798921216", + "outputQty0": "36875505638488840527613", + "outputQty": "37106067056941368809573", + "swapFee1": "21805126341722279352", + "swapFee2": "22125303383093304316", "mpReserves": [ - "56583120351800648333083179", - "26475062787445232681094538", - "29531936277376022708413322" + "54411709493850180886568287", + "7750402156946156615908152", + "41329438967696346360793500" ], "fpReserves": [ - "13513342762575405660895749", - "11295218696481172887114808" + "4034796980511266784874083", + "2521966894870356268187380" ], - "mAssetSupply": "112565842852284485168891267", - "LPTokenSupply": "24651092566605314728733062" + "mAssetSupply": "103110742859834602483919276", + "LPTokenSupply": "6466555937042030231030283" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "536941159310787912663040", - "outputQty0": "540308476769388430600575", - "outputQty": "540923946770556604326583", - "swapFee1": "322164695586472747597", - "swapFee2": "216123390707755372240", - "mpReserves": [ - "56042196405030091728756596", - "26475062787445232681094538", - "29531936277376022708413322" - ], - "fpReserves": [ - "12973034285806017230295174", - "11295218696481172887114808" - ], - "mAssetSupply": "112025750498905804493662932", - "LPTokenSupply": "24114183623764085463344781" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "16113894631451605860352", "outputIndex": 1, - "outputQty": "16099467547006175660906", - "swapFee": "0", - "redemptionFee": "6451460862462644395", + "inputQty": "8284269954588557312", + "outputQty0": "8405811773650446022", + "outputQty": "7913600656752432810", + "swapFee1": "4970561972753134", + "swapFee2": "5043487064190267", "mpReserves": [ - "56042196405030091728756596", - "26458963319898226505433632", - "29531936277376022708413322" + "54411709493850180886568287", + "7750394243345499863475342", + "41329438967696346360793500" ], "fpReserves": [ - "12956905633649860619306814", - "11311332591112624492975160" + "4034788574699493134428061", + "2521966894870356268187380" ], - "mAssetSupply": "112009628298210510345318967", - "LPTokenSupply": "24114183623764085463344781" + "mAssetSupply": "103110734459066315897663521", + "LPTokenSupply": "6466547653269131839748284" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "48146408614476728238080", - "outputQty0": "48445101753954239474641", - "outputQty": "48499656783566249647047", - "swapFee1": "28887845168686036942", - "swapFee2": "19378040701581695789", + "outputIndex": 1, + "inputQty": "133066923893752569266176", + "outputQty0": "135011709598779758652956", + "outputQty": "126985438083633962201363", + "swapFee1": "79840154336251541559", + "swapFee2": "81007025759267855191", "mpReserves": [ - "55993696748246525479109549", - "26458963319898226505433632", - "29531936277376022708413322" + "54411709493850180886568287", + "7623408805261865901273979", + "41329438967696346360793500" ], "fpReserves": [ - "12908460531895906379832173", - "11311332591112624492975160" + "3899776865100713375775105", + "2521966894870356268187380" ], - "mAssetSupply": "111961202574497257687540115", - "LPTokenSupply": "24066040103934125603710395" + "mAssetSupply": "102975803756493295406865756", + "LPTokenSupply": "6333488713390812895636263" }, { "type": "swap_fp_to_mp", - "inputQty": "65314555196231190052864", - "outputIndex": 0, - "outputQty": "65443168406568720160628", + "inputQty": "142852706221680307994624", + "outputIndex": 2, + "outputQty": "144157932055212936066622", "swapFee": "0", - "redemptionFee": "26147891617696964612", + "redemptionFee": "85947429026479445452", "mpReserves": [ - "55928253579839956758948921", - "26458963319898226505433632", - "29531936277376022708413322" + "54411709493850180886568287", + "7623408805261865901273979", + "41185281035641133424726878" ], "fpReserves": [ - "12843090802851663968301763", - "11376647146308855683028024" + "3756531150056580966687155", + "2664819601092036576182004" ], - "mAssetSupply": "111895858993344632972974317", - "LPTokenSupply": "24066040103934125603710395" + "mAssetSupply": "102832643988878189477223258", + "LPTokenSupply": "6333488713390812895636263" }, { "type": "swap_fp_to_mp", - "inputQty": "1693842573023577856", + "inputQty": "47138304069753888768", "outputIndex": 0, - "outputQty": "1697113312327240940", + "outputQty": "47737562480676096020", "swapFee": "0", - "redemptionFee": "678084575196906", + "redemptionFee": "28350562268152576", "mpReserves": [ - "55928251882726644431707981", - "26458963319898226505433632", - "29531936277376022708413322" + "54411661756287700210472267", + "7623408805261865901273979", + "41185281035641133424726878" ], "fpReserves": [ - "12843089107640225976036482", - "11376648840151428706605880" + "3756483899119467379059044", + "2664866739396106330070772" ], - "mAssetSupply": "111895857298811279555905942", - "LPTokenSupply": "24066040103934125603710395" + "mAssetSupply": "102832596766291638157747723", + "LPTokenSupply": "6333488713390812895636263" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1333454301635760120397824", - "outputQty0": "1331385552081963597509595", - "outputQty": "1328219833351913325883325", - "swapFee": "1057780623266171912883", + "type": "mint", + "inputIndex": 2, + "inputQty": "1051620354904898273280", + "outputQty0": "1044359714537307265806", + "outputQty": "1029049151122118272811", "mpReserves": [ - "57261706184362404552105805", - "26458963319898226505433632", - "29531936277376022708413322" + "54411661756287700210472267", + "7623408805261865901273979", + "41186332655996038323000158" ], "fpReserves": [ - "14174474659722189573546077", - "10048429006799515380722555" + "3757528258834004686324850", + "2664866739396106330070772" ], - "mAssetSupply": "113227242850893243153415537", - "LPTokenSupply": "24066145881996452220901683" + "mAssetSupply": "102833641126006175465013529", + "LPTokenSupply": "6334517762541935013909074" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "155566461403249489477632", - "outputQty0": "155319689127005103943921", - "outputQty": "154158735944179511124801", + "inputIndex": 1, + "inputQty": "808607908773148800", + "outputQty0": "859900212622763245", + "outputQty": "847293496405960244", "mpReserves": [ - "57417272645765654041583437", - "26458963319898226505433632", - "29531936277376022708413322" + "54411661756287700210472267", + "7623409613869774674422779", + "41186332655996038323000158" ], "fpReserves": [ - "14329794348849194677489998", - "10048429006799515380722555" + "3757529118734217309088095", + "2664866739396106330070772" ], - "mAssetSupply": "113382562540020248257359458", - "LPTokenSupply": "24220304617940631732026484" + "mAssetSupply": "102833641985906388087776774", + "LPTokenSupply": "6334518609835431419869318" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "71162966341246053777408", - "outputQty0": "71049704016032566320797", - "outputQty": "70516864479149509821401", + "type": "redeem", + "outputIndex": 0, + "inputQty": "29764965111413010857984", + "outputQty0": "30189322667183064500861", + "outputQty": "30500117845478391702493", + "swapFee1": "17858979066847806514", + "swapFee2": "18113593600309838700", "mpReserves": [ - "57488435612106900095360845", - "26458963319898226505433632", - "29531936277376022708413322" + "54381161638442221818769774", + "7623409613869774674422779", + "41186332655996038323000158" ], "fpReserves": [ - "14400844052865227243810795", - "10048429006799515380722555" + "3727339796067034244587234", + "2664866739396106330070772" ], - "mAssetSupply": "113453612244036280823680255", - "LPTokenSupply": "24290821482419781241847885" + "mAssetSupply": "102803470776832805333114613", + "LPTokenSupply": "6304755430621925093791985" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1367454985088751682715648", - "outputQty0": "1369340541178052982875159", - "outputQty": "1363479894366459249082932", - "swapFee": "1087087710516107360715", + "inputIndex": 2, + "inputQty": "185748702869464218075136", + "outputQty0": "184461125936030756208153", + "outputQty": "183799204812132775801988", + "swapFee": "145397550181198086500", "mpReserves": [ - "57488435612106900095360845", - "27826418304986978188149280", - "29531936277376022708413322" + "54381161638442221818769774", + "7623409613869774674422779", + "41372081358865502541075294" ], "fpReserves": [ - "15770184594043280226685954", - "8684949112433056131639623" + "3911800922003065000795387", + "2481067534583973554268784" ], - "mAssetSupply": "114822952785214333806555414", - "LPTokenSupply": "24290930191190832852583956" + "mAssetSupply": "102987931902768836089322766", + "LPTokenSupply": "6304769970376943213600635" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4770235284047688368128", - "outputQty0": "4774811089174650608506", - "outputQty": "4749238057233206696434", - "swapFee": "3788042362405617814", + "type": "mint", + "inputIndex": 0, + "inputQty": "52987987501206683648", + "outputQty0": "52417305384647053681", + "outputQty": "51629080996307102284", "mpReserves": [ - "57488435612106900095360845", - "27826418304986978188149280", - "29536706512660070396781450" + "54381214626429723025453422", + "7623409613869774674422779", + "41372081358865502541075294" ], "fpReserves": [ - "15774959405132454877294460", - "8680199874375822924943189" + "3911853339308449647849068", + "2481067534583973554268784" ], - "mAssetSupply": "114827727596303508457163920", - "LPTokenSupply": "24290930569995069093145737" + "mAssetSupply": "102987984320074220736376447", + "LPTokenSupply": "6304821599457939520702919" }, { "type": "mint", "inputIndex": 0, - "inputQty": "108263927697578185981952", - "outputQty0": "108098742445253589950788", - "outputQty": "107197079229128685405490", + "inputQty": "230852667319944928", + "outputQty0": "228366376096106005", + "outputQty": "224932315424416118", "mpReserves": [ - "57596699539804478281342797", - "27826418304986978188149280", - "29536706512660070396781450" + "54381214857282390345398350", + "7623409613869774674422779", + "41372081358865502541075294" ], "fpReserves": [ - "15883058147577708467245248", - "8680199874375822924943189" + "3911853567674825743955073", + "2481067534583973554268784" ], - "mAssetSupply": "114935826338748762047114708", - "LPTokenSupply": "24398127649224197778551227" + "mAssetSupply": "102987984548440596832482452", + "LPTokenSupply": "6304821824390254945119037" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1014704401431268", - "outputQty0": "1016001168224961", - "outputQty": "1007514514824987", + "inputQty": "66998719122081062912", + "outputQty0": "71259500493687038373", + "outputQty": "70187933251840095874", "mpReserves": [ - "57596699539804478281342797", - "27826418306001682589580548", - "29536706512660070396781450" + "54381214857282390345398350", + "7623476612588896755485691", + "41372081358865502541075294" ], "fpReserves": [ - "15883058148593709635470209", - "8680199874375822924943189" + "3911924827175319430993446", + "2481067534583973554268784" ], - "mAssetSupply": "114935826339764763215339669", - "LPTokenSupply": "24398127650231712293376214" + "mAssetSupply": "102988055807941090519520825", + "LPTokenSupply": "6304892012323506785214911" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "4898500323001810026496", - "outputQty0": "4936795577254424488399", - "outputQty": "4942373400912340823657", - "swapFee1": "2939100193801086015", - "swapFee2": "1974718230901769795", + "type": "swap_fp_to_mp", + "inputQty": "413608353383989750267904", + "outputIndex": 2, + "outputQty": "417163996951289228828617", + "swapFee": "0", + "redemptionFee": "248720674752473675202", "mpReserves": [ - "57591757166403565940519140", - "27826418306001682589580548", - "29536706512660070396781450" + "54381214857282390345398350", + "7623476612588896755485691", + "40954917361914213312246677" ], "fpReserves": [ - "15878121353016455210981810", - "8680199874375822924943189" + "3497390369254529972323180", + "2894675887967963304536688" ], - "mAssetSupply": "114930891518905739692621065", - "LPTokenSupply": "24393229443818729863458319" + "mAssetSupply": "102573770070695053534525761", + "LPTokenSupply": "6304892012323506785214911" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "83861601253664254590976", - "outputQty0": "83968230095971488913920", - "outputQty": "83506553018383405273102", - "swapFee": "66612921384066625727", + "type": "mint", + "inputIndex": 2, + "inputQty": "2489257657493304668848128", + "outputQty0": "2471377210877812041530923", + "outputQty": "2433977585617412586699708", "mpReserves": [ - "57591757166403565940519140", - "27910279907255346844171524", - "29536706512660070396781450" + "54381214857282390345398350", + "7623476612588896755485691", + "43444175019407517981094805" ], "fpReserves": [ - "15962089583112426699895730", - "8596693321357439519670087" + "5968767580132342013854103", + "2894675887967963304536688" ], - "mAssetSupply": "115014859749001711181534985", - "LPTokenSupply": "24393236105110868270120891" + "mAssetSupply": "105045147281572865576056684", + "LPTokenSupply": "8738869597940919371914619" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1302341187349563245068288", - "outputQty0": "1312400647740354576151044", - "outputQty": "1313838599363057611982873", - "swapFee1": "781404712409737947040", - "swapFee2": "524960259096141830460", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "10634500920867630874624", + "outputQty0": "10521079438327234246992", + "outputQty": "10450266455350194602103", + "swapFee": "8282472837438791805", "mpReserves": [ - "56277918567040508328536267", - "27910279907255346844171524", - "29536706512660070396781450" + "54391849358203257976272974", + "7623476612588896755485691", + "43444175019407517981094805" ], "fpReserves": [ - "14649688935372072123744686", - "8596693321357439519670087" + "5979288659570669248101095", + "2884225621512613109934585" ], - "mAssetSupply": "113702984061520452747214401", - "LPTokenSupply": "23090973058232545998847307" + "mAssetSupply": "105055668361011192810303676", + "LPTokenSupply": "8738870426188203115793799" }, { - "type": "swap_fp_to_mp", - "inputQty": "790022240883484194242560", - "outputIndex": 2, - "outputQty": "791584603614452193107335", - "swapFee": "0", - "redemptionFee": "317065036250301336108", + "type": "mint", + "inputIndex": 0, + "inputQty": "1409088812484123951104", + "outputQty0": "1394058232270146819626", + "outputQty": "1371774284757612968712", "mpReserves": [ - "56277918567040508328536267", - "27910279907255346844171524", - "28745121909045618203674115" + "54393258447015742100224078", + "7623476612588896755485691", + "43444175019407517981094805" ], "fpReserves": [ - "13857026344746318783472487", - "9386715562240923713912647" + "5980682717802939394920721", + "2884225621512613109934585" ], - "mAssetSupply": "112910638535930949708278310", - "LPTokenSupply": "23090973058232545998847307" + "mAssetSupply": "105057062419243462957123302", + "LPTokenSupply": "8740242200472960728762511" }, { - "type": "swap_fp_to_mp", - "inputQty": "345557716626062835712", - "outputIndex": 2, - "outputQty": "346018552307765046173", - "swapFee": "0", - "redemptionFee": "138602995882442096", + "type": "mint", + "inputIndex": 2, + "inputQty": "25071828252044", + "outputQty0": "24883329144240", + "outputQty": "24485559563661", "mpReserves": [ - "56277918567040508328536267", - "27910279907255346844171524", - "28744775890493310438627942" + "54393258447015742100224078", + "7623476612588896755485691", + "43444175019432589809346849" ], "fpReserves": [ - "13856679837256612678230129", - "9387061119957549776748359" + "5980682717827822724064961", + "2884225621512613109934585" ], - "mAssetSupply": "112910292167044239485478048", - "LPTokenSupply": "23090973058232545998847307" + "mAssetSupply": "105057062419268346286267542", + "LPTokenSupply": "8740242200497446288326172" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "443359428166317038895104", - "outputQty0": "443795493131917456430466", - "outputQty": "442082388633322966466824", - "swapFee": "352293973434482707732", + "inputIndex": 0, + "inputQty": "66384943314775578771456", + "outputQty0": "65676280073628505462567", + "outputQty": "65218992389457459684216", + "swapFee": "51700055236504135672", "mpReserves": [ - "56277918567040508328536267", - "27910279907255346844171524", - "29188135318659627477523046" + "54459643390330517678995534", + "7623476612588896755485691", + "43444175019432589809346849" ], "fpReserves": [ - "14300475330388530134660595", - "8944978731324226810281535" + "6046358997901451229527528", + "2819006629123155650250369" ], - "mAssetSupply": "113354087660176156941908514", - "LPTokenSupply": "23091008287629889447118080" + "mAssetSupply": "105122738699341974791730109", + "LPTokenSupply": "8740247370502969938739739" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1672767945117601936441344", - "outputQty0": "1674561463905568037422538", - "outputQty": "1665035593628740808915800", - "swapFee": "1328755760818971228404", + "type": "mint", + "inputIndex": 0, + "inputQty": "392940826404174976", + "outputQty0": "388743011850963930", + "outputQty": "382476933352904502", "mpReserves": [ - "56277918567040508328536267", - "29583047852372948780612868", - "29188135318659627477523046" + "54459643783271344083170510", + "7623476612588896755485691", + "43444175019432589809346849" ], "fpReserves": [ - "15975036794294098172083133", - "7279943137695486001365735" + "6046359386644463080491458", + "2819006629123155650250369" ], - "mAssetSupply": "115028649124081724979331052", - "LPTokenSupply": "23091141163205971344240920" + "mAssetSupply": "105122739088084986642694039", + "LPTokenSupply": "8740247752979903291644241" }, { "type": "swap_fp_to_mp", - "inputQty": "431183958195112668823552", + "inputQty": "378547503584174735360", "outputIndex": 0, - "outputQty": "434278378198945006042360", + "outputQty": "384856711606563174187", "swapFee": "0", - "redemptionFee": "173538486698940865810", + "redemptionFee": "228584317436422613", "mpReserves": [ - "55843640188841563322493907", - "29583047852372948780612868", - "29188135318659627477523046" + "54459258926559737519996323", + "7623476612588896755485691", + "43444175019432589809346849" ], "fpReserves": [ - "15541190577546746007556092", - "7711127095890598670189287" + "6045978412782069042801506", + "2819385176626739824985729" ], - "mAssetSupply": "114594976445821071755669821", - "LPTokenSupply": "23091141163205971344240920" + "mAssetSupply": "105122358342806910041426700", + "LPTokenSupply": "8740247752979903291644241" }, { - "type": "swap_fp_to_mp", - "inputQty": "5442977798733534208", - "outputIndex": 2, - "outputQty": "5466158585167312986", - "swapFee": "0", - "redemptionFee": "2189552178814488", + "type": "mint", + "inputIndex": 1, + "inputQty": "22814624842599", + "outputQty0": "24322113676418", + "outputQty": "23930088328577", "mpReserves": [ - "55843640188841563322493907", - "29583047852372948780612868", - "29188129852501042310210060" + "54459258926559737519996323", + "7623476612611711380328290", + "43444175019432589809346849" ], "fpReserves": [ - "15541185103666298971334591", - "7711132538868397403723495" + "6045978412806391156477924", + "2819385176626739824985729" ], - "mAssetSupply": "114594970974130176898262808", - "LPTokenSupply": "23091141163205971344240920" + "mAssetSupply": "105122358342831232155103118", + "LPTokenSupply": "8740247753003833379972818" }, { - "type": "swap_fp_to_mp", - "inputQty": "21202485930667863441408", - "outputIndex": 0, - "outputQty": "21343393764219727538172", - "swapFee": "0", - "redemptionFee": "8528948507270404835", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "60957212209715838976", + "outputQty0": "64984961787875333457", + "outputQty": "64519491053282642068", + "swapFee": "51150023018499878", "mpReserves": [ - "55822296795077343594955735", - "29583047852372948780612868", - "29188129852501042310210060" + "54459258926559737519996323", + "7623537569823921096167266", + "43444175019432589809346849" ], "fpReserves": [ - "15519862732398122959244652", - "7732335024799065267164903" + "6046043397768179031811381", + "2819320657135686542343661" ], - "mAssetSupply": "114573657131810508156577704", - "LPTokenSupply": "23091141163205971344240920" + "mAssetSupply": "105122423327793020030436575", + "LPTokenSupply": "8740247758118835681822805" }, { - "type": "swap_fp_to_mp", - "inputQty": "1490018222360437456896", - "outputIndex": 0, - "outputQty": "1499882879001124161768", - "swapFee": "0", - "redemptionFee": "599362524440119500", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "99312809396441033211904", + "outputQty0": "105792007675918054675980", + "outputQty": "104997943781766777012245", + "swapFee": "83266627587913143365", "mpReserves": [ - "55820796912198342470793967", - "29583047852372948780612868", - "29188129852501042310210060" + "54459258926559737519996323", + "7722850379220362129379170", + "43444175019432589809346849" ], "fpReserves": [ - "15518364326087022660492960", - "7733825043021425704621799" + "6151835405444097086487361", + "2714322713353919765331416" ], - "mAssetSupply": "114572159324861932297945512", - "LPTokenSupply": "23091141163205971344240920" + "mAssetSupply": "105228215335468938085112555", + "LPTokenSupply": "8740256084781594473137141" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "281431024979436044288", - "outputQty0": "281715580903975621191", - "outputQty": "279241661134494842033", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "587704485283256986501120", + "outputQty0": "581468343045351701581424", + "outputQty": "575453326879984169943184", + "swapFee": "457484993047753077960", "mpReserves": [ - "55820796912198342470793967", - "29583047852372948780612868", - "29188411283526021746254348" + "55046963411842994506497443", + "7722850379220362129379170", + "43444175019432589809346849" ], "fpReserves": [ - "15518646041667926636114151", - "7733825043021425704621799" + "6733303748489448788068785", + "2138869386473935595388232" ], - "mAssetSupply": "114572441040442836273566703", - "LPTokenSupply": "23091420404867105839082953" + "mAssetSupply": "105809683678514289786693979", + "LPTokenSupply": "8740301833280899248444937" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "9336693404751586394112", - "outputQty0": "9345502991534901394041", - "outputQty": "9285671822213552630828", - "swapFee": "7410738887633078208", + "inputIndex": 0, + "inputQty": "1290192319158415523840", + "outputQty0": "1276411301071472882338", + "outputQty": "1259261295730504125339", + "swapFee": "1002856529444509872", "mpReserves": [ - "55820796912198342470793967", - "29592384545777700367006980", - "29188411283526021746254348" + "55048253604162152922021283", + "7722850379220362129379170", + "43444175019432589809346849" ], "fpReserves": [ - "15527991544659461537508192", - "7724539371199212151990971" + "6734580159790520260951123", + "2137610125178205091262893" ], - "mAssetSupply": "114581786543434371174960744", - "LPTokenSupply": "23091421145940994602390773" + "mAssetSupply": "105810960089815361259576317", + "LPTokenSupply": "8740301933566552192895924" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "12652478353324048908288", - "outputQty0": "12664399451079211245935", - "outputQty": "12553077924625128647204", + "inputIndex": 2, + "inputQty": "46618215683855927476224", + "outputQty0": "46274271335764901275866", + "outputQty": "45445213918858618284717", "mpReserves": [ - "55820796912198342470793967", - "29605037024131024415915268", - "29188411283526021746254348" + "55048253604162152922021283", + "7722850379220362129379170", + "43490793235116445736823073" ], "fpReserves": [ - "15540655944110540748754127", - "7724539371199212151990971" + "6780854431126285162226989", + "2137610125178205091262893" ], - "mAssetSupply": "114594450942885450386206679", - "LPTokenSupply": "23103974223865619731037977" + "mAssetSupply": "105857234361151126160852183", + "LPTokenSupply": "8785747147485410811180641" }, { - "type": "swap_fp_to_mp", - "inputQty": "58125725693081729105920", - "outputIndex": 2, - "outputQty": "58368232883657257702432", - "swapFee": "0", - "redemptionFee": "23380361222053841852", + "type": "mint", + "inputIndex": 1, + "inputQty": "52004267393476624", + "outputQty0": "55400465114408504", + "outputQty": "54406901543370679", "mpReserves": [ - "55820796912198342470793967", - "29605037024131024415915268", - "29130043050642364488551916" + "55048253604162152922021283", + "7722850431224629522855794", + "43490793235116445736823073" ], "fpReserves": [ - "15482205041055406144122571", - "7782665096892293881096891" + "6780854486526750276635493", + "2137610125178205091262893" ], - "mAssetSupply": "114536023420191537835416975", - "LPTokenSupply": "23103974223865619731037977" + "mAssetSupply": "105857234416551591275260687", + "LPTokenSupply": "8785747201892312354551320" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "241816732916565856", - "outputQty0": "242063269292182894", - "outputQty": "240539051342973914", - "swapFee": "191956153893921", + "inputIndex": 1, + "inputQty": "3913896975419810250752", + "outputQty0": "4169371354593318719117", + "outputQty": "4112576643345178194903", + "swapFee": "3275672156676149752", "mpReserves": [ - "55820796912198342470793967", - "29605037024131024415915268", - "29130043292459097405117772" + "55048253604162152922021283", + "7726764328200049333106546", + "43490793235116445736823073" ], "fpReserves": [ - "15482205283118675436305465", - "7782664856353242538122977" + "6785023857881343595354610", + "2133497548534859913067990" ], - "mAssetSupply": "114536023662254807127599869", - "LPTokenSupply": "23103974223884815346427369" + "mAssetSupply": "105861403787906184593979804", + "LPTokenSupply": "8785747529459528022166295" }, { - "type": "swap_fp_to_mp", - "inputQty": "16236443347789990068224", - "outputIndex": 0, - "outputQty": "16342081898118536348161", - "swapFee": "0", - "redemptionFee": "6530389808921785969", + "type": "mint", + "inputIndex": 1, + "inputQty": "1479316635638532352", + "outputQty0": "1575829010866191014", + "outputQty": "1547546050483897695", "mpReserves": [ - "55804454830300223934445806", - "29605037024131024415915268", - "29130043292459097405117772" + "55048253604162152922021283", + "7726765807516684971638898", + "43490793235116445736823073" ], "fpReserves": [ - "15465879308596370971382652", - "7798901299701032528191201" + "6785025433710354461545624", + "2133497548534859913067990" ], - "mAssetSupply": "114519704218122311584463025", - "LPTokenSupply": "23103974223884815346427369" + "mAssetSupply": "105861405363735195460170818", + "LPTokenSupply": "8785749077005578506063990" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "54955083809443484270592", - "outputQty0": "55405915815472520376313", - "outputQty": "55460490895125874359551", - "swapFee1": "32973050285666090562", - "swapFee2": "22162366326189008150", + "outputIndex": 2, + "inputQty": "332993783757307", + "outputQty0": "338876132499272", + "outputQty": "341190656536324", + "swapFee1": "199796270254", + "swapFee2": "203325679499", "mpReserves": [ - "55748994339405098060086255", - "29605037024131024415915268", - "29130043292459097405117772" + "55048253604162152922021283", + "7726765807516684971638898", + "43490793234775255080286749" ], "fpReserves": [ - "15410473392780898451006339", - "7798901299701032528191201" + "6785025433371478329046352", + "2133497548534859913067990" ], - "mAssetSupply": "114464320464673165253094862", - "LPTokenSupply": "23049022437380400428765833" + "mAssetSupply": "105861405363396522653351045", + "LPTokenSupply": "8785749076672604701933708" }, { - "type": "swap_fp_to_mp", - "inputQty": "1219935099938210304", - "outputIndex": 1, - "outputQty": "1224955651710704093", - "swapFee": "0", - "redemptionFee": "490637050179473", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "838005578810420518453248", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "305060283079740032", + "outputQty0": "324962773948343769", + "outputQty": "320527082221629716", + "swapFee": "255304276558083", "mpReserves": [ - "55748994339405098060086255", - "29605035799175372705211175", - "29130043292459097405117772" + "55048253604162152922021283", + "7726766112576968051378930", + "43490793234775255080286749" ], "fpReserves": [ - "15410472166188273002322227", - "7798902519636132466401505" + "6785025758334252277390121", + "2133497228007777691438274" ], - "mAssetSupply": "114464319238571176854590223", - "LPTokenSupply": "23049022437380400428765833" + "mAssetSupply": "105861405688359296601694814", + "LPTokenSupply": "8785749076698135129589516" }, { - "type": "swap_fp_to_mp", - "inputQty": "2815145155871250055168", - "outputIndex": 0, - "outputQty": "2833284119053067096708", - "swapFee": "0", - "redemptionFee": "1132199901604077505", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "15644738290237", + "outputQty0": "15529286424080", + "outputQty": "15317314026475", + "swapFee": "12200453558", "mpReserves": [ - "55746161055286044992989547", - "29605035799175372705211175", - "29130043292459097405117772" + "55048253604162152922021283", + "7726766112576968051378930", + "43490793234790899818576986" ], "fpReserves": [ - "15407641666434262808558952", - "7801717664792003716456673" + "6785025758349781563814201", + "2133497227992460377411799" ], - "mAssetSupply": "114461489871017068264904453", - "LPTokenSupply": "23049022437380400428765833" + "mAssetSupply": "105861405688374825888118894", + "LPTokenSupply": "8785749076698136349634871" }, { "type": "swap_fp_to_mp", - "inputQty": "108062949931211110219776", - "outputIndex": 1, - "outputQty": "108494062855654145877381", + "inputQty": "13084738153498331136", + "outputIndex": 0, + "outputQty": "13390169546497463403", "swapFee": "0", - "redemptionFee": "43455903751547019597", + "redemptionFee": "7953120392941861", "mpReserves": [ - "55746161055286044992989547", - "29496541736319718559333794", - "29130043292459097405117772" + "55048240213992606424557880", + "7726766112576968051378930", + "43490793234790899818576986" ], "fpReserves": [ - "15299001907055395259566367", - "7909780614723214826676449" + "6785012503149126660711625", + "2133510312730613875742935" ], - "mAssetSupply": "114352893567541952262931465", - "LPTokenSupply": "23049022437380400428765833" + "mAssetSupply": "105861392441127291377958179", + "LPTokenSupply": "8785749076698136349634871" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "351245677400336498688", - "outputQty0": "351579016603893412064", - "outputQty": "348538168289029167328", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "7031713159883395170304", + "outputQty0": "6956653208117956206433", + "outputQty": "6861371117771695898521", + "swapFee": "5465421332923855964", "mpReserves": [ - "55746161055286044992989547", - "29496892981997118895832482", - "29130043292459097405117772" + "55055271927152489819728184", + "7726766112576968051378930", + "43490793234790899818576986" ], "fpReserves": [ - "15299353486071999152978431", - "7909780614723214826676449" + "6791969156357244616918058", + "2126648941612842179844414" ], - "mAssetSupply": "114353245146558556156343529", - "LPTokenSupply": "23049370975548689457933161" + "mAssetSupply": "105868349094335409334164612", + "LPTokenSupply": "8785749623240269642020467" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "5962009742906735616", - "outputQty0": "6010417591442491188", - "outputQty": "6001942639158417732", - "swapFee1": "3577205845744041", - "swapFee2": "2404167036576996", + "outputIndex": 1, + "inputQty": "7749193335272099840", + "outputQty0": "7886268245540336538", + "outputQty": "7398758327276837682", + "swapFee1": "4649516001163259", + "swapFee2": "4731760947324201", "mpReserves": [ - "55746161055286044992989547", - "29496892981997118895832482", - "29130037290516458246700040" + "55055271927152489819728184", + "7726758713818640774541248", + "43490793234790899818576986" ], "fpReserves": [ - "15299347475654407710487243", - "7909780614723214826676449" + "6791961270088999076581520", + "2126648941612842179844414" ], - "mAssetSupply": "114353239138545131750429337", - "LPTokenSupply": "23049365013896667135771949" + "mAssetSupply": "105868341212798924741152275", + "LPTokenSupply": "8785741874511885970036952" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1165648032471585521664", - "outputQty0": "1166826964274470986087", - "outputQty": "1159831233515561424465", - "swapFee": "925387786458368097", + "inputIndex": 0, + "inputQty": "19186173285668774477824", + "outputQty0": "18981310417769128724201", + "outputQty": "18717978179605586934210", + "swapFee": "14912044428505865067", "mpReserves": [ - "55746161055286044992989547", - "29496892981997118895832482", - "29131202938548929832221704" + "55074458100438158594206008", + "7726758713818640774541248", + "43490793234790899818576986" ], "fpReserves": [ - "15300514302618682181473330", - "7908620783489699265251984" + "6810942580506768205305721", + "2107930963433236592910204" ], - "mAssetSupply": "114354405965509406221415424", - "LPTokenSupply": "23049365106435445781608758" + "mAssetSupply": "105887322523216693869876476", + "LPTokenSupply": "8785743365716328820623458" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "61306754449832765554688", - "outputQty0": "61368515835470542540720", - "outputQty": "60837234479898884046045", + "inputIndex": 1, + "inputQty": "18972649495541219065856", + "outputQty0": "20208180429867897120671", + "outputQty": "19843570146440911646940", "mpReserves": [ - "55746161055286044992989547", - "29496892981997118895832482", - "29192509692998762597776392" + "55074458100438158594206008", + "7745731363314181993607104", + "43490793234790899818576986" ], "fpReserves": [ - "15361882818454152724014050", - "7908620783489699265251984" + "6831150760936636102426392", + "2107930963433236592910204" ], - "mAssetSupply": "114415774481344876763956144", - "LPTokenSupply": "23110202340915344665654803" + "mAssetSupply": "105907530703646561766997147", + "LPTokenSupply": "8805586935862769732270398" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "3477442021333106950144", - "outputQty0": "3505729355468969330235", - "outputQty": "3509183915151624928265", - "swapFee1": "2086465212799864170", - "swapFee2": "1402291742187587732", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "137757208541031819116544", + "outputQty0": "136741261359527297741806", + "outputQty": "134678429733737423591626", + "swapFee": "107412493815978175953", "mpReserves": [ - "55742651871370893368061282", - "29496892981997118895832482", - "29192509692998762597776392" + "55074458100438158594206008", + "7745731363314181993607104", + "43628550443331931637693530" ], "fpReserves": [ - "15358377089098683754683815", - "7908620783489699265251984" + "6967892022296163400168198", + "1973252533699499169318578" ], - "mAssetSupply": "114412270154281149982213641", - "LPTokenSupply": "23106725107540532838691076" + "mAssetSupply": "106044271965006089064738953", + "LPTokenSupply": "8805597677112151330087993" }, { "type": "swap_fp_to_mp", - "inputQty": "1311618267652799070208", + "inputQty": "504902343078924867600384", "outputIndex": 2, - "outputQty": "1316678166055221453135", + "outputQty": "514447511417742889341745", "swapFee": "0", - "redemptionFee": "527410718804079529", + "redemptionFee": "306591435287519511154", "mpReserves": [ - "55742651871370893368061282", - "29496892981997118895832482", - "29191193014832707376323257" + "55074458100438158594206008", + "7745731363314181993607104", + "43114102931914188748351785" ], "fpReserves": [ - "15357058562301673555858866", - "7909932401757352064322192" + "6456906296816964214910884", + "2478154876778424036918962" ], - "mAssetSupply": "114410952154894858587468221", - "LPTokenSupply": "23106725107540532838691076" + "mAssetSupply": "105533592830962177398992793", + "LPTokenSupply": "8805597677112151330087993" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "14201189901135293448192", + "outputQty0": "14049617491466653152899", + "outputQty": "13909831622179924107059", + "swapFee": "11048660976094065325", + "mpReserves": [ + "55088659290339293887654200", + "7745731363314181993607104", + "43114102931914188748351785" + ], + "fpReserves": [ + "6470955914308430868063783", + "2464245045156244112811903" + ], + "mAssetSupply": "105547642448453644052145692", + "LPTokenSupply": "8805598781978248939494525" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "291803011149703952728064", - "outputQty0": "294166019454444486717515", - "outputQty": "294453946399329460777246", - "swapFee1": "175081806689822371636", - "swapFee2": "117666407781777794687", + "inputQty": "31328333914118043992064", + "outputQty0": "31851535741921573536093", + "outputQty": "32175774863882547857273", + "swapFee1": "18797000348470826395", + "swapFee2": "19110921445152944121", "mpReserves": [ - "55448197924971563907284036", - "29496892981997118895832482", - "29191193014832707376323257" + "55056483515475411339796927", + "7745731363314181993607104", + "43114102931914188748351785" ], "fpReserves": [ - "15062892542847229069141351", - "7909932401757352064322192" + "6439104378566509294527690", + "2464245045156244112811903" ], - "mAssetSupply": "114116903801848195878545393", - "LPTokenSupply": "22814939604571497868200175" + "mAssetSupply": "105515810023633167631553720", + "LPTokenSupply": "8774272327764165742585100" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3639465884079464906752", - "outputQty0": "3643071554732281162951", - "outputQty": "3621815581760989070730", - "swapFee": "2889391263649529190", + "inputIndex": 1, + "inputQty": "42977431924231831552", + "outputQty0": "45750051184637086919", + "outputQty": "45295620862018509483", + "swapFee": "35977574437941632", + "mpReserves": [ + "55056483515475411339796927", + "7745774340746106225438656", + "43114102931914188748351785" + ], + "fpReserves": [ + "6439150128617693931614609", + "2464199749535382094302420" + ], + "mAssetSupply": "105515855773684352268640639", + "LPTokenSupply": "8774272331361923186379263" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "6492142366747530362880", + "outputIndex": 2, + "outputQty": "6595769255246172794817", + "swapFee": "0", + "redemptionFee": "3931101412013533489", "mpReserves": [ - "55448197924971563907284036", - "29496892981997118895832482", - "29194832480716786841230009" + "55056483515475411339796927", + "7745774340746106225438656", + "43107507162658942575556968" ], "fpReserves": [ - "15066535614401961350304302", - "7906310586175591075251462" + "6432598292931004709131582", + "2470691891902129624665300" ], - "mAssetSupply": "114120546873402928159708344", - "LPTokenSupply": "22814939893510624233153094" + "mAssetSupply": "105509307869099075059691101", + "LPTokenSupply": "8774272331361923186379263" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "803081939995021472169984", - "outputQty0": "803837602281133175777272", - "outputQty": "798442260592091386198797", - "swapFee": "637476997569251739417", + "inputQty": "3350625507490406596608", + "outputQty0": "3326311884337523788766", + "outputQty": "3293417483910421643382", + "swapFee": "2615832370414537653", "mpReserves": [ - "55448197924971563907284036", - "29496892981997118895832482", - "29997914420711808313399993" + "55056483515475411339796927", + "7745774340746106225438656", + "43110857788166432982153576" ], "fpReserves": [ - "15870373216683094526081574", - "7107868325583499689052665" + "6435924604815342232920348", + "2467398474418219203021918" ], - "mAssetSupply": "114924384475684061335485616", - "LPTokenSupply": "22815003641210381158327035" + "mAssetSupply": "105512634180983412583479867", + "LPTokenSupply": "8774272592945160227833028" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "314892926201633832960", - "outputQty0": "317634022625927504655", - "outputQty": "317223841396920708637", - "swapFee1": "188935755720980299", - "swapFee2": "127053609050371001", + "type": "mint", + "inputIndex": 1, + "inputQty": "13244211294686517657600", + "outputQty0": "14097154977389100252642", + "outputQty": "13857440169265726135011", "mpReserves": [ - "55448197924971563907284036", - "29496892981997118895832482", - "29997597196870411392691356" + "55056483515475411339796927", + "7759018552040792743096256", + "43110857788166432982153576" ], "fpReserves": [ - "15870055582660468598576919", - "7107868325583499689052665" + "6450021759792731333172990", + "2467398474418219203021918" ], - "mAssetSupply": "114924066968715044458351962", - "LPTokenSupply": "22814688767177755096592104" + "mAssetSupply": "105526731335960801683732509", + "LPTokenSupply": "8788130033114425953968039" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "3899165802113423376384", - "outputQty0": "3933105377544863663983", - "outputQty": "3927701664148545043581", - "swapFee1": "2339499481268054025", - "swapFee2": "1573242151017945465", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "433166326802791123648512", + "outputQty0": "430004484236863585619467", + "outputQty": "424741723884400154800003", + "swapFee": "338101180434284769104", "mpReserves": [ - "55448197924971563907284036", - "29492965280332970350788901", - "29997597196870411392691356" + "55056483515475411339796927", + "7759018552040792743096256", + "43544024114969224105802088" ], "fpReserves": [ - "15866122477282923734912936", - "7107868325583499689052665" + "6880026244029594918792457", + "2042656750533819048221915" ], - "mAssetSupply": "114920135436579650612633444", - "LPTokenSupply": "22810789835325589800021122" + "mAssetSupply": "105956735820197665269351976", + "LPTokenSupply": "8788163843232469382444949" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "76858296820974774910976", - "outputQty0": "77526503147116463028850", - "outputQty": "77599150937440817307965", - "swapFee1": "46114978092584864946", - "swapFee2": "31010601258846585211", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "148428799565142396239872", + "outputQty0": "146848794666618238763553", + "outputQty": "144474280241483707385533", + "swapFee": "115320963770991355312", "mpReserves": [ - "55370598774034123089976071", - "29492965280332970350788901", - "29997597196870411392691356" + "55204912315040553736036799", + "7759018552040792743096256", + "43544024114969224105802088" ], "fpReserves": [ - "15788595974135807271884086", - "7107868325583499689052665" + "7026875038696213157556010", + "1898182470292335340836382" ], - "mAssetSupply": "114842639944033792996189805", - "LPTokenSupply": "22733936150002424283596640" + "mAssetSupply": "106103584614864283508115529", + "LPTokenSupply": "8788175375328846481580480" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "48515330973666689024", - "outputQty0": "48558471880332287726", - "outputQty": "48111443523863327802", + "inputIndex": 1, + "inputQty": "2610152774624318849024", + "outputQty0": "2779735490831615640104", + "outputQty": "2727271587467730500145", "mpReserves": [ - "55370598774034123089976071", - "29492965280332970350788901", - "29997645712201385059380380" + "55204912315040553736036799", + "7761628704815417061945280", + "43544024114969224105802088" ], "fpReserves": [ - "15788644532607687604171812", - "7107868325583499689052665" + "7029654774187044773196114", + "1898182470292335340836382" ], - "mAssetSupply": "114842688502505673328477531", - "LPTokenSupply": "22733984261445948146924442" + "mAssetSupply": "106106364350355115123755633", + "LPTokenSupply": "8790902646916314212080625" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "741233724660610387410944", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "11580386186162610372608", - "outputIndex": 1, - "outputQty": "11643568237171607253339", + "inputQty": "331463817780913164517376", + "outputIndex": 2, + "outputQty": "338429680857521029885554", "swapFee": "0", - "redemptionFee": "4663824323990641074", + "redemptionFee": "201696167834929172597", "mpReserves": [ - "55370598774034123089976071", - "29481321712095798743535562", - "29997645712201385059380380" + "55204912315040553736036799", + "7761628704815417061945280", + "43205594434111703075916534" ], "fpReserves": [ - "15776984971797711001484474", - "7119448711769662299425273" + "6693494494462162818867031", + "2229646288073248505353758" ], - "mAssetSupply": "114831033605520020716431267", - "LPTokenSupply": "22733984261445948146924442" + "mAssetSupply": "105770405766798068098599147", + "LPTokenSupply": "8790902646916314212080625" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "218417363084965465554944", - "outputQty0": "220306286614533309576087", - "outputQty": "220019761604441373903641", - "swapFee1": "131050417850979279332", - "swapFee2": "88122514645813323830", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "216265451437963398348800", + "outputQty0": "214689849812967791015334", + "outputQty": "211719067562899727624501", + "swapFee": "168695990109006771024", "mpReserves": [ - "55370598774034123089976071", - "29481321712095798743535562", - "29777625950596943685476739" + "55204912315040553736036799", + "7761628704815417061945280", + "43421859885549666474265334" ], "fpReserves": [ - "15556678685183177691908387", - "7119448711769662299425273" + "6908184344275130609882365", + "2017927220510348777729257" ], - "mAssetSupply": "114610815441420133220179010", - "LPTokenSupply": "22515580003402767779297431" + "mAssetSupply": "105985095616611035889614481", + "LPTokenSupply": "8790919516515325112757727" }, { - "type": "swap_fp_to_mp", - "inputQty": "125312703363909984", - "outputIndex": 1, - "outputQty": "125973190827962555", - "swapFee": "0", - "redemptionFee": "50458033587472", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "64146623467116967231488", + "outputQty0": "68270557094001595205037", + "outputQty": "67183114796551447366068", + "swapFee": "53608319570796981574", "mpReserves": [ - "55370598774034123089976071", - "29481321586122607915573007", - "29777625950596943685476739" + "55204912315040553736036799", + "7825775328282534029176768", + "43421859885549666474265334" ], "fpReserves": [ - "15556678559038093723226983", - "7119448837082365663335257" + "6976454901369132205087402", + "1950744105713797330363189" ], - "mAssetSupply": "114610815315325507285085078", - "LPTokenSupply": "22515580003402767779297431" + "mAssetSupply": "106053366173705037484819518", + "LPTokenSupply": "8790924877347282192455884" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1303652835209621504", - "outputQty0": "1301901319525469491", - "outputQty": "1289993589097374240", + "type": "redeem", + "outputIndex": 2, + "inputQty": "478262927294777062850560", + "outputQty0": "486976276887532033790602", + "outputQty": "490202605348512553827259", + "swapFee1": "286957756376866237710", + "swapFee2": "292185766132519220274", "mpReserves": [ - "55370600077686958299597575", - "29481321586122607915573007", - "29777625950596943685476739" + "55204912315040553736036799", + "7825775328282534029176768", + "42931657280201153920438075" ], "fpReserves": [ - "15556679860939413248696474", - "7119448837082365663335257" + "6489478624481600171296800", + "1950744105713797330363189" ], - "mAssetSupply": "114610816617226826810554569", - "LPTokenSupply": "22515581293396356876671671" + "mAssetSupply": "105566682082583637970249190", + "LPTokenSupply": "8312690645828142816229095" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "17960053724665444564992", - "outputQty0": "17976465460743026207890", - "outputQty": "17812004542171468657285", + "type": "redeem", + "outputIndex": 1, + "inputQty": "61969297209492248723456", + "outputQty0": "63085259609843268538279", + "outputQty": "59271580707023983752394", + "swapFee1": "37181578325695349234", + "swapFee2": "37851155765905961122", "mpReserves": [ - "55370600077686958299597575", - "29481321586122607915573007", - "29795586004321609130041731" + "55204912315040553736036799", + "7766503747575510045424374", + "42931657280201153920438075" ], "fpReserves": [ - "15574656326400156274904364", - "7119448837082365663335257" + "6426393364871756902758521", + "1950744105713797330363189" ], - "mAssetSupply": "114628793082687569836762459", - "LPTokenSupply": "22533393297938528345328956" + "mAssetSupply": "105503634674129560607672033", + "LPTokenSupply": "8250725066776483137040562" }, { "type": "swap_fp_to_mp", - "inputQty": "16754604982260064256", + "inputQty": "23816729422661672763392", "outputIndex": 1, - "outputQty": "16843144093203784672", + "outputQty": "22668499898079800054922", "swapFee": "0", - "redemptionFee": "6746456126626496", + "redemptionFee": "14485236654711846930", "mpReserves": [ - "55370600077686958299597575", - "29481304742978514711788335", - "29795586004321609130041731" + "55204912315040553736036799", + "7743835247677430245369452", + "42931657280201153920438075" ], "fpReserves": [ - "15574639460259839708664049", - "7119465591687347923399513" + "6402251303780570491207397", + "1974560835136459003126581" ], - "mAssetSupply": "114628776223293709397148640", - "LPTokenSupply": "22533393297938528345328956" + "mAssetSupply": "105479507098275028907967839", + "LPTokenSupply": "8250725066776483137040562" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "66166075087408016130048", - "outputQty0": "66736515640633431098316", - "outputQty": "66799421114648552775567", - "swapFee1": "39699645052444809678", - "swapFee2": "26694606256253372439", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "13157536610565710", + "outputQty0": "13016559485909176", + "outputQty": "12833248700275920", + "swapFee": "10224039445149", "mpReserves": [ - "55303800656572309746822008", - "29481304742978514711788335", - "29795586004321609130041731" + "55204912328198090346602509", + "7743835247677430245369452", + "42931657280201153920438075" ], "fpReserves": [ - "15507902944619206277565733", - "7119465591687347923399513" + "6402251316797129977116573", + "1974560822303210302850661" ], - "mAssetSupply": "114562066402259332219422763", - "LPTokenSupply": "22467231192815625573679875" + "mAssetSupply": "105479507111291588393877015", + "LPTokenSupply": "8250725066777505540985076" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "108452012100666427179008", - "outputQty0": "108555619614429961326129", - "outputQty": "107562404572628531130910", + "type": "swap_fp_to_mp", + "inputQty": "44021604713057152", + "outputIndex": 0, + "outputQty": "45070836296709697", + "swapFee": "0", + "redemptionFee": "26768814745765", "mpReserves": [ - "55303800656572309746822008", - "29589756755079181138967343", - "29795586004321609130041731" + "55204912283127254049892812", + "7743835247677430245369452", + "42931657280201153920438075" ], "fpReserves": [ - "15616458564233636238891862", - "7119465591687347923399513" + "6402251272182438734174356", + "1974560866324815015907813" ], - "mAssetSupply": "114670622021873762180748892", - "LPTokenSupply": "22574793597388254104810785" + "mAssetSupply": "105479507066703665965680563", + "LPTokenSupply": "8250725066777505540985076" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "10257020524659522666496", - "outputQty0": "10266397005387410973911", - "outputQty": "10172312431257611680761", + "inputQty": "5033248711423894224896", + "outputQty0": "4996986625625104606895", + "outputQty": "4926428091014682146779", + "swapFee": "3924944909371178303", "mpReserves": [ - "55303800656572309746822008", - "29589756755079181138967343", - "29805843024846268652708227" + "55204912283127254049892812", + "7743835247677430245369452", + "42936690528912577814662971" ], "fpReserves": [ - "15626724961239023649865773", - "7119465591687347923399513" + "6407248258808063838781251", + "1969634438233800333761034" ], - "mAssetSupply": "114680888418879149591722803", - "LPTokenSupply": "22584965909819511716491546" + "mAssetSupply": "105484504053329291070287458", + "LPTokenSupply": "8250725459271996478102906" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "683388502617311796002816", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "5260275362172354166784", - "outputIndex": 2, - "outputQty": "5288528312568338934163", + "inputQty": "1796581194730458528612352", + "outputIndex": 1, + "outputQty": "1669337720906793202566777", "swapFee": "0", - "redemptionFee": "2118191781469943934", + "redemptionFee": "1084257680524071320023", "mpReserves": [ - "55303800656572309746822008", - "29589756755079181138967343", - "29800554496533700313774064" + "55204912283127254049892812", + "6074497526770637042802675", + "42936690528912577814662971" ], "fpReserves": [ - "15621429481785348790030647", - "7124725867049520277566297" + "4600152124601278305408962", + "3766215632964258862373386" ], - "mAssetSupply": "114675595057617256201831611", - "LPTokenSupply": "22584965909819511716491546" + "mAssetSupply": "103678492176803029608235192", + "LPTokenSupply": "8250725459271996478102906" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "5349975895208816017408", - "outputQty0": "5396198875808595699884", - "outputQty": "5389112085433614765580", - "swapFee1": "3209985537125289610", - "swapFee2": "2158479550323438279", + "type": "mint", + "inputIndex": 1, + "inputQty": "871668527670726655737856", + "outputQty0": "951055964606947969068550", + "outputQty": "937056560474726702450481", "mpReserves": [ - "55303800656572309746822008", - "29589756755079181138967343", - "29795165384448266699008484" + "55204912283127254049892812", + "6946166054441363698540531", + "42936690528912577814662971" ], "fpReserves": [ - "15616033282909540194330763", - "7124725867049520277566297" + "5551208089208226274477512", + "3766215632964258862373386" ], - "mAssetSupply": "114670201017220997929570006", - "LPTokenSupply": "22579616254922856613003099" + "mAssetSupply": "104629548141409977577303742", + "LPTokenSupply": "9187782019746723180553387" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "35141200796536123949056", - "outputQty0": "35173274708058597332708", - "outputQty": "34850926722114103779449", + "type": "redeem", + "outputIndex": 1, + "inputQty": "264217928468429562445824", + "outputQty0": "268060560183892702581464", + "outputQty": "247418875855994630600015", + "swapFee1": "158530757081057737467", + "swapFee2": "160836336110335621548", "mpReserves": [ - "55303800656572309746822008", - "29589756755079181138967343", - "29830306585244802822957540" + "55204912283127254049892812", + "6698747178585369067940516", + "42936690528912577814662971" ], "fpReserves": [ - "15651206557617598791663471", - "7124725867049520277566297" + "5283147529024333571896048", + "3766215632964258862373386" ], - "mAssetSupply": "114705374291929056526902714", - "LPTokenSupply": "22614467181644970716782548" + "mAssetSupply": "104361648417562195210343826", + "LPTokenSupply": "8923579944354001723881309" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2488827119393719713792", - "outputQty0": "2491093115701958120072", - "outputQty": "2472502301741960071167", - "swapFee": "1974601218009628841", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1595040923053356744704", + "outputQty0": "1618135152756461639074", + "outputQty": "1489394653560432427190", + "swapFee1": "957024553832014046", + "swapFee2": "970881091653876983", "mpReserves": [ - "55303800656572309746822008", - "29589756755079181138967343", - "29832795412364196542671332" + "55204912283127254049892812", + "6697257783931808635513326", + "42936690528912577814662971" ], "fpReserves": [ - "15653697650733300749783543", - "7122253364747778317495130" + "5281529393871577110256974", + "3766215632964258862373386" ], - "mAssetSupply": "114707865385044758485022786", - "LPTokenSupply": "22614467379105092517745432" + "mAssetSupply": "104360031253290530402581735", + "LPTokenSupply": "8921984999133403750338009" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "848470210901156240031744", - "outputQty0": "847322605942150914009877", - "outputQty": "839975457128954277694055", - "swapFee": "671569549423314021031", + "type": "swap_fp_to_mp", + "inputQty": "222669268637724311552", + "outputIndex": 1, + "outputQty": "205430972912627499905", + "swapFee": "0", + "redemptionFee": "133915444013657381", "mpReserves": [ - "56152270867473465986853752", - "29589756755079181138967343", - "29832795412364196542671332" + "55204912283127254049892812", + "6697052352958896008013421", + "42936690528912577814662971" ], "fpReserves": [ - "16501020256675451663793420", - "6282277907618824039801075" + "5281306201464887681287671", + "3766438302232896586684938" ], - "mAssetSupply": "115555187990986909399032663", - "LPTokenSupply": "22614534536060034849147535" + "mAssetSupply": "104359808194799284987269813", + "LPTokenSupply": "8921984999133403750338009" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "863238387821290061824", - "outputQty0": "864089294754840502784", - "outputQty": "855492387623919954973", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1792581636904513792", + "outputQty0": "1777246462108999636", + "outputQty": "1771663006574328128", + "swapFee": "1400665189478924", "mpReserves": [ - "56152270867473465986853752", - "29590619993467002429029167", - "29832795412364196542671332" + "55204912283127254049892812", + "6697052352958896008013421", + "42936692321494214719176763" ], "fpReserves": [ - "16501884345970206504296204", - "6282277907618824039801075" + "5281307978711349790287307", + "3766436530569890012356810" ], - "mAssetSupply": "115556052080281664239535447", - "LPTokenSupply": "22615390028447658769102508" + "mAssetSupply": "104359809972045747096269449", + "LPTokenSupply": "8921984999273470269285901" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "681343685369852067840", - "outputQty0": "680409381532741891755", - "outputQty": "673592407478586853712", - "swapFee": "538911823497754667", + "type": "redeem", + "outputIndex": 0, + "inputQty": "332619263713300119552", + "outputQty0": "337434908970108020173", + "outputQty": "341477052323061444153", + "swapFee1": "199571558227980071", + "swapFee2": "202460945382064812", "mpReserves": [ - "56152952211158835838921592", - "29590619993467002429029167", - "29832795412364196542671332" + "55204570806074930988448659", + "6697052352958896008013421", + "42936692321494214719176763" ], "fpReserves": [ - "16502564755351739246187959", - "6281604315211345452947363" + "5280970543802379682267134", + "3766436530569890012356810" ], - "mAssetSupply": "115556732489663196981427202", - "LPTokenSupply": "22615390082338841118877974" + "mAssetSupply": "104359472739597722370314088", + "LPTokenSupply": "8921652399966912791964356" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "27870291004753969152000", - "outputQty0": "27896587980767485989553", - "outputQty": "27618912828811719286180", + "type": "swap_fp_to_mp", + "inputQty": "13170157968015606415360", + "outputIndex": 1, + "outputQty": "12148555367373078763238", + "swapFee": "0", + "redemptionFee": "7920473208549698261", "mpReserves": [ - "56152952211158835838921592", - "29590619993467002429029167", - "29860665703368950511823332" + "55204570806074930988448659", + "6684903797591522929250183", + "42936692321494214719176763" ], "fpReserves": [ - "16530461343332506732177512", - "6281604315211345452947363" + "5267769755121463518498707", + "3779606688537905618772170" ], - "mAssetSupply": "115584629077643964467416755", - "LPTokenSupply": "22643008995167652838164154" + "mAssetSupply": "104346279871390014756243922", + "LPTokenSupply": "8921652399966912791964356" }, { - "type": "swap_fp_to_mp", - "inputQty": "16014512562723092430848", + "type": "redeem", "outputIndex": 1, - "outputQty": "16141231981357570496796", - "swapFee": "0", - "redemptionFee": "6465457488566427317", + "inputQty": "1751973704775125434368", + "outputQty0": "1777303923298409487992", + "outputQty": "1635374208846776356648", + "swapFee1": "1051184222865075260", + "swapFee2": "1066382353979045692", "mpReserves": [ - "56152952211158835838921592", - "29574478761485644858532371", - "29860665703368950511823332" + "55204570806074930988448659", + "6683268423382676152893535", + "42936692321494214719176763" ], "fpReserves": [ - "16514297699611090663885010", - "6297618827774068545378211" + "5265992451198165109010715", + "3779606688537905618772170" ], - "mAssetSupply": "115568471899380036965551570", - "LPTokenSupply": "22643008995167652838164154" + "mAssetSupply": "104344503633849070325801622", + "LPTokenSupply": "8919900531380559953037514" }, { "type": "swap_fp_to_mp", - "inputQty": "58521724661183750144", + "inputQty": "205064360057327709061120", "outputIndex": 2, - "outputQty": "58985835063518602281", + "outputQty": "207112005119338104433963", "swapFee": "0", - "redemptionFee": "23625990194472151", + "redemptionFee": "123279387539263226086", "mpReserves": [ - "56152952211158835838921592", - "29574478761485644858532371", - "29860606717533886993221051" + "55204570806074930988448659", + "6683268423382676152893535", + "42729580316374876614742800" ], "fpReserves": [ - "16514238634635604483505560", - "6297677349498729729128355" + "5060526805299393065532578", + "3984671048595233327833290" ], - "mAssetSupply": "115568412858030540979644271", - "LPTokenSupply": "22643008995167652838164154" + "mAssetSupply": "104139161267337837545549571", + "LPTokenSupply": "8919900531380559953037514" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "497658272415658737664", - "outputQty0": "502353818249249466653", - "outputQty": "502842172874015222194", - "swapFee1": "298594963449395242", - "swapFee2": "200941527299699786", + "inputQty": "131622453188285190635520", + "outputQty0": "133481009286725424730562", + "outputQty": "135082524426509700223472", + "swapFee1": "78973471912971114381", + "swapFee2": "80088605572035254838", "mpReserves": [ - "56152449368985961823699398", - "29574478761485644858532371", - "29860606717533886993221051" + "55069488281648421288225187", + "6683268423382676152893535", + "42729580316374876614742800" ], "fpReserves": [ - "16513736280817355234038907", - "6297677349498729729128355" + "4927045796012667640802016", + "3984671048595233327833290" ], - "mAssetSupply": "115567910705153819029877404", - "LPTokenSupply": "22642511366754733524366014" + "mAssetSupply": "104005760346656684156073847", + "LPTokenSupply": "8788285975539466059513432" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "73346242244897107083264", - "outputQty0": "73418440494115583781587", - "outputQty": "72675380135209888568642", - "swapFee": "58150255563316743477", - "mpReserves": [ - "56152449368985961823699398", - "29647825003730541965615635", - "29860606717533886993221051" - ], - "fpReserves": [ - "16587154721311470817820494", - "6225001969363519840559713" - ], - "mAssetSupply": "115641329145647934613658991", - "LPTokenSupply": "22642517181780289856040361" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "515719102997797", - "outputQty0": "516224406385637", - "outputQty": "510931257061385", - "swapFee": "408842839767", + "inputIndex": 2, + "inputQty": "93317545727898180124672", + "outputQty0": "92521136057307697054048", + "outputQty": "92301142557403625578801", + "swapFee": "72942868915949421759", "mpReserves": [ - "56152449368985961823699398", - "29647825004246261068613432", - "29860606717533886993221051" + "55069488281648421288225187", + "6683268423382676152893535", + "42822897862102774794867472" ], "fpReserves": [ - "16587154721827695224206131", - "6225001968852588583498328" + "5019566932069975337856064", + "3892369906037829702254489" ], - "mAssetSupply": "115641329146164159020044628", - "LPTokenSupply": "22642517181780330740324337" + "mAssetSupply": "104098281482713991853127895", + "LPTokenSupply": "8788293269826357654455607" }, { "type": "swap_fp_to_mp", - "inputQty": "401977744454084722688", - "outputIndex": 0, - "outputQty": "406210185850723024948", + "inputQty": "47227250081812", + "outputIndex": 1, + "outputQty": "43547268379869", "swapFee": "0", - "redemptionFee": "162326775424263801", + "redemptionFee": "28385405884", "mpReserves": [ - "56152043158800111100674450", - "29647825004246261068613432", - "29860606717533886993221051" + "55069488281648421288225187", + "6683268423339128884513666", + "42822897862102774794867472" ], "fpReserves": [ - "16586748904889134564701414", - "6225403946597042668221016" + "5019566932022666328049126", + "3892369906085056952336301" ], - "mAssetSupply": "115640923491552373784803712", - "LPTokenSupply": "22642517181780330740324337" + "mAssetSupply": "104098281482666711228726841", + "LPTokenSupply": "8788293269826357654455607" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "336634006374451183616", - "outputQty0": "336173592233255196362", - "outputQty": "332806369096048792230", + "type": "redeem", + "outputIndex": 1, + "inputQty": "2149067516389395968", + "outputQty0": "2179642244199537086", + "outputQty": "2006329533585068024", + "swapFee1": "1289440509833637", + "swapFee2": "1307785346519722", "mpReserves": [ - "56152379792806485551858066", - "29647825004246261068613432", - "29860606717533886993221051" + "55069488281648421288225187", + "6683266417009595299445642", + "42822897862102774794867472" ], "fpReserves": [ - "16587085078481367819897776", - "6225403946597042668221016" + "5019564752380422128512040", + "3892369906085056952336301" ], - "mAssetSupply": "115641259665144607040000074", - "LPTokenSupply": "22642849988149426789116567" + "mAssetSupply": "104098279304332252375709477", + "LPTokenSupply": "8788291120887785316043002" }, { - "type": "swap_fp_to_mp", - "inputQty": "462569784523492861935616", - "outputIndex": 2, - "outputQty": "465970660216969524993651", - "swapFee": "0", - "redemptionFee": "186644277872840727252", + "type": "mint", + "inputIndex": 1, + "inputQty": "36168095182958956544", + "outputQty0": "39268811846670209960", + "outputQty": "38694741023564144498", "mpReserves": [ - "56152379792806485551858066", - "29647825004246261068613432", - "29394636057316917468227400" + "55069488281648421288225187", + "6683302585104778258402186", + "42822897862102774794867472" ], "fpReserves": [ - "16120474383799266001766787", - "6687973731120535530156632" + "5019604021192268798722000", + "3892369906085056952336301" ], - "mAssetSupply": "115174835614740378062596337", - "LPTokenSupply": "22642849988149426789116567" + "mAssetSupply": "104098318573144099045919437", + "LPTokenSupply": "8788329815628808880187500" }, { - "type": "swap_fp_to_mp", - "inputQty": "853918116624599424", + "type": "redeem", "outputIndex": 2, - "outputQty": "859520985847242934", - "swapFee": "0", - "redemptionFee": "344290610589040", + "inputQty": "231632530147795055673344", + "outputQty0": "234910484364545852332313", + "outputQty": "236785265624357710721151", + "swapFee1": "138979518088677033404", + "swapFee2": "140946290618727511399", "mpReserves": [ - "56152379792806485551858066", - "29647825004246261068613432", - "29394635197795931620984466" + "55069488281648421288225187", + "6683302585104778258402186", + "42586112596478417084146321" ], "fpReserves": [ - "16120473523072739529164710", - "6687974585038652154756056" + "4784693536827722946389687", + "3892369906085056952336301" ], - "mAssetSupply": "115174834754358142200583300", - "LPTokenSupply": "22642849988149426789116567" + "mAssetSupply": "103863549035070171921098523", + "LPTokenSupply": "8556711183432822692217496" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "277555623880720625172480", - "outputQty0": "277817139588892425810297", - "outputQty": "275278407351509203159503", - "swapFee": "220117356583711126274", - "mpReserves": [ - "56152379792806485551858066", - "29925380628126981693785912", - "29394635197795931620984466" - ], - "fpReserves": [ - "16398290662661631954975007", - "6412696177687142951596553" - ], - "mAssetSupply": "115452651893947034626393597", - "LPTokenSupply": "22642871999885085160229194" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2096967274302329323520", - "outputQty0": "2098907448569643462711", - "outputQty": "2078773603871503954192", - "swapFee": "1662602765576864420", + "type": "mint", + "inputIndex": 2, + "inputQty": "31752590004289668120576", + "outputQty0": "31483258165008552183736", + "outputQty": "31026886182595710449192", "mpReserves": [ - "56152379792806485551858066", - "29927477595401284023109432", - "29394635197795931620984466" + "55069488281648421288225187", + "6683302585104778258402186", + "42617865186482706752266897" ], "fpReserves": [ - "16400389570110201598437718", - "6410617404083271447642361" + "4816176794992731498573423", + "3892369906085056952336301" ], - "mAssetSupply": "115454750801395604269856308", - "LPTokenSupply": "22642872166145361717915636" + "mAssetSupply": "103895032293235180473282259", + "LPTokenSupply": "8587738069615418402666688" }, { "type": "mint", "inputIndex": 2, - "inputQty": "3551847406102391808", - "outputQty0": "3555450409371419205", - "outputQty": "3520457175580928433", + "inputQty": "1009727737287766683156480", + "outputQty0": "1001006382267539048672707", + "outputQty": "986184197378684352770468", "mpReserves": [ - "56152379792806485551858066", - "29927477595401284023109432", - "29394638749643337723376274" + "55069488281648421288225187", + "6683302585104778258402186", + "43627592923770473435423377" ], "fpReserves": [ - "16400393125560610969856923", - "6410617404083271447642361" + "5817183177260270547246130", + "3892369906085056952336301" ], - "mAssetSupply": "115454754356846013641275513", - "LPTokenSupply": "22642875686602537298844069" + "mAssetSupply": "104896038675502719521954966", + "LPTokenSupply": "9573922266994102755437156" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "550497311186121195520", - "outputQty0": "549740015464026951718", - "outputQty": "544329357279299504866", + "type": "redeem", + "outputIndex": 1, + "inputQty": "48661818347120800825344", + "outputQty0": "49377200348841452011316", + "outputQty": "45376385534640339729665", + "swapFee1": "29197091008272480495", + "swapFee2": "29626320209304871206", "mpReserves": [ - "56152930290117671673053586", - "29927477595401284023109432", - "29394638749643337723376274" + "55069488281648421288225187", + "6637926199570137918672521", + "43627592923770473435423377" ], "fpReserves": [ - "16400942865576074996808641", - "6410617404083271447642361" + "5767805976911429095234814", + "3892369906085056952336301" ], - "mAssetSupply": "115455304096861477668227231", - "LPTokenSupply": "22643420015959816598348935" + "mAssetSupply": "104846691101474087374814856", + "LPTokenSupply": "9525263368356082781859861" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "7003256768157334896640", - "outputQty0": "7010357954477202476711", - "outputQty": "6941353366602975412276", + "inputQty": "1273170992172022366208", + "outputQty0": "1261895756734606342520", + "outputQty": "1257389482517215493446", + "swapFee": "994304218325845796", "mpReserves": [ - "56152930290117671673053586", - "29927477595401284023109432", - "29401642006411495058272914" + "55069488281648421288225187", + "6637926199570137918672521", + "43628866094762645457789585" ], "fpReserves": [ - "16407953223530552199285352", - "6410617404083271447642361" + "5769067872668163701577334", + "3891112516602539736842855" ], - "mAssetSupply": "115462314454815954870703942", - "LPTokenSupply": "22650361369326419573761211" + "mAssetSupply": "104847952997230821981157376", + "LPTokenSupply": "9525263467786504614444440" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "6986315634565136252928", - "outputQty0": "6976705777337626141600", - "outputQty": "6909624149790089545224", - "swapFee": "5526415412108365409", + "inputQty": "8556723420630237577216", + "outputQty0": "8450003819228958481293", + "outputQty": "8419688820620922977575", + "swapFee": "6658111201181380018", "mpReserves": [ - "56159916605752236809306514", - "29927477595401284023109432", - "29401642006411495058272914" + "55078045005069051525802403", + "6637926199570137918672521", + "43628866094762645457789585" ], "fpReserves": [ - "16414929929307889825426952", - "6403707779933481358097137" + "5777517876487392660058627", + "3882692827781918813865280" ], - "mAssetSupply": "115469291160593292496845542", - "LPTokenSupply": "22650361921967960784597751" + "mAssetSupply": "104856403001050050939638669", + "LPTokenSupply": "9525264133597624732582441" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "91242902335805678682112", - "outputQty0": "91117197345360597174213", - "outputQty": "90225785521451069636139", - "swapFee": "72174780231472393897", + "inputQty": "285200285827749799526400", + "outputQty0": "281631948862404974794095", + "outputQty": "277362757159954602162851", "mpReserves": [ - "56251159508088042487988626", - "29927477595401284023109432", - "29401642006411495058272914" + "55363245290896801325328803", + "6637926199570137918672521", + "43628866094762645457789585" ], "fpReserves": [ - "16506047126653250422601165", - "6313481994412030288460998" + "6059149825349797634852722", + "3882692827781918813865280" ], - "mAssetSupply": "115560408357938653094019755", - "LPTokenSupply": "22650369139445983931837140" + "mAssetSupply": "105138034949912455914432764", + "LPTokenSupply": "9802626890757579334745292" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "8124218972512656031744", - "outputQty0": "8200868987236432813260", - "outputQty": "8189972217210219106111", - "swapFee1": "4874531383507593619", - "swapFee2": "3280347594894573125", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "39774037478043786674176", + "outputQty0": "43280146058392338074008", + "outputQty": "43104220778824664520635", + "swapFee": "34096249876273454055", "mpReserves": [ - "56251159508088042487988626", - "29919287623184073804003321", - "29401642006411495058272914" + "55363245290896801325328803", + "6677700237048181705346697", + "43628866094762645457789585" ], "fpReserves": [ - "16497846257666013989787905", - "6313481994412030288460998" + "6102429971408189972926730", + "3839588607003094149344645" ], - "mAssetSupply": "115552210769299011555779620", - "LPTokenSupply": "22642245407926609626564757" + "mAssetSupply": "105181315095970848252506772", + "LPTokenSupply": "9802630300382566962090697" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "47984306385831452672", - "outputQty0": "48436980837042069341", - "outputQty": "48484517008372017453", - "swapFee1": "28790583831498871", - "swapFee2": "19374792334816827", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "101767062981884690563072", + "outputQty0": "100871919608134446277346", + "outputQty": "100435610868730716564007", + "swapFee": "79461019457984902850", "mpReserves": [ - "56251111023571034115971173", - "29919287623184073804003321", - "29401642006411495058272914" + "55363245290896801325328803", + "6677700237048181705346697", + "43730633157744530148352657" ], "fpReserves": [ - "16497797820685176947718564", - "6313481994412030288460998" + "6203301891016324419204076", + "3739152996134363432780638" ], - "mAssetSupply": "115552162351692966848527106", - "LPTokenSupply": "22642197426499282178261972" + "mAssetSupply": "105282187015578982698784118", + "LPTokenSupply": "9802638246484512760580982" }, { - "type": "swap_fp_to_mp", - "inputQty": "241695875689520901914624", - "outputIndex": 0, - "outputQty": "244061362954766447127791", - "swapFee": "0", - "redemptionFee": "97529356977592688963", + "type": "mint", + "inputIndex": 1, + "inputQty": "373262801956588058836992", + "outputQty0": "404334507977330185648254", + "outputQty": "398047283124122558657031", "mpReserves": [ - "56007049660616267668843382", - "29919287623184073804003321", - "29401642006411495058272914" + "55363245290896801325328803", + "7050963039004769764183689", + "43730633157744530148352657" ], "fpReserves": [ - "16253974428241195225309345", - "6555177870101551190375622" + "6607636398993654604852330", + "3739152996134363432780638" ], - "mAssetSupply": "115308436488605962718806850", - "LPTokenSupply": "22642197426499282178261972" + "mAssetSupply": "105686521523556312884432372", + "LPTokenSupply": "10200685529608635319238013" }, { "type": "swap_fp_to_mp", - "inputQty": "143142621668871155744768", + "inputQty": "4713138551389891330048", "outputIndex": 2, - "outputQty": "144107290152269330396338", + "outputQty": "4770038912959438183060", "swapFee": "0", - "redemptionFee": "57724575853199154725", + "redemptionFee": "2840050322355125871", "mpReserves": [ - "56007049660616267668843382", - "29919287623184073804003321", - "29257534716259225727876576" + "55363245290896801325328803", + "7050963039004769764183689", + "43725863118831570710169597" ], "fpReserves": [ - "16109662988608197338495647", - "6698320491770422346120390" + "6602902981789729395065974", + "3743866134685753324110686" ], - "mAssetSupply": "115164182773548818031147877", - "LPTokenSupply": "22642197426499282178261972" + "mAssetSupply": "105681790946402710029771887", + "LPTokenSupply": "10200685529608635319238013" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "15423408458692699357184", - "outputQty0": "15439205784536578064464", - "outputQty": "15304958064253559876464", - "swapFee": "12233031596450681734", + "type": "redeem", + "outputIndex": 0, + "inputQty": "71624473363698851840", + "outputQty0": "72719401940950192168", + "outputQty": "73543282684500675068", + "swapFee1": "42974684018219311", + "swapFee2": "43631641164570115", "mpReserves": [ - "56007049660616267668843382", - "29919287623184073804003321", - "29272958124717918427233760" + "55363171747614116824653735", + "7050963039004769764183689", + "43725863118831570710169597" ], "fpReserves": [ - "16125102194392733916560111", - "6683015533706168786243926" + "6602830262387788444873806", + "3743866134685753324110686" ], - "mAssetSupply": "115179621979333354609212341", - "LPTokenSupply": "22642198649802441823330145" + "mAssetSupply": "105681718270632410244149834", + "LPTokenSupply": "10200613909432740022208104" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "9252614172978044731392", - "outputQty0": "9262076574875568578625", - "outputQty": "9173216854931053651965", + "inputQty": "57452688433423640", + "outputQty0": "56977430196891698", + "outputQty": "56688482592566206", + "swapFee": "44868684807390", "mpReserves": [ - "56007049660616267668843382", - "29919287623184073804003321", - "29282210738890896471965152" + "55363171747614116824653735", + "7050963039004769764183689", + "43725863176284259143593237" ], "fpReserves": [ - "16134364270967609485138736", - "6683015533706168786243926" + "6602830319365218641765504", + "3743866077997270731544480" ], - "mAssetSupply": "115188884055908230177790966", - "LPTokenSupply": "22651371866657372876982110" + "mAssetSupply": "105681718327609840441041532", + "LPTokenSupply": "10200613909437226890688843" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "43815999851623364952064", - "outputQty0": "43755738726487824810417", - "outputQty": "43335645440913072994584", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1081709053133193871360", + "outputQty0": "1098244887175666219819", + "outputQty": "1106740912732026281029", + "swapFee1": "649025431879916322", + "swapFee2": "658946932305399731", "mpReserves": [ - "56050865660467891033795446", - "29919287623184073804003321", - "29282210738890896471965152" + "55363171747614116824653735", + "7050963039004769764183689", + "43724756435371527117312208" ], "fpReserves": [ - "16178120009694097309949153", - "6683015533706168786243926" + "6601732074478042975545685", + "3743866077997270731544480" ], - "mAssetSupply": "115232639794634718002601383", - "LPTokenSupply": "22694707512098285949976694" + "mAssetSupply": "105680620741669597080221444", + "LPTokenSupply": "10199532265286636884809115" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "90999654890020746035200", - "outputQty0": "90874229374756856539633", - "outputQty": "90000156448558158616175", + "inputQty": "105188610413072744448", + "outputQty0": "103947805366641812361", + "outputQty": "103420800747601328784", + "swapFee": "81857036736236464", "mpReserves": [ - "56141865315357911779830646", - "29919287623184073804003321", - "29282210738890896471965152" + "55363276936224529897398183", + "7050963039004769764183689", + "43724756435371527117312208" ], "fpReserves": [ - "16268994239068854166488786", - "6683015533706168786243926" + "6601836022283409617358046", + "3743762657196523130215696" ], - "mAssetSupply": "115323514024009474859141016", - "LPTokenSupply": "22784707668546844108592869" + "mAssetSupply": "105680724689474963722033805", + "LPTokenSupply": "10199532273472340558432761" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "4635302774698631168", - "outputQty0": "4639570411617040929", - "outputQty": "4598525029744014161", - "swapFee": "3675911682367804", - "mpReserves": [ - "56141865315357911779830646", - "29919292258486848502634489", - "29282210738890896471965152" - ], - "fpReserves": [ - "16268998878639265783529715", - "6683010935181139042229765" - ], - "mAssetSupply": "115323518663579886476181945", - "LPTokenSupply": "22784707668914435276829649" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "441562647117102720", - "outputQty0": "445588899895976657", - "outputQty": "446026324389291905", - "swapFee1": "264937588270261", - "swapFee2": "178235559958390", - "mpReserves": [ - "56141864869331587390538741", - "29919292258486848502634489", - "29282210738890896471965152" - ], - "fpReserves": [ - "16268998433050365887553058", - "6683010935181139042229765" - ], - "mAssetSupply": "115323518218169222140163678", - "LPTokenSupply": "22784707227378281918553955" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "151994748611736610275328", - "outputQty0": "152149511515556148316111", - "outputQty": "150767445523310917084852", - "swapFee": "120544983554584375108", + "inputQty": "14869501829145933381632", + "outputQty0": "16040620973588220702571", + "outputQty": "15789559323158263604341", "mpReserves": [ - "56141864869331587390538741", - "29919292258486848502634489", - "29434205487502633082240480" + "55363276936224529897398183", + "7065832540833915697565321", + "43724756435371527117312208" ], "fpReserves": [ - "16421147944565922035869169", - "6532243489657828125144913" + "6617876643256997838060617", + "3743762657196523130215696" ], - "mAssetSupply": "115475667729684778288479789", - "LPTokenSupply": "22784719281876637376991465" + "mAssetSupply": "105696765310448551942736376", + "LPTokenSupply": "10215321832795498822037102" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "183406628368336598073344", - "outputQty0": "185101117920100819320333", - "outputQty": "185280864349757038988999", - "swapFee1": "110043977021001958844", - "swapFee2": "74040447168040327728", - "mpReserves": [ - "55956584004981830351549742", - "29919292258486848502634489", - "29434205487502633082240480" - ], - "fpReserves": [ - "16236046826645821216548836", - "6532243489657828125144913" - ], - "mAssetSupply": "115290640652211845509487184", - "LPTokenSupply": "22601323657906002879114005" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "982001353922387", - "outputQty0": "980660285663935", - "outputQty": "971119823606208", - "mpReserves": [ - "55956584005963831705472129", - "29919292258486848502634489", - "29434205487502633082240480" - ], - "fpReserves": [ - "16236046827626481502212771", - "6532243489657828125144913" - ], - "mAssetSupply": "115290640653192505795151119", - "LPTokenSupply": "22601323658877122702720213" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1023713427360002998272", - "outputQty0": "1022315371933184817422", - "outputQty": "1012369524561127028107", + "inputQty": "366462415419283012059136", + "outputQty0": "372031086785568083727607", + "outputQty": "376218033920147705620846", + "swapFee1": "219877449251569807235", + "swapFee2": "223218652071340850236", "mpReserves": [ - "55957607719391191708470401", - "29919292258486848502634489", - "29434205487502633082240480" + "54987058902304382191777337", + "7065832540833915697565321", + "43724756435371527117312208" ], "fpReserves": [ - "16237069142998414687030193", - "6532243489657828125144913" + "6245845556471429754333010", + "3743762657196523130215696" ], - "mAssetSupply": "115291662968564438979968541", - "LPTokenSupply": "22602336028401683829748320" + "mAssetSupply": "105324957442315055199859005", + "LPTokenSupply": "9848881405121140966958689" }, { "type": "swap_fp_to_mp", - "inputQty": "282893638296496209133568", + "inputQty": "57269590633724501819392", "outputIndex": 2, - "outputQty": "284748377798703181357023", + "outputQty": "57923879138266889716821", "swapFee": "0", - "redemptionFee": "114061014393386660348", + "redemptionFee": "34487884019349616265", "mpReserves": [ - "55957607719391191708470401", - "29919292258486848502634489", - "29149457109703929900883457" + "54987058902304382191777337", + "7065832540833915697565321", + "43666832556233260227595387" ], "fpReserves": [ - "15951916607014948036157832", - "6815137127954324334278481" + "6188365749772513727223849", + "3801032247830247632035088" ], - "mAssetSupply": "115006624493595365715756528", - "LPTokenSupply": "22602336028401683829748320" + "mAssetSupply": "105267512123500158522366109", + "LPTokenSupply": "9848881405121140966958689" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4031323423657927114752", - "outputQty0": "4034979788951275090877", - "outputQty": "3996746329795798802132", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1449636874766547211517952", + "outputQty0": "1437378362461859637249133", + "outputQty": "1425665721403878879379836", + "swapFee": "1131771918371733631540", "mpReserves": [ - "55957607719391191708470401", - "29923323581910506429749241", - "29149457109703929900883457" + "54987058902304382191777337", + "7065832540833915697565321", + "45116469430999807439113339" ], "fpReserves": [ - "15955951586803899311248709", - "6815137127954324334278481" + "7625744112234373364472982", + "2375366526426368752655252" ], - "mAssetSupply": "115010659473384316990847405", - "LPTokenSupply": "22606332774731479628550452" + "mAssetSupply": "106704890485962018159615242", + "LPTokenSupply": "9848994582312978140321843" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "403761969771992186880", - "outputQty0": "404128070034539220062", - "outputQty": "400775310510546251863", - "swapFee": "320238817388214773", + "inputQty": "38715163574530704670720", + "outputQty0": "41791318328891292531369", + "outputQty": "41026025241026317434208", "mpReserves": [ - "55957607719391191708470401", - "29923727343880278421936121", - "29149457109703929900883457" + "54987058902304382191777337", + "7104547704408446402236041", + "45116469430999807439113339" ], "fpReserves": [ - "15956355714873933850468771", - "6814736352643813788026618" + "7667535430563264657004351", + "2375366526426368752655252" ], - "mAssetSupply": "115011063601454351530067467", - "LPTokenSupply": "22606332806755361367371929" + "mAssetSupply": "106746681804290909452146611", + "LPTokenSupply": "9890020607554004457756051" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "39944382379794216", - "outputQty0": "40302336144200390", - "outputQty": "40341793445319629", - "swapFee1": "23966629427876", - "swapFee2": "16120934457680", + "inputQty": "17611506366507882496", + "outputQty0": "17929531816256952470", + "outputQty": "18128033183268539857", + "swapFee1": "10566903819904729", + "swapFee2": "10757719089754171", "mpReserves": [ - "55957607679049398263150772", - "29923727343880278421936121", - "29149457109703929900883457" + "54987040774271198923237480", + "7104547704408446402236041", + "45116469430999807439113339" ], "fpReserves": [ - "15956355674571597706268381", - "6814736352643813788026618" + "7667517501031448400051881", + "2375366526426368752655252" ], - "mAssetSupply": "115011063561168136320324757", - "LPTokenSupply": "22606332766813375650520500" + "mAssetSupply": "106746663885516812284948312", + "LPTokenSupply": "9890002997104328331864027" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "15776714219160703336448", - "outputQty0": "15754973371880384278192", - "outputQty": "15623901021169003037782", - "swapFee": "12484512887875814194", - "mpReserves": [ - "55973384393268558966487220", - "29923727343880278421936121", - "29149457109703929900883457" - ], - "fpReserves": [ - "15972110647943478090546573", - "6799112451622644784988836" - ], - "mAssetSupply": "115026818534540016704602949", - "LPTokenSupply": "22606334015264664438101919" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1094159770883068966993920", - "outputQty0": "1095220673521870726077314", - "outputQty": "1084671973967723425690685", + "type": "swap_fp_to_mp", + "inputQty": "1154649670180463", + "outputIndex": 1, + "outputQty": "1083733875996852", + "swapFee": "0", + "redemptionFee": "702051516129", "mpReserves": [ - "55973384393268558966487220", - "29923727343880278421936121", - "30243616880586998867877377" + "54987040774271198923237480", + "7104547703324712526239189", + "45116469430999807439113339" ], "fpReserves": [ - "17067331321465348816623887", - "6799112451622644784988836" + "7667517499861362539836541", + "2375366527581018422835715" ], - "mAssetSupply": "116122039208061887430680263", - "LPTokenSupply": "23691005989232387863792604" + "mAssetSupply": "106746663884347428476249101", + "LPTokenSupply": "9890002997104328331864027" }, { "type": "swap_fp_to_mp", - "inputQty": "2626720268578348781797376", - "outputIndex": 2, - "outputQty": "2637136198049042031279551", + "inputQty": "75629314370411736072192", + "outputIndex": 0, + "outputQty": "77452111049131886620447", "swapFee": "0", - "redemptionFee": "1056405916085583174508", + "redemptionFee": "45962864590584867504", "mpReserves": [ - "55973384393268558966487220", - "29923727343880278421936121", - "27606480682537956836597826" + "54909588663222067036617033", + "7104547703324712526239189", + "45116469430999807439113339" ], "fpReserves": [ - "14426316531251390880353820", - "9425832720200993566786212" + "7590912725543721093996521", + "2450995841951430158907907" ], - "mAssetSupply": "113482080823764015077584704", - "LPTokenSupply": "23691005989232387863792604" + "mAssetSupply": "106670105072894377615276585", + "LPTokenSupply": "9890002997104328331864027" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2510375687171033530368", - "outputQty0": "2512478093105306872872", - "outputQty": "2492508745088243320986", + "type": "redeem", + "outputIndex": 1, + "inputQty": "9559652546382098432", + "outputQty0": "9730116890136856632", + "outputQty": "9013118887965882026", + "swapFee1": "5735791527829259", + "swapFee2": "5838070134082113", "mpReserves": [ - "55973384393268558966487220", - "29926237719567449455466489", - "27606480682537956836597826" + "54909588663222067036617033", + "7104538690205824560357163", + "45116469430999807439113339" ], "fpReserves": [ - "14428829009344496187226692", - "9425832720200993566786212" + "7590902995426830957139889", + "2450995841951430158907907" ], - "mAssetSupply": "113484593301857120384457576", - "LPTokenSupply": "23693498497977476107113590" + "mAssetSupply": "106670095348615557612502066", + "LPTokenSupply": "9889993438025361102548520" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "29243778076180568080384", - "outputQty0": "29268214172976739155824", - "outputQty": "29155505368667081116816", - "swapFee": "23228387874845114152", + "type": "mint", + "inputIndex": 2, + "inputQty": "10150482003602714918912", + "outputQty0": "10063105605761745049287", + "outputQty": "9880840979996510437267", "mpReserves": [ - "55973384393268558966487220", - "29955481497643630023546873", - "27606480682537956836597826" + "54909588663222067036617033", + "7104538690205824560357163", + "45126619913003410154032251" ], "fpReserves": [ - "14458097223517472926382516", - "9396677214832326485669396" + "7600966101032592702189176", + "2450995841951430158907907" ], - "mAssetSupply": "113513861516030097123613400", - "LPTokenSupply": "23693500820816263591625005" + "mAssetSupply": "106680158454221319357551353", + "LPTokenSupply": "9899874279005357612985787" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "124715761768863907840", - "outputQty0": "124819756800748879773", - "outputQty": "123825477290288208370", + "inputIndex": 2, + "inputQty": "72692046981780471808", + "outputQty0": "72066204589225927611", + "outputQty": "70760680702524367925", "mpReserves": [ - "55973384393268558966487220", - "29955606213405398887454713", - "27606480682537956836597826" + "54909588663222067036617033", + "7104538690205824560357163", + "45126692605050391934504059" ], "fpReserves": [ - "14458222043274273675262289", - "9396677214832326485669396" + "7601038167237181928116787", + "2450995841951430158907907" ], - "mAssetSupply": "113513986335786897872493173", - "LPTokenSupply": "23693624646293553879833375" + "mAssetSupply": "106680230520425908583478964", + "LPTokenSupply": "9899945039686060137353712" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "191945187177664702578688", - "outputQty0": "193366148146551783867296", - "outputQty": "193044455016205546625940", - "swapFee1": "115167112306598821547", - "swapFee2": "77346459258620713546", + "inputQty": "180030589395765517352960", + "outputQty0": "183230456712451288863117", + "outputQty": "184706072884267420845660", + "swapFee1": "108018353637459310411", + "swapFee2": "109938274027470773317", "mpReserves": [ - "55973384393268558966487220", - "29955606213405398887454713", - "27413436227521751289971886" + "54909588663222067036617033", + "7104538690205824560357163", + "44941986532166124513658399" ], "fpReserves": [ - "14264855895127721891394993", - "9396677214832326485669396" + "7417807710524730639253670", + "2450995841951430158907907" ], - "mAssetSupply": "113320697534099604709339423", - "LPTokenSupply": "23501690975827119837136841" + "mAssetSupply": "106497110001987484765389164", + "LPTokenSupply": "9719925252125658365931793" }, { "type": "swap_fp_to_mp", - "inputQty": "8278898785802079232", - "outputIndex": 2, - "outputQty": "8289582765857069283", + "inputQty": "902854147746187837440", + "outputIndex": 0, + "outputQty": "923743427949258885251", "swapFee": "0", - "redemptionFee": "3321406398653812", + "redemptionFee": "548183624846572386", "mpReserves": [ - "55973384393268558966487220", - "29955606213405398887454713", - "27413427937938985432902603" + "54908664919794117777731782", + "7104538690205824560357163", + "44941986532166124513658399" ], "fpReserves": [ - "14264847591611725256862767", - "9396685493731112287748628" + "7416894071149986351942031", + "2451898696099176346745347" ], - "mAssetSupply": "113320689233905014473461009", - "LPTokenSupply": "23501690975827119837136841" + "mAssetSupply": "106496196910796365324649911", + "LPTokenSupply": "9719925252125658365931793" }, { "type": "mint", "inputIndex": 1, - "inputQty": "10224441150810275971072", - "outputQty0": "10232869588823513984599", - "outputQty": "10151743368273685493612", + "inputQty": "4295978888771692134400", + "outputQty0": "4633698526702912024980", + "outputQty": "4550294282949608334892", "mpReserves": [ - "55973384393268558966487220", - "29965830654556209163425785", - "27413427937938985432902603" + "54908664919794117777731782", + "7108834669094596252491563", + "44941986532166124513658399" ], "fpReserves": [ - "14275080461200548770847366", - "9396685493731112287748628" + "7421527769676689263967011", + "2451898696099176346745347" ], - "mAssetSupply": "113330922103493837987445608", - "LPTokenSupply": "23511842719195393522630453" + "mAssetSupply": "106500830609323068236674891", + "LPTokenSupply": "9724475546408607974266685" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2875244178245962694656", - "outputQty0": "2896484758200007341444", - "outputQty": "2892942646185496009975", - "swapFee1": "1725146506947577616", - "swapFee2": "1158593903280002936", - "mpReserves": [ - "55973384393268558966487220", - "29962937711910023667415810", - "27413427937938985432902603" - ], - "fpReserves": [ - "14272183976442348763505922", - "9396685493731112287748628" - ], - "mAssetSupply": "113328026777329541260107100", - "LPTokenSupply": "23508967647531798254693558" - }, - { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "27447848464377672892416", "outputIndex": 2, - "inputQty": "3873031758105305677824", - "outputQty0": "3901640649401593825352", - "outputQty": "3895091272103043884159", - "swapFee1": "2323819054863183406", - "swapFee2": "1560656259760637530", + "outputQty": "27994383603996963875591", + "swapFee": "0", + "redemptionFee": "16663031395355171166", "mpReserves": [ - "55973384393268558966487220", - "29962937711910023667415810", - "27409532846666882389018444" + "54908664919794117777731782", + "7108834669094596252491563", + "44913992148562127549782808" ], "fpReserves": [ - "14268282335792947169680570", - "9396685493731112287748628" + "7393756050684430645356828", + "2479346544563554019637763" ], - "mAssetSupply": "113324126697336399426919278", - "LPTokenSupply": "23505094848155598435334074" + "mAssetSupply": "106473075553362204973235874", + "LPTokenSupply": "9724475546408607974266685" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "34046485187435144675328", - "outputQty0": "34297830711042051119120", - "outputQty": "34240159744384253321174", - "swapFee1": "20427891112461086805", - "swapFee2": "13719132284416820447", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "113329796467220414464", + "outputQty0": "112023603062555603903", + "outputQty": "110645231959749444440", + "swapFee": "88012360918243953", "mpReserves": [ - "55973384393268558966487220", - "29962937711910023667415810", - "27375292686922498135697270" + "54908778249590584998146246", + "7108834669094596252491563", + "44913992148562127549782808" ], "fpReserves": [ - "14233984505081905118561450", - "9396685493731112287748628" + "7393868074287493200960731", + "2479235899331594270193323" ], - "mAssetSupply": "113289842585757641792620605", - "LPTokenSupply": "23471050405757274536767426" + "mAssetSupply": "106473187576965267528839777", + "LPTokenSupply": "9724475555209844066091080" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "84414643866094321664", - "outputQty0": "85037563594130288991", - "outputQty": "84933705815849686744", - "swapFee1": "50648786319656592", - "swapFee2": "34015025437652115", + "type": "swap_fp_to_mp", + "inputQty": "44672928950394648788992", + "outputIndex": 2, + "outputQty": "45544296502494011431389", + "swapFee": "0", + "redemptionFee": "27109501154539116873", "mpReserves": [ - "55973384393268558966487220", - "29962852778204207817729066", - "27375292686922498135697270" + "54908778249590584998146246", + "7108834669094596252491563", + "44868447852059633538351419" ], "fpReserves": [ - "14233899467518310988272459", - "9396685493731112287748628" + "7348685572363261339505219", + "2523908828281988918982315" ], - "mAssetSupply": "113289757582209073099983729", - "LPTokenSupply": "23470965996178287074411421" + "mAssetSupply": "106428032184542190206501138", + "LPTokenSupply": "9724475555209844066091080" }, { "type": "mint", "inputIndex": 0, - "inputQty": "10826945108745264300032", - "outputQty0": "10811154324371888676410", - "outputQty": "10725507888627564372860", + "inputQty": "4589346115149315440640", + "outputQty0": "4536438845350468312298", + "outputQty": "4455648875738585784048", "mpReserves": [ - "55984211338377304230787252", - "29962852778204207817729066", - "27375292686922498135697270" + "54913367595705734313586886", + "7108834669094596252491563", + "44868447852059633538351419" ], "fpReserves": [ - "14244710621842682876948869", - "9396685493731112287748628" + "7353222011208611807817517", + "2523908828281988918982315" ], - "mAssetSupply": "113300568736533444988660139", - "LPTokenSupply": "23481691504066914638784281" + "mAssetSupply": "106432568623387540674813436", + "LPTokenSupply": "9728931204085582651875128" }, { "type": "mint", "inputIndex": 2, - "inputQty": "7117823435153943298048", - "outputQty0": "7126978355947635514459", - "outputQty": "7070503745315559741411", + "inputQty": "1509783583940801", + "outputQty0": "1496901259859318", + "outputQty": "1470240505818587", "mpReserves": [ - "55984211338377304230787252", - "29962852778204207817729066", - "27382410510357652078995318" + "54913367595705734313586886", + "7108834669094596252491563", + "44868447853569417122292220" ], "fpReserves": [ - "14251837600198630512463328", - "9396685493731112287748628" + "7353222012705513067676835", + "2523908828281988918982315" ], - "mAssetSupply": "113307695714889392624174598", - "LPTokenSupply": "23488762007812230198525692" + "mAssetSupply": "106432568624884441934672754", + "LPTokenSupply": "9728931205555823157693715" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "19752763189226100490240", - "outputQty0": "19898560354518610141761", - "outputQty": "19919642087612119551962", - "swapFee1": "11851657913535660294", - "swapFee2": "7959424141807444056", + "type": "swap_fp_to_mp", + "inputQty": "2353613355350304227328", + "outputIndex": 2, + "outputQty": "2398941571275868364703", + "swapFee": "0", + "redemptionFee": "1427940709000870276", "mpReserves": [ - "55964291696289692111235290", - "29962852778204207817729066", - "27382410510357652078995318" + "54913367595705734313586886", + "7108834669094596252491563", + "44866048911998141253927517" ], "fpReserves": [ - "14231939039844111902321567", - "9396685493731112287748628" + "7350842111523844950549773", + "2526262441637339223209643" ], - "mAssetSupply": "113287805113959015821476893", - "LPTokenSupply": "23469010429788795451601481" + "mAssetSupply": "106430190151643482818415968", + "LPTokenSupply": "9728931205555823157693715" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "586799700117995388928", - "outputQty0": "591129824043043688663", - "outputQty": "590135205672501187922", - "swapFee1": "352079820070797233", - "swapFee2": "236451929617217475", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1371654989261224353464320", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "22575191217545105408", + "outputQty0": "22382581778620248741", + "outputQty": "21984071508350502639", "mpReserves": [ - "55964291696289692111235290", - "29962852778204207817729066", - "27381820375151979577807396" + "54913367595705734313586886", + "7108834669094596252491563", + "44866071487189358799032925" ], "fpReserves": [ - "14231347910020068858632904", - "9396685493731112287748628" + "7350864494105623570798514", + "2526262441637339223209643" ], - "mAssetSupply": "113287214220586902395005705", - "LPTokenSupply": "23468423665296659463292276" + "mAssetSupply": "106430212534225261438664709", + "LPTokenSupply": "9728953189627331508196354" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "2640734178130093146112", - "outputQty0": "2660219790730095316349", - "outputQty": "2656970572061354361750", - "swapFee1": "1584440506878055887", - "swapFee2": "1064087916292038126", + "inputQty": "341620153721875286982656", + "outputQty0": "347563023423090505011580", + "outputQty": "321000961436894680727144", + "swapFee1": "204972092233125172189", + "swapFee2": "208537814053854303006", "mpReserves": [ - "55964291696289692111235290", - "29960195807632146463367316", - "27381820375151979577807396" + "54913367595705734313586886", + "6787833707657701571764419", + "44866071487189358799032925" ], "fpReserves": [ - "14228687690229338763316555", - "9396685493731112287748628" + "7003301470682533065786934", + "2526262441637339223209643" ], - "mAssetSupply": "113284555064884088591727482", - "LPTokenSupply": "23465783089562580057951752" + "mAssetSupply": "106082858048616224787956135", + "LPTokenSupply": "9387353533114679533730916" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "54293496562565213323264", - "outputQty0": "54214291127735674759719", - "outputQty": "54009333737923023919857", - "swapFee": "43027658993997149610", + "inputIndex": 1, + "inputQty": "1260636802637746405376", + "outputQty0": "1368898012627635365781", + "outputQty": "1353922061321730157298", + "swapFee": "1075853241975686441", "mpReserves": [ - "56018585192852257324558554", - "29960195807632146463367316", - "27381820375151979577807396" + "54913367595705734313586886", + "6789094344460339318169795", + "44866071487189358799032925" ], "fpReserves": [ - "14282901981357074438076274", - "9342676159993189263828771" + "7004670368695160701152715", + "2524908519576017493052345" ], - "mAssetSupply": "113338769356011824266487201", - "LPTokenSupply": "23465787392328479457666713" + "mAssetSupply": "106084226946628852423321916", + "LPTokenSupply": "9387353640700003731299560" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1853164435145354486218752", - "outputQty0": "1866490997901769418712889", - "outputQty": "1863068561486108595367884", - "swapFee1": "1111898661087212691731", - "swapFee2": "746596399160707767485", + "type": "mint", + "inputIndex": 1, + "inputQty": "961245503018789486198784", + "outputQty0": "1033742714963014317106658", + "outputQty": "1015197730868446961389982", "mpReserves": [ - "56018585192852257324558554", - "29960195807632146463367316", - "25518751813665870982439512" + "54913367595705734313586886", + "7750339847479128804368579", + "44866071487189358799032925" ], "fpReserves": [ - "12416410983455305019363385", - "9342676159993189263828771" + "8038413083658175018259373", + "2524908519576017493052345" ], - "mAssetSupply": "111473024954509215555541797", - "LPTokenSupply": "21612734147049233692717134" + "mAssetSupply": "107117969661591866740428574", + "LPTokenSupply": "10402551371568450692689542" }, { - "type": "swap_fp_to_mp", - "inputQty": "34493949224270841249792", - "outputIndex": 2, - "outputQty": "34491439796728822556130", - "swapFee": "0", - "redemptionFee": "13824148100120138016", + "type": "mint", + "inputIndex": 2, + "inputQty": "353399737089414725632", + "outputQty0": "350672346551154142403", + "outputQty": "344261180091865527824", "mpReserves": [ - "56018585192852257324558554", - "29960195807632146463367316", - "25484260373869142159883382" + "54913367595705734313586886", + "7750339847479128804368579", + "44866424886926448213758557" ], "fpReserves": [ - "12381850613205004674322887", - "9377170109217460105078563" + "8038763756004726172401776", + "2524908519576017493052345" ], - "mAssetSupply": "111438478408407015330639315", - "LPTokenSupply": "21612734147049233692717134" + "mAssetSupply": "107118320333938417894570977", + "LPTokenSupply": "10402895632748542558217366" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "13801480393492994719744", "outputIndex": 2, - "inputQty": "14457142050392762", - "outputQty0": "14558185885975039", - "outputQty": "14529104352123156", - "swapFee1": "8674285230235", - "swapFee2": "5823274354390", + "outputQty": "14080764969986293235001", + "swapFee": "0", + "redemptionFee": "8388305242220459069", "mpReserves": [ - "56018585192852257324558554", - "29960195807632146463367316", - "25484260359340037807760226" + "54913367595705734313586886", + "7750339847479128804368579", + "44852344121956461920523556" ], "fpReserves": [ - "12381850598646818788347848", - "9377170109217460105078563" + "8024783247267692073953043", + "2538709999969510487772089" ], - "mAssetSupply": "111438478393854652719018666", - "LPTokenSupply": "21612734132592959070847395" + "mAssetSupply": "107104348213506626016581313", + "LPTokenSupply": "10402895632748542558217366" }, { "type": "mint", "inputIndex": 2, - "inputQty": "68217793777240186880", - "outputQty0": "68326996724743088081", - "outputQty": "67812048071028235301", + "inputQty": "1408452350764976896", + "outputQty0": "1397587549978622399", + "outputQty": "1372089128211492045", "mpReserves": [ - "56018585192852257324558554", - "29960195807632146463367316", - "25484328577133815047947106" + "54913367595705734313586886", + "7750339847479128804368579", + "44852345530408812685500452" ], "fpReserves": [ - "12381918925643543531435929", - "9377170109217460105078563" + "8024784644855242052575442", + "2538709999969510487772089" ], - "mAssetSupply": "111438546720851377462106747", - "LPTokenSupply": "21612801944641030099082696" + "mAssetSupply": "107104349611094175995203712", + "LPTokenSupply": "10402897004837670769709411" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "849367142577210752", - "outputQty0": "848042470714714333", - "outputQty": "845755389057841693", - "swapFee": "673320930738437", - "mpReserves": [ - "56018586042219399901769306", - "29960195807632146463367316", - "25484328577133815047947106" - ], - "fpReserves": [ - "12381919773686014246150262", - "9377169263462071047236870" - ], - "mAssetSupply": "111438547568893848176821080", - "LPTokenSupply": "21612801944708362192156539" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "38399215534327648485376", - "outputQty0": "38427336469210880074579", - "outputQty": "38322698276029320818022", - "swapFee": "30510033449739505004", + "inputQty": "5954218192273856512", + "outputQty0": "5891437144283531548", + "outputQty": "5811804663098116489", + "swapFee": "4627160186498685", "mpReserves": [ - "56018586042219399901769306", - "29998595023166474111852692", - "25484328577133815047947106" + "54913373549923926587443398", + "7750339847479128804368579", + "44852345530408812685500452" ], "fpReserves": [ - "12420347110155225126224841", - "9338846565186041726418848" + "8024790536292386336106990", + "2538704188164847389655600" ], - "mAssetSupply": "111476974905363059056895659", - "LPTokenSupply": "21612804995711707166107039" + "mAssetSupply": "107104355502531320278735260", + "LPTokenSupply": "10402897005300386788359279" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "60261711173303058432", "outputIndex": 2, - "inputQty": "7937380690013988061184", - "outputQty0": "7993039235153101540618", - "outputQty": "7977051651692223199696", - "swapFee1": "4762428414008392836", - "swapFee2": "3197215694061240616", + "outputQty": "61476122291019795816", + "swapFee": "0", + "redemptionFee": "36623111469303693", "mpReserves": [ - "56018586042219399901769306", - "29998595023166474111852692", - "25476351525482122824747410" + "54913373549923926587443398", + "7750339847479128804368579", + "44852284054286521665704636" ], "fpReserves": [ - "12412354070920072024684223", - "9338846565186041726418848" + "8024729497773270829951687", + "2538764449876020692714032" ], - "mAssetSupply": "111468985063343600016595657", - "LPTokenSupply": "21604868091264534578885138" + "mAssetSupply": "107104294500635316241883650", + "LPTokenSupply": "10402897005300386788359279" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "114598149374849035796480", - "outputQty0": "114780790856859154188230", - "outputQty": "113911584217679048428715", - "mpReserves": [ - "56018586042219399901769306", - "29998595023166474111852692", - "25590949674856971860543890" - ], - "fpReserves": [ - "12527134861776931178872453", - "9338846565186041726418848" - ], - "mAssetSupply": "111583765854200459170783887", - "LPTokenSupply": "21718779675482213627313853" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1449287193331010109440", - "outputQty0": "1459490620093849684522", - "outputQty": "1456600204352664479809", - "swapFee1": "869572315998606065", - "swapFee2": "583796248037539873", + "inputIndex": 1, + "inputQty": "199249794641354063872", + "outputQty0": "212445429065277243886", + "outputQty": "208569464508188448503", "mpReserves": [ - "56018586042219399901769306", - "29998595023166474111852692", - "25589493074652619196064081" + "54913373549923926587443398", + "7750539097273770158432451", + "44852284054286521665704636" ], "fpReserves": [ - "12525675371156837329187931", - "9338846565186041726418848" + "8024941943202336107195573", + "2538764449876020692714032" ], - "mAssetSupply": "111582306947376613358639238", - "LPTokenSupply": "21717330475246114217065019" + "mAssetSupply": "107104506946064381519127536", + "LPTokenSupply": "10403105574764894976807782" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "41950315589781392", - "outputQty0": "41885203073462944", - "outputQty": "41767469793601638", - "swapFee": "33253944504726", + "type": "swap_fp_to_mp", + "inputQty": "1694064794324593803264", + "outputIndex": 0, + "outputQty": "1733129644604915352088", + "swapFee": "0", + "redemptionFee": "1029531576611849380", "mpReserves": [ - "56018586084169715491550698", - "29998595023166474111852692", - "25589493074652619196064081" + "54911640420279321672091310", + "7750539097273770158432451", + "44852284054286521665704636" ], "fpReserves": [ - "12525675413042040402650875", - "9338846523418571932817210" + "8023226057241316358227988", + "2540458514670345286517296" ], - "mAssetSupply": "111582306989261816432102182", - "LPTokenSupply": "21717330475249439611515491" + "mAssetSupply": "107102792089634938382009331", + "LPTokenSupply": "10403105574764894976807782" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1008628526704622305280", - "outputQty0": "1007062975882761320016", - "outputQty": "999422517556666459698", + "type": "redeem", + "outputIndex": 2, + "inputQty": "98593585826969621102592", + "outputQty0": "100361715809041687183376", + "outputQty": "101079895701363403979038", + "swapFee1": "59156151496181772661", + "swapFee2": "60217029485425012310", "mpReserves": [ - "56019594712696420113855978", - "29998595023166474111852692", - "25589493074652619196064081" + "54911640420279321672091310", + "7750539097273770158432451", + "44751204158585158261725598" ], "fpReserves": [ - "12526682476017923163970891", - "9338846523418571932817210" + "7922864341432274671044612", + "2540458514670345286517296" ], - "mAssetSupply": "111583314052237699193422198", - "LPTokenSupply": "21718329897766996277975189" + "mAssetSupply": "107002490590855382119838265", + "LPTokenSupply": "10304517904553074973882456" }, { "type": "swap_fp_to_mp", - "inputQty": "11252088589613382238208", + "inputQty": "958507410371832578048", "outputIndex": 0, - "outputQty": "11287705914127311944958", + "outputQty": "980330061944355565399", "swapFee": "0", - "redemptionFee": "4509879294145471379", + "redemptionFee": "582343267790038960", "mpReserves": [ - "56008307006782292801911020", - "29998595023166474111852692", - "25589493074652619196064081" + "54910660090217377316525911", + "7750539097273770158432451", + "44751204158585158261725598" ], "fpReserves": [ - "12515407777782559485522735", - "9350098612008185315055418" + "7921893769319291272776345", + "2541417022080717119095344" ], - "mAssetSupply": "111572043863881629660445421", - "LPTokenSupply": "21718329897766996277975189" + "mAssetSupply": "107001520601085666511608958", + "LPTokenSupply": "10304517904553074973882456" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "457358546306940360720384", - "outputQty0": "457682458754829162456598", - "outputQty": "456256185217441973222393", - "swapFee": "363349772259002810967", + "inputQty": "411783631973807414050816", + "outputQty0": "437654600297789285501008", + "outputQty": "430621054987856456290774", + "swapFee": "343709420179941631283", "mpReserves": [ - "56008307006782292801911020", - "30455953569473414472573076", - "25589493074652619196064081" + "54910660090217377316525911", + "8162322729247577572483267", + "44751204158585158261725598" ], "fpReserves": [ - "12973090236537388647979333", - "8893842426790743341833025" + "8359548369617080558277353", + "2110795967092860662804570" ], - "mAssetSupply": "112029726322636458822902019", - "LPTokenSupply": "21718366232744222178256285" + "mAssetSupply": "107439175201383455797109966", + "LPTokenSupply": "10304552275495092968045584" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "111826681215564", - "outputQty0": "112006207500223", - "outputQty": "111620346105422", - "swapFee": "88900211142", + "type": "mint", + "inputIndex": 0, + "inputQty": "2531925137278109", + "outputQty0": "2506620404619863", + "outputQty": "2457497124067848", "mpReserves": [ - "56008307006782292801911020", - "30455953569473414472573076", - "25589493074764445877279645" + "54910660092749302453804020", + "8162322729247577572483267", + "44751204158585158261725598" ], "fpReserves": [ - "12973090236649394855479556", - "8893842426679122995727603" + "8359548372123700962897216", + "2110795967092860662804570" ], - "mAssetSupply": "112029726322748465030402242", - "LPTokenSupply": "21718366232744231068277399" + "mAssetSupply": "107439175203890076201729829", + "LPTokenSupply": "10304552277952590092113432" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "131012756438969535692800", - "outputQty0": "131969978475260554172738", - "outputQty": "131826299736972350177422", - "swapFee1": "78607653863381721415", - "swapFee2": "52787991390104221669", + "inputQty": "76275578519099812085760", + "outputQty0": "77751193734456237617328", + "outputQty": "73289338316586171948966", + "swapFee1": "45765347111459887251", + "swapFee2": "46650716240673742570", "mpReserves": [ - "56008307006782292801911020", - "30324127269736442122395654", - "25589493074764445877279645" + "54910660092749302453804020", + "8089033390930991400534301", + "44751204158585158261725598" ], "fpReserves": [ - "12841120258174134301306818", - "8893842426679122995727603" + "8281797178389244725279888", + "2110795967092860662804570" ], - "mAssetSupply": "111897809132264594580451173", - "LPTokenSupply": "21587361337070647870756740" + "mAssetSupply": "107361470660871860637855071", + "LPTokenSupply": "10228281275968201426016397" }, { - "type": "swap_fp_to_mp", - "inputQty": "5069856203204662919168", - "outputIndex": 2, - "outputQty": "5072740998455170312826", - "swapFee": "0", - "redemptionFee": "2033155074730887110", + "type": "mint", + "inputIndex": 1, + "inputQty": "42598556585937172692992", + "outputQty0": "45174361341626213056614", + "outputQty": "44290813064198542804525", "mpReserves": [ - "56008307006782292801911020", - "30324127269736442122395654", - "25584420333765990706966819" + "54910660092749302453804020", + "8131631947516928573227293", + "44751204158585158261725598" ], "fpReserves": [ - "12836037370487307083529444", - "8898912282882327658646771" + "8326971539730870938336502", + "2110795967092860662804570" ], - "mAssetSupply": "111892728277732842093560909", - "LPTokenSupply": "21587361337070647870756740" + "mAssetSupply": "107406645022213486850911685", + "LPTokenSupply": "10272572089032399968820922" }, { "type": "mint", "inputIndex": 1, - "inputQty": "17859619964171298275328", - "outputQty0": "17872045498297951100568", - "outputQty": "17732014706491365305984", + "inputQty": "4633135709402780672", + "outputQty0": "4911844746273773808", + "outputQty": "4815689847889975874", "mpReserves": [ - "56008307006782292801911020", - "30341986889700613420670982", - "25584420333765990706966819" + "54910660092749302453804020", + "8131636580652637976007965", + "44751204158585158261725598" ], "fpReserves": [ - "12853909415985605034630012", - "8898912282882327658646771" + "8326976451575617212110310", + "2110795967092860662804570" ], - "mAssetSupply": "111910600323231140044661477", - "LPTokenSupply": "21605093351777139236062724" + "mAssetSupply": "107406649934058233124685493", + "LPTokenSupply": "10272576904722247858796796" }, { "type": "swap_fp_to_mp", - "inputQty": "17804244820182450569216", - "outputIndex": 1, - "outputQty": "17830354619303150692962", + "inputQty": "30090782143211393515520", + "outputIndex": 0, + "outputQty": "30943103995808839749215", "swapFee": "0", - "redemptionFee": "7139959889019410558", + "redemptionFee": "18390679266917123387", "mpReserves": [ - "56008307006782292801911020", - "30324156535081310269978020", - "25584420333765990706966819" + "54879716988753493614054805", + "8131636580652637976007965", + "44751204158585158261725598" ], "fpReserves": [ - "12836059516263056508232544", - "8916716527702510109215987" + "8296325319464088673131017", + "2140886749236072056320090" ], - "mAssetSupply": "111892757563468480537674567", - "LPTokenSupply": "21605093351777139236062724" + "mAssetSupply": "107376017192625971502829587", + "LPTokenSupply": "10272576904722247858796796" }, { - "type": "swap_fp_to_mp", - "inputQty": "558476253308137213263872", - "outputIndex": 2, - "outputQty": "558531889177613146515235", - "swapFee": "0", - "redemptionFee": "223871195406530340009", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "37443221679318501425152", + "outputQty0": "39684007247782201737802", + "outputQty": "38924096845580779135760", + "swapFee": "31128861141558401818", "mpReserves": [ - "56008307006782292801911020", - "30324156535081310269978020", - "25025888444588377560451584" + "54879716988753493614054805", + "8169079802331956477433117", + "44751204158585158261725598" ], "fpReserves": [ - "12276381527746730658209590", - "9475192781010647322479859" + "8336009326711870874868819", + "2101962652390491277184330" ], - "mAssetSupply": "111333303446147561217991622", - "LPTokenSupply": "21605093351777139236062724" + "mAssetSupply": "107415701199873753704567389", + "LPTokenSupply": "10272580017608362014636977" }, { "type": "swap_fp_to_mp", - "inputQty": "4039405559881471488", + "inputQty": "7221672598225487", "outputIndex": 1, - "outputQty": "4042210211289621954", + "outputQty": "6941532502293604", "swapFee": "0", - "redemptionFee": "1618613692549466", + "redemptionFee": "4415695095777", "mpReserves": [ - "56008307006782292801911020", - "30324152492871098980356066", - "25025888444588377560451584" + "54879716988753493614054805", + "8169079795390423975139513", + "44751204158585158261725598" ], "fpReserves": [ - "12276377481212499284543345", - "9475196820416207203951347" + "8336009319352379048573396", + "2101962659612163875409817" ], - "mAssetSupply": "111333299401231943536874843", - "LPTokenSupply": "21605093351777139236062724" + "mAssetSupply": "107415701192518677573367743", + "LPTokenSupply": "10272580017608362014636977" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "516161130848509296640", - "outputQty0": "516506576622661759220", - "outputQty": "512634158526915383316", + "inputIndex": 0, + "inputQty": "13235887705850474659840", + "outputQty0": "13103791989172750244042", + "outputQty": "12846721348364178585230", "mpReserves": [ - "56008307006782292801911020", - "30324668654001947489652706", - "25025888444588377560451584" + "54892952876459344088714645", + "8169079795390423975139513", + "44751204158585158261725598" ], "fpReserves": [ - "12276893987789121946302565", - "9475196820416207203951347" + "8349113111341551798817438", + "2101962659612163875409817" ], - "mAssetSupply": "111333815907808566198634063", - "LPTokenSupply": "21605605985935666151446040" + "mAssetSupply": "107428804984507850323611785", + "LPTokenSupply": "10285426738956726193222207" }, { - "type": "swap_fp_to_mp", - "inputQty": "410915274155039408521216", - "outputIndex": 2, - "outputQty": "410648431218695698447943", - "swapFee": "0", - "redemptionFee": "164611560226436000489", + "type": "redeem", + "outputIndex": 0, + "inputQty": "10681061045339614", + "outputQty0": "10888315233415487", + "outputQty": "10991495163634030", + "swapFee1": "6408636627203", + "swapFee2": "6532989140049", "mpReserves": [ - "56008307006782292801911020", - "30324668654001947489652706", - "24615240013369681862003641" + "54892952865467848925080615", + "8169079795390423975139513", + "44751204158585158261725598" ], "fpReserves": [ - "11865365087223031945079858", - "9886112094571246612472563" + "8349113100453236565401951", + "2101962659612163875409817" ], - "mAssetSupply": "110922451618802702633411845", - "LPTokenSupply": "21605605985935666151446040" + "mAssetSupply": "107428804973626068079336347", + "LPTokenSupply": "10285426728276306011545313" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "14152843425328505290752", - "outputQty0": "14178066429921561532511", - "outputQty": "14149248481917108533201", - "swapFee": "11260092127544127050", + "type": "swap_fp_to_mp", + "inputQty": "186611696500069357322240", + "outputIndex": 0, + "outputQty": "191661085643136962181206", + "swapFee": "0", + "redemptionFee": "113919650795218161326", "mpReserves": [ - "56008307006782292801911020", - "30324668654001947489652706", - "24629392856795010367294393" + "54701291779824711962899409", + "8169079795390423975139513", + "44751204158585158261725598" ], "fpReserves": [ - "11879543153652953506612369", - "9871962846089329503939362" + "8159247015794539629857589", + "2288574356112233232732057" ], - "mAssetSupply": "110936629685232624194944356", - "LPTokenSupply": "21605607111944878905858745" + "mAssetSupply": "107239052808618166361953311", + "LPTokenSupply": "10285426728276306011545313" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "707071908666198540156928", - "outputQty0": "711752812098610769550082", - "outputQty": "710976937329183342157940", - "swapFee1": "424243145199719124094", - "swapFee2": "284701124839444307820", + "inputQty": "78660159127210038394880", + "outputQty0": "80129546955599570160513", + "outputQty": "75556211334224738710771", + "swapFee1": "47196095476326023036", + "swapFee2": "48077728173359742096", "mpReserves": [ - "56008307006782292801911020", - "29613691716672764147494766", - "24629392856795010367294393" + "54701291779824711962899409", + "8093523584056199236428742", + "44751204158585158261725598" ], "fpReserves": [ - "11167790341554342737062287", - "9871962846089329503939362" + "8079117468838940059697076", + "2288574356112233232732057" ], - "mAssetSupply": "110225161574258852869702094", - "LPTokenSupply": "20898577627593200337614226" + "mAssetSupply": "107158971339390740151534894", + "LPTokenSupply": "10206771288758643605752736" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "11949948556614110806016", - "outputQty0": "11930547437996471063009", - "outputQty": "11911117368056365608131", - "swapFee": "9476723051591963402", - "mpReserves": [ - "56020256955338906912717036", - "29613691716672764147494766", - "24629392856795010367294393" - ], - "fpReserves": [ - "11179720888992339208125296", - "9860051728721273138331231" - ], - "mAssetSupply": "110237092121696849340765103", - "LPTokenSupply": "20898578575265505496810566" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2594349535260640280576", - "outputQty0": "2598877668584778620263", - "outputQty": "2594620877010121566222", - "swapFee": "2064338551620655567", - "mpReserves": [ - "56020256955338906912717036", - "29613691716672764147494766", - "24631987206330271007574969" - ], - "fpReserves": [ - "11182319766660923986745559", - "9857457107844263016765009" - ], - "mAssetSupply": "110239690999365434119385366", - "LPTokenSupply": "20898578781699360658876122" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "893335699877633920", - "outputQty0": "894894683363488996", - "outputQty": "888538942045175987", - "mpReserves": [ - "56020256955338906912717036", - "29613691716672764147494766", - "24631988099665970885208889" - ], - "fpReserves": [ - "11182320661555607350234555", - "9857457107844263016765009" - ], - "mAssetSupply": "110239691894260117482874362", - "LPTokenSupply": "20898579670238302704052109" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "565620748609419", - "outputQty0": "564702369739494", - "outputQty": "560691727689406", + "inputIndex": 1, + "inputQty": "12258556225603452928", + "outputQty0": "12999487992191002542", + "outputQty": "12789450548596847078", + "swapFee": "10203018661451146", "mpReserves": [ - "56020256955904527661326455", - "29613691716672764147494766", - "24631988099665970885208889" + "54701291779824711962899409", + "8093535842612424839881670", + "44751204158585158261725598" ], "fpReserves": [ - "11182320662120309719974049", - "9857457107844263016765009" + "8079130468326932250699618", + "2288561566661684635884979" ], - "mAssetSupply": "110239691894824819852613856", - "LPTokenSupply": "20898579670798994431741515" + "mAssetSupply": "107158984338878732342537436", + "LPTokenSupply": "10206771289778945471897850" }, { "type": "swap_fp_to_mp", - "inputQty": "24171639248273911808", + "inputQty": "12075704715012915331072", "outputIndex": 1, - "outputQty": "24164560654806010163", + "outputQty": "11556278379177798244896", "swapFee": "0", - "redemptionFee": "9676786737041509", + "redemptionFee": "7357860823887167048", "mpReserves": [ - "56020256955904527661326455", - "29613667552112109341484603", - "24631988099665970885208889" + "54701291779824711962899409", + "8081979564233247041636774", + "44751204158585158261725598" ], "fpReserves": [ - "11182296470153467116201042", - "9857481279483511290676817" + "8066867366953786972285897", + "2300637271376697551216051" ], - "mAssetSupply": "110239667712534763985882358", - "LPTokenSupply": "20898579670798994431741515" + "mAssetSupply": "107146728595366410951290763", + "LPTokenSupply": "10206771289778945471897850" }, { - "type": "swap_fp_to_mp", - "inputQty": "708013729660859973632", - "outputIndex": 0, - "outputQty": "709477311347052357708", - "swapFee": "0", - "redemptionFee": "283443525035225609", + "type": "mint", + "inputIndex": 1, + "inputQty": "566035471091075317760", + "outputQty0": "600341595644841129455", + "outputQty": "589017494734654027923", "mpReserves": [ - "56019547478593180608968747", - "29613667552112109341484603", - "24631988099665970885208889" + "54701291779824711962899409", + "8082545599704338116954534", + "44751204158585158261725598" ], "fpReserves": [ - "11181587861340879052177446", - "9858189293213172150650449" + "8067467708549431813415352", + "2300637271376697551216051" ], - "mAssetSupply": "110238959387165700957084371", - "LPTokenSupply": "20898579670798994431741515" + "mAssetSupply": "107147328936962055792420218", + "LPTokenSupply": "10207360307273680125925773" }, { "type": "mint", "inputIndex": 2, - "inputQty": "15704697382589006086144", - "outputQty0": "15732078983596323211342", - "outputQty": "15620318400897945467358", + "inputQty": "385161273459841005780992", + "outputQty0": "382321218327759426570366", + "outputQty": "375057146634218481580274", "mpReserves": [ - "56019547478593180608968747", - "29613667552112109341484603", - "24647692797048559891295033" + "54701291779824711962899409", + "8082545599704338116954534", + "45136365432044999267506590" ], "fpReserves": [ - "11197319940324475375388788", - "9858189293213172150650449" + "8449788926877191239985718", + "2300637271376697551216051" ], - "mAssetSupply": "110254691466149297280295713", - "LPTokenSupply": "20914199989199892377208873" + "mAssetSupply": "107529650155289815218990584", + "LPTokenSupply": "10582417453907898607506047" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "648488490580380800", - "outputQty0": "652737884575747410", - "outputQty": "651342165944514584", - "swapFee1": "389093094348228", - "swapFee2": "261095153830298", + "inputQty": "240293552287121899520", + "outputQty0": "244834678822431580995", + "outputQty": "246517309527245661092", + "swapFee1": "144176131372273139", + "swapFee2": "146900807293458948", "mpReserves": [ - "56019547478593180608968747", - "29613667552112109341484603", - "24647692145706393946780449" + "54701291779824711962899409", + "8082545599704338116954534", + "45136118914735472021845498" ], "fpReserves": [ - "11197319287586590799641378", - "9858189293213172150650449" + "8449544092198368808404723", + "2300637271376697551216051" ], - "mAssetSupply": "110254690813672507858378601", - "LPTokenSupply": "20914199340750311106262895" + "mAssetSupply": "107529405467511800080868537", + "LPTokenSupply": "10582177174773224622833840" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "395091358031179331665920", - "outputQty0": "395764398682937990009787", - "outputQty": "395010363856136109519048", - "swapFee": "314344276576254766390", + "type": "swap_fp_to_mp", + "inputQty": "412962368348415721472", + "outputIndex": 1, + "outputQty": "395478423738673275562", + "swapFee": "0", + "redemptionFee": "251917941772658370", "mpReserves": [ - "56019547478593180608968747", - "29613667552112109341484603", - "25042783503737573278446369" + "54701291779824711962899409", + "8082150121280599443678972", + "45136118914735472021845498" ], "fpReserves": [ - "11593083686269528789651165", - "9463178929357036041131401" + "8449124228962081044454041", + "2301050233745045966937523" ], - "mAssetSupply": "110650455212355445848388388", - "LPTokenSupply": "20914230775177968731739534" + "mAssetSupply": "107528985856193454089576225", + "LPTokenSupply": "10582177174773224622833840" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "20171446700643250176", - "outputQty0": "20308730340563966127", - "outputQty": "20266850897649794332", - "swapFee1": "12102868020385950", - "swapFee2": "8123492136225586", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "98864614908403050872832", + "outputQty0": "97871637473433446894623", + "outputQty": "96110468502034645853131", + "swapFee": "76796343415914188439", "mpReserves": [ - "56019547478593180608968747", - "29613667552112109341484603", - "25042763236886675628652037" + "54800156394733115013772241", + "8082150121280599443678972", + "45136118914735472021845498" ], "fpReserves": [ - "11593063377539188225685038", - "9463178929357036041131401" + "8546995866435514491348664", + "2204939765243011321084392" ], - "mAssetSupply": "110650434911748597420647847", - "LPTokenSupply": "20914210604941554890527953" + "mAssetSupply": "107626857493666887536470848", + "LPTokenSupply": "10582184854407566214252683" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "189755667843323485224960", - "outputQty0": "189896621592472182096517", - "outputQty": "189461229126133112085928", - "swapFee": "150795981297656225843", + "inputQty": "2632664055311548928", + "outputQty0": "2793660311763270061", + "outputQty": "2739248311390011760", "mpReserves": [ - "56019547478593180608968747", - "29803423219955432826709563", - "25042763236886675628652037" + "54800156394733115013772241", + "8082152753944654755227900", + "45136118914735472021845498" ], "fpReserves": [ - "11782959999131660407781555", - "9273717700230902929045473" + "8546998660095826254618725", + "2204939765243011321084392" ], - "mAssetSupply": "110840331533341069602744364", - "LPTokenSupply": "20914225684539684656150537" + "mAssetSupply": "107626860287327199299740909", + "LPTokenSupply": "10582187593655877604264443" }, { "type": "swap_fp_to_mp", - "inputQty": "5269375436355562110976", - "outputIndex": 0, - "outputQty": "5284217016000706448418", + "inputQty": "2376459061497948672", + "outputIndex": 1, + "outputQty": "2279223611090479449", "swapFee": "0", - "redemptionFee": "2111167844166867904", + "redemptionFee": "1452034695015070", "mpReserves": [ - "56014263261577179902520329", - "29803423219955432826709563", - "25042763236886675628652037" + "54800156394733115013772241", + "8082150474721043664748451", + "45136118914735472021845498" ], "fpReserves": [ - "11777682079521243238020043", - "9278987075667258491156449" + "8546996240038001229500795", + "2204942141702072819033064" ], - "mAssetSupply": "110835055724898496599850756", - "LPTokenSupply": "20914225684539684656150537" + "mAssetSupply": "107626857868721408969638049", + "LPTokenSupply": "10582187593655877604264443" }, { "type": "swap_fp_to_mp", - "inputQty": "71848519796796040413184", + "inputQty": "139315234798650873872384", "outputIndex": 0, - "outputQty": "72046962440093657970119", + "outputQty": "143056362312043554649559", "swapFee": "0", - "redemptionFee": "28784494044208558344", + "redemptionFee": "85023166093135636911", "mpReserves": [ - "55942216299137086244550210", - "29803423219955432826709563", - "25042763236886675628652037" + "54657100032421071459122682", + "8082150474721043664748451", + "45136118914735472021845498" ], "fpReserves": [ - "11705720844410721842157785", - "9350835595464054531569633" + "8405290963216108501314811", + "2344257376500723692905448" ], - "mAssetSupply": "110763123274282019412546842", - "LPTokenSupply": "20914225684539684656150537" + "mAssetSupply": "107485237615065609377088976", + "LPTokenSupply": "10582187593655877604264443" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "135331338443776375914496", - "outputQty0": "135116036474598886076287", - "outputQty": "134109794625408576814377", - "mpReserves": [ - "56077547637580862620464706", - "29803423219955432826709563", - "25042763236886675628652037" - ], - "fpReserves": [ - "11840836880885320728234072", - "9350835595464054531569633" - ], - "mAssetSupply": "110898239310756618298623129", - "LPTokenSupply": "21048335479165093232964914" + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "241220273774554364510208", + "hardLimitError": true }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "2446945536762632994816", "outputIndex": 0, - "inputQty": "976386236980745484632064", - "outputQty0": "983008040781374751741508", - "outputQty": "984160507349849716337873", - "swapFee1": "585831742188447290779", - "swapFee2": "393203216312549900696", + "outputQty": "2509797031008864194805", + "swapFee": "0", + "redemptionFee": "1491681118419179446", "mpReserves": [ - "55093387130231012904126833", - "29803423219955432826709563", - "25042763236886675628652037" + "54654590235390062594927877", + "8082150474721043664748451", + "45136118914735472021845498" ], "fpReserves": [ - "10857828840103945976492564", - "9350835595464054531569633" + "8402804828018743202236824", + "2346704322037486325900264" ], - "mAssetSupply": "109915624473191556096782317", - "LPTokenSupply": "20072007825358566593061927" + "mAssetSupply": "107482752971549362497190435", + "LPTokenSupply": "10582187593655877604264443" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "872115585798026993598464", - "outputQty0": "877816448108421478376822", - "outputQty": "876811261699215466566723", - "swapFee1": "523269351478816196159", - "swapFee2": "351126579243368591350", - "mpReserves": [ - "55093387130231012904126833", - "28926611958256217360142840", - "25042763236886675628652037" - ], - "fpReserves": [ - "9980012391995524498115742", - "9350835595464054531569633" - ], - "mAssetSupply": "109038159151662377986996845", - "LPTokenSupply": "19199944566495687481083078" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "173416460348278507044864", - "outputQty0": "173687317862126869112854", - "outputQty": "173452592607779449090880", - "swapFee": "137976244738135534237", + "inputQty": "661951560843923327811584", + "outputQty0": "674198520149640438328406", + "outputQty": "632054949072851608060318", + "swapFee1": "397170936506353996686", + "swapFee2": "404519112089784262997", "mpReserves": [ - "55093387130231012904126833", - "28926611958256217360142840", - "25216179697234954135696901" + "54654590235390062594927877", + "7450095525648192056688133", + "45136118914735472021845498" ], "fpReserves": [ - "10153699709857651367228596", - "9177383002856275082478753" + "7728606307869102763908418", + "2346704322037486325900264" ], - "mAssetSupply": "109211846469524504856109699", - "LPTokenSupply": "19199958364120161294636501" + "mAssetSupply": "106808958970511811843125026", + "LPTokenSupply": "9920275749905604911852527" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "705691235455326879744", - "outputQty0": "706261549096142333215", - "outputQty": "701246933526472432604", + "type": "swap_fp_to_mp", + "inputQty": "5940274838771101696", + "outputIndex": 2, + "outputQty": "6068436931671907673", + "swapFee": "0", + "redemptionFee": "3613501028958154", "mpReserves": [ - "55093387130231012904126833", - "28927317649491672687022584", - "25216179697234954135696901" + "54654590235390062594927877", + "7450095525648192056688133", + "45136112846298540349937825" ], "fpReserves": [ - "10154405971406747509561811", - "9177383002856275082478753" + "7728600285367387833650403", + "2346710262312325097001960" ], - "mAssetSupply": "109212552731073600998442914", - "LPTokenSupply": "19200659611053687767069105" + "mAssetSupply": "106808952951623597941825165", + "LPTokenSupply": "9920275749905604911852527" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "446127572710289328570368", - "outputQty0": "449016048381929188532684", - "outputQty": "449538952006262875842858", - "swapFee1": "267676543626173597142", - "swapFee2": "179606419352771675413", + "outputIndex": 2, + "inputQty": "245389731545163270979584", + "outputQty0": "249855687761847247820703", + "outputQty": "251752972163747660133065", + "swapFee1": "147233838927097962587", + "swapFee2": "149913412657108348692", "mpReserves": [ - "54643848178224750028283975", - "28927317649491672687022584", - "25216179697234954135696901" + "54654590235390062594927877", + "7450095525648192056688133", + "44884359874134792689804760" ], "fpReserves": [ - "9705389923024818321029127", - "9177383002856275082478753" + "7478744597605540585829700", + "2346710262312325097001960" ], - "mAssetSupply": "108763716289111024581585643", - "LPTokenSupply": "18754558805997761055858451" + "mAssetSupply": "106559247177274407802353154", + "LPTokenSupply": "9674900741744334350669201" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "5280896521925599166464", - "outputQty0": "5314762232191411314503", - "outputQty": "5308447006950243796076", - "swapFee1": "3168537913155359499", - "swapFee2": "2125904892876564525", + "outputIndex": 2, + "inputQty": "837095263175841880735744", + "outputQty0": "852001148723754029334982", + "outputQty": "858343357109568204256285", + "swapFee1": "502257157905505128441", + "swapFee2": "511200689234252417600", "mpReserves": [ - "54643848178224750028283975", - "28922009202484722443226508", - "25216179697234954135696901" + "54654590235390062594927877", + "7450095525648192056688133", + "44026016517025224485548475" ], "fpReserves": [ - "9700075160792626909714624", - "9177383002856275082478753" + "6626743448881786556494718", + "2346710262312325097001960" ], - "mAssetSupply": "108758403652783726046835665", - "LPTokenSupply": "18749278226329626772227936" + "mAssetSupply": "105707757229239888025435772", + "LPTokenSupply": "8837855704284283020446301" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "9820928194026808541184", - "outputQty0": "9828675928274472080984", - "outputQty": "9817138514543496094339", - "swapFee": "7808143258443224268", + "type": "redeem", + "outputIndex": 2, + "inputQty": "16316495976877135872", + "outputQty0": "16602727935094872753", + "outputQty": "16724385171511978838", + "swapFee1": "9789897586126281", + "swapFee2": "9961636761056923", "mpReserves": [ - "54643848178224750028283975", - "28931830130678749251767692", - "25216179697234954135696901" + "54654590235390062594927877", + "7450095525648192056688133", + "44025999792640052973569637" ], "fpReserves": [ - "9709903836720901381795608", - "9167565864341731586384414" + "6626726846153851461621965", + "2346710262312325097001960" ], - "mAssetSupply": "108768232328712000518916649", - "LPTokenSupply": "18749279007143952616550362" + "mAssetSupply": "105707740636473589691619942", + "LPTokenSupply": "8837839388767295901923057" }, { "type": "mint", "inputIndex": 1, - "inputQty": "311663549895143627685888", - "outputQty0": "311903265732288833684639", - "outputQty": "309712053602746926869818", - "mpReserves": [ - "54643848178224750028283975", - "29243493680573892879453580", - "25216179697234954135696901" - ], - "fpReserves": [ - "10021807102453190215480247", - "9167565864341731586384414" - ], - "mAssetSupply": "109080135594444289352601288", - "LPTokenSupply": "19058991060746699543420180" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "179457008823784532082688", - "outputIndex": 0, - "outputQty": "179744764716629536373174", - "swapFee": "0", - "redemptionFee": "71816330501209448171", + "inputQty": "811996761917227925504", + "outputQty0": "868943321988497289943", + "outputQty": "853450045328054091882", "mpReserves": [ - "54464103413508120491910801", - "29243493680573892879453580", - "25216179697234954135696901" + "54654590235390062594927877", + "7450907522410109284613637", + "44025999792640052973569637" ], "fpReserves": [ - "9842266276200166595051980", - "9347022873165516118467102" + "6627595789475839958911908", + "2346710262312325097001960" ], - "mAssetSupply": "108900666584521766941621192", - "LPTokenSupply": "19058991060746699543420180" + "mAssetSupply": "105708609579795578188909885", + "LPTokenSupply": "8838692838812623956014939" }, { "type": "swap_fp_to_mp", - "inputQty": "3259712254748417064960", - "outputIndex": 2, - "outputQty": "3254547658557506395049", - "swapFee": "0", - "redemptionFee": "1304328330729432605", - "mpReserves": [ - "54464103413508120491910801", - "29243493680573892879453580", - "25212925149576396629301852" - ], - "fpReserves": [ - "9839005455373343013538699", - "9350282585420264535532062" - ], - "mAssetSupply": "108897407068023274089540516", - "LPTokenSupply": "19058991060746699543420180" - }, - { - "type": "redeem", + "inputQty": "126260225388493183909888", "outputIndex": 1, - "inputQty": "347259859203371171840", - "outputQty0": "349481622754630685178", - "outputQty": "349082625107158667844", - "swapFee1": "208355915522022703", - "swapFee2": "139792649101852274", + "outputQty": "118963718016360579965353", + "swapFee": "0", + "redemptionFee": "76509069831982595514", "mpReserves": [ - "54464103413508120491910801", - "29243144597948785720785736", - "25212925149576396629301852" + "54654590235390062594927877", + "7331943804393748704648284", + "44025999792640052973569637" ], "fpReserves": [ - "9838655973750588382853521", - "9350282585420264535532062" + "6500080673089202299720475", + "2472970487700818280911848" ], - "mAssetSupply": "108897057726193168560707612", - "LPTokenSupply": "19058643821723087724450610" + "mAssetSupply": "105581170972478772512313966", + "LPTokenSupply": "8838692838812623956014939" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "12480231943750916096", - "outputQty0": "12499289374337006975", - "outputQty": "12412376167465684519", + "inputQty": "1105975852112292085760", + "outputQty0": "1097107490294422930580", + "outputQty": "1086099854856825459397", + "swapFee": "862328188539293465", "mpReserves": [ - "54464103413508120491910801", - "29243144597948785720785736", - "25212937629808340380217948" + "54654590235390062594927877", + "7331943804393748704648284", + "44027105768492165265655397" ], "fpReserves": [ - "9838668473039962719860496", - "9350282585420264535532062" + "6501177780579496722651055", + "2471884387845961455452451" ], - "mAssetSupply": "108897070225482542897714587", - "LPTokenSupply": "19058656234099255190135129" + "mAssetSupply": "105582268079969066935244546", + "LPTokenSupply": "8838692925045442809944285" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "166301161696071472119808", - "outputQty0": "166046052665168724348477", - "outputQty": "165838111255646938386822", - "swapFee": "131909590682428000129", + "inputQty": "95561101196207581036544", + "outputQty0": "94495211314250763513597", + "outputQty": "92838413373481771690518", "mpReserves": [ - "54630404575204191964030609", - "29243144597948785720785736", - "25212937629808340380217948" + "54750151336586270175964421", + "7331943804393748704648284", + "44027105768492165265655397" ], "fpReserves": [ - "10004714525705131444208973", - "9184444474164617597145240" + "6595672991893747486164652", + "2471884387845961455452451" ], - "mAssetSupply": "109063116278147711622063064", - "LPTokenSupply": "19058669425058323432935141" + "mAssetSupply": "105676763291283317698758143", + "LPTokenSupply": "8931531338418924581634803" }, { "type": "swap_fp_to_mp", - "inputQty": "153401661441980625846272", + "inputQty": "27747507662946073313280", "outputIndex": 1, - "outputQty": "153294756592597092287990", + "outputQty": "26093732584620764754621", "swapFee": "0", - "redemptionFee": "61388985107195090100", + "redemptionFee": "16805742632772762771", "mpReserves": [ - "54630404575204191964030609", - "29089849841356188628497746", - "25212937629808340380217948" + "54750151336586270175964421", + "7305850071809127939893663", + "44027105768492165265655397" ], "fpReserves": [ - "9851242062937143718958495", - "9337846135606598222991512" + "6567663420839126214879046", + "2499631895508907528765731" ], - "mAssetSupply": "108909705204364831091902686", - "LPTokenSupply": "19058669425058323432935141" + "mAssetSupply": "105648770525971329200235308", + "LPTokenSupply": "8931531338418924581634803" }, { - "type": "swap_fp_to_mp", - "inputQty": "203782519056231712161792", - "outputIndex": 1, - "outputQty": "203585647700242198233967", - "swapFee": "0", - "redemptionFee": "81530441068955508441", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "50665019924517208064", + "outputQty0": "54365166560239122761", + "outputQty": "53820296631228475596", + "swapFee": "42731191360067358", "mpReserves": [ - "54630404575204191964030609", - "28886264193655946430263779", - "25212937629808340380217948" + "54750151336586270175964421", + "7305900736829052457101727", + "44027105768492165265655397" ], "fpReserves": [ - "9647415960264754947853927", - "9541628654662829935153304" + "6567717786005686454001807", + "2499578075212276300290135" ], - "mAssetSupply": "108705960632133511276306559", - "LPTokenSupply": "19058669425058323432935141" + "mAssetSupply": "105648824891137889439358069", + "LPTokenSupply": "8931531342692043717641538" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "31172162641796204", - "outputQty0": "31123748604884133", - "outputQty": "30911163606272443", + "inputIndex": 2, + "inputQty": "28589361132253321625600", + "outputQty0": "28359175029102242237593", + "outputQty": "27862722290445092593013", "mpReserves": [ - "54630404606376354605826813", - "28886264193655946430263779", - "25212937629808340380217948" + "54750151336586270175964421", + "7305900736829052457101727", + "44055695129624418587280997" ], "fpReserves": [ - "9647415991388503552738060", - "9541628654662829935153304" + "6596076961034788696239400", + "2499578075212276300290135" ], - "mAssetSupply": "108705960663257259881190692", - "LPTokenSupply": "19058669455969487039207584" + "mAssetSupply": "105677184066166991681595662", + "LPTokenSupply": "8959394064982488810234551" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "268037269000355684810752", - "outputQty0": "269706117781199165818966", - "outputQty": "269380016466723337452598", - "swapFee1": "160822361400213410886", - "swapFee2": "107882447112479666327", + "type": "mint", + "inputIndex": 0, + "inputQty": "2831979804295733706752", + "outputQty0": "2800244921180430236065", + "outputQty": "2751194308635176523793", "mpReserves": [ - "54630404606376354605826813", - "28616884177189223092811181", - "25212937629808340380217948" + "54752983316390565909671173", + "7305900736829052457101727", + "44055695129624418587280997" ], "fpReserves": [ - "9377709873607304386919094", - "9541628654662829935153304" + "6598877205955969126475465", + "2499578075212276300290135" ], - "mAssetSupply": "108436362427923173195038053", - "LPTokenSupply": "18790648269205271375737920" + "mAssetSupply": "105679984311088172111831727", + "LPTokenSupply": "8962145259291123986758344" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "223114652412484171857920", - "outputQty0": "223446088740925577324942", - "outputQty": "223258032749354385497734", - "swapFee": "177544252014043120641", + "type": "redeem", + "outputIndex": 1, + "inputQty": "138394817294889524396032", + "outputQty0": "140770957097622502363443", + "outputQty": "130946843754606494667107", + "swapFee1": "83036890376933714637", + "swapFee2": "84462574258573501418", "mpReserves": [ - "54630404606376354605826813", - "28616884177189223092811181", - "25436052282220824552075868" + "54752983316390565909671173", + "7174953893074445962434620", + "44055695129624418587280997" ], "fpReserves": [ - "9601155962348229964244036", - "9318370621913475549655570" + "6458106248858346624112022", + "2499578075212276300290135" ], - "mAssetSupply": "108659808516664098772362995", - "LPTokenSupply": "18790666023630472780049984" + "mAssetSupply": "105539297816564808182969702", + "LPTokenSupply": "8823758745685272155733775" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "14764051513658467942400", - "outputQty0": "14857791415591313039874", - "outputQty": "14874933881885413088773", - "swapFee1": "8858430908195080765", - "swapFee2": "5943116566236525215", - "mpReserves": [ - "54615529672494469192738040", - "28616884177189223092811181", - "25436052282220824552075868" - ], - "fpReserves": [ - "9586298170932638651204162", - "9318370621913475549655570" - ], - "mAssetSupply": "108644956668365073695848336", - "LPTokenSupply": "18775902857959905131615660" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "108789461018053230592", - "outputIndex": 1, - "outputQty": "108675344766913951894", - "swapFee": "0", - "redemptionFee": "43523953718296024", + "inputQty": "127538102453910847488", + "outputQty0": "129722567530608865355", + "outputQty": "131141964933125382992", + "swapFee1": "76522861472346508", + "swapFee2": "77833540518365319", "mpReserves": [ - "54615529672494469192738040", - "28616775501844456178859287", - "25436052282220824552075868" + "54752852174425632784288181", + "7174953893074445962434620", + "44055695129624418587280997" ], "fpReserves": [ - "9586189361048342911143207", - "9318479411374493602886162" + "6457976526290816015246667", + "2499578075212276300290135" ], - "mAssetSupply": "108644847902004731674083405", - "LPTokenSupply": "18775902857959905131615660" + "mAssetSupply": "105539168171830818092469666", + "LPTokenSupply": "8823631215235104392120937" }, { "type": "mint", "inputIndex": 1, - "inputQty": "8610097065881805783040", - "outputQty0": "8617303367689332709042", - "outputQty": "8557803925659911659125", + "inputQty": "25401884785138565120", + "outputQty0": "27325005514932150322", + "outputQty": "26848747514729782752", "mpReserves": [ - "54615529672494469192738040", - "28625385598910337984642327", - "25436052282220824552075868" + "54752852174425632784288181", + "7174979294959231100999740", + "44055695129624418587280997" ], "fpReserves": [ - "9594806664416032243852249", - "9318479411374493602886162" + "6458003851296330947396989", + "2499578075212276300290135" ], - "mAssetSupply": "108653465205372421006792447", - "LPTokenSupply": "18784460661885565043274785" + "mAssetSupply": "105539195496836333024619988", + "LPTokenSupply": "8823658063982619121903689" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "127021069902583970136064", - "outputQty0": "126823637411964200113368", - "outputQty": "126686374901794294919005", - "swapFee": "100756062337711430202", + "type": "mint", + "inputIndex": 2, + "inputQty": "21632616064633144", + "outputQty0": "21454653467272988", + "outputQty": "21080711882977654", "mpReserves": [ - "54742550742397053162874104", - "28625385598910337984642327", - "25436052282220824552075868" + "54752852174425632784288181", + "7174979294959231100999740", + "44055695151257034651914141" ], "fpReserves": [ - "9721630301827996443965617", - "9191793036472699307967157" + "6458003872750984414669977", + "2499578075212276300290135" ], - "mAssetSupply": "108780288842784385206905815", - "LPTokenSupply": "18784470737491798814417805" + "mAssetSupply": "105539195518290986491892976", + "LPTokenSupply": "8823658085063331004881343" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "186025995604726906880", - "outputQty0": "187224462785745438918", - "outputQty": "186874390028081933496", - "swapFee1": "111615597362836144", - "swapFee2": "74889785114298175", + "type": "mint", + "inputIndex": 0, + "inputQty": "21441985453368188862464", + "outputQty0": "21197128198441705060030", + "outputQty": "20827521068856855874449", "mpReserves": [ - "54742550742397053162874104", - "28625385598910337984642327", - "25435865407830796470142372" + "54774294159879000973150645", + "7174979294959231100999740", + "44055695151257034651914141" ], "fpReserves": [ - "9721443077365210698526699", - "9191793036472699307967157" + "6479201000949426119730007", + "2499578075212276300290135" ], - "mAssetSupply": "108780101693211384575765072", - "LPTokenSupply": "18784284722657753823794539" + "mAssetSupply": "105560392646489428196953006", + "LPTokenSupply": "8844485606132187860755792" }, { - "type": "swap_fp_to_mp", - "inputQty": "75325782189345710538752", - "outputIndex": 1, - "outputQty": "75255916897058455024494", - "swapFee": "0", - "redemptionFee": "30139911867501665765", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "506651245858381692928", + "outputQty0": "545023694931282036796", + "outputQty": "539679162891797466607", + "swapFee": "428412991721244082", "mpReserves": [ - "54742550742397053162874104", - "28550129682013279529617833", - "25435865407830796470142372" + "54774294159879000973150645", + "7175485946205089482692668", + "44055695151257034651914141" ], "fpReserves": [ - "9646093297696456534113388", - "9267118818662045018505909" + "6479746024644357401766803", + "2499038396049384502823528" ], - "mAssetSupply": "108704782053454497913017526", - "LPTokenSupply": "18784284722657753823794539" + "mAssetSupply": "105560937670184359478989802", + "LPTokenSupply": "8844485648973487032880200" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "147090951703480353423360", - "outputQty0": "146860859148220029552153", - "outputQty": "146689259518571563390403", - "swapFee": "116669737631322379555", + "inputQty": "3581147103525494849536", + "outputQty0": "3540243754653167546646", + "outputQty": "3505464233748624651335", + "swapFee": "2782783068441597856", "mpReserves": [ - "54889641694100533516297464", - "28550129682013279529617833", - "25435865407830796470142372" + "54777875306982526468000181", + "7175485946205089482692668", + "44055695151257034651914141" ], "fpReserves": [ - "9792954156844676563665541", - "9120429559143473455115506" + "6483286268399010569313449", + "2495532931815635878172193" ], - "mAssetSupply": "108851642912602717942569679", - "LPTokenSupply": "18784296389631516956032494" + "mAssetSupply": "105564477913939012646536448", + "LPTokenSupply": "8844485927251793877039985" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "45214945527713640", - "outputQty0": "45144054814010543", - "outputQty": "45086646792473643", - "swapFee": "35860583939840", + "inputIndex": 1, + "inputQty": "40253647968531239665664", + "outputQty0": "43285719808474216672532", + "outputQty": "42851397719690224367430", + "swapFee": "34023645880096354037", "mpReserves": [ - "54889641739315479044011104", - "28550129682013279529617833", - "25435865407830796470142372" + "54777875306982526468000181", + "7215739594173620722358332", + "44055695151257034651914141" ], "fpReserves": [ - "9792954201988731377676084", - "9120429514056826662641863" + "6526571988207484785985981", + "2452681534095945653804763" ], - "mAssetSupply": "108851642957746772756580222", - "LPTokenSupply": "18784296389635103014426478" + "mAssetSupply": "105607763633747486863208980", + "LPTokenSupply": "8844489329616381886675388" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "46286159059776285179904", - "outputQty0": "46354335984325837962010", - "outputQty": "46027127609022185969225", + "type": "redeem", + "outputIndex": 0, + "inputQty": "9436817606377525248", + "outputQty0": "9599779366880495531", + "outputQty": "9704228001433010743", + "swapFee1": "5662090563826515", + "swapFee2": "5759867620128297", "mpReserves": [ - "54889641739315479044011104", - "28550129682013279529617833", - "25482151566890572755322276" + "54777865602754525034989438", + "7215739594173620722358332", + "44055695151257034651914141" ], "fpReserves": [ - "9839308537973057215638094", - "9120429514056826662641863" + "6526562388428117905490450", + "2452681534095945653804763" ], - "mAssetSupply": "108897997293731098594542232", - "LPTokenSupply": "18830323517244125200395703" + "mAssetSupply": "105607754039727987602841746", + "LPTokenSupply": "8844479893364984565532791" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "32666562113147723776", - "outputQty0": "32879299412509611793", - "outputQty": "32817941197496906250", - "swapFee1": "19599937267888634", - "swapFee2": "13151719765003844", + "outputIndex": 1, + "inputQty": "85187766674226279350272", + "outputQty0": "86656190329394893411206", + "outputQty": "80506603534134099099563", + "swapFee1": "51112660004535767610", + "swapFee2": "51993714197636936046", "mpReserves": [ - "54889641739315479044011104", - "28550129682013279529617833", - "25482118748949375258416026" + "54777865602754525034989438", + "7135232990639486623258769", + "44055695151257034651914141" ], "fpReserves": [ - "9839275658673644706026301", - "9120429514056826662641863" + "6439906198098723012079244", + "2452681534095945653804763" ], - "mAssetSupply": "108897964427583405849934283", - "LPTokenSupply": "18830290852642005779460790" + "mAssetSupply": "105521149843112790346366586", + "LPTokenSupply": "8759297237956758739759280" }, { - "type": "swap_fp_to_mp", - "inputQty": "117735022104906530816", - "outputIndex": 1, - "outputQty": "117645988622252364779", - "swapFee": "0", - "redemptionFee": "47117728041371315", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "33908703961077631680512", + "outputQty0": "33518995172949923092888", + "outputQty": "33178256471880484446449", + "swapFee": "26345343175699953385", "mpReserves": [ - "54889641739315479044011104", - "28550012036024657277253054", - "25482118748949375258416026" + "54811774306715602666669950", + "7135232990639486623258769", + "44055695151257034651914141" ], "fpReserves": [ - "9839157864353541277736635", - "9120547249078931569172679" + "6473425193271672935172132", + "2419503277624065169358314" ], - "mAssetSupply": "108897846680381030463015932", - "LPTokenSupply": "18830290852642005779460790" + "mAssetSupply": "105554668838285740269459474", + "LPTokenSupply": "8759299872491076309754618" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "5427997912965493817344", - "outputQty0": "5463341807321232900820", - "outputQty": "5456460185098743584834", - "swapFee1": "3256798747779296290", - "swapFee2": "2185336722928493160", + "type": "swap_fp_to_mp", + "inputQty": "131014620308907669585920", + "outputIndex": 2, + "outputQty": "133216422704972490200019", + "swapFee": "0", + "redemptionFee": "79317342463673562060", "mpReserves": [ - "54889641739315479044011104", - "28544555575839558533668220", - "25482118748949375258416026" + "54811774306715602666669950", + "7135232990639486623258769", + "43922478728552062161714122" ], "fpReserves": [ - "9833694522546220044835815", - "9120547249078931569172679" + "6341229622498883665071177", + "2550517897932972838944234" ], - "mAssetSupply": "108892385523910432158608272", - "LPTokenSupply": "18824863180408915063573075" + "mAssetSupply": "105422552584855414672920579", + "LPTokenSupply": "8759299872491076309754618" }, { "type": "mint", "inputIndex": 2, - "inputQty": "293475658801213734912", - "outputQty0": "293906659684073428298", - "outputQty": "291830292397141295579", + "inputQty": "709430477441065156608", + "outputQty0": "703584693292486898082", + "outputQty": "691431228348555400782", "mpReserves": [ - "54889641739315479044011104", - "28544555575839558533668220", - "25482412224608176472150938" + "54811774306715602666669950", + "7135232990639486623258769", + "43923188159029503226870730" ], "fpReserves": [ - "9833988429205904118264113", - "9120547249078931569172679" + "6341933207192176151969259", + "2550517897932972838944234" ], - "mAssetSupply": "108892679430570116232036570", - "LPTokenSupply": "18825155010701312204868654" + "mAssetSupply": "105423256169548707159818661", + "LPTokenSupply": "8759991303719424865155400" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "929881943952189133160448", - "outputQty0": "935786593036946037937672", - "outputQty": "936857659175638863878970", - "swapFee1": "557929166371313479896", - "swapFee2": "374314637214778415175", + "type": "swap_fp_to_mp", + "inputQty": "58739814513097211904", + "outputIndex": 1, + "outputQty": "54995154411070423979", + "swapFee": "0", + "redemptionFee": "35541236345210904", "mpReserves": [ - "53952784080139840180132134", - "28544555575839558533668220", - "25482412224608176472150938" + "54811774306715602666669950", + "7135177995485075552834790", + "43923188159029503226870730" ], "fpReserves": [ - "8898201836168958080326441", - "9120547249078931569172679" + "6341873971798267467127611", + "2550576637747485936156138" ], - "mAssetSupply": "107957267152170384972514073", - "LPTokenSupply": "17895328859665760203056195" + "mAssetSupply": "105423196969696034820187917", + "LPTokenSupply": "8759991303719424865155400" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "613190790783575076634624", - "outputQty0": "616923818741674347645892", - "outputQty": "615771349243816898797838", - "swapFee1": "367914474470145045980", - "swapFee2": "246769527496669739058", + "type": "mint", + "inputIndex": 2, + "inputQty": "1559396537518660192829440", + "outputQty0": "1546211544903689896226497", + "outputQty": "1518703988032417557916814", "mpReserves": [ - "53952784080139840180132134", - "28544555575839558533668220", - "24866640875364359573353100" + "54811774306715602666669950", + "7135177995485075552834790", + "45482584696548163419700170" ], "fpReserves": [ - "8281278017427283732680549", - "9120547249078931569172679" + "7888085516701957363354108", + "2550576637747485936156138" ], - "mAssetSupply": "107340590102956207294607239", - "LPTokenSupply": "17282174860329632140926169" + "mAssetSupply": "106969408514599724716414414", + "LPTokenSupply": "10278695291751842423072214" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "17321007176209468", - "outputQty0": "17424601018476147", - "outputQty": "17391100521619996", - "swapFee1": "10392604305725", - "swapFee2": "6969840407390", + "inputQty": "125838442118782844928", + "outputQty0": "128107464034409719896", + "outputQty": "129150116727062954984", + "swapFee1": "75503065271269706", + "swapFee2": "76864478420645831", "mpReserves": [ - "53952784080139840180132134", - "28544555575839558533668220", - "24866640857973259051733104" + "54811774306715602666669950", + "7135177995485075552834790", + "45482455546431436356745186" ], "fpReserves": [ - "8281278000002682714204402", - "9120547249078931569172679" + "7887957409237922953634212", + "2550576637747485936156138" ], - "mAssetSupply": "107340590085538576116538482", - "LPTokenSupply": "17282174843009664225147273" + "mAssetSupply": "106969280484000168727340349", + "LPTokenSupply": "10278569460860030167354256" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "53339949143921557504", - "outputQty0": "53658965217860488202", - "outputQty": "53555800357857961626", - "swapFee1": "32003969486352934", - "swapFee2": "21463586087144195", - "mpReserves": [ - "53952784080139840180132134", - "28544555575839558533668220", - "24866587302172901193771478" - ], - "fpReserves": [ - "8281224341037464853716200", - "9120547249078931569172679" - ], - "mAssetSupply": "107340536448036944343194475", - "LPTokenSupply": "17282121506260917252225062" + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "967102872510257208229888", + "hardLimitError": true }, { "type": "mint", "inputIndex": 2, - "inputQty": "2034364538405062684180480", - "outputQty0": "2037117286468292667209340", - "outputQty": "2023016017872767436856240", + "inputQty": "704696260873952428032", + "outputQty0": "698587658813880789273", + "outputQty": "685802505881839875040", "mpReserves": [ - "53952784080139840180132134", - "28544555575839558533668220", - "26900951840577963877951958" + "54811774306715602666669950", + "7135177995485075552834790", + "45483160242692310309173218" ], "fpReserves": [ - "10318341627505757520925540", - "9120547249078931569172679" + "7888655996896736834423485", + "2550576637747485936156138" ], - "mAssetSupply": "109377653734505237010403815", - "LPTokenSupply": "19305137524133684689081302" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "25838648325438166794240", - "outputIndex": 0, - "outputQty": "25886539912229225177406", - "swapFee": "0", - "redemptionFee": "10343775662134449147", - "mpReserves": [ - "53926897540227610954954728", - "28544555575839558533668220", - "26900951840577963877951958" - ], - "fpReserves": [ - "10292482188350421398057938", - "9146385897404369735966919" - ], - "mAssetSupply": "109351804639125563021985360", - "LPTokenSupply": "19305137524133684689081302" + "mAssetSupply": "106969979071658982608129622", + "LPTokenSupply": "10279255263365912007229296" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "7864136447264967", - "outputQty0": "7871117907387155", - "outputQty": "7814075990977722", + "inputIndex": 0, + "inputQty": "1241783979384688349282304", + "outputQty0": "1227393852945262764803716", + "outputQty": "1204439691126707254375131", "mpReserves": [ - "53926897540227610954954728", - "28544555583703694980933187", - "26900951840577963877951958" + "56053558286100291015952254", + "7135177995485075552834790", + "45483160242692310309173218" ], "fpReserves": [ - "10292482196221539305445093", - "9146385897404369735966919" + "9116049849841999599227201", + "2550576637747485936156138" ], - "mAssetSupply": "109351804646996680929372515", - "LPTokenSupply": "19305137531947760680059024" + "mAssetSupply": "108197372924604245372933338", + "LPTokenSupply": "11483694954492619261604427" }, { "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "728309966927455242420224", + "hardLimitError": true + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "11185577079044195745792", - "outputQty0": "11195499260175220318333", - "outputQty": "11177663033800360193323", - "swapFee": "8891477138138757061", + "inputQty": "316238909281148288", + "outputQty0": "341747800660954326", + "outputQty": "335220563204912585", "mpReserves": [ - "53926897540227610954954728", - "28555741160782739176678979", - "26900951840577963877951958" + "56053558286100291015952254", + "7135178311723984833983078", + "45483160242692310309173218" ], "fpReserves": [ - "10303677695481714525763426", - "9135208234370569375773596" + "9116050191589800260181527", + "2550576637747485936156138" ], - "mAssetSupply": "109363000146256856149690848", - "LPTokenSupply": "19305138421095474493934730" + "mAssetSupply": "108197373266352046033887664", + "LPTokenSupply": "11483695289713182466517012" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "398687250799854288896", - "outputQty0": "398110988001276719226", - "outputQty": "395222798953022007295", + "inputIndex": 2, + "inputQty": "61531675810765473841152", + "outputQty0": "61001215245133858636148", + "outputQty": "59834916502578225933910", "mpReserves": [ - "53927296227478410809243624", - "28555741160782739176678979", - "26900951840577963877951958" + "56053558286100291015952254", + "7135178311723984833983078", + "45544691918503075783014370" ], "fpReserves": [ - "10304075806469715802482652", - "9135208234370569375773596" + "9177051406834934118817675", + "2550576637747485936156138" ], - "mAssetSupply": "109363398257244857426410074", - "LPTokenSupply": "19305533643894427515942025" + "mAssetSupply": "108258374481597179892523812", + "LPTokenSupply": "11543530206215760692450922" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "307750528605577197649920", - "outputQty0": "308017367352372536802370", - "outputQty": "305768451787387411076609", + "inputIndex": 2, + "inputQty": "4926489581741436567552", + "outputQty0": "4883973815935775654800", + "outputQty": "4790491920872274453374", "mpReserves": [ - "53927296227478410809243624", - "28863491689388316374328899", - "26900951840577963877951958" + "56053558286100291015952254", + "7135178311723984833983078", + "45549618408084817219581922" ], "fpReserves": [ - "10612093173822088339285022", - "9135208234370569375773596" + "9181935380650869894472475", + "2550576637747485936156138" ], - "mAssetSupply": "109671415624597229963212444", - "LPTokenSupply": "19611302095681814927018634" + "mAssetSupply": "108263258455413115668178612", + "LPTokenSupply": "11548320698136632966904296" }, { - "type": "swap_fp_to_mp", - "inputQty": "936179161976371150848", - "outputIndex": 0, - "outputQty": "938085454933222317522", - "swapFee": "0", - "redemptionFee": "374846705347388464", + "type": "redeem", + "outputIndex": 2, + "inputQty": "6881630581808777134080", + "outputQty0": "7011704598858916283815", + "outputQty": "7068496862547879447510", + "swapFee1": "4128978349085266280", + "swapFee2": "4207022759315349770", "mpReserves": [ - "53926358142023477586926102", - "28863491689388316374328899", - "26900951840577963877951958" + "56053558286100291015952254", + "7135178311723984833983078", + "45542549911222269340134412" ], "fpReserves": [ - "10611156057058719868122934", - "9136144413532545746924444" + "9174923676052010978188660", + "2550576637747485936156138" ], - "mAssetSupply": "109670478882680566839438820", - "LPTokenSupply": "19611302095681814927018634" + "mAssetSupply": "108256250957837016067244567", + "LPTokenSupply": "11541439480452659098296844" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "278934447656790944", - "outputQty0": "279270785603529357", - "outputQty": "277219098167199065", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "761081876776419", + "outputQty0": "752145066155687", + "outputQty": "739617100578020", + "swapFee": "590200467855", "mpReserves": [ - "53926358142023477586926102", - "28863491689388316374328899", - "26900952119512411534742902" + "56053558286861372892728673", + "7135178311723984833983078", + "45542549911222269340134412" ], "fpReserves": [ - "10611156336329505471652291", - "9136144413532545746924444" + "9174923676804156044344347", + "2550576637007868835578118" ], - "mAssetSupply": "109670479161951352442968177", - "LPTokenSupply": "19611302372900913094217699" + "mAssetSupply": "108256250958589161133400254", + "LPTokenSupply": "11541439480452718118343629" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "196037267381305435226112", - "outputQty0": "197363812003182730668949", - "outputQty": "197044369870913059700937", - "swapFee1": "117622360428783261135", - "swapFee2": "78945524801273092267", + "inputQty": "81107131127614", + "outputQty0": "82640023830801", + "outputQty": "83309296753799", + "swapFee1": "48664278676", + "swapFee2": "49584014298", "mpReserves": [ - "53926358142023477586926102", - "28863491689388316374328899", - "26703907749641498475041965" + "56053558286861372892728673", + "7135178311723984833983078", + "45542549911138960043380613" ], "fpReserves": [ - "10413792524326322740983342", - "9136144413532545746924444" + "9174923676721516020513546", + "2550576637007868835578118" ], - "mAssetSupply": "109473194295472970985391495", - "LPTokenSupply": "19415276867755650537317700" + "mAssetSupply": "108256250958506570693583751", + "LPTokenSupply": "11541439480371615853643882" }, { "type": "mint", "inputIndex": 2, - "inputQty": "80076868084549", - "outputQty0": "80175789934606", - "outputQty": "79591054084927", + "inputQty": "1967240583810188050432", + "outputQty0": "1950265183456322657826", + "outputQty": "1912939964641859004299", "mpReserves": [ - "53926358142023477586926102", - "28863491689388316374328899", - "26703907749721575343126514" + "56053558286861372892728673", + "7135178311723984833983078", + "45544517151722770231431045" ], "fpReserves": [ - "10413792524406498530917948", - "9136144413532545746924444" + "9176873941904972343171372", + "2550576637007868835578118" ], - "mAssetSupply": "109473194295553146775326101", - "LPTokenSupply": "19415276867835241591402627" + "mAssetSupply": "108258201223690027016241577", + "LPTokenSupply": "11543352420336257712648181" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "21749653593063604355072", - "outputQty0": "21896224413217016842834", - "outputQty": "21860424769011970648592", - "swapFee1": "13049792155838162613", - "swapFee2": "8758489765286806737", + "type": "swap_fp_to_mp", + "inputQty": "18061634059203984228352", + "outputIndex": 1, + "outputQty": "16966489297653015536253", + "swapFee": "0", + "redemptionFee": "11010427921591708715", "mpReserves": [ - "53926358142023477586926102", - "28863491689388316374328899", - "26682047324952563372477922" + "56053558286861372892728673", + "7118211822426331818446825", + "45544517151722770231431045" ], "fpReserves": [ - "10391896299993281514075114", - "9136144413532545746924444" + "9158523228702319495312124", + "2568638271067072819806470" ], - "mAssetSupply": "109451306829629695045290004", - "LPTokenSupply": "19393528519221393570863816" + "mAssetSupply": "108239861520915295760091044", + "LPTokenSupply": "11543352420336257712648181" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "567094596516206411776", - "outputQty0": "567569513410747581982", - "outputQty": "563433492315027128673", + "type": "swap_fp_to_mp", + "inputQty": "40206934791661077659648", + "outputIndex": 2, + "outputQty": "41165978987140918337955", + "swapFee": "0", + "redemptionFee": "24500703618272124781", "mpReserves": [ - "53926358142023477586926102", - "28864058783984832580740675", - "26682047324952563372477922" + "56053558286861372892728673", + "7118211822426331818446825", + "45503351172735629313093090" ], "fpReserves": [ - "10392463869506692261657096", - "9136144413532545746924444" + "9117688722671865954010322", + "2608845205858733897466118" ], - "mAssetSupply": "109451874399143105792871986", - "LPTokenSupply": "19394091952713708597992489" + "mAssetSupply": "108199051515588460490914023", + "LPTokenSupply": "11543352420336257712648181" }, { - "type": "swap_fp_to_mp", - "inputQty": "42456621640562346295296", - "outputIndex": 2, - "outputQty": "42422178863782861375338", - "swapFee": "0", - "redemptionFee": "16996743803642398465", + "type": "redeem", + "outputIndex": 1, + "inputQty": "260399989609653759639552", + "outputQty0": "265253138905430886593902", + "outputQty": "244576895614267175702803", + "swapFee1": "156239993765792255783", + "swapFee2": "159151883343258531956", "mpReserves": [ - "53926358142023477586926102", - "28864058783984832580740675", - "26639625146088780511102584" + "56053558286861372892728673", + "6873634926812064642744022", + "45503351172735629313093090" ], "fpReserves": [ - "10349972009997586265492242", - "9178601035173108093219740" + "8852435583766435067416420", + "2608845205858733897466118" ], - "mAssetSupply": "109409399536377803439105597", - "LPTokenSupply": "19394091952713708597992489" + "mAssetSupply": "107933957528566372862852077", + "LPTokenSupply": "11282968054725980532234207" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "17742661184461425606656", - "outputQty0": "17861640444236854590256", - "outputQty": "17880325812189711614291", - "swapFee1": "10645596710676855363", - "swapFee2": "7144656177694741836", + "outputIndex": 2, + "inputQty": "17968477009916331032576", + "outputQty0": "18301912540867303504767", + "outputQty": "18456887158600787576149", + "swapFee1": "10781086205949798619", + "swapFee2": "10981147524520382102", "mpReserves": [ - "53908477816211287875311811", - "28864058783984832580740675", - "26639625146088780511102584" + "56053558286861372892728673", + "6873634926812064642744022", + "45484894285577028525516941" ], "fpReserves": [ - "10332110369553349410901986", - "9178601035173108093219740" + "8834133671225567763911653", + "2608845205858733897466118" ], - "mAssetSupply": "109391545040589744279257177", - "LPTokenSupply": "19376350356088918240071369" + "mAssetSupply": "107915666597173030079729412", + "LPTokenSupply": "11265000655824684796181492" }, { "type": "swap_fp_to_mp", - "inputQty": "92807419244704509722624", - "outputIndex": 0, - "outputQty": "92971579832739963039195", + "inputQty": "159723270264809", + "outputIndex": 2, + "outputQty": "163414950647898", "swapFee": "0", - "redemptionFee": "37149866284587848062", + "redemptionFee": "97225950155", "mpReserves": [ - "53815506236378547912272616", - "28864058783984832580740675", - "26639625146088780511102584" + "56053558286861372892728673", + "6873634926812064642744022", + "45484894285413613574869043" ], "fpReserves": [ - "10239235703841879790745603", - "9271408454417812602942364" + "8834133671063524513652970", + "2608845206018457167730927" ], - "mAssetSupply": "109298707524744559246948856", - "LPTokenSupply": "19376350356088918240071369" + "mAssetSupply": "107915666597011084055420884", + "LPTokenSupply": "11265000655824684796181492" }, { "type": "mint", "inputIndex": 2, - "inputQty": "43406575417167173386240", - "outputQty0": "43460240115754287025234", - "outputQty": "43147265709590409573063", + "inputQty": "192346582646706176000", + "outputQty0": "190617586538573411971", + "outputQty": "187033444883988703948", "mpReserves": [ - "53815506236378547912272616", - "28864058783984832580740675", - "26683031721505947684488824" + "56053558286861372892728673", + "6873634926812064642744022", + "45485086631996260281045043" ], "fpReserves": [ - "10282695943957634077770837", - "9271408454417812602942364" + "8834324288650063087064941", + "2608845206018457167730927" ], - "mAssetSupply": "109342167764860313533974090", - "LPTokenSupply": "19419497621798508649644432" + "mAssetSupply": "107915857214597622628832855", + "LPTokenSupply": "11265187689269568784885440" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "251529664996146304516096", - "outputQty0": "251166562307133162206524", - "outputQty": "250749288018918480319690", - "swapFee": "199477229366139514392", + "type": "swap_fp_to_mp", + "inputQty": "554106476213622097838080", + "outputIndex": 2, + "outputQty": "565257323978824977455327", + "swapFee": "0", + "redemptionFee": "336334639841980130655", "mpReserves": [ - "54067035901374694216788712", - "28864058783984832580740675", - "26683031721505947684488824" + "56053558286861372892728673", + "6873634926812064642744022", + "44919829308017435303589716" ], "fpReserves": [ - "10533862506264767239977361", - "9020659166398894122622674" + "8273766555580096202638395", + "3162951682232079265569007" ], - "mAssetSupply": "109593334327167446696180614", - "LPTokenSupply": "19419517569521445263595871" + "mAssetSupply": "107355635816167497724536964", + "LPTokenSupply": "11265187689269568784885440" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3157102792051761086464", - "outputQty0": "3161034210878945128320", - "outputQty": "3155223977370317183998", - "swapFee": "2510165500672622477", + "type": "redeem", + "outputIndex": 2, + "inputQty": "283820991438267260862464", + "outputQty0": "288682805445991451717626", + "outputQty": "291067346265980630610943", + "swapFee1": "170292594862960356517", + "swapFee2": "173209683267594871030", "mpReserves": [ - "54067035901374694216788712", - "28864058783984832580740675", - "26686188824297999445575288" + "56053558286861372892728673", + "6873634926812064642744022", + "44628761961751454672978773" ], "fpReserves": [ - "10537023540475646185105681", - "9017503942421523805438676" + "7985083750134104750920769", + "3162951682232079265569007" ], - "mAssetSupply": "109596495361378325641308934", - "LPTokenSupply": "19419517820537995330858118" + "mAssetSupply": "107067126220404773867690368", + "LPTokenSupply": "10981383727090787820058627" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "292340611067497316352", - "outputQty0": "291916904025612941184", - "outputQty": "289762156309649337382", + "type": "redeem", + "outputIndex": 1, + "inputQty": "287616445879456038912", + "outputQty0": "292523996284662127481", + "outputQty": "269317116991661498266", + "swapFee1": "172569867527673623", + "swapFee2": "175514397770797276", "mpReserves": [ - "54067328241985761714105064", - "28864058783984832580740675", - "26686188824297999445575288" + "56053558286861372892728673", + "6873365609695072981245756", + "44628761961751454672978773" ], "fpReserves": [ - "10537315457379671798046865", - "9017503942421523805438676" + "7984791226137820088793288", + "3162951682232079265569007" ], - "mAssetSupply": "109596787278282351254250118", - "LPTokenSupply": "19419807582694304980195500" + "mAssetSupply": "107066833871922886976360163", + "LPTokenSupply": "10981096127901895116787077" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "608205395883604608", - "outputQty0": "608962633462005264", - "outputQty": "604467626369935729", + "type": "redeem", + "outputIndex": 2, + "inputQty": "137984981047286706470912", + "outputQty0": "140333925425984515279020", + "outputQty": "141484335138682956180977", + "swapFee1": "82790988628372023882", + "swapFee2": "84200355255590709167", "mpReserves": [ - "54067328241985761714105064", - "28864058783984832580740675", - "26686189432503395329179896" + "56053558286861372892728673", + "6873365609695072981245756", + "44487277626612771716797796" ], "fpReserves": [ - "10537316066342305260052129", - "9017503942421523805438676" + "7844457300711835573514268", + "3162951682232079265569007" ], - "mAssetSupply": "109596787887244984716255382", - "LPTokenSupply": "19419808187161931350131229" + "mAssetSupply": "106926584146852158051790310", + "LPTokenSupply": "10843119425953471247518553" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "7116175589984900743168", - "outputQty0": "7125031633926471393514", - "outputQty": "7111882593114355820054", - "swapFee": "5657945023216401255", + "type": "redeem", + "outputIndex": 0, + "inputQty": "453664382481083662336", + "outputQty0": "461372336288570499826", + "outputQty": "466814431603566909561", + "swapFee1": "272198629488650197", + "swapFee2": "276823401773142299", "mpReserves": [ - "54067328241985761714105064", - "28864058783984832580740675", - "26693305608093380229923064" + "56053091472429769325819112", + "6873365609695072981245756", + "44487277626612771716797796" ], "fpReserves": [ - "10544441097976231731445643", - "9010392059828409449618622" + "7843995928375547003014442", + "3162951682232079265569007" ], - "mAssetSupply": "109603912918878911187648896", - "LPTokenSupply": "19419808752956433671771354" + "mAssetSupply": "106926123051339271254432783", + "LPTokenSupply": "10842665788790853112721236" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "103908031607677272064", - "outputQty0": "103995722560749267958", - "outputQty": "103803275025333754134", - "swapFee": "82582065685007993", + "inputIndex": 0, + "inputQty": "23480223817950935646208", + "outputQty0": "23192498192930211158790", + "outputQty": "22979194094770376554117", + "swapFee": "18232962716472583934", "mpReserves": [ - "54067328241985761714105064", - "28864162692016440258012739", - "26693305608093380229923064" + "56076571696247720261465320", + "6873365609695072981245756", + "44487277626612771716797796" ], "fpReserves": [ - "10544545093698792480713601", - "9010288256553384115864488" + "7867188426568477214173232", + "3139972488137308889014890" ], - "mAssetSupply": "109604016914601471936916854", - "LPTokenSupply": "19419808761214640240272153" + "mAssetSupply": "106949315549532201465591573", + "LPTokenSupply": "10842667612087124759979629" }, { - "type": "swap_fp_to_mp", - "inputQty": "1493274561629987494952960", - "outputIndex": 2, - "outputQty": "1490687463709023092138513", - "swapFee": "0", - "redemptionFee": "597326590315748420661", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1534235824521846528", + "outputQty0": "1560375322669941397", + "outputQty": "1436799468607508463", + "swapFee1": "920541494713107", + "swapFee2": "936225193601964", "mpReserves": [ - "54067328241985761714105064", - "28864162692016440258012739", - "25202618144384357137784551" + "56076571696247720261465320", + "6873364172895604373737293", + "44487277626612771716797796" ], "fpReserves": [ - "9051228617909421429059414", - "10503562818183371610817448" + "7867186866193154544231835", + "3139972488137308889014890" ], - "mAssetSupply": "108111297765402416633683328", - "LPTokenSupply": "19419808761214640240272153" + "mAssetSupply": "106949313990093103989252140", + "LPTokenSupply": "10842666077943354387604411" }, { - "type": "swap_fp_to_mp", - "inputQty": "8927782080954895433728", - "outputIndex": 0, - "outputQty": "8928919221688896880338", - "swapFee": "0", - "redemptionFee": "3567540627128848038", + "type": "mint", + "inputIndex": 2, + "inputQty": "15356885183854008074240", + "outputQty0": "15223173363593490595224", + "outputQty": "14959109377353811040314", "mpReserves": [ - "54058399322764072817224726", - "28864162692016440258012739", - "25202618144384357137784551" + "56076571696247720261465320", + "6873364172895604373737293", + "44502634511796625724872036" ], "fpReserves": [ - "9042309766341599308963713", - "10512490600264326506251176" + "7882410039556748034827059", + "3139972488137308889014890" ], - "mAssetSupply": "108102382481375221642435665", - "LPTokenSupply": "19419808761214640240272153" + "mAssetSupply": "106964537163456697479847364", + "LPTokenSupply": "10857625187320708198644725" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "184366946899841", - "outputQty0": "185436739036480", - "outputQty": "185646020842361", - "swapFee1": "110620168139", - "swapFee2": "74174695614", + "type": "swap_fp_to_mp", + "inputQty": "163193574738559567396864", + "outputIndex": 2, + "outputQty": "165848196748240068795212", + "swapFee": "0", + "redemptionFee": "98703866950959439743", "mpReserves": [ - "54058399322578426796382365", - "28864162692016440258012739", - "25202618144384357137784551" + "56076571696247720261465320", + "6873364172895604373737293", + "44336786315048385656076824" ], "fpReserves": [ - "9042309766156162569927233", - "10512490600264326506251176" + "7717903594638482301921789", + "3303166062875868456411754" ], - "mAssetSupply": "108102382481189859078094799", - "LPTokenSupply": "19419808761030284355389125" + "mAssetSupply": "106800129422405382706381837", + "LPTokenSupply": "10857625187320708198644725" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "116017555467548370141184", - "outputQty0": "116687972207298392764090", - "outputQty": "116466865083487270330242", - "swapFee1": "69610533280529022084", - "swapFee2": "46675188882919357105", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "73246529781134578941952", + "outputQty0": "72347505727163683580245", + "outputQty": "71733639195799843605965", + "swapFee": "56890156758147784830", "mpReserves": [ - "54058399322578426796382365", - "28864162692016440258012739", - "25086151279300869867454309" + "56149818226028854840407272", + "6873364172895604373737293", + "44336786315048385656076824" ], "fpReserves": [ - "8925621793948864177163143", - "10512490600264326506251176" + "7790251100365645985502034", + "3231432423680068612805789" ], - "mAssetSupply": "107985741184171443604687814", - "LPTokenSupply": "19303798166616064038150149" + "mAssetSupply": "106872476928132546389962082", + "LPTokenSupply": "10857630876336384013423208" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "73527392883997280", - "outputQty0": "73950742859473622", - "outputQty": "73864637011733627", - "swapFee1": "44116435730398", - "swapFee2": "29580297143789", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "34443049495326204362752", + "outputQty0": "37365700709724672621860", + "outputQty": "37035990684630223085111", + "swapFee": "29378625144628935948", "mpReserves": [ - "54058399322578426796382365", - "28864162618151803246279112", - "25086151279300869867454309" + "56149818226028854840407272", + "6907807222390930578100045", + "44336786315048385656076824" ], "fpReserves": [ - "8925621719998121317689521", - "10512490600264326506251176" + "7827616801075370658123894", + "3194396432995438389720678" ], - "mAssetSupply": "107985741110250281042357981", - "LPTokenSupply": "19303798093093082797725908" + "mAssetSupply": "106909842628842271062583942", + "LPTokenSupply": "10857633814198898476316802" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "253181064148509097984", - "outputQty0": "253374809207020174956", - "outputQty": "253449621810151412343", - "swapFee": "201418505915719481", + "inputIndex": 0, + "inputQty": "61799420134541269925888", + "outputQty0": "61043666545331833234607", + "outputQty": "60485581207785541885798", + "swapFee": "47991533754079309742", "mpReserves": [ - "54058399322578426796382365", - "28864415799215951755377096", - "25086151279300869867454309" + "56211617646163396110333160", + "6907807222390930578100045", + "44336786315048385656076824" ], "fpReserves": [ - "8925875094807328337864477", - "10512237150642516354838833" + "7888660467620702491358501", + "3133910851787652847834880" ], - "mAssetSupply": "107985994485059488062532937", - "LPTokenSupply": "19303798113234933389297856" + "mAssetSupply": "106970886295387602895818549", + "LPTokenSupply": "10857638613352273884247776" }, { - "type": "swap_fp_to_mp", - "inputQty": "1054337977392685320765440", - "outputIndex": 0, - "outputQty": "1053527515869768928469938", - "swapFee": "0", - "redemptionFee": "420944017524607676426", + "type": "mint", + "inputIndex": 2, + "inputQty": "18839072587915838095360", + "outputQty0": "18676908837691464656112", + "outputQty": "18352337156411834200246", "mpReserves": [ - "53004871806708657867912427", - "28864415799215951755377096", - "25086151279300869867454309" + "56211617646163396110333160", + "6907807222390930578100045", + "44355625387636301494172184" ], "fpReserves": [ - "7873515050995809146798197", - "11566575128035201675604273" + "7907337376458393956014613", + "3133910851787652847834880" ], - "mAssetSupply": "106934055385265493479143083", - "LPTokenSupply": "19303798113234933389297856" + "mAssetSupply": "106989563204225294360474661", + "LPTokenSupply": "10875990950508685718448022" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "169143325628973189169152", - "outputQty0": "169386029612759879025884", - "outputQty": "169685288941770366981476", - "swapFee": "134768835186358857203", + "inputQty": "83182295684301407125504", + "outputQty0": "82465060739301072016918", + "outputQty": "81029673695726285117435", "mpReserves": [ - "53004871806708657867912427", - "28864415799215951755377096", - "25255294604929843056623461" + "56211617646163396110333160", + "6907807222390930578100045", + "44438807683320602901297688" ], "fpReserves": [ - "8042901080608569025824081", - "11396889839093431308622797" + "7989802437197695028031531", + "3133910851787652847834880" ], - "mAssetSupply": "107103441414878253358168967", - "LPTokenSupply": "19303811590118452025183576" + "mAssetSupply": "107072028264964595432491579", + "LPTokenSupply": "10957020624204412003565457" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "13350953048712518041600", - "outputQty0": "13360680367869529610860", - "outputQty": "13382277465804331634058", - "swapFee": "10628840456037017357", + "inputIndex": 0, + "inputQty": "90198842435487982944256", + "outputQty0": "89094452297138147565116", + "outputQty": "88216326005050649545686", + "swapFee": "70031586945671285284", "mpReserves": [ - "53004871806708657867912427", - "28877766752264664273418696", - "25255294604929843056623461" + "56301816488598884093277416", + "6907807222390930578100045", + "44438807683320602901297688" ], "fpReserves": [ - "8056261760976438555434941", - "11383507561627626976988739" + "8078896889494833175596647", + "3045694525782602198289194" ], - "mAssetSupply": "107116802095246122887779827", - "LPTokenSupply": "19303812653002497628885311" + "mAssetSupply": "107161122717261733580056695", + "LPTokenSupply": "10957027627363106570693985" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "51092827952911630336", - "outputQty0": "51017606087045359323", - "outputQty": "50732152399304519521", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1630137325956582656", + "outputQty0": "1768474841444273780", + "outputQty": "1750474589883551841", + "swapFee": "1389864456004999", "mpReserves": [ - "53004922899536610779542763", - "28877766752264664273418696", - "25255294604929843056623461" + "56301816488598884093277416", + "6907808852528256534682701", + "44438807683320602901297688" ], "fpReserves": [ - "8056312778582525600794264", - "11383507561627626976988739" + "8078898657969674619870427", + "3045692775308012314737353" ], - "mAssetSupply": "107116853112852209933139150", - "LPTokenSupply": "19303863385154896933404832" + "mAssetSupply": "107161124485736575024330475", + "LPTokenSupply": "10957027627502093016294484" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "51880480502084880", - "outputQty0": "52141092766210882", - "outputQty": "52197084010318792", - "swapFee1": "31128288301250", - "swapFee2": "20856437106484", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "376921057383465680896", + "outputQty0": "372301608078585549855", + "outputQty": "368511654704465153536", + "swapFee": "292596028639027589", "mpReserves": [ - "53004922847339526769223971", - "28877766752264664273418696", - "25255294604929843056623461" + "56302193409656267558958312", + "6907808852528256534682701", + "44438807683320602901297688" ], "fpReserves": [ - "8056312726441432834583382", - "11383507561627626976988739" + "8079270959577753205420282", + "3045324263653307849583817" ], - "mAssetSupply": "107116853060731973604034752", - "LPTokenSupply": "19303863333277529260150077" + "mAssetSupply": "107161496787344653609880330", + "LPTokenSupply": "10957027656761695880197242" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "44148116157163479040", - "outputQty0": "44369885733224867041", - "outputQty": "44417531888467531807", - "swapFee1": "26488869694298087", - "swapFee2": "17747954293289946", + "type": "swap_fp_to_mp", + "inputQty": "721809542604916785152", + "outputIndex": 2, + "outputQty": "734550467680423007563", + "swapFee": "0", + "redemptionFee": "437189173194414520", "mpReserves": [ - "53004878429807638301692164", - "28877766752264664273418696", - "25255294604929843056623461" + "56302193409656267558958312", + "6907808852528256534682701", + "44438073132852922478290125" ], "fpReserves": [ - "8056268356555699609716341", - "11383507561627626976988739" + "8078542310955762514553396", + "3046046073195912766368969" ], - "mAssetSupply": "107116808708594194672457657", - "LPTokenSupply": "19303819187810259066100845" + "mAssetSupply": "107160768575911836113427964", + "LPTokenSupply": "10957027656761695880197242" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "6800280229711088451584", - "outputQty0": "6834427098896371949605", - "outputQty": "6821994994281108568274", - "swapFee1": "4080168137826653070", - "swapFee2": "2733770839558548779", + "type": "mint", + "inputIndex": 2, + "inputQty": "41442483668085949595648", + "outputQty0": "41084601276107800197527", + "outputQty": "40360624210609059256320", "mpReserves": [ - "53004878429807638301692164", - "28877766752264664273418696", - "25248472609935561948055187" + "56302193409656267558958312", + "6907808852528256534682701", + "44479515616521008427885773" ], "fpReserves": [ - "8049433929456803237766736", - "11383507561627626976988739" + "8119626912231870314750923", + "3046046073195912766368969" ], - "mAssetSupply": "107109977015266137859056831", - "LPTokenSupply": "19297019315597361760314568" + "mAssetSupply": "107201853177187943913625491", + "LPTokenSupply": "10997388280972304939453562" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "4639846520599811194880", - "outputQty0": "4663131006922786703942", - "outputQty": "4654644023478424853163", - "swapFee1": "2783907912359886716", - "swapFee2": "1865252402769114681", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2257022054724214", + "outputQty0": "2448692684438295", + "outputQty": "2423569101658311", + "swapFee": "1924411677461", "mpReserves": [ - "53004878429807638301692164", - "28877766752264664273418696", - "25243817965912083523202024" + "56302193409656267558958312", + "6907808854785278589406915", + "44479515616521008427885773" ], "fpReserves": [ - "8044770798449880451062794", - "11383507561627626976988739" + "8119626914680562999189218", + "3046046070772343664710658" ], - "mAssetSupply": "107105315749511617841467570", - "LPTokenSupply": "19292379747467553185108359" + "mAssetSupply": "107201853179636636598063786", + "LPTokenSupply": "10997388280972497380621308" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "25129850913341804544", - "outputQty0": "25165610765291483082", - "outputQty": "25024955960406644323", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "510751140174510161920", + "outputQty0": "504492460266580738688", + "outputQty": "499315417613700799293", + "swapFee": "396477291065688435", "mpReserves": [ - "53004878429807638301692164", - "28877766752264664273418696", - "25243843095762996865006568" + "56302704160796442069120232", + "6907808854785278589406915", + "44479515616521008427885773" ], "fpReserves": [ - "8044795964060645742545876", - "11383507561627626976988739" + "8120131407140829579927906", + "3045546755354729963911365" ], - "mAssetSupply": "107105340915122383132950652", - "LPTokenSupply": "19292404772423513591752682" + "mAssetSupply": "107202357672096903178802474", + "LPTokenSupply": "10997388320620226487190151" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "4039082751348399669248", - "outputQty0": "4033133270719484114944", - "outputQty": "4039639696090619004126", - "swapFee": "3208469512375495035", + "inputIndex": 1, + "inputQty": "188956669648303307096064", + "outputQty0": "204585348464847518892739", + "outputQty": "202319008314139566226339", + "swapFee": "160772762928244627128", "mpReserves": [ - "53008917512558986701361412", - "28877766752264664273418696", - "25243843095762996865006568" + "56302704160796442069120232", + "7096765524433581896502979", + "44479515616521008427885773" ], "fpReserves": [ - "8048829097331365226660820", - "11379467921931536357984613" + "8324716755605677098820645", + "2843227747040590397685026" ], - "mAssetSupply": "107109374048393102617065596", - "LPTokenSupply": "19292405093270464829302185" + "mAssetSupply": "107406943020561750697695213", + "LPTokenSupply": "10997404397896519311652863" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "44066867557461621997568", - "outputQty0": "44129418712847235508475", - "outputQty": "43882061633491646033687", + "inputIndex": 1, + "inputQty": "13012493464493406208", + "outputQty0": "14060718675145076404", + "outputQty": "13806359397231893744", "mpReserves": [ - "53008917512558986701361412", - "28877766752264664273418696", - "25287909963320458487004136" + "56302704160796442069120232", + "7096778536927046389909187", + "44479515616521008427885773" ], "fpReserves": [ - "8092958516044212462169295", - "11379467921931536357984613" + "8324730816324352243897049", + "2843227747040590397685026" ], - "mAssetSupply": "107153503467105949852574071", - "LPTokenSupply": "19336287154903956475335872" + "mAssetSupply": "107406957081280425842771617", + "LPTokenSupply": "10997418204255916543546607" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "3445495924950208872448", - "outputQty0": "3448008951969969819620", - "outputQty": "3453406634695637259862", - "swapFee": "2742909626582445321", + "type": "redeem", + "outputIndex": 1, + "inputQty": "841063806884500092223488", + "outputQty0": "855823386181915524479410", + "outputQty": "784455551515194312822827", + "swapFee1": "504638284130700055334", + "swapFee2": "513494031709149314687", "mpReserves": [ - "53008917512558986701361412", - "28881212248189614482291144", - "25287909963320458487004136" + "56302704160796442069120232", + "6312322985411852077086360", + "44479515616521008427885773" ], "fpReserves": [ - "8096406524996182431988915", - "11376014515296840720724751" + "7468907430142436719417639", + "2843227747040590397685026" ], - "mAssetSupply": "107156951476057919822393691", - "LPTokenSupply": "19336287429194919133580404" + "mAssetSupply": "106551647189130219467606894", + "LPTokenSupply": "10156404861199829521328652" }, { - "type": "swap_fp_to_mp", - "inputQty": "576130761023889902403584", - "outputIndex": 2, - "outputQty": "573424446565086022909147", - "swapFee": "0", - "redemptionFee": "229797871274975903521", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "4775438302207281201152", + "outputQty0": "5258702665176518289046", + "outputQty": "5205907870336926176238", + "swapFee": "4132812363594481268", "mpReserves": [ - "53008917512558986701361412", - "28881212248189614482291144", - "24714485516755372464094989" + "56302704160796442069120232", + "6317098423714059358287512", + "44479515616521008427885773" ], "fpReserves": [ - "7521911846808742673185287", - "11952145276320730623128335" + "7474166132807613237706685", + "2838021839170253471508788" ], - "mAssetSupply": "106582686595741755039493584", - "LPTokenSupply": "19336287429194919133580404" + "mAssetSupply": "106556905891795395985895940", + "LPTokenSupply": "10156405274481065880776778" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "21046235368127160320", - "outputQty0": "21140015364086510853", - "outputQty": "21099563860862579764", - "swapFee1": "12627741220876296", - "swapFee2": "8456006145634604", + "type": "mint", + "inputIndex": 0, + "inputQty": "24426059275362568765440", + "outputQty0": "24098209709155968345985", + "outputQty": "23673046881295196520241", "mpReserves": [ - "53008917512558986701361412", - "28881212248189614482291144", - "24714464417191511601515225" + "56327130220071804637885672", + "6317098423714059358287512", + "44479515616521008427885773" ], "fpReserves": [ - "7521890706793378586674434", - "11952145276320730623128335" + "7498264342516769206052670", + "2838021839170253471508788" ], - "mAssetSupply": "106582665464182397098617335", - "LPTokenSupply": "19336266384222325128507713" + "mAssetSupply": "106581004101504551954241925", + "LPTokenSupply": "10180078321362361077297019" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "120800144728808686092288", - "outputQty0": "120883893340411193113432", - "outputQty": "121178919235408292385904", - "swapFee": "96216371067331612552", + "inputQty": "451303968145056181780480", + "outputQty0": "493990382953042830125237", + "outputQty": "487845009444394404635128", + "swapFee": "388158570278072248737", "mpReserves": [ - "53008917512558986701361412", - "29002012392918423168383432", - "24714464417191511601515225" + "56327130220071804637885672", + "6768402391859115540067992", + "44479515616521008427885773" ], "fpReserves": [ - "7642774600133789779787866", - "11830966357085322330742431" + "7992254725469812036177907", + "2350176829725859066873660" ], - "mAssetSupply": "106703549357522808291730767", - "LPTokenSupply": "19336276005859431861668968" + "mAssetSupply": "107074994484457594784367162", + "LPTokenSupply": "10180117137219388884521892" }, { "type": "swap_fp_to_mp", - "inputQty": "750946765282801090560", + "inputQty": "2692974128245660672", "outputIndex": 0, - "outputQty": "749422872379988839833", + "outputQty": "2765355616420606152", "swapFee": "0", - "redemptionFee": "299440078960971796", + "redemptionFee": "1639427649366876", "mpReserves": [ - "53008168089686606712521579", - "29002012392918423168383432", - "24714464417191511601515225" + "56327127454716188217279520", + "6768402391859115540067992", + "44479515616521008427885773" ], "fpReserves": [ - "7642025999936387350295586", - "11831717303850605131832991" + "7992251993090396424716454", + "2350179522699987312534332" ], - "mAssetSupply": "106702801056765484823210283", - "LPTokenSupply": "19336276005859431861668968" + "mAssetSupply": "107074991753717606822272585", + "LPTokenSupply": "10180117137219388884521892" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "258163908236253132226560", - "outputQty0": "259327142314680971791998", - "outputQty": "259041690073108935874306", - "swapFee1": "154898344941751879335", - "swapFee2": "103730856925872388716", + "type": "mint", + "inputIndex": 0, + "inputQty": "4182630772292064903168", + "outputQty0": "4130271937946084124145", + "outputQty": "4051972251906625725275", "mpReserves": [ - "53008168089686606712521579", - "28742970702845314232509126", - "24714464417191511601515225" + "56331310085488480282182688", + "6768402391859115540067992", + "44479515616521008427885773" ], "fpReserves": [ - "7382698857621706378503588", - "11831717303850605131832991" + "7996382265028342508840599", + "2350179522699987312534332" ], - "mAssetSupply": "106443577645307729723807001", - "LPTokenSupply": "19078127587457672904630341" + "mAssetSupply": "107079122025655552906396730", + "LPTokenSupply": "10184169109471295510247167" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "20323272796769464877056", - "outputQty0": "20353911121339266914305", - "outputQty": "20406928845721071060210", - "swapFee": "16201585054592936945", + "type": "mint", + "inputIndex": 0, + "inputQty": "11637710673633729314816", + "outputQty0": "11492003581269013067277", + "outputQty": "11274080586822379154132", "mpReserves": [ - "53008168089686606712521579", - "28742970702845314232509126", - "24734787689988281066392281" + "56342947796162114011497504", + "6768402391859115540067992", + "44479515616521008427885773" ], "fpReserves": [ - "7403052768743045645417893", - "11811310375004884060772781" + "8007874268609611521907876", + "2350179522699987312534332" ], - "mAssetSupply": "106463931556429068990721306", - "LPTokenSupply": "19078129207616178363924035" + "mAssetSupply": "107090614029236821919464007", + "LPTokenSupply": "10195443190058117889401299" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2589504538727924778401792", - "outputQty0": "2590984910226999977130837", - "outputQty": "2592339657836395027993826", - "swapFee": "2060876190022479184863", + "inputIndex": 2, + "inputQty": "1145534171313406345216", + "outputQty0": "1135401891731770665327", + "outputQty": "1118069154622783345691", + "swapFee": "891092965988879032", "mpReserves": [ - "53008168089686606712521579", - "31332475241573239010910918", - "24734787689988281066392281" + "56342947796162114011497504", + "6768402391859115540067992", + "44480661150692321834230989" ], "fpReserves": [ - "9994037678970045622548730", - "9218970717168489032778955" + "8009009670501343292573203", + "2349061453545364529188641" ], - "mAssetSupply": "109054916466656068967852143", - "LPTokenSupply": "19078335295235180611842521" + "mAssetSupply": "107091749431128553690129334", + "LPTokenSupply": "10195443279167414488289202" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "124758688024629740568576", - "outputQty0": "124582769744174158311137", - "outputQty": "123675233690556151865577", + "type": "swap_fp_to_mp", + "inputQty": "1262319271616643334144", + "outputIndex": 1, + "outputQty": "1176049411104621701870", + "swapFee": "0", + "redemptionFee": "768516864928806881", "mpReserves": [ - "53132926777711236453090155", - "31332475241573239010910918", - "24734787689988281066392281" + "56342947796162114011497504", + "6767226342448010918366122", + "44480661150692321834230989" ], "fpReserves": [ - "10118620448714219780859867", - "9218970717168489032778955" + "8007728809059795281104833", + "2350323772816981172522785" ], - "mAssetSupply": "109179499236400243126163280", - "LPTokenSupply": "19202010528925736763708098" + "mAssetSupply": "107090469338203870607467845", + "LPTokenSupply": "10195443279167414488289202" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "6110069333066655744", - "outputQty0": "6112751087363600111", - "outputQty": "6068102226275814536", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "353298218707333248", + "outputQty0": "348873528068428877", + "outputQty": "343551059991942603", + "swapFee": "273805243154848", "mpReserves": [ - "53132926777711236453090155", - "31332481351642572077566662", - "24734787689988281066392281" + "56342948149460332718830752", + "6767226342448010918366122", + "44480661150692321834230989" ], "fpReserves": [ - "10118626561465307144459978", - "9218970717168489032778955" + "8007729157933323349533710", + "2350323429265921180580182" ], - "mAssetSupply": "109179505349151330489763391", - "LPTokenSupply": "19202016597027963039522634" + "mAssetSupply": "107090469687077398675896722", + "LPTokenSupply": "10195443279194795012604686" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "643696470382343488536576", - "outputQty0": "644716396559225378325037", - "outputQty": "639943842341352810360137", + "type": "redeem", + "outputIndex": 0, + "inputQty": "4659842682007723008", + "outputQty0": "4747083202299250045", + "outputQty": "4804405097982979236", + "swapFee1": "2795905609204633", + "swapFee2": "2848249921379550", "mpReserves": [ - "53132926777711236453090155", - "31332481351642572077566662", - "25378484160370624554928857" + "56342943345055234735851516", + "6767226342448010918366122", + "44480661150692321834230989" ], "fpReserves": [ - "10763342958024532522785015", - "9218970717168489032778955" + "8007724410850121050283665", + "2350323429265921180580182" ], - "mAssetSupply": "109824221745710555868088428", - "LPTokenSupply": "19841960439369315849882771" + "mAssetSupply": "107090464942842446298026227", + "LPTokenSupply": "10195438619631703565802141" }, { - "type": "swap_fp_to_mp", - "inputQty": "1189336471089771", - "outputIndex": 2, - "outputQty": "1188277929944838", - "swapFee": "0", - "redemptionFee": "476227659615", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3423967387268254720", + "outputQty0": "3488070120496176822", + "outputQty": "3202599385029880601", + "swapFee1": "2054380432360952", + "swapFee2": "2092842072297706", "mpReserves": [ - "53132926777711236453090155", - "31332481351642572077566662", - "25378484159182346624984019" + "56342943345055234735851516", + "6767223139848625888485521", + "44480661150692321834230989" ], "fpReserves": [ - "10763342956833963373746361", - "9218970718357825503868726" + "8007720922780000554106843", + "2350323429265921180580182" ], - "mAssetSupply": "109824221744520462946709389", - "LPTokenSupply": "19841960439369315849882771" + "mAssetSupply": "107090461456865167874147111", + "LPTokenSupply": "10195435195869754340783516" }, { - "type": "swap_fp_to_mp", - "inputQty": "98434952760112055320576", + "type": "redeem", "outputIndex": 2, - "outputQty": "98339871365082233553097", - "swapFee": "0", - "redemptionFee": "39412132126836930654", + "inputQty": "5652338283267898368", + "outputQty0": "5758160047991629353", + "outputQty": "5806071249681529243", + "swapFee1": "3391402969960739", + "swapFee2": "3454896028794977", "mpReserves": [ - "53132926777711236453090155", - "31332481351642572077566662", - "25280144287817264391430922" + "56342943345055234735851516", + "6767223139848625888485521", + "44480655344621072152701746" ], "fpReserves": [ - "10664812626516871047110503", - "9317405671117937559189302" + "8007715164619952562477490", + "2350323429265921180580182" ], - "mAssetSupply": "109725730826335497457004185", - "LPTokenSupply": "19841960439369315849882771" + "mAssetSupply": "107090455702160015911312735", + "LPTokenSupply": "10195429543870611369881221" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "177121186960451338240", - "outputQty0": "177203706254260171093", - "outputQty": "176902421036713292379", - "swapFee": "140708751722833998", + "inputQty": "1048870658858431283200", + "outputQty0": "1141664610672734919307", + "outputQty": "1124238504609638009341", + "swapFee": "896008455148065568", "mpReserves": [ - "53132926777711236453090155", - "31332658472829532528904902", - "25280144287817264391430922" + "56342943345055234735851516", + "6768272010507484319768721", + "44480655344621072152701746" ], "fpReserves": [ - "10664989830223125307281596", - "9317228768696900845896923" + "8008856829230625297396797", + "2349199190761311542570841" ], - "mAssetSupply": "109725908030041751717175278", - "LPTokenSupply": "19841960453440191022166170" + "mAssetSupply": "107091597366770688646232042", + "LPTokenSupply": "10195429633471456884687777" }, { "type": "mint", + "inputIndex": 0, + "inputQty": "154220372882860015616", + "outputQty0": "152289224718684150350", + "outputQty": "149400251208868822752", + "mpReserves": [ + "56343097565428117595867132", + "6768272010507484319768721", + "44480655344621072152701746" + ], + "fpReserves": [ + "8009009118455343981547147", + "2349199190761311542570841" + ], + "mAssetSupply": "107091749655995407330382392", + "LPTokenSupply": "10195579033722665753510529" + }, + { + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "2793909133752089968640", - "outputQty0": "2798223807608322413140", - "outputQty": "2777413546265236855055", + "inputQty": "1078880286388786692096", + "outputQty0": "1069337011909442757015", + "outputQty": "1052998526534755651100", + "swapFee": "839240719605262132", "mpReserves": [ - "53132926777711236453090155", - "31332658472829532528904902", - "25282938196951016481399562" + "56343097565428117595867132", + "6768272010507484319768721", + "44481734224907460939393842" ], "fpReserves": [ - "10667788054030733629694736", - "9317228768696900845896923" + "8010078455467253424304162", + "2348146192234776786919741" ], - "mAssetSupply": "109728706253849360039588418", - "LPTokenSupply": "19844737866986456259021225" + "mAssetSupply": "107092818993007316773139407", + "LPTokenSupply": "10195579117646737714036742" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "6642563593095631339520", - "outputQty0": "6645656957235825778248", - "outputQty": "6596224289893103174862", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1471249451589967806464", + "outputQty0": "1498803788289473427158", + "outputQty": "1511272425794506451194", + "swapFee1": "882749670953980683", + "swapFee2": "899282272973684056", "mpReserves": [ - "53132926777711236453090155", - "31339301036422628160244422", - "25282938196951016481399562" + "56343097565428117595867132", + "6768272010507484319768721", + "44480222952481666432942648" ], "fpReserves": [ - "10674433710987969455472984", - "9317228768696900845896923" + "8008579651678963950877004", + "2348146192234776786919741" ], - "mAssetSupply": "109735351910806595865366666", - "LPTokenSupply": "19851334091276349362196087" + "mAssetSupply": "107091321088501300273396305", + "LPTokenSupply": "10194107956470114841628346" }, { "type": "swap_fp_to_mp", - "inputQty": "2001055085356938690560", - "outputIndex": 1, - "outputQty": "2001136472037215638147", + "inputQty": "2187000298427528", + "outputIndex": 2, + "outputQty": "2237624006755115", "swapFee": "0", - "redemptionFee": "801147624896362776", + "redemptionFee": "1331497891705", "mpReserves": [ - "53132926777711236453090155", - "31337299899950590944606275", - "25282938196951016481399562" + "56343097565428117595867132", + "6768272010507484319768721", + "44480222950244042426187533" ], "fpReserves": [ - "10672430841925728548530906", - "9319229823782257784587483" + "8008579649459800798034272", + "2348146194421777085347269" ], - "mAssetSupply": "109733349842891979854787364", - "LPTokenSupply": "19851334091276349362196087" + "mAssetSupply": "107091321086283468618445278", + "LPTokenSupply": "10194107956470114841628346" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "28457290179178081026048", - "outputQty0": "28470498296687237225660", - "outputQty": "28421444928404861884567", - "swapFee": "22606891341274012969", + "type": "swap_fp_to_mp", + "inputQty": "24198487976121241600", + "outputIndex": 1, + "outputQty": "22545333543356690969", + "swapFee": "0", + "redemptionFee": "14732613591222854", "mpReserves": [ - "53132926777711236453090155", - "31365757190129769025632323", - "25282938196951016481399562" + "56343097565428117595867132", + "6768249465173940963077752", + "44480222950244042426187533" ], "fpReserves": [ - "10700901340222415785756566", - "9290808378853852922702916" + "8008555095103815426610408", + "2348170392909753206588869" ], - "mAssetSupply": "109761820341188667092013024", - "LPTokenSupply": "19851336351965483489597383" + "mAssetSupply": "107091296546660096838244268", + "LPTokenSupply": "10194107956470114841628346" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "187515482660645502976", - "outputQty0": "188810930367525122525", - "outputQty": "188444126735495450826", - "swapFee1": "112509289596387301", - "swapFee2": "75524372147010049", + "inputQty": "29087826979404975702016", + "outputQty0": "29632268016384240838198", + "outputQty": "29878644092804292206927", + "swapFee1": "17452696187642985421", + "swapFee2": "17779360809830544502", "mpReserves": [ - "53132926777711236453090155", - "31365757190129769025632323", - "25282749752824280985948736" + "56343097565428117595867132", + "6768249465173940963077752", + "44450344306151238133980606" ], "fpReserves": [ - "10700712529292048260634041", - "9290808378853852922702916" + "7978922827087431185772210", + "2348170392909753206588869" ], - "mAssetSupply": "109761631605782671713900548", - "LPTokenSupply": "19851148847733751803733137" + "mAssetSupply": "107061682058004522427950572", + "LPTokenSupply": "10165021874760328630224872" }, { "type": "swap_fp_to_mp", - "inputQty": "762978183012870168510464", - "outputIndex": 1, - "outputQty": "762619154305512186930783", + "inputQty": "66877515029500157952", + "outputIndex": 2, + "outputQty": "68418573157743229454", "swapFee": "0", - "redemptionFee": "305322729928915957745", + "redemptionFee": "40712819415109966", "mpReserves": [ - "53132926777711236453090155", - "30603138035824256838701540", - "25282749752824280985948736" + "56343097565428117595867132", + "6768249465173940963077752", + "44450275887578080390751152" ], "fpReserves": [ - "9937405704469758366269733", - "10053786561866723091213380" + "7978854972388406002495472", + "2348237270424782706746821" ], - "mAssetSupply": "108998630103690310735493985", - "LPTokenSupply": "19851148847733751803733137" + "mAssetSupply": "107061614244018316659783800", + "LPTokenSupply": "10165021874760328630224872" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "27715241451885097385984", + "outputIndex": 0, + "outputQty": "28454253993588139410907", + "swapFee": "0", + "redemptionFee": "16868928998601156490", + "mpReserves": [ + "56314643311434529456456225", + "6768249465173940963077752", + "44450275887578080390751152" + ], + "fpReserves": [ + "7950740090724070741678124", + "2375952511876667804132805" + ], + "mAssetSupply": "107033516231282980000122942", + "LPTokenSupply": "10165021874760328630224872" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "49026896881051479572480", - "outputQty0": "49340819538829621517109", - "outputQty": "49294300951546006224190", - "swapFee1": "29416138128630887743", - "swapFee2": "19736327815531848606", + "outputIndex": 2, + "inputQty": "347134171096973888716800", + "outputQty0": "353553042895778550152126", + "outputQty": "356472901691279742219389", + "swapFee1": "208280502658184333230", + "swapFee2": "212131825737467130091", "mpReserves": [ - "53132926777711236453090155", - "30553843734872710832477350", - "25282749752824280985948736" + "56314643311434529456456225", + "6768249465173940963077752", + "44093802985886800648531763" ], "fpReserves": [ - "9888064884930928744752624", - "10053786561866723091213380" + "7597187047828292191525998", + "2375952511876667804132805" ], - "mAssetSupply": "108949309020479296645825482", - "LPTokenSupply": "19802124892466513187249431" + "mAssetSupply": "106680175320212938917100907", + "LPTokenSupply": "9817908531713620559941395" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "4562361543041396", - "outputQty0": "4564852185150617", - "outputQty": "4533119211919036", + "inputIndex": 0, + "inputQty": "80376729526568004616192", + "outputQty0": "79368454479243495446298", + "outputQty": "77886857827783242302486", "mpReserves": [ - "53132926777711236453090155", - "30553843739435072375518746", - "25282749752824280985948736" + "56395020040961097461072417", + "6768249465173940963077752", + "44093802985886800648531763" ], "fpReserves": [ - "9888064889495780929903241", - "10053786561866723091213380" + "7676555502307535686972296", + "2375952511876667804132805" ], - "mAssetSupply": "108949309025044148830976099", - "LPTokenSupply": "19802124896999632399168467" + "mAssetSupply": "106759543774692182412547205", + "LPTokenSupply": "9895795389541403802243881" }, { "type": "swap_fp_to_mp", - "inputQty": "24128207345833040", - "outputIndex": 2, - "outputQty": "24079638767009609", + "inputQty": "367271868463833528926208", + "outputIndex": 0, + "outputQty": "375912773709386949541304", "swapFee": "0", - "redemptionFee": "9650220539520", + "redemptionFee": "222860875692544512734", "mpReserves": [ - "53132926777711236453090155", - "30553843739435072375518746", - "25282749728744642218939127" + "56019107267251710511531113", + "6768249465173940963077752", + "44093802985886800648531763" ], "fpReserves": [ - "9888064865370229581103064", - "10053786585994930437046420" + "7305120709486628165747959", + "2743224380340501333059013" ], - "mAssetSupply": "108949309000928247702715442", - "LPTokenSupply": "19802124896999632399168467" + "mAssetSupply": "106388331842746967435835602", + "LPTokenSupply": "9895795389541403802243881" }, { - "type": "swap_fp_to_mp", - "inputQty": "47871986701777806295040", - "outputIndex": 1, - "outputQty": "47819822096801053664838", - "swapFee": "0", - "redemptionFee": "19146077719320983256", + "type": "redeem", + "outputIndex": 2, + "inputQty": "957812911795717254676480", + "outputQty0": "974223606364428639443576", + "outputQty": "982089639637681531629180", + "swapFee1": "574687747077430352805", + "swapFee2": "584534163818657183666", "mpReserves": [ - "53132926777711236453090155", - "30506023917338271321853908", - "25282749728744642218939127" + "56019107267251710511531113", + "6768249465173940963077752", + "43111713346249119116902583" ], "fpReserves": [ - "9840199671071927122962625", - "10101658572696708243341460" + "6330897103122199526304383", + "2743224380340501333059013" ], - "mAssetSupply": "108901462952707664565558259", - "LPTokenSupply": "19802124896999632399168467" + "mAssetSupply": "105414692770546357453575692", + "LPTokenSupply": "8938039946520394290602681" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "2390004761303315382272", - "outputQty0": "2405213028142099079146", - "outputQty": "2402926709394604810473", - "swapFee1": "1434002856781989229", - "swapFee2": "962085211256839631", + "outputIndex": 0, + "inputQty": "72772628371308420268032", + "outputQty0": "73998765372039391215407", + "outputQty": "74890148069947981631164", + "swapFee1": "43663577022785052160", + "swapFee2": "44399259223223634729", "mpReserves": [ - "53132926777711236453090155", - "30503620990628876717043435", - "25282749728744642218939127" + "55944217119181762529899949", + "6768249465173940963077752", + "43111713346249119116902583" ], "fpReserves": [ - "9837794458043785023883479", - "10101658572696708243341460" + "6256898337750160135088976", + "2743224380340501333059013" ], - "mAssetSupply": "108899058701764733723318744", - "LPTokenSupply": "19799735035638614761985117" + "mAssetSupply": "105340738404433541285995014", + "LPTokenSupply": "8865271684506788148839865" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "16063879281787033600", - "outputQty0": "16166092600187808690", - "outputQty": "16182488356624599520", - "swapFee1": "9638327569072220", - "swapFee2": "6466437040075123", + "inputQty": "1271481048212606979932160", + "outputQty0": "1292322223486372687115785", + "outputQty": "1307645284041049515231365", + "swapFee1": "762888628927564187959", + "swapFee2": "775393334091823612269", "mpReserves": [ - "53132910595222879828490635", - "30503620990628876717043435", - "25282749728744642218939127" + "54636571835140713014668584", + "6768249465173940963077752", + "43111713346249119116902583" ], "fpReserves": [ - "9837778291951184836074789", - "10101658572696708243341460" + "4964576114263787447973191", + "2743224380340501333059013" ], - "mAssetSupply": "108899042542138570575585177", - "LPTokenSupply": "19799718972723165731858739" + "mAssetSupply": "104049191574281260422491498", + "LPTokenSupply": "7593866925157073925326500" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "982718117549142121119744", - "outputQty0": "981306894259713511346479", - "outputQty": "974361826751041114871010", + "type": "swap_fp_to_mp", + "inputQty": "1758269781542660", + "outputIndex": 2, + "outputQty": "1780386452182454", + "swapFee": "0", + "redemptionFee": "1059754825661", "mpReserves": [ - "54115628712772021949610379", - "30503620990628876717043435", - "25282749728744642218939127" + "54636571835140713014668584", + "6768249465173940963077752", + "43111713344468732664720129" ], "fpReserves": [ - "10819085186210898347421268", - "10101658572696708243341460" + "4964576112497529405203442", + "2743224382098771114601673" ], - "mAssetSupply": "109880349436398284086931656", - "LPTokenSupply": "20774080799474206846729749" + "mAssetSupply": "104049191572516062134547410", + "LPTokenSupply": "7593866925157073925326500" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "94843819138281788932096", - "outputQty0": "95475727062278305715627", - "outputQty": "95288326209613317187603", - "swapFee1": "56906291482969073359", - "swapFee2": "38190290824911322286", + "outputIndex": 0, + "inputQty": "84927450742848126976", + "outputQty0": "86289225262467698128", + "outputQty": "87296951602220879957", + "swapFee1": "50956470445708876", + "swapFee2": "51773535157480618", "mpReserves": [ - "54115628712772021949610379", - "30503620990628876717043435", - "25187461402535028901751524" + "54636484538189110793788627", + "6768249465173940963077752", + "43111713344468732664720129" ], "fpReserves": [ - "10723609459148620041705641", - "10101658572696708243341460" + "4964489823272266937505314", + "2743224382098771114601673" ], - "mAssetSupply": "109784911899626830692538315", - "LPTokenSupply": "20679242670965073354704988" + "mAssetSupply": "104049105335064334824329900", + "LPTokenSupply": "7593782002801978121770411" }, { - "type": "swap_fp_to_mp", - "inputQty": "35277944407854817280", - "outputIndex": 1, - "outputQty": "35257232002134754496", - "swapFee": "0", - "redemptionFee": "14116770337689710", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "207645580174629344", + "outputQty0": "205125443424252929", + "outputQty": "204034398344441532", + "swapFee": "161413700436089", "mpReserves": [ - "54115628712772021949610379", - "30503585733396874582288939", - "25187461402535028901751524" + "54636484745834690968417971", + "6768249465173940963077752", + "43111713344468732664720129" ], "fpReserves": [ - "10723574167222775817428846", - "10101693850641116098158740" + "4964490028397710361758243", + "2743224178064372770160141" ], - "mAssetSupply": "109784876621817756805951230", - "LPTokenSupply": "20679242670965073354704988" + "mAssetSupply": "104049105540189778248582829", + "LPTokenSupply": "7593782002818119491814019" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "45636331329903520", - "outputQty0": "45569492708549275", - "outputQty": "45241265706685626", + "inputIndex": 1, + "inputQty": "563147089900954932215808", + "outputQty0": "606506869324906673903822", + "outputQty": "596451721730682060691523", "mpReserves": [ - "54115628758408353279513899", - "30503585733396874582288939", - "25187461402535028901751524" + "54636484745834690968417971", + "7331396555074895895293560", + "43111713344468732664720129" ], "fpReserves": [ - "10723574212792268525978121", - "10101693850641116098158740" + "5570996897722617035662065", + "2743224178064372770160141" ], - "mAssetSupply": "109784876667387249514500505", - "LPTokenSupply": "20679242716206339061390614" + "mAssetSupply": "104655612409514684922486651", + "LPTokenSupply": "8190233724548801552505542" }, { - "type": "swap_fp_to_mp", - "inputQty": "35773706621719092", - "outputIndex": 2, - "outputQty": "35717334929564540", - "swapFee": "0", - "redemptionFee": "14315153493002", + "type": "mint", + "inputIndex": 2, + "inputQty": "2018081718496422", + "outputQty0": "2002401530945888", + "outputQty": "1968796168841192", "mpReserves": [ - "54115628758408353279513899", - "30503585733396874582288939", - "25187461366817693972186984" + "54636484745834690968417971", + "7331396555074895895293560", + "43111713346486814383216551" ], "fpReserves": [ - "10723574177004384793471741", - "10101693886414822719877832" + "5570996899725018566607953", + "2743224178064372770160141" ], - "mAssetSupply": "109784876631613680935487127", - "LPTokenSupply": "20679242716206339061390614" + "mAssetSupply": "104655612411517086453432539", + "LPTokenSupply": "8190233726517597721346734" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4843625733653312569344", - "outputQty0": "4836531240391750147816", - "outputQty": "4801691279213684118719", + "type": "redeem", + "outputIndex": 0, + "inputQty": "16139482316179412877312", + "outputQty0": "16405027237464726460498", + "outputQty": "16580569056439989194794", + "swapFee1": "9683689389707647726", + "swapFee2": "9843016342478835876", "mpReserves": [ - "54120472384142006592083243", - "30503585733396874582288939", - "25187461366817693972186984" + "54619904176778250979223177", + "7331396555074895895293560", + "43111713346486814383216551" ], "fpReserves": [ - "10728410708244776543619557", - "10101693886414822719877832" + "5554591872487553840147455", + "2743224178064372770160141" ], - "mAssetSupply": "109789713162854072685634943", - "LPTokenSupply": "20684044407485552745509333" + "mAssetSupply": "104639217227295964205807917", + "LPTokenSupply": "8174095212570357279234194" }, { "type": "swap_fp_to_mp", - "inputQty": "122780574968446025728", - "outputIndex": 2, - "outputQty": "122587422777152096707", + "inputQty": "721661684451056128", + "outputIndex": 1, + "outputQty": "677165948229132313", "swapFee": "0", - "redemptionFee": "49131836664332980", + "redemptionFee": "435478224124292", "mpReserves": [ - "54120472384142006592083243", - "30503585733396874582288939", - "25187338779394916820090277" + "54619904176778250979223177", + "7331395877908947666161247", + "43111713346486814383216551" ], "fpReserves": [ - "10728287878653115711167112", - "10101816666989791165903560" + "5554591146690513632992740", + "2743224899726057221216269" ], - "mAssetSupply": "109789590382394248517515478", - "LPTokenSupply": "20684044407485552745509333" + "mAssetSupply": "104639216501934402222777494", + "LPTokenSupply": "8174095212570357279234194" }, { "type": "swap_fp_to_mp", - "inputQty": "533631460957778870272", - "outputIndex": 1, - "outputQty": "533319365451889964635", + "inputQty": "111330177754019550724096", + "outputIndex": 0, + "outputQty": "113126837950513094084504", "swapFee": "0", - "redemptionFee": "213537709700447127", + "redemptionFee": "67158584029744117722", "mpReserves": [ - "54120472384142006592083243", - "30503052414031422692324304", - "25187338779394916820090277" + "54506777338827737885138673", + "7331395877908947666161247", + "43111713346486814383216551" ], "fpReserves": [ - "10727754034378864593347591", - "10102350298450748944773832" + "5442660173307606770122043", + "2854555077480076771940365" ], - "mAssetSupply": "109789056751657707100143084", - "LPTokenSupply": "20684044407485552745509333" + "mAssetSupply": "104527352687135525104024519", + "LPTokenSupply": "8174095212570357279234194" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "269982436297773285376", - "outputQty0": "271778277521148703221", - "outputQty": "271242441308130505222", - "swapFee1": "161989461778663971", - "swapFee2": "108711311008459481", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1151597958907341", + "outputQty0": "1233356137232971", + "outputQty": "1226148604498703", + "swapFee": "970350053050", "mpReserves": [ - "54120472384142006592083243", - "30503052414031422692324304", - "25187067536953608689585055" + "54506777338827737885138673", + "7331395879060545625068588", + "43111713346486814383216551" ], "fpReserves": [ - "10727482256101343444644370", - "10102350298450748944773832" + "5442660174540962907355014", + "2854555076253928167441662" ], - "mAssetSupply": "109788785082091496959899344", - "LPTokenSupply": "20683774441248201150090354" + "mAssetSupply": "104527352688368881241257490", + "LPTokenSupply": "8174095212570454314239499" }, { - "type": "swap_fp_to_mp", - "inputQty": "65240256425787400192", - "outputIndex": 0, - "outputQty": "65335839917394502775", - "swapFee": "0", - "redemptionFee": "26106495351763448", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1212569859932343238656", + "outputQty0": "1203140369057344604683", + "outputQty": "1196105410615923875099", + "swapFee": "946577245870974328", "mpReserves": [ - "54120407048302089197580468", - "30503052414031422692324304", - "25187067536953608689585055" + "54506777338827737885138673", + "7331395879060545625068588", + "43112925916346746726455207" ], "fpReserves": [ - "10727416989862964036024362", - "10102415538707174732174024" + "5443863314910020251959697", + "2853358970843312243566563" ], - "mAssetSupply": "109788719841959612903042784", - "LPTokenSupply": "20683774441248201150090354" + "mAssetSupply": "104528555828737938585862173", + "LPTokenSupply": "8174095307228178901336931" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "54563587344158", - "outputQty0": "54926523685500", - "outputQty": "54985098609593", - "swapFee1": "32738152406", - "swapFee2": "21970609474", + "inputQty": "15963281617988247093248", + "outputQty0": "16222219941840835010404", + "outputQty": "16395268310730976884699", + "swapFee1": "9577968970792948255", + "swapFee2": "9733331965104501006", "mpReserves": [ - "54120407048247104098970875", - "30503052414031422692324304", - "25187067536953608689585055" + "54490382070517006908253974", + "7331395879060545625068588", + "43112925916346746726455207" ], "fpReserves": [ - "10727416989808037512338862", - "10102415538707174732174024" + "5427641094968179416949293", + "2853358970843312243566563" ], - "mAssetSupply": "109788719841904708349966758", - "LPTokenSupply": "20683774441193640836561436" + "mAssetSupply": "104512343342128062855352775", + "LPTokenSupply": "8158132983407087733538508" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "139640788058124096372736", - "outputQty0": "140566635942184999035092", - "outputQty": "140427349722941392570806", - "swapFee1": "83784472834874457823", - "swapFee2": "56226654376873999614", + "outputIndex": 2, + "inputQty": "4283241705564631203840", + "outputQty0": "4352694510180359296998", + "outputQty": "4384177885371043066881", + "swapFee1": "2569945023338778722", + "swapFee2": "2611616706108215578", "mpReserves": [ - "54120407048247104098970875", - "30362625064308481299753498", - "25187067536953608689585055" + "54490382070517006908253974", + "7331395879060545625068588", + "43108541738461375683388326" ], "fpReserves": [ - "10586850353865852513303770", - "10102415538707174732174024" + "5423288400457999057652295", + "2853358970843312243566563" ], - "mAssetSupply": "109648209432616900224931280", - "LPTokenSupply": "20544142031582800227634482" + "mAssetSupply": "104507993259234588604271355", + "LPTokenSupply": "8153849998696025436212540" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "95061270233384470183936", - "outputQty0": "95688441738444665085034", - "outputQty": "95499622555592611411060", - "swapFee1": "57036762140030682110", - "swapFee2": "38275376695377866034", + "type": "mint", + "inputIndex": 0, + "inputQty": "115068069030217646080000", + "outputQty0": "113783797536892381948629", + "outputQty": "111896966328230424033629", "mpReserves": [ - "54120407048247104098970875", - "30362625064308481299753498", - "25091567914398016078173995" + "54605450139547224554333974", + "7331395879060545625068588", + "43108541738461375683388326" ], "fpReserves": [ - "10491161912127407848218736", - "10102415538707174732174024" + "5537072197994891439600924", + "2853358970843312243566563" ], - "mAssetSupply": "109552559266255150937712280", - "LPTokenSupply": "20449086465025629760518757" + "mAssetSupply": "104621777056771480986219984", + "LPTokenSupply": "8265746965024255860246169" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "320443188140373895544832", - "outputQty0": "320628091688604636954124", - "outputQty": "320225070193595580152004", - "swapFee": "254659019802933058260", + "type": "mint", + "inputIndex": 2, + "inputQty": "218747423085934080", + "outputQty0": "217047642734837570", + "outputQty": "213440410836184920", "mpReserves": [ - "54120407048247104098970875", - "30683068252448855195298330", - "25091567914398016078173995" + "54605450139547224554333974", + "7331395879060545625068588", + "43108541957208798769322406" ], "fpReserves": [ - "10811790003816012485172860", - "9782190468513579152022020" + "5537072415042534174438494", + "2853358970843312243566563" ], - "mAssetSupply": "109873187357943755574666404", - "LPTokenSupply": "20449111930927610053824583" + "mAssetSupply": "104621777273819123721057554", + "LPTokenSupply": "8265747178464666696431089" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1115998277243468", - "outputQty0": "1123585228079013", - "outputQty": "1124781792510189", - "swapFee1": "669598966346", - "swapFee2": "449434091231", + "type": "mint", + "inputIndex": 0, + "inputQty": "76326815305935372681216", + "outputQty0": "75473110874389678625923", + "outputQty": "74216941127736285167613", "mpReserves": [ - "54120407047122322306460686", - "30683068252448855195298330", - "25091567914398016078173995" + "54681776954853159927015190", + "7331395879060545625068588", + "43108541957208798769322406" ], "fpReserves": [ - "10811790002692427257093847", - "9782190468513579152022020" + "5612545525916923853064417", + "2853358970843312243566563" ], - "mAssetSupply": "109873187356820619780678622", - "LPTokenSupply": "20449111929811678736477749" + "mAssetSupply": "104697250384693513399683477", + "LPTokenSupply": "8339964119592402981598702" }, { "type": "swap_fp_to_mp", - "inputQty": "592739472490739848445952", - "outputIndex": 0, - "outputQty": "593529485027249933527815", + "inputQty": "1294531102433106779439104", + "outputIndex": 2, + "outputQty": "1306983807309022677481762", "swapFee": "0", - "redemptionFee": "237162571312494321475", + "redemptionFee": "778709514806784866257", "mpReserves": [ - "53526877562095072372932871", - "30683068252448855195298330", - "25091567914398016078173995" + "54681776954853159927015190", + "7331395879060545625068588", + "41801558149899776091840644" ], "fpReserves": [ - "10218883574411191453404151", - "10374929941004319000467972" + "4314696334572282409301137", + "4147890073276419023005667" ], - "mAssetSupply": "109280518091110696471310401", - "LPTokenSupply": "20449111929811678736477749" + "mAssetSupply": "103400179902863678740786454", + "LPTokenSupply": "8339964119592402981598702" }, { "type": "swap_fp_to_mp", - "inputQty": "299558828376647794688", - "outputIndex": 2, - "outputQty": "298940242245481822115", + "inputQty": "11563497642664254242816", + "outputIndex": 1, + "outputQty": "10805623595539758834836", "swapFee": "0", - "redemptionFee": "119811481748008247", + "redemptionFee": "6939785691097463358", "mpReserves": [ - "53526877562095072372932871", - "30683068252448855195298330", - "25091268974155770596351880" + "54681776954853159927015190", + "7320590255465005866233752", + "41801558149899776091840644" ], "fpReserves": [ - "10218584045706821432785423", - "10375229499832695648262660" + "4303130025087119970370729", + "4159453570919083277248483" ], - "mAssetSupply": "109280218682217808198699920", - "LPTokenSupply": "20449111929811678736477749" + "mAssetSupply": "103388620533164207399319404", + "LPTokenSupply": "8339964119592402981598702" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "7353291592148472299520", - "outputQty0": "7357241427980217171631", - "outputQty": "7305908137835006677348", + "type": "redeem", + "outputIndex": 1, + "inputQty": "7991746572703791841280", + "outputQty0": "8105252244311646543432", + "outputQty": "7570974298436071783454", + "swapFee1": "4795047943622275104", + "swapFee2": "4863151346586987926", "mpReserves": [ - "53526877562095072372932871", - "30690421544041003667597850", - "25091268974155770596351880" + "54681776954853159927015190", + "7313019281166569794450298", + "41801558149899776091840644" ], "fpReserves": [ - "10225941287134801649957054", - "10375229499832695648262660" + "4295024772842808323827297", + "4159453570919083277248483" ], - "mAssetSupply": "109287575923645788415871551", - "LPTokenSupply": "20456417837949513743155097" + "mAssetSupply": "103380520144071242339763898", + "LPTokenSupply": "8331972852524493551984932" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "139200082554780395765760", - "outputQty0": "138999870671772857060714", - "outputQty": "138026760481472107048282", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "6713838706978043461632", + "outputQty0": "7183370584015911202499", + "outputQty": "7176017953881211744220", + "swapFee": "5662819243456916122", "mpReserves": [ - "53666077644649852768698631", - "30690421544041003667597850", - "25091268974155770596351880" + "54681776954853159927015190", + "7319733119873547837911930", + "41801558149899776091840644" ], "fpReserves": [ - "10364941157806574507017768", - "10375229499832695648262660" + "4302208143426824235029796", + "4152277552965202065504263" ], - "mAssetSupply": "109426575794317561272932265", - "LPTokenSupply": "20594444598430985850203379" + "mAssetSupply": "103387703514655258250966397", + "LPTokenSupply": "8331973418806417897676544" }, { - "type": "swap_fp_to_mp", - "inputQty": "29420400327411859456", - "outputIndex": 2, - "outputQty": "29362168020894076804", - "swapFee": "0", - "redemptionFee": "11768082589572566", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "378355931045717346353152", + "outputQty0": "374069966204224060054906", + "outputQty": "373460590328627504272235", + "swapFee": "294845286539940878865", "mpReserves": [ - "53666077644649852768698631", - "30690421544041003667597850", - "25091239611987749702275076" + "55060132885898877273368342", + "7319733119873547837911930", + "41801558149899776091840644" ], "fpReserves": [ - "10364911737600100575601648", - "10375258920233023060122116" + "4676278109631048295084702", + "3778816962636574561232028" ], - "mAssetSupply": "109426546385879169931088711", - "LPTokenSupply": "20594444598430985850203379" + "mAssetSupply": "103761773480859482311021303", + "LPTokenSupply": "8332002903335071891764430" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "116611102059664998400", - "outputQty0": "116674298940417120675", - "outputQty": "116581721173567755938", - "swapFee": "92683915605193845", + "inputQty": "1002303721716756774912", + "outputQty0": "1072926649185609219915", + "outputQty": "1070526034264683263683", + "swapFee": "845301399443688581", + "mpReserves": [ + "55060132885898877273368342", + "7320735423595264594686842", + "41801558149899776091840644" + ], + "fpReserves": [ + "4677351036280233904304617", + "3777746436602309877968345" + ], + "mAssetSupply": "103762846407508667920241218", + "LPTokenSupply": "8332002987865211836133288" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "2788090253051465039872", + "outputQty0": "2829402768764930184002", + "outputQty": "2860236247181459296628", + "swapFee1": "1672854151830879023", + "swapFee2": "1697641661258958110", "mpReserves": [ - "53666077644649852768698631", - "30690538155143063332596250", - "25091239611987749702275076" + "55057272649651695814071714", + "7320735423595264594686842", + "41801558149899776091840644" ], "fpReserves": [ - "10365028411899040992722323", - "10375142338511849492366178" + "4674521633511468974120615", + "3777746436602309877968345" ], - "mAssetSupply": "109426663060178110348209386", - "LPTokenSupply": "20594444607699377410722763" + "mAssetSupply": "103760018702381564249015326", + "LPTokenSupply": "8329215064897575554181318" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "205656053538633904291840", - "outputQty0": "205765283030267484413187", - "outputQty": "205574981074494725466540", - "swapFee": "163450821202613645493", + "inputQty": "959483636467972519755776", + "outputQty0": "1019373873534006379606555", + "outputQty": "1015057594737873093833603", + "swapFee": "802853232988470770135", "mpReserves": [ - "53666077644649852768698631", - "30896194208681697236888090", - "25091239611987749702275076" + "55057272649651695814071714", + "8280219060063237114442618", + "41801558149899776091840644" ], "fpReserves": [ - "10570793694929308477135510", - "10169567357437354766899638" + "5693895507045475353727170", + "2762688841864436784134742" ], - "mAssetSupply": "109632428343208377832622573", - "LPTokenSupply": "20594460952781497672087312" + "mAssetSupply": "104779392575915570628621881", + "LPTokenSupply": "8329295350220874401258331" }, { - "type": "swap_fp_to_mp", - "inputQty": "558098786732206325760", - "outputIndex": 1, - "outputQty": "557728175363111973159", - "swapFee": "0", - "redemptionFee": "223296684902816101", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "250945323505887171575808", + "outputQty0": "249342010447470524479189", + "outputQty": "247465981072492754833219", + "swapFee": "196074774352033619989", "mpReserves": [ - "53666077644649852768698631", - "30895636480506334124914931", - "25091239611987749702275076" + "55057272649651695814071714", + "8280219060063237114442618", + "42052503473405663263416452" ], "fpReserves": [ - "10570235453217051436881836", - "10170125456224086973225398" + "5943237517492945878206359", + "2515222860791944029301523" ], - "mAssetSupply": "109631870324792805695185000", - "LPTokenSupply": "20594460952781497672087312" + "mAssetSupply": "105028734586363041153101070", + "LPTokenSupply": "8329314957698309604620329" }, { - "type": "swap_fp_to_mp", - "inputQty": "9823141069458427904", - "outputIndex": 0, - "outputQty": "9835827408294108013", - "swapFee": "0", - "redemptionFee": "3930261256410949", + "type": "redeem", + "outputIndex": 1, + "inputQty": "458522124158008164352", + "outputQty0": "466415830635829649124", + "outputQty": "441605895416506893218", + "swapFee1": "275113274494804898", + "swapFee2": "279849498381497789", "mpReserves": [ - "53666067808822444474590618", - "30895636480506334124914931", - "25091239611987749702275076" + "55057272649651695814071714", + "8279777454167820607549400", + "42052503473405663263416452" ], "fpReserves": [ - "10570225627563910409507591", - "10170135279365156431653302" + "5942771101662310048557235", + "2515222860791944029301523" ], - "mAssetSupply": "109631860503069925924221704", - "LPTokenSupply": "20594460952781497672087312" + "mAssetSupply": "105028268450381903704949735", + "LPTokenSupply": "8328856463085479045936466" }, { "type": "swap_fp_to_mp", - "inputQty": "39212152791102843256832", + "inputQty": "218727684706186247012352", "outputIndex": 2, - "outputQty": "39143288391453445463296", + "outputQty": "221514961380588386445532", "swapFee": "0", - "redemptionFee": "15688478434510224052", + "redemptionFee": "132138527456669967244", "mpReserves": [ - "53666067808822444474590618", - "30895636480506334124914931", - "25052096323596296256811780" + "55057272649651695814071714", + "8279777454167820607549400", + "41830988512025074876970920" ], "fpReserves": [ - "10531004431477634849376619", - "10209347432156259274910134" + "5722540222567860103149143", + "2733950545498130276313875" ], - "mAssetSupply": "109592654995462084874314784", - "LPTokenSupply": "20594460952781497672087312" + "mAssetSupply": "104808169709814910429508887", + "LPTokenSupply": "8328856463085479045936466" }, { "type": "swap_fp_to_mp", - "inputQty": "855672358142522032128", + "inputQty": "6654795129792601088", "outputIndex": 0, - "outputQty": "856735829762468540577", + "outputQty": "6759221150314683316", "swapFee": "0", - "redemptionFee": "342339103499795748", + "redemptionFee": "4017296720499552", "mpReserves": [ - "53665211072992682006050041", - "30895636480506334124914931", - "25052096323596296256811780" + "55057265890430545499388398", + "8279777454167820607549400", + "41830988512025074876970920" ], "fpReserves": [ - "10530148583718885360006372", - "10210203104514401796942262" + "5722533527073325937229010", + "2733957200293260068914963" ], - "mAssetSupply": "109591799490042438884740285", - "LPTokenSupply": "20594460952781497672087312" + "mAssetSupply": "104808163018337672984088306", + "LPTokenSupply": "8328856463085479045936466" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "5531024446930089410560", - "outputQty0": "5539832664355010690927", - "outputQty": "5500306367124458261691", + "inputIndex": 0, + "inputQty": "298330253074801329438720", + "outputQty0": "295330108261578251813758", + "outputQty": "290270109763570725570611", "mpReserves": [ - "53665211072992682006050041", - "30895636480506334124914931", - "25057627348043226346222340" + "55355596143505346828827118", + "8279777454167820607549400", + "41830988512025074876970920" ], "fpReserves": [ - "10535688416383240370697299", - "10210203104514401796942262" + "6017863635334904189042768", + "2733957200293260068914963" ], - "mAssetSupply": "109597339322706793895431212", - "LPTokenSupply": "20599961259148622130349003" + "mAssetSupply": "105103493126599251235902064", + "LPTokenSupply": "8619126572849049771507077" }, { "type": "mint", "inputIndex": 0, - "inputQty": "158025264620039863009280", - "outputQty0": "157797776408406860073814", - "outputQty": "156667964271714724136912", + "inputQty": "353395045857439472680960", + "outputQty0": "349814878529965932323972", + "outputQty": "343748148357155420707882", + "mpReserves": [ + "55708991189362786301508078", + "8279777454167820607549400", + "41830988512025074876970920" + ], + "fpReserves": [ + "6367678513864870121366740", + "2733957200293260068914963" + ], + "mAssetSupply": "105453308005129217168226036", + "LPTokenSupply": "8962874721206205192214959" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "26496002858089881600", + "outputIndex": 2, + "outputQty": "26848278443418352808", + "swapFee": "0", + "redemptionFee": "16016611753271657", "mpReserves": [ - "53823236337612721869059321", - "30895636480506334124914931", - "25057627348043226346222340" + "55708991189362786301508078", + "8279777454167820607549400", + "41830961663746631458618112" ], "fpReserves": [ - "10693486192791647230771113", - "10210203104514401796942262" + "6367651819511948001937162", + "2733983696296118158796563" ], - "mAssetSupply": "109755137099115200755505026", - "LPTokenSupply": "20756629223420336854485915" + "mAssetSupply": "105453281326792906802068115", + "LPTokenSupply": "8962874721206205192214959" }, { "type": "swap_fp_to_mp", - "inputQty": "130546508851032752128", + "inputQty": "146312374261477179392", "outputIndex": 0, - "outputQty": "130722960571057448472", + "outputQty": "148832929321162297298", "swapFee": "0", - "redemptionFee": "52234608938070219", + "redemptionFee": "88444549470621644", "mpReserves": [ - "53823105614652150811610849", - "30895636480506334124914931", - "25057627348043226346222340" + "55708842356433465139210780", + "8279777454167820607549400", + "41830961663746631458618112" ], "fpReserves": [ - "10693355606269302055221306", - "10210333651023252829694390" + "6367504411929496965862653", + "2734130008670379635975955" ], - "mAssetSupply": "109755006564827464518025438", - "LPTokenSupply": "20756629223420336854485915" + "mAssetSupply": "105453134007655005236615250", + "LPTokenSupply": "8962874721206205192214959" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "814800920939093884403712", - "outputQty0": "813609223409110708346865", - "outputQty": "807668084501265434622694", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "490311708341832974336", + "outputQty0": "487208137918388961764", + "outputQty": "483200824116139170268", + "swapFee": "382963156499009618", "mpReserves": [ - "54637906535591244696014561", - "30895636480506334124914931", - "25057627348043226346222340" + "55708842356433465139210780", + "8279777454167820607549400", + "41831451975454973291592448" ], "fpReserves": [ - "11506964829678412763568171", - "10210333651023252829694390" + "6367991620067415354824417", + "2733646807846263496805687" ], - "mAssetSupply": "110568615788236575226372303", - "LPTokenSupply": "21564297307921602289108609" + "mAssetSupply": "105453621215792923625577014", + "LPTokenSupply": "8962874759502520842115920" }, { "type": "swap_fp_to_mp", - "inputQty": "2102993062259709968384", - "outputIndex": 1, - "outputQty": "2102657045701441496612", + "inputQty": "67204888233573993152512", + "outputIndex": 2, + "outputQty": "68081835748194597646345", "swapFee": "0", - "redemptionFee": "841866331153846503", + "redemptionFee": "40615266400073539891", "mpReserves": [ - "54637906535591244696014561", - "30893533823460632683418319", - "25057627348043226346222340" + "55708842356433465139210780", + "8279777454167820607549400", + "41763370139706778693946103" ], "fpReserves": [ - "11504860163850528147308928", - "10212436644085512539662774" + "6300299509400626121671632", + "2800851696079837489958199" ], - "mAssetSupply": "110566511964275021763959563", - "LPTokenSupply": "21564297307921602289108609" + "mAssetSupply": "105385969720392534465964120", + "LPTokenSupply": "8962874759502520842115920" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "284619732367742248943616", - "outputQty0": "286562676676788132525694", - "outputQty": "285969488700482082432798", - "swapFee1": "170771839420645349366", - "swapFee2": "114625070670715253010", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "608117034960333362429952", + "outputQty0": "604230281752041245112962", + "outputQty": "598039197100584225578248", + "swapFee": "474923006035407963631", "mpReserves": [ - "54637906535591244696014561", - "30893533823460632683418319", - "24771657859342744263789542" + "55708842356433465139210780", + "8279777454167820607549400", + "42371487174667112056376055" ], "fpReserves": [ - "11218297487173740014783234", - "10212436644085512539662774" + "6904529791152667366784594", + "2202812498979253264379951" ], - "mAssetSupply": "110280063912668904346686879", - "LPTokenSupply": "21279694652737802104699929" + "mAssetSupply": "105990200002144575711077082", + "LPTokenSupply": "8962922251803124382912283" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "79102708666100686520320", - "outputQty0": "79639158635703375578002", - "outputQty": "79726609851712782175148", - "swapFee1": "47461625199660411912", - "swapFee2": "31855663454281350231", + "inputQty": "164380064325941837430784", + "outputQty0": "167430584476497660274176", + "outputQty": "169041351906421764237904", + "swapFee1": "98628038595565102458", + "swapFee2": "100458350685898596164", "mpReserves": [ - "54558179925739531913839413", - "30893533823460632683418319", - "24771657859342744263789542" + "55539801004527043374972876", + "8279777454167820607549400", + "42371487174667112056376055" ], "fpReserves": [ - "11138658328538036639205232", - "10212436644085512539662774" + "6737099206676169706510418", + "2202812498979253264379951" ], - "mAssetSupply": "110200456609696655252459108", - "LPTokenSupply": "21200596690234221384220800" + "mAssetSupply": "105822869876018763949399070", + "LPTokenSupply": "8798552050281042101991744" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1634952060081181294592", - "outputQty0": "1632508471606527059665", - "outputQty": "1630260308523863856322", - "swapFee": "1296443040858473581", + "type": "mint", + "inputIndex": 2, + "inputQty": "99874640236334660190208", + "outputQty0": "99226225340858785908554", + "outputQty": "97361493400275215728743", "mpReserves": [ - "54559814877799613095134005", - "30893533823460632683418319", - "24771657859342744263789542" + "55539801004527043374972876", + "8279777454167820607549400", + "42471361814903446716566263" ], "fpReserves": [ - "11140290837009643166264897", - "10210806383776988675806452" + "6836325432017028492418972", + "2202812498979253264379951" ], - "mAssetSupply": "110202089118168261779518773", - "LPTokenSupply": "21200596819878525470068158" + "mAssetSupply": "105922096101359622735307624", + "LPTokenSupply": "8895913543681317317720487" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1647137706099462111232", - "outputQty0": "1648023591615009321796", - "outputQty": "1635953610081238483688", + "type": "redeem", + "outputIndex": 0, + "inputQty": "909697980164327079936", + "outputQty0": "926600037077224954673", + "outputQty": "935491235145503988191", + "swapFee1": "545818788098596247", + "swapFee2": "555960022246334972", "mpReserves": [ - "54559814877799613095134005", - "30895180961166732145529551", - "24771657859342744263789542" + "55538865513291897870984685", + "8279777454167820607549400", + "42471361814903446716566263" ], "fpReserves": [ - "11141938860601258175586693", - "10210806383776988675806452" + "6835398831979951267464299", + "2202812498979253264379951" ], - "mAssetSupply": "110203737141759876788840569", - "LPTokenSupply": "21202232773488606708551846" + "mAssetSupply": "105921170057282567756687923", + "LPTokenSupply": "8895003900283031800500175" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "201812151395593093120", "outputIndex": 1, - "inputQty": "114704832010450747392", - "outputQty0": "115481813084761283069", - "outputQty": "115373577990258510132", - "swapFee1": "68822899206270448", - "swapFee2": "46192725233904513", + "outputQty": "193276349176058799143", + "swapFee": "0", + "redemptionFee": "122598632377546932", "mpReserves": [ - "54559814877799613095134005", - "30895065587588741887019419", - "24771657859342744263789542" + "55538865513291897870984685", + "8279584177818644548750257", + "42471361814903446716566263" ], "fpReserves": [ - "11141823378788173414303624", - "10210806383776988675806452" + "6835194500925988689243765", + "2203014311130648857473071" ], - "mAssetSupply": "110203621706139517261462013", - "LPTokenSupply": "21202118075538886178431498" + "mAssetSupply": "105920965848827237556014321", + "LPTokenSupply": "8895003900283031800500175" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1883487941419921833984", - "outputQty0": "1880672843206793675624", - "outputQty": "1866898069860782103136", + "type": "redeem", + "outputIndex": 2, + "inputQty": "4973693520825633390723072", + "outputQty0": "5055277204003812032013477", + "outputQty": "5081833398163317006517792", + "swapFee1": "2984216112495380034433", + "swapFee2": "3033166322402287219208", "mpReserves": [ - "54561698365741033016967989", - "30895065587588741887019419", - "24771657859342744263789542" + "55538865513291897870984685", + "8279584177818644548750257", + "37389528416740129710048471" ], "fpReserves": [ - "11143704051631380207979248", - "10210806383776988675806452" + "1779917296922176657230288", + "2203014311130648857473071" ], - "mAssetSupply": "110205502378982724055137637", - "LPTokenSupply": "21203984973608746960534634" + "mAssetSupply": "100868721811145827811220052", + "LPTokenSupply": "3921608801068647947780546" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "90484257990267245690880", - "outputQty0": "90348819737459559589101", - "outputQty": "89685887440445849315132", + "inputIndex": 2, + "inputQty": "11039453784920104632320", + "outputQty0": "10983045935061369322008", + "outputQty": "10822425782867436845799", "mpReserves": [ - "54652182623731300262658869", - "30895065587588741887019419", - "24771657859342744263789542" + "55538865513291897870984685", + "8279584177818644548750257", + "37400567870525049814680791" ], "fpReserves": [ - "11234052871368839767568349", - "10210806383776988675806452" + "1790900342857238026552296", + "2203014311130648857473071" ], - "mAssetSupply": "110295851198720183614726738", - "LPTokenSupply": "21293670861049192809849766" + "mAssetSupply": "100879704857080889180542060", + "LPTokenSupply": "3932431226851515384626345" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1095854221658249887744", - "outputQty0": "1097718574182997202887", - "outputQty": "1096143534426536588353", - "swapFee": "871719915467958718", + "type": "swap_fp_to_mp", + "inputQty": "6692207809985882619904", + "outputIndex": 1, + "outputQty": "6348894451392934049089", + "swapFee": "0", + "redemptionFee": "4009628289033639131", "mpReserves": [ - "54652182623731300262658869", - "30895065587588741887019419", - "24772753713564402513677286" + "55538865513291897870984685", + "8273235283367251614701168", + "37400567870525049814680791" ], "fpReserves": [ - "11235150589943022764771236", - "10209710240242562139218099" + "1784217629042181961332875", + "2209706518940634740092975" ], - "mAssetSupply": "110296948917294366611929625", - "LPTokenSupply": "21293670948221184356645637" + "mAssetSupply": "100873026152894122148961770", + "LPTokenSupply": "3932431226851515384626345" }, { "type": "swap_fp_to_mp", - "inputQty": "26895597813117484", + "inputQty": "331350179722921070559232", "outputIndex": 2, - "outputQty": "26856262718768825", + "outputQty": "331928030379329290404182", "swapFee": "0", - "redemptionFee": "10765085984852", + "redemptionFee": "198266552567544007836", "mpReserves": [ - "54652182623731300262658869", - "30895065587588741887019419", - "24772753686708139794908461" + "55538865513291897870984685", + "8273235283367251614701168", + "37068639840145720524276609" ], "fpReserves": [ - "11235150563030307802638744", - "10209710267138159952335583" + "1453773374762941948271554", + "2541056698663555810652207" ], - "mAssetSupply": "110296948890392416735781985", - "LPTokenSupply": "21293670948221184356645637" + "mAssetSupply": "100542780165167449679908285", + "LPTokenSupply": "3932431226851515384626345" }, { "type": "swap_fp_to_mp", - "inputQty": "7470006085065646080", - "outputIndex": 0, - "outputQty": "7482986546890162469", + "inputQty": "4473046019166453628928", + "outputIndex": 2, + "outputQty": "4473976447432032874249", "swapFee": "0", - "redemptionFee": "2989904072566428", + "redemptionFee": "2672520785993901894", "mpReserves": [ - "54652175140744753372496400", - "30895065587588741887019419", - "24772753686708139794908461" + "55538865513291897870984685", + "8273235283367251614701168", + "37064165863698288491402360" ], "fpReserves": [ - "11235143088270126386568092", - "10209717737144245017981663" + "1449319173452952111780371", + "2545529744682722264281135" ], - "mAssetSupply": "110296941418622139392277761", - "LPTokenSupply": "21293670948221184356645637" + "mAssetSupply": "100538328636378245837318996", + "LPTokenSupply": "3932431226851515384626345" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "51961098023091896320", - "outputQty0": "52049492576206259833", - "outputQty": "51666879748150170951", + "inputQty": "21823265813917557850112", + "outputQty0": "21713713510614899439110", + "outputQty": "21786231997169496648094", + "swapFee": "17145069966243032124", "mpReserves": [ - "54652175140744753372496400", - "30895065587588741887019419", - "24772805647806162886804781" + "55538865513291897870984685", + "8273235283367251614701168", + "37085989129512206049252472" ], "fpReserves": [ - "11235195137762702592827925", - "10209717737144245017981663" + "1471032886963567011219481", + "2523743512685552767633041" ], - "mAssetSupply": "110296993468114715598537594", - "LPTokenSupply": "21293722615100932506816588" + "mAssetSupply": "100560042349888860736758106", + "LPTokenSupply": "3932432941358512008929557" }, { - "type": "swap_fp_to_mp", - "inputQty": "36504161754512670720", - "outputIndex": 2, - "outputQty": "36450774240484354464", - "swapFee": "0", - "redemptionFee": "14610957612802503", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "404181264057898106880", + "outputQty0": "399963036376817620030", + "outputQty": "401254325752491903913", + "swapFee": "315778126528869767", "mpReserves": [ - "54652175140744753372496400", - "30895065587588741887019419", - "24772769197031922402450317" + "55539269694555955769091565", + "8273235283367251614701168", + "37085989129512206049252472" ], "fpReserves": [ - "11235158610368670586568081", - "10209754241305999530652383" + "1471432849999943828839511", + "2523342258359800275729128" ], - "mAssetSupply": "110296956955331641205080253", - "LPTokenSupply": "21293722615100932506816588" + "mAssetSupply": "100560442312925237554378136", + "LPTokenSupply": "3932432972936324661816533" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1869714409478214909952", - "outputQty0": "1866911808216450912493", - "outputQty": "1864229693855415220159", - "swapFee": "1482550225910852415", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1078391953921373241344", + "outputQty0": "1092052765114247935005", + "outputQty": "1096907349330211916033", + "swapFee1": "647035172352823944", + "swapFee2": "655231659068548761", "mpReserves": [ - "54654044855154231587406352", - "30895065587588741887019419", - "24772769197031922402450317" + "55539269694555955769091565", + "8273235283367251614701168", + "37084892222162875837336439" ], "fpReserves": [ - "11237025522176887037480574", - "10207890011612144115432224" + "1470340797234829580904506", + "2523342258359800275729128" ], - "mAssetSupply": "110298823867139857655992746", - "LPTokenSupply": "21293722763355955097901829" + "mAssetSupply": "100559350915391782374991892", + "LPTokenSupply": "3931354645685920523857583" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "29504389917653122154496", - "outputQty0": "29520315548322914081555", - "outputQty": "29303156764650418278532", + "type": "redeem", + "outputIndex": 2, + "inputQty": "189511024831385353322496", + "outputQty0": "191829513618332032500519", + "outputQty": "192676648551737829194041", + "swapFee1": "113706614898831211993", + "swapFee2": "115097708170999219500", "mpReserves": [ - "54654044855154231587406352", - "30924569977506395009173915", - "24772769197031922402450317" + "55539269694555955769091565", + "8273235283367251614701168", + "36892215573611138008142398" ], "fpReserves": [ - "11266545837725209951562129", - "10207890011612144115432224" + "1278511283616497548403987", + "2523342258359800275729128" ], - "mAssetSupply": "110328344182688180570074301", - "LPTokenSupply": "21323025920120605516180361" + "mAssetSupply": "100367636499481621341710873", + "LPTokenSupply": "3741854991516025053656286" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "73241139344574680924160", - "outputQty0": "73280273712977620746169", - "outputQty": "73170265220146315845494", - "swapFee": "58192119878384833672", + "inputQty": "1573938650007433117696", + "outputQty0": "1655065219124678786264", + "outputQty": "1662726989949832308087", + "swapFee": "1307851004910132220", "mpReserves": [ - "54654044855154231587406352", - "30997811116850969690098075", - "24772769197031922402450317" + "55539269694555955769091565", + "8274809222017259047818864", + "36892215573611138008142398" ], "fpReserves": [ - "11339826111438187572308298", - "10134719746391997799586730" + "1280166348835622227190251", + "2521679531369850443421041" ], - "mAssetSupply": "110401624456401158190820470", - "LPTokenSupply": "21323031739332593354663728" + "mAssetSupply": "100369291564700746020497137", + "LPTokenSupply": "3741855122301125544669508" }, { - "type": "swap_fp_to_mp", - "inputQty": "52271690942829863895040", - "outputIndex": 1, - "outputQty": "52260295597558992778986", - "swapFee": "0", - "redemptionFee": "20923633994499005660", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "450817165979790365163520", + "outputQty0": "446082536882321792225360", + "outputQty": "447119816044997100054610", + "swapFee": "352153903829335174121", "mpReserves": [ - "54654044855154231587406352", - "30945550821253410697319089", - "24772769197031922402450317" + "55990086860535746134255085", + "8274809222017259047818864", + "36892215573611138008142398" ], "fpReserves": [ - "11287517026451940058157849", - "10186991437334827663481770" + "1726248885717944019415611", + "2074559715324853343366431" ], - "mAssetSupply": "110349336295048905175675681", - "LPTokenSupply": "21323031739332593354663728" + "mAssetSupply": "100815374101583067812722497", + "LPTokenSupply": "3741890337691508478186920" }, { "type": "swap_fp_to_mp", - "inputQty": "12963738200776070135808", + "inputQty": "149259086047916433866752", "outputIndex": 1, - "outputQty": "12960337065684339523962", + "outputQty": "141406503038599433753163", "swapFee": "0", - "redemptionFee": "5188992567287496977", + "redemptionFee": "89394433102665991742", "mpReserves": [ - "54654044855154231587406352", - "30932590484187726357795127", - "24772769197031922402450317" + "55990086860535746134255085", + "8133402718978659614065701", + "36892215573611138008142398" ], "fpReserves": [ - "11274544545033721315714696", - "10199955175535603733617578" + "1577258163880167366512069", + "2223818801372769777233183" ], - "mAssetSupply": "110336369002623253720729505", - "LPTokenSupply": "21323031739332593354663728" + "mAssetSupply": "100666472774178393825810697", + "LPTokenSupply": "3741890337691508478186920" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "67427352004488388608", - "outputQty0": "67326373584814176036", - "outputQty": "66830343156304836810", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "27148804544197256282112", + "outputQty0": "27011535134831776147754", + "outputQty": "27051463186294308407188", + "swapFee": "21301674622568945354", "mpReserves": [ - "54654112282506236075794960", - "30932590484187726357795127", - "24772769197031922402450317" + "55990086860535746134255085", + "8133402718978659614065701", + "36919364378155335264424510" ], "fpReserves": [ - "11274611871407306129890732", - "10199955175535603733617578" + "1604269699014999142659823", + "2196767338186475468825995" ], - "mAssetSupply": "110336436328996838534905541", - "LPTokenSupply": "21323098569675749659500538" + "mAssetSupply": "100693484309313225601958451", + "LPTokenSupply": "3741892467858970735081455" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "38025486549617197056", - "outputQty0": "38090249965744810676", - "outputQty": "37809617578767822739", + "type": "swap_fp_to_mp", + "inputQty": "168406611040188455976960", + "outputIndex": 0, + "outputQty": "169638501924299099596107", + "swapFee": "0", + "redemptionFee": "100752699231710522650", "mpReserves": [ - "54654112282506236075794960", - "30932590484187726357795127", - "24772807222518472019647373" + "55820448358611447034658978", + "8133402718978659614065701", + "36919364378155335264424510" ], "fpReserves": [ - "11274649961657271874701408", - "10199955175535603733617578" + "1436348533628814938242145", + "2365173949226663924802955" ], - "mAssetSupply": "110336474419246804279716217", - "LPTokenSupply": "21323136379293328427323277" + "mAssetSupply": "100525663896626273108063423", + "LPTokenSupply": "3741892467858970735081455" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "338105116929029725749248", - "outputQty0": "338280783216455993845402", - "outputQty": "337713073456984401547673", - "swapFee": "268618101248426502313", - "mpReserves": [ - "54654112282506236075794960", - "31270695601116756083544375", - "24772807222518472019647373" - ], - "fpReserves": [ - "11612930744873727868546810", - "9862242102078619332069905" - ], - "mAssetSupply": "110674755202463260273561619", - "LPTokenSupply": "21323163241103453269973508" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1121589482467684199170048", - "outputQty0": "1129295184670000022269571", - "outputQty": "1126778560383008969346481", - "swapFee1": "672953689480610519502", - "swapFee2": "451718073868000008907", - "mpReserves": [ - "54654112282506236075794960", - "31270695601116756083544375", - "23646028662135463050300892" - ], - "fpReserves": [ - "10483635560203727846277239", - "9862242102078619332069905" - ], - "mAssetSupply": "109545911735867128251300955", - "LPTokenSupply": "20201641054004717131855410" + "inputQty": "1821548017849940551139328", + "hardLimitError": true }, { "type": "redeem", "outputIndex": 0, - "inputQty": "49339542630221282803712", - "outputQty0": "49671381843733236859636", - "outputQty": "49728719442796769442141", - "swapFee1": "29603725578132769682", - "swapFee2": "19868552737493294743", + "inputQty": "9555004790495360", + "outputQty0": "9679418955086798", + "outputQty": "9778208350288110", + "swapFee1": "5733002874297", + "swapFee2": "5807651373052", "mpReserves": [ - "54604383563063439306352819", - "31270695601116756083544375", - "23646028662135463050300892" + "55820448348833238684370868", + "8133402718978659614065701", + "36919364378155335264424510" ], "fpReserves": [ - "10433964178359994609417603", - "9862242102078619332069905" + "1436348523949395983155347", + "2365173949226663924802955" ], - "mAssetSupply": "109496260222576132507736062", - "LPTokenSupply": "20152304471747053662328666" + "mAssetSupply": "100525663886952661804349677", + "LPTokenSupply": "3741892458304539244873524" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5950986566196559872", - "outputQty0": "5941754561624957030", - "outputQty": "5898555757685495484", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "543317438578576725114880", + "outputQty0": "570694722706233686910600", + "outputQty": "570996839994322510134527", + "swapFee": "450040929802836560307", "mpReserves": [ - "54604389514050005502912691", - "31270695601116756083544375", - "23646028662135463050300892" + "55820448348833238684370868", + "8676720157557236339180581", + "36919364378155335264424510" ], "fpReserves": [ - "10433970120114556234374633", - "9862242102078619332069905" + "2007043246655629670065947", + "1794177109232341414668428" ], - "mAssetSupply": "109496266164330694132693092", - "LPTokenSupply": "20152310370302811347824150" + "mAssetSupply": "101096358609658895491260277", + "LPTokenSupply": "3741937462397519528529554" }, { - "type": "swap_fp_to_mp", - "inputQty": "14087957460574101504", + "type": "redeem", "outputIndex": 0, - "outputQty": "14109474143444275790", - "swapFee": "0", - "redemptionFee": "5637289136485708", - "mpReserves": [ - "54604375404575862058636901", - "31270695601116756083544375", - "23646028662135463050300892" - ], - "fpReserves": [ - "10433956026891715020103675", - "9862256190036079906171409" - ], - "mAssetSupply": "109496252076745142054907842", - "LPTokenSupply": "20152310370302811347824150" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "748498462479323496448", - "outputQty0": "749955485373630751943", - "outputQty": "744502944769961499548", + "inputQty": "671503539284290582872064", + "outputQty0": "681526790373036916727623", + "outputQty": "687960008541884134566010", + "swapFee1": "402902123570574349723", + "swapFee2": "408916074223822150036", "mpReserves": [ - "54604375404575862058636901", - "31270695601116756083544375", - "23646777160597942373797340" + "55132488340291354549804858", + "8676720157557236339180581", + "36919364378155335264424510" ], "fpReserves": [ - "10434705982377088650855618", - "9862256190036079906171409" + "1325516456282592753338324", + "1794177109232341414668428" ], - "mAssetSupply": "109497002032230515685659785", - "LPTokenSupply": "20153054873247581309323698" + "mAssetSupply": "100415240735360082396682690", + "LPTokenSupply": "3070474213325586003092462" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "179885861764543648", - "outputQty0": "179606806280894503", - "outputQty": "178300956862042713", + "inputQty": "3560455989660446359552", + "outputQty0": "3525323996127192368807", + "outputQty": "3529784563828999200802", + "swapFee": "2779072361694193367", "mpReserves": [ - "54604375584461723823180549", - "31270695601116756083544375", - "23646777160597942373797340" + "55136048796281014996164410", + "8676720157557236339180581", + "36919364378155335264424510" ], "fpReserves": [ - "10434706161983894931750121", - "9862256190036079906171409" + "1329041780278719945707131", + "1790647324668512415467626" ], - "mAssetSupply": "109497002211837321966554288", - "LPTokenSupply": "20153055051548538171366411" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "98988141118960753967104", - "outputQty0": "99179764844308598270889", - "outputQty": "98457162953198824721232", - "mpReserves": [ - "54604375584461723823180549", - "31270695601116756083544375", - "23745765301716903127764444" - ], - "fpReserves": [ - "10533885926828203530021010", - "9862256190036079906171409" - ], - "mAssetSupply": "109596181976681630564825177", - "LPTokenSupply": "20251512214501736996087643" + "mAssetSupply": "100418766059356209589051497", + "LPTokenSupply": "3070474491232822172511798" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "36551924801425022910464", - "outputQty0": "36798449388848134419128", - "outputQty": "36767205279930367793399", - "swapFee1": "21931154880855013746", - "swapFee2": "14719379755539253767", + "inputQty": "5975670790206675", + "outputQty0": "6060683343583505", + "outputQty": "5788015394600865", + "swapFee1": "3585402474124", + "swapFee2": "3636410006150", "mpReserves": [ - "54604375584461723823180549", - "31233928395836825715750976", - "23745765301716903127764444" + "55136048796281014996164410", + "8676720151769220944579716", + "36919364378155335264424510" ], "fpReserves": [ - "10497087477439355395601882", - "9862256190036079906171409" + "1329041774218036602123626", + "1790647324668512415467626" ], - "mAssetSupply": "109559398246672537969659816", - "LPTokenSupply": "20214962482815800058678553" + "mAssetSupply": "100418766053299162655474142", + "LPTokenSupply": "3070474485257509922552535" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "8001841198356500578304", - "outputQty0": "8017223904094249054882", - "outputQty": "8007453982344247986904", - "swapFee": "6367010549388984205", - "mpReserves": [ - "54604375584461723823180549", - "31233928395836825715750976", - "23753767142915259628342748" - ], - "fpReserves": [ - "10505104701343449644656764", - "9854248736053735658184505" - ], - "mAssetSupply": "109567415470576632218714698", - "LPTokenSupply": "20214963119516854997576973" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "78403592628291585966080", - "outputIndex": 0, - "outputQty": "78522704319261799285531", - "swapFee": "0", - "redemptionFee": "31373137126768197517", + "type": "redeem", + "outputIndex": 2, + "inputQty": "539889762675195712", + "outputQty0": "547570474347864330", + "outputQty": "549812381657955126", + "swapFee1": "323933857605117", + "swapFee2": "328542284608718", "mpReserves": [ - "54525852880142462023895018", - "31233928395836825715750976", - "23753767142915259628342748" + "55136048796281014996164410", + "8676720151769220944579716", + "36919363828342953606469384" ], "fpReserves": [ - "10426671858526529150863516", - "9932652328682027244150585" + "1329041226647562254259296", + "1790647324668512415467626" ], - "mAssetSupply": "109489014000896838493118967", - "LPTokenSupply": "20214963119516854997576973" + "mAssetSupply": "100418765506057230592218530", + "LPTokenSupply": "3070473945400140633117334" }, { "type": "swap_fp_to_mp", - "inputQty": "6383125641617705816555520", + "inputQty": "159308848175579551236096", "outputIndex": 1, - "outputQty": "6337498781293206103798545", + "outputQty": "151587031157786075540075", "swapFee": "0", - "redemptionFee": "2538140519855964393593", + "redemptionFee": "95311246501645220243", "mpReserves": [ - "54525852880142462023895018", - "24896429614543619611952431", - "23753767142915259628342748" + "55136048796281014996164410", + "8525133120611434869039641", + "36919363828342953606469384" ], "fpReserves": [ - "4081320558886618166880576", - "16315777970299733060706105" + "1170189149144820220519701", + "1949956172844091966703722" ], - "mAssetSupply": "103146200841776783473529620", - "LPTokenSupply": "20214963119516854997576973" + "mAssetSupply": "100260008739800990203699178", + "LPTokenSupply": "3070473945400140633117334" }, { "type": "mint", "inputIndex": 0, - "inputQty": "978249538801374976", - "outputQty0": "976456087183091629", - "outputQty": "982657632205639330", + "inputQty": "1429589361067802499219456", + "outputQty0": "1414992304308975059629447", + "outputQty": "1393154732807350626558068", "mpReserves": [ - "54525853858392000825269994", - "24896429614543619611952431", - "23753767142915259628342748" + "56565638157348817495383866", + "8525133120611434869039641", + "36919363828342953606469384" ], "fpReserves": [ - "4081321535342705349972205", - "16315777970299733060706105" + "2585181453453795280149148", + "1949956172844091966703722" ], - "mAssetSupply": "103146201818232870656621249", - "LPTokenSupply": "20214964102174487203216303" + "mAssetSupply": "101675001044109965263328625", + "LPTokenSupply": "4463628678207491259675402" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "25143602055328795983872", - "hardLimitError": true - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "23380504131673036", - "outputQty0": "23219010244543559", - "outputQty": "23252351813190030", - "swapFee1": "14028302479003", - "swapFee2": "9287604097817", + "outputIndex": 2, + "inputQty": "13651059019050104389632", + "outputQty0": "13872826219151473345736", + "outputQty": "13929797979590349340710", + "swapFee1": "8190635411430062633", + "swapFee2": "8323695731490884007", "mpReserves": [ - "54525853835139649012079964", - "24896429614543619611952431", - "23753767142915259628342748" + "56565638157348817495383866", + "8525133120611434869039641", + "36905434030363363257128674" ], "fpReserves": [ - "4081321512123695105428646", - "16315777970299733060706105" + "2571308627234643806803412", + "1949956172844091966703722" ], - "mAssetSupply": "103146201795023148016175507", - "LPTokenSupply": "20214964078795385901791167" + "mAssetSupply": "101661136541586545280866896", + "LPTokenSupply": "4449978438251982298292033" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "862719490026990075904", - "outputQty0": "856758160932988780875", - "outputQty": "855061477346790155548", - "swapFee1": "517631694016194045", - "swapFee2": "342703264373195512", + "outputIndex": 1, + "inputQty": "1037246903906354048", + "outputQty0": "1054090259769710178", + "outputQty": "1003447176701986101", + "swapFee1": "622348142343812", + "swapFee2": "632454155861826", "mpReserves": [ - "54525853835139649012079964", - "24896429614543619611952431", - "23752912081437912838187200" + "56565638157348817495383866", + "8525132117164258167053540", + "36905434030363363257128674" ], "fpReserves": [ - "4080464753962762116647771", - "16315777970299733060706105" + "2571307573144384037093234", + "1949956172844091966703722" ], - "mAssetSupply": "103145345379565479400590144", - "LPTokenSupply": "20214101411068528313334667" + "mAssetSupply": "101661135488128739667018544", + "LPTokenSupply": "4449977401067313206172366" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "6240322688273059840", - "outputQty0": "6228881793556348974", - "outputQty": "6344372460798543458", - "swapFee": "5014780794128998", + "type": "redeem", + "outputIndex": 2, + "inputQty": "10525770533678125056", + "outputQty0": "10696693406587682225", + "outputQty": "10740599135372677290", + "swapFee1": "6315462320206875", + "swapFee2": "6418016043952609", "mpReserves": [ - "54525860075462337285139804", - "24896429614543619611952431", - "23752912081437912838187200" + "56565638157348817495383866", + "8525132117164258167053540", + "36905423289764227884451384" ], "fpReserves": [ - "4080470982844555672996745", - "16315771625927272262162647" + "2571296876450977449411009", + "1949956172844091966703722" ], - "mAssetSupply": "103145351608447272956939118", - "LPTokenSupply": "20214101411570006392747566" + "mAssetSupply": "101661124797853349123288928", + "LPTokenSupply": "4449966875928325760067997" }, { - "type": "swap_fp_to_mp", - "inputQty": "348914209141368384", - "outputIndex": 2, - "outputQty": "341610778766228263", - "swapFee": "0", - "redemptionFee": "136915464306678", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3556647072911680077824", + "outputQty0": "3614393748149907876191", + "outputQty": "3440677408554969031496", + "swapFee1": "2133988243747008046", + "swapFee2": "2168636248889944725", "mpReserves": [ - "54525860075462337285139804", - "24896429614543619611952431", - "23752911739827134071958937" + "56565638157348817495383866", + "8521691439755703198022044", + "36905423289764227884451384" ], "fpReserves": [ - "4080470640555894906300383", - "16315771974841481403531031" + "2567682482702827541534818", + "1949956172844091966703722" ], - "mAssetSupply": "103145351266295527654549434", - "LPTokenSupply": "20214101411570006392747566" + "mAssetSupply": "101657512572741448105357462", + "LPTokenSupply": "4446410442254238454690977" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "56684390761329393664", - "outputQty0": "56292545091892175040", - "outputQty": "56181060788856663444", - "swapFee1": "34010634456797636", - "swapFee2": "22517018036756870", + "type": "swap_fp_to_mp", + "inputQty": "6053204128303358672896", + "outputIndex": 1, + "outputQty": "5772709619806004549414", + "swapFee": "0", + "redemptionFee": "3638685415915082437", "mpReserves": [ - "54525860075462337285139804", - "24896429614543619611952431", - "23752855558766345215295493" + "56565638157348817495383866", + "8515918730135897193472630", + "36905423289764227884451384" ], "fpReserves": [ - "4080414348010803014125343", - "16315771974841481403531031" + "2561618007009635737471599", + "1956009376972395325376618" ], - "mAssetSupply": "103145294996267453799131264", - "LPTokenSupply": "20214044730580308509033665" + "mAssetSupply": "101651451735733672216376680", + "LPTokenSupply": "4446410442254238454690977" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "28343835473459056", - "outputQty0": "28388720406072019", - "outputQty": "28915092365873680", - "swapFee": "22855347359032", + "type": "swap_fp_to_mp", + "inputQty": "55864397125422856273920", + "outputIndex": 1, + "outputQty": "53247663726647096095816", + "swapFee": "0", + "redemptionFee": "33574344531245326202", "mpReserves": [ - "54525860075462337285139804", - "24896429614543619611952431", - "23752855587110180688754549" + "56565638157348817495383866", + "8462671066409250097376814", + "36905423289764227884451384" ], "fpReserves": [ - "4080414376399523420197362", - "16315771945926389037657351" + "2505660766124226860467727", + "2011873774097818181650538" ], - "mAssetSupply": "103145295024656174205203283", - "LPTokenSupply": "20214044730582594043769568" + "mAssetSupply": "101595528069192794584699010", + "LPTokenSupply": "4446410442254238454690977" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "23526998491932292808704", - "outputQty0": "23564199636760657647616", - "outputQty": "23712214456241752055148", + "type": "redeem", + "outputIndex": 0, + "inputQty": "146899477439149714178048", + "outputQty0": "149244059026178212079244", + "outputQty": "150727660055204412997540", + "swapFee1": "88139686463489828506", + "swapFee2": "89546435415706927247", "mpReserves": [ - "54525860075462337285139804", - "24896429614543619611952431", - "23776382585602112981563253" + "56414910497293613082386326", + "8462671066409250097376814", + "36905423289764227884451384" ], "fpReserves": [ - "4103978576036284077844978", - "16315771945926389037657351" + "2356416707098048648388483", + "2011873774097818181650538" ], - "mAssetSupply": "103168859224292934862850899", - "LPTokenSupply": "20237756945038835795824716" + "mAssetSupply": "101446373556602032079547013", + "LPTokenSupply": "4299519778783735089495779" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "30424137857767600816128", - "outputQty0": "30463812196765113916284", - "outputQty": "30649956957361585338618", + "type": "swap_fp_to_mp", + "inputQty": "1498827485690802", + "outputIndex": 0, + "outputQty": "1515301855488450", + "swapFee": "0", + "redemptionFee": "900248175636", "mpReserves": [ - "54525860075462337285139804", - "24926853752401387212768559", - "23776382585602112981563253" + "56414910495778311226897876", + "8462671066409250097376814", + "36905423289764227884451384" ], "fpReserves": [ - "4134442388233049191761262", - "16315771945926389037657351" + "2356416705597635022328366", + "2011873775596645667341340" ], - "mAssetSupply": "103199323036489699976767183", - "LPTokenSupply": "20268406901996197381163334" + "mAssetSupply": "101446373555102518701662532", + "LPTokenSupply": "4299519778783735089495779" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "169613585016716152274944", - "hardLimitError": true - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "63383225959515037696", - "outputQty0": "63267226304427045606", - "outputQty": "63647777487478956142", + "inputQty": "58298821404754845696", + "outputQty0": "59224619943963803974", + "outputQty": "59471393429878963304", + "swapFee1": "34979292842852907", + "swapFee2": "35534771966378282", "mpReserves": [ - "54525923458688296800177500", - "24926853752401387212768559", - "23776382585602112981563253" + "56414910495778311226897876", + "8462671066409250097376814", + "36905363818370798005488080" ], "fpReserves": [ - "4134505655459353618806868", - "16315771945926389037657351" + "2356357480977691058524392", + "2011873775596645667341340" ], - "mAssetSupply": "103199386303716004403812789", - "LPTokenSupply": "20268470549773684860119476" + "mAssetSupply": "101446314366017346704236840", + "LPTokenSupply": "4299461483460259618935373" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "762483274976298841145344", - "hardLimitError": true - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1437436800838720227901440", - "outputQty0": "1439510640878649028204152", - "outputQty": "1457878566704870308113761", - "swapFee": "1154693325976387874203", + "outputIndex": 1, + "inputQty": "20824329324544074448896", + "outputQty0": "21154723857158755534110", + "outputQty": "20125676514068064504324", + "swapFee1": "12494597594726444669", + "swapFee2": "12692834314295253320", "mpReserves": [ - "54525923458688296800177500", - "24926853752401387212768559", - "25213819386440833209464693" + "56414910495778311226897876", + "8442545389895182032872490", + "36905363818370798005488080" ], "fpReserves": [ - "5574016296338002647011020", - "14857893379221518729543590" + "2335202757120532302990282", + "2011873775596645667341340" ], - "mAssetSupply": "104638896944594653432016941", - "LPTokenSupply": "20268586019106282498906896" + "mAssetSupply": "101425172334994502243956050", + "LPTokenSupply": "4278638403595475017130943" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "83103829950163533824", - "outputQty0": "83218284341546346222", - "outputQty": "83125337505149098010", + "type": "swap_fp_to_mp", + "inputQty": "2275731749011909771264", + "outputIndex": 0, + "outputQty": "2300644391094352056304", + "swapFee": "0", + "redemptionFee": "1366789970571334215", "mpReserves": [ - "54525923458688296800177500", - "24926936856231337376302383", - "25213819386440833209464693" + "56412609851387216874841572", + "8442545389895182032872490", + "36905363818370798005488080" ], "fpReserves": [ - "5574099514622344193357242", - "14857893379221518729543590" + "2332924773836246745964590", + "2014149507345657577112604" ], - "mAssetSupply": "104638980162878994978363163", - "LPTokenSupply": "20268669144443787648004906" + "mAssetSupply": "101422895718500187258264573", + "LPTokenSupply": "4278638403595475017130943" }, { - "type": "swap_fp_to_mp", - "inputQty": "231354675429297079975936", - "outputIndex": 1, - "outputQty": "228639598004918836425631", - "swapFee": "0", - "redemptionFee": "91620326581235780810", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "68214356468552089731072", + "outputQty0": "71639790533185967049367", + "outputQty": "71495968401857863241425", + "swapFee": "56381216907200155840", "mpReserves": [ - "54525923458688296800177500", - "24698297258226418539876752", - "25213819386440833209464693" + "56412609851387216874841572", + "8510759746363734122603562", + "36905363818370798005488080" ], "fpReserves": [ - "5345048698169254741331046", - "15089248054650815809519526" + "2404564564369432713013957", + "1942653538943799713871179" ], - "mAssetSupply": "104410020966752486762117777", - "LPTokenSupply": "20268669144443787648004906" + "mAssetSupply": "101494535509033373225313940", + "LPTokenSupply": "4278644041717165737146527" }, { - "type": "swap_fp_to_mp", - "inputQty": "99421226370570691543040", - "outputIndex": 2, - "outputQty": "98189571523767197942739", - "swapFee": "0", - "redemptionFee": "39342953889999290347", + "type": "mint", + "inputIndex": 2, + "inputQty": "256565432010754850816", + "outputQty0": "255357418163180561205", + "outputQty": "251167633260231847004", "mpReserves": [ - "54525923458688296800177500", - "24698297258226418539876752", - "25115629814917066011521954" + "56412609851387216874841572", + "8510759746363734122603562", + "36905620383802808760338896" ], "fpReserves": [ - "5246691313444256515463390", - "15188669281021386501062566" + "2404819921787595893575162", + "1942653538943799713871179" ], - "mAssetSupply": "104311702924981378535540468", - "LPTokenSupply": "20268669144443787648004906" + "mAssetSupply": "101494790866451536405875145", + "LPTokenSupply": "4278895209350425968993531" }, { "type": "mint", "inputIndex": 1, - "inputQty": "14057913580097679360", - "outputQty0": "14077783438292666628", - "outputQty": "14077376516939085974", + "inputQty": "137356976701914820378624", + "outputQty0": "144092487042999898871867", + "outputQty": "141715228980796593194864", "mpReserves": [ - "54525923458688296800177500", - "24698311316139998637556112", - "25115629814917066011521954" + "56412609851387216874841572", + "8648116723065648942982186", + "36905620383802808760338896" ], "fpReserves": [ - "5246705391227694808130018", - "15188669281021386501062566" + "2548912408830595792447029", + "1942653538943799713871179" ], - "mAssetSupply": "104311717002764816828207096", - "LPTokenSupply": "20268683221820304587090880" + "mAssetSupply": "101638883353494536304747012", + "LPTokenSupply": "4420610438331222562188395" }, { - "type": "swap_fp_to_mp", - "inputQty": "589924123302900782858240", - "outputIndex": 0, - "outputQty": "583322930103581838042032", - "swapFee": "0", - "redemptionFee": "233014589886163781531", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "5223502734733549240320", + "outputQty0": "5199470616683042184078", + "outputQty": "5185598445979024412262", + "swapFee": "4090569030943327237", "mpReserves": [ - "53942600528584714962135468", - "24698311316139998637556112", - "25115629814917066011521954" + "56412609851387216874841572", + "8648116723065648942982186", + "36910843886537542309579216" ], "fpReserves": [ - "4664168916512285354300518", - "15778593404324287283920806" + "2554111879447278834631107", + "1937467940497820689458917" ], - "mAssetSupply": "103729413542639293538159127", - "LPTokenSupply": "20268683221820304587090880" + "mAssetSupply": "101644082824111219346931090", + "LPTokenSupply": "4420610847388125656521118" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "919625269053986", - "outputQty0": "916740525869280", - "outputQty": "915111521464606", - "swapFee1": "551775161432", - "swapFee2": "366696210347", + "type": "mint", + "inputIndex": 1, + "inputQty": "32155065945508341088256", + "outputQty0": "33701535863550679259211", + "outputQty": "33141332584646619790428", "mpReserves": [ - "53942600528584714962135468", - "24698311315224887116091506", - "25115629814917066011521954" + "56412609851387216874841572", + "8680271789011157284070442", + "36910843886537542309579216" ], "fpReserves": [ - "4664168915595544828431238", - "15778593404324287283920806" + "2587813415310829513890318", + "1937467940497820689458917" ], - "mAssetSupply": "103729413541722919708500194", - "LPTokenSupply": "20268683220900734495553037" + "mAssetSupply": "101677784359974770026190301", + "LPTokenSupply": "4453752179972772276311546" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "16651132695629099008", - "outputQty0": "16598899726259445602", - "outputQty": "16621053296190309165", - "swapFee1": "9990679617377459", - "swapFee2": "6639559890503778", + "type": "mint", + "inputIndex": 1, + "inputQty": "54829292285735743782912", + "outputQty0": "57440297885174208248265", + "outputQty": "56482382503670862717352", "mpReserves": [ - "53942583907531418771826303", - "24698311315224887116091506", - "25115629814917066011521954" + "56412609851387216874841572", + "8735101081296893027853354", + "36910843886537542309579216" ], "fpReserves": [ - "4664152316695818568985636", - "15778593404324287283920806" + "2645253713196003722138583", + "1937467940497820689458917" ], - "mAssetSupply": "103729396949462753339558370", - "LPTokenSupply": "20268666570767106828191774" + "mAssetSupply": "101735224657859944234438566", + "LPTokenSupply": "4510234562476443139028898" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "16678262183494178816", - "outputQty0": "16625942992004020296", - "outputQty": "16648132640373580448", - "swapFee1": "10006957310096507", - "swapFee2": "6650377196801608", + "outputIndex": 2, + "inputQty": "1921682528215387340800", + "outputQty0": "1953165742740687062596", + "outputQty": "1960884959065084947791", + "swapFee1": "1153009516929232404", + "swapFee2": "1171899445644412237", "mpReserves": [ - "53942567259398778398245855", - "24698311315224887116091506", - "25115629814917066011521954" + "56412609851387216874841572", + "8735101081296893027853354", + "36908883001578477224631425" ], "fpReserves": [ - "4664135690752826564965340", - "15778593404324287283920806" + "2643300547453263035075987", + "1937467940497820689458917" ], - "mAssetSupply": "103729380330170138532339682", - "LPTokenSupply": "20268649893505619065022608" + "mAssetSupply": "101733272664016649191788207", + "LPTokenSupply": "4508312995249179444611338" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "3033453102189337984892928", - "outputQty0": "3036886795218071974643992", - "outputQty": "3058424775275587539859653", - "swapFee": "2426381180865247184702", + "inputIndex": 2, + "inputQty": "796287946095728263168", + "outputQty0": "792677524910318888569", + "outputQty": "790347761190001125973", + "swapFee": "623546175738994805", "mpReserves": [ - "53942567259398778398245855", - "27731764417414225100984434", - "25115629814917066011521954" + "56412609851387216874841572", + "8735101081296893027853354", + "36909679289524572952894593" ], "fpReserves": [ - "7701022485970898539609332", - "12720168629048699744061153" + "2644093224978173353964556", + "1936677592736630688332944" ], - "mAssetSupply": "106766267125388210506983674", - "LPTokenSupply": "20268892531623705589741078" + "mAssetSupply": "101734065341541559510676776", + "LPTokenSupply": "4508313057603797018510818" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "24365461521648574464", - "outputQty0": "24327062429544730091", - "outputQty": "24397300345681494668", - "swapFee": "19360846474238532", + "inputQty": "47112547554667465277440", + "outputQty0": "46636804924466229291829", + "outputQty": "46492317664702826909016", + "swapFee": "36684959739396029973", "mpReserves": [ - "53942591624860300046820319", - "27731764417414225100984434", - "25115629814917066011521954" + "56459722398941884340119012", + "8735101081296893027853354", + "36909679289524572952894593" ], "fpReserves": [ - "7701046813033328084339423", - "12720144231748354062566485" + "2690730029902639583256385", + "1890185275071927861423928" ], - "mAssetSupply": "106766291452450640051713765", - "LPTokenSupply": "20268892533559790237164931" + "mAssetSupply": "101780702146466025739968605", + "LPTokenSupply": "4508316726099770958113815" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4820780032808078802944", - "outputQty0": "4827718055112891431429", - "outputQty": "4802704064938101192600", + "type": "redeem", + "outputIndex": 0, + "inputQty": "2332774165134655", + "outputQty0": "2371326207451146", + "outputQty": "2394091834700886", + "swapFee1": "1399664499080", + "swapFee2": "1422795724470", "mpReserves": [ - "53942591624860300046820319", - "27731764417414225100984434", - "25120450594949874090324898" + "56459722396547792505418126", + "8735101081296893027853354", + "36909679289524572952894593" ], "fpReserves": [ - "7705874531088440975770852", - "12720144231748354062566485" + "2690730027531313375805239", + "1890185275071927861423928" ], - "mAssetSupply": "106771119170505752943145194", - "LPTokenSupply": "20273695237624728338357531" + "mAssetSupply": "101780702144096122328241929", + "LPTokenSupply": "4508316723767136759429068" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "241742747531189447294976", - "outputQty0": "241958223722706583556772", - "outputQty": "242602544861125498683290", - "swapFee": "192547129617638069230", + "type": "mint", + "inputIndex": 2, + "inputQty": "93814556317744126492672", + "outputQty0": "93388218147994451891351", + "outputQty": "91809816442504460295272", "mpReserves": [ - "53942591624860300046820319", - "27973507164945414548279410", - "25120450594949874090324898" + "56459722396547792505418126", + "8735101081296893027853354", + "37003493845842317079387265" ], "fpReserves": [ - "7947832754811147559327624", - "12477541686887228563883195" + "2784118245679307827696590", + "1890185275071927861423928" ], - "mAssetSupply": "107013077394228459526701966", - "LPTokenSupply": "20273714492337690102164454" + "mAssetSupply": "101874090362244116780133280", + "LPTokenSupply": "4600126540209641219724340" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "3147854803288385912832", - "outputQty0": "3163221490730580028629", - "outputQty": "3159190359422179451934", - "swapFee1": "1888712881973031547", - "swapFee2": "1265288596292232011", + "outputIndex": 0, + "inputQty": "21588884331560691564544", + "outputQty0": "21947776815236480892199", + "outputQty": "22158271040174429820749", + "swapFee1": "12953330598936414938", + "swapFee2": "13168666089141888535", "mpReserves": [ - "53942591624860300046820319", - "27970347974585992368827476", - "25120450594949874090324898" + "56437564125507618075597377", + "8735101081296893027853354", + "37003493845842317079387265" ], "fpReserves": [ - "7944669533320416979298995", - "12477541686887228563883195" + "2762170468864071346804391", + "1890185275071927861423928" ], - "mAssetSupply": "107009915438026325238905348", - "LPTokenSupply": "20270566826405689913554776" + "mAssetSupply": "101852155754094969441129616", + "LPTokenSupply": "4578538951211140421801289" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "82097334511198363713536", - "outputQty0": "82495816066537299150359", - "outputQty": "82342760648881090238495", - "swapFee1": "49258400706719018228", - "swapFee2": "32998326426614919660", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "331051554548887360", + "outputQty0": "346751615586251882", + "outputQty": "345552112497347427", + "swapFee": "272704236257713", "mpReserves": [ - "53942591624860300046820319", - "27970347974585992368827476", - "25038107834300993000086403" + "56437564125507618075597377", + "8735101412348447576740714", + "37003493845842317079387265" ], "fpReserves": [ - "7862173717253879680148636", - "12477541686887228563883195" + "2762170815615686933056273", + "1890184929519815364076501" ], - "mAssetSupply": "106927452620286214554674649", - "LPTokenSupply": "20188474417734562221743062" + "mAssetSupply": "101852156100846585027381498", + "LPTokenSupply": "4578538951238410845427060" }, { "type": "mint", "inputIndex": 2, - "inputQty": "2036751466608252157952", - "outputQty0": "2039735542153656933088", - "outputQty": "2028714023587658082816", + "inputQty": "66665058436199286308864", + "outputQty0": "66360419826053912248835", + "outputQty": "65234293042283780759708", "mpReserves": [ - "53942591624860300046820319", - "27970347974585992368827476", - "25040144585767601252244355" + "56437564125507618075597377", + "8735101412348447576740714", + "37070158904278516365696129" ], "fpReserves": [ - "7864213452796033337081724", - "12477541686887228563883195" + "2828531235441740845305108", + "1890184929519815364076501" ], - "mAssetSupply": "106929492355828368211607737", - "LPTokenSupply": "20190503131758149879825878" + "mAssetSupply": "101918516520672638939630333", + "LPTokenSupply": "4643773244280694626186768" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "128611609480074383851520", - "outputQty0": "129227241036405098191045", - "outputQty": "129378175685862556222547", - "swapFee1": "77166965688044630310", - "swapFee2": "51690896414562039276", + "outputIndex": 2, + "inputQty": "469175660244119494590464", + "outputQty0": "476871316515885841944973", + "outputQty": "478743824065544481134329", + "swapFee1": "281505396146471696754", + "swapFee2": "286122789909531505166", "mpReserves": [ - "53813213449174437490597772", - "27970347974585992368827476", - "25040144585767601252244355" + "56437564125507618075597377", + "8735101412348447576740714", + "36591415080212971884561800" ], "fpReserves": [ - "7734986211759628238890679", - "12477541686887228563883195" + "2351659918925855003360135", + "1890184929519815364076501" ], - "mAssetSupply": "106800316805688377675455968", - "LPTokenSupply": "20061899238974644300437389" + "mAssetSupply": "101441931326946662629190526", + "LPTokenSupply": "4174625734576189778765979" }, { "type": "swap_fp_to_mp", - "inputQty": "494379645441229608452096", + "inputQty": "4462391650014475", "outputIndex": 1, - "outputQty": "491795190283503094228572", + "outputQty": "4265352139415149", "swapFee": "0", - "redemptionFee": "196973646414291919145", + "redemptionFee": "2681388118747", "mpReserves": [ - "53813213449174437490597772", - "27478552784302489274598904", - "25040144585767601252244355" + "56437564125507618075597377", + "8735101408083095437325565", + "36591415080212971884561800" ], "fpReserves": [ - "7242552095723898441026936", - "12971921332328458172335291" + "2351659914456874805447533", + "1890184933982207014090976" ], - "mAssetSupply": "106308079663299062169511370", - "LPTokenSupply": "20061899238974644300437389" + "mAssetSupply": "101441931322480363819396671", + "LPTokenSupply": "4174625734576189778765979" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "6077667946873719", - "outputQty0": "6102847956921144", - "outputQty": "6094726933850515", - "swapFee1": "3646600768124", - "swapFee2": "2441139182768", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "121067914684860", + "outputQty0": "119842427700952", + "outputQty": "119570013281466", + "swapFee": "94292622693", "mpReserves": [ - "53813213449174437490597772", - "27478552778207762340748389", - "25040144585767601252244355" + "56437564125628685990282237", + "8735101408083095437325565", + "36591415080212971884561800" ], "fpReserves": [ - "7242552089621050484105792", - "12971921332328458172335291" + "2351659914576717233148485", + "1890184933862637000809510" ], - "mAssetSupply": "106308079657198655351772994", - "LPTokenSupply": "20061899232897341013640482" + "mAssetSupply": "101441931322600206247097623", + "LPTokenSupply": "4174625734576199208028248" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "13695869158440514355200", - "outputQty0": "13708619933157304448835", - "outputQty": "13643787756461313823829", + "inputIndex": 0, + "inputQty": "296994528122019512320", + "outputQty0": "293988247285636106246", + "outputQty": "289139226254093873504", "mpReserves": [ - "53813213449174437490597772", - "27492248647366202855103589", - "25040144585767601252244355" + "56437861120156808009794557", + "8735101408083095437325565", + "36591415080212971884561800" ], "fpReserves": [ - "7256260709554207788554627", - "12971921332328458172335291" + "2351953902824002869254731", + "1890184933862637000809510" ], - "mAssetSupply": "106321788277131812656221829", - "LPTokenSupply": "20075543020653802327464311" + "mAssetSupply": "101442225310847491883203869", + "LPTokenSupply": "4174914873802453301901752" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "9902228916075036147712", - "outputQty0": "9886533213603927406743", - "outputQty": "9839677874195718272682", + "inputIndex": 2, + "inputQty": "652152619594987073437696", + "outputQty0": "649195490522275426589381", + "outputQty": "638232254422334112389384", "mpReserves": [ - "53823115678090512526745484", - "27492248647366202855103589", - "25040144585767601252244355" + "56437861120156808009794557", + "8735101408083095437325565", + "37243567699807958957999496" ], "fpReserves": [ - "7266147242767811715961370", - "12971921332328458172335291" + "3001149393346278295844112", + "1890184933862637000809510" ], - "mAssetSupply": "106331674810345416583628572", - "LPTokenSupply": "20085382698527998045736993" + "mAssetSupply": "102091420801369767309793250", + "LPTokenSupply": "4813147128224787414291136" }, { - "type": "swap_fp_to_mp", - "inputQty": "441090275978714464387072", - "outputIndex": 0, - "outputQty": "439460143291562566663309", - "swapFee": "0", - "redemptionFee": "175577541482444370940", + "type": "mint", + "inputIndex": 2, + "inputQty": "1731157013214826594304", + "outputQty0": "1723141197568962989073", + "outputQty": "1693405197514319971928", "mpReserves": [ - "53383655534798949960082175", - "27492248647366202855103589", - "25040144585767601252244355" + "56437861120156808009794557", + "8735101408083095437325565", + "37245298856821173784593800" ], "fpReserves": [ - "6827203389061700788609056", - "13413011608307172636722363" + "3002872534543847258833185", + "1890184933862637000809510" ], - "mAssetSupply": "105892906534180788100647198", - "LPTokenSupply": "20085382698527998045736993" + "mAssetSupply": "102093143942567336272782323", + "LPTokenSupply": "4814840533422301734263064" }, { "type": "swap_fp_to_mp", - "inputQty": "67092914888964780851200", - "outputIndex": 0, - "outputQty": "66805187273175816054208", + "inputQty": "1449503667368897282048", + "outputIndex": 2, + "outputQty": "1460243398209830063817", "swapFee": "0", - "redemptionFee": "26691018536199628789", + "redemptionFee": "872612733111861631", "mpReserves": [ - "53316850347525774144027967", - "27492248647366202855103589", - "25040144585767601252244355" + "56437861120156808009794557", + "8735101408083095437325565", + "37243838613422963954529983" ], "fpReserves": [ - "6760475842721201716634315", - "13480104523196137417573563" + "3001418179988660822780345", + "1891634437530005898091558" ], - "mAssetSupply": "105826205678858825228301246", - "LPTokenSupply": "20085382698527998045736993" + "mAssetSupply": "102091690460624882948591114", + "LPTokenSupply": "4814840533422301734263064" }, { - "type": "swap_fp_to_mp", - "inputQty": "25225613876703562563584", - "outputIndex": 0, - "outputQty": "25114550710452988406963", - "swapFee": "0", - "redemptionFee": "10034168071703546411", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "8927458558303563415552", + "outputQty0": "8837516383801599443200", + "outputQty": "8800755519792749877225", + "swapFee": "6947995339026164941", "mpReserves": [ - "53291735796815321155621004", - "27492248647366202855103589", - "25040144585767601252244355" + "56446788578715111573210109", + "8735101408083095437325565", + "37243838613422963954529983" ], "fpReserves": [ - "6735390422541942850604372", - "13505330137072840980137147" + "3010255696372462422223545", + "1882833682010213148214333" ], - "mAssetSupply": "105801130292847638065817714", - "LPTokenSupply": "20085382698527998045736993" + "mAssetSupply": "102100527977008684548034314", + "LPTokenSupply": "4814841228221835636879558" }, { - "type": "swap_fp_to_mp", - "inputQty": "42732096691346404802560", - "outputIndex": 2, - "outputQty": "42414309930824319265549", - "swapFee": "0", - "redemptionFee": "16996412867027066705", + "type": "mint", + "inputIndex": 0, + "inputQty": "10533546476488124416", + "outputQty0": "10427412609191469677", + "outputQty": "10247231137711837674", "mpReserves": [ - "53291735796815321155621004", - "27492248647366202855103589", - "24997730275836776932978806" + "56446799112261588061334525", + "8735101408083095437325565", + "37243838613422963954529983" ], "fpReserves": [ - "6692899390374375183840888", - "13548062233764187384939707" + "3010266123785071613693222", + "1882833682010213148214333" ], - "mAssetSupply": "105758656257092937426120935", - "LPTokenSupply": "20085382698527998045736993" + "mAssetSupply": "102100538404421293739503991", + "LPTokenSupply": "4814851475452973348717232" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "39027189215508146683904", - "outputQty0": "38966222919295270005651", - "outputQty": "39156112992285985780501", - "swapFee": "31051046265658986106", + "inputQty": "463386712261531359248384", + "outputQty0": "458693278564393471115070", + "outputQty": "455825987315569158316466", + "swapFee": "360525708193370018124", "mpReserves": [ - "53330762986030829302304908", - "27492248647366202855103589", - "24997730275836776932978806" + "56910185824523119420582909", + "8735101408083095437325565", + "37243838613422963954529983" ], "fpReserves": [ - "6731865613293670453846539", - "13508906120771901399159206" + "3468959402349465084808292", + "1427007694694643989897867" ], - "mAssetSupply": "105797622480012232696126586", - "LPTokenSupply": "20085385803632624611635603" + "mAssetSupply": "102559231682985687210619061", + "LPTokenSupply": "4814887528023792685719044" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "7301098814548727562240", - "outputQty0": "7325668897425612377191", - "outputQty": "7334201548043219758268", - "swapFee1": "4380659288729236537", - "swapFee2": "2930267558970244950", + "type": "mint", + "inputIndex": 0, + "inputQty": "381092114341043816628224", + "outputQty0": "377195535465485149241196", + "outputQty": "369989812011157079921111", "mpReserves": [ - "53323428784482786082546640", - "27492248647366202855103589", - "24997730275836776932978806" + "57291277938864163237211133", + "8735101408083095437325565", + "37243838613422963954529983" ], "fpReserves": [ - "6724539944396244841469348", - "13508906120771901399159206" + "3846154937814950234049488", + "1427007694694643989897867" ], - "mAssetSupply": "105790299741382366053994345", - "LPTokenSupply": "20078085142884004756997016" + "mAssetSupply": "102936427218451172359860257", + "LPTokenSupply": "5184877340034949765640155" }, { "type": "swap_fp_to_mp", - "inputQty": "33933344296844", + "inputQty": "1498299037899176017920", "outputIndex": 0, - "outputQty": "33782296849565", + "outputQty": "1527663695515782382156", "swapFee": "0", - "redemptionFee": "13497200209", + "redemptionFee": "907731170094590145", "mpReserves": [ - "53323428784449003785697075", - "27492248647366202855103589", - "24997730275836776932978806" + "57289750275168647454828977", + "8735101408083095437325565", + "37243838613422963954529983" ], "fpReserves": [ - "6724539944362501840945406", - "13508906120805834743456050" + "3844642052531459250474062", + "1428505993732543165915787" ], - "mAssetSupply": "105790299741348636550670612", - "LPTokenSupply": "20078085142884004756997016" + "mAssetSupply": "102934915240898851470874976", + "LPTokenSupply": "5184877340034949765640155" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "9781443799866218119168", - "outputQty0": "9814269604079809285664", - "outputQty": "9801464920846519239736", - "swapFee1": "5868866279919730871", - "swapFee2": "3925707841631923714", + "inputQty": "533813614391784832", + "outputQty0": "544004957219163474", + "outputQty": "518477866968342691", + "swapFee1": "320288168635070", + "swapFee2": "326402974331498", "mpReserves": [ - "53323428784449003785697075", - "27482447182445356335863853", - "24997730275836776932978806" + "57289750275168647454828977", + "8735100889605228468982874", + "37243838613422963954529983" ], "fpReserves": [ - "6714725674758422031659742", - "13508906120805834743456050" + "3844641508526502031310588", + "1428505993732543165915787" ], - "mAssetSupply": "105780489397452398373308662", - "LPTokenSupply": "20068304285970766530850935" + "mAssetSupply": "102934914697220297226043000", + "LPTokenSupply": "5184876806253364190718830" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "147377926544577408", - "outputQty0": "147586188755416332", - "outputQty": "148302408936158787", - "swapFee": "117604051163379", + "type": "mint", + "inputIndex": 1, + "inputQty": "137020181236227852206080", + "outputQty0": "143578374895241287234588", + "outputQty": "140791816993653527818352", "mpReserves": [ - "53323428784449003785697075", - "27482447182445356335863853", - "24997730423214703477556214" + "57289750275168647454828977", + "8872121070841456321188954", + "37243838613422963954529983" ], "fpReserves": [ - "6714725822344610787076074", - "13508905972503425807297263" + "3988219883421743318545176", + "1428505993732543165915787" ], - "mAssetSupply": "105780489545038587128724994", - "LPTokenSupply": "20068304285982526935967272" + "mAssetSupply": "103078493072115538513277588", + "LPTokenSupply": "5325668623247017718537182" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "119390669308524840878080", - "outputQty0": "119782607480370231816704", - "outputQty": "119625275014069282625323", - "swapFee1": "71634401585114904526", - "swapFee2": "47913042992148092726", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1603385632604922839040", + "outputQty0": "1587176749238805684444", + "outputQty": "1569601781571605265046", + "swapFee": "1244989125868644121", "mpReserves": [ - "53323428784449003785697075", - "27362821907431287053238530", - "24997730423214703477556214" + "57291353660801252377668017", + "8872121070841456321188954", + "37243838613422963954529983" ], "fpReserves": [ - "6594943214864240555259370", - "13508905972503425807297263" + "3989807060170982124229620", + "1426936391950971560650741" ], - "mAssetSupply": "105660754850601209045001016", - "LPTokenSupply": "19948920780114160606579644" + "mAssetSupply": "103080080248864777318962032", + "LPTokenSupply": "5325668747745930305401594" }, { "type": "swap_fp_to_mp", - "inputQty": "3387011313145914327040", + "inputQty": "9157603926601381183488", "outputIndex": 1, - "outputQty": "3362804484031384453690", + "outputQty": "8829978281407956859628", "swapFee": "0", - "redemptionFee": "1346902212245564388", + "redemptionFee": "5551278367767807919", "mpReserves": [ - "53323428784449003785697075", - "27359459102947255668784840", - "24997730423214703477556214" + "57291353660801252377668017", + "8863291092560048364329326", + "37243838613422963954529983" ], "fpReserves": [ - "6591575959333626644287962", - "13512292983816571721624303" + "3980554929558035777696608", + "1436093995877572941834229" ], - "mAssetSupply": "105657388941972807379593996", - "LPTokenSupply": "19948920780114160606579644" + "mAssetSupply": "103070833669530198740236939", + "LPTokenSupply": "5325668747745930305401594" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "811176159126373626019840", + "hardLimitError": true }, { "type": "redeem", "outputIndex": 1, - "inputQty": "3334192735706070", - "outputQty0": "3344899475799666", - "outputQty": "3340477211780409", - "swapFee1": "2000515641423", - "swapFee2": "1337959790319", + "inputQty": "200827314491653056", + "outputQty0": "204689929839850597", + "outputQty": "195341752231719935", + "swapFee1": "120496388694991", + "swapFee2": "122813957903910", "mpReserves": [ - "53323428784449003785697075", - "27359459099606778457004431", - "24997730423214703477556214" + "57291353660801252377668017", + "8863290897218296132609391", + "37243838613422963954529983" ], "fpReserves": [ - "6591575955988727168488296", - "13512292983816571721624303" + "3980554724868105937846011", + "1436093995877572941834229" ], - "mAssetSupply": "105657388938629245863584649", - "LPTokenSupply": "19948920776780167922437716" + "mAssetSupply": "103070833464963082858290252", + "LPTokenSupply": "5325668546930665452618037" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "196090486942495500402688", - "outputQty0": "195781876771431840653034", - "outputQty": "195016362267949457432260", - "mpReserves": [ - "53519519271391499286099763", - "27359459099606778457004431", - "24997730423214703477556214" - ], - "fpReserves": [ - "6787357832760159009141330", - "13512292983816571721624303" - ], - "mAssetSupply": "105853170815400677704237683", - "LPTokenSupply": "20143937139048117379869976" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "404647623178873733120", - "outputIndex": 2, - "outputQty": "401687564527322821237", - "swapFee": "0", - "redemptionFee": "160967229659770211", + "inputIndex": 1, + "inputQty": "1504088199829761294336", + "outputQty0": "1575109537782206164367", + "outputQty": "1544457632286845759390", "mpReserves": [ - "53519519271391499286099763", - "27359459099606778457004431", - "24997328735650176154734977" + "57291353660801252377668017", + "8864794985418125893903727", + "37243838613422963954529983" ], "fpReserves": [ - "6786955414686009583612028", - "13512697631439750595357423" + "3982129834405888144010378", + "1436093995877572941834229" ], - "mAssetSupply": "105852768558293757938478592", - "LPTokenSupply": "20143937139048117379869976" + "mAssetSupply": "103072408574500865064454619", + "LPTokenSupply": "5327213004562952298377427" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "364904771968584056832", - "outputQty0": "364328677955194252615", - "outputQty": "366054136591947818096", - "swapFee": "290291909928154130", - "mpReserves": [ - "53519884176163467870156595", - "27359459099606778457004431", - "24997328735650176154734977" - ], - "fpReserves": [ - "6787319743363964777864643", - "13512331577303158647539327" - ], - "mAssetSupply": "105853132886971713132731207", - "LPTokenSupply": "20143937168077308372685389" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "17973951191988", - "outputQty0": "18035637291776", - "outputQty": "18002896195321", - "swapFee1": "10784370715", - "swapFee2": "7214254916", - "mpReserves": [ - "53519884176163467870156595", - "27359459099606778457004431", - "24997328735632173258539656" - ], - "fpReserves": [ - "6787319743345929140572867", - "13512331577303158647539327" - ], - "mAssetSupply": "105853132886953684709694347", - "LPTokenSupply": "20143937168059335499930472" + "inputQty": "1099758568388305923080192", + "hardLimitError": true }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "323621970304786757582848", - "outputQty0": "323108428717651084463139", - "outputQty": "324514891435620582202143", - "swapFee": "257404928361105401345", + "type": "swap_fp_to_mp", + "inputQty": "810497727110814734745600", + "outputIndex": 1, + "outputQty": "774528441782378059318526", + "swapFee": "0", + "redemptionFee": "489023290775061799921", "mpReserves": [ - "53843506146468254627739443", - "27359459099606778457004431", - "24997328735632173258539656" + "57291353660801252377668017", + "8090266543635747834585201", + "37243838613422963954529983" ], "fpReserves": [ - "7110428172063580225036006", - "13187816685867538065337184" + "3167091016447451810807243", + "2246591722988387676579829" ], - "mAssetSupply": "106176241315671335794157486", - "LPTokenSupply": "20143962908552171610470606" + "mAssetSupply": "102257858779833203793051405", + "LPTokenSupply": "5327213004562952298377427" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "1271406331098198179840", "outputIndex": 0, - "inputQty": "254890557357082560", - "outputQty0": "255893884745178012", - "outputQty": "256200154231361210", - "swapFee1": "152934334414249", - "swapFee2": "102357553898071", + "outputQty": "1287954189456937443987", + "swapFee": "0", + "redemptionFee": "764664048780150172", "mpReserves": [ - "53843505890268100396378233", - "27359459099606778457004431", - "24997328735632173258539656" + "57290065706611795440224030", + "8090266543635747834585201", + "37243838613422963954529983" ], "fpReserves": [ - "7110427916169695479857994", - "13187816685867538065337184" + "3165816576366151560519749", + "2247863129319485874759669" ], - "mAssetSupply": "106176241059879808602877545", - "LPTokenSupply": "20143962653676907686829470" + "mAssetSupply": "102256585104415952322914083", + "LPTokenSupply": "5327213004562952298377427" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "712510329974510608973824", - "outputQty0": "713489773982028373539827", - "outputQty": "710050855163138347039806", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1564609685042584354816", + "outputQty0": "1653069196740523807475", + "outputQty": "1647813024977329586307", + "swapFee": "1300046118060410889", "mpReserves": [ - "53843505890268100396378233", - "27359459099606778457004431", - "25709839065606683867513480" + "57290065706611795440224030", + "8091831153320790418940017", + "37243838613422963954529983" ], "fpReserves": [ - "7823917690151723853397821", - "13187816685867538065337184" + "3167469645562892084327224", + "2246215316294508545173362" ], - "mAssetSupply": "106889730833861836976417372", - "LPTokenSupply": "20854013508840046033869276" + "mAssetSupply": "102258238173612692846721558", + "LPTokenSupply": "5327213134567564104418515" }, { "type": "swap_fp_to_mp", - "inputQty": "63727429902907528445952", - "outputIndex": 1, - "outputQty": "63389890264559253847788", + "inputQty": "802886375227809464320", + "outputIndex": 0, + "outputQty": "813337175565699923717", "swapFee": "0", - "redemptionFee": "25391159685096746538", + "redemptionFee": "482883016067261928", "mpReserves": [ - "53843505890268100396378233", - "27296069209342219203156643", - "25709839065606683867513480" + "57289252369436229740300313", + "8091831153320790418940017", + "37243838613422963954529983" ], "fpReserves": [ - "7760439790938981987051957", - "13251544115770445593783136" + "3166664840536113314446588", + "2247018202669736354637682" ], - "mAssetSupply": "106826278325808780206818046", - "LPTokenSupply": "20854013508840046033869276" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "197049284231189374173184", - "outputQty0": "197910580578241555966528", - "outputQty": "197569077843987729870562", - "swapFee1": "118229570538713624503", - "swapFee2": "79164232231296622386", - "mpReserves": [ - "53843505890268100396378233", - "27296069209342219203156643", - "25512269987762696137642918" - ], - "fpReserves": [ - "7562529210360740431085429", - "13251544115770445593783136" - ], - "mAssetSupply": "106628446909462769947473904", - "LPTokenSupply": "20656976047565910531058542" + "mAssetSupply": "102257433851468930144102850", + "LPTokenSupply": "5327213134567564104418515" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "17909369879175253458944", - "outputQty0": "17933418208417249508438", - "outputQty": "17845811486829137883084", + "inputIndex": 0, + "inputQty": "364357382480086710616064", + "outputQty0": "360302752014446535275999", + "outputQty": "354134770836497460036388", "mpReserves": [ - "53843505890268100396378233", - "27296069209342219203156643", - "25530179357641871391101862" + "57653609751916316450916377", + "8091831153320790418940017", + "37243838613422963954529983" ], "fpReserves": [ - "7580462628569157680593867", - "13251544115770445593783136" + "3526967592550559849722587", + "2247018202669736354637682" ], - "mAssetSupply": "106646380327671187196982342", - "LPTokenSupply": "20674821859052739668941626" + "mAssetSupply": "102617736603483376679378849", + "LPTokenSupply": "5681347905404061564454903" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "4203781024762846208", - "outputQty0": "4209419471528792877", - "outputQty": "4188826320930209602", + "inputIndex": 0, + "inputQty": "2815584586000816406528", + "outputQty0": "2784126634371743043356", + "outputQty": "2735994276778020753328", "mpReserves": [ - "53843505890268100396378233", - "27296069209342219203156643", - "25530183561422896153948070" + "57656425336502317267322905", + "8091831153320790418940017", + "37243838613422963954529983" ], "fpReserves": [ - "7580466837988629209386744", - "13251544115770445593783136" + "3529751719184931592765943", + "2247018202669736354637682" ], - "mAssetSupply": "106646384537090658725775219", - "LPTokenSupply": "20674826047879060599151228" + "mAssetSupply": "102620520730117748422422205", + "LPTokenSupply": "5684083899680839585208231" }, { "type": "swap_fp_to_mp", - "inputQty": "394359323674008782635008", - "outputIndex": 1, - "outputQty": "391996247299272657514926", + "inputQty": "9427512614374879526912", + "outputIndex": 2, + "outputQty": "9500423906859553555951", "swapFee": "0", - "redemptionFee": "157019836650561014307", + "redemptionFee": "5674764700163282963", "mpReserves": [ - "53843505890268100396378233", - "26904072962042946545641717", - "25530183561422896153948070" + "57656425336502317267322905", + "8091831153320790418940017", + "37234338189516104400974032" ], "fpReserves": [ - "7187917246362226673618649", - "13645903439444454376418144" + "3520293778017992787827286", + "2256445715284111234164594" ], - "mAssetSupply": "106253991965300906751021431", - "LPTokenSupply": "20674826047879060599151228" + "mAssetSupply": "102611068463715509780766511", + "LPTokenSupply": "5684083899680839585208231" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "468239514448433774592", - "outputQty0": "470011891550101244201", - "outputQty": "470570842907484339035", - "swapFee1": "280943708669060264", - "swapFee2": "188004756620040497", - "mpReserves": [ - "53843035319425192912039198", - "26904072962042946545641717", - "25530183561422896153948070" - ], - "fpReserves": [ - "7187447234470676572374448", - "13645903439444454376418144" - ], - "mAssetSupply": "106253522141414113269817727", - "LPTokenSupply": "20674357836458983032282662" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "1895680758817387970560", - "outputIndex": 0, - "outputQty": "1888434169997371186758", - "swapFee": "0", - "redemptionFee": "754476467892974170", + "outputIndex": 1, + "inputQty": "21720236171877024", + "outputQty0": "22088615964872748", + "outputQty": "20884507007852884", + "swapFee1": "13032141703126", + "swapFee2": "13253169578923", "mpReserves": [ - "53841146885255195540852440", - "26904072962042946545641717", - "25530183561422896153948070" + "57656425336502317267322905", + "8091831132436283411087133", + "37234338189516104400974032" ], "fpReserves": [ - "7185561043300944136948804", - "13647799120203271764388704" + "3520293755929376822954538", + "2256445715284111234164594" ], - "mAssetSupply": "106251636704720848727366253", - "LPTokenSupply": "20674357836458983032282662" + "mAssetSupply": "102611068441640146985472686", + "LPTokenSupply": "5684083877961906627501519" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "284337434111873536", - "outputQty0": "284632864490468735", - "outputQty": "283390233747434586", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "41256828824312099110912", + "outputQty0": "40795623168709487721979", + "outputQty": "40627935539486924964405", + "swapFee": "32072347865062282741", "mpReserves": [ - "53841146885255195540852440", - "26904073246380380657515253", - "25530183561422896153948070" + "57697682165326629366433817", + "8091831132436283411087133", + "37234338189516104400974032" ], "fpReserves": [ - "7185561327933808627417539", - "13647799120203271764388704" + "3561089379098086310676517", + "2215817779744624309200189" ], - "mAssetSupply": "106251636989353713217834988", - "LPTokenSupply": "20674358119849216779717248" + "mAssetSupply": "102651864064808856473194665", + "LPTokenSupply": "5684087085196693133729793" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "346887867647281300766720", - "outputQty0": "346334273208910928863407", - "outputQty": "347670623507656697567543", - "swapFee": "275814418526070058866", + "inputIndex": 2, + "inputQty": "1530554522285530152960", + "outputQty0": "1522802974967969598823", + "outputQty": "1516344822525535684796", + "swapFee": "1197083028137880596", "mpReserves": [ - "54188034752902476841619160", - "26904073246380380657515253", - "25530183561422896153948070" + "57697682165326629366433817", + "8091831132436283411087133", + "37235868744038389931126992" ], "fpReserves": [ - "7531895601142719556280946", - "13300128496695615066821161" + "3562612182073054280275340", + "2214301434922098773515393" ], - "mAssetSupply": "106597971262562624146698395", - "LPTokenSupply": "20674385701291069386723134" + "mAssetSupply": "102653386867783824442793488", + "LPTokenSupply": "5684087204904995947517852" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "40616960889800638857216", - "outputQty0": "40789491808320561309751", - "outputQty": "40730046187726565726895", - "swapFee1": "24370176533880383314", - "swapFee2": "16315796723328224523", + "outputIndex": 0, + "inputQty": "524060490265525567356928", + "outputQty0": "532869240297219822483203", + "outputQty": "538537154999348002423802", + "swapFee1": "314436294159315340414", + "swapFee2": "319721544178331893489", "mpReserves": [ - "54188034752902476841619160", - "26863343200192654091788358", - "25530183561422896153948070" + "57159145010327281364010015", + "8091831132436283411087133", + "37235868744038389931126992" ], "fpReserves": [ - "7491106109334398994971195", - "13300128496695615066821161" + "3029742941775834457792137", + "2214301434922098773515393" ], - "mAssetSupply": "106557198086551026913613167", - "LPTokenSupply": "20633771177418922135904249" + "mAssetSupply": "102120837349030782952203774", + "LPTokenSupply": "5160058158268886311694965" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2510839554348006400", - "outputQty0": "2513505827987800683", - "outputQty": "2501411318976446083", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "91903519225492090650624", + "outputQty0": "91432930000945682834827", + "outputQty": "91137702965968426131727", + "swapFee": "71905758095408057112", "mpReserves": [ - "54188034752902476841619160", - "26863345711032208439794758", - "25530183561422896153948070" + "57159145010327281364010015", + "8091831132436283411087133", + "37327772263263882021777616" ], "fpReserves": [ - "7491108622840226982771878", - "13300128496695615066821161" + "3121175871776780140626964", + "2123163731956130347383666" ], - "mAssetSupply": "106557200600056854901413850", - "LPTokenSupply": "20633773678830241112350332" + "mAssetSupply": "102212270279031728635038601", + "LPTokenSupply": "5160065348844695852500676" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "195538903694954976", - "outputQty0": "195800581632974047", - "outputQty": "194858426490743821", + "inputIndex": 1, + "inputQty": "237697036684353", + "outputQty0": "251108596446861", + "outputQty": "246802062480607", "mpReserves": [ - "54188034752902476841619160", - "26863345711032208439794758", - "25530183756961799848903046" + "57159145010327281364010015", + "8091831132673980447771486", + "37327772263263882021777616" ], "fpReserves": [ - "7491108818640808615745925", - "13300128496695615066821161" + "3121175872027888737073825", + "2123163731956130347383666" ], - "mAssetSupply": "106557200795857436534387897", - "LPTokenSupply": "20633773873688667603094153" + "mAssetSupply": "102212270279282837231485462", + "LPTokenSupply": "5160065349091497914981283" }, { "type": "swap_fp_to_mp", - "inputQty": "60543680481955135094784", - "outputIndex": 2, - "outputQty": "60172433556685347929605", + "inputQty": "4260358046011172864", + "outputIndex": 0, + "outputQty": "4317049772169150564", "swapFee": "0", - "redemptionFee": "24110949938107767854", - "mpReserves": [ - "54188034752902476841619160", - "26863345711032208439794758", - "25470011323405114500973441" - ], - "fpReserves": [ - "7430831443795539196108651", - "13360672177177570201915945" - ], - "mAssetSupply": "106496947531962105222518477", - "LPTokenSupply": "20633773873688667603094153" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "57788554641533812342784", - "outputQty0": "57849500986411716952370", - "outputQty": "58058738563041196794213", - "swapFee": "46059392212174792600", + "redemptionFee": "2563156251167950", "mpReserves": [ - "54188034752902476841619160", - "26921134265673742252137542", - "25470011323405114500973441" + "57159140693277509194859451", + "8091831132673980447771486", + "37327772263263882021777616" ], "fpReserves": [ - "7488680944781950913061021", - "13302613438614529005121732" + "3121171600100803457156164", + "2123167992314176358556530" ], - "mAssetSupply": "106554797032948516939470847", - "LPTokenSupply": "20633778479627888820573413" + "mAssetSupply": "102212266009918908202735751", + "LPTokenSupply": "5160065349091497914981283" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "16827036136531996704768", - "outputQty0": "16844690893880686484534", - "outputQty": "16904347175882518108388", - "swapFee": "13410832778567901096", + "type": "mint", + "inputIndex": 0, + "inputQty": "17338472851226010583040", + "outputQty0": "17146916792539905373821", + "outputQty": "16852697966065473779358", "mpReserves": [ - "54188034752902476841619160", - "26937961301810274248842310", - "25470011323405114500973441" + "57176479166128735205442491", + "8091831132673980447771486", + "37327772263263882021777616" ], "fpReserves": [ - "7505525635675831599545555", - "13285709091438646487013344" + "3138318516893343362529985", + "2123167992314176358556530" ], - "mAssetSupply": "106571641723842397625955381", - "LPTokenSupply": "20633779820711166677363522" + "mAssetSupply": "102229412926711448108109572", + "LPTokenSupply": "5176918047057563388760641" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "175595553686468186603520", - "outputQty0": "176329528840517983062965", - "outputQty": "176541774005227606585940", - "swapFee1": "105357332211880911962", - "swapFee2": "70531811536207193225", + "outputIndex": 1, + "inputQty": "5737800108388155129856", + "outputQty0": "5834503101065589591773", + "outputQty": "5519250198532830337064", + "swapFee1": "3442680065032893077", + "swapFee2": "3500701860639353755", "mpReserves": [ - "54011492978897249235033220", - "26937961301810274248842310", - "25470011323405114500973441" + "57176479166128735205442491", + "8086311882475447617434422", + "37327772263263882021777616" ], "fpReserves": [ - "7329196106835313616482590", - "13285709091438646487013344" + "3132484013792277772938212", + "2123167992314176358556530" ], - "mAssetSupply": "106395382726813415850085641", - "LPTokenSupply": "20458194802757919678851198" + "mAssetSupply": "102223581924312243157871554", + "LPTokenSupply": "5171180591217181736920092" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "392621662373631492096", - "outputQty0": "391994504581516514246", - "outputQty": "390155781759007991396", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "376323852491993776128", + "outputQty0": "374390165273527178028", + "outputQty": "373066460585654492908", + "swapFee": "294371834784177262", "mpReserves": [ - "54011885600559622866525316", - "26937961301810274248842310", - "25470011323405114500973441" + "57176479166128735205442491", + "8086311882475447617434422", + "37328148587116374015553744" ], "fpReserves": [ - "7329588101339895132996836", - "13285709091438646487013344" + "3132858403957551300116240", + "2122794925853590704063622" ], - "mAssetSupply": "106395774721317997366599887", - "LPTokenSupply": "20458584958539678686842594" + "mAssetSupply": "102223956314477516685049582", + "LPTokenSupply": "5171180620654365215337818" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "344614054245597391618048", - "outputQty0": "345066818474574612956402", - "outputQty": "346242513166149959628900", - "swapFee": "274719242193278172457", + "inputQty": "519734798807505293017088", + "outputQty0": "517022639611443330815744", + "outputQty": "514191151460460913478729", + "swapFee": "406415383562272523894", "mpReserves": [ - "54011885600559622866525316", - "26937961301810274248842310", - "25814625377650711892591489" + "57176479166128735205442491", + "8086311882475447617434422", + "37847883385923879308570832" ], "fpReserves": [ - "7674654919814469745953238", - "12939466578272496527384444" + "3649881043568994630931984", + "1608603774393129790584893" ], - "mAssetSupply": "106740841539792571979556289", - "LPTokenSupply": "20458612430463898014659839" + "mAssetSupply": "102740978954088960015865326", + "LPTokenSupply": "5171221262192721442590207" }, { "type": "swap_fp_to_mp", - "inputQty": "48736635489847689216", + "inputQty": "199162818797748434763776", "outputIndex": 0, - "outputQty": "48605867748275153932", + "outputQty": "202474725761500783767845", "swapFee": "0", - "redemptionFee": "19419417971754035", + "redemptionFee": "120221303450702884442", "mpReserves": [ - "54011836994691874591371384", - "26937961301810274248842310", - "25814625377650711892591489" + "56974004440367234421674646", + "8086311882475447617434422", + "37847883385923879308570832" ], "fpReserves": [ - "7674606371269540360863679", - "12939515314907986375073660" + "3449512204484489823527433", + "1807766593190878225348669" ], - "mAssetSupply": "106740793010667060566220765", - "LPTokenSupply": "20458612430463898014659839" + "mAssetSupply": "102540730336307905911345217", + "LPTokenSupply": "5171221262192721442590207" }, { "type": "swap_fp_to_mp", - "inputQty": "89398708125390096", - "outputIndex": 2, - "outputQty": "88903783679480025", + "inputQty": "244242251613268453883904", + "outputIndex": 1, + "outputQty": "231581296702760236025941", "swapFee": "0", - "redemptionFee": "35621474122975", + "redemptionFee": "147146189832298554517", "mpReserves": [ - "54011836994691874591371384", - "26937961301810274248842310", - "25814625288746928213111464" + "56974004440367234421674646", + "7854730585772687381408481", + "37847883385923879308570832" ], "fpReserves": [ - "7674606282215855053425856", - "12939515404306694500463756" + "3204268554763992232665575", + "2052008844804146679232573" ], - "mAssetSupply": "106740792921648996732905917", - "LPTokenSupply": "20458612430463898014659839" + "mAssetSupply": "102295633832777240619037876", + "LPTokenSupply": "5171221262192721442590207" }, { - "type": "swap_fp_to_mp", - "inputQty": "327653884659463040", - "outputIndex": 1, - "outputQty": "325914416132146197", - "swapFee": "0", - "redemptionFee": "130555738599335", + "type": "redeem", + "outputIndex": 0, + "inputQty": "218368680300387810410496", + "outputQty0": "222079402325414967526973", + "outputQty": "224475139377279804085576", + "swapFee1": "131021208180232686246", + "swapFee2": "133247641395248980516", "mpReserves": [ - "54011836994691874591371384", - "26937960975895858116696113", - "25814625288746928213111464" + "56749529300989954617589070", + "7854730585772687381408481", + "37847883385923879308570832" ], "fpReserves": [ - "7674605955826508555086976", - "12939515731960579159926796" + "2982189152438577265138602", + "2052008844804146679232573" ], - "mAssetSupply": "106740792595390205973166372", - "LPTokenSupply": "20458612430463898014659839" + "mAssetSupply": "102073687678093220900491419", + "LPTokenSupply": "4952865684013151655448335" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "536583996458982686326784", - "outputQty0": "537130382446859422943385", - "outputQty": "538521026457969665972972", - "swapFee": "427418189665979847997", + "inputQty": "1723145673620685112475648", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "1146411523191731650560", + "outputQty0": "1165783349669245825681", + "outputQty": "1178326333204581508995", + "swapFee1": "687846913915038990", + "swapFee2": "699470009801547495", "mpReserves": [ - "54011836994691874591371384", - "27474544972354840803022897", - "25814625288746928213111464" + "56748350974656750036080075", + "7854730585772687381408481", + "37847883385923879308570832" ], "fpReserves": [ - "8211736338273367978030361", - "12400994705502609493953824" + "2981023369088908019312921", + "2052008844804146679232573" ], - "mAssetSupply": "107277922977837065396109757", - "LPTokenSupply": "20458655172282864612644638" + "mAssetSupply": "102072522594213561456213233", + "LPTokenSupply": "4951719341274651315301674" }, { "type": "swap_fp_to_mp", - "inputQty": "33072751810020240261120", - "outputIndex": 1, - "outputQty": "32929653220086231510588", + "inputQty": "19047757025270388752384", + "outputIndex": 2, + "outputQty": "19191437790769966679670", "swapFee": "0", - "redemptionFee": "13190082521834290991", + "redemptionFee": "11457924285461937899", "mpReserves": [ - "54011836994691874591371384", - "27441615319134754571512309", - "25814625288746928213111464" + "56748350974656750036080075", + "7854730585772687381408481", + "37828691948133109341891162" ], "fpReserves": [ - "8178761131968782250550557", - "12434067457312629734214944" + "2961926828613138122813378", + "2071056601829417067984957" ], - "mAssetSupply": "107244960961615001502920944", - "LPTokenSupply": "20458655172282864612644638" + "mAssetSupply": "102053437511662077021651589", + "LPTokenSupply": "4951719341274651315301674" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "240909779331371757469696", - "outputQty0": "241220781214115322709113", - "outputQty": "241700114516021068271113", - "swapFee": "191864214400937292427", + "type": "redeem", + "outputIndex": 2, + "inputQty": "30703114549383279935488", + "outputQty0": "31219832856072693867902", + "outputQty": "31374729211552291260747", + "swapFee1": "18421868729629967961", + "swapFee2": "18731899713643616320", "mpReserves": [ - "54011836994691874591371384", - "27441615319134754571512309", - "26055535068078299970581160" + "56748350974656750036080075", + "7854730585772687381408481", + "37797317218921557050630415" ], "fpReserves": [ - "8419981913182897573259670", - "12192367342796608665943831" + "2930706995757065428945476", + "2071056601829417067984957" ], - "mAssetSupply": "107486181742829116825630057", - "LPTokenSupply": "20458674358704304706373880" + "mAssetSupply": "102022236410705717971400007", + "LPTokenSupply": "4921018068912140998362982" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "27112276445684224229376", - "outputQty0": "27139255847462321508299", - "outputQty": "26978052709306855568705", + "inputIndex": 2, + "inputQty": "22196106627241988096", + "outputQty0": "22073380293615139875", + "outputQty": "21695311651174533859", "mpReserves": [ - "54011836994691874591371384", - "27468727595580438795741685", - "26055535068078299970581160" + "56748350974656750036080075", + "7854730585772687381408481", + "37797339415028184292618511" ], "fpReserves": [ - "8447121169030359894767969", - "12192367342796608665943831" + "2930729069137359044085351", + "2071056601829417067984957" ], - "mAssetSupply": "107513320998676579147138356", - "LPTokenSupply": "20485652411413611561942585" + "mAssetSupply": "102022258484086011586539882", + "LPTokenSupply": "4921039764223792172896841" }, { "type": "swap_fp_to_mp", - "inputQty": "17526797097657509609472", - "outputIndex": 2, - "outputQty": "17452367850798335361651", + "inputQty": "15499435119644132769792", + "outputIndex": 0, + "outputQty": "15703353222351496518954", "swapFee": "0", - "redemptionFee": "6992639978709770341", + "redemptionFee": "9321701954952467187", "mpReserves": [ - "54011836994691874591371384", - "27468727595580438795741685", - "26038082700227501635219509" + "56732647621434398539561121", + "7854730585772687381408481", + "37797339415028184292618511" ], "fpReserves": [ - "8429639569083585468915089", - "12209894139894266175553303" + "2915192899212438265439611", + "2086556036949061200754749" ], - "mAssetSupply": "107495846391369783431055817", - "LPTokenSupply": "20485652411413611561942585" + "mAssetSupply": "102006731635863045760361329", + "LPTokenSupply": "4921039764223792172896841" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "6488955031330448474112", - "outputQty0": "6523743516605253329416", - "outputQty": "6512822287214837433743", - "swapFee1": "3893373018798269084", - "swapFee2": "2609497406642101331", + "outputIndex": 1, + "inputQty": "30278240772535", + "outputQty0": "30786150247401", + "outputQty": "29035442219432", + "swapFee1": "18166944463", + "swapFee2": "18471690148", "mpReserves": [ - "54011836994691874591371384", - "27468727595580438795741685", - "26031569877940286797785766" + "56732647621434398539561121", + "7854730585743651939189049", + "37797339415028184292618511" ], "fpReserves": [ - "8423115825566980215585673", - "12209894139894266175553303" + "2915192899181652115192210", + "2086556036949061200754749" ], - "mAssetSupply": "107489325257350584819827732", - "LPTokenSupply": "20479163845719582993295381" + "mAssetSupply": "102006731635832278081804076", + "LPTokenSupply": "4921039764193515748818752" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1028977249703595163516928", - "outputQty0": "1034168817088424794078544", - "outputQty": "1035325576926649593405859", - "swapFee1": "617386349822157098110", - "swapFee2": "413667526835369917631", + "type": "mint", + "inputIndex": 0, + "inputQty": "7745097321995266162688", + "outputQty0": "7658050378958998996214", + "outputQty": "7527157713521154664923", "mpReserves": [ - "52976511417765224997965525", - "27468727595580438795741685", - "26031569877940286797785766" + "56740392718756393805723809", + "7854730585743651939189049", + "37797339415028184292618511" ], "fpReserves": [ - "7388947008478555421507129", - "12209894139894266175553303" + "2922850949560611114188424", + "2086556036949061200754749" ], - "mAssetSupply": "106455570107788995395666819", - "LPTokenSupply": "19450248334650970045488264" + "mAssetSupply": "102014389686211237080800290", + "LPTokenSupply": "4928566921907036903483675" }, { - "type": "swap_fp_to_mp", - "inputQty": "109185046663561872", - "outputIndex": 1, - "outputQty": "108637129643673429", - "swapFee": "0", - "redemptionFee": "43513281302940", + "type": "mint", + "inputIndex": 0, + "inputQty": "13177635839428548", + "outputQty0": "13029520139214649", + "outputQty": "12806764320276544", "mpReserves": [ - "52976511417765224997965525", - "27468727486943309152068256", - "26031569877940286797785766" + "56740392731934029645152357", + "7854730585743651939189049", + "37797339415028184292618511" ], "fpReserves": [ - "7388946899695352164155858", - "12209894249079312839115175" + "2922850962590131253403073", + "2086556036949061200754749" ], - "mAssetSupply": "106455569999049305419618488", - "LPTokenSupply": "19450248334650970045488264" + "mAssetSupply": "102014389699240757220014939", + "LPTokenSupply": "4928566934713801223760219" }, { - "type": "swap_fp_to_mp", - "inputQty": "706712988251079871299584", - "outputIndex": 0, - "outputQty": "704356765060668742773564", - "swapFee": "0", - "redemptionFee": "281439906214574143157", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "6242161777703741554688", + "outputQty0": "6614343394631796493698", + "outputQty": "6593477716201566690329", + "swapFee": "5200991785534239053", "mpReserves": [ - "52272154652704556255191961", - "27468727486943309152068256", - "26031569877940286797785766" + "56740392731934029645152357", + "7860972747521355680743737", + "37797339415028184292618511" ], "fpReserves": [ - "6685347134158916806261753", - "12916607237330392710414759" + "2929465305984763049896771", + "2079962559232859634064420" ], - "mAssetSupply": "105752251673419084635867540", - "LPTokenSupply": "19450248334650970045488264" + "mAssetSupply": "102021004042635389016508637", + "LPTokenSupply": "4928567454812979777184124" }, { - "type": "swap_fp_to_mp", - "inputQty": "952192495070294759702528", + "type": "redeem", "outputIndex": 2, - "outputQty": "944454406397397341774848", - "swapFee": "0", - "redemptionFee": "378409977359417052726", + "inputQty": "208549960697543091290112", + "outputQty0": "212029133019213168744671", + "outputQty": "213071868862764279017128", + "swapFee1": "125129976418525854774", + "swapFee2": "127217479811527901246", "mpReserves": [ - "52272154652704556255191961", - "27468727486943309152068256", - "25087115471542889456010918" + "56740392731934029645152357", + "7860972747521355680743737", + "37584267546165420013601383" ], "fpReserves": [ - "5739322190760374174446209", - "13868799732400687470117287" + "2717436172965549881152100", + "2079962559232859634064420" ], - "mAssetSupply": "104806605139997901421104722", - "LPTokenSupply": "19450248334650970045488264" + "mAssetSupply": "101809102127095987375665212", + "LPTokenSupply": "4720030007113078538479489" }, { - "type": "swap_fp_to_mp", - "inputQty": "415458879271508641841152", + "type": "redeem", "outputIndex": 1, - "outputQty": "411300653040029248816932", - "swapFee": "0", - "redemptionFee": "164732970019512931138", + "inputQty": "263627542189706078846976", + "outputQty0": "267957117283697298615697", + "outputQty": "252325954583298940598700", + "swapFee1": "158176525313823647308", + "swapFee2": "160774270370218379169", "mpReserves": [ - "52272154652704556255191961", - "27057426833903279903251324", - "25087115471542889456010918" + "56740392731934029645152357", + "7608646792938056740145037", + "37584267546165420013601383" ], "fpReserves": [ - "5327489765711591846599656", - "14284258611672196111958439" + "2449479055681852582536403", + "2079962559232859634064420" ], - "mAssetSupply": "104394937447919138606189307", - "LPTokenSupply": "19450248334650970045488264" + "mAssetSupply": "101541305784082660295428684", + "LPTokenSupply": "4456418282575903841997243" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "174458491452726959931392", - "outputQty0": "174191609558452826337594", - "outputQty": "175667983853285783705846", - "swapFee": "139148113721027416547", + "inputQty": "221082406590796424806400", + "outputQty0": "218507354395217754586260", + "outputQty": "217942912933062510419743", + "swapFee": "171877837848889603424", "mpReserves": [ - "52446613144157283215123353", - "27057426833903279903251324", - "25087115471542889456010918" + "56961475138524826069958757", + "7608646792938056740145037", + "37584267546165420013601383" ], "fpReserves": [ - "5501681375270044672937250", - "14108590627818910328252593" + "2667986410077070337122663", + "1862019646299797123644677" ], - "mAssetSupply": "104569129057477591432526901", - "LPTokenSupply": "19450262249462342148229918" + "mAssetSupply": "101759813138477878050014944", + "LPTokenSupply": "4456435470359688730957585" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "66754416982497738752", + "outputQty0": "65975020588797059128", + "outputQty": "64836512809391393554", + "mpReserves": [ + "56961541892941808567697509", + "7608646792938056740145037", + "37584267546165420013601383" + ], + "fpReserves": [ + "2668052385097659134181791", + "1862019646299797123644677" + ], + "mAssetSupply": "101759879113498466847074072", + "LPTokenSupply": "4456500306872498122351139" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "18922782548686568161280", - "outputQty0": "18940326095723106055933", - "outputQty": "19093249580605142142263", - "swapFee": "15124528845084422584", + "inputIndex": 0, + "inputQty": "54806913870403231744", + "outputQty0": "54167010632841384832", + "outputQty": "53987882854527553087", + "swapFee": "42585812582660705", "mpReserves": [ - "52446613144157283215123353", - "27076349616451966471412604", - "25087115471542889456010918" + "56961596699855678970929253", + "7608646792938056740145037", + "37584267546165420013601383" ], "fpReserves": [ - "5520621701365767778993183", - "14089497378238305186110330" + "2668106552108291975566623", + "1861965658416942596091590" ], - "mAssetSupply": "104588069383573314538582834", - "LPTokenSupply": "19450263761915226656672176" + "mAssetSupply": "101759933280509099688458904", + "LPTokenSupply": "4456500311131079380617209" }, { - "type": "swap_fp_to_mp", - "inputQty": "29873559543237402689536", - "outputIndex": 2, - "outputQty": "29558753253239192956275", - "swapFee": "0", - "redemptionFee": "11843980606086867969", + "type": "mint", + "inputIndex": 0, + "inputQty": "14588042039188", + "outputQty0": "14417717891358", + "outputQty": "14168913494177", "mpReserves": [ - "52446613144157283215123353", - "27076349616451966471412604", - "25057556718289650263054643" + "56961596699870267012968441", + "7608646792938056740145037", + "37584267546165420013601383" ], "fpReserves": [ - "5491011749850550609070524", - "14119370937781542588799866" + "2668106552122709693457981", + "1861965658416942596091590" ], - "mAssetSupply": "104558471276038703455528144", - "LPTokenSupply": "19450263761915226656672176" + "mAssetSupply": "101759933280523517406350262", + "LPTokenSupply": "4456500311145248294111386" }, { "type": "swap_fp_to_mp", - "inputQty": "109962105877650751488", - "outputIndex": 2, - "outputQty": "108796557661760484608", + "inputQty": "50822714907348751613952", + "outputIndex": 0, + "outputQty": "51512100647010287404383", "swapFee": "0", - "redemptionFee": "43594110087493201", + "redemptionFee": "30564940881584265218", "mpReserves": [ - "52446613144157283215123353", - "27076349616451966471412604", - "25057447921731988502570035" + "56910084599223256725564058", + "7608646792938056740145037", + "37584267546165420013601383" ], "fpReserves": [ - "5490902764575331876067642", - "14119480899887420239551354" + "2617164983986735918093091", + "1912788373324291347705542" ], - "mAssetSupply": "104558362334357594810018463", - "LPTokenSupply": "19450263761915226656672176" + "mAssetSupply": "101709022277328425215250590", + "LPTokenSupply": "4456500311145248294111386" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "866822959963661813153792", - "outputQty0": "865473624388190727116764", - "outputQty": "871197511173928434700041", - "swapFee": "690602756219798658634", + "inputIndex": 1, + "inputQty": "31934178992545253556224", + "outputQty0": "33955888689970836423492", + "outputQty": "33851546619132312071325", + "swapFee": "26699292160370077198", "mpReserves": [ - "53313436104120945028277145", - "27076349616451966471412604", - "25057447921731988502570035" + "56910084599223256725564058", + "7640580971930601993701261", + "37584267546165420013601383" ], "fpReserves": [ - "6356376388963522603184406", - "13248283388713491804851313" + "2651120872676706754516583", + "1878936826705159035634217" ], - "mAssetSupply": "105423835958745785537135227", - "LPTokenSupply": "19450332822190848636538039" + "mAssetSupply": "101742978166018396051674082", + "LPTokenSupply": "4456502981074464331119105" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "34643413539019244437504", "outputIndex": 1, - "inputQty": "19950767452029810900992", - "outputQty0": "20014871904877594048816", - "outputQty": "19987546497951169270846", - "swapFee1": "11970460471217886540", - "swapFee2": "8005948761951037619", + "outputQty": "32635192718935934033964", + "swapFee": "0", + "redemptionFee": "20833381928333578152", "mpReserves": [ - "53313436104120945028277145", - "27056362069954015302141758", - "25057447921731988502570035" + "56910084599223256725564058", + "7607945779211666059667297", + "37584267546165420013601383" ], "fpReserves": [ - "6336361517058645009135590", - "13248283388713491804851313" + "2616398569462817457594934", + "1913580240244178280071721" ], - "mAssetSupply": "105403829092789669894124030", - "LPTokenSupply": "19430383251784865947425701" + "mAssetSupply": "101708276696186435088330585", + "LPTokenSupply": "4456502981074464331119105" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "24011259999780442112", - "outputQty0": "24088122231371422023", - "outputQty": "24116575686832780475", - "swapFee1": "14406755999868265", - "swapFee2": "9635248892548568", + "type": "swap_fp_to_mp", + "inputQty": "11762157793492741390336", + "outputIndex": 1, + "outputQty": "11074850007888181872364", + "swapFee": "0", + "redemptionFee": "7072251779301720183", "mpReserves": [ - "53313411987545258195496670", - "27056362069954015302141758", - "25057447921731988502570035" + "56910084599223256725564058", + "7596870929203777877794933", + "37584267546165420013601383" ], "fpReserves": [ - "6336337428936413637713567", - "13248283388713491804851313" + "2604611483163981257289219", + "1925342398037671021462057" ], - "mAssetSupply": "105403805014302687415250575", - "LPTokenSupply": "19430359241965541766970415" + "mAssetSupply": "101696496682139378189745053", + "LPTokenSupply": "4456502981074464331119105" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "281012521596043657216", - "outputQty0": "281912014265121876560", - "outputQty": "281410731161818449756", - "swapFee1": "168607512957626194", - "swapFee2": "112764805706048750", + "outputIndex": 1, + "inputQty": "21242177959039174967296", + "outputQty0": "21598124421668563107795", + "outputQty": "20288112445585618232123", + "swapFee1": "12745306775423504980", + "swapFee2": "12958874653001137864", "mpReserves": [ - "53313411987545258195496670", - "27056362069954015302141758", - "25057166511000826684120279" + "56910084599223256725564058", + "7576582816758192259562810", + "37584267546165420013601383" ], "fpReserves": [ - "6336055516922148515837007", - "13248283388713491804851313" + "2583013358742312694181424", + "1925342398037671021462057" ], - "mAssetSupply": "105403523215053227999422765", - "LPTokenSupply": "19430078246304697019075818" + "mAssetSupply": "101674911516592362627775122", + "LPTokenSupply": "4435262077646102698502307" }, { "type": "mint", "inputIndex": 2, - "inputQty": "433770817804424273985536", - "outputQty0": "434353670735437363526285", - "outputQty": "432596759263595715312019", + "inputQty": "11969156995144902246400", + "outputQty0": "11900612099607723668675", + "outputQty": "11697500622838420098633", + "mpReserves": [ + "56910084599223256725564058", + "7576582816758192259562810", + "37596236703160564915847783" + ], + "fpReserves": [ + "2594913970841920417850099", + "1925342398037671021462057" + ], + "mAssetSupply": "101686812128691970351443797", + "LPTokenSupply": "4446959578268941118600940" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "7186533275312615063552", + "outputIndex": 0, + "outputQty": "7282061482380017969050", + "swapFee": "0", + "redemptionFee": "4320665871800708761", "mpReserves": [ - "53313411987545258195496670", - "27056362069954015302141758", - "25490937328805250958105815" + "56902802537740876707595008", + "7576582816758192259562810", + "37596236703160564915847783" ], "fpReserves": [ - "6770409187657585879363292", - "13248283388713491804851313" + "2587712861055585903246940", + "1932528931312983636525609" ], - "mAssetSupply": "105837876885788665362949050", - "LPTokenSupply": "19862675005568292734387837" + "mAssetSupply": "101679615339571507637549399", + "LPTokenSupply": "4446959578268941118600940" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "247521516822299803648", - "outputQty0": "247845092281716180398", - "outputQty": "248971810684811770030", - "swapFee": "197426136068572040", + "inputIndex": 0, + "inputQty": "387450160142190080", + "outputQty0": "382913509242070288", + "outputQty": "381841827650752400", + "swapFee": "301106543899936", "mpReserves": [ - "53313411987545258195496670", - "27056362069954015302141758", - "25491184850322073257909463" + "56902802925191036849785088", + "7576582816758192259562810", + "37596236703160564915847783" ], "fpReserves": [ - "6770657032749867595543690", - "13248034416902806993081283" + "2587713243969095145317228", + "1932528549471155985773209" ], - "mAssetSupply": "105838124730880947079129448", - "LPTokenSupply": "19862675025310906341245041" + "mAssetSupply": "101679615722485016879619687", + "LPTokenSupply": "4446959578299051772990933" }, { - "type": "swap_fp_to_mp", - "inputQty": "626353045004232", - "outputIndex": 2, - "outputQty": "621957608004572", - "swapFee": "0", - "redemptionFee": "249207945891", + "type": "mint", + "inputIndex": 2, + "inputQty": "29808126430512064", + "outputQty0": "29637348157514266", + "outputQty": "29131903322686503", "mpReserves": [ - "53313411987545258195496670", - "27056362069954015302141758", - "25491184849700115649904891" + "56902802925191036849785088", + "7576582816758192259562810", + "37596236732968691346359847" ], "fpReserves": [ - "6770657032126847730813726", - "13248034417529160038085515" + "2587713273606443302831494", + "1932528549471155985773209" ], - "mAssetSupply": "105838124730258176422345375", - "LPTokenSupply": "19862675025310906341245041" + "mAssetSupply": "101679615752122365037133953", + "LPTokenSupply": "4446959607430955095677436" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "3970353516384025600", - "outputQty0": "3964176819572565863", - "outputQty": "3982196990942912086", - "swapFee": "3157746192192949", + "inputQty": "252463260669763289088", + "outputQty0": "249507162183141416277", + "outputQty": "248808646512524603765", + "swapFee": "196201559944029276", "mpReserves": [ - "53313415957898774579522270", - "27056362069954015302141758", - "25491184849700115649904891" + "56903055388451706613074176", + "7576582816758192259562810", + "37596236732968691346359847" ], "fpReserves": [ - "6770660996303667303379589", - "13248030435332169095173429" + "2587962780768626444247771", + "1932279740824643461169444" ], - "mAssetSupply": "105838128694434995994911238", - "LPTokenSupply": "19862675025626680960464335" + "mAssetSupply": "101679865259284548178550230", + "LPTokenSupply": "4446959627051111090080363" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "4078198005148333113344", - "outputQty0": "4082233766355807397598", - "outputQty": "4100770375912155355740", - "swapFee": "3251779865306922261", + "inputQty": "9887625780288919961600", + "outputQty0": "10520623626867537184204", + "outputQty": "10490795081418474242081", + "swapFee": "8272902301756846450", "mpReserves": [ - "53313415957898774579522270", - "27060440267959163635255102", - "25491184849700115649904891" + "56903055388451706613074176", + "7586470442538481179524410", + "37596236732968691346359847" ], "fpReserves": [ - "6774743230070023110777187", - "13243929664956256939817689" + "2598483404395493981431975", + "1921788945743224986927363" ], - "mAssetSupply": "105842210928201351802308836", - "LPTokenSupply": "19862675350804667491156561" + "mAssetSupply": "101690385882911415715734434", + "LPTokenSupply": "4446960454341341265765008" }, { "type": "swap_fp_to_mp", - "inputQty": "190627558518806118400", + "inputQty": "38773840663991306682368", "outputIndex": 1, - "outputQty": "189351771269154221726", + "outputQty": "36482378216569856325740", "swapFee": "0", - "redemptionFee": "75845978691550733", + "redemptionFee": "23309608521908027289", "mpReserves": [ - "53313415957898774579522270", - "27060250916187894481033376", - "25491184849700115649904891" + "56903055388451706613074176", + "7549988064321911323198670", + "37596236732968691346359847" ], "fpReserves": [ - "6774553615123294233943424", - "13244120292514775745936089" + "2559634056858980602615594", + "1960562786407216293609731" ], - "mAssetSupply": "105842021389100601617025806", - "LPTokenSupply": "19862675350804667491156561" + "mAssetSupply": "101651559844983424244945342", + "LPTokenSupply": "4446960454341341265765008" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "14331569898147782656", "outputIndex": 1, - "inputQty": "6943146402001802231808", - "outputQty0": "6968874108239340359754", - "outputQty": "6959198175848464398840", - "swapFee1": "4165887841201081339", - "swapFee2": "2787549643295736143", + "outputQty": "13479017448059654732", + "swapFee": "0", + "redemptionFee": "8614590193821806", "mpReserves": [ - "53313415957898774579522270", - "27053291718012046016634536", - "25491184849700115649904891" + "56903055388451706613074176", + "7549974585304463263543938", + "37596236732968691346359847" ], "fpReserves": [ - "6767584741015054893583670", - "13244120292514775745936089" + "2559619699208657566272073", + "1960577117977114441392387" ], - "mAssetSupply": "105835055302542005572402195", - "LPTokenSupply": "19855732620991449809032886" + "mAssetSupply": "101651545495947691402423627", + "LPTokenSupply": "4446960454341341265765008" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "16023535148776485289984", - "outputQty0": "16039385388735535914827", - "outputQty": "15970503878682077101321", + "inputQty": "24631146619003811659776", + "outputQty0": "26215912217940242047136", + "outputQty": "26145119547349528530487", + "swapFee": "20616326701657996572", "mpReserves": [ - "53313415957898774579522270", - "27069315253160822501924520", - "25491184849700115649904891" + "56903055388451706613074176", + "7574605731923467075203714", + "37596236732968691346359847" ], "fpReserves": [ - "6783624126403790429498497", - "13244120292514775745936089" + "2585835611426597808319209", + "1934431998429764912861900" ], - "mAssetSupply": "105851094687930741108317022", - "LPTokenSupply": "19871703124870131886134207" + "mAssetSupply": "101677761408165631644470763", + "LPTokenSupply": "4446962515974011431564665" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "185091989526000097558528", - "outputQty0": "185331253571916588907434", - "outputQty": "184516288761410220085830", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2063065753920800555008", + "outputQty0": "2195343467786841253476", + "outputQty": "2189210789972736737123", + "swapFee": "1726319511072266699", "mpReserves": [ - "53313415957898774579522270", - "27069315253160822501924520", - "25676276839226115747463419" + "56903055388451706613074176", + "7576668797677387875758722", + "37596236732968691346359847" ], "fpReserves": [ - "6968955379975707018405931", - "13244120292514775745936089" + "2588030954894384649572685", + "1932242787639792176124777" ], - "mAssetSupply": "106036425941502657697224456", - "LPTokenSupply": "20056219413631542106220037" + "mAssetSupply": "101679956751633418485724239", + "LPTokenSupply": "4446962688605962538791334" }, { "type": "swap_fp_to_mp", - "inputQty": "17177720803888068608", + "inputQty": "5301600418556122112", "outputIndex": 2, - "outputQty": "17062955571586142124", + "outputQty": "5339641466823472892", "swapFee": "0", - "redemptionFee": "6836636431872159", + "redemptionFee": "3187342338175960", "mpReserves": [ - "53313415957898774579522270", - "27069315253160822501924520", - "25676259776270544161321295" + "56903055388451706613074176", + "7576668797677387875758722", + "37596231393327224522886955" ], "fpReserves": [ - "6968938288384627338007107", - "13244137470235579634004697" + "2588025642657154356305035", + "1932248089240210732246889" ], - "mAssetSupply": "106036408856748214448697791", - "LPTokenSupply": "20056219413631542106220037" + "mAssetSupply": "101679951442583530530632549", + "LPTokenSupply": "4446962688605962538791334" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "2116221323918213", - "outputQty0": "2124489595270488", - "outputQty": "2120930190596838", - "swapFee1": "1269732794350", - "swapFee2": "849795838108", + "outputIndex": 0, + "inputQty": "269428036207219602096128", + "outputQty0": "273893034853955123285954", + "outputQty": "276961847405071629568519", + "swapFee1": "161656821724331761257", + "swapFee2": "164335820912373073971", "mpReserves": [ - "53313415957898774579522270", - "27069315253160822501924520", - "25676259774149613970724457" + "56626093541046634983505657", + "7576668797677387875758722", + "37596231393327224522886955" ], "fpReserves": [ - "6968938286260137742736619", - "13244137470235579634004697" + "2314132607803199233019081", + "1932248089240210732246889" ], - "mAssetSupply": "106036408854624574649265411", - "LPTokenSupply": "20056219411515447755581259" + "mAssetSupply": "101406222743550487780420566", + "LPTokenSupply": "4177550818080915369871331" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2450899637228895232", - "outputQty0": "2454030800294931845", - "outputQty": "2443013301213796720", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "85043693153092320", + "outputQty0": "90458758698892636", + "outputQty": "90277046098388931", + "swapFee": "71154788344551", "mpReserves": [ - "53313415957898774579522270", - "27069315253160822501924520", - "25676262225049251199619689" + "56626093541046634983505657", + "7576668882721081028851042", + "37596231393327224522886955" ], "fpReserves": [ - "6968940740290938037668464", - "13244137470235579634004697" + "2314132698261957931911717", + "1932247998963164633857958" ], - "mAssetSupply": "106036411308655374944197256", - "LPTokenSupply": "20056221854528748969377979" + "mAssetSupply": "101406222834009246479313202", + "LPTokenSupply": "4177550818088030848705786" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "385674146942529634304", - "outputQty0": "386058779876918547749", - "outputQty": "384325475968181816387", + "inputQty": "697500862019463091847168", + "outputQty0": "738225544751123600334126", + "outputQty": "734445584532758982300722", + "swapFee": "580422972117901894337", "mpReserves": [ - "53313415957898774579522270", - "27069700927307765031558824", - "25676262225049251199619689" + "56626093541046634983505657", + "8274169744740544120698210", + "37596231393327224522886955" ], "fpReserves": [ - "6969326799070814956216213", - "13244137470235579634004697" + "3052358243013081532245843", + "1197802414430405651557236" ], - "mAssetSupply": "106036797367435251862745005", - "LPTokenSupply": "20056606180004717151194366" + "mAssetSupply": "102144448378760370079647328", + "LPTokenSupply": "4177608860385242638895219" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "704762462298401612496896", - "outputQty0": "707248104660972477587798", - "outputQty": "706224958191513280047981", - "swapFee1": "422857477379040967498", - "swapFee2": "282899241864388991035", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1254041813405700194304", + "outputQty0": "1321167544516048724104", + "outputQty": "1308554747423757159066", + "swapFee": "1036315135346724171", "mpReserves": [ - "53313415957898774579522270", - "26363475969116251751510843", - "25676262225049251199619689" + "56626093541046634983505657", + "8275423786553949820892514", + "37596231393327224522886955" ], "fpReserves": [ - "6262078694409842478628415", - "13244137470235579634004697" + "3053679410557597580969947", + "1196493859682981894398170" ], - "mAssetSupply": "105329832162016143774148242", - "LPTokenSupply": "19351886003454053442794219" + "mAssetSupply": "102145769546304886128371432", + "LPTokenSupply": "4177608964016756173567636" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "5090221733714366300160", - "outputQty0": "5106130024212350648445", - "outputQty": "5098476280109218519976", - "swapFee1": "3054133040228619780", - "swapFee2": "2042452009684940259", + "type": "mint", + "inputIndex": 0, + "inputQty": "401471848958523368013824", + "outputQty0": "397175249555241770572186", + "outputQty": "389312493934455594711184", "mpReserves": [ - "53313415957898774579522270", - "26358377492836142532990867", - "25676262225049251199619689" + "57027565390005158351519481", + "8275423786553949820892514", + "37596231393327224522886955" ], "fpReserves": [ - "6256972564385630127979970", - "13244137470235579634004697" + "3450854660112839351542133", + "1196493859682981894398170" ], - "mAssetSupply": "105324728074443941108440056", - "LPTokenSupply": "19346796087133643099356037" + "mAssetSupply": "102542944795860127898943618", + "LPTokenSupply": "4566921457951211768278820" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "44614361330884673536", - "outputQty0": "44669764729887679355", - "outputQty": "44912984106759245455", - "swapFee": "35603213119474273", + "type": "swap_fp_to_mp", + "inputQty": "5045861978444972163072", + "outputIndex": 0, + "outputQty": "5153348556968813313390", + "swapFee": "0", + "redemptionFee": "3060609085781201131", "mpReserves": [ - "53313415957898774579522270", - "26358377492836142532990867", - "25676306839410582084293225" + "57022412041448189538206091", + "8275423786553949820892514", + "37596231393327224522886955" ], "fpReserves": [ - "6257017234150360015659325", - "13244092557251472874759242" + "3445753644969870682989886", + "1201539721661426866561242" ], - "mAssetSupply": "105324772744208670996119411", - "LPTokenSupply": "19346796090693964411303464" + "mAssetSupply": "102537846841326245011592502", + "LPTokenSupply": "4566921457951211768278820" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2747327564866233349177344", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "8540983880472804196352", - "outputIndex": 0, - "outputQty": "8497863524024023941124", + "inputQty": "7219726526872753152", + "outputIndex": 2, + "outputQty": "7331007136227401879", "swapFee": "0", - "redemptionFee": "3395133693656783665", + "redemptionFee": "4378948239769643", "mpReserves": [ - "53304918094374750555581146", - "26358377492836142532990867", - "25676306839410582084293225" + "57022412041448189538206091", + "8275423786553949820892514", + "37596224062320088295485076" ], "fpReserves": [ - "6248529399916218056495502", - "13252633541131945678955594" + "3445746346722804400251133", + "1201546941387953739314394" ], - "mAssetSupply": "105316288305108222693739253", - "LPTokenSupply": "19346796090693964411303464" + "mAssetSupply": "102537839547458126968623392", + "LPTokenSupply": "4566921457951211768278820" }, { "type": "mint", "inputIndex": 0, - "inputQty": "53423009339569965367296", - "outputQty0": "53338554520898072891710", - "outputQty": "53139667581127114944938", + "inputQty": "358927192960506961854464", + "outputQty0": "355053960974245430584323", + "outputQty": "347847277638781097777512", "mpReserves": [ - "53358341103714320520948442", - "26358377492836142532990867", - "25676306839410582084293225" + "57381339234408696500060555", + "8275423786553949820892514", + "37596224062320088295485076" ], "fpReserves": [ - "6301867954437116129387212", - "13252633541131945678955594" + "3800800307697049830835456", + "1201546941387953739314394" ], - "mAssetSupply": "105369626859629120766630963", - "LPTokenSupply": "19399935758275091526248402" + "mAssetSupply": "102892893508432372399207715", + "LPTokenSupply": "4914768735589992866056332" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "268729082949539102720", - "outputQty0": "269025545512049876306", - "outputQty": "268013175401994939516", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "24076661990970431111168", + "outputQty0": "23955240909099828402499", + "outputQty": "23624146903315678908002", + "swapFee": "18770165455657946461", "mpReserves": [ - "53358341103714320520948442", - "26358646221919092072093587", - "25676306839410582084293225" + "57381339234408696500060555", + "8275423786553949820892514", + "37620300724311058726596244" ], "fpReserves": [ - "6302136979982628179263518", - "13252633541131945678955594" + "3824755548606149659237955", + "1177922794484638060406392" ], - "mAssetSupply": "105369895885174632816507269", - "LPTokenSupply": "19400203771450493521187918" + "mAssetSupply": "102916848749341472227610214", + "LPTokenSupply": "4914770612606538431850978" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "9888377949852568387584", - "outputQty0": "9872730116627106500288", - "outputQty": "9925573093119940529264", - "swapFee": "7868411594400085832", + "type": "swap_fp_to_mp", + "inputQty": "3832862445729307164672", + "outputIndex": 2, + "outputQty": "3901797487162271507084", + "swapFee": "0", + "redemptionFee": "2330663441707079571", "mpReserves": [ - "53368229481664173089336026", - "26358646221919092072093587", - "25676306839410582084293225" + "57381339234408696500060555", + "8275423786553949820892514", + "37616398926823896455089160" ], "fpReserves": [ - "6312009710099255285763806", - "13242707968038825738426330" + "3820871109536637859952844", + "1181755656930367367571064" ], - "mAssetSupply": "105379768615291259923007557", - "LPTokenSupply": "19400204558291652961196501" + "mAssetSupply": "102912966640935402135404674", + "LPTokenSupply": "4914770612606538431850978" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "104554389548356425744384", - "outputQty0": "104388637141902254506696", - "outputQty": "104930924813066843200821", - "swapFee": "83189630054049665325", + "inputIndex": 2, + "inputQty": "1033369990065231888384", + "outputQty0": "1028155891841433553477", + "outputQty": "1013729277836094991368", + "swapFee": "805527803701236519", "mpReserves": [ - "53472783871212529515080410", - "26358646221919092072093587", - "25676306839410582084293225" + "57381339234408696500060555", + "8275423786553949820892514", + "37617432296813961686977544" ], "fpReserves": [ - "6416398347241157540270502", - "13137777043225758895225509" + "3821899265428479293506321", + "1180741927652531272579696" ], - "mAssetSupply": "105484157252433162177514253", - "LPTokenSupply": "19400212877254658366163033" + "mAssetSupply": "102913994796827243568958151", + "LPTokenSupply": "4914770693159318801974629" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "766035410332408741888", - "outputQty0": "768631826691754494817", - "outputQty": "767364909975612399774", - "swapFee1": "459621246199445245", - "swapFee2": "307452730676701797", + "outputIndex": 0, + "inputQty": "61923583675298450767872", + "outputQty0": "63189741506610862477844", + "outputQty": "63842901960076505736449", + "swapFee1": "37154150205179070460", + "swapFee2": "37913844903966517486", "mpReserves": [ - "53472783871212529515080410", - "26358646221919092072093587", - "25675539474500606471893451" + "57317496332448619994324106", + "8275423786553949820892514", + "37617432296813961686977544" ], "fpReserves": [ - "6415629715414465785775685", - "13137777043225758895225509" + "3758709523921868431028477", + "1180741927652531272579696" ], - "mAssetSupply": "105483388928059201099721233", - "LPTokenSupply": "19399446887806450577365669" + "mAssetSupply": "102850842969165536672997793", + "LPTokenSupply": "4852850824899040869113803" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "37105789070106635010048", - "outputQty0": "37230704741267141769290", - "outputQty": "37274969827008206383122", - "swapFee1": "22263473442063981006", - "swapFee2": "14892281896506856707", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "865443910880374947840", + "outputQty0": "912550942634664047296", + "outputQty": "900064970703800374076", + "swapFee": "715010439024157627", "mpReserves": [ - "53435508901385521308697288", - "26358646221919092072093587", - "25675539474500606471893451" + "57317496332448619994324106", + "8276289230464830195840354", + "37617432296813961686977544" ], "fpReserves": [ - "6378399010673198644006395", - "13137777043225758895225509" + "3759622074864503095075773", + "1179841862681827472205620" ], - "mAssetSupply": "105446173115599830464808650", - "LPTokenSupply": "19362343325083688148753721" + "mAssetSupply": "102851755520108171337045089", + "LPTokenSupply": "4852850896400084771529565" }, { "type": "redeem", + "outputIndex": 1, + "inputQty": "533855950795250595790848", + "outputQty0": "544539381755677152897359", + "outputQty": "514389928716114692650614", + "swapFee1": "320313570477150357474", + "swapFee2": "326723629053406291738", + "mpReserves": [ + "57317496332448619994324106", + "7761899301748715503189740", + "37617432296813961686977544" + ], + "fpReserves": [ + "3215082693108825942178414", + "1179841862681827472205620" + ], + "mAssetSupply": "102307542861981547590439468", + "LPTokenSupply": "4319026976961881890774464" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "4008483194864105472", "outputIndex": 0, - "inputQty": "650984547195271380992", - "outputQty0": "653161759109867504283", - "outputQty": "653937705258512160589", - "swapFee1": "390590728317162828", - "swapFee2": "261264703643947001", + "outputQty": "4093097271002424717", + "swapFee": "0", + "redemptionFee": "2428994700875531", "mpReserves": [ - "53434854963680262796536699", - "26358646221919092072093587", - "25675539474500606471893451" + "57317492239351348991899389", + "7761899301748715503189740", + "37617432296813961686977544" ], "fpReserves": [ - "6377745848914088776502112", - "13137777043225758895225509" + "3215078644784324482959418", + "1179845871165022336311092" ], - "mAssetSupply": "105445520215105424241251368", - "LPTokenSupply": "19361692379595565709089011" + "mAssetSupply": "102307538816086040832096003", + "LPTokenSupply": "4319026976961881890774464" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1086260286574741080244224", - "outputQty0": "1084507732160630226075932", - "outputQty": "1088662582696315365279535", - "swapFee": "863699126333392119588", + "type": "swap_fp_to_mp", + "inputQty": "54578252863390240210944", + "outputIndex": 1, + "outputQty": "51835985874613609879139", + "swapFee": "0", + "redemptionFee": "33054908909829100485", "mpReserves": [ - "54521115250255003876780923", - "26358646221919092072093587", - "25675539474500606471893451" + "57317492239351348991899389", + "7710063315874101893310601", + "37617432296813961686977544" ], "fpReserves": [ - "7462253581074719002578044", - "12049114460529443529945974" + "3159987129934609315482783", + "1234424124028412576522036" ], - "mAssetSupply": "106530027947266054467327300", - "LPTokenSupply": "19361778749508199048300969" + "mAssetSupply": "102252480356145235493719853", + "LPTokenSupply": "4319026976961881890774464" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "10489458449513066", - "outputQty0": "10472248495144213", - "outputQty": "10500403388996515", - "swapFee": "8331468567402", + "type": "swap_fp_to_mp", + "inputQty": "338943306717339975680", + "outputIndex": 1, + "outputQty": "321623357396488860864", + "swapFee": "0", + "redemptionFee": "205173509408155500", "mpReserves": [ - "54521115260744462326293989", - "26358646221919092072093587", - "25675539474500606471893451" + "57317492239351348991899389", + "7709741692516705404449737", + "37617432296813961686977544" ], "fpReserves": [ - "7462253591546967497722257", - "12049114450029040140949459" + "3159645174085595722981457", + "1234763067335129916497716" ], - "mAssetSupply": "106530027957738302962471513", - "LPTokenSupply": "19361778749509032195157709" + "mAssetSupply": "102252138605469731309374027", + "LPTokenSupply": "4319026976961881890774464" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "4502016878310107643904", - "outputQty0": "4494629952509508680188", - "outputQty": "4506694899145755551203", - "swapFee": "3575813562763426967", + "type": "swap_fp_to_mp", + "inputQty": "46786380208430", + "outputIndex": 0, + "outputQty": "47727868529197", + "swapFee": "0", + "redemptionFee": "28321245972", "mpReserves": [ - "54525617277622772433937893", - "26358646221919092072093587", - "25675539474500606471893451" + "57317492239303621123370192", + "7709741692516705404449737", + "37617432296813961686977544" ], "fpReserves": [ - "7466748221499477006402445", - "12044607755129894385398256" + "3159645174038393646361280", + "1234763067381916296706146" ], - "mAssetSupply": "106534522587690812471151701", - "LPTokenSupply": "19361779107090388471500405" + "mAssetSupply": "102252138605422557553999822", + "LPTokenSupply": "4319026976961881890774464" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "3006868212255256739840", - "outputQty0": "3021787803844671076996", - "outputQty": "3017071332523122937816", - "swapFee1": "1804120927353154043", - "swapFee2": "1208715121537868430", + "type": "mint", + "inputIndex": 1, + "inputQty": "10085611814569868525568", + "outputQty0": "10715988254493742642651", + "outputQty": "10505858955235571952443", "mpReserves": [ - "54525617277622772433937893", - "26355629150586568949155771", - "25675539474500606471893451" + "57317492239303621123370192", + "7719827304331275272975305", + "37617432296813961686977544" ], "fpReserves": [ - "7463726433695632335325449", - "12044607755129894385398256" + "3170361162292887389003931", + "1234763067381916296706146" ], - "mAssetSupply": "106531502008602089337943135", - "LPTokenSupply": "19358772419290225950075969" + "mAssetSupply": "102262854593677051296642473", + "LPTokenSupply": "4329532835917117462726907" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "426372184959828180860928", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "39665354045917384146944", - "outputIndex": 2, - "outputQty": "39458579453720743364904", + "inputQty": "3556065606213334016", + "outputIndex": 0, + "outputQty": "3627763899563308612", "swapFee": "0", - "redemptionFee": "15810430999790639766", + "redemptionFee": "2152712223428014", "mpReserves": [ - "54525617277622772433937893", - "26355629150586568949155771", - "25636080895046885728528547" + "57317488611539721560061580", + "7719827304331275272975305", + "37617432296813961686977544" ], "fpReserves": [ - "7424200356196155735908305", - "12084273109175811769545200" + "3170357574439181675647195", + "1234766623447522510040162" ], - "mAssetSupply": "106491991741533612529165757", - "LPTokenSupply": "19358772419290225950075969" + "mAssetSupply": "102262851007976057806713751", + "LPTokenSupply": "4329532835917117462726907" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "626953367828554638688256", - "outputQty0": "629880049118327829526701", - "outputQty": "630654386288096528465000", - "swapFee1": "376172020697132783212", - "swapFee2": "251952019647331131810", + "type": "mint", + "inputIndex": 0, + "inputQty": "190264127199553972600832", + "outputQty0": "188053515875632647096307", + "outputQty": "184340150382654384293646", "mpReserves": [ - "53894962891334675905472893", - "26355629150586568949155771", - "25636080895046885728528547" + "57507752738739275532662412", + "7719827304331275272975305", + "37617432296813961686977544" ], "fpReserves": [ - "6794320307077827906381604", - "12084273109175811769545200" + "3358411090314814322743502", + "1234766623447522510040162" ], - "mAssetSupply": "105862363644434932030770866", - "LPTokenSupply": "18731856668663741024666034" + "mAssetSupply": "102450904523851690453810058", + "LPTokenSupply": "4513872986299771847020553" }, { - "type": "swap_fp_to_mp", - "inputQty": "247326935380888492441600", - "outputIndex": 1, - "outputQty": "245800359580529751219620", - "swapFee": "0", - "redemptionFee": "98472367727681998110", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "28990354033631997984768", + "outputQty0": "30801581821521013939260", + "outputQty": "30465877478857707004026", + "swapFee": "24150978130224274725", "mpReserves": [ - "53894962891334675905472893", - "26109828791006039197936151", - "25636080895046885728528547" + "57507752738739275532662412", + "7748817658364907270960073", + "37617432296813961686977544" ], "fpReserves": [ - "6548139387758622911106400", - "12331600044556700261986800" + "3389212672136335336682762", + "1204300745968664803036136" ], - "mAssetSupply": "105616281197483454717493772", - "LPTokenSupply": "18731856668663741024666034" + "mAssetSupply": "102481706105673211467749318", + "LPTokenSupply": "4513875401397584869448025" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3100456802106029056", - "outputQty0": "3104384315462109635", - "outputQty": "3089998565009033695", + "type": "swap_fp_to_mp", + "inputQty": "47624497903968108675072", + "outputIndex": 0, + "outputQty": "48637704767796912175731", + "swapFee": "0", + "redemptionFee": "28861623715973630634", "mpReserves": [ - "53894962891334675905472893", - "26109828791006039197936151", - "25636083995503687834557603" + "57459115033971478620486681", + "7748817658364907270960073", + "37617432296813961686977544" ], "fpReserves": [ - "6548142492142938373216035", - "12331600044556700261986800" + "3341109965943045952291836", + "1251925243872632911711208" ], - "mAssetSupply": "105616284301867770179603407", - "LPTokenSupply": "18731859758662306033699729" + "mAssetSupply": "102433632261103638056989026", + "LPTokenSupply": "4513875401397584869448025" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "3815376135555570688", - "outputQty0": "3809179728495201371", - "outputQty": "3824952222044652826", - "swapFee": "3033222348046596", + "type": "swap_fp_to_mp", + "inputQty": "86086149942361410502656", + "outputIndex": 2, + "outputQty": "87273992418256883249956", + "swapFee": "0", + "redemptionFee": "52107213348434571361", "mpReserves": [ - "53894966706710811461043581", - "26109828791006039197936151", - "25636083995503687834557603" + "57459115033971478620486681", + "7748817658364907270960073", + "37530158304395704803727588" ], "fpReserves": [ - "6548146301322666868417406", - "12331596219604478217333974" + "3254264610362321666688855", + "1338011393814994322213864" ], - "mAssetSupply": "105616288111047498674804778", - "LPTokenSupply": "18731859758965628268504388" + "mAssetSupply": "102346839012736262205957406", + "LPTokenSupply": "4513875401397584869448025" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "1081644048121203064307712", - "outputQty0": "1079857808073518499956554", - "outputQty": "1083074712622883950182048", - "swapFee": "859465739943487683342", + "inputQty": "52669219916408", + "outputQty0": "52058592763970", + "outputQty": "51598729009315", + "swapFee": "40839423558", "mpReserves": [ - "54976610754832014525351293", - "26109828791006039197936151", - "25636083995503687834557603" + "57459115034024147840403089", + "7748817658364907270960073", + "37530158304395704803727588" ], "fpReserves": [ - "7628004109396185368373960", - "11248521506981594267151926" + "3254264610414380259452825", + "1338011393763395593204549" ], - "mAssetSupply": "106696145919121017174761332", - "LPTokenSupply": "18731945705539622617272722" + "mAssetSupply": "102346839012788320798721376", + "LPTokenSupply": "4513875401397588953390380" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "556045280643523452862464", - "outputQty0": "556701012098514834916921", - "outputQty": "553247982781872209095222", + "type": "redeem", + "outputIndex": 1, + "inputQty": "7281954417967586344960", + "outputQty0": "7421436624005626811583", + "outputQty": "6983026484632585996192", + "swapFee1": "4369172650780551806", + "swapFee2": "4452861974403376086", "mpReserves": [ - "54976610754832014525351293", - "26665874071649562650798615", - "25636083995503687834557603" + "57459115034024147840403089", + "7741834631880274684963881", + "37530158304395704803727588" ], "fpReserves": [ - "8184705121494700203290881", - "11248521506981594267151926" + "3246843173790374632641242", + "1338011393763395593204549" ], - "mAssetSupply": "107252846931219532009678253", - "LPTokenSupply": "19285193688321494826367944" + "mAssetSupply": "102339422029026289575285879", + "LPTokenSupply": "4506593883896886445100600" }, { "type": "swap_fp_to_mp", - "inputQty": "15714857033937", + "inputQty": "28004102390698", "outputIndex": 0, - "outputQty": "15700033038305", + "outputQty": "28544430917582", "swapFee": "0", - "redemptionFee": "6272159845", + "redemptionFee": "16938082894", "mpReserves": [ - "54976610754816314492312988", - "26665874071649562650798615", - "25636083995503687834557603" + "57459115033995603409485507", + "7741834631880274684963881", + "37530158304395704803727588" ], "fpReserves": [ - "8184705121479019803677581", - "11248521506997309124185863" + "3246843173762144494483341", + "1338011393791399695595247" ], - "mAssetSupply": "107252846931203857882224798", - "LPTokenSupply": "19285193688321494826367944" + "mAssetSupply": "102339422028998076375210872", + "LPTokenSupply": "4506593883896886445100600" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "45277459757990674432", - "outputQty0": "45338739191141436924", - "outputQty": "45050547227925496613", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2267604543379390", + "outputQty0": "2408648919466712", + "outputQty": "2387451628646296", + "swapFee": "1889576829550", "mpReserves": [ - "54976610754816314492312988", - "26665874071649562650798615", - "25636129272963445825232035" + "57459115033995603409485507", + "7741834634147879228343271", + "37530158304395704803727588" ], "fpReserves": [ - "8184750460218210945114505", - "11248521506997309124185863" + "3246843176170793413950053", + "1338011391403948066948951" ], - "mAssetSupply": "107252892269943049023661722", - "LPTokenSupply": "19285238738868722751864557" + "mAssetSupply": "102339422031406725294677584", + "LPTokenSupply": "4506593883897075402783555" }, { - "type": "swap_fp_to_mp", - "inputQty": "747419974094281506816", + "type": "redeem", "outputIndex": 2, - "outputQty": "744474780282580096742", - "swapFee": "0", - "redemptionFee": "298312289599710006", + "inputQty": "13785774818589914693632", + "outputQty0": "14049647666938316940215", + "outputQty": "14118859430438888157760", + "swapFee1": "8271464891153948816", + "swapFee2": "8429788600162990164", "mpReserves": [ - "54976610754816314492312988", - "26665874071649562650798615", - "25635384798183163245135293" + "57459115033995603409485507", + "7741834634147879228343271", + "37516039444965265915569828" ], "fpReserves": [ - "8184004679494211670098810", - "11249268926971403405692679" + "3232793528503855097009838", + "1338011391403948066948951" ], - "mAssetSupply": "107252146787531339348356033", - "LPTokenSupply": "19285238738868722751864557" + "mAssetSupply": "102325380813528387140727533", + "LPTokenSupply": "4492808936224974603484804" }, { "type": "mint", "inputIndex": 0, - "inputQty": "965220628146786513453056", - "outputQty0": "963604618539915294317004", - "outputQty": "957254980629100819260930", + "inputQty": "18495467176111202369536", + "outputQty0": "18280781985776023588642", + "outputQty": "17926600049836682063912", "mpReserves": [ - "55941831382963101005766044", - "26665874071649562650798615", - "25635384798183163245135293" + "57477610501171714611855043", + "7741834634147879228343271", + "37516039444965265915569828" ], "fpReserves": [ - "9147609298034126964415814", - "11249268926971403405692679" + "3251074310489631120598480", + "1338011391403948066948951" ], - "mAssetSupply": "108215751406071254642673037", - "LPTokenSupply": "20242493719497823571125487" + "mAssetSupply": "102343661595514163164316175", + "LPTokenSupply": "4510735536274811285548716" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "213818610346767", - "outputQty0": "213455457623814", - "outputQty": "213582207560970", - "swapFee": "169602143227", + "inputIndex": 2, + "inputQty": "7829679603264792576", + "outputQty0": "7786651791442955853", + "outputQty": "7717978114394388324", + "swapFee": "6108557413952181", "mpReserves": [ - "55941831383176919616112811", - "26665874071649562650798615", - "25635384798183163245135293" + "57477610501171714611855043", + "7741834634147879228343271", + "37516047274644869180362404" ], "fpReserves": [ - "9147609298247582422039628", - "11249268926757821198131709" + "3251082097141422563554333", + "1338003673425833672560627" ], - "mAssetSupply": "108215751406284710100296851", - "LPTokenSupply": "20242493719497840531339809" + "mAssetSupply": "102343669382165954607272028", + "LPTokenSupply": "4510735536885667026943934" }, { - "type": "swap_fp_to_mp", - "inputQty": "7013214236257371029504", - "outputIndex": 0, - "outputQty": "7012518639363276036516", - "swapFee": "0", - "redemptionFee": "2801364427840589523", + "type": "mint", + "inputIndex": 2, + "inputQty": "42051855447840666943488", + "outputQty0": "41820479120266690532081", + "outputQty": "41008599738614369321692", "mpReserves": [ - "55934818864537556340076295", - "26665874071649562650798615", - "25635384798183163245135293" + "57477610501171714611855043", + "7741834634147879228343271", + "37558099130092709847305892" ], "fpReserves": [ - "9140605887177980948229940", - "11256282140994078569161213" + "3292902576261689254086414", + "1338003673425833672560627" ], - "mAssetSupply": "108208750796579536467076686", - "LPTokenSupply": "20242493719497840531339809" + "mAssetSupply": "102385489861286221297804109", + "LPTokenSupply": "4551744136624281396265626" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "34697431718165865299968", - "outputQty0": "34638483107458412869828", - "outputQty": "34402666982480726775131", + "type": "swap_fp_to_mp", + "inputQty": "860924547588993664", + "outputIndex": 2, + "outputQty": "872338707512893319", + "swapFee": "0", + "redemptionFee": "520832372094922", "mpReserves": [ - "55969516296255722205376263", - "26665874071649562650798615", - "25635384798183163245135293" + "57477610501171714611855043", + "7741834634147879228343271", + "37558098257754002334412573" ], "fpReserves": [ - "9175244370285439361099768", - "11256282140994078569161213" + "3292901708207735762548461", + "1338004534350381261554291" ], - "mAssetSupply": "108243389279686994879946514", - "LPTokenSupply": "20276896386480321258114940" + "mAssetSupply": "102385488993753100178361078", + "LPTokenSupply": "4551744136624281396265626" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "1074097704416554624", - "outputQty0": "1075372416464045693", - "outputQty": "1075993015769955277", - "swapFee": "854434887244386", + "inputQty": "183476587281693626335232", + "outputQty0": "194638593367432598145954", + "outputQty": "192549421329036749500982", + "swapFee": "152664309051473473575", "mpReserves": [ - "55969516296255722205376263", - "26665875145747267067353239", - "25635384798183163245135293" + "57477610501171714611855043", + "7925311221429572854678503", + "37558098257754002334412573" ], "fpReserves": [ - "9175245445657855825145461", - "11256281065001062799205936" + "3487540301575168360694415", + "1145455113021344512053309" ], - "mAssetSupply": "108243390355059411343992207", - "LPTokenSupply": "20276896386565764746839378" + "mAssetSupply": "102580127587120532776507032", + "LPTokenSupply": "4551759403055186543612983" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "11806537302662069616640", - "outputQty0": "11823153496388089564384", - "outputQty": "11829880236481321853625", - "swapFee": "9394038483883393170", + "type": "redeem", + "outputIndex": 2, + "inputQty": "34307664077541292900352", + "outputQty0": "35002296666636874754296", + "outputQty": "35168689848923671848389", + "swapFee1": "20584598446524775740", + "swapFee2": "21001377999982124852", "mpReserves": [ - "55969516296255722205376263", - "26665875145747267067353239", - "25647191335485825314751933" + "57477610501171714611855043", + "7925311221429572854678503", + "37522929567905078662564184" ], "fpReserves": [ - "9187068599154243914709845", - "11244451184764581477352311" + "3452538004908531485940119", + "1145455113021344512053309" ], - "mAssetSupply": "108255213508555799433556591", - "LPTokenSupply": "20276897325969613135178695" + "mAssetSupply": "102545146291831895883877588", + "LPTokenSupply": "4517453797437489903190205" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "6640070477784325029888", - "outputQty0": "6681675981571533784168", - "outputQty": "6671078809602305227219", - "swapFee1": "3984042286670595017", - "swapFee2": "2672670392628613513", + "outputIndex": 2, + "inputQty": "4496715182934998908928", + "outputQty0": "4587644415956224709964", + "outputQty": "4609424206813174588367", + "swapFee1": "2698029109760999345", + "swapFee2": "2752586649573734825", + "mpReserves": [ + "57477610501171714611855043", + "7925311221429572854678503", + "37518320143698265487975817" + ], + "fpReserves": [ + "3447950360492575261230155", + "1145455113021344512053309" + ], + "mAssetSupply": "102540561400002589232902449", + "LPTokenSupply": "4512957352057465880381211" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "4036079498078945017856", + "outputQty0": "4014598950621226855499", + "outputQty": "3964266198639410503655", + "swapFee": "3146133032044951657", "mpReserves": [ - "55969516296255722205376263", - "26659204066937664762126020", - "25647191335485825314751933" + "57477610501171714611855043", + "7925311221429572854678503", + "37522356223196344432993673" ], "fpReserves": [ - "9180386923172672380925677", - "11244451184764581477352311" + "3451964959443196488085654", + "1141490846822705101549654" ], - "mAssetSupply": "108248534505244620528385936", - "LPTokenSupply": "20270257653896057477208308" + "mAssetSupply": "102544575998953210459757948", + "LPTokenSupply": "4512957666670769084876376" }, { "type": "swap_fp_to_mp", - "inputQty": "580421614384260992", + "inputQty": "10508943487145393258496", "outputIndex": 2, - "outputQty": "578583936357821176", + "outputQty": "10683498396039465462486", "swapFee": "0", - "redemptionFee": "231851713507453", + "redemptionFee": "6379818210017345349", "mpReserves": [ - "55969516296255722205376263", - "26659204066937664762126020", - "25647190756901888956930757" + "57477610501171714611855043", + "7925311221429572854678503", + "37511672724800304967531187" ], "fpReserves": [ - "9180386343543388612291884", - "11244451765186195861613303" + "3441331929093167579169786", + "1151999790309850494808150" ], - "mAssetSupply": "108248533925847188473259596", - "LPTokenSupply": "20270257653896057477208308" + "mAssetSupply": "102533949348421391568187429", + "LPTokenSupply": "4512957666670769084876376" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "61516837533983703040", - "outputQty0": "61603330592410740375", - "outputQty": "61183080407251404718", + "type": "swap_fp_to_mp", + "inputQty": "179352590809651936", + "outputIndex": 0, + "outputQty": "183419293831797624", + "swapFee": "0", + "redemptionFee": "108868674881962", "mpReserves": [ - "55969516296255722205376263", - "26659204066937664762126020", - "25647252273739422940633797" + "57477610317752420780057419", + "7925311221429572854678503", + "37511672724800304967531187" ], "fpReserves": [ - "9180447946873981023032259", - "11244451765186195861613303" + "3441331747645376109231803", + "1151999969662441304460086" ], - "mAssetSupply": "108248595529177780883999971", - "LPTokenSupply": "20270318836976464728613026" + "mAssetSupply": "102533949167082468773131408", + "LPTokenSupply": "4512957666670769084876376" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "49343688578263900160", - "outputQty0": "49652807706868151055", - "outputQty": "49563260381089159357", - "swapFee1": "29606213146958340", - "swapFee2": "19861123082747260", + "type": "swap_fp_to_mp", + "inputQty": "76663353909462173745152", + "outputIndex": 1, + "outputQty": "73066491280233905638602", + "swapFee": "0", + "redemptionFee": "46496023106861974867", "mpReserves": [ - "55969516296255722205376263", - "26659204066937664762126020", - "25647202710479041851474440" + "57477610317752420780057419", + "7852244730149338949039901", + "37511672724800304967531187" ], "fpReserves": [ - "9180398294066274154881204", - "11244451765186195861613303" + "3363838375800606151119812", + "1228663323571903478205238" ], - "mAssetSupply": "108248545896231197098596176", - "LPTokenSupply": "20270269496248507779408700" + "mAssetSupply": "102456502291260805676994284", + "LPTokenSupply": "4512957666670769084876376" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "36074768720436576256", - "outputQty0": "36013460063492006127", - "outputQty": "35767780727093480114", + "inputIndex": 2, + "inputQty": "247863440793752173543424", + "outputQty0": "246518283222694814751683", + "outputQty": "241558940570331716282067", "mpReserves": [ - "55969552371024442641952519", - "26659204066937664762126020", - "25647202710479041851474440" + "57477610317752420780057419", + "7852244730149338949039901", + "37759536165594057141074611" ], "fpReserves": [ - "9180434307526337646887331", - "11244451765186195861613303" + "3610356659023300965871495", + "1228663323571903478205238" ], - "mAssetSupply": "108248581909691260590602303", - "LPTokenSupply": "20270305264029234872888814" + "mAssetSupply": "102703020574483500491745967", + "LPTokenSupply": "4754516607241100801158443" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1869749536487106304", - "outputQty0": "1871971572174497251", - "outputQty": "1859201200704907265", + "type": "swap_fp_to_mp", + "inputQty": "255297045791511247060992", + "outputIndex": 0, + "outputQty": "260414706010723981263046", + "swapFee": "0", + "redemptionFee": "154560885559337176471", "mpReserves": [ - "55969552371024442641952519", - "26659205936687201249232324", - "25647202710479041851474440" + "57217195611741696798794373", + "7852244730149338949039901", + "37759536165594057141074611" ], "fpReserves": [ - "9180436179497909821384582", - "11244451765186195861613303" + "3352755183091072338419316", + "1483960369363414725266230" ], - "mAssetSupply": "108248583781662832765099554", - "LPTokenSupply": "20270307123230435577796079" + "mAssetSupply": "102445573659436831201470259", + "LPTokenSupply": "4754516607241100801158443" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "1019236035167731318784", - "outputQty0": "1025620942238086719122", - "outputQty": "1023771168633796118232", - "swapFee1": "611541621100638791", - "swapFee2": "410248376895234687", + "outputIndex": 0, + "inputQty": "493468033852279040770048", + "outputQty0": "502632163029244951721198", + "outputQty": "508072477594599276846818", + "swapFee1": "296080820311367424462", + "swapFee2": "301579297817546971032", "mpReserves": [ - "55969552371024442641952519", - "26659205936687201249232324", - "25646178939310408055356208" + "56709123134147097521947555", + "7852244730149338949039901", + "37759536165594057141074611" ], "fpReserves": [ - "9179410558555671734665460", - "11244451765186195861613303" + "2850123020061827386698118", + "1483960369363414725266230" ], - "mAssetSupply": "108247558570968971573615119", - "LPTokenSupply": "20269287948349429956541174" + "mAssetSupply": "101943243075705403796720093", + "LPTokenSupply": "4261078181470852897130841" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "123182030431899088846848", - "outputQty0": "123950434482481500612886", - "outputQty": "123752587676994283091857", - "swapFee1": "73909218259139453308", - "swapFee2": "49580173792992600245", + "inputQty": "96534285121782382592", + "outputQty0": "98302340761438785293", + "outputQty": "92715008208203226664", + "swapFee1": "57920571073069429", + "swapFee2": "58981404456863271", "mpReserves": [ - "55969552371024442641952519", - "26535453349010206966140467", - "25646178939310408055356208" + "56709123134147097521947555", + "7852152015141130745813237", + "37759536165594057141074611" ], "fpReserves": [ - "9055460124073190234052574", - "11244451765186195861613303" + "2850024717721065947912825", + "1483960369363414725266230" ], - "mAssetSupply": "108123657716660283065602478", - "LPTokenSupply": "20146113308839356781639656" + "mAssetSupply": "101943144832346046814798071", + "LPTokenSupply": "4260981652977788222055191" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "7792890596818260328448", - "outputQty0": "7803795186019712801390", - "outputQty": "7808916064601065146220", - "swapFee": "6200743609932911829", + "inputIndex": 1, + "inputQty": "111065767071629157859328", + "outputQty0": "117597459764988805928442", + "outputQty": "116822253931827077910258", + "swapFee": "92323598138992909871", "mpReserves": [ - "55969552371024442641952519", - "26535453349010206966140467", - "25653971829907226315684656" + "56709123134147097521947555", + "7963217782212759903672565", + "37759536165594057141074611" ], "fpReserves": [ - "9063263919259209946853964", - "11236642849121594796467083" + "2967622177486054753841267", + "1367138115431587647355972" ], - "mAssetSupply": "108131461511846302778403868", - "LPTokenSupply": "20146113928913717774930838" + "mAssetSupply": "102060742292111035620726513", + "LPTokenSupply": "4260990885337602121346178" }, { - "type": "swap_fp_to_mp", - "inputQty": "17339012103193235554304", + "type": "redeem", "outputIndex": 1, - "outputQty": "17285829627581292398148", - "swapFee": "0", - "redemptionFee": "6925465724585141554", + "inputQty": "147488673540495187640320", + "outputQty0": "150247248377031487905760", + "outputQty": "141786508258453835381951", + "swapFee1": "88493204124297112584", + "swapFee2": "90148349026218892743", + "mpReserves": [ + "56709123134147097521947555", + "7821431273954306068290614", + "37759536165594057141074611" + ], + "fpReserves": [ + "2817374929109023265935507", + "1367138115431587647355972" + ], + "mAssetSupply": "101910585192083030351713496", + "LPTokenSupply": "4113511061117519363417116" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "6786500544469352316928", + "outputQty0": "6709923771900693693830", + "outputQty": "6664733938350108514315", + "swapFee": "5266624929919834145", "mpReserves": [ - "55969552371024442641952519", - "26518167519382625673742319", - "25653971829907226315684656" + "56715909634691566874264483", + "7821431273954306068290614", + "37759536165594057141074611" ], "fpReserves": [ - "9045950254947747092966767", - "11253981861224788032021387" + "2824084852880923959629337", + "1360473381493237538841657" ], - "mAssetSupply": "108114154773000564509658225", - "LPTokenSupply": "20146113928913717774930838" + "mAssetSupply": "101917295115854931045407326", + "LPTokenSupply": "4113511587780012355400530" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "85573198982738153046016", - "outputQty0": "86102803518381840388392", - "outputQty": "85963673501724566230431", - "swapFee1": "51343919389642891827", - "swapFee2": "34441121407352736155", + "inputQty": "11314699574820294", + "outputQty0": "11525720807085450", + "outputQty": "10865775160012141", + "swapFee1": "6788819744892", + "swapFee2": "6915432484251", "mpReserves": [ - "55969552371024442641952519", - "26432203845880901107511888", - "25653971829907226315684656" + "56715909634691566874264483", + "7821431263088530908278473", + "37759536165594057141074611" ], "fpReserves": [ - "8959847451429365252578375", - "11253981861224788032021387" + "2824084841355203152543887", + "1360473381493237538841657" ], - "mAssetSupply": "108028086410603590022005988", - "LPTokenSupply": "20060545864322918586174004" + "mAssetSupply": "101917295104336125670806127", + "LPTokenSupply": "4113511576465991662554725" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "24527087137162920984576", - "outputQty0": "24678343713864952796593", - "outputQty": "24634093781619407352005", - "swapFee1": "14716252282297752590", - "swapFee2": "9871337485545981118", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "22075501886706982846464", + "outputQty0": "23398558684461592172384", + "outputQty": "23236497861194034031005", + "swapFee": "18364813242852266070", "mpReserves": [ - "55969552371024442641952519", - "26432203845880901107511888", - "25629337736125606908332651" + "56715909634691566874264483", + "7843506764975237891124937", + "37759536165594057141074611" ], "fpReserves": [ - "8935169107715500299781782", - "11253981861224788032021387" + "2847483400039664744716271", + "1337236883632043504810652" ], - "mAssetSupply": "108003417938227210615190513", - "LPTokenSupply": "20036020248810983894964687" + "mAssetSupply": "101940693663020587262978511", + "LPTokenSupply": "4113513412947315947781332" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "11699667225719816", - "outputQty0": "11771762052643780", - "outputQty": "11752674582562829", - "swapFee1": "7019800335431", - "swapFee2": "4708704821057", + "inputQty": "1498866680541152542720", + "outputQty0": "1526975026017578456381", + "outputQty": "1439979672538499163820", + "swapFee1": "899320008324691525", + "swapFee2": "916185015610547073", "mpReserves": [ - "55969552371024442641952519", - "26432203834128226524949059", - "25629337736125606908332651" + "56715909634691566874264483", + "7842066785302699391961117", + "37759536165594057141074611" ], "fpReserves": [ - "8935169095943738247138002", - "11253981861224788032021387" + "2845956425013647166259890", + "1337236883632043504810652" ], - "mAssetSupply": "108003417926460157267367790", - "LPTokenSupply": "20036020237112018649278414" + "mAssetSupply": "101939167604179585295069203", + "LPTokenSupply": "4112014636198775627707764" }, { - "type": "swap_fp_to_mp", - "inputQty": "8083143539099223195648", - "outputIndex": 2, - "outputQty": "8055988748816026043070", - "swapFee": "0", - "redemptionFee": "3228193005084474396", + "type": "redeem", + "outputIndex": 0, + "inputQty": "3921132058815648256", + "outputQty0": "3994661923770063355", + "outputQty": "4037708765095987487", + "swapFee1": "2352679235289388", + "swapFee2": "2396797154262038", "mpReserves": [ - "55969552371024442641952519", - "26432203834128226524949059", - "25621281747376790882289581" + "56715905596982801778276996", + "7842066785302699391961117", + "37759536165594057141074611" ], "fpReserves": [ - "8927098613431027061146937", - "11262065004763887255217035" + "2845952430351723396196535", + "1337236883632043504810652" ], - "mAssetSupply": "107995350672140451165851121", - "LPTokenSupply": "20036020237112018649278414" + "mAssetSupply": "101939163611914458679267886", + "LPTokenSupply": "4112010715301984735588446" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "12091651836592493953024", - "outputQty0": "12106428726789871154759", - "outputQty": "12115686339437967628045", - "swapFee": "9620087676265686631", + "type": "redeem", + "outputIndex": 2, + "inputQty": "26059543888213663809536", + "outputQty0": "26547736802961587414707", + "outputQty": "26679288448487274373344", + "swapFee1": "15635726332928198285", + "swapFee2": "15928642081776952448", "mpReserves": [ - "55969552371024442641952519", - "26444295485964819018902083", - "25621281747376790882289581" + "56715905596982801778276996", + "7842066785302699391961117", + "37732856877145569866701267" ], "fpReserves": [ - "8939205042157816932301696", - "11249949318424449287588990" + "2819404693548761808781828", + "1337236883632043504810652" ], - "mAssetSupply": "108007457100867241037005880", - "LPTokenSupply": "20036021199120786275847077" + "mAssetSupply": "101912631803753578868805627", + "LPTokenSupply": "4085952734986404364598738" }, { "type": "mint", "inputIndex": 1, - "inputQty": "23755956775086733656064", - "outputQty0": "23784920286734248381719", - "outputQty": "23624859806744846738215", + "inputQty": "35521058381312785645568", + "outputQty0": "37634490727075024492282", + "outputQty": "36919848960193032098001", "mpReserves": [ - "55969552371024442641952519", - "26468051442739905752558147", - "25621281747376790882289581" + "56715905596982801778276996", + "7877587843684012177606685", + "37732856877145569866701267" ], "fpReserves": [ - "8962989962444551180683415", - "11249949318424449287588990" + "2857039184275836833274110", + "1337236883632043504810652" ], - "mAssetSupply": "108031242021153975285387599", - "LPTokenSupply": "20059646058927531122585292" + "mAssetSupply": "101950266294480653893297909", + "LPTokenSupply": "4122872583946597396696739" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "58976560179360540131328", - "outputQty0": "59048076472720517546599", - "outputQty": "59089152988240151333795", - "swapFee": "46919722054023656413", + "inputIndex": 2, + "inputQty": "51941933771418", + "outputQty0": "51656778727935", + "outputQty": "51289093039394", + "swapFee": "40539653830", "mpReserves": [ - "55969552371024442641952519", - "26527028002919266292689475", - "25621281747376790882289581" + "56715905596982801778276996", + "7877587843684012177606685", + "37732856877197511800472685" ], "fpReserves": [ - "9022038038917271698230014", - "11190860165436209136255195" + "2857039184327493612002045", + "1337236883580754411771258" ], - "mAssetSupply": "108090290097626695802934198", - "LPTokenSupply": "20059650750899736524950933" + "mAssetSupply": "101950266294532310672025844", + "LPTokenSupply": "4122872583946601450662122" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2565049176382992023552", - "outputQty0": "2568147075831965663922", - "outputQty": "2550726968847999751672", + "type": "redeem", + "outputIndex": 0, + "inputQty": "73620611324447633178624", + "outputQty0": "74998711094236724945422", + "outputQty": "75802442103696910439741", + "swapFee1": "44172366794668579907", + "swapFee2": "44999226656542034967", "mpReserves": [ - "55969552371024442641952519", - "26529593052095649284713027", - "25621281747376790882289581" + "56640103154879104867837255", + "7877587843684012177606685", + "37732856877197511800472685" ], "fpReserves": [ - "9024606185993103663893936", - "11190860165436209136255195" + "2782040473233256887056623", + "1337236883580754411771258" ], - "mAssetSupply": "108092858244702527768598120", - "LPTokenSupply": "20062201477868584524702605" + "mAssetSupply": "101875312582664730489115389", + "LPTokenSupply": "4049256389858833284341488" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "289960501286690390016", - "outputQty0": "290367601455133632624", - "outputQty": "288397819627418540031", - "mpReserves": [ - "55969552371024442641952519", - "26529593052095649284713027", - "25621571707878077572679597" - ], - "fpReserves": [ - "9024896553594558797526560", - "11190860165436209136255195" - ], - "mAssetSupply": "108093148612303982902230744", - "LPTokenSupply": "20062489875688211943242636" + "inputQty": "567671426514434912157696", + "hardLimitError": true }, { "type": "mint", - "inputIndex": 2, - "inputQty": "355739734811346724716544", - "outputQty0": "356228294508377224014497", - "outputQty": "353785314462921575580515", + "inputIndex": 1, + "inputQty": "495137298396858744832", + "outputQty0": "524410995670506406584", + "outputQty": "514487263801407969079", "mpReserves": [ - "55969552371024442641952519", - "26529593052095649284713027", - "25977311442689424297396141" + "56640103154879104867837255", + "7878082980982409036351517", + "37732856877197511800472685" ], "fpReserves": [ - "9381124848102936021541057", - "11190860165436209136255195" + "2782564884228927393463207", + "1337236883580754411771258" ], - "mAssetSupply": "108449376906812360126245241", - "LPTokenSupply": "20416275190151133518823151" + "mAssetSupply": "101875836993660400995521973", + "LPTokenSupply": "4049770877122634692310567" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "2570863787896686510080", - "outputQty0": "2587250052837983437027", - "outputQty": "2582745640379975812944", - "swapFee1": "1542518272738011906", - "swapFee2": "1034900021135193374", - "mpReserves": [ - "55969552371024442641952519", - "26529593052095649284713027", - "25974728697049044321583197" - ], - "fpReserves": [ - "9378537598050098038104030", - "11190860165436209136255195" - ], - "mAssetSupply": "108446790691659543278001588", - "LPTokenSupply": "20413704480615064106114261" + "type": "swap_fp_to_mp", + "inputQty": "4322355479366867645104128", + "outputIndex": 1, + "hardLimitError": true }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "40436767984012490702848", - "outputQty0": "40694155873194200097187", - "outputQty": "40623159730842463828425", - "swapFee1": "24262060790407494421", - "swapFee2": "16277662349277680038", + "type": "mint", + "inputIndex": 0, + "inputQty": "77253594830070", + "outputQty0": "76389392586617", + "outputQty": "74943805059578", "mpReserves": [ - "55969552371024442641952519", - "26529593052095649284713027", - "25934105537318201857754772" + "56640103154956358462667325", + "7878082980982409036351517", + "37732856877197511800472685" ], "fpReserves": [ - "9337843442176903838006843", - "11190860165436209136255195" + "2782564884305316786049824", + "1337236883580754411771258" ], - "mAssetSupply": "108406112813448698355584439", - "LPTokenSupply": "20373270138837130656160855" + "mAssetSupply": "101875836993736790388108590", + "LPTokenSupply": "4049770877197578497370145" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "248849054288601107398656", - "outputQty0": "248426853737769584791473", - "outputQty": "248488439710538127801764", - "swapFee": "197357665431067410551", + "inputQty": "228221210620482774106112", + "outputQty0": "225661780809560229019473", + "outputQty": "223744177621314634985486", + "swapFee": "177085882872142686386", "mpReserves": [ - "56218401425313043749351175", - "26529593052095649284713027", - "25934105537318201857754772" + "56868324365576841236773437", + "7878082980982409036351517", + "37732856877197511800472685" ], "fpReserves": [ - "9586270295914673422798316", - "10942371725725671008453431" + "3008226665114877015069297", + "1113492705959439776785772" ], - "mAssetSupply": "108654539667186467940375912", - "LPTokenSupply": "20373289874603673762901910" + "mAssetSupply": "102101498774546350617128063", + "LPTokenSupply": "4049788585785865711638783" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "256982398823098613760", "outputIndex": 2, - "inputQty": "6277432335110252789760", - "outputQty0": "6318524286451906160099", - "outputQty": "6307390264547485872974", - "swapFee1": "3766459401066151673", - "swapFee2": "2527409714580762464", + "outputQty": "260770013016848068063", + "swapFee": "0", + "redemptionFee": "155698298041473249", "mpReserves": [ - "56218401425313043749351175", - "26529593052095649284713027", - "25927798147053654371881798" + "56868324365576841236773437", + "7878082980982409036351517", + "37732596107184494952404622" ], "fpReserves": [ - "9579951771628221516638217", - "10942371725725671008453431" + "3007967167951474559652713", + "1113749688358262875399532" ], - "mAssetSupply": "108648223670309730614978277", - "LPTokenSupply": "20367012818914503616727317" + "mAssetSupply": "102101239433081246203184728", + "LPTokenSupply": "4049788585785865711638783" }, { - "type": "swap_fp_to_mp", - "inputQty": "14354744934470336512", - "outputIndex": 1, - "outputQty": "14318584231389046555", - "swapFee": "0", - "redemptionFee": "5736806895441230", + "type": "redeem", + "outputIndex": 0, + "inputQty": "698651439714777115394048", + "outputQty0": "712111419772085771768361", + "outputQty": "719711943953361768213719", + "swapFee1": "419190863828866269236", + "swapFee2": "427266851863251463061", "mpReserves": [ - "56218401425313043749351175", - "26529578733511417895666472", - "25927798147053654371881798" + "56148612421623479468559718", + "7878082980982409036351517", + "37732596107184494952404622" ], "fpReserves": [ - "9579937429610982913562980", - "10942386080470605478789943" + "2295855748179388787884352", + "1113749688358262875399532" ], - "mAssetSupply": "108648209334029298907344270", - "LPTokenSupply": "20367012818914503616727317" + "mAssetSupply": "101389555280161023682879428", + "LPTokenSupply": "3351179065157471482871658" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "184656701220574330880", - "outputQty0": "184884914146762114545", - "outputQty": "184900928535639274835", - "swapFee": "146858004410966081", + "inputQty": "596010326532612423680", + "outputQty0": "630828224706241087729", + "outputQty": "626601026375706315249", + "swapFee": "495054612240176009", "mpReserves": [ - "56218401425313043749351175", - "26529763390212638469997352", - "25927798147053654371881798" + "56148612421623479468559718", + "7878678991308941648775197", + "37732596107184494952404622" ], "fpReserves": [ - "9580122314525129675677525", - "10942201179542069839515108" + "2296486576404095028972081", + "1113123087331887169084283" ], - "mAssetSupply": "108648394218943445669458815", - "LPTokenSupply": "20367012833600304057823925" + "mAssetSupply": "101390186108385729923967157", + "LPTokenSupply": "3351179114662932706889258" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "10605997029942261448704", - "outputQty0": "10620465432135192077573", - "outputQty": "10545053733521446479505", + "inputIndex": 1, + "inputQty": "22150802840414672912384", + "outputQty0": "23441146485327473091931", + "outputQty": "22994355307637008635335", "mpReserves": [ - "56218401425313043749351175", - "26529763390212638469997352", - "25938404144083596633330502" + "56148612421623479468559718", + "7900829794149356321687581", + "37732596107184494952404622" ], "fpReserves": [ - "9590742779957264867755098", - "10942201179542069839515108" + "2319927722889422502064012", + "1113123087331887169084283" ], - "mAssetSupply": "108659014684375580861536388", - "LPTokenSupply": "20377557887333825504303430" + "mAssetSupply": "101413627254871057397059088", + "LPTokenSupply": "3374173469970569715524593" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "412298101372727492345856", - "outputQty0": "412845944351042934957908", - "outputQty": "412766736543026525478749", - "swapFee": "327906126033111005138", + "inputIndex": 1, + "inputQty": "8960160953651951616", + "outputQty0": "9480672917176932762", + "outputQty": "9415980886366993900", + "swapFee": "7439832162504146", "mpReserves": [ - "56218401425313043749351175", - "26529763390212638469997352", - "26350702245456324125676358" + "56148612421623479468559718", + "7900838754310309973639197", + "37732596107184494952404622" ], "fpReserves": [ - "10003588724308307802713006", - "10529434442999043314036359" + "2319937203562339678996774", + "1113113671351000802090383" ], - "mAssetSupply": "109071860628726623796494296", - "LPTokenSupply": "20377590677946428815403943" + "mAssetSupply": "101413636735543974573991850", + "LPTokenSupply": "3374173470714552931775007" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "15474404228904874147840", - "outputQty0": "15580326594151397689435", - "outputQty": "15554524553214010031274", - "swapFee1": "9284642537342924488", - "swapFee2": "6232130637660559075", + "type": "swap_fp_to_mp", + "inputQty": "244496162074629991563264", + "outputIndex": 2, + "outputQty": "246782214842601504507091", + "swapFee": "0", + "redemptionFee": "147347630216394974803", "mpReserves": [ - "56218401425313043749351175", - "26514208865659424459966078", - "26350702245456324125676358" + "56148612421623479468559718", + "7900838754310309973639197", + "37485813892341893447897531" ], "fpReserves": [ - "9988008397714156405023571", - "10529434442999043314036359" + "2074357819868348054324589", + "1357609833425630793653647" ], - "mAssetSupply": "109056286534263110059363936", - "LPTokenSupply": "20362117202181777675548551" + "mAssetSupply": "101168204699480199344294468", + "LPTokenSupply": "3374173470714552931775007" }, { - "type": "swap_fp_to_mp", - "inputQty": "213635598066305640431616", - "outputIndex": 0, - "outputQty": "213804096390308566540515", - "swapFee": "0", - "redemptionFee": "85412478357611608951", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "240285729283166395432960", + "outputQty0": "253784083148474640761314", + "outputQty": "252448910685806470057310", + "swapFee": "199331077284809745811", "mpReserves": [ - "56004597328922735182810660", - "26514208865659424459966078", - "26350702245456324125676358" + "56148612421623479468559718", + "8141124483593476369072157", + "37485813892341893447897531" ], "fpReserves": [ - "9774477201820127382645567", - "10743070041065348954467975" + "2328141903016822695085903", + "1105160922739824323596337" ], - "mAssetSupply": "108842840750847438648594883", - "LPTokenSupply": "20362117202181777675548551" + "mAssetSupply": "101421988782628673985055782", + "LPTokenSupply": "3374193403822281412749588" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "626923359681184530432", - "outputQty0": "631122208052511463522", - "outputQty": "630083243218372260131", - "swapFee1": "376154015808710718", - "swapFee2": "252448883221004585", + "type": "swap_fp_to_mp", + "inputQty": "2356009485861942372335616", + "outputIndex": 0, + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "65081990505718752477184", + "outputQty0": "68603937698053906548643", + "outputQty": "67284884127925708337076", "mpReserves": [ - "56004597328922735182810660", - "26513578782416206087705947", - "26350702245456324125676358" + "56148612421623479468559718", + "8206206474099195121549341", + "37485813892341893447897531" ], "fpReserves": [ - "9773846079612074871182045", - "10743070041065348954467975" + "2396745840714876601634546", + "1105160922739824323596337" ], - "mAssetSupply": "108842209881088269358135946", - "LPTokenSupply": "20361490316437498071889190" + "mAssetSupply": "101490592720326727891604425", + "LPTokenSupply": "3441478287950207121086664" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "16116969566433263484928", - "outputQty0": "16090037615347955138802", - "outputQty": "15973356496639937415376", + "inputIndex": 2, + "inputQty": "83347065234101708521472", + "outputQty0": "82916240045453663199880", + "outputQty": "81311898179388638184313", "mpReserves": [ - "56020714298489168446295588", - "26513578782416206087705947", - "26350702245456324125676358" + "56148612421623479468559718", + "8206206474099195121549341", + "37569160957575995156419003" ], "fpReserves": [ - "9789936117227422826320847", - "10743070041065348954467975" + "2479662080760330264834426", + "1105160922739824323596337" ], - "mAssetSupply": "108858299918703617313274748", - "LPTokenSupply": "20377463672934138009304566" + "mAssetSupply": "101573508960372181554804305", + "LPTokenSupply": "3522790186129595759270977" }, { "type": "swap_fp_to_mp", - "inputQty": "210451784004819840", + "inputQty": "362893519250919718912", "outputIndex": 1, - "outputQty": "209975454886184491", + "outputQty": "346572832588297898173", "swapFee": "0", - "redemptionFee": "84128750963454", + "redemptionFee": "219255870194809269", "mpReserves": [ - "56020714298489168446295588", - "26513578572440751201521456", - "26350702245456324125676358" + "56148612421623479468559718", + "8205859901266606823651168", + "37569160957575995156419003" ], "fpReserves": [ - "9789935906905545417683844", - "10743070251517132959287815" + "2479296654310005582719026", + "1105523816259075243315249" ], - "mAssetSupply": "108858299708465868655601199", - "LPTokenSupply": "20377463672934138009304566" + "mAssetSupply": "101573143753177727067498174", + "LPTokenSupply": "3522790186129595759270977" }, { - "type": "swap_fp_to_mp", - "inputQty": "59623661047612417507328", - "outputIndex": 1, - "outputQty": "59486109358878559079044", - "swapFee": "0", - "redemptionFee": "23833813534978667880", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2619178163580554444800", + "outputQty0": "2759966432050064396007", + "outputQty": "2738587592809893212825", + "swapFee": "2165104078863029998", "mpReserves": [ - "56020714298489168446295588", - "26454092463081872642442412", - "26350702245456324125676358" + "56148612421623479468559718", + "8208479079430187378095968", + "37569160957575995156419003" ], "fpReserves": [ - "9730351373068098747982837", - "10802693912564745376795143" + "2482056620742055647115033", + "1102785228666265350102424" ], - "mAssetSupply": "108798739008441956964568072", - "LPTokenSupply": "20377463672934138009304566" + "mAssetSupply": "101575903719609777131894181", + "LPTokenSupply": "3522790402640003645573976" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "85859494302960152739840", - "outputQty0": "85968840264080495113545", - "outputQty": "85347336999397419485577", + "inputQty": "35081377600327055835136", + "outputQty0": "34899489351395336051862", + "outputQty": "34617760864392903156097", + "swapFee": "27376388731541833533", "mpReserves": [ - "56020714298489168446295588", - "26454092463081872642442412", - "26436561739759284278416198" + "56148612421623479468559718", + "8208479079430187378095968", + "37604242335176322212254139" ], "fpReserves": [ - "9816320213332179243096382", - "10802693912564745376795143" + "2516956110093450983166895", + "1068167467801872446946327" ], - "mAssetSupply": "108884707848706037459681617", - "LPTokenSupply": "20462811009933535428790143" + "mAssetSupply": "101610803208961172467946043", + "LPTokenSupply": "3522793140278876799757329" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "127780402919226956840960", - "outputQty0": "128632686149359746724589", - "outputQty": "128795914313544762724627", - "swapFee1": "76668241751536174104", - "swapFee2": "51453074459743898689", + "inputQty": "720810871397411784228864", + "outputQty0": "734332875194324686814025", + "outputQty": "741709167436473907701652", + "swapFee1": "432486522838447070537", + "swapFee2": "440599725116594812088", "mpReserves": [ - "55891918384175623683570961", - "26454092463081872642442412", - "26436561739759284278416198" + "55406903254187005560858066", + "8208479079430187378095968", + "37604242335176322212254139" ], "fpReserves": [ - "9687687527182819496371793", - "10802693912564745376795143" + "1782623234899126296352870", + "1068167467801872446946327" ], - "mAssetSupply": "108756126615631137456855717", - "LPTokenSupply": "20335038273838483625566593" + "mAssetSupply": "100876910933491964375944106", + "LPTokenSupply": "2802025517533748860235518" }, { - "type": "swap_fp_to_mp", - "inputQty": "13265948082915", - "outputIndex": 0, - "outputQty": "13273113042536", - "swapFee": "0", - "redemptionFee": "5302533530", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "203445391852128677396480", + "outputQty0": "202372757368222232695070", + "outputQty": "201131038955965304727278", + "swapFee": "158873909000698174985", "mpReserves": [ - "55891918384162350570528425", - "26454092463081872642442412", - "26436561739759284278416198" + "55406903254187005560858066", + "8208479079430187378095968", + "37807687727028450889650619" ], "fpReserves": [ - "9687687527169563162545355", - "10802693912578011324878058" + "1984995992267348529047940", + "867036428845907142219049" ], - "mAssetSupply": "108756126615617886425562809", - "LPTokenSupply": "20335038273838483625566593" + "mAssetSupply": "101079283690860186608639176", + "LPTokenSupply": "2802041404924648930053016" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "294772381132327326056448", - "outputQty0": "295136859709637247932779", - "outputQty": "295057637661438279279042", - "swapFee": "234396612317667526355", + "type": "swap_fp_to_mp", + "inputQty": "4134504638723423469568", + "outputIndex": 1, + "outputQty": "3952276039371733094092", + "swapFee": "0", + "redemptionFee": "2498576144191973047", "mpReserves": [ - "55891918384162350570528425", - "26454092463081872642442412", - "26731334120891611604472646" + "55406903254187005560858066", + "8204526803390815645001876", + "37807687727028450889650619" ], "fpReserves": [ - "9982824386879200410478134", - "10507636274916573045599016" + "1980831698693695240635155", + "871170933484630565688617" ], - "mAssetSupply": "109051263475327523673495588", - "LPTokenSupply": "20335061713499715392319228" + "mAssetSupply": "101075121895862677512199438", + "LPTokenSupply": "2802041404924648930053016" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "89322663648386056192", - "outputQty0": "89175424903792137671", - "outputQty": "88514535945681294914", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1533776995708406857728", + "outputQty0": "1615109563025295486726", + "outputQty": "1602317997364734945893", + "swapFee": "1266680861772250429", "mpReserves": [ - "55892007706825998956584617", - "26454092463081872642442412", - "26731334120891611604472646" + "55406903254187005560858066", + "8206060580386524051859604", + "37807687727028450889650619" ], "fpReserves": [ - "9982913562304104202615805", - "10507636274916573045599016" + "1982446808256720536121881", + "869568615487265830742724" ], - "mAssetSupply": "109051352650752427465633259", - "LPTokenSupply": "20335150228035661073614142" + "mAssetSupply": "101076737005425702807686164", + "LPTokenSupply": "2802041531592735107278058" }, { - "type": "swap_fp_to_mp", - "inputQty": "6682813626123887312896", - "outputIndex": 1, - "outputQty": "6669364350877394076276", - "swapFee": "0", - "redemptionFee": "2672206168261416920", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "36203353237682936348672", + "outputQty0": "38114462664386621827780", + "outputQty": "37795511660992950765729", + "swapFee": "29890546102349267001", "mpReserves": [ - "55892007706825998956584617", - "26447423098730995248366136", - "26731334120891611604472646" + "55406903254187005560858066", + "8242263933624206988208276", + "37807687727028450889650619" ], "fpReserves": [ - "9976233046883450660314094", - "10514319088542696932911912" + "2020561270921107157949661", + "831773103826272879976995" ], - "mAssetSupply": "109044674807537942184748468", - "LPTokenSupply": "20335150228035661073614142" + "mAssetSupply": "101114851468090089429513944", + "LPTokenSupply": "2802044520647345342204758" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "260876415573339471347712", - "outputQty0": "260444622774448522595487", - "outputQty": "260283011745417381330351", - "swapFee": "206803390490447430937", + "inputQty": "21291654511180851970048", + "outputQty0": "21070305594253228100164", + "outputQty": "20878999056245858062122", + "swapFee": "16519720705784521976", "mpReserves": [ - "56152884122399338427932329", - "26447423098730995248366136", - "26731334120891611604472646" + "55428194908698186412828114", + "8242263933624206988208276", + "37807687727028450889650619" ], "fpReserves": [ - "10236677669657899182909581", - "10254036076797279551581561" + "2041631576515360386049825", + "810894104770027021914873" ], - "mAssetSupply": "109305119430312390707343955", - "LPTokenSupply": "20335170908374710118357235" + "mAssetSupply": "101135921773684342657614108", + "LPTokenSupply": "2802046172619415920656955" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "118795714535276725403648", - "outputQty0": "118947294439677195174442", - "outputQty": "118042781158811189069875", + "type": "swap_fp_to_mp", + "inputQty": "8831506448812917915648", + "outputIndex": 1, + "outputQty": "8456202349723664247712", + "swapFee": "0", + "redemptionFee": "5344007922267961988", "mpReserves": [ - "56152884122399338427932329", - "26566218813266271973769784", - "26731334120891611604472646" + "55428194908698186412828114", + "8233807731274483323960564", + "37807687727028450889650619" ], "fpReserves": [ - "10355624964097576378084023", - "10254036076797279551581561" + "2032724896644913782736243", + "819725611218839939830521" ], - "mAssetSupply": "109424066724752067902518397", - "LPTokenSupply": "20453213689533521307427110" + "mAssetSupply": "101127020437821818322262514", + "LPTokenSupply": "2802046172619415920656955" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1244749456688583936", - "outputQty0": "1242688935743503401", - "outputQty": "1241613715500128190", - "swapFee": "986572526128139", + "type": "mint", + "inputIndex": 1, + "inputQty": "181380067874176378077184", + "outputQty0": "190734297149080309476394", + "outputQty": "186874946419451960191144", "mpReserves": [ - "56152885367148795116516265", - "26566218813266271973769784", - "26731334120891611604472646" + "55428194908698186412828114", + "8415187799148659702037748", + "37807687727028450889650619" ], "fpReserves": [ - "10355626206786512121587424", - "10254034835183564051453371" + "2223459193793994092212637", + "819725611218839939830521" ], - "mAssetSupply": "109424067967441003646021798", - "LPTokenSupply": "20453213689632178560039923" + "mAssetSupply": "101317754734970898631738908", + "LPTokenSupply": "2988921119038867880848099" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1039282895732103188578304", - "outputQty0": "1046454181771851423883488", - "outputQty": "1044659793865157097740195", - "swapFee1": "623569737439261913146", - "swapFee2": "418581672708740569553", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "34011649858009374392320", + "outputQty0": "35721582964456670292244", + "outputQty": "35325725580552927459146", + "swapFee": "27992309123356195043", "mpReserves": [ - "56152885367148795116516265", - "26566218813266271973769784", - "25686674327026454506732451" + "55428194908698186412828114", + "8449199449006669076430068", + "37807687727028450889650619" ], "fpReserves": [ - "9309172025014660697703936", - "10254034835183564051453371" + "2259180776758450762504881", + "784399885638287012371375" ], - "mAssetSupply": "108378032367341860962707863", - "LPTokenSupply": "19413993150873819297652933" + "mAssetSupply": "101353476317935355302031152", + "LPTokenSupply": "2988923918269780216467603" }, { "type": "mint", "inputIndex": 0, - "inputQty": "10831404593891", - "outputQty0": "10812868746573", - "outputQty": "10734010847965", + "inputQty": "78505390476288663224320", + "outputQty0": "77708532395232466825603", + "outputQty": "76091662296855798835520", "mpReserves": [ - "56152885367159626521110156", - "26566218813266271973769784", - "25686674327026454506732451" + "55506700299174475076052434", + "8449199449006669076430068", + "37807687727028450889650619" ], "fpReserves": [ - "9309172025025473566450509", - "10254034835183564051453371" + "2336889309153683229330484", + "784399885638287012371375" ], - "mAssetSupply": "108378032367352673831454436", - "LPTokenSupply": "19413993150884553308500898" + "mAssetSupply": "101431184850330587768856755", + "LPTokenSupply": "3065015580566636015303123" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "33655973921085156491264", - "outputQty0": "33882670219839146648008", - "outputQty": "33827940035388000835201", - "swapFee1": "20193584352651093894", - "swapFee2": "13553068087935658659", + "inputQty": "20748752936304501587968", + "outputQty0": "21178235518685118613276", + "outputQty": "20152101775441381413284", + "swapFee1": "12449251761782700952", + "swapFee2": "12706941311211071167", "mpReserves": [ - "56152885367159626521110156", - "26532390873230883972934583", - "25686674327026454506732451" + "55506700299174475076052434", + "8429047347231227695016784", + "37807687727028450889650619" ], "fpReserves": [ - "9275289354805634419802501", - "10254034835183564051453371" + "2315711073634998110717208", + "784399885638287012371375" ], - "mAssetSupply": "108344163250200922620465087", - "LPTokenSupply": "19380339196321903417119023" + "mAssetSupply": "101410019321753213861314646", + "LPTokenSupply": "3044268072555507691985250" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "9001884253884780642304", - "outputQty0": "9014506946992540450524", - "outputQty": "9013250333441592465607", - "swapFee": "7159084358204853417", + "type": "redeem", + "outputIndex": 1, + "inputQty": "853650535419194682376192", + "outputQty0": "870456833078407843256668", + "outputQty": "823968356556334341629810", + "swapFee1": "512190321251516809425", + "swapFee2": "522274099847044705954", "mpReserves": [ - "56152885367159626521110156", - "26532390873230883972934583", - "25695676211280339287374755" + "55506700299174475076052434", + "7605078990674893353386974", + "37807687727028450889650619" ], "fpReserves": [ - "9284303861752626960253025", - "10245021584850122458987764" + "1445254240556590267460540", + "784399885638287012371375" ], - "mAssetSupply": "108353177757147915160915611", - "LPTokenSupply": "19380339912230339237604364" + "mAssetSupply": "100540084762774653062763932", + "LPTokenSupply": "2190668756168438161290000" }, { "type": "swap_fp_to_mp", - "inputQty": "15968114437559114792960", + "inputQty": "158687417725469884416", "outputIndex": 0, - "outputQty": "15978462906804766492852", + "outputQty": "161161271914255921253", "swapFee": "0", - "redemptionFee": "6382995226135853526", + "redemptionFee": "95661861255333834", "mpReserves": [ - "56136906904252821754617304", - "26532390873230883972934583", - "25695676211280339287374755" + "55506539137902560820131181", + "7605078990674893353386974", + "37807687727028450889650619" ], "fpReserves": [ - "9268346373687287326436761", - "10260989699287681573780724" + "1445094804121164711068986", + "784558573056012482255791" ], - "mAssetSupply": "108337226652077801662952873", - "LPTokenSupply": "19380339912230339237604364" + "mAssetSupply": "100539925422001088761706212", + "LPTokenSupply": "2190668756168438161290000" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "409251530775275023368192", - "outputQty0": "411970813327073751167470", - "outputQty": "412507872638792518503797", - "swapFee1": "245550918465165014020", - "swapFee2": "164788325330829500466", + "type": "swap_fp_to_mp", + "inputQty": "307592791099934318264320", + "outputIndex": 2, + "outputQty": "309918505822437551011054", + "swapFee": "0", + "redemptionFee": "184979806752644982499", "mpReserves": [ - "55724399031614029236113507", - "26532390873230883972934583", - "25695676211280339287374755" + "55506539137902560820131181", + "7605078990674893353386974", + "37497769221206013338639565" ], "fpReserves": [ - "8856375560360213575269291", - "10260989699287681573780724" + "1136795126200089740237292", + "1092151364155946800520111" ], - "mAssetSupply": "107925420627076058741285869", - "LPTokenSupply": "18971112936546910730737574" + "mAssetSupply": "100231810723886766435857017", + "LPTokenSupply": "2190668756168438161290000" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "36112061794414317535232", - "outputQty0": "36161700429070345210394", - "outputQty": "36167396001931095911379", - "swapFee": "28722987935903960236", + "type": "swap_fp_to_mp", + "inputQty": "2233264403993357312", + "outputIndex": 1, + "outputQty": "2103332143083293235", + "swapFee": "0", + "redemptionFee": "1340314426965624", "mpReserves": [ - "55724399031614029236113507", - "26532390873230883972934583", - "25731788273074753604909987" + "55506539137902560820131181", + "7605076887342750270093739", + "37497769221206013338639565" ], "fpReserves": [ - "8892537260789283920479685", - "10224822303285750477869345" + "1136792892342711464196943", + "1092153597420350793877423" ], - "mAssetSupply": "107961582327505129086496263", - "LPTokenSupply": "18971115808845704321133597" + "mAssetSupply": "100231808491369702586782292", + "LPTokenSupply": "2190668756168438161290000" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "4490892916131586113536", - "outputQty0": "4520539197952255022303", - "outputQty": "4513313863967140561585", - "swapFee1": "2694535749678951668", - "swapFee2": "1808215679180902008", + "outputIndex": 2, + "inputQty": "3580064064907127", + "outputQty0": "3640906843931206", + "outputQty": "3659847182469651", + "swapFee1": "2148038438944", + "swapFee2": "2184544106358", "mpReserves": [ - "55724399031614029236113507", - "26527877559366916832372998", - "25731788273074753604909987" + "55506539137902560820131181", + "7605076887342750270093739", + "37497769217546166156169914" ], "fpReserves": [ - "8888016721591331665457382", - "10224822303285750477869345" + "1136792888701804620265737", + "1092153597420350793877423" ], - "mAssetSupply": "107957063596522856012375968", - "LPTokenSupply": "18966625185383147702915227" + "mAssetSupply": "100231808487730980286957444", + "LPTokenSupply": "2190668752588588900226767" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4544440264382422016", - "outputQty0": "4550671838869939741", - "outputQty": "4518119031663376338", + "type": "swap_fp_to_mp", + "inputQty": "686401367217556787560448", + "outputIndex": 1, + "outputQty": "639202927660767481914407", + "swapFee": "0", + "redemptionFee": "409444843904784814982", "mpReserves": [ - "55724399031614029236113507", - "26527877559366916832372998", - "25731792817515017987332003" + "55506539137902560820131181", + "6965873959681982788179332", + "37497769217546166156169914" ], "fpReserves": [ - "8888021272263170535397123", - "10224822303285750477869345" + "454384815527163261962174", + "1778554964637907581437871" ], - "mAssetSupply": "107957068147194694882315709", - "LPTokenSupply": "18966629703502179366291565" + "mAssetSupply": "99549809859400243713468863", + "LPTokenSupply": "2190668752588588900226767" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "83250957807130263552", - "outputQty0": "83365115255192035280", - "outputQty": "83376375834055060826", - "swapFee": "66215015345397278", + "type": "swap_fp_to_mp", + "inputQty": "318931571208724", + "outputIndex": 0, + "outputQty": "316817368609515", + "swapFee": "0", + "redemptionFee": "187854129867", "mpReserves": [ - "55724399031614029236113507", - "26527877559366916832372998", - "25731876068472825117595555" + "55506539137585743451521666", + "6965873959681982788179332", + "37497769217546166156169914" ], "fpReserves": [ - "8888104637378425727432403", - "10224738926909916422808519" + "454384815214073045516345", + "1778554964956839152646595" ], - "mAssetSupply": "107957151512309950074350989", - "LPTokenSupply": "18966629710123680900831292" + "mAssetSupply": "99549809859087341351152901", + "LPTokenSupply": "2190668752588588900226767" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "3346091354011704320", - "outputQty0": "3368177869950242159", - "outputQty": "3362220194615501287", - "swapFee1": "2007654812407022", - "swapFee2": "1347271147980096", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "369558828307971055812608", + "outputQty0": "395194881318691245040526", + "outputQty": "398429851467096180525485", + "swapFee": "312893016101367600358", "mpReserves": [ - "55724399031614029236113507", - "26527877559366916832372998", - "25731872706252630502094268" + "55506539137585743451521666", + "7335432787989953843991940", + "37497769217546166156169914" ], "fpReserves": [ - "8888101269200555777190244", - "10224738926909916422808519" + "849579696532764290556871", + "1380125113489742972121110" ], - "mAssetSupply": "107957148145479351272088926", - "LPTokenSupply": "18966626364233092370367674" + "mAssetSupply": "99945004740406032596193427", + "LPTokenSupply": "2190700041890199036986802" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "498529385841450809294848", - "outputQty0": "497680986905781899589650", - "outputQty": "497573527298303175995266", - "swapFee": "395257805693717340754", - "mpReserves": [ - "56222928417455480045408355", - "26527877559366916832372998", - "25731872706252630502094268" - ], - "fpReserves": [ - "9385782256106337676779894", - "9727165399611613246813253" - ], - "mAssetSupply": "108454829132385133171678576", - "LPTokenSupply": "18966665890013661742101749" + "inputIndex": 1, + "inputQty": "1063983045177711481847808", + "hardLimitError": true }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4607019383174052446208", - "outputQty0": "4599121006759791470302", - "outputQty": "4564467507566048208243", + "inputIndex": 1, + "inputQty": "53262288900485304811520", + "outputQty0": "56749356863873601230231", + "outputQty": "55869260095132144217437", "mpReserves": [ - "56227535436838654097854563", - "26527877559366916832372998", - "25731872706252630502094268" + "55506539137585743451521666", + "7388695076890439148803460", + "37497769217546166156169914" ], "fpReserves": [ - "9390381377113097468250196", - "9727165399611613246813253" + "906329053396637891787102", + "1380125113489742972121110" ], - "mAssetSupply": "108459428253391892963148878", - "LPTokenSupply": "18971230357521227790309992" + "mAssetSupply": "100001754097269906197423658", + "LPTokenSupply": "2246569301985331181204239" }, { - "type": "swap_fp_to_mp", - "inputQty": "5650152753318218170368", - "outputIndex": 0, - "outputQty": "5656249113837728338800", - "swapFee": "0", - "redemptionFee": "2259524635269929654", + "type": "mint", + "inputIndex": 1, + "inputQty": "262230198837123164930048", + "outputQty0": "278702148619737930274585", + "outputQty": "274166297022553933874857", "mpReserves": [ - "56221879187724816369515763", - "26527877559366916832372998", - "25731872706252630502094268" + "55506539137585743451521666", + "7650925275727562313733508", + "37497769217546166156169914" ], "fpReserves": [ - "9384732565524922644113072", - "9732815552364931464983621" + "1185031202016375822061687", + "1380125113489742972121110" ], - "mAssetSupply": "108453781701328353408941408", - "LPTokenSupply": "18971230357521227790309992" + "mAssetSupply": "100280456245889644127698243", + "LPTokenSupply": "2520735599007885115079096" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "790246854403017819553792", - "outputQty0": "791299526763487426947805", - "outputQty": "790422811533919657358131", - "swapFee": "628186004451373788513", + "type": "swap_fp_to_mp", + "inputQty": "360477864976639872", + "outputIndex": 1, + "outputQty": "339300102453344723", + "swapFee": "0", + "redemptionFee": "216066431727060", "mpReserves": [ - "56221879187724816369515763", - "26527877559366916832372998", - "26522119560655648321648060" + "55506539137585743451521666", + "7650924936427459860388785", + "37497769217546166156169914" ], "fpReserves": [ - "10176032092288410071060877", - "8942392740831011807625490" + "1185030841905656276961609", + "1380125473967607948760982" ], - "mAssetSupply": "109245081228091840835889213", - "LPTokenSupply": "18971293176121672927688843" + "mAssetSupply": "100280455885994991014325225", + "LPTokenSupply": "2520735599007885115079096" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "467793035133749144059904", - "outputQty0": "467005662063717972017034", - "outputQty": "463191856863951606421564", + "inputIndex": 1, + "inputQty": "10733210502101878177792", + "outputQty0": "11383787939288857416343", + "outputQty": "11192592877007530062268", "mpReserves": [ - "56689672222858565513575667", - "26527877559366916832372998", - "26522119560655648321648060" + "55506539137585743451521666", + "7661658146929561738566577", + "37497769217546166156169914" ], "fpReserves": [ - "10643037754352128043077911", - "8942392740831011807625490" + "1196414629844945134377952", + "1380125473967607948760982" ], - "mAssetSupply": "109712086890155558807906247", - "LPTokenSupply": "19434485032985624534110407" + "mAssetSupply": "100291839673934279871741568", + "LPTokenSupply": "2531928191884892645141364" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "995117454957344978894848", - "outputQty0": "1002625225823715894224511", - "outputQty": "1003900625074455262522755", - "swapFee1": "597070472974406987336", - "swapFee2": "401050090329486357689", + "type": "mint", + "inputIndex": 1, + "inputQty": "2764312769064718041088", + "outputQty0": "2931577118890720468612", + "outputQty": "2882277197066393047340", "mpReserves": [ - "55685771597784110251052912", - "26527877559366916832372998", - "26522119560655648321648060" + "55506539137585743451521666", + "7664422459698626456607665", + "37497769217546166156169914" ], "fpReserves": [ - "9640412528528412148853400", - "8942392740831011807625490" + "1199346206963835854846564", + "1380125473967607948760982" ], - "mAssetSupply": "108709862714422172400039425", - "LPTokenSupply": "18439427285075576995914292" + "mAssetSupply": "100294771251053170592210180", + "LPTokenSupply": "2534810469081959038188704" }, { "type": "swap_fp_to_mp", - "inputQty": "1347869987026850195439616", + "inputQty": "5816932118622054400", "outputIndex": 2, - "outputQty": "1344883050453152969434964", + "outputQty": "5841363282455084959", "swapFee": "0", - "redemptionFee": "538895208495836858084", + "redemptionFee": "3486889117432397", "mpReserves": [ - "55685771597784110251052912", - "26527877559366916832372998", - "25177236510202495352213096" + "55506539137585743451521666", + "7664422459698626456607665", + "37497763376182883701084955" ], "fpReserves": [ - "8293174507288820003642116", - "10290262727857862003065106" + "1199340395481973467517724", + "1380131290899726570815382" ], - "mAssetSupply": "107363163588391076091686225", - "LPTokenSupply": "18439427285075576995914292" + "mAssetSupply": "100294765443058197322313737", + "LPTokenSupply": "2534810469081959038188704" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "118156274499047632404480", - "outputQty0": "118908361578456321195118", - "outputQty": "118720711444074188536734", - "swapFee1": "70893764699428579442", - "swapFee2": "47563344631382528478", + "type": "mint", + "inputIndex": 2, + "inputQty": "128474331363524345856", + "outputQty0": "127740429825969507279", + "outputQty": "125591658974765258344", "mpReserves": [ - "55685771597784110251052912", - "26409156847922842643836264", - "25177236510202495352213096" + "55506539137585743451521666", + "7664422459698626456607665", + "37497891850514247225430811" ], "fpReserves": [ - "8174266145710363682446998", - "10290262727857862003065106" + "1199468135911799437025003", + "1380131290899726570815382" ], - "mAssetSupply": "107244302790157251153019585", - "LPTokenSupply": "18321278099952999306367756" + "mAssetSupply": "100294893183488023291821016", + "LPTokenSupply": "2534936060740933803447048" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "2785589323449989", - "outputQty0": "2789657893472008", - "outputQty": "2770419154442379", + "inputQty": "1116434878294019471835136", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "77669121162345178988544", + "outputQty0": "78940767463932818495063", + "outputQty": "74352685299293995610996", + "swapFee1": "46601472697407107393", + "swapFee2": "47364460478359691097", "mpReserves": [ - "55685771597784110251052912", - "26409156847922842643836264", - "25177236512988084675663085" + "55506539137585743451521666", + "7590069774399332460996669", + "37497891850514247225430811" ], "fpReserves": [ - "8174266148500021575919006", - "10290262727857862003065106" + "1120527368447866618529940", + "1380131290899726570815382" ], - "mAssetSupply": "107244302792946909046491593", - "LPTokenSupply": "18321278102723418460810135" + "mAssetSupply": "100215999780484568833017050", + "LPTokenSupply": "2457271599725858365169243" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "332681130328500862976", - "outputQty0": "333076801083415340511", - "outputQty": "333329234559767530706", - "swapFee": "264623781383550910", + "type": "swap_fp_to_mp", + "inputQty": "3666382107112536801280", + "outputIndex": 2, + "outputQty": "3680259095543940108306", + "swapFee": "0", + "redemptionFee": "2196695420887691833", "mpReserves": [ - "55685771597784110251052912", - "26409489529053171144699240", - "25177236512988084675663085" + "55506539137585743451521666", + "7590069774399332460996669", + "37494211591418703285322505" ], "fpReserves": [ - "8174599225301104991259517", - "10289929398623302235534400" + "1116866209413053798808233", + "1383797673006839107616662" ], - "mAssetSupply": "107244635869747992461832104", - "LPTokenSupply": "18321278129185796599165226" + "mAssetSupply": "100212340818145176900987176", + "LPTokenSupply": "2457271599725858365169243" }, { - "type": "swap_fp_to_mp", - "inputQty": "1781833931155569377280", - "outputIndex": 2, - "outputQty": "1775752584223341291212", - "swapFee": "0", - "redemptionFee": "711623258916678121", + "type": "redeem", + "outputIndex": 0, + "inputQty": "28501517151939437002752", + "outputQty0": "28962751272713952020255", + "outputQty": "29277296215136302849078", + "swapFee1": "17100910291163662201", + "swapFee2": "17377650763628371212", "mpReserves": [ - "55685771597784110251052912", - "26409489529053171144699240", - "25175460760403861334371873" + "55477261841370607148672588", + "7590069774399332460996669", + "37494211591418703285322505" ], "fpReserves": [ - "8172820167153813295955532", - "10291711232554457804911680" + "1087903458140339846787978", + "1383797673006839107616662" ], - "mAssetSupply": "107242857523223959683206240", - "LPTokenSupply": "18321278129185796599165226" + "mAssetSupply": "100183395444523226577338133", + "LPTokenSupply": "2428771792664948044532711" }, { - "type": "swap_fp_to_mp", - "inputQty": "993762271996656817799168", - "outputIndex": 1, - "outputQty": "989748169901144120310982", - "swapFee": "0", - "redemptionFee": "396560852611075219206", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "114197897713190883557376", + "outputQty0": "121131114659431095583852", + "outputQty": "121149279683509279617923", + "swapFee": "95289137009437947149", "mpReserves": [ - "55685771597784110251052912", - "25419741359152027024388258", - "25175460760403861334371873" + "55477261841370607148672588", + "7704267672112523344554045", + "37494211591418703285322505" ], "fpReserves": [ - "7181418035626125247939556", - "11285473504551114622710848" + "1209034572799770942371830", + "1262648393323329827998739" ], - "mAssetSupply": "106251851952548882710409470", - "LPTokenSupply": "18321278129185796599165226" + "mAssetSupply": "100304526559182657672921985", + "LPTokenSupply": "2428781321578648988327425" }, { "type": "mint", "inputIndex": 0, - "inputQty": "18090510438435321856", - "outputQty0": "18058331935841934949", - "outputQty": "17951585854860937319", + "inputQty": "60491322304124772417536", + "outputQty0": "59815483241509437424899", + "outputQty": "58781078273589098386942", "mpReserves": [ - "55685789688294548686374768", - "25419741359152027024388258", - "25175460760403861334371873" + "55537753163674731921090124", + "7704267672112523344554045", + "37494211591418703285322505" ], "fpReserves": [ - "7181436093958061089874505", - "11285473504551114622710848" + "1268850056041280379796729", + "1262648393323329827998739" ], - "mAssetSupply": "106251870010880818552344419", - "LPTokenSupply": "18321296080771651460102545" + "mAssetSupply": "100364342042424167110346884", + "LPTokenSupply": "2487562399852238086714367" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "5807733540447273877504", - "outputQty0": "5797402153493019836926", - "outputQty": "5811615267735767202496", - "swapFee": "4610496567076684231", + "inputQty": "445308466618571159502848", + "outputQty0": "440305025778742408142845", + "outputQty": "432439967627473530630051", "mpReserves": [ - "55691597421834995960252272", - "25419741359152027024388258", - "25175460760403861334371873" + "55983061630293303080592972", + "7704267672112523344554045", + "37494211591418703285322505" ], "fpReserves": [ - "7187233496111554109711431", - "11279661889283378855508352" + "1709155081820022787939574", + "1262648393323329827998739" ], - "mAssetSupply": "106257667413034311572181345", - "LPTokenSupply": "18321296541821308167770968" + "mAssetSupply": "100804647068202909518489729", + "LPTokenSupply": "2920002367479711617344418" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2622430351439691776000", - "outputQty0": "2626128856866617372327", - "outputQty": "2610584619789090865531", + "type": "swap_fp_to_mp", + "inputQty": "8274139927926727680", + "outputIndex": 1, + "outputQty": "7813196352946016345", + "swapFee": "0", + "redemptionFee": "4974831656992654", "mpReserves": [ - "55691597421834995960252272", - "25419741359152027024388258", - "25178083190755301026147873" + "55983061630293303080592972", + "7704259858916170398537700", + "37494211591418703285322505" ], "fpReserves": [ - "7189859624968420727083758", - "11279661889283378855508352" + "1709146790433927800182487", + "1262656667463257754726419" ], - "mAssetSupply": "106260293541891178189553672", - "LPTokenSupply": "18323907126441097258636499" + "mAssetSupply": "100804638781791646187725296", + "LPTokenSupply": "2920002367479711617344418" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1837455453021158483427328", - "outputQty0": "1839666178696466569206774", - "outputQty": "1827772492773524238723392", + "inputIndex": 0, + "inputQty": "282743357987733", + "outputQty0": "279550687228566", + "outputQty": "274434845230168", "mpReserves": [ - "55691597421834995960252272", - "27257196812173185507815586", - "25178083190755301026147873" + "55983061630576046438580705", + "7704259858916170398537700", + "37494211591418703285322505" ], "fpReserves": [ - "9029525803664887296290532", - "11279661889283378855508352" + "1709146790713478487411053", + "1262656667463257754726419" ], - "mAssetSupply": "108099959720587644758760446", - "LPTokenSupply": "20151679619214621497359891" + "mAssetSupply": "100804638782071196874953862", + "LPTokenSupply": "2920002367754146462574586" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "3254368384915507511296", - "outputQty0": "3275099013320935687935", - "outputQty": "3279304587944907692934", - "swapFee1": "1952621030949304506", - "swapFee2": "1310039605328374275", + "outputIndex": 1, + "inputQty": "717954948510812139945984", + "outputQty0": "730303582610081192439963", + "outputQty": "684442906170258250701201", + "swapFee1": "430772969106487283967", + "swapFee2": "438182149566048715463", "mpReserves": [ - "55688318117247051052559338", - "27257196812173185507815586", - "25178083190755301026147873" + "55983061630576046438580705", + "7019816952745912147836499", + "37494211591418703285322505" ], "fpReserves": [ - "9026250704651566360602597", - "11279661889283378855508352" + "978843208103397294971090", + "1262656667463257754726419" ], - "mAssetSupply": "108096685931613929151446786", - "LPTokenSupply": "20148425446091809084779045" + "mAssetSupply": "100074773381610681731229362", + "LPTokenSupply": "2202090496540244971356998" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "2070205544929566130176", - "outputQty0": "2083390713048535964620", - "outputQty": "2079430557128795543374", - "swapFee1": "1242123326957739678", - "swapFee2": "833356285219414385", + "inputQty": "380968038604694552576", + "outputQty0": "387175275155522895392", + "outputQty": "389425546900966675176", + "swapFee1": "228580823162816731", + "swapFee2": "232305165093313737", "mpReserves": [ - "55688318117247051052559338", - "27257196812173185507815586", - "25176003760198172230604499" + "55983061630576046438580705", + "7019816952745912147836499", + "37493822165871802318647329" ], "fpReserves": [ - "9024167313938517824637977", - "11279661889283378855508352" + "978456032828241772075698", + "1262656667463257754726419" ], - "mAssetSupply": "108094603374257165834896551", - "LPTokenSupply": "20146355364759212214422836" + "mAssetSupply": "100074386438640691301647707", + "LPTokenSupply": "2201709551359722593086095" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "135010913631943096532992", - "outputQty0": "135152679939017585899712", - "outputQty": "134212925180131161311856", + "type": "swap_fp_to_mp", + "inputQty": "843933279491402891264", + "outputIndex": 0, + "outputQty": "852524848970683186629", + "swapFee": "0", + "redemptionFee": "505479669466222993", "mpReserves": [ - "55688318117247051052559338", - "27392207725805128604348578", - "25176003760198172230604499" + "55982209105727075755394076", + "7019816952745912147836499", + "37493822165871802318647329" ], "fpReserves": [ - "9159319993877535410537689", - "11279661889283378855508352" + "977613566712464733752623", + "1263500600742749157617683" ], - "mAssetSupply": "108229756054196183420796263", - "LPTokenSupply": "20280568289939343375734692" + "mAssetSupply": "100073544478004583729547625", + "LPTokenSupply": "2201709551359722593086095" }, { "type": "mint", "inputIndex": 1, - "inputQty": "58162855758778131808256", - "outputQty0": "58223112105991646210201", - "outputQty": "57815907019568369603473", + "inputQty": "468449935528600283381760", + "outputQty0": "500418662054156163936311", + "outputQty": "491712570429960144186533", "mpReserves": [ - "55688318117247051052559338", - "27450370581563906736156834", - "25176003760198172230604499" + "55982209105727075755394076", + "7488266888274512431218259", + "37493822165871802318647329" ], "fpReserves": [ - "9217543105983527056747890", - "11279661889283378855508352" + "1478032228766620897688934", + "1263500600742749157617683" ], - "mAssetSupply": "108287979166302175067006464", - "LPTokenSupply": "20338384196958911745338165" + "mAssetSupply": "100573963140058739893483936", + "LPTokenSupply": "2693422121789682737272628" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "405977129373318905856", - "outputQty0": "405298100714886239347", - "outputQty": "402458577551974351661", - "mpReserves": [ - "55688724094376424371465194", - "27450370581563906736156834", - "25176003760198172230604499" - ], - "fpReserves": [ - "9217948404084241942987237", - "11279661889283378855508352" - ], - "mAssetSupply": "108288384464402889953245811", - "LPTokenSupply": "20338786655536463719689826" + "type": "redeem", + "outputIndex": 0, + "inputQty": "1305404471202398175494144", + "hardLimitError": true }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1109597357724393610936320", - "outputQty0": "1111168950453401447342115", - "outputQty": "1103147119363736219755759", + "type": "swap_fp_to_mp", + "inputQty": "105021591083026900582400", + "outputIndex": 0, + "outputQty": "106247339099927041120157", + "swapFee": "0", + "redemptionFee": "63046497430478086029", "mpReserves": [ - "55688724094376424371465194", - "27450370581563906736156834", - "26285601117922565841540819" + "55875961766627148714273919", + "7488266888274512431218259", + "37493822165871802318647329" ], "fpReserves": [ - "10329117354537643390329352", - "11279661889283378855508352" + "1372954733049157420972498", + "1368522191825776058200083" ], - "mAssetSupply": "109399553414856291400587926", - "LPTokenSupply": "21441933774900199939445585" + "mAssetSupply": "100468948690838706894853529", + "LPTokenSupply": "2693422121789682737272628" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "586104316482147909632", - "outputQty0": "590130324161500766506", - "outputQty": "589115044657192078581", - "swapFee1": "351662589889288745", - "swapFee2": "236052129664600306", - "mpReserves": [ - "55688724094376424371465194", - "27450370581563906736156834", - "26285012002877908649462238" - ], - "fpReserves": [ - "10328527224213481889562846", - "11279661889283378855508352" - ], - "mAssetSupply": "109398963520584259564421726", - "LPTokenSupply": "21441347705749976780464827" + "inputQty": "1528504949023806807080960", + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "236491801078353312", - "outputIndex": 0, - "outputQty": "236640250951026842", - "swapFee": "0", - "redemptionFee": "94541373136204", + "type": "mint", + "inputIndex": 1, + "inputQty": "31137695414757948915712", + "outputQty0": "33118791993789928026716", + "outputQty": "32536629233297104004255", "mpReserves": [ - "55688723857736173420438352", - "27450370581563906736156834", - "26285012002877908649462238" + "55875961766627148714273919", + "7519404583689270380133971", + "37493822165871802318647329" ], "fpReserves": [ - "10328526987860049049051868", - "11279662125775179933861664" + "1406073525042947348999214", + "1368522191825776058200083" ], - "mAssetSupply": "109398963284325368097046952", - "LPTokenSupply": "21441347705749976780464827" + "mAssetSupply": "100502067482832496822880245", + "LPTokenSupply": "2725958751022979841276883" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "11464505528448876", - "outputQty0": "11446029813196662", - "outputQty": "11443568472124781", - "swapFee": "9088898008400", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1136354911988138639360", + "outputQty0": "1156036644261498686100", + "outputQty": "1086488220816975693170", + "swapFee1": "681812947192883183", + "swapFee2": "693621986556899211", "mpReserves": [ - "55688723869200678948887228", - "27450370581563906736156834", - "26285012002877908649462238" + "55875961766627148714273919", + "7518318095468453404440801", + "37493822165871802318647329" ], "fpReserves": [ - "10328526999306078862248530", - "11279662114331611461736883" + "1404917488398685850313114", + "1368522191825776058200083" ], - "mAssetSupply": "109398963295771397910243614", - "LPTokenSupply": "21441347705750885670265667" + "mAssetSupply": "100500912139810221881093356", + "LPTokenSupply": "2724822464292286421925841" }, { - "type": "swap_fp_to_mp", - "inputQty": "2373908144664869863424", - "outputIndex": 0, - "outputQty": "2375394653143805634299", - "swapFee": "0", - "redemptionFee": "949006284243883052", + "type": "redeem", + "outputIndex": 1, + "inputQty": "4085637728723455", + "outputQty0": "4156396553447293", + "outputQty": "3906310134320141", + "swapFee1": "2451382637234", + "swapFee2": "2493837932068", "mpReserves": [ - "55686348474547535143252929", - "27450370581563906736156834", - "26285012002877908649462238" + "55875961766627148714273919", + "7518318091562143270120660", + "37493822165871802318647329" ], "fpReserves": [ - "10326154483595469154617758", - "11282036022476276331600307" + "1404917484242289296865821", + "1368522191825776058200083" ], - "mAssetSupply": "109396591729067072446495894", - "LPTokenSupply": "21441347705750885670265667" + "mAssetSupply": "100500912135656319165578131", + "LPTokenSupply": "2724822460206893831466109" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "581111007885678914568192", - "outputQty0": "580166358746565443100383", - "outputQty": "579836035362995149923242", - "swapFee": "460647016276112758884", + "inputIndex": 2, + "inputQty": "362017415059243744100352", + "outputQty0": "359885200596852366003458", + "outputQty": "358864371927324602787468", + "swapFee": "282730113984201321380", "mpReserves": [ - "56267459482433214057821121", - "27450370581563906736156834", - "26285012002877908649462238" + "55875961766627148714273919", + "7518318091562143270120660", + "37855839580931046062747681" ], "fpReserves": [ - "10906320842342034597718141", - "10702199987113281181677065" + "1764802684839141662869279", + "1009657819898451455412615" ], - "mAssetSupply": "109976758087813637889596277", - "LPTokenSupply": "21441393770452513281541555" + "mAssetSupply": "100860797336253171531581589", + "LPTokenSupply": "2724850733218292251598247" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "5712119867381000192", - "outputQty0": "5719850730665933205", - "outputQty": "5714559671703919229", - "swapFee": "4540207876523513", + "inputIndex": 0, + "inputQty": "4189613775997372928", + "outputQty0": "4141358808058641107", + "outputQty": "4120705554304560689", + "swapFee": "3248870994102975", "mpReserves": [ - "56267459482433214057821121", - "27450370581563906736156834", - "26285017714997776030462430" + "55875965956240924711646847", + "7518318091562143270120660", + "37855839580931046062747681" ], "fpReserves": [ - "10906326562192765263651346", - "10702194272553609477757836" + "1764806826197949721510386", + "1009653699192897150851926" ], - "mAssetSupply": "109976763807664368555529482", - "LPTokenSupply": "21441393770906534069193906" + "mAssetSupply": "100860801477611979590222696", + "LPTokenSupply": "2724850733543179351008544" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "69410614068573458399232", - "outputQty0": "69487649790870867359807", - "outputQty": "69420412664178967960191", - "swapFee": "55156174671878093077", + "inputQty": "404116815513065355214848", + "outputQty0": "428589438067421475356792", + "outputQty": "424363785430660096470182", + "swapFee": "336090106424818871492", "mpReserves": [ - "56267459482433214057821121", - "27519781195632480194556066", - "26285017714997776030462430" + "55875965956240924711646847", + "7922434907075208625335508", + "37855839580931046062747681" ], "fpReserves": [ - "10975814211983636131011153", - "10632773859889430509797645" + "2193396264265371196867178", + "585289913762237054381744" ], - "mAssetSupply": "110046251457455239422889289", - "LPTokenSupply": "21441399286524001257003213" + "mAssetSupply": "101289390915679401065579488", + "LPTokenSupply": "2724884342553821832895693" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "199027608742910637375488", - "outputQty0": "200473899768715183215731", - "outputQty": "200169623477289988726797", - "swapFee1": "119416565245746382425", - "swapFee2": "80189559907486073286", + "inputQty": "75434825283860888027136", + "outputQty0": "77149833978774370613396", + "outputQty": "72873725673734744806618", + "swapFee1": "45260895170316532816", + "swapFee2": "46289900387264622368", "mpReserves": [ - "56267459482433214057821121", - "27319611572155190205829269", - "26285017714997776030462430" + "55875965956240924711646847", + "7849561181401473880528890", + "37855839580931046062747681" ], "fpReserves": [ - "10775340312214920947795422", - "10632773859889430509797645" + "2116246430286596826253782", + "585289913762237054381744" ], - "mAssetSupply": "109845857747246431725746844", - "LPTokenSupply": "21242383619437615194265967" + "mAssetSupply": "101212287371601013959588460", + "LPTokenSupply": "2649454043359477976521838" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "175394171627354835648512", - "outputQty0": "176659455243027700311997", - "outputQty": "176386392453996001619345", - "swapFee1": "105236502976412901389", - "swapFee2": "70663782097211080124", + "outputIndex": 2, + "inputQty": "611621146308555833344", + "outputQty0": "625466279302327582823", + "outputQty": "628620427909906913359", + "swapFee1": "366972687785133500", + "swapFee2": "375279767581396549", "mpReserves": [ - "56267459482433214057821121", - "27143225179701194204209924", - "26285017714997776030462430" + "55875965956240924711646847", + "7849561181401473880528890", + "37855210960503136155834322" ], "fpReserves": [ - "10598680856971893247483425", - "10632773859889430509797645" + "2115620964007294498670959", + "585289913762237054381744" ], - "mAssetSupply": "109669268955785501236514971", - "LPTokenSupply": "21066999971460557999907593" + "mAssetSupply": "101211662280601479213402186", + "LPTokenSupply": "2648842458910438199201844" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "571989752127378880", - "outputQty0": "576102850794741993", - "outputQty": "575204747347072593", - "swapFee1": "343193851276427", - "swapFee2": "230441140317896", + "type": "swap_fp_to_mp", + "inputQty": "183377609998549112586240", + "outputIndex": 2, + "outputQty": "186495483731051041430236", + "swapFee": "0", + "redemptionFee": "111339024615823666311", "mpReserves": [ - "56267459482433214057821121", - "27143224604496446857137331", - "26285017714997776030462430" + "55875965956240924711646847", + "7849561181401473880528890", + "37668715476772085114404086" ], "fpReserves": [ - "10598680280869042452741432", - "10632773859889430509797645" + "1930055922980921721484819", + "768667523760786166967984" ], - "mAssetSupply": "109669268379913091582090874", - "LPTokenSupply": "21066999399505125257656355" + "mAssetSupply": "101026208578599722259882357", + "LPTokenSupply": "2648842458910438199201844" }, { "type": "mint", "inputIndex": 0, - "inputQty": "357606235900228197679104", - "outputQty0": "357011292891058825073465", - "outputQty": "354230261739506886950897", + "inputQty": "7663461542477119", + "outputQty0": "7578832092516910", + "outputQty": "7420601379768012", "mpReserves": [ - "56625065718333442255500225", - "27143224604496446857137331", - "26285017714997776030462430" + "55875965963904386254123966", + "7849561181401473880528890", + "37668715476772085114404086" ], "fpReserves": [ - "10955691573760101277814897", - "10632773859889430509797645" + "1930055930559753814001729", + "768667523760786166967984" ], - "mAssetSupply": "110026279672804150407164339", - "LPTokenSupply": "21421229661244632144607252" + "mAssetSupply": "101026208586178554352399267", + "LPTokenSupply": "2648842466331039578969856" }, { - "type": "mint", + "type": "swap_fp_to_mp", + "inputQty": "9033024864696127193088", + "outputIndex": 0, + "outputQty": "9205636659059523156105", + "swapFee": "0", + "redemptionFee": "5465671632552850229", + "mpReserves": [ + "55866760327245326730967861", + "7849561181401473880528890", + "37668715476772085114404086" + ], + "fpReserves": [ + "1920946477838832396952784", + "777700548625482294161072" + ], + "mAssetSupply": "101017104599129265488200551", + "LPTokenSupply": "2648842466331039578969856" + }, + { + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "87667704793558612443136", - "outputQty0": "87770451622199022627054", - "outputQty": "87080898222872138762245", + "inputQty": "29664709342011362115584", + "outputQty0": "31390147296023087046426", + "outputQty": "31092113060195326599937", + "swapFee": "24588720910284881902", "mpReserves": [ - "56625065718333442255500225", - "27230892309290005469580467", - "26285017714997776030462430" + "55866760327245326730967861", + "7879225890743485242644474", + "37668715476772085114404086" ], "fpReserves": [ - "11043462025382300300441951", - "10632773859889430509797645" + "1952336625134855483999210", + "746608435565286967561135" ], - "mAssetSupply": "110114050124426349429791393", - "LPTokenSupply": "21508310559467504283369497" + "mAssetSupply": "101048494746425288575246977", + "LPTokenSupply": "2648844925203130607458046" }, { - "type": "swap_fp_to_mp", - "inputQty": "16865058030269746905088", - "outputIndex": 2, - "outputQty": "16839416925615320581061", - "swapFee": "0", - "redemptionFee": "6747647837392250739", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2650849416947363741696", + "outputQty0": "2804412743079375116654", + "outputQty": "2776406506647892028777", + "swapFee": "2196265024111193794", "mpReserves": [ - "56625065718333442255500225", - "27230892309290005469580467", - "26268178298072160709881369" + "55866760327245326730967861", + "7881876740160432606386170", + "37668715476772085114404086" ], "fpReserves": [ - "11026592905788819673592823", - "10649638917919700256702733" + "1955141037877934859115864", + "743832029058639075532358" ], - "mAssetSupply": "110097187752480706195193004", - "LPTokenSupply": "21508310559467504283369497" + "mAssetSupply": "101051299159168367950363631", + "LPTokenSupply": "2648845144829633018577425" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "45570103607613735305216", - "outputQty0": "45903212105691924654539", - "outputQty": "45822147877395128656135", - "swapFee1": "27342062164568241183", - "swapFee2": "18361284842276769861", + "type": "mint", + "inputIndex": 0, + "inputQty": "209756905757163548311552", + "outputQty0": "207445112816197452879567", + "outputQty": "203021538658106043308529", "mpReserves": [ - "56625065718333442255500225", - "27230892309290005469580467", - "26222356150194765581225234" + "56076517233002490279279413", + "7881876740160432606386170", + "37668715476772085114404086" ], "fpReserves": [ - "10980689693683127748938284", - "10649638917919700256702733" + "2162586150694132311995431", + "743832029058639075532358" ], - "mAssetSupply": "110051302901659856547308326", - "LPTokenSupply": "21462743190066107004888399" + "mAssetSupply": "101258744271984565403243198", + "LPTokenSupply": "2851866683487739061885954" }, { "type": "swap_fp_to_mp", - "inputQty": "784595548815885336576", + "inputQty": "15990721783037786324992", "outputIndex": 0, - "outputQty": "785753715774370170784", + "outputQty": "16335159031164609268654", "swapFee": "0", - "redemptionFee": "313901724032942962", + "redemptionFee": "9698660729490609996", "mpReserves": [ - "56624279964617667885329441", - "27230892309290005469580467", - "26222356150194765581225234" + "56060182073971325670010759", + "7881876740160432606386170", + "37668715476772085114404086" ], "fpReserves": [ - "10979904939373045391531381", - "10650423513468516142039309" + "2146421716144981295334172", + "759822750841676861857350" ], - "mAssetSupply": "110050518461251498222844385", - "LPTokenSupply": "21462743190066107004888399" + "mAssetSupply": "101242589536096143877191935", + "LPTokenSupply": "2851866683487739061885954" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "5772875917232975118336", - "outputQty0": "5815033786110837675594", - "outputQty": "5822438443599105593746", - "swapFee1": "3463725550339785071", - "swapFee2": "2326013514444335070", + "inputQty": "558456844754232704", + "outputQty0": "570338690841451961", + "outputQty": "576361286289285648", + "swapFee1": "335074106852539", + "swapFee2": "342203214504871", "mpReserves": [ - "56618457526174068779735695", - "27230892309290005469580467", - "26222356150194765581225234" + "56060181497610039380725111", + "7881876740160432606386170", + "37668715476772085114404086" ], "fpReserves": [ - "10974089905586934553855787", - "10650423513468516142039309" + "2146421145806290453882211", + "759822750841676861857350" ], - "mAssetSupply": "110044705753478901829503861", - "LPTokenSupply": "21456970660521429063748570" + "mAssetSupply": "101242588966099656250244845", + "LPTokenSupply": "2851866125064401718338503" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "4932311786257056268288", - "outputQty0": "4924068834878788701734", - "outputQty": "4919138995533189157537", - "swapFee": "3908349763802797004", + "inputIndex": 2, + "inputQty": "2113255577978854", + "outputQty0": "2101603784948960", + "outputQty": "2077914146383134", + "swapFee": "1645269163913", "mpReserves": [ - "56623389837960325836003983", - "27230892309290005469580467", - "26222356150194765581225234" + "56060181497610039380725111", + "7881876740160432606386170", + "37668715478885340692382940" ], "fpReserves": [ - "10979013974421813342557521", - "10645504374472982952881772" + "2146421147907894238831171", + "759822748763762715474216" ], - "mAssetSupply": "110049629822313780618205595", - "LPTokenSupply": "21456971051356405444028270" + "mAssetSupply": "101242588968201260035193805", + "LPTokenSupply": "2851866125064566245254894" }, { - "type": "swap_fp_to_mp", - "inputQty": "52090743738747272036352", - "outputIndex": 2, - "outputQty": "52007298513558617482872", - "swapFee": "0", - "redemptionFee": "20839890533822476153", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1510467893927360621182976", + "outputQty0": "1539619974040280529696587", + "outputQty": "1555577443645721986213149", + "swapFee1": "906280736356416372709", + "swapFee2": "923771984424168317817", "mpReserves": [ - "56623389837960325836003983", - "27230892309290005469580467", - "26170348851681206963742362" + "54504604053964317394511962", + "7881876740160432606386170", + "37668715478885340692382940" ], "fpReserves": [ - "10926914248087257152173868", - "10697595118211730224918124" + "606801173867613709134584", + "759822748763762715474216" ], - "mAssetSupply": "109997550935869758250298095", - "LPTokenSupply": "21456971051356405444028270" + "mAssetSupply": "99703892766145403673815035", + "LPTokenSupply": "1341488859210841265709188" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1102338085487942700105728", - "outputQty0": "1110160865006039272764944", - "outputQty": "1108079474380323050195811", - "swapFee1": "661402851292765620063", - "swapFee2": "444064346002415709105", + "type": "swap_fp_to_mp", + "inputQty": "42391393768595431424", + "outputIndex": 1, + "outputQty": "40057320288489946806", + "swapFee": "0", + "redemptionFee": "25396177424566080", "mpReserves": [ - "56623389837960325836003983", - "27230892309290005469580467", - "25062269377300883913546551" + "54504604053964317394511962", + "7881836682840144116439364", + "37668715478885340692382940" ], "fpReserves": [ - "9816753383081217879408924", - "10697595118211730224918124" + "606758846905239432333001", + "759865140157531310905640" ], - "mAssetSupply": "108887834135209721393242256", - "LPTokenSupply": "20354699106153592020484548" + "mAssetSupply": "99703850464579206821579532", + "LPTokenSupply": "1341488859210841265709188" }, { - "type": "swap_fp_to_mp", - "inputQty": "37095835203886104576", - "outputIndex": 1, - "outputQty": "37018950174334156466", - "swapFee": "0", - "redemptionFee": "14829866440947432", + "type": "redeem", + "outputIndex": 0, + "inputQty": "232903031386798686208", + "outputQty0": "236923881944621655443", + "outputQty": "239333360327613627134", + "swapFee1": "139741818832079211", + "swapFee2": "142154329166772993", "mpReserves": [ - "56623389837960325836003983", - "27230855290339831135424001", - "25062269377300883913546551" + "54504364720603989780884828", + "7881836682840144116439364", + "37668715478885340692382940" ], "fpReserves": [ - "9816716308415115510827055", - "10697632214046934111022700" + "606521923023294810677558", + "759865140157531310905640" ], - "mAssetSupply": "108887797075373485465607819", - "LPTokenSupply": "20354699106153592020484548" + "mAssetSupply": "99703613682851591366697082", + "LPTokenSupply": "1341255970153636350230901" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "557743794277681161306112", - "outputQty0": "558336768044296625327996", - "outputQty": "554103280258693058116542", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "5577999202510086078464", + "outputQty0": "5546631522308292525148", + "outputQty": "5550327899080603085853", + "swapFee": "4359307575648878490", "mpReserves": [ - "56623389837960325836003983", - "27788599084617512296730113", - "25062269377300883913546551" + "54504364720603989780884828", + "7881836682840144116439364", + "37674293478087850778461404" ], "fpReserves": [ - "10375053076459412136155051", - "10697632214046934111022700" + "612068554545603103202706", + "754314812258450707819787" ], - "mAssetSupply": "109446133843417782090935815", - "LPTokenSupply": "20908802386412285078601090" + "mAssetSupply": "99709160314373899659222230", + "LPTokenSupply": "1341256406084393915118750" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "100295273485082071924736", - "outputQty0": "101008672575496389943484", - "outputQty": "100864399386951913018213", - "swapFee1": "60177164091049243154", - "swapFee2": "40403469030198555977", + "outputIndex": 0, + "inputQty": "5616531707473805313048576", + "insufficientLiquidityError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1965724228565058816", + "outputQty0": "1954668413976944292", + "outputQty": "1955858480199247483", + "swapFee": "1536172636264039", "mpReserves": [ - "56623389837960325836003983", - "27687734685230560383711900", - "25062269377300883913546551" + "54504364720603989780884828", + "7881836682840144116439364", + "37674295443812079343520220" ], "fpReserves": [ - "10274044403883915746211567", - "10697632214046934111022700" + "612070509214017080146998", + "754312856399970508572304" ], - "mAssetSupply": "109345165574311315899548308", - "LPTokenSupply": "20808513130643612111600669" + "mAssetSupply": "99709162269042313636166522", + "LPTokenSupply": "1341256406238011178745153" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "199288787008613269897216", - "outputQty0": "199604139906290723090603", - "outputQty": "198071785429832856039130", + "inputIndex": 0, + "inputQty": "289769390833012352", + "outputQty0": "286680157311235138", + "outputQty": "281627181566279367", "mpReserves": [ - "56623389837960325836003983", - "27687734685230560383711900", - "25261558164309497183443767" + "54504365010373380613897180", + "7881836682840144116439364", + "37674295443812079343520220" ], "fpReserves": [ - "10473648543790206469302170", - "10697632214046934111022700" + "612070795894174391382136", + "754312856399970508572304" ], - "mAssetSupply": "109544769714217606622638911", - "LPTokenSupply": "21006584916073444967639799" + "mAssetSupply": "99709162555722470947401660", + "LPTokenSupply": "1341256687865192745024520" }, { "type": "swap_fp_to_mp", - "inputQty": "1777514596010130669568", - "outputIndex": 2, - "outputQty": "1773778418940483545542", + "inputQty": "1363189541820135112704", + "outputIndex": 0, + "outputQty": "1375093960543444992991", "swapFee": "0", - "redemptionFee": "710905401017542534", + "redemptionFee": "816750633664941805", "mpReserves": [ - "56623389837960325836003983", - "27687734685230560383711900", - "25259784385890556699898225" + "54502989916412837168904189", + "7881836682840144116439364", + "37674295443812079343520220" ], "fpReserves": [ - "10471871280287662612965489", - "10699409728642944241692268" + "610709544838066155038835", + "755676045941790643685008" ], - "mAssetSupply": "109542993161620463783844764", - "LPTokenSupply": "21006584916073444967639799" + "mAssetSupply": "99707802121416996376000164", + "LPTokenSupply": "1341256687865192745024520" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "305390506829709041467392", - "outputQty0": "304868198284388814819018", - "outputQty": "304609573652947975483515", - "swapFee": "242003037849291175866", + "inputIndex": 2, + "inputQty": "12042047910532679680", + "outputQty0": "11974318716836224521", + "outputQty": "11981945090206039852", + "swapFee": "9410755260863742", "mpReserves": [ - "56928780344790034877471375", - "27687734685230560383711900", - "25259784385890556699898225" + "54502989916412837168904189", + "7881836682840144116439364", + "37674307485859989876199900" ], "fpReserves": [ - "10776739478572051427784507", - "10394800154989996266208753" + "610721519156782991263356", + "755664063996700437645156" ], - "mAssetSupply": "109847861359904852598663782", - "LPTokenSupply": "21006609116377229896757385" + "mAssetSupply": "99707814095735713212224685", + "LPTokenSupply": "1341256688806268271110894" }, { "type": "swap_fp_to_mp", - "inputQty": "42722047431589205377024", + "inputQty": "139485755123059692404736", "outputIndex": 2, - "outputQty": "42646392463265746369777", + "outputQty": "139756669774345810181286", "swapFee": "0", - "redemptionFee": "17092447711208782095", + "redemptionFee": "83434182946529302024", "mpReserves": [ - "56928780344790034877471375", - "27687734685230560383711900", - "25217137993427290953528448" + "54502989916412837168904189", + "7881836682840144116439364", + "37534550816085644066018614" ], "fpReserves": [ - "10734008359294029472546104", - "10437522202421585471585777" + "471664547579234154555358", + "895149819119760130049892" ], - "mAssetSupply": "109805147333074541852207474", - "LPTokenSupply": "21006609116377229896757385" + "mAssetSupply": "99568840558341110904818711", + "LPTokenSupply": "1341256688806268271110894" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "23423337968584620", - "outputQty0": "23595227106471250", - "outputQty": "23560822647097423", - "swapFee1": "14054002781150", - "swapFee2": "9438090842588", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1043615615045729255424", + "outputQty0": "1037789300303461199517", + "outputQty": "1042151624605428811546", + "swapFee": "817377615697266129", "mpReserves": [ - "56928780344790034877471375", - "27687734661669737736614477", - "25217137993427290953528448" + "54502989916412837168904189", + "7881836682840144116439364", + "37535594431700689795274038" ], "fpReserves": [ - "10734008335698802366074854", - "10437522202421585471585777" + "472702336879537615754875", + "894107667495154701238346" ], - "mAssetSupply": "109805147309488752836578812", - "LPTokenSupply": "21006609092955297328450880" + "mAssetSupply": "99569878347641414366018228", + "LPTokenSupply": "1341256770544029840837506" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "19609420974636767641600", - "outputQty0": "19753262719029779877271", - "outputQty": "19724431945364551007151", - "swapFee1": "11765652584782060584", - "swapFee2": "7901305087611911950", - "mpReserves": [ - "56928780344790034877471375", - "27668010229724373185607326", - "25217137993427290953528448" - ], - "fpReserves": [ - "10714255072979772586197583", - "10437522202421585471585777" - ], - "mAssetSupply": "109785401948074810668613491", - "LPTokenSupply": "20987000848545919039015338" + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "650030540796205958430720", + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "130686065162408017920", - "outputIndex": 0, - "outputQty": "130881716949886440834", - "swapFee": "0", - "redemptionFee": "52283484141604378", + "type": "redeem", + "outputIndex": 2, + "inputQty": "5431102479392505331712", + "outputQty0": "5513068484164405338104", + "outputQty": "5540689569204961405965", + "swapFee1": "3258661487635503199", + "swapFee2": "3307841090498643202", "mpReserves": [ - "56928649463073084991030541", - "27668010229724373185607326", - "25217137993427290953528448" + "54502989916412837168904189", + "7881836682840144116439364", + "37530053742131484833868073" ], "fpReserves": [ - "10714124364269418575250621", - "10437652888486747879603697" + "467189268395373210416771", + "894107667495154701238346" ], - "mAssetSupply": "109785271291647940799270907", - "LPTokenSupply": "20987000848545919039015338" + "mAssetSupply": "99564368586998340459323326", + "LPTokenSupply": "1335825993930786099056113" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "26039965527955780665344", - "outputQty0": "25995125504644285922271", - "outputQty": "25790312043070456680095", + "inputIndex": 2, + "inputQty": "43690215708957080", + "outputQty0": "43446366864698316", + "outputQty": "42776369782889099", "mpReserves": [ - "56954689428601040771695885", - "27668010229724373185607326", - "25217137993427290953528448" + "54502989916412837168904189", + "7881836682840144116439364", + "37530053785821700542825153" ], "fpReserves": [ - "10740119489774062861172892", - "10437652888486747879603697" + "467189311841740075115087", + "894107667495154701238346" ], - "mAssetSupply": "109811266417152585085193178", - "LPTokenSupply": "21012791160588989495695433" + "mAssetSupply": "99564368630444707324021642", + "LPTokenSupply": "1335826036707155881945212" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "289150735451746107392", - "outputQty0": "289458326698475606783", - "outputQty": "289171977909007163267", - "swapFee": "229741246972517339", + "inputQty": "397024010399263930449920", + "outputQty0": "418165072878729138553654", + "outputQty": "417874327738762214966091", + "swapFee": "328776968954470252603", "mpReserves": [ - "56954689428601040771695885", - "27668299380459824931714718", - "25217137993427290953528448" + "54502989916412837168904189", + "8278860693239408046889284", + "37530053785821700542825153" ], "fpReserves": [ - "10740408948100761336779675", - "10437363716508838872440430" + "885354384720469213668741", + "476233339756392486272255" ], - "mAssetSupply": "109811555875479283560799961", - "LPTokenSupply": "21012791183563114192947166" + "mAssetSupply": "99982533703323436462575296", + "LPTokenSupply": "1335858914404051328970472" }, { "type": "mint", "inputIndex": 2, - "inputQty": "5976070752667271430144", - "outputQty0": "5985572164801750456781", - "outputQty": "5938382298440812490745", + "inputQty": "734025697806260633600", + "outputQty0": "730192704945139965783", + "outputQty": "715190021669666135377", "mpReserves": [ - "56954689428601040771695885", - "27668299380459824931714718", - "25223114064179958224958592" + "54502989916412837168904189", + "8278860693239408046889284", + "37530787811519506803458753" ], "fpReserves": [ - "10746394520265563087236456", - "10437363716508838872440430" + "886084577425414353634524", + "476233339756392486272255" ], - "mAssetSupply": "109817541447644085311256742", - "LPTokenSupply": "21018729565861555005437911" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "123587354897660000", - "outputQty0": "123374506382629403", - "outputQty": "122401718314006794", - "mpReserves": [ - "56954689552188395669355885", - "27668299380459824931714718", - "25223114064179958224958592" - ], - "fpReserves": [ - "10746394643640069469865859", - "10437363716508838872440430" - ], - "mAssetSupply": "109817541571018591693886145", - "LPTokenSupply": "21018729688263273319444705" + "mAssetSupply": "99983263896028381602541079", + "LPTokenSupply": "1336574104425720995105849" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1157854113962694029606912", - "outputQty0": "1155826680406952774840297", - "outputQty": "1153828869801995438825469", - "swapFee": "917216867983387137610", - "mpReserves": [ - "58112543666151089698962797", - "27668299380459824931714718", - "25223114064179958224958592" - ], - "fpReserves": [ - "11902221324047022244706156", - "9283534846706843433614961" - ], - "mAssetSupply": "110973368251425544468726442", - "LPTokenSupply": "21018821409950071658158466" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "81594643836025111052288", - "outputIndex": 0, - "outputQty": "81840740477274709707455", - "swapFee": "0", - "redemptionFee": "32691174560076867584", + "inputIndex": 1, + "inputQty": "15743398088573288710144", + "outputQty0": "16540569218931121324617", + "outputQty": "16443486932316157903929", + "swapFee": "12960130942331036155", "mpReserves": [ - "58030702925673814989255342", - "27668299380459824931714718", - "25223114064179958224958592" + "54502989916412837168904189", + "8294604091327981335599428", + "37530787811519506803458753" ], "fpReserves": [ - "11820493387646830075745267", - "9365129490542868544667249" + "902625146644345474959141", + "459789852824076328368326" ], - "mAssetSupply": "110891673006199912376633137", - "LPTokenSupply": "21018821409950071658158466" + "mAssetSupply": "99999804465247312723865696", + "LPTokenSupply": "1336575400438815228209464" }, { "type": "swap_fp_to_mp", - "inputQty": "348031714551595520", + "inputQty": "791852427922544394240", "outputIndex": 2, - "outputQty": "347866433178262507", + "outputQty": "799793854527543436521", "swapFee": "0", - "redemptionFee": "139432369023557", + "redemptionFee": "477663576710780379", "mpReserves": [ - "58030702925673814989255342", - "27668299380459824931714718", - "25223113716313525046696085" + "54502989916412837168904189", + "8294604091327981335599428", + "37529988017664979260022232" ], "fpReserves": [ - "11820493039065907516851160", - "9365129838574583096262769" + "901829040683160840994136", + "460581705251998872762566" ], - "mAssetSupply": "110891672657758422186762587", - "LPTokenSupply": "21018821409950071658158466" + "mAssetSupply": "99999008836949704800681070", + "LPTokenSupply": "1336575400438815228209464" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "81491223623861576663040", - "outputQty0": "81581760928173627649654", - "outputQty": "80882147086090138807759", + "inputQty": "27617976984412067201024", + "outputQty0": "29009209886034252975986", + "outputQty": "28815969283375255576614", + "swapFee": "22724791264843060832", "mpReserves": [ - "58030702925673814989255342", - "27749790604083686508377758", - "25223113716313525046696085" + "54502989916412837168904189", + "8322222068312393402800452", + "37529988017664979260022232" ], "fpReserves": [ - "11902074799994081144500814", - "9365129838574583096262769" + "930838250569195093970122", + "431765735968623617185952" ], - "mAssetSupply": "110973254418686595814412241", - "LPTokenSupply": "21099703557036161796966225" + "mAssetSupply": "100028018046835739053657056", + "LPTokenSupply": "1336577672917941712515547" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "15702037867693453869056", - "outputQty0": "15728034950972702513131", - "outputQty": "15592957494473920955691", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1374035400593915772928", + "outputQty0": "1443013337579033342603", + "outputQty": "1432541087534627467731", + "swapFee": "1130039269549411537", "mpReserves": [ - "58030702925673814989255342", - "27749790604083686508377758", - "25238815754181218500565141" + "54502989916412837168904189", + "8323596103712987318573380", + "37529988017664979260022232" ], "fpReserves": [ - "11917802834945053847013945", - "9365129838574583096262769" + "932281263906774127312725", + "430333194881088989718221" ], - "mAssetSupply": "110988982453637568516925372", - "LPTokenSupply": "21115296514530635717921916" + "mAssetSupply": "100029461060173318086999659", + "LPTokenSupply": "1336577785921868667456700" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "520211538228068288", - "outputQty0": "524404238863227168", - "outputQty": "525124347468435365", - "swapFee1": "312126922936840", - "swapFee2": "209761695545290", + "outputIndex": 2, + "inputQty": "108417054162146553757696", + "outputQty0": "110664545057618229656952", + "outputQty": "111172602195569002470309", + "swapFee1": "65050232497287932254", + "swapFee2": "66398727034570937794", "mpReserves": [ - "58030702400549467520819977", - "27749790604083686508377758", - "25238815754181218500565141" + "54502989916412837168904189", + "8323596103712987318573380", + "37418815415469410257551923" ], "fpReserves": [ - "11917802310540814983786777", - "9365129838574583096262769" + "821616718849155897655773", + "430333194881088989718221" ], - "mAssetSupply": "110988981929443091349243494", - "LPTokenSupply": "21115295994350310182147312" + "mAssetSupply": "99918862913842734428280501", + "LPTokenSupply": "1228167236782971842492229" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "716872358906916138647552", - "outputQty0": "715590179464070788462766", - "outputQty": "713491443959465037707851", - "swapFee": "567502056200981499132", + "inputIndex": 1, + "inputQty": "6567200249087694733312", + "outputQty0": "6895946901549182814594", + "outputQty": "6854666402194856048595", + "swapFee": "5402428553527732001", "mpReserves": [ - "58747574759456383659467529", - "27749790604083686508377758", - "25238815754181218500565141" + "54502989916412837168904189", + "8330163303962075013306692", + "37418815415469410257551923" ], "fpReserves": [ - "12633392490004885772249543", - "8651638394615118058554918" + "828512665750705080470367", + "423478528478894133669626" ], - "mAssetSupply": "111704572108907162137706260", - "LPTokenSupply": "21115352744555930280297225" + "mAssetSupply": "99925758860744283611095095", + "LPTokenSupply": "1228167777025827195265429" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "14259075487229689200640", - "outputQty0": "14283257200726800710678", - "outputQty": "14233776053620348743218", - "swapFee": "11323241003667121806", + "inputQty": "1178514367306327785472", + "outputQty0": "1172450027096589842168", + "outputQty": "1165253039054776704115", + "swapFee": "918448106277581619", "mpReserves": [ - "58747574759456383659467529", - "27749790604083686508377758", - "25253074829668448189765781" + "54502989916412837168904189", + "8330163303962075013306692", + "37419993929836716585337395" ], "fpReserves": [ - "12647675747205612572960221", - "8637404618561497709811700" + "829685115777801670312535", + "422313275439839356965511" ], - "mAssetSupply": "111718855366107888938416938", - "LPTokenSupply": "21115353876880030647009405" + "mAssetSupply": "99926931310771380200937263", + "LPTokenSupply": "1228167868870637823023590" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1265581898684112306176", - "outputQty0": "1276377972263714488845", - "outputQty": "1273708977408534121441", - "swapFee1": "759349139210467383", - "swapFee2": "510551188905485795", + "type": "swap_fp_to_mp", + "inputQty": "120037888246144642842624", + "outputIndex": 1, + "outputQty": "114571268954545190930113", + "swapFee": "0", + "redemptionFee": "72272025225668244377", "mpReserves": [ - "58747574759456383659467529", - "27749790604083686508377758", - "25251801120691039655644340" + "54502989916412837168904189", + "8215592035007529822376579", + "37419993929836716585337395" ], "fpReserves": [ - "12646399369233348858471376", - "8637404618561497709811700" + "709231740401687929682537", + "542351163685983999808135" ], - "mAssetSupply": "111717579498686814129413888", - "LPTokenSupply": "21114088370916260455749967" + "mAssetSupply": "99806550207420492128551642", + "LPTokenSupply": "1228167868870637823023590" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "991080334650256041967616", - "outputQty0": "989266390937767816430154", - "outputQty": "985025131405713106350827", - "swapFee": "784152024531839340549", + "inputQty": "2394732404553801007104", + "outputQty0": "2370209836823168462054", + "outputQty": "2363917737043805690167", + "swapFee": "1859208295419049886", "mpReserves": [ - "59738655094106639701435145", - "27749790604083686508377758", - "25251801120691039655644340" + "54505384648817390969911293", + "8215592035007529822376579", + "37419993929836716585337395" ], "fpReserves": [ - "13635665760171116674901530", - "7652379487155784603460873" + "711601950238511098144591", + "539987245948940194117968" ], - "mAssetSupply": "112706845889624581945844042", - "LPTokenSupply": "21114166786118713639684021" + "mAssetSupply": "99808920417257315297013696", + "LPTokenSupply": "1228168054791467364928578" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "305018735773119823216640", - "outputQty0": "307819223538857027377692", - "outputQty": "307147411724453890911573", - "swapFee1": "183011241463871893929", - "swapFee2": "123127689415542810951", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "218691825590324516880384", + "outputQty0": "217537907153541705126845", + "outputQty": "216182784065226601212335", + "swapFee": "170558798170871450402", "mpReserves": [ - "59738655094106639701435145", - "27749790604083686508377758", - "24944653708966585764732767" + "54505384648817390969911293", + "8215592035007529822376579", + "37638685755427041102217779" ], "fpReserves": [ - "13327846536632259647523838", - "7652379487155784603460873" + "929139857392052803271436", + "323804461883713592905633" ], - "mAssetSupply": "112399149793775140461277301", - "LPTokenSupply": "20809166351469740203656773" + "mAssetSupply": "100026458324410857002140541", + "LPTokenSupply": "1228185110671284452073618" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "71068116459850062364672", - "outputQty0": "71151376832686204170315", - "outputQty": "70463327119587507348235", - "mpReserves": [ - "59738655094106639701435145", - "27820858720543536570742430", - "24944653708966585764732767" - ], - "fpReserves": [ - "13398997913464945851694153", - "7652379487155784603460873" - ], - "mAssetSupply": "112470301170607826665447616", - "LPTokenSupply": "20879629678589327711005008" + "inputQty": "120116027596956174909440", + "hardLimitError": true }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "593835459442695303331840", - "outputQty0": "599233366325828987823802", - "outputQty": "598267951045396793998135", - "swapFee1": "356301275665617181999", - "swapFee2": "239693346530331595129", - "mpReserves": [ - "59738655094106639701435145", - "27222590769498139776744295", - "24944653708966585764732767" - ], - "fpReserves": [ - "12799764547139116863870351", - "7652379487155784603460873" - ], - "mAssetSupply": "111871307497628528009218943", - "LPTokenSupply": "20285829849274198969391367" + "type": "mint", + "inputIndex": 0, + "inputQty": "1138209416073701262098432", + "hardLimitError": true }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "239558832722578344247296", - "outputQty0": "239101811114365267701854", - "outputQty": "237951251520907672356697", - "swapFee": "189450503469924006837", + "inputQty": "558732088609250304", + "outputQty0": "553018723814351768", + "outputQty": "546625184513668341", + "swapFee": "432455745451337", "mpReserves": [ - "59978213926829218045682441", - "27222590769498139776744295", - "24944653708966585764732767" + "54505385207549479579161597", + "8215592035007529822376579", + "37638685755427041102217779" ], "fpReserves": [ - "13038866358253482131572205", - "7414428235634876931104176" + "929140410410776617623204", + "323803915258529079237292" ], - "mAssetSupply": "112110409308742893276920797", - "LPTokenSupply": "20285848794324545961792050" + "mAssetSupply": "100026458877429580816492309", + "LPTokenSupply": "1228185110714530026618751" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "41091924247102136320", - "outputQty0": "41166163995489041277", - "outputQty": "40958514330530936047", - "swapFee": "32612887591905432", + "inputIndex": 0, + "inputQty": "5833674684974634106880", + "outputQty0": "5774017895517581433774", + "outputQty": "5705955237653724010824", + "swapFee": "4515161712992668226", "mpReserves": [ - "59978213926829218045682441", - "27222590769498139776744295", - "24944694800890832866869087" + "54511218882234454213268477", + "8215592035007529822376579", + "37638685755427041102217779" ], "fpReserves": [ - "13038907524417477620613482", - "7414387277120546400168129" + "934914428306294199056978", + "318097960020875355226468" ], - "mAssetSupply": "112110450474906888765962074", - "LPTokenSupply": "20285848797585834720982593" + "mAssetSupply": "100032232895325098397926083", + "LPTokenSupply": "1228185562230701325885573" }, { "type": "swap_fp_to_mp", - "inputQty": "378657114195432214364160", - "outputIndex": 0, - "outputQty": "380705989711209396629379", + "inputQty": "71330971765815835099136", + "outputIndex": 1, + "outputQty": "68363619582808295731228", "swapFee": "0", - "redemptionFee": "152053244205662375758", + "redemptionFee": "43178519408805120496", "mpReserves": [ - "59597507937118008649053062", - "27222590769498139776744295", - "24944694800890832866869087" + "54511218882234454213268477", + "8147228415424721526645351", + "37638685755427041102217779" ], "fpReserves": [ - "12658774413903321681216149", - "7793044391315978614532289" + "862950229291618998230161", + "389428931786691190325604" ], - "mAssetSupply": "111730469417636938488940499", - "LPTokenSupply": "20285848797585834720982593" + "mAssetSupply": "99960311874829832002219762", + "LPTokenSupply": "1228185562230701325885573" }, { - "type": "swap_fp_to_mp", - "inputQty": "75495637795412102873088", - "outputIndex": 0, - "outputQty": "75871312193496686487634", - "swapFee": "0", - "redemptionFee": "30303208676780578585", + "type": "mint", + "inputIndex": 1, + "inputQty": "4501927691552258260992", + "outputQty0": "4738002215743521353389", + "outputQty": "4636587670793830861902", "mpReserves": [ - "59521636624924511962565428", - "27222590769498139776744295", - "24944694800890832866869087" + "54511218882234454213268477", + "8151730343116273784906343", + "37638685755427041102217779" ], "fpReserves": [ - "12583016392211370234752835", - "7868540029111390717405377" + "867688231507362519583550", + "389428931786691190325604" ], - "mAssetSupply": "111654741699153663823055770", - "LPTokenSupply": "20285848797585834720982593" + "mAssetSupply": "99965049877045575523573151", + "LPTokenSupply": "1232822149901495156747475" }, { - "type": "swap_fp_to_mp", - "inputQty": "1880392048380108945227776", - "outputIndex": 1, - "outputQty": "1880637068662777934102384", - "swapFee": "0", - "redemptionFee": "753617889458094168897", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "14655461159885875445760", + "outputQty0": "14576811700619427997708", + "outputQty": "14460258852814456064813", + "swapFee": "11411332878472341016", "mpReserves": [ - "59521636624924511962565428", - "25341953700835361842641911", - "24944694800890832866869087" + "54511218882234454213268477", + "8151730343116273784906343", + "37653341216586926977663539" ], "fpReserves": [ - "10698971668566134812508449", - "9748932077491499662633153" + "882265043207981947581258", + "374968672933876734260791" ], - "mAssetSupply": "109771450593397886494980281", - "LPTokenSupply": "20285848797585834720982593" + "mAssetSupply": "99979626688746194951570859", + "LPTokenSupply": "1232823291034783003981576" }, { - "type": "swap_fp_to_mp", - "inputQty": "616120935983330868854784", - "outputIndex": 1, - "outputQty": "614996535601486729922414", - "swapFee": "0", - "redemptionFee": "246501799498503998195", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "4618872791757967851520", + "outputQty0": "4594072346658782584901", + "outputQty": "4555089622503415783550", + "swapFee": "3595679693367823847", "mpReserves": [ - "59521636624924511962565428", - "24726957165233875112719497", - "24944694800890832866869087" + "54511218882234454213268477", + "8151730343116273784906343", + "37657960089378684945515059" ], "fpReserves": [ - "10082717169819874817019803", - "10365053013474830531487937" + "886859115554640730166159", + "370413583311373318477241" ], - "mAssetSupply": "109155442596451125003489830", - "LPTokenSupply": "20285848797585834720982593" + "mAssetSupply": "99984220761092853734155760", + "LPTokenSupply": "1232823650602752340763960" }, { "type": "swap_fp_to_mp", - "inputQty": "11653615620451876864", - "outputIndex": 1, - "outputQty": "11626973248759262856", + "inputQty": "1149622346021552914432", + "outputIndex": 2, + "outputQty": "1164196536568565357866", "swapFee": "0", - "redemptionFee": "4660593469676177", + "redemptionFee": "695184078429620468", "mpReserves": [ - "59521636624924511962565428", - "24726945538260626353456641", - "24944694800890832866869087" + "54511218882234454213268477", + "8151730343116273784906343", + "37656795892842116380157193" ], "fpReserves": [ - "10082705518336200626576999", - "10365064667090450983364801" + "885700475423924696051904", + "371563205657394871391673" ], - "mAssetSupply": "109155430949628044282723203", - "LPTokenSupply": "20285848797585834720982593" + "mAssetSupply": "99983062816146216129661973", + "LPTokenSupply": "1232823650602752340763960" }, { - "type": "swap_fp_to_mp", - "inputQty": "76949990215610699612160", - "outputIndex": 0, - "outputQty": "77058115204291793161287", - "swapFee": "0", - "redemptionFee": "30772828704316138144", + "type": "mint", + "inputIndex": 1, + "inputQty": "621839137754698880", + "outputQty0": "654439767487667851", + "outputQty": "640239848344280031", "mpReserves": [ - "59444578509720220169404141", - "24726945538260626353456641", - "24944694800890832866869087" + "54511218882234454213268477", + "8151730964955411539605223", + "37656795892842116380157193" ], "fpReserves": [ - "10005773446575410281214697", - "10442014657306061682976961" + "885701129863692183719755", + "371563205657394871391673" ], - "mAssetSupply": "109078529650695958253499045", - "LPTokenSupply": "20285848797585834720982593" + "mAssetSupply": "99983063470585983617329824", + "LPTokenSupply": "1232824290842600685043991" }, { "type": "swap_fp_to_mp", - "inputQty": "751816965214178115584", + "inputQty": "38645076410943114575872", "outputIndex": 2, - "outputQty": "750068378825361849088", + "outputQty": "39095855422149404770752", "swapFee": "0", - "redemptionFee": "300641596751251282", + "redemptionFee": "23345694403566633351", "mpReserves": [ - "59444578509720220169404141", - "24726945538260626353456641", - "24943944732512007505019999" + "54511218882234454213268477", + "8151730964955411539605223", + "37617700037419966975386441" ], "fpReserves": [ - "10005021842583532153008606", - "10442766474271275861092545" + "846791639191081128134282", + "410208282068337985967545" ], - "mAssetSupply": "109077778347345676876544236", - "LPTokenSupply": "20285848797585834720982593" + "mAssetSupply": "99944177325607776128377702", + "LPTokenSupply": "1232824290842600685043991" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "3157468519279289973080064", - "outputQty0": "3161912072311147312497103", - "outputQty": "3153323128490927859492002", - "swapFee": "2508687969774822499513", + "inputQty": "30576501640148727889920", + "outputQty0": "32172538042923032520048", + "outputQty": "31933593285548177533103", + "swapFee": "25192265094934920661", "mpReserves": [ - "59444578509720220169404141", - "27884414057539916326536705", - "24943944732512007505019999" + "54511218882234454213268477", + "8182307466595560267495143", + "37617700037419966975386441" ], "fpReserves": [ - "13166933914894679465505709", - "7289443345780348001600543" + "878964177234004160654330", + "378274688782789808434442" ], - "mAssetSupply": "112239690419656824189041339", - "LPTokenSupply": "20286099666382812203232544" + "mAssetSupply": "99976349863650699160897750", + "LPTokenSupply": "1232826810069110178536057" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "703948588997430476800", "outputIndex": 0, - "inputQty": "453201875553111506944000", - "outputQty0": "457440214174366455495889", - "outputQty": "458100662722859068376899", - "swapFee1": "271921125331866904166", - "swapFee2": "182976085669746582198", + "outputQty": "716111812746684805621", + "swapFee": "0", + "redemptionFee": "425509523851195926", "mpReserves": [ - "58986477846997361101027242", - "27884414057539916326536705", - "24943944732512007505019999" + "54510502770421707528462856", + "8182307466595560267495143", + "37617700037419966975386441" ], "fpReserves": [ - "12709493700720313010009820", - "7289443345780348001600543" + "878254994694252167443388", + "378978637371787238911242" ], - "mAssetSupply": "111782433181568127480127648", - "LPTokenSupply": "19832924982942233882978960" + "mAssetSupply": "99975641106620471018882734", + "LPTokenSupply": "1232826810069110178536057" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1451289317577072232628224", - "outputQty0": "1464494658440544293497026", - "outputQty": "1461082825449929010748538", - "swapFee1": "870773590546243339576", - "swapFee2": "585797863376217717398", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "264226536890688143360", + "outputQty0": "277967153912271904458", + "outputQty": "275698006258156980964", + "swapFee": "217570190531083790", "mpReserves": [ - "58986477846997361101027242", - "27884414057539916326536705", - "23482861907062078494271461" + "54510502770421707528462856", + "8182571693132450955638503", + "37617700037419966975386441" ], "fpReserves": [ - "11244999042279768716512794", - "7289443345780348001600543" + "878532961848164439347846", + "378702939365529081930278" ], - "mAssetSupply": "110318524320990959404348020", - "LPTokenSupply": "18381722742724216274684693" + "mAssetSupply": "99975919073774383290787192", + "LPTokenSupply": "1232826831826129231644436" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "967530923490852077568", - "outputQty0": "969562284203373566856", - "outputQty": "960400267442409721540", - "mpReserves": [ - "58986477846997361101027242", - "27884414057539916326536705", - "23483829437985569346349029" - ], - "fpReserves": [ - "11245968604563972090079650", - "7289443345780348001600543" - ], - "mAssetSupply": "110319493883275162777914876", - "LPTokenSupply": "18382683142991658684406233" + "type": "redeem", + "outputIndex": 1, + "inputQty": "1137562488110588956246016", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "2023868224844665731416064", + "inputQty": "19089340971344849797120", "outputIndex": 1, - "outputQty": "2023545211768559584916477", + "outputQty": "18258983962959775817131", "swapFee": "0", - "redemptionFee": "810718298492686393075", + "redemptionFee": "11533263907618617222", "mpReserves": [ - "58986477846997361101027242", - "25860868845771356741620228", - "23483829437985569346349029" + "54510502770421707528462856", + "8164312709169491179821372", + "37617700037419966975386441" ], "fpReserves": [ - "9219172858332256107391095", - "9313311570625013733016607" + "859310855335466743976575", + "397792280336873931727398" ], - "mAssetSupply": "108293508855341939481619396", - "LPTokenSupply": "18382683142991658684406233" + "mAssetSupply": "99956708500525593214033143", + "LPTokenSupply": "1232826831826129231644436" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "330420960103016221900800", "outputIndex": 1, - "inputQty": "690164412527003136", - "outputQty0": "695347607543846556", - "outputQty": "694112832822502089", - "swapFee1": "414098647516201", - "swapFee2": "278139043017538", + "outputQty": "313730339010830957494215", + "swapFee": "0", + "redemptionFee": "198576459421564379262", "mpReserves": [ - "58986477846997361101027242", - "25860868151658523919118139", - "23483829437985569346349029" + "54510502770421707528462856", + "7850582370158660222327157", + "37617700037419966975386441" ], "fpReserves": [ - "9219172162984648563544539", - "9313311570625013733016607" + "528350089632859445205375", + "728213240439890153628198" ], - "mAssetSupply": "108293508160272470980790378", - "LPTokenSupply": "18382682452868656022154717" + "mAssetSupply": "99625946311282407479641205", + "LPTokenSupply": "1232826831826129231644436" }, { "type": "swap_fp_to_mp", - "inputQty": "67866264313162476027904", - "outputIndex": 0, - "outputQty": "67969560559618300801259", + "inputQty": "109161678219993430360064", + "outputIndex": 1, + "outputQty": "102810971298687315812363", "swapFee": "0", - "redemptionFee": "27143362285199957685", + "redemptionFee": "65251913441969737420", "mpReserves": [ - "58918508286437742800225983", - "25860868151658523919118139", - "23483829437985569346349029" + "54510502770421707528462856", + "7747771398859972906514794", + "37617700037419966975386441" ], "fpReserves": [ - "9151313757271648669330186", - "9381177834938176209044511" + "419596900562909882838192", + "837374918659883583988262" ], - "mAssetSupply": "108225676897921756286533710", - "LPTokenSupply": "18382682452868656022154717" + "mAssetSupply": "99517258374125899887011442", + "LPTokenSupply": "1232826831826129231644436" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2230204682033241856", - "outputQty0": "2246843737409308943", - "outputQty": "2242862822380923405", - "swapFee1": "1338122809219945", - "swapFee2": "898737494963723", + "type": "mint", + "inputIndex": 0, + "inputQty": "121065655256126400233472", + "outputQty0": "119749943336117533169647", + "outputQty": "117784868307681454248146", "mpReserves": [ - "58918508286437742800225983", - "25860865908795701538194734", - "23483829437985569346349029" + "54631568425677833928696328", + "7747771398859972906514794", + "37617700037419966975386441" ], "fpReserves": [ - "9151311510427911260021243", - "9381177834938176209044511" + "539346843899027416007839", + "837374918659883583988262" ], - "mAssetSupply": "108225674651976756372188490", - "LPTokenSupply": "18382680222797786269834855" + "mAssetSupply": "99637008317462017420181089", + "LPTokenSupply": "1350611700133810685892582" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "246079438392374031548416", - "outputQty0": "247903954969016978854352", - "outputQty": "248307903977750206380239", - "swapFee1": "147647663035424418929", - "swapFee2": "99161581987606791541", + "type": "mint", + "inputIndex": 1, + "inputQty": "1442807978839539475021824", + "outputQty0": "1513610960926858556168328", + "outputQty": "1483351230640609652859330", "mpReserves": [ - "58670200382459992593845744", - "25860865908795701538194734", - "23483829437985569346349029" + "54631568425677833928696328", + "9190579377699512381536618", + "37617700037419966975386441" ], "fpReserves": [ - "8903407555458894281166891", - "9381177834938176209044511" + "2052957804825885972176167", + "837374918659883583988262" ], - "mAssetSupply": "107977869858589727000125679", - "LPTokenSupply": "18136615549171715780728331" + "mAssetSupply": "101150619278388875976349417", + "LPTokenSupply": "2833962930774420338751912" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "42519744869380218880", - "outputQty0": "42603563330187226491", - "outputQty": "42584234492656425071", - "swapFee": "33813042638253798", + "type": "swap_fp_to_mp", + "inputQty": "566829586450151047168", + "outputIndex": 1, + "outputQty": "548410268820070564610", + "swapFee": "0", + "redemptionFee": "342892210977440357", "mpReserves": [ - "58670200382459992593845744", - "25860865908795701538194734", - "23483871957730438726567909" + "54631568425677833928696328", + "9190030967430692310972008", + "37617700037419966975386441" ], "fpReserves": [ - "8903450159022224468393382", - "9381135250703683552619440" + "2052386317807590238247237", + "837941748246333735035430" ], - "mAssetSupply": "107977912462153057187352170", - "LPTokenSupply": "18136615552553020044553710" + "mAssetSupply": "101150048134262791219860844", + "LPTokenSupply": "2833962930774420338751912" }, { "type": "swap_fp_to_mp", - "inputQty": "96367513890982084608", + "inputQty": "1572349520571197816832", "outputIndex": 2, - "outputQty": "96106135336500446667", + "outputQty": "1591475066855741511715", "swapFee": "0", - "redemptionFee": "38533648801222982", + "redemptionFee": "951136024837719749", "mpReserves": [ - "58670200382459992593845744", - "25860865908795701538194734", - "23483775851595102226121242" + "54631568425677833928696328", + "9190030967430692310972008", + "37616108562353111233874726" ], "fpReserves": [ - "8903353824900221410936908", - "9381231618217574534704048" + "2050801091099527371998068", + "839514097766904932852262" ], - "mAssetSupply": "107977816166564702931118678", - "LPTokenSupply": "18136615552553020044553710" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2010609450699911069696", - "outputQty0": "2014572493331615751223", - "outputQty": "2013655770118720743362", - "swapFee": "1598899181130673294", - "mpReserves": [ - "58670200382459992593845744", - "25860865908795701538194734", - "23485786461045802137190938" - ], - "fpReserves": [ - "8905368397393553026688131", - "9379217962447455813960686" - ], - "mAssetSupply": "107979830739058034546869901", - "LPTokenSupply": "18136615712442938157621039" + "mAssetSupply": "101148463858690753191331424", + "LPTokenSupply": "2833962930774420338751912" }, { "type": "mint", "inputIndex": 1, - "inputQty": "230182197783782381060096", - "outputQty0": "230490450499052011020926", - "outputQty": "228655534338962947908445", - "mpReserves": [ - "58670200382459992593845744", - "26091048106579483919254830", - "23485786461045802137190938" - ], - "fpReserves": [ - "9135858847892605037709057", - "9379217962447455813960686" - ], - "mAssetSupply": "108210321189557086557890827", - "LPTokenSupply": "18365271246781901105529484" + "inputQty": "2151719025697308146663424", + "hardLimitError": true }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "301360210607667019776", - "outputQty0": "303609314294057853234", - "outputQty": "304097879584871177703", - "swapFee1": "180816126364600211", - "swapFee2": "121443725717623141", - "mpReserves": [ - "58669896284580407722668041", - "26091048106579483919254830", - "23485786461045802137190938" - ], - "fpReserves": [ - "9135555238578310979855823", - "9379217962447455813960686" - ], - "mAssetSupply": "108210017701686518217660734", - "LPTokenSupply": "18364969904652906074969729" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "319583578022652223160320", - "outputQty0": "320205445207917655655503", - "outputQty": "317624353000945719098044", + "outputIndex": 1, + "inputQty": "167532537579096235835392", + "outputQty0": "171135620396941473866327", + "outputQty": "164107265323185927852214", + "swapFee1": "100519522547457741501", + "swapFee2": "102681372238164884319", "mpReserves": [ - "58669896284580407722668041", - "26091048106579483919254830", - "23805370039068454360351258" + "54631568425677833928696328", + "9025923702107506383119794", + "37616108562353111233874726" ], "fpReserves": [ - "9455760683786228635511326", - "9379217962447455813960686" + "1879665470702585898131741", + "839514097766904932852262" ], - "mAssetSupply": "108530223146894435873316237", - "LPTokenSupply": "18682594257653851794067773" + "mAssetSupply": "100977430919666049882349416", + "LPTokenSupply": "2666440445147578848690670" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "789416823470118534119424", - "outputQty0": "787834211011440803533990", - "outputQty": "786722152816935672749439", - "swapFee": "625068803078270358448", + "type": "redeem", + "outputIndex": 2, + "inputQty": "2268718045208056320", + "outputQty0": "2317167716039594139", + "outputQty": "2326577621901380717", + "swapFee1": "1361230827124833", + "swapFee2": "1390300629623756", "mpReserves": [ - "59459313108050526256787465", - "26091048106579483919254830", - "23805370039068454360351258" + "54631568425677833928696328", + "9025923702107506383119794", + "37616106235775489332494009" ], "fpReserves": [ - "10243594894797669439045316", - "8592495809630520141211247" + "1879663153534869858537602", + "839514097766904932852262" ], - "mAssetSupply": "109318057357905876676850227", - "LPTokenSupply": "18682656764534159621103617" + "mAssetSupply": "100977428603888634472379033", + "LPTokenSupply": "2666438176565656723346833" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "396240246936687203057664", - "outputQty0": "395433317728468161226805", - "outputQty": "394534849939044746059183", - "swapFee": "313582286445504250735", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1840418117501811968", + "outputQty0": "1879721209820451649", + "outputQty": "1887354665517414323", + "swapFee1": "1104250870501087", + "swapFee2": "1127832725892270", "mpReserves": [ - "59855553354987213459845129", - "26091048106579483919254830", - "23805370039068454360351258" + "54631568425677833928696328", + "9025923702107506383119794", + "37616104348420823815079686" ], "fpReserves": [ - "10639028212526137600272121", - "8197960959691475395152064" + "1879661273813660038085953", + "839514097766904932852262" ], - "mAssetSupply": "109713490675634344838077032", - "LPTokenSupply": "18682688122762804171528690" + "mAssetSupply": "100977426725295257377819654", + "LPTokenSupply": "2666436336257964308584973" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "43657849866904666112000", - "outputQty0": "43744577383372593000543", - "outputQty": "43630580748748971870790", - "swapFee": "34681959852833908744", + "type": "swap_fp_to_mp", + "inputQty": "5198674447300265246720", + "outputIndex": 0, + "outputQty": "5280616592140995804146", + "swapFee": "0", + "redemptionFee": "3140717829628773937", "mpReserves": [ - "59855553354987213459845129", - "26091048106579483919254830", - "23849027888935359026463258" + "54626287809085692932892182", + "9025923702107506383119794", + "37616104348420823815079686" ], "fpReserves": [ - "10682772789909510193272664", - "8154330378942726423281274" + "1874426744097612081523731", + "844712772214205198098982" ], - "mAssetSupply": "109757235253017717431077575", - "LPTokenSupply": "18682691590958789454919564" + "mAssetSupply": "100972195336297039050031369", + "LPTokenSupply": "2666436336257964308584973" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "22538160785792", - "outputQty0": "22492092679569", - "outputQty": "22432714912111", - "swapFee": "17831935856", + "type": "mint", + "inputIndex": 1, + "inputQty": "5296363190011871363072", + "outputQty0": "5523744487982568736066", + "outputQty": "5405166113363050324094", "mpReserves": [ - "59855553355009751620630921", - "26091048106579483919254830", - "23849027888935359026463258" + "54626287809085692932892182", + "9031220065297518254482866", + "37616104348420823815079686" ], "fpReserves": [ - "10682772789932002285952233", - "8154330378920293708369163" + "1879950488585594650259797", + "844712772214205198098982" ], - "mAssetSupply": "109757235253040209523757144", - "LPTokenSupply": "18682691590958791238113149" + "mAssetSupply": "100977719080785021618767435", + "LPTokenSupply": "2671841502371327358909067" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4501994720435105169408", - "outputQty0": "4492792080252259965742", - "outputQty": "4452405148594872356267", + "inputQty": "1539229334405070716928", + "outputQty0": "1524889346505871896907", + "outputQty": "1492143290506660374205", "mpReserves": [ - "59860055349730186725800329", - "26091048106579483919254830", - "23849027888935359026463258" + "54627827038420098003609110", + "9031220065297518254482866", + "37616104348420823815079686" ], "fpReserves": [ - "10687265582012254545917975", - "8154330378920293708369163" + "1881475377932100522156704", + "844712772214205198098982" ], - "mAssetSupply": "109761728045120461783722886", - "LPTokenSupply": "18687143996107386110469416" + "mAssetSupply": "100979243970131527490664342", + "LPTokenSupply": "2673333645661834019283272" }, { "type": "swap_fp_to_mp", - "inputQty": "528682148323662272", + "inputQty": "1229889997708024320", "outputIndex": 2, - "outputQty": "528400046902471593", + "outputQty": "1243385258986624979", "swapFee": "0", - "redemptionFee": "211863630839439", + "redemptionFee": "743016530143256", "mpReserves": [ - "59860055349730186725800329", - "26091048106579483919254830", - "23849027360535312123991665" + "54627827038420098003609110", + "9031220065297518254482866", + "37616103105035564828454707" ], "fpReserves": [ - "10687265052353177447319271", - "8154330907602442032031435" + "1881474139571216950062776", + "844714002104202906123302" ], - "mAssetSupply": "109761727515673248315963621", - "LPTokenSupply": "18687143996107386110469416" + "mAssetSupply": "100979242732513660448713670", + "LPTokenSupply": "2673333645661834019283272" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "9576397499815823360", - "outputQty0": "9556820990316871096", - "outputQty": "9470905873464047702", + "type": "redeem", + "outputIndex": 0, + "inputQty": "34571851906286281031680", + "outputQty0": "35308081513913642367138", + "outputQty": "35618598512361178896654", + "swapFee1": "20743111143771768619", + "swapFee2": "21184848908348185420", "mpReserves": [ - "59860064926127686541623689", - "26091048106579483919254830", - "23849027360535312123991665" + "54592208439907736824712456", + "9031220065297518254482866", + "37616103105035564828454707" ], "fpReserves": [ - "10687274609174167764190367", - "8154330907602442032031435" + "1846166058057303307695638", + "844714002104202906123302" ], - "mAssetSupply": "109761737072494238632834717", - "LPTokenSupply": "18687153467013259574517118" + "mAssetSupply": "100943955835848655154531952", + "LPTokenSupply": "2638763868066662115428453" }, { - "type": "swap_fp_to_mp", - "inputQty": "12911580603659514281984", - "outputIndex": 1, - "outputQty": "12911956350339157897823", - "swapFee": "0", - "redemptionFee": "5174123521670240960", + "type": "redeem", + "outputIndex": 0, + "inputQty": "10186382214189606240256", + "outputQty0": "10402872538902431275545", + "outputQty": "10494307014816060688446", + "swapFee1": "6111829328513763744", + "swapFee2": "6241723523341458765", "mpReserves": [ - "59860064926127686541623689", - "26078136150229144761357007", - "23849027360535312123991665" + "54581714132892920764024010", + "9031220065297518254482866", + "37616103105035564828454707" ], "fpReserves": [ - "10674339300369992161787973", - "8167242488206101546313419" + "1835763185518400876420093", + "844714002104202906123302" ], - "mAssetSupply": "109748806937813584700673283", - "LPTokenSupply": "18687153467013259574517118" + "mAssetSupply": "100933559205033276064715172", + "LPTokenSupply": "2628578097035405360564571" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "20980931863451535409152", - "outputQty0": "21158306237774462880561", - "outputQty": "21193171032246086503280", - "swapFee1": "12588559118070921245", - "swapFee2": "8463322495109785152", + "type": "swap_fp_to_mp", + "inputQty": "4020291837861551407104", + "outputIndex": 2, + "outputQty": "4062974873596656116491", + "swapFee": "0", + "redemptionFee": "2427927981856198328", "mpReserves": [ - "59838871755095440455120409", - "26078136150229144761357007", - "23849027360535312123991665" + "54581714132892920764024010", + "9031220065297518254482866", + "37612040130161968172338216" ], "fpReserves": [ - "10653180994132217698907412", - "8167242488206101546313419" + "1831716638881973879206220", + "848734293942064457530406" ], - "mAssetSupply": "109727657094898305347577874", - "LPTokenSupply": "18666173794005719846200090" + "mAssetSupply": "100929515086324830923699627", + "LPTokenSupply": "2628578097035405360564571" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "21656579469555773440", - "outputQty0": "21612316204575147363", - "outputQty": "21555938817787520547", - "swapFee": "17134664498235367", + "type": "redeem", + "outputIndex": 0, + "inputQty": "248757220350381817856", + "outputQty0": "254034723793519693592", + "outputQty": "256267288349225610354", + "swapFee1": "149254332210229090", + "swapFee2": "152420834276111816", "mpReserves": [ - "59838893411674910010893849", - "26078136150229144761357007", - "23849027360535312123991665" + "54581457865604571538413656", + "9031220065297518254482866", + "37612040130161968172338216" ], "fpReserves": [ - "10653202606448422274054775", - "8167220932267283758792872" + "1831462604158180359512628", + "848734293942064457530406" ], - "mAssetSupply": "109727678707214509922725237", - "LPTokenSupply": "18666173795719186296023626" + "mAssetSupply": "100929261204021871680117851", + "LPTokenSupply": "2628329354740488199769624" }, { "type": "swap_fp_to_mp", - "inputQty": "18157765739197", - "outputIndex": 1, - "outputQty": "18157852764230", + "inputQty": "743103594276821644869632", + "outputIndex": 2, + "outputQty": "747098165818905949590143", "swapFee": "0", - "redemptionFee": "7276276659", + "redemptionFee": "446492731585577221597", "mpReserves": [ - "59838893411674910010893849", - "26078136150210986908592777", - "23849027360535312123991665" + "54581457865604571538413656", + "9031220065297518254482866", + "36864941964343062222748073" ], "fpReserves": [ - "10653202606430231582406469", - "8167220932285441524532069" + "1087308051515551656849873", + "1591837888218886102400038" ], - "mAssetSupply": "109727678707196326507353590", - "LPTokenSupply": "18666173795719186296023626" + "mAssetSupply": "100185553144110828554676693", + "LPTokenSupply": "2628329354740488199769624" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "255694109966558952423424", - "outputQty0": "256192777476198041383088", - "outputQty": "255472726578116040210266", - "swapFee": "203107016664727260208", + "type": "redeem", + "outputIndex": 2, + "inputQty": "2015251894573684", + "outputQty0": "2049718643804587", + "outputQty": "2057612472720313", + "swapFee1": "1209151136744", + "swapFee2": "1229831186282", "mpReserves": [ - "59838893411674910010893849", - "26078136150210986908592777", - "24104721470501871076415089" + "54581457865604571538413656", + "9031220065297518254482866", + "36864941962285449750027760" ], "fpReserves": [ - "10909395383906429623789557", - "7911748205707325484321803" + "1087308049465833013045286", + "1591837888218886102400038" ], - "mAssetSupply": "109983871484672524548736678", - "LPTokenSupply": "18666194106420852768749646" + "mAssetSupply": "100185553142062339742058388", + "LPTokenSupply": "2628329352725357220309614" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "73569249249798528172032", - "outputQty0": "73673296431156329347168", - "outputQty": "73446693536660630710809", - "swapFee": "58398235860295732545", + "type": "swap_fp_to_mp", + "inputQty": "65878401444384906149888", + "outputIndex": 0, + "outputQty": "66254912771006970648319", + "swapFee": "0", + "redemptionFee": "39404890877940327986", "mpReserves": [ - "59838893411674910010893849", - "26151705399460785436764809", - "24104721470501871076415089" + "54515202952833564567765337", + "9031220065297518254482866", + "36864941962285449750027760" ], "fpReserves": [ - "10983068680337585953136725", - "7838301512170664853610994" + "1021633231335932466401520", + "1657716289663271008549926" ], - "mAssetSupply": "110057544781103680878083846", - "LPTokenSupply": "18666199946244438798322900" + "mAssetSupply": "100119917728823317135742608", + "LPTokenSupply": "2628329352725357220309614" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "767845571479196800", - "outputQty0": "768926399614734648", - "outputQty": "766514851652398404", - "swapFee": "609474817527719", + "type": "swap_fp_to_mp", + "inputQty": "3572782713845451325440", + "outputIndex": 0, + "outputQty": "3591532019331163184340", + "swapFee": "0", + "redemptionFee": "2136068468522314865", "mpReserves": [ - "59838893411674910010893849", - "26151706167306356915961609", - "24104721470501871076415089" + "54511611420814233404580997", + "9031220065297518254482866", + "36864941962285449750027760" ], "fpReserves": [ - "10983069449263985567871373", - "7838300745655813201212590" + "1018073117221728608291784", + "1661289072377116459875366" ], - "mAssetSupply": "110057545550030080492818494", - "LPTokenSupply": "18666199946305386280075671" + "mAssetSupply": "100116359750777581799947737", + "LPTokenSupply": "2628329352725357220309614" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "681280727250555696578560", - "outputQty0": "687132834539450585990255", - "outputQty": "685849083015896233841146", - "swapFee1": "408768436350333417947", - "swapFee2": "274853133815780234396", + "outputIndex": 2, + "inputQty": "23438194075070413930496", + "outputQty0": "23824548602965751643127", + "outputQty": "23916338075566378944395", + "swapFee1": "14062916445042248358", + "swapFee2": "14294729161779450985", "mpReserves": [ - "59838893411674910010893849", - "25465857084290460682120463", - "24104721470501871076415089" + "54511611420814233404580997", + "9031220065297518254482866", + "36841025624209883371083365" ], "fpReserves": [ - "10295936614724534981881118", - "7838300745655813201212590" + "994248568618762856648657", + "1661289072377116459875366" ], - "mAssetSupply": "109370687568624445687062635", - "LPTokenSupply": "17984960095898465616838905" + "mAssetSupply": "100092549496903777827755595", + "LPTokenSupply": "2604892564941931310603953" }, { "type": "swap_fp_to_mp", - "inputQty": "173939723819740502687744", + "inputQty": "2515599533412994560", "outputIndex": 1, - "outputQty": "173899761178156347155813", + "outputQty": "2403122257161402711", "swapFee": "0", - "redemptionFee": "69695798200480773984", + "redemptionFee": "1503656245985699", "mpReserves": [ - "59838893411674910010893849", - "25291957323112304334964650", - "24104721470501871076415089" + "54511611420814233404580997", + "9031217662175261093080155", + "36841025624209883371083365" ], "fpReserves": [ - "10121697119223333046918964", - "8012240469475553703900334" + "994246062525019547149931", + "1661291587976649872869926" ], - "mAssetSupply": "109196517768921444232874465", - "LPTokenSupply": "17984960095898465616838905" + "mAssetSupply": "100092546992313690764242568", + "LPTokenSupply": "2604892564941931310603953" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "16032465155020036096", - "outputQty0": "16166878277740427774", - "outputQty": "16193994675678512946", - "swapFee1": "9619479093012021", - "swapFee2": "6466751311096171", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "350534676513088405504", + "outputQty0": "365334853385070623238", + "outputQty": "366426260784750143563", + "swapFee": "287372942989770994", "mpReserves": [ - "59838877217680234332380903", - "25291957323112304334964650", - "24104721470501871076415089" + "54511611420814233404580997", + "9031568196851774181485659", + "36841025624209883371083365" ], "fpReserves": [ - "10121680952345055306491190", - "8012240469475553703900334" + "994611397378404617773169", + "1660925161715865122726363" ], - "mAssetSupply": "109196501608509917803542862", - "LPTokenSupply": "17984944064395258506104011" + "mAssetSupply": "100092912327167075834865806", + "LPTokenSupply": "2604892593679225609581052" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "12437476934427586068480", - "outputQty0": "12541726009947222399734", - "outputQty": "12517043661653618993035", - "swapFee1": "7462486160656551641", - "swapFee2": "5016690403978888959", + "type": "mint", + "inputIndex": 1, + "inputQty": "253874666546581397831680", + "outputQty0": "264302730245450868900214", + "outputQty": "259715986686265231492156", "mpReserves": [ - "59838877217680234332380903", - "25279440279450650715971615", - "24104721470501871076415089" + "54511611420814233404580997", + "9285442863398355579317339", + "36841025624209883371083365" ], "fpReserves": [ - "10109139226335108084091456", - "8012240469475553703900334" + "1258914127623855486673383", + "1660925161715865122726363" ], - "mAssetSupply": "109183964899190374560032087", - "LPTokenSupply": "17972507333709446985690695" + "mAssetSupply": "100357215057412526703766020", + "LPTokenSupply": "2864608580365490841073208" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1902164486280044871680", - "outputQty0": "1898218185455233422676", - "outputQty": "1881312786611903281124", - "mpReserves": [ - "59840779382166514377252583", - "25279440279450650715971615", - "24104721470501871076415089" - ], - "fpReserves": [ - "10111037444520563317514132", - "8012240469475553703900334" - ], - "mAssetSupply": "109185863117375829793454763", - "LPTokenSupply": "17974388646496058888971819" + "type": "redeem", + "outputIndex": 2, + "inputQty": "1669624626057212013314048", + "hardLimitError": true }, { "type": "mint", "inputIndex": 2, - "inputQty": "42748370316643413262336", - "outputQty0": "42828541319927260790040", - "outputQty": "42446819890788264524544", + "inputQty": "3855909112242965053440", + "outputQty0": "3839502779039018140202", + "outputQty": "3770911566005041257733", "mpReserves": [ - "59840779382166514377252583", - "25279440279450650715971615", - "24147469840818514489677425" + "54511611420814233404580997", + "9285442863398355579317339", + "36844881533322126336136805" ], "fpReserves": [ - "10153865985840490578304172", - "8012240469475553703900334" + "1262753630402894504813585", + "1660925161715865122726363" ], - "mAssetSupply": "109228691658695757054244803", - "LPTokenSupply": "18016835466386847153496363" + "mAssetSupply": "100361054560191565721906222", + "LPTokenSupply": "2868379491931495882330941" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "3581722291283381714944", - "outputQty0": "3587361047120301295470", - "outputQty": "3578730995803755549993", - "swapFee": "2844289773324106901", + "inputQty": "67796138122662691995648", + "outputQty0": "70486086509094860065959", + "outputQty": "70537102918333836436696", + "swapFee": "55375028052409268245", "mpReserves": [ - "59840779382166514377252583", - "25283022001741934097686559", - "24147469840818514489677425" + "54511611420814233404580997", + "9353239001521018271312987", + "36844881533322126336136805" ], "fpReserves": [ - "10157453346887610879599642", - "8008661738479749948350341" + "1333239716911989364879544", + "1590388058797531286289667" ], - "mAssetSupply": "109232279019742877355540273", - "LPTokenSupply": "18016835750815824485907053" + "mAssetSupply": "100431540646700660581972181", + "LPTokenSupply": "2868385029434301123257765" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "199340164916171", - "outputQty0": "201013998563953", - "outputQty": "200617828395188", - "swapFee1": "119604098949", - "swapFee2": "80405599425", + "type": "mint", + "inputIndex": 0, + "inputQty": "2828793505539231318016", + "outputQty0": "2803285308475134258829", + "outputQty": "2752075728482247076549", "mpReserves": [ - "59840779382166514377252583", - "25283022001541316269291371", - "24147469840818514489677425" + "54514440214319772635899013", + "9353239001521018271312987", + "36844881533322126336136805" ], "fpReserves": [ - "10157453346686596881035689", - "8008661738479749948350341" + "1336043002220464499138373", + "1590388058797531286289667" ], - "mAssetSupply": "109232279019541943762575745", - "LPTokenSupply": "18016835750616496281400776" + "mAssetSupply": "100434343932009135716231010", + "LPTokenSupply": "2871137105162783370334314" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "96246748898513364451328", - "outputQty0": "96397326571957005472374", - "outputQty": "95535859587580270389118", + "type": "swap_fp_to_mp", + "inputQty": "1380706793479271350272", + "outputIndex": 1, + "outputQty": "1326012948555756691670", + "swapFee": "0", + "redemptionFee": "827451131355452101", "mpReserves": [ - "59840779382166514377252583", - "25379268750439829633742699", - "24147469840818514489677425" + "54514440214319772635899013", + "9351912988572462514621317", + "36844881533322126336136805" ], "fpReserves": [ - "10253850673258553886508063", - "8008661738479749948350341" + "1334663917001538745635316", + "1591768765591010557639939" ], - "mAssetSupply": "109328676346113900768048119", - "LPTokenSupply": "18112371610204076551789894" + "mAssetSupply": "100432965674241341318180054", + "LPTokenSupply": "2871137105162783370334314" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "373404213861993525805056", - "outputQty0": "376528865008856039847840", - "outputQty": "375657602181369191649452", - "swapFee1": "224042528317196115483", - "swapFee2": "150611546003542415939", - "mpReserves": [ - "59840779382166514377252583", - "25379268750439829633742699", - "23771812238637145298027973" - ], - "fpReserves": [ - "9877321808249697846660223", - "8008661738479749948350341" - ], - "mAssetSupply": "108952298092651048270616218", - "LPTokenSupply": "17738989800594914745596386" + "type": "swap_fp_to_mp", + "inputQty": "908665081402744232738816", + "outputIndex": 0, + "hardLimitError": true }, { "type": "mint", - "inputIndex": 2, - "inputQty": "35737792155455701647360", - "outputQty0": "35807745748941602109037", - "outputQty": "35490772687295984353339", + "inputIndex": 1, + "inputQty": "5157418913432402395136", + "outputQty0": "5360538287700288484513", + "outputQty": "5262590882326041527796", "mpReserves": [ - "59840779382166514377252583", - "25379268750439829633742699", - "23807550030792600999675333" + "54514440214319772635899013", + "9357070407485894917016453", + "36844881533322126336136805" ], "fpReserves": [ - "9913129553998639448769260", - "8008661738479749948350341" + "1340024455289239034119829", + "1591768765591010557639939" ], - "mAssetSupply": "108988105838399989872725255", - "LPTokenSupply": "17774480573282210729949725" + "mAssetSupply": "100438326212529041606664567", + "LPTokenSupply": "2876399696045109411862110" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2520430275064903168", - "outputQty0": "2524305459959659846", - "outputQty": "2518657662412981977", - "swapFee": "2001556750778466", + "type": "swap_fp_to_mp", + "inputQty": "18128362790034889244672", + "outputIndex": 0, + "outputQty": "18259588172188686222698", + "swapFee": "0", + "redemptionFee": "10863538534242777821", "mpReserves": [ - "59840779382166514377252583", - "25379271270870104698645867", - "23807550030792600999675333" + "54496180626147583949676315", + "9357070407485894917016453", + "36844881533322126336136805" ], "fpReserves": [ - "9913132078304099408429106", - "8008659219822087535368364" + "1321918557732167737750500", + "1609897128381045446884611" ], - "mAssetSupply": "108988108362705449832385101", - "LPTokenSupply": "17774480573482366405027571" + "mAssetSupply": "100420231178510504553073059", + "LPTokenSupply": "2876399696045109411862110" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "26149242512736520241152", - "outputQty0": "26366994830826168842160", - "outputQty": "26315919394678646224468", - "swapFee1": "15689545507641912144", - "swapFee2": "10546797932330467536", + "inputQty": "34316528409560043487232", + "outputQty0": "34929445256161242309785", + "outputQty": "33582478608748599250172", + "swapFee1": "20589917045736026092", + "swapFee2": "20957667153696745385", "mpReserves": [ - "59840779382166514377252583", - "25352955351475426052421399", - "23807550030792600999675333" + "54496180626147583949676315", + "9323487928877146317766281", + "36844881533322126336136805" ], "fpReserves": [ - "9886765083473273239586946", - "8008659219822087535368364" + "1286989112476006495440715", + "1609897128381045446884611" ], - "mAssetSupply": "108961751914672555994010477", - "LPTokenSupply": "17748332899924180648977633" + "mAssetSupply": "100385322690921497007508659", + "LPTokenSupply": "2842085226627253941977487" }, { "type": "swap_fp_to_mp", - "inputQty": "19219541891137871872", - "outputIndex": 1, - "outputQty": "19209538050669283546", + "inputQty": "214697578210885625708544", + "outputIndex": 0, + "outputQty": "215945453620924273553802", "swapFee": "0", - "redemptionFee": "7698748206906030", + "redemptionFee": "128475701437391862464", "mpReserves": [ - "59840779382166514377252583", - "25352936141937375383137853", - "23807550030792600999675333" + "54280235172526659676122513", + "9323487928877146317766281", + "36844881533322126336136805" ], "fpReserves": [ - "9886745836602755974509623", - "8008678439363978673240236" + "1072862943413686724666380", + "1824594706591931072593155" ], - "mAssetSupply": "108961732675500786935839184", - "LPTokenSupply": "17748332899924180648977633" + "mAssetSupply": "100171324997560614628596788", + "LPTokenSupply": "2842085226627253941977487" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "80580667175327850561536", - "outputQty0": "81250362017704119078747", - "outputQty": "81092118869292742394928", - "swapFee1": "48348400305196710336", - "swapFee2": "32500144807081647631", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1525270566467044114432", + "outputQty0": "1511548330227828349554", + "outputQty": "1516294315458799611674", + "swapFee": "1189072947759286248", + "mpReserves": [ + "54281760443093126720236945", + "9323487928877146317766281", + "36844881533322126336136805" + ], + "fpReserves": [ + "1074374491743914553015934", + "1823078412276472272981481" + ], + "mAssetSupply": "100172836545890842456946342", + "LPTokenSupply": "2842085345534548717906111" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "61283374789763876782080", + "outputQty0": "60731618776856114342981", + "outputQty": "60897716782234711178856", + "swapFee": "47767254602461611334", "mpReserves": [ - "59840779382166514377252583", - "25271844023068082640742925", - "23807550030792600999675333" + "54343043817882890597019025", + "9323487928877146317766281", + "36844881533322126336136805" ], "fpReserves": [ - "9805495474585051855430876", - "8008678439363978673240236" + "1135106110520770667358915", + "1762180695494237561802625" ], - "mAssetSupply": "108880514813627889898408068", - "LPTokenSupply": "17667757067588883318087130" + "mAssetSupply": "100233568164667698571289323", + "LPTokenSupply": "2842090122260008964067244" }, { "type": "swap_fp_to_mp", - "inputQty": "63889746836329185280", - "outputIndex": 2, - "outputQty": "63826999040161136099", + "inputQty": "108340251105407675662336", + "outputIndex": 1, + "outputQty": "103719365662600654491052", "swapFee": "0", - "redemptionFee": "25590762178927081", + "redemptionFee": "64754519563145517173", "mpReserves": [ - "59840779382166514377252583", - "25271844023068082640742925", - "23807486203793560838539234" + "54343043817882890597019025", + "9219768563214545663275229", + "36844881533322126336136805" ], "fpReserves": [ - "9805431497679604537726224", - "8008742329110815002425516" + "1027181911248861472069025", + "1870520946599645237464961" ], - "mAssetSupply": "108880450862313204759630497", - "LPTokenSupply": "17667757067588883318087130" + "mAssetSupply": "100125708719915352521516606", + "LPTokenSupply": "2842090122260008964067244" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2231025402261996830720", - "outputQty0": "2235370202053220446338", - "outputQty": "2230535175740944114259", - "swapFee": "1772510262760071234", + "inputIndex": 1, + "inputQty": "206200370696797949001728", + "outputQty0": "214342288552169585185241", + "outputQty": "214857763258241156964310", + "swapFee": "168586542736344362189", "mpReserves": [ - "59840779382166514377252583", - "25271844023068082640742925", - "23809717229195822835369954" + "54343043817882890597019025", + "9425968933911343612276957", + "36844881533322126336136805" ], "fpReserves": [ - "9807666867881657758172562", - "8006511793935074058311257" + "1241524199801031057254266", + "1655663183341404080500651" ], - "mAssetSupply": "108882686232515257980076835", - "LPTokenSupply": "17667757244839909594094253" + "mAssetSupply": "100340051008467522106701847", + "LPTokenSupply": "2842106980914282598503462" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "230298705274739514933248", "outputIndex": 0, - "inputQty": "3828193577612102598656", - "outputQty0": "3859972644576404683022", - "outputQty": "3866531313534316517649", - "swapFee1": "2296916146567261559", - "swapFee2": "1543989057830561873", + "outputQty": "231458248538424828919801", + "swapFee": "0", + "redemptionFee": "137723594882003063049", "mpReserves": [ - "59836912850852980060734934", - "25271844023068082640742925", - "23809717229195822835369954" + "54111585569344465768099224", + "9425968933911343612276957", + "36844881533322126336136805" ], "fpReserves": [ - "9803806895237081353489540", - "8006511793935074058311257" + "1011984874997692618838223", + "1885961888616143595433899" ], - "mAssetSupply": "108878827803859739405955686", - "LPTokenSupply": "17663929280953912148221752" + "mAssetSupply": "100110649407259065671348853", + "LPTokenSupply": "2842106980914282598503462" }, { - "type": "swap_fp_to_mp", - "inputQty": "70157070602164164886528", - "outputIndex": 2, - "outputQty": "70083828960747302645191", - "swapFee": "0", - "redemptionFee": "28099578927887051554", + "type": "mint", + "inputIndex": 2, + "inputQty": "7109582629761289551872", + "outputQty0": "7079797821133666319551", + "outputQty": "6965040195020474494360", "mpReserves": [ - "59836912850852980060734934", - "25271844023068082640742925", - "23739633400235075532724763" + "54111585569344465768099224", + "9425968933911343612276957", + "36851991115951887625688677" ], "fpReserves": [ - "9733557947917363724603131", - "8076668864537238223197785" + "1019064672818826285157774", + "1885961888616143595433899" ], - "mAssetSupply": "108808606956118949664120831", - "LPTokenSupply": "17663929280953912148221752" + "mAssetSupply": "100117729205080199337668404", + "LPTokenSupply": "2849072021109303072997822" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "15391742001749145157632", - "outputQty0": "15518693143543929256465", - "outputQty": "15482062485999510145760", - "swapFee1": "9235045201049487094", - "swapFee2": "6207477257417571702", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "80894503474137005031424", + "outputQty0": "80554644202925013052454", + "outputQty": "80827036951735830948448", + "swapFee": "63382371107307505466", "mpReserves": [ - "59836912850852980060734934", - "25271844023068082640742925", - "23724151337749076022579003" + "54111585569344465768099224", + "9425968933911343612276957", + "36932885619426024630720101" ], "fpReserves": [ - "9718039254773819795346666", - "8076668864537238223197785" + "1099619317021751298210228", + "1805134851664407764485451" ], - "mAssetSupply": "108793094470452663152436068", - "LPTokenSupply": "17648538462456683108012829" + "mAssetSupply": "100198283849283124350720858", + "LPTokenSupply": "2849078359346413803748368" }, { - "type": "swap_fp_to_mp", - "inputQty": "127477353930440867840", - "outputIndex": 0, - "outputQty": "127853475962201810163", - "swapFee": "0", - "redemptionFee": "51054336806030960", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "56297913417762562048", + "outputQty0": "58463365661997634641", + "outputQty": "58628959758057645162", + "swapFee": "45977731211069583", "mpReserves": [ - "59836784997377017858924771", - "25271844023068082640742925", - "23724151337749076022579003" + "54111585569344465768099224", + "9426025231824761374839005", + "36932885619426024630720101" ], "fpReserves": [ - "9717911618931804717944407", - "8076796341891168664065625" + "1099677780387413295844869", + "1805076222704649706840289" ], - "mAssetSupply": "108792966885664984881064769", - "LPTokenSupply": "17648538462456683108012829" + "mAssetSupply": "100198342312648786348355499", + "LPTokenSupply": "2849078363944186924855326" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "21873066347918299136", - "outputQty0": "21916087644080083706", - "outputQty": "21871364691083801636", - "swapFee": "17379045099817334", + "type": "mint", + "inputIndex": 1, + "inputQty": "225126318618493570777088", + "outputQty0": "233584913392611931886787", + "outputQty": "229510687365252558475761", "mpReserves": [ - "59836784997377017858924771", - "25271844023068082640742925", - "23724173210815423940878139" + "54111585569344465768099224", + "9651151550443254945616093", + "36932885619426024630720101" ], "fpReserves": [ - "9717933535019448798028113", - "8076774470526477580263989" + "1333262693780025227731656", + "1805076222704649706840289" ], - "mAssetSupply": "108792988801752628961148475", - "LPTokenSupply": "17648538464194587617994562" + "mAssetSupply": "100431927226041398280242286", + "LPTokenSupply": "3078589051309439483331087" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "27941263849171395280896", "outputIndex": 2, - "inputQty": "294400591300119592960", - "outputQty0": "296828169017406311272", - "outputQty": "296126987405734258006", - "swapFee1": "176640354780071755", - "swapFee2": "118731267606962524", + "outputQty": "27976226756774542680858", + "swapFee": "0", + "redemptionFee": "16727588889788469171", "mpReserves": [ - "59836784997377017858924771", - "25271844023068082640742925", - "23723877083828018206620133" + "54111585569344465768099224", + "9651151550443254945616093", + "36904909392669250088039243" ], "fpReserves": [ - "9717636706850431391716841", - "8076774470526477580263989" + "1305383378963711112445283", + "1833017486553821102121185" ], - "mAssetSupply": "108792692092314879161799727", - "LPTokenSupply": "17648244081267322976408777" + "mAssetSupply": "100404064638813973953425084", + "LPTokenSupply": "3078589051309439483331087" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2082976012041199550464", - "outputQty0": "2086212553215840031272", - "outputQty": "2067908578837270307340", + "inputIndex": 0, + "inputQty": "3416641445311815352320", + "outputQty0": "3387099639707716875931", + "outputQty": "3327103959061201197900", "mpReserves": [ - "59836784997377017858924771", - "25273926999080123840293389", - "23723877083828018206620133" + "54115002210789777583451544", + "9651151550443254945616093", + "36904909392669250088039243" ], "fpReserves": [ - "9719722919403647231748113", - "8076774470526477580263989" + "1308770478603418829321214", + "1833017486553821102121185" ], - "mAssetSupply": "108794778304868095001830999", - "LPTokenSupply": "17650311989846160246716117" + "mAssetSupply": "100407451738453681670301015", + "LPTokenSupply": "3081916155268500684528987" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "137132494673197", - "outputQty0": "137402239316782", - "outputQty": "136196656160305", + "inputQty": "768100273443763912704", + "outputQty0": "764983200504803511986", + "outputQty": "766157027827069613573", + "swapFee": "601142224856631318", "mpReserves": [ - "59836784997377017858924771", - "25273926999080123840293389", - "23723877083965150701293330" + "54115002210789777583451544", + "9651151550443254945616093", + "36905677492942693851951947" ], "fpReserves": [ - "9719722919541049471064895", - "8076774470526477580263989" + "1309535461803923632833200", + "1832251329525994032507612" ], - "mAssetSupply": "108794778305005497241147781", - "LPTokenSupply": "17650311989982356902876422" + "mAssetSupply": "100408216721654186473813001", + "LPTokenSupply": "3081916215382723170192118" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "1949450366190837760", - "outputQty0": "1953285006072394881", - "outputQty": "1949296530063016152", - "swapFee": "1548917325330850", + "inputQty": "15067065567516360179712", + "outputQty0": "15005889334474025137553", + "outputQty": "14739568087665758279761", "mpReserves": [ - "59836784997377017858924771", - "25273926999080123840293389", - "23723879033415516892131090" + "54115002210789777583451544", + "9651151550443254945616093", + "36920744558510210212131659" ], "fpReserves": [ - "9719724872826055543459776", - "8076772521229947517247837" + "1324541351138397657970753", + "1832251329525994032507612" ], - "mAssetSupply": "108794780258290503313542662", - "LPTokenSupply": "17650311990137248635409507" + "mAssetSupply": "100423222610988660498950554", + "LPTokenSupply": "3096655783470388928471879" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "4120425007878680084480", - "outputQty0": "4154401195358103830959", - "outputQty": "4144584872827242997528", - "swapFee1": "2472255004727208050", - "swapFee2": "1661760478143241532", + "inputQty": "129352276620057379864576", + "outputQty0": "131582995024588578042392", + "outputQty": "132038100539443314168725", + "swapFee1": "77611365972034427918", + "swapFee2": "78949797014753146825", "mpReserves": [ - "59836784997377017858924771", - "25273926999080123840293389", - "23719734448542689649133562" + "54115002210789777583451544", + "9651151550443254945616093", + "36788706457970766897962934" ], "fpReserves": [ - "9715570471630697439628817", - "8076772521229947517247837" + "1192958356113809079928361", + "1832251329525994032507612" ], - "mAssetSupply": "108790627518855623352953235", - "LPTokenSupply": "17646191812354870428045832" + "mAssetSupply": "100291718565761086674054987", + "LPTokenSupply": "2967311267986928752050094" }, { - "type": "swap_fp_to_mp", - "inputQty": "161200995586006809837568", - "outputIndex": 2, - "outputQty": "160996427815439555925098", - "swapFee": "0", - "redemptionFee": "64552352144904345728", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "78687673210028263735296", + "outputQty0": "81545524729045495384964", + "outputQty": "81693968940198141741984", + "swapFee": "64096342008597002101", "mpReserves": [ - "59836784997377017858924771", - "25273926999080123840293389", - "23558738020727250093208464" + "54115002210789777583451544", + "9729839223653283209351389", + "36788706457970766897962934" ], "fpReserves": [ - "9554189591268436575307208", - "8237973516815954327085405" + "1274503880842854575313325", + "1750557360585795890765628" ], - "mAssetSupply": "108629311190845507392977354", - "LPTokenSupply": "17646191812354870428045832" + "mAssetSupply": "100373264090490132169439951", + "LPTokenSupply": "2967317677621129611750304" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "89783424748778571169792", - "outputQty0": "90511965726585087685293", - "outputQty": "90293644691952592252942", - "swapFee1": "53870054849267142701", - "swapFee2": "36204786290634035074", + "type": "mint", + "inputIndex": 1, + "inputQty": "89588045763636048", + "outputQty0": "92815619004161951", + "outputQty": "91159353489565476", "mpReserves": [ - "59836784997377017858924771", - "25273926999080123840293389", - "23468444376035297500955522" + "54115002210789777583451544", + "9729839313241328972987437", + "36788706457970766897962934" ], "fpReserves": [ - "9463677625541851487621915", - "8237973516815954327085405" + "1274503973658473579475276", + "1750557360585795890765628" ], - "mAssetSupply": "108538835429905212939327135", - "LPTokenSupply": "17556413774611576783590310" + "mAssetSupply": "100373264183305751173601902", + "LPTokenSupply": "2967317768780483101315780" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "550493774052438016", - "outputQty0": "554953900198343682", - "outputQty": "553609314277359919", - "swapFee1": "330296264431462", - "swapFee2": "221981560079337", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "94479542987311611379712", + "outputQty0": "97850778072797498395254", + "outputQty": "97940021197816265025030", + "swapFee": "76871634878371329694", "mpReserves": [ - "59836784997377017858924771", - "25273926999080123840293389", - "23468443822425983223595603" + "54115002210789777583451544", + "9824318856228640584367149", + "36788706457970766897962934" ], "fpReserves": [ - "9463677070587951289278233", - "8237973516815954327085405" + "1372354751731271077870530", + "1652617339387979625740598" ], - "mAssetSupply": "108538834875173294301062790", - "LPTokenSupply": "17556413224150832357595440" + "mAssetSupply": "100471114961378548671997156", + "LPTokenSupply": "2967325455943970938448749" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "48534534557394477776896", "outputIndex": 1, - "inputQty": "22384968878851671195648", - "outputQty0": "22566247907839361465697", - "outputQty": "22522479707496196010023", - "swapFee1": "13430981327311002717", - "swapFee2": "9026499163135744586", + "outputQty": "46773077249792605034973", + "swapFee": "0", + "redemptionFee": "29077811284839027735", "mpReserves": [ - "59836784997377017858924771", - "25251404519372627644283366", - "23468443822425983223595603" + "54115002210789777583451544", + "9777545778978847979332176", + "36788706457970766897962934" ], "fpReserves": [ - "9441110822680111927812536", - "8237973516815954327085405" + "1323891732923206031644981", + "1701151873945374103517494" ], - "mAssetSupply": "108516277653764618075341679", - "LPTokenSupply": "17534029598370113417500063" + "mAssetSupply": "100422681020381768464799342", + "LPTokenSupply": "2967325455943970938448749" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "122968060875752339406848", - "outputQty0": "122706807027820147174571", - "outputQty": "121645937508311278071955", + "inputIndex": 1, + "inputQty": "762580067651725688832", + "outputQty0": "789785265373579512127", + "outputQty": "775457594874114368985", "mpReserves": [ - "59959753058252770198331619", - "25251404519372627644283366", - "23468443822425983223595603" + "54115002210789777583451544", + "9778308359046499705021008", + "36788706457970766897962934" ], "fpReserves": [ - "9563817629707932074987107", - "8237973516815954327085405" + "1324681518188579611157108", + "1701151873945374103517494" ], - "mAssetSupply": "108638984460792438222516250", - "LPTokenSupply": "17655675535878424695572018" + "mAssetSupply": "100423470805647142044311469", + "LPTokenSupply": "2968100913538845052817734" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "115105142062729412608", - "outputQty0": "115283843378286021968", - "outputQty": "114284825250881451671", + "inputIndex": 2, + "inputQty": "72693579106596186750976", + "outputQty0": "72405918900516772893340", + "outputQty": "71084777762936451969064", "mpReserves": [ - "59959753058252770198331619", - "25251519624514690373695974", - "23468443822425983223595603" + "54115002210789777583451544", + "9778308359046499705021008", + "36861400037077363084713910" ], "fpReserves": [ - "9563932913551310361009075", - "8237973516815954327085405" + "1397087437089096384050448", + "1701151873945374103517494" ], - "mAssetSupply": "108639099744635816508538218", - "LPTokenSupply": "17655789820703675577023689" + "mAssetSupply": "100495876724547658817204809", + "LPTokenSupply": "3039185691301781504786798" }, { - "type": "swap_fp_to_mp", - "inputQty": "11765908428932954193920", - "outputIndex": 2, - "outputQty": "11748900704654404808762", - "swapFee": "0", - "redemptionFee": "4711017643556664247", + "type": "mint", + "inputIndex": 1, + "inputQty": "51216807820178271240192", + "outputQty0": "53036656508161862340380", + "outputQty": "52059934925136508847790", "mpReserves": [ - "59959753058252770198331619", - "25251519624514690373695974", - "23456694921721328818786841" + "54115002210789777583451544", + "9829525166866677976261200", + "36861400037077363084713910" ], "fpReserves": [ - "9552155369442418700391074", - "8249739425244887281279325" + "1450124093597258246390828", + "1701151873945374103517494" ], - "mAssetSupply": "108627326911544568404584464", - "LPTokenSupply": "17655789820703675577023689" + "mAssetSupply": "100548913381055820679545189", + "LPTokenSupply": "3091245626226918013634588" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "2231886304808902795984896", - "outputQty0": "2249090993053091608416827", - "outputQty": "2252847755627153829913924", - "swapFee1": "1339131782885341677590", - "swapFee2": "899636397221236643366", + "type": "mint", + "inputIndex": 2, + "inputQty": "166506431932773353652224", + "outputQty0": "165847556545276655584814", + "outputQty": "162749934323476742804880", "mpReserves": [ - "57706905302625616368417695", - "25251519624514690373695974", - "23456694921721328818786841" + "54115002210789777583451544", + "9829525166866677976261200", + "37027906469010136438366134" ], "fpReserves": [ - "7303064376389327091974247", - "8249739425244887281279325" + "1615971650142534901975642", + "1701151873945374103517494" ], - "mAssetSupply": "106379135554888698032811003", - "LPTokenSupply": "15424037429073061315206552" + "mAssetSupply": "100714760937601097335130003", + "LPTokenSupply": "3253995560550394756439468" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "252204875224176896", - "outputQty0": "254048355342773346", - "outputQty": "254456962828740942", - "swapFee1": "151322925134506", - "swapFee2": "101619342137109", + "inputQty": "6428409597793610498048", + "outputQty0": "6548000813210726112540", + "outputQty": "6600024608258307653599", + "swapFee1": "3857045758676166298", + "swapFee2": "3928800487926435667", "mpReserves": [ - "57706905048168653539676753", - "25251519624514690373695974", - "23456694921721328818786841" + "54108402186181519275797945", + "9829525166866677976261200", + "37027906469010136438366134" ], "fpReserves": [ - "7303064122340971749200901", - "8249739425244887281279325" + "1609423649329324175863102", + "1701151873945374103517494" ], - "mAssetSupply": "106379135300941962032174766", - "LPTokenSupply": "15424037176883318383543106" + "mAssetSupply": "100708216865588374535453130", + "LPTokenSupply": "3247567536657177013558049" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "128490640424952365056", - "outputQty0": "128731932824580060257", - "outputQty": "128733442848701285585", - "swapFee": "102176894309692173", + "inputIndex": 0, + "inputQty": "183803778951226851328", + "outputQty0": "182245679245889856915", + "outputQty": "182166692029578108349", + "swapFee": "143048678962599700", "mpReserves": [ - "57706905048168653539676753", - "25251519624514690373695974", - "23456823412361753771151897" + "54108585989960470502649273", + "9829525166866677976261200", + "37027906469010136438366134" ], "fpReserves": [ - "7303192854273796329261158", - "8249610691802038579993740" + "1609605895008570065720017", + "1700969707253344525409145" ], - "mAssetSupply": "106379264032874786612235023", - "LPTokenSupply": "15424037187101007814512323" + "mAssetSupply": "100708399111267620425310045", + "LPTokenSupply": "3247567550962044909818019" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "135065138437227331584", - "outputQty0": "135318773015426046075", - "outputQty": "135320329196617905137", - "swapFee": "107404976506034055", + "type": "redeem", + "outputIndex": 2, + "inputQty": "284993072605742185316352", + "outputQty0": "290193529675244975149692", + "outputQty": "291166932306157523603127", + "swapFee1": "170995843563445311189", + "swapFee2": "174116117805146985089", "mpReserves": [ - "57706905048168653539676753", - "25251519624514690373695974", - "23456958477500190998483481" + "54108585989960470502649273", + "9829525166866677976261200", + "36736739536703978914763007" ], "fpReserves": [ - "7303328173046811755307233", - "8249475371472841962088603" + "1319412365333325090570325", + "1700969707253344525409145" ], - "mAssetSupply": "106379399351647802038281098", - "LPTokenSupply": "15424037197841505465115728" + "mAssetSupply": "100418379697710180597145442", + "LPTokenSupply": "2962591577940659069032785" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "87442431164155642773504", - "outputQty0": "88079697149930780154340", - "outputQty": "87878557993161294136010", - "swapFee1": "52465458698493385664", - "swapFee2": "35231878859972312061", + "outputIndex": 1, + "inputQty": "10426567828558881751040", + "outputQty0": "10613079085065592671542", + "outputQty": "10245034033488200728837", + "swapFee1": "6255940697135329050", + "swapFee2": "6367847451039355602", "mpReserves": [ - "57706905048168653539676753", - "25251519624514690373695974", - "23369079919507029704347471" + "54108585989960470502649273", + "9819280132833189775532363", + "36736739536703978914763007" ], "fpReserves": [ - "7215248475896880975152893", - "8249475371472841962088603" + "1308799286248259497898783", + "1700969707253344525409145" ], - "mAssetSupply": "106291354886376731230438819", - "LPTokenSupply": "15336600013223219671680790" + "mAssetSupply": "100407772986472566043829502", + "LPTokenSupply": "2952165635706169900814650" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "52335122206645590949888", - "outputQty0": "52714842780743202408487", - "outputQty": "52619396602078695024696", - "swapFee1": "31401073323987354569", - "swapFee2": "21085937112297280963", + "type": "mint", + "inputIndex": 0, + "inputQty": "54073617755896213929984", + "outputQty0": "53613378641248934326471", + "outputQty": "52636088394789884352254", "mpReserves": [ - "57706905048168653539676753", - "25198900227912611678671278", - "23369079919507029704347471" + "54162659607716366716579257", + "9819280132833189775532363", + "36736739536703978914763007" ], "fpReserves": [ - "7162533633116137772744406", - "8249475371472841962088603" + "1362412664889508432225254", + "1700969707253344525409145" ], - "mAssetSupply": "106238661129533100325311295", - "LPTokenSupply": "15284268031123906479466358" + "mAssetSupply": "100461386365113814978155973", + "LPTokenSupply": "3004801724100959785166904" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1360421684476550045499392", - "outputQty0": "1357630327655240099576918", - "outputQty": "1356224138899664543238782", - "swapFee": "1077310922209946930924", + "inputIndex": 1, + "inputQty": "3876520126908147433472", + "outputQty0": "4013645326511615520070", + "outputQty": "4016379391008828838882", + "swapFee": "3152119535780098888", "mpReserves": [ - "59067326732645203585176145", - "25198900227912611678671278", - "23369079919507029704347471" + "54162659607716366716579257", + "9823156652960097922965835", + "36736739536703978914763007" ], "fpReserves": [ - "8520163960771377872321324", - "6893251232573177418849821" + "1366426310216020047745324", + "1696953327862335696570263" ], - "mAssetSupply": "107596291457188340424888213", - "LPTokenSupply": "15284375762216127474159450" + "mAssetSupply": "100465400010440326593676043", + "LPTokenSupply": "3004802039312913363176792" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "694705030334650976829440", - "outputQty0": "696032706992538261695797", - "outputQty": "694018837121545869054859", - "swapFee": "551742746833815197537", + "type": "redeem", + "outputIndex": 1, + "inputQty": "354300396814375166410752", + "outputQty0": "360470471562734729065013", + "outputQty": "347518048119069878290809", + "swapFee1": "212580238088625099846", + "swapFee2": "216282282937640837439", "mpReserves": [ - "59067326732645203585176145", - "25198900227912611678671278", - "24063784949841680681176911" + "54162659607716366716579257", + "9475638604841028044675026", + "36736739536703978914763007" ], "fpReserves": [ - "9216196667763916134017121", - "6199232395451631549794962" + "1005955838653285318680311", + "1696953327862335696570263" ], - "mAssetSupply": "108292324164180878686584010", - "LPTokenSupply": "15284430936490810855679203" + "mAssetSupply": "100105145821160529505448469", + "LPTokenSupply": "2650522900522347059276024" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "28636691986804333608960", - "outputQty0": "28897211567812839105010", - "outputQty": "28944695678270407976076", - "swapFee1": "17182015192082600165", - "swapFee2": "11558884627125135642", + "inputQty": "23227902568080284319744", + "outputQty0": "23613746826686360649177", + "outputQty": "23809803132516017058764", + "swapFee1": "13936741540848170591", + "swapFee2": "14168248096011816389", "mpReserves": [ - "59038382036966933177200069", - "25198900227912611678671278", - "24063784949841680681176911" + "54138849804583850699520493", + "9475638604841028044675026", + "36736739536703978914763007" ], "fpReserves": [ - "9187299456196103294912111", - "6199232395451631549794962" + "982342091826598958031134", + "1696953327862335696570263" ], - "mAssetSupply": "108263438511497692972614642", - "LPTokenSupply": "15255795962705525730330259" + "mAssetSupply": "100081546242581939156615681", + "LPTokenSupply": "2627296391628420859773339" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "34898091643318403072", - "outputQty0": "34826931886187754577", - "outputQty": "34702603199892702368", - "swapFee": "27593907564289496", + "type": "swap_fp_to_mp", + "inputQty": "24191466949064649605120", + "outputIndex": 2, + "outputQty": "24173504089911546810625", + "swapFee": "0", + "redemptionFee": "14452998286044192673", "mpReserves": [ - "59038416935058576495603141", - "25198900227912611678671278", - "24063784949841680681176911" + "54138849804583850699520493", + "9475638604841028044675026", + "36712566032614067367952382" ], "fpReserves": [ - "9187334283127989482666688", - "6199197692848431657092594" + "958253761349858636909319", + "1721144794811400346175383" ], - "mAssetSupply": "108263473338429579160369219", - "LPTokenSupply": "15255795965464916486759208" + "mAssetSupply": "100057472365103484879686539", + "LPTokenSupply": "2627296391628420859773339" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "26005564657671565312", - "outputQty0": "26053164543373333847", - "outputQty": "25960155641953299467", - "swapFee": "20642317698331114", + "inputQty": "12127967314523258880", + "outputQty0": "12078023792107105142", + "outputQty": "12122295628348604052", + "swapFee": "9501684630677894", "mpReserves": [ - "59038416935058576495603141", - "25198900227912611678671278", - "24063810955406338352742223" + "54138849804583850699520493", + "9475638604841028044675026", + "36712578160581381891211262" ], "fpReserves": [ - "9187360336292532856000535", - "6199171732692789703793127" + "958265839373650744014461", + "1721132672515771997571331" ], - "mAssetSupply": "108263499391594122533703066", - "LPTokenSupply": "15255795967529148256592319" + "mAssetSupply": "100057484443127276986791681", + "LPTokenSupply": "2627296392578589322841128" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "174858690639501220380672", - "outputQty0": "174501313492600642652901", - "outputQty": "172819805669157491274824", + "inputIndex": 2, + "inputQty": "2508388897622445785088", + "outputQty0": "2498058382173147392563", + "outputQty": "2456483056422004064907", "mpReserves": [ - "59213275625698077715983813", - "25198900227912611678671278", - "24063810955406338352742223" + "54138849804583850699520493", + "9475638604841028044675026", + "36715086549479004336996350" ], "fpReserves": [ - "9361861649785133498653436", - "6199171732692789703793127" + "960763897755823891407024", + "1721132672515771997571331" ], - "mAssetSupply": "108438000705086723176355967", - "LPTokenSupply": "15428615773198305747867143" + "mAssetSupply": "100059982501509450134184244", + "LPTokenSupply": "2629752875635011326906035" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "752002418057323904", - "outputQty0": "753165772314704100", - "outputQty": "750363827555966099", - "swapFee": "596708553640373", + "type": "redeem", + "outputIndex": 1, + "inputQty": "38705396171426746073088", + "outputQty0": "39332001699549081153200", + "outputQty": "37865751992242811554524", + "swapFee1": "23223237702856047643", + "swapFee2": "23599201019729448691", "mpReserves": [ - "59213275625698077715983813", - "25198900979915029735995182", - "24063810955406338352742223" + "54138849804583850699520493", + "9437772852848785233120502", + "36715086549479004336996350" ], "fpReserves": [ - "9361862402950905813357536", - "6199170982328962147827028" + "921431896056274810253824", + "1721132672515771997571331" ], - "mAssetSupply": "108438001458252495491060067", - "LPTokenSupply": "15428615773257976603231180" + "mAssetSupply": "100020674099010920782479735", + "LPTokenSupply": "2591049801787354866437711" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "30093787125174744645632", - "outputQty0": "30149127262800676577075", - "outputQty": "29857551633235800743520", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "32746201145029024546816", + "outputQty0": "32455812949177670314000", + "outputQty": "32578729107162994319479", + "swapFee": "25536056906716741449", "mpReserves": [ - "59213275625698077715983813", - "25198900979915029735995182", - "24093904742531513097387855" + "54171596005728879724067309", + "9437772852848785233120502", + "36715086549479004336996350" ], "fpReserves": [ - "9392011530213706489934611", - "6199170982328962147827028" + "953887709005452480567824", + "1688553943408609003251852" ], - "mAssetSupply": "108468150585515296167637142", - "LPTokenSupply": "15458473324891212403974700" + "mAssetSupply": "100053129911960098452793735", + "LPTokenSupply": "2591052355393045538111855" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1564337460011207229440", - "outputQty0": "1567208673790686374675", - "outputQty": "1561335022974950959274", - "swapFee": "1241634843177759779", + "inputQty": "302198463048205664256", + "outputQty0": "300946943199328552688", + "outputQty": "302007065397238442874", + "swapFee": "236727107758085091", "mpReserves": [ - "59213275625698077715983813", - "25198900979915029735995182", - "24095469079991524304617295" + "54171596005728879724067309", + "9437772852848785233120502", + "36715388747942052542660606" ], "fpReserves": [ - "9393578738887497176309286", - "6197609647305987196867754" + "954188655948651809120512", + "1688251936343211764808978" ], - "mAssetSupply": "108469717794189086854011817", - "LPTokenSupply": "15458473449054696721750677" + "mAssetSupply": "100053430858903297781346423", + "LPTokenSupply": "2591052379065756313920364" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "470809630853603723837440", - "outputQty0": "475085984946075214767718", - "outputQty": "474000762541549591721638", - "swapFee1": "282485778512162234302", - "swapFee2": "190034393978430085907", + "inputQty": "212055680434597440", + "outputQty0": "215537138251515819", + "outputQty": "216303621168483779", + "swapFee1": "127233408260758", + "swapFee2": "129322282950909", "mpReserves": [ - "59213275625698077715983813", - "25198900979915029735995182", - "23621468317449974712895657" + "54171596005728879724067309", + "9437772852848785233120502", + "36715388531638431374176827" ], "fpReserves": [ - "8918492753941421961541568", - "6197609647305987196867754" + "954188440411513557604693", + "1688251936343211764808978" ], - "mAssetSupply": "107994821843636990069330006", - "LPTokenSupply": "14987692066778944214136667" + "mAssetSupply": "100053430643495481812781513", + "LPTokenSupply": "2591052167022799220148999" }, { - "type": "swap_fp_to_mp", - "inputQty": "21570632890013634560", - "outputIndex": 0, - "outputQty": "21661989995735494844", - "swapFee": "0", - "redemptionFee": "8650239824335410", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "33347507308981817180160", + "outputQty0": "34619666219101863068588", + "outputQty": "34732361021955029546119", + "swapFee": "27229111770020655019", "mpReserves": [ - "59213253963708081980488969", - "25198900979915029735995182", - "23621468317449974712895657" + "54171596005728879724067309", + "9471120360157767050300662", + "36715388531638431374176827" ], "fpReserves": [ - "8918471128341861123016260", - "6197631217938877210502314" + "988808106630615420673281", + "1653519575321256735262859" ], - "mAssetSupply": "107994800226687669055140108", - "LPTokenSupply": "14987692066778944214136667" + "mAssetSupply": "100088050309714583675850101", + "LPTokenSupply": "2591054889933976222214500" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "318041701667615532908544", - "outputQty0": "320890515763824970546909", - "outputQty": "320128098584491233769508", - "swapFee1": "190825021000569319745", - "swapFee2": "128356206305529988218", + "type": "mint", + "inputIndex": 0, + "inputQty": "3400333992351165841408", + "outputQty0": "3370275420803445554063", + "outputQty": "3312693956055451744206", "mpReserves": [ - "59213253963708081980488969", - "25198900979915029735995182", - "23301340218865483479126149" + "54174996339721230889908717", + "9471120360157767050300662", + "36715388531638431374176827" ], "fpReserves": [ - "8597580612578036152469351", - "6197631217938877210502314" + "992178382051418866227344", + "1653519575321256735262859" ], - "mAssetSupply": "107674038067130149614581417", - "LPTokenSupply": "14669669447613428738160097" + "mAssetSupply": "100091420585135387121404164", + "LPTokenSupply": "2594367583890031673958706" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "56253677530725936", - "outputQty0": "56367247800229345", - "outputQty": "55835911949816385", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1031469370181364", + "outputQty0": "1070684150773648", + "outputQty": "1073860543511687", + "swapFee": "841905148922", "mpReserves": [ - "59213253963708081980488969", - "25198900979915029735995182", - "23301340275119161009852085" + "54174996339721230889908717", + "9471120361189236420482026", + "36715388531638431374176827" ], "fpReserves": [ - "8597580668945283952698696", - "6197631217938877210502314" + "992178383122103017000992", + "1653519574247396191751172" ], - "mAssetSupply": "107674038123497397414810762", - "LPTokenSupply": "14669669503449340687976482" + "mAssetSupply": "100091420586206071272177812", + "LPTokenSupply": "2594367583890115864473598" }, { - "type": "swap_fp_to_mp", - "inputQty": "67655379331002195968", - "outputIndex": 1, - "outputQty": "67679667633260978081", - "swapFee": "0", - "redemptionFee": "27123519388844035", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "14838519892446", + "outputQty0": "14777395996454", + "outputQty": "14821236015168", + "swapFee": "11619828095", "mpReserves": [ - "59213253963708081980488969", - "25198833300247396475017101", - "23301340275119161009852085" + "54174996339721230889908717", + "9471120361189236420482026", + "36715388531653269894069273" ], "fpReserves": [ - "8597512860146811842610312", - "6197698873318208212698282" + "992178383136880412997446", + "1653519574232574955736004" ], - "mAssetSupply": "107673970341822444693566413", - "LPTokenSupply": "14669669503449340687976482" + "mAssetSupply": "100091420586220848668174266", + "LPTokenSupply": "2594367583890117026456407" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "663385591819042545467392", - "outputQty0": "661978830512345867153858", - "outputQty": "659466970525348740994943", - "swapFee": "524528566088436057835", + "type": "redeem", + "outputIndex": 1, + "inputQty": "672156742373414141952", + "outputQty0": "683435079643331306636", + "outputQty": "658006943010070373684", + "swapFee1": "403294045424048485", + "swapFee2": "410061047785998783", "mpReserves": [ - "59876639555527124525956361", - "25198833300247396475017101", - "23301340275119161009852085" + "54174996339721230889908717", + "9470462354246226350108342", + "36715388531653269894069273" ], "fpReserves": [ - "9259491690659157709764170", - "5538231902792859471703339" + "991494948057237081690810", + "1653519574232574955736004" ], - "mAssetSupply": "108335949172334790560720271", - "LPTokenSupply": "14669721956305949531582265" + "mAssetSupply": "100090737561202253122866413", + "LPTokenSupply": "2593695467477148154719303" }, { - "type": "swap_fp_to_mp", - "inputQty": "3105729302601770496", - "outputIndex": 2, - "outputQty": "3109849854126527021", - "swapFee": "0", - "redemptionFee": "1247010621811557", + "type": "redeem", + "outputIndex": 0, + "inputQty": "23792027613692673654784", + "outputQty0": "24189520802924032263029", + "outputQty": "24390577812827009808299", + "swapFee1": "14275216568215604192", + "swapFee2": "14513712481754419357", "mpReserves": [ - "59876639555527124525956361", - "25198833300247396475017101", - "23301337165269306883325064" + "54150605761908403880100418", + "9470462354246226350108342", + "36715388531653269894069273" ], "fpReserves": [ - "9259488573132603180869328", - "5538235008522162073473835" + "967305427254313049427781", + "1653519574232574955736004" ], - "mAssetSupply": "108335946056055246653636986", - "LPTokenSupply": "14669721956305949531582265" + "mAssetSupply": "100066562554111810845022741", + "LPTokenSupply": "2569904867385112302624938" }, { "type": "swap_fp_to_mp", - "inputQty": "5515330069680487", + "inputQty": "64180143508857890537472", "outputIndex": 2, - "outputQty": "5522647554218484", + "outputQty": "64117450433379875623450", "swapFee": "0", - "redemptionFee": "2214512110329", + "redemptionFee": "38335253939693798414", "mpReserves": [ - "59876639555527124525956361", - "25198833300247396475017101", - "23301337159746659329106580" + "54150605761908403880100418", + "9470462354246226350108342", + "36651271081219890018445823" ], "fpReserves": [ - "9259488567596322905046772", - "5538235014037492143154322" + "903413337354823385403898", + "1717699717741432846273476" ], - "mAssetSupply": "108335946050521180889924759", - "LPTokenSupply": "14669721956305949531582265" + "mAssetSupply": "100002708799466260874797272", + "LPTokenSupply": "2569904867385112302624938" }, { "type": "mint", "inputIndex": 1, - "inputQty": "14605773530857455222784", - "outputQty0": "14628376346065452278388", - "outputQty": "14481213890567094449883", + "inputQty": "6582564525006228815872", + "outputQty0": "6832256201744963665706", + "outputQty": "6720709087331515036255", "mpReserves": [ - "59876639555527124525956361", - "25213439073778253930239885", - "23301337159746659329106580" + "54150605761908403880100418", + "9477044918771232578924214", + "36651271081219890018445823" ], "fpReserves": [ - "9274116943942388357325160", - "5538235014037492143154322" + "910245593556568349069604", + "1717699717741432846273476" ], - "mAssetSupply": "108350574426867246342203147", - "LPTokenSupply": "14684203170196516626032148" + "mAssetSupply": "100009541055668005838462978", + "LPTokenSupply": "2576625576472443817661193" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "42602994023611051802624", - "outputQty0": "42690886204688924974905", - "outputQty": "42260974381106762376515", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "3216075775991059456", + "outputQty0": "3337984648730171446", + "outputQty": "3351876548529245134", + "swapFee": "2626722713045804", "mpReserves": [ - "59876639555527124525956361", - "25213439073778253930239885", - "23343940153770270380909204" + "54150605761908403880100418", + "9477048134847008569983670", + "36651271081219890018445823" ], "fpReserves": [ - "9316807830147077282300065", - "5538235014037492143154322" + "910248931541217079241050", + "1717696365864884317028342" ], - "mAssetSupply": "108393265313071935267178052", - "LPTokenSupply": "14726464144577623388408663" + "mAssetSupply": "100009544393652654568634424", + "LPTokenSupply": "2576625576735116088965773" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5220956753693967908864", - "outputQty0": "5229037663216671563232", - "outputQty": "5176334604374048710493", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "459784443900607201280", + "outputQty0": "457899436578744949827", + "outputQty": "459803264903317693735", + "swapFee": "360329033875894635", "mpReserves": [ - "59876639555527124525956361", - "25218660030531947898148749", - "23343940153770270380909204" + "54150605761908403880100418", + "9477048134847008569983670", + "36651730865663790625647103" ], "fpReserves": [ - "9322036867810293953863297", - "5538235014037492143154322" + "910706830977795824190877", + "1717236562599980999334607" ], - "mAssetSupply": "108398494350735151938741284", - "LPTokenSupply": "14731640479181997437119156" + "mAssetSupply": "100010002293089233313584251", + "LPTokenSupply": "2576625612768019476555236" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "131769921067396351655936", - "outputQty0": "132038999627096092843148", - "outputQty": "130704954951324024313891", + "inputIndex": 0, + "inputQty": "75401778605507674112", + "outputQty0": "74735691324139124909", + "outputQty": "73513233667805574166", "mpReserves": [ - "59876639555527124525956361", - "25218660030531947898148749", - "23475710074837666732565140" + "54150681163687009387774530", + "9477048134847008569983670", + "36651730865663790625647103" ], "fpReserves": [ - "9454075867437390046706445", - "5538235014037492143154322" + "910781566669119963315786", + "1717236562599980999334607" ], - "mAssetSupply": "108530533350362248031584432", - "LPTokenSupply": "14862345434133321461433047" + "mAssetSupply": "100010077028780557452709160", + "LPTokenSupply": "2576699126001687282129402" }, { - "type": "swap_fp_to_mp", - "inputQty": "7215910628773614059520", - "outputIndex": 2, - "outputQty": "7227069357052083945386", - "swapFee": "0", - "redemptionFee": "2897846368726302737", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1023985376123031272816640", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "1224750410356759199744", + "outputQty0": "1244364439752909041716", + "outputQty": "1254701496386262879455", + "swapFee1": "734850246214055519", + "swapFee2": "746618663851745425", "mpReserves": [ - "59876639555527124525956361", - "25218660030531947898148749", - "23468483005480614648619754" + "54149426462190623124895075", + "9477048134847008569983670", + "36651730865663790625647103" ], "fpReserves": [ - "9446831251515574289863933", - "5545450924666265757213842" + "909537202229367054274070", + "1717236562599980999334607" ], - "mAssetSupply": "108523291632286801001044657", - "LPTokenSupply": "14862345434133321461433047" + "mAssetSupply": "100008833410959468395412869", + "LPTokenSupply": "2575474449076355144335209" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "79734938869671244333056", - "outputQty0": "79895859587956015075976", - "outputQty": "79508007759541370346803", - "swapFee": "63268947363133618817", + "type": "mint", + "inputIndex": 1, + "inputQty": "10182029320192528384", + "outputQty0": "10567981412380097866", + "outputQty": "10395209774695166946", "mpReserves": [ - "59876639555527124525956361", - "25218660030531947898148749", - "23548217944350285892952810" + "54149426462190623124895075", + "9477058316876328762512054", + "36651730865663790625647103" ], "fpReserves": [ - "9526727111103530304939909", - "5465942916906724386867039" + "909547770210779434371936", + "1717236562599980999334607" ], - "mAssetSupply": "108603187491874757016120633", - "LPTokenSupply": "14862351761028057774794928" + "mAssetSupply": "100008843978940880775510735", + "LPTokenSupply": "2575484844286129839502155" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1503787837417846210560", - "outputQty0": "1500600252579586495227", - "outputQty": "1485292410565400670666", + "inputQty": "3707358772026442514432", + "outputQty0": "3674608089396748041697", + "outputQty": "3614484267593964064146", "mpReserves": [ - "59878143343364542372166921", - "25218660030531947898148749", - "23548217944350285892952810" + "54153133820962649567409507", + "9477058316876328762512054", + "36651730865663790625647103" ], "fpReserves": [ - "9528227711356109891435136", - "5465942916906724386867039" + "913222378300176182413633", + "1717236562599980999334607" ], - "mAssetSupply": "108604688092127336602615860", - "LPTokenSupply": "14863837053438623175465594" + "mAssetSupply": "100012518587030277523552432", + "LPTokenSupply": "2579099328553723803566301" }, { - "type": "swap_fp_to_mp", - "inputQty": "9321391737491467272192", - "outputIndex": 0, - "outputQty": "9376389790711660674285", - "swapFee": "0", - "redemptionFee": "3744104302372661449", + "type": "redeem", + "outputIndex": 1, + "inputQty": "43214408423566516224", + "outputQty0": "43907468961623825810", + "outputQty": "42278398280385068240", + "swapFee1": "25928645054139909", + "swapFee2": "26344481376974295", "mpReserves": [ - "59868766953573830711492636", - "25218660030531947898148749", - "23548217944350285892952810" + "54153133820962649567409507", + "9477016038478048377443814", + "36651730865663790625647103" ], "fpReserves": [ - "9518867450600178237810380", - "5475264308644215854139231" + "913178470831214558587823", + "1717236562599980999334607" ], - "mAssetSupply": "108595331575475707321652553", - "LPTokenSupply": "14863837053438623175465594" + "mAssetSupply": "100012474705905797276700917", + "LPTokenSupply": "2579056116738164742464067" }, { - "type": "swap_fp_to_mp", - "inputQty": "101418802978298920960", + "type": "redeem", "outputIndex": 1, - "outputQty": "101641376451354125511", - "swapFee": "0", - "redemptionFee": "40736164958405081", + "inputQty": "6225915253092493819904", + "outputQty0": "6325616260285430853699", + "outputQty": "6090777873310564128269", + "swapFee1": "3735549151855496291", + "swapFee2": "3795369756171258512", "mpReserves": [ - "59868766953573830711492636", - "25218558389155496544023238", - "23548217944350285892952810" + "54153133820962649567409507", + "9470925260604737813315545", + "36651730865663790625647103" ], "fpReserves": [ - "9518765610187782225106222", - "5475365727447194153060191" + "906852854570929127734124", + "1717236562599980999334607" ], - "mAssetSupply": "108595229775799476267353476", - "LPTokenSupply": "14863837053438623175465594" + "mAssetSupply": "100006152885015268017105730", + "LPTokenSupply": "2572830575039987434193792" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "206855692035979444224", - "outputQty0": "207177854052495338955", - "outputQty": "206155072620824634094", - "swapFee": "164052997780118260", + "type": "mint", + "inputIndex": 2, + "inputQty": "7158732535316670464", + "outputQty0": "7129355579958805913", + "outputQty": "7012931438338758335", "mpReserves": [ - "59868766953573830711492636", - "25218765244847532523467462", - "23548217944350285892952810" + "54153133820962649567409507", + "9470925260604737813315545", + "36651738024396325942317567" ], "fpReserves": [ - "9518972788041834720445177", - "5475159572374573328426097" + "906859983926509086540037", + "1717236562599980999334607" ], - "mAssetSupply": "108595436953653528762692431", - "LPTokenSupply": "14863837069843922953477420" + "mAssetSupply": "100006160014370847975911643", + "LPTokenSupply": "2572837587971425772952127" }, { - "type": "swap_fp_to_mp", - "inputQty": "1552880318213546752", + "type": "redeem", "outputIndex": 2, - "outputQty": "1555589013515218993", - "swapFee": "0", - "redemptionFee": "623734586799686", + "inputQty": "6450538638926359298048", + "outputQty0": "6553530642555389585915", + "outputQty": "6576580667166807986289", + "swapFee1": "3870323183355815578", + "swapFee2": "3932118385533233751", "mpReserves": [ - "59868766953573830711492636", - "25218765244847532523467462", - "23548216388761272377733817" + "54153133820962649567409507", + "9470925260604737813315545", + "36645161443729159134331278" ], "fpReserves": [ - "9518971228705367721227737", - "5475161125254891541972849" + "900306453283953696954122", + "1717236562599980999334607" ], - "mAssetSupply": "108595435394940796350274677", - "LPTokenSupply": "14863837069843922953477420" + "mAssetSupply": "99999610415846678119559479", + "LPTokenSupply": "2566387436364817749235636" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "30167420428028385165312", + "outputQty0": "30043554141583410250475", + "outputQty": "30164118035042742288545", + "swapFee": "23640857998359667350", + "mpReserves": [ + "54153133820962649567409507", + "9470925260604737813315545", + "36675328864157187519496590" + ], + "fpReserves": [ + "930350007425537107204597", + "1687072444564938257046062" + ], + "mAssetSupply": "100029653969988261529809954", + "LPTokenSupply": "2566389800450617585202371" }, { "type": "swap_fp_to_mp", - "inputQty": "673316313061335891968", - "outputIndex": 1, - "outputQty": "674793615219812775221", + "inputQty": "5378403685290768384", + "outputIndex": 0, + "outputQty": "5398476030959523052", "swapFee": "0", - "redemptionFee": "270446012919249214", + "redemptionFee": "3212384234339961", "mpReserves": [ - "59868766953573830711492636", - "25218090451232312710692241", - "23548216388761272377733817" + "54153128422486618607886455", + "9470925260604737813315545", + "36675328864157187519496590" ], "fpReserves": [ - "9518295113673069598191591", - "5475834441567952877864817" + "930344653451813207268108", + "1687077822968623547814446" ], - "mAssetSupply": "108594759550354511146487745", - "LPTokenSupply": "14863837069843922953477420" + "mAssetSupply": "100029648619226921864213426", + "LPTokenSupply": "2566389800450617585202371" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "114164649754373259264", - "outputQty0": "114342464170530361939", - "outputQty": "113778143910367026245", - "swapFee": "90541688939801746", + "type": "mint", + "inputIndex": 2, + "inputQty": "1425697382947092497956864", + "outputQty0": "1419566503592544771828078", + "outputQty": "1392720744850583908026655", "mpReserves": [ - "59868766953573830711492636", - "25218204615882067083951505", - "23548216388761272377733817" + "54153128422486618607886455", + "9470925260604737813315545", + "38101026247104280017453454" ], "fpReserves": [ - "9518409456137240128553530", - "5475720663424042510838572" + "2349911157044357979096186", + "1687077822968623547814446" ], - "mAssetSupply": "108594873892818681676849684", - "LPTokenSupply": "14863837078898091847457594" + "mAssetSupply": "101449215122819466636041504", + "LPTokenSupply": "3959110545301201493229026" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "32575306905712123183104", - "outputQty0": "32506242229202397257663", - "outputQty": "32344391836459132387861", - "swapFee": "25739803815498513447", + "inputQty": "76053540542909671014400", + "outputQty0": "75387895478077476347970", + "outputQty": "73858911978716001473830", "mpReserves": [ - "59901342260479542834675740", - "25218204615882067083951505", - "23548216388761272377733817" + "54229181963029528278900855", + "9470925260604737813315545", + "38101026247104280017453454" ], "fpReserves": [ - "9550915698366442525811193", - "5443376271587583378450711" + "2425299052522435455444156", + "1687077822968623547814446" ], - "mAssetSupply": "108627380135047884074107347", - "LPTokenSupply": "14863839652878473397308938" + "mAssetSupply": "101524603018297544112389474", + "LPTokenSupply": "4032969457279917494702856" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "35888607046145331429376", - "outputQty0": "35944450106399901317179", - "outputQty": "35762154199653347685673", - "swapFee": "28461347163372964602", + "inputQty": "5292404122739476004864", + "outputQty0": "5498673598386946197301", + "outputQty": "5386864066031891788221", "mpReserves": [ - "59901342260479542834675740", - "25254093222928212415380881", - "23548216388761272377733817" + "54229181963029528278900855", + "9476217664727477289320409", + "38101026247104280017453454" ], "fpReserves": [ - "9586860148472842427128372", - "5407614117387930030765038" + "2430797726120822401641457", + "1687077822968623547814446" ], - "mAssetSupply": "108663324585154283975424526", - "LPTokenSupply": "14863842499013189734605398" + "mAssetSupply": "101530101691895931058586775", + "LPTokenSupply": "4038356321345949386491077" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "499711275567736864899072", - "outputQty0": "500687472248399220069989", - "outputQty": "497753366555907453980660", - "swapFee": "396403953680654790100", + "type": "redeem", + "outputIndex": 2, + "inputQty": "532833364173663191957504", + "outputQty0": "543361135441852673030404", + "outputQty": "545439472174759481114346", + "swapFee1": "319700018504197915174", + "swapFee2": "326016681265111603818", "mpReserves": [ - "59901342260479542834675740", - "25254093222928212415380881", - "24047927664329009242632889" + "54229181963029528278900855", + "9476217664727477289320409", + "37555586774929520536339108" ], "fpReserves": [ - "10087547620721241647198361", - "4909860750832022576784378" + "1887436590678969728611053", + "1687077822968623547814446" ], - "mAssetSupply": "109164012057402683195494515", - "LPTokenSupply": "14863882139408557800084408" + "mAssetSupply": "100987066573135343497160189", + "LPTokenSupply": "3505554927174136614325090" }, { "type": "swap_fp_to_mp", - "inputQty": "15430293353970683346944", - "outputIndex": 0, - "outputQty": "15547052196677023274643", + "inputQty": "134083167916034355101696", + "outputIndex": 1, + "outputQty": "128990445234842032373983", "swapFee": "0", - "redemptionFee": "6208350087512845815", + "redemptionFee": "80469723910321218919", "mpReserves": [ - "59885795208282865811401097", - "25254093222928212415380881", - "24047927664329009242632889" + "54229181963029528278900855", + "9347227219492635256946426", + "37555586774929520536339108" ], "fpReserves": [ - "10072026745502459532660752", - "4925291044185993260131322" + "1753320384161767697079383", + "1821160990884657902916142" ], - "mAssetSupply": "109148497390533988593802721", - "LPTokenSupply": "14863882139408557800084408" + "mAssetSupply": "100853030836342051786847438", + "LPTokenSupply": "3505554927174136614325090" }, { - "type": "swap_fp_to_mp", - "inputQty": "972233023537961631744", - "outputIndex": 0, - "outputQty": "979561409182794383559", - "swapFee": "0", - "redemptionFee": "391165014130906053", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "72903968444626736513024", + "outputQty0": "72253501441763130657702", + "outputQty": "72194521282013622570754", + "swapFee": "56691594154164480796", "mpReserves": [ - "59884815646873683017017538", - "25254093222928212415380881", - "24047927664329009242632889" + "54302085931474155015413879", + "9347227219492635256946426", + "37555586774929520536339108" ], "fpReserves": [ - "10071048832967132267526091", - "4926263277209531221763066" + "1825573885603530827737085", + "1748966469602644280345388" ], - "mAssetSupply": "109147519869163675459574113", - "LPTokenSupply": "14863882139408557800084408" + "mAssetSupply": "100925284337783814917505140", + "LPTokenSupply": "3505560596333552030773169" }, { "type": "swap_fp_to_mp", - "inputQty": "226679789144785440210944", - "outputIndex": 0, - "outputQty": "228300232097996676751023", + "inputQty": "32331336025937113251840", + "outputIndex": 1, + "outputQty": "31078700368706746797329", "swapFee": "0", - "redemptionFee": "91166943730712824741", + "redemptionFee": "19401985736242301263", "mpReserves": [ - "59656515414775686340266515", - "25254093222928212415380881", - "24047927664329009242632889" + "54302085931474155015413879", + "9316148519123928510149097", + "37555586774929520536339108" ], "fpReserves": [ - "9843131473640350205672308", - "5152943066354316661974010" + "1793237242709793658963846", + "1781297805628581393597228" ], - "mAssetSupply": "108919693676780624110545071", - "LPTokenSupply": "14863882139408557800084408" + "mAssetSupply": "100892967096875813991033164", + "LPTokenSupply": "3505560596333552030773169" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "379916559877766054412288", - "outputQty0": "383708619084806125881465", - "outputQty": "382941964786030522943662", - "swapFee1": "227949935926659632647", - "swapFee2": "153483447633922450352", + "inputQty": "45375323451293712384", + "outputQty0": "46241372544865169986", + "outputQty": "44436872837591767297", + "swapFee1": "27225194070776227", + "swapFee2": "27744823526919101", "mpReserves": [ - "59656515414775686340266515", - "24871151258142181892437219", - "24047927664329009242632889" + "54302085931474155015413879", + "9316104082251090918381800", + "37555586774929520536339108" ], "fpReserves": [ - "9459422854555544079790843", - "5152943066354316661974010" + "1793191001337248793793860", + "1781297805628581393597228" ], - "mAssetSupply": "108536138541143451907113958", - "LPTokenSupply": "14483988374524384411635384" + "mAssetSupply": "100892920883248092652782279", + "LPTokenSupply": "3505515223732620144138407" }, { - "type": "swap_fp_to_mp", - "inputQty": "211502350191591925219328", + "type": "redeem", "outputIndex": 2, - "outputQty": "211943888488566908868419", - "swapFee": "0", - "redemptionFee": "84971194571271363953", + "inputQty": "381123863593763687366656", + "outputQty0": "388240435367173807059009", + "outputQty": "389717812639653930001938", + "swapFee1": "228674318156258212419", + "swapFee2": "232944261220304284235", "mpReserves": [ - "59656515414775686340266515", - "24871151258142181892437219", - "23835983775840442333764470" + "54302085931474155015413879", + "9316104082251090918381800", + "37165868962289866606337170" ], "fpReserves": [ - "9246994868127365669906577", - "5364445416545908587193338" + "1404950565970074986734851", + "1781297805628581393597228" ], - "mAssetSupply": "108323795525909844768593645", - "LPTokenSupply": "14483988374524384411635384" + "mAssetSupply": "100504913392142139150007505", + "LPTokenSupply": "3124414227570672082592992" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "176548517589611450466304", - "outputQty0": "176832929697555848787473", - "outputQty": "175022750745802576719789", - "mpReserves": [ - "59656515414775686340266515", - "25047699775731793342903523", - "23835983775840442333764470" - ], - "fpReserves": [ - "9423827797824921518694050", - "5364445416545908587193338" - ], - "mAssetSupply": "108500628455607400617381118", - "LPTokenSupply": "14659011125270186988355173" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1366835715092837302272", - "outputQty0": "1380188028223183656710", - "outputQty": "1382536387959574605295", - "swapFee1": "820101429055702381", - "swapFee2": "552075211289273462", + "type": "swap_fp_to_mp", + "inputQty": "617960247883587840", + "outputIndex": 1, + "outputQty": "593043462372397888", + "swapFee": "0", + "redemptionFee": "370180175529677", "mpReserves": [ - "59655132878387726765661220", - "25047699775731793342903523", - "23835983775840442333764470" + "54302085931474155015413879", + "9316103489207628545983912", + "37165868962289866606337170" ], "fpReserves": [ - "9422447609796698335037340", - "5364445416545908587193338" + "1404949949003115770605740", + "1781298423588829277185068" ], - "mAssetSupply": "108499248819654388722997870", - "LPTokenSupply": "14657644371565237056623139" + "mAssetSupply": "100504912775545360109408071", + "LPTokenSupply": "3124414227570672082592992" }, { "type": "swap_fp_to_mp", - "inputQty": "184231267986899745112064", - "outputIndex": 2, - "outputQty": "184537379183174742124093", + "inputQty": "925476368636897918976", + "outputIndex": 1, + "outputQty": "888153298521047700022", "swapFee": "0", - "redemptionFee": "73987586380619471082", + "redemptionFee": "554390957053472810", "mpReserves": [ - "59655132878387726765661220", - "25047699775731793342903523", - "23651446396657267591640377" + "54302085931474155015413879", + "9315215335909107498283890", + "37165868962289866606337170" ], "fpReserves": [ - "9237478643845149657330227", - "5548676684532808332305402" + "1404025964074693315921518", + "1782223899957466175104044" ], - "mAssetSupply": "108314353841289220664761839", - "LPTokenSupply": "14657644371565237056623139" + "mAssetSupply": "100503989345007894708196659", + "LPTokenSupply": "3124414227570672082592992" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "4770633398504144896", - "outputQty0": "4779980719118774868", - "outputQty": "4758264089897385806", - "swapFee": "3785407554360412", + "inputQty": "43779968703995022671872", + "outputQty0": "43589844242503684697774", + "outputQty": "42779978410147055384427", "mpReserves": [ - "59655132878387726765661220", - "25047699775731793342903523", - "23651451167290666095785273" + "54302085931474155015413879", + "9315215335909107498283890", + "37209648930993861629009042" ], "fpReserves": [ - "9237483423825868776105095", - "5548671926268718434919596" + "1447615808317197000619292", + "1782223899957466175104044" ], - "mAssetSupply": "108314358621269939783536707", - "LPTokenSupply": "14657644371943777812059180" + "mAssetSupply": "100547579189250398392894433", + "LPTokenSupply": "3167194205980819137977419" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "307969043082268408545280", - "outputQty0": "308561445215425753700958", - "outputQty": "307033047114971910907126", - "swapFee": "244345301078418468465", + "type": "swap_fp_to_mp", + "inputQty": "103784513671091267305472", + "outputIndex": 1, + "outputQty": "99529554072414294982641", + "swapFee": "0", + "redemptionFee": "62154442922577261490", "mpReserves": [ - "59655132878387726765661220", - "25047699775731793342903523", - "23959420210372934504330553" + "54302085931474155015413879", + "9215685781836693203301249", + "37209648930993861629009042" ], "fpReserves": [ - "9546044869041294529806053", - "5241638879153746524012470" + "1344025070112901564801346", + "1886008413628557442409516" ], - "mAssetSupply": "108622920066485365537237665", - "LPTokenSupply": "14657668806473885653906026" + "mAssetSupply": "100444050605489025534337977", + "LPTokenSupply": "3167194205980819137977419" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4370364907917438464", - "outputQty0": "4377354911354559575", - "outputQty": "4331797234131699729", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "37415126956139634688", + "outputQty0": "37075274101526866509", + "outputQty": "37132839152117526280", + "swapFee": "29123135058735612", "mpReserves": [ - "59655132878387726765661220", - "25047704146096701260341987", - "23959420210372934504330553" + "54302123346601111155048567", + "9215685781836693203301249", + "37209648930993861629009042" ], "fpReserves": [ - "9546049246396205884365628", - "5241638879153746524012470" + "1344062145387003091667855", + "1885971280789405324883236" ], - "mAssetSupply": "108622924443840276891797240", - "LPTokenSupply": "14657673138271119785605755" + "mAssetSupply": "100444087680763127061204486", + "LPTokenSupply": "3167194208893132643850980" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "37602860699586", - "outputQty0": "37524298611919", - "outputQty": "37322391143399", - "swapFee": "29707009113", + "inputQty": "68075729042631319552", + "outputQty0": "67457375937063663284", + "outputQty": "67562079671151964107", + "swapFee": "52988677542525754", "mpReserves": [ - "59655132878425329626360806", - "25047704146096701260341987", - "23959420210372934504330553" + "54302191422330153786368119", + "9215685781836693203301249", + "37209648930993861629009042" ], "fpReserves": [ - "9546049246433730182977547", - "5241638879116424132869071" + "1344129602762940155331139", + "1885903718709734172919129" ], - "mAssetSupply": "108622924443877801190409159", - "LPTokenSupply": "14657673138271122756306666" + "mAssetSupply": "100444155138139064124867770", + "LPTokenSupply": "3167194214192000398103555" }, { "type": "swap_fp_to_mp", - "inputQty": "189607846952622031372288", - "outputIndex": 0, - "outputQty": "190751098917507423989878", + "inputQty": "344567523019605938274304", + "outputIndex": 1, + "outputQty": "329011246021103412348956", "swapFee": "0", - "redemptionFee": "76171894192582911305", + "redemptionFee": "205840960557108053124", "mpReserves": [ - "59464381779507822202370928", - "25047704146096701260341987", - "23959420210372934504330553" + "54302191422330153786368119", + "8886674535815589790952293", + "37209648930993861629009042" ], "fpReserves": [ - "9355619510952272904714082", - "5431246726069046164241359" + "1001061335167760066790555", + "2230471241729340111193433" ], - "mAssetSupply": "108432570880290536495056999", - "LPTokenSupply": "14657673138271122756306666" + "mAssetSupply": "100101292711504441144380310", + "LPTokenSupply": "3167194214192000398103555" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1002308769984556040192", - "outputQty0": "1000225094745489677481", - "outputQty": "995371328477908281755", - "swapFee": "792004445220564545", + "type": "mint", + "inputIndex": 2, + "inputQty": "10843349943343259648", + "outputQty0": "10792868074258887111", + "outputQty": "10628198017580744043", "mpReserves": [ - "59465384088277806758411120", - "25047704146096701260341987", - "23959420210372934504330553" + "54302191422330153786368119", + "8886674535815589790952293", + "37209659774343804972268690" ], "fpReserves": [ - "9356619736047018394391563", - "5430251354740568255959604" + "1001072128035834325677666", + "2230471241729340111193433" ], - "mAssetSupply": "108433571105385281984734480", - "LPTokenSupply": "14657673217471567278363120" + "mAssetSupply": "100101303504372515403267421", + "LPTokenSupply": "3167204842390017978847598" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2975686996726028288", - "outputQty0": "2969500832057497939", - "outputQty": "2939158219021842868", + "type": "redeem", + "outputIndex": 0, + "inputQty": "177223423756234162176", + "outputQty0": "179861152987677824891", + "outputQty": "181463640612264899832", + "swapFee1": "106334054253740497", + "swapFee2": "107916691792606694", "mpReserves": [ - "59465387063964803484439408", - "25047704146096701260341987", - "23959420210372934504330553" + "54302009958689541521468287", + "8886674535815589790952293", + "37209659774343804972268690" ], "fpReserves": [ - "9356622705547850451889502", - "5430251354740568255959604" + "1000892266882846647852775", + "2230471241729340111193433" ], - "mAssetSupply": "108433574074886114042232419", - "LPTokenSupply": "14657676156629786300205988" + "mAssetSupply": "100101123751136219518049224", + "LPTokenSupply": "3167027629599667170059471" }, { - "type": "swap_fp_to_mp", - "inputQty": "215838893476480843776", - "outputIndex": 2, - "outputQty": "216225978939521655769", - "swapFee": "0", - "redemptionFee": "86687244825572361", + "type": "mint", + "inputIndex": 0, + "inputQty": "455418777605064256", + "outputQty0": "451126189997088157", + "outputQty": "444243894247930441", "mpReserves": [ - "59465387063964803484439408", - "25047704146096701260341987", - "23959203984393994982674784" + "54302010414108319126532543", + "8886674535815589790952293", + "37209659774343804972268690" ], "fpReserves": [ - "9356405987435786520986521", - "5430467193634044736803380" + "1000892718009036644940932", + "2230471241729340111193433" ], - "mAssetSupply": "108433357443461294936901799", - "LPTokenSupply": "14657676156629786300205988" + "mAssetSupply": "100101124202262409515137381", + "LPTokenSupply": "3167028073843561417989912" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "392195113569469482401792", + "outputIndex": 0, + "hardLimitError": true }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6732854846387633782784", - "outputQty0": "6718856556436717863190", - "outputQty": "6650195993778622291625", + "inputIndex": 1, + "inputQty": "271916529594492908470272", + "outputQty0": "283434728078796900381670", + "outputQty": "278830548010620403903312", "mpReserves": [ - "59472119918811191118222192", - "25047704146096701260341987", - "23959203984393994982674784" + "54302010414108319126532543", + "9158591065410082699422565", + "37209659774343804972268690" ], "fpReserves": [ - "9363124843992223238849711", - "5430467193634044736803380" + "1284327446087833545322602", + "2230471241729340111193433" ], - "mAssetSupply": "108440076300017731654764989", - "LPTokenSupply": "14664326352623564922497613" + "mAssetSupply": "100384558930341206415519051", + "LPTokenSupply": "3445858621854181821893224" }, { "type": "swap_fp_to_mp", - "inputQty": "8359051366543265890304", + "inputQty": "45438170933777632", "outputIndex": 1, - "outputQty": "8376396632206559506002", + "outputQty": "43437501882723652", "swapFee": "0", - "redemptionFee": "3357224277723510518", + "redemptionFee": "27150301365942", "mpReserves": [ - "59472119918811191118222192", - "25039327749464494700835985", - "23959203984393994982674784" + "54302010414108319126532543", + "9158591021972580816698913", + "37209659774343804972268690" ], "fpReserves": [ - "9354731783297914462553791", - "5438826245000588002693684" + "1284327400837331268751841", + "2230471287167511044971065" ], - "mAssetSupply": "108431686596547700601979587", - "LPTokenSupply": "14664326352623564922497613" + "mAssetSupply": "100384558885117854440314232", + "LPTokenSupply": "3445858621854181821893224" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "7456337409934015594496", - "outputQty0": "7528737510726080034562", - "outputQty": "7541409212251581373635", - "swapFee1": "4473802445960409356", - "swapFee2": "3011495004290432013", + "outputIndex": 2, + "inputQty": "206166709401983516672", + "outputQty0": "209614294050966398604", + "outputQty": "210426529770706387942", + "swapFee1": "123700025641190110", + "swapFee2": "125768576430579839", "mpReserves": [ - "59464578509598939536848557", - "25039327749464494700835985", - "23959203984393994982674784" + "54302010414108319126532543", + "9158591021972580816698913", + "37209449347814034265880748" ], "fpReserves": [ - "9347203045787188382519229", - "5438826245000588002693684" + "1284117786543280302353237", + "2230471287167511044971065" ], - "mAssetSupply": "108424160870531978812377038", - "LPTokenSupply": "14656870462593875502944052" + "mAssetSupply": "100384349396592379904495467", + "LPTokenSupply": "3445652467514782402495563" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "56384712340094279680", - "outputQty0": "56932137862225474879", - "outputQty": "57027949127290088851", - "swapFee1": "33830827404056567", - "swapFee2": "22772855144890189", - "mpReserves": [ - "59464521481649812246759706", - "25039327749464494700835985", - "23959203984393994982674784" - ], - "fpReserves": [ - "9347146113649326157044350", - "5438826245000588002693684" - ], - "mAssetSupply": "108424103961166971731792348", - "LPTokenSupply": "14656814081264618149070028" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "20433835908912701440", - "outputQty0": "20472141790510809880", - "outputQty": "20373257023863442951", - "swapFee": "16210503029406897", + "outputIndex": 2, + "inputQty": "65383089731287509893120", + "outputQty0": "66465771709528577256199", + "outputQty": "66722708254958761041227", + "swapFee1": "39229853838772505935", + "swapFee2": "39879463025717146353", "mpReserves": [ - "59464521481649812246759706", - "25039327749464494700835985", - "23959224418229903895376224" + "54302010414108319126532543", + "9158591021972580816698913", + "37142726639559075504839521" ], "fpReserves": [ - "9347166585791116667854230", - "5438805871743564139250733" + "1217652014833751725097038", + "2230471287167511044971065" ], - "mAssetSupply": "108424124433308762242602228", - "LPTokenSupply": "14656814082885668452010717" + "mAssetSupply": "100317923504345877044385621", + "LPTokenSupply": "3380273300768878769853036" }, { "type": "swap_fp_to_mp", - "inputQty": "566618647433083420672", + "inputQty": "19755365102203200077824", "outputIndex": 1, - "outputQty": "567783119052047453193", + "outputQty": "18872785516170730248191", "swapFee": "0", - "redemptionFee": "227565162547779018", + "redemptionFee": "11796716731514872373", "mpReserves": [ - "59464521481649812246759706", - "25038759966345442653382792", - "23959224418229903895376224" + "54302010414108319126532543", + "9139718236456410086450722", + "37142726639559075504839521" ], "fpReserves": [ - "9346597672884747220308642", - "5439372490390997222671405" + "1197990820281226937807445", + "2250226652269714245048889" ], - "mAssetSupply": "108423555747967555342835658", - "LPTokenSupply": "14656814082885668452010717" + "mAssetSupply": "100298274106510083771968401", + "LPTokenSupply": "3380273300768878769853036" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "466926866821864095744", - "outputQty0": "467802142472922331354", - "outputQty": "463026267955713212893", - "mpReserves": [ - "59464521481649812246759706", - "25038759966345442653382792", - "23959691345096725759471968" - ], - "fpReserves": [ - "9347065475027220142639996", - "5439372490390997222671405" - ], - "mAssetSupply": "108424023550110028265167012", - "LPTokenSupply": "14657277109153624165223610" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "544841088608706", - "outputQty0": "545706899472245", - "outputQty": "543071581284363", - "swapFee": "432108508454", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1042769919460376313856", + "outputQty0": "1059693415616474371473", + "outputQty": "1068853203231653554238", + "swapFee1": "625661951676225788", + "swapFee2": "635816049369884622", "mpReserves": [ - "59464521481649812246759706", - "25038759966890283741991498", - "23959691345096725759471968" + "54300941560905087472978305", + "9139718236456410086450722", + "37142726639559075504839521" ], "fpReserves": [ - "9347065475572927042112241", - "5439372489847925641387042" + "1196931126865610463435972", + "2250226652269714245048889" ], - "mAssetSupply": "108424023550655735164639257", - "LPTokenSupply": "14657277109153667376074455" + "mAssetSupply": "100297215048910516667481550", + "LPTokenSupply": "3379230593415613561161758" }, { - "type": "swap_fp_to_mp", - "inputQty": "5807006744361005219840", + "type": "redeem", "outputIndex": 0, - "outputQty": "5840283507695109350259", - "swapFee": "0", - "redemptionFee": "2332188926559619783", + "inputQty": "142447996060182010396672", + "outputQty0": "144693963095339331745158", + "outputQty": "145942307980980811437251", + "swapFee1": "85468797636109206238", + "swapFee2": "86816377857203599047", "mpReserves": [ - "59458681198142117137409447", - "25038759966890283741991498", - "23959691345096725759471968" + "54154999252924106661541054", + "9139718236456410086450722", + "37142726639559075504839521" ], "fpReserves": [ - "9341235003256527992653450", - "5445179496592286646606882" + "1052237163770271131690814", + "2250226652269714245048889" ], - "mAssetSupply": "108418195410528262674800249", - "LPTokenSupply": "14657277109153667376074455" + "mAssetSupply": "100152607902193034539335439", + "LPTokenSupply": "3236791144235195161685709" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "46177269527752009056256", - "outputQty0": "46250419835093935096973", - "outputQty": "46024926713845029056070", - "swapFee": "36622492451210811572", + "type": "redeem", + "outputIndex": 0, + "inputQty": "58933296952697823232", + "outputQty0": "59833569516914310867", + "outputQty": "60348812779689064384", + "swapFee1": "35359978171618693", + "swapFee2": "35900141710148586", "mpReserves": [ - "59458681198142117137409447", - "25084937236418035751047754", - "23959691345096725759471968" + "54154938904111326972476670", + "9139718236456410086450722", + "37142726639559075504839521" ], "fpReserves": [ - "9387485423091621927750423", - "5399154569878441617550812" + "1052177330200754217379947", + "2250226652269714245048889" ], - "mAssetSupply": "108464445830363356609897222", - "LPTokenSupply": "14657280771402912497155612" + "mAssetSupply": "100152548104523659335173158", + "LPTokenSupply": "3236732214474240281024346" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "34115762501014792437760", - "outputQty0": "34179648999442128960869", - "outputQty": "34009293533175827194119", - "swapFee": "27063246631822960201", + "type": "mint", + "inputIndex": 0, + "inputQty": "40536679122108959162368", + "outputQty0": "40166293667066270429785", + "outputQty": "39532175202757922110460", "mpReserves": [ - "59458681198142117137409447", - "25084937236418035751047754", - "23993807107597740551909728" + "54195475583233435931639038", + "9139718236456410086450722", + "37142726639559075504839521" ], "fpReserves": [ - "9421665072091064056711292", - "5365145276345265790356693" + "1092343623867820487809732", + "2250226652269714245048889" ], - "mAssetSupply": "108498625479362798738858091", - "LPTokenSupply": "14657283477727575679451632" + "mAssetSupply": "100192714398190725605602943", + "LPTokenSupply": "3276264389676998203134806" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "287971760233555165184", - "outputQty0": "288509911526825717013", - "outputQty": "287058366152038091130", - "swapFee": "228433692451008623", + "type": "mint", + "inputIndex": 0, + "inputQty": "9640369662417151459328", + "outputQty0": "9552232414306049231048", + "outputQty": "9399723256709862662981", "mpReserves": [ - "59458681198142117137409447", - "25084937236418035751047754", - "23994095079357974107074912" + "54205115952895853083098366", + "9139718236456410086450722", + "37142726639559075504839521" ], "fpReserves": [ - "9421953582002590882428305", - "5364858217979113752265563" + "1101895856282126537040780", + "2250226652269714245048889" ], - "mAssetSupply": "108498913989274325564575104", - "LPTokenSupply": "14657283500570944924552494" + "mAssetSupply": "100202266630605031654833991", + "LPTokenSupply": "3285664112933708065797787" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "54097545272387937763328", "outputIndex": 1, - "inputQty": "10373393284746476257280", - "outputQty0": "10474903518055265134744", - "outputQty": "10454171536354758873322", - "swapFee1": "6224035970847885754", - "swapFee2": "4189961407222106053", + "outputQty": "51594237423564854576626", + "swapFee": "0", + "redemptionFee": "32256467742904013071", "mpReserves": [ - "59458681198142117137409447", - "25074483064881680992174432", - "23994095079357974107074912" + "54205115952895853083098366", + "9088123999032845231874096", + "37142726639559075504839521" ], "fpReserves": [ - "9411478678484535617293561", - "5364858217979113752265563" + "1048135076710619848588293", + "2304324197542102182812217" ], - "mAssetSupply": "108488443275717677521546413", - "LPTokenSupply": "14646910729689795533083789" + "mAssetSupply": "100148538107501267870394575", + "LPTokenSupply": "3285664112933708065797787" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "181572939557000708096000", - "outputQty0": "183343304433568737723454", - "outputQty": "182976882970680753545173", - "swapFee1": "108943763734200424857", - "swapFee2": "73337321773427495089", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "312639299229449073983488", + "outputQty0": "309753424445881874243937", + "outputQty": "310902250929820151150991", + "swapFee": "243737136488043844960", "mpReserves": [ - "59458681198142117137409447", - "24891506181911000238629259", - "23994095079357974107074912" + "54517755252125302157081854", + "9088123999032845231874096", + "37142726639559075504839521" ], "fpReserves": [ - "9228135374050966879570107", - "5364858217979113752265563" + "1357888501156501722832230", + "1993421946612282031661226" ], - "mAssetSupply": "108305173308605882211318048", - "LPTokenSupply": "14465348684509168245030274" + "mAssetSupply": "100458291531947149744638512", + "LPTokenSupply": "3285688486647356870182283" }, { - "type": "swap_fp_to_mp", - "inputQty": "62938728449481159737344", - "outputIndex": 1, - "outputQty": "63060896010964969374722", - "swapFee": "0", - "redemptionFee": "25275500494772310781", + "type": "mint", + "inputIndex": 2, + "inputQty": "181359919704717379239936", + "outputQty0": "180543846849700115825964", + "outputQty": "177242790530373711821677", "mpReserves": [ - "59458681198142117137409447", - "24828445285900035269254537", - "23994095079357974107074912" + "54517755252125302157081854", + "9088123999032845231874096", + "37324086559263792884079457" ], "fpReserves": [ - "9164946622814036102615557", - "5427796946428594912002907" + "1538432348006201838658194", + "1993421946612282031661226" ], - "mAssetSupply": "108242009832869446206674279", - "LPTokenSupply": "14465348684509168245030274" + "mAssetSupply": "100638835378796849860464476", + "LPTokenSupply": "3462931277177730582003960" }, { "type": "swap_fp_to_mp", - "inputQty": "31379368573776382918656", - "outputIndex": 0, - "outputQty": "31553381316971656620527", + "inputQty": "139505664418226388992", + "outputIndex": 1, + "outputQty": "133559558197337733141", "swapFee": "0", - "redemptionFee": "12600022708158815033", + "redemptionFee": "83555838992326389", "mpReserves": [ - "59427127816825145480788920", - "24828445285900035269254537", - "23994095079357974107074912" + "54517755252125302157081854", + "9087990439474647894140955", + "37324086559263792884079457" ], "fpReserves": [ - "9133446566043639065031790", - "5459176315002371294921563" + "1538293088274547961341771", + "1993561452276700258050218" ], - "mAssetSupply": "108210522376121757327905545", - "LPTokenSupply": "14465348684509168245030274" + "mAssetSupply": "100638696202621034975474442", + "LPTokenSupply": "3462931277177730582003960" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "102232627236097631453184", - "outputQty0": "102398311776492404238929", - "outputQty": "101914769790377970433644", - "swapFee": "81087231323045270629", + "inputQty": "923062377674118135808", + "outputQty0": "961876838317749725463", + "outputQty": "962801375718282647586", + "swapFee": "755235639140852334", "mpReserves": [ - "59427127816825145480788920", - "24930677913136132900707721", - "23994095079357974107074912" + "54517755252125302157081854", + "9088913501852322012276763", + "37324086559263792884079457" ], "fpReserves": [ - "9235844877820131469270719", - "5357261545211993324487919" + "1539254965112865711067234", + "1992598650900981975402632" ], - "mAssetSupply": "108312920687898249732144474", - "LPTokenSupply": "14465356793232300549557336" + "mAssetSupply": "100639658079459352725199905", + "LPTokenSupply": "3462931352701294496089193" }, { - "type": "swap_fp_to_mp", - "inputQty": "18452052366284632064", - "outputIndex": 1, - "outputQty": "18490129081260782200", - "swapFee": "0", - "redemptionFee": "7410925710207457", + "type": "mint", + "inputIndex": 2, + "inputQty": "10003524593156664328192", + "outputQty0": "9958254266225489961408", + "outputQty": "9773476836683993337307", "mpReserves": [ - "59427127816825145480788920", - "24930659423007051639925521", - "23994095079357974107074912" + "54517755252125302157081854", + "9088913501852322012276763", + "37334090083856949548407649" ], "fpReserves": [ - "9235826350505855950625855", - "5357279997264359609119983" + "1549213219379091201028642", + "1992598650900981975402632" ], - "mAssetSupply": "108312902167994899923707067", - "LPTokenSupply": "14465356793232300549557336" + "mAssetSupply": "100649616333725578215161313", + "LPTokenSupply": "3472704829537978489426500" }, { "type": "swap_fp_to_mp", - "inputQty": "468556402282634870784", + "inputQty": "128438062905321943203840", "outputIndex": 0, - "outputQty": "471260139588573044209", + "outputQty": "129265381831798263021957", "swapFee": "0", - "redemptionFee": "188186891453617195", + "redemptionFee": "76888948997690720965", "mpReserves": [ - "59426656556685556907744711", - "24930659423007051639925521", - "23994095079357974107074912" + "54388489870293503894059897", + "9088913501852322012276763", + "37334090083856949548407649" ], "fpReserves": [ - "9235355883277221907636801", - "5357748553666642243990767" + "1421064971049606666086739", + "2121036713806303918606472" ], - "mAssetSupply": "108312431888953157334335208", - "LPTokenSupply": "14465356793232300549557336" + "mAssetSupply": "100521544974345091370940375", + "LPTokenSupply": "3472704829537978489426500" }, { "type": "swap_fp_to_mp", - "inputQty": "12303228674490766", - "outputIndex": 2, - "outputQty": "12325546120448969", + "inputQty": "59285076642095", + "outputIndex": 0, + "outputQty": "59631891797835", "swapFee": "0", - "redemptionFee": "4941357890594", + "redemptionFee": "35470432094", "mpReserves": [ - "59426656556685556907744711", - "24930659423007051639925521", - "23994095067032427986625943" + "54388489870233872002262062", + "9088913501852322012276763", + "37334090083856949548407649" ], "fpReserves": [ - "9235355870923827181151520", - "5357748565969870918481533" + "1421064970990489279262060", + "2121036713865588995248567" ], - "mAssetSupply": "108312431876604703965740521", - "LPTokenSupply": "14465356793232300549557336" + "mAssetSupply": "100521544974286009454547790", + "LPTokenSupply": "3472704829537978489426500" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "127589648050307940352", - "outputQty0": "127826773867390735417", - "outputQty": "126518379127945086927", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "46337754694777581862912", + "outputQty0": "48270420093660105103790", + "outputQty": "48357853355665537048202", + "swapFee": "37920995375814376644", "mpReserves": [ - "59426656556685556907744711", - "24930659423007051639925521", - "23994222656680478294566295" + "54388489870233872002262062", + "9135251256547099594139675", + "37334090083856949548407649" ], "fpReserves": [ - "9235483697697694571886937", - "5357748565969870918481533" + "1469335391084149384365850", + "2072678860509923458200365" ], - "mAssetSupply": "108312559703378571356475938", - "LPTokenSupply": "14465483311611428494644263" + "mAssetSupply": "100569815394379669559651580", + "LPTokenSupply": "3472708621637516070864164" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "5621159949924591206400", - "outputQty0": "5675878008692669117319", - "outputQty": "5664483132971930944711", - "swapFee1": "3372695969954754723", - "swapFee2": "2270351203477067646", + "outputIndex": 2, + "inputQty": "17691298952707930112", + "outputQty0": "18008331294796811024", + "outputQty": "18078923386792106582", + "swapFee1": "10614779371624758", + "swapFee2": "10804998776878086", "mpReserves": [ - "59426656556685556907744711", - "24924994939874079708980810", - "23994222656680478294566295" + "54388489870233872002262062", + "9135251256547099594139675", + "37334072004933562756301067" ], "fpReserves": [ - "9229807819689001902769618", - "5357748565969870918481533" + "1469317382752854587554826", + "2072678860509923458200365" ], - "mAssetSupply": "108306886095721082164426265", - "LPTokenSupply": "14459862488931100898913335" + "mAssetSupply": "100569797396853373539718642", + "LPTokenSupply": "3472690931400041300096527" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "142831793095247249408", - "outputQty0": "143061950818560414672", - "outputQty": "142367768100324718277", - "swapFee": "113278298721951779", - "mpReserves": [ - "59426656556685556907744711", - "24925137771667174956230218", - "23994222656680478294566295" - ], - "fpReserves": [ - "9229950881639820463184290", - "5357606198201770593763256" - ], - "mAssetSupply": "108307029157671900724840937", - "LPTokenSupply": "14459862500258930771108512" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1640197059373472768", - "outputQty0": "1636781854126104101", - "outputQty": "1620031039952142661", + "inputQty": "26098704821012100284416", + "outputQty0": "27178705440154591041121", + "outputQty": "27218746151040375520222", + "swapFee": "21346500803197384039", "mpReserves": [ - "59426658196882616281217479", - "24925137771667174956230218", - "23994222656680478294566295" + "54388489870233872002262062", + "9161349961368111694424091", + "37334072004933562756301067" ], "fpReserves": [ - "9229952518421674589288391", - "5357606198201770593763256" + "1496496088193009178595947", + "2045460114358883082680143" ], - "mAssetSupply": "108307030794453754850945038", - "LPTokenSupply": "14459864120289970723251173" + "mAssetSupply": "100596976102293528130759763", + "LPTokenSupply": "3472693066050121619834930" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "3805706056250073546752", - "outputQty0": "3842746577990889544177", - "outputQty": "3849223897933022760046", - "swapFee1": "2283423633750044128", - "swapFee2": "1537098631196355817", + "type": "swap_fp_to_mp", + "inputQty": "87001873099452187672576", + "outputIndex": 1, + "outputQty": "83262049950972152501547", + "swapFee": "0", + "redemptionFee": "52068670297228735595", "mpReserves": [ - "59422808972984683258457433", - "24925137771667174956230218", - "23994222656680478294566295" + "54388489870233872002262062", + "9078087911417139541922544", + "37334072004933562756301067" ], "fpReserves": [ - "9226109771843683699744214", - "5357606198201770593763256" + "1409714971030961285936530", + "2132461987458335270352719" ], - "mAssetSupply": "108303189584974395157756678", - "LPTokenSupply": "14456058642576084024708833" + "mAssetSupply": "100510247053801777466835941", + "LPTokenSupply": "3472693066050121619834930" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "340996213717288081162240", - "outputQty0": "341533966990281538407143", - "outputQty": "339712201500514691597762", - "swapFee": "270414365253482700803", + "inputQty": "11506961806279596572672", + "outputQty0": "11989855153123192566037", + "outputQty": "12014856277855103635893", + "swapFee": "9420185090424405352", "mpReserves": [ - "59422808972984683258457433", - "25266133985384463037392458", - "23994222656680478294566295" + "54388489870233872002262062", + "9089594873223419138495216", + "37334072004933562756301067" ], "fpReserves": [ - "9567643738833965238151357", - "5017893996701255902165494" + "1421704826184084478502567", + "2120447131180480166716826" ], - "mAssetSupply": "108644723551964676696163821", - "LPTokenSupply": "14456085684012609372978913" + "mAssetSupply": "100522236908954900659401978", + "LPTokenSupply": "3472694008068630662275465" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "160576462830764359680", - "outputQty0": "160877641413459960260", - "outputQty": "159171948249684445206", + "type": "swap_fp_to_mp", + "inputQty": "273556022334957944832", + "outputIndex": 2, + "outputQty": "273861788303750000390", + "swapFee": "0", + "redemptionFee": "163670098841161852", "mpReserves": [ - "59422808972984683258457433", - "25266133985384463037392458", - "23994383233143309058925975" + "54388489870233872002262062", + "9089594873223419138495216", + "37333798143145259006300677" ], "fpReserves": [ - "9567804616475378698111617", - "5017893996701255902165494" + "1421432042686015875414278", + "2120720687202815124661658" ], - "mAssetSupply": "108644884429606090156124081", - "LPTokenSupply": "14456244855960859057424119" + "mAssetSupply": "100521964289126930897475541", + "LPTokenSupply": "3472694008068630662275465" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "664098440962759861469184", - "outputQty0": "670726619212885910285881", - "outputQty": "669380452837429176176668", - "swapFee1": "398459064577655916881", - "swapFee2": "268290647685154364114", + "outputIndex": 2, + "inputQty": "792462978770428753870848", + "outputQty0": "804291595216512307407559", + "outputQty": "807380572113787617658724", + "swapFee1": "475477787262257252322", + "swapFee2": "482574957129907384444", "mpReserves": [ - "59422808972984683258457433", - "24596753532547033861215790", - "23994383233143309058925975" + "54388489870233872002262062", + "9089594873223419138495216", + "36526417571031471388641953" ], "fpReserves": [ - "8897077997262492787825736", - "5017893996701255902165494" + "617140447469503568006719", + "2120720687202815124661658" ], - "mAssetSupply": "107974426101040889400202314", - "LPTokenSupply": "13792186260904556961546623" + "mAssetSupply": "99718155268867548497452426", + "LPTokenSupply": "2680278577076928134129849" }, { "type": "swap_fp_to_mp", - "inputQty": "17041036254914981888", + "inputQty": "576753441998074783203328", "outputIndex": 2, - "outputQty": "17076782435965369642", - "swapFee": "0", - "redemptionFee": "6846025523101026", - "mpReserves": [ - "59422808972984683258457433", - "24596753532547033861215790", - "23994366156360873093556333" - ], - "fpReserves": [ - "8897060882198685035260058", - "5017911037737510817147382" - ], - "mAssetSupply": "107974408992823107170737662", - "LPTokenSupply": "13792186260904556961546623" + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "410981949952219510996992", - "outputIndex": 1, - "outputQty": "411654294346776910235782", - "swapFee": "0", - "redemptionFee": "165011372742906324601", + "type": "mint", + "inputIndex": 1, + "inputQty": "1286695635461903052963840", + "outputQty0": "1333328045685982802241923", + "outputQty": "1310953435827944169624700", "mpReserves": [ - "59422808972984683258457433", - "24185099238200256950980008", - "23994366156360873093556333" + "54388489870233872002262062", + "10376290508685322191459056", + "36526417571031471388641953" ], "fpReserves": [ - "8484532450341419223756646", - "5428892987689730328144374" + "1950468493155486370248642", + "2120720687202815124661658" ], - "mAssetSupply": "107562045572338584265558851", - "LPTokenSupply": "13792186260904556961546623" + "mAssetSupply": "101051483314553531299694349", + "LPTokenSupply": "3991232012904872303754549" }, { "type": "mint", "inputIndex": 0, - "inputQty": "17249315734389340160", - "outputQty0": "17212560285611213988", - "outputQty": "17041205023720776781", + "inputQty": "45327445294023253688320", + "outputQty0": "44959672867646483443587", + "outputQty": "44087692157366846590010", "mpReserves": [ - "59422826222300417647797593", - "24185099238200256950980008", - "23994366156360873093556333" + "54433817315527895255950382", + "10376290508685322191459056", + "36526417571031471388641953" ], "fpReserves": [ - "8484549662901704834970634", - "5428892987689730328144374" + "1995428166023132853692229", + "2120720687202815124661658" ], - "mAssetSupply": "107562062784898869876772839", - "LPTokenSupply": "13792203302109580682323404" + "mAssetSupply": "101096442987421177783137936", + "LPTokenSupply": "4035319705062239150344559" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "10015479851733183627264", - "outputQty0": "10110099650334091461916", - "outputQty": "10127633076911970745253", - "swapFee1": "6009287911039910176", - "swapFee2": "4044039860133636584", + "type": "mint", + "inputIndex": 1, + "inputQty": "38763738456950513664", + "outputQty0": "39996496899438137179", + "outputQty": "39219241093919156272", "mpReserves": [ - "59412698589223505677052340", - "24185099238200256950980008", - "23994366156360873093556333" + "54433817315527895255950382", + "10376329272423779141972720", + "36526417571031471388641953" ], "fpReserves": [ - "8474439563251370743508718", - "5428892987689730328144374" + "1995468162520032291829408", + "2120720687202815124661658" ], - "mAssetSupply": "107551956729288395918947507", - "LPTokenSupply": "13782188423186638602687157" + "mAssetSupply": "101096482983918077221275115", + "LPTokenSupply": "4035358924303333069500831" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "2355871783711959154688", - "outputQty0": "2350852981972669469730", - "outputQty": "2341464270488817554603", - "swapFee": "1861965395990971279", + "inputQty": "620477676945648904044544", + "outputQty0": "615402282590856349107959", + "outputQty": "613867206673874417598579", + "swapFee": "482532168430595880842", "mpReserves": [ - "59415054461007217636207028", - "24185099238200256950980008", - "23994366156360873093556333" + "55054294992473544159994926", + "10376329272423779141972720", + "36526417571031471388641953" ], "fpReserves": [ - "8476790416233343412978448", - "5426551523419241510589771" + "2610870445110888640937367", + "1506853480528940707063079" ], - "mAssetSupply": "107554307582270368588417237", - "LPTokenSupply": "13782188609383178201784284" + "mAssetSupply": "101711885266508933570383074", + "LPTokenSupply": "4035407177520176129088915" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "86883879148142544814080", - "outputQty0": "87036540320717681369538", - "outputQty": "86679088352154362160971", - "swapFee": "68934976830549658625", + "type": "redeem", + "outputIndex": 2, + "inputQty": "709447094308842110976", + "outputQty0": "724576419880648957657", + "outputQty": "726659820246411531236", + "swapFee1": "425668256585305266", + "swapFee2": "434745851928389374", "mpReserves": [ - "59415054461007217636207028", - "24271983117348399495794088", - "23994366156360873093556333" + "55054294992473544159994926", + "10376329272423779141972720", + "36525690911211224977110717" ], "fpReserves": [ - "8563826956554061094347986", - "5339872435067087148428800" + "2610145868691007991979710", + "1506853480528940707063079" ], - "mAssetSupply": "107641344122591086269786775", - "LPTokenSupply": "13782195502880861256750146" + "mAssetSupply": "101711161124834904849814791", + "LPTokenSupply": "4034697772992692945508465" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "585450674851742875648", - "outputQty0": "584206872086808639123", - "outputQty": "581742083534642652372", - "swapFee": "462671175820465909", + "type": "mint", + "inputIndex": 1, + "inputQty": "93157905709828636672", + "outputQty0": "96166842341589855546", + "outputQty": "94102390570848066734", "mpReserves": [ - "59415639911682069379082676", - "24271983117348399495794088", - "23994366156360873093556333" + "55054294992473544159994926", + "10376422430329488970609392", + "36525690911211224977110717" ], "fpReserves": [ - "8564411163426147902987109", - "5339290692983552505776428" + "2610242035533349581835256", + "1506853480528940707063079" ], - "mAssetSupply": "107641928329463173078425898", - "LPTokenSupply": "13782195549147978838796736" + "mAssetSupply": "101711257291677246439670337", + "LPTokenSupply": "4034791875383263793575199" }, { "type": "swap_fp_to_mp", - "inputQty": "413815651493799029374976", - "outputIndex": 2, - "outputQty": "414082897287926770580518", + "inputQty": "66630348928301687373824", + "outputIndex": 1, + "outputQty": "64739754206342919163122", "swapFee": "0", - "redemptionFee": "166009380840170245382", + "redemptionFee": "40130409893900053391", "mpReserves": [ - "59415639911682069379082676", - "24271983117348399495794088", - "23580283259072946322975815" + "55054294992473544159994926", + "10311682676123146051446270", + "36525690911211224977110717" ], "fpReserves": [ - "8149387711325722289531694", - "5753106344477351535151404" + "2543358019043516159515981", + "1573483829457242394436903" ], - "mAssetSupply": "107227070886743587635215865", - "LPTokenSupply": "13782195549147978838796736" + "mAssetSupply": "101644413405597306917404453", + "LPTokenSupply": "4034791875383263793575199" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "51790208075795196280832", - "outputQty0": "51879305327936981578479", - "outputQty": "51709263916299108242450", - "swapFee": "41102625692267436612", + "inputIndex": 2, + "inputQty": "13245452726747743125504", + "outputQty0": "13199058769257563583155", + "outputQty": "13141721258232236314624", + "swapFee": "10334881954351871285", "mpReserves": [ - "59415639911682069379082676", - "24323773325424194692074920", - "23580283259072946322975815" + "55054294992473544159994926", + "10311682676123146051446270", + "36538936363937972720236221" ], "fpReserves": [ - "8201267016653659271110173", - "5701397080561052426908954" + "2556557077812773723099136", + "1560342108199010158122279" ], - "mAssetSupply": "107278950192071524616794344", - "LPTokenSupply": "13782199659410548065540397" + "mAssetSupply": "101657612464366564480987608", + "LPTokenSupply": "4034792908871459228762327" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8932696001909814722560", - "outputQty0": "8948004748708324044530", - "outputQty": "8861207049951901658676", + "type": "swap_fp_to_mp", + "inputQty": "249956514926680096", + "outputIndex": 2, + "outputQty": "251592232821699665", + "swapFee": "0", + "redemptionFee": "150516645898970", "mpReserves": [ - "59415639911682069379082676", - "24332706021426104506797480", - "23580283259072946322975815" + "55054294992473544159994926", + "10311682676123146051446270", + "36538936112345739898536556" ], "fpReserves": [ - "8210215021402367595154703", - "5701397080561052426908954" + "2556556826951697224815314", + "1560342358155525084802375" ], - "mAssetSupply": "107287898196820232940838874", - "LPTokenSupply": "13791060866460499967199073" + "mAssetSupply": "101657612213656004628602756", + "LPTokenSupply": "4034792908871459228762327" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "19594337760067571712", - "outputQty0": "19627899387371864302", - "outputQty": "19437470470736229582", + "type": "swap_fp_to_mp", + "inputQty": "41013383862067816", + "outputIndex": 1, + "outputQty": "39834044472030265", + "swapFee": "0", + "redemptionFee": "24697083689002", "mpReserves": [ - "59415639911682069379082676", - "24332725615763864574369192", - "23580283259072946322975815" + "55054294992473544159994926", + "10311682636289101579416005", + "36538936112345739898536556" ], "fpReserves": [ - "8210234649301754967019005", - "5701397080561052426908954" + "2556556785789891076478183", + "1560342399168908946870191" ], - "mAssetSupply": "107287917824719620312703176", - "LPTokenSupply": "13791080303930970703428655" + "mAssetSupply": "101657612172518895563954627", + "LPTokenSupply": "4034792908871459228762327" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "5154572432610239184896", - "outputQty0": "5164474093211842662716", - "outputQty": "5147167350781989889758", - "swapFee": "4091490785260454405", + "type": "mint", + "inputIndex": 0, + "inputQty": "6732879959275064000512", + "outputQty0": "6677038496660014661917", + "outputQty": "6534881950181577181381", "mpReserves": [ - "59415639911682069379082676", - "24332725615763864574369192", - "23585437831505556562160711" + "55061027872432819223995438", + "10311682636289101579416005", + "36538936112345739898536556" ], "fpReserves": [ - "8215399123394966809681721", - "5696249913210270437019196" + "2563233824286551091140100", + "1560342399168908946870191" ], - "mAssetSupply": "107293082298812832155365892", - "LPTokenSupply": "13791080713080049229474095" + "mAssetSupply": "101664289211015555578616544", + "LPTokenSupply": "4041327790821640805943708" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "221597822801942315008", - "outputQty0": "223635696958394296034", - "outputQty": "223117774378215527575", - "swapFee1": "132958693681165389", - "swapFee2": "89454278783357718", + "type": "swap_fp_to_mp", + "inputQty": "53633783384037", + "outputIndex": 1, + "outputQty": "52092458595003", + "swapFee": "0", + "redemptionFee": "32297465282", "mpReserves": [ - "59415639911682069379082676", - "24332725615763864574369192", - "23585214713731178346633136" + "55061027872432819223995438", + "10311682636237009120821002", + "36538936112345739898536556" ], "fpReserves": [ - "8215175487698008415385687", - "5696249913210270437019196" + "2563233824232721982335487", + "1560342399222542730254228" ], - "mAssetSupply": "107292858752570152544427576", - "LPTokenSupply": "13790859128553116655275625" + "mAssetSupply": "101664289210961758767277213", + "LPTokenSupply": "4041327790821640805943708" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "1937727558247798528", - "outputQty0": "1955547362081937454", - "outputQty": "1958975445754497485", - "swapFee1": "1162636534948679", - "swapFee2": "782218944832774", + "inputQty": "119178532629493040", + "outputQty0": "121698548293005906", + "outputQty": "122642792018519263", + "swapFee1": "71507119577695", + "swapFee2": "73019128975803", + "mpReserves": [ + "55061027749790027205476175", + "10311682636237009120821002", + "36538936112345739898536556" + ], + "fpReserves": [ + "2563233702534173689329581", + "1560342399222542730254228" + ], + "mAssetSupply": "101664289089336229603247110", + "LPTokenSupply": "4041327671650258888408437" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "6638006156177707008", + "outputQty0": "6614747253846969409", + "outputQty": "6473888781911450543", "mpReserves": [ - "59415637952706623624585191", - "24332725615763864574369192", - "23585214713731178346633136" + "55061027749790027205476175", + "10311682636237009120821002", + "36538942750351896076243564" ], "fpReserves": [ - "8215173532150646333448233", - "5696249913210270437019196" + "2563240317281427536298990", + "1560342399222542730254228" ], - "mAssetSupply": "107292856797805009407322896", - "LPTokenSupply": "13790857190941822060971964" + "mAssetSupply": "101664295704083483450216519", + "LPTokenSupply": "4041334145539040799858980" }, { "type": "swap_fp_to_mp", - "inputQty": "5084137253543225589760", + "inputQty": "4776023360597482536960", "outputIndex": 0, - "outputQty": "5106084963380416160205", + "outputQty": "4830501740762424206475", "swapFee": "0", - "redemptionFee": "2038860147061423327", + "redemptionFee": "2875988027933433791", "mpReserves": [ - "59410531867743243208424986", - "24332725615763864574369192", - "23585214713731178346633136" + "55056197248049264781269700", + "10311682636237009120821002", + "36538942750351896076243564" ], "fpReserves": [ - "8210076381782992775130251", - "5701334050463813662608956" + "2558447003901538479979507", + "1565118422583140212791188" ], - "mAssetSupply": "107287761686297502910428241", - "LPTokenSupply": "13790857190941822060971964" + "mAssetSupply": "101659505266691622327330827", + "LPTokenSupply": "4041334145539040799858980" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "12919488247107260", - "outputQty0": "13038236153304870", - "outputQty": "13010736914247759", - "swapFee1": "7751692948264", - "swapFee2": "5215294461321", + "inputQty": "8902654032415726592", + "outputQty0": "9090750530399996297", + "outputQty": "8797495500883546063", + "swapFee1": "5341592419449435", + "swapFee2": "5454450318239997", "mpReserves": [ - "59410531867743243208424986", - "24332725602753127660121433", - "23585214713731178346633136" + "55056197248049264781269700", + "10311673838741508237274939", + "36538942750351896076243564" ], "fpReserves": [ - "8210076368744756621825381", - "5701334050463813662608956" + "2558437913151008079983210", + "1565118422583140212791188" ], - "mAssetSupply": "107287761673264482051584692", - "LPTokenSupply": "13790857178023108983159530" + "mAssetSupply": "101659496181395542245574527", + "LPTokenSupply": "4041325243419167626077331" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "15812131271193057558528", - "outputQty0": "15957417180510860797320", - "outputQty": "15985378842404523971561", - "swapFee1": "9487278762715834535", - "swapFee2": "6382966872204344318", + "inputQty": "2274232519998886641664", + "outputQty0": "2322279302462654459617", + "outputQty": "2340294759869255229716", + "swapFee1": "1364539511999331984", + "swapFee2": "1393367581477592675", "mpReserves": [ - "59394546488900838684453425", - "24332725602753127660121433", - "23585214713731178346633136" + "55053856953289395526039984", + "10311673838741508237274939", + "36538942750351896076243564" ], "fpReserves": [ - "8194118951564245761028061", - "5701334050463813662608956" + "2556115633848545425523593", + "1565118422583140212791188" ], - "mAssetSupply": "107271810639050843395131690", - "LPTokenSupply": "13775045995479792197184455" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "59976881116343152148480", - "outputQty0": "60091548878254803300686", - "outputQty": "59887277158999161642843", - "swapFee": "47606533781666723686", - "mpReserves": [ - "59394546488900838684453425", - "24332725602753127660121433", - "23645191594847521498781616" - ], - "fpReserves": [ - "8254210500442500564328747", - "5641446773304814500966113" - ], - "mAssetSupply": "107331902187929098198432376", - "LPTokenSupply": "13775050756133170363856823" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "679301650409460523335680", - "outputQty0": "680417996130796079203975", - "outputQty": "673692639548939542308560", - "mpReserves": [ - "59394546488900838684453425", - "25012027253162588183457113", - "23645191594847521498781616" - ], - "fpReserves": [ - "8934628496573296643532722", - "5641446773304814500966113" - ], - "mAssetSupply": "108012320184059894277636351", - "LPTokenSupply": "14448743395682109906165383" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "119962901616620170379264", - "outputIndex": 2, - "outputQty": "120061609578232540466802", - "swapFee": "0", - "redemptionFee": "48137762961015892487", - "mpReserves": [ - "59394546488900838684453425", - "25012027253162588183457113", - "23525129985269288958314814" - ], - "fpReserves": [ - "8814284089170756912313425", - "5761409674921434671345377" - ], - "mAssetSupply": "107892023914420315562309541", - "LPTokenSupply": "14448743395682109906165383" + "mAssetSupply": "101657175295460661068707585", + "LPTokenSupply": "4039051147353119939368865" }, { "type": "swap_fp_to_mp", - "inputQty": "1008018748465545216000", - "outputIndex": 0, - "outputQty": "1012809141244009028047", + "inputQty": "427650338435448633819136", + "outputIndex": 1, + "outputQty": "414104614864308335759326", "swapFee": "0", - "redemptionFee": "404431496264499030", - "mpReserves": [ - "59393533679759594675425378", - "25012027253162588183457113", - "23525129985269288958314814" - ], - "fpReserves": [ - "8813273010430095664737812", - "5762417693669900216561377" - ], - "mAssetSupply": "107891013240111150579232958", - "LPTokenSupply": "14448743395682109906165383" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "4266284036979751911424", - "outputQty0": "4257291041415169419982", - "outputQty": "4215152028557214522832", + "redemptionFee": "257083710252686564986", "mpReserves": [ - "59397799963796574427336802", - "25012027253162588183457113", - "23525129985269288958314814" + "55053856953289395526039984", + "9897569223877199901515613", + "36538942750351896076243564" ], "fpReserves": [ - "8817530301471510834157794", - "5762417693669900216561377" + "2127642783427401150546054", + "1992768761018588846610324" ], - "mAssetSupply": "107895270531152565748652940", - "LPTokenSupply": "14452958547710667120688215" + "mAssetSupply": "101228959528749769480295032", + "LPTokenSupply": "4039051147353119939368865" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "76288911471833054707712", - "outputQty0": "76407918411547287579471", - "outputQty": "76108651235103618923329", - "swapFee": "60520406120729503001", + "inputIndex": 0, + "inputQty": "159277279771294238244864", + "outputQty0": "157897613448694171991270", + "outputQty": "157621006667075771606502", + "swapFee": "123783500320511052733", "mpReserves": [ - "59397799963796574427336802", - "25088316164634421238164825", - "23525129985269288958314814" + "55213134233060689764284848", + "9897569223877199901515613", + "36538942750351896076243564" ], "fpReserves": [ - "8893938219883058121737265", - "5686309042434796597638048" + "2285540396876095322537324", + "1835147754351513075003822" ], - "mAssetSupply": "107971678449564113036232411", - "LPTokenSupply": "14452964599751279193638515" + "mAssetSupply": "101386857142198463652286302", + "LPTokenSupply": "4039063525703151990474138" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "244571736812721608327168", - "outputQty0": "246875989480529316438673", - "outputQty": "246388671620798442378986", - "swapFee1": "146743042087632964996", - "swapFee2": "98750395792211726575", + "inputQty": "166488015154452288", + "outputQty0": "169862792550963115", + "outputQty": "163919161269865268", + "swapFee1": "99892809092671", + "swapFee2": "101917675530577", "mpReserves": [ - "59397799963796574427336802", - "24841927493013622795785839", - "23525129985269288958314814" + "55213134233060689764284848", + "9897569059958038631650345", + "36538942750351896076243564" ], "fpReserves": [ - "8647062230402528805298592", - "5686309042434796597638048" + "2285540227013302771574209", + "1835147754351513075003822" ], - "mAssetSupply": "107724901210479375931520313", - "LPTokenSupply": "14208407537242766348607846" + "mAssetSupply": "101386856972437588776853764", + "LPTokenSupply": "4039063359225126116931117" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1475892609763306410868736", - "outputQty0": "1478541280235268249350991", - "outputQty": "1463524446035959007246142", + "inputQty": "103006876266543406120960", + "outputQty0": "102621062362593599422299", + "outputQty": "102349987776973922464632", + "swapFee": "80411929746166402790", "mpReserves": [ - "59397799963796574427336802", - "24841927493013622795785839", - "25001022595032595369183550" + "55213134233060689764284848", + "9897569059958038631650345", + "36641949626618439482364524" ], "fpReserves": [ - "10125603510637797054649583", - "5686309042434796597638048" + "2388161289375896370996508", + "1732797766574539152539190" ], - "mAssetSupply": "109203442490714644180871304", - "LPTokenSupply": "15671931983278725355853988" + "mAssetSupply": "101489478034800182376276063", + "LPTokenSupply": "4039071400418100733571396" }, { "type": "swap_fp_to_mp", - "inputQty": "11523519473630612291584", - "outputIndex": 0, - "outputQty": "11592657322892693029115", + "inputQty": "1449441966669698695168", + "outputIndex": 1, + "outputQty": "1401730132946425377207", "swapFee": "0", - "redemptionFee": "4629551679340369127", + "redemptionFee": "871589911654608828", "mpReserves": [ - "59386207306473681734307687", - "24841927493013622795785839", - "25001022595032595369183550" + "55213134233060689764284848", + "9896167329825092206273138", + "36641949626618439482364524" ], "fpReserves": [ - "10114029631439446131831638", - "5697832561908427209929632" + "2386708639523138689615807", + "1734247208541208851234358" ], - "mAssetSupply": "109191873241067972598422486", - "LPTokenSupply": "15671931983278725355853988" + "mAssetSupply": "101488026256537336349504190", + "LPTokenSupply": "4039071400418100733571396" }, { "type": "swap_fp_to_mp", - "inputQty": "563094939888425", + "inputQty": "354993613162119954432", "outputIndex": 0, - "outputQty": "566464571305693", + "outputQty": "358673973002706797755", "swapFee": "0", - "redemptionFee": "226218868354", + "redemptionFee": "213466131750067110", "mpReserves": [ - "59386207305907217163001994", - "24841927493013622795785839", - "25001022595032595369183550" + "55212775559087687057487093", + "9896167329825092206273138", + "36641949626618439482364524" ], "fpReserves": [ - "10114029630873898960944379", - "5697832562471522149818057" + "2386352862636888577764430", + "1734602202154370971188790" ], - "mAssetSupply": "109191873240502651646403581", - "LPTokenSupply": "15671931983278725355853988" + "mAssetSupply": "101487670693117217987719923", + "LPTokenSupply": "4039071400418100733571396" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "616063557866604331008", - "outputQty0": "622166045341393884987", - "outputQty": "620875515470778594576", - "swapFee1": "369638134719962598", - "swapFee2": "248866418136557553", + "type": "mint", + "inputIndex": 1, + "inputQty": "941510163647093366849536", + "outputQty0": "972218559513484520334245", + "outputQty": "951455069584173430598618", "mpReserves": [ - "59386207305907217163001994", - "24841306617498152017191263", - "25001022595032595369183550" + "55212775559087687057487093", + "10837677493472185573122674", + "36641949626618439482364524" ], "fpReserves": [ - "10113407464828557567059392", - "5697832562471522149818057" + "3358571422150373098098675", + "1734602202154370971188790" ], - "mAssetSupply": "109191251323323728389076147", - "LPTokenSupply": "15671315956684672223519239" + "mAssetSupply": "102459889252630702508054168", + "LPTokenSupply": "4990526470002274164170014" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "247801265860676654465024", - "outputQty0": "247299336899438399088624", - "outputQty": "245947809889301177506529", - "swapFee": "195773194765719730343", - "mpReserves": [ - "59634008571767893817467018", - "24841306617498152017191263", - "25001022595032595369183550" - ], - "fpReserves": [ - "10360706801727995966148016", - "5451884752582220972311528" - ], - "mAssetSupply": "109438550660223166788164771", - "LPTokenSupply": "15671335534004148795492273" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "519313631886237", - "outputQty0": "524589962501405", - "outputQty": "525447916011415", - "swapFee1": "311588179131", - "swapFee2": "209835985000", + "inputQty": "56020959298140438528", + "outputQty0": "55578007337558180836", + "outputQty": "54360942711026151316", "mpReserves": [ - "59634008571242445901455603", - "24841306617498152017191263", - "25001022595032595369183550" + "55212831580046985197925621", + "10837677493472185573122674", + "36641949626618439482364524" ], "fpReserves": [ - "10360706801203406003646611", - "5451884752582220972311528" + "3358627000157710656279511", + "1734602202154370971188790" ], - "mAssetSupply": "109438550659698786661648366", - "LPTokenSupply": "15671335533484866322423949" + "mAssetSupply": "102459944830638040066235004", + "LPTokenSupply": "4990580830944985190321330" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "643392954990688993280", - "outputQty0": "644456381969189911769", - "outputQty": "640711682363290137669", - "swapFee": "510073262226318677", + "inputQty": "583795042150889742663680", + "outputQty0": "581859714221974695048376", + "outputQty": "576165877442628158011952", + "swapFee": "455153402023497430173", "mpReserves": [ - "59634008571242445901455603", - "24841306617498152017191263", - "25001665987987586058176830" + "55212831580046985197925621", + "10837677493472185573122674", + "37225744668769329225028204" ], "fpReserves": [ - "10361351257585375193558380", - "5451244040899857682173859" + "3940486714379685351327887", + "1158436324711742813176838" ], - "mAssetSupply": "109439195116080755851560135", - "LPTokenSupply": "15671335584492192545055816" + "mAssetSupply": "103041804544860014761283380", + "LPTokenSupply": "4990626346285187540064347" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "78572875108820566016", - "outputQty0": "78705956230714168809", - "outputQty": "78248542688928830674", - "swapFee": "62294022949763859", + "inputIndex": 2, + "inputQty": "53003984629891283812352", + "outputQty0": "52824036431539292183448", + "outputQty": "51980721471298893250934", + "swapFee": "41222988099537860311", "mpReserves": [ - "59634008571242445901455603", - "24841385190373260837757279", - "25001665987987586058176830" + "55212831580046985197925621", + "10837677493472185573122674", + "37278748653399220508840556" ], "fpReserves": [ - "10361429963541605907727189", - "5451165792357168753343185" + "3993310750811224643511335", + "1106455603240443919925904" ], - "mAssetSupply": "109439273822036986565728944", - "LPTokenSupply": "15671335590721594840032201" + "mAssetSupply": "103094628581291554053466828", + "LPTokenSupply": "4990630468583997493850378" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "425099435797715674464256", - "outputQty0": "429386649036340540988195", - "outputQty": "428487828216987556520585", - "swapFee1": "255059661478629404678", - "swapFee2": "171754659614536216395", + "outputIndex": 0, + "inputQty": "320439634142995808256", + "outputQty0": "328401944983084192530", + "outputQty": "330806154538913824821", + "swapFee1": "192263780485797484", + "swapFee2": "197041166989850515", "mpReserves": [ - "59634008571242445901455603", - "24841385190373260837757279", - "24573178159770598501656245" + "55212500773892446284100800", + "10837677493472185573122674", + "37278748653399220508840556" ], "fpReserves": [ - "9932043314505265366738994", - "5451165792357168753343185" + "3992982348866241559318805", + "1106455603240443919925904" ], - "mAssetSupply": "109010058927660260560957144", - "LPTokenSupply": "15246261660890027028508412" + "mAssetSupply": "103094300376387737959124813", + "LPTokenSupply": "4990310048176232546621870" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "82109601506776380866560", - "outputQty0": "82251885761977204263501", - "outputQty": "81799431416893673969474", - "swapFee": "65108412354117911710", + "type": "mint", + "inputIndex": 1, + "inputQty": "1237983508714885218304", + "outputQty0": "1275256474239291794671", + "outputQty": "1243589543947740370425", "mpReserves": [ - "59634008571242445901455603", - "24841385190373260837757279", - "24655287761277374882522805" + "55212500773892446284100800", + "10838915476980900458340978", + "37278748653399220508840556" ], "fpReserves": [ - "10014295200267242571002495", - "5369366360940275079373711" + "3994257605340480851113476", + "1106455603240443919925904" ], - "mAssetSupply": "109092310813422237765220645", - "LPTokenSupply": "15246268171731262440299583" + "mAssetSupply": "103095575632861977250919484", + "LPTokenSupply": "4991553637720180286992295" }, { - "type": "swap_fp_to_mp", - "inputQty": "470994830372518887424", + "type": "redeem", "outputIndex": 2, - "outputQty": "472272912386228250506", - "swapFee": "0", - "redemptionFee": "189310617413927523", + "inputQty": "8963304104108403720192", + "outputQty0": "9185976836636886037244", + "outputQty": "9211783768998096956831", + "swapFee1": "5377982462465042232", + "swapFee2": "5511586101982131622", "mpReserves": [ - "59634008571242445901455603", - "24841385190373260837757279", - "24654815488364988654272299" + "55212500773892446284100800", + "10838915476980900458340978", + "37269536869630222411883725" ], "fpReserves": [ - "10013821923723707752193724", - "5369837355770647598261135" + "3985071628503843965076232", + "1106455603240443919925904" ], - "mAssetSupply": "109091837726189320360339397", - "LPTokenSupply": "15246268171731262440299583" + "mAssetSupply": "103086395167611442347013862", + "LPTokenSupply": "4982590871414318129776326" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "756004931473970378571776", - "outputQty0": "757214653931073395360135", - "outputQty": "752029221331647982660590", - "swapFee": "599268367230443883684", + "inputIndex": 2, + "inputQty": "15124421205618853937152", + "outputQty0": "15072989584575467451472", + "outputQty": "14817882970061361279849", + "swapFee": "11758966568243461050", "mpReserves": [ - "59634008571242445901455603", - "25597390121847231216329055", - "24654815488364988654272299" + "55212500773892446284100800", + "10838915476980900458340978", + "37284661290835841265820877" ], "fpReserves": [ - "10771036577654781147553859", - "4617808134438999615600545" + "4000144618088419432527704", + "1091637720270382558646055" ], - "mAssetSupply": "109849052380120393755699532", - "LPTokenSupply": "15246328098567985484687951" + "mAssetSupply": "103101468157196017814465334", + "LPTokenSupply": "4982592047310974954122431" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "517983182255173926912", - "outputQty0": "516943463498234896439", - "outputQty": "512681002711590967116", - "swapFee": "408803972636971156", + "type": "swap_fp_to_mp", + "inputQty": "988487211569650176", + "outputIndex": 1, + "outputQty": "974986646109959833", + "swapFee": "0", + "redemptionFee": "602966363216230", "mpReserves": [ - "59634526554424701075382515", - "25597390121847231216329055", - "24654815488364988654272299" + "55212500773892446284100800", + "10838914501994254348381145", + "37284661290835841265820877" ], "fpReserves": [ - "10771553521118279382450298", - "4617295453436288024633429" + "4000143613144480738810235", + "1091638708757594128296231" ], - "mAssetSupply": "109849569323583891990595971", - "LPTokenSupply": "15246328139448382748385066" + "mAssetSupply": "103101467152855045483964095", + "LPTokenSupply": "4982592047310974954122431" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "21619716980407386112", - "outputQty0": "21857854438708317134", - "outputQty": "21893056295500372684", - "swapFee1": "12971830188244431", - "swapFee2": "8743141775483326", + "outputIndex": 1, + "inputQty": "21419068701763002433536", + "outputQty0": "21953029770883529880387", + "outputQty": "21297386498205029432465", + "swapFee1": "12851441221057801460", + "swapFee2": "13171817862530117928", "mpReserves": [ - "59634504661368405575009831", - "25597390121847231216329055", - "24654815488364988654272299" + "55212500773892446284100800", + "10817617115496049318948680", + "37284661290835841265820877" ], "fpReserves": [ - "10771531663263840674133164", - "4617295453436288024633429" + "3978190583373597208929848", + "1091638708757594128296231" ], - "mAssetSupply": "109849547474472595057762163", - "LPTokenSupply": "15246306521028585359823397" + "mAssetSupply": "103079527294902024484201636", + "LPTokenSupply": "4961174263753334057469041" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "20566017821920706166784", - "outputQty0": "20792465519787234258385", - "outputQty": "20752431665019955821020", - "swapFee1": "12339610693152423700", - "swapFee2": "8316986207914893703", + "outputIndex": 2, + "inputQty": "359022977469933401669632", + "outputQty0": "367863581353387898036004", + "outputQty": "368885005405385344304964", + "swapFee1": "215413786481960041001", + "swapFee2": "220718148812032738821", "mpReserves": [ - "59634504661368405575009831", - "25576637690182211260508035", - "24654815488364988654272299" + "55212500773892446284100800", + "10817617115496049318948680", + "36915776285430455921515913" ], "fpReserves": [ - "10750739197744053439874779", - "4617295453436288024633429" + "3610327002020209310893844", + "1091638708757594128296231" ], - "mAssetSupply": "109828763325939015738397481", - "LPTokenSupply": "15225741737167733968898983" + "mAssetSupply": "102711884431697448618904453", + "LPTokenSupply": "4602172827662048851803509" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "45999679346729826648064", - "outputQty0": "46069872259811023387932", - "outputQty": "45540535971088625342592", + "type": "swap_fp_to_mp", + "inputQty": "11216872868363612160", + "outputIndex": 2, + "outputQty": "11404322047236444039", + "swapFee": "0", + "redemptionFee": "6823963838351734", "mpReserves": [ - "59634504661368405575009831", - "25622637369528941087156099", - "24654815488364988654272299" + "55212500773892446284100800", + "10817617115496049318948680", + "36915764881108408685071874" ], "fpReserves": [ - "10796809070003864463262711", - "4617295453436288024633429" + "3610315628747145391336014", + "1091649925630462491908391" ], - "mAssetSupply": "109874833198198826761785413", - "LPTokenSupply": "15271282273138822594241575" + "mAssetSupply": "102711873065248348537698357", + "LPTokenSupply": "4602172827662048851803509" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "29204450325283081289728", - "outputQty0": "29255887374525792397539", - "outputQty": "28919321519085308985947", + "type": "redeem", + "outputIndex": 1, + "inputQty": "36587539312674449915904", + "outputQty0": "37478316187109024677151", + "outputQty": "36360024876598533290525", + "swapFee1": "21952523587604669949", + "swapFee2": "22486989712265414806", "mpReserves": [ - "59634504661368405575009831", - "25622637369528941087156099", - "24684019938690271735562027" + "55212500773892446284100800", + "10781257090619450785658155", + "36915764881108408685071874" ], "fpReserves": [ - "10826064957378390255660250", - "4617295453436288024633429" + "3572837312560036366658863", + "1091649925630462491908391" ], - "mAssetSupply": "109904089085573352554182952", - "LPTokenSupply": "15300201594657907903227522" + "mAssetSupply": "102674417236050951778436012", + "LPTokenSupply": "4565587483601733162354599" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "6224429838173216964608", - "outputQty0": "6293120070370985231504", - "outputQty": "6281032676779130455338", - "swapFee1": "3734657902903930178", - "swapFee2": "2517248028148394092", + "inputQty": "94632688882142391828480", + "outputQty0": "96926976248909618933897", + "outputQty": "94001295614900388093422", + "swapFee1": "56779613329285435097", + "swapFee2": "58156185749345771360", "mpReserves": [ - "59634504661368405575009831", - "25616356336852161956700761", - "24684019938690271735562027" + "55212500773892446284100800", + "10687255795004550397564733", + "36915764881108408685071874" ], "fpReserves": [ - "10819771837308019270428746", - "4617295453436288024633429" + "3475910336311126747724966", + "1091649925630462491908391" ], - "mAssetSupply": "109897798482751009717345540", - "LPTokenSupply": "15293977538285524976655931" + "mAssetSupply": "102577548415987791505273475", + "LPTokenSupply": "4470960472680923699069628" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "357064136839685", - "outputQty0": "356348506056327", - "outputQty": "352247789524056", + "type": "swap_fp_to_mp", + "inputQty": "2080152479859468140544", + "outputIndex": 0, + "outputQty": "2122971611586197829579", + "swapFee": "0", + "redemptionFee": "1264349965426039276", "mpReserves": [ - "59634504661725469711849516", - "25616356336852161956700761", - "24684019938690271735562027" + "55210377802280860086271221", + "10687255795004550397564733", + "36915764881108408685071874" ], "fpReserves": [ - "10819771837664367776485073", - "4617295453436288024633429" + "3473803086368750015597144", + "1093730078110321960048935" ], - "mAssetSupply": "109897798483107358223401867", - "LPTokenSupply": "15293977538637772766179987" + "mAssetSupply": "102575442430395380199184929", + "LPTokenSupply": "4470960472680923699069628" }, { "type": "swap_fp_to_mp", - "inputQty": "2238056334112734976", - "outputIndex": 1, - "outputQty": "2250667370071825174", + "inputQty": "19378587905972284", + "outputIndex": 2, + "outputQty": "19685403491520538", "swapFee": "0", - "redemptionFee": "901999983887043", + "redemptionFee": "11778285947363", "mpReserves": [ - "59634504661725469711849516", - "25616354086184791884875587", - "24684019938690271735562027" + "55210377802280860086271221", + "10687255795004550397564733", + "36915764861423005193551336" ], "fpReserves": [ - "10819769582664408058876882", - "4617297691492622137368405" + "3473803066738273436657469", + "1093730097488909866021219" ], - "mAssetSupply": "109897796229009398489680719", - "LPTokenSupply": "15293977538637772766179987" + "mAssetSupply": "102575442410776681906192617", + "LPTokenSupply": "4470960472680923699069628" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "402856703518612520960", - "outputQty0": "403564861984157621478", - "outputQty": "400211786973942950876", - "swapFee": "319136614875676415", + "type": "mint", + "inputIndex": 0, + "inputQty": "2502038662038674735104", + "outputQty0": "2482019613475683543155", + "outputQty": "2421998300705515374772", "mpReserves": [ - "59634504661725469711849516", - "25616354086184791884875587", - "24684422795393790348082987" + "55212879840942898761006325", + "10687255795004550397564733", + "36915764861423005193551336" ], "fpReserves": [ - "10820173147526392216498360", - "4616897479705648194417529" + "3476285086351749120200624", + "1093730097488909866021219" ], - "mAssetSupply": "109898199793871382647302197", - "LPTokenSupply": "15293977570551434253747628" + "mAssetSupply": "102577924430390157589735772", + "LPTokenSupply": "4473382470981629214444400" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "398974967381711644524544", - "outputQty0": "398171138172471524935880", - "outputQty": "394500114600363234251309", - "swapFee": "314847061065992802775", + "inputIndex": 1, + "inputQty": "2402542041865003", + "outputQty0": "2476477013863943", + "outputQty": "2442705400558989", + "swapFee": "1933268065225", "mpReserves": [ - "60033479629107181356374060", - "25616354086184791884875587", - "24684422795393790348082987" + "55212879840942898761006325", + "10687255797407092439429736", + "36915764861423005193551336" ], "fpReserves": [ - "11218344285698863741434240", - "4222397365105284960166220" + "3476285088828226134064567", + "1093730095046204465462230" ], - "mAssetSupply": "110296370932043854172238077", - "LPTokenSupply": "15294009055257540853027905" + "mAssetSupply": "102577924432866634603599715", + "LPTokenSupply": "4473382470981822541250922" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1076381714558032281600", - "outputQty0": "1074201693607350043943", - "outputQty": "1063236100869114173650", - "swapFee": "848988635675196591", + "type": "mint", + "inputIndex": 1, + "inputQty": "49676678836168729559040", + "outputQty0": "51198341923272371746586", + "outputQty": "49958161138167847872165", "mpReserves": [ - "60034556010821739388655660", - "25616354086184791884875587", - "24684422795393790348082987" + "55212879840942898761006325", + "10736932476243261168988776", + "36915764861423005193551336" ], "fpReserves": [ - "11219418487392471091478183", - "4221334129004415845992570" + "3527483430751498505811153", + "1093730095046204465462230" ], - "mAssetSupply": "110297445133737461522282020", - "LPTokenSupply": "15294009140156404420547564" + "mAssetSupply": "102629122774789906975346301", + "LPTokenSupply": "4523340632119990389123087" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "36047668956911296", - "outputQty0": "36111974853306043", - "outputQty": "35743234921966962", - "swapFee": "28540834099143", + "inputQty": "11174937577390879014912", + "outputQty0": "11137346113337892043384", + "outputQty": "10867040494128754974039", "mpReserves": [ - "60034556010821739388655660", - "25616354086184791884875587", - "24684422831441459304994283" + "55212879840942898761006325", + "10736932476243261168988776", + "36926939799000396072566248" ], "fpReserves": [ - "11219418523504445944784226", - "4221334093261180924025608" + "3538620776864836397854537", + "1093730095046204465462230" ], - "mAssetSupply": "110297445169849436375588063", - "LPTokenSupply": "15294009140159258503957478" + "mAssetSupply": "102640260120903244867389685", + "LPTokenSupply": "4534207672614119144097126" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "7071041923548724592640", - "outputQty0": "7081987065924753699000", - "outputQty": "7009537890100799421417", - "swapFee": "5597188310380361067", + "inputQty": "28748539679272236744704", + "outputQty0": "29622899626801760842733", + "outputQty": "29195103878364554891997", + "swapFee": "23122426999207719425", "mpReserves": [ - "60034556010821739388655660", - "25623425128108340609468227", - "24684422831441459304994283" + "55212879840942898761006325", + "10765681015922533405733480", + "36926939799000396072566248" ], "fpReserves": [ - "11226500510570370698483226", - "4214324555371080124604191" + "3568243676491638158697270", + "1064534991167839910570233" ], - "mAssetSupply": "110304527156915361129287063", - "LPTokenSupply": "15294009699878089541993584" + "mAssetSupply": "102669883020530046628232418", + "LPTokenSupply": "4534209984856819064869068" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "49702801401265097015296", - "outputQty0": "49779465382706378621648", - "outputQty": "49177502383705348527552", + "inputQty": "73672716945552756965376", + "outputQty0": "75892233163546981343173", + "outputQty": "74675324106550409811216", + "swapFee": "59224229947743121061", "mpReserves": [ - "60034556010821739388655660", - "25673127929509605706483523", - "24684422831441459304994283" + "55212879840942898761006325", + "10839353732868086162698856", + "36926939799000396072566248" ], "fpReserves": [ - "11276279975953077077104874", - "4214324555371080124604191" + "3644135909655185140040443", + "989859667061289500759017" ], - "mAssetSupply": "110354306622298067507908711", - "LPTokenSupply": "15343187202261794890521136" + "mAssetSupply": "102745775253693593609575591", + "LPTokenSupply": "4534215907279813839181174" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "107253900146410291200", - "outputQty0": "107445540189789016687", - "outputQty": "106145154548883802197", - "mpReserves": [ - "60034556010821739388655660", - "25673127929509605706483523", - "24684530085341605715285483" - ], - "fpReserves": [ - "11276387421493266866121561", - "4214324555371080124604191" - ], - "mAssetSupply": "110354414067838257296925398", - "LPTokenSupply": "15343293347416343774323333" - }, - { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "5563981918216560574464", "outputIndex": 0, - "inputQty": "1673596882839506985680896", - "outputQty0": "1692488595238993409458987", - "outputQty": "1695163196807183071899867", - "swapFee1": "1004158129703704191408", - "swapFee2": "676995438095597363783", + "outputQty": "5698326321500729023480", + "swapFee": "0", + "redemptionFee": "3394071971624650484", "mpReserves": [ - "58339392814014556316755793", - "25673127929509605706483523", - "24684530085341605715285483" + "55207181514621398031982845", + "10839353732868086162698856", + "36926939799000396072566248" ], "fpReserves": [ - "9583898826254273456662574", - "4214324555371080124604191" + "3638479123035810722566554", + "995423648979506061333481" ], - "mAssetSupply": "108662602468037359484830194", - "LPTokenSupply": "13669796880389807159061577" + "mAssetSupply": "102740121861146190816752186", + "LPTokenSupply": "4534215907279813839181174" }, { "type": "swap_fp_to_mp", - "inputQty": "143224357637096445313024", - "outputIndex": 2, - "outputQty": "143903232797765071379595", + "inputQty": "275855578597600960446464", + "outputIndex": 1, + "outputQty": "270846385464150444836726", "swapFee": "0", - "redemptionFee": "57681774613062702040", - "mpReserves": [ - "58339392814014556316755793", - "25673127929509605706483523", - "24540626852543840643905888" - ], - "fpReserves": [ - "9439694389721616701561006", - "4357548913008176569917215" - ], - "mAssetSupply": "108518455713279315792430666", - "LPTokenSupply": "13669796880389807159061577" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "12434765219029063680", - "outputQty0": "12455991637363924519", - "outputQty": "12315520063671977963", + "redemptionFee": "167594809822565145479", "mpReserves": [ - "58339392814014556316755793", - "25673127929509605706483523", - "24540639287309059672969568" + "55207181514621398031982845", + "10568507347403935717862130", + "36926939799000396072566248" ], "fpReserves": [ - "9439706845713254065485525", - "4357548913008176569917215" + "3359154439998202146767745", + "1271279227577107021779945" ], - "mAssetSupply": "108518468169270953156355185", - "LPTokenSupply": "13669809195909870831039540" + "mAssetSupply": "102460964772918404806098856", + "LPTokenSupply": "4534215907279813839181174" }, { "type": "mint", "inputIndex": 2, - "inputQty": "32173595251421292265472", - "outputQty0": "32228409637516496461419", - "outputQty": "31864742227673854299459", + "inputQty": "298621808361782247424", + "outputQty0": "297590216493559589711", + "outputQty": "290655502594476258557", "mpReserves": [ - "58339392814014556316755793", - "25673127929509605706483523", - "24572812882560480965235040" + "55207181514621398031982845", + "10568507347403935717862130", + "36927238420808757854813672" ], "fpReserves": [ - "9471935255350770561946944", - "4357548913008176569917215" + "3359452030214695706357456", + "1271279227577107021779945" ], - "mAssetSupply": "108550696578908469652816604", - "LPTokenSupply": "13701673938137544685338999" + "mAssetSupply": "102461262363134898365688567", + "LPTokenSupply": "4534506562782408315439731" }, { - "type": "swap_fp_to_mp", - "inputQty": "18667834083169999519744", - "outputIndex": 1, - "outputQty": "18755489776067264682695", - "swapFee": "0", - "redemptionFee": "7515949751106522553", - "mpReserves": [ - "58339392814014556316755793", - "25654372439733538441800828", - "24572812882560480965235040" - ], - "fpReserves": [ - "9453145380973004255563991", - "4376216747091346569436959" - ], - "mAssetSupply": "108531914220480454452956204", - "LPTokenSupply": "13701673938137544685338999" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "20589879391215263744", - "outputQty0": "20812000902412238316", - "outputQty": "20768381587322622121", - "swapFee1": "12353927634729158", - "swapFee2": "8324800360964895", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1277605331610085883904", + "outputQty0": "1317806824229067572454", + "outputQty": "1304460280290432845981", + "swapFee": "1029677349892275151", "mpReserves": [ - "58339392814014556316755793", - "25654372439733538441800828", - "24572792114178893642612919" + "55207181514621398031982845", + "10569784952735545803746034", + "36927238420808757854813672" ], "fpReserves": [ - "9453124568972101843325675", - "4376216747091346569436959" + "3360769837038924773929910", + "1269974767296816588933964" ], - "mAssetSupply": "108531893416804352401682783", - "LPTokenSupply": "13701653349493546233548170" + "mAssetSupply": "102462580169959127433261021", + "LPTokenSupply": "4534506665750143304667246" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "387205230023727513600", - "outputQty0": "386453774473567846888", - "outputQty": "383651161919308920592", - "swapFee": "305679855096430654", + "inputQty": "2269087093569280278528", + "outputQty0": "2250729320170084577281", + "outputQty": "2198262192840115784016", "mpReserves": [ - "58339780019244580044269393", - "25654372439733538441800828", - "24572792114178893642612919" + "55209450601714967312261373", + "10569784952735545803746034", + "36927238420808757854813672" ], "fpReserves": [ - "9453511022746575411172563", - "4375833095929427260516367" + "3363020566359094858507191", + "1269974767296816588933964" ], - "mAssetSupply": "108532279870578825969529671", - "LPTokenSupply": "13701653380061531743191235" + "mAssetSupply": "102464830899279297517838302", + "LPTokenSupply": "4536704927942983420451262" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "6911044756568526553088", - "outputQty0": "6985593914227681906327", - "outputQty": "6996376439530186220928", - "swapFee1": "4146626853941115931", - "swapFee2": "2794237565691072762", + "type": "swap_fp_to_mp", + "inputQty": "790576396321637923815424", + "outputIndex": 2, + "outputQty": "796509098954241720145376", + "swapFee": "0", + "redemptionFee": "476590045235258410592", "mpReserves": [ - "58332783642805049858048465", - "25654372439733538441800828", - "24572792114178893642612919" + "55209450601714967312261373", + "10569784952735545803746034", + "36130729321854516134668296" ], "fpReserves": [ - "9446525428832347729266236", - "4375833095929427260516367" + "2568703824300330840853315", + "2060551163618454512749388" ], - "mAssetSupply": "108525297070902163978696106", - "LPTokenSupply": "13694742749967648610749740" + "mAssetSupply": "101670990747265768758595018", + "LPTokenSupply": "4536704927942983420451262" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "4386962020055903633408", - "outputQty0": "4378449237645365838625", - "outputQty": "4346693271509922018953", - "swapFee": "3463300196086188337", + "inputQty": "1201860004609955987456", + "outputQty0": "1192068560131915188448", + "outputQty": "1189337963611465424081", + "swapFee": "933968698822194964", "mpReserves": [ - "58337170604825105761681873", - "25654372439733538441800828", - "24572792114178893642612919" + "55210652461719577268248829", + "10569784952735545803746034", + "36130729321854516134668296" ], "fpReserves": [ - "9450903878069993095104861", - "4371486402657917338497414" + "2569895892860462756041763", + "2059361825654843047325307" ], - "mAssetSupply": "108529675520139809344534731", - "LPTokenSupply": "13694743096297668219368573" + "mAssetSupply": "101672182815825900673783466", + "LPTokenSupply": "4536705021339853302670758" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2975456628907133440", - "outputQty0": "2980512806781955721", - "outputQty": "2958869148920557909", - "swapFee": "2357537578748320", + "type": "mint", + "inputIndex": 1, + "inputQty": "197627954123572034666496", + "outputQty0": "203650491135538211274254", + "outputQty": "199421908784911295878712", "mpReserves": [ - "58337170604825105761681873", - "25654372439733538441800828", - "24572795089635522549746359" + "55210652461719577268248829", + "10767412906859117838412530", + "36130729321854516134668296" ], "fpReserves": [ - "9450906858582799877060582", - "4371483443788768417939505" + "2773546383996000967316017", + "2059361825654843047325307" ], - "mAssetSupply": "108529678500652616126490452", - "LPTokenSupply": "13694743096533421977243405" + "mAssetSupply": "101875833306961438885057720", + "LPTokenSupply": "4736126930124764598549470" }, { - "type": "swap_fp_to_mp", - "inputQty": "54932890780423031881728", - "outputIndex": 2, - "outputQty": "55168053495464981636002", - "swapFee": "0", - "redemptionFee": "22113690902890287108", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1192772887554533", + "outputQty0": "1217477558200254", + "outputQty": "1181405799319908", + "swapFee1": "715663732532", + "swapFee2": "730486534920", "mpReserves": [ - "58337170604825105761681873", - "25654372439733538441800828", - "24517627036140057568110357" + "55210652461719577268248829", + "10767412905677712039092622", + "36130729321854516134668296" ], "fpReserves": [ - "9395622631325574159290068", - "4426416334569191449821233" + "2773546382778523409115763", + "2059361825654843047325307" ], - "mAssetSupply": "108474416387086293299007046", - "LPTokenSupply": "13694743096533421977243405" + "mAssetSupply": "101875833305744691813392386", + "LPTokenSupply": "4736126928932063277368190" }, { "type": "swap_fp_to_mp", - "inputQty": "235456715908296975843328", + "inputQty": "5592004437860873666560", "outputIndex": 2, - "outputQty": "236324409346946407772277", + "outputQty": "5617655823210838973418", "swapFee": "0", - "redemptionFee": "94731693719536428913", + "redemptionFee": "3362012156350058180", "mpReserves": [ - "58337170604825105761681873", - "25654372439733538441800828", - "24281302626793111160338080" + "55210652461719577268248829", + "10767412905677712039092622", + "36125111666031305295694878" ], "fpReserves": [ - "9158793397026733087006021", - "4661873050477488425664561" + "2767943029184606645480954", + "2064953830092703920991867" ], - "mAssetSupply": "108237681884481171763151912", - "LPTokenSupply": "13694743096533421977243405" + "mAssetSupply": "101870233314162931399815757", + "LPTokenSupply": "4736126928932063277368190" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "90630155756168997240832", - "outputQty0": "91573255611457645358781", - "outputQty": "91406144153825975613417", - "swapFee1": "54378093453701398344", - "swapFee2": "36629302244583058143", + "inputQty": "69760542886242762752", + "outputQty0": "71204358840047490817", + "outputQty": "69094874157135662013", + "swapFee1": "41856325731745657", + "swapFee2": "42722615304028494", "mpReserves": [ - "58337170604825105761681873", - "25562966295579712466187411", - "24281302626793111160338080" + "55210652461719577268248829", + "10767343810803554903430609", + "36125111666031305295694878" ], "fpReserves": [ - "9067220141415275441647240", - "4661873050477488425664561" + "2767871824825766597990137", + "2064953830092703920991867" ], - "mAssetSupply": "108146145258171958700851274", - "LPTokenSupply": "13604118378586598350142407" + "mAssetSupply": "101870162152526706656353434", + "LPTokenSupply": "4736057172574809607780003" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "74385470675059015680", - "outputQty0": "74516047413354733270", - "outputQty": "73705459345256980399", - "mpReserves": [ - "58337170604825105761681873", - "25562966295579712466187411", - "24281377012263786219353760" - ], - "fpReserves": [ - "9067294657462688796380510", - "4661873050477488425664561" - ], - "mAssetSupply": "108146219774219372055584544", - "LPTokenSupply": "13604192084045943607122806" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "114371438734319252668416", - "outputQty0": "114146368068485723483951", - "outputQty": "112902087136155654893731", + "type": "swap_fp_to_mp", + "inputQty": "341438662222794850304", + "outputIndex": 2, + "outputQty": "342998242234317282556", + "swapFee": "0", + "redemptionFee": "205275145969418122", "mpReserves": [ - "58451542043559425014350289", - "25562966295579712466187411", - "24281377012263786219353760" + "55210652461719577268248829", + "10767343810803554903430609", + "36124768667789070978412322" ], "fpReserves": [ - "9181441025531174519864461", - "4661873050477488425664561" + "2767529699582484234452134", + "2065295268754926715842171" ], - "mAssetSupply": "108260366142287857779068495", - "LPTokenSupply": "13717094171182099262016537" + "mAssetSupply": "101869820232558570262233553", + "LPTokenSupply": "4736057172574809607780003" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "45018882300857049088", - "outputQty0": "45098246081841685344", - "outputQty": "44605618794016856273", + "type": "swap_fp_to_mp", + "inputQty": "133124374586692452352", + "outputIndex": 1, + "outputQty": "129439984918707156938", + "swapFee": "0", + "redemptionFee": "80035122446857205", "mpReserves": [ - "58451542043559425014350289", - "25562966295579712466187411", - "24281422031146087076402848" + "55210652461719577268248829", + "10767214370818636196273671", + "36124768667789070978412322" ], "fpReserves": [ - "9181486123777256361549805", - "4661873050477488425664561" + "2767396307711739472443080", + "2065428393129513408294523" ], - "mAssetSupply": "108260411240533939620753839", - "LPTokenSupply": "13717138776800893278872810" + "mAssetSupply": "101869686920722947947081704", + "LPTokenSupply": "4736057172574809607780003" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "146340960417760069812224", - "outputQty0": "146550114616478802182442", - "outputQty": "144945033831831437783922", - "mpReserves": [ - "58451542043559425014350289", - "25709307255997472535999635", - "24281422031146087076402848" - ], - "fpReserves": [ - "9328036238393735163732247", - "4661873050477488425664561" - ], - "mAssetSupply": "108406961355150418422936281", - "LPTokenSupply": "13862083810632724716656732" + "inputQty": "1300768521562907129937920", + "hardLimitError": true }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "9420894330054609207296", - "outputQty0": "9519764120214056000192", - "outputQty": "9502494112886101853518", - "swapFee1": "5652536598032765524", - "swapFee2": "3807905648085622400", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "64352902323822329856", + "outputQty0": "63838341600988572472", + "outputQty": "63659369441185377303", + "swapFee": "50005151354005284", "mpReserves": [ - "58451542043559425014350289", - "25699804761884586434146117", - "24281422031146087076402848" + "55210716814621901090578685", + "10767214370818636196273671", + "36124768667789070978412322" ], "fpReserves": [ - "9318516474273521107732055", - "4661873050477488425664561" + "2767460146053340461015552", + "2065364733760072222917220" ], - "mAssetSupply": "108397445398935852452558489", - "LPTokenSupply": "13852663481556329910725988" + "mAssetSupply": "101869750759064548935654176", + "LPTokenSupply": "4736057177575324743180531" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "7969258194149435392", - "outputQty0": "7983363531903696361", - "outputQty": "7895722204458124207", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "12291647714633128607744", + "outputQty0": "12658904894960763010478", + "outputQty": "12622916191251338045815", + "swapFee": "9915762345689631840", "mpReserves": [ - "58451542043559425014350289", - "25699804761884586434146117", - "24281430000404281225838240" + "55210716814621901090578685", + "10779506018533269324881415", + "36124768667789070978412322" ], "fpReserves": [ - "9318524457637053011428416", - "4661873050477488425664561" + "2780119050948301224026030", + "2052741817568820884871405" ], - "mAssetSupply": "108397453382299384356254850", - "LPTokenSupply": "13852671377278534368850195" + "mAssetSupply": "101882409663959509698664654", + "LPTokenSupply": "4736058169151559312143715" }, { "type": "swap_fp_to_mp", - "inputQty": "167397281906800197632000", - "outputIndex": 2, - "outputQty": "167915659834764557706283", + "inputQty": "23224077376577712", + "outputIndex": 0, + "outputQty": "23445867434655962", "swapFee": "0", - "redemptionFee": "67313278577250759215", - "mpReserves": [ - "58451542043559425014350289", - "25699804761884586434146117", - "24113514340569516668131957" - ], - "fpReserves": [ - "9150241261193926113389940", - "4829270332384288623296561" - ], - "mAssetSupply": "108229237499134834708975589", - "LPTokenSupply": "13852671377278534368850195" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "10384865498896875520", - "outputQty0": "10364366207385622544", - "outputQty": "10252590185104938906", - "mpReserves": [ - "58451552428424923911225809", - "25699804761884586434146117", - "24113514340569516668131957" - ], - "fpReserves": [ - "9150251625560133499012484", - "4829270332384288623296561" - ], - "mAssetSupply": "108229247863501042094598133", - "LPTokenSupply": "13852681629868719473789101" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "102678325421602928", - "outputQty0": "102863765175653108", - "outputQty": "102269315010823842", - "swapFee": "81403532524669", + "redemptionFee": "13963545903997", "mpReserves": [ - "58451552428424923911225809", - "25699804761884586434146117", - "24113514443247842089734885" + "55210716791176033655922723", + "10779506018533269324881415", + "36124768667789070978412322" ], "fpReserves": [ - "9150251728423898674665592", - "4829270230114973612472719" + "2780119027675724717364277", + "2052741840792898261449117" ], - "mAssetSupply": "108229247966364807270251241", - "LPTokenSupply": "13852681629876859827041567" + "mAssetSupply": "101882409640700896737906898", + "LPTokenSupply": "4736058169151559312143715" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "25716162606200833179648", - "outputQty0": "25665382332709733305467", - "outputQty": "25515987478657280064103", - "swapFee": "20310769865597923536", + "type": "redeem", + "outputIndex": 0, + "inputQty": "136674166173880762368", + "outputQty0": "139507661439028060522", + "outputQty": "140546453475532713519", + "swapFee1": "82004499704328457", + "swapFee2": "83704596863416836", "mpReserves": [ - "58477268591031124744405457", - "25699804761884586434146117", - "24113514443247842089734885" + "55210576244722558123209204", + "10779506018533269324881415", + "36124768667789070978412322" ], "fpReserves": [ - "9175917110756608407971059", - "4803754242636316332408616" + "2779979520014285689303755", + "2052741840792898261449117" ], - "mAssetSupply": "108254913348697517003556708", - "LPTokenSupply": "13852683660953846386833920" + "mAssetSupply": "101882270216744054573263212", + "LPTokenSupply": "4735921503185835401814192" }, { "type": "swap_fp_to_mp", - "inputQty": "383465613222427408465920", - "outputIndex": 2, - "outputQty": "384322107545300544702512", + "inputQty": "140342530724669564125184", + "outputIndex": 1, + "outputQty": "136369203605385665950097", "swapFee": "0", - "redemptionFee": "154074873635308772295", + "redemptionFee": "84345348458464528203", "mpReserves": [ - "58477268591031124744405457", - "25699804761884586434146117", - "23729192335702541545032373" + "55210576244722558123209204", + "10643136814927883658931318", + "36124768667789070978412322" ], "fpReserves": [ - "8790729926668336477231851", - "5187219855858743740874536" + "2639403939250178142297106", + "2193084371517567825574301" ], - "mAssetSupply": "107869880239482880381589795", - "LPTokenSupply": "13852683660953846386833920" + "mAssetSupply": "101741778981328405490784766", + "LPTokenSupply": "4735921503185835401814192" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "88808810753958193659904", - "outputQty0": "88630858676839325087536", - "outputQty": "87707460898504648233412", + "inputQty": "25183045220479352700928", + "outputQty0": "24979239779945906393441", + "outputQty": "24926419878081514526402", + "swapFee": "19572718452471980767", "mpReserves": [ - "58566077401785082938065361", - "25699804761884586434146117", - "23729192335702541545032373" + "55235759289943037475910132", + "10643136814927883658931318", + "36124768667789070978412322" ], "fpReserves": [ - "8879360785345175802319387", - "5187219855858743740874536" + "2664383179030124048690547", + "2168157951639486311047899" ], - "mAssetSupply": "107958511098159719706677331", - "LPTokenSupply": "13940391121852351035067332" + "mAssetSupply": "101766758221108351397178207", + "LPTokenSupply": "4735923460457680649012268" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "63876471426533096", - "outputQty0": "63965618524837228", - "outputQty": "63658983156522074", - "swapFee": "50638496052342", + "inputQty": "39117015518036470267904", + "outputQty0": "40310931005480532870944", + "outputQty": "40218018021651222034267", + "swapFee": "31583550964141340533", "mpReserves": [ - "58566077401785082938065361", - "25699804825761057860679213", - "23729192335702541545032373" + "55235759289943037475910132", + "10682253830445920129199222", + "36124768667789070978412322" ], "fpReserves": [ - "8879360849310794327156615", - "5187219792199760584352462" + "2704694110035604581561491", + "2127939933617835089013632" ], - "mAssetSupply": "107958511162125338231514559", - "LPTokenSupply": "13940391121857414884672566" + "mAssetSupply": "101807069152113831930049151", + "LPTokenSupply": "4735926618812777063146321" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "238359651031688773632", - "outputQty0": "237881462372620779895", - "outputQty": "236741038628797038599", - "swapFee": "188319275610962141", + "inputQty": "476566577234659770368", + "outputQty0": "472722873705853045656", + "outputQty": "471576454070503736622", + "swapFee": "370344916836498299", "mpReserves": [ - "58566315761436114626838993", - "25699804825761057860679213", - "23729192335702541545032373" + "55236235856520272135680500", + "10682253830445920129199222", + "36124768667789070978412322" ], "fpReserves": [ - "8879598730773166947936510", - "5186983051161131787313863" + "2705166832909310434607147", + "2127468357163764585277010" ], - "mAssetSupply": "107958749043587710852294454", - "LPTokenSupply": "13940391140689342445768780" + "mAssetSupply": "101807541874987537783094807", + "LPTokenSupply": "4735926655847268746796150" }, { "type": "mint", "inputIndex": 2, - "inputQty": "405993323211628871680", - "outputQty0": "406764302456167625376", - "outputQty": "402519472149419544799", + "inputQty": "34200753170185801695232", + "outputQty0": "34091667150518046143018", + "outputQty": "33384820302509185060748", "mpReserves": [ - "58566315761436114626838993", - "25699804825761057860679213", - "23729598329025753173904053" + "55236235856520272135680500", + "10682253830445920129199222", + "36158969420959256780107554" ], "fpReserves": [ - "8880005495075623115561886", - "5186983051161131787313863" + "2739258500059828480750165", + "2127468357163764585277010" ], - "mAssetSupply": "107959155807890167019919830", - "LPTokenSupply": "13940793660161491865313579" + "mAssetSupply": "101841633542138055829237825", + "LPTokenSupply": "4769311476149777931856898" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1383493774146066710528", - "outputQty0": "1380718236443537042721", - "outputQty": "1366309143629324636707", + "inputIndex": 1, + "inputQty": "32727540367938000257024", + "outputQty0": "33720324060638157320594", + "outputQty": "33019896711636500204083", "mpReserves": [ - "58567699255210260693549521", - "25699804825761057860679213", - "23729598329025753173904053" + "55236235856520272135680500", + "10714981370813858129456246", + "36158969420959256780107554" ], "fpReserves": [ - "8881386213312066652604607", - "5186983051161131787313863" + "2772978824120466638070759", + "2127468357163764585277010" ], - "mAssetSupply": "107960536526126610556962551", - "LPTokenSupply": "13942159969305121189950286" + "mAssetSupply": "101875353866198693986558419", + "LPTokenSupply": "4802331372861414432060981" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "186807350035051577344", - "outputQty0": "187162101511976855853", - "outputQty": "186264375439385486002", - "swapFee": "148167066802134254", + "type": "redeem", + "outputIndex": 2, + "inputQty": "9152241407653703680", + "outputQty0": "9340952072333823753", + "outputQty": "9365103306088104155", + "swapFee1": "5491344844592222", + "swapFee2": "5604571243400294", "mpReserves": [ - "58567699255210260693549521", - "25699804825761057860679213", - "23729785136375788225481397" + "55236235856520272135680500", + "10714981370813858129456246", + "36158960055855950692003399" ], "fpReserves": [ - "8881573375413578629460460", - "5186796786785692401827861" + "2772969483168394304247006", + "2127468357163764585277010" ], - "mAssetSupply": "107960723688228122533818404", - "LPTokenSupply": "13942159984121827870163711" + "mAssetSupply": "101875344530851192896134960", + "LPTokenSupply": "4802322221169141262816523" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "9598856548085510144", - "outputQty0": "9617084784698740270", - "outputQty": "9570953646410955237", - "swapFee": "7613373600594759", + "inputIndex": 1, + "inputQty": "86440306380724994048", + "outputQty0": "89054423481666181701", + "outputQty": "88822570717061757697", + "swapFee": "69762354821873136", "mpReserves": [ - "58567699255210260693549521", - "25699804825761057860679213", - "23729794735232336310991541" + "55236235856520272135680500", + "10715067811120238854450294", + "36158960055855950692003399" ], "fpReserves": [ - "8881582992498363328200730", - "5186787215832045990872624" + "2773058537591875970428707", + "2127379534593047523519313" ], - "mAssetSupply": "107960733305312907232558674", - "LPTokenSupply": "13942159984883165230223186" + "mAssetSupply": "101875433585274674562316661", + "LPTokenSupply": "4802322228145376745003836" }, { - "type": "swap_fp_to_mp", - "inputQty": "638884815119694094663680", - "outputIndex": 0, - "outputQty": "641940392569830534595022", - "swapFee": "0", - "redemptionFee": "256367995857662083083", + "type": "mint", + "inputIndex": 2, + "inputQty": "218218123905312688701440", + "outputQty0": "217518580978873925782640", + "outputQty": "212970657376451582458544", "mpReserves": [ - "57925758862640430158954499", - "25699804825761057860679213", - "23729794735232336310991541" + "55236235856520272135680500", + "10715067811120238854450294", + "36377178179761263380704839" ], "fpReserves": [ - "8240663002854208120491337", - "5825672030951740085536304" + "2990577118570749896211347", + "2127379534593047523519313" ], - "mAssetSupply": "107320069683664609686932364", - "LPTokenSupply": "13942159984883165230223186" + "mAssetSupply": "102092952166253548488099301", + "LPTokenSupply": "5015292885521828327462380" }, { - "type": "swap_fp_to_mp", - "inputQty": "170314162971046160891904", + "type": "redeem", "outputIndex": 1, - "outputQty": "170391237607787622186059", - "swapFee": "0", - "redemptionFee": "68277418523250915754", + "inputQty": "222327743871405184", + "outputQty0": "226965908752122078", + "outputQty": "220147514886581015", + "swapFee1": "133396646322843", + "swapFee2": "136179545251273", "mpReserves": [ - "57925758862640430158954499", - "25529413588153270238493154", - "23729794735232336310991541" + "55236235856520272135680500", + "10715067590972723967869279", + "36377178179761263380704839" ], "fpReserves": [ - "8069969456546080831104042", - "5995986193922786246428208" + "2990576891604841144089269", + "2127379534593047523519313" ], - "mAssetSupply": "107149444414775005648460823", - "LPTokenSupply": "13942159984883165230223186" + "mAssetSupply": "102092951939423819281228496", + "LPTokenSupply": "5015292663207424120689480" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "294934674847131141931008", - "outputQty0": "297616352708865370714100", - "outputQty": "296939206967231033099049", - "swapFee1": "176960804908278685158", - "swapFee2": "119046541083546148285", + "type": "mint", + "inputIndex": 0, + "inputQty": "1189242485133638214090752", + "outputQty0": "1179564360192250100269332", + "outputQty": "1154099807830483794343636", "mpReserves": [ - "57925758862640430158954499", - "25529413588153270238493154", - "23432855528265105277892492" + "56425478341653910349771252", + "10715067590972723967869279", + "36377178179761263380704839" ], "fpReserves": [ - "7772353103837215460389942", - "5995986193922786246428208" + "4170141251797091244358601", + "2127379534593047523519313" ], - "mAssetSupply": "106851947108607223823895008", - "LPTokenSupply": "13647243006116524916160693" + "mAssetSupply": "103272516299616069381497828", + "LPTokenSupply": "6169392471037907915033116" }, { "type": "swap_fp_to_mp", - "inputQty": "364123638558989335134208", + "inputQty": "224110069139434226319360", "outputIndex": 0, - "outputQty": "365211539316592774985614", + "outputQty": "226866605641227590476389", "swapFee": "0", - "redemptionFee": "145851921196201198180", + "redemptionFee": "135080496213075643057", "mpReserves": [ - "57560547323323837383968885", - "25529413588153270238493154", - "23432855528265105277892492" + "56198611736012682759294863", + "10715067590972723967869279", + "36377178179761263380704839" ], "fpReserves": [ - "7407723300846712464937874", - "6360109832481775581562416" + "3945007091441965172595323", + "2351489603732481749838673" ], - "mAssetSupply": "106487463157537917029641120", - "LPTokenSupply": "13647243006116524916160693" + "mAssetSupply": "103047517219757156385377607", + "LPTokenSupply": "6169392471037907915033116" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "2501581395238576979968", - "outputQty0": "2523358831347167688124", - "outputQty": "2527359336846884827738", - "swapFee1": "1500948837143146187", - "swapFee2": "1009343532538867075", + "outputIndex": 2, + "inputQty": "3581764454250169344", + "outputQty0": "3658588803325996334", + "outputQty": "3668001761472446804", + "swapFee1": "2149058672550101", + "swapFee2": "2195153281995597", "mpReserves": [ - "57558019963986990499141147", - "25529413588153270238493154", - "23432855528265105277892492" + "56198611736012682759294863", + "10715067590972723967869279", + "36377174511759501908258035" ], "fpReserves": [ - "7405199942015365297249750", - "6360109832481775581562416" + "3945003432853161846598989", + "2351489603732481749838673" ], - "mAssetSupply": "106484940808050102400820071", - "LPTokenSupply": "13644741574816170053495343" + "mAssetSupply": "103047513563363506341376870", + "LPTokenSupply": "6169388889488359532118782" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "321629165433016467587072", - "outputQty0": "322224644658343223553947", - "outputQty": "319230687720030972937859", + "type": "redeem", + "outputIndex": 1, + "inputQty": "41049711698857162702848", + "outputQty0": "41929425567699878668810", + "outputQty": "40635993299804798402640", + "swapFee1": "24629827019314297621", + "swapFee2": "25157655340619927201", "mpReserves": [ - "57558019963986990499141147", - "25529413588153270238493154", - "23754484693698121745479564" + "56198611736012682759294863", + "10674431597672919169466639", + "36377174511759501908258035" ], "fpReserves": [ - "7727424586673708520803697", - "6360109832481775581562416" + "3903074007285461967930179", + "2351489603732481749838673" ], - "mAssetSupply": "106807165452708445624374018", - "LPTokenSupply": "13963972262536201026433202" + "mAssetSupply": "103005609295451147082635261", + "LPTokenSupply": "6128341640772204300845696" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1735156577393439145984", - "outputQty0": "1750494703799738757866", - "outputQty": "1747402669081092261023", - "swapFee1": "1041093946436063487", - "swapFee2": "700197881519895503", + "type": "mint", + "inputIndex": 1, + "inputQty": "380846528042575887073280", + "outputQty0": "392367076252588672671965", + "outputQty": "383846407641398056900502", "mpReserves": [ - "57558019963986990499141147", - "25527666185484189146232131", - "23754484693698121745479564" + "56198611736012682759294863", + "11055278125715495056539919", + "36377174511759501908258035" ], "fpReserves": [ - "7725674091969908782045831", - "6360109832481775581562416" + "4295441083538050640602144", + "2351489603732481749838673" ], - "mAssetSupply": "106805415658202527405511655", - "LPTokenSupply": "13962237210068202230893566" + "mAssetSupply": "103397976371703735755307226", + "LPTokenSupply": "6512188048413602357746198" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "574383902811584657883136", - "outputQty0": "579391000709567917307061", - "outputQty": "578336643215165465815099", - "swapFee1": "344630341686950794729", - "swapFee2": "231756400283827166922", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "60323009805567796445184", + "outputQty0": "60141845473963985101461", + "outputQty": "59804532045749647319305", + "swapFee": "47059818182364693135", "mpReserves": [ - "57558019963986990499141147", - "24949329542269023680417032", - "23754484693698121745479564" + "56198611736012682759294863", + "11055278125715495056539919", + "36437497521565069704703219" ], "fpReserves": [ - "7146283091260340864738770", - "6360109832481775581562416" + "4355582929012014625703605", + "2291685071686732102519368" ], - "mAssetSupply": "106226256413893243315371516", - "LPTokenSupply": "13387887770290786268089902" + "mAssetSupply": "103458118217177699740408687", + "LPTokenSupply": "6512192754395420594215511" }, { - "type": "swap_fp_to_mp", - "inputQty": "23713424505688888967168", - "outputIndex": 2, - "outputQty": "23679450892420914974187", - "swapFee": "0", - "redemptionFee": "9492509759506561411", + "type": "mint", + "inputIndex": 1, + "inputQty": "66613121709381672960", + "outputQty0": "68560603435790313989", + "outputQty": "67050912497550956783", "mpReserves": [ - "57558019963986990499141147", - "24949329542269023680417032", - "23730805242805700830505377" + "56198611736012682759294863", + "11055344738837204438212879", + "36437497521565069704703219" ], "fpReserves": [ - "7122551816861574461209714", - "6383823256987464470529584" + "4355651489615450416017594", + "2291685071686732102519368" ], - "mAssetSupply": "106202534632004236418403871", - "LPTokenSupply": "13387887770290786268089902" + "mAssetSupply": "103458186777781135530722676", + "LPTokenSupply": "6512259805307918145172294" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "6338933481840805888", - "outputQty0": "6348287041844396423", - "outputQty": "6338587428966135490", - "swapFee": "5032342354568219", + "type": "mint", + "inputIndex": 0, + "inputQty": "2773919584458281844736", + "outputQty0": "2751867002375601968769", + "outputQty": "2691268298569199530398", "mpReserves": [ - "57558019963986990499141147", - "24949335881202505521222920", - "23730805242805700830505377" + "56201385655597141041139599", + "11055344738837204438212879", + "36437497521565069704703219" ], "fpReserves": [ - "7122558165148616305606137", - "6383816918400035504394094" + "4358403356617826017986363", + "2291685071686732102519368" ], - "mAssetSupply": "106202540980291278262800294", - "LPTokenSupply": "13387887770794020503546723" + "mAssetSupply": "103460938644783511132691445", + "LPTokenSupply": "6514951073606487344702692" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "43366632900223511298048", - "outputQty0": "43444064346760382248939", - "outputQty": "43375802796290611063770", - "swapFee": "34438154578825902659", + "type": "swap_fp_to_mp", + "inputQty": "300895917888177776361472", + "outputIndex": 1, + "outputQty": "293141775767167204389633", + "swapFee": "0", + "redemptionFee": "181276511756661444906", "mpReserves": [ - "57558019963986990499141147", - "24949335881202505521222920", - "23774171875705924341803425" + "56201385655597141041139599", + "10762202963070037233823246", + "36437497521565069704703219" ], "fpReserves": [ - "7166002229495376687855076", - "6340441115603744893330324" + "4056275837023390276475434", + "2592580989574909878880840" ], - "mAssetSupply": "106245985044638038645049233", - "LPTokenSupply": "13387891214609478386136988" + "mAssetSupply": "103158992401700832052625422", + "LPTokenSupply": "6514951073606487344702692" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "111936880293087723651072", - "outputQty0": "112101108503040766982828", - "outputQty": "111907482899666637360873", - "swapFee": "88857492681398137576", + "type": "swap_fp_to_mp", + "inputQty": "382557758604702755323904", + "outputIndex": 0, + "outputQty": "386345227373122811221153", + "swapFee": "0", + "redemptionFee": "230060120874087368059", "mpReserves": [ - "57558019963986990499141147", - "25061272761495593244873992", - "23774171875705924341803425" + "55815040428224018229918446", + "10762202963070037233823246", + "36437497521565069704703219" ], "fpReserves": [ - "7278103337998417454837904", - "6228533632704078255969451" + "3672842302233244663043692", + "2975138748179612634204744" ], - "mAssetSupply": "106358086153141079412032061", - "LPTokenSupply": "13387900100358746525950745" + "mAssetSupply": "102775788927031560526561739", + "LPTokenSupply": "6514951073606487344702692" }, { "type": "mint", "inputIndex": 2, - "inputQty": "4477655737082528137216", - "outputQty0": "4485653567424391606037", - "outputQty": "4444079966326827766126", + "inputQty": "41427513176331198464", + "outputQty0": "41295597632308545007", + "outputQty": "40443511466161168503", "mpReserves": [ - "57558019963986990499141147", - "25061272761495593244873992", - "23778649531443006869940641" + "55815040428224018229918446", + "10762202963070037233823246", + "36437538949078246035901683" ], "fpReserves": [ - "7282588991565841846443941", - "6228533632704078255969451" + "3672883597830876971588699", + "2975138748179612634204744" ], - "mAssetSupply": "106362571806708503803638098", - "LPTokenSupply": "13392344180325073353716871" + "mAssetSupply": "102775830222629192835106746", + "LPTokenSupply": "6514991517117953505871195" }, { "type": "swap_fp_to_mp", - "inputQty": "143286720726864379904", + "inputQty": "143765986218799798419456", "outputIndex": 0, - "outputQty": "143664652926294863153", + "outputQty": "145012497530923670768280", "swapFee": "0", - "redemptionFee": "57374655806401322", + "redemptionFee": "86356254397724349635", "mpReserves": [ - "57557876299334064204277994", - "25061272761495593244873992", - "23778649531443006869940641" + "55670027930693094559150166", + "10762202963070037233823246", + "36437538949078246035901683" ], "fpReserves": [ - "7282445554926325843138315", - "6228676919424805120349355" + "3528956507168003055529365", + "3118904734398412432624200" ], - "mAssetSupply": "106362428427443643606733794", - "LPTokenSupply": "13392344180325073353716871" + "mAssetSupply": "102631989488220716643397047", + "LPTokenSupply": "6514991517117953505871195" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "526522052170878847811584", - "outputQty0": "527263183554181935165081", - "outputQty": "526000560701394031538875", - "swapFee": "417854425778039363263", + "type": "swap_fp_to_mp", + "inputQty": "81885167036775759872", + "outputIndex": 1, + "outputQty": "79483342827731969952", + "swapFee": "0", + "redemptionFee": "49171552264959200", "mpReserves": [ - "57557876299334064204277994", - "25587794813666472092685576", - "23778649531443006869940641" + "55670027930693094559150166", + "10762123479727209501853294", + "36437538949078246035901683" ], "fpReserves": [ - "7809708738480507778303396", - "5702676358723411088810480" + "3528874554580894790194535", + "3118986619565449208384072" ], - "mAssetSupply": "106889691610997825541898875", - "LPTokenSupply": "13392385965767651157653197" + "mAssetSupply": "102631907584805160643021417", + "LPTokenSupply": "6514991517117953505871195" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "29781089397331191660544", - "outputQty0": "29834996061987142499979", - "outputQty": "29542794983563615640662", - "mpReserves": [ - "57557876299334064204277994", - "25587794813666472092685576", - "23808430620840338061601185" - ], - "fpReserves": [ - "7839543734542494920803375", - "5702676358723411088810480" - ], - "mAssetSupply": "106919526607059812684398854", - "LPTokenSupply": "13421928760751214773293859" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "205881584996190060544", - "outputQty0": "205479477482197076264", - "outputQty": "204864437098856031072", - "swapFee": "162772640898958858", + "inputIndex": 1, + "inputQty": "9391041673549508608", + "outputQty0": "9676977708431605400", + "outputQty": "9479904312804906403", "mpReserves": [ - "57558082180919060394338538", - "25587794813666472092685576", - "23808430620840338061601185" + "55670027930693094559150166", + "10762132870768883051361902", + "36437538949078246035901683" ], "fpReserves": [ - "7839749214019977117879639", - "5702471494286312232779408" + "3528884231558603221799935", + "3118986619565449208384072" ], - "mAssetSupply": "106919732086537294881475118", - "LPTokenSupply": "13421928777028478863189744" + "mAssetSupply": "102631917261782869074626817", + "LPTokenSupply": "6515000997022266310777598" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "553739736565632697630720", - "outputQty0": "554707386428740350752258", - "outputQty": "549211102432620393205112", + "type": "swap_fp_to_mp", + "inputQty": "33523120641660493496320", + "outputIndex": 0, + "outputQty": "33800841475063055273940", + "swapFee": "0", + "redemptionFee": "20129057703850195092", "mpReserves": [ - "57558082180919060394338538", - "25587794813666472092685576", - "24362170357405970759231905" + "55636227089218031503876226", + "10762132870768883051361902", + "36437538949078246035901683" ], "fpReserves": [ - "8394456600448717468631897", - "5702471494286312232779408" + "3495335802052186229978754", + "3152509740207109701880392" ], - "mAssetSupply": "107474439472966035232227376", - "LPTokenSupply": "13971139879461099256394856" + "mAssetSupply": "102598388961334155933000728", + "LPTokenSupply": "6515000997022266310777598" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "201240184919557341184", - "outputQty0": "201519869019802374305", - "outputQty": "200811122135280833003", - "swapFee": "159601325822947839", + "type": "redeem", + "outputIndex": 2, + "inputQty": "518949245651652647583744", + "outputQty0": "529248393247071443041201", + "outputQty": "530590378178695611421144", + "swapFee1": "311369547390991588550", + "swapFee2": "317549035948242865824", "mpReserves": [ - "57558082180919060394338538", - "25587996053851391650026760", - "24362170357405970759231905" + "55636227089218031503876226", + "10762132870768883051361902", + "35906948570899550424480539" ], "fpReserves": [ - "8394658120317737271006202", - "5702270683164176951946405" + "2966087408805114786937553", + "3152509740207109701880392" ], - "mAssetSupply": "107474640992835055034601681", - "LPTokenSupply": "13971139895421231838689639" + "mAssetSupply": "102069458117123032732825351", + "LPTokenSupply": "5996082888325352762352709" }, { - "type": "swap_fp_to_mp", - "inputQty": "9780947216458391224320", - "outputIndex": 0, - "outputQty": "9822408236717012410949", - "swapFee": "0", - "redemptionFee": "3923002646723944565", + "type": "redeem", + "outputIndex": 2, + "inputQty": "65899042591151239462912", + "outputQty0": "67188532282467773497066", + "outputQty": "67353571377388101157693", + "swapFee1": "39539425554690743677", + "swapFee2": "40313119369480664098", "mpReserves": [ - "57548259772682343381927589", - "25587996053851391650026760", - "24362170357405970759231905" + "55636227089218031503876226", + "10762132870768883051361902", + "35839594999522162323322846" ], "fpReserves": [ - "8384850613700927409592278", - "5712051630380635343170725" + "2898898876522647013440487", + "3152509740207109701880392" ], - "mAssetSupply": "107464837409220891897132322", - "LPTokenSupply": "13971139895421231838689639" + "mAssetSupply": "102002309897959934439992383", + "LPTokenSupply": "5930187799676756991964164" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "74933115052651695833088", - "outputQty0": "75036708449191548567119", - "outputQty": "74284831845366982806016", + "inputQty": "59364572117767557218304", + "outputQty0": "61142802128699217595634", + "outputQty": "61119686873688563620368", + "swapFee": "47946570972004779813", "mpReserves": [ - "57548259772682343381927589", - "25662929168904043345859848", - "24362170357405970759231905" + "55636227089218031503876226", + "10821497442886650608580206", + "35839594999522162323322846" ], "fpReserves": [ - "8459887322150118958159397", - "5712051630380635343170725" + "2960041678651346231036121", + "3091390053333421138260024" ], - "mAssetSupply": "107539874117670083445699441", - "LPTokenSupply": "14045424727266598821495655" + "mAssetSupply": "102063452700088633657588017", + "LPTokenSupply": "5930192594333854192442145" }, { "type": "swap_fp_to_mp", - "inputQty": "14823223678415180660736", + "inputQty": "7528593472445246464", "outputIndex": 1, - "outputQty": "14837718673117140810397", + "outputQty": "7304316478311046708", "swapFee": "0", - "redemptionFee": "5945638861679863935", + "redemptionFee": "4515856353647454", "mpReserves": [ - "57548259772682343381927589", - "25648091450230926205049451", - "24362170357405970759231905" + "55636227089218031503876226", + "10821490138570172297533498", + "35839594999522162323322846" ], "fpReserves": [ - "8445023224995919298319987", - "5726874854059050523831461" + "2960034152224090151945878", + "3091397581926893583506488" ], - "mAssetSupply": "107525015966154745465723966", - "LPTokenSupply": "14045424727266598821495655" + "mAssetSupply": "102063445178177233932145228", + "LPTokenSupply": "5930192594333854192442145" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "29863141263937875968", - "outputQty0": "29913663865212018459", - "outputQty": "29613916101115744243", + "type": "redeem", + "outputIndex": 2, + "inputQty": "28476709448913891885056", + "outputQty0": "29036708472367981914041", + "outputQty": "29106794728941284567754", + "swapFee1": "17086025669348335131", + "swapFee2": "17422025083420789148", "mpReserves": [ - "57548259772682343381927589", - "25648091450230926205049451", - "24362200220547234697107873" + "55636227089218031503876226", + "10821490138570172297533498", + "35810488204793221038755092" ], "fpReserves": [ - "8445053138659784510338446", - "5726874854059050523831461" + "2930997443751722170031837", + "3091397581926893583506488" ], - "mAssetSupply": "107525045879818610677742425", - "LPTokenSupply": "14045454341182699937239898" + "mAssetSupply": "102034425891729949371020335", + "LPTokenSupply": "5901717593487507235390602" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "33403028451722459611136", - "outputQty0": "33459425024454428177744", - "outputQty": "33340002314115900555368", - "swapFee": "26499149674640647797", + "inputIndex": 0, + "inputQty": "295288151521712060497920", + "outputQty0": "292899427487834660763638", + "outputQty": "292579422407015485924842", + "swapFee": "229628638480694677678", "mpReserves": [ - "57548259772682343381927589", - "25648091450230926205049451", - "24395603248998957156719009" + "55931515240739743564374146", + "10821490138570172297533498", + "35810488204793221038755092" ], "fpReserves": [ - "8478512563684238938516190", - "5693534851744934623276093" + "3223896871239556830795475", + "2798818159519878097581646" ], - "mAssetSupply": "107558505304843065105920169", - "LPTokenSupply": "14045456991097667401304677" + "mAssetSupply": "102327325319217784031783973", + "LPTokenSupply": "5901740556351355304858369" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "46802686694119228571648", - "outputQty0": "47249191770742874129940", - "outputQty": "47320644294456740500381", - "swapFee1": "28081612016471537142", - "swapFee2": "18899676708297149651", + "inputQty": "1225990632791302471680", + "outputQty0": "1250918529311314832428", + "outputQty": "1260399979110027582227", + "swapFee1": "735594379674781483", + "swapFee2": "750551117586788899", "mpReserves": [ - "57500939128387886641427208", - "25648091450230926205049451", - "24395603248998957156719009" + "55930254840760633536791919", + "10821490138570172297533498", + "35810488204793221038755092" ], "fpReserves": [ - "8431263371913496064386250", - "5693534851744934623276093" + "3222645952710245515963047", + "2798818159519878097581646" ], - "mAssetSupply": "107511275012749030528939880", - "LPTokenSupply": "13998657112564749819886743" + "mAssetSupply": "102326075151239590303740444", + "LPTokenSupply": "5900514639278001969864837" }, { - "type": "swap_fp_to_mp", - "inputQty": "167025361890198028288", - "outputIndex": 0, - "outputQty": "167741658130391018977", - "swapFee": "0", - "redemptionFee": "66995433885392856", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "106187101139746464727040", + "outputQty0": "105323984160569477828264", + "outputQty": "105115353066800114724635", + "swapFee": "82526388125634850109", "mpReserves": [ - "57500771386729756250408231", - "25648091450230926205049451", - "24395603248998957156719009" + "56036441941900380001518959", + "10821490138570172297533498", + "35810488204793221038755092" ], "fpReserves": [ - "8431095883328782582243950", - "5693701877106824821304381" + "3327969936870814993791311", + "2693702806453077982857011" ], - "mAssetSupply": "107511107591159750932190436", - "LPTokenSupply": "13998657112564749819886743" + "mAssetSupply": "102431399135400159781568708", + "LPTokenSupply": "5900522891916814533349847" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "4749464802839736877056", - "outputQty0": "4794735964120709421009", - "outputQty": "4784768198894593778529", - "swapFee1": "2849678881703842126", - "swapFee2": "1917894385648283768", + "inputQty": "9626198199574951100416", + "outputQty0": "9824172810881173675990", + "outputQty": "9847538132639986204561", + "swapFee1": "5775718919744970660", + "swapFee2": "5894503686528704205", "mpReserves": [ - "57500771386729756250408231", - "25648091450230926205049451", - "24390818480800062562940480" + "56036441941900380001518959", + "10821490138570172297533498", + "35800640666660581052550531" ], "fpReserves": [ - "8426301147364661872822941", - "5693701877106824821304381" + "3318145764059933820115321", + "2693702806453077982857011" ], - "mAssetSupply": "107506314773090015871053195", - "LPTokenSupply": "13993907932729798253393899" + "mAssetSupply": "102421580857092965136596923", + "LPTokenSupply": "5890897271289131556746497" }, { - "type": "swap_fp_to_mp", - "inputQty": "46345992825335466426368", - "outputIndex": 0, - "outputQty": "46541977417907337689965", - "swapFee": "0", - "redemptionFee": "18588720947173675796", + "type": "mint", + "inputIndex": 2, + "inputQty": "89769641954663485931520", + "outputQty0": "89501952023764104901503", + "outputQty": "87642370147459111483260", "mpReserves": [ - "57454229409311848912718266", - "25648091450230926205049451", - "24390818480800062562940480" + "56036441941900380001518959", + "10821490138570172297533498", + "35890410308615244538482051" ], "fpReserves": [ - "8379829344996727683331254", - "5740047869932160287730749" + "3407647716083697925016824", + "2693702806453077982857011" ], - "mAssetSupply": "107459861559443028855237304", - "LPTokenSupply": "13993907932729798253393899" + "mAssetSupply": "102511082809116729241498426", + "LPTokenSupply": "5978539641436590668229757" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "22103107927650876", - "outputQty0": "22312801517951112", - "outputQty": "22273262597221137", - "swapFee1": "13261864756590", - "swapFee2": "8925120607180", + "type": "mint", + "inputIndex": 1, + "inputQty": "222813185131036184412160", + "outputQty0": "229388173601443588367982", + "outputQty": "224589697224665217882960", "mpReserves": [ - "57454229409311848912718266", - "25648091427957663607828314", - "24390818480800062562940480" + "56036441941900380001518959", + "11044303323701208481945658", + "35890410308615244538482051" ], "fpReserves": [ - "8379829322683926165380142", - "5740047869932160287730749" + "3637035889685141513384806", + "2693702806453077982857011" ], - "mAssetSupply": "107459861537139152457893372", - "LPTokenSupply": "13993907910628016512218682" + "mAssetSupply": "102740470982718172829866408", + "LPTokenSupply": "6203129338661255886112717" }, { - "type": "swap_fp_to_mp", - "inputQty": "307153530636734758912", - "outputIndex": 2, - "outputQty": "307331195659922847643", - "swapFee": "0", - "redemptionFee": "123188273648068915", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "12198082485870678507520", + "outputQty0": "12550369435479575029542", + "outputQty": "12514104163384636000768", + "swapFee": "9829219928867053508", "mpReserves": [ - "57454229409311848912718266", - "25648091427957663607828314", - "24390511149604402640092837" + "56036441941900380001518959", + "11056501406187079160453178", + "35890410308615244538482051" ], "fpReserves": [ - "8379521351999805993090343", - "5740355023462797022489661" + "3649586259120621088414348", + "2681188702289693346856243" ], - "mAssetSupply": "107459553689643305933672488", - "LPTokenSupply": "13993907910628016512218682" + "mAssetSupply": "102753021352153652404895950", + "LPTokenSupply": "6203130321583248772818067" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "2597543199836165120", - "outputQty0": "2601907016338956589", - "outputQty": "2575908809701382681", - "mpReserves": [ - "57454229409311848912718266", - "25648091427957663607828314", - "24390513747147602476257957" - ], - "fpReserves": [ - "8379523953906822332046932", - "5740355023462797022489661" - ], - "mAssetSupply": "107459556291550322272629077", - "LPTokenSupply": "13993910486536826213601363" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "515227530511901", - "outputQty0": "520115377451319", - "outputQty": "520900149194995", - "swapFee1": "309136518307", - "swapFee2": "208046150980", + "inputQty": "10632647727488854016", + "outputQty0": "10602029710968185056", + "outputQty": "10571076824859840690", + "swapFee": "8303137390854258", "mpReserves": [ - "57454229408790948763523271", - "25648091427957663607828314", - "24390513747147602476257957" + "56036441941900380001518959", + "11056501406187079160453178", + "35890420941262972027336067" ], "fpReserves": [ - "8379523953386706954595613", - "5740355023462797022489661" + "3649596861150332056599404", + "2681178131212868487015553" ], - "mAssetSupply": "107459556291030414941328738", - "LPTokenSupply": "13993910486021629596741292" + "mAssetSupply": "102753031954183363373081006", + "LPTokenSupply": "6203130322413562511903492" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "409690515103230656512", - "outputQty0": "410378769032613282106", - "outputQty": "406278240015812700316", + "inputQty": "119215834385851925659648", + "outputQty0": "118870668536037433363549", + "outputQty": "118489042023166584431430", + "swapFee": "93090603131818762736", "mpReserves": [ - "57454229408790948763523271", - "25648091427957663607828314", - "24390923437662705706914469" + "56036441941900380001518959", + "11056501406187079160453178", + "36009636775648823952995715" ], "fpReserves": [ - "8379934332155739567877719", - "5740355023462797022489661" + "3768467529686369489962953", + "2562689089189701902584123" ], - "mAssetSupply": "107459966669799447554610844", - "LPTokenSupply": "13994316764261645409441608" + "mAssetSupply": "102871902622719400806444555", + "LPTokenSupply": "6203139631473875693779765" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "37978253542961332224", - "outputQty0": "38338550351996205163", - "outputQty": "38270613008526103625", - "swapFee1": "22786952125776799", - "swapFee2": "15335420140798482", + "outputIndex": 2, + "inputQty": "179429813188142403944448", + "outputQty0": "183209836526593703833558", + "outputQty": "183630018096241356044944", + "swapFee1": "107657887912885442366", + "swapFee2": "109925901915956222300", "mpReserves": [ - "57454229408790948763523271", - "25648053157344655081724689", - "24390923437662705706914469" + "56036441941900380001518959", + "11056501406187079160453178", + "35826006757552582596950771" ], "fpReserves": [ - "8379895993605387571672556", - "5740355023462797022489661" + "3585257693159775786129395", + "2562689089189701902584123" ], - "mAssetSupply": "107459928346584515699204163", - "LPTokenSupply": "13994278788286797660687063" + "mAssetSupply": "102688802712094723058833297", + "LPTokenSupply": "6023720584074524578379553" }, { - "type": "swap_fp_to_mp", - "inputQty": "41911724171033059328", - "outputIndex": 0, - "outputQty": "42086629593054460628", - "swapFee": "0", - "redemptionFee": "16809289703026743", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1753063855954801197056", + "outputQty0": "1789880064548616869812", + "outputQty": "1793941104633520720395", + "swapFee1": "1051838313572880718", + "swapFee2": "1073928038729170121", "mpReserves": [ - "57454187322161355709062643", - "25648053157344655081724689", - "24390923437662705706914469" + "56036441941900380001518959", + "11056501406187079160453178", + "35824212816447949076230376" ], "fpReserves": [ - "8379853970381130004814226", - "5740396935186968055548989" + "3583467813095227169259583", + "2562689089189701902584123" ], - "mAssetSupply": "107459886340169547835372576", - "LPTokenSupply": "13994278788286797660687063" + "mAssetSupply": "102687013905958213171133606", + "LPTokenSupply": "6021967625402401134470568" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "5200251764821507178496", - "outputQty0": "5190339683745195522558", - "outputQty": "5172396306574584291450", - "swapFee": "4110777830777980436", + "inputQty": "2313001861226065408", + "outputQty0": "2294583215179465139", + "outputQty": "2287422501118795039", + "swapFee": "1796830965870536", "mpReserves": [ - "57459387573926177216241139", - "25648053157344655081724689", - "24390923437662705706914469" + "56036444254902241227584367", + "11056501406187079160453178", + "35824212816447949076230376" ], "fpReserves": [ - "8385044310064875200336784", - "5735224538880393471257539" + "3583470107678442348724722", + "2562686801767200783789084" ], - "mAssetSupply": "107465076679853293030895134", - "LPTokenSupply": "13994279199364580738485106" + "mAssetSupply": "102687016200541428350598745", + "LPTokenSupply": "6021967625582084231057621" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "20644050676841394995200", "outputIndex": 2, - "inputQty": "2970383721404830318592", - "outputQty0": "2998577034550173159356", - "outputQty": "2992348878629893348814", - "swapFee1": "1782230232842898191", - "swapFee2": "1199430813820069263", + "outputQty": "20737914352973726028654", + "swapFee": "0", + "redemptionFee": "12414618364167568048", "mpReserves": [ - "57459387573926177216241139", - "25648053157344655081724689", - "24387931088784075813565655" + "56036444254902241227584367", + "11056501406187079160453178", + "35803474902094975350201722" ], "fpReserves": [ - "8382045733030325027177428", - "5735224538880393471257539" + "3562779077071496401977694", + "2583330852444042178784284" ], - "mAssetSupply": "107462079302249556677805041", - "LPTokenSupply": "13991308993866199192456333" + "mAssetSupply": "102666337584552846571419765", + "LPTokenSupply": "6021967625582084231057621" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "62177707490940505030656", - "outputQty0": "62059069369373135756015", - "outputQty": "61437993177884263159627", + "type": "redeem", + "outputIndex": 1, + "inputQty": "840561096361833398272", + "outputQty0": "858175474493559732547", + "outputQty": "833643833243316905342", + "swapFee1": "504336657817100038", + "swapFee2": "514905284696135839", "mpReserves": [ - "57521565281417117721271795", - "25648053157344655081724689", - "24387931088784075813565655" + "56036444254902241227584367", + "11055667762353835843547836", + "35803474902094975350201722" ], "fpReserves": [ - "8444104802399698162933443", - "5735224538880393471257539" + "3561920901597002842245147", + "2583330852444042178784284" ], - "mAssetSupply": "107524138371618929813561056", - "LPTokenSupply": "14052746987044083455615960" + "mAssetSupply": "102665479923983637707823057", + "LPTokenSupply": "6021127114919388179369352" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "2649248522801208360960", - "outputQty0": "2674454294530728321503", - "outputQty": "2678499434485715887762", - "swapFee1": "1589549113680725016", - "swapFee2": "1069781717812291328", + "type": "swap_fp_to_mp", + "inputQty": "56826270409620811939840", + "outputIndex": 2, + "outputQty": "57072980175767515866643", + "swapFee": "0", + "redemptionFee": "34166709689877891704", "mpReserves": [ - "57518886781982632005384033", - "25648053157344655081724689", - "24387931088784075813565655" + "56036444254902241227584367", + "11055667762353835843547836", + "35746401921919207834335079" ], "fpReserves": [ - "8441430348105167434611940", - "5735224538880393471257539" + "3504976385447206356071266", + "2640157122853662990724124" ], - "mAssetSupply": "107521464987106116897530881", - "LPTokenSupply": "14050097897476193615327501" + "mAssetSupply": "102608569574543531099540880", + "LPTokenSupply": "6021127114919388179369352" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2492747965095512375296", - "outputQty0": "2496946691858949313879", - "outputQty": "2471929648724446338805", + "type": "redeem", + "outputIndex": 0, + "inputQty": "5291521251803670528", + "outputQty0": "5401762571666815305", + "outputQty": "5441890912758029877", + "swapFee1": "3174912751082202", + "swapFee2": "3241057543000089", "mpReserves": [ - "57518886781982632005384033", - "25648053157344655081724689", - "24390423836749171325940951" + "56036438813011328469554490", + "11055667762353835843547836", + "35746401921919207834335079" ], "fpReserves": [ - "8443927294797026383925819", - "5735224538880393471257539" + "3504970983684634689255961", + "2640157122853662990724124" ], - "mAssetSupply": "107523961933797975846844760", - "LPTokenSupply": "14052569827124918061666306" + "mAssetSupply": "102608564176022016975725664", + "LPTokenSupply": "6021121823715627650807044" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "274450035605366432", - "outputQty0": "273926002884868731", - "outputQty": "272962346131457873", - "swapFee": "216945116140692", + "type": "redeem", + "outputIndex": 1, + "inputQty": "6161112602306731008", + "outputQty0": "6289470591325743878", + "outputQty": "6109829108640017861", + "swapFee1": "3696667561384038", + "swapFee2": "3773682354795446", "mpReserves": [ - "57518887056432667610750465", - "25648053157344655081724689", - "24390423836749171325940951" + "56036438813011328469554490", + "11055661652524727203529975", + "35746401921919207834335079" ], "fpReserves": [ - "8443927568723029268794550", - "5735224265918047339799666" + "3504964694214043363512083", + "2640157122853662990724124" ], - "mAssetSupply": "107523962207723978731713491", - "LPTokenSupply": "14052569827146612573280375" + "mAssetSupply": "102608557890325108004777232", + "LPTokenSupply": "6021115662972692100214439" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "96859061115674662273024", - "outputQty0": "96673871153115969321603", - "outputQty": "96322918285374362811472", - "swapFee": "76562797046235818752", + "inputIndex": 1, + "inputQty": "16903237350213407473664", + "outputQty0": "17389042489485746969352", + "outputQty": "17340734593104154467367", + "swapFee": "13619045843260841787", "mpReserves": [ - "57615746117548342273023489", - "25648053157344655081724689", - "24390423836749171325940951" + "56036438813011328469554490", + "11072564889874940611003639", + "35746401921919207834335079" ], "fpReserves": [ - "8540601439876145238116153", - "5638901347632672976988194" + "3522353736703529110481435", + "2622816388260558836256757" ], - "mAssetSupply": "107620636078877094701035094", - "LPTokenSupply": "14052577483426317196862250" + "mAssetSupply": "102625946932814593751746584", + "LPTokenSupply": "6021117024877276426298617" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "9130963171044639113216", - "outputQty0": "9143591081422614566243", - "outputQty": "9109260827499307181024", - "swapFee": "7240874129387422569", + "type": "swap_fp_to_mp", + "inputQty": "3383700427229530423296", + "outputIndex": 1, + "outputQty": "3293940990678010605577", + "swapFee": "0", + "redemptionFee": "2034316588951992973", "mpReserves": [ - "57615746117548342273023489", - "25657184120515699720837905", - "24390423836749171325940951" + "56036438813011328469554490", + "11069270948884262600398062", + "35746401921919207834335079" ], "fpReserves": [ - "8549745030957567852682396", - "5629792086805173669807170" + "3518963209055275788859636", + "2626200088687788366680053" ], - "mAssetSupply": "107629779669958517315601337", - "LPTokenSupply": "14052578207513730135604506" + "mAssetSupply": "102622558439482929382117758", + "LPTokenSupply": "6021117024877276426298617" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "89822024702733349552128", - "outputQty0": "90684639198894852454652", - "outputQty": "90494513734848690952075", - "swapFee1": "53893214821640009731", - "swapFee2": "36273855679557940981", + "outputIndex": 0, + "inputQty": "328491737144146731728896", + "outputQty0": "335294119446364990656198", + "outputQty": "337770573450421444012985", + "swapFee1": "197095042286488039037", + "swapFee2": "201176471667818994393", "mpReserves": [ - "57615746117548342273023489", - "25657184120515699720837905", - "24299929323014322634988876" + "55698668239560907025541505", + "11069270948884262600398062", + "35746401921919207834335079" ], "fpReserves": [ - "8459060391758673000227744", - "5629792086805173669807170" + "3183669089608910798203438", + "2626200088687788366680053" ], - "mAssetSupply": "107539131304615302021087666", - "LPTokenSupply": "13962761572132478950053351" + "mAssetSupply": "102287465496508232210455953", + "LPTokenSupply": "5692644997237358343373624" }, { "type": "swap_fp_to_mp", - "inputQty": "7696273933590295740416", - "outputIndex": 0, - "outputQty": "7730198325844944324196", + "inputQty": "8293835872094460928", + "outputIndex": 1, + "outputQty": "8069852604995956251", "swapFee": "0", - "redemptionFee": "3087378748726009251", + "redemptionFee": "4982747007693482", "mpReserves": [ - "57608015919222497328699293", - "25657184120515699720837905", - "24299929323014322634988876" + "55698668239560907025541505", + "11069262879031657604441811", + "35746401921919207834335079" ], "fpReserves": [ - "8451341944886857977098083", - "5637488360738763965547586" + "3183660785030564642399164", + "2626208382523660461140981" ], - "mAssetSupply": "107531415945122235723967256", - "LPTokenSupply": "13962761572132478950053351" + "mAssetSupply": "102287457196912633062345161", + "LPTokenSupply": "5692644997237358343373624" }, { "type": "swap_fp_to_mp", - "inputQty": "536422462907080918433792", + "inputQty": "40589560541608402944", "outputIndex": 1, - "outputQty": "536657408599304201380505", + "outputQty": "39493389823329731384", "swapFee": "0", - "redemptionFee": "215055091850410582817", + "redemptionFee": "24385277287293500", "mpReserves": [ - "57608015919222497328699293", - "25120526711916395519457400", - "24299929323014322634988876" + "55698668239560907025541505", + "11069223385641834274710427", + "35746401921919207834335079" ], "fpReserves": [ - "7913704215260831520054436", - "6173910823645844883981378" + "3183620142901752486564887", + "2626248972084202069543925" ], - "mAssetSupply": "106993993270588059677506426", - "LPTokenSupply": "13962761572132478950053351" + "mAssetSupply": "102287416579169098193804384", + "LPTokenSupply": "5692644997237358343373624" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4854778860035005440", - "outputQty0": "4862940068768516249", - "outputQty": "4850862476356287203", - "swapFee": "3853023279932656", + "inputIndex": 1, + "inputQty": "931168539695544401920", + "outputQty0": "957676221916304177386", + "outputQty": "955670264315232587736", + "swapFee": "750243224008730383", "mpReserves": [ - "57608015919222497328699293", - "25120526711916395519457400", - "24299934177793182669994316" + "55698668239560907025541505", + "11070154554181529819112347", + "35746401921919207834335079" ], "fpReserves": [ - "7913709078200900288570685", - "6173905972783368527694175" + "3184577819123668790742273", + "2625293301819886836956189" ], - "mAssetSupply": "106993998133528128446022675", - "LPTokenSupply": "13962761572517781278046616" + "mAssetSupply": "102288374255391014497981770", + "LPTokenSupply": "5692645072261680744246662" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "22622180607385420169216", - "outputQty0": "22660157048665985833461", - "outputQty": "22603351044216696309165", - "swapFee": "17954101865548952957", + "type": "swap_fp_to_mp", + "inputQty": "172978989874176544", + "outputIndex": 1, + "outputQty": "168309008851586356", + "swapFee": "0", + "redemptionFee": "103922279385854", "mpReserves": [ - "57608015919222497328699293", - "25120526711916395519457400", - "24322556358400568090163532" + "55698668239560907025541505", + "11070154385872520967525991", + "35746401921919207834335079" ], "fpReserves": [ - "7936369235249566274404146", - "6151302621739151831385010" + "3184577645919869814318053", + "2625293474798876711132733" ], - "mAssetSupply": "107016658290576794431856136", - "LPTokenSupply": "13962763367927967832941911" + "mAssetSupply": "102288374082291137800943404", + "LPTokenSupply": "5692645072261680744246662" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1080106587659955991478272", - "outputQty0": "1081801266370182268462634", - "outputQty": "1077732952020275557025831", - "swapFee": "856942500730283563350", + "inputQty": "1118526952534307", + "outputQty0": "1115327498574375", + "outputQty": "1112988760766736", + "swapFee": "873745668224", "mpReserves": [ - "57608015919222497328699293", - "25120526711916395519457400", - "25402662946060524081641804" + "55698668239560907025541505", + "11070154385872520967525991", + "35746401923037734786869386" ], "fpReserves": [ - "9018170501619748542866780", - "5073569669718876274359179" + "3184577647035197312892428", + "2625293473685887950365997" ], - "mAssetSupply": "108098459556946976700318770", - "LPTokenSupply": "13962849062178040861298246" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "59071612990401560576", - "outputQty0": "59162161760658491045", - "outputQty": "58857736344899972300", - "swapFee": "46823187727078409", - "mpReserves": [ - "57608015919222497328699293", - "25120585783529385921017976", - "25402662946060524081641804" - ], - "fpReserves": [ - "9018229663781509201357825", - "5073510811982531374386879" - ], - "mAssetSupply": "108098518719108737358809815", - "LPTokenSupply": "13962849066860359634006086" + "mAssetSupply": "102288374083406465299517779", + "LPTokenSupply": "5692645072261768118813484" }, { "type": "swap_fp_to_mp", - "inputQty": "96308023797661024", + "inputQty": "44927099825763115008", "outputIndex": 0, - "outputQty": "96872444085293441", + "outputQty": "45316238349392974168", "swapFee": "0", - "redemptionFee": "38691485596293", + "redemptionFee": "26991290191275945", "mpReserves": [ - "57608015822350053243405852", - "25120585783529385921017976", - "25402662946060524081641804" + "55698622923322557632567337", + "11070154385872520967525991", + "35746401923037734786869386" ], "fpReserves": [ - "9018229567052795210624159", - "5073510908290555172047903" + "3184532661551545186316547", + "2625338400785713713481005" ], - "mAssetSupply": "108098518622418714853672442", - "LPTokenSupply": "13962849066860359634006086" + "mAssetSupply": "102288329124914103364217843", + "LPTokenSupply": "5692645072261768118813484" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "15505898114727234502656", - "outputQty0": "15476692501843152648424", - "outputQty": "15311008432256651109123", + "inputIndex": 1, + "inputQty": "767820128224593890508800", + "outputQty0": "788252091350212454532540", + "outputQty": "771616269596153649940463", "mpReserves": [ - "57623521720464780477908508", - "25120585783529385921017976", - "25402662946060524081641804" + "55698622923322557632567337", + "11837974514097114858034791", + "35746401923037734786869386" ], "fpReserves": [ - "9033706259554638363272583", - "5073510908290555172047903" + "3972784752901757640849087", + "2625338400785713713481005" ], - "mAssetSupply": "108113995314920558006320866", - "LPTokenSupply": "13978160075292616285115209" + "mAssetSupply": "103076581216264315818750383", + "LPTokenSupply": "6464261341857921768753947" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1518910850190237635706880", - "outputQty0": "1515988961083331618180458", - "outputQty": "1503684516795622274358661", - "swapFee": "1199462959646068084623", + "type": "redeem", + "outputIndex": 0, + "inputQty": "120582354539161625559040", + "outputQty0": "123143583386000304716577", + "outputQty": "123982860027246976236359", + "swapFee1": "72349412723496975335", + "swapFee2": "73886150031600182829", "mpReserves": [ - "59142432570655018113615388", - "25120585783529385921017976", - "25402662946060524081641804" + "55574640063295310656330978", + "11837974514097114858034791", + "35746401923037734786869386" ], "fpReserves": [ - "10549695220637969981453041", - "3569826391494932897689242" + "3849641169515757336132510", + "2625338400785713713481005" ], - "mAssetSupply": "109629984276003889624501324", - "LPTokenSupply": "13978280021588580891923671" + "mAssetSupply": "102953511519028347114216635", + "LPTokenSupply": "6343686222260032492892440" }, { "type": "swap_fp_to_mp", - "inputQty": "568314604378660274176", - "outputIndex": 2, - "outputQty": "573705030081963582052", + "inputQty": "795268179331377135616", + "outputIndex": 1, + "outputQty": "777648324115209593148", "swapFee": "0", - "redemptionFee": "229931403715757483", + "redemptionFee": "478446138829250143", "mpReserves": [ - "59142432570655018113615388", - "25120585783529385921017976", - "25402089241030442118059752" + "55574640063295310656330978", + "11837196865772999648441643", + "35746401923037734786869386" ], "fpReserves": [ - "10549120392128680587743610", - "3570394706099311557963418" + "3848843759284375252559406", + "2626133668965045090616621" ], - "mAssetSupply": "109629409677426003946549376", - "LPTokenSupply": "13978280021588580891923671" + "mAssetSupply": "102952714587243103859893674", + "LPTokenSupply": "6343686222260032492892440" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2202848560623598960640", - "outputQty0": "2198523094203004706062", - "outputQty": "2170241581755774979792", + "inputIndex": 1, + "inputQty": "298169224001415938048", + "outputQty0": "305563272537035073224", + "outputQty": "299040979990575700483", "mpReserves": [ - "59144635419215641712576028", - "25120585783529385921017976", - "25402089241030442118059752" + "55574640063295310656330978", + "11837495034997001064379691", + "35746401923037734786869386" ], "fpReserves": [ - "10551318915222883592449672", - "3570394706099311557963418" + "3849149322556912287632630", + "2626133668965045090616621" ], - "mAssetSupply": "109631608200520206951255438", - "LPTokenSupply": "13980450263170336666903463" + "mAssetSupply": "102953020150515640894966898", + "LPTokenSupply": "6343985263240023068592923" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "468592521650399477760", - "outputQty0": "474414363672333735544", - "outputQty": "473487029066486555263", - "swapFee1": "281155512990239686", - "swapFee2": "189765745468933494", + "type": "swap_fp_to_mp", + "inputQty": "17046507647944171520", + "outputIndex": 1, + "outputQty": "16668796949056383555", + "swapFee": "0", + "redemptionFee": "10255438796346561", "mpReserves": [ - "59144635419215641712576028", - "25120585783529385921017976", - "25401615754001375631504489" + "55574640063295310656330978", + "11837478366200052007996136", + "35746401923037734786869386" ], "fpReserves": [ - "10550844500859211258714128", - "3570394706099311557963418" + "3849132230158918376696031", + "2626150715472693034788141" ], - "mAssetSupply": "109631133975922280086453388", - "LPTokenSupply": "13979981698764237566449671" + "mAssetSupply": "102953003068373085780376860", + "LPTokenSupply": "6343985263240023068592923" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "1776230248408025923584", - "outputQty0": "1772742243923464653739", - "outputQty": "1751238162169160344520", - "swapFee": "1399949297272470828", + "inputQty": "25054507429747169951744", + "outputQty0": "24870192164476169414414", + "outputQty": "24339081076160080747555", "mpReserves": [ - "59146411649464049738499612", - "25120585783529385921017976", - "25401615754001375631504489" + "55599694570725057826282722", + "11837478366200052007996136", + "35746401923037734786869386" ], "fpReserves": [ - "10552617243103134723367867", - "3568643467937142397618898" + "3874002422323394546110445", + "2626150715472693034788141" ], - "mAssetSupply": "109632906718166203551107127", - "LPTokenSupply": "13979981838759167293696753" + "mAssetSupply": "102977873260537561949791274", + "LPTokenSupply": "6368324344316183149340478" }, { - "type": "swap_fp_to_mp", - "inputQty": "163073963680551305216", - "outputIndex": 2, - "outputQty": "164622878102412148475", - "swapFee": "0", - "redemptionFee": "65978129377940769", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "30070550762119149649920", + "outputQty0": "30814796781000420215344", + "outputQty": "30703514642487726447041", + "swapFee": "24124834286424667733", "mpReserves": [ - "59146411649464049738499612", - "25120585783529385921017976", - "25401451131123273219356014" + "55599694570725057826282722", + "11867548916962171157646056", + "35746401923037734786869386" ], "fpReserves": [ - "10552452297779689871445266", - "3568806541900822948924114" + "3904817219104394966325789", + "2595447200830205308341100" ], - "mAssetSupply": "109632741838820888077125295", - "LPTokenSupply": "13979981838759167293696753" + "mAssetSupply": "103008688057318562370006618", + "LPTokenSupply": "6368326756799611791807251" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "150267141421699334144", - "outputQty0": "150511614450719082689", - "outputQty": "148684974680402027123", - "swapFee": "118859950492953124", + "type": "redeem", + "outputIndex": 1, + "inputQty": "226619837612052807680", + "outputQty0": "231443825485024715930", + "outputQty": "225732254451552420627", + "swapFee1": "135971902567231684", + "swapFee2": "138866295291014829", "mpReserves": [ - "59146411649464049738499612", - "25120736050670807620352120", - "25401451131123273219356014" + "55599694570725057826282722", + "11867323184707719605225429", + "35746401923037734786869386" ], "fpReserves": [ - "10552602809394140590527955", - "3568657856926142546896991" + "3904585775278909941609859", + "2595447200830205308341100" ], - "mAssetSupply": "109632892350435338796207984", - "LPTokenSupply": "13979981850645162342992065" + "mAssetSupply": "103008456752359372636305517", + "LPTokenSupply": "6368100150559189995722739" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2249334395148885295104", - "outputQty0": "2252993354689641571479", - "outputQty": "2224001672773551162891", + "type": "swap_fp_to_mp", + "inputQty": "140455512499508048035840", + "outputIndex": 1, + "outputQty": "137299196146273176367739", + "swapFee": "0", + "redemptionFee": "84487971319602030575", "mpReserves": [ - "59146411649464049738499612", - "25122985385065956505647224", - "25401451131123273219356014" + "55599694570725057826282722", + "11730023988561446428857690", + "35746401923037734786869386" ], "fpReserves": [ - "10554855802748830232099434", - "3568657856926142546896991" + "3763772489746239890650925", + "2735902713329713356376940" ], - "mAssetSupply": "109635145343790028437779463", - "LPTokenSupply": "13982205852317935894154956" + "mAssetSupply": "102867727954798022187377158", + "LPTokenSupply": "6368100150559189995722739" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "257791706325262368", - "outputQty0": "258210995003036916", - "outputQty": "254888179536620060", + "type": "redeem", + "outputIndex": 0, + "inputQty": "259288502708320140787712", + "outputQty0": "264702535337629049085292", + "outputQty": "266516694557851245197725", + "swapFee1": "155573101624992084472", + "swapFee2": "158821521202577429451", "mpReserves": [ - "59146411649464049738499612", - "25122985642857662830909592", - "25401451131123273219356014" + "55333177876167206581084997", + "11730023988561446428857690", + "35746401923037734786869386" ], "fpReserves": [ - "10554856060959825235136350", - "3568657856926142546896991" + "3499069954408610841565633", + "2735902713329713356376940" ], - "mAssetSupply": "109635145602001023440816379", - "LPTokenSupply": "13982206107206115430775016" + "mAssetSupply": "102603184240981595715721317", + "LPTokenSupply": "6108827205161032354143474" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "7761655148507415552", - "outputQty0": "7746414210111467417", - "outputQty": "7646728645852871832", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "9860046713351960576", + "outputQty0": "9834503639995983511", + "outputQty": "9810234360911548541", + "swapFee": "7702775290434206", "mpReserves": [ - "59146419411119198245915164", - "25122985642857662830909592", - "25401451131123273219356014" + "55333177876167206581084997", + "11730023988561446428857690", + "35746411783084448138829962" ], "fpReserves": [ - "10554863807374035346603767", - "3568657856926142546896991" + "3499079788912250837549144", + "2735892903095352444828399" ], - "mAssetSupply": "109635153348415233552283796", - "LPTokenSupply": "13982213753934761283646848" + "mAssetSupply": "102603194075485235711704828", + "LPTokenSupply": "6108827205931309883186894" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "54751492520743526203392", - "outputQty0": "55431237453328729589494", - "outputQty": "55318787830507565809272", - "swapFee1": "32850895512446115722", - "swapFee2": "22172494981331491835", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "365783015415153", + "outputQty0": "374965298829580", + "outputQty": "374039962722155", + "swapFee": "293687764620", "mpReserves": [ - "59146419411119198245915164", - "25067666855027155265100320", - "25401451131123273219356014" + "55333177876167206581084997", + "11730023988927229444272843", + "35746411783084448138829962" ], "fpReserves": [ - "10499432569920706617014273", - "3568657856926142546896991" + "3499079789287216136378724", + "2735892902721312482106244" ], - "mAssetSupply": "109579744283456886154186137", - "LPTokenSupply": "13927465546503569002055028" + "mAssetSupply": "102603194075860201010534408", + "LPTokenSupply": "6108827205931339251963356" }, { "type": "swap_fp_to_mp", - "inputQty": "74221353617077567488", + "inputQty": "98947823735350280192", "outputIndex": 2, - "outputQty": "74919061246734771314", + "outputQty": "99311035974057879298", "swapFee": "0", - "redemptionFee": "30026241731323994", + "redemptionFee": "59467940119030227", "mpReserves": [ - "59146419411119198245915164", - "25067666855027155265100320", - "25401376212062026484584700" + "55333177876167206581084997", + "11730023988927229444272843", + "35746312472048474080950664" ], "fpReserves": [ - "10499357504316378307027045", - "3568732078279759624464479" + "3498980676053684419333203", + "2735991850545047832386436" ], - "mAssetSupply": "109579669247878799575522903", - "LPTokenSupply": "13927465546503569002055028" + "mAssetSupply": "102603095022094609412519114", + "LPTokenSupply": "6108827205931339251963356" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "54683488215847288832", - "outputQty0": "54575921928162574645", - "outputQty": "53874930165988887297", + "type": "redeem", + "outputIndex": 2, + "inputQty": "89241351910902904913920", + "outputQty0": "91092529082961752319218", + "outputQty": "91273264630539153646122", + "swapFee1": "53544811146541742948", + "swapFee2": "54655517449777051391", "mpReserves": [ - "59146474094607414093203996", - "25067666855027155265100320", - "25401376212062026484584700" + "55333177876167206581084997", + "11730023988927229444272843", + "35655039207417934927304542" ], "fpReserves": [ - "10499412080238306469601690", - "3568732078279759624464479" + "3407888146970722667013985", + "2735991850545047832386436" ], - "mAssetSupply": "109579723823800727738097548", - "LPTokenSupply": "13927519421433734990942325" + "mAssetSupply": "102512057148529097437251287", + "LPTokenSupply": "6019591208501551001223730" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "225677671955533135872", - "outputQty0": "226028651538096445851", - "outputQty": "223307608301651882659", - "swapFee": "178500357922320343", + "inputQty": "108763464602042656", + "outputQty0": "108484226679192861", + "outputQty": "108236755170514634", + "swapFee": "84975521787607", "mpReserves": [ - "59146474094607414093203996", - "25067666855027155265100320", - "25401601889733982017720572" + "55333177876167206581084997", + "11730023988927229444272843", + "35655039316181399529347198" ], "fpReserves": [ - "10499638108889844566047541", - "3568508770671457972581820" + "3407888255454949346206846", + "2735991742308292661871802" ], - "mAssetSupply": "109579949852452265834543399", - "LPTokenSupply": "13927519439283770783174359" + "mAssetSupply": "102512057257013324116444148", + "LPTokenSupply": "6019591208510048553402490" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "44860283091991062904832", + "outputQty0": "44528796941379886712935", + "outputQty": "43598281909450648166275", + "mpReserves": [ + "55378038159259197643989829", + "11730023988927229444272843", + "35655039316181399529347198" + ], + "fpReserves": [ + "3452417052396329232919781", + "2735991742308292661871802" + ], + "mAssetSupply": "102556586053954704003157083", + "LPTokenSupply": "6063189490419499201568765" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "340776780301857542111232", - "outputQty0": "340103398824490600380347", - "outputQty": "335550069579820052561314", - "swapFee": "268565996417403901908", + "inputQty": "274562118938943666782208", + "outputQty0": "272525279479585525613459", + "outputQty": "271698994006640148987576", + "swapFee": "213434220881038040992", "mpReserves": [ - "59487250874909271635315228", - "25067666855027155265100320", - "25401601889733982017720572" + "55652600278198141310772037", + "11730023988927229444272843", + "35655039316181399529347198" ], "fpReserves": [ - "10839741507714335166427888", - "3232958701091637920020506" + "3724942331875914758533240", + "2464292748301652512884226" ], - "mAssetSupply": "109920053251276756434923746", - "LPTokenSupply": "13927546295883412523564549" + "mAssetSupply": "102829111333434289528770542", + "LPTokenSupply": "6063210833841587305372864" }, { "type": "swap_fp_to_mp", - "inputQty": "3052919599491373334528", - "outputIndex": 0, - "outputQty": "3101381229576662373305", + "inputQty": "67002933703217094656", + "outputIndex": 1, + "outputQty": "65504273475826133660", "swapFee": "0", - "redemptionFee": "1238585551230166749", + "redemptionFee": "40319888588555767", "mpReserves": [ - "59484149493679694972941923", - "25067666855027155265100320", - "25401601889733982017720572" + "55652600278198141310772037", + "11729958484653753618139183", + "35655039316181399529347198" ], "fpReserves": [ - "10836645043836259749553810", - "3236011620691129293355034" + "3724875132061600498921157", + "2464359751235355729978882" ], - "mAssetSupply": "109916958025984232248216417", - "LPTokenSupply": "13927546295883412523564549" + "mAssetSupply": "102829044173939863857714226", + "LPTokenSupply": "6063210833841587305372864" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "5132739211367531151360", - "outputQty0": "5200079717752055618813", - "outputQty": "5189389899610576760533", - "swapFee1": "3079643526820518690", - "swapFee2": "2080031887100822247", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "802424594247984777003008", + "outputQty0": "821391056457912397150836", + "outputQty": "815886396991050345914511", + "swapFee": "642761289846242226317", "mpReserves": [ - "59484149493679694972941923", - "25062477465127544688339787", - "25401601889733982017720572" + "55652600278198141310772037", + "12532383078901738395142191", + "35655039316181399529347198" ], "fpReserves": [ - "10831444964118507693934997", - "3236011620691129293355034" + "4546266188519512896071993", + "1648473354244305384064371" ], - "mAssetSupply": "109911760026298367293419851", - "LPTokenSupply": "13922413864636397674465058" + "mAssetSupply": "103650435230397776254865062", + "LPTokenSupply": "6063275109970571929595495" }, { "type": "mint", "inputIndex": 2, - "inputQty": "428511725549196607488", - "outputQty0": "429186847404811849267", - "outputQty": "423375186498261737368", + "inputQty": "87274384437054832640", + "outputQty0": "87080407332692167861", + "outputQty": "85002743340360638678", "mpReserves": [ - "59484149493679694972941923", - "25062477465127544688339787", - "25402030401459531214328060" + "55652600278198141310772037", + "12532383078901738395142191", + "35655126590565836584179838" ], "fpReserves": [ - "10831874150965912505784264", - "3236011620691129293355034" + "4546353268926845588239854", + "1648473354244305384064371" ], - "mAssetSupply": "109912189213145772105269118", - "LPTokenSupply": "13922837239822895936202426" + "mAssetSupply": "103650522310805108947032923", + "LPTokenSupply": "6063360112713912290234173" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "37556026393848384061440", + "outputQty0": "38450125443210502960882", + "outputQty": "38696278405558261366254", + "swapFee1": "22533615836309030436", + "swapFee2": "23070075265926301776", + "mpReserves": [ + "55613903999792583049405783", + "12532383078901738395142191", + "35655126590565836584179838" + ], + "fpReserves": [ + "4507903143483635085278972", + "1648473354244305384064371" + ], + "mAssetSupply": "103612095255437164370373817", + "LPTokenSupply": "6025806339681647537075776" }, { "type": "swap_fp_to_mp", - "inputQty": "675203789340479976374272", + "inputQty": "1143397566866262400696320", "outputIndex": 2, - "outputQty": "681537551356759441496490", + "outputQty": "1150525102234155041265254", "swapFee": "0", - "redemptionFee": "273172197459074639267", + "redemptionFee": "689292064261474076588", "mpReserves": [ - "59484149493679694972941923", - "25062477465127544688339787", - "24720492850102771772831570" + "55613903999792583049405783", + "12532383078901738395142191", + "34504601488331681542914584" ], "fpReserves": [ - "10148943657318225907614584", - "3911215410031609269729306" + "3359083036381178290965363", + "2791870921110567784760691" ], - "mAssetSupply": "109229531891695544581738705", - "LPTokenSupply": "13922837239822895936202426" + "mAssetSupply": "102463964440398969050136796", + "LPTokenSupply": "6025806339681647537075776" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "16995889443249627136", "outputIndex": 0, - "inputQty": "2626911616773472649216", - "outputQty0": "2657946360143803575203", - "outputQty": "2662282226594432375477", - "swapFee1": "1576146970064083589", - "swapFee2": "1063178544057521430", + "outputQty": "17127407766379169247", + "swapFee": "0", + "redemptionFee": "10210209121066644", "mpReserves": [ - "59481487211453100540566446", - "25062477465127544688339787", - "24720492850102771772831570" + "55613886872384816670236536", + "12532383078901738395142191", + "34504601488331681542914584" ], "fpReserves": [ - "10146285710958082104039381", - "3911215410031609269729306" + "3359066019365976513223778", + "2791887917000011034387827" ], - "mAssetSupply": "109226875008513944835684932", - "LPTokenSupply": "13920210485820819469961568" + "mAssetSupply": "102463947433593976393461855", + "LPTokenSupply": "6025806339681647537075776" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "453777316521735749632", - "outputQty0": "452857093732386666920", - "outputQty": "447301071205548434979", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1647959553502927360", + "outputQty0": "1683649742065936559", + "outputQty": "1680214387221772709", + "swapFee": "1318771287470375", "mpReserves": [ - "59481940988769622276316078", - "25062477465127544688339787", - "24720492850102771772831570" + "55613886872384816670236536", + "12532384726861291898069551", + "34504601488331681542914584" ], "fpReserves": [ - "10146738568051814490706301", - "3911215410031609269729306" + "3359067703015718579160337", + "2791886236785623812615118" ], - "mAssetSupply": "109227327865607677222351852", - "LPTokenSupply": "13920657786892025018396547" + "mAssetSupply": "102463949117243718459398414", + "LPTokenSupply": "6025806339813524665822813" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1196547753458057728", - "outputQty0": "1198596287785040866", - "outputQty": "1183890804915258286", + "type": "swap_fp_to_mp", + "inputQty": "112296168795968741834752", + "outputIndex": 1, + "outputQty": "109937697605348510496808", + "swapFee": "0", + "redemptionFee": "67444490996126789146", "mpReserves": [ - "59481940988769622276316078", - "25062477465127544688339787", - "24720494046650525230889298" + "55613886872384816670236536", + "12422447029255943387572743", + "34504601488331681542914584" ], "fpReserves": [ - "10146739766648102275747167", - "3911215410031609269729306" + "3246660218022173930582110", + "2904182405581592554449870" ], - "mAssetSupply": "109227329064203965007392718", - "LPTokenSupply": "13920658970782829933654833" + "mAssetSupply": "102351609076741169937609333", + "LPTokenSupply": "6025806339813524665822813" }, { "type": "swap_fp_to_mp", - "inputQty": "113610198249277744", + "inputQty": "24987014266284601344", "outputIndex": 2, - "outputQty": "114403046983019880", + "outputQty": "25040000772404386767", "swapFee": "0", - "redemptionFee": "45857906862047", + "redemptionFee": "15003336639018478", "mpReserves": [ - "59481940988769622276316078", - "25062477465127544688339787", - "24720493932247478247869418" + "55613886872384816670236536", + "12422447029255943387572743", + "34504576448330909138527817" ], "fpReserves": [ - "10146739652003335120627508", - "3911215523641807519007050" + "3246635212461108899784747", + "2904207392595858839051214" ], - "mAssetSupply": "109227328949605055759135106", - "LPTokenSupply": "13920658970782829933654833" + "mAssetSupply": "102351584086183441545830448", + "LPTokenSupply": "6025806339813524665822813" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "63986511462747464", - "outputQty0": "64090471156144970", - "outputQty": "63304150238238326", + "type": "swap_fp_to_mp", + "inputQty": "23078211767678857216", + "outputIndex": 0, + "outputQty": "23246628763082524812", + "swapFee": "0", + "redemptionFee": "13857203584654654", "mpReserves": [ - "59481940988769622276316078", - "25062477529114056151087251", - "24720493932247478247869418" + "55613863625756053587711724", + "12422447029255943387572743", + "34504576448330909138527817" ], "fpReserves": [ - "10146739716093806276772478", - "3911215523641807519007050" + "3246612117121801142027915", + "2904230470807626517908430" ], - "mAssetSupply": "109227329013695526915280076", - "LPTokenSupply": "13920659034086980171893159" + "mAssetSupply": "102351561004701337372728270", + "LPTokenSupply": "6025806339813524665822813" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "192696704354125996883968", - "outputQty0": "194964715059551991565901", - "outputQty": "194566796944964371430421", - "swapFee1": "115618022612475598130", - "swapFee2": "77985886023820796626", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "249595956329777415061504", + "outputQty0": "254989028283549183118187", + "outputQty": "254450266336422191131136", + "swapFee": "199750264333401873761", "mpReserves": [ - "59481940988769622276316078", - "24867910732169091779656830", - "24720493932247478247869418" + "55613863625756053587711724", + "12672042985585720802634247", + "34504576448330909138527817" ], "fpReserves": [ - "9951775001034254285206577", - "3911215523641807519007050" + "3501601145405350325146102", + "2649780204471204326777294" ], - "mAssetSupply": "109032442284521998744510801", - "LPTokenSupply": "13727973891535115422569004" + "mAssetSupply": "102606550032984886555846457", + "LPTokenSupply": "6025826314839958006010189" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "59628501149449097052160", - "outputQty0": "59506745490472203009805", - "outputQty": "58930907187444638288362", - "swapFee": "47024441236338901359", + "type": "mint", + "inputIndex": 1, + "inputQty": "991044316724931162275840", + "outputQty0": "1010478396592239952307804", + "outputQty": "988623827250289222327133", "mpReserves": [ - "59541569489919071373368238", - "24867910732169091779656830", - "24720493932247478247869418" + "55613863625756053587711724", + "13663087302310651964910087", + "34504576448330909138527817" ], "fpReserves": [ - "10011281746524726488216382", - "3852284616454362880718688" + "4512079541997590277453906", + "2649780204471204326777294" ], - "mAssetSupply": "109091949030012470947520606", - "LPTokenSupply": "13727978593979239056459139" + "mAssetSupply": "103617028429577126508154261", + "LPTokenSupply": "7014450142090247228337322" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "955511136559899213824", - "outputQty0": "957141062099379265286", - "outputQty": "947715573098410402598", - "swapFee": "756304187608250700", + "type": "redeem", + "outputIndex": 2, + "inputQty": "50795117136464951902208", + "outputQty0": "51906483068346813284342", + "outputQty": "51955622203989005755554", + "swapFee1": "30477070281878971141", + "swapFee2": "31143889841008087970", "mpReserves": [ - "59541569489919071373368238", - "24867910732169091779656830", - "24721449443384038147083242" + "55613863625756053587711724", + "13663087302310651964910087", + "34452620826126920132772263" ], "fpReserves": [ - "10012238887586825867481668", - "3851336900881264470316090" + "4460173058929243464169564", + "2649780204471204326777294" ], - "mAssetSupply": "109092906171074570326785892", - "LPTokenSupply": "13727978669609657817284209" + "mAssetSupply": "103565153090398620702957889", + "LPTokenSupply": "6963658072660810464332228" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "61625566463459196928", - "outputQty0": "61730681777681975868", - "outputQty": "60972083768661378936", + "type": "swap_fp_to_mp", + "inputQty": "1931443389301122", + "outputIndex": 1, + "outputQty": "1903211533929759", + "swapFee": "0", + "redemptionFee": "1163338448859", "mpReserves": [ - "59541569489919071373368238", - "24867910732169091779656830", - "24721511068950501606280170" + "55613863625756053587711724", + "13663087300407440430980328", + "34452620826126920132772263" ], "fpReserves": [ - "10012300618268603549457536", - "3851336900881264470316090" + "4460173056990346049403235", + "2649780206402647716078416" ], - "mAssetSupply": "109092967901756348008761760", - "LPTokenSupply": "13728039641693426478663145" + "mAssetSupply": "103565153088460886626640419", + "LPTokenSupply": "6963658072660810464332228" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "423709483351519101190144", - "outputQty0": "422838829634512676857640", - "outputQty": "418105291920431024120618", - "swapFee": "334082211511014659345", + "type": "redeem", + "outputIndex": 2, + "inputQty": "55194716621991821312", + "outputQty0": "56401460745681651988", + "outputQty": "56454487544551965914", + "swapFee1": "33116829973195092", + "swapFee2": "33840876447408991", "mpReserves": [ - "59965278973270590474558382", - "24867910732169091779656830", - "24721511068950501606280170" + "55613863625756053587711724", + "13663087300407440430980328", + "34452564371639375580806349" ], "fpReserves": [ - "10435139447903116226315176", - "3433231608960833446195472" + "4460116655529600367751247", + "2649780206402647716078416" ], - "mAssetSupply": "109515806731390860685619400", - "LPTokenSupply": "13728073049914577580129079" + "mAssetSupply": "103565096720841017392397422", + "LPTokenSupply": "6963602881255871469830425" }, { - "type": "swap_fp_to_mp", - "inputQty": "5851636049214823202816", - "outputIndex": 0, - "outputQty": "5931840437233206827256", - "swapFee": "0", - "redemptionFee": "2368781427972963741", + "type": "redeem", + "outputIndex": 2, + "inputQty": "113904504141258076192768", + "outputQty0": "116389702157582912999749", + "outputQty": "116497423079163838163814", + "swapFee1": "68342702484754845715", + "swapFee2": "69833821294549747799", "mpReserves": [ - "59959347132833357267731126", - "24867910732169091779656830", - "24721511068950501606280170" + "55613863625756053587711724", + "13663087300407440430980328", + "34336066948560211742642535" ], "fpReserves": [ - "10429217494333183816961581", - "3439083245010048269398288" + "4343726953372017454751498", + "2649780206402647716078416" ], - "mAssetSupply": "109509887146602356249229546", - "LPTokenSupply": "13728073049914577580129079" + "mAssetSupply": "103448776852504729029145472", + "LPTokenSupply": "6849705211384861869122228" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "314508157136678938476544", - "outputQty0": "313855744670393124731446", - "outputQty": "309467903985746611793694", - "swapFee": "247789528582279256625", + "type": "redeem", + "outputIndex": 2, + "inputQty": "74675094947817530064896", + "outputQty0": "76299437599601411386373", + "outputQty": "76368199074582585493980", + "swapFee1": "44805056968690518038", + "swapFee2": "45779662559760846831", "mpReserves": [ - "60273855289970036206207670", - "24867910732169091779656830", - "24721511068950501606280170" + "55613863625756053587711724", + "13663087300407440430980328", + "34259698749485629157148555" ], "fpReserves": [ - "10743073239003576941693027", - "3129615341024301657604594" + "4267427515772416043365125", + "2649780206402647716078416" ], - "mAssetSupply": "109823742891272749373960992", - "LPTokenSupply": "13728097828867435808054741" + "mAssetSupply": "103372523194567687378605930", + "LPTokenSupply": "6775034596942741208109135" }, { "type": "swap_fp_to_mp", - "inputQty": "1066309013938153193472", - "outputIndex": 2, - "outputQty": "1079834250777118126951", + "inputQty": "695104172339603", + "outputIndex": 0, + "outputQty": "701639811762073", "swapFee": "0", - "redemptionFee": "432864336395558272", + "redemptionFee": "418509229295", "mpReserves": [ - "60273855289970036206207670", - "24867910732169091779656830", - "24720431234699724488153219" + "55613863625054413775949651", + "13663087300407440430980328", + "34259698749485629157148555" ], "fpReserves": [ - "10741991078162588046011849", - "3130681650038239810798066" + "4267427515074900661205828", + "2649780207097751888418019" ], - "mAssetSupply": "109822661163296096873838086", - "LPTokenSupply": "13728097828867435808054741" + "mAssetSupply": "103372523193870590505675928", + "LPTokenSupply": "6775034596942741208109135" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "686208905469878599680", "outputIndex": 1, - "inputQty": "4859937414657993605120", - "outputQty0": "4924625709410893102942", - "outputQty": "4914224172964898699462", - "swapFee1": "2915962448794796163", - "swapFee2": "1969850283764357241", + "outputQty": "675953741394536263229", + "swapFee": "0", + "redemptionFee": "413152808461095047", "mpReserves": [ - "60273855289970036206207670", - "24862996507996126880957368", - "24720431234699724488153219" + "55613863625054413775949651", + "13662411346666045894717099", + "34259698749485629157148555" ], "fpReserves": [ - "10737066452453177152908907", - "3130681650038239810798066" + "4266738927060798836126985", + "2650466416003221767017699" ], - "mAssetSupply": "109817738507436969745092385", - "LPTokenSupply": "13723238183049022693929237" + "mAssetSupply": "103371835019009297141692132", + "LPTokenSupply": "6775034596942741208109135" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "9514629282902382592", - "outputQty0": "9531313958502843615", - "outputQty": "9400480661201574220", + "type": "redeem", + "outputIndex": 1, + "inputQty": "218418474208202784768", + "outputQty0": "223163974500317152440", + "outputQty": "219069080770641304352", + "swapFee1": "131051084524921670", + "swapFee2": "133898384700190291", "mpReserves": [ - "60273855289970036206207670", - "24862996507996126880957368", - "24720440749329007390535811" + "55613863625054413775949651", + "13662192277585275253412747", + "34259698749485629157148555" ], "fpReserves": [ - "10737075983767135655752522", - "3130681650038239810798066" + "4266515763086298518974545", + "2650466416003221767017699" ], - "mAssetSupply": "109817748038750928247936000", - "LPTokenSupply": "13723247583529683895503457" + "mAssetSupply": "103371611988933181524729983", + "LPTokenSupply": "6774816191573641457816534" }, { - "type": "swap_fp_to_mp", - "inputQty": "293930384510513020928", + "type": "redeem", "outputIndex": 2, - "outputQty": "297653105586615131648", - "swapFee": "0", - "redemptionFee": "119317756539151529", + "inputQty": "57510127073555480576", + "outputQty0": "58759623706247558562", + "outputQty": "58812026697111392169", + "swapFee1": "34506076244133288", + "swapFee2": "35255774223748535", "mpReserves": [ - "60273855289970036206207670", - "24862996507996126880957368", - "24720143096223420775404163" + "55613863625054413775949651", + "13662192277585275253412747", + "34259639937458932045756386" ], "fpReserves": [ - "10736777689375787776927870", - "3130975580422750323818994" + "4266457003462592271415983", + "2650466416003221767017699" ], - "mAssetSupply": "109817449863677336908262877", - "LPTokenSupply": "13723247583529683895503457" + "mAssetSupply": "103371553264565249500919956", + "LPTokenSupply": "6774758684897175526749286" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "7669114095584215040", - "outputQty0": "7653137227589975037", - "outputQty": "7548090333304462615", + "type": "swap_fp_to_mp", + "inputQty": "850040672064826769408", + "outputIndex": 2, + "outputQty": "853744464449243780162", + "swapFee": "0", + "redemptionFee": "511790313117016935", "mpReserves": [ - "60273862959084131790422710", - "24862996507996126880957368", - "24720143096223420775404163" + "55613863625054413775949651", + "13662192277585275253412747", + "34258786192994482801976224" ], "fpReserves": [ - "10736785342513015366902907", - "3130975580422750323818994" + "4265604019607397243190957", + "2651316456675286593787107" ], - "mAssetSupply": "109817457516814564498237914", - "LPTokenSupply": "13723255131620017199966072" + "mAssetSupply": "103370700792500367589711865", + "LPTokenSupply": "6774758684897175526749286" }, { - "type": "swap_fp_to_mp", - "inputQty": "921209584194983141834752", - "outputIndex": 0, - "outputQty": "932912926997622512052706", - "swapFee": "0", - "redemptionFee": "372546158069814199940", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "133236734221784743936", + "outputQty0": "135645769746155760608", + "outputQty": "135069842017553415598", + "swapFee": "106145512771994930", "mpReserves": [ - "59340950032086509278370004", - "24862996507996126880957368", - "24720143096223420775404163" + "55613863625054413775949651", + "13662325514319497038156683", + "34258786192994482801976224" ], "fpReserves": [ - "9805419947338479867051484", - "4052185164617733465653746" + "4265739665377143398951565", + "2651181386833269040371509" ], - "mAssetSupply": "108886464667798098812586431", - "LPTokenSupply": "13723255131620017199966072" + "mAssetSupply": "103370836438270113745472473", + "LPTokenSupply": "6774758695511726803948779" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "2449506570412899840", - "outputQty0": "2453652933407841343", - "outputQty": "2432159466629358977", - "swapFee": "1939337915593054", + "inputQty": "348178354168179988627456", + "outputQty0": "347644262434009482452925", + "outputQty": "345819632451643400088678", + "swapFee": "272002429377287754218", "mpReserves": [ - "59340950032086509278370004", - "24862996507996126880957368", - "24720145545729991188304003" + "55613863625054413775949651", + "13662325514319497038156683", + "34606964547162662790603680" ], "fpReserves": [ - "9805422400991413274892827", - "4052182732458266836294769" + "4613383927811152881404490", + "2305361754381625640282831" ], - "mAssetSupply": "108886467121451032220427774", - "LPTokenSupply": "13723255131813950991525377" + "mAssetSupply": "103718480700704123227925398", + "LPTokenSupply": "6774785895754664532724200" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "394926839987395054534656", - "outputQty0": "399454853160087330362297", - "outputQty": "398603658989539832814656", - "swapFee1": "236956103992437032720", - "swapFee2": "159781941264034932144", + "inputQty": "164465815982087962624", + "outputQty0": "168172908037346571637", + "outputQty": "168337544370030930400", + "swapFee1": "98679489589252777", + "swapFee2": "100903744822407942", "mpReserves": [ - "59340950032086509278370004", - "24862996507996126880957368", - "24321541886740451355489347" + "55613863625054413775949651", + "13662325514319497038156683", + "34606796209618292759673280" ], "fpReserves": [ - "9405967547831325944530530", - "4052182732458266836294769" + "4613215754903115534832853", + "2305361754381625640282831" ], - "mAssetSupply": "108487172050232208924997621", - "LPTokenSupply": "13328351987436955180693993" + "mAssetSupply": "103718312628699830703761703", + "LPTokenSupply": "6774621439806631403686853" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "60501057055861071872", - "outputQty0": "60376468387942930369", - "outputQty": "59882677016931582857", - "swapFee": "47728421485663881", + "type": "redeem", + "outputIndex": 1, + "inputQty": "886548626266460288", + "outputQty0": "906531557924625977", + "outputQty": "889802564455581381", + "swapFee1": "531929175759876", + "swapFee2": "543918934754775", "mpReserves": [ - "59341010533143565139441876", - "24862996507996126880957368", - "24321541886740451355489347" + "55613863625054413775949651", + "13662324624516932582575302", + "34606796209618292759673280" ], "fpReserves": [ - "9406027924299713887460899", - "4052122849781249904711912" + "4613214848371557610206876", + "2305361754381625640282831" ], - "mAssetSupply": "108487232426700596867927990", - "LPTokenSupply": "13328351992209797329260381" + "mAssetSupply": "103718311722712191713890501", + "LPTokenSupply": "6774620553311198054802552" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "114764388514209431552", - "outputQty0": "116071911527675428147", - "outputQty": "116264904678330597878", - "swapFee1": "68858633108525658", - "swapFee2": "46428764611070171", + "type": "mint", + "inputIndex": 0, + "inputQty": "3621471433248320", + "outputQty0": "3598120405441292", + "outputQty": "3516694736581913", "mpReserves": [ - "59340894268238886808843998", - "24862996507996126880957368", - "24321541886740451355489347" + "55613863628675885209197971", + "13662324624516932582575302", + "34606796209618292759673280" ], "fpReserves": [ - "9405911852388186212032752", - "4052122849781249904711912" + "4613214851969678015648168", + "2305361754381625640282831" ], - "mAssetSupply": "108487116401217833803570014", - "LPTokenSupply": "13328237234707146430681394" + "mAssetSupply": "103718311726310312119331793", + "LPTokenSupply": "6774620556827892791384465" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "769904681115557776326656", - "outputQty0": "771105093012462014795300", - "outputQty": "763094379275558318289291", - "swapFee": "609466292279105059230", + "inputQty": "2730396777750314614784", + "outputQty0": "2780051184002960568354", + "outputQty": "2762337729410561271535", + "swapFee": "2173708338369644697", "mpReserves": [ - "59340894268238886808843998", - "25632901189111684657284024", - "24321541886740451355489347" + "55613863628675885209197971", + "13665055021294682897190086", + "34606796209618292759673280" ], "fpReserves": [ - "10177016945400648226828052", - "3289028470505691586422621" + "4615994903153680976216522", + "2302599416652215079011296" ], - "mAssetSupply": "109258221494230295818365314", - "LPTokenSupply": "13328298181336374341187317" + "mAssetSupply": "103721091777494315079900147", + "LPTokenSupply": "6774620774198726628348934" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "66553938807962120", - "outputQty0": "67405302407469004", - "outputQty": "67256153424644543", - "swapFee1": "39932363284777", - "swapFee2": "26962120962987", + "inputQty": "49375273840469428142080", + "outputQty0": "50487523056196121614381", + "outputQty": "50536586480776139752750", + "swapFee1": "29625164304281656885", + "swapFee2": "30292513833717672968", "mpReserves": [ - "59340894268238886808843998", - "25632901189111684657284024", - "24321541819484297930844804" + "55613863628675885209197971", + "13665055021294682897190086", + "34556259623137516619920530" ], "fpReserves": [ - "10177016877995345819359048", - "3289028470505691586422621" + "4565507380097484854602141", + "2302599416652215079011296" ], - "mAssetSupply": "109258221426851955531859297", - "LPTokenSupply": "13328298114786428769553674" + "mAssetSupply": "103670634546951952675958734", + "LPTokenSupply": "6725248462874687628372542" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "157648605028413081649152", - "outputQty0": "157880369158337786518578", - "outputQty": "155786367737498042764330", + "inputQty": "93550029568082012274688", + "outputQty0": "95237617080015523314138", + "outputQty": "94608018945352486537776", + "swapFee": "74465265594625616617", "mpReserves": [ - "59340894268238886808843998", - "25790549794140097738933176", - "24321541819484297930844804" + "55613863628675885209197971", + "13758605050862764909464774", + "34556259623137516619920530" ], "fpReserves": [ - "10334897247153683605877626", - "3289028470505691586422621" + "4660744997177500377916279", + "2207991397706862592473520" ], - "mAssetSupply": "109416101796010293318377875", - "LPTokenSupply": "13484084482523926812318004" + "mAssetSupply": "103765872164031968199272872", + "LPTokenSupply": "6725255909401247090934203" }, { "type": "swap_fp_to_mp", - "inputQty": "6970004891514062", + "inputQty": "387252659850940910665728", "outputIndex": 2, - "outputQty": "7043254221581222", + "outputQty": "389478452654418690285816", "swapFee": "0", - "redemptionFee": "2823572233227", + "redemptionFee": "233479860260316690322", "mpReserves": [ - "59340894268238886808843998", - "25790549794140097738933176", - "24321541812441043709263582" + "55613863628675885209197971", + "13758605050862764909464774", + "34166781170483097929634714" ], "fpReserves": [ - "10334897240094753022807765", - "3289028477475696477936683" + "4271611896743639227378719", + "2595244057557803503139248" ], - "mAssetSupply": "109416101788954186307541241", - "LPTokenSupply": "13484084482523926812318004" + "mAssetSupply": "103376972543458367365425634", + "LPTokenSupply": "6725255909401247090934203" }, { - "type": "swap_fp_to_mp", - "inputQty": "521854565731379422691328", - "outputIndex": 1, - "outputQty": "526453978561043889105367", - "swapFee": "0", - "redemptionFee": "210982919470029627922", + "type": "redeem", + "outputIndex": 2, + "inputQty": "240476277565591547543552", + "outputQty0": "245707694232526638235747", + "outputQty": "245906007905602233270317", + "swapFee1": "144285766539354928526", + "swapFee2": "147424616539515982941", "mpReserves": [ - "59340894268238886808843998", - "25264095815579053849827809", - "24321541812441043709263582" + "55613863628675885209197971", + "13758605050862764909464774", + "33920875162577495696364397" ], "fpReserves": [ - "9807439941419678953002012", - "3810883043207075900628011" + "4025904202511112589142972", + "2595244057557803503139248" ], - "mAssetSupply": "108888855473198582267363410", - "LPTokenSupply": "13484084482523926812318004" + "mAssetSupply": "103131412273842380243172828", + "LPTokenSupply": "6484794060412309478883503" }, { - "type": "swap_fp_to_mp", - "inputQty": "147635390644353687879680", - "outputIndex": 1, - "outputQty": "148605851540999021439162", - "swapFee": "0", - "redemptionFee": "59559494465682972907", + "type": "mint", + "inputIndex": 2, + "inputQty": "548938036151489690337280", + "outputQty0": "548145216524158663016558", + "outputQty": "536078750785190676354332", "mpReserves": [ - "59340894268238886808843998", - "25115489964038054828388647", - "24321541812441043709263582" + "55613863628675885209197971", + "13758605050862764909464774", + "34469813198728985386701677" ], "fpReserves": [ - "9658541205255471520733129", - "3958518433851429588507691" + "4574049419035271252159530", + "2595244057557803503139248" ], - "mAssetSupply": "108740016296528840518067434", - "LPTokenSupply": "13484084482523926812318004" + "mAssetSupply": "103679557490366538906189386", + "LPTokenSupply": "7020872811197500155237835" }, { - "type": "swap_fp_to_mp", - "inputQty": "13872638730546360352768", - "outputIndex": 2, - "outputQty": "13954630889038429760017", - "swapFee": "0", - "redemptionFee": "5594090432256282398", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "39207647110624288", + "outputQty0": "39148313583444988", + "outputQty": "38950026843908941", + "swapFee": "30622764121187", "mpReserves": [ - "59340894268238886808843998", - "25115489964038054828388647", - "24307587181552005279503565" + "55613863628675885209197971", + "13758605050862764909464774", + "34469813237936632497325965" ], "fpReserves": [ - "9644555979174830814737875", - "3972391072581975948860459" + "4574049458183584835604518", + "2595244018607776659230307" ], - "mAssetSupply": "108726036664538632068354578", - "LPTokenSupply": "13484084482523926812318004" + "mAssetSupply": "103679557529514852489634374", + "LPTokenSupply": "7020872811200562431649953" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "132251469475157082112", - "outputQty0": "132460957709023096340", - "outputQty": "130860085983453699060", + "inputIndex": 2, + "inputQty": "6446531067337368403968", + "outputQty0": "6436770255204864087795", + "outputQty": "6293732767524282386737", "mpReserves": [ - "59340894268238886808843998", - "25115622215507529985470759", - "24307587181552005279503565" + "55613863628675885209197971", + "13758605050862764909464774", + "34476259769003969865729933" ], "fpReserves": [ - "9644688440132539837834215", - "3972391072581975948860459" + "4580486228438789699692313", + "2595244018607776659230307" ], - "mAssetSupply": "108726169125496341091450918", - "LPTokenSupply": "13484215342609910266017064" + "mAssetSupply": "103685994299770057353722169", + "LPTokenSupply": "7027166543968086714036690" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2302800095211068416", - "outputQty0": "2298092734443557439", - "outputQty": "2277850401856964432", - "swapFee": "1816255047667219", + "type": "redeem", + "outputIndex": 0, + "inputQty": "8897420057100955648", + "outputQty0": "9094193712242189886", + "outputQty": "9147395686825902476", + "swapFee1": "5338452034260573", + "swapFee2": "5456516227345313", "mpReserves": [ - "59340896571038982019912414", - "25115622215507529985470759", - "24307587181552005279503565" + "55613854481280198383295495", + "13758605050862764909464774", + "34476259769003969865729933" ], "fpReserves": [ - "9644690738225274281391654", - "3972388794731574091896027" + "4580477134245077457502427", + "2595244018607776659230307" ], - "mAssetSupply": "108726171423589075535008357", - "LPTokenSupply": "13484215342791535770783785" + "mAssetSupply": "103685985211032861338877596", + "LPTokenSupply": "7027157647081874816507099" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "83058141942162114215936", - "outputQty0": "82888169181093664884910", - "outputQty": "81884904953638433466938", + "type": "redeem", + "outputIndex": 2, + "inputQty": "2639053931493687033856", + "outputQty0": "2697416000134357154155", + "outputQty": "2699886761526962386604", + "swapFee1": "1583432358896212220", + "swapFee2": "1618449600080614292", "mpReserves": [ - "59423954712981144134128350", - "25115622215507529985470759", - "24307587181552005279503565" + "55613854481280198383295495", + "13758605050862764909464774", + "34473559882242442903343329" ], "fpReserves": [ - "9727578907406367946276564", - "3972388794731574091896027" + "4577779718244943100348272", + "2595244018607776659230307" ], - "mAssetSupply": "108809059592770169199893267", - "LPTokenSupply": "13566100247745174204250723" + "mAssetSupply": "103683289413482327062337733", + "LPTokenSupply": "7024518751493617019094465" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "24364811917706164961280", - "outputQty0": "24648853341791507980207", - "outputQty": "24599839136512689328418", - "swapFee1": "14618887150623698976", - "swapFee2": "9859541336716603192", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "6278837395161153011712", + "outputQty0": "6238569231789431946355", + "outputQty": "6206811730023644029532", + "swapFee": "4879934581714147101", "mpReserves": [ - "59423954712981144134128350", - "25091022376371017296142341", - "24307587181552005279503565" + "55620133318675359536307207", + "13758605050862764909464774", + "34473559882242442903343329" ], "fpReserves": [ - "9702930054064576438296357", - "3972388794731574091896027" + "4584018287476732532294627", + "2589037206877753015200775" ], - "mAssetSupply": "108784420598969714408516252", - "LPTokenSupply": "13541736897716183101659340" + "mAssetSupply": "103689527982714116494284088", + "LPTokenSupply": "7024519239487075190509175" }, { "type": "swap_fp_to_mp", - "inputQty": "836661397736685043712", + "inputQty": "223203000769630462541824", "outputIndex": 0, - "outputQty": "844888655697889451731", + "outputQty": "225340269033276826751071", "swapFee": "0", - "redemptionFee": "337397545894569681", + "redemptionFee": "134420141233006804268", "mpReserves": [ - "59423109824325446244676619", - "25091022376371017296142341", - "24307587181552005279503565" + "55394793049642082709556136", + "13758605050862764909464774", + "34473559882242442903343329" ], "fpReserves": [ - "9702086560199840014093233", - "3973225456129310776939739" + "4359984718755054525180955", + "2812240207647383477742599" ], - "mAssetSupply": "108783577442502523878882809", - "LPTokenSupply": "13541736897716183101659340" + "mAssetSupply": "103465628834133671493974684", + "LPTokenSupply": "7024519239487075190509175" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1916864035610688", - "outputQty0": "1919919627943439", - "outputQty": "1896667689528826", + "type": "swap_fp_to_mp", + "inputQty": "5732595979211302240256", + "outputIndex": 2, + "outputQty": "5755913942497017666805", + "swapFee": "0", + "redemptionFee": "3450332656880314971", "mpReserves": [ - "59423109824325446244676619", - "25091022378287881331753029", - "24307587181552005279503565" + "55394793049642082709556136", + "13758605050862764909464774", + "34467803968299945885676524" ], "fpReserves": [ - "9702086562119759642036672", - "3973225456129310776939739" + "4354234164326920666894531", + "2817972803626594779982855" ], - "mAssetSupply": "108783577444422443506826248", - "LPTokenSupply": "13541736899612850791188166" + "mAssetSupply": "103459881730038194516003231", + "LPTokenSupply": "7024519239487075190509175" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "26243585115154493440", - "outputQty0": "26285418841746833642", - "outputQty": "26051699087103307854", - "swapFee": "20773663066498247", + "inputQty": "1272032667231145728", + "outputQty0": "1294653857178060314", + "outputQty": "1289596166770010241", + "swapFee": "1013154323816171", "mpReserves": [ - "59423109824325446244676619", - "25091048621872996486246469", - "24307587181552005279503565" + "55394793049642082709556136", + "13758606322895432140610502", + "34467803968299945885676524" ], "fpReserves": [ - "9702112847538601388870314", - "3973199404430223673631885" + "4354235458980777844954845", + "2817971514030428009972614" ], - "mAssetSupply": "108783603729841285253659890", - "LPTokenSupply": "13541736901690217097837990" + "mAssetSupply": "103459883024692051694063545", + "LPTokenSupply": "7024519239588390622890792" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "561246623223568768", - "outputQty0": "562255381106359146", - "outputQty": "557255985369590049", - "swapFee": "444356755328390", + "type": "swap_fp_to_mp", + "inputQty": "478533467570014388224", + "outputIndex": 1, + "outputQty": "471354710006984005202", + "swapFee": "0", + "redemptionFee": "288015212948094854", "mpReserves": [ - "59423109824325446244676619", - "25091048621872996486246469", - "24307587742798628503072333" + "55394793049642082709556136", + "13758134968185425156605300", + "34467803968299945885676524" ], "fpReserves": [ - "9702113409793982495229460", - "3973198847174238304041836" + "4353755433625864353530923", + "2818450047497998024360838" ], - "mAssetSupply": "108783604292096666360019036", - "LPTokenSupply": "13541736901734652773370829" + "mAssetSupply": "103459403287352351150734477", + "LPTokenSupply": "7024519239588390622890792" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "303028153073758371840", - "outputQty0": "306559031536372802982", - "outputQty": "305886611794926854521", - "swapFee1": "181816891844255023", - "swapFee2": "122623612614549121", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2389613129719466496", + "outputQty0": "2432111789869659387", + "outputQty": "2422616089868276927", + "swapFee": "1903293917352070", "mpReserves": [ - "59423109824325446244676619", - "25091048621872996486246469", - "24307281856186833576217812" + "55394793049642082709556136", + "13758137357798554876071796", + "34467803968299945885676524" ], "fpReserves": [ - "9701806850762446122426478", - "3973198847174238304041836" + "4353757865737654223190310", + "2818447624881908156083911" ], - "mAssetSupply": "108783297855688742601765175", - "LPTokenSupply": "13541433891763268199424491" + "mAssetSupply": "103459405719464141020393864", + "LPTokenSupply": "7024519239778720014625999" }, { - "type": "swap_fp_to_mp", - "inputQty": "176566553020905218375680", - "outputIndex": 1, - "outputQty": "177571462119284710592861", - "swapFee": "0", - "redemptionFee": "71171539504552581759", + "type": "mint", + "inputIndex": 2, + "inputQty": "22168211541808774119424", + "outputQty0": "22134233137958718849185", + "outputQty": "21651761462451861996464", "mpReserves": [ - "59423109824325446244676619", - "24913477159753711775653608", - "24307281856186833576217812" + "55394793049642082709556136", + "13758137357798554876071796", + "34489972179841754659795948" ], "fpReserves": [ - "9523878002001064668027876", - "4149765400195143522417516" + "4375892098875612942039495", + "2818447624881908156083911" ], - "mAssetSupply": "108605440178466865699948332", - "LPTokenSupply": "13541433891763268199424491" + "mAssetSupply": "103481539952602099739243049", + "LPTokenSupply": "7046171001241171876622463" }, { - "type": "swap_fp_to_mp", - "inputQty": "17473802433027221504", + "type": "redeem", "outputIndex": 1, - "outputQty": "17565419714884390229", - "swapFee": "0", - "redemptionFee": "7040434864208996", + "inputQty": "46779452626001895424", + "outputQty0": "47793551038991176899", + "outputQty": "46929913655476443233", + "swapFee1": "28067671575601137", + "swapFee2": "28676130623394706", "mpReserves": [ - "59423109824325446244676619", - "24913459594333996891263379", - "24307281856186833576217812" + "55394793049642082709556136", + "13758090427884899399628563", + "34489972179841754659795948" ], "fpReserves": [ - "9523860400913904145536605", - "4149782873997576549639020" + "4375844305324573950862596", + "2818447624881908156083911" ], - "mAssetSupply": "108605422584420140041666057", - "LPTokenSupply": "13541433891763268199424491" + "mAssetSupply": "103481492187727191371460856", + "LPTokenSupply": "7046124224595313032287152" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "98092130406215", - "outputQty0": "99209242540805", - "outputQty": "99008201358888", - "swapFee1": "58855278243", - "swapFee2": "39683697016", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "5437712792879595782144", + "outputQty0": "5403040830894951548765", + "outputQty": "5381650052210520867579", + "swapFee": "4228171077696490561", "mpReserves": [ - "59423109824325446244676619", - "24913459594234988689904491", - "24307281856186833576217812" + "55400230762434962305338280", + "13758090427884899399628563", + "34489972179841754659795948" ], "fpReserves": [ - "9523860400814694902995800", - "4149782873997576549639020" + "4381247346155468902411361", + "2813065974829697635216332" ], - "mAssetSupply": "108605422584320970482822268", - "LPTokenSupply": "13541433891665181954546100" + "mAssetSupply": "103486895228558086323009621", + "LPTokenSupply": "7046124647412420801936208" }, { - "type": "swap_fp_to_mp", - "inputQty": "10210483898169", - "outputIndex": 2, - "outputQty": "10262394271108", - "swapFee": "0", - "redemptionFee": "4113943954", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "468288613761936521166848", + "outputQty0": "467542762496874736675657", + "outputQty": "465087534260836579316921", + "swapFee": "365811899184363565605", "mpReserves": [ - "59423109824325446244676619", - "24913459594234988689904491", - "24307281856176571181946704" + "55400230762434962305338280", + "13758090427884899399628563", + "34958260793603691180962796" ], "fpReserves": [ - "9523860400804410043108569", - "4149782874007787033537189" + "4848790108652343639087018", + "2347978440568861055899411" ], - "mAssetSupply": "108605422584310689736878991", - "LPTokenSupply": "13541433891665181954546100" + "mAssetSupply": "103954437991054961059685278", + "LPTokenSupply": "7046161228602339238292768" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "209197900157504093945856", - "outputQty0": "209567285515584567140356", - "outputQty": "207779898574799968541807", - "swapFee": "165659095566917542062", + "inputQty": "30261616588565532672", + "outputQty0": "30211687497341997644", + "outputQty": "29522069228338434220", "mpReserves": [ - "59423109824325446244676619", - "24913459594234988689904491", - "24516479756334075275892560" + "55400230762434962305338280", + "13758090427884899399628563", + "34958291055220279746495468" ], "fpReserves": [ - "9733427686319994610248925", - "3942002975432987064995382" + "4848820320339840981084662", + "2347978440568861055899411" ], - "mAssetSupply": "108814989869826274304019347", - "LPTokenSupply": "13541450457574738646300306" + "mAssetSupply": "103954468202742458401682922", + "LPTokenSupply": "7046190750671567576726988" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "276807543051347478708224", - "outputQty0": "277282076006318450408449", - "outputQty": "273890838747345137745314", + "type": "redeem", + "outputIndex": 2, + "inputQty": "112468738681193606676480", + "outputQty0": "115021689883289479543611", + "outputQty": "115141040042014862544134", + "swapFee1": "67481243208716164005", + "swapFee2": "69013013929973687726", "mpReserves": [ - "59423109824325446244676619", - "24913459594234988689904491", - "24793287299385422754600784" + "55400230762434962305338280", + "13758090427884899399628563", + "34843150015178264883951334" ], "fpReserves": [ - "10010709762326313060657374", - "3942002975432987064995382" + "4733798630456551501541051", + "2347978440568861055899411" ], - "mAssetSupply": "109092271945832592754427796", - "LPTokenSupply": "13815341296322083784045620" + "mAssetSupply": "103839515525873098895827037", + "LPTokenSupply": "6933728760114694841666908" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "13982974786173505896448", - "outputQty0": "14006093676883420275743", - "outputQty": "13833899224800076877488", + "inputQty": "318681807654169329270784", + "outputQty0": "324254817244247945585078", + "outputQty": "321743817843090313362390", + "swapFee": "253471137236595838527", "mpReserves": [ - "59423109824325446244676619", - "24927442569021162195800939", - "24793287299385422754600784" + "55400230762434962305338280", + "14076772235539068728899347", + "34843150015178264883951334" ], "fpReserves": [ - "10024715856003196480933117", - "3942002975432987064995382" + "5058053447700799447126129", + "2026234622725770742537021" ], - "mAssetSupply": "109106278039509476174703539", - "LPTokenSupply": "13829175195546883860923108" + "mAssetSupply": "104163770343117346841412115", + "LPTokenSupply": "6933754107228418501250760" }, { "type": "swap_fp_to_mp", - "inputQty": "364596764309283334520832", - "outputIndex": 0, - "outputQty": "368052969074065649376071", + "inputQty": "958209480683180053757952", + "outputIndex": 2, + "outputQty": "963647339284250778213757", "swapFee": "0", - "redemptionFee": "146982773068395697080", + "redemptionFee": "577721947572706568252", "mpReserves": [ - "59055056855251380595300548", - "24927442569021162195800939", - "24793287299385422754600784" + "55400230762434962305338280", + "14076772235539068728899347", + "33879502675894014105737577" ], "fpReserves": [ - "9657258923332207238232365", - "4306599739742270399516214" + "4095183535079621833372540", + "2984444103408950796294973" ], - "mAssetSupply": "108738968089611555327699867", - "LPTokenSupply": "13829175195546883860923108" + "mAssetSupply": "103201478152443741934226778", + "LPTokenSupply": "6933754107228418501250760" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "266509522750837545238528", - "outputQty0": "265972222244861351197082", - "outputQty": "262826872259911979531418", + "type": "swap_fp_to_mp", + "inputQty": "38008831468401084858368", + "outputIndex": 1, + "outputQty": "37435486207847284401935", + "swapFee": "0", + "redemptionFee": "22853276840313647260", "mpReserves": [ - "59321566378002218140539076", - "24927442569021162195800939", - "24793287299385422754600784" + "55400230762434962305338280", + "14039336749331221444497412", + "33879502675894014105737577" ], "fpReserves": [ - "9923231145577068589429447", - "4306599739742270399516214" + "4057094740345765754604530", + "3022452934877351881153341" ], - "mAssetSupply": "109004940311856416678896949", - "LPTokenSupply": "14092002067806795840454526" + "mAssetSupply": "103163412210986726169106028", + "LPTokenSupply": "6933754107228418501250760" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "365574697203012992", - "outputQty0": "366188759895986637", - "outputQty": "361838266934244993", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "54031307336555659264", + "outputQty0": "53691129667409750560", + "outputQty": "53539890574859846411", + "swapFee": "42032055186575296", "mpReserves": [ - "59321566378002218140539076", - "24927442569021162195800939", - "24793287664960119957613776" + "55400284793742298860997544", + "14039336749331221444497412", + "33879502675894014105737577" ], "fpReserves": [ - "9923231511765828485416084", - "4306599739742270399516214" + "4057148431475433164355090", + "3022399394986777021306930" ], - "mAssetSupply": "109004940678045176574883586", - "LPTokenSupply": "14092002429645062774699519" + "mAssetSupply": "103163465902116393578856588", + "LPTokenSupply": "6933754111431624019908289" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "214153413090880186744832", - "outputQty0": "214508457576982432151293", - "outputQty": "211950586700986464871341", + "inputIndex": 1, + "inputQty": "10796266798872229052416", + "outputQty0": "10978444119099098042722", + "outputQty": "10743035542598686000667", "mpReserves": [ - "59321566378002218140539076", - "24927442569021162195800939", - "25007441078051000144358608" + "55400284793742298860997544", + "14050133016130093673549828", + "33879502675894014105737577" ], "fpReserves": [ - "10137739969342810917567377", - "4306599739742270399516214" + "4068126875594532262397812", + "3022399394986777021306930" ], - "mAssetSupply": "109219449135622159007034879", - "LPTokenSupply": "14303953016346049239570860" + "mAssetSupply": "103174444346235492676899310", + "LPTokenSupply": "6944497146974222705908956" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "16499881747856785408", - "outputQty0": "16527213254525483479", - "outputQty": "16388870599302263455", - "swapFee": "13063530646809319", + "type": "redeem", + "outputIndex": 1, + "inputQty": "13522096228550805504", + "outputQty0": "13810168933167069933", + "outputQty": "13573031543601680483", + "swapFee1": "8113257737130483", + "swapFee2": "8286101359900241", "mpReserves": [ - "59321566378002218140539076", - "24927459068902910052586347", - "25007441078051000144358608" + "55400284793742298860997544", + "14050119443098550071869345", + "33879502675894014105737577" ], "fpReserves": [ - "10137756496556065443050856", - "4306583350871671097252759" + "4068113065425599095327879", + "3022399394986777021306930" ], - "mAssetSupply": "109219465662835413532518358", - "LPTokenSupply": "14303953017652402304251791" + "mAssetSupply": "103174430544352660869729618", + "LPTokenSupply": "6944483625689319928816500" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "884309352868234133504", - "outputQty0": "894483927811392637630", - "outputQty": "895926535657610523031", - "swapFee1": "530585611720940480", - "swapFee2": "357793571124557055", + "inputQty": "662504145353542336512", + "outputQty0": "676617854302886870646", + "outputQty": "680492893177436367556", + "swapFee1": "397502487212125401", + "swapFee2": "405970712581732122", "mpReserves": [ - "59320670451466560530016045", - "24927459068902910052586347", - "25007441078051000144358608" + "55399604300849121424629988", + "14050119443098550071869345", + "33879502675894014105737577" ], "fpReserves": [ - "10136862012628254050413226", - "4306583350871671097252759" + "4067436447571296208457233", + "3022399394986777021306930" ], - "mAssetSupply": "109218571536701173264437783", - "LPTokenSupply": "14303068761358095242212335" + "mAssetSupply": "103173754332469070564591094", + "LPTokenSupply": "6943821161294215107692528" }, { - "type": "swap_fp_to_mp", - "inputQty": "533204260624531925762048", - "outputIndex": 1, - "outputQty": "535545413526908745307445", - "swapFee": "0", - "redemptionFee": "214670705169142538619", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "9940963607692569477120", + "outputQty0": "9878417082642297913296", + "outputQty": "9850199925353896380531", + "swapFee": "7733218342458995414", "mpReserves": [ - "59320670451466560530016045", - "24391913655376001307278902", - "25007441078051000144358608" + "55409545264456813994107108", + "14050119443098550071869345", + "33879502675894014105737577" ], "fpReserves": [ - "9600185249705397703864341", - "4839787611496203023014807" + "4077314864653938506370529", + "3012549195061423124926399" ], - "mAssetSupply": "108682109444483486060427517", - "LPTokenSupply": "14303068761358095242212335" + "mAssetSupply": "103183632749551712862504390", + "LPTokenSupply": "6943821934616049353592069" }, { - "type": "swap_fp_to_mp", - "inputQty": "16489045195225984663552", - "outputIndex": 2, - "outputQty": "16545987638669940976627", - "swapFee": "0", - "redemptionFee": "6631705356769582611", + "type": "redeem", + "outputIndex": 0, + "inputQty": "64410026576055680106496", + "outputQty0": "65781742733164006829299", + "outputQty": "66158224721379463026636", + "swapFee1": "38646015945633408063", + "swapFee2": "39469045639898404097", "mpReserves": [ - "59320670451466560530016045", - "24391913655376001307278902", - "24990895090412330203381981" + "55343387039735434531080472", + "14050119443098550071869345", + "33879502675894014105737577" ], "fpReserves": [ - "9583605986313473747336403", - "4856276656691429007678359" + "4011533121920774499541230", + "3012549195061423124926399" ], - "mAssetSupply": "108665536812796918873482190", - "LPTokenSupply": "14303068761358095242212335" + "mAssetSupply": "103117890475864188754079188", + "LPTokenSupply": "6879415772641588236826379" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "123828020713817536", "outputIndex": 0, - "inputQty": "6013825231177452093440", - "outputQty0": "6078807196193070785476", - "outputQty": "6088828403591338102243", - "swapFee1": "3608295138706471256", - "swapFee2": "2431522878477228314", + "outputQty": "124780573566518764", + "swapFee": "0", + "redemptionFee": "74442699947334", "mpReserves": [ - "59314581623062969191913802", - "24391913655376001307278902", - "24990895090412330203381981" + "55343386914954860964561708", + "14050119443098550071869345", + "33879502675894014105737577" ], "fpReserves": [ - "9577527179117280676550927", - "4856276656691429007678359" + "4011532997849607920650826", + "3012549318889443838743935" ], - "mAssetSupply": "108659460437123604279925028", - "LPTokenSupply": "14297055296956431660766020" + "mAssetSupply": "103117890351867464875136118", + "LPTokenSupply": "6879415772641588236826379" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "21697519670055137181696", - "outputQty0": "21653135262867127253879", - "outputQty": "21518043008400376506273", - "swapFee": "17126994397724673475", + "type": "swap_fp_to_mp", + "inputQty": "4708120395868182413312", + "outputIndex": 1, + "outputQty": "4636406011787075455121", + "swapFee": "0", + "redemptionFee": "2830390778733579000", "mpReserves": [ - "59336279142733024329095498", - "24391913655376001307278902", - "24990895090412330203381981" + "55343386914954860964561708", + "14045483037086762996414224", + "33879502675894014105737577" ], "fpReserves": [ - "9599180314380147803804806", - "4834758613683028631172086" + "4006815679885051955649639", + "3017257439285312021157247" ], - "mAssetSupply": "108681113572386471407178907", - "LPTokenSupply": "14297057009655871433233367" + "mAssetSupply": "103113175864293687643713931", + "LPTokenSupply": "6879415772641588236826379" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1162185113582534918144", - "outputQty0": "1159807032447535234951", - "outputQty": "1152526427666515325327", - "swapFee": "917353252032910580", + "inputIndex": 2, + "inputQty": "3342097078122701651968", + "outputQty0": "3337750839092995459710", + "outputQty": "3328587821743994229452", + "swapFee": "2613024254372334112", "mpReserves": [ - "59337441327846606864013642", - "24391913655376001307278902", - "24990895090412330203381981" + "55343386914954860964561708", + "14045483037086762996414224", + "33882844772972136807389545" ], "fpReserves": [ - "9600340121412595339039757", - "4833606087255362115846759" + "4010153430724144951109349", + "3013928851463568026927795" ], - "mAssetSupply": "108682273379418918942413858", - "LPTokenSupply": "14297057101391196636524425" + "mAssetSupply": "103116513615132780639173641", + "LPTokenSupply": "6879416033944013674059790" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "7097607842804723", - "outputQty0": "7110158307235083", - "outputQty": "7065510831277708", - "swapFee": "5623796953324", + "type": "redeem", + "outputIndex": 2, + "inputQty": "86326726677111945297920", + "outputQty0": "88160128728433285894761", + "outputQty": "88221011367784660572288", + "swapFee1": "51796036006267167178", + "swapFee2": "52896077237059971536", "mpReserves": [ - "59337441327846606864013642", - "24391913662473609150083625", - "24990895090412330203381981" + "55343386914954860964561708", + "14045483037086762996414224", + "33794623761604352146817257" ], "fpReserves": [ - "9600340128522753646274840", - "4833606080189851284569051" + "3921993301995711665214588", + "3013928851463568026927795" ], - "mAssetSupply": "108682273386529077249648941", - "LPTokenSupply": "14297057101391759016219757" + "mAssetSupply": "103028406382481584413250416", + "LPTokenSupply": "6793094486870502355478587" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "38441482550741219409920", - "outputQty0": "38362781884274937856600", - "outputQty": "38119376012439654981259", - "swapFee": "30342911059087901016", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1148838214853003107631104", + "outputQty0": "1172581732917067093918655", + "outputQty": "1179182783468437518235236", + "swapFee1": "689302928911801864578", + "swapFee2": "703549039750240256351", "mpReserves": [ - "59375882810397348083423562", - "24391913662473609150083625", - "24990895090412330203381981" + "54164204131486423446326472", + "14045483037086762996414224", + "33794623761604352146817257" ], "fpReserves": [ - "9638702910407028584131440", - "4795486704177411629587792" + "2749411569078644571295933", + "3013928851463568026927795" ], - "mAssetSupply": "108720636168413352187505541", - "LPTokenSupply": "14297060135682864925009858" + "mAssetSupply": "101856528198604267559588112", + "LPTokenSupply": "5644325202310390428033940" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "6976238726006305718272", - "outputQty0": "7052120976874446161832", - "outputQty": "7036833828646856802345", - "swapFee1": "4185743235603783430", - "swapFee2": "2820848390749778464", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "986695873989060811816960", + "outputQty0": "985223018704630973098045", + "outputQty": "982650897252438888795244", + "swapFee": "771737216851244935728", "mpReserves": [ - "59375882810397348083423562", - "24384876828644962293281280", - "24990895090412330203381981" + "54164204131486423446326472", + "14045483037086762996414224", + "34781319635593412958634217" ], "fpReserves": [ - "9631650789430154137969608", - "4795486704177411629587792" + "3734634587783275544393978", + "2031277954211129138132551" ], - "mAssetSupply": "108713586868284868491122173", - "LPTokenSupply": "14290084315531182179669929" + "mAssetSupply": "102841751217308898532686157", + "LPTokenSupply": "5644402376032075552527512" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "440867325846023372800", - "outputQty0": "441648669099915001554", - "outputQty": "436634745594811693558", + "inputIndex": 2, + "inputQty": "21391902058253180928", + "outputQty0": "21357435628686967026", + "outputQty": "20872789481690162110", "mpReserves": [ - "59375882810397348083423562", - "24385317695970808316654080", - "24990895090412330203381981" + "54164204131486423446326472", + "14045483037086762996414224", + "34781341027495471211815145" ], "fpReserves": [ - "9632092438099254052971162", - "4795486704177411629587792" + "3734655945218904231361004", + "2031277954211129138132551" ], - "mAssetSupply": "108714028516953968406123727", - "LPTokenSupply": "14290520950276776991363487" + "mAssetSupply": "102841772574744527219653183", + "LPTokenSupply": "5644423248821557242689622" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "785183616024520960", - "outputQty0": "783574961843576622", - "outputQty": "778557671979078710", - "swapFee": "619743336741215", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1893524919103345408", + "outputQty0": "1936328274448037099", + "outputQty": "1903581396272040063", + "swapFee1": "1136114951462007", + "swapFee2": "1161796964668822", "mpReserves": [ - "59375883595580964107944522", - "24385317695970808316654080", - "24990895090412330203381981" + "54164204131486423446326472", + "14045481133505366724374161", + "34781341027495471211815145" ], "fpReserves": [ - "9632093221674215896547784", - "4795485925619739650509082" + "3734654008890629783323905", + "2031277954211129138132551" ], - "mAssetSupply": "108714029300528930249700349", - "LPTokenSupply": "14290520950338751325037608" + "mAssetSupply": "102841770639578049736284906", + "LPTokenSupply": "5644421355410249634490414" }, { - "type": "swap_fp_to_mp", - "inputQty": "4341843302931360120832", + "type": "redeem", "outputIndex": 2, - "outputQty": "4357508300184964826601", - "swapFee": "0", - "redemptionFee": "1746517853762141167", + "inputQty": "2053272061328800035635200", + "outputQty0": "2097235038547327876519129", + "outputQty": "2098819513925568951894567", + "swapFee1": "1231963236797280021381", + "swapFee2": "1258341023128396725911", "mpReserves": [ - "59375883595580964107944522", - "24385317695970808316654080", - "24986537582112145238555380" + "54164204131486423446326472", + "14045481133505366724374161", + "32682521513569902259920578" ], "fpReserves": [ - "9627726927039810543629232", - "4799827768922671010629914" + "1637418970343301906804776", + "2031277954211129138132551" ], - "mAssetSupply": "108709664752412378658922964", - "LPTokenSupply": "14290520950338751325037608" + "mAssetSupply": "100745793942053850256491688", + "LPTokenSupply": "3591272490405129326857352" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "49640163254871865163776", - "outputQty0": "49727862027283157589191", - "outputQty": "49405902267387105281908", - "swapFee": "39330469086840101057", + "type": "swap_fp_to_mp", + "inputQty": "148618466636838251528192", + "outputIndex": 1, + "outputQty": "145868933021002314168847", + "swapFee": "0", + "redemptionFee": "88988229773488806920", "mpReserves": [ - "59375883595580964107944522", - "24434957859225680181817856", - "24986537582112145238555380" + "54164204131486423446326472", + "13899612200484364410205314", + "32682521513569902259920578" ], "fpReserves": [ - "9677454789067093701218423", - "4750421866655283905348006" + "1489105254054153895270785", + "2179896420847967389660743" ], - "mAssetSupply": "108759392614439661816512155", - "LPTokenSupply": "14290524883385660009047713" + "mAssetSupply": "100597569213994475733764617", + "LPTokenSupply": "3591272490405129326857352" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "576987927967644633792512", - "outputQty0": "577969365773534679505983", - "outputQty": "571312264387611722174059", + "inputIndex": 0, + "inputQty": "637492529778465397800960", + "outputQty0": "633471912927660145631420", + "outputQty": "620561521988110173175747", "mpReserves": [ - "59375883595580964107944522", - "25011945787193324815610368", - "24986537582112145238555380" + "54801696661264888844127432", + "13899612200484364410205314", + "32682521513569902259920578" ], "fpReserves": [ - "10255424154840628380724406", - "4750421866655283905348006" + "2122577166981814040902205", + "2179896420847967389660743" ], - "mAssetSupply": "109337361980213196496018138", - "LPTokenSupply": "14861837147773271731221772" + "mAssetSupply": "101231041126922135879396037", + "LPTokenSupply": "4211834012393239500033099" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "152696664434462880", - "outputQty0": "152389983996908850", - "outputQty": "151286048169680092", - "swapFee": "120494409654861", + "inputQty": "131848341441283014656", + "outputQty0": "131009788791621831761", + "outputQty": "130928037192143836572", + "swapFee": "102609025303191111", "mpReserves": [ - "59375883748277628542407402", - "25011945787193324815610368", - "24986537582112145238555380" + "54801828509606330127142088", + "13899612200484364410205314", + "32682521513569902259920578" ], "fpReserves": [ - "10255424307230612377633256", - "4750421715369235735667914" + "2122708176770605662733966", + "2179765492810775245824171" ], - "mAssetSupply": "109337362132603180492926988", - "LPTokenSupply": "14861837147785321172187258" + "mAssetSupply": "101231172136710927501227798", + "LPTokenSupply": "4211834022654142030352210" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "2625266479024767", - "outputQty0": "2629593453032506", - "outputQty": "2610544284155388", - "swapFee": "2079213491554", + "inputQty": "11108120929943626", + "outputQty0": "11096165861615362", + "outputQty": "11089237252611979", + "swapFee": "8690697096566", "mpReserves": [ - "59375883748277628542407402", - "25011945787193324815610368", - "24986537584737411717580147" + "54801828509606330127142088", + "13899612200484364410205314", + "32682521524678023189864204" ], "fpReserves": [ - "10255424309860205830665762", - "4750421712758691451512526" + "2122708187866771524349328", + "2179765481721537993212192" ], - "mAssetSupply": "109337362135232773945959494", - "LPTokenSupply": "14861837147785529093536413" + "mAssetSupply": "101231172147807093362843160", + "LPTokenSupply": "4211834022655011100061866" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "3996816509872457121792", - "outputQty0": "4041408332635349800378", - "outputQty": "4033168517868446419148", - "swapFee1": "2398089905923474273", - "swapFee2": "1616563333054139920", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "826361606261685354496", + "outputQty0": "825472146700325327635", + "outputQty": "824954611442101588095", + "swapFee": "646522753452565421", "mpReserves": [ - "59375883748277628542407402", - "25007912618675456369191220", - "24986537584737411717580147" + "54801828509606330127142088", + "13899612200484364410205314", + "32683347886284284875218700" ], "fpReserves": [ - "10251382901527570480865384", - "4750421712758691451512526" + "2123533660013471849676963", + "2178940527110095891624097" ], - "mAssetSupply": "109333322343463471650299036", - "LPTokenSupply": "14857840571084647228762048" + "mAssetSupply": "101231997619953793688170795", + "LPTokenSupply": "4211834087307286445318408" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "50244249457949794304", "outputIndex": 1, - "inputQty": "52413562283274893524992", - "outputQty0": "52997761386725737673624", - "outputQty": "52889404381847983947247", - "swapFee1": "31448137369964936114", - "swapFee2": "21199104554690295069", + "outputQty": "49385046965088588899", + "swapFee": "0", + "redemptionFee": "30141401709083485", "mpReserves": [ - "59375883748277628542407402", - "24955023214293608385243973", - "24986537584737411717580147" + "54801828509606330127142088", + "13899562815437399321616415", + "32683347886284284875218700" ], "fpReserves": [ - "10198385140140844743191760", - "4750421712758691451512526" + "2123483424343956710534170", + "2178990771359553841418401" ], - "mAssetSupply": "109280345781181300602920481", - "LPTokenSupply": "14805430153615109331730667" + "mAssetSupply": "101231947414425680258111487", + "LPTokenSupply": "4211834087307286445318408" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "215530586466547167920128", + "outputQty0": "214155956133868974047638", + "outputQty": "209628689821336105843895", + "mpReserves": [ + "55017359096072877295062216", + "13899562815437399321616415", + "32683347886284284875218700" + ], + "fpReserves": [ + "2337639380477825684581808", + "2178990771359553841418401" + ], + "mAssetSupply": "101446103370559549232159125", + "LPTokenSupply": "4421462777128622551162303" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "55836306033502085120", - "outputQty0": "56458189723017387058", - "outputQty": "56342905741206862372", - "swapFee1": "33501783620101251", - "swapFee2": "22583275889206954", + "outputIndex": 0, + "inputQty": "61252966336208265216", + "outputQty0": "62547900318518643548", + "outputQty": "62912751292443009799", + "swapFee1": "36751779801724959", + "swapFee2": "37528740191111186", "mpReserves": [ - "59375883748277628542407402", - "24955023214293608385243973", - "24986481241831670510717775" + "55017296183321584852052417", + "13899562815437399321616415", + "32683347886284284875218700" ], "fpReserves": [ - "10198328681951121725804702", - "4750421712758691451512526" + "2337576832577507165938260", + "2178990771359553841418401" ], - "mAssetSupply": "109280289345574853474740377", - "LPTokenSupply": "14805374320659254191655672" + "mAssetSupply": "101446040860187970904626763", + "LPTokenSupply": "4421401527837464323069582" }, { - "type": "swap_fp_to_mp", - "inputQty": "565130470322908299264", - "outputIndex": 2, - "outputQty": "567597821412764179678", - "swapFee": "0", - "redemptionFee": "227503690674827145", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "40332552798898495488", + "outputQty0": "40074592433823362694", + "outputQty": "40023864549077969892", + "swapFee": "31377102742187222", "mpReserves": [ - "59375883748277628542407402", - "24955023214293608385243973", - "24985913644010257746538097" + "55017336515874383750547905", + "13899562815437399321616415", + "32683347886284284875218700" ], "fpReserves": [ - "10197759922724434657940974", - "4750986843229014359811790" + "2337616907169940989300954", + "2178950747495004763448509" ], - "mAssetSupply": "109279720813851857081703794", - "LPTokenSupply": "14805374320659254191655672" + "mAssetSupply": "101446080934780404727989457", + "LPTokenSupply": "4421401530975174597288304" }, { "type": "swap_fp_to_mp", - "inputQty": "23067840085942515793920", + "inputQty": "13125429109668070817792", "outputIndex": 0, - "outputQty": "23252412944177910830973", + "outputQty": "13207624524553999445286", "swapFee": "0", - "redemptionFee": "9285971134130776343", + "redemptionFee": "7878626309004055428", "mpReserves": [ - "59352631335333450631576429", - "24955023214293608385243973", - "24985913644010257746538097" + "55004128891349829751102619", + "13899562815437399321616415", + "32683347886284284875218700" ], "fpReserves": [ - "10174544994889107717082271", - "4774054683314956875605710" + "2324485863321600896919807", + "2192076176604672834266301" ], - "mAssetSupply": "109256515171987664271621434", - "LPTokenSupply": "14805374320659254191655672" + "mAssetSupply": "101432957769558373639663738", + "LPTokenSupply": "4421401530975174597288304" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "374442724829122", - "outputQty0": "373689783699961", - "outputQty": "371041107456458", - "swapFee": "295489894007", + "inputQty": "1101928254414787182592", + "outputQty0": "1094882822928711310821", + "outputQty": "1093577945954726185069", + "swapFee": "857289061894222581", "mpReserves": [ - "59352631335707893356405551", - "24955023214293608385243973", - "24985913644010257746538097" + "55005230819604244538285211", + "13899562815437399321616415", + "32683347886284284875218700" ], "fpReserves": [ - "10174544995262797500782232", - "4774054682943915768149252" + "2325580746144529608230628", + "2190982598658718108081232" ], - "mAssetSupply": "109256515172361354055321395", - "LPTokenSupply": "14805374320659283740645072" + "mAssetSupply": "101434052652381302350974559", + "LPTokenSupply": "4421401616704080786710562" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "221912525174799138291712", - "outputQty0": "221464984526030220563172", - "outputQty": "218891133713340945762987", + "inputIndex": 1, + "inputQty": "23659046909665928544256", + "outputQty0": "24053614743326467085387", + "outputQty": "23541909391016441703815", "mpReserves": [ - "59574543860882692494697263", - "24955023214293608385243973", - "24985913644010257746538097" + "55005230819604244538285211", + "13923221862347065250160671", + "32683347886284284875218700" ], "fpReserves": [ - "10396009979788827721345404", - "4774054682943915768149252" + "2349634360887856075316015", + "2190982598658718108081232" ], - "mAssetSupply": "109477980156887384275884567", - "LPTokenSupply": "15024265454372624686408059" + "mAssetSupply": "101458106267124628818059946", + "LPTokenSupply": "4444943526095097228414377" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2849349469190058147840", - "outputQty0": "2881243806906875015152", - "outputQty": "2875300633152333019252", - "swapFee1": "1709609681514034888", - "swapFee2": "1152497522762750006", + "type": "mint", + "inputIndex": 2, + "inputQty": "43916007960093497753600", + "outputQty0": "43869545254087153509716", + "outputQty": "42934296751398140350448", "mpReserves": [ - "59574543860882692494697263", - "24952147913660456052224721", - "24985913644010257746538097" + "55005230819604244538285211", + "13923221862347065250160671", + "32727263894244378372972300" ], "fpReserves": [ - "10393128735981920846330252", - "4774054682943915768149252" + "2393503906141943228825731", + "2190982598658718108081232" ], - "mAssetSupply": "109475100065578000163619421", - "LPTokenSupply": "15021416275864402779663707" + "mAssetSupply": "101501975812378715971569662", + "LPTokenSupply": "4487877822846495368764825" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "5100682661425953792", - "outputQty0": "5157775115091722271", - "outputQty": "5166162326319112792", - "swapFee1": "3060409596855572", - "swapFee2": "2063110046036688", + "type": "swap_fp_to_mp", + "inputQty": "100081319408233185280", + "outputIndex": 2, + "outputQty": "100186593639397363651", + "swapFee": "0", + "redemptionFee": "60084055604447328", "mpReserves": [ - "59574538694720366175584471", - "24952147913660456052224721", - "24985913644010257746538097" + "55005230819604244538285211", + "13923221862347065250160671", + "32727163707650738975608649" ], "fpReserves": [ - "10393123578206805754607981", - "4774054682943915768149252" + "2393403766049269149944147", + "2191082679978126341266512" ], - "mAssetSupply": "109475094909865995117933838", - "LPTokenSupply": "15021411175487782313395472" + "mAssetSupply": "101501875732370097497135406", + "LPTokenSupply": "4487877822846495368764825" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3529575084150317037649920", - "outputQty0": "3534328493985721658386766", - "outputQty": "3490822269826820139052268", + "inputIndex": 2, + "inputQty": "140891630294347726848", + "outputQty0": "140741739837005889439", + "outputQty": "137737244836665245298", "mpReserves": [ - "59574538694720366175584471", - "28481722997810773089874641", - "24985913644010257746538097" + "55005230819604244538285211", + "13923221862347065250160671", + "32727304599281033323335497" ], "fpReserves": [ - "13927452072192527412994747", - "4774054682943915768149252" + "2393544507789106155833586", + "2191082679978126341266512" ], - "mAssetSupply": "113009423403851716776320604", - "LPTokenSupply": "18512233445314602452447740" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2089355627933391797616640", - "hardLimitError": true + "mAssetSupply": "101502016474109934503024845", + "LPTokenSupply": "4488015560091332034010123" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "257230715419389851598848", - "outputQty0": "260435629843160778240979", - "outputQty": "260050551066200519922636", - "swapFee1": "154338429251633910959", - "swapFee2": "104174251937264311296", + "outputIndex": 2, + "inputQty": "589448186832758046720", + "outputQty0": "601944390139702490637", + "outputQty": "602223874533373104959", + "swapFee1": "353668912099654828", + "swapFee2": "361166634083821494", "mpReserves": [ - "59574538694720366175584471", - "28221672446744572569952005", - "24985913644010257746538097" + "55005230819604244538285211", + "13923221862347065250160671", + "32726702375406499950230538" ], "fpReserves": [ - "13667016442349366634753768", - "4774054682943915768149252" + "2392942563398966453342949", + "2191082679978126341266512" ], - "mAssetSupply": "112749091948260493262390921", - "LPTokenSupply": "18255018163738137764239987" + "mAssetSupply": "101501414890886428884355702", + "LPTokenSupply": "4487426147271390485928885" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "8065519228346342309888", - "outputQty0": "8080211976265145402069", - "outputQty": "7976289732314773798221", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "300702068114637258752", + "outputQty0": "305711793849776954927", + "outputQty": "305288152570313658234", + "swapFee": "239348574555687780", "mpReserves": [ - "59574538694720366175584471", - "28221672446744572569952005", - "24993979163238604088847985" + "55005230819604244538285211", + "13923522564415179887419423", + "32726702375406499950230538" ], "fpReserves": [ - "13675096654325631780155837", - "4774054682943915768149252" + "2393248275192816230297876", + "2190777391825556027608278" ], - "mAssetSupply": "112757172160236758407792990", - "LPTokenSupply": "18262994453470452538038208" + "mAssetSupply": "101501720602680278661310629", + "LPTokenSupply": "4487426171206247941497663" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "317277342584739987456", - "outputQty0": "317855044949502397286", - "outputQty": "314190333936264393754", - "swapFee": "251013226741922093", + "type": "redeem", + "outputIndex": 1, + "inputQty": "580171272431748120576", + "outputQty0": "592470910377065976958", + "outputQty": "582412181029452161463", + "swapFee1": "348102763459048872", + "swapFee2": "355482546226239586", "mpReserves": [ - "59574538694720366175584471", - "28221672446744572569952005", - "24994296440581188828835441" + "55005230819604244538285211", + "13922940152234150435257960", + "32726702375406499950230538" ], "fpReserves": [ - "13675414509370581282553123", - "4773740492609979503755498" + "2392655804282439164320918", + "2190777391825556027608278" ], - "mAssetSupply": "112757490015281707910190276", - "LPTokenSupply": "18262994478571775212230417" + "mAssetSupply": "101501128487252447821573257", + "LPTokenSupply": "4486846034744092539281974" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "124714523242522460160", - "outputQty0": "126263849616346953234", - "outputQty": "126445888934547684245", - "swapFee1": "74828713945513476", - "swapFee2": "50505539846538781", + "inputQty": "121413140608541868032", + "outputQty0": "123987049965257961824", + "outputQty": "124708224499391753349", + "swapFee1": "72847884365125120", + "swapFee2": "74392229979154777", "mpReserves": [ - "59574412248831431627900226", - "28221672446744572569952005", - "24994296440581188828835441" + "55005106111379745146531862", + "13922940152234150435257960", + "32726702375406499950230538" ], "fpReserves": [ - "13675288245520964935599889", - "4773740492609979503755498" + "2392531817232473906359094", + "2190777391825556027608278" ], - "mAssetSupply": "112757363801937631409775823", - "LPTokenSupply": "18262869771531404084321604" + "mAssetSupply": "101501004574594712542766210", + "LPTokenSupply": "4486724628888272433926454" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "458366362756318509400064", - "outputQty0": "458855079627458653612604", - "outputQty": "452915416557117222536160", + "type": "swap_fp_to_mp", + "inputQty": "34287519593372699328512", + "outputIndex": 0, + "outputQty": "34503593483484712289518", + "swapFee": "0", + "redemptionFee": "20582497349947808880", "mpReserves": [ - "59574412248831431627900226", - "28680038809500891079352069", - "24994296440581188828835441" + "54970602517896260434242344", + "13922940152234150435257960", + "32726702375406499950230538" ], "fpReserves": [ - "14134143325148423589212493", - "4773740492609979503755498" + "2358227654982560891558769", + "2225064911418928726936790" ], - "mAssetSupply": "113216218881565090063388427", - "LPTokenSupply": "18715785188088521306857764" + "mAssetSupply": "101466720994842149475774765", + "LPTokenSupply": "4486724628888272433926454" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "55362461622704780869632", - "outputQty0": "55261800621164108276402", - "outputQty": "54581293120451471026013", - "swapFee": "43633146328764772533", + "type": "mint", + "inputIndex": 1, + "inputQty": "872959978879973855330304", + "outputQty0": "886602015756582711153219", + "outputQty": "867298381556177896019368", "mpReserves": [ - "59629774710454136408769858", - "28680038809500891079352069", - "24994296440581188828835441" + "54970602517896260434242344", + "14795900131114124290588264", + "32726702375406499950230538" ], "fpReserves": [ - "14189405125769587697488895", - "4719159199489528032729485" + "3244829670739143602711988", + "2225064911418928726936790" ], - "mAssetSupply": "113271480682186254171664829", - "LPTokenSupply": "18715789551403154183335017" + "mAssetSupply": "102353323010598732186927984", + "LPTokenSupply": "5354023010444450329945822" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "723602138721666811822080", - "outputQty0": "722272588309533250100742", - "outputQty": "711557004159452665732066", - "swapFee": "570171208574748353556", + "type": "redeem", + "outputIndex": 2, + "inputQty": "27534518590849", + "outputQty0": "28143872855341", + "outputQty": "28150260104950", + "swapFee1": "16520711154", + "swapFee2": "16886323713", "mpReserves": [ - "60353376849175803220591938", - "28680038809500891079352069", - "24994296440581188828835441" + "54970602517896260434242344", + "14795900131114124290588264", + "32726702375378349690125588" ], "fpReserves": [ - "14911677714079120947589637", - "4007602195330075366997419" + "3244829670710999729856647", + "2225064911418928726936790" ], - "mAssetSupply": "113993753270495787421765571", - "LPTokenSupply": "18715846568524011658170372" + "mAssetSupply": "102353323010570605200396356", + "LPTokenSupply": "5354023010416917463426088" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "8023341220838214", - "outputQty0": "8135035902894236", - "outputQty": "8146896334599723", - "swapFee1": "4814004732502", - "swapFee2": "3254014361157", + "type": "swap_fp_to_mp", + "inputQty": "1058547203816865660928", + "outputIndex": 1, + "outputQty": "1045380325108409387818", + "swapFee": "0", + "redemptionFee": "636810837486443778", "mpReserves": [ - "60353376841028906885992215", - "28680038809500891079352069", - "24994296440581188828835441" + "54970602517896260434242344", + "14794854750789015881200446", + "32726702375378349690125588" ], "fpReserves": [ - "14911677705944085044695401", - "4007602195330075366997419" + "3243768319315188990226582", + "2226123458622745592597718" ], - "mAssetSupply": "113993753262364005533232492", - "LPTokenSupply": "18715846560501151837805408" + "mAssetSupply": "102352262295985631947210069", + "LPTokenSupply": "5354023010416917463426088" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "16842575288945162059776", - "outputQty0": "16811321277874559830794", - "outputQty": "16514289253021481808496", - "swapFee": "13256395214457995719", + "type": "swap_fp_to_mp", + "inputQty": "1320079189733630", + "outputIndex": 1, + "outputQty": "1303653720227161", + "swapFee": "0", + "redemptionFee": "794143226354", "mpReserves": [ - "60370219416317852048051991", - "28680038809500891079352069", - "24994296440581188828835441" + "54970602517896260434242344", + "14794854749485362160973285", + "32726702375378349690125588" ], "fpReserves": [ - "14928489027221959604526195", - "3991087906077053885188923" + "3243768317991616946302028", + "2226123459942824782331348" ], - "mAssetSupply": "114010564583641880093063286", - "LPTokenSupply": "18715847886140673283604979" + "mAssetSupply": "102352262294662854046511869", + "LPTokenSupply": "5354023010416917463426088" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "447227593613287555072", - "outputQty0": "453468678929119887500", - "outputQty": "452430467153807605195", - "swapFee1": "268336556167972533", - "swapFee2": "181387471571647955", + "outputIndex": 0, + "inputQty": "1473380427122720265732096", + "outputQty0": "1504632965122051952586225", + "outputQty": "1512625322631799972528182", + "swapFee1": "884028256273632159439", + "swapFee2": "902779779073231171551", "mpReserves": [ - "60370219416317852048051991", - "28680038809500891079352069", - "24993844010114035021230246" + "53457977195264460461714162", + "14794854749485362160973285", + "32726702375378349690125588" ], "fpReserves": [ - "14928035558543030484638695", - "3991087906077053885188923" + "1739135352869564993715803", + "2226123459942824782331348" ], - "mAssetSupply": "114010111296350422544823741", - "LPTokenSupply": "18715400685380715612847160" + "mAssetSupply": "100848532109319875325097195", + "LPTokenSupply": "3880730986119824560909935" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "40866072364395626758144", - "outputQty0": "40790179691345830195514", - "outputQty": "40058871304193656150543", - "swapFee": "32163445571090080609", - "mpReserves": [ - "60411085488682247674810135", - "28680038809500891079352069", - "24993844010114035021230246" - ], - "fpReserves": [ - "14968825738234376314834209", - "3951029034772860229038380" - ], - "mAssetSupply": "114050901476041768375019255", - "LPTokenSupply": "18715403901725272721855220" + "type": "redeem", + "outputIndex": 2, + "inputQty": "2466400356195185568251904", + "hardLimitError": true }, { "type": "mint", "inputIndex": 1, - "inputQty": "42509199183477506834432", - "outputQty0": "42554695444881335036897", - "outputQty": "41940009191394415136687", + "inputQty": "3167709808865769947136", + "outputQty0": "3212267925000326961336", + "outputQty": "3146739217028840231403", "mpReserves": [ - "60411085488682247674810135", - "28722548008684368586186501", - "24993844010114035021230246" + "53457977195264460461714162", + "14798022459294227930920421", + "32726702375378349690125588" ], "fpReserves": [ - "15011380433679257649871106", - "3951029034772860229038380" + "1742347620794565320677139", + "2226123459942824782331348" ], - "mAssetSupply": "114093456171486649710056152", - "LPTokenSupply": "18757343910916667136991907" + "mAssetSupply": "100851744377244875652058531", + "LPTokenSupply": "3883877725336853401141338" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "208029620451539058688", - "outputQty0": "210953812614172522568", - "outputQty": "210469833008084216107", - "swapFee1": "124817772270923435", - "swapFee2": "84381525045669009", + "outputIndex": 0, + "inputQty": "2777354808564092", + "outputQty0": "2833500663852352", + "outputQty": "2848204261163282", + "swapFee1": "1666412885138", + "swapFee2": "1700100398311", "mpReserves": [ - "60411085488682247674810135", - "28722548008684368586186501", - "24993633540281026937014139" + "53457977192416256200550880", + "14798022459294227930920421", + "32726702375378349690125588" ], "fpReserves": [ - "15011169479866643477348538", - "3951029034772860229038380" + "1742347617961064656824787", + "2226123459942824782331348" ], - "mAssetSupply": "114093245302055560583202593", - "LPTokenSupply": "18757135893777992825025562" + "mAssetSupply": "100851744374413075088604490", + "LPTokenSupply": "3883877722559665233865759" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "37277209389237592064", - "outputQty0": "37347984589016818208", - "outputQty": "36668285913240828714", - "swapFee": "29446542857794791", + "inputQty": "305956363265023606784", + "outputQty0": "305664818040175662517", + "outputQty": "305928372787034141050", + "swapFee": "239542556562655982", "mpReserves": [ - "60411085488682247674810135", - "28722548008684368586186501", - "24993670817490416174606203" + "53457977192416256200550880", + "14798022459294227930920421", + "32727008331741614713732372" ], "fpReserves": [ - "15011206827851232494166746", - "3950992366486946988209666" + "1742653282779104832487304", + "2225817531570037748190298" ], - "mAssetSupply": "114093282650040149600020801", - "LPTokenSupply": "18757135896722647110805041" + "mAssetSupply": "100852050039231115264267007", + "LPTokenSupply": "3883877746513920890131357" }, { "type": "swap_fp_to_mp", - "inputQty": "323998681567681199472640", - "outputIndex": 0, - "outputQty": "329740848688934829063977", + "inputQty": "100522590132199260160", + "outputIndex": 1, + "outputQty": "98904571639483446496", "swapFee": "0", - "redemptionFee": "131705284453012323466", + "redemptionFee": "60213430216133380", "mpReserves": [ - "60081344639993312845746158", - "28722548008684368586186501", - "24993670817490416174606203" + "53457977192416256200550880", + "14797923554722588447473925", + "32727008331741614713732372" ], "fpReserves": [ - "14681943616718701685500650", - "4274991048054628187682306" + "1742552927062077943519415", + "2225918054160169947450458" ], - "mAssetSupply": "113764151144192071803678171", - "LPTokenSupply": "18757135896722647110805041" + "mAssetSupply": "100851949743727518591432498", + "LPTokenSupply": "3883877746513920890131357" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "1335816785893666599206912", - "hardLimitError": true - }, - { - "type": "swap_fp_to_mp", - "inputQty": "522621069738068541440", - "outputIndex": 2, - "outputQty": "529192963441114991589", - "swapFee": "0", - "redemptionFee": "212159528263444703", + "inputQty": "3607160542208091750400", + "outputQty0": "3586384698319959314588", + "outputQty": "3589428743977725123684", + "swapFee": "2810554951799537839", "mpReserves": [ - "60081344639993312845746158", - "28722548008684368586186501", - "24993141624526975059614614" + "53461584352958464292301280", + "14797923554722588447473925", + "32727008331741614713732372" ], "fpReserves": [ - "14681413217898043073740868", - "4275513669124366256223746" + "1746139311760397902834003", + "2222328625416192222326774" ], - "mAssetSupply": "113763620957530941455363092", - "LPTokenSupply": "18757135896722647110805041" + "mAssetSupply": "100855536128425838550747086", + "LPTokenSupply": "3883878027569416070085140" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "347598278188296499625984", - "outputQty0": "348238533384368255040791", - "outputQty": "343392308149022533282125", - "mpReserves": [ - "60081344639993312845746158", - "28722548008684368586186501", - "25340739902715271559240598" - ], - "fpReserves": [ - "15029651751282411328781659", - "4275513669124366256223746" - ], - "mAssetSupply": "114111859490915309710403883", - "LPTokenSupply": "19100528204871669644087166" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "10411632352561618485248", - "outputQty0": "10422748672319288285208", - "outputQty": "10276976225204341915698", + "type": "redeem", + "outputIndex": 0, + "inputQty": "19293756282957120", + "outputQty0": "19684109116714625", + "outputQty": "19786265513363994", + "swapFee1": "11576253769774", + "swapFee2": "11810465470028", "mpReserves": [ - "60081344639993312845746158", - "28732959641036930204671749", - "25340739902715271559240598" + "53461584333172198778937286", + "14797923554722588447473925", + "32727008331741614713732372" ], "fpReserves": [ - "15040074499954730617066867", - "4275513669124366256223746" + "1746139292076288786119378", + "2222328625416192222326774" ], - "mAssetSupply": "114122282239587628998689091", - "LPTokenSupply": "19110805181096873986002864" + "mAssetSupply": "100855536108753539899502489", + "LPTokenSupply": "3883878008276817412504997" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "401206313551316320256", - "outputQty0": "401931283188064879250", - "outputQty": "395473619297865321073", - "swapFee": "317047226483995503", + "inputIndex": 1, + "inputQty": "626650892969874435342336", + "outputQty0": "635088901231493531532324", + "outputQty": "634226208937304675684485", + "swapFee": "497401435575169820249", "mpReserves": [ - "60081344639993312845746158", - "28732959641036930204671749", - "25341141109028822875560854" + "53461584333172198778937286", + "15424574447692462882816261", + "32727008331741614713732372" ], "fpReserves": [ - "15040476431237918681946117", - "4275118195505068390902673" + "2381228193307782317651702", + "1588102416478887546642289" ], - "mAssetSupply": "114122684170870817063568341", - "LPTokenSupply": "19110805212801596634402414" + "mAssetSupply": "101490625009985033431034813", + "LPTokenSupply": "3883927748420374929487021" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "60812510462942429184", - "outputQty0": "61638262617956637189", - "outputQty": "61502476002038352480", - "swapFee1": "36487506277765457", - "swapFee2": "24655305047182654", + "outputIndex": 0, + "inputQty": "102842728424082837078016", + "outputQty0": "105154257198245725342033", + "outputQty": "105674139841413207717533", + "swapFee1": "61705637054449702246", + "swapFee2": "63092554318947435205", "mpReserves": [ - "60081344639993312845746158", - "28732959641036930204671749", - "25341079606552820837208374" + "53355910193330785571219753", + "15424574447692462882816261", + "32727008331741614713732372" ], "fpReserves": [ - "15040414792975300725308928", - "4275118195505068390902673" + "2276073936109536592309669", + "1588102416478887546642289" ], - "mAssetSupply": "114122622557263504154113806", - "LPTokenSupply": "19110744403939884319749775" + "mAssetSupply": "101385533845341106653127985", + "LPTokenSupply": "3781091190559997537379229" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "3853832112799712256", - "outputQty0": "3906161929381143582", - "outputQty": "3897556785977498999", - "swapFee1": "2312299267679827", - "swapFee2": "1562464771752457", + "type": "mint", + "inputIndex": 1, + "inputQty": "40366235440559194898432", + "outputQty0": "40883556131062466488544", + "outputQty": "39962030604138674611595", "mpReserves": [ - "60081344639993312845746158", - "28732959641036930204671749", - "25341075708996034859709375" + "53355910193330785571219753", + "15464940683133022077714693", + "32727008331741614713732372" ], "fpReserves": [ - "15040410886813371344165346", - "4275118195505068390902673" + "2316957492240599058798213", + "1588102416478887546642289" ], - "mAssetSupply": "114122618652664039544722681", - "LPTokenSupply": "19110740550339001446805501" + "mAssetSupply": "101426417401472169119616529", + "LPTokenSupply": "3821053221164136211990824" }, { - "type": "swap_fp_to_mp", - "inputQty": "48053070039470832", - "outputIndex": 1, - "outputQty": "48727217528377533", - "swapFee": "0", - "redemptionFee": "19519490643999", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "918772857910294016", + "outputQty0": "913724999759426445", + "outputQty": "910575807658204967", + "swapFee": "714483312803224", "mpReserves": [ - "60081344639993312845746158", - "28732959592309712676294216", - "25341075708996034859709375" + "53355911112103643481513769", + "15464940683133022077714693", + "32727008331741614713732372" ], "fpReserves": [ - "15040410838014644734167199", - "4275118243558138430373505" + "2316958405965598818224658", + "1588101505903079888437322" ], - "mAssetSupply": "114122618603884832425368533", - "LPTokenSupply": "19110740550339001446805501" + "mAssetSupply": "101426418315197168879042974", + "LPTokenSupply": "3821053221235584543271146" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "471050325213428992", - "outputQty0": "470194111531157626", - "outputQty": "462639021305927382", - "swapFee": "370893367083111", + "inputIndex": 2, + "inputQty": "494612668215613980672", + "outputQty0": "494220537950797801721", + "outputQty": "492516173174098797394", + "swapFee": "386453480136178680", "mpReserves": [ - "60081345111043638059175150", - "28732959592309712676294216", - "25341075708996034859709375" + "53355911112103643481513769", + "15464940683133022077714693", + "32727502944409830327713044" ], "fpReserves": [ - "15040411308208756265324825", - "4275117780919117124446123" + "2317452626503549616026379", + "1587608989729905789639928" ], - "mAssetSupply": "114122619074078943956526159", - "LPTokenSupply": "19110740550376090783513812" + "mAssetSupply": "101426912535735119676844695", + "LPTokenSupply": "3821053259880932556889014" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "47855349953053478354944", - "outputQty0": "47768308828932521394476", - "outputQty": "46991878885575330443415", - "swapFee": "37679719990780516520", + "type": "mint", + "inputIndex": 1, + "inputQty": "32269563973024481280", + "outputQty0": "32681981682881452358", + "outputQty": "31944360729196711730", "mpReserves": [ - "60129200460996691537530094", - "28732959592309712676294216", - "25341075708996034859709375" + "53355911112103643481513769", + "15464972952696995102195973", + "32727502944409830327713044" ], "fpReserves": [ - "15088179617037688786719301", - "4228125902033541794002708" + "2317485308485232497478737", + "1587608989729905789639928" ], - "mAssetSupply": "114170387382907876477920635", - "LPTokenSupply": "19110744318348089861565464" + "mAssetSupply": "101426945217716802558297053", + "LPTokenSupply": "3821085204241661753600744" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1417660580104583512064", - "outputQty0": "1437034339981988066344", - "outputQty": "1434925090084204950424", - "swapFee1": "850596348062750107", - "swapFee2": "574813735992795226", + "type": "swap_fp_to_mp", + "inputQty": "15279535871558529581056", + "outputIndex": 0, + "outputQty": "15394577781353340870489", + "swapFee": "0", + "redemptionFee": "9191525092852953992", "mpReserves": [ - "60129200460996691537530094", - "28731524667219628471343792", - "25341075708996034859709375" + "53340516534322290140643280", + "15464972952696995102195973", + "32727502944409830327713044" ], "fpReserves": [ - "15086742582697706798652957", - "4228125902033541794002708" + "2302166099997144240824695", + "1602888525601464319220984" ], - "mAssetSupply": "114168950923381630482649517", - "LPTokenSupply": "19109326742827620084328410" + "mAssetSupply": "101411635200753807154597003", + "LPTokenSupply": "3821085204241661753600744" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "173978891893472264978432", - "outputQty0": "176350266095869416678423", - "outputQty": "175958132581237719780066", - "swapFee1": "104387335136083358987", - "swapFee2": "70540106438347766671", + "type": "mint", + "inputIndex": 2, + "inputQty": "110939555171100744744960", + "outputQty0": "110849932689982701199029", + "outputQty": "108345483918470979044701", "mpReserves": [ - "60129200460996691537530094", - "28731524667219628471343792", - "25165117576414797139929309" + "53340516534322290140643280", + "15464972952696995102195973", + "32838442499580931072458004" ], "fpReserves": [ - "14910392316601837381974534", - "4228125902033541794002708" + "2413016032687126942023724", + "1602888525601464319220984" ], - "mAssetSupply": "113992671197392199413737765", - "LPTokenSupply": "18935358289667661427685876" + "mAssetSupply": "101522485133443789855796032", + "LPTokenSupply": "3929430688160132732645445" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "514802521054385149050880", - "outputQty0": "515329855263787635004611", - "outputQty": "508058476696881947291374", + "inputIndex": 0, + "inputQty": "127245222140129612660736", + "outputQty0": "126546333442553503164443", + "outputQty": "123667669221036740387533", "mpReserves": [ - "60129200460996691537530094", - "29246327188274013620394672", - "25165117576414797139929309" + "53467761756462419753304016", + "15464972952696995102195973", + "32838442499580931072458004" ], "fpReserves": [ - "15425722171865625016979145", - "4228125902033541794002708" + "2539562366129680445188167", + "1602888525601464319220984" ], - "mAssetSupply": "114508001052655987048742376", - "LPTokenSupply": "19443416766364543374977250" + "mAssetSupply": "101649031466886343358960475", + "LPTokenSupply": "4053098357381169473032978" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1001392660741789057024", - "outputQty0": "1015218872313770870018", - "outputQty": "1012917490471904409053", - "swapFee1": "600835596445073434", - "swapFee2": "406087548925508348", + "type": "swap_fp_to_mp", + "inputQty": "760233866515564845858816", + "outputIndex": 1, + "outputQty": "750082870287114794625774", + "swapFee": "0", + "redemptionFee": "456416588236023131056", "mpReserves": [ - "60129200460996691537530094", - "29246327188274013620394672", - "25164104658924325235520256" + "53467761756462419753304016", + "14714890082409880307570199", + "32838442499580931072458004" ], "fpReserves": [ - "15424706952993311246109127", - "4228125902033541794002708" + "1778868052402975226760236", + "2363122392117029165079800" ], - "mAssetSupply": "114506986239871222203380706", - "LPTokenSupply": "19442415433787361230427569" + "mAssetSupply": "100888793569747874163663600", + "LPTokenSupply": "4053098357381169473032978" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "34211312177339465728", - "outputQty0": "34683660930979060849", - "outputQty": "34635554471602784818", - "swapFee1": "20526787306403679", - "swapFee2": "13873464372391624", + "type": "swap_fp_to_mp", + "inputQty": "278156450691236405182464", + "outputIndex": 0, + "outputQty": "278752056192328851032985", + "swapFee": "0", + "redemptionFee": "166387325085992416162", "mpReserves": [ - "60129200460996691537530094", - "29246292552719542017609854", - "25164104658924325235520256" + "53189009700270090902271031", + "14714890082409880307570199", + "32838442499580931072458004" ], "fpReserves": [ - "15424672269332380267048278", - "4228125902033541794002708" + "1501555843926321199823306", + "2641278842808265570262264" ], - "mAssetSupply": "114506951570083755596711481", - "LPTokenSupply": "19442381224527862621602208" + "mAssetSupply": "100611647748596306129142832", + "LPTokenSupply": "4053098357381169473032978" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "30645601776132882956288", - "outputQty0": "31068527872237733431811", - "outputQty": "31025369370594154110609", - "swapFee1": "18387361065679729773", - "swapFee2": "12427411148895093372", + "type": "mint", + "inputIndex": 2, + "inputQty": "56586385050131824115712", + "outputQty0": "56527990075493353444441", + "outputQty": "55447711011816941423722", "mpReserves": [ - "60129200460996691537530094", - "29215267183348947863499245", - "25164104658924325235520256" + "53189009700270090902271031", + "14714890082409880307570199", + "32895028884631062896573716" ], "fpReserves": [ - "15393603741460142533616467", - "4228125902033541794002708" + "1558083834001814553267747", + "2641278842808265570262264" ], - "mAssetSupply": "114475895469622666758373042", - "LPTokenSupply": "19411737461487836306618897" + "mAssetSupply": "100668175738671799482587273", + "LPTokenSupply": "4108546068392986414456700" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "6124603386794322427904", - "outputQty0": "6209085658583867707835", - "outputQty": "6217844302112745550689", - "swapFee1": "3674762032076593456", - "swapFee2": "2483634263433547083", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "703364693693250924445696", + "outputQty0": "702572866921467315377159", + "outputQty": "702918348739349980831593", + "swapFee": "550731304131302900710", "mpReserves": [ - "60122982616694578791979405", - "29215267183348947863499245", - "25164104658924325235520256" + "53189009700270090902271031", + "14714890082409880307570199", + "33598393578324313821019412" ], "fpReserves": [ - "15387394655801558665908632", - "4228125902033541794002708" + "2260656700923281868644906", + "1938360494068915589430671" ], - "mAssetSupply": "114469688867598346324212290", - "LPTokenSupply": "19405613225577245191850338" + "mAssetSupply": "101370748605593266797964432", + "LPTokenSupply": "4108601141523399544746771" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "25811250741913791234048", "outputIndex": 0, - "inputQty": "92865391089737426534400", - "outputQty0": "94144510519898367233622", - "outputQty": "94277081701948024268482", - "swapFee1": "55719234653842455920", - "swapFee2": "37657804207959346893", + "outputQty": "25967582590757668481318", + "swapFee": "0", + "redemptionFee": "15501385514626411892", "mpReserves": [ - "60028705534992630767710923", - "29215267183348947863499245", - "25164104658924325235520256" + "53163042117679333233789713", + "14714890082409880307570199", + "33598393578324313821019412" ], "fpReserves": [ - "15293250145281660298675010", - "4228125902033541794002708" + "2234821058398904515490570", + "1964171744810829380664719" ], - "mAssetSupply": "114375582014882655916325561", - "LPTokenSupply": "19312753406410973149561530" + "mAssetSupply": "101344928464454404071221988", + "LPTokenSupply": "4108601141523399544746771" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "329263129845457208999936", - "outputQty0": "329581052200940565568568", - "outputQty": "324892038162077681095637", + "type": "swap_fp_to_mp", + "inputQty": "259033735780932735991808", + "outputIndex": 2, + "outputQty": "259194274139612528626789", + "swapFee": "0", + "redemptionFee": "155425977046689845233", "mpReserves": [ - "60028705534992630767710923", - "29544530313194405072499181", - "25164104658924325235520256" + "53163042117679333233789713", + "14714890082409880307570199", + "33339199304184701292392623" ], "fpReserves": [ - "15622831197482600864243578", - "4228125902033541794002708" + "1975777763321088106768094", + "2223205480591762116656527" ], - "mAssetSupply": "114705163067083596481894129", - "LPTokenSupply": "19637645444573050830657167" + "mAssetSupply": "101086040595353634352344745", + "LPTokenSupply": "4108601141523399544746771" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "617618693903846937198592", - "outputQty0": "618741137506566132911841", - "outputQty": "609823649554861254531573", + "type": "redeem", + "outputIndex": 1, + "inputQty": "689037392922400228638720", + "outputQty0": "702889716493763250915944", + "outputQty": "692078111809206353880138", + "swapFee1": "413422435753440137183", + "swapFee2": "421733829896257950549", "mpReserves": [ - "60028705534992630767710923", - "29544530313194405072499181", - "25781723352828172172718848" + "53163042117679333233789713", + "14022811970600673953690061", + "33339199304184701292392623" ], "fpReserves": [ - "16241572334989166997155419", - "4228125902033541794002708" + "1272888046827324855852150", + "2223205480591762116656527" ], - "mAssetSupply": "115323904204590162614805970", - "LPTokenSupply": "20247469094127912085188740" + "mAssetSupply": "100383572612689767359379350", + "LPTokenSupply": "3419605090844574660121769" }, { "type": "mint", "inputIndex": 0, - "inputQty": "302288911254431251562496", - "outputQty0": "301757484219132320717793", - "outputQty": "297354347466173147172605", + "inputQty": "12884586978062039515136", + "outputQty0": "12807509940233652624564", + "outputQty": "12560343502533073889210", "mpReserves": [ - "60330994446247062019273419", - "29544530313194405072499181", - "25781723352828172172718848" + "53175926704657395273304849", + "14022811970600673953690061", + "33339199304184701292392623" ], "fpReserves": [ - "16543329819208299317873212", - "4228125902033541794002708" + "1285695556767558508476714", + "2223205480591762116656527" ], - "mAssetSupply": "115625661688809294935523763", - "LPTokenSupply": "20544823441594085232361345" + "mAssetSupply": "100396380122630001012003914", + "LPTokenSupply": "3432165434347107734010979" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3261087163932517888", - "outputQty0": "3264306339352739488", - "outputQty": "3216483107564371750", + "inputQty": "387329882655399411712", + "outputQty0": "393445038334031676805", + "outputQty": "385840378905819094695", "mpReserves": [ - "60330994446247062019273419", - "29544533574281569005017069", - "25781723352828172172718848" + "53175926704657395273304849", + "14023199300483329353101773", + "33339199304184701292392623" ], "fpReserves": [ - "16543333083514638670612700", - "4228125902033541794002708" + "1286089001805892540153519", + "2223205480591762116656527" ], - "mAssetSupply": "115625664953115634288263251", - "LPTokenSupply": "20544826658077192796733095" + "mAssetSupply": "100396773567668335043680719", + "LPTokenSupply": "3432551274726013553105674" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1383219945148477603840", - "outputQty0": "1384585258505609429699", - "outputQty": "1364300225564384138741", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "953731085105384259584", + "outputQty0": "948024840561203091582", + "outputQty": "951148856008142911149", + "swapFee": "743758558540085593", "mpReserves": [ - "60330994446247062019273419", - "29545916794226717482620909", - "25781723352828172172718848" + "53176880435742500657564433", + "14023199300483329353101773", + "33339199304184701292392623" ], "fpReserves": [ - "16544717668773144280042399", - "4228125902033541794002708" + "1287037026646453743245101", + "2222254331735753973745378" ], - "mAssetSupply": "115627049538374139897692950", - "LPTokenSupply": "20546190958302757180871836" + "mAssetSupply": "100397721592508896246772301", + "LPTokenSupply": "3432551349101869407114233" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "9990011217865250701312", - "outputQty0": "10007727954956527487839", - "outputQty": "9861086360380579604085", + "inputQty": "4774659227298937", + "outputQty0": "4768244725399855", + "outputQty": "4783931617731108", + "swapFee": "3740836110877", "mpReserves": [ - "60330994446247062019273419", - "29545916794226717482620909", - "25791713364046037423420160" + "53176880435742500657564433", + "14023199300483329353101773", + "33339199308959360519691560" ], "fpReserves": [ - "16554725396728100807530238", - "4228125902033541794002708" + "1287037031414698468644956", + "2222254326951822356014270" ], - "mAssetSupply": "115637057266329096425180789", - "LPTokenSupply": "20556052044663137760475921" + "mAssetSupply": "100397721597277140972172156", + "LPTokenSupply": "3432551349102243490725320" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "82674716114279639023616", - "outputQty0": "82820592344583668416541", - "outputQty": "81605540883410274408982", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "181014747184151188733952", + "outputQty0": "183834845243251173844265", + "outputQty": "184263811312262248287157", + "swapFee": "144170034999512554590", "mpReserves": [ - "60330994446247062019273419", - "29545916794226717482620909", - "25874388080160317062443776" + "53176880435742500657564433", + "14204214047667480541835725", + "33339199308959360519691560" ], "fpReserves": [ - "16637545989072684475946779", - "4228125902033541794002708" + "1470871876657949642489221", + "2037990515639560107727113" ], - "mAssetSupply": "115719877858673680093597330", - "LPTokenSupply": "20637657585546548034884903" + "mAssetSupply": "100581556442520392146016421", + "LPTokenSupply": "3432565766105743441980779" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "193423027886414983331840", - "outputQty0": "196180795208536673127213", - "outputQty": "195754767386019006971021", - "swapFee1": "116053816731848989999", - "swapFee2": "78472318083414669250", - "mpReserves": [ - "60330994446247062019273419", - "29545916794226717482620909", - "25678633312774298055472755" - ], - "fpReserves": [ - "16441365193864147802819566", - "4228125902033541794002708" - ], - "mAssetSupply": "115523775535783226835139367", - "LPTokenSupply": "20444246163041806236452062" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "57906358349544701952", - "outputQty0": "57803788219196353349", - "outputQty": "56711398934310617905", - "swapFee": "45567155031884079", + "outputIndex": 0, + "inputQty": "153786780632186378780672", + "outputQty0": "156865422279100427966955", + "outputQty": "157700658210367254149057", + "swapFee1": "92272068379311827268", + "swapFee2": "94119253367460256780", "mpReserves": [ - "60331052352605411563975371", - "29545916794226717482620909", - "25678633312774298055472755" + "53019179777532133403415376", + "14204214047667480541835725", + "33339199308959360519691560" ], "fpReserves": [ - "16441422997652366999172915", - "4228069190634607483384803" + "1314006454378849214522266", + "2037990515639560107727113" ], - "mAssetSupply": "115523833339571446031492716", - "LPTokenSupply": "20444246167598521739640469" + "mAssetSupply": "100424785139494659178306246", + "LPTokenSupply": "3278788212680394994382833" }, { "type": "swap_fp_to_mp", - "inputQty": "39905862179207782596608", + "inputQty": "2075912712056376576", "outputIndex": 2, - "outputQty": "40545330151349657658617", + "outputQty": "2070852086706509450", "swapFee": "0", - "redemptionFee": "16253803254772461531", + "redemptionFee": "1241636563044989", "mpReserves": [ - "60331052352605411563975371", - "29545916794226717482620909", - "25638087982622948397814138" + "53019179777532133403415376", + "14204214047667480541835725", + "33339197238107273813182110" ], "fpReserves": [ - "16400788489515435845344421", - "4267975052813815265981411" + "1314004384984577472873846", + "2037992591552272164103689" ], - "mAssetSupply": "115483215085237769650125753", - "LPTokenSupply": "20444246167598521739640469" + "mAssetSupply": "100424783071342023999702815", + "LPTokenSupply": "3278788212680394994382833" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "55844133156658328", - "outputQty0": "55944796839854029", - "outputQty": "55131341999193788", - "mpReserves": [ - "60331052352605411563975371", - "29545916794226717482620909", - "25638088038467081554472466" - ], - "fpReserves": [ - "16400788545460232685198450", - "4267975052813815265981411" - ], - "mAssetSupply": "115483215141182566489979782", - "LPTokenSupply": "20444246222729863738834257" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "3176302591504909598720", - "outputQty0": "3179414714844164207191", - "outputQty": "3120431022774344938930", - "swapFee": "2506546464509700798", + "type": "redeem", + "outputIndex": 2, + "inputQty": "622124516914945", + "outputQty0": "634420194112789", + "outputQty": "634867120505527", + "swapFee1": "373274710148", + "swapFee2": "380652116467", "mpReserves": [ - "60331052352605411563975371", - "29549093096818222392219629", - "25638088038467081554472466" + "53019179777532133403415376", + "14204214047667480541835725", + "33339197237472406692676583" ], "fpReserves": [ - "16403967960175076849405641", - "4264854621791040921042481" + "1314004384350157278761057", + "2037992591552272164103689" ], - "mAssetSupply": "115486394555897410654186973", - "LPTokenSupply": "20444246473384510189804336" + "mAssetSupply": "100424783070707984457706493", + "LPTokenSupply": "3278788212058307804938902" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "5165441227136337707008", - "outputQty0": "5238537895728175878685", - "outputQty": "5231316141766106567764", - "swapFee1": "3099264736281802624", - "swapFee2": "2095415158291270351", + "outputIndex": 0, + "inputQty": "1489746288247924064256", + "outputQty0": "1519185230192353408657", + "outputQty": "1527254391318707510912", + "swapFee1": "893847772948754438", + "swapFee2": "911511138115412045", "mpReserves": [ - "60331052352605411563975371", - "29543861780676456285651865", - "25638088038467081554472466" + "53017652523140814695904464", + "14204214047667480541835725", + "33339197237472406692676583" ], "fpReserves": [ - "16398729422279348673526956", - "4264854621791040921042481" + "1312485199119964925352400", + "2037992591552272164103689" ], - "mAssetSupply": "115481158113416840769578639", - "LPTokenSupply": "20439081342083847480277590" + "mAssetSupply": "100423264796988930219709881", + "LPTokenSupply": "3277298555154837175750089" }, { - "type": "swap_fp_to_mp", - "inputQty": "54189117543565896974336", - "outputIndex": 2, - "outputQty": "55034496605235873174734", - "swapFee": "0", - "redemptionFee": "22062423001458919695", + "type": "mint", + "inputIndex": 0, + "inputQty": "2270922731718068992", + "outputQty0": "2257569367094551183", + "outputQty": "2212499536608949495", "mpReserves": [ - "60331052352605411563975371", - "29543861780676456285651865", - "25583053541861845681297732" + "53017654794063546413973456", + "14204214047667480541835725", + "33339197237472406692676583" ], "fpReserves": [ - "16343573364775701374287071", - "4319043739334606818016817" + "1312487456689332019903583", + "2037992591552272164103689" ], - "mAssetSupply": "115426024118336194929258449", - "LPTokenSupply": "20439081342083847480277590" + "mAssetSupply": "100423267054558297314261064", + "LPTokenSupply": "3277300767654373784699584" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "17976671280313718", - "outputQty0": "17944723850516900", - "outputQty": "17685532541904333", + "inputIndex": 2, + "inputQty": "11730312391002585088", + "outputQty0": "11715019968214743321", + "outputQty": "11481142477146866830", "mpReserves": [ - "60331052370582082844289089", - "29543861780676456285651865", - "25583053541861845681297732" + "53017654794063546413973456", + "14204214047667480541835725", + "33339208967784797695261671" ], "fpReserves": [ - "16343573382720425224803971", - "4319043739334606818016817" + "1312499171709300234646904", + "2037992591552272164103689" ], - "mAssetSupply": "115426024136280918779775349", - "LPTokenSupply": "20439081359769380022181923" + "mAssetSupply": "100423278769578265529004385", + "LPTokenSupply": "3277312248796850931566414" }, { "type": "swap_fp_to_mp", - "inputQty": "23267683205405988618240", + "inputQty": "938825519446541336576", "outputIndex": 0, - "outputQty": "23707412611050963628879", + "outputQty": "940834768746448613206", "swapFee": "0", - "redemptionFee": "9469905637781622320", + "redemptionFee": "561518466402026052", "mpReserves": [ - "60307344957971031880660210", - "29543861780676456285651865", - "25583053541861845681297732" + "53016713959294799965360250", + "14204214047667480541835725", + "33339208967784797695261671" ], "fpReserves": [ - "16319898618625971169003531", - "4342311422540012806635057" + "1311563307598630191225786", + "2038931417071718705440265" ], - "mAssetSupply": "115402358842092102505597229", - "LPTokenSupply": "20439081359769380022181923" + "mAssetSupply": "100422343466986061887609319", + "LPTokenSupply": "3277312248796850931566414" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "541072988095059733774336", - "hardLimitError": true - }, - { - "type": "swap_fp_to_mp", - "inputQty": "1325750447058141577216", - "outputIndex": 0, - "outputQty": "1350660425206920839562", - "swapFee": "0", - "redemptionFee": "539520472831348611", + "inputQty": "1809814501699914240", + "outputQty0": "1837515596751969340", + "outputQty": "1841864447378884737", + "swapFee": "1440673787663973", "mpReserves": [ - "60305994297545824959820648", - "29543861780676456285651865", - "25583053541861845681297732" + "53016713959294799965360250", + "14204215857481982241749965", + "33339208967784797695261671" ], "fpReserves": [ - "16318549817443892797473955", - "4343637172987070948212273" + "1311565145114226943195126", + "2038929575207271326555528" ], - "mAssetSupply": "115401010580430496965416264", - "LPTokenSupply": "20439081359769380022181923" + "mAssetSupply": "100422345304501658639578659", + "LPTokenSupply": "3277312248940918310332811" }, { - "type": "swap_fp_to_mp", - "inputQty": "2128987485111224369152", - "outputIndex": 0, - "outputQty": "2168957242630627824939", - "swapFee": "0", - "redemptionFee": "866388704387702598", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3351391690884652204032", + "outputQty0": "3417567033069422687138", + "outputQty": "3364014094049001757694", + "swapFee1": "2010835014530791322", + "swapFee2": "2050540219841653612", "mpReserves": [ - "60303825340303194331995709", - "29543861780676456285651865", - "25583053541861845681297732" + "53016713959294799965360250", + "14200851843387933239992271", + "33339208967784797695261671" ], "fpReserves": [ - "16316383845682923540978231", - "4345766160472182172581425" + "1308147578081157520507988", + "2038929575207271326555528" ], - "mAssetSupply": "115398845475058232096623138", - "LPTokenSupply": "20439081359769380022181923" + "mAssetSupply": "100418929788008809058545133", + "LPTokenSupply": "3273961058333535111207911" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "2960536176877410713600", - "outputQty0": "3001972098755339077827", - "outputQty": "2995343634316422590265", - "swapFee1": "1776321706126446428", - "swapFee2": "1200788839502135631", + "type": "mint", + "inputIndex": 0, + "inputQty": "241521693988553958096896", + "outputQty0": "240096483958197799253917", + "outputQty": "235211566863500301759193", "mpReserves": [ - "60303825340303194331995709", - "29543861780676456285651865", - "25580058198227529258707467" + "53258235653283353923457146", + "14200851843387933239992271", + "33339208967784797695261671" ], "fpReserves": [ - "16313381873584168201900404", - "4345766160472182172581425" + "1548244062039355319761905", + "2038929575207271326555528" ], - "mAssetSupply": "115395844703748316259680942", - "LPTokenSupply": "20436121001224673224112965" + "mAssetSupply": "100659026271967006857799050", + "LPTokenSupply": "3509172625197035412967104" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "112540327643920793600", - "outputQty0": "112650192122316566755", - "outputQty": "110639655446567606467", - "swapFee": "88822950917584716", + "type": "swap_fp_to_mp", + "inputQty": "187718484995492240424960", + "outputIndex": 2, + "outputQty": "187335109323645641440396", + "swapFee": "0", + "redemptionFee": "112326565589162886121", "mpReserves": [ - "60303825340303194331995709", - "29543974321004100206445465", - "25580058198227529258707467" + "53258235653283353923457146", + "14200851843387933239992271", + "33151873858461152053821275" ], "fpReserves": [ - "16313494523776290518467159", - "4345655520816735604974958" + "1361033119390750509558979", + "2226648060202763566980488" ], - "mAssetSupply": "115395957353940438576247697", - "LPTokenSupply": "20436121010106968315871436" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "486102886833454231584768", - "hardLimitError": true + "mAssetSupply": "100471927655883991210482245", + "LPTokenSupply": "3509172625197035412967104" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "115604306787937796096", - "outputQty0": "115813819837656234433", - "outputQty": "113746709977329041550", - "swapFee": "91317403931007549", + "type": "redeem", + "outputIndex": 2, + "inputQty": "138777157759665554063360", + "outputQty0": "141437049316898393036345", + "outputQty": "141525030925507414492457", + "swapFee1": "83266294655799332438", + "swapFee2": "84862229590139035821", "mpReserves": [ - "60303825340303194331995709", - "29543974321004100206445465", - "25580173802534317196503563" + "53258235653283353923457146", + "14200851843387933239992271", + "33010348827535644639328818" ], "fpReserves": [ - "16313610337596128174701592", - "4345541774106758275933408" + "1219596070073852116522634", + "2226648060202763566980488" ], - "mAssetSupply": "115396073167760276232482130", - "LPTokenSupply": "20436121019238708708972190" + "mAssetSupply": "100330575468796682956481721", + "LPTokenSupply": "3370403794066835438836987" }, { "type": "swap_fp_to_mp", - "inputQty": "4664619524495393161216", + "inputQty": "25703461900037635702784", "outputIndex": 2, - "outputQty": "4735015033071250418420", + "outputQty": "25596185087087129571228", "swapFee": "0", - "redemptionFee": "1898198723879348298", - "mpReserves": [ - "60303825340303194331995709", - "29543974321004100206445465", - "25575438787501245946085143" - ], - "fpReserves": [ - "16308864840786429803954847", - "4350206393631253669094624" - ], - "mAssetSupply": "115391329569149301741083683", - "LPTokenSupply": "20436121019238708708972190" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "9040031952560194584576", - "outputQty0": "9056415748433041479539", - "outputQty": "8926113686447687034319", + "redemptionFee": "15348486673975618771", "mpReserves": [ - "60303825340303194331995709", - "29543974321004100206445465", - "25584478819453806140669719" + "53258235653283353923457146", + "14200851843387933239992271", + "32984752642448557509757590" ], "fpReserves": [ - "16317921256534862845434386", - "4350206393631253669094624" + "1194015258950559418570094", + "2252351522102801202683272" ], - "mAssetSupply": "115400385984897734782563222", - "LPTokenSupply": "20445047132925156396006509" + "mAssetSupply": "100305010006160064234147952", + "LPTokenSupply": "3370403794066835438836987" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "12207014961650891489280", - "outputQty0": "12229112731785288510177", - "outputQty": "12010498740166053771640", - "swapFee": "9642490505749310366", + "inputIndex": 0, + "inputQty": "92578848232906399154176", + "outputQty0": "92027415966845496241820", + "outputQty": "92356987116958114657487", + "swapFee": "72214716208908378817", "mpReserves": [ - "60303825340303194331995709", - "29543974321004100206445465", - "25596685834415457032158999" + "53350814501516260322611322", + "14200851843387933239992271", + "32984752642448557509757590" ], "fpReserves": [ - "16330150369266648133944563", - "4338195894891087615322984" + "1286042674917404914811914", + "2159994534985843088025785" ], - "mAssetSupply": "115412615097629520071073399", - "LPTokenSupply": "20445048097174206970937545" + "mAssetSupply": "100397037422126909730389772", + "LPTokenSupply": "3370411015538456329674868" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "65954538752279964549120", - "outputQty0": "66877942743459443565592", - "outputQty": "66730031754065563207178", - "swapFee1": "39572723251367978729", - "swapFee2": "26751177097383777426", - "mpReserves": [ - "60303825340303194331995709", - "29543974321004100206445465", - "25529955802661391468951821" - ], - "fpReserves": [ - "16263272426523188690378971", - "4338195894891087615322984" - ], - "mAssetSupply": "115345763906063158011285233", - "LPTokenSupply": "20379097515694252143186297" + "outputIndex": 1, + "inputQty": "925893259012391437336576", + "hardLimitError": true }, { - "type": "swap_fp_to_mp", - "inputQty": "44856296054854434947072", + "type": "redeem", "outputIndex": 1, - "outputQty": "45561587376299469622035", - "swapFee": "0", - "redemptionFee": "18249737620675608712", + "inputQty": "1070311622449215832064", + "outputQty0": "1091046282689545089120", + "outputQty": "1073902134065086814040", + "swapFee1": "642186973469529499", + "swapFee2": "654627769613727053", "mpReserves": [ - "60303825340303194331995709", - "29498412733627800736823430", - "25529955802661391468951821" + "53350814501516260322611322", + "14199777941253868153178231", + "32984752642448557509757590" ], "fpReserves": [ - "16217648082471499668596652", - "4383052190945942050270056" + "1284951628634715369722794", + "2159994534985843088025785" ], - "mAssetSupply": "115300157811749089665111626", - "LPTokenSupply": "20379097515694252143186297" + "mAssetSupply": "100395947030471989799027705", + "LPTokenSupply": "3369340768134704460795753" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "16843057558206797578240", - "outputQty0": "16813050928367387485285", - "outputQty": "16518776671902411107132", - "swapFee": "13257955581911387326", + "inputQty": "11007965193584093691904", + "outputQty0": "10942300119471930455525", + "outputQty": "10974943131663048905811", + "swapFee": "8582140776074641286", "mpReserves": [ - "60320668397861401129573949", - "29498412733627800736823430", - "25529955802661391468951821" + "53361822466709844416303226", + "14199777941253868153178231", + "32984752642448557509757590" ], "fpReserves": [ - "16234461133399867056081937", - "4366533414274039639162924" + "1295893928754187300178319", + "2149019591854180039119974" ], - "mAssetSupply": "115316970862677457052596911", - "LPTokenSupply": "20379098841489810334325029" + "mAssetSupply": "100406889330591461729483230", + "LPTokenSupply": "3369341626348782068259881" }, { "type": "mint", "inputIndex": 0, - "inputQty": "3168208300015870976", - "outputQty0": "3162562720726958198", - "outputQty": "3117219250601436934", + "inputQty": "3539877395979861753856", + "outputQty0": "3518757014198188218965", + "outputQty": "3449526639170699955128", "mpReserves": [ - "60320671566069701145444925", - "29498412733627800736823430", - "25529955802661391468951821" + "53365362344105824278057082", + "14199777941253868153178231", + "32984752642448557509757590" ], "fpReserves": [ - "16234464295962587783040135", - "4366533414274039639162924" + "1299412685768385488397284", + "2149019591854180039119974" ], - "mAssetSupply": "115316974025240177779555109", - "LPTokenSupply": "20379101958709060935761963" + "mAssetSupply": "100410408087605659917702195", + "LPTokenSupply": "3372791152987952768215009" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "770129871347149355089920", + "hardLimitError": true }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "450228588157970808832", - "outputQty0": "451048488802392794962", - "outputQty": "443122245928346012335", - "swapFee": "355665207984270049", + "inputIndex": 1, + "inputQty": "2598408982563852910592", + "outputQty0": "2638318500726452241100", + "outputQty": "2645927435427648830660", + "swapFee": "2069101366027455902", "mpReserves": [ - "60320671566069701145444925", - "29498412733627800736823430", - "25530406031249549439760653" + "53365362344105824278057082", + "14202376350236432006088823", + "32984752642448557509757590" ], "fpReserves": [ - "16234915344451390175835097", - "4366090292028111293150589" + "1302051004269111940638384", + "2146373664418752390289314" ], - "mAssetSupply": "115317425073728980172350071", - "LPTokenSupply": "20379101994275581734188967" + "mAssetSupply": "100413046406106386369943295", + "LPTokenSupply": "3372791359898089370960599" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "273621832969245753344", - "outputQty0": "274120099452597991533", - "outputQty": "269302195210681210781", - "swapFee": "216151717403369950", + "inputQty": "329413111714643936542720", + "outputQty0": "329008139345350294854243", + "outputQty": "322340081925766738666703", "mpReserves": [ - "60320671566069701145444925", - "29498412733627800736823430", - "25530679653082518685513997" + "53365362344105824278057082", + "14202376350236432006088823", + "33314165754163201446300310" ], "fpReserves": [ - "16235189464550842773826630", - "4365820989832900611939808" + "1631059143614462235492627", + "2146373664418752390289314" ], - "mAssetSupply": "115317699193828432770341604", - "LPTokenSupply": "20379102015890753474525962" + "mAssetSupply": "100742054545451736664797538", + "LPTokenSupply": "3695131441823856109627302" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "180360480982297837568", - "outputQty0": "182874472183175909311", - "outputQty": "183127637303097777689", - "swapFee1": "108216288589378702", - "swapFee2": "73149788873270363", + "type": "mint", + "inputIndex": 2, + "inputQty": "49432909594579968", + "outputQty0": "49370101672409712", + "outputQty": "48345915250366010", "mpReserves": [ - "60320488438432398047667236", - "29498412733627800736823430", - "25530679653082518685513997" + "53365362344105824278057082", + "14202376350236432006088823", + "33314165803596111040880278" ], "fpReserves": [ - "16235006590078659597917319", - "4365820989832900611939808" + "1631059192984563907902339", + "2146373664418752390289314" ], - "mAssetSupply": "115317516392506038467702656", - "LPTokenSupply": "20378921666231400035626264" + "mAssetSupply": "100742054594821838337207250", + "LPTokenSupply": "3695131490169771359993312" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1514531521839582150656", - "outputQty0": "1516016704706400206285", - "outputQty": "1494278397094037652558", + "type": "redeem", + "outputIndex": 1, + "inputQty": "86956558184708577427456", + "outputQty0": "88735078114833151507957", + "outputQty": "87324021511969062900761", + "swapFee1": "52173934910825146456", + "swapFee2": "53241046868899890904", "mpReserves": [ - "60320488438432398047667236", - "29499927265149640318974086", - "25530679653082518685513997" + "53365362344105824278057082", + "14115052328724462943188062", + "33314165803596111040880278" ], "fpReserves": [ - "16236522606783365998123604", - "4365820989832900611939808" + "1542324114869730756394382", + "2146373664418752390289314" ], - "mAssetSupply": "115319032409210744867908941", - "LPTokenSupply": "20380415944628494073278822" + "mAssetSupply": "100653372757753874085590197", + "LPTokenSupply": "3608180149378553865080501" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "43322384048851177701376", - "outputQty0": "43364735667749901975305", - "outputQty": "42742556719656891874464", + "type": "swap_fp_to_mp", + "inputQty": "110085989582445047971840", + "outputIndex": 0, + "outputQty": "110374174570830624255057", + "swapFee": "0", + "redemptionFee": "65868839052777557160", "mpReserves": [ - "60320488438432398047667236", - "29543249649198491496675462", - "25530679653082518685513997" + "53254988169534993653802025", + "14115052328724462943188062", + "33314165803596111040880278" ], "fpReserves": [ - "16279887342451115900098909", - "4365820989832900611939808" + "1432542716448434827794286", + "2256459654001197438261154" ], - "mAssetSupply": "115362397144878494769884246", - "LPTokenSupply": "20423158501348150965153286" + "mAssetSupply": "100543657228171630934547261", + "LPTokenSupply": "3608180149378553865080501" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "63270346752344847286272", - "outputQty0": "63331744957808908385428", - "outputQty": "62196927275242393560693", - "swapFee": "49937448576095164571", + "inputIndex": 2, + "inputQty": "83836475312882684264448", + "outputQty0": "83726247986348340158861", + "outputQty": "83901068035307107557555", + "swapFee": "65635335882721824296", "mpReserves": [ - "60320488438432398047667236", - "29606519995950836343961734", - "25530679653082518685513997" + "53254988169534993653802025", + "14115052328724462943188062", + "33398002278908993725144726" ], "fpReserves": [ - "16343219087408924808484337", - "4303624062557658218379115" + "1516268964434783167953147", + "2172558585965890330703599" ], - "mAssetSupply": "115425728889836303678269674", - "LPTokenSupply": "20423163495093008574669743" + "mAssetSupply": "100627383476157979274706122", + "LPTokenSupply": "3608186712912142137262930" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3604502417492137213952", - "outputQty0": "3598096955142710564528", - "outputQty": "3546026109423079542647", + "type": "redeem", + "outputIndex": 2, + "inputQty": "24134400499544022319104", + "outputQty0": "24621635294673424499907", + "outputQty": "24639438967874575911998", + "swapFee1": "14480640299726413391", + "swapFee2": "14772981176804054699", "mpReserves": [ - "60324092940849890184881188", - "29606519995950836343961734", - "25530679653082518685513997" + "53254988169534993653802025", + "14115052328724462943188062", + "33373362839941119149232728" ], "fpReserves": [ - "16346817184364067519048865", - "4303624062557658218379115" + "1491647329140109743453240", + "2172558585965890330703599" ], - "mAssetSupply": "115429326986791446388834202", - "LPTokenSupply": "20426709521202431654212390" + "mAssetSupply": "100602776613844482654260914", + "LPTokenSupply": "3584053760476628087585165" }, { - "type": "swap_fp_to_mp", - "inputQty": "657622177443336274575360", - "outputIndex": 2, - "outputQty": "666045776598333912760132", - "swapFee": "0", - "redemptionFee": "267029873461324415915", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "247583347887206895190016", + "outputQty0": "247249195915465332027561", + "outputQty": "247453626354862090863232", + "swapFee": "193708939515437171261", "mpReserves": [ - "60324092940849890184881188", - "29606519995950836343961734", - "24864633876484184772753865" + "53254988169534993653802025", + "14115052328724462943188062", + "33620946187828326044422744" ], "fpReserves": [ - "15679242500710756479259459", - "4961246240000994492954475" + "1738896525055575075480801", + "1925104959611028239840367" ], - "mAssetSupply": "114762019333011596673460711", - "LPTokenSupply": "20426709521202431654212390" + "mAssetSupply": "100850025809759947986288475", + "LPTokenSupply": "3584073131370579631302291" }, { - "type": "swap_fp_to_mp", - "inputQty": "773145400369912320", - "outputIndex": 0, - "outputQty": "784221479034297826", - "swapFee": "0", - "redemptionFee": "313243390108629", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "17011829202945556086784", + "outputQty0": "17278423093877049423360", + "outputQty": "17275191461667557634964", + "swapFee": "13525773648464436231", "mpReserves": [ - "60324092156628411150583362", - "29606519995950836343961734", - "24864633876484184772753865" + "53254988169534993653802025", + "14132064157927408499274846", + "33620946187828326044422744" ], "fpReserves": [ - "15679241717602281207684910", - "4961247013146394862866795" + "1756174948149452124904161", + "1907829768149360682205403" ], - "mAssetSupply": "114762018550216364791994791", - "LPTokenSupply": "20426709521202431654212390" + "mAssetSupply": "100867304232853825035711835", + "LPTokenSupply": "3584074483947944477745914" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "81920755069554018746368", - "outputQty0": "81996785480245326025446", - "outputQty": "80895813862367592280178", + "type": "swap_fp_to_mp", + "inputQty": "107215004667466506829824", + "outputIndex": 0, + "outputQty": "107686632349030734276475", + "swapFee": "0", + "redemptionFee": "64268140898129276485", "mpReserves": [ - "60324092156628411150583362", - "29688440751020390362708102", - "24864633876484184772753865" + "53147301537185962919525550", + "14132064157927408499274846", + "33620946187828326044422744" ], "fpReserves": [ - "15761238503082526533710356", - "4961247013146394862866795" + "1649061379985903330760862", + "2015044772816827189035227" ], - "mAssetSupply": "114844015335696610118020237", - "LPTokenSupply": "20507605335064799246492568" + "mAssetSupply": "100760254932831174370845021", + "LPTokenSupply": "3584074483947944477745914" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "15334484662502256", - "outputQty0": "15306652925761987", - "outputQty": "15098076287288370", - "swapFee": "12080734830272", + "type": "mint", + "inputIndex": 1, + "inputQty": "112174022523061870264320", + "outputQty0": "113910283708913173060651", + "outputQty": "111490837502869746692186", "mpReserves": [ - "60324092171962895813085618", - "29688440751020390362708102", - "24864633876484184772753865" + "53147301537185962919525550", + "14244238180450470369539166", + "33620946187828326044422744" ], "fpReserves": [ - "15761238518389179459472343", - "4961246998048318575578425" + "1762971663694816503821513", + "2015044772816827189035227" ], - "mAssetSupply": "114844015351003263043782224", - "LPTokenSupply": "20507605335066007319975595" + "mAssetSupply": "100874165216540087543905672", + "LPTokenSupply": "3695565321450814224438100" }, { - "type": "swap_fp_to_mp", - "inputQty": "499610098374073630326784", + "type": "redeem", "outputIndex": 1, - "outputQty": "504738131027488420245221", - "swapFee": "0", - "redemptionFee": "202169275022848637158", + "inputQty": "3898197545773196378112", + "outputQty0": "3980869113533410643714", + "outputQty": "3918310193398166773026", + "swapFee1": "2338918527463917826", + "swapFee2": "2388521468120046386", "mpReserves": [ - "60324092171962895813085618", - "29183702619992901942462881", - "24864633876484184772753865" + "53147301537185962919525550", + "14240319870257072202766140", + "33620946187828326044422744" ], "fpReserves": [ - "15255815330832057866575845", - "5460857096422392205905209" + "1758990794581283093177799", + "2015044772816827189035227" ], - "mAssetSupply": "114338794332721164299522884", - "LPTokenSupply": "20507605335066007319975595" + "mAssetSupply": "100870186735948022253308344", + "LPTokenSupply": "3691667357796893774451770" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "143666955463882", - "outputQty0": "145441601426305", - "outputQty": "145101444139150", - "swapFee1": "86200173278", - "swapFee2": "58176640570", + "type": "mint", + "inputIndex": 1, + "inputQty": "656229958549401524764672", + "outputQty0": "665848492408168293884288", + "outputQty": "651259313688841469641208", "mpReserves": [ - "60324092171962895813085618", - "29183702619992901942462881", - "24864633876339083328614715" + "53147301537185962919525550", + "14896549828806473727530812", + "33620946187828326044422744" ], "fpReserves": [ - "15255815330686616265149540", - "5460857096422392205905209" + "2424839286989451387062087", + "2015044772816827189035227" ], - "mAssetSupply": "114338794332575780874737149", - "LPTokenSupply": "20507605334922348984529040" + "mAssetSupply": "101536035228356190547192632", + "LPTokenSupply": "4342926671485735244092978" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "65811636366360021303296", "outputIndex": 1, - "inputQty": "15152656748438308", - "outputQty0": "15339829929817371", - "outputQty": "15318509283509268", - "swapFee1": "9091594049062", - "swapFee2": "6135931971926", + "outputQty": "64928399415210029479151", + "swapFee": "0", + "redemptionFee": "39528024512413019558", "mpReserves": [ - "60324092171962895813085618", - "29183702604674392658953613", - "24864633876339083328614715" + "53147301537185962919525550", + "14831621429391263698051661", + "33620946187828326044422744" ], "fpReserves": [ - "15255815315346786335332169", - "5460857096422392205905209" + "2358959246135429687798605", + "2080856409183187210338523" ], - "mAssetSupply": "114338794317242086876891704", - "LPTokenSupply": "20507605319770601395495638" + "mAssetSupply": "101470194715526681260948708", + "LPTokenSupply": "4342926671485735244092978" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "8388952850979302146048", - "outputQty0": "8373531151640045690211", - "outputQty": "8266385454971732033602", + "inputIndex": 2, + "inputQty": "484817376840597507145728", + "outputQty0": "484213147381753611660710", + "outputQty": "473317518006150631964753", "mpReserves": [ - "60332481124813875115231666", - "29183702604674392658953613", - "24864633876339083328614715" + "53147301537185962919525550", + "14831621429391263698051661", + "34105763564668923551568472" ], "fpReserves": [ - "15264188846498426381022380", - "5460857096422392205905209" + "2843172393517183299459315", + "2080856409183187210338523" ], - "mAssetSupply": "114347167848393726922581915", - "LPTokenSupply": "20515871705225573127529240" + "mAssetSupply": "101954407862908434872609418", + "LPTokenSupply": "4816244189491885876057731" }, { - "type": "swap_fp_to_mp", - "inputQty": "66562464971001448890368", + "type": "redeem", "outputIndex": 1, - "outputQty": "67150647795686926953072", - "swapFee": "0", - "redemptionFee": "26897779902139175107", + "inputQty": "53728792927905562624", + "outputQty0": "54948220136002296171", + "outputQty": "54144097489256724960", + "swapFee1": "32237275756743337", + "swapFee2": "32968932081601377", "mpReserves": [ - "60332481124813875115231666", - "29116551956878705732000541", - "24864633876339083328614715" + "53147301537185962919525550", + "14831567285293774441326701", + "34105763564668923551568472" ], "fpReserves": [ - "15196944396743078443254609", - "5527419561393393654795577" + "2843117445297047297163144", + "2080856409183187210338523" ], - "mAssetSupply": "114279950296418281123989251", - "LPTokenSupply": "20515871705225573127529240" + "mAssetSupply": "101954352947657230951914624", + "LPTokenSupply": "4816190463922685546169440" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "2655676684012140625920", - "outputQty0": "2658334551880817011352", - "outputQty": "2629640859366988954665", - "swapFee": "2099617673067571053", + "inputQty": "849183261371996569600", + "outputQty0": "861277177743628282421", + "outputQty": "841657780049877762546", "mpReserves": [ - "60332481124813875115231666", - "29119207633562717872626461", - "24864633876339083328614715" + "53147301537185962919525550", + "14832416468555146437896301", + "34105763564668923551568472" ], "fpReserves": [ - "15199602731294959260265961", - "5524789920534026665840912" + "2843978722474790925445565", + "2080856409183187210338523" ], - "mAssetSupply": "114282608630970161941000603", - "LPTokenSupply": "20515871915187340434286345" + "mAssetSupply": "101955214224834974580197045", + "LPTokenSupply": "4817032121702735423931986" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "92439616060671670616064", - "outputQty0": "92269173428345679357348", - "outputQty": "91093997778739933188307", + "type": "swap_fp_to_mp", + "inputQty": "11452704304179554811904", + "outputIndex": 1, + "outputQty": "11308925753668790365994", + "swapFee": "0", + "redemptionFee": "6886194176069575223", "mpReserves": [ - "60424920740874546785847730", - "29119207633562717872626461", - "24864633876339083328614715" + "53147301537185962919525550", + "14821107542801477647530307", + "34105763564668923551568472" ], "fpReserves": [ - "15291871904723304939623309", - "5524789920534026665840912" + "2832501732181341633406467", + "2092309113487366765150427" ], - "mAssetSupply": "114374877804398507620357951", - "LPTokenSupply": "20606965912966080367474652" + "mAssetSupply": "101943744120735701357733170", + "LPTokenSupply": "4817032121702735423931986" }, { "type": "swap_fp_to_mp", - "inputQty": "14705077941689837568", - "outputIndex": 0, - "outputQty": "14876847383509016210", + "inputQty": "37342182663790616", + "outputIndex": 1, + "outputQty": "36871669989160641", "swapFee": "0", - "redemptionFee": "5942130178253972", + "redemptionFee": "22452028264110", "mpReserves": [ - "60424905864027163276831520", - "29119207633562717872626461", - "24864633876339083328614715" + "53147301537185962919525550", + "14821107505929807658369666", + "34105763564668923551568472" ], "fpReserves": [ - "15291857049397859304692483", - "5524804625611968355678480" + "2832501694761294526555255", + "2092309150829549428941043" ], - "mAssetSupply": "114374862955015192163681097", - "LPTokenSupply": "20606965912966080367474652" + "mAssetSupply": "101943744083338106279146068", + "LPTokenSupply": "4817032121702735423931986" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "40381416779152871129088", - "outputQty0": "40459848699909587631209", - "outputQty": "40015037472095833380812", - "swapFee": "31954967213290044349", + "type": "swap_fp_to_mp", + "inputQty": "508282426417826048", + "outputIndex": 2, + "outputQty": "509702486107473509", + "swapFee": "0", + "redemptionFee": "305605365591126", "mpReserves": [ - "60424905864027163276831520", - "29119207633562717872626461", - "24905015293118236199743803" + "53147301537185962919525550", + "14821107505929807658369666", + "34105763054966437444094963" ], "fpReserves": [ - "15332316898097768892323692", - "5484789588139872522297668" + "2832501185419018541344358", + "2092309659111975846767091" ], - "mAssetSupply": "114415322803715101751312306", - "LPTokenSupply": "20606969108462801696479086" + "mAssetSupply": "101943743574301435659526297", + "LPTokenSupply": "4817032121702735423931986" }, { "type": "swap_fp_to_mp", - "inputQty": "29544102172658667356160", + "inputQty": "952856429975446631743488", "outputIndex": 0, - "outputQty": "29892460443824460111151", + "outputQty": "956977479421903924040590", "swapFee": "0", - "redemptionFee": "11939726073201872930", + "redemptionFee": "571360349847833662384", "mpReserves": [ - "60395013403583338816720369", - "29119207633562717872626461", - "24905015293118236199743803" + "52190324057764058995484960", + "14821107505929807658369666", + "34105763054966437444094963" ], "fpReserves": [ - "15302467582914764209998583", - "5514333690312531189653828" + "1880233935672629104036587", + "3045166089087422478510579" ], - "mAssetSupply": "114385485428258170270860127", - "LPTokenSupply": "20606969108462801696479086" + "mAssetSupply": "100992047684904894055880910", + "LPTokenSupply": "4817032121702735423931986" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "296339260518343026671616", - "outputQty0": "295791238759337286203702", - "outputQty": "292002199552980964271117", + "type": "redeem", + "outputIndex": 1, + "inputQty": "59052481146644414464", + "outputQty0": "60213965576114782113", + "outputQty": "59353000923365371082", + "swapFee1": "35431488687986648", + "swapFee2": "36128379345668869", "mpReserves": [ - "60691352664101681843391985", - "29119207633562717872626461", - "24905015293118236199743803" + "52190324057764058995484960", + "14821048152928884292998584", + "34105763054966437444094963" ], "fpReserves": [ - "15598258821674101496202285", - "5514333690312531189653828" + "1880173721707052989254474", + "3045166089087422478510579" ], - "mAssetSupply": "114681276667017507557063829", - "LPTokenSupply": "20898971308015782660750203" + "mAssetSupply": "100991987507067697286767666", + "LPTokenSupply": "4816973072764737648316186" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "10620298617118808064", - "outputQty0": "10641061962508251005", - "outputQty": "10520854134334649208", - "swapFee": "8403413167128621", + "inputQty": "54786459470107068334080", + "outputQty0": "54710675537863016655818", + "outputQty": "54848247217176815215753", + "swapFee": "42895266429964318226", "mpReserves": [ - "60691352664101681843391985", - "29119207633562717872626461", - "24905025913416853318551867" + "52190324057764058995484960", + "14821048152928884292998584", + "34160549514436544512429043" ], "fpReserves": [ - "15598269462736064004453290", - "5514323169458396855004620" + "1934884397244916005910292", + "2990317841870245663294826" ], - "mAssetSupply": "114681287308079470065314834", - "LPTokenSupply": "20898971308856123977463065" + "mAssetSupply": "101046698182605560303423484", + "LPTokenSupply": "4816977362291380644748008" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "167705784623779161309184", - "outputQty0": "167874795572302711740933", - "outputQty": "165712352008546069056310", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "311284008819646660608", + "outputQty0": "310851457168250698933", + "outputQty": "311571653592606167293", + "swapFee": "243676850181591773", "mpReserves": [ - "60691352664101681843391985", - "29286913418186497033935645", - "24905025913416853318551867" + "52190324057764058995484960", + "14821048152928884292998584", + "34160860798445364159089651" ], "fpReserves": [ - "15766144258308366716194223", - "5514323169458396855004620" + "1935195248702084256609225", + "2990006270216653057127533" ], - "mAssetSupply": "114849162103651772777055767", - "LPTokenSupply": "21064683660864670046519375" + "mAssetSupply": "101047009034062728554122417", + "LPTokenSupply": "4816977386659065662907185" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2561703732481186332672", - "outputQty0": "2564254944236603619081", - "outputQty": "2534766653301687413803", - "swapFee": "2024925440878745166", + "type": "redeem", + "outputIndex": 2, + "inputQty": "858668893926546304", + "outputQty0": "875778175629089400", + "outputQty": "876470659257574134", + "swapFee1": "515201336355927", + "swapFee2": "525466905377453", "mpReserves": [ - "60691352664101681843391985", - "29289475121918978220268317", - "24905025913416853318551867" + "52190324057764058995484960", + "14821048152928884292998584", + "34160859921974704901515517" ], "fpReserves": [ - "15768708513252603319813304", - "5511788402805095167590817" + "1935194372923908627519825", + "2990006270216653057127533" ], - "mAssetSupply": "114851726358596009380674848", - "LPTokenSupply": "21064683863357214134393891" + "mAssetSupply": "101047008158810019830410470", + "LPTokenSupply": "4816976528041691869996473" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "164512550968004611932160", - "outputQty0": "164207774600520859236532", - "outputQty": "162255866430346233332113", - "swapFee": "129666936420228058756", + "inputIndex": 2, + "inputQty": "343376228322519089152", + "outputQty0": "342899056548848556556", + "outputQty": "343692713466523629956", + "swapFee": "268798624634114275", "mpReserves": [ - "60855865215069686455324145", - "29289475121918978220268317", - "24905025913416853318551867" + "52190324057764058995484960", + "14821048152928884292998584", + "34161203298203027420604669" ], "fpReserves": [ - "15932916287853124179049836", - "5349532536374748934258704" + "1935537271980457476076381", + "2989662577503186533497577" ], - "mAssetSupply": "115015934133196530239911380", - "LPTokenSupply": "21064696830050856157199766" + "mAssetSupply": "101047351057866568678967026", + "LPTokenSupply": "4816976554921554333407900" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1093796730317839892742144", - "outputQty0": "1095831735942243313846044", - "outputQty": "1081271813016523098138775", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1053593153712108372754432", + "outputQty0": "1071663978381484264410328", + "outputQty": "1055168357276146178376457", + "swapFee1": "632155892227265023652", + "swapFee2": "642998387028890558646", "mpReserves": [ - "60855865215069686455324145", - "29289475121918978220268317", - "25998822643734693211294011" + "52190324057764058995484960", + "13765879795652738114622127", + "34161203298203027420604669" ], "fpReserves": [ - "17028748023795367492895880", - "5349532536374748934258704" + "863873293598973211666053", + "2989662577503186533497577" ], - "mAssetSupply": "116111765869138773553757424", - "LPTokenSupply": "22145968643067379255338541" + "mAssetSupply": "99976330077872113305115344", + "LPTokenSupply": "3763446616798668687155833" }, { "type": "swap_fp_to_mp", - "inputQty": "7501211007835841757184", + "inputQty": "20862599719354430914560", "outputIndex": 0, - "outputQty": "7609510049690131952525", + "outputQty": "20653206307818967203260", "swapFee": "0", - "redemptionFee": "3039574721268829122", + "redemptionFee": "12326582553664206482", "mpReserves": [ - "60848255705019996323371620", - "29289475121918978220268317", - "25998822643734693211294011" + "52169670851456240028281700", + "13765879795652738114622127", + "34161203298203027420604669" ], "fpReserves": [ - "17021149086992195420089860", - "5357033747382584776015888" + "843328989342866200862025", + "3010525177222540964412137" ], - "mAssetSupply": "116104169971910322749780526", - "LPTokenSupply": "22145968643067379255338541" + "mAssetSupply": "99955798100198559958517798", + "LPTokenSupply": "3763446616798668687155833" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "101231175129807550676992", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "119319880743527038976", - "outputIndex": 1, - "outputQty": "120695994835124654274", + "inputQty": "82826078868726513664", + "outputIndex": 2, + "outputQty": "81618080045970186310", "swapFee": "0", - "redemptionFee": "48348739276380978", + "redemptionFee": "48917126037968152", "mpReserves": [ - "60848255705019996323371620", - "29289354425924143095614043", - "25998822643734693211294011" + "52169670851456240028281700", + "13765879795652738114622127", + "34161121680122981450418359" ], "fpReserves": [ - "17021028215144004467644007", - "5357153067263328303054864" + "843247460799469587273961", + "3010608003301409690925801" ], - "mAssetSupply": "116104049148410871073715651", - "LPTokenSupply": "22145968643067379255338541" + "mAssetSupply": "99955716620572289382897886", + "LPTokenSupply": "3763446616798668687155833" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "63530389019902500405248", - "outputQty0": "63641225467510231922415", - "outputQty": "62762906533956622250469", - "swapFee": "50227770594548552633", - "mpReserves": [ - "60848255705019996323371620", - "29289354425924143095614043", - "26062353032754595711699259" - ], - "fpReserves": [ - "17084669440611514699566422", - "5294390160729371680804395" - ], - "mAssetSupply": "116167690373878381305638066", - "LPTokenSupply": "22145973665844438710193804" + "type": "swap_fp_to_mp", + "inputQty": "1616185463020857497485312", + "outputIndex": 2, + "hardLimitError": true + }, + { + "type": "swap_fp_to_mp", + "inputQty": "505821487985413020712960", + "outputIndex": 1, + "hardLimitError": true + }, + { + "type": "swap_fp_to_mp", + "inputQty": "282599350221961248636928", + "outputIndex": 0, + "hardLimitError": true }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "49388636162874621952", - "outputQty0": "49300477257347370186", - "outputQty": "48611502975579736880", - "swapFee": "38906609756433370", + "inputQty": "748530176764504965120", + "outputQty0": "744137726377730554549", + "outputQty": "755365663266549539162", + "swapFee": "588542557590345498", "mpReserves": [ - "60848305093656159197993572", - "29289354425924143095614043", - "26062353032754595711699259" + "52170419381633004533246820", + "13765879795652738114622127", + "34161121680122981450418359" ], "fpReserves": [ - "17084718741088772046936608", - "5294341549226396101067515" + "843991598525847317828510", + "3009852637638143141386639" ], - "mAssetSupply": "116167739674355638653008252", - "LPTokenSupply": "22145973669735099685837141" + "mAssetSupply": "99956460758298667113452435", + "LPTokenSupply": "3763446675652924446190382" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "855649196130754560524288", - "outputQty0": "854104414361478715735774", - "outputQty": "842430256464131286680029", - "mpReserves": [ - "61703954289786913758517860", - "29289354425924143095614043", - "26062353032754595711699259" - ], - "fpReserves": [ - "17938823155450250762672382", - "5294341549226396101067515" - ], - "mAssetSupply": "117021844088717117368744026", - "LPTokenSupply": "22988403926199230972517170" + "type": "swap_fp_to_mp", + "inputQty": "3634735012021099888115712", + "outputIndex": 0, + "hardLimitError": true }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2373180380868940660736", - "outputQty0": "2368847318157472967585", - "outputQty": "2336149970874568958025", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "6454437743851713069056", + "outputQty0": "6443484181655553573990", + "outputQty": "6539746325081660107002", + "swapFee": "5095705548561440515", "mpReserves": [ - "61706327470167782699178596", - "29289354425924143095614043", - "26062353032754595711699259" + "52170419381633004533246820", + "13765879795652738114622127", + "34167576117866833163487415" ], "fpReserves": [ - "17941192002768408235639967", - "5294341549226396101067515" + "850435082707502871402500", + "3003312891313061481279637" ], - "mAssetSupply": "117024212936035274841711611", - "LPTokenSupply": "22990740076170105541475195" + "mAssetSupply": "99962904242480322667026425", + "LPTokenSupply": "3763447185223479302334433" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "235959880927179574345728", - "outputQty0": "236376712001820097136172", - "outputQty": "233105127229423297788650", + "inputIndex": 0, + "inputQty": "3916690169895198208", + "outputQty0": "3893708245940501213", + "outputQty": "3848597856657812134", "mpReserves": [ - "61706327470167782699178596", - "29289354425924143095614043", - "26298312913681775286044987" + "52170423298323174428445028", + "13765879795652738114622127", + "34167576117866833163487415" ], "fpReserves": [ - "18177568714770228332776139", - "5294341549226396101067515" + "850438976415748811903713", + "3003312891313061481279637" ], - "mAssetSupply": "117260589648037094938847783", - "LPTokenSupply": "23223845203399528839263845" + "mAssetSupply": "99962908136188568607527638", + "LPTokenSupply": "3763451033821335960146567" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "1125235067278439946911744", - "hardLimitError": true - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "72797875066529004912640", - "outputQty0": "72665843570825888767663", - "outputQty": "71527282098449079462919", - "swapFee": "57325266610353490439", + "inputQty": "9664055754527256576", + "outputQty0": "9820720037151183840", + "outputQty": "9966131802050563521", + "swapFee": "7765552713799364", "mpReserves": [ - "61779125345234311704091236", - "29289354425924143095614043", - "26298312913681775286044987" + "52170423298323174428445028", + "13765889459708492641878703", + "34167576117866833163487415" ], "fpReserves": [ - "18250234558341054221543802", - "5222814267127947021604596" + "850448797135785963087553", + "3003302925181259430716116" ], - "mAssetSupply": "117333255491607920827615446", - "LPTokenSupply": "23223850935926189874612888" + "mAssetSupply": "99962917956908605758711478", + "LPTokenSupply": "3763451034597891231526503" }, { "type": "swap_fp_to_mp", - "inputQty": "74108418302383341568", - "outputIndex": 0, - "outputQty": "75351649254146493866", + "inputQty": "3001449806865352192", + "outputIndex": 2, + "outputQty": "2958541046731833715", "swapFee": "0", - "redemptionFee": "30097981598228198", + "redemptionFee": "1773174695564796", "mpReserves": [ - "61779049993585057557597370", - "29289354425924143095614043", - "26298312913681775286044987" + "52170423298323174428445028", + "13765889459708492641878703", + "34167573159325786431653700" ], "fpReserves": [ - "18250159313387058651048660", - "5222888375546249404946164" + "850445841844626688426337", + "3003305926631066296068308" ], - "mAssetSupply": "117333180276751906855348502", - "LPTokenSupply": "23223850935926189874612888" + "mAssetSupply": "99962915003390621179615058", + "LPTokenSupply": "3763451034597891231526503" }, { - "type": "swap_fp_to_mp", - "inputQty": "21894955795188375552", - "outputIndex": 2, - "outputQty": "22183061049815431590", - "swapFee": "0", - "redemptionFee": "8892293043285001", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "233787120538732096", + "outputQty0": "237577047171879213", + "outputQty": "241094742427679469", + "swapFee": "187859636749118", "mpReserves": [ - "61779049993585057557597370", - "29289354425924143095614043", - "26298290730620725470613397" + "52170423298323174428445028", + "13765889693495613180610799", + "34167573159325786431653700" ], "fpReserves": [ - "18250137082654450438544124", - "5222910270502044593321716" + "850446079421673860305550", + "3003305685536323868388839" ], - "mAssetSupply": "117333158054911591686128967", - "LPTokenSupply": "23223850935926189874612888" + "mAssetSupply": "99962915240967668351494271", + "LPTokenSupply": "3763451034616677195201414" }, { "type": "swap_fp_to_mp", - "inputQty": "425442798076031171297280", - "outputIndex": 2, - "outputQty": "430474670800395811743193", + "inputQty": "5273012567832597", + "outputIndex": 1, + "outputQty": "5106030694921805", "swapFee": "0", - "redemptionFee": "172567085024323348050", + "redemptionFee": "3115151872847", "mpReserves": [ - "61779049993585057557597370", - "29289354425924143095614043", - "25867816059820329658870204" + "52170423298323174428445028", + "13765889688389582485688994", + "34167573159325786431653700" ], "fpReserves": [ - "17818719370093642068418103", - "5648353068578075764618996" + "850446074229754072226035", + "3003305690809336436221436" ], - "mAssetSupply": "116901912909435807639350996", - "LPTokenSupply": "23223850935926189874612888" + "mAssetSupply": "99962915235778863715287603", + "LPTokenSupply": "3763451034616677195201414" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "256473190534083392831488", + "outputIndex": 1, + "hardLimitError": true }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "19834966671744131072", - "outputQty0": "19798448671667718326", - "outputQty": "19531699264486670929", - "swapFee": "15626283522963588", + "inputIndex": 2, + "inputQty": "18703408685107791265792", + "outputQty0": "18671612448550002481830", + "outputQty": "18941104904917782660392", + "swapFee": "14760954944839588925", "mpReserves": [ - "61779069828551729301728442", - "29289354425924143095614043", - "25867816059820329658870204" + "52170423298323174428445028", + "13765889688389582485688994", + "34186276568010894222919492" ], "fpReserves": [ - "17818739168542313736136429", - "5648333536878811277948067" + "869117686678304074707865", + "2984364585904418653561044" ], - "mAssetSupply": "116901932707884479307069322", - "LPTokenSupply": "23223850937488818226909246" + "mAssetSupply": "99981586848227413717769433", + "LPTokenSupply": "3763452510712171679160306" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5929674142164855029760", - "outputQty0": "5918756220640622574464", - "outputQty": "5839351355400307152656", + "inputIndex": 1, + "inputQty": "31247295308343355113472", + "outputQty0": "31752841889494977763618", + "outputQty": "31356329347252800760998", "mpReserves": [ - "61784999502693894156758202", - "29289354425924143095614043", - "25867816059820329658870204" + "52170423298323174428445028", + "13797136983697925840802466", + "34186276568010894222919492" ], "fpReserves": [ - "17824657924762954358710893", - "5648333536878811277948067" + "900870528567799052471483", + "2984364585904418653561044" ], - "mAssetSupply": "116907851464105119929643786", - "LPTokenSupply": "23229690288844218534061902" + "mAssetSupply": "100013339690116908695533051", + "LPTokenSupply": "3794808840059424479921304" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2045837872260183175987200", - "outputQty0": "2047794151046285317457469", - "outputQty": "2019699975179040094955060", + "inputIndex": 0, + "inputQty": "2217256106377485383368704", + "outputQty0": "2203876999306742587480548", + "outputQty": "2160514267882219989175822", "mpReserves": [ - "61784999502693894156758202", - "31335192298184326271601243", - "25867816059820329658870204" + "54387679404700659811813732", + "13797136983697925840802466", + "34186276568010894222919492" ], "fpReserves": [ - "19872452075809239676168362", - "5648333536878811277948067" + "3104747527874541639952031", + "2984364585904418653561044" ], - "mAssetSupply": "118955645615151405247101255", - "LPTokenSupply": "25249390264023258629016962" + "mAssetSupply": "102217216689423651283013599", + "LPTokenSupply": "5955323107941644469097126" }, { - "type": "swap_fp_to_mp", - "inputQty": "34901187020227304488960", - "outputIndex": 1, - "outputQty": "35395623871248726014938", - "swapFee": "0", - "redemptionFee": "14175639405817125168", + "type": "redeem", + "outputIndex": 0, + "inputQty": "19177345533724940304384", + "outputQty0": "19598723788453980149516", + "outputQty": "19709442438694007219653", + "swapFee1": "11506407320234964182", + "swapFee2": "11759234273072388089", "mpReserves": [ - "61784999502693894156758202", - "31299796674313077545586305", - "25867816059820329658870204" + "54367969962261965804594079", + "13797136983697925840802466", + "34186276568010894222919492" ], "fpReserves": [ - "19837012977294696863248150", - "5683234723899038582437027" + "3085148804086087659802515", + "2984364585904418653561044" ], - "mAssetSupply": "118920220692276268251306211", - "LPTokenSupply": "25249390264023258629016962" + "mAssetSupply": "102197629724869470375252172", + "LPTokenSupply": "5936146913048651552289160" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "9893159467242962944", - "outputQty0": "9875824274190278668", - "outputQty": "9719153272987259820", - "swapFee": "7790251108159112", + "inputQty": "867342935928913526784", + "outputQty0": "861954458230338324719", + "outputQty": "861073768903793700913", + "swapFee": "674338387364388956", "mpReserves": [ - "61785009395853361399721146", - "31299796674313077545586305", - "25867816059820329658870204" + "54368837305197894718120863", + "13797136983697925840802466", + "34186276568010894222919492" ], "fpReserves": [ - "19837022853118971053526818", - "5683225004745765595177207" + "3086010758544317998127234", + "2983503512135514859860131" ], - "mAssetSupply": "118920230568100542441584879", - "LPTokenSupply": "25249390264802283739832873" + "mAssetSupply": "102198491679327700713576891", + "LPTokenSupply": "5936146980482490288728055" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "80127942543374680064", - "outputQty0": "81214807702968529565", - "outputQty": "81324822279223865387", - "swapFee1": "48076765526024808", - "swapFee2": "32485923081187411", + "outputIndex": 2, + "inputQty": "97405157875632881664", + "outputQty0": "99544748098069452553", + "outputQty": "99637238559376167536", + "swapFee1": "58443094725379728", + "swapFee2": "59726848858841671", "mpReserves": [ - "61784928071031082175855759", - "31299796674313077545586305", - "25867816059820329658870204" + "54368837305197894718120863", + "13797136983697925840802466", + "34186176930772334846751956" ], "fpReserves": [ - "19836941638311268084997253", - "5683225004745765595177207" + "3085911213796219928674681", + "2983503512135514859860131" ], - "mAssetSupply": "118920149385778762554242725", - "LPTokenSupply": "25249310141667416917755289" + "mAssetSupply": "102198392194306451502966009", + "LPTokenSupply": "5936049581168924128384363" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "40021752950087588249600", + "outputQty0": "39772978124618307282377", + "outputQty": "38893946131066279537072", + "mpReserves": [ + "54408859058147982306370463", + "13797136983697925840802466", + "34186176930772334846751956" + ], + "fpReserves": [ + "3125684191920838235957058", + "2983503512135514859860131" + ], + "mAssetSupply": "102238165172431069810248386", + "LPTokenSupply": "5974943527299990407921435" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "234191574382401390903296", - "outputQty0": "234637787965629253843538", - "outputQty": "230751354907479848229293", - "swapFee": "185080636120325765828", + "inputIndex": 0, + "inputQty": "17623479471553204191232", + "outputQty0": "17513848708324923544468", + "outputQty": "17493771723415238446022", + "swapFee": "13701008199057887128", "mpReserves": [ - "61784928071031082175855759", - "31299796674313077545586305", - "26102007634202731049773500" + "54426482537619535510561695", + "13797136983697925840802466", + "34186176930772334846751956" ], "fpReserves": [ - "20071579426276897338840791", - "5452473649838285746947914" + "3143198040629163159501526", + "2966009740412099621414109" ], - "mAssetSupply": "119154787173744391808086263", - "LPTokenSupply": "25249328649731028950331871" + "mAssetSupply": "102255679021139394733792854", + "LPTokenSupply": "5974944897400810313710147" }, { - "type": "swap_fp_to_mp", - "inputQty": "71499529619781439193088", + "type": "redeem", "outputIndex": 1, - "outputQty": "72591777326223930049304", - "swapFee": "0", - "redemptionFee": "29072889827405261211", + "inputQty": "153755454042226212995072", + "outputQty0": "157132533170656718256729", + "outputQty": "154360290211196194685631", + "swapFee1": "92253272425335727797", + "swapFee2": "94279519902394030954", "mpReserves": [ - "61784928071031082175855759", - "31227204896986853615537001", - "26102007634202731049773500" + "54426482537619535510561695", + "13642776693486729646116835", + "34186176930772334846751956" ], "fpReserves": [ - "19998897201708384185811709", - "5523973179458067186141002" + "2986065507458506441244797", + "2966009740412099621414109" ], - "mAssetSupply": "119082134022065706060318392", - "LPTokenSupply": "25249328649731028950331871" + "mAssetSupply": "102098640767488640409567079", + "LPTokenSupply": "5821198668685826634287854" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2427308658540118278144", - "outputQty0": "2431867968908291302002", - "outputQty": "2397343513947598592432", + "type": "swap_fp_to_mp", + "inputQty": "1254884545187952807903232", + "outputIndex": 1, + "outputQty": "1226279630741306143562598", + "swapFee": "0", + "redemptionFee": "750439068085948618889", "mpReserves": [ - "61784928071031082175855759", - "31227204896986853615537001", - "26104434942861271168051644" + "54426482537619535510561695", + "12416497062745423502554237", + "34186176930772334846751956" ], "fpReserves": [ - "20001329069677292477113711", - "5523973179458067186141002" + "1735333727315258743095669", + "4220894285600052429317341" ], - "mAssetSupply": "119084565890034614351620394", - "LPTokenSupply": "25251725993244976548924303" + "mAssetSupply": "100848659426413478660036840", + "LPTokenSupply": "5821198668685826634287854" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "57262570256492789760", - "outputQty0": "58052384558292292196", - "outputQty": "58130372764415485206", - "swapFee1": "34357542153895673", - "swapFee2": "23220953823316916", + "outputIndex": 1, + "inputQty": "89767803936925", + "outputQty0": "91271890221019", + "outputQty": "89316794026629", + "swapFee1": "53860682362", + "swapFee2": "54763134132", "mpReserves": [ - "61784869940658317760370553", - "31227204896986853615537001", - "26104434942861271168051644" + "54426482537619535510561695", + "12416497062656106708527608", + "34186176930772334846751956" ], "fpReserves": [ - "20001271017292734184821515", - "5523973179458067186141002" + "1735333727223986852874650", + "4220894285600052429317341" ], - "mAssetSupply": "119084507860871009882645114", - "LPTokenSupply": "25251668734110474271524110" + "mAssetSupply": "100848659426322261532949953", + "LPTokenSupply": "5821198668596064216419165" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2181863127375102607360", - "outputQty0": "2178064239947870243772", - "outputQty": "2147141487706628047994", + "inputQty": "733170045008045825589248", + "outputQty0": "728047413098566653700549", + "outputQty": "714493652700633951875886", "mpReserves": [ - "61787051803785692862977913", - "31227204896986853615537001", - "26104434942861271168051644" + "55159652582627581336150943", + "12416497062656106708527608", + "34186176930772334846751956" ], "fpReserves": [ - "20003449081532682055065287", - "5523973179458067186141002" + "2463381140322553506575199", + "4220894285600052429317341" ], - "mAssetSupply": "119086685925110957752888886", - "LPTokenSupply": "25253815875598180899572104" + "mAssetSupply": "101576706839420828186650502", + "LPTokenSupply": "6535692321296698168295051" }, { - "type": "swap_fp_to_mp", - "inputQty": "532241053858961216", + "type": "redeem", "outputIndex": 1, - "outputQty": "540246956535977745", - "swapFee": "0", - "redemptionFee": "216369034629468", + "inputQty": "43440747707312201793536", + "outputQty0": "44287014808074295297351", + "outputQty": "43317473497637663575875", + "swapFee1": "26064448624387321076", + "swapFee2": "26572208884844577178", "mpReserves": [ - "61787051803785692862977913", - "31227204356739897079559256", - "26104434942861271168051644" + "55159652582627581336150943", + "12373179589158469044951733", + "34186176930772334846751956" ], "fpReserves": [ - "20003448540610095481392917", - "5523973711699121045102218" + "2419094125514479211277848", + "4220894285600052429317341" ], - "mAssetSupply": "119086685384404740213845984", - "LPTokenSupply": "25253815875598180899572104" + "mAssetSupply": "101532446396821638735930329", + "LPTokenSupply": "6492254180034248405233622" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "56746093157328216915968", - "outputQty0": "56647214277976399919085", - "outputQty": "55842474842468664012041", + "type": "swap_fp_to_mp", + "inputQty": "709037901144464818176", + "outputIndex": 1, + "outputQty": "690566252751972908170", + "swapFee": "0", + "redemptionFee": "423646197693686580", "mpReserves": [ - "61843797896943021079893881", - "31227204356739897079559256", - "26104434942861271168051644" + "55159652582627581336150943", + "12372489022905717072043563", + "34186176930772334846751956" ], "fpReserves": [ - "20060095754888071881312002", - "5523973711699121045102218" + "2418388048518323066976633", + "4221603323501196894135517" ], - "mAssetSupply": "119143332598682716613765069", - "LPTokenSupply": "25309658350440649563584145" + "mAssetSupply": "101531740743471680285315694", + "LPTokenSupply": "6492254180034248405233622" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "20484198222556852912128", - "outputQty0": "20522699798607555809583", - "outputQty": "20230913966541955526176", + "inputQty": "59575488624781101629440", + "outputQty0": "59459103635847993174439", + "outputQty": "59650149349708580024073", + "swapFee": "46629454243124911584", "mpReserves": [ - "61843797896943021079893881", - "31227204356739897079559256", - "26124919141083828020963772" + "55159652582627581336150943", + "12372489022905717072043563", + "34245752419397115948381396" ], "fpReserves": [ - "20080618454686679437121585", - "5523973711699121045102218" + "2477847152154171060151072", + "4161953174151488314111444" ], - "mAssetSupply": "119163855298481324169574652", - "LPTokenSupply": "25329889264407191519110321" + "mAssetSupply": "101591199847107528278490133", + "LPTokenSupply": "6492258842979672717724780" }, { "type": "mint", "inputIndex": 1, - "inputQty": "59502133648315711488", - "outputQty0": "59552914193465634973", - "outputQty": "58706024566998506559", + "inputQty": "41175273200281435766784", + "outputQty0": "42072775939412553376924", + "outputQty": "41234823154701703993737", "mpReserves": [ - "61843797896943021079893881", - "31227263858873545395270744", - "26124919141083828020963772" + "55159652582627581336150943", + "12413664296105998507810347", + "34245752419397115948381396" ], "fpReserves": [ - "20080678007600872902756558", - "5523973711699121045102218" + "2519919928093583613527996", + "4161953174151488314111444" ], - "mAssetSupply": "119163914851395517635209625", - "LPTokenSupply": "25329947970431758517616880" + "mAssetSupply": "101633272623046940831867057", + "LPTokenSupply": "6533493666134374421718517" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "68128222508220514304", - "outputQty0": "68186364233143338279", - "outputQty": "67031135047113652248", - "swapFee": "53773359042265656", + "type": "swap_fp_to_mp", + "inputQty": "168977802123557157732352", + "outputIndex": 0, + "outputQty": "169363070980428317546017", + "swapFee": "0", + "redemptionFee": "100963646348302782946", "mpReserves": [ - "61843797896943021079893881", - "31227331987096053615785048", - "26124919141083828020963772" + "54990289511647153018604926", + "12413664296105998507810347", + "34245752419397115948381396" ], "fpReserves": [ - "20080746193965106046094837", - "5523906680564073931449970" + "2351647184179745641951228", + "4330930976275045471843796" ], - "mAssetSupply": "119163983037759750778547904", - "LPTokenSupply": "25329947975809094421843445" + "mAssetSupply": "101465100842779451163073235", + "LPTokenSupply": "6533493666134374421718517" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "750520947416199138902016", - "outputQty0": "749200133267094657703522", - "outputQty": "738461909345544676964311", + "type": "swap_fp_to_mp", + "inputQty": "1468486974360457838592", + "outputIndex": 0, + "outputQty": "1471033383695516591746", + "swapFee": "0", + "redemptionFee": "876951299900442097", "mpReserves": [ - "62594318844359220218795897", - "31227331987096053615785048", - "26124919141083828020963772" + "54988818478263457502013180", + "12413664296105998507810347", + "34245752419397115948381396" ], "fpReserves": [ - "20829946327232200703798359", - "5523906680564073931449970" + "2350185598679911571788926", + "4332399463249405929682388" ], - "mAssetSupply": "119913183171026845436251426", - "LPTokenSupply": "26068409885154639098807756" + "mAssetSupply": "101463640134230916993353030", + "LPTokenSupply": "6533493666134374421718517" }, { "type": "swap_fp_to_mp", - "inputQty": "754128534944112967680", + "inputQty": "857606788614369574912", "outputIndex": 0, - "outputQty": "768377126798163524286", + "outputQty": "859087181309431443707", "swapFee": "0", - "redemptionFee": "306927413112265131", + "redemptionFee": "512141862869180086", "mpReserves": [ - "62593550467232422055271611", - "31227331987096053615785048", - "26124919141083828020963772" + "54987959391082148070569473", + "12413664296105998507810347", + "34245752419397115948381396" ], "fpReserves": [ - "20829179008699420040969223", - "5524660809099018044417650" + "2349332028908462938311345", + "4333257070038020299257300" ], - "mAssetSupply": "119912416159421477885687421", - "LPTokenSupply": "26068409885154639098807756" + "mAssetSupply": "101462787076601331229055535", + "LPTokenSupply": "6533493666134374421718517" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "172189126121430469050368", - "outputQty0": "172339650928425739356578", - "outputQty": "169845987729709893073062", + "inputIndex": 0, + "inputQty": "387455864456032102121472", + "outputQty0": "384723168392939190350805", + "outputQty": "377115670108172495829568", "mpReserves": [ - "62593550467232422055271611", - "31399521113217484084835416", - "26124919141083828020963772" + "55375415255538180172690945", + "12413664296105998507810347", + "34245752419397115948381396" ], "fpReserves": [ - "21001518659627845780325801", - "5524660809099018044417650" + "2734055197301402128662150", + "4333257070038020299257300" ], - "mAssetSupply": "120084755810349903625043999", - "LPTokenSupply": "26238255872884348991880818" + "mAssetSupply": "101847510244994270419406340", + "LPTokenSupply": "6910609336242546917548085" }, { - "type": "swap_fp_to_mp", - "inputQty": "127943794566897910939648", - "outputIndex": 0, - "outputQty": "130335279921133818992835", - "swapFee": "0", - "redemptionFee": "52062820719232896868", + "type": "redeem", + "outputIndex": 1, + "inputQty": "51623943194145022017536", + "outputQty0": "52652776133619722784041", + "outputQty": "51491487830687092247662", + "swapFee1": "30974365916487013210", + "swapFee2": "31591665680171833670", "mpReserves": [ - "62463215187311288236278776", - "31399521113217484084835416", - "26124919141083828020963772" + "55375415255538180172690945", + "12362172808275311415562685", + "34245752419397115948381396" ], "fpReserves": [ - "20871361607829763538154844", - "5652604603665915955357298" + "2681402421167782405878109", + "4333257070038020299257300" ], - "mAssetSupply": "119954650821372540615769910", - "LPTokenSupply": "26238255872884348991880818" + "mAssetSupply": "101794889060526330868455969", + "LPTokenSupply": "6858988490484993544231870" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "133122230775016046592", - "outputQty0": "132887414155001880742", - "outputQty": "130985094652973933784", + "type": "redeem", + "outputIndex": 2, + "inputQty": "58521664291659038720", + "outputQty0": "59685130458611776130", + "outputQty": "59765743097713630734", + "swapFee1": "35112998574995423", + "swapFee2": "35811078275167065", "mpReserves": [ - "62463348309542063252325368", - "31399521113217484084835416", - "26124919141083828020963772" + "55375415255538180172690945", + "12362172808275311415562685", + "34245692653654018234750662" ], "fpReserves": [ - "20871494495243918540035586", - "5652604603665915955357298" + "2681342736037323794101979", + "4333257070038020299257300" ], - "mAssetSupply": "119954783708786695617650652", - "LPTokenSupply": "26238386857979001965814602" + "mAssetSupply": "101794829411206950531846904", + "LPTokenSupply": "6858929972332001742692692" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "334323686827489876770816", - "outputQty0": "334955415735998519097161", - "outputQty": "328764809507904672291270", - "swapFee": "264115238898836057139", + "inputQty": "623986321239075136208896", + "outputQty0": "622719956139403261329726", + "outputQty": "623506354777274478670676", + "swapFee": "487915690532065608186", "mpReserves": [ - "62463348309542063252325368", - "31399521113217484084835416", - "26459242827911317897734588" + "55375415255538180172690945", + "12362172808275311415562685", + "34869678974893093370959558" ], "fpReserves": [ - "21206449910979917059132747", - "5323839794158011283066028" + "3304062692176727055431705", + "3709750715260745820586624" ], - "mAssetSupply": "120289739124522694136747813", - "LPTokenSupply": "26238413269502891849420315" + "mAssetSupply": "102417549367346353793176630", + "LPTokenSupply": "6858978763901054949253510" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "25110134340222768381952", - "outputQty0": "25472039019580356006345", - "outputQty": "25506321797067224899116", - "swapFee1": "15066080604133661029", - "swapFee2": "10188815607832142402", + "inputQty": "252389421981753675874304", + "outputQty0": "257789264726720544477196", + "outputQty": "259462529264385081810356", + "swapFee1": "151433653189052205524", + "swapFee2": "154673558836032326686", "mpReserves": [ - "62437841987744996027426252", - "31399521113217484084835416", - "26459242827911317897734588" + "55115952726273795090880589", + "12362172808275311415562685", + "34869678974893093370959558" ], "fpReserves": [ - "21180977871960336703126402", - "5323839794158011283066028" + "3046273427450006510954509", + "3709750715260745820586624" ], - "mAssetSupply": "120264277274318721612883870", - "LPTokenSupply": "26213304641770729494404465" + "mAssetSupply": "102159914776178469281026120", + "LPTokenSupply": "6606604485284620178599758" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5198529723567558361088", - "outputQty0": "5203065643963908529751", - "outputQty": "5126077038870308876299", + "type": "redeem", + "outputIndex": 0, + "inputQty": "42081579360288", + "outputQty0": "42976213379819", + "outputQty": "43254163588247", + "swapFee1": "25248947616", + "swapFee2": "25785728027", "mpReserves": [ - "62437841987744996027426252", - "31404719642941051643196504", - "26459242827911317897734588" + "55115952726230540927292342", + "12362172808275311415562685", + "34869678974893093370959558" ], "fpReserves": [ - "21186180937604300611656153", - "5323839794158011283066028" + "3046273427407030297574690", + "3709750715260745820586624" ], - "mAssetSupply": "120269480339962685521413621", - "LPTokenSupply": "26218430718809599803280764" + "mAssetSupply": "102159914776135518853374328", + "LPTokenSupply": "6606604485242541124134231" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "208643052702606491648", - "outputQty0": "211649764332044972101", - "outputQty": "211173246979768903975", - "swapFee1": "125185831621563894", - "swapFee2": "84659905732817988", + "outputIndex": 0, + "inputQty": "131127888430979381985280", + "outputQty0": "133904057617136856073502", + "outputQty": "134768467922980588415946", + "swapFee1": "78676733058587629191", + "swapFee2": "80342434570282113644", "mpReserves": [ - "62437841987744996027426252", - "31404719642941051643196504", - "26459031654664338128830613" + "54981184258307560338876396", + "12362172808275311415562685", + "34869678974893093370959558" ], "fpReserves": [ - "21185969287839968566684052", - "5323839794158011283066028" + "2912369369789893441501188", + "3709750715260745820586624" ], - "mAssetSupply": "120269268774858259209259508", - "LPTokenSupply": "26218222088275480358945505" + "mAssetSupply": "102026091060952952279414470", + "LPTokenSupply": "6475484464484867600911870" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "323210888726075342848", - "outputQty0": "322647605418197615148", - "outputQty": "317873205230036842264", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1000137584925435", + "outputQty0": "1021232435671906", + "outputQty": "998610571182592", + "swapFee1": "600082550955", + "swapFee2": "612739461403", "mpReserves": [ - "62438165198633722102769100", - "31404719642941051643196504", - "26459031654664338128830613" + "54981184258307560338876396", + "12362172807276700844380093", + "34869678974893093370959558" ], "fpReserves": [ - "21186291935445386764299200", - "5323839794158011283066028" + "2912369368768661005829282", + "3709750715260745820586624" ], - "mAssetSupply": "120269591422463677406874656", - "LPTokenSupply": "26218539961480710395787769" + "mAssetSupply": "102026091059932332583203967", + "LPTokenSupply": "6475484463484790024241530" }, { - "type": "swap_fp_to_mp", - "inputQty": "1182852086271212544", - "outputIndex": 0, - "outputQty": "1207182194571377321", - "swapFee": "0", - "redemptionFee": "482224226010456", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "51801581828015508160512", + "outputQty0": "52938443618815195742412", + "outputQty": "52976934977510954464428", + "swapFee": "41449579266292391221", "mpReserves": [ - "62438163991451527531391779", - "31404719642941051643196504", - "26459031654664338128830613" + "54981184258307560338876396", + "12413974389104716352540605", + "34869678974893093370959558" ], "fpReserves": [ - "21186290729884821738157819", - "5323840977010097554278572" + "2965307812387476201571694", + "3656773780283234866122196" ], - "mAssetSupply": "120269590217385336606743731", - "LPTokenSupply": "26218539961480710395787769" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "746569925146957997670400", - "hardLimitError": true + "mAssetSupply": "102079029503551147778946379", + "LPTokenSupply": "6475488608442716653480652" }, { "type": "swap_fp_to_mp", - "inputQty": "6963188264586629349376", - "outputIndex": 0, - "outputQty": "7106223320863309052540", + "inputQty": "133399958580494830927872", + "outputIndex": 2, + "outputQty": "133373663177879944773705", "swapFee": "0", - "redemptionFee": "2838671422591562202", + "redemptionFee": "79903786162795250407", "mpReserves": [ - "62431057768130664222339239", - "31404719642941051643196504", - "26459031654664338128830613" + "54981184258307560338876396", + "12413974389104716352540605", + "34736305311715213426185853" ], "fpReserves": [ - "21179194051328342832650576", - "5330804165274684183627948" + "2832134835449484117558476", + "3790173738863729697050068" ], - "mAssetSupply": "120262496377500280292798690", - "LPTokenSupply": "26218539961480710395787769" + "mAssetSupply": "101945936430399318490183568", + "LPTokenSupply": "6475488608442716653480652" }, { "type": "mint", "inputIndex": 2, - "inputQty": "144849836169094", - "outputQty0": "145118568095338", - "outputQty": "142972715596066", - "mpReserves": [ - "62431057768130664222339239", - "31404719642941051643196504", - "26459031654809187964999707" - ], - "fpReserves": [ - "21179194051473461400745914", - "5330804165274684183627948" - ], - "mAssetSupply": "120262496377645398860894028", - "LPTokenSupply": "26218539961623683111383835" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "20150243068611578036224", - "outputQty0": "20167787895501787787417", - "outputQty": "19869506337502664030570", + "inputQty": "396857568752985088", + "outputQty0": "396029404252168617", + "outputQty": "387692171585941236", "mpReserves": [ - "62431057768130664222339239", - "31424869886009663221232728", - "26459031654809187964999707" + "54981184258307560338876396", + "12413974389104716352540605", + "34736305708572782179170941" ], "fpReserves": [ - "21199361839368963188533331", - "5330804165274684183627948" + "2832135231478888369727093", + "3790173738863729697050068" ], - "mAssetSupply": "120282664165540900648681445", - "LPTokenSupply": "26238409467961185775414405" + "mAssetSupply": "101945936826428722742352185", + "LPTokenSupply": "6475488996134888239421888" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "588202437116385", - "outputQty0": "587178012155329", - "outputQty": "575669696075608", - "swapFee": "462793460413", + "inputIndex": 1, + "inputQty": "6688337216855157506048", + "outputQty0": "6834086711784589695847", + "outputQty": "6842172425072636458537", + "swapFee": "5352145074586213531", "mpReserves": [ - "62431057768718866659455624", - "31424869886009663221232728", - "26459031654809187964999707" + "54981184258307560338876396", + "12420662726321571510046653", + "34736305708572782179170941" ], "fpReserves": [ - "21199361839956141200688660", - "5330804164699014487552340" + "2838969318190672959422940", + "3783331566438657060591531" ], - "mAssetSupply": "120282664166128078660836774", - "LPTokenSupply": "26238409467961232054760446" + "mAssetSupply": "101952770913140507332048032", + "LPTokenSupply": "6475489531349395698043241" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "632487894284833259520", - "outputQty0": "633037800251691628794", - "outputQty": "620629185672206672266", - "swapFee": "498938514528057377", + "inputQty": "246119528654232627445760", + "outputQty0": "251374177708485107602381", + "outputQty": "246034820552541777633097", "mpReserves": [ - "62431057768718866659455624", - "31425502373903948054492248", - "26459031654809187964999707" + "54981184258307560338876396", + "12666782254975804137492413", + "34736305708572782179170941" ], "fpReserves": [ - "21199994877756392892317454", - "5330183535513342280880074" + "3090343495899158067025321", + "3783331566438657060591531" ], - "mAssetSupply": "120283297203928330352465568", - "LPTokenSupply": "26238409517855083507566183" + "mAssetSupply": "102204145090848992439650413", + "LPTokenSupply": "6721524351901937475676338" }, { - "type": "swap_fp_to_mp", - "inputQty": "255647056367616744488960", - "outputIndex": 0, - "outputQty": "260654915927026910068236", - "swapFee": "0", - "redemptionFee": "104122653416152006968", + "type": "redeem", + "outputIndex": 2, + "inputQty": "51483832272539864793088", + "outputQty0": "52576478780318358518189", + "outputQty": "52649554474917392649135", + "swapFee1": "30890299363523918875", + "swapFee2": "31545887268191015110", "mpReserves": [ - "62170402852791839749387388", - "31425502373903948054492248", - "26459031654809187964999707" + "54981184258307560338876396", + "12666782254975804137492413", + "34683656154097864786521806" ], "fpReserves": [ - "20939688244216012874897313", - "5585830591880959025369034" + "3037767017118839708507132", + "3783331566438657060591531" ], - "mAssetSupply": "120023094693041366487052395", - "LPTokenSupply": "26238409517855083507566183" + "mAssetSupply": "102151600157955942272147334", + "LPTokenSupply": "6670043608659333963275137" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "562836006635522228224", - "outputQty0": "561862460751489659694", - "outputQty": "553761620128423581717", + "inputIndex": 2, + "inputQty": "41305731425702223872", + "outputQty0": "41223926464293197426", + "outputQty": "40344163414968391660", "mpReserves": [ - "62170965688798475271615612", - "31425502373903948054492248", - "26459031654809187964999707" + "54981184258307560338876396", + "12666782254975804137492413", + "34683697459829290488745678" ], "fpReserves": [ - "20940250106676764364557007", - "5585830591880959025369034" + "3037808241045304001704558", + "3783331566438657060591531" ], - "mAssetSupply": "120023656555502117976712089", - "LPTokenSupply": "26238963279475211931147900" + "mAssetSupply": "102151641381882406565344760", + "LPTokenSupply": "6670083952822748931666797" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "352601666298901889024", - "outputQty0": "357545143201591193319", - "outputQty": "356745321125610080091", - "swapFee1": "211560999779341133", - "swapFee2": "143018057280636477", + "inputQty": "24871425322244472832", + "outputQty0": "25398534844085412792", + "outputQty": "25433666510648893141", + "swapFee1": "14922855193346683", + "swapFee2": "15239120906451247", "mpReserves": [ - "62170965688798475271615612", - "31425502373903948054492248", - "26458674909488062354919616" + "54981184258307560338876396", + "12666782254975804137492413", + "34683672026162779839852537" ], "fpReserves": [ - "20939892561533562773363688", - "5585830591880959025369034" + "3037782842510459916291766", + "3783331566438657060591531" ], - "mAssetSupply": "120023299153376973666155247", - "LPTokenSupply": "26238610698965013007192989" + "mAssetSupply": "102151615998586683386383215", + "LPTokenSupply": "6670059082889712206528633" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "76754455900003264", - "outputQty0": "76621689989117734", - "outputQty": "75516972239472809", + "inputIndex": 2, + "inputQty": "162592247236202", + "outputQty0": "162270237579918", + "outputQty": "158807216361357", "mpReserves": [ - "62170965765552931171618876", - "31425502373903948054492248", - "26458674909488062354919616" + "54981184258307560338876396", + "12666782254975804137492413", + "34683672026325372087088739" ], "fpReserves": [ - "20939892638155252762481422", - "5585830591880959025369034" + "3037782842672730153871684", + "3783331566438657060591531" ], - "mAssetSupply": "120023299229998663655272981", - "LPTokenSupply": "26238610774481985246665798" + "mAssetSupply": "102151615998748953623963133", + "LPTokenSupply": "6670059083048519422889990" }, { "type": "swap_fp_to_mp", - "inputQty": "516464912012690841403392", - "outputIndex": 0, - "outputQty": "525267798187313853353777", + "inputQty": "119406135009784840192", + "outputIndex": 1, + "outputQty": "116717153760256466067", "swapFee": "0", - "redemptionFee": "209830135214642986557", - "mpReserves": [ - "61645697967365617318265099", - "31425502373903948054492248", - "26458674909488062354919616" - ], - "fpReserves": [ - "20415317300118645296088628", - "6102295503893649866772426" - ], - "mAssetSupply": "119498933722097270831866744", - "LPTokenSupply": "26238610774481985246665798" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "402413595174876087320576", - "outputQty0": "407755944375645018779559", - "outputQty": "408285496081256453929402", - "swapFee1": "241448157104925652392", - "swapFee2": "163102377750258007511", + "redemptionFee": "71537522585629872", "mpReserves": [ - "61237412471284360864335697", - "31425502373903948054492248", - "26458674909488062354919616" + "54981184258307560338876396", + "12666665537822043881026346", + "34683672026325372087088739" ], "fpReserves": [ - "20007561355743000277309069", - "6102295503893649866772426" + "3037663613468420770751355", + "3783450972573666845431723" ], - "mAssetSupply": "119091340880099376071094696", - "LPTokenSupply": "25836221324122819651910461" + "mAssetSupply": "102151496841082166826472676", + "LPTokenSupply": "6670059083048519422889990" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "13457616288099728359424", - "outputQty0": "13434906575369451427691", - "outputQty": "13241827318545092652172", - "swapFee": "10601233421546987549", + "inputIndex": 2, + "inputQty": "1090896185871329394688", + "outputQty0": "1088735498115958943237", + "outputQty": "1089476648990852393457", + "swapFee": "852400210700846120", "mpReserves": [ - "61250870087572460592695121", - "31425502373903948054492248", - "26458674909488062354919616" + "54981184258307560338876396", + "12666665537822043881026346", + "34684762922511243416483427" ], "fpReserves": [ - "20020996262318369728736760", - "6089053676575104774120254" + "3038752348966536729694592", + "3782361495924675993038266" ], - "mAssetSupply": "119104775786674745522522387", - "LPTokenSupply": "25836222384246161806609215" + "mAssetSupply": "102152585576580282785415913", + "LPTokenSupply": "6670059168288540492974602" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "32565597885171298304", "outputIndex": 1, - "inputQty": "2234029977145369856", - "outputQty0": "2263616196334157382", - "outputQty": "2260854756214492674", - "swapFee1": "1340417986287221", - "swapFee2": "905446478533662", + "outputQty": "31832347216078838252", + "swapFee": "0", + "redemptionFee": "19510488551762906", "mpReserves": [ - "61250870087572460592695121", - "31425500113049191839999574", - "26458674909488062354919616" + "54981184258307560338876396", + "12666633705474827802188094", + "34684762922511243416483427" ], "fpReserves": [ - "20020993998702173394579378", - "6089053676575104774120254" + "3038719831485617124851135", + "3782394061522561164336570" ], - "mAssetSupply": "119104773523963995666898667", - "LPTokenSupply": "25836220150350226459868081" + "mAssetSupply": "102152553078609851732335362", + "LPTokenSupply": "6670059168288540492974602" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "110112389493570190442496", - "outputQty0": "111568926050284993311362", - "outputQty": "111432081743083048537848", - "swapFee1": "66067433696142114265", - "swapFee2": "44627570420113997324", + "inputQty": "45146444465060888707072", + "outputQty0": "46101980247055583804601", + "outputQty": "45127261835681560675375", + "swapFee1": "27087866679036533224", + "swapFee2": "27661188148233350282", "mpReserves": [ - "61250870087572460592695121", - "31314068031306108791461726", - "26458674909488062354919616" + "54981184258307560338876396", + "12621506443639146241512719", + "34684762922511243416483427" ], "fpReserves": [ - "19909425072651888401268016", - "6089053676575104774120254" + "2992617851238561541046534", + "3782394061522561164336570" ], - "mAssetSupply": "118993249225484130787584629", - "LPTokenSupply": "25726114367600025883637011" + "mAssetSupply": "102106478759550944381881043", + "LPTokenSupply": "6624915432610147507920852" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "28006174940702468734976", - "outputQty0": "28376146795393458870980", - "outputQty": "28314241251051765986537", - "swapFee1": "16803704964421481240", - "swapFee2": "11350458718157383548", + "type": "swap_fp_to_mp", + "inputQty": "249739269680958107811840", + "outputIndex": 1, + "outputQty": "243818598348298311651276", + "swapFee": "0", + "redemptionFee": "149523834971645163098", "mpReserves": [ - "61250870087572460592695121", - "31314068031306108791461726", - "26430360668237010588933079" + "54981184258307560338876396", + "12377687845290847929861443", + "34684762922511243416483427" ], "fpReserves": [ - "19881048925856494942397036", - "6089053676575104774120254" + "2743411459619152935882750", + "4032133331203519272148410" ], - "mAssetSupply": "118964884429147455486097197", - "LPTokenSupply": "25698109873029819857050159" + "mAssetSupply": "101857421891766507421880357", + "LPTokenSupply": "6624915432610147507920852" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "1055749428366662303744", - "outputQty0": "1069692518172574413513", - "outputQty": "1068374742678699462759", - "swapFee1": "633449657019997382", - "swapFee2": "427877007269029765", + "outputIndex": 2, + "inputQty": "697090970164719731605504", + "outputQty0": "710818989839470713513381", + "outputQty": "711812609703910613518170", + "swapFee1": "418254582098831838963", + "swapFee2": "426491393903682428108", "mpReserves": [ - "61250870087572460592695121", - "31312999656563430091998967", - "26430360668237010588933079" + "54981184258307560338876396", + "12377687845290847929861443", + "33972950312807332802965257" ], "fpReserves": [ - "19879979233338322367983523", - "6089053676575104774120254" + "2032592469779682222369369", + "4032133331203519272148410" ], - "mAssetSupply": "118963815164506290180713449", - "LPTokenSupply": "25697054186946418896746153" + "mAssetSupply": "101147029393320940390795084", + "LPTokenSupply": "5927866287903637659499244" }, { "type": "swap_fp_to_mp", - "inputQty": "379231487145739712", - "outputIndex": 1, - "outputQty": "383928809816176745", + "inputQty": "1040718771511270016", + "outputIndex": 0, + "outputQty": "1041759003500096105", "swapFee": "0", - "redemptionFee": "153760954925083", + "redemptionFee": "621015368610462", "mpReserves": [ - "61250870087572460592695121", - "31312999272634620275822222", - "26430360668237010588933079" + "54981183216548556838780291", + "12377687845290847929861443", + "33972950312807332802965257" ], "fpReserves": [ - "19879978848935935055273645", - "6089054055806591919859966" + "2032591434754067871597828", + "4032134371922290783418426" ], - "mAssetSupply": "118963814780257663822928654", - "LPTokenSupply": "25697054186946418896746153" + "mAssetSupply": "101147028358916341408634005", + "LPTokenSupply": "5927866287903637659499244" }, { "type": "mint", "inputIndex": 0, - "inputQty": "120778955086024784", - "outputQty0": "120574353731101104", - "outputQty": "118931320195988756", + "inputQty": "13830841497463654711296", + "outputQty0": "13733184163515381361509", + "outputQty": "13471943139397185448168", "mpReserves": [ - "61250870208351415678719905", - "31312999272634620275822222", - "26430360668237010588933079" + "54995014058046020493491587", + "12377687845290847929861443", + "33972950312807332802965257" ], "fpReserves": [ - "19879978969510288786374749", - "6089054055806591919859966" + "2046324618917583252959337", + "4032134371922290783418426" ], - "mAssetSupply": "118963814900832017554029758", - "LPTokenSupply": "25697054305877739092734909" + "mAssetSupply": "101160761543079856789995514", + "LPTokenSupply": "5941338231043034844947412" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "9881897712584008663040", - "outputQty0": "9899558503403017918674", - "outputQty": "9764646509757029411097", + "inputIndex": 0, + "inputQty": "117366984353187069952", + "outputQty0": "116538128798988180088", + "outputQty": "114318461037653662616", "mpReserves": [ - "61250870208351415678719905", - "31312999272634620275822222", - "26440242565949594597596119" + "54995131425030373680561539", + "12377687845290847929861443", + "33972950312807332802965257" ], "fpReserves": [ - "19889878528013691804293423", - "6089054055806591919859966" + "2046441157046382241139425", + "4032134371922290783418426" ], - "mAssetSupply": "118973714459335420571948432", - "LPTokenSupply": "25706818952387496122146006" + "mAssetSupply": "101160878081208655778175602", + "LPTokenSupply": "5941452549504072498610028" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "150367413468553", - "outputQty0": "150636007985669", - "outputQty": "148582923720670", + "type": "swap_fp_to_mp", + "inputQty": "14464604044072480407552", + "outputIndex": 0, + "outputQty": "14479313086750119429213", + "swapFee": "0", + "redemptionFee": "8631425376271029518", "mpReserves": [ - "61250870208351415678719905", - "31312999272634620275822222", - "26440242566099962011064672" + "54980652111943623561132326", + "12377687845290847929861443", + "33972950312807332802965257" ], "fpReserves": [ - "19889878528164327812279092", - "6089054055806591919859966" + "2032055448085930525275483", + "4046598975966363263825978" ], - "mAssetSupply": "118973714459486056579934101", - "LPTokenSupply": "25706818952536079045866676" + "mAssetSupply": "101146501003673580333341178", + "LPTokenSupply": "5941452549504072498610028" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "19314521565521453056", - "outputQty0": "19330619708500175842", - "outputQty": "19055109551497419442", - "swapFee": "15253723325852587", + "inputQty": "10266522392225265664", + "outputQty0": "10488778094614957503", + "outputQty": "10538480614172377643", + "swapFee": "8231836515238100", "mpReserves": [ - "61250870208351415678719905", - "31313018587156185797275278", - "26440242566099962011064672" + "54980652111943623561132326", + "12377698111813240155127107", + "33972950312807332802965257" ], "fpReserves": [ - "19889897858784036312454934", - "6089035000697040422440524" + "2032065936864025140232986", + "4046588437485749091448335" ], - "mAssetSupply": "118973733790105765080109943", - "LPTokenSupply": "25706818954061451378451934" + "mAssetSupply": "101146511492451674948298681", + "LPTokenSupply": "5941452550327256150133838" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "9595068187936750043136", - "outputQty0": "9721801107729664369269", - "outputQty": "9734394912282683387463", - "swapFee1": "5757040912762050025", - "swapFee2": "3888720443091865747", + "inputQty": "6560921724294912802816", + "outputQty0": "6683702438198403137647", + "outputQty": "6727178702793644749679", + "swapFee1": "3936553034576947681", + "swapFee2": "4010221462919041882", "mpReserves": [ - "61241135813439132995332442", - "31313018587156185797275278", - "26440242566099962011064672" + "54973924933240829916382647", + "12377698111813240155127107", + "33972950312807332802965257" ], "fpReserves": [ - "19880176057676306648085665", - "6089035000697040422440524" + "2025382234425826737095339", + "4046588437485749091448335" ], - "mAssetSupply": "118964015877718478507606421", - "LPTokenSupply": "25697224461577605904613800" + "mAssetSupply": "101139831800234939464202916", + "LPTokenSupply": "5934892022258264695025790" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "876052717014298419789824", - "outputQty0": "887513075230961674324789", - "outputQty": "886371531026173384626645", - "swapFee1": "525631630208579051873", - "swapFee2": "355005230092384669729", + "type": "mint", + "inputIndex": 2, + "inputQty": "83675395986388282245120", + "outputQty0": "83515284000401270511123", + "outputQty": "81920818303786565751661", "mpReserves": [ - "61241135813439132995332442", - "30426647056130012412648633", - "26440242566099962011064672" + "54973924933240829916382647", + "12377698111813240155127107", + "34056625708793721085210377" ], "fpReserves": [ - "18992662982445344973760876", - "6089035000697040422440524" + "2108897518426228007606462", + "4046588437485749091448335" ], - "mAssetSupply": "118076857807717609217951361", - "LPTokenSupply": "24821224307726328342729163" + "mAssetSupply": "101223347084235340734714039", + "LPTokenSupply": "6016812840562051260777451" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "3099581576902127", - "outputQty0": "3139801112330050", - "outputQty": "3143985399037626", - "swapFee1": "1859748946141", - "swapFee2": "1255920444932", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "550786012443642773372928", + "outputQty0": "562207398342278460208745", + "outputQty": "563636035906095968285384", + "swapFee": "440784757842997255610", "mpReserves": [ - "61241135810295147596294816", - "30426647056130012412648633", - "26440242566099962011064672" + "54973924933240829916382647", + "12928484124256882928500035", + "34056625708793721085210377" ], "fpReserves": [ - "18992662979305543861430826", - "6089035000697040422440524" + "2671104916768506467815207", + "3482952401579653123162951" ], - "mAssetSupply": "118076857804579064026066243", - "LPTokenSupply": "24821224304626932740721650" + "mAssetSupply": "101785554482577619194922784", + "LPTokenSupply": "6016856919037835560503012" }, { "type": "swap_fp_to_mp", - "inputQty": "1866348167958684", + "inputQty": "7268970376713325568", "outputIndex": 0, - "outputQty": "1892374917680261", + "outputQty": "7300755835195282381", "swapFee": "0", - "redemptionFee": "755942552824", + "redemptionFee": "4353498660021640", "mpReserves": [ - "61241135808402772678614555", - "30426647056130012412648633", - "26440242566099962011064672" + "54973917632484994721100266", + "12928484124256882928500035", + "34056625708793721085210377" ], "fpReserves": [ - "18992662977415687479369570", - "6089035002563388590399208" + "2671097660937406431747214", + "3482959670550029836488519" ], - "mAssetSupply": "118076857802689963586557811", - "LPTokenSupply": "24821224304626932740721650" + "mAssetSupply": "101785547231100017818876431", + "LPTokenSupply": "6016856919037835560503012" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "944866274761560872189952", - "outputQty0": "943210631964938592276988", - "outputQty": "928353048890694771838509", - "swapFee": "744357994498738847728", + "type": "redeem", + "outputIndex": 0, + "inputQty": "21808982567087685763072", + "outputQty0": "22269714721791470574369", + "outputQty": "22407554770154018670698", + "swapFee1": "13085389540252611457", + "swapFee2": "13361828833074882344", "mpReserves": [ - "62186002083164333550804507", - "30426647056130012412648633", - "26440242566099962011064672" + "54951510077714840702429568", + "12928484124256882928500035", + "34056625708793721085210377" ], "fpReserves": [ - "19935873609380626071646558", - "5160681953672693818560699" + "2648827946215614961172845", + "3482959670550029836488519" ], - "mAssetSupply": "119020068434654902178834799", - "LPTokenSupply": "24821298740426382614606422" + "mAssetSupply": "101763290878207059423184406", + "LPTokenSupply": "5995049245009701900001085" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "40119206968093456", - "outputQty0": "40048029109088719", - "outputQty": "39460795923509333", + "type": "redeem", + "outputIndex": 1, + "inputQty": "557497304552453405933568", + "outputQty0": "568967161200239468873986", + "outputQty": "557074854709367248946242", + "swapFee1": "334498382731472043560", + "swapFee2": "341380296720143681324", "mpReserves": [ - "62186002123283540518897963", - "30426647056130012412648633", - "26440242566099962011064672" + "54951510077714840702429568", + "12371409269547515679553793", + "34056625708793721085210377" ], "fpReserves": [ - "19935873649428655180735277", - "5160681953672693818560699" + "2079860785015375492298859", + "3482959670550029836488519" ], - "mAssetSupply": "119020068474702931287923518", - "LPTokenSupply": "24821298779887178538115755" + "mAssetSupply": "101194665097303540097991744", + "LPTokenSupply": "5437585390295521641271873" }, { "type": "mint", "inputIndex": 1, - "inputQty": "463593471990753807826944", - "outputQty0": "464035864980524917642797", - "outputQty": "457197285802334188905990", + "inputQty": "2418946437818340352", + "outputQty0": "2471401682768909576", + "outputQty": "2421522449634200293", "mpReserves": [ - "62186002123283540518897963", - "30890240528120766220475577", - "26440242566099962011064672" + "54951510077714840702429568", + "12371411688493953497894145", + "34056625708793721085210377" ], "fpReserves": [ - "20399909514409180098378074", - "5160681953672693818560699" + "2079863256417058261208435", + "3482959670550029836488519" ], - "mAssetSupply": "119484104339683456205566315", - "LPTokenSupply": "25278496065689512727021745" + "mAssetSupply": "101194667568705222866901320", + "LPTokenSupply": "5437587811817971275472166" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "14463894198198332293120", - "outputQty0": "14438519558231682526049", - "outputQty": "14157495618596302994020", - "swapFee": "11379708881214294273", + "type": "mint", + "inputIndex": 2, + "inputQty": "246142316557299328", + "outputQty0": "245667590986681428", + "outputQty": "240709387183463647", "mpReserves": [ - "62200466017481738851191083", - "30890240528120766220475577", - "26440242566099962011064672" + "54951510077714840702429568", + "12371411688493953497894145", + "34056625954936037642509705" ], "fpReserves": [ - "20414348033967411780904123", - "5146524458054097515566679" + "2079863502084649247889863", + "3482959670550029836488519" ], - "mAssetSupply": "119498542859241687888092364", - "LPTokenSupply": "25278497203660400848451172" + "mAssetSupply": "101194667814372813853582748", + "LPTokenSupply": "5437588052527358458935813" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2469996573092904697856", - "outputQty0": "2472281516254610552148", - "outputQty": "2424003797665508616218", - "swapFee": "1948485434892604049", + "type": "swap_fp_to_mp", + "inputQty": "5493654373416328757248", + "outputIndex": 2, + "outputQty": "5479964655738540199877", + "swapFee": "0", + "redemptionFee": "3283609932626581208", "mpReserves": [ - "62200466017481738851191083", - "30892710524693859125173433", - "26440242566099962011064672" + "54951510077714840702429568", + "12371411688493953497894145", + "34051145990280299102309828" ], "fpReserves": [ - "20416820315483666391456271", - "5144100454256432006950461" + "2074390818863604945875589", + "3488453324923446165245767" ], - "mAssetSupply": "119501015140757942498644512", - "LPTokenSupply": "25278497398508944337711576" + "mAssetSupply": "101189198414761702178149682", + "LPTokenSupply": "5437588052527358458935813" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "7143930280934713065472", - "outputQty0": "7156937202666076819193", - "outputQty": "7016916978779778293557", - "swapFee": "5640588099043630451", - "mpReserves": [ - "62200466017481738851191083", - "30892710524693859125173433", - "26447386496380896724130144" - ], - "fpReserves": [ - "20423977252686332468275464", - "5137083537277652228656904" - ], - "mAssetSupply": "119508172077960608575463705", - "LPTokenSupply": "25278497962567754242074621" + "type": "swap_fp_to_mp", + "inputQty": "1772707120659443344211968", + "outputIndex": 0, + "hardLimitError": true }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "296440028647185842176", - "outputQty0": "296714306914856957938", - "outputQty": "290900873920667685597", - "swapFee": "233846636991533625", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3484207399789462552576", + "outputQty0": "3553741217380230071837", + "outputQty": "3476212287516539474189", + "swapFee1": "2090524439873677531", + "swapFee2": "2132244730428138043", "mpReserves": [ - "62200466017481738851191083", - "30893006964722506311015609", - "26447386496380896724130144" + "54951510077714840702429568", + "12367935476206436958419956", + "34051145990280299102309828" ], "fpReserves": [ - "20424273966993247325233402", - "5136792636403731560971307" + "2070837077646224715803752", + "3488453324923446165245767" ], - "mAssetSupply": "119508468792267523432421643", - "LPTokenSupply": "25278497985952417941227983" + "mAssetSupply": "101185646805789052376215888", + "LPTokenSupply": "5434104054180012983750990" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10862724673626849280", - "outputQty0": "10872775093565931007", - "outputQty": "10711316949311582069", + "type": "swap_fp_to_mp", + "inputQty": "121408015411212910592", + "outputIndex": 1, + "outputQty": "118301155080883640698", + "swapFee": "0", + "redemptionFee": "72564209146361630", "mpReserves": [ - "62200466017481738851191083", - "30893017827447179937864889", - "26447386496380896724130144" + "54951510077714840702429568", + "12367817175051356074779258", + "34051145990280299102309828" ], "fpReserves": [ - "20424284839768340891164409", - "5136792636403731560971307" + "2070716137297647446419238", + "3488574732938857378156359" ], - "mAssetSupply": "119508479665042616998352650", - "LPTokenSupply": "25278508697269367252810052" + "mAssetSupply": "101185525938004684253193004", + "LPTokenSupply": "5434104054180012983750990" }, { "type": "swap_fp_to_mp", - "inputQty": "9038649382391390404608", - "outputIndex": 2, - "outputQty": "9191164150600556870801", + "inputQty": "29187983762775528", + "outputIndex": 1, + "outputQty": "28441038399663871", "swapFee": "0", - "redemptionFee": "3684634013984215458", + "redemptionFee": "17445323194737", "mpReserves": [ - "62200466017481738851191083", - "30893017827447179937864889", - "26438195332230296167259343" + "54951510077714840702429568", + "12367817146610317675115387", + "34051145990280299102309828" ], "fpReserves": [ - "20415073254733380352517301", - "5145831285786122951375915" + "2070716108222108788523667", + "3488574762126841140931887" ], - "mAssetSupply": "119499271764641670443921000", - "LPTokenSupply": "25278508697269367252810052" + "mAssetSupply": "101185525908946590918492170", + "LPTokenSupply": "5434104054180012983750990" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "143344533225510965084160", - "outputQty0": "145412394864240301745266", - "outputQty": "145609239102707147881272", - "swapFee1": "86006719935306579050", - "swapFee2": "58164957945696120698", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "273895367052709167104", + "outputQty0": "271963394815845116460", + "outputQty": "272796500689188700670", + "swapFee": "213186650753436381", "mpReserves": [ - "62054856778379031703309811", - "30893017827447179937864889", - "26438195332230296167259343" + "54951783973081893411596672", + "12367817146610317675115387", + "34051145990280299102309828" ], "fpReserves": [ - "20269660859869140050772035", - "5145831285786122951375915" + "2070988071616924633640127", + "3488301965626151952231217" ], - "mAssetSupply": "119353917534735375838296432", - "LPTokenSupply": "25135172764715849818383797" + "mAssetSupply": "101185797872341406763608630", + "LPTokenSupply": "5434104075498678059094628" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "37488691641743396831232", - "outputQty0": "37556535933878623883932", - "outputQty": "36826424111114149545750", - "swapFee": "29600620956991538833", + "type": "redeem", + "outputIndex": 2, + "inputQty": "27606357942856769536", + "outputQty0": "28157185741673990651", + "outputQty": "28194665457208454067", + "swapFee1": "16563814765714061", + "swapFee2": "16894311445004394", "mpReserves": [ - "62054856778379031703309811", - "30893017827447179937864889", - "26475684023872039564090575" + "54951783973081893411596672", + "12367817146610317675115387", + "34051117795614841893855761" ], "fpReserves": [ - "20307217395803018674655967", - "5109004861675008801830165" + "2070959914431182959649476", + "3488301965626151952231217" ], - "mAssetSupply": "119391474070669254462180364", - "LPTokenSupply": "25135175724777945517537680" + "mAssetSupply": "101185769732049976534622373", + "LPTokenSupply": "5434076470797116678896498" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "380997982929749700247552", - "outputQty0": "386485336634121976308805", - "outputQty": "385619890489708592132752", - "swapFee1": "228598789757849820148", - "swapFee2": "154594134653648790523", + "type": "swap_fp_to_mp", + "inputQty": "55864478801079104962560", + "outputIndex": 1, + "outputQty": "54419019879818774565650", + "swapFee": "0", + "redemptionFee": "33383029405504958490", "mpReserves": [ - "62054856778379031703309811", - "30893017827447179937864889", - "26090064133382330971957823" + "54951783973081893411596672", + "12313398126730498900549737", + "34051117795614841893855761" ], "fpReserves": [ - "19920732059168896698347162", - "5109004861675008801830165" + "2015321532088674695498600", + "3544166444427231057193777" ], - "mAssetSupply": "119005143328169786134662082", - "LPTokenSupply": "24754200601727171602272142" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "167974399134180646584320", - "hardLimitError": true + "mAssetSupply": "101130164732736873775429987", + "LPTokenSupply": "5434076470797116678896498" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "5219358324303135744", - "outputQty0": "5229176691278254638", - "outputQty": "5129919089447218783", - "swapFee": "4121697402535079", + "type": "mint", + "inputIndex": 1, + "inputQty": "138336329316922136985600", + "outputQty0": "141330519285743743153701", + "outputQty": "138489791769719779607991", "mpReserves": [ - "62054856778379031703309811", - "30893017827447179937864889", - "26090069352740655275093567" + "54951783973081893411596672", + "12451734456047421037535337", + "34051117795614841893855761" ], "fpReserves": [ - "19920737288345587976601800", - "5108999731755919354611382" + "2156652051374418438652301", + "3544166444427231057193777" ], - "mAssetSupply": "119005148557346477412916720", - "LPTokenSupply": "24754200602139341342525649" + "mAssetSupply": "101271495252022617518583688", + "LPTokenSupply": "5572566262566836458504489" }, { - "type": "swap_fp_to_mp", - "inputQty": "12266946484268778", + "type": "redeem", "outputIndex": 2, - "outputQty": "12465845798928759", - "swapFee": "0", - "redemptionFee": "4997717426652", + "inputQty": "31662394997415", + "outputQty0": "32298573968932", + "outputQty": "32340565856181", + "swapFee1": "18997436998", + "swapFee2": "19379144381", "mpReserves": [ - "62054856778379031703309811", - "30893017827447179937864889", - "26090069340274809476164808" + "54951783973081893411596672", + "12451734456047421037535337", + "34051117795582501327999580" ], "fpReserves": [ - "19920737275851294409970707", - "5108999744022865838880160" + "2156652051342119864683369", + "3544166444427231057193777" ], - "mAssetSupply": "119005148544857181563712279", - "LPTokenSupply": "24754200602139341342525649" + "mAssetSupply": "101271495251990338323759137", + "LPTokenSupply": "5572566262535175963250773" }, { - "type": "swap_fp_to_mp", - "inputQty": "443486409015261698981888", - "outputIndex": 0, - "outputQty": "451602872407345755877133", - "swapFee": "0", - "redemptionFee": "180395735983444556909", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1211757115535456009715712", + "outputQty0": "1209268173615174302718364", + "outputQty": "1208850381221636062872826", + "swapFee": "946765000203838973881", "mpReserves": [ - "61603253905971685947432678", - "30893017827447179937864889", - "26090069340274809476164808" + "54951783973081893411596672", + "12451734456047421037535337", + "35262874911117957337715292" ], "fpReserves": [ - "19469747935892683017696067", - "5552486153038127537862048" + "3365920224957294167401733", + "2335316063205594994320951" ], - "mAssetSupply": "118554339600634553615994548", - "LPTokenSupply": "24754200602139341342525649" + "mAssetSupply": "102480763425605512626477501", + "LPTokenSupply": "5572660939035196347148161" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "9372870069669259640832", - "outputQty0": "9356488431746648121992", - "outputQty": "9206692413020689269959", - "swapFee": "7379734491005406256", + "type": "swap_fp_to_mp", + "inputQty": "708263113801504015777792", + "outputIndex": 2, + "outputQty": "709891981129891051111990", + "swapFee": "0", + "redemptionFee": "425288127670662158149", "mpReserves": [ - "61612626776041355207073510", - "30893017827447179937864889", - "26090069340274809476164808" + "54951783973081893411596672", + "12451734456047421037535337", + "34552982929988066286603302" ], "fpReserves": [ - "19479104424324429665818059", - "5543279460625106848592089" + "2657106678839523903819558", + "3043579177007099010098743" ], - "mAssetSupply": "118563696089066300264116540", - "LPTokenSupply": "24754201340112790443066274" + "mAssetSupply": "101772375167615413025053475", + "LPTokenSupply": "5572660939035196347148161" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1362758969458120460337152", - "outputQty0": "1365112463472747776785847", - "outputQty": "1345586250154447262551973", + "inputQty": "80449628914026807296", + "outputQty0": "80286470991823552536", + "outputQty": "78521380244137916534", "mpReserves": [ - "61612626776041355207073510", - "30893017827447179937864889", - "27452828309732929936501960" + "54951783973081893411596672", + "12451734456047421037535337", + "34553063379616980313410598" ], "fpReserves": [ - "20844216887797177442603906", - "5543279460625106848592089" + "2657186965310515727372094", + "3043579177007099010098743" ], - "mAssetSupply": "119928808552539048040902387", - "LPTokenSupply": "26099787590267237705618247" + "mAssetSupply": "101772455454086404848606011", + "LPTokenSupply": "5572739460415440485064695" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "376369403562874175488", - "outputQty0": "381680653889938938768", - "outputQty": "381167078667336954067", - "swapFee1": "225821642137724505", - "swapFee2": "152672261555975575", + "inputQty": "6152208786010374406144", + "outputQty0": "6286704080264066564817", + "outputQty": "6150116557878020333092", + "swapFee1": "3691325271606224643", + "swapFee2": "3772022448158439938", "mpReserves": [ - "61612626776041355207073510", - "30892636660368512600910822", - "27452828309732929936501960" + "54951783973081893411596672", + "12445584339489543017202245", + "34553063379616980313410598" ], "fpReserves": [ - "20843835207143287503665138", - "5543279460625106848592089" + "2650900261230251660807277", + "3043579177007099010098743" ], - "mAssetSupply": "119928427024557419657939194", - "LPTokenSupply": "26099411243445839045215209" + "mAssetSupply": "101766172522028588940481132", + "LPTokenSupply": "5566587620761957271281015" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "248851219570430843027456", - "outputQty0": "249245310127094343263587", - "outputQty": "245620262943521771593943", + "type": "redeem", + "outputIndex": 0, + "inputQty": "218766908193754639761408", + "outputQty0": "223512593168184650659199", + "outputQty": "224941838464237379366105", + "swapFee1": "131260144916252783856", + "swapFee2": "134107555900910790395", "mpReserves": [ - "61612626776041355207073510", - "30892636660368512600910822", - "27701679529303360779529416" + "54726842134617656032230567", + "12445584339489543017202245", + "34553063379616980313410598" ], "fpReserves": [ - "21093080517270381846928725", - "5543279460625106848592089" + "2427387668062067010148078", + "3043579177007099010098743" ], - "mAssetSupply": "120177672334684514001202781", - "LPTokenSupply": "26345031506389360816809152" + "mAssetSupply": "101542794036416305200612328", + "LPTokenSupply": "5347833838582694256797992" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "50691807041731304620032", - "outputQty0": "50740219653997926774640", - "outputQty": "49999986537619934681408", - "mpReserves": [ - "61612626776041355207073510", - "30943328467410243905530854", - "27701679529303360779529416" - ], - "fpReserves": [ - "21143820736924379773703365", - "5543279460625106848592089" - ], - "mAssetSupply": "120228412554338511927977421", - "LPTokenSupply": "26395031492926980751490560" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "21860093247837288", - "outputQty0": "22170584034443419", - "outputQty": "22127088177642542", - "swapFee1": "13116055948702", - "swapFee2": "8868233613777", + "inputIndex": 2, + "inputQty": "112661437748824913215488", + "outputQty0": "112429116161190751371256", + "outputQty": "109982579568133082000012", "mpReserves": [ - "61612626776041355207073510", - "30943328467410243905530854", - "27701679507176272601886874" + "54726842134617656032230567", + "12445584339489543017202245", + "34665724817365805226626086" ], "fpReserves": [ - "21143820714753795739259946", - "5543279460625106848592089" + "2539816784223257761519334", + "3043579177007099010098743" ], - "mAssetSupply": "120228412532176796127147779", - "LPTokenSupply": "26395031471068199109248142" + "mAssetSupply": "101655223152577495951983584", + "LPTokenSupply": "5457816418150827338798004" }, { "type": "swap_fp_to_mp", - "inputQty": "45349628325121878917120", + "inputQty": "358587593156705877229568", "outputIndex": 1, - "outputQty": "46089130587200228399325", + "outputQty": "349847653577233956008933", "swapFee": "0", - "redemptionFee": "18460637945757431020", + "redemptionFee": "214687532008804490008", "mpReserves": [ - "61612626776041355207073510", - "30897239336823043677131529", - "27701679507176272601886874" + "54726842134617656032230567", + "12095736685912309061193312", + "34665724817365805226626086" ], "fpReserves": [ - "21097669119889402161708383", - "5588629088950228727509209" + "2182004230875250278171418", + "3402166770163804887328311" ], - "mAssetSupply": "120182279397950348307027236", - "LPTokenSupply": "26395031471068199109248142" + "mAssetSupply": "101297625286761497273125676", + "LPTokenSupply": "5457816418150827338798004" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "12074287140483999744", - "outputQty0": "12244981849562831102", - "outputQty": "12260410434734831170", - "swapFee1": "7244572284290399", - "swapFee2": "4897992739825132", + "type": "mint", + "inputIndex": 0, + "inputQty": "50503508946146861056", + "outputQty0": "50143721889128351185", + "outputQty": "49104352591655745897", "mpReserves": [ - "61612614515630920472242340", - "30897239336823043677131529", - "27701679507176272601886874" + "54726892638126602179091623", + "12095736685912309061193312", + "34665724817365805226626086" ], "fpReserves": [ - "21097656874907552598877281", - "5588629088950228727509209" + "2182054374597139406522603", + "3402166770163804887328311" ], - "mAssetSupply": "120182267157866491484021266", - "LPTokenSupply": "26395019397505515853677437" + "mAssetSupply": "101297675430483386401476861", + "LPTokenSupply": "5457865522503418994543901" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "14986944266849056980992", - "outputQty0": "15198780734923883802807", - "outputQty": "15217925885235773627287", - "swapFee1": "8992166560109434188", - "swapFee2": "6079512293969553521", + "type": "swap_fp_to_mp", + "inputQty": "311596098543878668288000", + "outputIndex": 2, + "outputQty": "310755930032733399676247", + "swapFee": "0", + "redemptionFee": "186160668286875890502", "mpReserves": [ - "61597396589745684698615053", - "30897239336823043677131529", - "27701679507176272601886874" + "54726892638126602179091623", + "12095736685912309061193312", + "34354968887333071826949839" ], "fpReserves": [ - "21082458094172628715074474", - "5588629088950228727509209" + "1871786594119012922352149", + "3713762868707683555616311" ], - "mAssetSupply": "120167074456643861569771980", - "LPTokenSupply": "26380033352455322807639863" + "mAssetSupply": "100987593810673546793196909", + "LPTokenSupply": "5457865522503418994543901" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "18103699662529282179072", - "outputQty0": "18359504053972054297573", - "outputQty": "18334593330051037336802", - "swapFee1": "10862219797517569307", - "swapFee2": "7343801621588821719", + "type": "mint", + "inputIndex": 1, + "inputQty": "331456967953191010304", + "outputQty0": "338974607796112463667", + "outputQty": "332435075937993106640", "mpReserves": [ - "61597396589745684698615053", - "30878904743492992639794727", - "27701679507176272601886874" + "54726892638126602179091623", + "12096068142880262252203616", + "34354968887333071826949839" ], "fpReserves": [ - "21064098590118656660776901", - "5588629088950228727509209" + "1872125568726809034815816", + "3713762868707683555616311" ], - "mAssetSupply": "120148722296391511104296126", - "LPTokenSupply": "26361930739014773277217721" + "mAssetSupply": "100987932785281342905660576", + "LPTokenSupply": "5458197957579356987650541" }, { - "type": "swap_fp_to_mp", - "inputQty": "612292432397817479168", - "outputIndex": 0, - "outputQty": "623778301674434390152", - "swapFee": "0", - "redemptionFee": "249197314196634092", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "32494210481317956", + "outputQty0": "33231177909890608", + "outputQty": "33387230100782637", + "swapFee": "26072045749098", "mpReserves": [ - "61596772811444010264224901", - "30878904743492992639794727", - "27701679507176272601886874" + "54726892638126602179091623", + "12096068175374472733521572", + "34354968887333071826949839" ], "fpReserves": [ - "21063475596833165075545638", - "5589241381382626544988377" + "1872125601957986944706424", + "3713762835320453454833674" ], - "mAssetSupply": "120148099552303333715698955", - "LPTokenSupply": "26361930739014773277217721" + "mAssetSupply": "100987932818512520815551184", + "LPTokenSupply": "5458197957581964192225450" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "591178359475521108049920", - "hardLimitError": true - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "19472066616625381507072", - "outputQty0": "19747083334923621615254", - "outputQty": "19771957026121781920077", - "swapFee1": "11683239969975228904", - "swapFee2": "7898833333969448646", + "inputQty": "9735557843069663232", + "outputQty0": "9665968825531699986", + "outputQty": "9711359385186451986", + "swapFee": "7583588440084451", "mpReserves": [ - "61577000854417888482304824", - "30878904743492992639794727", - "27701679507176272601886874" + "54726902373684445248754855", + "12096068175374472733521572", + "34354968887333071826949839" ], "fpReserves": [ - "21043728513498241453930384", - "5589241381382626544988377" + "1872135267926812476406410", + "3713753123961068268381688" ], - "mAssetSupply": "120128360367801744063532347", - "LPTokenSupply": "26342459840722144893233539" + "mAssetSupply": "100987942484481346347251170", + "LPTokenSupply": "5458197958340323036233895" }, { - "type": "swap_fp_to_mp", - "inputQty": "193866208891839453331456", - "outputIndex": 1, - "outputQty": "196854051932718341758389", - "swapFee": "0", - "redemptionFee": "78849601970888153389", + "type": "mint", + "inputIndex": 2, + "inputQty": "103662894830591642959872", + "outputQty0": "103440762208432582091217", + "outputQty": "101425596946962232423351", "mpReserves": [ - "61577000854417888482304824", - "30682050691560274298036338", - "27701679507176272601886874" + "54726902373684445248754855", + "12096068175374472733521572", + "34458631782163663469909711" ], "fpReserves": [ - "20846604508571021070456936", - "5783107590274465998319833" + "1975576030135245058497627", + "3713753123961068268381688" ], - "mAssetSupply": "119931315212476494568212288", - "LPTokenSupply": "26342459840722144893233539" + "mAssetSupply": "101091383246689778929342387", + "LPTokenSupply": "5559623555287285268657246" }, { - "type": "swap_fp_to_mp", - "inputQty": "1562111279282442993664", - "outputIndex": 2, - "outputQty": "1584291237939194110237", - "swapFee": "0", - "redemptionFee": "634953578255175739", + "type": "redeem", + "outputIndex": 0, + "inputQty": "2906237264242463108759552", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "47002358909686056", + "outputQty0": "46666770329816858", + "outputQty": "46859134387636645", + "swapFee": "36599395595881", "mpReserves": [ - "61577000854417888482304824", - "30682050691560274298036338", - "27700095215938333407776637" + "54726902420686804158440911", + "12096068175374472733521572", + "34458631782163663469909711" ], "fpReserves": [ - "20845017124625383131108314", - "5784669701553748441313497" + "1975576076802015388314485", + "3713753077101933880745043" ], - "mAssetSupply": "119929728463484434884039405", - "LPTokenSupply": "26342459840722144893233539" + "mAssetSupply": "101091383293356549259159245", + "LPTokenSupply": "5559623555290945208216834" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "184642387176966747848704", - "outputQty0": "187193964607339945092252", - "outputQty": "186933072693021142182170", - "swapFee1": "110785432306180048709", - "swapFee2": "74877585842935978036", + "inputQty": "7004993450316406784", + "outputQty0": "7141195007012794798", + "outputQty": "6978359555063470203", + "swapFee1": "4202996070189844", + "swapFee2": "4284717004207676", "mpReserves": [ - "61577000854417888482304824", - "30495117618867253155854168", - "27700095215938333407776637" + "54726902420686804158440911", + "12096061197014917670051369", + "34458631782163663469909711" ], "fpReserves": [ - "20657823160018043186016062", - "5784669701553748441313497" + "1975568935607008375519687", + "3713753077101933880745043" ], - "mAssetSupply": "119742609376462937874925189", - "LPTokenSupply": "26157828532088408763389705" + "mAssetSupply": "101091376156446259250572123", + "LPTokenSupply": "5559616550717794498829034" }, { "type": "mint", "inputIndex": 2, - "inputQty": "438924637374229147287552", - "outputQty0": "439586018282216327710379", - "outputQty": "433316497062784758093930", + "inputQty": "9342523549191799570432", + "outputQty0": "9322366287509796884783", + "outputQty": "9138933724431463656247", "mpReserves": [ - "61577000854417888482304824", - "30495117618867253155854168", - "28139019853312562555064189" + "54726902420686804158440911", + "12096061197014917670051369", + "34467974305712855269480143" ], "fpReserves": [ - "21097409178300259513726441", - "5784669701553748441313497" + "1984891301894518172404470", + "3713753077101933880745043" ], - "mAssetSupply": "120182195394745154202635568", - "LPTokenSupply": "26591145029151193521483635" + "mAssetSupply": "101100698522733769047456906", + "LPTokenSupply": "5568755484442225962485281" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1241092561058875047936", - "outputQty0": "1258374101352378148996", - "outputQty": "1259950788263819336838", - "swapFee1": "744655536635325028", - "swapFee2": "503349640540951259", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1162725624768902201344", + "outputQty0": "1154424686825263202808", + "outputQty": "1159122224519681119861", + "swapFee": "905351698824005195", "mpReserves": [ - "61575740903629624662967986", - "30495117618867253155854168", - "28139019853312562555064189" + "54728065146311573060642255", + "12096061197014917670051369", + "34467974305712855269480143" ], "fpReserves": [ - "21096150804198907135577445", - "5784669701553748441313497" + "1986045726581343435607278", + "3712593954877414199625182" ], - "mAssetSupply": "120180937523993442365437831", - "LPTokenSupply": "26589904011055688309968201" + "mAssetSupply": "101101852947420594310659714", + "LPTokenSupply": "5568755574977395844885800" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "32140539678718148608", - "outputQty0": "32588073972534915010", - "outputQty": "32527187200488191724", - "swapFee1": "19284323807230889", - "swapFee2": "13035229589013966", + "type": "swap_fp_to_mp", + "inputQty": "252034353325447749566464", + "outputIndex": 0, + "outputQty": "252181015481989917615761", + "swapFee": "0", + "redemptionFee": "150322008510494646950", "mpReserves": [ - "61575740903629624662967986", - "30495117618867253155854168", - "28138987326125362066872465" + "54475884130829583143026494", + "12096061197014917670051369", + "34467974305712855269480143" ], "fpReserves": [ - "21096118216124934600662435", - "5784669701553748441313497" + "1735509045730519024023200", + "3964628308202861949191646" ], - "mAssetSupply": "120180904948954699419536787", - "LPTokenSupply": "26589871872444441972542681" + "mAssetSupply": "100851466588578280393722586", + "LPTokenSupply": "5568755574977395844885800" }, { - "type": "swap_fp_to_mp", - "inputQty": "84219834422544859922432", - "outputIndex": 2, - "outputQty": "85427905266215742218264", - "swapFee": "0", - "redemptionFee": "34235360773306481430", + "type": "redeem", + "outputIndex": 1, + "inputQty": "12813423842115517939712", + "outputQty0": "13042031768651448045946", + "outputQty": "12746156109444948098632", + "swapFee1": "7688054305269310763", + "swapFee2": "7825219061190868827", "mpReserves": [ - "61575740903629624662967986", - "30495117618867253155854168", - "28053559420859146324654201" + "54475884130829583143026494", + "12083315040905472721952737", + "34467974305712855269480143" ], "fpReserves": [ - "21010529814191668397085582", - "5868889535976293301235929" + "1722467013961867575977254", + "3964628308202861949191646" ], - "mAssetSupply": "120095350782382206522441364", - "LPTokenSupply": "26589871872444441972542681" + "mAssetSupply": "100838432382028690136545467", + "LPTokenSupply": "5555942919940710853877164" }, { "type": "swap_fp_to_mp", - "inputQty": "146486485779556450304", - "outputIndex": 1, - "outputQty": "148617430159435944385", + "inputQty": "1591875938657960722432", + "outputIndex": 2, + "outputQty": "1582795192671200335983", "swapFee": "0", - "redemptionFee": "59531603268759602", + "redemptionFee": "948172835673627845", "mpReserves": [ - "61575740903629624662967986", - "30494969001437093719909783", - "28053559420859146324654201" + "54475884130829583143026494", + "12083315040905472721952737", + "34466391510520184069144160" ], "fpReserves": [ - "21010380985183496498080535", - "5869036022462072857686233" + "1720886725902411529567280", + "3966220184141519909914078" ], - "mAssetSupply": "120095202012905637892195919", - "LPTokenSupply": "26589871872444441972542681" + "mAssetSupply": "100836853042142069763763338", + "LPTokenSupply": "5555942919940710853877164" }, { - "type": "swap_fp_to_mp", - "inputQty": "70234490339411659587584", - "outputIndex": 0, - "outputQty": "71432457343582543303142", - "swapFee": "0", - "redemptionFee": "28537148771635998023", + "type": "mint", + "inputIndex": 0, + "inputQty": "814805458181443289088", + "outputQty0": "809019088776860142705", + "outputQty": "794396420226733384058", "mpReserves": [ - "61504308446286042119664844", - "30494969001437093719909783", - "28053559420859146324654201" + "54476698936287764586315582", + "12083315040905472721952737", + "34466391510520184069144160" ], "fpReserves": [ - "20939038113254406503021015", - "5939270512801484517273817" + "1721695744991188389709985", + "3966220184141519909914078" ], - "mAssetSupply": "120023887678125319533134422", - "LPTokenSupply": "26589871872444441972542681" + "mAssetSupply": "100837662061230846623906043", + "LPTokenSupply": "5556737316360937587261222" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "436543927738409811968", - "outputQty0": "435822741215906322558", - "outputQty": "428795577753298515330", - "swapFee": "343733749377634091", + "type": "swap_fp_to_mp", + "inputQty": "78168805105747", + "outputIndex": 0, + "outputQty": "78107715956171", + "swapFee": "0", + "redemptionFee": "46559751172", "mpReserves": [ - "61504744990213780529476812", - "30494969001437093719909783", - "28053559420859146324654201" + "54476698936209656870359411", + "12083315040905472721952737", + "34466391510520184069144160" ], "fpReserves": [ - "20939473935995622409343573", - "5938841717223731218758487" + "1721695744913588804422396", + "3966220184219688715019825" ], - "mAssetSupply": "120024323500866535439456980", - "LPTokenSupply": "26589871906817816910306090" + "mAssetSupply": "100837662061153293598369626", + "LPTokenSupply": "5556737316360937587261222" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2892401436768343687168", - "outputQty0": "2896685065436502756082", - "outputQty": "2855769722338435313120", + "inputIndex": 0, + "inputQty": "5912977332110994964480", + "outputQty0": "5870982524053373537898", + "outputQty": "5764762133443161393824", "mpReserves": [ - "61504744990213780529476812", - "30494969001437093719909783", - "28056451822295914668341369" + "54482611913541767865323891", + "12083315040905472721952737", + "34466391510520184069144160" ], "fpReserves": [ - "20942370621061058912099655", - "5938841717223731218758487" + "1727566727437642177960294", + "3966220184219688715019825" ], - "mAssetSupply": "120027220185931971942213062", - "LPTokenSupply": "26592727676540155345619210" + "mAssetSupply": "100843533043677346971907524", + "LPTokenSupply": "5562502078494380748655046" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "95550573455855421751296", - "outputQty0": "96860110810897730003790", - "outputQty": "96677455285856960707388", - "swapFee1": "57330344073513253050", - "swapFee2": "38744044324359092001", + "inputQty": "276071436485744438280192", + "outputQty0": "280742683639502851769513", + "outputQty": "281177560452640902463118", + "swapFee1": "165642861891446662968", + "swapFee2": "168445610183701711061", "mpReserves": [ - "61504744990213780529476812", - "30494969001437093719909783", - "27959774367010057707633981" + "54482611913541767865323891", + "12083315040905472721952737", + "34185213950067543166681042" ], "fpReserves": [ - "20845510510250161182095865", - "5938841717223731218758487" + "1446824043798139326190781", + "3966220184219688715019825" ], - "mAssetSupply": "119930398819165398571301273", - "LPTokenSupply": "26497182836118707275193219" + "mAssetSupply": "100562958805648027821849072", + "LPTokenSupply": "5286447206294825455041150" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3125440795223610359808", - "outputQty0": "3130116939917329793767", - "outputQty": "3079982121363775634219", - "swapFee": "2468784310819521755", + "inputIndex": 1, + "inputQty": "193935355148619489476608", + "outputQty0": "198232263905343881859298", + "outputQty": "199770418570594787025416", + "swapFee": "155892045296330505474", "mpReserves": [ - "61504744990213780529476812", - "30494969001437093719909783", - "27962899807805281317993789" + "54482611913541767865323891", + "12277250396054092211429345", + "34185213950067543166681042" ], "fpReserves": [ - "20848640627190078511889632", - "5935761735102367443124268" + "1645056307703483208050079", + "3766449765649093927994409" ], - "mAssetSupply": "119933528936105315901095040", - "LPTokenSupply": "26497183082997138357145394" + "mAssetSupply": "100761191069553371703708370", + "LPTokenSupply": "5286462795499355088091697" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "182312313551070429184", - "outputQty0": "182010276902616099054", - "outputQty": "179093365019456931598", - "swapFee": "143554537950536985", + "type": "redeem", + "outputIndex": 1, + "inputQty": "39508644207004259188736", + "outputQty0": "40211672150270122224555", + "outputQty": "39327359114087230274464", + "swapFee1": "23705186524202555513", + "swapFee2": "24127003290162073334", "mpReserves": [ - "61504927302527331599905996", - "30494969001437093719909783", - "27962899807805281317993789" + "54482611913541767865323891", + "12237923036940004981154881", + "34185213950067543166681042" ], "fpReserves": [ - "20848822637466981127988686", - "5935582641737347986192670" + "1604844635553213085825524", + "3766449765649093927994409" ], - "mAssetSupply": "119933710946382218517194094", - "LPTokenSupply": "26497183097352592152199092" + "mAssetSupply": "100721003524406391743557149", + "LPTokenSupply": "5246956521811003249158512" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "254975751098796949372928", - "outputQty0": "258458833710051512846577", - "outputQty": "257964106819312872229917", - "swapFee1": "152985450659278169623", - "swapFee2": "103383533484020605138", + "type": "mint", + "inputIndex": 1, + "inputQty": "56755164965469765500928", + "outputQty0": "57994753914612386586956", + "outputQty": "56943499518734272582587", "mpReserves": [ - "61504927302527331599905996", - "30494969001437093719909783", - "27704935700985968445763872" + "54482611913541767865323891", + "12294678201905474746655809", + "34185213950067543166681042" ], "fpReserves": [ - "20590363803756929615142109", - "5935582641737347986192670" + "1662839389467825472412480", + "3766449765649093927994409" ], - "mAssetSupply": "119675355496205651024952655", - "LPTokenSupply": "26242222644798861130643126" + "mAssetSupply": "100778998278321004130144105", + "LPTokenSupply": "5303900021329737521741099" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3227433212334182", - "outputQty0": "3230674181071514", - "outputQty": "3185324185493101", + "inputQty": "30216347487217295294464", + "outputQty0": "30871575010985936250279", + "outputQty": "30304460254126177852496", "mpReserves": [ - "61504927302527331599905996", - "30494969004664526932243965", - "27704935700985968445763872" + "54482611913541767865323891", + "12324894549392692041950273", + "34185213950067543166681042" ], "fpReserves": [ - "20590363806987603796213623", - "5935582641737347986192670" + "1693710964478811408662759", + "3766449765649093927994409" ], - "mAssetSupply": "119675355499436325206024169", - "LPTokenSupply": "26242222647984185316136227" + "mAssetSupply": "100809869853331990066394384", + "LPTokenSupply": "5334204481583863699593595" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "82296429713740173148160", - "outputQty0": "82422468135707219360572", - "outputQty": "81264528131020044661098", + "inputQty": "2793458976804196319232", + "outputQty0": "2787823946951598289038", + "outputQty": "2804678616305167573123", + "swapFee": "2189093591228789790", "mpReserves": [ - "61504927302527331599905996", - "30494969004664526932243965", - "27787232130699708618912032" + "54482611913541767865323891", + "12324894549392692041950273", + "34188007409044347363000274" ], "fpReserves": [ - "20672786275123311015574195", - "5935582641737347986192670" + "1696498788425763006951797", + "3763645087032788760421286" ], - "mAssetSupply": "119757777967572032425384741", - "LPTokenSupply": "26323487176115205360797325" + "mAssetSupply": "100812657677278941664683422", + "LPTokenSupply": "5334204700493222822472574" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "774983594875562280091648", - "outputQty0": "785476353056703102576613", - "outputQty": "784331137106942766635236", - "swapFee1": "464990156925337368054", - "swapFee2": "314190541222681241030", + "outputIndex": 2, + "inputQty": "97541611355047569915904", + "outputQty0": "99290597967906809442611", + "outputQty": "99430345224858639460914", + "swapFee1": "58524966813028541949", + "swapFee2": "59574358780744085665", "mpReserves": [ - "61504927302527331599905996", - "29710637867557584165608729", - "27787232130699708618912032" + "54482611913541767865323891", + "12324894549392692041950273", + "34088577063819488723539360" ], "fpReserves": [ - "19887309922066607912997582", - "5935582641737347986192670" + "1597208190457856197509186", + "3763645087032788760421286" ], - "mAssetSupply": "118972615805056552004049158", - "LPTokenSupply": "25548550080255335614442482" + "mAssetSupply": "100713426653669815599326476", + "LPTokenSupply": "5236668941634856555410864" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "281607279395710238720", - "outputQty0": "282026559321593191190", - "outputQty": "278118629451769664637", - "mpReserves": [ - "61504927302527331599905996", - "29710637867557584165608729", - "27787513737979104329150752" - ], - "fpReserves": [ - "19887591948625929506188772", - "5935582641737347986192670" - ], - "mAssetSupply": "118972897831615873597240348", - "LPTokenSupply": "25548828198884787384107119" + "type": "redeem", + "outputIndex": 2, + "inputQty": "1583984529425980394045440", + "hardLimitError": true }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "19625100330493731143680", - "outputQty0": "19654287685256634440817", - "outputQty": "19361426077619284358097", - "swapFee": "15505512864079197324", + "type": "swap_fp_to_mp", + "inputQty": "544892349974143", + "outputIndex": 1, + "outputQty": "529008163855445", + "swapFee": "0", + "redemptionFee": "324453748094", "mpReserves": [ - "61504927302527331599905996", - "29710637867557584165608729", - "27807138838309598060294432" + "54482611913541767865323891", + "12324894548863683878094828", + "34088577063819488723539360" ], "fpReserves": [ - "19907246236311186140629589", - "5916221215659728701834573" + "1597208189917099950685723", + "3763645087577681110395429" ], - "mAssetSupply": "118992552119301130231681165", - "LPTokenSupply": "25548829749436073792026851" + "mAssetSupply": "100713426653129383806251107", + "LPTokenSupply": "5236668941634856555410864" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3833757766923130880", - "outputQty0": "3838025356699472151", - "outputQty": "3784749860169487312", - "mpReserves": [ - "61504927302527331599905996", - "29710641701315351088739609", - "27807138838309598060294432" - ], - "fpReserves": [ - "19907250074336542840101740", - "5916221215659728701834573" - ], - "mAssetSupply": "118992555957326486931153316", - "LPTokenSupply": "25548833534185933961514163" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "557677829534887771635712", - "outputIndex": 0, - "outputQty": "565637960678696974776284", - "swapFee": "0", - "redemptionFee": "225963936224283520081", + "inputQty": "52888273092177580523520", + "outputQty0": "54025408094571664149856", + "outputQty": "53048134178251713143241", "mpReserves": [ - "60939289341848634625129712", - "29710641701315351088739609", - "27807138838309598060294432" + "54482611913541767865323891", + "12377782821955861458618348", + "34088577063819488723539360" ], "fpReserves": [ - "19342340233775834039897478", - "6473899045194616473470285" + "1651233598011671614835579", + "3763645087577681110395429" ], - "mAssetSupply": "118427872080702002414469135", - "LPTokenSupply": "25548833534185933961514163" + "mAssetSupply": "100767452061223955470400963", + "LPTokenSupply": "5289717075813108268554105" }, { - "type": "swap_fp_to_mp", - "inputQty": "209862468127001411584", - "outputIndex": 2, - "outputQty": "211921118766301423545", - "swapFee": "0", - "redemptionFee": "84925869299213939", + "type": "mint", + "inputIndex": 1, + "inputQty": "5008155390621916160", + "outputQty0": "5115366761140880699", + "outputQty": "5022051783077478341", "mpReserves": [ - "60939289341848634625129712", - "29710641701315351088739609", - "27806926917190831758870887" + "54482611913541767865323891", + "12377787830111252080534508", + "34088577063819488723539360" ], "fpReserves": [ - "19342127919102586005049024", - "6474108907662743474881869" + "1651238713378432755716278", + "3763645087577681110395429" ], - "mAssetSupply": "118427659850954623678834620", - "LPTokenSupply": "25548833534185933961514163" + "mAssetSupply": "100767457176590716611281662", + "LPTokenSupply": "5289722097864891346032446" }, { - "type": "swap_fp_to_mp", - "inputQty": "8917792015079835697152", - "outputIndex": 0, - "outputQty": "9033333177794165098141", - "swapFee": "0", - "redemptionFee": "3608729294140390649", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "10051587739894502", + "outputQty0": "10266765578735132", + "outputQty": "10332326700832718", + "swapFee": "8063582542514", "mpReserves": [ - "60930256008670840460031571", - "29710641701315351088739609", - "27806926917190831758870887" + "54482611913541767865323891", + "12377787840162839820429010", + "34088577063819488723539360" ], "fpReserves": [ - "19333106095867235028425444", - "6483026699677823310579021" + "1651238723645198334451410", + "3763645077245354409562711" ], - "mAssetSupply": "118418641636448566842601689", - "LPTokenSupply": "25548833534185933961514163" + "mAssetSupply": "100767457186857482190016794", + "LPTokenSupply": "5289722097865697704286697" }, { - "type": "swap_fp_to_mp", - "inputQty": "149990855767049792", - "outputIndex": 1, - "outputQty": "151512374500629241", - "swapFee": "0", - "redemptionFee": "60695108206796", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "27915190914298392084480", + "outputQty0": "27860040781093807297314", + "outputQty": "28033474290651570900327", + "swapFee": "21879773320271166639", "mpReserves": [ - "60930256008670840460031571", - "29710641549802976588110368", - "27806926917190831758870887" + "54482611913541767865323891", + "12377787840162839820429010", + "34116492254733787115623840" ], "fpReserves": [ - "19333105944129464511435261", - "6483026849668679077628813" + "1679098764426292141748724", + "3735611602954702838662384" ], - "mAssetSupply": "118418641484771491433818302", - "LPTokenSupply": "25548833534185933961514163" + "mAssetSupply": "100795317227638575997314108", + "LPTokenSupply": "5289724285843029731403360" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "144469905936709970821120", - "outputQty0": "144227667484947952051951", - "outputQty": "142410101021391900274953", - "swapFee": "113852308577900590017", + "type": "mint", + "inputIndex": 1, + "inputQty": "57875857794904998543360", + "outputQty0": "59109562736928352834243", + "outputQty": "58009600249934177036524", "mpReserves": [ - "61074725914607550430852691", - "29710641549802976588110368", - "27806926917190831758870887" + "54482611913541767865323891", + "12435663697957744818972370", + "34116492254733787115623840" ], "fpReserves": [ - "19477333611614412463487212", - "6340616748647287177353860" + "1738208327163220494582967", + "3735611602954702838662384" ], - "mAssetSupply": "118562869152256439385870253", - "LPTokenSupply": "25548844919416791751573164" + "mAssetSupply": "100854426790375504350148351", + "LPTokenSupply": "5347733886092963908439884" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "2968715408756566392832", - "outputQty0": "2973058954394945803475", - "outputQty": "2934667405092756982755", - "swapFee": "2346586910982921937", + "inputQty": "7133902849448955871232", + "outputQty0": "7119928772976899152187", + "outputQty": "7159752274280033537582", + "swapFee": "5589034620637783734", "mpReserves": [ - "61074725914607550430852691", - "29710641549802976588110368", - "27809895632599588325263719" + "54482611913541767865323891", + "12435663697957744818972370", + "34123626157583236071495072" ], "fpReserves": [ - "19480306670568807409290687", - "6337682081242194420371105" + "1745328255936197393735154", + "3728451850680422805124802" ], - "mAssetSupply": "118565842211210834331673728", - "LPTokenSupply": "25548845154075482849865357" + "mAssetSupply": "100861546719148481249300538", + "LPTokenSupply": "5347734444996425972218257" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "791569084310940351987712", - "outputQty0": "792393139905690006317322", - "outputQty": "780623316076523838642581", - "swapFee": "625354673840469339705", + "inputQty": "442337364201333120", + "outputQty0": "451722961737727597", + "outputQty": "454232947296766912", + "swapFee": "354583603997132", "mpReserves": [ - "61074725914607550430852691", - "30502210634113916940098080", - "27809895632599588325263719" + "54482611913541767865323891", + "12435664140295109020305490", + "34123626157583236071495072" ], "fpReserves": [ - "20272699810474497415608009", - "5557058765165670581728524" + "1745328707659159131462751", + "3728451396447475508357890" ], - "mAssetSupply": "119358235351116524337991050", - "LPTokenSupply": "25548907689542866896799327" + "mAssetSupply": "100861547170871442987028135", + "LPTokenSupply": "5347734445031884332617970" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "40896401717340", - "outputQty0": "41468025884609", - "outputQty": "41389396262751", - "swapFee1": "24537841030", - "swapFee2": "16587210353", + "inputQty": "560670326174739726336", + "outputQty0": "571070642416711598803", + "outputQty": "571848639469750714556", + "swapFee1": "336402195704843835", + "swapFee2": "342642385450026959", "mpReserves": [ - "61074725914607550430852691", - "30502210634113916940098080", - "27809895632558198929000968" + "54482611913541767865323891", + "12435664140295109020305490", + "34123054308943766320780516" ], "fpReserves": [ - "20272699810433029389723400", - "5557058765165670581728524" + "1744757637016742419863948", + "3728451396447475508357890" ], - "mAssetSupply": "119358235351075072899316794", - "LPTokenSupply": "25548907689501972948866090" + "mAssetSupply": "100860976442871411725456291", + "LPTokenSupply": "5347173808345929163376017" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1332421941692051341967360", - "outputQty0": "1350769894609364519699792", - "outputQty": "1348774652233225129743684", - "swapFee1": "799453165015230805180", - "swapFee2": "540307957843745807879", + "type": "mint", + "inputIndex": 2, + "inputQty": "16285081743572366000128", + "outputQty0": "16253134996709345697077", + "outputQty": "15946971247777461741537", "mpReserves": [ - "61074725914607550430852691", - "29153435981880691810354396", - "27809895632558198929000968" + "54482611913541767865323891", + "12435664140295109020305490", + "34139339390687338686780644" ], "fpReserves": [ - "18921929915823664870023608", - "5557058765165670581728524" + "1761010772013451765561025", + "3728451396447475508357890" ], - "mAssetSupply": "118008005764423552125424881", - "LPTokenSupply": "24216565693126423129979248" + "mAssetSupply": "100877229577868121071153368", + "LPTokenSupply": "5363120779593706625117554" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "117714916261091409395712", + "outputQty0": "120189472880146258347401", + "outputQty": "120775237227734753692621", + "swapFee": "94312101610060589992", + "mpReserves": [ + "54482611913541767865323891", + "12553379056556200429701202", + "34139339390687338686780644" + ], + "fpReserves": [ + "1881200244893598023908426", + "3607676159219740754665269" + ], + "mAssetSupply": "100997419050748267329500769", + "LPTokenSupply": "5363130210803867631176553" }, { "type": "swap_fp_to_mp", - "inputQty": "277573470401009", - "outputIndex": 0, - "outputQty": "282012389566210", + "inputQty": "823322134429704257536", + "outputIndex": 2, + "outputQty": "820197358892574525551", "swapFee": "0", - "redemptionFee": "112657616725", + "redemptionFee": "491468042920438546", "mpReserves": [ - "61074725914325538041286481", - "29153435981880691810354396", - "27809895632558198929000968" + "54482611913541767865323891", + "12553379056556200429701202", + "34138519193328446112255093" ], "fpReserves": [ - "18921929915542020828208914", - "5557058765443244052129533" + "1880381131488730626330370", + "3608499481354170458922805" ], - "mAssetSupply": "118008005764142020741226912", - "LPTokenSupply": "24216565693126423129979248" + "mAssetSupply": "100996600428811442852361259", + "LPTokenSupply": "5363130210803867631176553" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2854082373516264448", - "outputQty0": "2849214399460082444", - "outputQty": "2809317318533871893", + "inputIndex": 2, + "inputQty": "1039861842142812300115968", + "outputQty0": "1037727145023159600996242", + "outputQty": "1016036350106642894197106", "mpReserves": [ - "61074728768407911557550929", - "29153435981880691810354396", - "27809895632558198929000968" + "54482611913541767865323891", + "12553379056556200429701202", + "35178381035471258412371061" ], "fpReserves": [ - "18921932764756420288291358", - "5557058765443244052129533" + "2918108276511890227326612", + "3608499481354170458922805" ], - "mAssetSupply": "118008008613356420201309356", - "LPTokenSupply": "24216568502443741663851141" + "mAssetSupply": "102034327573834602453357501", + "LPTokenSupply": "6379166560910510525373659" }, { - "type": "swap_fp_to_mp", - "inputQty": "32206400553294529298432", + "type": "redeem", "outputIndex": 0, - "outputQty": "32718355989567321485114", - "swapFee": "0", - "redemptionFee": "13070258347745442173", + "inputQty": "75898921105504432291840", + "outputQty0": "77541091590678575843081", + "outputQty": "78023061060017289448335", + "swapFee1": "45539352663302659375", + "swapFee2": "46524654954407145505", "mpReserves": [ - "61042010412418344236065815", - "29153435981880691810354396", - "27809895632558198929000968" + "54404588852481750575875556", + "12553379056556200429701202", + "35178381035471258412371061" ], "fpReserves": [ - "18889257118887056682858776", - "5589265165996538581427965" + "2840567184921211651483531", + "3608499481354170458922805" ], - "mAssetSupply": "117975346037745404341318947", - "LPTokenSupply": "24216568502443741663851141" + "mAssetSupply": "101956833006898878284659925", + "LPTokenSupply": "6303272193740272423347756" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "268735360131902570496", - "outputQty0": "272376617337111137496", - "outputQty": "271949537254443028331", - "swapFee1": "161241216079141542", - "swapFee2": "108950646934844454", + "outputIndex": 0, + "inputQty": "234398508833690910720", + "outputQty0": "239458795062928981399", + "outputQty": "240945537932099229920", + "swapFee1": "140639105300214546", + "swapFee2": "143675277037757388", "mpReserves": [ - "61042010412418344236065815", - "29153164032343437367326065", - "27809895632558198929000968" + "54404347906943818476645636", + "12553379056556200429701202", + "35178381035471258412371061" ], "fpReserves": [ - "18888984742269719571721280", - "5589265165996538581427965" + "2840327726126148722502132", + "3608499481354170458922805" ], - "mAssetSupply": "117975073770078714165025905", - "LPTokenSupply": "24216299783207731369194799" + "mAssetSupply": "101956593691779092393435914", + "LPTokenSupply": "6303037809295349262458490" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "15062313682167106895872", - "outputQty0": "15079917866870664519542", - "outputQty": "14852220399986488725945", - "swapFee": "11895489762546620103", + "type": "mint", + "inputIndex": 0, + "inputQty": "13442551789068342", + "outputQty0": "13351589687734768", + "outputQty": "13061601756754248", + "mpReserves": [ + "54404347920386370265713978", + "12553379056556200429701202", + "35178381035471258412371061" + ], + "fpReserves": [ + "2840327739477738410236900", + "3608499481354170458922805" + ], + "mAssetSupply": "101956593705130682081170682", + "LPTokenSupply": "6303037822356951019212738" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "192700920999399817216", + "outputQty0": "196860967406954552151", + "outputQty": "197174405441019524512", + "swapFee1": "115620552599639890", + "swapFee2": "118116580444172731", "mpReserves": [ - "61042010412418344236065815", - "29168226346025604474221937", - "27809895632558198929000968" + "54404347920386370265713978", + "12553379056556200429701202", + "35178183861065817392846549" ], "fpReserves": [ - "18904064660136590236240822", - "5574412945596552092702020" + "2840130878510331455684749", + "3608499481354170458922805" ], - "mAssetSupply": "117990153687945584829545447", - "LPTokenSupply": "24216300972756707623856809" + "mAssetSupply": "101956396962279855570791262", + "LPTokenSupply": "6302845132998006879359511" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1177093385383421542400", - "outputQty0": "1178467760551771743360", - "outputQty": "1161992194800073686125", + "inputIndex": 0, + "inputQty": "233855805071521808384", + "outputQty0": "232273358140468078476", + "outputQty": "227228552246350188845", + "mpReserves": [ + "54404581776191441787522362", + "12553379056556200429701202", + "35178183861065817392846549" + ], + "fpReserves": [ + "2840363151868471923763225", + "3608499481354170458922805" + ], + "mAssetSupply": "101956629235637996038869738", + "LPTokenSupply": "6303072361550253229548356" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "214486560242637469646848", + "outputQty0": "214011481684617869422822", + "outputQty": "214087906921425247376031", + "swapFee": "167466749420913590709", "mpReserves": [ - "61042010412418344236065815", - "29169403439410987895764337", - "27809895632558198929000968" + "54404581776191441787522362", + "12553379056556200429701202", + "35392670421308454862493397" ], "fpReserves": [ - "18905243127897142007984182", - "5574412945596552092702020" + "3054374633553089793186047", + "3394411574432745211546774" ], - "mAssetSupply": "117991332155706136601288807", - "LPTokenSupply": "24217462964951507697542934" + "mAssetSupply": "102170640717322613908292560", + "LPTokenSupply": "6303089108225195320907426" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "37314927841420393840640", - "outputQty0": "37368410902065151560727", - "outputQty": "36798589425286689897990", - "swapFee": "29476613650852389635", + "inputQty": "87705364722958778368", + "outputQty0": "87508800306645976151", + "outputQty": "87500203826310649918", + "swapFee": "68450664903355556", "mpReserves": [ - "61042010412418344236065815", - "29169403439410987895764337", - "27847210560399619322841608" + "54404581776191441787522362", + "12553379056556200429701202", + "35392758126673177821271765" ], "fpReserves": [ - "18942611538799207159544909", - "5537614356171265402804030" + "3054462142353396439162198", + "3394324074228918900896856" ], - "mAssetSupply": "118028700566608201752849534", - "LPTokenSupply": "24217465912612872782781897" + "mAssetSupply": "102170728226122920554268711", + "LPTokenSupply": "6303089115070261811242981" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "180896257122767372288", - "outputQty0": "180588473234438672210", - "outputQty": "177815447466092816801", - "swapFee": "142443786480428400", + "inputQty": "19266465700589414121472", + "outputQty0": "19136362096095168081128", + "outputQty": "19133714987893711517211", + "swapFee": "14968575304130807769", "mpReserves": [ - "61042191308675467003438103", - "29169403439410987895764337", - "27847210560399619322841608" + "54423848241892031201643834", + "12553379056556200429701202", + "35392758126673177821271765" ], "fpReserves": [ - "18942792127272441598217119", - "5537436540723799309987229" + "3073598504449491607243326", + "3375190359241025189379645" ], - "mAssetSupply": "118028881155081436191521744", - "LPTokenSupply": "24217465926857251430824737" + "mAssetSupply": "102189864588219015722349839", + "LPTokenSupply": "6303090611927792224323757" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1002485775283478724608", - "outputQty0": "1016141281218172992276", - "outputQty": "1014284025555472281193", - "swapFee1": "601491465170087234", - "swapFee2": "406456512487269196", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "45315021687835666153472", + "outputQty0": "45008761833875931985642", + "outputQty": "44996537948983615193915", + "swapFee": "35204062960736635958", "mpReserves": [ - "61042191308675467003438103", - "29169403439410987895764337", - "27846196276374063850560415" + "54469163263579866867797306", + "12553379056556200429701202", + "35392758126673177821271765" ], "fpReserves": [ - "18941775985991223425224843", - "5537436540723799309987229" + "3118607266283367539228968", + "3330193821292041574185730" ], - "mAssetSupply": "118027865420256730505798664", - "LPTokenSupply": "24216463501231114469108852" + "mAssetSupply": "102234873350052891654335481", + "LPTokenSupply": "6303094132334088297987352" }, { "type": "swap_fp_to_mp", - "inputQty": "710540218878885376", - "outputIndex": 0, - "outputQty": "721983207907290952", + "inputQty": "240576475815694139392", + "outputIndex": 1, + "outputQty": "235320798236203081494", "swapFee": "0", - "redemptionFee": "288417269711598", + "redemptionFee": "144282964549114964", "mpReserves": [ - "61042190586692259096147151", - "29169403439410987895764337", - "27846196276374063850560415" + "54469163263579866867797306", + "12553143735757964226619708", + "35392758126673177821271765" ], "fpReserves": [ - "18941775264948049146229377", - "5537437251264018188872605" + "3118366794675785680954388", + "3330434397767857268325122" ], - "mAssetSupply": "118027864699501973496514796", - "LPTokenSupply": "24216463501231114469108852" + "mAssetSupply": "102234633022728274345175865", + "LPTokenSupply": "6303094132334088297987352" }, { "type": "mint", "inputIndex": 2, - "inputQty": "41978718030160621207552", - "outputQty0": "42038624559720012281721", - "outputQty": "41448540882482927195601", + "inputQty": "981303350746214272", + "outputQty0": "979108547219438647", + "outputQty": "957201866355272441", "mpReserves": [ - "61042190586692259096147151", - "29169403439410987895764337", - "27888174994404224471767967" + "54469163263579866867797306", + "12553143735757964226619708", + "35392759107976528567486037" ], "fpReserves": [ - "18983813889507769158511098", - "5537437251264018188872605" + "3118367773784332900393035", + "3330434397767857268325122" ], - "mAssetSupply": "118069903324061693508796517", - "LPTokenSupply": "24257912042113597396304453" + "mAssetSupply": "102234634001836821564614512", + "LPTokenSupply": "6303095089535954653259793" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "37653212327283261440", - "outputQty0": "38166594033279424923", - "outputQty": "38106699371157650129", - "swapFee1": "22591927396369956", - "swapFee2": "15266637613311769", + "type": "mint", + "inputIndex": 2, + "inputQty": "69705848173439385600", + "outputQty0": "69549942019317879510", + "outputQty": "67993821427405953074", "mpReserves": [ - "61042190586692259096147151", - "29169365332711616738114208", - "27888174994404224471767967" + "54469163263579866867797306", + "12553143735757964226619708", + "35392828813824702006871637" ], "fpReserves": [ - "18983775722913735879086175", - "5537437251264018188872605" + "3118437323726352218272545", + "3330434397767857268325122" ], - "mAssetSupply": "118069865172734297842683363", - "LPTokenSupply": "24257874391160462852680008" + "mAssetSupply": "102234703551778840882494022", + "LPTokenSupply": "6303163083357382059212867" }, { - "type": "swap_fp_to_mp", - "inputQty": "381717322519667539968000", - "outputIndex": 1, - "outputQty": "386353039666081650070496", - "swapFee": "0", - "redemptionFee": "154788418087076461133", + "type": "redeem", + "outputIndex": 2, + "inputQty": "83041345280602521206784", + "outputQty0": "84886851995966509856259", + "outputQty": "85025207231990613771591", + "swapFee1": "49824807168361512724", + "swapFee2": "50932111197579905913", "mpReserves": [ - "61042190586692259096147151", - "28783012293045535088043712", - "27888174994404224471767967" + "54469163263579866867797306", + "12553143735757964226619708", + "35307803606592711393100046" ], "fpReserves": [ - "18596804677696044726252567", - "5919154573783685728840605" + "3033550471730385708416286", + "3330434397767857268325122" ], - "mAssetSupply": "117683048915934693766310888", - "LPTokenSupply": "24257874391160462852680008" + "mAssetSupply": "102149867631894071952543676", + "LPTokenSupply": "6220126720557496374157355" }, { - "type": "swap_fp_to_mp", - "inputQty": "3953318187277355008", - "outputIndex": 0, - "outputQty": "4009028831179720498", - "swapFee": "0", - "redemptionFee": "1601497534456984", + "type": "mint", + "inputIndex": 0, + "inputQty": "462194145629577347072", + "outputQty0": "459065678005287447225", + "outputQty": "448834076881523555209", "mpReserves": [ - "61042186577663427916426653", - "28783012293045535088043712", - "27888174994404224471767967" + "54469625457725496445144378", + "12553143735757964226619708", + "35307803606592711393100046" ], "fpReserves": [ - "18596800673952208583790524", - "5919158527101873006195613" + "3034009537408390995863511", + "3330434397767857268325122" ], - "mAssetSupply": "117683044913792355158305829", - "LPTokenSupply": "24257874391160462852680008" + "mAssetSupply": "102150326697572077239990901", + "LPTokenSupply": "6220575554634377897712564" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "268325775652428611584", - "outputQty0": "268703000988730604083", - "outputQty": "265106363242810710148", - "swapFee": "212046409470933734", + "type": "redeem", + "outputIndex": 2, + "inputQty": "272016239544980153040896", + "outputQty0": "278003093263694930301636", + "outputQty": "278443736920583821264955", + "swapFee1": "163209743726988091824", + "swapFee2": "166801855958216958180", "mpReserves": [ - "61042186577663427916426653", - "28783012293045535088043712", - "27888443320179876900379551" + "54469625457725496445144378", + "12553143735757964226619708", + "35029359869672127571835091" ], "fpReserves": [ - "18597069376953197314394607", - "5918893420738630195485465" + "2756006444144696065561875", + "3330434397767857268325122" ], - "mAssetSupply": "117683313616793343888909912", - "LPTokenSupply": "24257874412365103799773381" + "mAssetSupply": "101872490406164340526647445", + "LPTokenSupply": "5948575636063770443480850" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "125111612285312614400", - "outputQty0": "125265133784868335444", - "outputQty": "123588320028945787728", - "swapFee": "98852687509331748", + "type": "swap_fp_to_mp", + "inputQty": "23489856316866079752192", + "outputIndex": 1, + "outputQty": "22958385519869116450434", + "swapFee": "0", + "redemptionFee": "14075231590714070700", "mpReserves": [ - "61042186577663427916426653", - "28783137404657820400658112", - "27888443320179876900379551" + "54469625457725496445144378", + "12530185350238095110169274", + "35029359869672127571835091" ], "fpReserves": [ - "18597194642086982182730051", - "5918769832418601249697737" + "2732547724826839281060403", + "3353924254084723348077314" ], - "mAssetSupply": "117683438881927128757245356", - "LPTokenSupply": "24257874422250372550706555" + "mAssetSupply": "101849045762078074456216673", + "LPTokenSupply": "5948575636063770443480850" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "15625230734189668352", - "outputQty0": "15647197173090675917", - "outputQty": "15434934251527535775", + "type": "swap_fp_to_mp", + "inputQty": "48332834391981778010112", + "outputIndex": 1, + "outputQty": "47225811076448437774926", + "swapFee": "0", + "redemptionFee": "28956432907979726627", "mpReserves": [ - "61042186577663427916426653", - "28783137404657820400658112", - "27888458945410611090047903" + "54469625457725496445144378", + "12482959539161646672394348", + "35029359869672127571835091" ], "fpReserves": [ - "18597210289284155273405968", - "5918769832418601249697737" + "2684287003313539736681748", + "3402257088476705126087426" ], - "mAssetSupply": "117683454529124301847921273", - "LPTokenSupply": "24257889857184624078242330" + "mAssetSupply": "101800813996997682891564645", + "LPTokenSupply": "5948575636063770443480850" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "56034212237844406075392", - "outputQty0": "56112735605857139595019", - "outputQty": "55354019831487844108246", - "swapFee": "44280871460915261328", + "inputIndex": 1, + "inputQty": "5273309792529913217024", + "outputQty0": "5386019373401702770640", + "outputQty": "5390294191411004212797", + "swapFee": "4214909254425024925", "mpReserves": [ - "61042186577663427916426653", - "28783137404657820400658112", - "27944493157648455496123295" + "54469625457725496445144378", + "12488232848954176585611372", + "35029359869672127571835091" ], "fpReserves": [ - "18653323024890012413000987", - "5863415812587113405589491" + "2689673022686941439452388", + "3396866794285294121874629" ], - "mAssetSupply": "117739567264730158987516292", - "LPTokenSupply": "24257894285271770169768462" + "mAssetSupply": "101806200016371084594335285", + "LPTokenSupply": "5948576057554695885983342" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3372876858785690624", - "outputQty0": "3377024341026443773", - "outputQty": "3330985753995551322", + "type": "redeem", + "outputIndex": 1, + "inputQty": "125511393777831269892096", + "outputQty0": "128219675311160055138492", + "outputQty": "125435291787473694300290", + "swapFee1": "75306836266698761935", + "swapFee2": "76931805186696033083", "mpReserves": [ - "61042186577663427916426653", - "28783140777534679186348736", - "27944493157648455496123295" + "54469625457725496445144378", + "12362797557166702891311082", + "35029359869672127571835091" ], "fpReserves": [ - "18653326401914353439444760", - "5863415812587113405589491" + "2561453347375781384313896", + "3396866794285294121874629" ], - "mAssetSupply": "117739570641754500013960065", - "LPTokenSupply": "24257897616257524165319784" + "mAssetSupply": "101678057272865111235229876", + "LPTokenSupply": "5823072194460491285967439" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "6944539972321945600", - "outputQty0": "7036298295459359314", - "outputQty": "7045565855944052684", - "swapFee1": "4166723983393167", - "swapFee2": "2814519318183743", + "outputIndex": 2, + "inputQty": "7060264548222477795328", + "outputQty0": "7211927749614187605346", + "outputQty": "7223621262905564114436", + "swapFee1": "4236158728933486677", + "swapFee2": "4327156649768512563", "mpReserves": [ - "61042179532097571972373969", - "28783140777534679186348736", - "27944493157648455496123295" + "54469625457725496445144378", + "12362797557166702891311082", + "35022136248409222007720655" ], "fpReserves": [ - "18653319365616057980085446", - "5863415812587113405589491" + "2554241419626167196708550", + "3396866794285294121874629" ], - "mAssetSupply": "117739563608270723872784494", - "LPTokenSupply": "24257890672134224241713500" + "mAssetSupply": "101670849672272146816137093", + "LPTokenSupply": "5816012353528141701520778" }, { "type": "swap_fp_to_mp", - "inputQty": "52127153669163992", - "outputIndex": 1, - "outputQty": "52720694893513419", + "inputQty": "10864526138707661553664", + "outputIndex": 2, + "outputQty": "10860597810636270287554", "swapFee": "0", - "redemptionFee": "21122658360785", + "redemptionFee": "6505824818867365269", "mpReserves": [ - "61042179532097571972373969", - "28783140724813984292835317", - "27944493157648455496123295" + "54469625457725496445144378", + "12362797557166702891311082", + "35011275650598585737433101" ], "fpReserves": [ - "18653319312809412078122664", - "5863415864714267074753483" + "2543398378261388254592653", + "3407731320424001783428293" ], - "mAssetSupply": "117739563555485200629182497", - "LPTokenSupply": "24257890672134224241713500" + "mAssetSupply": "101660013136732186741386465", + "LPTokenSupply": "5816012353528141701520778" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "515219301553435840", - "outputQty0": "515938996533505439", - "outputQty": "508892684268693545", - "swapFee": "407124207872526", + "inputQty": "109426977670344451555328", + "outputQty0": "109183189734993070263476", + "outputQty": "106817523923737993896624", "mpReserves": [ - "61042179532097571972373969", - "28783140724813984292835317", - "27944493672867757049559135" + "54469625457725496445144378", + "12362797557166702891311082", + "35120702628268930188988429" ], "fpReserves": [ - "18653319828748408611628103", - "5863415355821582806059938" + "2652581567996381324856129", + "3407731320424001783428293" ], - "mAssetSupply": "117739564071424197162687936", - "LPTokenSupply": "24257890672174936662500752" + "mAssetSupply": "101769196326467179811649941", + "LPTokenSupply": "5922829877451879695417402" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1674249162663389952", - "outputQty0": "1676307914025317910", - "outputQty": "1653414134470302249", - "swapFee": "1322764000563692", + "inputIndex": 2, + "inputQty": "25042980166150375079936", + "outputQty0": "24986768357135939504786", + "outputQty": "25007827520803239415462", + "swapFee": "19554274848924575890", "mpReserves": [ - "61042179532097571972373969", - "28783142399063146956225269", - "27944493672867757049559135" + "54469625457725496445144378", + "12362797557166702891311082", + "35145745608435080564068365" ], "fpReserves": [ - "18653321505056322636946013", - "5863413702407448335757689" + "2677568336353517264360915", + "3382723492903198544012831" ], - "mAssetSupply": "117739565747732111188005846", - "LPTokenSupply": "24257890672307213062557121" + "mAssetSupply": "101794183094824315751154727", + "LPTokenSupply": "5922831832879364587874991" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "2143156410837433189400576", - "hardLimitError": true + "inputQty": "31258694348791803904", + "outputQty0": "31941728196388217332", + "outputQty": "31244815358146152773", + "mpReserves": [ + "54469625457725496445144378", + "12362828815861051683114986", + "35145745608435080564068365" + ], + "fpReserves": [ + "2677600278081713652578247", + "3382723492903198544012831" + ], + "mAssetSupply": "101794215036552512139372059", + "LPTokenSupply": "5922863077694722734027764" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "11766114750804285980672", - "outputQty0": "11782539463228562019547", - "outputQty": "11621889621148368247923", + "inputIndex": 0, + "inputQty": "5151955766965657665536", + "outputQty0": "5116472436539722121387", + "outputQty": "5004820955497368642297", "mpReserves": [ - "61042179532097571972373969", - "28783142399063146956225269", - "27956259787618561335539807" + "54474777413492462102809914", + "12362828815861051683114986", + "35145745608435080564068365" ], "fpReserves": [ - "18665104044519551198965560", - "5863413702407448335757689" + "2682716750518253374699634", + "3382723492903198544012831" ], - "mAssetSupply": "117751348287195339750025393", - "LPTokenSupply": "24269512561928361430805044" + "mAssetSupply": "101799331508989051861493446", + "LPTokenSupply": "5927867898650220102670061" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "120632415372899770171392", - "outputQty0": "120425285469426124335187", - "outputQty": "118742750250057784586163", - "swapFee": "95024853587329113551", + "type": "swap_fp_to_mp", + "inputQty": "146806236663383215570944", + "outputIndex": 1, + "outputQty": "143267858751935505924552", + "swapFee": "0", + "redemptionFee": "87914364934321691317", "mpReserves": [ - "61162811947470471742545361", - "28783142399063146956225269", - "27956259787618561335539807" + "54474777413492462102809914", + "12219560957109116177190434", + "35145745608435080564068365" ], "fpReserves": [ - "18785529329988977323300747", - "5744670952157390551171526" + "2536192808961050555837853", + "3529529729566581759583775" ], - "mAssetSupply": "117871773572664765874360580", - "LPTokenSupply": "24269522064413720163716399" + "mAssetSupply": "101652895481796783364322982", + "LPTokenSupply": "5927867898650220102670061" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "204579242639819762827264", - "outputQty0": "204829036928559130899081", - "outputQty": "201792123993598942450882", - "swapFee": "161599546726770288782", + "type": "redeem", + "outputIndex": 1, + "inputQty": "724420334817408057344", + "outputQty0": "739836081594761575239", + "outputQty": "723208474643231727993", + "swapFee1": "434652200890444834", + "swapFee2": "443901648956856945", "mpReserves": [ - "61162811947470471742545361", - "28987721641702966719052533", - "27956259787618561335539807" + "54474777413492462102809914", + "12218837748634472945462441", + "35145745608435080564068365" ], "fpReserves": [ - "18990358366917536454199828", - "5542878828163791608720644" + "2535452972879455794262614", + "3529529729566581759583775" ], - "mAssetSupply": "118076602609593325005259661", - "LPTokenSupply": "24269538224368392840745277" + "mAssetSupply": "101652156089616837559604688", + "LPTokenSupply": "5927143521780622783657200" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "928239039095555026321408", - "hardLimitError": true + "inputQty": "195900064728047", + "outputQty0": "194534563785238", + "outputQty": "190366924922215", + "mpReserves": [ + "54474777413688362167537961", + "12218837748634472945462441", + "35145745608435080564068365" + ], + "fpReserves": [ + "2535452973073990358047852", + "3529529729566581759583775" + ], + "mAssetSupply": "101652156089811372123389926", + "LPTokenSupply": "5927143521970989708579415" }, { - "type": "swap_fp_to_mp", - "inputQty": "32040199999081496576", - "outputIndex": 2, - "outputQty": "32456310257325510003", - "swapFee": "0", - "redemptionFee": "13006039820976815", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1559734367350889644032", + "outputQty0": "1556142059947118913347", + "outputQty": "1558457882939339400176", + "swapFee": "1218241423962707643", "mpReserves": [ - "61162811947470471742545361", - "28987721641702966719052533", - "27956227331308304010029804" + "54474777413688362167537961", + "12218837748634472945462441", + "35147305342802431453712397" ], "fpReserves": [ - "18990325851817984012161522", - "5542910868363790690217220" + "2537009115133937476961199", + "3527971271683642420183599" ], - "mAssetSupply": "118076570107499812384198170", - "LPTokenSupply": "24269538224368392840745277" + "mAssetSupply": "101653712231871319242303273", + "LPTokenSupply": "5927143643795132104850179" }, { - "type": "swap_fp_to_mp", - "inputQty": "82289208740927938494464", - "outputIndex": 0, - "outputQty": "83598273860334051182106", - "swapFee": "0", - "redemptionFee": "33395551158021032379", + "type": "mint", + "inputIndex": 1, + "inputQty": "9466743333273676546048", + "outputQty0": "9678439136378025930343", + "outputQty": "9470967196689579415074", "mpReserves": [ - "61079213673610137691363255", - "28987721641702966719052533", - "27956227331308304010029804" + "54474777413688362167537961", + "12228304491967746622008489", + "35147305342802431453712397" ], "fpReserves": [ - "18906836973922931431213833", - "5625200077104718628711684" + "2546687554270315502891542", + "3527971271683642420183599" ], - "mAssetSupply": "117993114625155917824282860", - "LPTokenSupply": "24269538224368392840745277" + "mAssetSupply": "101663390671007697268233616", + "LPTokenSupply": "5936614610991821684265253" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "426653074175599312896", - "outputQty0": "425925138702321533838", - "outputQty": "419986725284888822789", + "type": "redeem", + "outputIndex": 1, + "inputQty": "467953339992959549440", + "outputQty0": "477921226528106199416", + "outputQty": "467194826948180125074", + "swapFee1": "280772003995775729", + "swapFee2": "286752735916863719", "mpReserves": [ - "61079640326684313290676151", - "28987721641702966719052533", - "27956227331308304010029804" + "54474777413688362167537961", + "12227837297140798441883415", + "35147305342802431453712397" ], "fpReserves": [ - "18907262899061633752747671", - "5625200077104718628711684" + "2546209633043787396692126", + "3527971271683642420183599" ], - "mAssetSupply": "117993540550294620145816698", - "LPTokenSupply": "24269958211093677729568066" + "mAssetSupply": "101662913036533905078897919", + "LPTokenSupply": "5936146685729029124293385" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "3206888290503142932480", - "outputQty0": "3201416579812014712196", - "outputQty": "3153605742714193077413", - "swapFee": "2525423576495262793", + "type": "redeem", + "outputIndex": 1, + "inputQty": "135347409892223301451776", + "outputQty0": "138213347893224587690315", + "outputQty": "135077796218940405898213", + "swapFee1": "81208445935333980871", + "swapFee2": "82928008735934752614", "mpReserves": [ - "61082847214974816433608631", - "28987721641702966719052533", - "27956227331308304010029804" + "54474777413688362167537961", + "12092759500921858035985202", + "35147305342802431453712397" ], "fpReserves": [ - "18910464315641445767459867", - "5622046471362004435634271" + "2407996285150562809001811", + "3527971271683642420183599" ], - "mAssetSupply": "117996741966874432160528894", - "LPTokenSupply": "24269958463636035379094345" + "mAssetSupply": "101524782616649416425960218", + "LPTokenSupply": "5800807396681399356239696" }, { - "type": "swap_fp_to_mp", - "inputQty": "51871949475338677911552", - "outputIndex": 2, - "outputQty": "52513908760779556424498", - "swapFee": "0", - "redemptionFee": "21043613823257308995", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "491717985076946468864", + "outputQty0": "490560921623551880004", + "outputQty": "491485806016786138997", + "swapFee": "384124838993451958", "mpReserves": [ - "61082847214974816433608631", - "28987721641702966719052533", - "27903713422547524453605306" + "54474777413688362167537961", + "12092759500921858035985202", + "35147797060787508400181261" ], "fpReserves": [ - "18857855281083302494970832", - "5673918420837343113545823" + "2408486846072186360881815", + "3527479785877625634044602" ], - "mAssetSupply": "117944153975930112145348854", - "LPTokenSupply": "24269958463636035379094345" + "mAssetSupply": "101525273177571039977840222", + "LPTokenSupply": "5800807435093883255584891" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "19761740462006357458944", - "outputQty0": "20027810115597852396039", - "outputQty": "19991480571111673156878", - "swapFee1": "11857044277203814475", - "swapFee2": "8011124046239140958", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "15989408830158601715712", + "outputQty0": "15951750968477277251526", + "outputQty": "15981105843808292574028", + "swapFee": "12490522534045256313", "mpReserves": [ - "61082847214974816433608631", - "28987721641702966719052533", - "27883721941976412780448428" + "54474777413688362167537961", + "12092759500921858035985202", + "35163786469617667001896973" ], "fpReserves": [ - "18837827470967704642574793", - "5673918420837343113545823" + "2424438597040663638133341", + "3511498680033817341470574" ], - "mAssetSupply": "117924134176938560532093773", - "LPTokenSupply": "24250197908878456742016848" + "mAssetSupply": "101541224928539517255091748", + "LPTokenSupply": "5800808684146136660110522" }, { "type": "swap_fp_to_mp", - "inputQty": "29784626451499", + "inputQty": "28215852818951397441536", "outputIndex": 0, - "outputQty": "30242354259321", + "outputQty": "28323072566157280251728", "swapFee": "0", - "redemptionFee": "12081087976", + "redemptionFee": "16884330054700496266", "mpReserves": [ - "61082847214944574079349310", - "28987721641702966719052533", - "27883721941976412780448428" + "54446454341122204887286233", + "12092759500921858035985202", + "35163786469617667001896973" ], "fpReserves": [ - "18837827470937501922634465", - "5673918420867127739997322" + "2396298046949496144355157", + "3539714532852768738912110" ], - "mAssetSupply": "117924134176908369893241421", - "LPTokenSupply": "24250197908878456742016848" + "mAssetSupply": "101513101262778404461809830", + "LPTokenSupply": "5800808684146136660110522" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "18567942414611213451264", - "outputQty0": "18817838343604721026376", - "outputQty": "18787760406087477012132", - "swapFee1": "11140765448766728070", - "swapFee2": "7527135337441888410", + "type": "mint", + "inputIndex": 0, + "inputQty": "26036603254862841380864", + "outputQty0": "25853299524524149090348", + "outputQty": "25305242906047550829490", "mpReserves": [ - "61082847214944574079349310", - "28968933881296879242040401", - "27883721941976412780448428" + "54472490944377067728667097", + "12092759500921858035985202", + "35163786469617667001896973" ], "fpReserves": [ - "18819009632593897201608089", - "5673918420867127739997322" + "2422151346474020293445505", + "3539714532852768738912110" ], - "mAssetSupply": "117905323865700102614103455", - "LPTokenSupply": "24231631080540390405238391" + "mAssetSupply": "101538954562302928610900178", + "LPTokenSupply": "5826113927052184210940012" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "18438300818563644", - "outputQty0": "18686407336373761", - "outputQty": "18710945857882267", - "swapFee1": "11062980491138", - "swapFee2": "7474562934549", + "inputQty": "362081423156322500608", + "outputQty0": "369710495906047570538", + "outputQty": "372109260490684901854", + "swapFee1": "217248853893793500", + "swapFee2": "221826297543628542", "mpReserves": [ - "61082847196233628221467043", - "28968933881296879242040401", - "27883721941976412780448428" + "54472118835116577043765243", + "12092759500921858035985202", + "35163786469617667001896973" ], "fpReserves": [ - "18819009613907489865234328", - "5673918420867127739997322" + "2421781635978114245874967", + "3539714532852768738912110" ], - "mAssetSupply": "117905323847021169840664243", - "LPTokenSupply": "24231631062103195884723860" + "mAssetSupply": "101538585073633320106958182", + "LPTokenSupply": "5825751867353913277818754" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "325126262860450803744768", - "outputQty0": "324567557127830166330076", - "outputQty": "320050533160895618034045", + "type": "swap_fp_to_mp", + "inputQty": "102584194112141344", + "outputIndex": 2, + "outputQty": "102491241120680902", + "swapFee": "0", + "redemptionFee": "61386610101512", "mpReserves": [ - "61407973459094079025211811", - "28968933881296879242040401", - "27883721941976412780448428" + "54472118835116577043765243", + "12092759500921858035985202", + "35163786367126425881216071" ], "fpReserves": [ - "19143577171035320031564404", - "5673918420867127739997322" + "2421781533667097410021492", + "3539714635436962851053454" ], - "mAssetSupply": "118229891404149000006994319", - "LPTokenSupply": "24551681595264091502757905" + "mAssetSupply": "101538584971383689881206219", + "LPTokenSupply": "5825751867353913277818754" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "108813014315317133312", - "outputQty0": "108969056178509264647", - "outputQty": "107332601226224594150", - "swapFee": "85957870219966938", + "type": "redeem", + "outputIndex": 1, + "inputQty": "76841534124915028918272", + "outputQty0": "78454496542256768015353", + "outputQty": "76644073359810296887223", + "swapFee1": "46104920474949017350", + "swapFee2": "47072697925354060809", "mpReserves": [ - "61407973459094079025211811", - "28968933881296879242040401", - "27883830754990728097581740" + "54472118835116577043765243", + "12016115427562047739097979", + "35163786367126425881216071" ], "fpReserves": [ - "19143686140091498540829051", - "5673811088265901515403172" + "2343327037124840642006139", + "3539714635436962851053454" ], - "mAssetSupply": "118230000373205178516258966", - "LPTokenSupply": "24551681603859878524754598" + "mAssetSupply": "101460177547539358467251675", + "LPTokenSupply": "5748914943721045743802217" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "7396586084643500032", - "outputQty0": "7496840064279355954", - "outputQty": "7484730799283928293", - "swapFee1": "4437951650786100", - "swapFee2": "2998736025711742", + "type": "swap_fp_to_mp", + "inputQty": "26025930856545413758976", + "outputIndex": 0, + "outputQty": "26117365187618489534449", + "swapFee": "0", + "redemptionFee": "15568722532994473035", "mpReserves": [ - "61407973459094079025211811", - "28968926396566079958112108", - "27883830754990728097581740" + "54446001469928958554230794", + "12016115427562047739097979", + "35163786367126425881216071" ], "fpReserves": [ - "19143678643251434261473097", - "5673811088265901515403172" + "2317379166236516520279961", + "3565740566293508264812430" ], - "mAssetSupply": "118229992879363850262614754", - "LPTokenSupply": "24551674207717589046333176" + "mAssetSupply": "101434245245373567339998532", + "LPTokenSupply": "5748914943721045743802217" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "243702824049007740846080", - "outputQty0": "244047528859160239851494", - "outputQty": "240212529094478024355412", - "swapFee": "192504578222306580949", + "type": "mint", + "inputIndex": 1, + "inputQty": "1073832872388010335797248", + "outputQty0": "1096615743184036166450256", + "outputQty": "1072653911786348540356756", "mpReserves": [ - "61407973459094079025211811", - "28968926396566079958112108", - "28127533579039735838427820" + "54446001469928958554230794", + "13089948299950058074895227", + "35163786367126425881216071" ], "fpReserves": [ - "19387726172110594501324591", - "5433598559171423491047760" + "3413994909420552686730217", + "3565740566293508264812430" ], - "mAssetSupply": "118474040408223010502466248", - "LPTokenSupply": "24551693458175411276991270" + "mAssetSupply": "102530860988557603506448788", + "LPTokenSupply": "6821568855507394284158973" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "6184908235747185655808", - "outputQty0": "6192503138207103730826", - "outputQty": "6090585924513684117791", - "swapFee": "4883186015204880106", + "type": "swap_fp_to_mp", + "inputQty": "136706432691067322105856", + "outputIndex": 2, + "outputQty": "136819337442531334020292", + "swapFee": "0", + "redemptionFee": "81978793114564063165", "mpReserves": [ - "61407973459094079025211811", - "28975111304801827143767916", - "28127533579039735838427820" + "54446001469928958554230794", + "13089948299950058074895227", + "35026967029683894547195779" ], "fpReserves": [ - "19393918675248801605055417", - "5427507973246909806929969" + "3277363587562945914787652", + "3702446998984575586918286" ], - "mAssetSupply": "118480232911361217606197074", - "LPTokenSupply": "24551693946494012797479280" + "mAssetSupply": "102394311645493111298569388", + "LPTokenSupply": "6821568855507394284158973" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "6633111934480093806592", - "outputQty0": "6621747603570110888160", - "outputQty": "6512502485174916240531", - "swapFee": "5221626405909033424", + "inputQty": "341023014476554874912768", + "outputQty0": "338795837329640422128306", + "outputQty": "338580539589044913261287", + "swapFee": "264959806064522139166", "mpReserves": [ - "61414606571028559119018403", - "28975111304801827143767916", - "28127533579039735838427820" + "54787024484405513429143562", + "13089948299950058074895227", + "35026967029683894547195779" ], "fpReserves": [ - "19400540422852371715943577", - "5420995470761734890689438" + "3616159424892586336915958", + "3363866459395530673656999" ], - "mAssetSupply": "118486854658964787717085234", - "LPTokenSupply": "24551694468656653388382622" + "mAssetSupply": "102733107482822751720697694", + "LPTokenSupply": "6821595351488000736372889" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "8016481589306938368", - "outputQty0": "8002745946391004066", - "outputQty": "7870552226948454752", - "swapFee": "6310569330454968", + "type": "swap_fp_to_mp", + "inputQty": "117844913244945170432", + "outputIndex": 2, + "outputQty": "118058761299674657994", + "swapFee": "0", + "redemptionFee": "70740878391986232", "mpReserves": [ - "61414614587510148425956771", - "28975111304801827143767916", - "28127533579039735838427820" + "54787024484405513429143562", + "13089948299950058074895227", + "35026848970922594872537785" ], "fpReserves": [ - "19400548425598318106947643", - "5420987600209507942234686" + "3616041523428599693195412", + "3363984304308775618827431" ], - "mAssetSupply": "118486862661710734108089300", - "LPTokenSupply": "24551694469287710321428118" + "mAssetSupply": "102732989652099643468963380", + "LPTokenSupply": "6821595351488000736372889" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "51447401967479111680", - "outputQty0": "52163085082079173901", - "outputQty": "52078275875256766128", - "swapFee1": "30868441180487467", - "swapFee2": "20865234032831669", + "inputQty": "283138912718775025664", + "outputQty0": "289607834637281411132", + "outputQty": "283877568215434006422", + "swapFee1": "169883347631265015", + "swapFee2": "173764700782368846", "mpReserves": [ - "61414614587510148425956771", - "28975059226525951887001788", - "28127533579039735838427820" + "54787024484405513429143562", + "13089664422381842640888805", + "35026848970922594872537785" ], "fpReserves": [ - "19400496262513236027773742", - "5420987600209507942234686" + "3615751915593962411784280", + "3363984304308775618827431" ], - "mAssetSupply": "118486810519490886061747068", - "LPTokenSupply": "24551643024972586960365184" + "mAssetSupply": "102732700218029706969921094", + "LPTokenSupply": "6821312229563616724473726" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "103267974558307967827968", - "outputQty0": "103393994755671215163880", - "outputQty": "101652194745378255990048", - "swapFee": "81530081326878706201", + "type": "swap_fp_to_mp", + "inputQty": "169267314422361708560384", + "outputIndex": 1, + "outputQty": "165902378428779568442693", + "swapFee": "0", + "redemptionFee": "101576310238071353970", "mpReserves": [ - "61414614587510148425956771", - "29078327201084259854829756", - "28127533579039735838427820" + "54787024484405513429143562", + "12923762043953063072446112", + "35026848970922594872537785" ], "fpReserves": [ - "19503890257268907242937622", - "5319335405464129686244638" + "3446458065197176821833789", + "3533251618731137327387815" ], - "mAssetSupply": "118590204514246557276910948", - "LPTokenSupply": "24551651177980719648235804" + "mAssetSupply": "102563507943943159451324573", + "LPTokenSupply": "6821312229563616724473726" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "2549350810760347648", - "outputQty0": "2585203364675191166", - "outputQty": "2581038948358354704", - "swapFee1": "1529610486456208", - "swapFee2": "1034081345870076", + "outputIndex": 2, + "inputQty": "507734833350335594496", + "outputQty0": "519169780567666839042", + "outputQty": "519892457049495349633", + "swapFee1": "304640900010201356", + "swapFee2": "311501868340600103", "mpReserves": [ - "61414614587510148425956771", - "29078324620045311496475052", - "28127533579039735838427820" + "54787024484405513429143562", + "12923762043953063072446112", + "35026329078465545377188152" ], "fpReserves": [ - "19503887672065542567746456", - "5319335405464129686244638" + "3445938895416609154994747", + "3533251618731137327387815" ], - "mAssetSupply": "118590201930077273947589858", - "LPTokenSupply": "24551648628782869936533776" + "mAssetSupply": "102562989085664460125085634", + "LPTokenSupply": "6820804525194356389899365" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "103687744605008", - "outputQty0": "103832945634002", - "outputQty": "102049120737865", - "swapFee": "81865213043", + "inputIndex": 1, + "inputQty": "372529540952189067853824", + "outputQty0": "379799738577971852716131", + "outputQty": "379283465219531468092846", + "swapFee": "296917279176100370591", "mpReserves": [ - "61414614587510148425956771", - "29078324620045311496475052", - "28127533579143423583032828" + "54787024484405513429143562", + "13296291584905252140299936", + "35026329078465545377188152" ], "fpReserves": [ - "19503887672169375513380458", - "5319335405362080565506773" + "3825738633994581007710878", + "3153968153511605859294969" ], - "mAssetSupply": "118590201930181106893223860", - "LPTokenSupply": "24551648628782878123055080" + "mAssetSupply": "102942788824242431977801765", + "LPTokenSupply": "6820834216922273999936424" }, { "type": "swap_fp_to_mp", - "inputQty": "43434412988050752667648", - "outputIndex": 2, - "outputQty": "44072293840733094341387", + "inputQty": "1958890107387823796518912", + "outputIndex": 1, + "outputQty": "1909233928823788625409028", "swapFee": "0", - "redemptionFee": "17660730428838151594", + "redemptionFee": "1171667186557265959936", "mpReserves": [ - "61414614587510148425956771", - "29078324620045311496475052", - "28083461285302690488691441" + "54787024484405513429143562", + "11387057656081463514890908", + "35026329078465545377188152" ], "fpReserves": [ - "19459735846097280134394096", - "5362769818350131318174421" + "1872959989732471074483140", + "5112858260899429655813881" ], - "mAssetSupply": "118546067764839440352389092", - "LPTokenSupply": "24551648628782878123055080" + "mAssetSupply": "100991181847166879310533963", + "LPTokenSupply": "6820834216922273999936424" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "3875050861209133", - "outputQty0": "3868421659099895", - "outputQty": "3803072845293932", - "swapFee": "3050181278578", + "inputIndex": 1, + "inputQty": "443113421437263700557824", + "outputQty0": "454181943208347148862747", + "outputQty": "457254008510222394657985", + "swapFee": "356895909757404345982", "mpReserves": [ - "61414614591385199287165904", - "29078324620045311496475052", - "28083461285302690488691441" + "54787024484405513429143562", + "11830171077518727215448732", + "35026329078465545377188152" ], "fpReserves": [ - "19459735849965701793493991", - "5362769814547058472880489" + "2327141932940818223345887", + "4655604252389207261155896" ], - "mAssetSupply": "118546067768707862011488987", - "LPTokenSupply": "24551648628783183141182937" + "mAssetSupply": "101445363790375226459396710", + "LPTokenSupply": "6820869906513249740371022" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "232919820338459808", - "outputQty0": "233201839484177069", - "outputQty": "229844348541364693", + "inputIndex": 2, + "inputQty": "3572603372858839138304", + "outputQty0": "3564008387172072499038", + "outputQty": "3494327878456334195233", "mpReserves": [ - "61414614591385199287165904", - "29078324852965131834934860", - "28083461285302690488691441" + "54787024484405513429143562", + "11830171077518727215448732", + "35029901681838404216326456" ], "fpReserves": [ - "19459736083167541277671060", - "5362769814547058472880489" + "2330705941327990295844925", + "4655604252389207261155896" ], - "mAssetSupply": "118546068001909701495666056", - "LPTokenSupply": "24551648858627531682547630" + "mAssetSupply": "101448927798762398531895748", + "LPTokenSupply": "6824364234391706074566255" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "6626575667624178352128", - "outputQty0": "6719333427777962459569", - "outputQty": "6728154775469540226576", - "swapFee1": "3975945400574507011", - "swapFee2": "2687733371111184983", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "72159169999173712", + "outputQty0": "71634656458994435", + "outputQty": "71976558154069258", + "swapFee": "56186975019033", "mpReserves": [ - "61407886436609729746939328", - "29078324852965131834934860", - "28083461285302690488691441" + "54787024556564683428317274", + "11830171077518727215448732", + "35029901681838404216326456" ], "fpReserves": [ - "19453016749739763315211491", - "5362769814547058472880489" + "2330706012962646754839360", + "4655604180412649107086638" ], - "mAssetSupply": "118539351356215294644391470", - "LPTokenSupply": "24545022680554447561646203" + "mAssetSupply": "101448927870397054990890183", + "LPTokenSupply": "6824364234397324772068158" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "626188960303339929600", - "outputQty0": "634953616713166273947", - "outputQty": "633807822433701380397", - "swapFee1": "375713376182003957", - "swapFee2": "253981446685266509", + "inputQty": "2447389625651071", + "outputQty0": "2494709484351536", + "outputQty": "2499226457457170", + "swapFee1": "1468433775390", + "swapFee2": "1496825690610", "mpReserves": [ - "61407886436609729746939328", - "29078324852965131834934860", - "28082827477480256787311044" + "54787024556564683428317274", + "11830171077518727215448732", + "35029901679339177758869286" ], "fpReserves": [ - "19452381796123050148937544", - "5362769814547058472880489" + "2330706010467937270487824", + "4655604180412649107086638" ], - "mAssetSupply": "118538716656580028163384032", - "LPTokenSupply": "24544396529165481839916998" + "mAssetSupply": "101448927867903842332229257", + "LPTokenSupply": "6824364231950081989794626" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "545691546383588614209536", - "outputQty0": "544751329895838656330245", - "outputQty": "536863783993378322600847", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "337018734381592899223552", + "outputQty0": "336193243264089920587594", + "outputQty": "337433478883096269363806", + "swapFee": "263570038527448114593", "mpReserves": [ - "61953577982993318361148864", - "29078324852965131834934860", - "28082827477480256787311044" + "54787024556564683428317274", + "11830171077518727215448732", + "35366920413720770658092838" ], "fpReserves": [ - "19997133126018888805267789", - "5362769814547058472880489" + "2666899253732027191075418", + "4318170701529552837722832" ], - "mAssetSupply": "119083467986475866819714277", - "LPTokenSupply": "25081260313158860162517845" + "mAssetSupply": "101785121111167932252816851", + "LPTokenSupply": "6824390588953934734606085" }, { - "type": "swap_fp_to_mp", - "inputQty": "24061511140181066907648", - "outputIndex": 1, - "outputQty": "24432286647580485997411", - "swapFee": "0", - "redemptionFee": "9788932462469972666", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "132319332681354676535296", + "outputQty0": "131987336833004472265130", + "outputQty": "132300957324772727180138", + "swapFee": "103371706959420546848", "mpReserves": [ - "61953577982993318361148864", - "29053892566317551348937449", - "28082827477480256787311044" + "54787024556564683428317274", + "11830171077518727215448732", + "35499239746402125334628134" ], "fpReserves": [ - "19972660794862713873600882", - "5386831325687239539788137" + "2798886590565031663340548", + "4185869744204780110542694" ], - "mAssetSupply": "119059005444252154358020036", - "LPTokenSupply": "25081260313158860162517845" + "mAssetSupply": "101917108448000936725081981", + "LPTokenSupply": "6824400926124630676660769" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4343740540616101068800", - "outputQty0": "4349967832642571580466", - "outputQty": "4273812865733314434574", - "swapFee": "3429414736194129581", + "type": "redeem", + "outputIndex": 0, + "inputQty": "67153714130603651104768", + "outputQty0": "68569212346748790877037", + "outputQty": "69026979681197702973281", + "swapFee1": "40292228478362190662", + "swapFee2": "41141527408049274526", "mpReserves": [ - "61953577982993318361148864", - "29053892566317551348937449", - "28087171218020872888379844" + "54717997576883485725343993", + "11830171077518727215448732", + "35499239746402125334628134" ], "fpReserves": [ - "19977010762695356445181348", - "5382557512821506225353563" + "2730317378218282872463511", + "4185869744204780110542694" ], - "mAssetSupply": "119063355412084796929600502", - "LPTokenSupply": "25081260656100333781930803" + "mAssetSupply": "101848580377181595983479470", + "LPTokenSupply": "6757251241216874861775067" }, { "type": "swap_fp_to_mp", - "inputQty": "3497794350233320685568", - "outputIndex": 0, - "outputQty": "3562044922219528098145", + "inputQty": "741024317913336601640960", + "outputIndex": 2, + "outputQty": "738429503749811605566674", "swapFee": "0", - "redemptionFee": "1422913118202878775", + "redemptionFee": "442243374019867117748", "mpReserves": [ - "61950015938071098833050719", - "29053892566317551348937449", - "28087171218020872888379844" + "54717997576883485725343993", + "11830171077518727215448732", + "34760810242652313729061460" ], "fpReserves": [ - "19973453479899849248242407", - "5386055307171739546039131" + "1993245088185171009550074", + "4926894062118116712183654" ], - "mAssetSupply": "119059799552202407935540336", - "LPTokenSupply": "25081260656100333781930803" + "mAssetSupply": "101111950330522503987683781", + "LPTokenSupply": "6757251241216874861775067" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "262566585170875836792832", - "outputQty0": "266266845455529306986270", - "outputQty": "265825438372577042698360", - "swapFee1": "157539951102525502075", - "swapFee2": "106506738182211722794", + "type": "mint", + "inputIndex": 2, + "inputQty": "19260266485871892496384", + "outputQty0": "19215111996477314919637", + "outputQty": "18873093766585547034949", "mpReserves": [ - "61950015938071098833050719", - "28788067127944974306239089", - "28087171218020872888379844" + "54717997576883485725343993", + "11830171077518727215448732", + "34780070509138185621557844" ], "fpReserves": [ - "19707186634444319941256137", - "5386055307171739546039131" + "2012460200181648324469711", + "4926894062118116712183654" ], - "mAssetSupply": "118793639213485060840276860", - "LPTokenSupply": "24818709824924568197688178" + "mAssetSupply": "101131165442518981302603418", + "LPTokenSupply": "6776124334983460408810016" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "50298521353318408192", - "outputQty0": "50369989740908934092", - "outputQty": "49507569025001842127", - "swapFee": "39713582374151265", + "type": "redeem", + "outputIndex": 2, + "inputQty": "283351543024263888896", + "outputQty0": "288327682227994104758", + "outputQty": "288832547169770619740", + "swapFee1": "170010925814558333", + "swapFee2": "172996609336796462", "mpReserves": [ - "61950015938071098833050719", - "28788067127944974306239089", - "28087221516542226206788036" + "54717997576883485725343993", + "11830171077518727215448732", + "34779781676591015850938104" ], "fpReserves": [ - "19707237004434060850190229", - "5386005799602714544197004" + "2012171872499420330364953", + "4926894062118116712183654" ], - "mAssetSupply": "118793689583474801749210952", - "LPTokenSupply": "24818709828895926435103304" + "mAssetSupply": "101130877287833362645295122", + "LPTokenSupply": "6775841000441528726376953" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "219783107347143426048", - "outputQty0": "219398659964510953648", - "outputQty": "216227607212706271745", + "type": "swap_fp_to_mp", + "inputQty": "731285325247525158912", + "outputIndex": 2, + "outputQty": "726601343786903172498", + "swapFee": "0", + "redemptionFee": "435198825961724880", "mpReserves": [ - "61950235721178445976476767", - "28788067127944974306239089", - "28087221516542226206788036" + "54717997576883485725343993", + "11830171077518727215448732", + "34779055075247228947765606" ], "fpReserves": [ - "19707456403094025361143877", - "5386005799602714544197004" + "2011446541122817455563870", + "4927625347443364237342566" ], - "mAssetSupply": "118793908982134766260164600", - "LPTokenSupply": "24818926056503139141375049" + "mAssetSupply": "101130152391655585732218919", + "LPTokenSupply": "6775841000441528726376953" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "6828946501786173177856", - "outputQty0": "6838645947849336393198", - "outputQty": "6721401927769475089491", - "swapFee": "5391837582891381109", + "type": "mint", + "inputIndex": 0, + "inputQty": "4419322187199896616960", + "outputQty0": "4387168639204403400496", + "outputQty": "4308842211968911512546", "mpReserves": [ - "61950235721178445976476767", - "28788067127944974306239089", - "28094050463044012379965892" + "54722416899070685621960953", + "11830171077518727215448732", + "34779055075247228947765606" ], "fpReserves": [ - "19714295049041874697537075", - "5379284397674945069107513" + "2015833709762021858964366", + "4927625347443364237342566" ], - "mAssetSupply": "118800747628082615596557798", - "LPTokenSupply": "24818926595686897430513159" + "mAssetSupply": "101134539560294790135619415", + "LPTokenSupply": "6780149842653497637889499" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "20264715907666576", - "outputQty0": "20293487635432799", - "outputQty": "19945119554620761", - "swapFee": "15999982069566", + "inputIndex": 0, + "inputQty": "197054047259426012790784", + "outputQty0": "195616711975316650006972", + "outputQty": "196875744726949772914829", + "swapFee": "153626163600344939802", "mpReserves": [ - "61950235721178445976476767", - "28788067127944974306239089", - "28094050483308728287632468" + "54919470946330111634751737", + "11830171077518727215448732", + "34779055075247228947765606" ], "fpReserves": [ - "19714295069335362332969874", - "5379284377729825514486752" + "2211450421737338508971338", + "4730749602716414464427737" ], - "mAssetSupply": "118800747648376103231990597", - "LPTokenSupply": "24818926595688497428720115" + "mAssetSupply": "101330156272270106785626387", + "LPTokenSupply": "6780165205269857672383479" }, { "type": "swap_fp_to_mp", - "inputQty": "14929471516223335301120", + "inputQty": "25398553219748522360832", "outputIndex": 0, - "outputQty": "15197826047010987633042", + "outputQty": "25405541634882860884732", "swapFee": "0", - "redemptionFee": "6070929338035562615", + "redemptionFee": "15140983418770403562", "mpReserves": [ - "61935037895131434988843725", - "28788067127944974306239089", - "28094050483308728287632468" + "54894065404695228773867005", + "11830171077518727215448732", + "34779055075247228947765606" ], "fpReserves": [ - "19699117745990273426431844", - "5394213849246048849787872" + "2186215449372721169700430", + "4756148155936162986788569" ], - "mAssetSupply": "118785576395960352361015182", - "LPTokenSupply": "24818926595688497428720115" + "mAssetSupply": "101304936440888908216759041", + "LPTokenSupply": "6780165205269857672383479" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1062292884476776448", - "outputQty0": "1063800290554238856", - "outputQty": "1045643012119950863", - "swapFee": "838749633310840", + "inputIndex": 0, + "inputQty": "11704023498731358208", + "outputQty0": "11618496263415006210", + "outputQty": "11685672401278075195", + "swapFee": "9118517846253128", "mpReserves": [ - "61935037895131434988843725", - "28788067127944974306239089", - "28094051545601612764408916" + "54894077108718727505225213", + "11830171077518727215448732", + "34779055075247228947765606" ], "fpReserves": [ - "19699118809790563980670700", - "5394212803603036729837009" + "2186227067868984584706640", + "4756136470263761708713374" ], - "mAssetSupply": "118785577459760642915254038", - "LPTokenSupply": "24818926595772372392051199" + "mAssetSupply": "101304948059385171631765251", + "LPTokenSupply": "6780165206181709457008791" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "341843761048048566272", - "outputQty0": "342281063120306458200", - "outputQty": "337337871427772398767", + "type": "redeem", + "outputIndex": 1, + "inputQty": "30987202057351496466432", + "outputQty0": "31565329067974952953180", + "outputQty": "30805104173772955395556", + "swapFee1": "18592321234410897879", + "swapFee2": "18939197440784971771", "mpReserves": [ - "61935037895131434988843725", - "28788408971706022354805361", - "28094051545601612764408916" + "54894077108718727505225213", + "11799365973344954260053176", + "34779055075247228947765606" ], "fpReserves": [ - "19699461090853684287128900", - "5394212803603036729837009" + "2154661738801009631753460", + "4756136470263761708713374" ], - "mAssetSupply": "118785919740823763221712238", - "LPTokenSupply": "24819263933643800164449966" + "mAssetSupply": "101273401669514637463783842", + "LPTokenSupply": "6749179863356481401632146" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "56097428528052727447552", - "outputQty0": "56884802445021508870738", - "outputQty": "56781215077688809118374", - "swapFee1": "33658457116831636468", - "swapFee2": "22753920978008603548", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "31173472501586158682112", + "outputQty0": "31923598922202085580470", + "outputQty": "32109704175959243565981", + "swapFee": "25056005569447597169", "mpReserves": [ - "61935037895131434988843725", - "28788408971706022354805361", - "28037270330523923955290542" + "54894077108718727505225213", + "11830539445846540418735288", + "34779055075247228947765606" ], "fpReserves": [ - "19642576288408662778258162", - "5394212803603036729837009" + "2186585337723211717333930", + "4724026766087802465147393" ], - "mAssetSupply": "118729057692299719721445048", - "LPTokenSupply": "24763169870961459120166060" + "mAssetSupply": "101305325268436839549364312", + "LPTokenSupply": "6749182368957038346391862" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "756240839890823247036416", - "outputQty0": "757275761780853789815342", - "outputQty": "746263725211494371493033", + "inputQty": "105776877326408911683584", + "outputQty0": "105528641780389968594550", + "outputQty": "106085172439778799632121", + "swapFee": "82800327831404933513", "mpReserves": [ - "61935037895131434988843725", - "28788408971706022354805361", - "28793511170414747202326958" + "54894077108718727505225213", + "11830539445846540418735288", + "34884831952573637859449190" ], "fpReserves": [ - "20399852050189516568073504", - "5394212803603036729837009" + "2292113979503601685928480", + "4617941593648023665515272" ], - "mAssetSupply": "119486333454080573511260390", - "LPTokenSupply": "25509433596172953491659093" + "mAssetSupply": "101410853910217229517958862", + "LPTokenSupply": "6749190648989821486885213" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "10432585999337072640", - "outputQty0": "10446265134081646877", - "outputQty": "10257572818786525419", - "swapFee": "8234519653598824", + "inputQty": "244351583910427862499328", + "outputQty0": "250106236049902922173220", + "outputQty": "251112126613792999534639", + "swapFee": "196093515167924690108", "mpReserves": [ - "61935037895131434988843725", - "28788419404292021691878001", - "28793511170414747202326958" + "54894077108718727505225213", + "12074891029756968281234616", + "34884831952573637859449190" ], "fpReserves": [ - "20399862496454650649720381", - "5394202546030217943311590" + "2542220215553504608101700", + "4366829467034230665980633" ], - "mAssetSupply": "119486343900345707592907267", - "LPTokenSupply": "25509433596996405457018975" + "mAssetSupply": "101660960146267132440132082", + "LPTokenSupply": "6749210258341338279354223" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "11780126188547766272", - "outputQty0": "11759946437127970934", - "outputQty": "11587575474639555520", + "type": "redeem", + "outputIndex": 1, + "inputQty": "12190115128958240423936", + "outputQty0": "12439388371229032836971", + "outputQty": "12151322353302785055491", + "swapFee1": "7314069077374944254", + "swapFee2": "7463633022737419702", + "mpReserves": [ + "54894077108718727505225213", + "12062739707403665496179125", + "34884831952573637859449190" + ], + "fpReserves": [ + "2529780827182275575264729", + "4366829467034230665980633" + ], + "mAssetSupply": "101648528221528926144714813", + "LPTokenSupply": "6737020874619287776424712" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "36259324297869552254976", + "outputQty0": "36998683096596621266990", + "outputQty": "36138569886550289113575", + "swapFee1": "21755594578721731352", + "swapFee2": "22199209857957972760", + "mpReserves": [ + "54894077108718727505225213", + "12026601137517115207065550", + "34884831952573637859449190" + ], + "fpReserves": [ + "2492782144085678953997739", + "4366829467034230665980633" + ], + "mAssetSupply": "101611551737642187481420583", + "LPTokenSupply": "6700763725880876096342871" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "140264861014443551621120", + "outputQty0": "143093233159445635961910", + "outputQty": "139719356024094484666085", + "swapFee1": "84158916608666130972", + "swapFee2": "85855939895667381577", "mpReserves": [ - "61935049675257623536609997", - "28788419404292021691878001", - "28793511170414747202326958" + "54894077108718727505225213", + "11886881781493020722399465", + "34884831952573637859449190" ], "fpReserves": [ - "20399874256401087777691315", - "5394202546030217943311590" + "2349688910926233318035829", + "4366829467034230665980633" ], - "mAssetSupply": "119486355660292144720878201", - "LPTokenSupply": "25509445184571880096574495" + "mAssetSupply": "101468544360422637512840250", + "LPTokenSupply": "6560507280758093411334848" }, { "type": "mint", "inputIndex": 0, - "inputQty": "8257792535841955905536", - "outputQty0": "8243645105730028837004", - "outputQty": "8122803798093013778645", + "inputQty": "8221170000735591464960", + "outputQty0": "8161443600611171106187", + "outputQty": "7996661961948752241733", "mpReserves": [ - "61943307467793465492515533", - "28788419404292021691878001", - "28793511170414747202326958" + "54902298278719463096690173", + "11886881781493020722399465", + "34884831952573637859449190" ], "fpReserves": [ - "20408117901506817806528319", - "5394202546030217943311590" + "2357850354526844489142016", + "4366829467034230665980633" ], - "mAssetSupply": "119494599305397874749715205", - "LPTokenSupply": "25517567988369973110353140" + "mAssetSupply": "101476705804023248683946437", + "LPTokenSupply": "6568503942720042163576581" }, { "type": "mint", "inputIndex": 0, - "inputQty": "115412131292558535950336", - "outputQty0": "115214079803775886952658", - "outputQty": "113523015881272507695592", + "inputQty": "648620664300812160204800", + "outputQty0": "643869618224796020595258", + "outputQty": "630403818923359227381092", "mpReserves": [ - "62058719599086024028465869", - "28788419404292021691878001", - "28793511170414747202326958" + "55550918943020275256894973", + "11886881781493020722399465", + "34884831952573637859449190" ], "fpReserves": [ - "20523331981310593693480977", - "5394202546030217943311590" + "3001719972751640509737274", + "4366829467034230665980633" ], - "mAssetSupply": "119609813385201650636667863", - "LPTokenSupply": "25631091004251245618048732" + "mAssetSupply": "102120575422248044704541695", + "LPTokenSupply": "7198907761643401390957673" }, { - "type": "swap_fp_to_mp", - "inputQty": "56643422834845400", - "outputIndex": 0, - "outputQty": "57725838509580609", - "swapFee": "0", - "redemptionFee": "23059874816160", - "mpReserves": [ - "62058719541360185518885260", - "28788419404292021691878001", - "28793511170414747202326958" - ], - "fpReserves": [ - "20523331923660906653079569", - "5394202602673640778156990" - ], - "mAssetSupply": "119609813327575023471082615", - "LPTokenSupply": "25631091004251245618048732" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "51449086999146643456", - "outputIndex": 1, - "outputQty": "52273262132570955431", - "swapFee": "0", - "redemptionFee": "20945225938531068", + "type": "mint", + "inputIndex": 0, + "inputQty": "83021668737606208", + "outputQty0": "82408634392498163", + "outputQty": "80636895383123401", "mpReserves": [ - "62058719541360185518885260", - "28788367131029889120922570", - "28793511170414747202326958" + "55550919026041943994501181", + "11886881781493020722399465", + "34884831952573637859449190" ], "fpReserves": [ - "20523279560596060325407327", - "5394254051760639924800446" + "3001720055160274902235437", + "4366829467034230665980633" ], - "mAssetSupply": "119609760985455403081941441", - "LPTokenSupply": "25631091004251245618048732" + "mAssetSupply": "102120575504656679097039858", + "LPTokenSupply": "7198907842280296774081074" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "1119434908500366983168", - "outputQty0": "1120909405207194658364", - "outputQty": "1100459182272815520703", - "swapFee": "883549869574059020", + "inputQty": "16729218744096747520", + "outputQty0": "17134416358814269971", + "outputQty": "16766035879849971827", "mpReserves": [ - "62058719541360185518885260", - "28789486565938389487905738", - "28793511170414747202326958" + "55550919026041943994501181", + "11886898510711764819146985", + "34884831952573637859449190" ], "fpReserves": [ - "20524400470001267520065691", - "5393153592578367109279743" + "3001737189576633716505408", + "4366829467034230665980633" ], - "mAssetSupply": "119610881894860610276599805", - "LPTokenSupply": "25631091092606232575454634" + "mAssetSupply": "102120592639073037911309829", + "LPTokenSupply": "7198924608316176624052901" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "14667719724190712987648", - "outputQty0": "14877536760642996604372", - "outputQty": "14852007555042812271019", - "swapFee1": "8800631834514427792", - "swapFee2": "5951014704257198641", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "246191105879338504945664", + "outputQty0": "244367691072735592180629", + "outputQty": "244689114888593745480896", + "swapFee": "191257132257438813210", "mpReserves": [ - "62058719541360185518885260", - "28774634558383346675634719", - "28793511170414747202326958" + "55797110131921282499446845", + "11886898510711764819146985", + "34884831952573637859449190" ], "fpReserves": [ - "20509522933240624523461319", - "5393153592578367109279743" + "3246104880649369308686037", + "4122140352145636920499737" ], - "mAssetSupply": "119596010309114671537194074", - "LPTokenSupply": "25616424252945225313909765" + "mAssetSupply": "102364960330145773503490458", + "LPTokenSupply": "7198943734029402367934222" }, { "type": "swap_fp_to_mp", - "inputQty": "16879238492416563478528", + "inputQty": "31502692823736466276352", "outputIndex": 0, - "outputQty": "17200521091418452427436", + "outputQty": "31666047804453103665179", "swapFee": "0", - "redemptionFee": "6871130156912846416", + "redemptionFee": "18869857498236150910", "mpReserves": [ - "62041519020268767066457824", - "28774634558383346675634719", - "28793511170414747202326958" + "55765444084116829395781666", + "11886898510711764819146985", + "34884831952573637859449190" ], "fpReserves": [ - "20492345107848342407419228", - "5410032831070783672758271" + "3214655118152309057168834", + "4153643044969373386776089" ], - "mAssetSupply": "119578839354852546333998399", - "LPTokenSupply": "25616424252945225313909765" + "mAssetSupply": "102333529437506211488124165", + "LPTokenSupply": "7198943734029402367934222" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "28915782158511350218752", - "outputQty0": "28866069671265276418325", - "outputQty": "28442543034108136562511", + "type": "redeem", + "outputIndex": 0, + "inputQty": "3093745814388859904", + "outputQty0": "3161518144790784620", + "outputQty": "3183251157207765387", + "swapFee1": "1856247488633315", + "swapFee2": "1896910886874470", "mpReserves": [ - "62070434802427278416676576", - "28774634558383346675634719", - "28793511170414747202326958" + "55765440900865672188016279", + "11886898510711764819146985", + "34884831952573637859449190" ], "fpReserves": [ - "20521211177519607683837553", - "5410032831070783672758271" + "3214651956634164266384214", + "4153643044969373386776089" ], - "mAssetSupply": "119607705424523811610416724", - "LPTokenSupply": "25644866795979333450472276" + "mAssetSupply": "102333526277884977584214015", + "LPTokenSupply": "7198940640469212727937649" }, { "type": "swap_fp_to_mp", - "inputQty": "71816166753878286336", - "outputIndex": 2, - "outputQty": "72960023625837467475", + "inputQty": "165263984383114016", + "outputIndex": 1, + "outputQty": "160956925935327666", "swapFee": "0", - "redemptionFee": "29234115343254659", + "redemptionFee": "98985647383665", "mpReserves": [ - "62070434802427278416676576", - "28774634558383346675634719", - "28793438210391121364859483" + "55765440900865672188016279", + "11886898349754838883819319", + "34884831952573637859449190" ], "fpReserves": [ - "20521138092231249547189355", - "5410104647237537551044607" + "3214651791658085293608553", + "4153643210233357769890105" ], - "mAssetSupply": "119607632368469568817023185", - "LPTokenSupply": "25644866795979333450472276" + "mAssetSupply": "102333526113007884258822019", + "LPTokenSupply": "7198940640469212727937649" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "799617932916293888", - "outputQty0": "811041343690851368", - "outputQty": "812113663953382381", - "swapFee1": "479770759749776", - "swapFee2": "324416537476340", - "mpReserves": [ - "62070433990313614463294195", - "28774634558383346675634719", - "28793438210391121364859483" - ], - "fpReserves": [ - "20521137281189905856337987", - "5410104647237537551044607" - ], - "mAssetSupply": "119607631557752641663648157", - "LPTokenSupply": "25644865996409377610153365" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "256403922679296256", - "outputQty0": "256742354032320485", - "outputQty": "252082275087287511", - "swapFee": "202379436815948", + "type": "swap_fp_to_mp", + "inputQty": "1013735558893237632", + "outputIndex": 1, + "outputQty": "987315894150502265", + "swapFee": "0", + "redemptionFee": "607181720285961", "mpReserves": [ - "62070433990313614463294195", - "28774634814787269354930975", - "28793438210391121364859483" + "55765440900865672188016279", + "11886897362438944733317054", + "34884831952573637859449190" ], "fpReserves": [ - "20521137537932259888658472", - "5410104395155262463757096" + "3214650779688551483672927", + "4153644223968916663127737" ], - "mAssetSupply": "119607631814494995695968642", - "LPTokenSupply": "25644865996429615553834959" + "mAssetSupply": "102333525101645532169172354", + "LPTokenSupply": "7198940640469212727937649" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "14440096414833825546240", - "outputQty0": "14459086915190608271024", - "outputQty": "14195932546015178823459", - "swapFee": "11397477979628220497", + "inputIndex": 0, + "inputQty": "23417920729976515067904", + "outputQty0": "23244034607666314316179", + "outputQty": "23264903752194992871658", + "swapFee": "18185426312615802105", "mpReserves": [ - "62070433990313614463294195", - "28774634814787269354930975", - "28807878306805955190405723" + "55788858821595648703084183", + "11886897362438944733317054", + "34884831952573637859449190" ], "fpReserves": [ - "20535596624847450496929496", - "5395908462609247284933637" + "3237894814296217797989106", + "4130379320216721670256079" ], - "mAssetSupply": "119622090901410186304239666", - "LPTokenSupply": "25644867136177413516657008" + "mAssetSupply": "102356769136253198483488533", + "LPTokenSupply": "7198942459011843989517859" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "11094847757667883008", - "outputQty0": "11253592401532241459", - "outputQty": "11268463367289224398", - "swapFee1": "6656908654600729", - "swapFee2": "4501436960612896", + "inputQty": "64871725484690718588928", + "outputQty0": "66293638596497638186902", + "outputQty": "66749234204187893758973", + "swapFee1": "38923035290814431153", + "swapFee2": "39776183157898582912", "mpReserves": [ - "62070422721850247174069797", - "28774634814787269354930975", - "28807878306805955190405723" + "55722109587391460809325210", + "11886897362438944733317054", + "34884831952573637859449190" ], "fpReserves": [ - "20535585371255048964688037", - "5395908462609247284933637" + "3171601175699720159802204", + "4130379320216721670256079" ], - "mAssetSupply": "119622079652319221732611103", - "LPTokenSupply": "25644856041995346714234072" + "mAssetSupply": "102290515273839858743884543", + "LPTokenSupply": "7134074625830682352372046" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "157990106538143252480", - "outputQty0": "160250618526926393880", - "outputQty": "159975257715241174349", - "swapFee1": "94794063922885951", - "swapFee2": "64100247410770557", + "type": "swap_fp_to_mp", + "inputQty": "549928376445687296", + "outputIndex": 2, + "outputQty": "549860119292775474", + "swapFee": "0", + "redemptionFee": "329363586618070", "mpReserves": [ - "62070422721850247174069797", - "28774474839529554113756626", - "28807878306805955190405723" + "55722109587391460809325210", + "11886897362438944733317054", + "34884831402713518566673716" ], "fpReserves": [ - "20535425120636522038294157", - "5395908462609247284933637" + "3171600626760409129685506", + "4130379870145098115943375" ], - "mAssetSupply": "119621919465800942216987780", - "LPTokenSupply": "25644698061368214963270187" + "mAssetSupply": "102290514725229911300385915", + "LPTokenSupply": "7134074625830682352372046" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "21842945116684370837504", "outputIndex": 0, - "inputQty": "3506130057219753902080", - "outputQty0": "3556293498158805619799", - "outputQty": "3560992670451904293964", - "swapFee1": "2103678034331852341", - "swapFee2": "1422517399263522247", + "outputQty": "21952358844249325606384", + "swapFee": "0", + "redemptionFee": "13081620862942523891", "mpReserves": [ - "62066861729179795269775833", - "28774474839529554113756626", - "28807878306805955190405723" + "55700157228547211483718826", + "11886897362438944733317054", + "34884831402713518566673716" ], "fpReserves": [ - "20531868827138363232674358", - "5395908462609247284933637" + "3149797925322171589866574", + "4152222815261782486780879" ], - "mAssetSupply": "119618364594820182674890228", - "LPTokenSupply": "25641192141678798642553341" + "mAssetSupply": "102268725105412536703090874", + "LPTokenSupply": "7134074625830682352372046" }, { "type": "swap_fp_to_mp", - "inputQty": "534126692804426343645184", - "outputIndex": 2, - "outputQty": "541728037497480644190530", + "inputQty": "47304994210766217216", + "outputIndex": 1, + "outputQty": "46067319098251169810", "swapFee": "0", - "redemptionFee": "217071751806878852959", - "mpReserves": [ - "62066861729179795269775833", - "28774474839529554113756626", - "28266150269308474546215193" - ], - "fpReserves": [ - "19989189447621166100275403", - "5930035155413673628578821" - ], - "mAssetSupply": "119075902287054792421344232", - "LPTokenSupply": "25641192141678798642553341" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "3561704060091437568", - "outputQty0": "3555484997125372077", - "outputQty": "3502170929142320939", - "swapFee": "2804629521882763", + "redemptionFee": "28329451532586225", "mpReserves": [ - "62066865290883855361213401", - "28774474839529554113756626", - "28266150269308474546215193" + "55700157228547211483718826", + "11886851295119846482147244", + "34884831402713518566673716" ], "fpReserves": [ - "19989193003106163225647480", - "5930031653242744486257882" + "3149750709569617279490896", + "4152270120255993252998095" ], - "mAssetSupply": "119075905842539789546716309", - "LPTokenSupply": "25641192141959261594741617" + "mAssetSupply": "102268677917989433925301421", + "LPTokenSupply": "7134074625830682352372046" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "23347153613751627776", - "outputQty0": "23379785340999633905", - "outputQty": "23029206635806948163", - "swapFee": "18442388522975632", + "type": "redeem", + "outputIndex": 2, + "inputQty": "5212902658965371879424", + "outputQty0": "5326681074779690230084", + "outputQty": "5335621721863538630955", + "swapFee1": "3127741595379223127", + "swapFee2": "3196008644867814138", "mpReserves": [ - "62066865290883855361213401", - "28774474839529554113756626", - "28266173616462088297842969" + "55700157228547211483718826", + "11886851295119846482147244", + "34879495780991655028042761" ], "fpReserves": [ - "19989216382891504225281385", - "5930008624036108679309719" + "3144424028494837589260812", + "4152270120255993252998095" ], - "mAssetSupply": "119075929222325130546350214", - "LPTokenSupply": "25641192143803500447039180" + "mAssetSupply": "102263354432923299102885475", + "LPTokenSupply": "7128862035945876518414934" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "8706189422750840389632", - "outputQty0": "8690985880891247984372", - "outputQty": "8560466439711055466687", - "swapFee": "6855594845694060149", + "inputQty": "7309680456624733421568", + "outputQty0": "7255498259014279926708", + "outputQty": "7263379388724401500132", + "swapFee": "5676998430813551653", "mpReserves": [ - "62075571480306606201603033", - "28774474839529554113756626", - "28266173616462088297842969" + "55707466909003836217140394", + "11886851295119846482147244", + "34879495780991655028042761" ], "fpReserves": [ - "19997907368772395473265757", - "5921448157596397623843032" + "3151679526753851869187520", + "4145006740867268851497963" ], - "mAssetSupply": "119084620208206021794334586", - "LPTokenSupply": "25641192829362985016445194" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "238920651957067176738816", - "outputQty0": "239226038929265846025843", - "outputQty": "235471681604981418669348", - "swapFee": "188697235452385291888", - "mpReserves": [ - "62075571480306606201603033", - "29013395491486621290495442", - "28266173616462088297842969" - ], - "fpReserves": [ - "20237133407701661319291600", - "5685976475991416205173684" - ], - "mAssetSupply": "119323846247135287640360429", - "LPTokenSupply": "25641211699086530254974382" + "mAssetSupply": "102270609931182313382812183", + "LPTokenSupply": "7128862603645719599770099" }, { "type": "swap_fp_to_mp", - "inputQty": "289397929472880780771328", - "outputIndex": 2, - "outputQty": "293195167057864759629310", - "swapFee": "0", - "redemptionFee": "117493069308163607283", - "mpReserves": [ - "62075571480306606201603033", - "29013395491486621290495442", - "27972978449404223538213659" - ], - "fpReserves": [ - "19943400734431252301081957", - "5975374405464296985945012" - ], - "mAssetSupply": "119030231066934186785758069", - "LPTokenSupply": "25641211699086530254974382" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "848993154940369502208", + "inputQty": "576941832506049761902592", "outputIndex": 1, - "outputQty": "859601551345692711326", + "outputQty": "560459663089733656695475", "swapFee": "0", - "redemptionFee": "344407159506660656", + "redemptionFee": "345068249854232276080", "mpReserves": [ - "62075571480306606201603033", - "29012535889935275597784116", - "27972978449404223538213659" + "55707466909003836217140394", + "11326391632030112825451769", + "34879495780991655028042761" ], "fpReserves": [ - "19942539716532485649440426", - "5976223398619237355447220" + "2576565776996798075719283", + "4721948573373318613400555" ], - "mAssetSupply": "119029370393442579640777194", - "LPTokenSupply": "25641211699086530254974382" + "mAssetSupply": "101695841249675113821620026", + "LPTokenSupply": "7128862603645719599770099" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "117393165284453057036288", - "outputQty0": "118977912903246420478900", - "outputQty": "118756234708040741327523", - "swapFee1": "70435899170671834221", - "swapFee2": "47591165161298568191", - "mpReserves": [ - "62075571480306606201603033", - "29012535889935275597784116", - "27854222214696182796886136" - ], - "fpReserves": [ - "19823561803629239228961526", - "5976223398619237355447220" - ], - "mAssetSupply": "118910440071704494518866485", - "LPTokenSupply": "25523825577391994265121516" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "287070067634824216576", - "outputIndex": 2, - "outputQty": "290548007196199846257", - "swapFee": "0", - "redemptionFee": "116437282541325413", + "inputQty": "1539764321557704343552", + "outputQty0": "1570722675626352129511", + "outputQty": "1573731933686571356963", + "swapFee1": "923858592934622606", + "swapFee2": "942433605375811277", "mpReserves": [ - "62075571480306606201603033", - "29012535889935275597784116", - "27853931666688986597039879" + "55707466909003836217140394", + "11326391632030112825451769", + "34877922049057968456685798" ], "fpReserves": [ - "19823270710422885915427796", - "5976510468686872179663796" + "2574995054321171723589772", + "4721948573373318613400555" ], - "mAssetSupply": "118910149094935423746658168", - "LPTokenSupply": "25523825577391994265121516" + "mAssetSupply": "101694271469433092845301792", + "LPTokenSupply": "7127322931710021188888807" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "425308536497056505659392", - "outputQty0": "424557433073600304857522", - "outputQty": "417865101852456887919841", - "swapFee": "334905726595222199184", + "type": "redeem", + "outputIndex": 0, + "inputQty": "64626875616684507398144", + "outputQty0": "65920586398816398856130", + "outputQty": "66397318865562113395737", + "swapFee1": "38776125370010704438", + "swapFee2": "39552351839289839313", "mpReserves": [ - "62500880016803662707262425", - "29012535889935275597784116", - "27853931666688986597039879" + "55641069590138274103744657", + "11326391632030112825451769", + "34877922049057968456685798" ], "fpReserves": [ - "20247828143496486220285318", - "5558645366834415291743955" + "2509074467922355324733642", + "4721948573373318613400555" ], - "mAssetSupply": "119334706528009024051515690", - "LPTokenSupply": "25523859067964653787341434" + "mAssetSupply": "101628390435386115736284975", + "LPTokenSupply": "7062699933705873682561106" }, { "type": "swap_fp_to_mp", - "inputQty": "136281541444498911920128", - "outputIndex": 2, - "outputQty": "138203750298968511864704", + "inputQty": "102642457802278256640", + "outputIndex": 0, + "outputQty": "102876105994532419456", "swapFee": "0", - "redemptionFee": "55387113271441162560", + "redemptionFee": "61282862966200469", "mpReserves": [ - "62500880016803662707262425", - "29012535889935275597784116", - "27715727916390018085175175" + "55640966714032279571325201", + "11326391632030112825451769", + "34877922049057968456685798" ], "fpReserves": [ - "20109360360317883313884123", - "5694926908278914203664083" + "2508972329817411657284567", + "4722051215831120891657195" ], - "mAssetSupply": "119196294131943692586277055", - "LPTokenSupply": "25523859067964653787341434" + "mAssetSupply": "101628288358564035035036369", + "LPTokenSupply": "7062699933705873682561106" }, { "type": "swap_fp_to_mp", - "inputQty": "73226127432787808", - "outputIndex": 1, - "outputQty": "74246659359460629", + "inputQty": "7768590695480420204544", + "outputIndex": 0, + "outputQty": "7786076606676033529644", "swapFee": "0", - "redemptionFee": "29747861914070", + "redemptionFee": "4638136530717664396", "mpReserves": [ - "62500880016803662707262425", - "29012535815688616238323487", - "27715727916390018085175175" + "55633180637425603537795557", + "11326391632030112825451769", + "34877922049057968456685798" ], "fpReserves": [ - "20109360285948228528707521", - "5694926981505041636451891" + "2501242102266215549957005", + "4729819806526601311861739" ], - "mAssetSupply": "119196294057603785663014523", - "LPTokenSupply": "25523859067964653787341434" + "mAssetSupply": "101620562769149369645373203", + "LPTokenSupply": "7062699933705873682561106" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "256715821893706275880960", - "outputQty0": "260264563289505494958194", - "outputQty": "259829059788923432221524", - "swapFee1": "154029493136223765528", - "swapFee2": "104105825315802197983", + "inputQty": "14783076063380305920", + "outputQty0": "15077296293204628378", + "outputQty": "14675654479148697678", + "swapFee1": "8869845638028183", + "swapFee2": "9046377775922777", "mpReserves": [ - "62500880016803662707262425", - "28752706755899692806101963", - "27715727916390018085175175" + "55633180637425603537795557", + "11326376956375633676754091", + "34877922049057968456685798" ], "fpReserves": [ - "19849095722658723033749327", - "5694926981505041636451891" + "2501227024969922345328627", + "4729819806526601311861739" ], - "mAssetSupply": "118936133600139595970254312", - "LPTokenSupply": "25267158649020261133837026" + "mAssetSupply": "101620547700899454216667602", + "LPTokenSupply": "7062685151516794866058004" }, { - "type": "swap_fp_to_mp", - "inputQty": "2698442527934717624320", - "outputIndex": 1, - "outputQty": "2734983811197107900993", - "swapFee": "0", - "redemptionFee": "1095848949373927610", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "968595239951502278656", + "outputQty0": "994504398509690396165", + "outputQty": "998661615512581709910", + "swapFee": "779608935093171811", "mpReserves": [ - "62500880016803662707262425", - "28749971772088495698200970", - "27715727916390018085175175" + "55633180637425603537795557", + "11327345551615585179032747", + "34877922049057968456685798" ], "fpReserves": [ - "19846356100285288214722113", - "5697625424032976354076211" + "2502221529368432035724792", + "4728821144911088730151829" ], - "mAssetSupply": "118933395073615110525154708", - "LPTokenSupply": "25267158649020261133837026" + "mAssetSupply": "101621542205297963907063767", + "LPTokenSupply": "7062685229477688375375185" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "841524839791462784", - "outputQty0": "842615069851662557", - "outputQty": "829292172582723849", - "swapFee": "664526063065801", + "inputQty": "128941031210281856925696", + "outputQty0": "132350751023433649950547", + "outputQty": "129667510170935472759176", "mpReserves": [ - "62500880016803662707262425", - "28749972613613335489663754", - "27715727916390018085175175" + "55633180637425603537795557", + "11456286582825867035958443", + "34877922049057968456685798" ], "fpReserves": [ - "19846356942900358066384670", - "5697624594740803771352362" + "2634572280391865685675339", + "4728821144911088730151829" ], - "mAssetSupply": "118933395916230180376817265", - "LPTokenSupply": "25267158649086713740143606" + "mAssetSupply": "101753892956321397557014314", + "LPTokenSupply": "7192352739648623848134361" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "299592047294989048217600", - "outputQty0": "299051850774515164998252", - "outputQty": "294055363823513944486508", - "swapFee": "235836009824515242160", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1053947851779003383808", + "outputQty0": "1075286181202439544766", + "outputQty": "1047258469639776073164", + "swapFee1": "632368711067402030", + "swapFee2": "645171708721463726", "mpReserves": [ - "62800472064098651755480025", - "28749972613613335489663754", - "27715727916390018085175175" + "55633180637425603537795557", + "11455239324356227259885279", + "34877922049057968456685798" ], "fpReserves": [ - "20145408793674873231382922", - "5403569230917289826865854" + "2633496994210663246130573", + "4728821144911088730151829" ], - "mAssetSupply": "119232447767004695541815517", - "LPTokenSupply": "25267182232687696191667822" + "mAssetSupply": "101752818315311903838933274", + "LPTokenSupply": "7191298855033715951490756" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "2868668554730192502784", "outputIndex": 1, - "inputQty": "125664472717084720", - "outputQty0": "127450402497222617", - "outputQty": "127232686649511961", - "swapFee1": "75398683630250", - "swapFee2": "50980160998889", + "outputQty": "2781425456529156485066", + "swapFee": "0", + "redemptionFee": "1713533436647859445", "mpReserves": [ - "62800472064098651755480025", - "28749972486380648840151793", - "27715727916390018085175175" + "55633180637425603537795557", + "11452457898899698103400213", + "34877922049057968456685798" ], "fpReserves": [ - "20145408666224470734160305", - "5403569230917289826865854" + "2630641105149583480388754", + "4731689813465818922654613" ], - "mAssetSupply": "119232447639605273205591789", - "LPTokenSupply": "25267182107030763342946127" + "mAssetSupply": "101749964139784260721050900", + "LPTokenSupply": "7191298855033715951490756" }, { - "type": "swap_fp_to_mp", - "inputQty": "185740982745576423555072", - "outputIndex": 2, - "outputQty": "188444433383080516932351", - "swapFee": "0", - "redemptionFee": "75524165324901022661", + "type": "mint", + "inputIndex": 1, + "inputQty": "37583171220073810493440", + "outputQty0": "38563186773461238282168", + "outputQty": "37773983920392433996893", "mpReserves": [ - "62800472064098651755480025", - "28749972486380648840151793", - "27527283483006937568242824" + "55633180637425603537795557", + "11490041070119771913893653", + "34877922049057968456685798" ], "fpReserves": [ - "19956598252912218177505991", - "5589310213662866250420926" + "2669204291923044718670922", + "4731689813465818922654613" ], - "mAssetSupply": "119043712750458345549960136", - "LPTokenSupply": "25267182107030763342946127" + "mAssetSupply": "101788527326557721959333068", + "LPTokenSupply": "7229072838954108385487649" }, { - "type": "swap_fp_to_mp", - "inputQty": "66186516303559388037120", - "outputIndex": 1, - "outputQty": "67111828542795039561357", - "swapFee": "0", - "redemptionFee": "26890571661154662854", + "type": "mint", + "inputIndex": 1, + "inputQty": "13447129577825572864", + "outputQty0": "13796620465397335671", + "outputQty": "13513666620767940216", "mpReserves": [ - "62800472064098651755480025", - "28682860657837853800590436", - "27527283483006937568242824" + "55633180637425603537795557", + "11490054517249349739466517", + "34877922049057968456685798" ], "fpReserves": [ - "19889371823759331520370956", - "5655496729966425638458046" + "2669218088543510116006593", + "4731689813465818922654613" ], - "mAssetSupply": "118976513211877120047487955", - "LPTokenSupply": "25267182107030763342946127" + "mAssetSupply": "101788541123178187356668739", + "LPTokenSupply": "7229086352620729153427865" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "96300716892322181152768", - "outputQty0": "96124880452931554377771", - "outputQty": "94753280602331182868917", + "inputIndex": 2, + "inputQty": "24352439837702471680", + "outputQty0": "24292898099617529932", + "outputQty": "23794675855404269754", "mpReserves": [ - "62896772780990973936632793", - "28682860657837853800590436", - "27527283483006937568242824" + "55633180637425603537795557", + "11490054517249349739466517", + "34877946401497806159157478" ], "fpReserves": [ - "19985496704212263074748727", - "5655496729966425638458046" + "2669242381441609733536525", + "4731689813465818922654613" ], - "mAssetSupply": "119072638092330051601865726", - "LPTokenSupply": "25361935387633094525815044" + "mAssetSupply": "101788565416076286974198671", + "LPTokenSupply": "7229110147296584557697619" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "32138740064821236989952", - "outputQty0": "32584709332084420846119", - "outputQty": "32520862326369656804425", - "swapFee1": "19283244038892742193", - "swapFee2": "13033883732833768338", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "74044057082414472626176", + "outputQty0": "73862286947346172666587", + "outputQty": "74108599922378884877741", + "swapFee": "57873180175807420553", "mpReserves": [ - "62896772780990973936632793", - "28682860657837853800590436", - "27494762620680567911438399" + "55633180637425603537795557", + "11490054517249349739466517", + "34951990458580220631783654" ], "fpReserves": [ - "19952911994880178653902608", - "5655496729966425638458046" + "2743104668388955906203112", + "4657581213543440037776872" ], - "mAssetSupply": "119040066416881700014787945", - "LPTokenSupply": "25329798575892677178099311" + "mAssetSupply": "101862427703023633146865258", + "LPTokenSupply": "7229115934614602138439674" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "4796490919606060032", - "outputQty0": "4802800394258049562", - "outputQty": "4725276265795878244", - "swapFee": "3787395605300673", + "inputIndex": 2, + "inputQty": "26580949830893616234496", + "outputQty0": "26515339849821193565537", + "outputQty": "26596622663791627779665", + "swapFee": "20771221470984635165", "mpReserves": [ - "62896772780990973936632793", - "28682865454328773406650468", - "27494762620680567911438399" + "55633180637425603537795557", + "11490054517249349739466517", + "34978571408411114248018150" ], "fpReserves": [ - "19952916797680572911952170", - "5655492004690159842579802" + "2769620008238777099768649", + "4630984590879648409997207" ], - "mAssetSupply": "119040071219682094272837507", - "LPTokenSupply": "25329798576271416738629378" + "mAssetSupply": "101888943042873454340430795", + "LPTokenSupply": "7229118011736749236903190" }, { "type": "swap_fp_to_mp", - "inputQty": "1281496512459348377600", + "inputQty": "160130207823026408390656", "outputIndex": 0, - "outputQty": "1303338453446033808144", + "outputQty": "160585648406918862368339", "swapFee": "0", - "redemptionFee": "520589618357033027", + "redemptionFee": "95673266578278557887", "mpReserves": [ - "62895469442537527902824649", - "28682865454328773406650468", - "27494762620680567911438399" + "55472594989018684675427218", + "11490054517249349739466517", + "34978571408411114248018150" ], "fpReserves": [ - "19951615323634680329382677", - "5656773501202619190957402" + "2610164563941646169956316", + "4791114798702674818387863" ], - "mAssetSupply": "119038770266225820047301041", - "LPTokenSupply": "25329798576271416738629378" + "mAssetSupply": "101729583271842901689176349", + "LPTokenSupply": "7229118011736749236903190" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "13567074956635927478272", - "outputQty0": "13755227780127357402274", - "outputQty": "13731648886907246926615", - "swapFee1": "8140244973981556486", - "swapFee2": "5502091112050942960", + "inputQty": "468541152684541376", + "outputQty0": "477964839408998728", + "outputQty": "465606681956385161", + "swapFee1": "281124691610724", + "swapFee2": "286778903645399", "mpReserves": [ - "62895469442537527902824649", - "28669133805441866159723853", - "27494762620680567911438399" + "55472594989018684675427218", + "11490054051642667783081356", + "34978571408411114248018150" ], "fpReserves": [ - "19937860095854552971980403", - "5656773501202619190957402" + "2610164085976806760957588", + "4791114798702674818387863" ], - "mAssetSupply": "119025020540536804740841727", - "LPTokenSupply": "25316232315339278209306754" + "mAssetSupply": "101729582794164841183823020", + "LPTokenSupply": "7229117543223709021522886" }, { "type": "mint", "inputIndex": 1, - "inputQty": "343030287815962", - "outputQty0": "343482229470905", - "outputQty": "338581183141316", - "mpReserves": [ - "62895469442537527902824649", - "28669133805784896447539815", - "27494762620680567911438399" - ], - "fpReserves": [ - "19937860096198035201451308", - "5656773501202619190957402" - ], - "mAssetSupply": "119025020540880286970312632", - "LPTokenSupply": "25316232315677859392448070" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "7567100050513133568", - "outputQty0": "7577069683861122841", - "outputQty": "7454958565026555386", - "swapFee": "5975163767555178", + "inputQty": "1921085307839492128768", + "outputQty0": "1970883229900649496194", + "outputQty": "1930860845395255787144", "mpReserves": [ - "62895469442537527902824649", - "28669141372884946960673383", - "27494762620680567911438399" + "55472594989018684675427218", + "11491975136950507275210124", + "34978571408411114248018150" ], "fpReserves": [ - "19937867673267719062574149", - "5656766046244054164402016" + "2612134969206707410453782", + "4791114798702674818387863" ], - "mAssetSupply": "119025028117949970831435473", - "LPTokenSupply": "25316232316275375769203587" + "mAssetSupply": "101731553677394741833319214", + "LPTokenSupply": "7231048404069104277310030" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "32106264519389772", - "outputQty0": "32047491602202700", - "outputQty": "31531017475138671", - "swapFee": "25272172079624", + "inputQty": "311811596922174704713728", + "outputQty0": "309427277856012163953617", + "outputQty": "310365109272916392761794", + "swapFee": "242430419485353548907", "mpReserves": [ - "62895469474643792422214421", - "28669141372884946960673383", - "27494762620680567911438399" + "55784406585940859380140946", + "11491975136950507275210124", + "34978571408411114248018150" ], "fpReserves": [ - "19937867705315210664776849", - "5656766014713036689263345" + "2921562247062719574407399", + "4480749689429758425626069" ], - "mAssetSupply": "119025028149997462433638173", - "LPTokenSupply": "25316232316277902986411549" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "757009666108256830881792", - "hardLimitError": true + "mAssetSupply": "102040980955250753997272831", + "LPTokenSupply": "7231072647111052812664920" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "70369817099670145466368", - "outputQty0": "71344848765189793245404", - "outputQty": "71446980142085694053483", - "swapFee1": "42221890259802087279", - "swapFee2": "28537939506075917298", + "inputQty": "549419242003107136", + "outputQty0": "561055570494434569", + "outputQty": "565056231770618650", + "swapFee1": "329651545201864", + "swapFee2": "336633342296660", "mpReserves": [ - "62824022494501706728160938", - "28669141372884946960673383", - "27494762620680567911438399" + "55784406020884627609522296", + "11491975136950507275210124", + "34978571408411114248018150" ], "fpReserves": [ - "19866522856550020871531445", - "5656766014713036689263345" + "2921561686007149079972830", + "4480749689429758425626069" ], - "mAssetSupply": "118953711839171778716310067", - "LPTokenSupply": "25245866721367258821153908" + "mAssetSupply": "102040980394531816845134922", + "LPTokenSupply": "7231072097724775964077970" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "52498802416133226496", - "outputQty0": "52402875306037162102", - "outputQty": "51563229847384135043", - "swapFee": "41324936801262546", + "type": "swap_fp_to_mp", + "inputQty": "887529988531045189812224", + "outputIndex": 1, + "outputQty": "857714462043864921890662", + "swapFee": "0", + "redemptionFee": "529481560204511420745", "mpReserves": [ - "62824074993304122861387434", - "28669141372884946960673383", - "27494762620680567911438399" + "55784406020884627609522296", + "10634260674906642353319462", + "34978571408411114248018150" ], "fpReserves": [ - "19866575259425326908693547", - "5656714451483189305128302" + "2039092418999630045397197", + "5368279677960803615438293" ], - "mAssetSupply": "118953764242047084753472169", - "LPTokenSupply": "25245866725499752501280162" + "mAssetSupply": "101159040609084502321980034", + "LPTokenSupply": "7231072097724775964077970" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "112904596316241910562816", - "outputQty0": "113051958196679611620681", - "outputQty": "111202680754421566374743", - "swapFee": "89151333887090019703", + "type": "redeem", + "outputIndex": 1, + "inputQty": "158236544423879570882560", + "outputQty0": "160827982535068761126585", + "outputQty": "155901140033801351101067", + "swapFee1": "94941926654327742529", + "swapFee2": "96496789521041256675", "mpReserves": [ - "62824074993304122861387434", - "28782045969201188871236199", - "27494762620680567911438399" + "55784406020884627609522296", + "10478359534872841002218395", + "34978571408411114248018150" ], "fpReserves": [ - "19979627217622006520314228", - "5545511770728767738753559" + "1878264436464561284270612", + "5368279677960803615438293" ], - "mAssetSupply": "119066816200243764365092850", - "LPTokenSupply": "25245875640633141210282132" + "mAssetSupply": "100998309123338954602110124", + "LPTokenSupply": "7072845047493561825969662" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "17905365056909729595392", - "outputQty0": "17933375675043187082910", - "outputQty": "17675035431724410151543", + "type": "swap_fp_to_mp", + "inputQty": "201007763909150674780160", + "outputIndex": 0, + "outputQty": "200123048656793439297041", + "swapFee": "0", + "redemptionFee": "119136542935690444781", "mpReserves": [ - "62824074993304122861387434", - "28782045969201188871236199", - "27512667985737477641033791" + "55584282972227834170225255", + "10478359534872841002218395", + "34978571408411114248018150" ], "fpReserves": [ - "19997560593297049707397138", - "5545511770728767738753559" + "1679703531571743876302056", + "5569287441869954290218453" ], - "mAssetSupply": "119084749575918807552175760", - "LPTokenSupply": "25263550676064865620433675" + "mAssetSupply": "100799867354989072884586349", + "LPTokenSupply": "7072845047493561825969662" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "86559755993689765183488", - "outputQty0": "86401991120679088247211", - "outputQty": "85155978050324253742433", + "type": "redeem", + "outputIndex": 2, + "inputQty": "27302001589609350299648", + "outputQty0": "27664175376249863520157", + "outputQty": "27729353177349436785333", + "swapFee1": "16381200953765610179", + "swapFee2": "16598505225749918112", "mpReserves": [ - "62910634749297812626570922", - "28782045969201188871236199", - "27512667985737477641033791" + "55584282972227834170225255", + "10478359534872841002218395", + "34950842055233764811232817" ], "fpReserves": [ - "20083962584417728795644349", - "5545511770728767738753559" + "1652039356195494012781899", + "5569287441869954290218453" ], - "mAssetSupply": "119171151567039486640422971", - "LPTokenSupply": "25348706654115189874176108" + "mAssetSupply": "100772219778118048770984304", + "LPTokenSupply": "7045544684024047852231031" }, { "type": "swap_fp_to_mp", - "inputQty": "318989645398079443042304", - "outputIndex": 1, - "outputQty": "323321800349382187227147", - "swapFee": "0", - "redemptionFee": "129552125749218067610", - "mpReserves": [ - "62910634749297812626570922", - "28458724168851806684009052", - "27512667985737477641033791" - ], - "fpReserves": [ - "19760082270044683626617462", - "5864501416126847181795863" - ], - "mAssetSupply": "118847400804792190689463694", - "LPTokenSupply": "25348706654115189874176108" + "inputQty": "353215635311201318076416", + "outputIndex": 0, + "hardLimitError": true }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "115964146866054995378176", - "outputQty0": "117540010307908107540952", - "outputQty": "117309669868245022405963", - "swapFee1": "69578488119632997226", - "swapFee2": "47016004123163243016", + "type": "mint", + "inputIndex": 2, + "inputQty": "65632365708398698496", + "outputQty0": "65439064360596747945", + "outputQty": "64553496116272507051", "mpReserves": [ - "62910634749297812626570922", - "28458724168851806684009052", - "27395358315869232618627828" + "55584282972227834170225255", + "10478359534872841002218395", + "34950907687599473209931313" ], "fpReserves": [ - "19642542259736775519076510", - "5864501416126847181795863" + "1652104795259854609529844", + "5569287441869954290218453" ], - "mAssetSupply": "118729907810488405745165758", - "LPTokenSupply": "25232749465097946842097654" + "mAssetSupply": "100772285217182409367732249", + "LPTokenSupply": "7045609237520164124738082" }, { - "type": "swap_fp_to_mp", - "inputQty": "515176638623219", - "outputIndex": 0, - "outputQty": "523276978593227", - "swapFee": "0", - "redemptionFee": "209007704730", + "type": "mint", + "inputIndex": 2, + "inputQty": "341787270148353591083008", + "outputQty0": "340764343389970477295076", + "outputQty": "335606047577164853022605", "mpReserves": [ - "62910634748774535647977695", - "28458724168851806684009052", - "27395358315869232618627828" + "55584282972227834170225255", + "10478359534872841002218395", + "35292694957747826801014321" ], "fpReserves": [ - "19642542259214256257250683", - "5864501416642023820419082" + "1992869138649825086824920", + "5569287441869954290218453" ], - "mAssetSupply": "118729907809966095491044661", - "LPTokenSupply": "25232749465097946842097654" + "mAssetSupply": "101113049560572379845027325", + "LPTokenSupply": "7381215285097328977760687" }, { "type": "swap_fp_to_mp", - "inputQty": "191968656840901678596096", - "outputIndex": 2, - "outputQty": "194220118104584569684821", + "inputQty": "27748266774969284820992", + "outputIndex": 1, + "outputQty": "26602976294900325772016", "swapFee": "0", - "redemptionFee": "77842715630273215999", + "redemptionFee": "16474879186816203063", "mpReserves": [ - "62910634748774535647977695", - "28458724168851806684009052", - "27201138197764648048943007" + "55584282972227834170225255", + "10451756558577940676446379", + "35292694957747826801014321" ], "fpReserves": [ - "19447935470138573217251405", - "6056470073482925499015178" + "1965411006671798081719219", + "5597035708644923575039445" ], - "mAssetSupply": "118535378863606042724261382", - "LPTokenSupply": "25232749465097946842097654" + "mAssetSupply": "101085607903473539656124687", + "LPTokenSupply": "7381215285097328977760687" }, { "type": "mint", "inputIndex": 2, - "inputQty": "89430879226302545920", - "outputQty0": "89574622444924636426", - "outputQty": "88342608545943716229", + "inputQty": "48817795018097631232", + "outputQty0": "48668699079390630648", + "outputQty": "47878997766409133743", "mpReserves": [ - "62910634748774535647977695", - "28458724168851806684009052", - "27201227628643874351488927" + "55584282972227834170225255", + "10451756558577940676446379", + "35292743775542844898645553" ], "fpReserves": [ - "19448025044761018141887831", - "6056470073482925499015178" + "1965459675370877472349867", + "5597035708644923575039445" ], - "mAssetSupply": "118535468438228487648897808", - "LPTokenSupply": "25232837807706492785813883" + "mAssetSupply": "101085656572172619046755335", + "LPTokenSupply": "7381263164095095386894430" }, { "type": "swap_fp_to_mp", - "inputQty": "405008384451490250489856", + "inputQty": "2894538384050559647744", "outputIndex": 1, - "outputQty": "409264185247786599095594", + "outputQty": "2774295533706963644412", "swapFee": "0", - "redemptionFee": "163995590240732100956", + "redemptionFee": "1718232972417719442", "mpReserves": [ - "62910634748774535647977695", - "28049459983604020084913458", - "27201227628643874351488927" + "55584282972227834170225255", + "10448982263044233712801967", + "35292743775542844898645553" ], "fpReserves": [ - "19038036069159187889497006", - "6461478457934415749505034" + "1962595953750181273279327", + "5599930247028974134687189" ], - "mAssetSupply": "118125643458216898128607939", - "LPTokenSupply": "25232837807706492785813883" + "mAssetSupply": "101082794568784895265404237", + "LPTokenSupply": "7381263164095095386894430" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "121097685686917747703808", - "outputQty0": "121266434692895686291870", - "outputQty": "119650534769213518869167", + "type": "redeem", + "outputIndex": 2, + "inputQty": "210264214364987892695040", + "outputQty0": "213418914117207717420396", + "outputQty": "213938219988882173425240", + "swapFee1": "126158528618992735617", + "swapFee2": "128051348470324630452", "mpReserves": [ - "62910634748774535647977695", - "28170557669290937832617266", - "27201227628643874351488927" + "55584282972227834170225255", + "10448982263044233712801967", + "35078805555553962725220313" ], "fpReserves": [ - "19159302503852083575788876", - "6461478457934415749505034" + "1749177039632973555858931", + "5599930247028974134687189" ], - "mAssetSupply": "118246909892909793814899809", - "LPTokenSupply": "25352488342475706304683050" + "mAssetSupply": "100869503706016157872614293", + "LPTokenSupply": "7171011565582969393472951" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "2981964928298907598848", - "outputQty0": "2986716821388580823742", - "outputQty": "2946869745291137367356", + "inputQty": "60001569520568614912", + "outputQty0": "59821795868938973964", + "outputQty": "60561672070866476377", + "swapFee": "47165147266605720", "mpReserves": [ - "62910634748774535647977695", - "28170557669290937832617266", - "27204209593572173259087775" + "55584282972227834170225255", + "10448982263044233712801967", + "35078865557123483293835225" ], "fpReserves": [ - "19162289220673472156612618", - "6461478457934415749505034" + "1749236861428842494832895", + "5599869685356903268210812" ], - "mAssetSupply": "118249896609731182395723551", - "LPTokenSupply": "25355435212220997442050406" + "mAssetSupply": "100869563527812026811588257", + "LPTokenSupply": "7171011570299484120133523" }, { - "type": "swap_fp_to_mp", - "inputQty": "4602354683282718195712", + "type": "redeem", "outputIndex": 0, - "outputQty": "4662265730226937676219", - "swapFee": "0", - "redemptionFee": "1862158406361452502", + "inputQty": "340970214636622464", + "outputQty0": "345767553125521510", + "outputQty": "348486266128820369", + "swapFee1": "204582128781973", + "swapFee2": "207460531875312", "mpReserves": [ - "62905972483044308710301476", - "28170557669290937832617266", - "27204209593572173259087775" + "55584282623741568041404886", + "10448982263044233712801967", + "35078865557123483293835225" ], "fpReserves": [ - "19157633824657568525356229", - "6466080812617698467700746" + "1749236515661289369311385", + "5599869685356903268210812" ], - "mAssetSupply": "118245243075873685125919664", - "LPTokenSupply": "25355435212220997442050406" + "mAssetSupply": "100869563182251934217942059", + "LPTokenSupply": "7171011229349727696389256" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "546070623525308295282688", + "outputIndex": 1, + "hardLimitError": true }, { "type": "mint", "inputIndex": 1, - "inputQty": "215251405115029198995456", - "outputQty0": "215545482170012295761950", - "outputQty": "212664683045023636689740", + "inputQty": "12151561641262520991744", + "outputQty0": "12534033371608644735336", + "outputQty": "12351960454609729207122", "mpReserves": [ - "62905972483044308710301476", - "28385809074405967031612722", - "27204209593572173259087775" + "55584282623741568041404886", + "10461133824685496233793711", + "35078865557123483293835225" ], "fpReserves": [ - "19373179306827580821118179", - "6466080812617698467700746" + "1761770549032898014046721", + "5599869685356903268210812" ], - "mAssetSupply": "118460788558043697421681614", - "LPTokenSupply": "25568099895266021078740146" + "mAssetSupply": "100882097215623542862677395", + "LPTokenSupply": "7183363189804337425596378" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "91933337283109570215936", - "outputQty0": "92056683623613846199286", - "outputQty": "90822640874080393727432", + "type": "swap_fp_to_mp", + "inputQty": "375758660667491745792", + "outputIndex": 1, + "outputQty": "359407411913225822409", + "swapFee": "0", + "redemptionFee": "222557763553424454", "mpReserves": [ - "62905972483044308710301476", - "28477742411689076601828658", - "27204209593572173259087775" + "55584282623741568041404886", + "10460774417273583007971302", + "35078865557123483293835225" ], "fpReserves": [ - "19465235990451194667317465", - "6466080812617698467700746" + "1761399619426975639955465", + "5600245444017570759956604" ], - "mAssetSupply": "118552845241667311267880900", - "LPTokenSupply": "25658922536140101472467578" + "mAssetSupply": "100881726508575384042010593", + "LPTokenSupply": "7183363189804337425596378" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "1226239254967499096064", - "outputQty0": "1242169800139351990399", - "outputQty": "1239680134956915561791", - "swapFee1": "735743552980499457", - "swapFee2": "496867920055740796", + "inputQty": "83729495336660802469888", + "outputQty0": "84881150143597486950189", + "outputQty": "85083615305955388003693", + "swapFee1": "50237697201996481481", + "swapFee2": "50928690086158492170", "mpReserves": [ - "62905972483044308710301476", - "28477742411689076601828658", - "27202969913437216343525984" + "55584282623741568041404886", + "10460774417273583007971302", + "34993781941817527905831532" ], "fpReserves": [ - "19463993820651055315327066", - "6466080812617698467700746" + "1676518469283378153005276", + "5600245444017570759956604" ], - "mAssetSupply": "118551603568735091971631297", - "LPTokenSupply": "25657696370459489271421459" + "mAssetSupply": "100796896287121872713552574", + "LPTokenSupply": "7099638718237396822774638" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "22564927995308719210496", - "outputQty0": "22858005512628061099752", - "outputQty": "22891357936131953212191", - "swapFee1": "13538956797185231526", - "swapFee2": "9143202205051224439", + "outputIndex": 1, + "inputQty": "11255364934450550784", + "outputQty0": "11405131636766473787", + "outputQty": "11051312509289434329", + "swapFee1": "6753218960670330", + "swapFee2": "6843078982059884", "mpReserves": [ - "62883081125108176757089285", - "28477742411689076601828658", - "27202969913437216343525984" + "55584282623741568041404886", + "10460763365961073718536973", + "34993781941817527905831532" ], "fpReserves": [ - "19441135815138427254227314", - "6466080812617698467700746" + "1676507064151741386531489", + "5600245444017570759956604" ], - "mAssetSupply": "118528754706424668961755984", - "LPTokenSupply": "25635132796359860270734115" + "mAssetSupply": "100796884888833314929138671", + "LPTokenSupply": "7099627463547784268290887" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "62904594589799229161472", - "outputQty0": "62787758572528668581280", - "outputQty": "61945169879924668825572", - "mpReserves": [ - "62945985719697975986250757", - "28477742411689076601828658", - "27202969913437216343525984" - ], - "fpReserves": [ - "19503923573710955922808594", - "6466080812617698467700746" - ], - "mAssetSupply": "118591542464997197630337264", - "LPTokenSupply": "25697077966239784939559687" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "1715690935099076902912", - "outputIndex": 0, - "outputQty": "1738606566883869200193", - "swapFee": "0", - "redemptionFee": "694427707857330792", + "inputIndex": 2, + "inputQty": "188688470613663942705152", + "outputQty0": "188123796556915288854070", + "outputQty": "185367531133398538977647", "mpReserves": [ - "62944247113131092117050564", - "28477742411689076601828658", - "27202969913437216343525984" + "55584282623741568041404886", + "10460763365961073718536973", + "35182470412431191848536684" ], "fpReserves": [ - "19502187504441312595828582", - "6467796503552797544603658" + "1864630860708656675385559", + "5600245444017570759956604" ], - "mAssetSupply": "118589807090155262160688044", - "LPTokenSupply": "25697077966239784939559687" + "mAssetSupply": "100985008685390230217992741", + "LPTokenSupply": "7284994994681182807268534" }, { - "type": "swap_fp_to_mp", - "inputQty": "1522031069161970", - "outputIndex": 1, - "outputQty": "1537433040849857", - "swapFee": "0", - "redemptionFee": "616041438097", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "23434596069369896960", + "outputQty0": "23238233154496857409", + "outputQty": "23493455821316962357", + "swapFee": "18302640883595336", "mpReserves": [ - "62944247113131092117050564", - "28477742410151643560978801", - "27202969913437216343525984" + "55584306058337637411301846", + "10460763365961073718536973", + "35182470412431191848536684" ], "fpReserves": [ - "19502187502901209000584239", - "6467796505074828613765628" + "1864654098941811172242968", + "5600221950561749442994247" ], - "mAssetSupply": "118589807088615774606881798", - "LPTokenSupply": "25697077966239784939559687" + "mAssetSupply": "100985031923623384714850150", + "LPTokenSupply": "7284994996511446895628067" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "9120288611075591168", - "outputQty0": "9134970117545871740", - "outputQty": "9020552348521086732", - "swapFee": "7209859126215186", + "inputIndex": 0, + "inputQty": "1548027229254151045120", + "outputQty0": "1535055771739551015284", + "outputQty": "1551897473225104519571", + "swapFee": "1209015931375961561", "mpReserves": [ - "62944247113131092117050564", - "28477742410151643560978801", - "27202979033725827419117152" + "55585854085566891562346966", + "10460763365961073718536973", + "35182470412431191848536684" ], "fpReserves": [ - "19502196637871326546455979", - "6467787484522480092678896" + "1866189154713550723258252", + "5598670053088524338474676" ], - "mAssetSupply": "118589816223585892152753538", - "LPTokenSupply": "25697077966960770852181205" + "mAssetSupply": "100986566979395124265865434", + "LPTokenSupply": "7284995117413040033224223" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "802853206766085", - "outputQty0": "813290752402441", - "outputQty": "814479357800435", - "swapFee1": "481711924059", - "swapFee2": "325316300960", + "type": "swap_fp_to_mp", + "inputQty": "4661965492987060224", + "outputIndex": 1, + "outputQty": "4464361752921987920", + "swapFee": "0", + "redemptionFee": "2764640736556296", "mpReserves": [ - "62944247112316612759250129", - "28477742410151643560978801", - "27202979033725827419117152" + "55585854085566891562346966", + "10460758901599320796549053", + "35182470412431191848536684" ], "fpReserves": [ - "19502196637058035794053538", - "6467787484522480092678896" + "1866184546978989796097675", + "5598674715054017325534900" ], - "mAssetSupply": "118589816222772926716652057", - "LPTokenSupply": "25697077966157965816607525" + "mAssetSupply": "100986562374425204075261153", + "LPTokenSupply": "7284995117413040033224223" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1272575498824526856192", - "outputQty0": "1289119480586894733003", - "outputQty": "1286532672860312983575", - "swapFee1": "763545299294716113", - "swapFee2": "515647792234757893", + "type": "mint", + "inputIndex": 1, + "inputQty": "176326444358172462284800", + "outputQty0": "181787894201106953328841", + "outputQty": "178848038077580619855786", "mpReserves": [ - "62944247112316612759250129", - "28477742410151643560978801", - "27201692501052967106133577" + "55585854085566891562346966", + "10637085345957493258833853", + "35182470412431191848536684" ], "fpReserves": [ - "19500907517577448899320535", - "6467787484522480092678896" + "2047972441180096749426516", + "5598674715054017325534900" ], - "mAssetSupply": "118588527618940132056676947", - "LPTokenSupply": "25695805467013671219222944" + "mAssetSupply": "101168350268626311028589994", + "LPTokenSupply": "7463843155490620653080009" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "12245986408305348575232", - "outputQty0": "12405166963074491211598", - "outputQty": "12423294058225050291519", - "swapFee1": "7347591844983209145", - "swapFee2": "4962066785229796484", - "mpReserves": [ - "62931823818258387708958610", - "28477742410151643560978801", - "27201692501052967106133577" - ], - "fpReserves": [ - "19488502350614374408108937", - "6467787484522480092678896" - ], - "mAssetSupply": "118576127414043842795261833", - "LPTokenSupply": "25683560215364550368968626" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "35391430023288752", - "outputIndex": 2, - "outputQty": "35739313059587331", - "swapFee": "0", - "redemptionFee": "14324461063179", - "mpReserves": [ - "62931823818258387708958610", - "28477742410151643560978801", - "27201692465313654046546246" - ], - "fpReserves": [ - "19488502314803221750159381", - "6467787519913910115967648" - ], - "mAssetSupply": "118576127378247014598375456", - "LPTokenSupply": "25683560215364550368968626" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "25119644053190687588352", - "outputQty0": "25072950688206972203595", - "outputQty": "24757961136178726056033", - "swapFee": "19789057032412680766", + "inputQty": "4514768123751217152", + "outputQty0": "4589071778821909984", + "outputQty": "4624423136851244695", + "swapFee1": "2708860874250730", + "swapFee2": "2753443067293145", "mpReserves": [ - "62956943462311578396546962", - "28477742410151643560978801", - "27201692465313654046546246" + "55585849461143754711102271", + "10637085345957493258833853", + "35182470412431191848536684" ], "fpReserves": [ - "19513575265491428722362976", - "6443029558777731389911615" + "2047967852108317927516532", + "5598674715054017325534900" ], - "mAssetSupply": "118601200328935221570579051", - "LPTokenSupply": "25683562194270253610236702" + "mAssetSupply": "101168345682307975273973155", + "LPTokenSupply": "7463838640993382989287930" }, { "type": "swap_fp_to_mp", - "inputQty": "64954128745914714554368", + "inputQty": "1506693874893409746944", "outputIndex": 0, - "outputQty": "65818324632610880308293", + "outputQty": "1503260513490445335823", "swapFee": "0", - "redemptionFee": "26288932553472462249", + "redemptionFee": "895061446763743939", "mpReserves": [ - "62891125137678967516238669", - "28477742410151643560978801", - "27201692465313654046546246" + "55584346200630264265766448", + "10637085345957493258833853", + "35182470412431191848536684" ], "fpReserves": [ - "19447852934107747566738149", - "6507983687523646104465983" + "2046476083030378354284830", + "5600181408928910735281844" ], - "mAssetSupply": "118535504286484093887416473", - "LPTokenSupply": "25683562194270253610236702" + "mAssetSupply": "101166854808291482464485392", + "LPTokenSupply": "7463838640993382989287930" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2435158580952806912", - "outputQty0": "2438405983037871336", - "outputQty": "2408304280444566133", - "swapFee": "1924621082847336", + "inputIndex": 2, + "inputQty": "5461408830629159632896", + "outputQty0": "5445408946432852466028", + "outputQty": "5495361947761118992239", + "swapFee": "4283202426465859334", "mpReserves": [ - "62891125137678967516238669", - "28477744845310224513785713", - "27201692465313654046546246" + "55584346200630264265766448", + "10637085345957493258833853", + "35187931821261821008169580" ], "fpReserves": [ - "19447855372513730604609485", - "6507981279219365659899850" + "2051921491976811206750858", + "5594686046981149616289605" ], - "mAssetSupply": "118535506724890076925287809", - "LPTokenSupply": "25683562194462715718521435" + "mAssetSupply": "101172300217237915316951420", + "LPTokenSupply": "7463839069313625635873863" }, { - "type": "swap_fp_to_mp", - "inputQty": "11492759422481494704128", - "outputIndex": 0, - "outputQty": "11643783473189921707223", - "swapFee": "0", - "redemptionFee": "4650729153724618313", + "type": "mint", + "inputIndex": 0, + "inputQty": "669827205989879582294016", + "outputQty0": "664263852869678129482579", + "outputQty": "652060577560650216801281", "mpReserves": [ - "62879481354205777594531446", - "28477744845310224513785713", - "27201692465313654046546246" + "56254173406620143848060464", + "10637085345957493258833853", + "35187931821261821008169580" ], "fpReserves": [ - "19436228549629419058826517", - "6519474038641847154603978" + "2716185344846489336233437", + "5594686046981149616289605" ], - "mAssetSupply": "118523884552734919104123154", - "LPTokenSupply": "25683562194462715718521435" + "mAssetSupply": "101836564070107593446433999", + "LPTokenSupply": "8115899646874275852675144" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "11937185629776704962560", - "outputQty0": "12091665816772206273781", - "outputQty": "12070727956460930736840", - "swapFee1": "7162311377866022977", - "swapFee2": "4836666326708882509", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "3672132999437471744", + "outputQty0": "3641389240186631740", + "outputQty": "3660040741119840781", + "swapFee": "2856098386721454", "mpReserves": [ - "62879481354205777594531446", - "28465674117353763583048873", - "27201692465313654046546246" + "56254177078753143285532208", + "10637085345957493258833853", + "35187931821261821008169580" ], "fpReserves": [ - "19424136883812646852552736", - "6519474038641847154603978" + "2716188986235729522865177", + "5594682386940408496448824" ], - "mAssetSupply": "118511797723584473606731882", - "LPTokenSupply": "25671625725064076800161172" + "mAssetSupply": "101836567711496833633065739", + "LPTokenSupply": "8115899647159885691347289" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "189179887283391625691136", - "outputQty0": "191623010445620551376195", - "outputQty": "191901731480044630281440", - "swapFee1": "113507932370034975414", - "swapFee2": "76649204178248220550", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "268735719767470", + "outputQty0": "266485815792828", + "outputQty": "267850775392305", + "swapFee": "209016298531", "mpReserves": [ - "62687579622725732964250006", - "28465674117353763583048873", - "27201692465313654046546246" + "56254177079021879005299678", + "10637085345957493258833853", + "35187931821261821008169580" ], "fpReserves": [ - "19232513873367026301176541", - "6519474038641847154603978" + "2716188986502215338658005", + "5594682386672557721056519" ], - "mAssetSupply": "118320251362343031303576237", - "LPTokenSupply": "25482457188573922177967577" + "mAssetSupply": "101836567711763319448858567", + "LPTokenSupply": "8115899647159906592977142" }, { "type": "mint", "inputIndex": 1, - "inputQty": "173453124003010399174656", - "outputQty0": "173680608353413427584292", - "outputQty": "171363080708506191928929", + "inputQty": "46242054935355064320000", + "outputQty0": "47668718291841557137577", + "outputQty": "46732649409314576991361", "mpReserves": [ - "62687579622725732964250006", - "28639127241356773982223529", - "27201692465313654046546246" + "56254177079021879005299678", + "10683327400892848323153853", + "35187931821261821008169580" ], "fpReserves": [ - "19406194481720439728760833", - "6519474038641847154603978" + "2763857704794056895795582", + "5594682386672557721056519" ], - "mAssetSupply": "118493931970696444731160529", - "LPTokenSupply": "25653820269282428369896506" + "mAssetSupply": "101884236430055161005996144", + "LPTokenSupply": "8162632296569221169968503" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "33874025321418244", - "outputQty0": "33917994663671506", - "outputQty": "33501917745110599", - "swapFee": "26771714954327", - "mpReserves": [ - "62687579622725732964250006", - "28639127275230799303641773", - "27201692465313654046546246" - ], - "fpReserves": [ - "19406194515638434392432339", - "6519474005139929409493379" - ], - "mAssetSupply": "118493932004614439394832035", - "LPTokenSupply": "25653820269285105541391938" + "type": "swap_fp_to_mp", + "inputQty": "1294578139666257534779392", + "outputIndex": 1, + "hardLimitError": true }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "12499275419730648760320", - "outputQty0": "12660982959303561752007", - "outputQty": "12635647116478909145262", - "swapFee1": "7499565251838389256", - "swapFee2": "5064393183721424700", + "type": "swap_fp_to_mp", + "inputQty": "28798424440657525342208", + "outputIndex": 0, + "outputQty": "28855180606228404825773", + "swapFee": "0", + "redemptionFee": "17179145506836355091", "mpReserves": [ - "62687579622725732964250006", - "28639127275230799303641773", - "27189056818197175137400984" + "56225321898415650600473905", + "10683327400892848323153853", + "35187931821261821008169580" ], "fpReserves": [ - "19393533532679130830680332", - "6519474005139929409493379" + "2735225795615996303976016", + "5623480811113215246398727" ], - "mAssetSupply": "118481276086048319554504728", - "LPTokenSupply": "25641321743821900076470543" + "mAssetSupply": "101855621700022607250531669", + "LPTokenSupply": "8162632296569221169968503" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "3243419133036097", - "outputQty0": "3285375803206925", - "outputQty": "3279806317161880", - "swapFee1": "1946051479821", - "swapFee2": "1314150321282", + "inputQty": "11603542049781805219840", + "outputQty0": "11828040135230393155140", + "outputQty": "11468528217169536384785", + "swapFee1": "6962125229869083131", + "swapFee2": "7096824081138235893", "mpReserves": [ - "62687579622725732964250006", - "28639127271950992986479893", - "27189056818197175137400984" + "56225321898415650600473905", + "10671858872675678786769068", + "35187931821261821008169580" ], "fpReserves": [ - "19393533529393755027473407", - "6519474005139929409493379" + "2723397755480765910820876", + "5623480811113215246398727" ], - "mAssetSupply": "118481276082764257901619085", - "LPTokenSupply": "25641321740578675548582428" + "mAssetSupply": "101843800756711457995612422", + "LPTokenSupply": "8151029450731962351656976" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "3533078761300872396800", - "outputQty0": "3538749761399051464844", - "outputQty": "3495359961299582450501", - "swapFee": "2793167651883787129", + "inputQty": "377454328882817", + "outputQty0": "376373829237766", + "outputQty": "378312521988580", + "swapFee": "295211677603", "mpReserves": [ - "62687579622725732964250006", - "28639127271950992986479893", - "27192589896958476009797784" + "56225321898415650600473905", + "10671858872675678786769068", + "35187931821639275337052397" ], "fpReserves": [ - "19397072279155154078938251", - "6515978645178629827042878" + "2723397755857139740058642", + "5623480810734902724410147" ], - "mAssetSupply": "118484814832525656953083929", - "LPTokenSupply": "25641322019895440736961140" + "mAssetSupply": "101843800757087831824850188", + "LPTokenSupply": "8151029450731991872824736" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "705843631750774390784", - "outputQty0": "714976998504651110328", - "outputQty": "713545862978312342477", - "swapFee1": "423506179050464634", - "swapFee2": "285990799401860444", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "11830006743051473518592", + "outputQty0": "12193517358449225967119", + "outputQty": "12255854489448656046156", + "swapFee": "9563911848851937639", "mpReserves": [ - "62687579622725732964250006", - "28639127271950992986479893", - "27191876351095497697455307" + "56225321898415650600473905", + "10683688879418730260287660", + "35187931821639275337052397" ], "fpReserves": [ - "19396357302156649427827923", - "6515978645178629827042878" + "2735591273215588966025761", + "5611224956245454068363991" ], - "mAssetSupply": "118484100141517951703834045", - "LPTokenSupply": "25640616218614307867616819" + "mAssetSupply": "101855994274446281050817307", + "LPTokenSupply": "8151030407123176758018499" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "141044556233163667406848", - "outputQty0": "142866933620187953342934", - "outputQty": "142579141401476572569454", - "swapFee1": "84626733739898200444", - "swapFee2": "57146773448075181337", + "type": "mint", + "inputIndex": 2, + "inputQty": "7526120191886819852288", + "outputQty0": "7504612429278805196914", + "outputQty": "7357410052895439863993", "mpReserves": [ - "62687579622725732964250006", - "28639127271950992986479893", - "27049297209694021124885853" + "56225321898415650600473905", + "10683688879418730260287660", + "35195457941831162156904685" ], "fpReserves": [ - "19253490368536461474484989", - "6515978645178629827042878" + "2743095885644867771222675", + "5611224956245454068363991" ], - "mAssetSupply": "118341290354671211825672448", - "LPTokenSupply": "25499580125054518190030015" + "mAssetSupply": "101863498886875559856014221", + "LPTokenSupply": "8158387817176072197882492" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "19664648719943214301184", - "outputQty0": "19918361313209157957335", - "outputQty": "19884694304974332602176", - "swapFee1": "11798789231965928580", - "swapFee2": "7967344525283663182", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "114471812688383402049536", + "outputQty0": "113517047536935087141185", + "outputQty": "114050451539044185874944", + "swapFee": "89017757777088246814", "mpReserves": [ - "62687579622725732964250006", - "28619242577646018653877717", - "27049297209694021124885853" + "56339793711104034002523441", + "10683688879418730260287660", + "35195457941831162156904685" ], "fpReserves": [ - "19233572007223252316527654", - "6515978645178629827042878" + "2856612933181802858363860", + "5497174504706409882489047" ], - "mAssetSupply": "118321379960702527951378295", - "LPTokenSupply": "25479916656213498172321689" + "mAssetSupply": "101977015934412494943155406", + "LPTokenSupply": "8158396718951849906707173" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "27484397798852063657984", - "outputQty0": "27519903435572147390687", - "outputQty": "27153025225597879369677", + "inputIndex": 0, + "inputQty": "326804268967078565773312", + "outputQty0": "324064229473932969329898", + "outputQty": "317445636433226193644435", "mpReserves": [ - "62687579622725732964250006", - "28646726975444870717535701", - "27049297209694021124885853" + "56666597980071112568296753", + "10683688879418730260287660", + "35195457941831162156904685" ], "fpReserves": [ - "19261091910658824463918341", - "6515978645178629827042878" + "3180677162655735827693758", + "5497174504706409882489047" ], - "mAssetSupply": "118348899864138100098768982", - "LPTokenSupply": "25507069681439096051691366" + "mAssetSupply": "102301080163886427912485304", + "LPTokenSupply": "8475842355385076100351608" }, { - "type": "swap_fp_to_mp", - "inputQty": "1234132873347589210112", + "type": "redeem", "outputIndex": 1, - "outputQty": "1246177271466319384318", - "swapFee": "0", - "redemptionFee": "499313571370439847", + "inputQty": "26680740882027865178112", + "outputQty0": "27228906285493964003455", + "outputQty": "26391254911559676615903", + "swapFee1": "16008444529216719106", + "swapFee2": "16337343771296378402", "mpReserves": [ - "62687579622725732964250006", - "28645480798173404398151383", - "27049297209694021124885853" + "56666597980071112568296753", + "10657297624507170583671757", + "35195457941831162156904685" ], "fpReserves": [ - "19259843626730398364299723", - "6517212778051977416252990" + "3153448256370241863690303", + "5497174504706409882489047" ], - "mAssetSupply": "118347652079523245369590211", - "LPTokenSupply": "25507069681439096051691366" + "mAssetSupply": "102273867594944705244860251", + "LPTokenSupply": "8449163215347501156845406" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "256768107835806726488064", - "outputQty0": "260073011253274697149856", - "outputQty": "260448352689228509188049", - "swapFee1": "154060864701484035892", - "swapFee2": "104029204501309878859", + "outputIndex": 1, + "inputQty": "814214400876571264", + "outputQty0": "830922951520428226", + "outputQty": "805300779890212144", + "swapFee1": "488528640525942", + "swapFee2": "498553770912256", "mpReserves": [ - "62427131270036504455061957", - "28645480798173404398151383", - "27049297209694021124885853" + "56666597980071112568296753", + "10657296819206390693459613", + "35195457941831162156904685" ], "fpReserves": [ - "18999770615477123667149867", - "6517212778051977416252990" + "3153447425447290343262077", + "5497174504706409882489047" ], - "mAssetSupply": "118087683097474471982319214", - "LPTokenSupply": "25250316979689759473606891" + "mAssetSupply": "102273866764520307495344281", + "LPTokenSupply": "8449162401181953144326736" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "1259228911041614469660672", - "outputQty0": "1275185605667957451833724", - "outputQty": "1276979462646900056317128", - "swapFee1": "755537346624968681796", - "swapFee2": "510074242267182980733", - "mpReserves": [ - "61150151807389604398744829", - "28645480798173404398151383", - "27049297209694021124885853" - ], - "fpReserves": [ - "17724585009809166215316143", - "6517212778051977416252990" - ], - "mAssetSupply": "116813007566048781713466223", - "LPTokenSupply": "23991163622382807500814398" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "1409145228353644789760", "outputIndex": 2, - "outputQty": "1420334587298545474944", - "swapFee": "0", - "redemptionFee": "569239498485871226", + "inputQty": "22472958009701363089408", + "outputQty0": "22933627882628826810405", + "outputQty": "22984996295211271547183", + "swapFee1": "13483774805820817853", + "swapFee2": "13760176729577296086", "mpReserves": [ - "61150151807389604398744829", - "28645480798173404398151383", - "27047876875106722579410909" + "56666597980071112568296753", + "10657296819206390693459613", + "35172472945535950885357502" ], "fpReserves": [ - "17723161911062951537248939", - "6518621923280331061042750" + "3130513797564661516451672", + "5497174504706409882489047" ], - "mAssetSupply": "116811585036542065521270245", - "LPTokenSupply": "23991163622382807500814398" + "mAssetSupply": "102250946896814408245829962", + "LPTokenSupply": "8426690791549732363319113" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "43356875863805896163328", - "outputQty0": "43423719724684489245855", - "outputQty": "42960266820167853899932", - "swapFee": "34288358742958642377", + "inputIndex": 0, + "inputQty": "15308254073295525117952", + "outputQty0": "15179037718099940294226", + "outputQty": "15230832537918741387721", + "swapFee": "11892239009329196897", "mpReserves": [ - "61150151807389604398744829", - "28645480798173404398151383", - "27091233750970528475574237" + "56681906234144408093414705", + "10657296819206390693459613", + "35172472945535950885357502" ], "fpReserves": [ - "17766585630787636026494794", - "6475661656460163207142818" + "3145692835282761456745898", + "5481943672168491141101326" ], - "mAssetSupply": "116855008756266750010516100", - "LPTokenSupply": "23991167051218681796678635" + "mAssetSupply": "102266125934532508186124188", + "LPTokenSupply": "8426691980773633296238802" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "126389471208685", - "outputQty0": "127978551821736", - "outputQty": "127730916117888", - "swapFee1": "75833682725", - "swapFee2": "51191420728", + "type": "mint", + "inputIndex": 2, + "inputQty": "1064978405539446528", + "outputQty0": "1061965507999353153", + "outputQty": "1039981937535388090", "mpReserves": [ - "61150151807389604398744829", - "28645480798173404398151383", - "27091233750842797559456349" + "56681906234144408093414705", + "10657296819206390693459613", + "35172474010514356424804030" ], "fpReserves": [ - "17766585630659657474673058", - "6475661656460163207142818" + "3145693897248269456099051", + "5481943672168491141101326" ], - "mAssetSupply": "116855008756138822650115092", - "LPTokenSupply": "23991167051092299908838222" + "mAssetSupply": "102266126996498016185477341", + "LPTokenSupply": "8426693020755570831626892" }, { "type": "swap_fp_to_mp", - "inputQty": "174787925295209570631680", - "outputIndex": 2, - "outputQty": "176145995975664534644705", + "inputQty": "15100204412961961984", + "outputIndex": 1, + "outputQty": "14573653441972225743", "swapFee": "0", - "redemptionFee": "70596079238809244816", + "redemptionFee": "9022411205029520", "mpReserves": [ - "61150151807389604398744829", - "28645480798173404398151383", - "26915087754867133024811644" + "56681906234144408093414705", + "10657282245552948721233870", + "35172474010514356424804030" ], "fpReserves": [ - "17590095432562634362631015", - "6650449581755372777774498" + "3145678859896261073564276", + "5481958772372904103063310" ], - "mAssetSupply": "116678589154121038347317865", - "LPTokenSupply": "23991167051092299908838222" + "mAssetSupply": "102266111968168419007972086", + "LPTokenSupply": "8426693020755570831626892" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2942440837481858762539008", - "outputQty0": "2936993702422871730723479", - "outputQty": "2898177378271389953566778", + "inputIndex": 2, + "inputQty": "30543833369803", + "outputQty0": "30457422526811", + "outputQty": "29826929821005", "mpReserves": [ - "64092592644871463161283837", - "28645480798173404398151383", - "26915087754867133024811644" + "56681906234144408093414705", + "10657282245552948721233870", + "35172474010544900258173833" ], "fpReserves": [ - "20527089134985506093354494", - "6650449581755372777774498" + "3145678859926718496091087", + "5481958772372904103063310" ], - "mAssetSupply": "119615582856543910078041344", - "LPTokenSupply": "26889344429363689862405000" + "mAssetSupply": "102266111968198876430498897", + "LPTokenSupply": "8426693020785397761447897" }, { "type": "swap_fp_to_mp", - "inputQty": "151794602901120355401728", + "inputQty": "183082088460909203685376", "outputIndex": 0, - "outputQty": "153857038132758061233835", + "outputQty": "183676381802045374381115", "swapFee": "0", - "redemptionFee": "61449385832038548713", + "redemptionFee": "109343034935196421869", "mpReserves": [ - "63938735606738705100050002", - "28645480798173404398151383", - "26915087754867133024811644" + "56498229852342362719033590", + "10657282245552948721233870", + "35172474010544900258173833" ], "fpReserves": [ - "20373465670405409721570385", - "6802244184656493133176226" + "2963440468368057792974438", + "5665040860833813306748686" ], - "mAssetSupply": "119462020841349645744805948", - "LPTokenSupply": "26889344429363689862405000" + "mAssetSupply": "102083982919675150923804117", + "LPTokenSupply": "8426693020785397761447897" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "52206975510795671044096", - "outputQty0": "52106994371894424934798", - "outputQty": "51456061095555311048894", - "swapFee": "41125256052319040627", - "mpReserves": [ - "63990942582249500771094098", - "28645480798173404398151383", - "26915087754867133024811644" - ], - "fpReserves": [ - "20425572664777304146505183", - "6750788123560937822127332" - ], - "mAssetSupply": "119514127835721540169740746", - "LPTokenSupply": "26889348541889295094309062" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "46461564278788767744", - "outputQty0": "46541955873723733232", - "outputQty": "45955758506628771807", - "swapFee": "36731343675817118", + "type": "redeem", + "outputIndex": 0, + "inputQty": "186960338720683041226752", + "outputQty0": "190640340073797505693902", + "outputQty": "192137392834198293351332", + "swapFee1": "112176203232409824736", + "swapFee2": "114384204044278503416", "mpReserves": [ - "63990942582249500771094098", - "28645480798173404398151383", - "26915134216431411813579388" + "56306092459508164425682258", + "10657282245552948721233870", + "35172474010544900258173833" ], "fpReserves": [ - "20425619206733177870238415", - "6750742167802431193355525" + "2772800128294260287280536", + "5665040860833813306748686" ], - "mAssetSupply": "119514174377677413893473978", - "LPTokenSupply": "26889348545562429461890773" + "mAssetSupply": "101893456963805397696613631", + "LPTokenSupply": "8239743899685037961203618" }, { - "type": "swap_fp_to_mp", - "inputQty": "10783116504974957215744", + "type": "redeem", "outputIndex": 1, - "outputQty": "10892607762134453981210", - "swapFee": "0", - "redemptionFee": "4364675167640444192", + "inputQty": "101641808176087792", + "outputQty0": "103617996593526110", + "outputQty": "100451672073448362", + "swapFee1": "60985084905652", + "swapFee2": "62170797956115", "mpReserves": [ - "63990942582249500771094098", - "28634588190411269944170173", - "26915134216431411813579388" + "56306092459508164425682258", + "10657282145101276647785508", + "35172474010544900258173833" ], "fpReserves": [ - "20414707518814076759758200", - "6761525284307406150571269" + "2772800024676263693754426", + "5665040860833813306748686" ], - "mAssetSupply": "119503267054433480423437955", - "LPTokenSupply": "26889348545562429461890773" + "mAssetSupply": "101893456860249571901043636", + "LPTokenSupply": "8239743798049328293606391" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1189515933760350", - "outputQty0": "1187235756557065", - "outputQty": "1172333725300565", - "swapFee": "936987736147", + "type": "mint", + "inputIndex": 1, + "inputQty": "7345320449345350270976", + "outputQty0": "7572148804006834309412", + "outputQty": "7423199702899665416600", "mpReserves": [ - "63990942583439016704854448", - "28634588190411269944170173", - "26915134216431411813579388" + "56306092459508164425682258", + "10664627465550621998056484", + "35172474010544900258173833" ], "fpReserves": [ - "20414707520001312516315265", - "6761525283135072425270704" + "2780372173480270528063838", + "5665040860833813306748686" ], - "mAssetSupply": "119503267055620716179995020", - "LPTokenSupply": "26889348545562523160664387" + "mAssetSupply": "101901029009053578735353048", + "LPTokenSupply": "8247166997752227959022991" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "700745165528816985047040", - "outputQty0": "709828689851103029224054", - "outputQty": "710895434932367899726918", - "swapFee1": "420447099317290191028", - "swapFee2": "283931475940441211689", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1421420089292085304229888", + "outputQty0": "1460107541130793746628498", + "outputQty": "1462626781824431139893989", + "swapFee": "1143508112983111793827", "mpReserves": [ - "63280047148506648805127530", - "28634588190411269944170173", - "26915134216431411813579388" + "56306092459508164425682258", + "12086047554842707302286372", + "35172474010544900258173833" ], "fpReserves": [ - "19704878830150209487091211", - "6761525283135072425270704" + "4240479714611064274692336", + "4202414079009382166854697" ], - "mAssetSupply": "118793722297245553591982655", - "LPTokenSupply": "26188645424743637904636449" + "mAssetSupply": "103361136550184372481981546", + "LPTokenSupply": "8247281348563526270202373" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1872813616867895934976", - "outputQty0": "1896946829584397693685", - "outputQty": "1899765309697929097542", - "swapFee1": "1123688170120737560", - "swapFee2": "758778731833759077", + "type": "mint", + "inputIndex": 2, + "inputQty": "1544740842551468883968", + "outputQty0": "1541305722653190598536", + "outputQty": "1505549730347494269841", "mpReserves": [ - "63278147383196950876029988", - "28634588190411269944170173", - "26915134216431411813579388" + "56306092459508164425682258", + "12086047554842707302286372", + "35174018751387451727057801" ], "fpReserves": [ - "19702981883320625089397526", - "6761525283135072425270704" + "4242021020333717465290872", + "4202414079009382166854697" ], - "mAssetSupply": "118791826109194701028048047", - "LPTokenSupply": "26186772723495587020775229" + "mAssetSupply": "103362677855907025672580082", + "LPTokenSupply": "8248786898293873764472214" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "30327628047422623744", - "outputQty0": "30378834365853186356", - "outputQty": "29974361271367363282", + "inputQty": "160473191386927", + "outputQty0": "160116306606838", + "outputQty": "159978274458307", + "swapFee": "125121402879", "mpReserves": [ - "63278147383196950876029988", - "28634588190411269944170173", - "26915164544059459236203132" + "56306092459508164425682258", + "12086047554842707302286372", + "35174018751547924918444728" ], "fpReserves": [ - "19703012262154990942583882", - "6761525283135072425270704" + "4242021020493833771897710", + "4202414078849403892396390" ], - "mAssetSupply": "118791856488029066881234403", - "LPTokenSupply": "26186802697856858388138511" + "mAssetSupply": "103362677856067141979186920", + "LPTokenSupply": "8248786898293886276612501" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "2310559589334008987648", - "outputQty0": "2313598136602423990396", - "outputQty": "2286165777394205392401", - "swapFee": "1826234804082965072", + "inputQty": "800404620275619215704064", + "outputQty0": "818403380345214489678107", + "outputQty": "816605396107689937319445", + "swapFee": "639346607266336848665", "mpReserves": [ - "63278147383196950876029988", - "28636898750000603953157821", - "26915164544059459236203132" + "56306092459508164425682258", + "12886452175118326517990436", + "35174018751547924918444728" ], "fpReserves": [ - "19705325860291593366574278", - "6759239117357678219878303" + "5060424400839048261575817", + "3385808682741713955076945" ], - "mAssetSupply": "118794170086165669305224799", - "LPTokenSupply": "26186802880480338796435018" + "mAssetSupply": "104181081236412356468865027", + "LPTokenSupply": "8248850832954612910297367" }, { - "type": "swap_fp_to_mp", - "inputQty": "31512906103059524878336", - "outputIndex": 0, - "outputQty": "31911047651014079080513", - "swapFee": "0", - "redemptionFee": "12745493642086042716", + "type": "mint", + "inputIndex": 0, + "inputQty": "22701499078042143686656", + "outputQty0": "22544491954491615451451", + "outputQty": "21992383022897369165825", "mpReserves": [ - "63246236335545936796949475", - "28636898750000603953157821", - "26915164544059459236203132" + "56328793958586206569368914", + "12886452175118326517990436", + "35174018751547924918444728" ], "fpReserves": [ - "19673462126186378259783567", - "6790752023460737744756639" + "5082968892793539877027268", + "3385808682741713955076945" ], - "mAssetSupply": "118762319097554096284476804", - "LPTokenSupply": "26186802880480338796435018" + "mAssetSupply": "104203625728366848084316478", + "LPTokenSupply": "8270843215977510279463192" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3227884238394529", - "outputQty0": "3233328729243826", - "outputQty": "3195363682684872", - "swapFee": "2552297109533", - "mpReserves": [ - "63246236335545936796949475", - "28636898750000603953157821", - "26915164547287343474597661" - ], - "fpReserves": [ - "19673462129419706989027393", - "6790752020265374062071767" - ], - "mAssetSupply": "118762319100787425013720630", - "LPTokenSupply": "26186802880480594026145971" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "790414282457680302833664", - "outputIndex": 1, - "outputQty": "796662867823224207776788", - "swapFee": "0", - "redemptionFee": "319231688399150258533", + "inputIndex": 0, + "inputQty": "57718989648341537652736", + "outputQty0": "57319397858653853680216", + "outputQty": "57102355549623120155668", + "swapFee": "44731398622968797052", "mpReserves": [ - "63246236335545936796949475", - "27840235882177379745381033", - "26915164547287343474597661" + "56386512948234548107021650", + "12886452175118326517990436", + "35174018751547924918444728" ], "fpReserves": [ - "18875382908421831342692689", - "7581166302723054364905431" + "5140288290652193730707484", + "3328706327192090834921277" ], - "mAssetSupply": "117964559111477948517644459", - "LPTokenSupply": "26186802880480594026145971" + "mAssetSupply": "104260945126225501937996694", + "LPTokenSupply": "8270847689117372576342897" }, { "type": "swap_fp_to_mp", - "inputQty": "9579443022895545057280", + "inputQty": "60611776316731903967232", "outputIndex": 1, - "outputQty": "9642544557343749844970", + "outputQty": "59494511692894825037439", "swapFee": "0", - "redemptionFee": "3864130719587816298", - "mpReserves": [ - "63246236335545936796949475", - "27830593337620035995536063", - "26915164547287343474597661" - ], - "fpReserves": [ - "18865722581622861801947124", - "7590745745745949909962711" - ], - "mAssetSupply": "117954902648809698564715192", - "LPTokenSupply": "26186802880480594026145971" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1684228042548782301184", - "outputQty0": "1686660196987996956069", - "outputQty": "1665439937774603092963", + "redemptionFee": "36475834921372719618", "mpReserves": [ - "63246236335545936796949475", - "27832277565662584777837247", - "26915164547287343474597661" + "56386512948234548107021650", + "12826957663425431692952997", + "35174018751547924918444728" ], "fpReserves": [ - "18867409241819849798903193", - "7590745745745949909962711" + "5079495232449905864676723", + "3389318103508822738888509" ], - "mAssetSupply": "117956589309006686561671261", - "LPTokenSupply": "26188468320418368629238934" + "mAssetSupply": "104200188543858135444685551", + "LPTokenSupply": "8270847689117372576342897" }, { "type": "swap_fp_to_mp", - "inputQty": "365221950842761635692544", + "inputQty": "30274686270394150912", "outputIndex": 1, - "outputQty": "367431361195827101341136", + "outputQty": "29710115910311553856", "swapFee": "0", - "redemptionFee": "147248263974455883166", + "redemptionFee": "18216932304316404", "mpReserves": [ - "63246236335545936796949475", - "27464846204466757676496111", - "26915164547287343474597661" + "56386512948234548107021650", + "12826927953309521381399141", + "35174018751547924918444728" ], "fpReserves": [ - "18499288581883710090987101", - "7955967696588711545655255" + "5079464870896065337335663", + "3389348378195093133039421" ], - "mAssetSupply": "117588615897334521309638335", - "LPTokenSupply": "26188468320418368629238934" + "mAssetSupply": "104200158200521227221660895", + "LPTokenSupply": "8270847689117372576342897" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "26802130675987757662208", - "outputQty0": "26845791564625316895336", - "outputQty": "26515475014335013430862", - "mpReserves": [ - "63246236335545936796949475", - "27464846204466757676496111", - "26941966677963331232259869" - ], - "fpReserves": [ - "18526134373448335407882437", - "7955967696588711545655255" - ], - "mAssetSupply": "117615461688899146626533671", - "LPTokenSupply": "26214983795432703642669796" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "2134868199886320304128", - "outputQty0": "2160172414677155043383", - "outputQty": "2155801413215274269957", - "swapFee1": "1280920919931792182", - "swapFee2": "864068965870862017", + "inputIndex": 0, + "inputQty": "378509248533994988896256", + "outputQty0": "375862341268423436417437", + "outputQty": "366612256890637386787237", "mpReserves": [ - "63246236335545936796949475", - "27464846204466757676496111", - "26939810876550115957989912" + "56765022196768543095917906", + "12826927953309521381399141", + "35174018751547924918444728" ], "fpReserves": [ - "18523974201033658252839054", - "7955967696588711545655255" + "5455327212164488773753100", + "3389348378195093133039421" ], - "mAssetSupply": "117613302380553435342352305", - "LPTokenSupply": "26212849055324909315544886" + "mAssetSupply": "104576020541789650658078332", + "LPTokenSupply": "8637459946008009963130134" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "9592274363317073920", - "outputQty0": "9705967962049794909", - "outputQty": "9686326494504900613", - "swapFee1": "5755364617990244", - "swapFee2": "3882387184819917", - "mpReserves": [ - "63246236335545936796949475", - "27464846204466757676496111", - "26939801190223621453089299" - ], - "fpReserves": [ - "18523964495065696203044145", - "7955967696588711545655255" - ], - "mAssetSupply": "117613292678467860477377313", - "LPTokenSupply": "26212839463626082460269990" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1597933368057613568", - "outputQty0": "1600533112333689420", - "outputQty": "1587376878842235151", - "swapFee": "1264668596502135", - "mpReserves": [ - "63246236335545936796949475", - "27464846204466757676496111", - "26939802788156989510702867" - ], - "fpReserves": [ - "18523966095598808536733565", - "7955966109211832703420104" - ], - "mAssetSupply": "117613294279000972811066733", - "LPTokenSupply": "26212839463752549319920203" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "755848912939626902061056", - "outputQty0": "756940134675949287291258", - "outputQty": "749957310414689071556958", - "swapFee": "598049196384614950887", + "outputIndex": 1, + "inputQty": "1412387159856595599360", + "outputQty0": "1447321006329597872083", + "outputQty": "1415976156486196603589", + "swapFee1": "847432295913957359", + "swapFee2": "868392603797758723", "mpReserves": [ - "63246236335545936796949475", - "28220695117406384578557167", - "26939802788156989510702867" + "56765022196768543095917906", + "12825511977153035184795552", + "35174018751547924918444728" ], "fpReserves": [ - "19280906230274757824024823", - "7206008798797143631863146" + "5453879891158159175881017", + "3389348378195093133039421" ], - "mAssetSupply": "118370234413676922098357991", - "LPTokenSupply": "26212899268672187781415291" + "mAssetSupply": "104574574089175924857964972", + "LPTokenSupply": "8636047643591382958926509" }, { "type": "swap_fp_to_mp", - "inputQty": "375259290900497432576", + "inputQty": "16220894266372298637312", "outputIndex": 1, - "outputQty": "378196098765328631153", + "outputQty": "15923537777770962334610", "swapFee": "0", - "redemptionFee": "151547951186354711", + "redemptionFee": "9765901169603950983", "mpReserves": [ - "63246236335545936796949475", - "28220316921307619249926014", - "26939802788156989510702867" + "56765022196768543095917906", + "12809588439375264222460942", + "35174018751547924918444728" ], "fpReserves": [ - "19280527360396791937246322", - "7206384058088044129295722" + "5437603389208819257575259", + "3405569272461465431676733" ], - "mAssetSupply": "118369855695346907397934201", - "LPTokenSupply": "26212899268672187781415291" + "mAssetSupply": "104558307353127754543610197", + "LPTokenSupply": "8636047643591382958926509" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2596615850386129944576", - "outputQty0": "2600200913477868861133", - "outputQty": "2566582225246919373415", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "997145219643089792", + "outputQty0": "990130158895171594", + "outputQty": "985990755669216071", + "swapFee": "772541435592480", "mpReserves": [ - "63246236335545936796949475", - "28222913537158005379870590", - "26939802788156989510702867" + "56765023193913762739007698", + "12809588439375264222460942", + "35174018751547924918444728" ], "fpReserves": [ - "19283127561310269806107455", - "7206384058088044129295722" + "5437604379338978152746853", + "3405568286470709762460662" ], - "mAssetSupply": "118372455896260385266795334", - "LPTokenSupply": "26215465850897434700788706" + "mAssetSupply": "104558308343257913438781791", + "LPTokenSupply": "8636047643668637102485757" }, { - "type": "swap_fp_to_mp", - "inputQty": "139860136813609894281216", - "outputIndex": 0, - "outputQty": "141386509431522398384731", - "swapFee": "0", - "redemptionFee": "56469855586761810883", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1592252545586600960", + "outputQty0": "1631592841326168021", + "outputQty": "1596168382315087432", + "swapFee1": "955351527351960", + "swapFee2": "978955704795700", "mpReserves": [ - "63104849826114414398564744", - "28222913537158005379870590", - "26939802788156989510702867" + "56765023193913762739007698", + "12809586843206881907373510", + "35174018751547924918444728" ], "fpReserves": [ - "19141952922343365278897956", - "7346244194901654023576938" + "5437602747746136826578832", + "3405568286470709762460662" ], - "mAssetSupply": "118231337727149067501396718", - "LPTokenSupply": "26215465850897434700788706" + "mAssetSupply": "104558306712644027817409470", + "LPTokenSupply": "8636046051511626668619993" }, { - "type": "swap_fp_to_mp", - "inputQty": "35084105721489387421696", - "outputIndex": 2, - "outputQty": "35331475878296904906289", - "swapFee": "0", - "redemptionFee": "14161684659948761336", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1717556934016140032", + "outputQty0": "1759993163949422424", + "outputQty": "1771399219036984005", + "swapFee1": "1030534160409684", + "swapFee2": "1055995898369653", "mpReserves": [ - "63104849826114414398564744", - "28222913537158005379870590", - "26904471312278692605796578" + "56765021422514543702023693", + "12809586843206881907373510", + "35174018751547924918444728" ], "fpReserves": [ - "19106548710693493375557943", - "7381328300623143410998634" + "5437600987752972877156408", + "3405568286470709762460662" ], - "mAssetSupply": "118195947677183855546818041", - "LPTokenSupply": "26215465850897434700788706" + "mAssetSupply": "104558304953706859766356699", + "LPTokenSupply": "8636044334057746068520929" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "4896154030239296520192", - "outputQty0": "4956556333807961608636", - "outputQty": "4946355077773377433828", - "swapFee1": "2937692418143577912", - "swapFee2": "1982622533523184643", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1264087333984265568256", + "outputQty0": "1255194158170027644070", + "outputQty": "1249943427047894096057", + "swapFee": "979355209363142257", "mpReserves": [ - "63104849826114414398564744", - "28222913537158005379870590", - "26899524957200919228362750" + "56766285509848527967591949", + "12809586843206881907373510", + "35174018751547924918444728" ], "fpReserves": [ - "19101592154359685413949307", - "7381328300623143410998634" + "5438856181911142904800478", + "3404318343043661868364605" ], - "mAssetSupply": "118190993103472581108394048", - "LPTokenSupply": "26210569990636437218626305" + "mAssetSupply": "104559560147865029794000769", + "LPTokenSupply": "8636044431993267004835154" }, { "type": "swap_fp_to_mp", - "inputQty": "10622932897563324416", + "inputQty": "133349437332527376", "outputIndex": 2, - "outputQty": "10697172236560635464", + "outputQty": "133979272801136017", "swapFee": "0", - "redemptionFee": "4287695498170881", + "redemptionFee": "80281693092209", "mpReserves": [ - "63104849826114414398564744", - "28222913537158005379870590", - "26899514260028682667727286" + "56766285509848527967591949", + "12809586843206881907373510", + "35174018617568652117308711" ], "fpReserves": [ - "19101581435120939986744418", - "7381338923556040974323050" + "5438856048108321084451095", + "3404318476393099200891981" ], - "mAssetSupply": "118190982388521531179360040", - "LPTokenSupply": "26210569990636437218626305" + "mAssetSupply": "104559560014142489666743595", + "LPTokenSupply": "8636044431993267004835154" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "3438031227754686971904", - "outputQty0": "3480441981650709523544", - "outputQty": "3485661283544093011005", - "swapFee1": "2062818736652812183", - "swapFee2": "1392176792660283809", + "inputQty": "88034977450851947249664", + "outputQty0": "90207801560998157897829", + "outputQty": "90791718429311595051113", + "swapFee1": "52820986470511168349", + "swapFee2": "54124680936598894738", "mpReserves": [ - "63101364164830870305553739", - "28222913537158005379870590", - "26899514260028682667727286" + "56675493791419216372540836", + "12809586843206881907373510", + "35174018617568652117308711" ], "fpReserves": [ - "19098100993139289277220874", - "7381338923556040974323050" + "5348648246547322926553266", + "3404318476393099200891981" ], - "mAssetSupply": "118187503338716673130120305", - "LPTokenSupply": "26207132165690556196935619" + "mAssetSupply": "104469406337262428107740504", + "LPTokenSupply": "8548014736641062108702324" }, { - "type": "swap_fp_to_mp", - "inputQty": "4793047743008477282304", - "outputIndex": 2, - "outputQty": "4826493969712110909612", - "swapFee": "0", - "redemptionFee": "1934580567651954626", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "254177159015767090397184", + "outputQty0": "253680119121098853062259", + "outputQty": "252518165634308022312524", + "swapFee": "197926104613378209873", "mpReserves": [ - "63101364164830870305553739", - "28222913537158005379870590", - "26894687766058970556817674" + "56675493791419216372540836", + "12809586843206881907373510", + "35428195776584419207705895" ], "fpReserves": [ - "19093264541720159390653905", - "7386131971299049451605354" + "5602328365668421779615525", + "3151800310758791178579457" ], - "mAssetSupply": "118182668821878110895507962", - "LPTokenSupply": "26207132165690556196935619" + "mAssetSupply": "104723086456383526960802763", + "LPTokenSupply": "8548034529251523446523311" }, { "type": "swap_fp_to_mp", - "inputQty": "259456424782661341413376", + "inputQty": "160997296761418110992384", "outputIndex": 2, - "outputQty": "261159308910924618500365", + "outputQty": "161862260869340183608696", "swapFee": "0", - "redemptionFee": "104681827025230479140", + "redemptionFee": "96984500154706744407", "mpReserves": [ - "63101364164830870305553739", - "28222913537158005379870590", - "26633528457148045938317309" + "56675493791419216372540836", + "12809586843206881907373510", + "35266333515715079024097199" ], "fpReserves": [ - "18831559974157083192803896", - "7645588396081710793018730" + "5440687532077243872270294", + "3312797607520209289571841" ], - "mAssetSupply": "117921068936142059928137093", - "LPTokenSupply": "26207132165690556196935619" + "mAssetSupply": "104561542607292503760201939", + "LPTokenSupply": "8548034529251523446523311" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "15164751497972324237312", - "outputQty0": "15190684464417602600569", - "outputQty": "14999820613232105028724", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "176992569614950083854336", + "outputQty0": "175748696731451626222948", + "outputQty": "174903320173368165368765", + "swapFee": "137102806181321854220", "mpReserves": [ - "63101364164830870305553739", - "28222913537158005379870590", - "26648693208646018262554621" + "56852486361034166456395172", + "12809586843206881907373510", + "35266333515715079024097199" ], "fpReserves": [ - "18846750658621500795404465", - "7645588396081710793018730" + "5616436228808695498493242", + "3137894287346841124203076" ], - "mAssetSupply": "117936259620606477530737662", - "LPTokenSupply": "26222131986303788301964343" + "mAssetSupply": "104737291304023955386424887", + "LPTokenSupply": "8548048239532141578708733" }, { - "type": "swap_fp_to_mp", - "inputQty": "85608577035761407229952", - "outputIndex": 1, - "outputQty": "86157300950181029334162", - "swapFee": "0", - "redemptionFee": "34523810367118834335", + "type": "mint", + "inputIndex": 2, + "inputQty": "2700664252259740160", + "outputQty0": "2695443720276940729", + "outputQty": "2627752267965546456", "mpReserves": [ - "63101364164830870305553739", - "28136756236207824350536428", - "26648693208646018262554621" + "56852486361034166456395172", + "12809586843206881907373510", + "35266336216379331283837359" ], "fpReserves": [ - "18760441132703703709564935", - "7731196973117472200248682" + "5616438924252415775433971", + "3137894287346841124203076" ], - "mAssetSupply": "117849984618499047563732467", - "LPTokenSupply": "26222131986303788301964343" + "mAssetSupply": "104737293999467675663365616", + "LPTokenSupply": "8548050867284409544255189" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "18753652984568570970112", - "outputQty0": "18979592068665340435440", - "outputQty": "18945955711510286899253", - "swapFee1": "11252191790741142582", - "swapFee2": "7591836827466136174", + "outputIndex": 2, + "inputQty": "570777806632518630244352", + "outputQty0": "585022094912590294641504", + "outputQty": "585759331861878002400217", + "swapFee1": "342466683979511178146", + "swapFee2": "351013256947554176784", "mpReserves": [ - "63101364164830870305553739", - "28117810280496314063637175", - "26648693208646018262554621" + "56852486361034166456395172", + "12809586843206881907373510", + "34680576884517453281437142" ], "fpReserves": [ - "18741461540635038369129495", - "7731196973117472200248682" + "5031416829339825480792467", + "3137894287346841124203076" ], - "mAssetSupply": "117831012618267209689433201", - "LPTokenSupply": "26203379458538398805108489" + "mAssetSupply": "104152622917812032922900896", + "LPTokenSupply": "7977307307320288865128651" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1156138216932209664", - "outputQty0": "1153922142800177207", - "outputQty": "1139503405577787777", - "mpReserves": [ - "63101365320969087237763403", - "28117810280496314063637175", - "26648693208646018262554621" - ], - "fpReserves": [ - "18741462694557181169306702", - "7731196973117472200248682" - ], - "mAssetSupply": "117831013772189352489610408", - "LPTokenSupply": "26203380598041804382896266" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "790183449473129728", - "outputIndex": 0, - "outputQty": "797760052853398404", - "swapFee": "0", - "redemptionFee": "318619813678645", + "inputIndex": 1, + "inputQty": "8860111241167416328192", + "outputQty0": "9050059791359445020918", + "outputQty": "8825698092074796435820", "mpReserves": [ - "63101364523209034384364999", - "28117810280496314063637175", - "26648693208646018262554621" + "56852486361034166456395172", + "12818446954448049323701702", + "34680576884517453281437142" ], "fpReserves": [ - "18741461898007646972693867", - "7731197763300921673378410" + "5040466889131184925813385", + "3137894287346841124203076" ], - "mAssetSupply": "117831012975958438106676218", - "LPTokenSupply": "26203380598041804382896266" + "mAssetSupply": "104161672977603392367921814", + "LPTokenSupply": "7986133005412363661564471" }, { - "type": "swap_fp_to_mp", - "inputQty": "6832938190299404959744", - "outputIndex": 2, - "outputQty": "6873454980241276575793", - "swapFee": "0", - "redemptionFee": "2755169897092254501", + "type": "mint", + "inputIndex": 1, + "inputQty": "7006691744422235734016", + "outputQty0": "7156716532248460965258", + "outputQty": "6979256032233620060477", "mpReserves": [ - "63101364523209034384364999", - "28117810280496314063637175", - "26641819753665776985978828" + "56852486361034166456395172", + "12825453646192471559435718", + "34680576884517453281437142" ], "fpReserves": [ - "18734573973264916336441306", - "7738030701491221078338154" + "5047623605663433386778643", + "3137894287346841124203076" ], - "mAssetSupply": "117824127806385604562678158", - "LPTokenSupply": "26203380598041804382896266" + "mAssetSupply": "104168829694135640828887072", + "LPTokenSupply": "7993112261444597281624948" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1933967497799905574912", - "outputQty0": "1937264507487600527019", - "outputQty": "1920274386360625522100", - "swapFee": "1530453919592431432", - "mpReserves": [ - "63101364523209034384364999", - "28117810280496314063637175", - "26643753721163576891553740" - ], - "fpReserves": [ - "18736511237772403936968325", - "7736110427104860452816054" - ], - "mAssetSupply": "117826065070893092163205177", - "LPTokenSupply": "26203380751087196342139409" - }, - { - "type": "mint", "inputIndex": 0, - "inputQty": "962642776909658624", - "outputQty0": "960797313668706101", - "outputQty": "948795353798361706", + "inputQty": "90205434761279130566656", + "outputQty0": "89566030468769126912975", + "outputQty": "89167859725545758416224", + "swapFee": "69873892176838349468", "mpReserves": [ - "63101365485851811294023623", - "28117810280496314063637175", - "26643753721163576891553740" + "56942691795795445586961828", + "12825453646192471559435718", + "34680576884517453281437142" ], "fpReserves": [ - "18736512198569717605674426", - "7736110427104860452816054" + "5137189636132202513691618", + "3048726427621295365786852" ], - "mAssetSupply": "117826066031690405831911278", - "LPTokenSupply": "26203381699882550140501115" + "mAssetSupply": "104258395724604409955800047", + "LPTokenSupply": "7993119248833814965459894" }, { "type": "swap_fp_to_mp", - "inputQty": "34415215012155205091328", - "outputIndex": 2, - "outputQty": "34617442416392409575665", - "swapFee": "0", - "redemptionFee": "13876176467953112969", - "mpReserves": [ - "63101365485851811294023623", - "28117810280496314063637175", - "26609136278747184481978075" - ], - "fpReserves": [ - "18701821757399834823251138", - "7770525642117015657907382" - ], - "mAssetSupply": "117791389466696991002600959", - "LPTokenSupply": "26203381699882550140501115" - }, - { - "type": "redeem", + "inputQty": "245252893925826606661632", "outputIndex": 1, - "inputQty": "14075061512833048", - "outputQty0": "14244172268824679", - "outputQty": "14218932834991615", - "swapFee1": "8445036907699", - "swapFee2": "5697668907529", + "outputQty": "240656708661654906411846", + "swapFee": "0", + "redemptionFee": "147640007632717672511", "mpReserves": [ - "63101365485851811294023623", - "28117810266277381228645560", - "26609136278747184481978075" + "56942691795795445586961828", + "12584796937530816653023872", + "34680576884517453281437142" ], "fpReserves": [ - "18701821743155662554426459", - "7770525642117015657907382" + "4891122956744339726172748", + "3293979321547121972448484" ], - "mAssetSupply": "117791389452458516402683809", - "LPTokenSupply": "26203381685808333131358836" + "mAssetSupply": "104012476685224179885953688", + "LPTokenSupply": "7993119248833814965459894" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "361713563963927937679360", - "outputQty0": "362320251399443354705772", - "outputQty": "358997278011006045275905", - "swapFee": "286231312879981363019", + "inputIndex": 0, + "inputQty": "60000732350282800", + "outputQty0": "59566828047852005", + "outputQty": "59353272033730440", + "swapFee": "46483453821489", "mpReserves": [ - "63101365485851811294023623", - "28117810266277381228645560", - "26970849842711112419657435" + "56942691855796177937244628", + "12584796937530816653023872", + "34680576884517453281437142" ], "fpReserves": [ - "19064141994555105909132231", - "7411528364106009612631477" + "4891123016311167774024753", + "3293979262193849938718044" ], - "mAssetSupply": "118153709703857959757389581", - "LPTokenSupply": "26203410308939621129495137" + "mAssetSupply": "104012476744791007933805693", + "LPTokenSupply": "7993119248838463310842042" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "113133826463708790784", - "outputQty0": "113319789630335456621", - "outputQty": "111873613469543855918", + "inputIndex": 1, + "inputQty": "36398978859082555392", + "outputQty0": "37210357477318053785", + "outputQty": "36296752087310876011", "mpReserves": [ - "63101365485851811294023623", - "28117810266277381228645560", - "26970962976537576128448219" + "56942691855796177937244628", + "12584833336509675735579264", + "34680576884517453281437142" ], "fpReserves": [ - "19064255314344736244588852", - "7411528364106009612631477" + "4891160226668645092078538", + "3293979262193849938718044" ], - "mAssetSupply": "118153823023647590092846202", - "LPTokenSupply": "26203522182553090673351055" + "mAssetSupply": "104012513955148485251859478", + "LPTokenSupply": "7993155545590550621718053" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2947749507320336875520", - "outputQty0": "2952594030179941450238", - "outputQty": "2923995878251659077151", - "swapFee": "2331929807123967510", + "type": "redeem", + "outputIndex": 1, + "inputQty": "221392635569627", + "outputQty0": "226829010309402", + "outputQty": "221749846867781", + "swapFee1": "132835581341", + "swapFee2": "136097406185", "mpReserves": [ - "63101365485851811294023623", - "28117810266277381228645560", - "26973910726044896465323739" + "56942691855796177937244628", + "12584833336287925888711483", + "34680576884517453281437142" ], "fpReserves": [ - "19067207908374916186039090", - "7408604368227757953554326" + "4891160226441816081769136", + "3293979262193849938718044" ], - "mAssetSupply": "118156775617677770034296440", - "LPTokenSupply": "26203522415746071385747806" + "mAssetSupply": "104012513954921792338956261", + "LPTokenSupply": "7993155545369171269706560" }, { "type": "swap_fp_to_mp", - "inputQty": "343751914386865536", - "outputIndex": 0, - "outputQty": "347358337642891450", + "inputQty": "315457612700495", + "outputIndex": 2, + "outputQty": "316737115517176", "swapFee": "0", - "redemptionFee": "138735123813276", + "redemptionFee": "189803633941", "mpReserves": [ - "63101365138493473651132173", - "28117810266277381228645560", - "26973910726044896465323739" + "56942691855796177937244628", + "12584833336287925888711483", + "34680576884200716165919966" ], "fpReserves": [ - "19067207561537106652847154", - "7408604711979672340419862" + "4891160226125476691867188", + "3293979262509307551418539" ], - "mAssetSupply": "118156775270978695624917780", - "LPTokenSupply": "26203522415746071385747806" + "mAssetSupply": "104012513954605642752688254", + "LPTokenSupply": "7993155545369171269706560" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "1577582423010909880320", "outputIndex": 2, - "inputQty": "40921325644020752384", - "outputQty0": "41425546210932491977", - "outputQty": "41341044433434441738", - "swapFee1": "24552795386412451", - "swapFee2": "16570218484372996", + "outputQty": "1583975742023819336113", + "swapFee": "0", + "redemptionFee": "949192248867186858", "mpReserves": [ - "63101365138493473651132173", - "28117810266277381228645560", - "26973869385000463030882001" + "56942691855796177937244628", + "12584833336287925888711483", + "34678992908458692346583853" ], "fpReserves": [ - "19067166135990895720355177", - "7408604711979672340419862" + "4889578239044031380436643", + "3295556844932318461298859" ], - "mAssetSupply": "118156733862002703176798799", - "LPTokenSupply": "26203481496875706903636667" + "mAssetSupply": "104010932916716446308444567", + "LPTokenSupply": "7993155545369171269706560" }, { "type": "swap_fp_to_mp", - "inputQty": "401068586644915224576", + "inputQty": "428826163215564969869312", "outputIndex": 2, - "outputQty": "403843282962192150768", + "outputQty": "430189024292795534650647", "swapFee": "0", - "redemptionFee": "161867504703757867", + "redemptionFee": "257804201017926887422", "mpReserves": [ - "63101365138493473651132173", - "28117810266277381228645560", - "26973465541717500838731233" + "56942691855796177937244628", + "12584833336287925888711483", + "34248803884165896811933206" ], "fpReserves": [ - "19066761467229136325685755", - "7409005780566317255644438" + "4459904570680819901399517", + "3724383008147883431168171" ], - "mAssetSupply": "118156329355108448485887244", - "LPTokenSupply": "26203481496875706903636667" + "mAssetSupply": "103581517052554252756294863", + "LPTokenSupply": "7993155545369171269706560" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "31957175050240448", "outputIndex": 2, - "inputQty": "2598482933272705761280", - "outputQty0": "2630498960856756520754", - "outputQty": "2625132312103414322039", - "swapFee1": "1559089759963623456", - "swapFee2": "1052199584342702608", - "mpReserves": [ - "63101365138493473651132173", - "28117810266277381228645560", - "26970840409405397424409194" - ], - "fpReserves": [ - "19064130968268279569165001", - "7409005780566317255644438" - ], - "mAssetSupply": "118153699908347176072069098", - "LPTokenSupply": "26200883169851410194237732" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "292822680930606991278080", - "outputQty0": "293296235870981235617990", - "outputQty": "290324048861298645358349", - "swapFee": "231634194457572348366", + "outputQty": "32032380362376602", + "swapFee": "0", + "redemptionFee": "19197512885958", "mpReserves": [ - "63101365138493473651132173", - "28117810266277381228645560", - "27263663090336004415687274" + "56942691855796177937244628", + "12584833336287925888711483", + "34248803852133516449556604" ], "fpReserves": [ - "19357427204139260804782991", - "7118681731705018610286089" + "4459904538684965091469360", + "3724383040105058481408619" ], - "mAssetSupply": "118446996144218157307687088", - "LPTokenSupply": "26200906333270855951472568" + "mAssetSupply": "103581517020577595459250664", + "LPTokenSupply": "7993155545369171269706560" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "7141642009528888320", - "outputQty0": "7153003695911372367", - "outputQty": "7077202433665171480", - "swapFee": "5647885324263536", + "inputQty": "6400257000406166536192", + "outputQty0": "6389117676047344215563", + "outputQty": "6236460183095003617348", "mpReserves": [ - "63101365138493473651132173", - "28117810266277381228645560", - "27263670231978013944575594" + "56942691855796177937244628", + "12584833336287925888711483", + "34255204109133922616092796" ], "fpReserves": [ - "19357434357142956716155358", - "7118674654502584945114609" + "4466293656361012435684923", + "3724383040105058481408619" ], - "mAssetSupply": "118447003297221853219059455", - "LPTokenSupply": "26200906333835644483898921" + "mAssetSupply": "103587906138253642803466227", + "LPTokenSupply": "7999392005552266273323908" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "23441022776291503374336", - "outputQty0": "23735982758491352636237", - "outputQty": "23693149317926996253451", - "swapFee1": "14064613665774902024", - "swapFee2": "9494393103396541054", + "inputQty": "11911676247756773523456", + "outputQty0": "12195906107543846751148", + "outputQty": "11924355396712805342808", + "swapFee1": "7147005748654064114", + "swapFee2": "7317543664526308050", "mpReserves": [ - "63101365138493473651132173", - "28094117116959454232392109", - "27263670231978013944575594" + "56942691855796177937244628", + "12572908980891213083368675", + "34255204109133922616092796" ], "fpReserves": [ - "19333698374384465363519121", - "7118674654502584945114609" + "4454097750253468588933775", + "3724383040105058481408619" ], - "mAssetSupply": "118423276808856465262964272", - "LPTokenSupply": "26177466717520719558014787" + "mAssetSupply": "103575717549689763483023129", + "LPTokenSupply": "7987481044005084365206863" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "922622010240294584320", - "outputQty0": "923921969801408565708", - "outputQty": "914149115324958748749", - "swapFee": "729516232033686814", + "type": "swap_fp_to_mp", + "inputQty": "1592431456599636967424", + "outputIndex": 0, + "outputQty": "1605057585083819740349", + "swapFee": "0", + "redemptionFee": "956604151908017448", "mpReserves": [ - "63101365138493473651132173", - "28095039738969694526976429", - "27263670231978013944575594" + "56941086798211094117504279", + "12572908980891213083368675", + "34255204109133922616092796" ], "fpReserves": [ - "19334622296354266772084829", - "7117760505387259986365860" + "4452503410000288559852877", + "3725975471561658118376043" ], - "mAssetSupply": "118424200730826266671529980", - "LPTokenSupply": "26177466790472342761383468" + "mAssetSupply": "103574124166040735361959679", + "LPTokenSupply": "7987481044005084365206863" }, { "type": "swap_fp_to_mp", - "inputQty": "53232616700100176", + "inputQty": "38536808119092083949568", "outputIndex": 2, - "outputQty": "53651947619660546", + "outputQty": "38624458054833256653197", "swapFee": "0", - "redemptionFee": "21503499641340", + "redemptionFee": "23148228118349147082", "mpReserves": [ - "63101365138493473651132173", - "28095039738969694526976429", - "27263670178326066324915048" + "56941086798211094117504279", + "12572908980891213083368675", + "34216579651079089359439599" ], "fpReserves": [ - "19334622242595517668734280", - "7117760558619876686466036" + "4413923029803039981381574", + "3764512279680750202325611" ], - "mAssetSupply": "118424200677089021067820771", - "LPTokenSupply": "26177466790472342761383468" + "mAssetSupply": "103535566934071605132635458", + "LPTokenSupply": "7987481044005084365206863" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "17214745598721808924672", - "outputQty0": "17182327883457463885182", - "outputQty": "16958617764961776256199", + "type": "redeem", + "outputIndex": 0, + "inputQty": "674985828403133766696960", + "outputQty0": "690864389698003157301606", + "outputQty": "695467482938380902756507", + "swapFee1": "404991497041880260018", + "swapFee2": "414518633818801894380", "mpReserves": [ - "63118579884092195460056845", - "28095039738969694526976429", - "27263670178326066324915048" + "56245619315272713214747772", + "12572908980891213083368675", + "34216579651079089359439599" ], "fpReserves": [ - "19351804570478975132619462", - "7117760558619876686466036" + "3723058640105036824079968", + "3764512279680750202325611" ], - "mAssetSupply": "118441383004972478531705953", - "LPTokenSupply": "26194425408237304537639667" + "mAssetSupply": "102845117063007420777228232", + "LPTokenSupply": "7312535714751654786535904" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "688190047479371321573376", - "outputQty0": "696792290669423449014053", - "outputQty": "695492501449435426679286", - "swapFee1": "412914028487622792944", - "swapFee2": "278716916267769379605", + "inputQty": "1171518683186541625344", + "outputQty0": "1198795952574179647775", + "outputQty": "1172550084306288144409", + "swapFee1": "702911209911924975", + "swapFee2": "719277571544507788", "mpReserves": [ - "63118579884092195460056845", - "27399547237520259100297143", - "27263670178326066324915048" + "56245619315272713214747772", + "12571736430806906795224266", + "34216579651079089359439599" ], "fpReserves": [ - "18655012279809551683605409", - "7117760558619876686466036" + "3721859844152462644432193", + "3764512279680750202325611" ], - "mAssetSupply": "117744869431219322852071505", - "LPTokenSupply": "25506276652160781978345585" + "mAssetSupply": "102843918986332418142088245", + "LPTokenSupply": "7311364266359589236103057" }, { - "type": "swap_fp_to_mp", - "inputQty": "164583986224095291244544", - "outputIndex": 1, - "outputQty": "165745575982108961605764", - "swapFee": "0", - "redemptionFee": "66427053515559525047", + "type": "mint", + "inputIndex": 0, + "inputQty": "94996589633358528512", + "outputQty0": "94316994249918965770", + "outputQty": "92115650876533683508", "mpReserves": [ - "63118579884092195460056845", - "27233801661538150138691379", - "27263670178326066324915048" + "56245714311862346573276284", + "12571736430806906795224266", + "34216579651079089359439599" ], "fpReserves": [ - "18488944646020652870985503", - "7282344544843971977710580" + "3721954161146712563397963", + "3764512279680750202325611" ], - "mAssetSupply": "117578868224483939598976646", - "LPTokenSupply": "25506276652160781978345585" + "mAssetSupply": "102844013303326668061054015", + "LPTokenSupply": "7311456382010465769786565" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "38258142204585952", - "outputQty0": "38184284194974939", - "outputQty": "37822400370648327", - "swapFee": "30158644224139", + "type": "swap_fp_to_mp", + "inputQty": "146586921147100576", + "outputIndex": 1, + "outputQty": "143366523918587731", + "swapFee": "0", + "redemptionFee": "87945530248106", "mpReserves": [ - "63118579922350337664642797", - "27233801661538150138691379", - "27263670178326066324915048" + "56245714311862346573276284", + "12571736287440382876636535", + "34216579651079089359439599" ], "fpReserves": [ - "18488944684204937065960442", - "7282344507021571607062253" + "3721954014570828816554267", + "3764512426267671349426187" ], - "mAssetSupply": "117578868262668223793951585", - "LPTokenSupply": "25506276652163797842767998" + "mAssetSupply": "102844013156838729844458425", + "LPTokenSupply": "7311456382010465769786565" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "161727785594958610432", - "outputQty0": "161979589497442911308", - "outputQty": "159918040202588594783", + "type": "redeem", + "outputIndex": 2, + "inputQty": "745946203009735876149248", + "outputQty0": "763019688972665871431255", + "outputQty": "763852794108385032362576", + "swapFee1": "447567721805841525689", + "swapFee2": "457811813383599522858", "mpReserves": [ - "63118579922350337664642797", - "27233963389323745097301811", - "27263670178326066324915048" + "56245714311862346573276284", + "12571736287440382876636535", + "33452726856970704327077023" ], "fpReserves": [ - "18489106663794434508871750", - "7282344507021571607062253" + "2958934325598162945123012", + "3764512426267671349426187" ], - "mAssetSupply": "117579030242257721236862893", - "LPTokenSupply": "25506436570204000431362781" + "mAssetSupply": "102081451279679447572550028", + "LPTokenSupply": "6565554935772910477789885" }, { "type": "mint", "inputIndex": 0, - "inputQty": "94794037619415643586560", - "outputQty0": "94610818661040341500372", - "outputQty": "93405622866590247121739", + "inputQty": "12129464922390584", + "outputQty0": "12041913304601204", + "outputQty": "11769877582184672", "mpReserves": [ - "63213373959969753308229357", - "27233963389323745097301811", - "27263670178326066324915048" + "56245714323991811495666868", + "12571736287440382876636535", + "33452726856970704327077023" ], "fpReserves": [ - "18583717482455474850372122", - "7282344507021571607062253" + "2958934337640076249724216", + "3764512426267671349426187" ], - "mAssetSupply": "117673641060918761578363265", - "LPTokenSupply": "25599842193070590678484520" + "mAssetSupply": "102081451291721360877151232", + "LPTokenSupply": "6565554947542788059974557" }, { - "type": "swap_fp_to_mp", - "inputQty": "106052516520641970176", - "outputIndex": 1, - "outputQty": "106780515664742466923", - "swapFee": "0", - "redemptionFee": "42796053980640209", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1331071397279601000448", + "outputQty0": "1359687199815373812608", + "outputQty": "1360816076669053824160", + "swapFee": "1063175717934040677", "mpReserves": [ - "63213373959969753308229357", - "27233856608808080354834888", - "27263670178326066324915048" + "56245714323991811495666868", + "12573067358837662477636983", + "33452726856970704327077023" ], "fpReserves": [ - "18583610492320523249849373", - "7282450559538092249032429" + "2960294024839891623536824", + "3763151610191002295602027" ], - "mAssetSupply": "117673534113579863958480725", - "LPTokenSupply": "25599842193070590678484520" + "mAssetSupply": "102082810978921176250963840", + "LPTokenSupply": "6565555053860359853378624" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "95694225413305610010624", - "outputQty0": "95842274802578707545014", - "outputQty": "94912602815630421058319", - "swapFee": "75695389808904066455", + "inputIndex": 0, + "inputQty": "178304654478717943808", + "outputQty0": "177017766943337565978", + "outputQty": "177164151795501569955", + "swapFee": "138414555620262704", "mpReserves": [ - "63213373959969753308229357", - "27233856608808080354834888", - "27359364403739371934925672" + "56245892628646290213610676", + "12573067358837662477636983", + "33452726856970704327077023" ], "fpReserves": [ - "18679452767123101957394387", - "7187537956722461827974110" + "2960471042606834961102802", + "3762974446039206794032072" ], - "mAssetSupply": "117769376388382442666025739", - "LPTokenSupply": "25599849762609571568891165" + "mAssetSupply": "102082987996688119588529818", + "LPTokenSupply": "6565555067701815415404894" }, { "type": "swap_fp_to_mp", - "inputQty": "2621163865734256263168", - "outputIndex": 2, - "outputQty": "2639977247243316640416", + "inputQty": "5613772901660451", + "outputIndex": 0, + "outputQty": "5642006899140144", "swapFee": "0", - "redemptionFee": "1058039164017790388", + "redemptionFee": "3362789547943", "mpReserves": [ - "63213373959969753308229357", - "27233856608808080354834888", - "27356724426492128618285256" + "56245892623004283314470532", + "12573067358837662477636983", + "33452726856970704327077023" ], "fpReserves": [ - "18676807669213057481423328", - "7190159120588196084237278" + "2960471037002185714529639", + "3762974451652979695692523" ], - "mAssetSupply": "117766732348511562207845068", - "LPTokenSupply": "25599849762609571568891165" + "mAssetSupply": "102082987991086833131504598", + "LPTokenSupply": "6565555067701815415404894" }, { - "type": "swap_fp_to_mp", - "inputQty": "480829995419560753233920", + "type": "redeem", "outputIndex": 1, - "outputQty": "483901738464912422754557", - "swapFee": "0", - "redemptionFee": "193950015174303768729", + "inputQty": "5813623727480948736", + "outputQty0": "5944447368421169216", + "outputQty": "5815862241537940601", + "swapFee1": "3488174236488569", + "swapFee2": "3566668421052701", "mpReserves": [ - "63213373959969753308229357", - "26749954870343167932080331", - "27356724426492128618285256" + "56245892623004283314470532", + "12573061542975420939696382", + "33452726856970704327077023" ], "fpReserves": [ - "18191932631277298059598675", - "7670989116007756837471198" + "2960465092554817293360423", + "3762974451652979695692523" ], - "mAssetSupply": "117282051260590977089789144", - "LPTokenSupply": "25599849762609571568891165" + "mAssetSupply": "102082982050206133131388083", + "LPTokenSupply": "6565549254426905358105014" }, { - "type": "swap_fp_to_mp", - "inputQty": "18269547868219693334528", - "outputIndex": 2, - "outputQty": "18375248103022284889962", - "swapFee": "0", - "redemptionFee": "7364200835660229250", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "210738611977941248114688", + "outputQty0": "215192627544371285598051", + "outputQty": "215273701103658613397012", + "swapFee": "168241182083183700624", "mpReserves": [ - "63213373959969753308229357", - "26749954870343167932080331", - "27338349178389106333395294" + "56245892623004283314470532", + "12783800154953362187811070", + "33452726856970704327077023" ], "fpReserves": [ - "18173522129188147486472166", - "7689258663875976530805726" + "3175657720099188578958474", + "3547700750549321082295511" ], - "mAssetSupply": "117263648122702662176891885", - "LPTokenSupply": "25599849762609571568891165" + "mAssetSupply": "102298174677750504416986134", + "LPTokenSupply": "6565566078545113676475076" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "93716331404546921201664", - "outputQty0": "94837397640287049831065", - "outputQty": "94985292498569465491498", - "swapFee1": "56229798842728152720", - "swapFee2": "37934959056114819932", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1748838727492672", + "outputQty0": "1736422982801926", + "outputQty": "1736313725813586", + "swapFee": "1357064146899", "mpReserves": [ - "63118388667471183842737859", - "26749954870343167932080331", - "27338349178389106333395294" + "56245892624753122041963204", + "12783800154953362187811070", + "33452726856970704327077023" ], "fpReserves": [ - "18078684731547860436641101", - "7689258663875976530805726" + "3175657721835611561760400", + "3547700748813007356481925" ], - "mAssetSupply": "117168848660021431241880752", - "LPTokenSupply": "25506139054184908920504773" + "mAssetSupply": "102298174679486927399788060", + "LPTokenSupply": "6565566078545249382889765" }, { - "type": "swap_fp_to_mp", - "inputQty": "21932312033821352", + "type": "redeem", "outputIndex": 0, - "outputQty": "22133792924051655", - "swapFee": "0", - "redemptionFee": "8839752607683", + "inputQty": "1717525980985625887637504", + "outputQty0": "1754117211625437875314316", + "outputQty": "1765323408131899957995336", + "swapFee1": "1030515588591375532582", + "swapFee2": "1052470326975262725188", "mpReserves": [ - "63118388645337390918686204", - "26749954870343167932080331", - "27338349178389106333395294" + "54480569216621222083967868", + "12783800154953362187811070", + "33452726856970704327077023" ], "fpReserves": [ - "18078684709448478917431604", - "7689258685808288564627078" + "1421540510210173686446084", + "3547700748813007356481925" ], - "mAssetSupply": "117168848637930889475278938", - "LPTokenSupply": "25506139054184908920504773" + "mAssetSupply": "100545109938188464787198932", + "LPTokenSupply": "4848143149118482632805519" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "13140063542410882318336", - "outputQty0": "13114382601683093403313", - "outputQty": "12951679375339608333809", + "type": "redeem", + "outputIndex": 1, + "inputQty": "168728995502744362024960", + "outputQty0": "171673733051677625755972", + "outputQty": "168191051048479078967346", + "swapFee1": "101237397301646617214", + "swapFee2": "103004239831006575453", "mpReserves": [ - "63131528708879801801004540", - "26749954870343167932080331", - "27338349178389106333395294" + "54480569216621222083967868", + "12615609103904883108843724", + "33452726856970704327077023" ], "fpReserves": [ - "18091799092050162010834917", - "7689258685808288564627078" + "1249866777158496060690112", + "3547700748813007356481925" ], - "mAssetSupply": "117181963020532572568682251", - "LPTokenSupply": "25519090733560248528838582" + "mAssetSupply": "100373539209376618168018413", + "LPTokenSupply": "4679424277355468435442280" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "338139407736349982720", - "outputQty0": "338697133646500845145", - "outputQty": "334494576926719971189", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "23417772330762886971392", + "outputQty0": "23256612344376085048649", + "outputQty": "23480804194151756639730", + "swapFee": "18287768365442747896", "mpReserves": [ - "63131528708879801801004540", - "26750293009750904282063051", - "27338349178389106333395294" + "54503986988951984970939260", + "12615609103904883108843724", + "33452726856970704327077023" ], "fpReserves": [ - "18092137789183808511680062", - "7689258685808288564627078" + "1273123389502872145738761", + "3524219944618855599842195" ], - "mAssetSupply": "117182301717666219069527396", - "LPTokenSupply": "25519425228137175248809771" + "mAssetSupply": "100396795821720994253067062", + "LPTokenSupply": "4679426106132304979717069" }, { "type": "mint", "inputIndex": 1, - "inputQty": "31095804869619222577152", - "outputQty0": "31147003069904492981910", - "outputQty": "30760418897732212182072", - "mpReserves": [ - "63131528708879801801004540", - "26781388814620523504640203", - "27338349178389106333395294" - ], - "fpReserves": [ - "18123284792253713004661972", - "7689258685808288564627078" - ], - "mAssetSupply": "117213448720736123562509306", - "LPTokenSupply": "25550185647034907460991843" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "3322918178316246044377088", - "outputQty0": "3361345179078554149115689", - "outputQty": "3366297927433932132797307", - "swapFee1": "1993750906989747626626", - "swapFee2": "1344538071631421659646", + "inputQty": "13209630166468662394880", + "outputQty0": "13478560611192487093986", + "outputQty": "13244787380758933665218", "mpReserves": [ - "59765230781445869668207233", - "26781388814620523504640203", - "27338349178389106333395294" + "54503986988951984970939260", + "12628818734071351771238604", + "33452726856970704327077023" ], "fpReserves": [ - "14761939613175158855546283", - "7689258685808288564627078" + "1286601950114064632832747", + "3524219944618855599842195" ], - "mAssetSupply": "113853448079729200835053263", - "LPTokenSupply": "22227466843809360391377417" + "mAssetSupply": "100410274382332186740161048", + "LPTokenSupply": "4692670893513063913382287" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "9865284775911649968128", - "outputQty0": "9976144730649713354194", - "outputQty": "9990021150249478821560", - "swapFee1": "5919170865546989980", - "swapFee2": "3990457892259885341", + "outputIndex": 1, + "inputQty": "467707656926831168", + "outputQty0": "475709527820066745", + "outputQty": "465948137258366902", + "swapFee1": "280624594156098", + "swapFee2": "285425716692040", "mpReserves": [ - "59755240760295620189385673", - "26781388814620523504640203", - "27338349178389106333395294" + "54503986988951984970939260", + "12628818268123214512871702", + "33452726856970704327077023" ], "fpReserves": [ - "14751963468444509142192089", - "7689258685808288564627078" + "1286601474404536812766002", + "3524219944618855599842195" ], - "mAssetSupply": "113843475925456443381584410", - "LPTokenSupply": "22217602150950535296108287" + "mAssetSupply": "100410273906908084636786343", + "LPTokenSupply": "4692670425833469445966728" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4536237618503729152", - "outputQty0": "4542285014253808182", - "outputQty": "4515446950430628425", - "swapFee": "3591294545403107", + "type": "mint", + "inputIndex": 0, + "inputQty": "21045893214545412", + "outputQty0": "20901164588195670", + "outputQty": "20537258108267468", "mpReserves": [ - "59755240760295620189385673", - "26781388814620523504640203", - "27338353714626724837124446" + "54503987009997878185484672", + "12628818268123214512871702", + "33452726856970704327077023" ], "fpReserves": [ - "14751968010729523396000271", - "7689254170361338133998653" + "1286601495305701400961672", + "3524219944618855599842195" ], - "mAssetSupply": "113843480467741457635392592", - "LPTokenSupply": "22217602151309664750648597" + "mAssetSupply": "100410273927809249224982013", + "LPTokenSupply": "4692670446370727554234196" }, { - "type": "swap_fp_to_mp", - "inputQty": "6024331957648055336960", - "outputIndex": 1, - "outputQty": "6044046171809254490870", - "swapFee": "0", - "redemptionFee": "2422100849078010161", + "type": "mint", + "inputIndex": 0, + "inputQty": "426350737092775514210304", + "outputQty0": "423402720623582099967047", + "outputQty": "415358707737345781584810", "mpReserves": [ - "59755240760295620189385673", - "26775344768448714250149333", - "27338353714626724837124446" + "54930337747090653699694976", + "12628818268123214512871702", + "33452726856970704327077023" ], "fpReserves": [ - "14745912758606828370597549", - "7695278502318986189335613" + "1710004215929283500928719", + "3524219944618855599842195" ], - "mAssetSupply": "113837427637719611688000031", - "LPTokenSupply": "22217602151309664750648597" + "mAssetSupply": "100833676648432831324949060", + "LPTokenSupply": "5108029154108073335819006" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "346023801728135462912", - "outputQty0": "346526849263235881672", - "outputQty": "342472263335496528302", + "inputIndex": 0, + "inputQty": "589342319833757421404160", + "outputQty0": "585214273387167952425179", + "outputQty": "572793471519127502992653", "mpReserves": [ - "59755240760295620189385673", - "26775690792250442385612245", - "27338353714626724837124446" + "55519680066924411121099136", + "12628818268123214512871702", + "33452726856970704327077023" ], "fpReserves": [ - "14746259285456091606479221", - "7695278502318986189335613" + "2295218489316451453353898", + "3524219944618855599842195" ], - "mAssetSupply": "113837774164568874923881703", - "LPTokenSupply": "22217944623573000247176899" + "mAssetSupply": "101418890921819999277374239", + "LPTokenSupply": "5680822625627200838811659" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "416043050504888516608", - "outputQty0": "420716068163520755869", - "outputQty": "419987984270837161514", - "swapFee1": "249625830302933109", - "swapFee2": "168286427265408302", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "202370623507718723338240", + "outputQty0": "200938909142058925337711", + "outputQty": "201280270437643798271497", + "swapFee": "157181192019616529018", "mpReserves": [ - "59755240760295620189385673", - "26775690792250442385612245", - "27337933726642453999962932" + "55722050690432129844437376", + "12628818268123214512871702", + "33452726856970704327077023" ], "fpReserves": [ - "14745838569387928085723352", - "7695278502318986189335613" + "2496157398458510378691609", + "3322939674181211801570698" ], - "mAssetSupply": "113837353616787138668534136", - "LPTokenSupply": "22217528605485078388953601" + "mAssetSupply": "101619829830962058202711950", + "LPTokenSupply": "5680838343746402800464560" }, { - "type": "swap_fp_to_mp", - "inputQty": "82987929280818960", - "outputIndex": 2, - "outputQty": "83268984045118131", - "swapFee": "0", - "redemptionFee": "33365336219669", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "21535003301334013181952", + "outputQty0": "21500261320292546630750", + "outputQty": "21524016741659015699074", + "swapFee": "16810032826496873625", "mpReserves": [ - "59755240760295620189385673", - "26775690792250442385612245", - "27337933643373469954844801" + "55722050690432129844437376", + "12628818268123214512871702", + "33474261860272038340258975" ], "fpReserves": [ - "14745838485974587536549719", - "7695278585306915470154573" + "2517657659778802925322359", + "3301415657439552785871624" ], - "mAssetSupply": "113837353533407163455580172", - "LPTokenSupply": "22217528605485078388953601" + "mAssetSupply": "101641330092282350749342700", + "LPTokenSupply": "5680840024749685450151922" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2949044928681417900032", - "outputQty0": "2953331341640218843799", - "outputQty": "2935909637499219356717", - "swapFee": "2335019652109031703", + "type": "redeem", + "outputIndex": 1, + "inputQty": "16550045820144995794944", + "outputQty0": "16924590720792927181832", + "outputQty": "16565809172846752785154", + "swapFee1": "9930027492086997476", + "swapFee2": "10154754432475756309", "mpReserves": [ - "59755240760295620189385673", - "26778639837179123803512277", - "27337933643373469954844801" + "55722050690432129844437376", + "12612252458950367760086548", + "33474261860272038340258975" ], "fpReserves": [ - "14748791817316227755393518", - "7692342675669416250797856" + "2500733069058009998140527", + "3301415657439552785871624" ], - "mAssetSupply": "113840306864748803674423971", - "LPTokenSupply": "22217528838987043599856771" + "mAssetSupply": "101624415656315990297917177", + "LPTokenSupply": "5664290971932289663056725" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "68406384435632420159488", - "outputQty0": "68505395143442647012791", - "outputQty": "67703123942453594893520", + "type": "redeem", + "outputIndex": 2, + "inputQty": "500772214981912166400", + "outputQty0": "512098679247323997441", + "outputQty": "512622869986789933484", + "swapFee1": "300463328989147299", + "swapFee2": "307259207548394398", "mpReserves": [ - "59755240760295620189385673", - "26847046221614756223671765", - "27337933643373469954844801" + "55722050690432129844437376", + "12612252458950367760086548", + "33473749237402051550325491" ], "fpReserves": [ - "14817297212459670402406309", - "7692342675669416250797856" + "2500220970378762674143086", + "3301415657439552785871624" ], - "mAssetSupply": "113908812259892246321436762", - "LPTokenSupply": "22285231962929497194750291" + "mAssetSupply": "101623903864895950522314134", + "LPTokenSupply": "5663790229763640649805054" }, { - "type": "swap_fp_to_mp", - "inputQty": "237564031552158907236352", - "outputIndex": 2, - "outputQty": "238318398702701065410514", - "swapFee": "0", - "redemptionFee": "95494804857868350686", + "type": "redeem", + "outputIndex": 0, + "inputQty": "17637134282869400666112", + "outputQty0": "18035773916343504363979", + "outputQty": "18153818113430102082729", + "swapFee1": "10582280569721640399", + "swapFee2": "10821464349806102618", "mpReserves": [ - "59755240760295620189385673", - "26847046221614756223671765", - "27099615244670768889434287" + "55703896872318699742354647", + "12612252458950367760086548", + "33473749237402051550325491" ], "fpReserves": [ - "14578560200314999525689938", - "7929906707221575158034208" + "2482185196462419169779107", + "3301415657439552785871624" ], - "mAssetSupply": "113670170742552433313071077", - "LPTokenSupply": "22285231962929497194750291" + "mAssetSupply": "101605878912443956824052773", + "LPTokenSupply": "5646154153708828221302981" }, { "type": "swap_fp_to_mp", - "inputQty": "26942393103195658256384", + "inputQty": "776382340805763840", "outputIndex": 1, - "outputQty": "27018771148673381428441", + "outputQty": "758427971275744749", "swapFee": "0", - "redemptionFee": "10827319603145199812", + "redemptionFee": "464920495144922", "mpReserves": [ - "59755240760295620189385673", - "26820027450466082842243324", - "27099615244670768889434287" + "55703896872318699742354647", + "12612251700522396484341799", + "33473749237402051550325491" ], "fpReserves": [ - "14551491901307136526157785", - "7956849100324770816290592" + "2482184421594927261575423", + "3301416433821893591635464" ], - "mAssetSupply": "113643113270864173458738736", - "LPTokenSupply": "22285231962929497194750291" + "mAssetSupply": "101605878138041385410994011", + "LPTokenSupply": "5646154153708828221302981" }, { - "type": "swap_fp_to_mp", - "inputQty": "1123419882188904935194624", - "outputIndex": 2, - "outputQty": "1125424854358420610471106", - "swapFee": "0", - "redemptionFee": "451012504555699878818", + "type": "mint", + "inputIndex": 2, + "inputQty": "876044063284327", + "outputQty0": "874621873144248", + "outputQty": "854788610127250", "mpReserves": [ - "59755240760295620189385673", - "26820027450466082842243324", - "25974190390312348278963181" + "55703896872318699742354647", + "12612251700522396484341799", + "33473749238278095613609818" ], "fpReserves": [ - "13423960639917886829111753", - "9080268982513675751485216" + "2482184422469549134719671", + "3301416433821893591635464" ], - "mAssetSupply": "112516033021979479461571522", - "LPTokenSupply": "22285231962929497194750291" + "mAssetSupply": "101605878138916007284138259", + "LPTokenSupply": "5646154154563616831430231" }, { - "type": "swap_fp_to_mp", - "inputQty": "229185786507705637142528", + "type": "redeem", "outputIndex": 2, - "outputQty": "229323208730789970949694", - "swapFee": "0", - "redemptionFee": "91912144616838550709", + "inputQty": "363954689918497128448", + "outputQty0": "372175805640542620936", + "outputQty": "372557299306905818401", + "swapFee1": "218372813951098277", + "swapFee2": "223305483384325572", "mpReserves": [ - "59755240760295620189385673", - "26820027450466082842243324", - "25744867181581558308013487" + "55703896872318699742354647", + "12612251700522396484341799", + "33473376680978788707791417" ], "fpReserves": [ - "13194180278375790452338647", - "9309454769021381388627744" + "2481812246663908592098735", + "3301416433821893591635464" ], - "mAssetSupply": "112286344572581999923349125", - "LPTokenSupply": "22285231962929497194750291" + "mAssetSupply": "101605506186415850125842895", + "LPTokenSupply": "5645790221710979729411610" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "528774418449617125376", - "outputQty0": "534172795494190174290", - "outputQty": "533229391118084760263", - "swapFee1": "317264651069770275", - "swapFee2": "213669118197676069", + "outputIndex": 2, + "inputQty": "11390132693032404992", + "outputQty0": "11647413017800190802", + "outputQty": "11659351424502162078", + "swapFee1": "6834079615819442", + "swapFee2": "6988447810680114", "mpReserves": [ - "59755240760295620189385673", - "26819494221074964757483061", - "25744867181581558308013487" + "55703896872318699742354647", + "12612251700522396484341799", + "33473365021627364205629339" ], "fpReserves": [ - "13193646105580296262164357", - "9309454769021381388627744" + "2481800599250890791907933", + "3301416433821893591635464" ], - "mAssetSupply": "112285810613455623930850904", - "LPTokenSupply": "22284703220237512684601942" + "mAssetSupply": "101605494545991280136332207", + "LPTokenSupply": "5645778832261694658588562" }, { "type": "mint", "inputIndex": 0, - "inputQty": "134813184831222754312192", - "outputQty0": "134559925129621272867405", - "outputQty": "133117995992753709146214", + "inputQty": "57760157191278537211904", + "outputQty0": "57349939042521057682490", + "outputQty": "56046828099443759494766", "mpReserves": [ - "59890053945126842943697865", - "26819494221074964757483061", - "25744867181581558308013487" + "55761657029509978279566551", + "12612251700522396484341799", + "33473365021627364205629339" ], "fpReserves": [ - "13328206030709917535031762", - "9309454769021381388627744" + "2539150538293411849590423", + "3301416433821893591635464" ], - "mAssetSupply": "112420370538585245203718309", - "LPTokenSupply": "22417821216230266393748156" + "mAssetSupply": "101662844485033801194014697", + "LPTokenSupply": "5701825660361138418083328" }, { "type": "swap_fp_to_mp", - "inputQty": "664819706992316776448", + "inputQty": "14716240541387499520", "outputIndex": 2, - "outputQty": "665141513547353731572", + "outputQty": "14704927412464468271", "swapFee": "0", - "redemptionFee": "266594869653136163", + "redemptionFee": "8813965645438445", "mpReserves": [ - "59890053945126842943697865", - "26819494221074964757483061", - "25744202040068010954281915" + "55761657029509978279566551", + "12612251700522396484341799", + "33473350316699951741161068" ], "fpReserves": [ - "13327539543535784694622162", - "9310119588728373705404192" + "2539135848350669452181473", + "3301431150062434979134984" ], - "mAssetSupply": "112419704318005982016444872", - "LPTokenSupply": "22417821216230266393748156" + "mAssetSupply": "101662829803905024442044192", + "LPTokenSupply": "5701825660361138418083328" }, { - "type": "swap_fp_to_mp", - "inputQty": "43523162896307912179712", - "outputIndex": 2, - "outputQty": "43542695277828853473517", - "swapFee": "0", - "redemptionFee": "17452388272230015587", + "type": "redeem", + "outputIndex": 0, + "inputQty": "9278504659977166848", + "outputQty0": "9488979120078777538", + "outputQty": "9551168065382360047", + "swapFee1": "5567102795986300", + "swapFee2": "5693387472047266", "mpReserves": [ - "59890053945126842943697865", - "26819494221074964757483061", - "25700659344790182100808398" + "55761647478341912897206504", + "12612251700522396484341799", + "33473350316699951741161068" ], "fpReserves": [ - "13283908572855209655654398", - "9353642751624681617583904" + "2539126359371549373403935", + "3301431150062434979134984" ], - "mAssetSupply": "112376090799713679207492695", - "LPTokenSupply": "22417821216230266393748156" + "mAssetSupply": "101662820320619291835313920", + "LPTokenSupply": "5701816382413188720515110" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2245772049351668137984", - "outputQty0": "2248856827372840626015", - "outputQty": "2241570345312926511703", - "swapFee": "1779823129745851538", + "type": "redeem", + "outputIndex": 2, + "inputQty": "101159293670009946112", + "outputQty0": "103453991204061814883", + "outputQty": "103559519219867385641", + "swapFee1": "60695576202005967", + "swapFee2": "62072394722437088", "mpReserves": [ - "59890053945126842943697865", - "26821739993124316425621045", - "25700659344790182100808398" + "55761647478341912897206504", + "12612251700522396484341799", + "33473246757180731873775427" ], "fpReserves": [ - "13286157429682582496280413", - "9351401181279368691072201" + "2539022905380345311589052", + "3301431150062434979134984" ], - "mAssetSupply": "112378339656541052048118710", - "LPTokenSupply": "22417821394212579368333309" + "mAssetSupply": "101662716928700482495936125", + "LPTokenSupply": "5701715229189076330769594" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "15239360021444698308608", - "outputQty0": "15260270048680678135669", - "outputQty": "15210639642120329076312", - "swapFee": "12077470614634953415", + "type": "mint", + "inputIndex": 2, + "inputQty": "56313437812478844076032", + "outputQty0": "56221867712198858812918", + "outputQty": "54939401476263864191643", "mpReserves": [ - "59890053945126842943697865", - "26836979353145761123929653", - "25700659344790182100808398" + "55761647478341912897206504", + "12612251700522396484341799", + "33529560194993210717851459" ], "fpReserves": [ - "13301417699731263174416082", - "9336190541637248361995889" + "2595244773092544170401970", + "3301431150062434979134984" ], - "mAssetSupply": "112393599926589732726254379", - "LPTokenSupply": "22417822601959640831828650" + "mAssetSupply": "101718938796412681354749043", + "LPTokenSupply": "5756654630665340194961237" }, { "type": "swap_fp_to_mp", - "inputQty": "404239838978768677896192", + "inputQty": "502718880198404472832", "outputIndex": 2, - "outputQty": "404288960191817150778412", + "outputQty": "502417990875878134193", "swapFee": "0", - "redemptionFee": "162050580269777830665", + "redemptionFee": "301138997963554781", "mpReserves": [ - "59890053945126842943697865", - "26836979353145761123929653", - "25296370384598364950029986" + "55761647478341912897206504", + "12612251700522396484341799", + "33529057777002334839717266" ], "fpReserves": [ - "12896291249056818597751343", - "9740430380616017039892081" + "2594742874762604912433168", + "3301933868942633383607816" ], - "mAssetSupply": "111988635526495557927420305", - "LPTokenSupply": "22417822601959640831828650" + "mAssetSupply": "101718437199221740060335022", + "LPTokenSupply": "5756654630665340194961237" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "112520927667857131569152", - "outputQty0": "112712126150741362449486", - "outputQty": "112397602089727555917291", - "swapFee": "89222754585996248917", + "type": "mint", + "inputIndex": 1, + "inputQty": "408339560250987979472896", + "outputQty0": "416685846028653381541296", + "outputQty": "407045760200745355900928", "mpReserves": [ - "59890053945126842943697865", - "26836979353145761123929653", - "25408891312266222081599138" + "55761647478341912897206504", + "13020591260773384463814695", + "33529057777002334839717266" ], "fpReserves": [ - "13009003375207559960200829", - "9628032778526289483974790" + "3011428720791258293974464", + "3301933868942633383607816" ], - "mAssetSupply": "112101347652646299289869791", - "LPTokenSupply": "22417831524235099431453541" + "mAssetSupply": "102135123045250393441876318", + "LPTokenSupply": "6163700390866085550862165" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "94622282471512400", - "outputQty0": "94442375021951565", - "outputQty": "93445541062589554", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "157258079440263773683712", + "outputQty0": "160331502424986863031003", + "outputQty": "160247090528814551375028", + "swapFee": "125253346843066845938", "mpReserves": [ - "59890054039749125415210265", - "26836979353145761123929653", - "25408891312266222081599138" + "55761647478341912897206504", + "13177849340213648237498407", + "33529057777002334839717266" ], "fpReserves": [ - "13009003469649934982152394", - "9628032778526289483974790" + "3171760223216245157005467", + "3141686778413818832232788" ], - "mAssetSupply": "112101347747088674311821356", - "LPTokenSupply": "22417831617680640494043095" + "mAssetSupply": "102295454547675380304907321", + "LPTokenSupply": "6163712916200769857546758" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "118372771142217190342656", - "outputQty0": "118147351668470284878512", - "outputQty": "116898648310144029445278", + "inputIndex": 1, + "inputQty": "338550827949496249352192", + "outputQty0": "344918896741924081371141", + "outputQty": "336670561159423039498371", "mpReserves": [ - "60008426810891342605552921", - "26836979353145761123929653", - "25408891312266222081599138" + "55761647478341912897206504", + "13516400168163144486850599", + "33529057777002334839717266" ], "fpReserves": [ - "13127150821318405267030906", - "9628032778526289483974790" + "3516679119958169238376608", + "3141686778413818832232788" ], - "mAssetSupply": "112219495098757144596699868", - "LPTokenSupply": "22534730265990784523488373" + "mAssetSupply": "102640373444417304386278462", + "LPTokenSupply": "6500383477360192897045129" }, { "type": "swap_fp_to_mp", - "inputQty": "88558414401245106143232", - "outputIndex": 2, - "outputQty": "88556104527508362083241", + "inputQty": "376245147817958810058752", + "outputIndex": 0, + "outputQty": "378515787824342038941932", "swapFee": "0", - "redemptionFee": "35497005220609503262", + "redemptionFee": "225746522735318243900", "mpReserves": [ - "60008426810891342605552921", - "26836979353145761123929653", - "25320335207738713719515897" + "55383131690517570858264572", + "13516400168163144486850599", + "33529057777002334839717266" ], "fpReserves": [ - "13038408308266881508874846", - "9716591192927534590118022" + "3140434915399305498543024", + "3517931926231777642291540" ], - "mAssetSupply": "112130788082710841448047070", - "LPTokenSupply": "22534730265990784523488373" + "mAssetSupply": "102264354986381175964688778", + "LPTokenSupply": "6500383477360192897045129" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "180698306226562912", - "outputQty0": "180352671806254625", - "outputQty": "178452928198451584", + "type": "redeem", + "outputIndex": 1, + "inputQty": "30766595130269", + "outputQty0": "31482857442102", + "outputQty": "30903310716619", + "swapFee1": "18459957078", + "swapFee2": "18889714465", "mpReserves": [ - "60008426991589648832115833", - "26836979353145761123929653", - "25320335207738713719515897" + "55383131690517570858264572", + "13516400168132241176133980", + "33529057777002334839717266" ], "fpReserves": [ - "13038408488619553315129471", - "9716591192927534590118022" + "3140434915367822641100922", + "3517931926231777642291540" ], - "mAssetSupply": "112130788263063513254301695", - "LPTokenSupply": "22534730444443712721939957" + "mAssetSupply": "102264354986349711996961141", + "LPTokenSupply": "6500383477329428147910567" }, { - "type": "swap_fp_to_mp", - "inputQty": "55195091095994236928000", - "outputIndex": 1, - "outputQty": "55207193582851665452985", - "swapFee": "0", - "redemptionFee": "22121828926694661875", + "type": "mint", + "inputIndex": 0, + "inputQty": "10507649835396430299136", + "outputQty0": "10438649392794279681836", + "outputQty": "10194980271589490102168", "mpReserves": [ - "60008426991589648832115833", - "26781772159562909458476668", - "25320335207738713719515897" + "55393639340352967288563708", + "13516400168132241176133980", + "33529057777002334839717266" ], "fpReserves": [ - "12983103916302816660441622", - "9771786284023528827046022" + "3150873564760616920782758", + "3517931926231777642291540" ], - "mAssetSupply": "112075505812575703294275721", - "LPTokenSupply": "22534730444443712721939957" + "mAssetSupply": "102274793635742506276642977", + "LPTokenSupply": "6510578457601017638012735" }, { - "type": "swap_fp_to_mp", - "inputQty": "83994521579461656576", - "outputIndex": 0, - "outputQty": "84285884535674174027", - "swapFee": "0", - "redemptionFee": "33663228515851170", + "type": "mint", + "inputIndex": 1, + "inputQty": "3767016656079075409920", + "outputQty0": "3835358607824240002745", + "outputQty": "3745799817328252512709", "mpReserves": [ - "60008342705705113157941806", - "26781772159562909458476668", - "25320335207738713719515897" + "55393639340352967288563708", + "13520167184788320251543900", + "33529057777002334839717266" ], "fpReserves": [ - "12983019758231527032515656", - "9771870278545108288702598" + "3154708923368441160785503", + "3517931926231777642291540" ], - "mAssetSupply": "112075421688167642182200925", - "LPTokenSupply": "22534730444443712721939957" + "mAssetSupply": "102278628994350330516645722", + "LPTokenSupply": "6514324257418345890525444" }, { "type": "mint", "inputIndex": 1, - "inputQty": "23339529047318368", - "outputQty0": "23371454787647615", - "outputQty": "23125992734011738", + "inputQty": "355527856126114761015296", + "outputQty0": "361806163556483526540628", + "outputQty": "353289449323080881670382", "mpReserves": [ - "60008342705705113157941806", - "26781772182902438505795036", - "25320335207738713719515897" + "55393639340352967288563708", + "13875695040914435012559196", + "33529057777002334839717266" ], "fpReserves": [ - "12983019781602981820163271", - "9771870278545108288702598" + "3516515086924924687326131", + "3517931926231777642291540" ], - "mAssetSupply": "112075421711539096969848540", - "LPTokenSupply": "22534730467569705455951695" + "mAssetSupply": "102640435157906814043186350", + "LPTokenSupply": "6867613706741426772195826" }, { - "type": "redeem", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "22257491244357133533184", + "outputQty0": "22229463114510044203783", + "outputQty": "22210809309696666684126", + "swapFee": "17361646298259549317", + "mpReserves": [ + "55393639340352967288563708", + "13875695040914435012559196", + "33551315268246691973250450" + ], + "fpReserves": [ + "3538744550039434731529914", + "3495721116922080975607414" + ], + "mAssetSupply": "102662664621021324087390133", + "LPTokenSupply": "6867615442906056598150757" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "169427819134766335131648", + "outputQty0": "168341790715804326373393", + "outputQty": "168140014776445535101928", + "swapFee": "131463760934522785555", + "mpReserves": [ + "55563067159487733623695356", + "13875695040914435012559196", + "33551315268246691973250450" + ], + "fpReserves": [ + "3707086340755239057903307", + "3327581102145635440505486" + ], + "mAssetSupply": "102831006411737128413763526", + "LPTokenSupply": "6867628589282150050429312" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "124140778952484159488", "outputIndex": 0, - "inputQty": "29235469637165228032", - "outputQty0": "29528050837246581349", - "outputQty": "29572895838492806106", - "swapFee1": "17541281782299136", - "swapFee2": "11811220334898632", + "outputQty": "124958188129362285635", + "swapFee": "0", + "redemptionFee": "74537999664239152", "mpReserves": [ - "60008313132809274665135700", - "26781772182902438505795036", - "25320335207738713719515897" + "55562942201299604261409721", + "13875695040914435012559196", + "33551315268246691973250450" ], "fpReserves": [ - "12982990253552144573581922", - "9771870278545108288702598" + "3706962110755798659316261", + "3327705242924587924664974" ], - "mAssetSupply": "112075392195299480058165823", - "LPTokenSupply": "22534701233854196468953576" + "mAssetSupply": "102830882256275687679415632", + "LPTokenSupply": "6867628589282150050429312" }, { "type": "swap_fp_to_mp", - "inputQty": "18676947219280495116288", - "outputIndex": 2, - "outputQty": "18673628711265446499476", + "inputQty": "340405669237617179230208", + "outputIndex": 1, + "outputQty": "334303447829537671690114", "swapFee": "0", - "redemptionFee": "7485233554011925578", + "redemptionFee": "204258408229448285554", "mpReserves": [ - "60008313132809274665135700", - "26781772182902438505795036", - "25301661579027448273016421" + "55562942201299604261409721", + "13541391593084897340869082", + "33551315268246691973250450" ], "fpReserves": [ - "12964277169667114759635459", - "9790547225764388783818886" + "3366531430373384850058643", + "3668110912162205103895182" ], - "mAssetSupply": "112056686596648004256144938", - "LPTokenSupply": "22534701233854196468953576" + "mAssetSupply": "102490655834301503318443568", + "LPTokenSupply": "6867628589282150050429312" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1224530317861084416", - "outputQty0": "1236772097922175734", - "outputQty": "1234162159344184170", - "swapFee1": "734718190716650", - "swapFee2": "494708839168870", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1238392207731221331968", + "outputQty0": "1236720541594416433741", + "outputQty": "1236432696293151422344", + "swapFee": "966173454625116217", "mpReserves": [ - "60008313132809274665135700", - "26781772182902438505795036", - "25301660344865288928832251" + "55562942201299604261409721", + "13541391593084897340869082", + "33552553660454423194582418" ], "fpReserves": [ - "12964275932895016837459725", - "9790547225764388783818886" + "3367768150914979266492384", + "3666874479465911952472838" ], - "mAssetSupply": "112056685360370615173138074", - "LPTokenSupply": "22534700009397350426940825" + "mAssetSupply": "102491892554843097734877309", + "LPTokenSupply": "6867628685899495512940933" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "327080542951144031256576", - "outputQty0": "330337100530083476927668", - "outputQty": "330836388760034363881949", - "swapFee1": "196248325770686418753", - "swapFee2": "132134840212033390771", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1731763920461990723584", + "outputQty0": "1763222188912603192515", + "outputQty": "1762801737389514368849", + "swapFee": "1377492778956438763", "mpReserves": [ - "59677476744049240301253751", - "26781772182902438505795036", - "25301660344865288928832251" + "55562942201299604261409721", + "13543123357005359331592666", + "33552553660454423194582418" ], "fpReserves": [ - "12633938832364933360532057", - "9790547225764388783818886" + "3369531373103891869684899", + "3665111677728522438103989" ], - "mAssetSupply": "111726480394680743729601177", - "LPTokenSupply": "22207639091278783464326124" + "mAssetSupply": "102493655777032010338069824", + "LPTokenSupply": "6867628823648773408584809" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "23548776010912993640448", - "outputQty0": "23504015400395756300188", - "outputQty": "23444158937608777389297", - "swapFee": "18607227546128074379", + "inputQty": "37634031120488136704", + "outputQty0": "37386355111422868919", + "outputQty": "37377312071085270148", + "swapFee": "29207487933178401", "mpReserves": [ - "59701025520060153294894199", - "26781772182902438505795036", - "25301660344865288928832251" + "55562979835330724749546425", + "13543123357005359331592666", + "33552553660454423194582418" ], "fpReserves": [ - "12657442847765329116832245", - "9767103066826780006429589" + "3369568759459003292553818", + "3665074300416451352833841" ], - "mAssetSupply": "111749984410081139485901365", - "LPTokenSupply": "22207640952001538077133561" + "mAssetSupply": "102493693163387121760938743", + "LPTokenSupply": "6867628826569522201902649" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "353088955651758096384", - "outputQty0": "353565610736391204278", - "outputQty": "352659736400983256814", - "swapFee": "279901194567702998", + "type": "swap_fp_to_mp", + "inputQty": "15973125245814827909120", + "outputIndex": 2, + "outputQty": "15975671174929139062995", + "swapFee": "0", + "redemptionFee": "9578234348514032921", "mpReserves": [ - "59701025520060153294894199", - "26782125271858090263891420", - "25301660344865288928832251" + "55562979835330724749546425", + "13543123357005359331592666", + "33536577989279494055519423" ], "fpReserves": [ - "12657796413376065508036523", - "9766750407090379023172775" + "3353605035544813237684714", + "3681047425662266180742961" ], - "mAssetSupply": "111750337975691875877105643", - "LPTokenSupply": "22207640979991657533903860" + "mAssetSupply": "102477739017707280220102560", + "LPTokenSupply": "6867628826569522201902649" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "102910175746382454849536", - "outputQty0": "103931546915582933803589", - "outputQty": "103749003783755250687524", - "swapFee1": "61746105447829472909", - "swapFee2": "41572618766233173521", + "inputQty": "14911287191906444902400", + "outputQty0": "15259705523331530338086", + "outputQty": "14978263052998235655180", + "swapFee1": "8946772315143866941", + "swapFee2": "9155823313998918202", "mpReserves": [ - "59701025520060153294894199", - "26678376268074335013203896", - "25301660344865288928832251" + "55562979835330724749546425", + "13528145093952361095937486", + "33536577989279494055519423" ], "fpReserves": [ - "12553864866460482574232934", - "9766750407090379023172775" + "3338345330021481707346628", + "3681047425662266180742961" ], - "mAssetSupply": "111646448001395059176475575", - "LPTokenSupply": "22104736978855819862001614" + "mAssetSupply": "102462488468007262688682676", + "LPTokenSupply": "6852718434054847271386943" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "16559551175066705199104", - "outputQty0": "16582175042998842901674", - "outputQty": "16540484709215518344305", - "swapFee": "13127601351191409037", + "type": "swap_fp_to_mp", + "inputQty": "19412205057517232848896", + "outputIndex": 2, + "outputQty": "19413393460786531411697", + "swapFee": "0", + "redemptionFee": "11639325248531495564", "mpReserves": [ - "59701025520060153294894199", - "26694935819249401718403000", - "25301660344865288928832251" + "55562979835330724749546425", + "13528145093952361095937486", + "33517164595818707524107726" ], "fpReserves": [ - "12570447041503481417134608", - "9750209922381163504828470" + "3318946454607262548073126", + "3700459630719783413591857" ], - "mAssetSupply": "111663030176438058019377249", - "LPTokenSupply": "22104738291615954981142517" + "mAssetSupply": "102443101231918292060904738", + "LPTokenSupply": "6852718434054847271386943" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "85349490164429779632128", - "outputQty0": "85465352706172006770210", - "outputQty": "85244796088245295271797", - "swapFee": "67659054882565243771", + "type": "swap_fp_to_mp", + "inputQty": "9365713473895864991744", + "outputIndex": 0, + "outputQty": "9415202136783671783207", + "swapFee": "0", + "redemptionFee": "5615259404686884596", "mpReserves": [ - "59701025520060153294894199", - "26780285309413831498035128", - "25301660344865288928832251" + "55553564633193941077763218", + "13528145093952361095937486", + "33517164595818707524107726" ], "fpReserves": [ - "12655912394209653423904818", - "9664965126292918209556673" + "3309587688932784407079020", + "3709825344193679278583601" ], - "mAssetSupply": "111748495529144230026147459", - "LPTokenSupply": "22104745057521443237666894" + "mAssetSupply": "102433748081503218606795228", + "LPTokenSupply": "6852718434054847271386943" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "534982540624756473856", - "outputQty0": "535889227989243336167", - "outputQty": "534476126391766063916", - "swapFee": "424221903417049515", + "inputQty": "16682348689073202", + "outputQty0": "16659900636406915", + "outputQty": "16659230717343060", + "swapFee": "13016640762730", "mpReserves": [ - "59701025520060153294894199", - "26780285309413831498035128", - "25302195327405913685306107" + "55553564633193941077763218", + "13528145093952361095937486", + "33517164612501056213180928" ], "fpReserves": [ - "12656448283437642667240985", - "9664430650166526443492757" + "3309587705592685043485935", + "3709825327534448561240541" ], - "mAssetSupply": "111749031418372219269483626", - "LPTokenSupply": "22104745099943633579371845" + "mAssetSupply": "102433748098163119243202143", + "LPTokenSupply": "6852718434056148935463216" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "163318731162908497018880", - "outputQty0": "163537001829595332473172", - "outputQty": "161821132003165385180607", + "inputIndex": 2, + "inputQty": "1250658734664686833238016", + "outputQty0": "1248774308718942616498212", + "outputQty": "1218921541252560458899092", "mpReserves": [ - "59701025520060153294894199", - "26943604040576739995054008", - "25302195327405913685306107" + "55553564633193941077763218", + "13528145093952361095937486", + "34767823347165743046418944" ], "fpReserves": [ - "12819985285267237999714157", - "9664430650166526443492757" + "4558362014311627659984147", + "3709825327534448561240541" ], - "mAssetSupply": "111912568420201814601956798", - "LPTokenSupply": "22266566231946798964552452" + "mAssetSupply": "103682522406882061859700355", + "LPTokenSupply": "8071639975308709394362308" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "803942542888640384", - "outputQty0": "811995977005701304", - "outputQty": "810598962196831131", - "swapFee1": "482365525733184", - "swapFee2": "324798390802280", + "type": "mint", + "inputIndex": 1, + "inputQty": "172886697594067427000320", + "outputQty0": "176058042912468086820480", + "outputQty": "171755566819338746802951", "mpReserves": [ - "59701025520060153294894199", - "26943603229977777798222877", - "25302195327405913685306107" + "55553564633193941077763218", + "13701031791546428522937806", + "34767823347165743046418944" ], "fpReserves": [ - "12819984473271260994012853", - "9664430650166526443492757" + "4734420057224095746804627", + "3709825327534448561240541" ], - "mAssetSupply": "111912567608530635987057774", - "LPTokenSupply": "22266565428052492628485386" + "mAssetSupply": "103858580449794529946520835", + "LPTokenSupply": "8243395542128048141165259" }, { "type": "swap_fp_to_mp", - "inputQty": "11946003052443044151296", + "inputQty": "6749295396402236489728", "outputIndex": 1, - "outputQty": "11948426029607720482328", + "outputQty": "6636126636417223214160", "swapFee": "0", - "redemptionFee": "4787612125381065583", - "mpReserves": [ - "59701025520060153294894199", - "26931654803948170077740549", - "25302195327405913685306107" - ], - "fpReserves": [ - "12808015442957808330054301", - "9676376653218969487644053" - ], - "mAssetSupply": "111900603365829308704164805", - "LPTokenSupply": "22266565428052492628485386" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "196509373199690955227136", - "outputQty0": "198471693594686190810202", - "outputQty": "198767597039584098367425", - "swapFee1": "117905623919814573136", - "swapFee2": "79388677437874476324", + "redemptionFee": "4056238325296137602", "mpReserves": [ - "59502257923020569196526774", - "26931654803948170077740549", - "25302195327405913685306107" + "55553564633193941077763218", + "13694395664910011299723646", + "34767823347165743046418944" ], "fpReserves": [ - "12609543749363122139244099", - "9676376653218969487644053" + "4727659660015268850801091", + "3716574622930850797730269" ], - "mAssetSupply": "111702211060912060387830927", - "LPTokenSupply": "22070067845415193654715563" + "mAssetSupply": "103851824108824028346654901", + "LPTokenSupply": "8243395542128048141165259" }, { - "type": "swap_fp_to_mp", - "inputQty": "50387866441660086878208", - "outputIndex": 1, - "outputQty": "50390599251240086121440", - "swapFee": "0", - "redemptionFee": "20190885109028968428", + "type": "mint", + "inputIndex": 2, + "inputQty": "131910747686188", + "outputQty0": "131698138333713", + "outputQty": "128473456272479", "mpReserves": [ - "59502257923020569196526774", - "26881264204696929991619109", - "25302195327405913685306107" + "55553564633193941077763218", + "13694395664910011299723646", + "34767823347297653794105132" ], "fpReserves": [ - "12559066536590549718171998", - "9726764519660629574522261" + "4727659660146966989134804", + "3716574622930850797730269" ], - "mAssetSupply": "111651754039024596995727254", - "LPTokenSupply": "22070067845415193654715563" + "mAssetSupply": "103851824108955726484988614", + "LPTokenSupply": "8243395542256521597437738" }, { - "type": "swap_fp_to_mp", - "inputQty": "248743355053755416444928", - "outputIndex": 0, - "outputQty": "249505352236593069086665", - "swapFee": "0", - "redemptionFee": "99654426006308379794", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "7603722815982558208", + "outputQty0": "7741533697348633515", + "outputQty": "7722726636381851650", + "swapFee": "6041583281180937", "mpReserves": [ - "59252752570783976127440109", - "26881264204696929991619109", - "25302195327405913685306107" + "55553564633193941077763218", + "13694403268632827282281854", + "34767823347297653794105132" ], "fpReserves": [ - "12309930471574778768686007", - "9975507874714384990967189" + "4727667401680664337768319", + "3716566900204214415878619" ], - "mAssetSupply": "111402717628434832354621057", - "LPTokenSupply": "22070067845415193654715563" + "mAssetSupply": "103851831850489423833622129", + "LPTokenSupply": "8243395542860679925555831" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "146055773366631945732096", - "outputQty0": "147483419769779873389463", - "outputQty": "147176169425257253035887", - "swapFee1": "87633464019979167439", - "swapFee2": "58993367907911949355", + "inputQty": "105213400002366342692864", + "outputQty0": "107785668590771451001129", + "outputQty": "107893462157447487058076", + "swapFee1": "63128040001419805615", + "swapFee2": "64671401154462870600", "mpReserves": [ - "59252752570783976127440109", - "26881264204696929991619109", - "25155019157980656432270220" + "55553564633193941077763218", + "13694403268632827282281854", + "34659929885140206307047056" ], "fpReserves": [ - "12162447051804998895296544", - "9975507874714384990967189" + "4619881733089892886767190", + "3716566900204214415878619" ], - "mAssetSupply": "111255293202032960393180949", - "LPTokenSupply": "21924020835394963706900210" + "mAssetSupply": "103744110853299806845491600", + "LPTokenSupply": "8138188455662313724843528" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "67797102037484607373312", - "outputQty0": "67884956426606525315878", - "outputQty": "67737294609606080358067", - "swapFee": "53750346429938494133", + "inputQty": "189392517352996896", + "outputQty0": "192818678773281704", + "outputQty": "192381566906235109", + "swapFee": "150487758172295", "mpReserves": [ - "59252752570783976127440109", - "26949061306734414598992421", - "25155019157980656432270220" + "55553564633193941077763218", + "13694403458025344635278750", + "34659929885140206307047056" ], "fpReserves": [ - "12230332008231605420612422", - "9907770580104778910609122" + "4619881925908571660048894", + "3716566707822647509643510" ], - "mAssetSupply": "111323178158459566918496827", - "LPTokenSupply": "21924026210429606700749623" + "mAssetSupply": "103744111046118485618773304", + "LPTokenSupply": "8138188455677362500660757" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "238657740243275803000832", - "outputQty0": "238207967453243213205054", - "outputQty": "237643111183722596030781", - "swapFee": "188597897248217342220", + "type": "mint", + "inputIndex": 2, + "inputQty": "2792230734320350265344", + "outputQty0": "2787803632362937216765", + "outputQty": "2719717854109802703361", "mpReserves": [ - "59491410311027251930440941", - "26949061306734414598992421", - "25155019157980656432270220" + "55553564633193941077763218", + "13694403458025344635278750", + "34662722115874526657312400" ], "fpReserves": [ - "12468539975684848633817476", - "9670127468921056314578341" + "4622669729540934597265659", + "3716566707822647509643510" ], - "mAssetSupply": "111561386125912810131701881", - "LPTokenSupply": "21924045070219331522483845" + "mAssetSupply": "103746898849750848555990069", + "LPTokenSupply": "8140908173531472303364118" }, { "type": "swap_fp_to_mp", - "inputQty": "565734484421873244307456", + "inputQty": "1541406554363968880640", "outputIndex": 2, - "outputQty": "565275829492281073613426", + "outputQty": "1545199308441572403083", "swapFee": "0", - "redemptionFee": "226602832151246512915", + "redemptionFee": "926205210517093127", "mpReserves": [ - "59491410311027251930440941", - "26949061306734414598992421", - "24589743328488375358656794" + "55553564633193941077763218", + "13694403458025344635278750", + "34661176916566085084909317" ], "fpReserves": [ - "11902032895306732351529153", - "10235861953342929558885797" + "4621126054190072775385674", + "3718108114377011478524150" ], - "mAssetSupply": "110995105648366845095926473", - "LPTokenSupply": "21924045070219331522483845" + "mAssetSupply": "103745356100605197251203211", + "LPTokenSupply": "8140908173531472303364118" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2857032871057237091549184", - "outputQty0": "2851318122179079467670607", - "outputQty": "2821473546561764965759481", + "type": "redeem", + "outputIndex": 2, + "inputQty": "117968739388176975527936", + "outputQty0": "120844270517292127692263", + "outputQty": "120961733332631185672172", + "swapFee1": "70781243632906185316", + "swapFee2": "72506562310375276615", "mpReserves": [ - "62348443182084489021990125", - "26949061306734414598992421", - "24589743328488375358656794" + "55553564633193941077763218", + "13694403458025344635278750", + "34540215183233453899237145" ], "fpReserves": [ - "14753351017485811819199760", - "10235861953342929558885797" + "4500281783672780647693411", + "3718108114377011478524150" ], - "mAssetSupply": "113846423770545924563597080", - "LPTokenSupply": "24745518616781096488243326" + "mAssetSupply": "103624584336650215498787563", + "LPTokenSupply": "8022946512267658618454713" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "760834150026157104300032", - "outputQty0": "759241008649560648500777", - "outputQty": "750988367818714252787506", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "678418097582386622496768", + "outputQty0": "690071174825513075581301", + "outputQty": "687750673297807512567745", + "swapFee": "538492157844620093135", "mpReserves": [ - "63109277332110646126290157", - "26949061306734414598992421", - "24589743328488375358656794" + "55553564633193941077763218", + "14372821555607731257775518", + "34540215183233453899237145" ], "fpReserves": [ - "15512592026135372467700537", - "10235861953342929558885797" + "5190352958498293723274712", + "3030357441079203965956405" ], - "mAssetSupply": "114605664779195485212097857", - "LPTokenSupply": "25496506984599810741030832" + "mAssetSupply": "104314655511475728574368864", + "LPTokenSupply": "8023000361483443080464026" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8373325327167989481472", - "outputQty0": "8385696968151680620998", - "outputQty": "8293877624259509805021", + "type": "redeem", + "outputIndex": 1, + "inputQty": "2154379276236892930048", + "outputQty0": "2209411306747521483299", + "outputQty": "2172577879195991047473", + "swapFee1": "1292627565742135758", + "swapFee2": "1325646784048512889", "mpReserves": [ - "63109277332110646126290157", - "26957434632061582588473893", - "24589743328488375358656794" + "55553564633193941077763218", + "14370648977728535266728045", + "34540215183233453899237145" ], "fpReserves": [ - "15520977723103524148321535", - "10235861953342929558885797" + "5188143547191546201791413", + "3030357441079203965956405" ], - "mAssetSupply": "114614050476163636892718855", - "LPTokenSupply": "25504800862224070250835853" + "mAssetSupply": "104312447425815765101398454", + "LPTokenSupply": "8020846111469962761747553" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2834434239465259008000", - "outputQty0": "2828444190035806944684", - "outputQty": "2797470823978337788674", + "inputQty": "1078571858076528541696", + "outputQty0": "1071967690919826355110", + "outputQty": "1044640190140504965380", "mpReserves": [ - "63112111766350111385298157", - "26957434632061582588473893", - "24589743328488375358656794" + "55554643205052017606304914", + "14370648977728535266728045", + "34540215183233453899237145" ], "fpReserves": [ - "15523806167293559955266219", - "10235861953342929558885797" + "5189215514882466028146523", + "3030357441079203965956405" ], - "mAssetSupply": "114616878920353672699663539", - "LPTokenSupply": "25507598333048048588624527" + "mAssetSupply": "104313519393506684927753564", + "LPTokenSupply": "8021890751660103266712933" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6563154442161661935616", - "outputQty0": "6549282830953607247322", - "outputQty": "6477557460655519482203", + "inputIndex": 2, + "inputQty": "73411374908999374733312", + "outputQty0": "73311399929854488557953", + "outputQty": "71440748927480099282172", "mpReserves": [ - "63118674920792273047233773", - "26957434632061582588473893", - "24589743328488375358656794" + "55554643205052017606304914", + "14370648977728535266728045", + "34613626558142453273970457" ], "fpReserves": [ - "15530355450124513562513541", - "10235861953342929558885797" + "5262526914812320516704476", + "3030357441079203965956405" ], - "mAssetSupply": "114623428203184626306910861", - "LPTokenSupply": "25514075890508704108106730" + "mAssetSupply": "104386830793436539416311517", + "LPTokenSupply": "8093331500587583365995105" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "204856483166985704701952", - "outputQty0": "205277896334929096645561", - "outputQty": "204478572466637263512427", - "swapFee": "162420245847022885918", + "type": "redeem", + "outputIndex": 1, + "inputQty": "256004347035914673848320", + "outputQty0": "262533783181544534518626", + "outputQty": "258072403460711602106184", + "swapFee1": "153602608221548804308", + "swapFee2": "157520269908926720711", "mpReserves": [ - "63118674920792273047233773", - "26957434632061582588473893", - "24794599811655361063358746" + "55554643205052017606304914", + "14112576574267823664621861", + "34613626558142453273970457" ], "fpReserves": [ - "15735633346459442659159102", - "10031383380876292295373370" + "4999993131630775982185850", + "3030357441079203965956405" ], - "mAssetSupply": "114828706099519555403556422", - "LPTokenSupply": "25514092132533288810395321" + "mAssetSupply": "104124454530524903808513602", + "LPTokenSupply": "7837342513812490847027215" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "40418982744312416", - "outputQty0": "40334120242216176", - "outputQty": "40171512687346178", - "swapFee": "31910258333483", + "inputQty": "28539448467824291840", + "outputQty0": "28361634679078866091", + "outputQty": "28235020558362916392", + "swapFee": "22113260092770503", "mpReserves": [ - "63118674961211255791546189", - "26957434632061582588473893", - "24794599811655361063358746" + "55554671744500485430596754", + "14112576574267823664621861", + "34613626558142453273970457" ], "fpReserves": [ - "15735633386793562901375278", - "10031383340704779608027192" + "5000021493265455061051941", + "3030329206058645603040013" ], - "mAssetSupply": "114828706139853675645772598", - "LPTokenSupply": "25514092132536479836228669" + "mAssetSupply": "104124482892159582887379693", + "LPTokenSupply": "7837342516023816856304265" }, { "type": "swap_fp_to_mp", - "inputQty": "8755576997518563606528", - "outputIndex": 0, - "outputQty": "8798890973573879346776", + "inputQty": "5546744659580983181312", + "outputIndex": 2, + "outputQty": "5571802448512985326068", "swapFee": "0", - "redemptionFee": "3513573063863605827", + "redemptionFee": "3340253247896000126", "mpReserves": [ - "63109876070237681912199413", - "26957434632061582588473893", - "24794599811655361063358746" + "55554671744500485430596754", + "14112576574267823664621861", + "34608054755693940288644389" ], "fpReserves": [ - "15726849454133903886806090", - "10040138917702298171633720" + "4994454404518961727507936", + "3035875950718226586221325" ], - "mAssetSupply": "114819925720767080494809237", - "LPTokenSupply": "25514092132536479836228669" + "mAssetSupply": "104118919143666337449835814", + "LPTokenSupply": "7837342516023816856304265" }, { "type": "swap_fp_to_mp", - "inputQty": "389541128363108335616", + "inputQty": "455020830770648186880", "outputIndex": 1, - "outputQty": "390063920241441504934", - "swapFee": "0", - "redemptionFee": "156320098095199278", - "mpReserves": [ - "63109876070237681912199413", - "26957044568141341146968959", - "24794599811655361063358746" - ], - "fpReserves": [ - "15726458653888665888610949", - "10040528458830661279969336" - ], - "mAssetSupply": "114819535076841940591813374", - "LPTokenSupply": "25514092132536479836228669" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "243522485217135530344448", - "outputIndex": 0, - "outputQty": "244683894396659881700282", + "outputQty": "448784225167352997475", "swapFee": "0", - "redemptionFee": "97707810700467271526", + "redemptionFee": "274009999924572584", "mpReserves": [ - "62865192175841022030499131", - "26957044568141341146968959", - "24794599811655361063358746" + "55554671744500485430596754", + "14112127790042656311624386", + "34608054755693940288644389" ], "fpReserves": [ - "15482189127137497709795242", - "10284050944047796810313784" + "4993997721185754106533036", + "3036330971548997234408205" ], - "mAssetSupply": "114575363257901472880269193", - "LPTokenSupply": "25514092132536479836228669" + "mAssetSupply": "104118462734343129753433498", + "LPTokenSupply": "7837342516023816856304265" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "67645685184175127134208", - "outputQty0": "68351913308129342590688", - "outputQty": "68223673323878744118771", - "swapFee1": "40587411110505076280", - "swapFee2": "27340765323251737036", + "outputIndex": 2, + "inputQty": "107710545062201744", + "outputQty0": "110448913220471305", + "outputQty": "110542370604197664", + "swapFee1": "64626327037321", + "swapFee2": "66269347932282", "mpReserves": [ - "62865192175841022030499131", - "26888820894817462402850188", - "24794599811655361063358746" + "55554671744500485430596754", + "14112127790042656311624386", + "34608054645151569684446725" ], "fpReserves": [ - "15413837213829368367204554", - "10284050944047796810313784" + "4993997610736840886061731", + "3036330971548997234408205" ], - "mAssetSupply": "114507038685358666789415541", - "LPTokenSupply": "25446450506093415759602089" + "mAssetSupply": "104118462623960485880894475", + "LPTokenSupply": "7837342408319734426806253" }, { "type": "mint", "inputIndex": 0, - "inputQty": "458248356669057470038016", - "outputQty0": "457284974495029063279269", - "outputQty": "452269792305619038657093", + "inputQty": "416833278604537317294080", + "outputQty0": "414221951703380329067218", + "outputQty": "403654740275869677498948", "mpReserves": [ - "63323440532510079500537147", - "26888820894817462402850188", - "24794599811655361063358746" + "55971505023105022747890834", + "14112127790042656311624386", + "34608054645151569684446725" ], "fpReserves": [ - "15871122188324397430483823", - "10284050944047796810313784" + "5408219562440221215128949", + "3036330971548997234408205" ], - "mAssetSupply": "114964323659853695852694810", - "LPTokenSupply": "25898720298399034798259182" + "mAssetSupply": "104532684575663866209961693", + "LPTokenSupply": "8240997148595604104305201" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1784713188734355111936", - "outputQty0": "1787411285869670395077", - "outputQty": "1767724611923297947114", + "type": "swap_fp_to_mp", + "inputQty": "1033970319564245827584000", + "outputIndex": 0, + "outputQty": "1042182831869332266927105", + "swapFee": "0", + "redemptionFee": "621796910411712524201", "mpReserves": [ - "63323440532510079500537147", - "26890605608006196757962124", - "24794599811655361063358746" + "54929322191235690480963729", + "14112127790042656311624386", + "34608054645151569684446725" ], "fpReserves": [ - "15872909599610267100878900", - "10284050944047796810313784" + "4371891378420700341460017", + "4070301291113243061992205" ], - "mAssetSupply": "114966111071139565523089887", - "LPTokenSupply": "25900488023010958096206296" + "mAssetSupply": "103496978188554757048816962", + "LPTokenSupply": "8240997148595604104305201" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "230538640786864832", "outputIndex": 2, - "inputQty": "9351357334385662623744", - "outputQty0": "9449820175281383028416", - "outputQty": "9426758564223750304983", - "swapFee1": "5610814400631397574", - "swapFee2": "3779928070112553211", + "outputQty": "230854230275186856", + "swapFee": "0", + "redemptionFee": "138388816005293", "mpReserves": [ - "63323440532510079500537147", - "26890605608006196757962124", - "24785173053091137313053763" + "54929322191235690480963729", + "14112127790042656311624386", + "34608054414297339409259869" ], "fpReserves": [ - "15863459779434985717850484", - "10284050944047796810313784" + "4371891147772673665970528", + "4070301521651883848857037" ], - "mAssetSupply": "114956665030892354252614682", - "LPTokenSupply": "25891137226758012496722309" + "mAssetSupply": "103496977958045119189332766", + "LPTokenSupply": "8240997148595604104305201" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "747106392801434664960", - "outputQty0": "745526439431093404437", - "outputQty": "737316250201277836640", + "type": "redeem", + "outputIndex": 1, + "inputQty": "270813381958810533363712", + "outputQty0": "277292867100830749072231", + "outputQty": "272479807750642544366207", + "swapFee1": "162488029175286320018", + "swapFee2": "166375720260498449443", "mpReserves": [ - "63324187638902880935202107", - "26890605608006196757962124", - "24785173053091137313053763" + "54929322191235690480963729", + "13839647982292013767258179", + "34608054414297339409259869" ], "fpReserves": [ - "15864205305874416811254921", - "10284050944047796810313784" + "4094598280671842916898297", + "4070301521651883848857037" ], - "mAssetSupply": "114957410557331785346019119", - "LPTokenSupply": "25891874543008213774558949" + "mAssetSupply": "103219851466664548938709978", + "LPTokenSupply": "7970200015439711099573490" }, { "type": "swap_fp_to_mp", - "inputQty": "3880491361889867005952", + "inputQty": "1044837541792056082432", "outputIndex": 1, - "outputQty": "3885100898170324829986", + "outputQty": "1026390456772168906352", "swapFee": "0", - "redemptionFee": "1557012180349089071", + "redemptionFee": "626926172065873353", "mpReserves": [ - "63324187638902880935202107", - "26886720507108026433132138", - "24785173053091137313053763" + "54929322191235690480963729", + "13838621591835241598351827", + "34608054414297339409259869" ], "fpReserves": [ - "15860312775423544088576677", - "10287931435409686677319736" + "4093553403718399794642165", + "4071346359193675904939469" ], - "mAssetSupply": "114953519583893092972429946", - "LPTokenSupply": "25891874543008213774558949" + "mAssetSupply": "103218807216637277882327199", + "LPTokenSupply": "7970200015439711099573490" }, { - "type": "swap_fp_to_mp", - "inputQty": "16448170210582941663232", - "outputIndex": 2, - "outputQty": "16458667490732335223462", - "swapFee": "0", - "redemptionFee": "6599591423519138745", + "type": "mint", + "inputIndex": 2, + "inputQty": "225186377869143111106560", + "outputQty0": "224825467040181329690047", + "outputQty": "219440960701162852443162", "mpReserves": [ - "63324187638902880935202107", - "26886720507108026433132138", - "24768714385600404977830301" + "54929322191235690480963729", + "13838621591835241598351827", + "34833240792166482520366429" ], "fpReserves": [ - "15843813796864746241712347", - "10304379605620269618982968" + "4318378870758581124332212", + "4071346359193675904939469" ], - "mAssetSupply": "114937027204925718644704361", - "LPTokenSupply": "25891874543008213774558949" + "mAssetSupply": "103443632683677459212017246", + "LPTokenSupply": "8189640976140873952016652" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "307393500173481948479488", "outputIndex": 0, - "inputQty": "394763895597043264", - "outputQty0": "398915995216478400", - "outputQty": "399602044947161459", - "swapFee1": "236858337358225", - "swapFee2": "159566398086591", + "outputQty": "309099559754513491402329", + "swapFee": "0", + "redemptionFee": "184418481065362318296", "mpReserves": [ - "63324187239300835988040648", - "26886720507108026433132138", - "24768714385600404977830301" + "54620222631481176989561400", + "13838621591835241598351827", + "34833240792166482520366429" ], "fpReserves": [ - "15843813397948751025233947", - "10304379605620269618982968" + "4011014735649643927171868", + "4378739859367157853418957" ], - "mAssetSupply": "114937026806169289826312552", - "LPTokenSupply": "25891874148268004011251507" + "mAssetSupply": "103136452967049587377175198", + "LPTokenSupply": "8189640976140873952016652" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "10289449882577954406400", - "outputQty0": "10397662539180615629197", - "outputQty": "10377811658994812182770", - "swapFee1": "6173669929546772643", - "swapFee2": "4159065015672246251", + "type": "mint", + "inputIndex": 0, + "inputQty": "10434678811176073216", + "outputQty0": "10370130563979355414", + "outputQty": "10125859542082979885", "mpReserves": [ - "63324187239300835988040648", - "26876342695449031620949368", - "24768714385600404977830301" + "54620233066159988165634616", + "13838621591835241598351827", + "34833240792166482520366429" ], "fpReserves": [ - "15833415735409570409604750", - "10304379605620269618982968" + "4011025105780207906527282", + "4378739859367157853418957" ], - "mAssetSupply": "114926633302695124882929606", - "LPTokenSupply": "25881585315752419011522371" + "mAssetSupply": "103136463337180151356530612", + "LPTokenSupply": "8189651102000416034996537" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "282166487523721924837376", - "outputQty0": "282735766761203804369630", - "outputQty": "279617515528037416224561", + "type": "swap_fp_to_mp", + "inputQty": "3108563398916337", + "outputIndex": 0, + "outputQty": "3124214600172429", + "swapFee": "0", + "redemptionFee": "1864051475915", "mpReserves": [ - "63324187239300835988040648", - "26876342695449031620949368", - "25050880873124126902667677" + "54620233063035773565462187", + "13838621591835241598351827", + "34833240792166482520366429" ], "fpReserves": [ - "16116151502170774213974380", - "10304379605620269618982968" + "4011025102673455446668799", + "4378739862475721252335294" ], - "mAssetSupply": "115209369069456328687299236", - "LPTokenSupply": "26161202831280456427746932" + "mAssetSupply": "103136463334075262948148044", + "LPTokenSupply": "8189651102000416034996537" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1251290949565758308352", - "outputQty0": "1253775532668321404467", - "outputQty": "1239912026348259026323", + "type": "redeem", + "outputIndex": 2, + "inputQty": "314608295253899608064", + "outputQty0": "322004381493927347786", + "outputQty": "322344004183753008637", + "swapFee1": "188764977152339764", + "swapFee2": "193202628896356408", "mpReserves": [ - "63324187239300835988040648", - "26876342695449031620949368", - "25052132164073692660976029" + "54620233063035773565462187", + "13838621591835241598351827", + "34832918448162298767357792" ], "fpReserves": [ - "16117405277703442535378847", - "10304379605620269618982968" + "4010703098291961519321013", + "4378739862475721252335294" ], - "mAssetSupply": "115210622844988997008703703", - "LPTokenSupply": "26162442743306804686773255" + "mAssetSupply": "103136141522896397917156666", + "LPTokenSupply": "8189336512581659850622449" }, { - "type": "swap_fp_to_mp", - "inputQty": "1700990381631923290112", - "outputIndex": 1, - "outputQty": "1703182841497385899175", - "swapFee": "0", - "redemptionFee": "682586549098278062", + "type": "mint", + "inputIndex": 0, + "inputQty": "2389091858476767379456", + "outputQty0": "2374312567439240452453", + "outputQty": "2318383238007007752480", "mpReserves": [ - "63324187239300835988040648", - "26874639512607534235050193", - "25052132164073692660976029" + "54622622154894250332841643", + "13838621591835241598351827", + "34832918448162298767357792" ], "fpReserves": [ - "16115698811330696840222867", - "10306080596001901542273080" + "4013077410859400759773466", + "4378739862475721252335294" ], - "mAssetSupply": "115208917061202800411825785", - "LPTokenSupply": "26162442743306804686773255" + "mAssetSupply": "103138515835463837157609119", + "LPTokenSupply": "8191654895819666858374929" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "1175220038221493436416", - "outputQty0": "1187646162071340842682", - "outputQty": "1185360614248050477738", - "swapFee1": "705132022932896061", - "swapFee2": "475058464828536337", + "outputIndex": 0, + "inputQty": "272268216764857253888", + "outputQty0": "278669443748783841965", + "outputQty": "280235872522660711753", + "swapFee1": "163360930058914352", + "swapFee2": "167201666249270305", "mpReserves": [ - "63324187239300835988040648", - "26873454151993286184572455", - "25052132164073692660976029" + "54622341919021727672129890", + "13838621591835241598351827", + "34832918448162298767357792" ], "fpReserves": [ - "16114511165168625499380185", - "10306080596001901542273080" + "4012798741415651975931501", + "4378739862475721252335294" ], - "mAssetSupply": "115207729890099193899519440", - "LPTokenSupply": "26161267593781785486626445" + "mAssetSupply": "103138237333221754623037459", + "LPTokenSupply": "8191382643938995007012476" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "111647297688751753396224", - "outputQty0": "111867571207803133629582", - "outputQty": "111411258777859787817516", - "swapFee": "88503569531096726204", + "inputQty": "131627510192178976", + "outputQty0": "131409959434645639", + "outputQty": "128314361531746193", "mpReserves": [ - "63324187239300835988040648", - "26873454151993286184572455", - "25163779461762444414372253" + "54622341919021727672129890", + "13838621591835241598351827", + "34832918579789808959536768" ], "fpReserves": [ - "16226378736376428633009767", - "10194669337224041754455564" + "4012798872825611410577140", + "4378739862475721252335294" ], - "mAssetSupply": "115319597461306997033149022", - "LPTokenSupply": "26161276444138738596299065" + "mAssetSupply": "103138237464631714057683098", + "LPTokenSupply": "8191382772253356538758669" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1553060349876916453376", - "outputQty0": "1555440901257169572613", - "outputQty": "1548978079943202770420", - "swapFee": "1230518966335224406", + "type": "redeem", + "outputIndex": 0, + "inputQty": "103998702375266047492096", + "outputQty0": "106438779204129540675552", + "outputQty": "107036142073602967979019", + "swapFee1": "62399221425159628495", + "swapFee2": "63863267522477724405", "mpReserves": [ - "63324187239300835988040648", - "26875007212343163101025831", - "25163779461762444414372253" + "54515305776948124704150871", + "13838621591835241598351827", + "34832918579789808959536768" ], "fpReserves": [ - "16227934177277685802582380", - "10193120359144098551685144" + "3906360093621481869901588", + "4378739862475721252335294" ], - "mAssetSupply": "115321152902208254202721635", - "LPTokenSupply": "26161276567190635229821505" + "mAssetSupply": "103031862548695106994731951", + "LPTokenSupply": "8087390309800233007229422" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "34359121300137877504", - "outputQty0": "34411782390951206626", - "outputQty": "34029194793576595326", + "type": "swap_fp_to_mp", + "inputQty": "19936997426739822592", + "outputIndex": 2, + "outputQty": "19943015731601667179", + "swapFee": "0", + "redemptionFee": "11953109461053276", "mpReserves": [ - "63324187239300835988040648", - "26875041571464463238903335", - "25163779461762444414372253" + "54515305776948124704150871", + "13838621591835241598351827", + "34832898636774077357869589" ], "fpReserves": [ - "16227968589060076753789006", - "10193120359144098551685144" + "3906340171772380114440531", + "4378759799473147992157886" ], - "mAssetSupply": "115321187313990645153928261", - "LPTokenSupply": "26161310596385428806416831" + "mAssetSupply": "103031842638799114700324170", + "LPTokenSupply": "8087390309800233007229422" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "429707271705227264", - "outputQty0": "430365868476597464", - "outputQty": "425581091756072830", + "inputQty": "1636579782798076672", + "outputQty0": "1664863649449119965", + "outputQty": "1664796736836489716", + "swapFee": "1300629945102705", "mpReserves": [ - "63324187239300835988040648", - "26875042001171734944130599", - "25163779461762444414372253" + "54515305776948124704150871", + "13838623228415024396428499", + "34832898636774077357869589" ], "fpReserves": [ - "16227969019425945230386470", - "10193120359144098551685144" + "3906341836636029563560496", + "4378758134676411155668170" ], - "mAssetSupply": "115321187744356513630525725", - "LPTokenSupply": "26161311021966520562489661" + "mAssetSupply": "103031844303662764149444135", + "LPTokenSupply": "8087390309930296001739692" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1214585517642421370880", - "outputQty0": "1216966761758747973871", - "outputQty": "1203436464585935635178", + "inputQty": "23004518986478028", + "outputQty0": "22966315017874969", + "outputQty": "22427269782083983", "mpReserves": [ - "63324187239300835988040648", - "26875042001171734944130599", - "25164994047280086835743133" + "54515305776948124704150871", + "13838623228415024396428499", + "34832898659778596344347617" ], "fpReserves": [ - "16229185986187703978360341", - "10193120359144098551685144" + "3906341859602344581435465", + "4378758134676411155668170" ], - "mAssetSupply": "115322404711118272378499596", - "LPTokenSupply": "26162514458431106498124839" + "mAssetSupply": "103031844326629079167319104", + "LPTokenSupply": "8087390332357565783823675" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "34811711388201736", - "outputQty0": "34738956752544922", - "outputQty": "34352723063767421", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1275891958115515313946624", + "outputQty0": "1304773010579523073290918", + "outputQty": "1279565568632789105503449", + "swapFee1": "765535174869309188367", + "swapFee2": "782863806347713843974", "mpReserves": [ - "63324187274112547376242384", - "26875042001171734944130599", - "25164994047280086835743133" + "54515305776948124704150871", + "12559057659782235290925050", + "34832898659778596344347617" ], "fpReserves": [ - "16229186020926660730905263", - "10193120359144098551685144" + "2601568849022821508144547", + "4378758134676411155668170" ], - "mAssetSupply": "115322404745857229131044518", - "LPTokenSupply": "26162514492783829561892260" + "mAssetSupply": "101727854179855903807872160", + "LPTokenSupply": "6811574927759537400795887" }, { "type": "swap_fp_to_mp", - "inputQty": "798566628626901504", - "outputIndex": 1, - "outputQty": "799712108158327689", + "inputQty": "96128596107447228170240", + "outputIndex": 2, + "outputQty": "95875067262152872344970", "swapFee": "0", - "redemptionFee": "320503339549570", + "redemptionFee": "57439815287365140687", "mpReserves": [ - "63324187274112547376242384", - "26875041201459626785802910", - "25164994047280086835743133" + "54515305776948124704150871", + "12559057659782235290925050", + "34737023592516443472002647" ], "fpReserves": [ - "16229185219668311856979659", - "10193121157710727178586648" + "2505835823543879606999273", + "4474886730783858383838410" ], - "mAssetSupply": "115322403944919383596668484", - "LPTokenSupply": "26162514492783829561892260" + "mAssetSupply": "101632178594192249271867573", + "LPTokenSupply": "6811574927759537400795887" }, { - "type": "swap_fp_to_mp", - "inputQty": "146947487021143691362304", - "outputIndex": 0, - "outputQty": "147677314330896603954762", - "swapFee": "0", - "redemptionFee": "58971283448051258361", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "96224141880176984064", + "outputQty0": "96025090754018969806", + "outputQty": "96371665915044472436", + "swapFee": "75170377315281035", "mpReserves": [ - "63176509959781650772287622", - "26875041201459626785802910", - "25164994047280086835743133" + "54515305776948124704150871", + "12559057659782235290925050", + "34737119816658323648986711" ], "fpReserves": [ - "16081757011048183711074840", - "10340068644731870869948952" + "2505931848634633625969079", + "4474790359117943339365974" ], - "mAssetSupply": "115175034707582703502022026", - "LPTokenSupply": "26162514492783829561892260" + "mAssetSupply": "101632274619283003290837379", + "LPTokenSupply": "6811574935276575132323990" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "12357572896233120333824", - "outputQty0": "12376392642281116534852", - "outputQty": "12239713269711166580280", + "inputQty": "85219660262418820366336", + "outputQty0": "87000208521114146359698", + "outputQty": "87291933389177672300571", + "swapFee": "68098410246190685917", "mpReserves": [ - "63176509959781650772287622", - "26887398774355859906136734", - "25164994047280086835743133" + "54515305776948124704150871", + "12644277320044654111291386", + "34737119816658323648986711" ], "fpReserves": [ - "16094133403690464827609692", - "10340068644731870869948952" + "2592932057155747772328777", + "4387498425728765667065403" ], - "mAssetSupply": "115187411100224984618556878", - "LPTokenSupply": "26174754206053540728472540" + "mAssetSupply": "101719274827804117437197077", + "LPTokenSupply": "6811581745117599751392581" }, { - "type": "swap_fp_to_mp", - "inputQty": "581734089150414", - "outputIndex": 1, - "outputQty": "582463849120211", - "swapFee": "0", - "redemptionFee": "233433470253", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "4655623879925166505984", + "outputQty0": "4646135260080983486744", + "outputQty": "4660496236483739554779", + "swapFee": "3635875954226901177", "mpReserves": [ - "63176509959781650772287622", - "26887398773773396057016523", - "25164994047280086835743133" + "54515305776948124704150871", + "12644277320044654111291386", + "34741775440538248815492695" ], "fpReserves": [ - "16094133403106881151974850", - "10340068645313604959099366" + "2597578192415828755815521", + "4382837929492281927510624" ], - "mAssetSupply": "115187411099641634376392289", - "LPTokenSupply": "26174754206053540728472540" + "mAssetSupply": "101723920963064198420683821", + "LPTokenSupply": "6811582108705195174082698" }, { - "type": "swap_fp_to_mp", - "inputQty": "14642741671868221440", - "outputIndex": 1, - "outputQty": "14661110189185500460", - "swapFee": "0", - "redemptionFee": "5875718877657410", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "107118836598765917306880", + "outputQty0": "106392766776844749432351", + "outputQty": "106689625308317188982476", + "swapFee": "83248323821661589184", "mpReserves": [ - "63176509959781650772287622", - "26887384112663206871516063", - "25164994047280086835743133" + "54622424613546890621457751", + "12644277320044654111291386", + "34741775440538248815492695" ], "fpReserves": [ - "16094118713809687008448953", - "10340083288055276827320806" + "2703970959192673505247872", + "4276148304183964738528148" ], - "mAssetSupply": "115187396416220159110523802", - "LPTokenSupply": "26174754206053540728472540" + "mAssetSupply": "101830313729841043170116172", + "LPTokenSupply": "6811590433537577340241616" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "232992028919510014623744", - "outputQty0": "233341658647565836446947", - "outputQty": "230759014297215673773155", + "type": "swap_fp_to_mp", + "inputQty": "27667518357103", + "outputIndex": 2, + "outputQty": "27615684897377", + "swapFee": "0", + "redemptionFee": "16545692712", "mpReserves": [ - "63176509959781650772287622", - "27120376141582716886139807", - "25164994047280086835743133" + "54622424613546890621457751", + "12644277320044654111291386", + "34741775440510633130595318" ], "fpReserves": [ - "16327460372457252844895900", - "10340083288055276827320806" + "2703970959165097350727675", + "4276148304211632256885251" ], - "mAssetSupply": "115420738074867724946970749", - "LPTokenSupply": "26405513220350756402245695" + "mAssetSupply": "101830313729813483561288687", + "LPTokenSupply": "6811590433537577340241616" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "14906453278221733462016", - "outputQty0": "14875619157847323696054", - "outputQty": "14710607174636015498976", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "33754914159503077376", + "outputQty0": "34457364256436155529", + "outputQty": "34543866289119830849", + "swapFee": "26954865820132864", "mpReserves": [ - "63191416413059872505749638", - "27120376141582716886139807", - "25164994047280086835743133" + "54622424613546890621457751", + "12644311074958813614368762", + "34741775440510633130595318" ], "fpReserves": [ - "16342335991615100168591954", - "10340083288055276827320806" + "2704005416529353786883204", + "4276113760345343137054402" ], - "mAssetSupply": "115435613694025572270666803", - "LPTokenSupply": "26420223827525392417744671" + "mAssetSupply": "101830348187177739997444216", + "LPTokenSupply": "6811590436233063922254902" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "14255428578065", - "outputQty0": "14406707023161", - "outputQty": "14372722418350", - "swapFee1": "8553257146", - "swapFee2": "5762682809", + "type": "mint", + "inputIndex": 0, + "inputQty": "1293359175446521970688", + "outputQty0": "1284580385015563762841", + "outputQty": "1256104734927694220935", "mpReserves": [ - "63191416413059872505749638", - "27120376141582716886139807", - "25164994047265714113324783" + "54623717972722337143428439", + "12644311074958813614368762", + "34741775440510633130595318" ], "fpReserves": [ - "16342335991600693461568793", - "10340083288055276827320806" + "2705289996914369350646045", + "4276113760345343137054402" ], - "mAssetSupply": "115435613694011171326326451", - "LPTokenSupply": "26420223827511137844492320" + "mAssetSupply": "101831632767562755561207057", + "LPTokenSupply": "6812846540967991616475837" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3711299842609709056000", - "outputQty0": "3716792921860764342114", - "outputQty": "3675556498003268075546", + "type": "redeem", + "outputIndex": 1, + "inputQty": "67216390359342552", + "outputQty0": "68699013016182127", + "outputQty": "67258088649786222", + "swapFee1": "40329834215605", + "swapFee2": "41219407809709", "mpReserves": [ - "63191416413059872505749638", - "27124087441425326595195807", - "25164994047265714113324783" + "54623717972722337143428439", + "12644311007700724964582540", + "34741775440510633130595318" ], "fpReserves": [ - "16346052784522554225910907", - "10340083288055276827320806" + "2705289928215356334463918", + "4276113760345343137054402" ], - "mAssetSupply": "115439330486933032090668565", - "LPTokenSupply": "26423899384009141112567866" + "mAssetSupply": "101831632698904961952834639", + "LPTokenSupply": "6812846473755634240554845" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "3317009489735236714496", - "outputQty0": "3310147390251845269998", - "outputQty": "3296580347914910451990", - "swapFee": "2618736191612572528", + "inputQty": "4956169302145212874752", + "outputQty0": "4922526165878932052632", + "outputQty": "4934801606979628959084", + "swapFee": "3850702939673679995", "mpReserves": [ - "63194733422549607742464134", - "27124087441425326595195807", - "25164994047265714113324783" + "54628674142024482356303191", + "12644311007700724964582540", + "34741775440510633130595318" ], "fpReserves": [ - "16349362931912806071180905", - "10336786707707361916868816" + "2710212454381235266516550", + "4271178958738363508095318" ], - "mAssetSupply": "115442640634323283935938563", - "LPTokenSupply": "26423899645882760273825118" + "mAssetSupply": "101836555225070840884887271", + "LPTokenSupply": "6812846858825928207922844" }, { "type": "swap_fp_to_mp", - "inputQty": "765473876379883899191296", + "inputQty": "2660992615948591104", "outputIndex": 1, - "outputQty": "766141247530645917085065", + "outputQty": "2596645956966366697", "swapFee": "0", - "redemptionFee": "307054433864762846887", + "redemptionFee": "1591369812205741", "mpReserves": [ - "63194733422549607742464134", - "26357946193894680678110742", - "25164994047265714113324783" + "54628674142024482356303191", + "12644308411054767998215843", + "34741775440510633130595318" ], "fpReserves": [ - "15581726847250898953962989", - "11102260584087245816060112" + "2710209802098214923613596", + "4271181619730979456686422" ], - "mAssetSupply": "114675311604095241581567534", - "LPTokenSupply": "26423899645882760273825118" + "mAssetSupply": "101836552574379190354190058", + "LPTokenSupply": "6812846858825928207922844" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "839111175685974754590720", - "outputQty0": "840652732668297983282627", - "outputQty": "831573727224917966385343", - "mpReserves": [ - "63194733422549607742464134", - "26357946193894680678110742", - "26004105222951688867915503" - ], - "fpReserves": [ - "16422379579919196937245616", - "11102260584087245816060112" - ], - "mAssetSupply": "115515964336763539564850161", - "LPTokenSupply": "27255473373107678240210461" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "185556632042059727896576", - "outputQty0": "187482100769136086838043", - "outputQty": "187076109595791571647789", - "swapFee1": "111333979225235836737", - "swapFee2": "74992840307654434735", - "mpReserves": [ - "63194733422549607742464134", - "26357946193894680678110742", - "25817029113355897296267714" - ], - "fpReserves": [ - "16234897479150060850407573", - "11102260584087245816060112" - ], - "mAssetSupply": "115328557228834711132446853", - "LPTokenSupply": "27069927874463541035897558" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "602414785309053943808", - "outputQty0": "603492072007380197476", - "outputQty": "601401047247191347832", - "swapFee": "477555583466292838", + "inputIndex": 0, + "inputQty": "11468497880891242053632", + "outputQty0": "11390631779146219003560", + "outputQty": "11137822624236230409176", "mpReserves": [ - "63194733422549607742464134", - "26357946193894680678110742", - "25817631528141206350211522" + "54640142639905373598356823", + "12644308411054767998215843", + "34741775440510633130595318" ], "fpReserves": [ - "16235500971222068230605049", - "11101659183039998624712280" + "2721600433877361142617156", + "4271181619730979456686422" ], - "mAssetSupply": "115329160720906718512644329", - "LPTokenSupply": "27069927922219099382526841" + "mAssetSupply": "101847943206158336573193618", + "LPTokenSupply": "6823984681450164438332020" }, { "type": "swap_fp_to_mp", - "inputQty": "1709053251512529846272", - "outputIndex": 0, - "outputQty": "1716493040021093905903", + "inputQty": "109966693068481042055168", + "outputIndex": 1, + "outputQty": "107261115790973310118805", "swapFee": "0", - "redemptionFee": "685448947588720826", + "redemptionFee": "65747673974295817613", "mpReserves": [ - "63193016929509586648558231", - "26357946193894680678110742", - "25817631528141206350211522" + "54640142639905373598356823", + "12537047295263794688097038", + "34741775440510633130595318" ], "fpReserves": [ - "16233787348853096428539926", - "11103368236291511154558552" + "2612020977253534779927512", + "4381148312799460498741590" ], - "mAssetSupply": "115327447783986694299300032", - "LPTokenSupply": "27069927922219099382526841" + "mAssetSupply": "101738429497208484506321587", + "LPTokenSupply": "6823984681450164438332020" }, { - "type": "swap_fp_to_mp", - "inputQty": "893622468788038008832", - "outputIndex": 1, - "outputQty": "894172419052618377710", - "swapFee": "0", - "redemptionFee": "358404063648355422", + "type": "mint", + "inputIndex": 2, + "inputQty": "143866661989545820160", + "outputQty0": "143569077748745802158", + "outputQty": "140431164136310026283", "mpReserves": [ - "63193016929509586648558231", - "26357052021475628059733032", - "25817631528141206350211522" + "54640142639905373598356823", + "12537047295263794688097038", + "34741919307172622676415478" ], "fpReserves": [ - "16232891338693975539984348", - "11104261858760299192567384" + "2612164546331283525729670", + "4381148312799460498741590" ], - "mAssetSupply": "115326552132231637059099876", - "LPTokenSupply": "27069927922219099382526841" + "mAssetSupply": "101738573066286233252123745", + "LPTokenSupply": "6824125112614300748358303" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "7263951101692140847104", - "outputQty0": "7276934135339152913195", - "outputQty": "7251708996180462186114", - "swapFee": "5758388095168210217", + "inputQty": "95215089278255333376", + "outputQty0": "95018136609732260222", + "outputQty": "92941351462788340919", "mpReserves": [ - "63193016929509586648558231", - "26357052021475628059733032", - "25824895479242898491058626" + "54640142639905373598356823", + "12537047295263794688097038", + "34742014522261900931748854" ], "fpReserves": [ - "16240168272829314692897543", - "11097010149764118730381270" + "2612259564467893257989892", + "4381148312799460498741590" ], - "mAssetSupply": "115333829066366976212013071", - "LPTokenSupply": "27069928498057908899347862" + "mAssetSupply": "101738668084422842984383967", + "LPTokenSupply": "6824218053965763536699222" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "26107305770042380288", - "outputQty0": "26377898927569789213", - "outputQty": "26323785537663086680", - "swapFee1": "15664383462025428", - "swapFee2": "10551159571027915", + "type": "mint", + "inputIndex": 2, + "inputQty": "101859861482813216", + "outputQty0": "101649162860927900", + "outputQty": "99427435035417443", "mpReserves": [ - "63193016929509586648558231", - "26357025697690090396646352", - "25824895479242898491058626" + "54640142639905373598356823", + "12537047295263794688097038", + "34742014624121762414562070" ], "fpReserves": [ - "16240141894930387123108330", - "11097010149764118730381270" + "2612259666117056118917792", + "4381148312799460498741590" ], - "mAssetSupply": "115333802699019208213251773", - "LPTokenSupply": "27069902392318577203170116" + "mAssetSupply": "101738668186072005845311867", + "LPTokenSupply": "6824218153393198572116665" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "62057173513176039424", - "outputQty0": "62700374048031122397", - "outputQty": "62563518771908785865", - "swapFee1": "37234304107905623", - "swapFee2": "25080149619212448", + "inputQty": "6424037993096058", + "outputQty0": "6563643979840799", + "outputQty": "6573302767001895", + "swapFee1": "3854422795857", + "swapFee2": "3938186387904", "mpReserves": [ - "63193016929509586648558231", - "26357025697690090396646352", - "25824832915724126582272761" + "54640142639905373598356823", + "12537047295263794688097038", + "34742014617548459647560175" ], "fpReserves": [ - "16240079194556339091985933", - "11097010149764118730381270" + "2612259659553412139076993", + "4381148312799460498741590" ], - "mAssetSupply": "115333740023725309801341824", - "LPTokenSupply": "27069840338868494437921254" + "mAssetSupply": "101738668179512300051858972", + "LPTokenSupply": "6824218146969546021300192" }, { - "type": "swap_fp_to_mp", - "inputQty": "5949683078977433894912", + "type": "redeem", "outputIndex": 1, - "outputQty": "5953365517327662344053", - "swapFee": "0", - "redemptionFee": "2386242873396579832", + "inputQty": "16764198080792959647744", + "outputQty0": "17128197281512555384437", + "outputQty": "16762348043142236214395", + "swapFee1": "10058518848475775788", + "swapFee2": "10276918368907533230", "mpReserves": [ - "63193016929509586648558231", - "26351072332172762734302299", - "25824832915724126582272761" + "54640142639905373598356823", + "12520284947220652451882643", + "34742014617548459647560175" ], "fpReserves": [ - "16234113587372847642405192", - "11102959832843096164276182" + "2595131462271899583692556", + "4381148312799460498741590" ], - "mAssetSupply": "115327776802784691748340915", - "LPTokenSupply": "27069840338868494437921254" + "mAssetSupply": "101721550259149156404007765", + "LPTokenSupply": "6807454954740637909230026" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "457850582841614395244544", - "outputQty0": "462573498676082940741873", - "outputQty": "461603106413732611780618", - "swapFee1": "274710349704968637146", - "swapFee2": "185029399470433176296", + "type": "mint", + "inputIndex": 1, + "inputQty": "7552474458635332747264", + "outputQty0": "7712801443981756999124", + "outputQty": "7544430812965284307001", "mpReserves": [ - "63193016929509586648558231", - "25889469225759030122521681", - "25824832915724126582272761" + "54640142639905373598356823", + "12527837421679287784629907", + "34742014617548459647560175" ], "fpReserves": [ - "15771540088696764701663319", - "11102959832843096164276182" + "2602844263715881340691680", + "4381148312799460498741590" ], - "mAssetSupply": "114865388333508079240775338", - "LPTokenSupply": "26612017227061850539540424" + "mAssetSupply": "101729263060593138161006889", + "LPTokenSupply": "6814999385553603193537027" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "425069296866892", - "outputQty0": "429438220711526", - "outputQty": "428510649067536", - "swapFee1": "255041578120", - "swapFee2": "171775288284", + "type": "mint", + "inputIndex": 0, + "inputQty": "561280893629779", + "outputQty0": "557433578032115", + "outputQty": "545260216263543", "mpReserves": [ - "63193016929509586648558231", - "25889469225759030122521681", - "25824832915295615933205225" + "54640142640466654491986602", + "12527837421679287784629907", + "34742014617548459647560175" ], "fpReserves": [ - "15771540088267326480951793", - "11102959832843096164276182" + "2602844264273314918723795", + "4381148312799460498741590" ], - "mAssetSupply": "114865388333078812795352096", - "LPTokenSupply": "26612017226636806746831344" + "mAssetSupply": "101729263061150571739039004", + "LPTokenSupply": "6814999386098863409800570" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "223517114015384359403520", - "outputQty0": "225809308063360617703799", - "outputQty": "226192720654214139247843", - "swapFee1": "134110268409230615642", - "swapFee2": "90323723225344247081", + "outputIndex": 1, + "inputQty": "57361722478882554118144", + "outputQty0": "58603385541461237788728", + "outputQty": "57345923015496281868259", + "swapFee1": "34417033487329532470", + "swapFee2": "35162031324876742673", "mpReserves": [ - "62966824208855372509310388", - "25889469225759030122521681", - "25824832915295615933205225" + "54640142640466654491986602", + "12470491498663791502761648", + "34742014617548459647560175" ], "fpReserves": [ - "15545730780203965863247994", - "11102959832843096164276182" + "2544240878731853680935067", + "4381148312799460498741590" ], - "mAssetSupply": "114639669348738677521895378", - "LPTokenSupply": "26388513523648263310489388" + "mAssetSupply": "101670694837640435377992949", + "LPTokenSupply": "6757641105323329588635673" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "19134227526994395136", - "outputQty0": "19094264876468629511", - "outputQty": "19034489683249248249", - "swapFee": "15111555348422706", + "type": "swap_fp_to_mp", + "inputQty": "1002609100326948569088", + "outputIndex": 0, + "outputQty": "1004864869609507945087", + "swapFee": "0", + "redemptionFee": "599126470708288017", "mpReserves": [ - "62966843343082899503705524", - "25889469225759030122521681", - "25824832915295615933205225" + "54639137775597044984041515", + "12470491498663791502761648", + "34742014617548459647560175" ], "fpReserves": [ - "15545749874468842331877505", - "11102940798353412915027933" + "2543242334614006534238648", + "4382150921899787447310678" ], - "mAssetSupply": "114639688443003553990524889", - "LPTokenSupply": "26388513525159418845331658" + "mAssetSupply": "101669696892649058939584547", + "LPTokenSupply": "6757641105323329588635673" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1748590783516466216960", - "outputQty0": "1744938697139479163909", - "outputQty": "1739474319150984875258", - "swapFee": "1380976590827650073", + "type": "swap_fp_to_mp", + "inputQty": "11375681250071930732544", + "outputIndex": 2, + "outputQty": "11346092481141266919510", + "swapFee": "0", + "redemptionFee": "6797493746698573237", "mpReserves": [ - "62968591933866415969922484", - "25889469225759030122521681", - "25824832915295615933205225" + "54639137775597044984041515", + "12470491498663791502761648", + "34730668525067318380640665" ], "fpReserves": [ - "15547494813165981811041414", - "11101201324034261930152675" + "2531913178369508912175506", + "4393526603149859378043222" ], - "mAssetSupply": "114641433381700693469688798", - "LPTokenSupply": "26388513663257077928096665" + "mAssetSupply": "101658374533898308016094642", + "LPTokenSupply": "6757641105323329588635673" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1547717894956926107648", - "outputQty0": "1550425504757510016331", - "outputQty": "1545567280550408976351", - "swapFee": "1227034194325308240", + "inputIndex": 1, + "inputQty": "72418062780944510615552", + "outputQty0": "73959389863102391953046", + "outputQty": "74190519086898310033085", + "swapFee": "57880437923712508351", "mpReserves": [ - "62968591933866415969922484", - "25889469225759030122521681", - "25826380633190572859312873" + "54639137775597044984041515", + "12542909561444736013377200", + "34730668525067318380640665" ], "fpReserves": [ - "15549045238670739321057745", - "11099655756753711521176324" + "2605872568232611304128552", + "4319336084062961068010137" ], - "mAssetSupply": "114642983807205450979705129", - "LPTokenSupply": "26388513785960497360627489" + "mAssetSupply": "101732333923761410408047688", + "LPTokenSupply": "6757646893367121959886508" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "538201344839538688", - "outputQty0": "539134267679633332", - "outputQty": "533350164498683597", + "inputQty": "158351043516826229145600", + "outputQty0": "161659115456962630017714", + "outputQty": "162062224874964351844793", + "swapFee": "126469962372562456074", "mpReserves": [ - "62968591933866415969922484", - "25889469763960374962060369", - "25826380633190572859312873" + "54639137775597044984041515", + "12701260604961562242522800", + "34730668525067318380640665" ], "fpReserves": [ - "15549045777805007000691077", - "11099655756753711521176324" + "2767531683689573934146266", + "4157273859187996716165344" ], - "mAssetSupply": "114642984346339718659338461", - "LPTokenSupply": "26388514319310661859311086" + "mAssetSupply": "101893993039218373038065402", + "LPTokenSupply": "6757659540363359216132115" }, { "type": "mint", "inputIndex": 0, - "inputQty": "103308160519512424448", - "outputQty0": "103092397445442007803", - "outputQty": "101986369356912371583", + "inputQty": "2192169083777904279552", + "outputQty0": "2177348805313243787883", + "outputQty": "2128469286290655236286", "mpReserves": [ - "62968695242026935482346932", - "25889469763960374962060369", - "25826380633190572859312873" + "54641329944680822888321067", + "12701260604961562242522800", + "34730668525067318380640665" ], "fpReserves": [ - "15549148870202452442698880", - "11099655756753711521176324" + "2769709032494887177934149", + "4157273859187996716165344" ], - "mAssetSupply": "114643087438737164101346264", - "LPTokenSupply": "26388616305680018771682669" + "mAssetSupply": "101896170388023686281853285", + "LPTokenSupply": "6759788009649649871368401" }, { - "type": "swap_fp_to_mp", - "inputQty": "155610418012966585630720", - "outputIndex": 2, - "outputQty": "155623621027842795531650", - "swapFee": "0", - "redemptionFee": "62384281747852356530", + "type": "redeem", + "outputIndex": 1, + "inputQty": "5631737172440228864", + "outputQty0": "5757622198330353293", + "outputQty": "5637874864567590566", + "swapFee1": "3379042303464137", + "swapFee2": "3454573318998211", "mpReserves": [ - "62968695242026935482346932", - "25889469763960374962060369", - "25670757012162730063781223" + "54641329944680822888321067", + "12701254967086697674932234", + "34730668525067318380640665" ], "fpReserves": [ - "15393188165832821551373075", - "11255266174766678106807044" + "2769703274872688847580856", + "4157273859187996716165344" ], - "mAssetSupply": "114487189118649281062376989", - "LPTokenSupply": "26388616305680018771682669" + "mAssetSupply": "101896164633856061270498203", + "LPTokenSupply": "6759782378250381661485950" }, { - "type": "swap_fp_to_mp", - "inputQty": "279691079520361417539584", - "outputIndex": 2, - "outputQty": "279632792991267662955244", - "swapFee": "0", - "redemptionFee": "112100438096390215910", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "48592364982332144222208", + "outputQty0": "49590795384232397385832", + "outputQty": "49688017421905114266043", + "swapFee": "38780298129213810692", "mpReserves": [ - "62968695242026935482346932", - "25889469763960374962060369", - "25391124219171462400825979" + "54641329944680822888321067", + "12749847332069029819154442", + "34730668525067318380640665" ], "fpReserves": [ - "15112937070591846011597864", - "11534957254287039524346628" + "2819294070256921244966688", + "4107585841766091601899301" ], - "mAssetSupply": "114207050123846401912817688", - "LPTokenSupply": "26388616305680018771682669" + "mAssetSupply": "101945755429240293667884035", + "LPTokenSupply": "6759786256280194582867019" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "72519281085273109168128", - "outputQty0": "72652133734709626668105", - "outputQty": "71887278382537447872473", + "inputIndex": 1, + "inputQty": "82279497588247686545408", + "outputQty0": "83952547501545073433803", + "outputQty": "82050219618287028652879", "mpReserves": [ - "62968695242026935482346932", - "25889469763960374962060369", - "25463643500256735509994107" + "54641329944680822888321067", + "12832126829657277505699850", + "34730668525067318380640665" ], "fpReserves": [ - "15185589204326555638265969", - "11534957254287039524346628" + "2903246617758466318400491", + "4107585841766091601899301" ], - "mAssetSupply": "114279702257581111539485793", - "LPTokenSupply": "26460503584062556219555142" + "mAssetSupply": "102029707976741838741317838", + "LPTokenSupply": "6841836475898481611519898" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "11099640664603790147584", - "outputQty0": "11118670875131956383489", - "outputQty": "11001522274575502110129", + "type": "swap_fp_to_mp", + "inputQty": "111244083201448804352", + "outputIndex": 1, + "outputQty": "108713067328391247368", + "swapFee": "0", + "redemptionFee": "66585467822197947", "mpReserves": [ - "62968695242026935482346932", - "25900569404624978752207953", - "25463643500256735509994107" + "54641329944680822888321067", + "12832018116589949114452482", + "34730668525067318380640665" ], "fpReserves": [ - "15196707875201687594649458", - "11534957254287039524346628" + "2903135641978762655155237", + "4107697085849293050703653" ], - "mAssetSupply": "114290820928456243495869282", - "LPTokenSupply": "26471505106337131721665271" + "mAssetSupply": "102029597067547602900270531", + "LPTokenSupply": "6841836475898481611519898" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "28528922479769545605120", - "outputQty0": "28580897713959972863344", - "outputQty": "28279647721678011244089", + "type": "swap_fp_to_mp", + "inputQty": "136457402776557648347136", + "outputIndex": 1, + "outputQty": "133282524609901024831564", + "swapFee": "0", + "redemptionFee": "81651262720078183391", "mpReserves": [ - "62968695242026935482346932", - "25900569404624978752207953", - "25492172422736505055599227" + "54641329944680822888321067", + "12698735591980048089620918", + "34730668525067318380640665" ], "fpReserves": [ - "15225288772915647567512802", - "11534957254287039524346628" + "2767050204111965682836492", + "4244154488625850699050789" ], - "mAssetSupply": "114319401826170203468732626", - "LPTokenSupply": "26499784754058809732909360" + "mAssetSupply": "101893593280943526006135177", + "LPTokenSupply": "6841836475898481611519898" }, { - "type": "swap_fp_to_mp", - "inputQty": "2361815992446673206902784", + "type": "redeem", "outputIndex": 2, - "outputQty": "2357530623374643060244855", - "swapFee": "0", - "redemptionFee": "945360337862481687259", + "inputQty": "145812069551771872", + "outputQty0": "149056378948077663", + "outputQty": "149266476561080965", + "swapFee1": "87487241731063", + "swapFee2": "89433827368846", "mpReserves": [ - "62968695242026935482346932", - "25900569404624978752207953", - "23134641799361861995354372" + "54641329944680822888321067", + "12698735591980048089620918", + "34730668375800841819559700" ], "fpReserves": [ - "12861887928259443349365042", - "13896773246733712731249412" + "2767050055055586734758829", + "4244154488625850699050789" ], - "mAssetSupply": "111956946341851861732272125", - "LPTokenSupply": "26499784754058809732909360" + "mAssetSupply": "101893593131976580885426360", + "LPTokenSupply": "6841836330095160783921132" }, { "type": "swap_fp_to_mp", - "inputQty": "348853129959664779264", + "inputQty": "175380173358069746499584", "outputIndex": 2, - "outputQty": "347705516661745827075", + "outputQty": "175009822213238042070254", "swapFee": "0", - "redemptionFee": "139469553740223388", + "redemptionFee": "104860405265466443802", "mpReserves": [ - "62968695242026935482346932", - "25900569404624978752207953", - "23134294093845200249527297" + "54641329944680822888321067", + "12698735591980048089620918", + "34555658553587603777489446" ], "fpReserves": [ - "12861539254375092790894815", - "13897122099863672396028676" + "2592282712946475995087253", + "4419534661983920445550373" ], - "mAssetSupply": "111956597807437064914025286", - "LPTokenSupply": "26499784754058809732909360" + "mAssetSupply": "101718930650272735612198586", + "LPTokenSupply": "6841836330095160783921132" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1121460180441087002804224", - "outputQty0": "1118870079032485796107865", - "outputQty": "1108181881865038511973015", + "inputQty": "289564884525998363639808", + "outputQty0": "287595664210487617668411", + "outputQty": "281243569465443200712432", "mpReserves": [ - "64090155422468022485151156", - "25900569404624978752207953", - "23134294093845200249527297" + "54930894829206821251960875", + "12698735591980048089620918", + "34555658553587603777489446" ], "fpReserves": [ - "13980409333407578587002680", - "13897122099863672396028676" + "2879878377156963612755664", + "4419534661983920445550373" ], - "mAssetSupply": "113075467886469550710133151", - "LPTokenSupply": "27607966635923848244882375" + "mAssetSupply": "102006526314483223229866997", + "LPTokenSupply": "7123079899560603984633564" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1735027843992368971776", - "outputQty0": "1750951691604032169885", - "outputQty": "1745931456987088034958", - "swapFee1": "1041016706395421383", - "swapFee2": "700380676641612867", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "85546366685805576978432", + "outputQty0": "85379445638116893743891", + "outputQty": "85555496860916184693784", + "swapFee": "66772168522250778249", "mpReserves": [ - "64090155422468022485151156", - "25900569404624978752207953", - "23132548162388213161492339" + "54930894829206821251960875", + "12698735591980048089620918", + "34641204920273409354467878" ], "fpReserves": [ - "13978658381715974554832795", - "13897122099863672396028676" + "2965257822795080506499555", + "4333979165123004260856589" ], - "mAssetSupply": "113073717635158623319576133", - "LPTokenSupply": "27606231712181526515452737" + "mAssetSupply": "102091905760121340123610888", + "LPTokenSupply": "7123086576777456209711388" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "320823906219545356926976", "outputIndex": 1, - "inputQty": "86244255784414512", - "outputQty0": "87035778692614659", - "outputQty": "86855984278666928", - "swapFee1": "51746553470648", - "swapFee2": "34814311477045", + "outputQty": "312870493494873700224620", + "swapFee": "0", + "redemptionFee": "191834611264591688236", "mpReserves": [ - "64090155422468022485151156", - "25900569317768994473541025", - "23132548162388213161492339" + "54930894829206821251960875", + "12385865098485174389396298", + "34641204920273409354467878" ], "fpReserves": [ - "13978658294680195862218136", - "13897122099863672396028676" + "2645533470687427692772604", + "4654803071342549617783565" ], - "mAssetSupply": "113073717548157658938438519", - "LPTokenSupply": "27606231625942445386385289" + "mAssetSupply": "101772373242624951901572173", + "LPTokenSupply": "7123086576777456209711388" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "679916649162650025984", - "outputQty0": "678325007370535851705", - "outputQty": "671752819983111761977", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "690830023053180967845888", + "outputQty0": "705107553324974617293291", + "outputQty": "706359422665607207182118", + "swapFee": "551521461240417270655", "mpReserves": [ - "64090835339117185135177140", - "25900569317768994473541025", - "23132548162388213161492339" + "54930894829206821251960875", + "13076695121538355357242186", + "34641204920273409354467878" ], "fpReserves": [ - "13979336619687566398069841", - "13897122099863672396028676" + "3350641024012402310065895", + "3948443648676942410601447" ], - "mAssetSupply": "113074395873165029474290224", - "LPTokenSupply": "27606903378762428498147266" + "mAssetSupply": "102477480795949926518865464", + "LPTokenSupply": "7123141728923580251438453" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "14695086829551013068800", - "outputQty0": "14829930148441512259480", - "outputQty": "14858775758186074293439", - "swapFee1": "8817052097730607841", - "swapFee2": "5931972059376604903", + "type": "swap_fp_to_mp", + "inputQty": "14336871311755530240", + "outputIndex": 1, + "outputQty": "14038008684180009360", + "swapFee": "0", + "redemptionFee": "8592670923612711", "mpReserves": [ - "64075976563358999060883701", - "25900569317768994473541025", - "23132548162388213161492339" + "54930894829206821251960875", + "13076681083529671177232826", + "34641204920273409354467878" ], "fpReserves": [ - "13964506689539124885810361", - "13897122099863672396028676" + "3350626702894196288880078", + "3948457985548254166131687" ], - "mAssetSupply": "113059571874988647338635647", - "LPTokenSupply": "27592209173638087258139250" + "mAssetSupply": "102477466483424391421292358", + "LPTokenSupply": "7123141728923580251438453" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "345930272193959014957056", - "outputQty0": "349089447796418547295849", - "outputQty": "349764899493900779310569", - "swapFee1": "207558163316375408974", - "swapFee2": "139635779118567418918", + "type": "swap_fp_to_mp", + "inputQty": "457822728881449373532160", + "outputIndex": 2, + "outputQty": "457438634162391430049810", + "swapFee": "0", + "redemptionFee": "274141184505779487325", "mpReserves": [ - "63726211663865098281573132", - "25900569317768994473541025", - "23132548162388213161492339" + "54930894829206821251960875", + "13076681083529671177232826", + "34183766286111017924418068" ], "fpReserves": [ - "13615417241742706338514512", - "13897122099863672396028676" + "2893724728717897143338226", + "4406280714429703539663847" ], - "mAssetSupply": "112710622062971347358758716", - "LPTokenSupply": "27246299657260459880723091" + "mAssetSupply": "102020838650432598055237831", + "LPTokenSupply": "7123141728923580251438453" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "13482771358406414434304", - "outputQty0": "13605395797281083653065", - "outputQty": "13566756675974389994057", - "swapFee1": "8089662815043848660", - "swapFee2": "5442158318912433461", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "226247280005148494004224", + "outputQty0": "225852861178277649435838", + "outputQty": "226234828343992911203242", + "swapFee": "176591495517706686315", "mpReserves": [ - "63726211663865098281573132", - "25900569317768994473541025", - "23118981405712238771498282" + "54930894829206821251960875", + "13076681083529671177232826", + "34410013566116166418422292" ], "fpReserves": [ - "13601811845945425254861447", - "13897122099863672396028676" + "3119577589896174792774064", + "4180045886085710628460605" ], - "mAssetSupply": "112697022109332385187539112", - "LPTokenSupply": "27232817694868334970673653" + "mAssetSupply": "102246691511610875704673669", + "LPTokenSupply": "7123159388073132022107084" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "13589203819030820945920", - "outputQty0": "13712753805803065674963", - "outputQty": "13684740789140322683936", - "swapFee1": "8153522291418492567", - "swapFee2": "5485101522321226269", + "inputQty": "739868059942122271277056", + "outputQty0": "756400014332496355962998", + "outputQty": "740637599894287111436080", + "swapFee1": "443920835965273362766", + "swapFee2": "453840008599497813577", "mpReserves": [ - "63726211663865098281573132", - "25886884576979854150857089", - "23118981405712238771498282" + "54930894829206821251960875", + "12336043483635384065796746", + "34410013566116166418422292" ], "fpReserves": [ - "13588099092139622189186484", - "13897122099863672396028676" + "2363177575563678436811066", + "4180045886085710628460605" ], - "mAssetSupply": "112683314840628104443090418", - "LPTokenSupply": "27219229306401533291576989" + "mAssetSupply": "101490745337286978846524248", + "LPTokenSupply": "6383335720214606278166304" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "502433870864604758802432", + "outputQty0": "501378422980802045922369", + "outputQty": "490205308932368127811551", + "mpReserves": [ + "54930894829206821251960875", + "12336043483635384065796746", + "34912447436980771177224724" + ], + "fpReserves": [ + "2864555998544480482733435", + "4180045886085710628460605" + ], + "mAssetSupply": "101992123760267780892446617", + "LPTokenSupply": "6873541029146974405977855" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "20471073014959675801600", - "outputQty0": "20423514534514861830264", - "outputQty": "20410014699745924689603", - "swapFee": "16181868535012654451", + "inputIndex": 2, + "inputQty": "139607083640497645813760", + "outputQty0": "139302381592083994578262", + "outputQty": "139517122145668634344636", + "swapFee": "108895196883286324776", "mpReserves": [ - "63746682736880057957374732", - "25886884576979854150857089", - "23118981405712238771498282" + "54930894829206821251960875", + "12336043483635384065796746", + "35052054520621268823038484" ], "fpReserves": [ - "13608522606674137051016748", - "13876712085163926471339073" + "3003858380136564477311697", + "4040528763940041994115969" ], - "mAssetSupply": "112703738355162619304920682", - "LPTokenSupply": "27219230924588386792842434" + "mAssetSupply": "102131426141859864887024879", + "LPTokenSupply": "6873551918666662734610332" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "51568265930009288376320", - "outputQty0": "52037251174487550501247", - "outputQty": "51888942540222001007627", - "swapFee1": "30940959558005573025", - "swapFee2": "20814900469795020200", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "100286899604698", + "outputQty0": "100066247824634", + "outputQty": "100189941283377", + "swapFee": "78202831225", "mpReserves": [ - "63746682736880057957374732", - "25886884576979854150857089", - "23067092463172016770490655" + "54930894829206821251960875", + "12336043483635384065796746", + "35052054520721555722643182" ], "fpReserves": [ - "13556485355499649500515501", - "13876712085163926471339073" + "3003858380236630725136331", + "4040528763839852052832592" ], - "mAssetSupply": "112651721918888601549439635", - "LPTokenSupply": "27167665752754333305023416" + "mAssetSupply": "102131426141959931134849513", + "LPTokenSupply": "6873551918666670554893454" }, { - "type": "swap_fp_to_mp", - "inputQty": "1400163265982434021212160", - "outputIndex": 1, - "outputQty": "1395918160286227040026736", - "swapFee": "0", - "redemptionFee": "559594367419764284513", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "351799783917435551744", + "outputQty0": "349340488281315670242", + "outputQty": "349772052363087252198", + "swapFee": "273013220132089275", "mpReserves": [ - "63746682736880057957374732", - "24490966416693627110830353", - "23067092463172016770490655" + "54931246628990738687512619", + "12336043483635384065796746", + "35052054520721555722643182" ], "fpReserves": [ - "12157499436950238789231472", - "15276875351146360492551233" + "3004207720724912040806573", + "4040178991787488965580394" ], - "mAssetSupply": "111253295594706610602440119", - "LPTokenSupply": "27167665752754333305023416" + "mAssetSupply": "102131775482448212450519755", + "LPTokenSupply": "6873551945967992568102381" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "4951666341177518456832", - "outputQty0": "4992976336945702011237", - "outputQty": "4979056953963720574234", - "swapFee1": "2970999804706511074", - "swapFee2": "1997190534778280804", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "4746466811819745280", + "outputQty0": "4713285956387127182", + "outputQty": "4719105029591196684", + "swapFee": "3683479538933306", "mpReserves": [ - "63746682736880057957374732", - "24490966416693627110830353", - "23062113406218053049916421" + "54931251375457550507257899", + "12336043483635384065796746", + "35052054520721555722643182" ], "fpReserves": [ - "12152506460613293087220235", - "15276875351146360492551233" + "3004212434010868427933755", + "4040174272682459374383710" ], - "mAssetSupply": "111248304615560199678709686", - "LPTokenSupply": "27162714383513136257217691" + "mAssetSupply": "102131780195734168837646937", + "LPTokenSupply": "6873551946336340521995711" }, { - "type": "swap_fp_to_mp", - "inputQty": "426732116979408064", + "type": "redeem", "outputIndex": 2, - "outputQty": "424883833916270937", - "swapFee": "0", - "redemptionFee": "170428771923875", + "inputQty": "5319194696081077174272", + "outputQty0": "5441756308581464873169", + "outputQty": "5450479538036604572888", + "swapFee1": "3191516817648646304", + "swapFee2": "3265053785148878923", "mpReserves": [ - "63746682736880057957374732", - "24490966416693627110830353", - "23062112981334219133645484" + "54931251375457550507257899", + "12336043483635384065796746", + "35046604041183519118070294" ], "fpReserves": [ - "12152506034541363277531308", - "15276875777878477471959297" + "2998770677702286963060586", + "4040174272682459374383710" ], - "mAssetSupply": "111248304189658698640944634", - "LPTokenSupply": "27162714383513136257217691" + "mAssetSupply": "102126341704479372521652691", + "LPTokenSupply": "6868233070791941209686069" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "109050248480710843170816", - "outputQty0": "109957972151412753732948", - "outputQty": "109698139446655970593559", - "swapFee1": "65430149088426505902", - "swapFee2": "43983188860565101493", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "507420717200282665091072", + "outputQty0": "503850529287880784766762", + "outputQty": "503968123264391933399551", + "swapFee": "393641461954452453616", "mpReserves": [ - "63746682736880057957374732", - "24381268277246971140236794", - "23062112981334219133645484" + "55438672092657833172348971", + "12336043483635384065796746", + "35046604041183519118070294" ], "fpReserves": [ - "12042548062389950523798360", - "15276875777878477471959297" + "3502621206990167747827348", + "3536206149418067440984159" ], - "mAssetSupply": "111138390200696146452313179", - "LPTokenSupply": "27053670678047334256697465" + "mAssetSupply": "102630192233767253306419453", + "LPTokenSupply": "6868272434938136654931430" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "58496230732919251927040", - "outputQty0": "58981640683854954797878", - "outputQty": "59101725671276081614352", - "swapFee1": "35097738439751551156", - "swapFee2": "23592656273541981919", + "outputIndex": 1, + "inputQty": "187584689377274704691200", + "outputQty0": "192103356667108227079722", + "outputQty": "187705080696689999001492", + "swapFee1": "112550813626364822814", + "swapFee2": "115262014000264936247", "mpReserves": [ - "63687581011208781875760380", - "24381268277246971140236794", - "23062112981334219133645484" + "55438672092657833172348971", + "12148338402938694066795254", + "35046604041183519118070294" ], "fpReserves": [ - "11983566421706095569000482", - "15276875777878477471959297" + "3310517850323059520747626", + "3536206149418067440984159" ], - "mAssetSupply": "111079432152668565039497220", - "LPTokenSupply": "26995177957088258979925540" + "mAssetSupply": "102438204139114145344275978", + "LPTokenSupply": "6680699000642224586722511" }, { "type": "swap_fp_to_mp", - "inputQty": "230605462803016390279168", + "inputQty": "833878529597690740736", "outputIndex": 2, - "outputQty": "229550592273692074820066", + "outputQty": "834876586631394497265", "swapFee": "0", - "redemptionFee": "92079015460941893976", + "redemptionFee": "500107441713721174", "mpReserves": [ - "63687581011208781875760380", - "24381268277246971140236794", - "22832562389060527058825418" + "55438672092657833172348971", + "12148338402938694066795254", + "35045769164596887723573029" ], "fpReserves": [ - "11753368883053740834060342", - "15507481240681493862238465" + "3309684337920203318790448", + "3537040027947665131724895" ], - "mAssetSupply": "110849326693031671246451056", - "LPTokenSupply": "26995177957088258979925540" + "mAssetSupply": "102437371126818730856039974", + "LPTokenSupply": "6680699000642224586722511" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1751949180120822100000768", - "outputQty0": "1747570072173796601597022", - "outputQty": "1731920319512149354097735", + "type": "redeem", + "outputIndex": 2, + "inputQty": "112247036790616029659136", + "outputQty0": "114934349087103996976163", + "outputQty": "115120738294545824729416", + "swapFee1": "67348222074369617795", + "swapFee2": "68960609452262398185", "mpReserves": [ - "65439530191329603975761148", - "24381268277246971140236794", - "22832562389060527058825418" + "55438672092657833172348971", + "12148338402938694066795254", + "34930648426302341898843613" ], "fpReserves": [ - "13500938955227537435657364", - "15507481240681493862238465" + "3194749988833099321814285", + "3537040027947665131724895" ], - "mAssetSupply": "112596896765205467848048078", - "LPTokenSupply": "28727098276600408334023275" + "mAssetSupply": "102322505738341079121461996", + "LPTokenSupply": "6568458698673815994025154" }, { "type": "swap_fp_to_mp", - "inputQty": "238106087382433725939712", + "inputQty": "201481254107223162880", "outputIndex": 0, - "outputQty": "238370496419174208676184", + "outputQty": "202683394207958413998", "swapFee": "0", - "redemptionFee": "95143696058667299548", + "redemptionFee": "120806897766030589", "mpReserves": [ - "65201159694910429767084964", - "24381268277246971140236794", - "22832562389060527058825418" + "55438469409263625213934973", + "12148338402938694066795254", + "34930648426302341898843613" ], "fpReserves": [ - "13263079715080869186784952", - "15745587328063927588178177" + "3194548644003489270831367", + "3537241509201772354887775" ], - "mAssetSupply": "112359132668754858266475214", - "LPTokenSupply": "28727098276600408334023275" + "mAssetSupply": "102322304514318366836509667", + "LPTokenSupply": "6568458698673815994025154" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "30564719013895614758912", - "outputQty0": "30628132191341739184521", - "outputQty": "30638400804926035544351", - "swapFee": "24279719834969716321", + "type": "redeem", + "outputIndex": 0, + "inputQty": "7293221359585588150272", + "outputQty0": "7467399891129990304253", + "outputQty": "7517038817706192080767", + "swapFee1": "4375932815751352890", + "swapFee2": "4480439934677994182", "mpReserves": [ - "65201159694910429767084964", - "24411832996260866754995706", - "22832562389060527058825418" + "55430952370445919021854206", + "12148338402938694066795254", + "34930648426302341898843613" ], "fpReserves": [ - "13293707847272210925969473", - "15714948927259001552633826" + "3187081244112359280527114", + "3537241509201772354887775" ], - "mAssetSupply": "112389760800946200005659735", - "LPTokenSupply": "28727100704572391830994907" + "mAssetSupply": "102314841594867171524199596", + "LPTokenSupply": "6561165914907511981010171" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "6909050946341869568", - "outputQty0": "6891539239802465525", - "outputQty": "6893749187416943047", - "swapFee": "5463035927503456", + "type": "mint", + "inputIndex": 2, + "inputQty": "215424421516070780665856", + "outputQty0": "214943686515284860941006", + "outputQty": "209780805737257983724112", "mpReserves": [ - "65201166603961376108954532", - "24411832996260866754995706", - "22832562389060527058825418" + "55430952370445919021854206", + "12148338402938694066795254", + "35146072847818412679509469" ], "fpReserves": [ - "13293714738811450728434998", - "15714942033509814135690779" + "3402024930627644141468120", + "3537241509201772354887775" ], - "mAssetSupply": "112389767692485439808125260", - "LPTokenSupply": "28727100705118695423745252" + "mAssetSupply": "102529785281382456385140602", + "LPTokenSupply": "6770946720644769964734283" }, { "type": "swap_fp_to_mp", - "inputQty": "227526900233167437824", + "inputQty": "981008779408859037958144", "outputIndex": 2, - "outputQty": "226596416095508327926", + "outputQty": "980218372687886853306593", "swapFee": "0", - "redemptionFee": "90908789724387653", + "redemptionFee": "587229426085863926067", "mpReserves": [ - "65201166603961376108954532", - "24411832996260866754995706", - "22832335792644431550497492" + "55430952370445919021854206", + "12148338402938694066795254", + "34165854475130525826202876" ], "fpReserves": [ - "13293487466837139759300618", - "15715169560410047303128603" + "2423309220484537598022010", + "4518250288610631392845919" ], - "mAssetSupply": "112389540511419918563378533", - "LPTokenSupply": "28727100705118695423745252" + "mAssetSupply": "101551656800665435705620559", + "LPTokenSupply": "6770946720644769964734283" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "278167926071414434562048", + "outputQty0": "284373977863850198654116", + "outputQty": "278159219427651193114684", + "mpReserves": [ + "55430952370445919021854206", + "12426506329010108501357302", + "34165854475130525826202876" + ], + "fpReserves": [ + "2707683198348387796676126", + "4518250288610631392845919" + ], + "mAssetSupply": "101836030778529285904274675", + "LPTokenSupply": "7049105940072421157848967" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "23208624116139204542464", "outputIndex": 0, - "inputQty": "93998092763309971341312", - "outputQty0": "94803577952643019030739", - "outputQty": "95006196516696661245620", - "swapFee1": "56398855657985982804", - "swapFee2": "37921431181057207612", + "outputQty": "23270997883190068360231", + "swapFee": "0", + "redemptionFee": "13871867699043903654", "mpReserves": [ - "65106160407444679447708912", - "24411832996260866754995706", - "22832335792644431550497492" + "55407681372562728953493975", + "12426506329010108501357302", + "34165854475130525826202876" ], "fpReserves": [ - "13198683888884496740269879", - "15715169560410047303128603" + "2684563418849981290584482", + "4541458912726770597388383" ], - "mAssetSupply": "112294774854898456601555406", - "LPTokenSupply": "28633108252240951251002220" + "mAssetSupply": "101812924870898578442086685", + "LPTokenSupply": "7049105940072421157848967" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "20652077254261391360", - "outputQty0": "20828807084940938666", - "outputQty": "20777597424433565313", - "swapFee1": "12391246352556834", - "swapFee2": "8331522833976375", + "outputIndex": 0, + "inputQty": "207410464508693757034496", + "outputQty0": "211918010422032425895046", + "outputQty": "213299570355021021098476", + "swapFee1": "124446278705216254220", + "swapFee2": "127150806253219455537", "mpReserves": [ - "65106160407444679447708912", - "24411812218663442321430393", - "22832335792644431550497492" + "55194381802207707932395499", + "12426506329010108501357302", + "34165854475130525826202876" ], "fpReserves": [ - "13198663060077411799331213", - "15715169560410047303128603" + "2472645408427948864689436", + "4541458912726770597388383" ], - "mAssetSupply": "112294754034422894494593115", - "LPTokenSupply": "28633087601402821624866543" + "mAssetSupply": "101601134011282799235647176", + "LPTokenSupply": "6841707920191597922439893" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "22571587229473496", "outputIndex": 2, - "inputQty": "420244071403232184762368", - "outputQty0": "423814364536503949242564", - "outputQty": "422530981390550882482452", - "swapFee1": "252146442841939310857", - "swapFee2": "169525745814601579697", + "outputQty": "22495882400591197", + "swapFee": "0", + "redemptionFee": "13479733657602", "mpReserves": [ - "65106160407444679447708912", - "24411812218663442321430393", - "22409804811253880668015040" + "55194381802207707932395499", + "12426506329010108501357302", + "34165854452634643425611679" ], "fpReserves": [ - "12774848695540907850088649", - "15715169560410047303128603" + "2472645385961726102017798", + "4541458935298357826861879" ], - "mAssetSupply": "111871109195632205146930248", - "LPTokenSupply": "28212868744643873634035260" + "mAssetSupply": "101601133988830056206633140", + "LPTokenSupply": "6841707920191597922439893" }, { "type": "swap_fp_to_mp", - "inputQty": "3578724275855635775488", - "outputIndex": 0, - "outputQty": "3581485295795887139180", + "inputQty": "738185059945839538995200", + "outputIndex": 2, + "outputQty": "733385774108959494741519", "swapFee": "0", - "redemptionFee": "1429489784653231148", + "redemptionFee": "439494293959344296500", "mpReserves": [ - "65102578922148883560569732", - "24411812218663442321430393", - "22409804811253880668015040" + "55194381802207707932395499", + "12426506329010108501357302", + "33432468678525683930870160" ], "fpReserves": [ - "12771274971079274772217646", - "15718748284685902938904091" + "1740154896029485607850535", + "5279643995244197365857079" ], - "mAssetSupply": "111867536900660356722290393", - "LPTokenSupply": "28212868744643873634035260" + "mAssetSupply": "100869082993191775056762377", + "LPTokenSupply": "6841707920191597922439893" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "17268347411866700480512", - "outputQty0": "17414027378138171322011", - "outputQty": "17451833397100891631847", - "swapFee1": "10361008447120020288", - "swapFee2": "6965610951255268528", + "type": "mint", + "inputIndex": 1, + "inputQty": "3172984265482681974784", + "outputQty0": "3240873253226404176739", + "outputQty": "3187037158219204666059", "mpReserves": [ - "65085127088751782668937885", - "24411812218663442321430393", - "22409804811253880668015040" + "55194381802207707932395499", + "12429679313275591183332086", + "33432468678525683930870160" ], "fpReserves": [ - "12753860943701136600895635", - "15718748284685902938904091" + "1743395769282712012027274", + "5279643995244197365857079" ], - "mAssetSupply": "111850129838893169806236910", - "LPTokenSupply": "28195601433332851645556776" + "mAssetSupply": "100872323866445001460939116", + "LPTokenSupply": "6844894957349817127105952" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "922328802389174016", - "outputQty0": "924211377026680802", - "outputQty": "924774438187906682", - "swapFee": "732745558786874", + "inputQty": "388503437658339999744", + "outputQty0": "396813411488316491546", + "outputQty": "401238408409846188691", + "swapFee": "312172321411379529", "mpReserves": [ - "65085127088751782668937885", - "24411813140992244710604409", - "22409804811253880668015040" + "55194381802207707932395499", + "12430067816713249523331830", + "33432468678525683930870160" ], "fpReserves": [ - "12753861867912513627576437", - "15718747359911464750997409" + "1743792582694200328518820", + "5279242756835787519668388" ], - "mAssetSupply": "111850130763104546832917712", - "LPTokenSupply": "28195601433406126201435463" + "mAssetSupply": "100872720679856489777430662", + "LPTokenSupply": "6844894988567049268243904" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "3289329614649154338816", + "outputIndex": 2, + "outputQty": "3254022989014850361714", + "swapFee": "0", + "redemptionFee": "1950226798488618849", + "mpReserves": [ + "55194381802207707932395499", + "12430067816713249523331830", + "33429214655536669080508446" + ], + "fpReserves": [ + "1740542204696719297103475", + "5282532086450436674007204" + ], + "mAssetSupply": "100869472252085807234634166", + "LPTokenSupply": "6844894988567049268243904" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "233564418879713722761216", - "outputQty0": "235525800509695199660894", - "outputQty": "234945112176631732717107", - "swapFee1": "140138651327828233656", - "swapFee2": "94210320203878079864", + "inputQty": "385466842686955782144", + "outputQty0": "391734752996369535382", + "outputQty": "383301459586212261063", + "swapFee1": "231280105612173469", + "swapFee2": "235040851797821721", "mpReserves": [ - "65085127088751782668937885", - "24176868028815612977887302", - "22409804811253880668015040" + "55194381802207707932395499", + "12429684515253663311070767", + "33429214655536669080508446" ], "fpReserves": [ - "12518336067402818427915543", - "15718747359911464750997409" + "1740150469943722927568093", + "5282532086450436674007204" ], - "mAssetSupply": "111614699172915055511336682", - "LPTokenSupply": "27962051028391545261497612" + "mAssetSupply": "100869080752373662662920505", + "LPTokenSupply": "6844509544852372873679106" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "24259647643197762437120", - "outputQty0": "24196966941620895819872", - "outputQty": "24214579813355756568603", - "swapFee": "19185392508397242283", + "inputIndex": 2, + "inputQty": "31524023380647027408896", + "outputQty0": "31469692703504395674294", + "outputQty": "31814496774615428013086", + "swapFee": "24754693765962385947", "mpReserves": [ - "65109386736394980431375005", - "24176868028815612977887302", - "22409804811253880668015040" + "55194381802207707932395499", + "12429684515253663311070767", + "33460738678917316107917342" ], "fpReserves": [ - "12542533034344439323735415", - "15694532780098108994428806" + "1771620162647227323242387", + "5250717589675821245994118" ], - "mAssetSupply": "111638896139856676407156554", - "LPTokenSupply": "27962052946930796101221840" + "mAssetSupply": "100900550445077167058594799", + "LPTokenSupply": "6844512020321749469917700" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1731044594841489664", - "outputQty0": "1726570763952457707", - "outputQty": "1711195471106302033", + "type": "swap_fp_to_mp", + "inputQty": "67337197979077569413120", + "outputIndex": 0, + "outputQty": "66971410603437879220941", + "swapFee": "0", + "redemptionFee": "39921331532832208012", "mpReserves": [ - "65109388467439575272864669", - "24176868028815612977887302", - "22409804811253880668015040" + "55127410391604270053174558", + "12429684515253663311070767", + "33460738678917316107917342" ], "fpReserves": [ - "12542534760915203276193122", - "15694532780098108994428806" + "1705084610092506976555108", + "5318054787654898815407238" ], - "mAssetSupply": "111638897866427440359614261", - "LPTokenSupply": "27962054658126267207523873" + "mAssetSupply": "100834054813853979544115532", + "LPTokenSupply": "6844512020321749469917700" }, { "type": "swap_fp_to_mp", - "inputQty": "1458980211577995132928", + "inputQty": "896246846271929", "outputIndex": 1, - "outputQty": "1453131595757812045591", + "outputQty": "866067333688869", "swapFee": "0", - "redemptionFee": "582707762680138798", + "redemptionFee": "531059783894", "mpReserves": [ - "65109388467439575272864669", - "24175414897219855165841711", - "22409804811253880668015040" + "55127410391604270053174558", + "12429684514387595977381898", + "33460738678917316107917342" ], "fpReserves": [ - "12541077991508502929196913", - "15695991760309686989561734" + "1705084609207407336730844", + "5318054788551145661679167" ], - "mAssetSupply": "111637441679728502692756850", - "LPTokenSupply": "27962054658126267207523873" + "mAssetSupply": "100834054812969410964075162", + "LPTokenSupply": "6844512020321749469917700" }, { - "type": "swap_fp_to_mp", - "inputQty": "61558033357748224131072", - "outputIndex": 1, - "outputQty": "61308820496643792980183", - "swapFee": "0", - "redemptionFee": "24585118369493577933", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "593922383371169064550400", + "outputQty0": "589674944325795485917788", + "outputQty": "594390569941516675475459", + "swapFee": "463126528664160333734", "mpReserves": [ - "65109388467439575272864669", - "24114106076723211372861528", - "22409804811253880668015040" + "55721332774975439117724958", + "12429684514387595977381898", + "33460738678917316107917342" ], "fpReserves": [ - "12479615195584768984363563", - "15757549793667435213692806" + "2294759553533202822648632", + "4723664218609628986203708" ], - "mAssetSupply": "111576003468923138241501433", - "LPTokenSupply": "27962054658126267207523873" + "mAssetSupply": "101423729757295206449992950", + "LPTokenSupply": "6844558332974615885951073" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "261382360989636340219904", - "outputQty0": "263552181184638634146795", - "outputQty": "262880905713840552457925", - "swapFee1": "156829416593781804131", - "swapFee2": "105420872473855453658", + "outputIndex": 2, + "inputQty": "239926050515716898816", + "outputQty0": "244899133251784912568", + "outputQty": "245164845271020831504", + "swapFee1": "143955630309430139", + "swapFee2": "146939479951070947", "mpReserves": [ - "65109388467439575272864669", - "23851225171009370820403603", - "22409804811253880668015040" + "55721332774975439117724958", + "12429684514387595977381898", + "33460493514072045087085838" ], "fpReserves": [ - "12216063014400130350216768", - "15757549793667435213692806" + "2294514654399951037736064", + "4723664218609628986203708" ], - "mAssetSupply": "111312556708610973462808296", - "LPTokenSupply": "27700687980078290245484382" + "mAssetSupply": "101423485005101434616151329", + "LPTokenSupply": "6844318421319663199995270" }, { "type": "swap_fp_to_mp", - "inputQty": "244920303962816872448", + "inputQty": "112480292834822045696", "outputIndex": 0, - "outputQty": "245038372108259053598", + "outputQty": "112562101974662620739", "swapFee": "0", - "redemptionFee": "97798630198315239", + "redemptionFee": "67090920106958375", "mpReserves": [ - "65109143429067467013811071", - "23851225171009370820403603", - "22409804811253880668015040" + "55721220212873464455104219", + "12429684514387595977381898", + "33460493514072045087085838" ], "fpReserves": [ - "12215818517824634562116924", - "15757794713971398030565254" + "2294402836199772773777506", + "4723776698902463808249404" ], - "mAssetSupply": "111312312309834107873023691", - "LPTokenSupply": "27700687980078290245484382" + "mAssetSupply": "101423373253992176459151146", + "LPTokenSupply": "6844318421319663199995270" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "505917520559209578496", - "outputQty0": "507270274573883098344", - "outputQty": "507742817950371512877", - "swapFee": "402248875501589242", + "type": "redeem", + "outputIndex": 0, + "inputQty": "2684179445233171300352", + "outputQty0": "2739800616100198061878", + "outputQty": "2758027188090792959065", + "swapFee1": "1610507667139902780", + "swapFee2": "1643880369660118837", "mpReserves": [ - "65109143429067467013811071", - "23851225171009370820403603", - "22410310728774439877593536" + "55718462185685373662145154", + "12429684514387595977381898", + "33460493514072045087085838" ], "fpReserves": [ - "12216325788099208445215268", - "15757286971153447659052377" + "2291663035583672575715628", + "4723776698902463808249404" ], - "mAssetSupply": "111312819580108681756122035", - "LPTokenSupply": "27700688020303177795643306" + "mAssetSupply": "101420635097256445921208105", + "LPTokenSupply": "6841634402925196742685196" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "99355798273498768", - "outputQty0": "100176815719145143", - "outputQty": "100398799015743341", - "swapFee1": "59613478964099", - "swapFee2": "40070726287658", + "type": "swap_fp_to_mp", + "inputQty": "769021107975279214592", + "outputIndex": 2, + "outputQty": "765310875455470210134", + "swapFee": "0", + "redemptionFee": "458688806077401083", "mpReserves": [ - "65109143328668667998067730", - "23851225171009370820403603", - "22410310728774439877593536" + "55718462185685373662145154", + "12429684514387595977381898", + "33459728203196589616875704" ], "fpReserves": [ - "12216325687922392726070125", - "15757286971153447659052377" + "2290898554240210240575715", + "4724545720010439087463996" ], - "mAssetSupply": "111312819479971936763264550", - "LPTokenSupply": "27700687920953340870040947" + "mAssetSupply": "101419871074601789663469275", + "LPTokenSupply": "6841634402925196742685196" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "228915410787537571020800", - "outputQty0": "229409167472174068010768", - "outputQty": "227383984843458059592051", + "inputIndex": 0, + "inputQty": "1734058828236021039104", + "outputQty0": "1721565693555035258681", + "outputQty": "1685612971137396461668", "mpReserves": [ - "65109143328668667998067730", - "24080140581796908391424403", - "22410310728774439877593536" + "55720196244513609683184258", + "12429684514387595977381898", + "33459728203196589616875704" ], "fpReserves": [ - "12445734855394566794080893", - "15757286971153447659052377" + "2292620119933765275834396", + "4724545720010439087463996" ], - "mAssetSupply": "111542228647444110831275318", - "LPTokenSupply": "27928071905796798929632998" + "mAssetSupply": "101421592640295344698727956", + "LPTokenSupply": "6843320015896334139146864" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "368698609955689935667200", - "outputQty0": "371750522275880781452239", - "outputQty": "370584844832244818559826", - "swapFee1": "221219165973413961400", - "swapFee2": "148700208910352312580", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "16187893570523566702592", + "outputQty0": "16071240815068669444736", + "outputQty": "16152681585384366870024", + "swapFee": "12588113068051508462", "mpReserves": [ - "65109143328668667998067730", - "24080140581796908391424403", - "22039725883942195059033710" + "55736384138084133249886850", + "12429684514387595977381898", + "33459728203196589616875704" ], "fpReserves": [ - "12073984333118686012628654", - "15757286971153447659052377" + "2308691360748833945279132", + "4708393038425054720593972" ], - "mAssetSupply": "111170626825377140402135659", - "LPTokenSupply": "27559395417757706335361938" + "mAssetSupply": "101437663881110413368172692", + "LPTokenSupply": "6843321274707640944297710" }, { "type": "swap_fp_to_mp", - "inputQty": "9396194204262795837440", + "inputQty": "87033668087784379777024", "outputIndex": 2, - "outputQty": "9349121290525325658722", + "outputQty": "86594909266779819188865", "swapFee": "0", - "redemptionFee": "3751642071952102531", + "redemptionFee": "51901334707057750661", "mpReserves": [ - "65109143328668667998067730", - "24080140581796908391424403", - "22030376762651669733374988" + "55736384138084133249886850", + "12429684514387595977381898", + "33373133293929809797686839" ], "fpReserves": [ - "12064605227938805756300656", - "15766683165357710454889817" + "2222189136237071027510571", + "4795426706512839100370996" ], - "mAssetSupply": "111161251471839332097910192", - "LPTokenSupply": "27559395417757706335361938" + "mAssetSupply": "101351213557933357508154792", + "LPTokenSupply": "6843321274707640944297710" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1791630081585415781875712", - "outputQty0": "1795018057300199328161060", - "outputQty": "1778827417027702067766226", + "type": "redeem", + "outputIndex": 2, + "inputQty": "11535848227290277216256", + "outputQty0": "11770234131011977084603", + "outputQty": "11782685131858711942361", + "swapFee1": "6921508936374166329", + "swapFee2": "7062140478607186250", "mpReserves": [ - "65109143328668667998067730", - "25871770663382324173300115", - "22030376762651669733374988" + "55736384138084133249886850", + "12429684514387595977381898", + "33361350608797951085744478" ], "fpReserves": [ - "13859623285239005084461716", - "15766683165357710454889817" + "2210418902106059050425968", + "4795426706512839100370996" ], - "mAssetSupply": "112956269529139531426071252", - "LPTokenSupply": "29338222834785408403128164" + "mAssetSupply": "101339450385942824138256439", + "LPTokenSupply": "6831786118631244304498086" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "72115472262710090006528", "outputIndex": 1, - "inputQty": "144604497561790709760", - "outputQty0": "145870073317882387319", - "outputQty": "145566130641193142641", - "swapFee1": "86762698537074425", - "swapFee2": "58348029327152954", + "outputQty": "70054125311653484270096", + "swapFee": "0", + "redemptionFee": "42974595138949123431", "mpReserves": [ - "65109143328668667998067730", - "25871625097251682980157474", - "22030376762651669733374988" + "55736384138084133249886850", + "12359630389075942493111802", + "33361350608797951085744478" ], "fpReserves": [ - "13859477415165687202074397", - "15766683165357710454889817" + "2138794576874477178039564", + "4867542178775549190377524" ], - "mAssetSupply": "112956123717414242870836887", - "LPTokenSupply": "29338078238964116466125846" + "mAssetSupply": "101267869035306381214993466", + "LPTokenSupply": "6831786118631244304498086" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "284538664666026400", - "outputQty0": "287028936858584895", - "outputQty": "287632016729474885", - "swapFee1": "170723198799615", - "swapFee2": "114811574743433", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "161750240890816757760", + "outputQty0": "161478545792611485674", + "outputQty": "162506316167951713685", + "swapFee": "126590623238950854", "mpReserves": [ - "65109143041036651268592845", - "25871625097251682980157474", - "22030376762651669733374988" + "55736384138084133249886850", + "12359630389075942493111802", + "33361512359038841902502238" ], "fpReserves": [ - "13859477128136750343489502", - "15766683165357710454889817" + "2138956055420269789525238", + "4867379672459381238663839" ], - "mAssetSupply": "112956123430500117586995425", - "LPTokenSupply": "29338077954442524119979407" + "mAssetSupply": "101268030513852173826479140", + "LPTokenSupply": "6831786131290306628393171" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "25897072143987769344", - "outputQty0": "25832436460188723500", - "outputQty": "25592948346195082059", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2331003643173222481920", + "outputQty0": "2382104255096725738271", + "outputQty": "2397238462253399230285", + "swapFee": "1867432689188170610", "mpReserves": [ - "65109168938108795256362189", - "25871625097251682980157474", - "22030376762651669733374988" + "55736384138084133249886850", + "12361961392719115715593722", + "33361512359038841902502238" ], "fpReserves": [ - "13859502960573210532213002", - "15766683165357710454889817" + "2141338159675366515263509", + "4864982433997127839433554" ], - "mAssetSupply": "112956149262936577775718925", - "LPTokenSupply": "29338103547390870315061466" + "mAssetSupply": "101270412618107270552217411", + "LPTokenSupply": "6831786318033575547210232" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "43527111017126854656", - "outputQty0": "43600549154607767761", - "outputQty": "43603137285518582774", - "swapFee": "34557068406570193", + "inputQty": "8862955831742928257024", + "outputQty0": "9057072144472477522957", + "outputQty": "8875019906919970950528", "mpReserves": [ - "65109168938108795256362189", - "25871668624362700107012130", - "22030376762651669733374988" + "55736384138084133249886850", + "12370824348550858643850746", + "33361512359038841902502238" ], "fpReserves": [ - "13859546561122365139980763", - "15766639562220424936307043" + "2150395231819838992786466", + "4864982433997127839433554" ], - "mAssetSupply": "112956192863485732383486686", - "LPTokenSupply": "29338103550846577155718485" + "mAssetSupply": "101279469690251743029740368", + "LPTokenSupply": "6840661337940495518160760" }, { - "type": "swap_fp_to_mp", - "inputQty": "308922768203805221715968", - "outputIndex": 2, - "outputQty": "307582883884251272483505", - "swapFee": "0", - "redemptionFee": "123445359561195586398", + "type": "mint", + "inputIndex": 1, + "inputQty": "3136919806817634091008", + "outputQty0": "3205556833758765797238", + "outputQty": "3141041497460494838084", "mpReserves": [ - "65109168938108795256362189", - "25871668624362700107012130", - "21722793878767418460891483" + "55736384138084133249886850", + "12373961268357676277941754", + "33361512359038841902502238" ], "fpReserves": [ - "13550933162219376173984667", - "16075562330424230158023011" + "2153600788653597758583704", + "4864982433997127839433554" ], - "mAssetSupply": "112647702909942304613076988", - "LPTokenSupply": "29338103550846577155718485" + "mAssetSupply": "101282675247085501795537606", + "LPTokenSupply": "6843802379437956012998844" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "53234545534833942528", - "outputQty0": "53323524849729862811", - "outputQty": "53341912229665735084", - "swapFee": "42269816805036243", + "type": "redeem", + "outputIndex": 0, + "inputQty": "2667423683319226695680", + "outputQty0": "2720580624874068116996", + "outputQty": "2738799238335230702728", + "swapFee1": "1600454209991536017", + "swapFee2": "1632348374924440870", "mpReserves": [ - "65109168938108795256362189", - "25871721858908234940954658", - "21722793878767418460891483" + "55733645338845798019184122", + "12373961268357676277941754", + "33361512359038841902502238" ], "fpReserves": [ - "13550986485744225903847478", - "16075508988512000492287927" + "2150880208028723690466708", + "4864982433997127839433554" ], - "mAssetSupply": "112647756233467154342939799", - "LPTokenSupply": "29338103555073558836222109" + "mAssetSupply": "101279956298809002651861480", + "LPTokenSupply": "6841135115800057785456765" }, { "type": "swap_fp_to_mp", - "inputQty": "13550959840304039985152", - "outputIndex": 2, - "outputQty": "13489435544900098095806", + "inputQty": "1028635986446171520", + "outputIndex": 0, + "outputQty": "1028234776901293256", "swapFee": "0", - "redemptionFee": "5414146577031652913", + "redemptionFee": "612837100957652", "mpReserves": [ - "65109168938108795256362189", - "25871721858908234940954658", - "21709304443222518362795677" + "55733644310611021117890866", + "12373961268357676277941754", + "33361512359038841902502238" ], "fpReserves": [ - "13537451119301646771564150", - "16089059948352304532273079" + "2150879186633555427713160", + "4864983462633114285605074" ], - "mAssetSupply": "112634226281171152242309384", - "LPTokenSupply": "29338103555073558836222109" + "mAssetSupply": "101279955278026671490065584", + "LPTokenSupply": "6841135115800057785456765" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "115418371483642848", - "outputQty0": "115611207982937176", - "outputQty": "115652533629034448", - "swapFee": "91646192296345", + "type": "swap_fp_to_mp", + "inputQty": "169580602632100872192", + "outputIndex": 1, + "outputQty": "164683528134637564117", + "swapFee": "0", + "redemptionFee": "101032054453539186", "mpReserves": [ - "65109168938108795256362189", - "25871721974326606424597506", - "21709304443222518362795677" + "55733644310611021117890866", + "12373796584829541640377637", + "33361512359038841902502238" ], "fpReserves": [ - "13537451234912854754501326", - "16089059832699770903238631" + "2150710799876132862402108", + "4865153043235746386477266" ], - "mAssetSupply": "112634226396782360225246560", - "LPTokenSupply": "29338103555082723455451743" + "mAssetSupply": "101279786992301303378293718", + "LPTokenSupply": "6841135115800057785456765" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "13195160297353202630656", - "outputQty0": "13161827270602720057832", - "outputQty": "13041870995191217569255", + "type": "redeem", + "outputIndex": 0, + "inputQty": "8095419193801083715584", + "outputQty0": "8256546990599026477934", + "outputQty": "8311830149390617798144", + "swapFee1": "4857251516280650229", + "swapFee2": "4953928194359415886", "mpReserves": [ - "65122364098406148458992845", - "25871721974326606424597506", - "21709304443222518362795677" + "55725332480461630500092722", + "12373796584829541640377637", + "33361512359038841902502238" ], "fpReserves": [ - "13550613062183457474559158", - "16089059832699770903238631" + "2142454252885533835924174", + "4865153043235746386477266" ], - "mAssetSupply": "112647388224052962945304392", - "LPTokenSupply": "29351145426077914673020998" + "mAssetSupply": "101271535399238898711231670", + "LPTokenSupply": "6833040182331408329806203" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "172904092443337195257856", - "outputQty0": "173189949268518186390260", - "outputQty": "171607140500170628966878", + "inputIndex": 2, + "inputQty": "7591386098546011", + "outputQty0": "7578666226389391", + "outputQty": "7426434998409874", "mpReserves": [ - "65122364098406148458992845", - "26044626066769943619855362", - "21709304443222518362795677" + "55725332480461630500092722", + "12373796584829541640377637", + "33361512366630228001048249" ], "fpReserves": [ - "13723803011451975660949418", - "16089059832699770903238631" + "2142454260464200062313565", + "4865153043235746386477266" ], - "mAssetSupply": "112820578173321481131694652", - "LPTokenSupply": "29522752566578085301987876" + "mAssetSupply": "101271535406817564937621061", + "LPTokenSupply": "6833040189757843328216077" }, { - "type": "swap_fp_to_mp", - "inputQty": "529210042422242240", - "outputIndex": 1, - "outputQty": "527573196103131898", - "swapFee": "0", - "redemptionFee": "211458891979828", + "type": "mint", + "inputIndex": 0, + "inputQty": "1072835621778007785472", + "outputQty0": "1065061321338601792638", + "outputQty": "1043665257936436070200", "mpReserves": [ - "65122364098406148458992845", - "26044625539196747516723464", - "21709304443222518362795677" + "55726405316083408507878194", + "12373796584829541640377637", + "33361512366630228001048249" ], "fpReserves": [ - "13723802482804745711377325", - "16089060361909813325480871" + "2143519321785538664106203", + "4865153043235746386477266" ], - "mAssetSupply": "112820577644885710074102387", - "LPTokenSupply": "29522752566578085301987876" + "mAssetSupply": "101272600468138903539413699", + "LPTokenSupply": "6834083855015779764286277" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "44096394295056686645248", - "outputQty0": "44477189145979430223352", - "outputQty": "44571432368889276133705", - "swapFee1": "26457836577034011987", - "swapFee2": "17790875658391772089", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "82782143475837927424", + "outputQty0": "82182254259691258755", + "outputQty": "82702394758975307857", + "swapFee": "64424874978641625", "mpReserves": [ - "65077792666037259182859140", - "26044625539196747516723464", - "21709304443222518362795677" + "55726488098226884345805618", + "12373796584829541640377637", + "33361512366630228001048249" ], "fpReserves": [ - "13679325293658766281153973", - "16089060361909813325480871" + "2143601504039798355364958", + "4865070340840987411169409" ], - "mAssetSupply": "112776118246615389035651124", - "LPTokenSupply": "29478658818066686318743826" + "mAssetSupply": "101272682650393163230672454", + "LPTokenSupply": "6834083861458267262150439" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "7326537696036779982848", - "outputQty0": "7389760375994211513677", - "outputQty": "7364614148497949104802", - "swapFee1": "4395922617622067989", - "swapFee2": "2955904150397684605", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "61110913418822795264", + "outputQty0": "62447377034321908848", + "outputQty": "62842572836534205882", + "swapFee": "48954151833706758", "mpReserves": [ - "65077792666037259182859140", - "26044625539196747516723464", - "21701939829074020413690875" + "55726488098226884345805618", + "12373857695742960463172901", + "33361512366630228001048249" ], "fpReserves": [ - "13671935533282772069640296", - "16089060361909813325480871" + "2143663951416832677273806", + "4865007498268150876963527" ], - "mAssetSupply": "112768731442143545221822052", - "LPTokenSupply": "29471332719962911300967776" + "mAssetSupply": "101272745097770197552581302", + "LPTokenSupply": "6834083866353682445521114" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "13256567855328544768", - "outputQty0": "13296528034297609532", - "outputQty": "13300379541959630553", - "swapFee": "10539897630729225", + "inputQty": "53097573267527669121024", + "outputQty0": "53008220373172884215608", + "outputQty": "53331335298443966653182", + "swapFee": "41549931508616434218", "mpReserves": [ - "65077792666037259182859140", - "26044625539196747516723464", - "21701953085641875742235643" + "55726488098226884345805618", + "12373857695742960463172901", + "33414609939897755670169273" ], "fpReserves": [ - "13671948829810806367249828", - "16089047061530271365850318" + "2196672171790005561489414", + "4811676162969706910310345" ], - "mAssetSupply": "112768744738671579519431584", - "LPTokenSupply": "29471332721016901064040698" + "mAssetSupply": "101325753318143370436796910", + "LPTokenSupply": "6834088021346833307164535" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "385326977093367798693888", - "outputQty0": "388630946928404116938141", - "outputQty": "387826704925743184325136", - "swapFee1": "231196186256020679216", - "swapFee2": "155452378771361646775", + "outputIndex": 0, + "inputQty": "2180116482068317995008", + "outputQty0": "2224186250154056295479", + "outputQty": "2239066656694050451475", + "swapFee1": "1308069889240990797", + "swapFee2": "1334511750092433777", "mpReserves": [ - "65077792666037259182859140", - "25656798834271004332398328", - "21701953085641875742235643" + "55724249031570190295354143", + "12373857695742960463172901", + "33414609939897755670169273" ], "fpReserves": [ - "13283317882882402250311687", - "16089047061530271365850318" + "2194447985539851505193935", + "4811676162969706910310345" ], - "mAssetSupply": "112380269244121946764140218", - "LPTokenSupply": "29086028863542158867414731" + "mAssetSupply": "101323530466404966472935208", + "LPTokenSupply": "6831908035671753913268606" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "128328264977868644155392", - "outputQty0": "128546517423634015919044", - "outputQty": "128601428872083227860670", - "swapFee": "101904722123492620787", + "inputQty": "241816098322157568000", + "outputQty0": "247108687230703543248", + "outputQty": "248561626139209581102", + "swapFee": "193654460668666851", "mpReserves": [ - "65077792666037259182859140", - "25785127099248872976553720", - "21701953085641875742235643" + "55724249031570190295354143", + "12374099511841282620740901", + "33414609939897755670169273" ], "fpReserves": [ - "13411864400306036266230731", - "15960445632658188137989648" + "2194695094227082208737183", + "4811427601343567700729243" ], - "mAssetSupply": "112508815761545580780059262", - "LPTokenSupply": "29086039054014371216676809" + "mAssetSupply": "101323777575092197176478456", + "LPTokenSupply": "6831908055037199980135291" }, { "type": "swap_fp_to_mp", - "inputQty": "41042072580385400684544", + "inputQty": "184463688653975437967360", "outputIndex": 1, - "outputQty": "40907844073364606901980", + "outputQty": "179001328719737829208871", "swapFee": "0", - "redemptionFee": "16397370856156478776", + "redemptionFee": "109852389333110946967", "mpReserves": [ - "65077792666037259182859140", - "25744219255175508369651740", - "21701953085641875742235643" + "55724249031570190295354143", + "12195098183121544791532030", + "33414609939897755670169273" ], "fpReserves": [ - "13370870973165645069289934", - "16001487705238573538674192" + "2011607778671897297124669", + "4995891289997543138696603" ], - "mAssetSupply": "112467838731776045739597241", - "LPTokenSupply": "29086039054014371216676809" + "mAssetSupply": "101140800111926345375812909", + "LPTokenSupply": "6831908055037199980135291" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "54703367500768919683072", - "outputQty0": "54795803553682826423942", - "outputQty": "54296874302933364263781", + "type": "swap_fp_to_mp", + "inputQty": "759199056645565016178688", + "outputIndex": 0, + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "183534317479492820402176", + "outputQty0": "182182801830035550578903", + "outputQty": "183406294211345023317291", + "swapFee": "142880806329209764351", "mpReserves": [ - "65077792666037259182859140", - "25798922622676277289334812", - "21701953085641875742235643" + "55907783349049683115756319", + "12195098183121544791532030", + "33414609939897755670169273" ], "fpReserves": [ - "13425666776719327895713876", - "16001487705238573538674192" + "2193790580501932847703572", + "4812484995786198115379312" ], - "mAssetSupply": "112522634535329728566021183", - "LPTokenSupply": "29140335928317304580940590" + "mAssetSupply": "101322982913756380926391812", + "LPTokenSupply": "6831922343117832901111726" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "145888143227200592674816", - "outputQty0": "145518483070240269245813", - "outputQty": "144189497902133387543468", + "type": "redeem", + "outputIndex": 0, + "inputQty": "181138481718581348270080", + "outputQty0": "184729215541224428140676", + "outputQty": "185987919936598145333342", + "swapFee1": "108683089031148808962", + "swapFee2": "110837529324734656884", "mpReserves": [ - "65223680809264459775533956", - "25798922622676277289334812", - "21701953085641875742235643" + "55721795429113084970422977", + "12195098183121544791532030", + "33414609939897755670169273" ], "fpReserves": [ - "13571185259789568164959689", - "16001487705238573538674192" + "2009061364960708419562896", + "4812484995786198115379312" ], - "mAssetSupply": "112668153018399968835266996", - "LPTokenSupply": "29284525426219437968484058" + "mAssetSupply": "101138364535744481232908020", + "LPTokenSupply": "6650794729708154667722542" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "13744689217258214", - "outputQty0": "13863327347766465", - "outputQty": "13816118453020471", - "swapFee1": "8246813530354", - "swapFee2": "5545330939106", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "350959690569509553307648", + "outputQty0": "348370076337464177679187", + "outputQty": "350298481782641875370557", + "swapFee": "273021547873263367764", "mpReserves": [ - "65223680809264459775533956", - "25798922622676277289334812", - "21701953071825757289215172" + "56072755119682594523730625", + "12195098183121544791532030", + "33414609939897755670169273" ], "fpReserves": [ - "13571185245926240817193224", - "16001487705238573538674192" + "2357431441298172597242083", + "4462186514003556240008755" ], - "mAssetSupply": "112668153004542186818439637", - "LPTokenSupply": "29284525412475573432578879" + "mAssetSupply": "101486734612081945410587207", + "LPTokenSupply": "6650822031862941994059318" }, { "type": "swap_fp_to_mp", - "inputQty": "125765917547419637121024", + "inputQty": "71877434220920157765632", "outputIndex": 1, - "outputQty": "125355579835522841421301", + "outputQty": "69860647972395558545250", "swapFee": "0", - "redemptionFee": "50247946309490149173", + "redemptionFee": "42901442582459439807", "mpReserves": [ - "65223680809264459775533956", - "25673567042840754447913511", - "21701953071825757289215172" + "56072755119682594523730625", + "12125237535149149232986780", + "33414609939897755670169273" ], "fpReserves": [ - "13445565380152515444260403", - "16127253622785993175795216" + "2285929036994073530896689", + "4534063948224476397774387" ], - "mAssetSupply": "112542583386714770935655989", - "LPTokenSupply": "29284525412475573432578879" + "mAssetSupply": "101415275109220428803681620", + "LPTokenSupply": "6650822031862941994059318" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "640722067897734198722560", - "outputQty0": "646150990350838585563761", - "outputQty": "643881228594696134537212", - "swapFee1": "384433240738640519233", - "swapFee2": "258460396140335434225", + "outputIndex": 0, + "inputQty": "462710774869203464749056", + "outputQty0": "472034408809806241623081", + "outputQty": "475272704751498474709318", + "swapFee1": "277626464921522078849", + "swapFee2": "283220645285883744973", "mpReserves": [ - "65223680809264459775533956", - "25673567042840754447913511", - "21058071843231061154677960" + "55597482414931096049021307", + "12125237535149149232986780", + "33414609939897755670169273" ], "fpReserves": [ - "12799414389801676858696642", - "16127253622785993175795216" + "1813894628184267289273608", + "4534063948224476397774387" ], - "mAssetSupply": "111896690856760072685526453", - "LPTokenSupply": "28643841787901913097908242" + "mAssetSupply": "100943523921055908445803512", + "LPTokenSupply": "6188139019640230681518146" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "70720097633023287296", + "outputQty0": "70593305278508190355", + "outputQty": "69233642005969428321", + "mpReserves": [ + "55597482414931096049021307", + "12125237535149149232986780", + "33414680659995388693456569" + ], + "fpReserves": [ + "1813965221489545797463963", + "4534063948224476397774387" + ], + "mAssetSupply": "100943594514361186953993867", + "LPTokenSupply": "6188208253282236650946467" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "1316461575259935473664", + "outputQty0": "1341504752722351909782", + "outputQty": "1310897515627789427050", + "swapFee1": "789876945155961284", + "swapFee2": "804902851633411145", + "mpReserves": [ + "55597482414931096049021307", + "12123926637633521443559730", + "33414680659995388693456569" + ], + "fpReserves": [ + "1812623716736823445554181", + "4534063948224476397774387" + ], + "mAssetSupply": "100942253814511316235495230", + "LPTokenSupply": "6186891870694671231068931" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1333849125334680338432", + "outputQty0": "1324022896930577393609", + "outputQty": "1298526405558870952845", + "mpReserves": [ + "55598816264056430729359739", + "12123926637633521443559730", + "33414680659995388693456569" + ], + "fpReserves": [ + "1813947739633754022947790", + "4534063948224476397774387" + ], + "mAssetSupply": "100943577837408246812888839", + "LPTokenSupply": "6188190397100230102021776" }, { "type": "swap_fp_to_mp", - "inputQty": "239232365100682608640", + "inputQty": "156496141082214287802368", "outputIndex": 2, - "outputQty": "237991325283527990948", + "outputQty": "155202372524602178970183", "swapFee": "0", - "redemptionFee": "95543334211924385", + "redemptionFee": "93012259201584554913", "mpReserves": [ - "65223680809264459775533956", - "25673567042840754447913511", - "21057833851905777626687012" + "55598816264056430729359739", + "12123926637633521443559730", + "33259478287470786514486386" ], "fpReserves": [ - "12799175531466147047732436", - "16127492855151093858403856" + "1658927307631113098091372", + "4690560089306690685576755" ], - "mAssetSupply": "111896452093967877086486632", - "LPTokenSupply": "28643841787901913097908242" + "mAssetSupply": "100788650417664807472587334", + "LPTokenSupply": "6188190397100230102021776" }, { - "type": "swap_fp_to_mp", - "inputQty": "136489868244203165712384", - "outputIndex": 0, - "outputQty": "136568579725867211666567", - "swapFee": "0", - "redemptionFee": "54506885803149669181", + "type": "redeem", + "outputIndex": 1, + "inputQty": "30014495019075077406720", + "outputQty0": "30535787022060465518127", + "outputQty": "29839038534436794509419", + "swapFee1": "18008697011445046444", + "swapFee2": "18321472213236279310", "mpReserves": [ - "65087112229538592563867389", - "25673567042840754447913511", - "21057833851905777626687012" + "55598816264056430729359739", + "12094087599099084649050311", + "33259478287470786514486386" ], "fpReserves": [ - "12662908316958272874779325", - "16263982723395297024116240" + "1628391520609052632573245", + "4690560089306690685576755" ], - "mAssetSupply": "111760239386345806063202702", - "LPTokenSupply": "28643841787901913097908242" + "mAssetSupply": "100758132952114960243348517", + "LPTokenSupply": "6158177702950856169119700" }, { "type": "swap_fp_to_mp", - "inputQty": "13157736724364127109120", + "inputQty": "21546702113890457616384", "outputIndex": 1, - "outputQty": "13108016529299632163502", + "outputQty": "20821268804041681133860", "swapFee": "0", - "redemptionFee": "5254116508876832715", + "redemptionFee": "12785680214160546263", "mpReserves": [ - "65087112229538592563867389", - "25660459026311454815750009", - "21057833851905777626687012" + "55598816264056430729359739", + "12073266330295042967916451", + "33259478287470786514486386" ], "fpReserves": [ - "12649773025686080792989790", - "16277140460119661151225360" + "1607082053585451722134094", + "4712106791420581143193139" ], - "mAssetSupply": "111747109349190122858245882", - "LPTokenSupply": "28643841787901913097908242" + "mAssetSupply": "100736836270771573493455629", + "LPTokenSupply": "6158177702950856169119700" }, { "type": "mint", + "inputIndex": 0, + "inputQty": "65175231818970497024", + "outputQty0": "64692214786377244584", + "outputQty": "63573892393537990687", + "mpReserves": [ + "55598881439288249699856763", + "12073266330295042967916451", + "33259478287470786514486386" + ], + "fpReserves": [ + "1607146745800238099378678", + "4712106791420581143193139" + ], + "mAssetSupply": "100736900962986359870700213", + "LPTokenSupply": "6158241276843249707110387" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "541355754192941264928768", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "13723631610176334725120", + "outputQty0": "13955778373863765972985", + "outputQty": "13635169794594902116843", + "swapFee1": "8234178966105800835", + "swapFee2": "8373467024318259583", + "mpReserves": [ + "55598881439288249699856763", + "12059631160500448065799608", + "33259478287470786514486386" + ], + "fpReserves": [ + "1593190967426374333405693", + "4712106791420581143193139" + ], + "mAssetSupply": "100722953558079520422986811", + "LPTokenSupply": "6144518468650969982965350" + }, + { + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "91274422747865355911168", - "outputQty0": "91426979306978542161206", - "outputQty": "90618307876230209026202", + "inputQty": "379209942964759035904", + "outputQty0": "387903246717068064652", + "outputQty": "392041342197848297200", + "swapFee": "304996135106420402", "mpReserves": [ - "65087112229538592563867389", - "25751733449059320171661177", - "21057833851905777626687012" + "55598881439288249699856763", + "12060010370443412824835512", + "33259478287470786514486386" ], "fpReserves": [ - "12741200004993059335150996", - "16277140460119661151225360" + "1593578870673091401470345", + "4711714750078383294895939" ], - "mAssetSupply": "111838536328497101400407088", - "LPTokenSupply": "28734460095778143306934444" + "mAssetSupply": "100723341461326237491051463", + "LPTokenSupply": "6144518499150583493607390" }, { - "type": "swap_fp_to_mp", - "inputQty": "12018673220183474044928", - "outputIndex": 2, - "outputQty": "11955172571245529402527", - "swapFee": "0", - "redemptionFee": "4799454628525186245", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "45737331224172401000448", + "outputQty0": "46781797513195556143217", + "outputQty": "47262724834318551833180", + "swapFee": "36775179755976242370", "mpReserves": [ - "65087112229538592563867389", - "25751733449059320171661177", - "21045878679334532097284485" + "55598881439288249699856763", + "12105747701667585225835960", + "33259478287470786514486386" ], "fpReserves": [ - "12729201368421746369538128", - "16289159133339844625270288" + "1640360668186286957613562", + "4664452025244064743062759" ], - "mAssetSupply": "111826542491380416959980465", - "LPTokenSupply": "28734460095778143306934444" + "mAssetSupply": "100770123258839433047194680", + "LPTokenSupply": "6144522176668559091231627" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "20480067344195874816", - "outputQty0": "20546348382329733190", - "outputQty": "20564317342653970956", - "swapFee": "16291567618275335", + "inputQty": "13162754229629566976", + "outputQty0": "13139632115546972186", + "outputQty": "13269796781067800315", + "swapFee": "10325444398514931", "mpReserves": [ - "65087112229538592563867389", - "25751733449059320171661177", - "21045899159401876293159301" + "55598881439288249699856763", + "12105747701667585225835960", + "33259491450225016144053362" ], "fpReserves": [ - "12729221914770128699271318", - "16289138569022501971299332" + "1640373807818402504585748", + "4664438755447283675262444" ], - "mAssetSupply": "111826563037728799289713655", - "LPTokenSupply": "28734460097407300068761977" + "mAssetSupply": "100770136398471548594166866", + "LPTokenSupply": "6144522177701103531083120" }, { - "type": "swap_mp_to_fp", + "type": "redeem", + "outputIndex": 2, + "inputQty": "593458812107396812374016", + "hardLimitError": true + }, + { + "type": "mint", "inputIndex": 2, - "inputQty": "6085728068550928384", - "outputQty0": "6105423694804497229", - "outputQty": "6110763156798998973", - "swapFee": "4841099748816026", + "inputQty": "83310929933778682904576", + "outputQty0": "83163608762236023663658", + "outputQty": "81662819224805652267767", "mpReserves": [ - "65087112229538592563867389", - "25751733449059320171661177", - "21045905245129944844087685" + "55598881439288249699856763", + "12105747701667585225835960", + "33342802380158794826957938" ], "fpReserves": [ - "12729228020193823503768547", - "16289132458259345172300359" + "1723537416580638528249406", + "4664438755447283675262444" ], - "mAssetSupply": "111826569143152494094210884", - "LPTokenSupply": "28734460097891410043643579" + "mAssetSupply": "100853300007233784617830524", + "LPTokenSupply": "6226184996925909183350887" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "5686227963331705044992", - "outputQty0": "5695668431814869436316", - "outputQty": "5700633323069816526616", - "swapFee": "4516193414091684930", + "inputQty": "330374063207957200896", + "outputQty0": "337899751791445443753", + "outputQty": "340943740394570870778", + "swapFee": "265356958379594993", "mpReserves": [ - "65087112229538592563867389", - "25757419677022651876706169", - "21045905245129944844087685" + "55598881439288249699856763", + "12106078075730793183036856", + "33342802380158794826957938" ], "fpReserves": [ - "12734923688625638373204863", - "16283431824936275355773743" + "1723875316332429973693159", + "4664097811706889104391666" ], - "mAssetSupply": "111832264811584308963647200", - "LPTokenSupply": "28734460549510751452812072" + "mAssetSupply": "100853637906985576063274277", + "LPTokenSupply": "6226185023461605021310386" }, { - "type": "swap_fp_to_mp", - "inputQty": "508650676360114392268800", - "outputIndex": 1, - "outputQty": "506599437106393807194084", - "swapFee": "0", - "redemptionFee": "203068635018768697216", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "223445458705837792", + "outputQty0": "223047751624254393", + "outputQty": "225056567259196044", + "swapFee": "175161843596095", "mpReserves": [ - "65087112229538592563867389", - "25250820239916258069512085", - "21045905245129944844087685" + "55598881439288249699856763", + "12106078075730793183036856", + "33342802603604253532795730" ], "fpReserves": [ - "12227252101078716630163969", - "16792082501296389748042543" + "1723875539380181597947552", + "4664097586650321845195622" ], - "mAssetSupply": "111324796292672405989303522", - "LPTokenSupply": "28734460549510751452812072" + "mAssetSupply": "100853638130033327687528670", + "LPTokenSupply": "6226185023479121205669995" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "88231022124411600896", - "outputQty0": "87998724747164463589", - "outputQty": "88121062509154219915", - "swapFee": "69796230255925341", + "inputQty": "125488168236335021162496", + "outputQty0": "124560127543385533447479", + "outputQty": "122221129514693385312462", "mpReserves": [ - "65087200460560716975468285", - "25250820239916258069512085", - "21045905245129944844087685" + "55724369607524584721019259", + "12106078075730793183036856", + "33342802603604253532795730" ], "fpReserves": [ - "12227340099803463794627558", - "16791994380233880593822628" + "1848435666923567131395031", + "4664097586650321845195622" ], - "mAssetSupply": "111324884291397153153767111", - "LPTokenSupply": "28734460556490374478404606" + "mAssetSupply": "100978198257576713220976149", + "LPTokenSupply": "6348406152993814590982457" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "1102008364902987847434240", - "outputQty0": "1110624775200036548623041", - "outputQty": "1106386923966677534329807", - "swapFee1": "661205018941792708460", - "swapFee2": "444249910080014619449", + "outputIndex": 0, + "inputQty": "55868344640535472898048", + "outputQty0": "56916018755668061145942", + "outputQty": "57306031368105663557402", + "swapFee1": "33521006784321283738", + "swapFee2": "34149611253400836687", "mpReserves": [ - "65087200460560716975468285", - "25250820239916258069512085", - "19939518321163267309757878" + "55667063576156479057461857", + "12106078075730793183036856", + "33342802603604253532795730" ], "fpReserves": [ - "11116715324603427246004517", - "16791994380233880593822628" + "1791519648167899070249089", + "4664097586650321845195622" ], - "mAssetSupply": "110214703766107196619763519", - "LPTokenSupply": "27632518312089280810241212" + "mAssetSupply": "100921316388432298560666894", + "LPTokenSupply": "6292541160453957550212782" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "242033888977723719680", - "outputQty0": "243876509306662118690", - "outputQty": "242890315715321133128", - "swapFee1": "145220333386634231", - "swapFee2": "97550603722664847", + "outputIndex": 1, + "inputQty": "753139693099876352000", + "outputQty0": "767126242599010435459", + "outputQty": "749559929075360442746", + "swapFee1": "451883815859925811", + "swapFee2": "460275745559406261", "mpReserves": [ - "65087200460560716975468285", - "25250820239916258069512085", - "19939275430847551988624750" + "55667063576156479057461857", + "12105328515801717822594110", + "33342802603604253532795730" ], "fpReserves": [ - "11116471448094120583885827", - "16791994380233880593822628" + "1790752521925300059813630", + "4664097586650321845195622" ], - "mAssetSupply": "110214459987148493680309676", - "LPTokenSupply": "27632276292722336425184955" + "mAssetSupply": "100920549722465445109637696", + "LPTokenSupply": "6291788065949239259853363" }, { "type": "swap_fp_to_mp", - "inputQty": "180037485346604", + "inputQty": "67379819788937392553984", "outputIndex": 0, - "outputQty": "179934241602300", + "outputQty": "67195030515280510681138", "swapFee": "0", - "redemptionFee": "71804383278", + "redemptionFee": "40043072030715544573", "mpReserves": [ - "65087200460380782733865985", - "25250820239916258069512085", - "19939275430847551988624750" + "55599868545641198546780719", + "12105328515801717822594110", + "33342802603604253532795730" ], "fpReserves": [ - "11116471447914609625690610", - "16791994380413918079169232" + "1724014068540774152190555", + "4731477406439259237749606" ], - "mAssetSupply": "110214459986969054526497737", - "LPTokenSupply": "27632276292722336425184955" + "mAssetSupply": "100853851312152949917559194", + "LPTokenSupply": "6291788065949239259853363" }, { "type": "swap_fp_to_mp", - "inputQty": "8320360773200692", + "inputQty": "6047219260956370534400", "outputIndex": 2, - "outputQty": "8262479421143410", + "outputQty": "5993780425910417038558", "swapFee": "0", - "redemptionFee": "3318411012115", + "redemptionFee": "3592024839060806868", "mpReserves": [ - "65087200460380782733865985", - "25250820239916258069512085", - "19939275422585072567481340" + "55599868545641198546780719", + "12105328515801717822594110", + "33336808823178343115757172" ], "fpReserves": [ - "11116471439618582095401234", - "16791994388734278852369924" + "1718027360475672807409023", + "4737524625700215608284006" ], - "mAssetSupply": "110214459978676345407220476", - "LPTokenSupply": "27632276292722336425184955" + "mAssetSupply": "100847868196112687633584530", + "LPTokenSupply": "6291788065949239259853363" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "608558560781001514024960", - "outputQty0": "606872419602106846657921", - "outputQty": "607949348789103120212060", - "swapFee": "481479356416853080529", + "inputQty": "1608533563308585517056", + "outputQty0": "1596654182849151510528", + "outputQty": "1567701277257105345032", "mpReserves": [ - "65695759021161784247890945", - "25250820239916258069512085", - "19939275422585072567481340" + "55601477079204507132297775", + "12105328515801717822594110", + "33336808823178343115757172" ], "fpReserves": [ - "11723343859220688942059155", - "16184045039945175732157864" + "1719624014658521958919551", + "4737524625700215608284006" ], - "mAssetSupply": "110821332398278452253878397", - "LPTokenSupply": "27632324440657978110493007" + "mAssetSupply": "100849464850295536785095058", + "LPTokenSupply": "6293355767226496365198395" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "39095525660510058971136", - "outputQty0": "39409778253583919956540", - "outputQty": "39247353009051514539861", - "swapFee1": "23457315396306035382", - "swapFee2": "15763911301433567982", + "inputQty": "65519405823195897856", + "outputQty0": "66689790866816103295", + "outputQty": "66768508415271953949", + "swapFee1": "39311643493917538", + "swapFee2": "40013874520089661", "mpReserves": [ - "65695759021161784247890945", - "25250820239916258069512085", - "19900028069576021052941479" + "55601477079204507132297775", + "12105328515801717822594110", + "33336742054669927843803223" ], "fpReserves": [ - "11683934080967105022102615", - "16184045039945175732157864" + "1719557324867655142816256", + "4737524625700215608284006" ], - "mAssetSupply": "110781938383936169767489839", - "LPTokenSupply": "27593231260729007682125409" + "mAssetSupply": "100849398200518544489081424", + "LPTokenSupply": "6293290251751837518692292" }, { - "type": "swap_fp_to_mp", - "inputQty": "31483156871817849733120", - "outputIndex": 1, - "outputQty": "31343963471849865473379", - "swapFee": "0", - "redemptionFee": "12564692122887747378", + "type": "mint", + "inputIndex": 0, + "inputQty": "39241285641101815840768", + "outputQty0": "38951332586301347288089", + "outputQty": "38239294759330870980067", "mpReserves": [ - "65695759021161784247890945", - "25219476276444408204038706", - "19900028069576021052941479" + "55640718364845608948138543", + "12105328515801717822594110", + "33336742054669927843803223" ], "fpReserves": [ - "11652522350659885653656298", - "16215528196816993581890984" + "1758508657453956490104345", + "4737524625700215608284006" ], - "mAssetSupply": "110750539218321073286790900", - "LPTokenSupply": "27593231260729007682125409" + "mAssetSupply": "100888349533104845836369513", + "LPTokenSupply": "6331529546511168389672359" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "47367726510879352553472", - "outputQty0": "47544569429960256176903", - "outputQty": "47614131931565718673371", - "swapFee": "37710396821207543775", + "inputIndex": 0, + "inputQty": "671923421552821659500544", + "outputQty0": "666914690414665088458010", + "outputQty": "670629678713633875625251", + "swapFee": "522790345285845656615", "mpReserves": [ - "65695759021161784247890945", - "25219476276444408204038706", - "19947395796086900405494951" + "56312641786398430607639087", + "12105328515801717822594110", + "33336742054669927843803223" ], "fpReserves": [ - "11700066920089845909833201", - "16167914064885427863217613" + "2425423347868621578562355", + "4066894946986581732658755" ], - "mAssetSupply": "110798083787751033542967803", - "LPTokenSupply": "27593235031768689802879786" + "mAssetSupply": "101555264223519510924827523", + "LPTokenSupply": "6331581825545696974238020" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "19812878805575200145408", - "outputQty0": "19972161956314592577725", - "outputQty": "19928905779069019048263", - "swapFee1": "11887727283345120087", - "swapFee2": "7988864782525837031", + "type": "mint", + "inputIndex": 2, + "inputQty": "200181240612550115328", + "outputQty0": "199837646084082267238", + "outputQty": "195356286516464849629", "mpReserves": [ - "65695759021161784247890945", - "25199547370665339184990443", - "19947395796086900405494951" + "56312641786398430607639087", + "12105328515801717822594110", + "33336942235910540393918551" ], "fpReserves": [ - "11680094758133531317255476", - "16167914064885427863217613" + "2425623185514705660829593", + "4066894946986581732658755" ], - "mAssetSupply": "110778119614659501476227109", - "LPTokenSupply": "27573423341735842937246386" + "mAssetSupply": "101555464061165595007094761", + "LPTokenSupply": "6331777181832213439087649" }, { "type": "mint", "inputIndex": 0, - "inputQty": "199897269709770686464", - "outputQty0": "199338989585262558311", - "outputQty": "197631211659508625454", + "inputQty": "149575698775403531337728", + "outputQty0": "148449415212815964748571", + "outputQty": "145096647316799164635594", "mpReserves": [ - "65695958918431494018577409", - "25199547370665339184990443", - "19947395796086900405494951" + "56462217485173834138976815", + "12105328515801717822594110", + "33336942235910540393918551" ], "fpReserves": [ - "11680294097123116579813787", - "16167914064885427863217613" + "2574072600727521625578164", + "4066894946986581732658755" ], - "mAssetSupply": "110778318953649086738785420", - "LPTokenSupply": "27573620972947502445871840" + "mAssetSupply": "101703913476378410971843332", + "LPTokenSupply": "6476873829149012603723243" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "186273911374771627491328", + "outputQty0": "190454871170193057741609", + "outputQty": "190660141830586873965831", + "swapFee1": "111764346824862976494", + "swapFee2": "114272922702115834644", + "mpReserves": [ + "56462217485173834138976815", + "12105328515801717822594110", + "33146282094079953519952720" + ], + "fpReserves": [ + "2383617729557328567836555", + "4066894946986581732658755" + ], + "mAssetSupply": "101513572878130920029936367", + "LPTokenSupply": "6290611094208923462529564" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "3761546467851491328", + "outputIndex": 2, + "outputQty": "3750559289820074684", + "swapFee": "0", + "redemptionFee": "2247974455523570", + "mpReserves": [ + "56462217485173834138976815", + "12105328515801717822594110", + "33146278343520663699878036" + ], + "fpReserves": [ + "2383613982933236028551653", + "4066898708533049584150083" + ], + "mAssetSupply": "101513569133754801946175035", + "LPTokenSupply": "6290611094208923462529564" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "449358222533376", + "outputIndex": 0, + "outputQty": "450714685290721", + "swapFee": "0", + "redemptionFee": "268545345039", + "mpReserves": [ + "56462217484723119453686094", + "12105328515801717822594110", + "33146278343520663699878036" + ], + "fpReserves": [ + "2383613982485660453485880", + "4066898708982407806683459" + ], + "mAssetSupply": "101513569133307494916454301", + "LPTokenSupply": "6290611094208923462529564" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1080770063146780865855488", - "outputQty0": "1077714554560897199642988", - "outputQty": "1068279810676065723737069", + "inputQty": "22923810877202542592", + "outputQty0": "22750493973546373126", + "outputQty": "22242163202020980245", "mpReserves": [ - "66776728981578274884432897", - "25199547370665339184990443", - "19947395796086900405494951" + "56462240408533996656228686", + "12105328515801717822594110", + "33146278343520663699878036" ], "fpReserves": [ - "12758008651684013779456775", - "16167914064885427863217613" + "2383636732979633999859006", + "4066898708982407806683459" ], - "mAssetSupply": "111856033508209983938428408", - "LPTokenSupply": "28641900783623568169608909" + "mAssetSupply": "101513591883801468462827427", + "LPTokenSupply": "6290633336372125483509809" }, { "type": "mint", "inputIndex": 2, - "inputQty": "20537756321883963260928", - "outputQty0": "20616673447361615121151", - "outputQty": "20432493276245403723786", + "inputQty": "34124411088848", + "outputQty0": "34068153675921", + "outputQty": "33306943317179", "mpReserves": [ - "66776728981578274884432897", - "25199547370665339184990443", - "19967933552408784368755879" + "56462240408533996656228686", + "12105328515801717822594110", + "33146278343554788110966884" ], "fpReserves": [ - "12778625325131375394577926", - "16167914064885427863217613" + "2383636733013702153534927", + "4066898708982407806683459" ], - "mAssetSupply": "111876650181657345553549559", - "LPTokenSupply": "28662333276899813573332695" + "mAssetSupply": "101513591883835536616503348", + "LPTokenSupply": "6290633336405432426826988" }, { "type": "mint", "inputIndex": 1, - "inputQty": "16542849964759215767552", - "outputQty0": "16573494078151214104805", - "outputQty": "16425339355084040738151", + "inputQty": "3993480162021311774720", + "outputQty0": "4086240465290462575987", + "outputQty": "3994918821279682911221", "mpReserves": [ - "66776728981578274884432897", - "25216090220630098400757995", - "19967933552408784368755879" + "56462240408533996656228686", + "12109321995963739134368830", + "33146278343554788110966884" ], "fpReserves": [ - "12795198819209526608682731", - "16167914064885427863217613" + "2387722973478992616110914", + "4066898708982407806683459" ], - "mAssetSupply": "111893223675735496767654364", - "LPTokenSupply": "28678758616254897614070846" + "mAssetSupply": "101517678124300827079079335", + "LPTokenSupply": "6294628255226712109738209" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "26729706443699344375808", - "outputQty0": "26779081070353021519327", - "outputQty": "26799738814406904977603", - "swapFee": "21231614845465010565", + "inputQty": "90703595432557379584", + "outputQty0": "92809731963804185167", + "outputQty": "90735109878386732579", "mpReserves": [ - "66776728981578274884432897", - "25242819927073797745133803", - "19967933552408784368755879" + "56462240408533996656228686", + "12109412699559171691748414", + "33146278343554788110966884" ], "fpReserves": [ - "12821977900279879630202058", - "16141114326071020958240010" + "2387815783210956420296081", + "4066898708982407806683459" ], - "mAssetSupply": "111920002756805849789173691", - "LPTokenSupply": "28678760739416382160571902" + "mAssetSupply": "101517770934032790883264502", + "LPTokenSupply": "6294718990336590496470788" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "38602659131905225523200", - "outputQty0": "38927948182430288900942", - "outputQty": "38840574595075737675901", - "swapFee1": "23161595479143135313", - "swapFee2": "15571179272972115560", + "type": "swap_fp_to_mp", + "inputQty": "11563552410654675566592", + "outputIndex": 2, + "outputQty": "11529519810700794906113", + "swapFee": "0", + "redemptionFee": "6910475657043872831", "mpReserves": [ - "66776728981578274884432897", - "25203979352478722007457902", - "19967933552408784368755879" + "56462240408533996656228686", + "12109412699559171691748414", + "33134748823744087316060771" ], "fpReserves": [ - "12783049952097449341301116", - "16141114326071020958240010" + "2376298323782549965577286", + "4078462261393062482250051" ], - "mAssetSupply": "111881090379802692472388309", - "LPTokenSupply": "28640160396444024849362233" + "mAssetSupply": "101506260385080041472418538", + "LPTokenSupply": "6294718990336590496470788" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "631111775646494354309120", - "outputQty0": "629294847606732233877905", - "outputQty": "629592387907108017013360", - "swapFee": "498885227533377612904", + "inputIndex": 1, + "inputQty": "48042318766946848", + "outputQty0": "49157646433916475", + "outputQty": "49316631404811538", + "swapFee": "38448742059096", "mpReserves": [ - "67407840757224769238742017", - "25203979352478722007457902", - "19967933552408784368755879" + "56462240408533996656228686", + "12109412747601490458695262", + "33134748823744087316060771" ], "fpReserves": [ - "13412344799704181575179021", - "15511521938163912941226650" + "2376298372940196399493761", + "4078462212076431077438513" ], - "mAssetSupply": "112510385227409424706266214", - "LPTokenSupply": "28640210284966778187123523" + "mAssetSupply": "101506260434237687906335013", + "LPTokenSupply": "6294718990340435370676697" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "153306460288727264", - "outputQty0": "154651365076765892", - "outputQty": "153987049056932381", - "swapFee1": "91983876173236", - "swapFee2": "61860546030706", + "inputQty": "3118425374970791424", + "outputQty0": "3187672034214928221", + "outputQty": "3191004656722011614", + "swapFee1": "1871055224982474", + "swapFee2": "1912603220528956", + "mpReserves": [ + "56462240408533996656228686", + "12109412747601490458695262", + "33134745632739430594049157" + ], + "fpReserves": [ + "2376295185268162184565540", + "4078462212076431077438513" + ], + "mAssetSupply": "101506257248478256911935748", + "LPTokenSupply": "6294715872102165922383520" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "87273714595205868421120", + "outputQty0": "89285110013630887526649", + "outputQty": "87283892699323131184788", "mpReserves": [ - "67407840757224769238742017", - "25203979352478722007457902", - "19967933398421735311823498" + "56462240408533996656228686", + "12196686462196696327116382", + "33134745632739430594049157" ], "fpReserves": [ - "13412344645052816498413129", - "15511521938163912941226650" + "2465580295281793072092189", + "4078462212076431077438513" ], - "mAssetSupply": "112510385072819920175531028", - "LPTokenSupply": "28640210131669516286013582" + "mAssetSupply": "101595542358491887799462397", + "LPTokenSupply": "6381999764801489053568308" }, { "type": "swap_fp_to_mp", - "inputQty": "144651146045755737767936", + "inputQty": "183128720734448322084864", "outputIndex": 1, - "outputQty": "144166268767383627674672", + "outputQty": "178105980617640342303904", "swapFee": "0", - "redemptionFee": "57800320571711467493", + "redemptionFee": "109411001838394769673", "mpReserves": [ - "67407840757224769238742017", - "25059813083711338379783230", - "19967933398421735311823498" + "56462240408533996656228686", + "12018580481579055984812478", + "33134745632739430594049157" ], "fpReserves": [ - "13267843843623537829680174", - "15656173084209668678994586" + "2283228625551135122636769", + "4261590932810879399523377" ], - "mAssetSupply": "112365942071711213218265566", - "LPTokenSupply": "28640210131669516286013582" + "mAssetSupply": "101413300099763068244776650", + "LPTokenSupply": "6381999764801489053568308" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "796358381988021888", - "outputQty0": "799468295541859389", - "outputQty": "799714807251701179", - "swapFee": "633679081126925", + "inputQty": "11671668793651633324032", + "outputQty0": "11652066902226757040824", + "outputQty": "11397841320344335952065", "mpReserves": [ - "67407840757224769238742017", - "25059813083711338379783230", - "19967934194780117299845386" + "56462240408533996656228686", + "12018580481579055984812478", + "33146417301533082227373189" ], "fpReserves": [ - "13267844643091833371539563", - "15656172284494861427293407" + "2294880692453361879677593", + "4261590932810879399523377" ], - "mAssetSupply": "112365942871179508760124955", - "LPTokenSupply": "28640210131732884194126274" + "mAssetSupply": "101424952166665295001817474", + "LPTokenSupply": "6393397606121833389520373" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "1866719299347629016612864", - "outputQty0": "1882410700006054583952182", - "outputQty": "1877547927816916495225657", - "swapFee1": "1120031579608577409967", - "swapFee2": "752964280002421833580", + "inputQty": "44587859758918056017920", + "outputQty0": "45552774049797381317621", + "outputQty": "44472949979858169344448", + "swapFee1": "26752715855350833610", + "swapFee2": "27331664429878428790", "mpReserves": [ - "67407840757224769238742017", - "23182265155894421884557573", - "19967934194780117299845386" + "56462240408533996656228686", + "11974107531599197815468030", + "33146417301533082227373189" ], "fpReserves": [ - "11385433943085778787587381", - "15656172284494861427293407" + "2249327918403564498359972", + "4261590932810879399523377" ], - "mAssetSupply": "110484285135453456598006353", - "LPTokenSupply": "26773602835543216035254406" + "mAssetSupply": "101379426724279927498928643", + "LPTokenSupply": "6348812421634500868585814" }, { - "type": "mint", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1285284006641174315008000", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "469459041270500006297600", + "outputQty0": "468630250437772023126308", + "outputQty": "469926956913684186595484", + "swapFee": "366546008384364107801", + "mpReserves": [ + "56462240408533996656228686", + "11974107531599197815468030", + "33615876342803582233670789" + ], + "fpReserves": [ + "2717958168841336521486280", + "3791663975897195212927893" + ], + "mAssetSupply": "101848056974717699522054951", + "LPTokenSupply": "6348849076235339304996594" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "8561088777483598168064", + "outputQty0": "8765845437114963547645", + "outputQty": "8778883356868403965623", + "swapFee": "6848624773465775283", + "mpReserves": [ + "56462240408533996656228686", + "11982668620376681413636094", + "33615876342803582233670789" + ], + "fpReserves": [ + "2726724014278451485033925", + "3782885092540326808962270" + ], + "mAssetSupply": "101856822820154814485602596", + "LPTokenSupply": "6348849761097816651574122" + }, + { + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "18206180680719715532800", - "outputQty0": "18150279617851102527781", - "outputQty": "17993219916588011341575", + "inputQty": "11649350615513306234880", + "outputQty0": "11560854918876598724975", + "outputQty": "11577490970894351751881", + "swapFee": "9032076565427682418", "mpReserves": [ - "67426046937905488954274817", - "23182265155894421884557573", - "19967934194780117299845386" + "56473889759149509962463566", + "11982668620376681413636094", + "33615876342803582233670789" ], "fpReserves": [ - "11403584222703629890115162", - "15656172284494861427293407" + "2738284869197328083758900", + "3771307601569432457210389" ], - "mAssetSupply": "110502435415071307700534134", - "LPTokenSupply": "26791596055459804046595981" + "mAssetSupply": "101868383675073691084327571", + "LPTokenSupply": "6348850664305473194342363" }, { - "type": "swap_fp_to_mp", - "inputQty": "80433919274556276736", - "outputIndex": 0, - "outputQty": "80473204380035243007", - "swapFee": "0", - "redemptionFee": "32103267927727152", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "2662253926448876032", + "outputQty0": "2642026925089845895", + "outputQty": "2645756420762671464", + "swapFee": "2064070677252193", "mpReserves": [ - "67425966464701108919031810", - "23182265155894421884557573", - "19967934194780117299845386" + "56473892421403436411339598", + "11982668620376681413636094", + "33615876342803582233670789" ], "fpReserves": [ - "11403503964533810572234670", - "15656252718414135983570143" + "2738287511224253173604795", + "3771304955813011694538925" ], - "mAssetSupply": "110502355189004756310380794", - "LPTokenSupply": "26791596055459804046595981" + "mAssetSupply": "101868386317100616174173466", + "LPTokenSupply": "6348850664511880262067582" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "87295588469150", - "outputQty0": "87510362215987", - "outputQty": "87631834923052", - "swapFee": "69402252395", + "inputQty": "10489076619610930806784", + "outputQty0": "10739618480693789543146", + "outputQty": "10754506315072871992066", + "swapFee": "8390203532033435624", "mpReserves": [ - "67425966464701108919031810", - "23182265155981717473026723", - "19967934194780117299845386" + "56473892421403436411339598", + "11993157696996292344442878", + "33615876342803582233670789" ], "fpReserves": [ - "11403503964621320934450657", - "15656252718326504148647091" + "2749027129704946963147941", + "3760550449497938822546859" ], - "mAssetSupply": "110502355189092266672596781", - "LPTokenSupply": "26791596055459810986821220" + "mAssetSupply": "101879125935581309963716612", + "LPTokenSupply": "6348851503532233465411144" }, { "type": "swap_fp_to_mp", - "inputQty": "54814522458076281307136", - "outputIndex": 1, - "outputQty": "54536536939366070420344", + "inputQty": "730260175293748894236672", + "outputIndex": 0, + "outputQty": "732250748295485644422326", "swapFee": "0", - "redemptionFee": "21877220143182961459", + "redemptionFee": "436306775644504670800", "mpReserves": [ - "67425966464701108919031810", - "23127728619042351402606379", - "19967934194780117299845386" + "55741641673107950766917272", + "11993157696996292344442878", + "33615876342803582233670789" ], "fpReserves": [ - "11348810914263363530802149", - "15711067240784580429954227" + "2021849170297439178481186", + "4490810624791687716783531" ], - "mAssetSupply": "110447684015954452451909732", - "LPTokenSupply": "26791596055459810986821220" + "mAssetSupply": "101152384282949446683720657", + "LPTokenSupply": "6348851503532233465411144" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "543557076731948672", - "outputQty0": "545630611998841494", - "outputQty": "546421987559733297", - "swapFee": "432741409039861", + "type": "redeem", + "outputIndex": 0, + "inputQty": "242456354418871402496", + "outputQty0": "247396360878532811796", + "outputQty": "249105237497942749176", + "swapFee1": "145473812651322841", + "swapFee2": "148437816527119687", "mpReserves": [ - "67425966464701108919031810", - "23127728619042351402606379", - "19967934738337194031794058" + "55741392567870452824168096", + "11993157696996292344442878", + "33615876342803582233670789" ], "fpReserves": [ - "11348811459893975529643643", - "15711066694362592870220930" + "2021601773936560645669390", + "4490810624791687716783531" ], - "mAssetSupply": "110447684561585064450751226", - "LPTokenSupply": "26791596055503085127725206" + "mAssetSupply": "101152137035026384678028548", + "LPTokenSupply": "6348609061725195859140932" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1035684741673805565394944", - "outputQty0": "1043839534184472879604990", - "outputQty": "1046604431615812389591973", - "swapFee1": "621410845004283339236", - "swapFee2": "417535813673789151841", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "2912686827933201334272", + "outputQty0": "2907189782885754641493", + "outputQty": "2924731712178977700669", + "swapFee": "2277930403290870689", "mpReserves": [ - "66379362033085296529439837", - "23127728619042351402606379", - "19967934738337194031794058" + "55741392567870452824168096", + "11993157696996292344442878", + "33618789029631515435005061" ], "fpReserves": [ - "10304971925709502650038653", - "15711066694362592870220930" + "2024508963719446400310883", + "4487885893079508739082862" ], - "mAssetSupply": "109404262563214265360298077", - "LPTokenSupply": "25755973454913779990664185" + "mAssetSupply": "101155044224809270432670041", + "LPTokenSupply": "6348609289518236188228000" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "41586196965932826624", - "outputQty0": "41461213247171556476", - "outputQty": "41121240123597830209", + "inputQty": "145784414094381891452928", + "outputQty0": "144695534278739990752950", + "outputQty": "145475529473380455370121", + "swapFee": "113341390639681797249", "mpReserves": [ - "66379403619282262462266461", - "23127728619042351402606379", - "19967934738337194031794058" + "55887176981964834715621024", + "11993157696996292344442878", + "33618789029631515435005061" ], "fpReserves": [ - "10305013386922749821595129", - "15711066694362592870220930" + "2169204497998186391063833", + "4342410363606128283712741" ], - "mAssetSupply": "109404304024427512531854553", - "LPTokenSupply": "25756014576153903588494394" + "mAssetSupply": "101299739759088010423422991", + "LPTokenSupply": "6348620623657300156407724" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "6455256842725039800320", - "outputQty0": "6504710979479633797667", - "outputQty": "6486657615473100385874", - "swapFee1": "3873154105635023880", - "swapFee2": "2601884391791853519", + "outputIndex": 2, + "inputQty": "63596516993660073541632", + "outputQty0": "64940595491144474243056", + "outputQty": "65022976406567399106035", + "swapFee1": "38157910196196044124", + "swapFee2": "38964357294686684545", "mpReserves": [ - "66379403619282262462266461", - "23121241961426878302220505", - "19967934738337194031794058" + "55887176981964834715621024", + "11993157696996292344442878", + "33553766053224948035899026" ], "fpReserves": [ - "10298508675943270187797462", - "15711066694362592870220930" + "2104263902507041916820777", + "4342410363606128283712741" ], - "mAssetSupply": "109397801915332424689910405", - "LPTokenSupply": "25749559706626589112196462" + "mAssetSupply": "101234838127954160635864480", + "LPTokenSupply": "6285027922454659702470504" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "55064417300662509568", - "outputQty0": "55267544537437164125", - "outputQty": "54814524035623612729", + "inputIndex": 0, + "inputQty": "33236243384093", + "outputQty0": "32987366819237", + "outputQty": "32288844070565", "mpReserves": [ - "66379403619282262462266461", - "23121241961426878302220505", - "19967989802754494694303626" + "55887176981998070959005117", + "11993157696996292344442878", + "33553766053224948035899026" ], "fpReserves": [ - "10298563943487807624961587", - "15711066694362592870220930" + "2104263902540029283640014", + "4342410363606128283712741" ], - "mAssetSupply": "109397857182876962127074530", - "LPTokenSupply": "25749614521150624735809191" + "mAssetSupply": "101234838127987148002683717", + "LPTokenSupply": "6285027922486948546541069" }, { "type": "swap_fp_to_mp", - "inputQty": "24626227330079059968", + "inputQty": "11184373049160844", "outputIndex": 1, - "outputQty": "24484068153449772802", + "outputQty": "10856702513441551", "swapFee": "0", - "redemptionFee": "9820894078274838", - "mpReserves": [ - "66379403619282262462266461", - "23121217477358724852447703", - "19967989802754494694303626" - ], - "fpReserves": [ - "10298539391252611937865037", - "15711091320589922949280898" - ], - "mAssetSupply": "109397832640462660518252818", - "LPTokenSupply": "25749614521150624735809191" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "20849364583665220190208", - "outputQty0": "20786676760965149091150", - "outputQty": "20832357762858454014584", - "swapFee": "16492951276010654362", + "redemptionFee": "6670940630537", "mpReserves": [ - "66400252983865927682456669", - "23121217477358724852447703", - "19967989802754494694303626" + "55887176981998070959005117", + "11993157686139589831001327", + "33553766053224948035899026" ], "fpReserves": [ - "10319326068013577086956187", - "15690258962827064495266314" + "2104263891421794899410874", + "4342410374790501332873585" ], - "mAssetSupply": "109418619317223625667343968", - "LPTokenSupply": "25749616170445752336874627" + "mAssetSupply": "101234838116875584559085114", + "LPTokenSupply": "6285027922486948546541069" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "318685184460198576128", - "outputQty0": "319861544381989607764", - "outputQty": "320560046945376004814", - "swapFee": "253787415437699102", + "inputQty": "1105938362747768742608896", + "outputQty0": "1103716376720415580962409", + "outputQty": "1078817315451990459753728", "mpReserves": [ - "66400252983865927682456669", - "23121217477358724852447703", - "19968308487938954892879754" + "55887176981998070959005117", + "11993157686139589831001327", + "34659704415972716778507922" ], "fpReserves": [ - "10319645929557959076563951", - "15689938402780119119261500" + "3207980268142210480373283", + "4342410374790501332873585" ], - "mAssetSupply": "109418939178768007656951732", - "LPTokenSupply": "25749616195824493880644537" + "mAssetSupply": "102338554493596000140047523", + "LPTokenSupply": "7363845237938939006294797" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "84853232194901164032", - "outputQty0": "85055600848858883416", - "outputQty": "85241319761797268415", - "swapFee": "67485563861596451", + "type": "redeem", + "outputIndex": 1, + "inputQty": "19172280818134052864", + "outputQty0": "19622667159943125301", + "outputQty": "19153003681747228769", + "swapFee1": "11503368490880431", + "swapFee2": "11773600295965875", "mpReserves": [ - "66400252983865927682456669", - "23121302330590919753611735", - "19968308487938954892879754" + "55887176981998070959005117", + "11993138533135908083772558", + "34659704415972716778507922" ], "fpReserves": [ - "10319730985158807935447367", - "15689853161460357321993085" + "3207960645475050537247982", + "4342410374790501332873585" ], - "mAssetSupply": "109419024234368856515835148", - "LPTokenSupply": "25749616202573050266804182" + "mAssetSupply": "102338534882702440492888097", + "LPTokenSupply": "7363826066808457721329976" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3499812380788095", - "outputQty0": "3512730971900240", - "outputQty": "3483877256612404", + "type": "redeem", + "outputIndex": 1, + "inputQty": "7088852176177713905664", + "outputQty0": "7255345212992423786639", + "outputQty": "7081591365794186250411", + "swapFee1": "4253311305706628343", + "swapFee2": "4353207127795454271", "mpReserves": [ - "66400252983865927682456669", - "23121302330590919753611735", - "19968308491438767273667849" + "55887176981998070959005117", + "11986056941770113897522147", + "34659704415972716778507922" ], "fpReserves": [ - "10319730988671538907347607", - "15689853161460357321993085" + "3200705300262058113461343", + "4342410374790501332873585" ], - "mAssetSupply": "109419024237881587487735388", - "LPTokenSupply": "25749616206056927523416586" + "mAssetSupply": "102331283890696575864555729", + "LPTokenSupply": "7356737639963410578087146" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "17941710318340200", - "outputQty0": "17887753165390713", - "outputQty": "17926810079324416", - "swapFee": "14192657945739", + "inputIndex": 1, + "inputQty": "16389257401137637621760", + "outputQty0": "16781001834928889731667", + "outputQty": "16802243935496488491637", + "swapFee": "13108774479225169559", "mpReserves": [ - "66400253001807638000796869", - "23121302330590919753611735", - "19968308491438767273667849" + "55887176981998070959005117", + "12002446199171251535143907", + "34659704415972716778507922" ], "fpReserves": [ - "10319731006559292072738320", - "15689853143533547242668669" + "3217486302096987003193010", + "4325608130855004844381948" ], - "mAssetSupply": "109419024255769340653126101", - "LPTokenSupply": "25749616206058346789211159" + "mAssetSupply": "102348064892531504754287396", + "LPTokenSupply": "7356738950840858500604101" }, { - "type": "swap_fp_to_mp", - "inputQty": "414725229830892653903872", - "outputIndex": 2, - "outputQty": "411652165757333876359934", - "swapFee": "0", - "redemptionFee": "165350348157248337135", + "type": "redeem", + "outputIndex": 1, + "inputQty": "26894896952049051631616", + "outputQty0": "27527055147137937721788", + "outputQty": "26867763756388621173128", + "swapFee1": "16136938171229430978", + "swapFee2": "16516233088282762633", "mpReserves": [ - "66400253001807638000796869", - "23121302330590919753611735", - "19556656325681433397307915" + "55887176981998070959005117", + "11975578435414862913970779", + "34659704415972716778507922" ], "fpReserves": [ - "9906355136166171229899651", - "16104578373364439896572541" + "3189959246949849065471222", + "4325608130855004844381948" ], - "mAssetSupply": "109005813735724377058624567", - "LPTokenSupply": "25749616206058346789211159" + "mAssetSupply": "102320554353617455099328241", + "LPTokenSupply": "7329845667582626571915582" }, { "type": "swap_fp_to_mp", - "inputQty": "86185225190536720154624", + "inputQty": "133501872636623776120832", "outputIndex": 0, - "outputQty": "86103701316385689515548", + "outputQty": "134097666548798284935751", "swapFee": "0", - "redemptionFee": "34350023829920000526", + "redemptionFee": "79911509891863078815", "mpReserves": [ - "66314149300491252311281321", - "23121302330590919753611735", - "19556656325681433397307915" + "55753079315449272674069366", + "11975578435414862913970779", + "34659704415972716778507922" ], "fpReserves": [ - "9820480076591371228583630", - "16190763598554976616727165" + "3056773397130077267446201", + "4459110003491628620502780" ], - "mAssetSupply": "108919973026173406977309072", - "LPTokenSupply": "25749616206058346789211159" + "mAssetSupply": "102187448415307575164382035", + "LPTokenSupply": "7329845667582626571915582" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1181168237464704778240", - "outputQty0": "1185740451081084956529", - "outputQty": "1176494033104211478729", + "inputQty": "19445642538734178304", + "outputQty0": "19403326669008115364", + "outputQty": "19439272059854556252", + "swapFee": "15162252241086599", "mpReserves": [ - "66314149300491252311281321", - "23121302330590919753611735", - "19557837493918898102086155" + "55753079315449272674069366", + "11975578435414862913970779", + "34659723861615255512686226" ], "fpReserves": [ - "9821665817042452313540159", - "16190763598554976616727165" + "3056792800456746275561565", + "4459090564219568765946528" ], - "mAssetSupply": "108921158766624488062265601", - "LPTokenSupply": "25750792700091451000689888" + "mAssetSupply": "102187467818634244172497399", + "LPTokenSupply": "7329845669098851796024241" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "27926498814634831642624", - "outputQty0": "27841260826700819285998", - "outputQty": "27920596320823968434282", - "swapFee": "22099144928952256816", + "inputQty": "89543847325782736896", + "outputQty0": "88882713090463655604", + "outputQty": "89047350797636638890", + "swapFee": "69455202093051151", "mpReserves": [ - "66342075799305887142923945", - "23121302330590919753611735", - "19557837493918898102086155" + "55753168859296598456806262", + "11975578435414862913970779", + "34659723861615255512686226" ], "fpReserves": [ - "9849507077869153132826157", - "16162843002234152648292883" + "3056881683169836739217169", + "4459001516868771129307638" ], - "mAssetSupply": "108949000027451188881551599", - "LPTokenSupply": "25750794910005943895915569" + "mAssetSupply": "102187556701347334636153003", + "LPTokenSupply": "7329845676044372005329356" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "993984757183482429440", - "outputQty0": "990949908621253082282", - "outputQty": "983196646502560642604", + "inputIndex": 1, + "inputQty": "20487851694315401216", + "outputQty0": "20977405270597466740", + "outputQty": "20490340621581697915", "mpReserves": [ - "66343069784063070625353385", - "23121302330590919753611735", - "19557837493918898102086155" + "55753168859296598456806262", + "11975598923266557229371995", + "34659723861615255512686226" ], "fpReserves": [ - "9850498027777774385908439", - "16162843002234152648292883" + "3056902660575107336683909", + "4459001516868771129307638" ], - "mAssetSupply": "108949990977359810134633881", - "LPTokenSupply": "25751778106652446456558173" + "mAssetSupply": "102187577678752605233619743", + "LPTokenSupply": "7329866166384993587027271" }, { - "type": "swap_fp_to_mp", - "inputQty": "115639017608274640896", - "outputIndex": 1, - "outputQty": "114903293313751443788", - "swapFee": "0", - "redemptionFee": "46088233090105073", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "5632661031474488320", + "outputQty0": "5767252169323602119", + "outputQty": "5777933374088426376", + "swapFee": "4506675920097834", "mpReserves": [ - "66343069784063070625353385", - "23121187427297606002167947", - "19557837493918898102086155" + "55753168859296598456806262", + "11975604555927588703860315", + "34659723861615255512686226" ], "fpReserves": [ - "9850382807195049123224900", - "16162958641251760922933779" + "3056908427827276660286028", + "4458995738935397040881262" ], - "mAssetSupply": "108949875802865317962055415", - "LPTokenSupply": "25751778106652446456558173" + "mAssetSupply": "102187583446004774557221862", + "LPTokenSupply": "7329866166835661179037054" }, { "type": "swap_fp_to_mp", - "inputQty": "48292280307866004357120", - "outputIndex": 1, - "outputQty": "47983017457510069909312", + "inputQty": "394512288233390538752", + "outputIndex": 2, + "outputQty": "394089102902984900723", "swapFee": "0", - "redemptionFee": "19246346212888110031", + "redemptionFee": "236080577058965058", "mpReserves": [ - "66343069784063070625353385", - "23073204409840095932258635", - "19557837493918898102086155" + "55753168859296598456806262", + "11975604555927588703860315", + "34659329772512352527785503" ], "fpReserves": [ - "9802266941662828848147173", - "16211250921559626927290899" + "3056514960198845051854521", + "4459390251223630431420014" ], - "mAssetSupply": "108901779183679310575087719", - "LPTokenSupply": "25751778106652446456558173" + "mAssetSupply": "102187190214456920007755413", + "LPTokenSupply": "7329866166835661179037054" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "283937121795388932096", - "outputQty0": "285036491276101184383", - "outputQty": "282818474116892197095", + "inputQty": "3981274609735174656", + "outputQty0": "3972611388504589050", + "outputQty": "3979975531242919987", + "swapFee": "3104301558539840", "mpReserves": [ - "66343069784063070625353385", - "23073204409840095932258635", - "19558121431040693491018251" + "55753168859296598456806262", + "11975604555927588703860315", + "34659333753786962262960159" ], "fpReserves": [ - "9802551978154104949331556", - "16211250921559626927290899" + "3056518932810233556443571", + "4459386271248099188500027" ], - "mAssetSupply": "108902064220170586676272102", - "LPTokenSupply": "25752060925126563348755268" + "mAssetSupply": "102187194187068308512344463", + "LPTokenSupply": "7329866167146091334891038" }, { "type": "swap_fp_to_mp", - "inputQty": "932129423436383518720", + "inputQty": "3330273193160632958976", "outputIndex": 2, - "outputQty": "924739523934397758435", + "outputQty": "3326672541421351379908", "swapFee": "0", - "redemptionFee": "371476647574864575", + "redemptionFee": "1992856829838487814", "mpReserves": [ - "66343069784063070625353385", - "23073204409840095932258635", - "19557196691516759093259816" + "55753168859296598456806262", + "11975604555927588703860315", + "34656007081245540911580251" ], "fpReserves": [ - "9801623286535167787891768", - "16212183050983063310809619" + "3053197504760502743420096", + "4462716544441259821459003" ], - "mAssetSupply": "108901135900028297089696889", - "LPTokenSupply": "25752060925126563348755268" + "mAssetSupply": "102183874751875407537808802", + "LPTokenSupply": "7329866167146091334891038" }, { - "type": "swap_fp_to_mp", - "inputQty": "1447073365712858775552", - "outputIndex": 0, - "outputQty": "1445577331657544232879", - "swapFee": "0", - "redemptionFee": "576693563207237400", + "type": "mint", + "inputIndex": 2, + "inputQty": "2234625397372502671360", + "outputQty0": "2229764177210242887470", + "outputQty": "2178009298640654694544", "mpReserves": [ - "66341624206731413081120506", - "23073204409840095932258635", - "19557196691516759093259816" + "55753168859296598456806262", + "11975604555927588703860315", + "34658241706642913414251611" ], "fpReserves": [ - "9800181552627149694391605", - "16213630124348776169585171" + "3055427268937712986307566", + "4462716544441259821459003" ], - "mAssetSupply": "108899694742813842203434126", - "LPTokenSupply": "25752060925126563348755268" + "mAssetSupply": "102186104516052617780696272", + "LPTokenSupply": "7332044176444731989585582" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "1990391173775765760", "outputIndex": 1, - "inputQty": "912331965771647908052992", - "outputQty0": "918676194988821074020331", - "outputQty": "916001204642561879895175", - "swapFee1": "547399179462988744831", - "swapFee2": "367470477995528429608", + "outputQty": "1937613092544848535", + "swapFee": "0", + "redemptionFee": "1191061088627959", "mpReserves": [ - "66341624206731413081120506", - "22157203205197534052363460", - "19557196691516759093259816" + "55753168859296598456806262", + "11975602618314496159011780", + "34658241706642913414251611" ], "fpReserves": [ - "8881505357638328620371274", - "16213630124348776169585171" + "3055425283835898606374958", + "4462718534832433597224763" ], - "mAssetSupply": "107981386018303016657843403", - "LPTokenSupply": "24839783699272861739576759" + "mAssetSupply": "102186102532141864489391623", + "LPTokenSupply": "7332044176444731989585582" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "78705543689841756078080", - "outputQty0": "79228069429363566150259", - "outputQty": "79446048715859810014723", - "swapFee1": "47223326213905053646", - "swapFee2": "31691227771745426460", + "outputIndex": 2, + "inputQty": "95916772631958723231744", + "outputQty0": "98129725683397786507496", + "outputQty": "98283402166257878675430", + "swapFee1": "57550063579175233939", + "swapFee2": "58877835410038671904", "mpReserves": [ - "66262178158015553271105783", - "22157203205197534052363460", - "19557196691516759093259816" + "55753168859296598456806262", + "11975602618314496159011780", + "34559958304476655535576181" ], "fpReserves": [ - "8802277288208965054221015", - "16213630124348776169585171" + "2957295558152500819867462", + "4462718534832433597224763" ], - "mAssetSupply": "107902189640101424837119604", - "LPTokenSupply": "24761082877915641374004043" + "mAssetSupply": "102088031684293876741556031", + "LPTokenSupply": "7236133158819131183877231" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "474434608510542348288", - "outputQty0": "476246754152612489756", - "outputQty": "472834726458383746718", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "17720817509088", + "outputQty0": "17589838116136", + "outputQty": "17627176868808", + "swapFee": "13747259567", "mpReserves": [ - "66262178158015553271105783", - "22157203205197534052363460", - "19557671126125269635608104" + "55753168859314319274315350", + "11975602618314496159011780", + "34559958304476655535576181" ], "fpReserves": [ - "8802753534963117666710771", - "16213630124348776169585171" + "2957295558170090657983598", + "4462718534814806420355955" ], - "mAssetSupply": "107902665886855577449609360", - "LPTokenSupply": "24761555712642099757750761" + "mAssetSupply": "102088031684311466579672167", + "LPTokenSupply": "7236133158819132558603187" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "265028027339256496128", - "outputQty0": "264195893092530017538", - "outputQty": "262303013563659014778", + "inputQty": "9978375659783899316224", + "outputQty0": "9904613685246892921650", + "outputQty": "9925415693377268855167", + "swapFee": "7740843940735730821", "mpReserves": [ - "66262443186042892527601911", - "22157203205197534052363460", - "19557671126125269635608104" + "55763147234974103173631574", + "11975602618314496159011780", + "34559958304476655535576181" ], "fpReserves": [ - "8803017730856210196728309", - "16213630124348776169585171" + "2967200171855337550905248", + "4452793119121429151500788" ], - "mAssetSupply": "107902930082748669979626898", - "LPTokenSupply": "24761818015655663416765539" + "mAssetSupply": "102097936297996713472593817", + "LPTokenSupply": "7236133932903526632176269" }, { "type": "swap_fp_to_mp", - "inputQty": "318985114834563636396032", + "inputQty": "1098978424070578139824128", "outputIndex": 2, - "outputQty": "316037900916149654654158", + "outputQty": "1093570944475243249553801", "swapFee": "0", - "redemptionFee": "126958431903799432807", + "redemptionFee": "655222937829376957529", "mpReserves": [ - "66262443186042892527601911", - "22157203205197534052363460", - "19241633225209119980953946" + "55763147234974103173631574", + "11975602618314496159011780", + "33466387360001412286022380" ], "fpReserves": [ - "8485621651096711614710088", - "16532615239183339805981203" + "1875161942139709288355409", + "5551771543192007291324916" ], - "mAssetSupply": "107585660961421075197041484", - "LPTokenSupply": "24761818015655663416765539" + "mAssetSupply": "101006553291218914587001507", + "LPTokenSupply": "7236133932903526632176269" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "6503388762950136233984", - "outputQty0": "6482706237027334535877", - "outputQty": "6511833756290053030192", - "swapFee": "5150954156986963895", + "type": "redeem", + "outputIndex": 1, + "inputQty": "173397431255197185736704", + "outputQty0": "176216083213438521912012", + "outputQty": "172019737499712651305687", + "swapFee1": "104038458753118311442", + "swapFee2": "105729649928063113147", "mpReserves": [ - "66268946574805842663835895", - "22157203205197534052363460", - "19241633225209119980953946" + "55763147234974103173631574", + "11803582880814783507706093", + "33466387360001412286022380" ], "fpReserves": [ - "8492104357333738949245965", - "16526103405427049752951011" + "1698945858926270766443397", + "5551771543192007291324916" ], - "mAssetSupply": "107592143667658102531577361", - "LPTokenSupply": "24761818530751079115461928" + "mAssetSupply": "100830442937655404128202642", + "LPTokenSupply": "7062746905494204758270709" }, { "type": "swap_fp_to_mp", - "inputQty": "1793770207902933", - "outputIndex": 2, - "outputQty": "1776555161179042", + "inputQty": "497982266224852926464", + "outputIndex": 0, + "outputQty": "494732333610484019336", "swapFee": "0", - "redemptionFee": "713731652645", + "redemptionFee": "294762689255936881", "mpReserves": [ - "66268946574805842663835895", - "22157203205197534052363460", - "19241633223432564819774904" + "55762652502640492689612238", + "11803582880814783507706093", + "33466387360001412286022380" ], "fpReserves": [ - "8492104355549409817632228", - "16526103407220819960853944" + "1698454587777510871640093", + "5552269525458232144251380" ], - "mAssetSupply": "107592143665874487131616269", - "LPTokenSupply": "24761818530751079115461928" + "mAssetSupply": "100829951961269333489336219", + "LPTokenSupply": "7062746905494204758270709" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1029997884967716257792", - "outputQty0": "1026721938365494258927", - "outputQty": "1031327696580083256042", - "swapFee": "815795928581989630", + "type": "swap_fp_to_mp", + "inputQty": "9078515214077594173440", + "outputIndex": 1, + "outputQty": "8738994480653432270537", + "swapFee": "0", + "redemptionFee": "5373240748283882677", "mpReserves": [ - "66269976572690810380093687", - "22157203205197534052363460", - "19241633223432564819774904" + "55762652502640492689612238", + "11794843886334130075435556", + "33466387360001412286022380" ], "fpReserves": [ - "8493131077487775311891155", - "16525072079524239877597902" + "1689499186530371067177418", + "5561348040672309738424820" ], - "mAssetSupply": "107593170387812852625875196", - "LPTokenSupply": "24761818612330671973660891" + "mAssetSupply": "100821001933262941968756221", + "LPTokenSupply": "7062746905494204758270709" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "3554402603467075584", - "outputQty0": "3543097562939782251", - "outputQty": "3558987987826840561", - "swapFee": "2815213991024764", + "type": "swap_fp_to_mp", + "inputQty": "487609270165316632576", + "outputIndex": 2, + "outputQty": "481591721450423252023", + "swapFee": "0", + "redemptionFee": "288573270825911824", "mpReserves": [ - "66269980127093413847169271", - "22157203205197534052363460", - "19241633223432564819774904" + "55762652502640492689612238", + "11794843886334130075435556", + "33465905768279961862770357" ], "fpReserves": [ - "8493134620585338251673406", - "16525068520536252050757341" + "1689018231078994547469348", + "5561835649942475055057396" ], - "mAssetSupply": "107593173930910415565657447", - "LPTokenSupply": "24761818612612193372763367" + "mAssetSupply": "100820521266384836274959975", + "LPTokenSupply": "7062746905494204758270709" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "32154137229883633664", - "outputQty0": "32354738017984606466", - "outputQty": "32444989780528161238", - "swapFee1": "19292482337930180", - "swapFee2": "12941895207193842", + "type": "mint", + "inputIndex": 2, + "inputQty": "14617270927093500215296", + "outputQty0": "14589170868364977813327", + "outputQty": "14359942360700495368864", "mpReserves": [ - "66269947682103633319008033", - "22157203205197534052363460", - "19241633223432564819774904" + "55762652502640492689612238", + "11794843886334130075435556", + "33480523039207055362985653" ], "fpReserves": [ - "8493102265847320267066940", - "16525068520536252050757341" + "1703607401947359525282675", + "5561835649942475055057396" ], - "mAssetSupply": "107593141589114292788244823", - "LPTokenSupply": "24761786460404211722922721" + "mAssetSupply": "100835110437253201252773302", + "LPTokenSupply": "7077106847854905253639573" }, { "type": "swap_fp_to_mp", - "inputQty": "129283756829882181484544", + "inputQty": "589820847061990016", "outputIndex": 0, - "outputQty": "128945616100597743292492", + "outputQty": "585989404791376846", "swapFee": "0", - "redemptionFee": "51435008821079013151", + "redemptionFee": "349132346346596", "mpReserves": [ - "66141002066003035575715541", - "22157203205197534052363460", - "19241633223432564819774904" + "55762651916651087898235392", + "11794843886334130075435556", + "33480523039207055362985653" ], "fpReserves": [ - "8364514743794622734187603", - "16654352277366134232241885" + "1703606820060115614288176", + "5561836239763322117047412" ], - "mAssetSupply": "107464605502070416334378637", - "LPTokenSupply": "24761786460404211722922721" + "mAssetSupply": "100835109855715089688125399", + "LPTokenSupply": "7077106847854905253639573" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "56437609520767025807360", - "outputQty0": "56585764166660480184744", - "outputQty": "56850628703117072275923", - "swapFee": "44967308064099433670", + "inputIndex": 2, + "inputQty": "46267297794371216211968", + "outputQty0": "46177956221301929407946", + "outputQty": "46751232473165342224921", + "swapFee": "36350578105568527867", "mpReserves": [ - "66141002066003035575715541", - "22213640814718301078170820", - "19241633223432564819774904" + "55762651916651087898235392", + "11794843886334130075435556", + "33526790337001426579197621" ], "fpReserves": [ - "8421100507961283214372347", - "16597501648663017159965962" + "1749784776281417543696122", + "5515085007290156774822491" ], - "mAssetSupply": "107521191266237076814563381", - "LPTokenSupply": "24761790957135018132866088" + "mAssetSupply": "100881287811936391617533345", + "LPTokenSupply": "7077110482912715810492359" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "9158419259379270", - "outputQty0": "9194687841702057", - "outputQty": "9133023800626885", + "type": "redeem", + "outputIndex": 1, + "inputQty": "4005641901049366183936", + "outputQty0": "4069860130984837565345", + "outputQty": "3971317445131345257480", + "swapFee1": "2403385140629619710", + "swapFee2": "2441916078590902539", "mpReserves": [ - "66141002066003035575715541", - "22213640814718301078170820", - "19241633232590984079154174" + "55762651916651087898235392", + "11790872568888998730178076", + "33526790337001426579197621" ], "fpReserves": [ - "8421100517155971056074404", - "16597501648663017159965962" + "1745714916150432706130777", + "5515085007290156774822491" ], - "mAssetSupply": "107521191275431764656265438", - "LPTokenSupply": "24761790966268041933492973" + "mAssetSupply": "100877220393721485370870539", + "LPTokenSupply": "7073105081350180507270394" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "500833765968073216", - "outputQty0": "502817135540512907", - "outputQty": "505142617270273266", - "swapFee": "399555999664828", + "inputIndex": 1, + "inputQty": "11179071898081873920", + "outputQty0": "11449682950502352403", + "outputQty": "11587857837160920612", + "swapFee": "9009977887800191", "mpReserves": [ - "66141002066003035575715541", - "22213640814718301078170820", - "19241633733424750047227390" + "55762651916651087898235392", + "11790883747960896812051996", + "33526790337001426579197621" ], "fpReserves": [ - "8421101019973106596587311", - "16597501143520399889692696" + "1745726365833383208483180", + "5515073419432319613901879" ], - "mAssetSupply": "107521191778248900196778345", - "LPTokenSupply": "24761790966307997533459455" + "mAssetSupply": "100877231843404435873222942", + "LPTokenSupply": "7073105082251178296050413" }, { - "type": "swap_fp_to_mp", - "inputQty": "1640378212650683990016", - "outputIndex": 1, - "outputQty": "1626610072294909975664", - "swapFee": "0", - "redemptionFee": "652607072506428990", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "5737330524701841162240", + "outputQty0": "5693753817797442445918", + "outputQty": "5762192199216686853693", + "swapFee": "4480403184954821467", "mpReserves": [ - "66141002066003035575715541", - "22212014204646006168195156", - "19241633733424750047227390" + "55768389247175789739397632", + "11790883747960896812051996", + "33526790337001426579197621" ], "fpReserves": [ - "8419469502291840524111853", - "16599141521733050573682712" + "1751420119651180650929098", + "5509311227233102927048186" ], - "mAssetSupply": "107519560913174706630731877", - "LPTokenSupply": "24761790966307997533459455" + "mAssetSupply": "100882925597222233315668860", + "LPTokenSupply": "7073105530291496791532559" }, { - "type": "swap_fp_to_mp", - "inputQty": "2008508829316002611200", - "outputIndex": 2, - "outputQty": "1988976232816797532695", - "swapFee": "0", - "redemptionFee": "799061097325349218", + "type": "redeem", + "outputIndex": 1, + "inputQty": "791781213788340884602880", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "2652195942159806889984", + "outputQty0": "2694824823068633816245", + "outputQty": "2629531082745325475571", + "swapFee1": "1591317565295884133", + "swapFee2": "1616894893841180289", "mpReserves": [ - "66141002066003035575715541", - "22212014204646006168195156", - "19239644757191933249694695" + "55768389247175789739397632", + "11788254216878151486576425", + "33526790337001426579197621" ], "fpReserves": [ - "8417471849548527151064369", - "16601150030562366576293912" + "1748725294828112017112853", + "5509311227233102927048186" ], - "mAssetSupply": "107517564059492490583033611", - "LPTokenSupply": "24761790966307997533459455" + "mAssetSupply": "100880232389294058523032904", + "LPTokenSupply": "7070453493481093514230988" }, { - "type": "swap_fp_to_mp", - "inputQty": "12416809180395250647040", - "outputIndex": 1, - "outputQty": "12312347103908860687765", - "swapFee": "0", - "redemptionFee": "4939808868450728043", + "type": "mint", + "inputIndex": 0, + "inputQty": "284483566714260946944", + "outputQty0": "282322191475053990205", + "outputQty": "277692607834752478619", "mpReserves": [ - "66141002066003035575715541", - "22199701857542097307507391", - "19239644757191933249694695" + "55768673730742504000344576", + "11788254216878151486576425", + "33526790337001426579197621" ], "fpReserves": [ - "8405122327377400330955196", - "16613566839742761826940952" + "1749007617019587071103058", + "5509311227233102927048186" ], - "mAssetSupply": "107505219477130232213652481", - "LPTokenSupply": "24761790966307997533459455" + "mAssetSupply": "100880514711485533577023109", + "LPTokenSupply": "7070731186088928266709607" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "19768290804258530394112", - "outputQty0": "19705662789833390106278", - "outputQty": "19797037141107495594462", - "swapFee": "15658997604566169629", + "inputQty": "48624286156205645824", + "outputQty0": "48254859689203834989", + "outputQty": "47463490853514840953", "mpReserves": [ - "66160770356807294106109653", - "22199701857542097307507391", - "19239644757191933249694695" + "55768722355028660205990400", + "11788254216878151486576425", + "33526790337001426579197621" ], "fpReserves": [ - "8424827990167233721061474", - "16593769802601654331346490" + "1749055871879276274938047", + "5509311227233102927048186" ], - "mAssetSupply": "107524925139920065603758759", - "LPTokenSupply": "24761792532207757990076417" + "mAssetSupply": "100880562966345222780858098", + "LPTokenSupply": "7070778649579781781550560" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "167004941080082658623488", - "outputQty0": "168020245332367347245388", - "outputQty": "167283081272986822177936", - "swapFee1": "100202964648049595174", - "swapFee2": "67208098132946938898", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "50686079809854436802560", + "outputQty0": "50587406825684615709048", + "outputQty": "51173627752918713601470", + "swapFee": "39796899742322810360", "mpReserves": [ - "66160770356807294106109653", - "22199701857542097307507391", - "19072361675918946427516759" + "55768722355028660205990400", + "11788254216878151486576425", + "33577476416811281016000181" ], "fpReserves": [ - "8256807744834866373816086", - "16593769802601654331346490" + "1799643278704960890647095", + "5458137599480184213446716" ], - "mAssetSupply": "107356972102685831203452269", - "LPTokenSupply": "24594797611424140136412446" + "mAssetSupply": "100931150373170907396567146", + "LPTokenSupply": "7070782629269756013831596" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "2149093225131767234560", "outputIndex": 0, - "inputQty": "1258756904373388312576", - "outputQty0": "1266319064249786308997", - "outputQty": "1269864122636629978808", - "swapFee1": "755254142624032987", - "swapFee2": "506527625699914523", + "outputQty": "2138549069913305439198", + "swapFee": "0", + "redemptionFee": "1274151090896434030", "mpReserves": [ - "66159500492684657476130845", - "22199701857542097307507391", - "19072361675918946427516759" + "55766583805958746900551202", + "11788254216878151486576425", + "33577476416811281016000181" ], "fpReserves": [ - "8255541425770616587507089", - "16593769802601654331346490" + "1797519693553466833929972", + "5460286692705315980681276" ], - "mAssetSupply": "107355706290149207117057795", - "LPTokenSupply": "24593538930045181010503168" + "mAssetSupply": "100929028062170504236284053", + "LPTokenSupply": "7070782629269756013831596" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "996178427603227466792960", - "outputQty0": "999969248746794338164617", - "outputQty": "1003881589795028855839633", - "swapFee": "794396958372701652682", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1206914282667700480", + "outputQty0": "1227023417706470693", + "outputQty": "1228688143083299082", + "swapFee1": "724148569600620", + "swapFee2": "736214050623882", "mpReserves": [ - "66159500492684657476130845", - "22199701857542097307507391", - "20068540103522173894309719" + "55766583805958746900551202", + "11788254216878151486576425", + "33577475188123137932701099" ], "fpReserves": [ - "9255510674517410925671706", - "15589888212806625475506857" + "1797518466530049127459279", + "5460286692705315980681276" ], - "mAssetSupply": "108355675538896001455222412", - "LPTokenSupply": "24593618369741018280668436" + "mAssetSupply": "100929026835883300580437242", + "LPTokenSupply": "7070781422427888203091178" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "357491877386447233220608", - "outputQty0": "360022052424033180225087", - "outputQty": "360980422839961144765347", - "swapFee1": "214495126431868339932", - "swapFee2": "144008820969613272090", + "outputIndex": 1, + "inputQty": "13635321234273561739264", + "outputQty0": "13861670350677508773366", + "outputQty": "13525117603594474939560", + "swapFee1": "8181192740564137043", + "swapFee2": "8317002210406505264", "mpReserves": [ - "65798520069844696331365498", - "22199701857542097307507391", - "20068540103522173894309719" + "55766583805958746900551202", + "11774729099274557011636865", + "33577475188123137932701099" ], "fpReserves": [ - "8895488622093377745446619", - "15589888212806625475506857" + "1783656796179371618685913", + "5460286692705315980681276" ], - "mAssetSupply": "107995797495292937888269415", - "LPTokenSupply": "24236147941867214234281821" + "mAssetSupply": "100915173482534833478169140", + "LPTokenSupply": "7057146919312888697765618" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "575973809982058235166720", + "outputIndex": 0, + "hardLimitError": true }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1034922740115065962233856", - "outputQty0": "1037468563573263149348011", - "outputQty": "1040195188888971656330735", - "swapFee": "823474758732976758359", + "inputIndex": 2, + "inputQty": "34411420726472239742976", + "outputQty0": "34343827067150838248167", + "outputQty": "34725557118353588812278", + "swapFee": "27007789292497761272", "mpReserves": [ - "65798520069844696331365498", - "23234624597657163269741247", - "20068540103522173894309719" + "55766583805958746900551202", + "11774729099274557011636865", + "33611886608849610172444075" ], "fpReserves": [ - "9932957185666640894794630", - "14549693023917653819176122" + "1818000623246522456934080", + "5425561135586962391868998" ], - "mAssetSupply": "109033266058866201037617426", - "LPTokenSupply": "24236230289343087531957656" + "mAssetSupply": "100949517309601984316417307", + "LPTokenSupply": "7057149620091817947541745" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "463178139851135320064", - "outputQty0": "464244348438409820325", - "outputQty": "465119308659296074316", - "swapFee": "368243799278185935", + "type": "mint", + "inputIndex": 0, + "inputQty": "325131889835971904", + "outputQty0": "322661355327734442", + "outputQty": "317095654792307516", "mpReserves": [ - "65798520069844696331365498", - "23235087775797014405061311", - "20068540103522173894309719" + "55766584131090636736523106", + "11774729099274557011636865", + "33611886608849610172444075" ], "fpReserves": [ - "9933421430015079304614955", - "14549227904608994523101806" + "1818000945907877784668522", + "5425561135586962391868998" ], - "mAssetSupply": "109033730303214639447437751", - "LPTokenSupply": "24236230326167467459776249" + "mAssetSupply": "100949517632263339644151749", + "LPTokenSupply": "7057149937187472739849261" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "229295351797801994420224", - "outputQty0": "229815531549828281255289", - "outputQty": "230213778023834996207459", - "swapFee": "182282518385477750191", + "inputIndex": 2, + "inputQty": "3370054580923478835200", + "outputQty0": "3363416948533140031567", + "outputQty": "3399834769113194233376", + "swapFee": "2644283402018076859", "mpReserves": [ - "65798520069844696331365498", - "23464383127594816399481535", - "20068540103522173894309719" + "55766584131090636736523106", + "11774729099274557011636865", + "33615256663430533651279275" ], "fpReserves": [ - "10163236961564907585870244", - "14319014126585159526894347" + "1821364362856410924700089", + "5422161300817849197635622" ], - "mAssetSupply": "109263545834764467728693040", - "LPTokenSupply": "24236248554419306007551268" + "mAssetSupply": "100952881049211872784183316", + "LPTokenSupply": "7057150201615812941656946" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "3925685141301818294272", - "outputQty0": "3957632909697874240165", - "outputQty": "3941883816173263691671", - "swapFee1": "2355411084781090976", - "swapFee2": "1583053163879149696", + "outputIndex": 1, + "inputQty": "224677114987363390455808", + "outputQty0": "228248522986980756346908", + "outputQty": "222594497471337162815604", + "swapFee1": "134806268992418034273", + "swapFee2": "136949113792188453808", "mpReserves": [ - "65798520069844696331365498", - "23464383127594816399481535", - "20064598219706000630618048" + "55766584131090636736523106", + "11552134601803219848821261", + "33615256663430533651279275" ], "fpReserves": [ - "10159279328655209711630079", - "14319014126585159526894347" + "1593115839869430168353181", + "5422161300817849197635622" ], - "mAssetSupply": "109259589784907933733602571", - "LPTokenSupply": "24232323104819112667366093" + "mAssetSupply": "100724769475338684216290216", + "LPTokenSupply": "6832486567255348793004565" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "8793570086495521341440", - "outputQty0": "8767842612893744183576", - "outputQty": "8781702613004693984501", - "swapFee": "6953469235603277700", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1774461956130431303680", + "outputQty0": "1800497075563565479477", + "outputQty": "1813459625984426581737", + "swapFee1": "1064677173678258782", + "swapFee2": "1080298245338139287", "mpReserves": [ - "65807313639931191852706938", - "23464383127594816399481535", - "20064598219706000630618048" + "55764770671464652309941369", + "11552134601803219848821261", + "33615256663430533651279275" ], "fpReserves": [ - "10168047171268103455813655", - "14310232423972154832909846" + "1591315342793866602873704", + "5422161300817849197635622" ], - "mAssetSupply": "109268357627520827477786147", - "LPTokenSupply": "24232323800166036227693863" + "mAssetSupply": "100722970058561365988950026", + "LPTokenSupply": "6830712211766935729526763" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "129318312301658013696", - "outputQty0": "130371507108207150896", - "outputQty": "130701792088564979046", - "swapFee1": "77590987380994808", - "swapFee2": "52148602843282860", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "14483644081579751374848", + "outputQty0": "14371469986758923640102", + "outputQty": "14568688656751628223278", + "swapFee": "11323272669605100246", "mpReserves": [ - "65807182938139103287727892", - "23464383127594816399481535", - "20064598219706000630618048" + "55779254315546232061316217", + "11552134601803219848821261", + "33615256663430533651279275" ], "fpReserves": [ - "10167916799760995248662759", - "14310232423972154832909846" + "1605686812780625526513806", + "5407592612161097569412344" ], - "mAssetSupply": "109268227308162322113918111", - "LPTokenSupply": "24232194489612833307779647" + "mAssetSupply": "100737341528548124912590128", + "LPTokenSupply": "6830713344094202690036787" }, { - "type": "swap_fp_to_mp", - "inputQty": "9861709094985991716864", - "outputIndex": 0, - "outputQty": "9863180990243626487653", - "swapFee": "0", - "redemptionFee": "3935303951716545824", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "140809377551603357188096", + "outputQty0": "140516628065676578255287", + "outputQty": "142240768230002142922451", + "swapFee": "110613417123504181197", "mpReserves": [ - "65797319757148859661240239", - "23464383127594816399481535", - "20064598219706000630618048" + "55779254315546232061316217", + "11552134601803219848821261", + "33756066040982137008467371" ], "fpReserves": [ - "10158078539881703884101877", - "14320094133067140824626710" + "1746203440846302104769093", + "5265351843931095426489893" ], - "mAssetSupply": "109258392983586982465903053", - "LPTokenSupply": "24232194489612833307779647" + "mAssetSupply": "100877858156613801490845415", + "LPTokenSupply": "6830724405435915040454906" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "6410443869127943651328", - "outputQty0": "6433476891980492201503", - "outputQty": "6377713901924695620197", + "inputIndex": 0, + "inputQty": "191878706812037464064", + "outputQty0": "190394667371991501754", + "outputQty": "187133238949708869295", "mpReserves": [ - "65797319757148859661240239", - "23464383127594816399481535", - "20071008663575128574269376" + "55779446194253044098780281", + "11552134601803219848821261", + "33756066040982137008467371" ], "fpReserves": [ - "10164512016773684376303380", - "14320094133067140824626710" + "1746393835513674096270847", + "5265351843931095426489893" ], - "mAssetSupply": "109264826460478962958104556", - "LPTokenSupply": "24238572203514758003399844" + "mAssetSupply": "100878048551281173482347169", + "LPTokenSupply": "6830911538674864749324201" }, { - "type": "swap_fp_to_mp", - "inputQty": "2996540284919864320", + "type": "redeem", "outputIndex": 2, - "outputQty": "2977520670580313423", - "swapFee": "0", - "redemptionFee": "1195764258367379", + "inputQty": "112877963583593860038656", + "outputQty0": "114714769876139738747171", + "outputQty": "114885212568337999277658", + "swapFee1": "67726778150156316023", + "swapFee2": "68828861925683843248", "mpReserves": [ - "65797319757148859661240239", - "23464383127594816399481535", - "20071005686054457993955953" + "55779446194253044098780281", + "11552134601803219848821261", + "33641180828413799009189713" ], "fpReserves": [ - "10164509027363038457854318", - "14320097129607425744491030" + "1631679065637534357523676", + "5265351843931095426489893" ], - "mAssetSupply": "109264823472264081298022873", - "LPTokenSupply": "24238572203514758003399844" + "mAssetSupply": "100763402610266959427443246", + "LPTokenSupply": "6718040347769085904917147" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "29971017871988476608512", - "outputQty0": "30037894381168340533160", - "outputQty": "30084867618116363357066", - "swapFee": "23821839817569761461", + "type": "redeem", + "outputIndex": 0, + "inputQty": "11883119905756099379200", + "outputQty0": "12068892179939653065448", + "outputQty": "12155771981859239875416", + "swapFee1": "7129871943453659627", + "swapFee2": "7241335307963791839", "mpReserves": [ - "65797319757148859661240239", - "23494354145466804876090047", - "20071005686054457993955953" + "55767290422271184858904865", + "11552134601803219848821261", + "33641180828413799009189713" ], "fpReserves": [ - "10194546921744206798387478", - "14290012261989309381133964" + "1619610173457594704458228", + "5265351843931095426489893" ], - "mAssetSupply": "109294861366645249638556033", - "LPTokenSupply": "24238574585698739760375990" + "mAssetSupply": "100751340959422327738169637", + "LPTokenSupply": "6706157940850524150903909" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "207872585229735324286976", - "outputQty0": "208610168854595977403487", - "outputQty": "206787679388989202121114", + "inputIndex": 1, + "inputQty": "34340964427220538884096", + "outputQty0": "35206468303842713913734", + "outputQty": "34639466386699550616713", "mpReserves": [ - "65797319757148859661240239", - "23494354145466804876090047", - "20278878271284193318242929" + "55767290422271184858904865", + "11586475566230440387705357", + "33641180828413799009189713" ], "fpReserves": [ - "10403157090598802775790965", - "14290012261989309381133964" + "1654816641761437418371962", + "5265351843931095426489893" ], - "mAssetSupply": "109503471535499845615959520", - "LPTokenSupply": "24445362265087728962497104" + "mAssetSupply": "100786547427726170452083371", + "LPTokenSupply": "6740797407237223701520622" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "28679343171091365888", - "outputQty0": "28916015268872686206", - "outputQty": "28803526417710203548", - "swapFee1": "17207605902654819", - "swapFee2": "11566406107549074", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "167336711031537123983360", + "outputQty0": "171481056919866353336571", + "outputQty": "173336834934516846036118", + "swapFee": "134842798569907612239", "mpReserves": [ - "65797319757148859661240239", - "23494354145466804876090047", - "20278849467757775608039381" + "55767290422271184858904865", + "11753812277261977511688717", + "33641180828413799009189713" ], "fpReserves": [ - "10403128174583533903104759", - "14290012261989309381133964" + "1826297698681303771708533", + "5092015008996578580453775" ], - "mAssetSupply": "109503442631050982850822388", - "LPTokenSupply": "24445333587465318461396697" + "mAssetSupply": "100958028484646036805419942", + "LPTokenSupply": "6740810891517080692281845" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "89906924585417162358784", - "outputQty0": "90647151038892206677029", - "outputQty": "90292788637919184046183", - "swapFee1": "53944154751250297415", - "swapFee2": "36258860415556882670", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "19250578777324188", + "outputQty0": "19212354242393371", + "outputQty": "19395674200108242", + "swapFee": "15089311766324", "mpReserves": [ - "65797319757148859661240239", - "23494354145466804876090047", - "20188556679119856423993198" + "55767290422271184858904865", + "11753812277261977511688717", + "33641180847664377786513901" ], "fpReserves": [ - "10312481023544641696427730", - "14290012261989309381133964" + "1826297717893658014101904", + "5092014989600904380345533" ], - "mAssetSupply": "109412831738872506201028029", - "LPTokenSupply": "24355432057295376424067654" + "mAssetSupply": "100958028503858391047813313", + "LPTokenSupply": "6740810891518589623458477" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "4142336356927069487104", - "outputQty0": "4176366293589641604118", - "outputQty": "4159956233884510730796", - "swapFee1": "2485401814156241692", - "swapFee2": "1670546517435856641", + "type": "swap_fp_to_mp", + "inputQty": "15689281705396418560", + "outputIndex": 0, + "outputQty": "15638242896167903825", + "swapFee": "0", + "redemptionFee": "9317135178974788", "mpReserves": [ - "65797319757148859661240239", - "23494354145466804876090047", - "20184396722885971913262402" + "55767274784028288691001040", + "11753812277261977511688717", + "33641180847664377786513901" ], "fpReserves": [ - "10308304657251052054823612", - "14290012261989309381133964" + "1826282189335026389454299", + "5092030678882609776764093" ], - "mAssetSupply": "109408657043125433995280552", - "LPTokenSupply": "24351289969478630770204719" + "mAssetSupply": "100958012984616894602140496", + "LPTokenSupply": "6740810891518589623458477" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "205959208596696299732992", - "outputQty0": "205358678727267401521665", - "outputQty": "203554594072295694565761", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "44189991739412900216832", + "outputQty0": "44101972617834411783054", + "outputQty": "44509851490490687640492", + "swapFee": "34632107756191243919", "mpReserves": [ - "66003278965745555960973231", - "23494354145466804876090047", - "20184396722885971913262402" + "55767274784028288691001040", + "11753812277261977511688717", + "33685370839403790686730733" ], "fpReserves": [ - "10513663335978319456345277", - "14290012261989309381133964" + "1870384161952860801237353", + "5047520827392119089123601" ], - "mAssetSupply": "109614015721852701396802217", - "LPTokenSupply": "24554844563550926464770480" + "mAssetSupply": "101002114957234729013923550", + "LPTokenSupply": "6740814354729365242582868" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "102295336162795", - "outputQty0": "102660289419718", - "outputQty": "102795092318254", - "swapFee": "81403290272", + "inputIndex": 0, + "inputQty": "207817250327158652928", + "outputQty0": "206236613656266644303", + "outputQty": "208084567509014666154", + "swapFee": "161908577215649396", "mpReserves": [ - "66003278965745555960973231", - "23494354145466804876090047", - "20184396722988267249425197" + "55767482601278615849653968", + "11753812277261977511688717", + "33685370839403790686730733" ], "fpReserves": [ - "10513663336080979745764995", - "14290012261886514288815710" + "1870590398566517067881656", + "5047312742824610074457447" ], - "mAssetSupply": "109614015721955361686221935", - "LPTokenSupply": "24554844563550934605099507" + "mAssetSupply": "101002321193848385280567853", + "LPTokenSupply": "6740814370920222964147807" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "3094820304733888512", "outputIndex": 0, - "inputQty": "759576176594957293846528", - "outputQty0": "765755130617327427013348", - "outputQty": "767672995691389230469683", - "swapFee1": "455745705956974376307", - "swapFee2": "306302052246930970805", + "outputQty": "3086522837530544157", + "swapFee": "0", + "redemptionFee": "1838931560497385", "mpReserves": [ - "65235605970054166730503548", - "23494354145466804876090047", - "20184396722988267249425197" + "55767479514755778319109811", + "11753812277261977511688717", + "33685370839403790686730733" ], "fpReserves": [ - "9747908205463652318751647", - "14290012261886514288815710" + "1870587333680582905571721", + "5047315837644914808345959" ], - "mAssetSupply": "108848566893390281190179392", - "LPTokenSupply": "23795313961526573008690609" + "mAssetSupply": "101002318130801382678755303", + "LPTokenSupply": "6740814370920222964147807" }, { "type": "mint", "inputIndex": 2, - "inputQty": "10269190395981", - "outputQty0": "10304930531657", - "outputQty": "10217242207561", + "inputQty": "158236274423251152666624", + "outputQty0": "157916616202158903978774", + "outputQty": "154892098682512878960661", "mpReserves": [ - "65235605970054166730503548", - "23494354145466804876090047", - "20184396722998536439821178" + "55767479514755778319109811", + "11753812277261977511688717", + "33843607113827041839397357" ], "fpReserves": [ - "9747908205473957249283304", - "14290012261886514288815710" + "2028503949882741809550495", + "5047315837644914808345959" ], - "mAssetSupply": "108848566893400586120711049", - "LPTokenSupply": "23795313961536790250898170" + "mAssetSupply": "101160234747003541582734077", + "LPTokenSupply": "6895706469602735843108468" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "45615025236526546026496", - "outputQty0": "45714377383485781828013", - "outputQty": "45324882460858821069409", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1310678209273654149120", + "outputQty0": "1336069671199831803225", + "outputQty": "1303343654221435826398", + "swapFee1": "786406925564192489", + "swapFee2": "801641802719899081", + "mpReserves": [ + "55767479514755778319109811", + "11752508933607756075862319", + "33843607113827041839397357" + ], + "fpReserves": [ + "2027167880211541977747270", + "5047315837644914808345959" + ], + "mAssetSupply": "101158899478974144470829933", + "LPTokenSupply": "6894395870034154745378596" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1682838416948231149715456", + "outputQty0": "1679017328424747590451386", + "outputQty": "1682828780920733077844044", + "swapFee": "1313510147053600399350", "mpReserves": [ - "65235605970054166730503548", - "23539969170703331422116543", - "20184396722998536439821178" + "55767479514755778319109811", + "11752508933607756075862319", + "35526445530775272989112813" ], "fpReserves": [ - "9793622582857443031111317", - "14290012261886514288815710" + "3706185208636289568198656", + "3364487056724181730501915" ], - "mAssetSupply": "108894281270784071902539062", - "LPTokenSupply": "23840638843997649071967579" + "mAssetSupply": "102837916807398892061281319", + "LPTokenSupply": "6894527221048860105418531" }, { "type": "mint", "inputIndex": 0, - "inputQty": "113596478724928436174848", - "outputQty0": "113270242308798919912932", - "outputQty": "112300945172188089972243", + "inputQty": "1033853559337509847040", + "outputQty0": "1026141140407671336596", + "outputQty": "1000271232952407524390", "mpReserves": [ - "65349202448779095166678396", - "23539969170703331422116543", - "20184396722998536439821178" + "55768513368315115828956851", + "11752508933607756075862319", + "35526445530775272989112813" ], "fpReserves": [ - "9906892825166241951024249", - "14290012261886514288815710" + "3707211349776697239535252", + "3364487056724181730501915" ], - "mAssetSupply": "109007551513092870822451994", - "LPTokenSupply": "23952939789169837161939822" + "mAssetSupply": "102838942948539299732617915", + "LPTokenSupply": "6895527492281812512942921" }, { "type": "mint", "inputIndex": 0, - "inputQty": "86092143080770568192", - "outputQty0": "85844575070299568248", - "outputQty": "85107720489570633667", + "inputQty": "4205382403545446912", + "outputQty0": "4174010374608946604", + "outputQty": "4068778152579493152", "mpReserves": [ - "65349288540922175937246588", - "23539969170703331422116543", - "20184396722998536439821178" + "55768517573697519374403763", + "11752508933607756075862319", + "35526445530775272989112813" ], "fpReserves": [ - "9906978669741312250592497", - "14290012261886514288815710" + "3707215523787071848481856", + "3364487056724181730501915" ], - "mAssetSupply": "109007637357667941122020242", - "LPTokenSupply": "23953024896890326732573489" + "mAssetSupply": "102838947122549674341564519", + "LPTokenSupply": "6895531561059965092436073" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "2647594307519089475584", - "outputQty0": "2668913024076556399231", - "outputQty": "2675539056583975012095", - "swapFee1": "1588556584511453685", - "swapFee2": "1067565209630622559", + "outputIndex": 2, + "inputQty": "58101857873325300121600", + "outputQty0": "59567267126395117731878", + "outputQty": "59679828110136098584984", + "swapFee1": "34861114723995180072", + "swapFee2": "35740360275837070639", "mpReserves": [ - "65346613001865591962234493", - "23539969170703331422116543", - "20184396722998536439821178" + "55768517573697519374403763", + "11752508933607756075862319", + "35466765702665136890527829" ], "fpReserves": [ - "9904309756717235694193266", - "14290012261886514288815710" + "3647648256660676730749978", + "3364487056724181730501915" ], - "mAssetSupply": "109004969512209074196243570", - "LPTokenSupply": "23950377461438466094243273" + "mAssetSupply": "102779415595783555060903280", + "LPTokenSupply": "6837433189298112191832480" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "284503098743272160", - "outputQty0": "283685025994225480", - "outputQty": "281250314977018128", + "type": "redeem", + "outputIndex": 2, + "inputQty": "38238925347580530393088", + "outputQty0": "39201847244051761569928", + "outputQty": "39275422232146209478950", + "swapFee1": "22943355208548318235", + "swapFee2": "23521108346431056941", "mpReserves": [ - "65346613286368690705506653", - "23539969170703331422116543", - "20184396722998536439821178" + "55768517573697519374403763", + "11752508933607756075862319", + "35427490280432990681048879" ], "fpReserves": [ - "9904310040402261688418746", - "14290012261886514288815710" + "3608446409416624969180050", + "3364487056724181730501915" ], - "mAssetSupply": "109004969795894100190469050", - "LPTokenSupply": "23950377742688781071261401" + "mAssetSupply": "102740237269647849730390293", + "LPTokenSupply": "6799196558286052516271215" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "789600333730027929600", - "outputQty0": "795957691070763580746", - "outputQty": "793907588904327390309", - "swapFee1": "473760200238016757", - "swapFee2": "318383076428305432", + "outputIndex": 2, + "inputQty": "68215472007991483432960", + "outputQty0": "69930053446079976819995", + "outputQty": "70060306908415314848895", + "swapFee1": "40929283204794890059", + "swapFee2": "41958032067647986091", "mpReserves": [ - "65346613286368690705506653", - "23539175263114427094726234", - "20184396722998536439821178" + "55768517573697519374403763", + "11752508933607756075862319", + "35357429973524575366199984" ], "fpReserves": [ - "9903514082711190924838000", - "14290012261886514288815710" + "3538516355970544992360055", + "3364487056724181730501915" ], - "mAssetSupply": "109004174156586105855193736", - "LPTokenSupply": "23949588189731071067133476" + "mAssetSupply": "102670349174233837401556389", + "LPTokenSupply": "6730985179206381512327260" }, { - "type": "swap_fp_to_mp", - "inputQty": "525499948397079494656", - "outputIndex": 0, - "outputQty": "525454338389834183142", - "swapFee": "0", - "redemptionFee": "209661223425872262", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "186042563950530231533568", + "outputQty0": "190642531682737946733821", + "outputQty": "190355874609738085002063", + "swapFee": "148676579371754177363", "mpReserves": [ - "65346087832030300871323511", - "23539175263114427094726234", - "20184396722998536439821178" + "55768517573697519374403763", + "11938551497558286307395887", + "35357429973524575366199984" ], "fpReserves": [ - "9902989929652626244182247", - "14290537761834911368310366" + "3729158887653282939093876", + "3174131182114443645499852" ], - "mAssetSupply": "109003650213188764600410245", - "LPTokenSupply": "23949588189731071067133476" + "mAssetSupply": "102860991705916575348290210", + "LPTokenSupply": "6731000046864318687744996" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4435024985666402", - "outputQty0": "4450525507033713", - "outputQty": "4458393782799523", - "swapFee": "3529865982507", + "inputIndex": 0, + "inputQty": "16007770659805814784", + "outputQty0": "15890030970373015513", + "outputQty": "15860200927869713680", + "swapFee": "12388614343362988", "mpReserves": [ - "65346087832030300871323511", - "23539175263114427094726234", - "20184396727433561425487580" + "55768533581468179180218547", + "11938551497558286307395887", + "35357429973524575366199984" ], "fpReserves": [ - "9902989934103151751215960", - "14290537757376517585510843" + "3729174777684253312109389", + "3174115321913515775786172" ], - "mAssetSupply": "109003650217639290107443958", - "LPTokenSupply": "23949588189731424053731726" + "mAssetSupply": "102861007595947545721305723", + "LPTokenSupply": "6731000048103180122081294" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "182646018659301064704", - "outputQty0": "183044424559432420307", - "outputQty": "183368014379498548517", - "swapFee": "145178869136333388", + "type": "mint", + "inputIndex": 2, + "inputQty": "68953327460953198952448", + "outputQty0": "68789165534753885966526", + "outputQty": "67037146767855711206662", "mpReserves": [ - "65346087832030300871323511", - "23539357909133086395790938", - "20184396727433561425487580" + "55768533581468179180218547", + "11938551497558286307395887", + "35426383300985528565152432" ], "fpReserves": [ - "9903172978527711183636267", - "14290354389362138086962326" + "3797963943219007198075915", + "3174115321913515775786172" ], - "mAssetSupply": "109003833262063849539864265", - "LPTokenSupply": "23949588204249310967365064" + "mAssetSupply": "102929796761482299607272249", + "LPTokenSupply": "6798037194871035833287956" }, { "type": "swap_fp_to_mp", - "inputQty": "76826402275136966230016", + "inputQty": "35994461418371", "outputIndex": 0, - "outputQty": "76815600244009263694791", + "outputQty": "36282886561997", "swapFee": "0", - "redemptionFee": "30650225473797826652", + "redemptionFee": "21622698961", "mpReserves": [ - "65269272231786291607628720", - "23539357909133086395790938", - "20184396727433561425487580" + "55768533581431896293656550", + "11938551497558286307395887", + "35426383300985528565152432" ], "fpReserves": [ - "9826547414843216617004146", - "14367180791637275053192342" + "3797963943182969366473924", + "3174115321949510237204543" ], - "mAssetSupply": "108927238348604828771058796", - "LPTokenSupply": "23949588204249310967365064" + "mAssetSupply": "102929796761446283398369219", + "LPTokenSupply": "6798037194871035833287956" }, { - "type": "swap_fp_to_mp", - "inputQty": "474224408061344384", - "outputIndex": 2, - "outputQty": "471128687626414069", - "swapFee": "0", - "redemptionFee": "189184157790459", + "type": "mint", + "inputIndex": 2, + "inputQty": "2800130823870813306880", + "outputQty0": "2793438580085653799646", + "outputQty": "2722210341669220197691", "mpReserves": [ - "65269272231786291607628720", - "23539357909133086395790938", - "20184396256304873799073511" + "55768533581431896293656550", + "11938551497558286307395887", + "35429183431809399378459312" ], "fpReserves": [ - "9826546941882822140854165", - "14367181265861683114536726" + "3800757381763055020273570", + "3174115321949510237204543" ], - "mAssetSupply": "108927237875833618452699274", - "LPTokenSupply": "23949588204249310967365064" + "mAssetSupply": "102932590200026369052168865", + "LPTokenSupply": "6800759405212705053485647" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "922807195615994", - "outputQty0": "920158348343648", - "outputQty": "912317039642405", + "type": "redeem", + "outputIndex": 1, + "inputQty": "10321791191595272", + "outputQty0": "10585524033094171", + "outputQty": "10327532824241266", + "swapFee1": "6193074714957", + "swapFee2": "6351314419856", "mpReserves": [ - "65269272232709098803244714", - "23539357909133086395790938", - "20184396256304873799073511" + "55768533581431896293656550", + "11938551487230753483154621", + "35429183431809399378459312" ], "fpReserves": [ - "9826546942802980489197813", - "14367181265861683114536726" + "3800757371177530987179399", + "3174115321949510237204543" ], - "mAssetSupply": "108927237876753776801042922", - "LPTokenSupply": "23949588205161628007007469" + "mAssetSupply": "102932590189447196333494550", + "LPTokenSupply": "6800759394891533169361870" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "27275294177516", - "outputQty0": "27197002537692", - "outputQty": "27247872333805", - "swapFee": "21572190383", + "inputIndex": 2, + "inputQty": "26387947323652319477760", + "outputQty0": "26324782093931184199300", + "outputQty": "26270553510796390335901", + "swapFee": "20522587502798727809", "mpReserves": [ - "65269272232736374097422230", - "23539357909133086395790938", - "20184396256304873799073511" + "55768533581431896293656550", + "11938551487230753483154621", + "35455571379133051697937072" ], "fpReserves": [ - "9826546942830177491735505", - "14367181265834435242202921" + "3827082153271462171378699", + "3147844768438713846868642" ], - "mAssetSupply": "108927237876780973803580614", - "LPTokenSupply": "23949588205161630164226507" + "mAssetSupply": "102958914971541127517693850", + "LPTokenSupply": "6800761447150283449234650" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "72067341498920982282240", - "outputQty0": "72641885982194813290833", - "outputQty": "72359447748211708733145", - "swapFee1": "43240404899352589369", - "swapFee2": "29056754392877925316", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "32758804514030632304640", + "outputQty0": "33555151174351822313087", + "outputQty": "33482001828129262535880", + "swapFee": "26157931195181308290", "mpReserves": [ - "65269272232736374097422230", - "23539357909133086395790938", - "20112036808556662090340366" + "55768533581431896293656550", + "11971310291744784115459261", + "35455571379133051697937072" ], "fpReserves": [ - "9753905056847982678444672", - "14367181265834435242202921" + "3860637304445813993691786", + "3114362766610584584332762" ], - "mAssetSupply": "108854625047553171868215097", - "LPTokenSupply": "23877525187703199117203203" + "mAssetSupply": "102992470122715479340006937", + "LPTokenSupply": "6800764062943402967365479" }, { - "type": "swap_fp_to_mp", - "inputQty": "2075323913994596253696", - "outputIndex": 2, - "outputQty": "2061588768647123361112", - "swapFee": "0", - "redemptionFee": "827867348167789390", + "type": "redeem", + "outputIndex": 0, + "inputQty": "389567133960111360", + "outputQty0": "399566825684362775", + "outputQty": "402274728907759192", + "swapFee1": "233740280376066", + "swapFee2": "239740095410617", "mpReserves": [ - "65269272232736374097422230", - "23539357909133086395790938", - "20109975219788014966979254" + "55768533179157167385897358", + "11971310291744784115459261", + "35455571379133051697937072" ], "fpReserves": [ - "9751835388477563204968742", - "14369256589748429838456617" + "3860636904878988309329011", + "3114362766610584584332762" ], - "mAssetSupply": "108852556207050100562528557", - "LPTokenSupply": "23877525187703199117203203" + "mAssetSupply": "102992469723388393751054779", + "LPTokenSupply": "6800763673399643035291725" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "35898316822127642148864", - "outputQty0": "35976074539680423517511", - "outputQty": "35670429164530341329338", + "type": "swap_fp_to_mp", + "inputQty": "211848511081690169344", + "outputIndex": 2, + "outputQty": "212535116045127939426", + "swapFee": "0", + "redemptionFee": "127293475122550600", "mpReserves": [ - "65269272232736374097422230", - "23575256225955214037939802", - "20109975219788014966979254" + "55768533179157167385897358", + "11971310291744784115459261", + "35455358844017006569997646" ], "fpReserves": [ - "9787811463017243628486253", - "14369256589748429838456617" + "3860424749087117391661766", + "3114574615121666274502106" ], - "mAssetSupply": "108888532281589780986046068", - "LPTokenSupply": "23913195616867729458532541" + "mAssetSupply": "102992257694889997955938134", + "LPTokenSupply": "6800763673399643035291725" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "25380010860864667648", - "outputQty0": "25582343955449274013", - "outputQty": "25516966965781230956", - "swapFee1": "15228006516518800", - "swapFee2": "10232937582179709", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "3149340589152208420864", + "outputQty0": "3225667118382751221629", + "outputQty": "3218398658469137390657", + "swapFee": "2514440512958722741", "mpReserves": [ - "65269272232736374097422230", - "23575230708988248256708846", - "20109975219788014966979254" + "55768533179157167385897358", + "11974459632333936323880125", + "35455358844017006569997646" ], "fpReserves": [ - "9787785880673288179212240", - "14369256589748429838456617" + "3863650416205500142883395", + "3111356216463197137111449" ], - "mAssetSupply": "108888506709478763118951764", - "LPTokenSupply": "23913170238379669245516773" + "mAssetSupply": "102995483362008380707159763", + "LPTokenSupply": "6800763924843694331163999" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "40223724099903254691840", - "outputQty0": "40107995315758921392726", - "outputQty": "40183219939543272536096", - "swapFee": "31813218338289885901", + "type": "swap_fp_to_mp", + "inputQty": "1498058713295440052224", + "outputIndex": 0, + "outputQty": "1510410206951502674946", + "swapFee": "0", + "redemptionFee": "900147624570104505", "mpReserves": [ - "65309495956836277352114070", - "23575230708988248256708846", - "20109975219788014966979254" + "55767022768950215883222412", + "11974459632333936323880125", + "35455358844017006569997646" ], "fpReserves": [ - "9827893875989047100604966", - "14329073369808886565920521" + "3862150170164549968706778", + "3112854275176492577163673" ], - "mAssetSupply": "108928614704794522040344490", - "LPTokenSupply": "23913173419701503074505363" + "mAssetSupply": "102993984016115055103087651", + "LPTokenSupply": "6800763924843694331163999" }, { "type": "swap_fp_to_mp", - "inputQty": "711104560128030672945152", - "outputIndex": 2, - "outputQty": "705988729248144606808875", + "inputQty": "653077957831101786357760", + "outputIndex": 1, + "outputQty": "636512819369249553991800", "swapFee": "0", - "redemptionFee": "283548268812385962765", + "redemptionFee": "391919620598670886736", "mpReserves": [ - "65309495956836277352114070", - "23575230708988248256708846", - "19403986490539870360170379" + "55767022768950215883222412", + "11337946812964686769888325", + "35455358844017006569997646" ], "fpReserves": [ - "9119023203958082193691109", - "15040177929936917238865673" + "3208950802500098490812241", + "3765932233007594363521433" ], - "mAssetSupply": "108220027581032369519393398", - "LPTokenSupply": "23913173419701503074505363" + "mAssetSupply": "102341176568071202296079850", + "LPTokenSupply": "6800763924843694331163999" }, { - "type": "swap_fp_to_mp", - "inputQty": "380076164732259605151744", - "outputIndex": 0, - "outputQty": "379536588156439458382273", - "swapFee": "0", - "redemptionFee": "151427496720798468962", + "type": "redeem", + "outputIndex": 2, + "inputQty": "102719961161217356070912", + "outputQty0": "105219320957276621506167", + "outputQty": "105434647010986689538426", + "swapFee1": "61631976696730413642", + "swapFee2": "63131592574365972903", "mpReserves": [ - "64929959368679837893731797", - "23575230708988248256708846", - "19403986490539870360170379" + "55767022768950215883222412", + "11337946812964686769888325", + "35349924197006019880459220" ], "fpReserves": [ - "8740454462156086021284274", - "15420254094669176844017417" + "3103731481542821869306074", + "3765932233007594363521433" ], - "mAssetSupply": "107841610266727094145455525", - "LPTokenSupply": "23913173419701503074505363" + "mAssetSupply": "102236020378706500040546586", + "LPTokenSupply": "6698050126880146648134451" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2109626049535731456", - "outputQty0": "2117633515791988655", - "outputQty": "2125030077786335028", - "swapFee": "1681340668751908", + "inputIndex": 0, + "inputQty": "2124317586314855249346560", + "outputQty0": "2107430689855902937013911", + "outputQty": "2097754897728604632541956", + "swapFee": "1643427969325732256693", "mpReserves": [ - "64929959368679837893731797", - "23575230708988248256708846", - "19403988600165919895901835" + "57891340355265071132568972", + "11337946812964686769888325", + "35349924197006019880459220" ], "fpReserves": [ - "8740456579789601813272929", - "15420251969639099057682389" + "5211162171398724806319985", + "1668177335278989730979477" ], - "mAssetSupply": "107841612384360609937444180", - "LPTokenSupply": "23913173419869637141380553" + "mAssetSupply": "104343451068562402977560497", + "LPTokenSupply": "6698214469677079221360120" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "18561032942762319872", - "outputQty0": "18631484601936247017", - "outputQty": "18696561126633786456", - "swapFee": "14792867742890603", + "inputIndex": 0, + "inputQty": "77327792061648027648", + "outputQty0": "76697533394715877098", + "outputQty": "75680363846908280733", + "swapFee": "59560141703772501", "mpReserves": [ - "64929959368679837893731797", - "23575230708988248256708846", - "19404007161198862658221707" + "57891417683057132780596620", + "11337946812964686769888325", + "35349924197006019880459220" ], "fpReserves": [ - "8740475211274203749519946", - "15420233273077972423895933" + "5211238868932119522197083", + "1668101654915142822698744" ], - "mAssetSupply": "107841631015845211873691197", - "LPTokenSupply": "23913173421348923915669613" + "mAssetSupply": "104343527766095797693437595", + "LPTokenSupply": "6698214475633093391737370" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "55321614249154737864704", - "outputQty0": "55530882137955019375083", - "outputQty": "55111366158450415516839", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1100393908838374572032", + "outputQty0": "1132929952934947248295", + "outputQty": "1141554295756018967388", + "swapFee1": "660236345303024743", + "swapFee2": "679757971760968348", "mpReserves": [ - "64929959368679837893731797", - "23575230708988248256708846", - "19459328775448017396086411" + "57890276128761376761629232", + "11337946812964686769888325", + "35349924197006019880459220" ], "fpReserves": [ - "8796006093412158768895029", - "15420233273077972423895933" + "5210105938979184574948788", + "1668101654915142822698744" ], - "mAssetSupply": "107897161897983166893066280", - "LPTokenSupply": "23968284787507374331186452" + "mAssetSupply": "104342395515900834507157648", + "LPTokenSupply": "6697114147747889547467812" }, { "type": "swap_fp_to_mp", - "inputQty": "51326183154239365120", + "inputQty": "38839852200017791025152", "outputIndex": 0, - "outputQty": "51239345924816639225", + "outputQty": "39616505962295962706569", "swapFee": "0", - "redemptionFee": "20443872287858896", + "redemptionFee": "23590416047731925211", "mpReserves": [ - "64929908129333913077092572", - "23575230708988248256708846", - "19459328775448017396086411" + "57850659622799080798922663", + "11337946812964686769888325", + "35349924197006019880459220" ], "fpReserves": [ - "8795954983731439121654480", - "15420284599261126663261053" + "5170788578899631366262976", + "1706941507115160613723896" ], - "mAssetSupply": "107897110808746319533684627", - "LPTokenSupply": "23968284787507374331186452" + "mAssetSupply": "104303101746237329030397047", + "LPTokenSupply": "6697114147747889547467812" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "3764520097874799755264", - "outputQty0": "3778708517495020945554", - "outputQty": "3750085679009333549429", + "inputIndex": 0, + "inputQty": "36146106276652", + "outputQty0": "35851777539405", + "outputQty": "34806869305299", "mpReserves": [ - "64929908129333913077092572", - "23575230708988248256708846", - "19463093295545892195841675" + "57850659622835226905199315", + "11337946812964686769888325", + "35349924197006019880459220" ], "fpReserves": [ - "8799733692248934142600034", - "15420284599261126663261053" + "5170788578935483143802381", + "1706941507115160613723896" ], - "mAssetSupply": "107900889517263814554630181", - "LPTokenSupply": "23972034873186383664735881" + "mAssetSupply": "104303101746273180807936452", + "LPTokenSupply": "6697114147782696416773111" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "185186176549705167667200", - "outputQty0": "185570347759150195348180", - "outputQty": "186177915294161350649397", - "swapFee": "147322411516946695471", + "type": "redeem", + "outputIndex": 0, + "inputQty": "359626340446802620186624", + "outputQty0": "370131470206831679070388", + "outputQty": "372932897200219073160416", + "swapFee1": "215775804268081572111", + "swapFee2": "222078882124099007442", "mpReserves": [ - "64929908129333913077092572", - "23760416885537953424376046", - "19463093295545892195841675" + "57477726725635007832038899", + "11337946812964686769888325", + "35349924197006019880459220" ], "fpReserves": [ - "8985304040008084337948214", - "15234106683966965312611656" + "4800657108728651464731993", + "1706941507115160613723896" ], - "mAssetSupply": "108086459865022964749978361", - "LPTokenSupply": "23972049605427535359405428" + "mAssetSupply": "103933192354948473227873506", + "LPTokenSupply": "6337509384916320604743698" }, { "type": "swap_fp_to_mp", - "inputQty": "386212331984244625637376", + "inputQty": "437204323006755626811392", "outputIndex": 1, - "outputQty": "383619176376928805634943", + "outputQty": "427855618455005221607632", "swapFee": "0", - "redemptionFee": "153831734811482072999", + "redemptionFee": "264395310558888978096", "mpReserves": [ - "64929908129333913077092572", - "23376797709161024618741103", - "19463093295545892195841675" + "57477726725635007832038899", + "10910091194509681548280693", + "35349924197006019880459220" ], "fpReserves": [ - "8600724702979379155449716", - "15620319015951209938249032" + "4359998257797169834570558", + "2144145830121916240535288" ], - "mAssetSupply": "107702034359729071049552862", - "LPTokenSupply": "23972049605427535359405428" + "mAssetSupply": "103492797899327550486690167", + "LPTokenSupply": "6337509384916320604743698" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2865518407591446917939200", - "outputQty0": "2870649237806369585127280", - "outputQty": "2875475769521843481033572", - "swapFee": "2277715775153892998532", + "type": "swap_fp_to_mp", + "inputQty": "1310075230496129734934528", + "outputIndex": 1, + "outputQty": "1268321045284922079449564", + "swapFee": "0", + "redemptionFee": "787689579686064066545", "mpReserves": [ - "64929908129333913077092572", - "26242316116752471536680303", - "19463093295545892195841675" + "57477726725635007832038899", + "9641770149224759468831129", + "35349924197006019880459220" ], "fpReserves": [ - "11471373940785748740576996", - "12744843246429366457215460" + "3047182291653729723662067", + "3454221060618045975469816" ], - "mAssetSupply": "110572683597535440634680142", - "LPTokenSupply": "23972277377005050748705281" + "mAssetSupply": "102180769622763796439848221", + "LPTokenSupply": "6337509384916320604743698" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2198941859887498657792", - "outputQty0": "2207537377967410515637", - "outputQty": "2207314011213939129699", - "swapFee": "1748883773684853550", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1638435310554994944", + "outputQty0": "1679052745095200934", + "outputQty": "1683722684156216398", + "swapFee1": "983061186332996", + "swapFee2": "1007431647057120", "mpReserves": [ - "64929908129333913077092572", - "26242316116752471536680303", - "19465292237405779694499467" + "57477726725635007832038899", + "9641770149224759468831129", + "35349922513283335724242822" ], "fpReserves": [ - "11473581478163716151092633", - "12742635932418152518085761" + "3047180612600984628461133", + "3454221060618045975469816" ], - "mAssetSupply": "110574891134913408045195779", - "LPTokenSupply": "23972277551893428117190636" + "mAssetSupply": "102180767944718482991704407", + "LPTokenSupply": "6337507746579316168382053" }, { "type": "swap_fp_to_mp", - "inputQty": "359226621128578564096", - "outputIndex": 2, - "outputQty": "357435303788060520754", + "inputQty": "26429135615723848073216", + "outputIndex": 0, + "outputQty": "26642424975371789655697", "swapFee": "0", - "redemptionFee": "143590372441627431", + "redemptionFee": "15843359742784170763", "mpReserves": [ - "64929908129333913077092572", - "26242316116752471536680303", - "19464934802101991633978713" + "57451084300659636042383202", + "9641770149224759468831129", + "35349922513283335724242822" ], "fpReserves": [ - "11473222502232612082514251", - "12742995159039281096649857" + "3020775013029677677188066", + "3480650196233769823543032" ], - "mAssetSupply": "110574532302572676418244828", - "LPTokenSupply": "23972277551893428117190636" + "mAssetSupply": "102154378188506918824602103", + "LPTokenSupply": "6337507746579316168382053" }, { - "type": "swap_fp_to_mp", - "inputQty": "83967688985859980263424", - "outputIndex": 2, - "outputQty": "83543415144925705042781", - "swapFee": "0", - "redemptionFee": "33562061293265653399", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "24025925026291784876032", + "outputQty0": "23944771563288741183654", + "outputQty": "23947064731034759996544", + "swapFee": "18682042497471520244", "mpReserves": [ - "64929908129333913077092572", - "26242316116752471536680303", - "19381391386957065928935932" + "57451084300659636042383202", + "9641770149224759468831129", + "35373948438309627509118854" ], "fpReserves": [ - "11389317348999447949016433", - "12826962848025141076913281" + "3044719784592966418371720", + "3456703131502735063546488" ], - "mAssetSupply": "110490660711400805550400409", - "LPTokenSupply": "23972277551893428117190636" + "mAssetSupply": "102178322960070207565785757", + "LPTokenSupply": "6337509614783565915534077" }, { "type": "swap_fp_to_mp", - "inputQty": "64145962372719", + "inputQty": "940705512278823796736", "outputIndex": 1, - "outputQty": "63976363230693", + "outputQty": "904111371451013910955", "swapFee": "0", - "redemptionFee": "25638075596", - "mpReserves": [ - "64929908129333913077092572", - "26242316116688495173449610", - "19381391386957065928935932" - ], - "fpReserves": [ - "11389317348935352760025614", - "12826962848089287039286000" - ], - "mAssetSupply": "110490660711336735999485186", - "LPTokenSupply": "23972277551893428117190636" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "12631291882561077248", - "outputQty0": "12596723486012716023", - "outputQty": "12475029462342703763", + "redemptionFee": "563944878960446141", "mpReserves": [ - "64929920760625795638169820", - "26242316116688495173449610", - "19381391386957065928935932" + "57451084300659636042383202", + "9640866037853308454920174", + "35373948438309627509118854" ], "fpReserves": [ - "11389329945658838772741637", - "12826962848089287039286000" + "3043779876461365674803301", + "3457643837015013887343224" ], - "mAssetSupply": "110490673308060222012201209", - "LPTokenSupply": "23972290026922890459894399" + "mAssetSupply": "102177383615883485782663479", + "LPTokenSupply": "6337509614783565915534077" }, { - "type": "swap_fp_to_mp", - "inputQty": "12535525068666082164736", - "outputIndex": 0, - "outputQty": "12554859325164599634473", - "swapFee": "0", - "redemptionFee": "5010206100869058655", + "type": "redeem", + "outputIndex": 2, + "inputQty": "108440993293515576311808", + "outputQty0": "111121291770751765632457", + "outputQty": "111429597796224346129972", + "swapFee1": "65064595976109345787", + "swapFee2": "66672775062451059379", "mpReserves": [ - "64917365901300631038535347", - "26242316116688495173449610", - "19381391386957065928935932" + "57451084300659636042383202", + "9640866037853308454920174", + "35262518840513403162988882" ], "fpReserves": [ - "11376804430406666126102490", - "12839498373157953121450736" + "2932658584690613909170844", + "3457643837015013887343224" ], - "mAssetSupply": "110478152803014150234620717", - "LPTokenSupply": "23972290026922890459894399" + "mAssetSupply": "102066328996887796468090401", + "LPTokenSupply": "6229075127949647950156847" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "8226420539804599296", - "outputQty0": "8301623773009161155", - "outputQty": "8286240431142965718", - "swapFee1": "4935852323882759", - "swapFee2": "3320649509203664", + "type": "mint", + "inputIndex": 1, + "inputQty": "44996485447900544892928", + "outputQty0": "46739035910492715073697", + "outputQty": "45585666041044319842318", "mpReserves": [ - "64917365901300631038535347", - "26242307830448064030483892", - "19381391386957065928935932" + "57451084300659636042383202", + "9685862523301208999813102", + "35262518840513403162988882" ], "fpReserves": [ - "11376796128782893116941335", - "12839498373157953121450736" + "2979397620601106624244541", + "3457643837015013887343224" ], - "mAssetSupply": "110478144504711026734663226", - "LPTokenSupply": "23972281800995935887683378" + "mAssetSupply": "102113068032798289183164098", + "LPTokenSupply": "6274660793990692269999165" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "2870992761328184066048", - "outputQty0": "2897237111865763943382", - "outputQty": "2904023184835753517105", - "swapFee1": "1722595656796910439", - "swapFee2": "1158894844746305577", + "type": "mint", + "inputIndex": 2, + "inputQty": "738808306919747748888576", + "outputQty0": "736273242148273083581900", + "outputQty": "717798544981985093575127", "mpReserves": [ - "64914461878115795285018242", - "26242307830448064030483892", - "19381391386957065928935932" + "57451084300659636042383202", + "9685862523301208999813102", + "36001327147433150911877458" ], "fpReserves": [ - "11373898891671027352997953", - "12839498373157953121450736" + "3715670862749379707826441", + "3457643837015013887343224" ], - "mAssetSupply": "110475248426494005717025421", - "LPTokenSupply": "23969410980494173383308373" + "mAssetSupply": "102849341274946562266745998", + "LPTokenSupply": "6992459338972677363574292" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "8165519400873711632384", - "outputQty0": "8240148244710432179083", - "outputQty": "8259445885193365036035", - "swapFee1": "4899311640524226979", - "swapFee2": "3296059297884172871", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "71021453327483331936256", + "outputQty0": "70769307173870321513446", + "outputQty": "70669592431428986961796", + "swapFee": "55173662528974692146", "mpReserves": [ - "64906202432230601919982207", - "26242307830448064030483892", - "19381391386957065928935932" + "57451084300659636042383202", + "9685862523301208999813102", + "36072348600760634243813714" ], "fpReserves": [ - "11365658743426316920818870", - "12839498373157953121450736" + "3786440169923250029339887", + "3386974244583584900381428" ], - "mAssetSupply": "110467011574308593169019209", - "LPTokenSupply": "23961245951024463724098686" + "mAssetSupply": "102920110582120432588259444", + "LPTokenSupply": "6992464856338930261043506" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "22563057412334342144", - "outputQty0": "22769247296272629070", - "outputQty": "22822564750983822340", - "swapFee1": "13537834447400605", - "swapFee2": "9107698918509051", + "type": "swap_fp_to_mp", + "inputQty": "6219471865624877072384", + "outputIndex": 2, + "outputQty": "6242503449687231020258", + "swapFee": "0", + "redemptionFee": "3734409874664985529", "mpReserves": [ - "64906179609665850936159867", - "26242307830448064030483892", - "19381391386957065928935932" + "57451084300659636042383202", + "9685862523301208999813102", + "36066106097310947012793456" ], "fpReserves": [ - "11365635974179020648189800", - "12839498373157953121450736" + "3780216153465475053457339", + "3393193716449209777453812" ], - "mAssetSupply": "110466988814168995814899190", - "LPTokenSupply": "23961223389320834834496602" + "mAssetSupply": "102913890300072532277362425", + "LPTokenSupply": "6992464856338930261043506" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "13510019996640515981312", - "outputQty0": "13473061153595359253757", - "outputQty": "13343015237803903047985", + "type": "swap_fp_to_mp", + "inputQty": "375280492669685741912064", + "outputIndex": 1, + "outputQty": "360454148010184420572068", + "swapFee": "0", + "redemptionFee": "225173202324781594663", "mpReserves": [ - "64919689629662491452141179", - "26242307830448064030483892", - "19381391386957065928935932" + "57451084300659636042383202", + "9325408375291024579241034", + "36066106097310947012793456" ], "fpReserves": [ - "11379109035332616007443557", - "12839498373157953121450736" + "3404927482924172395684418", + "3768474209118895519365876" ], - "mAssetSupply": "110480461875322591174152947", - "LPTokenSupply": "23974566404558638737544587" + "mAssetSupply": "102538826802733554401184167", + "LPTokenSupply": "6992464856338930261043506" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "45669974000286635655168", - "outputQty0": "45849726877663141446479", - "outputQty": "45848743240531596767112", - "swapFee": "36325399778206581036", + "inputQty": "682085734083912007680", + "outputQty0": "679502714870173731756", + "outputQty": "679416487682841209720", + "swapFee": "530078365161214878", "mpReserves": [ - "64919689629662491452141179", - "26242307830448064030483892", - "19427061360957352564591100" + "57451084300659636042383202", + "9325408375291024579241034", + "36066788183045030924801136" ], "fpReserves": [ - "11424958762210279148890036", - "12793649629917421524683624" + "3405606985639042569416174", + "3767794792631212678156156" ], - "mAssetSupply": "110526311602200254315599426", - "LPTokenSupply": "23974570037098616558202690" + "mAssetSupply": "102539506305448424574915923", + "LPTokenSupply": "6992464909346766777164993" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1179783966615322738294784", - "outputQty0": "1184105296851526543145305", - "outputQty": "1172436076570263080776905", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "139415549044996407296", + "outputQty0": "138057441895920736119", + "outputQty": "138039711228700274808", + "swapFee": "107698143212011321", "mpReserves": [ - "64919689629662491452141179", - "26242307830448064030483892", - "20606845327572675302885884" + "57451223716208681038790498", + "9325408375291024579241034", + "36066788183045030924801136" ], "fpReserves": [ - "12609064059061805692035341", - "12793649629917421524683624" + "3405745043080938490152293", + "3767656752919983977881348" ], - "mAssetSupply": "111710416899051780858744731", - "LPTokenSupply": "25147006113668879638979595" + "mAssetSupply": "102539644362890320495652042", + "LPTokenSupply": "6992464920116581098366125" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "803314297707411013632", - "outputQty0": "804537379744414019631", - "outputQty": "796477307995664895490", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "36158227726528677937152", + "outputQty0": "35805850783405481462869", + "outputQty": "35798844386040698102476", + "swapFee": "27931503108539414005", "mpReserves": [ - "64919689629662491452141179", - "26243111144745771441497524", - "20606845327572675302885884" + "57487381943935209716727650", + "9325408375291024579241034", + "36066788183045030924801136" ], "fpReserves": [ - "12609868596441550106054972", - "12793649629917421524683624" + "3441550893864343971615162", + "3731857908533943279778872" ], - "mAssetSupply": "111711221436431525272764362", - "LPTokenSupply": "25147802590976875303875085" + "mAssetSupply": "102575450213673725977114911", + "LPTokenSupply": "6992467713266891952307525" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5539049830634180575232", - "outputQty0": "5547479661438575001839", - "outputQty": "5491898905445555322983", + "type": "swap_fp_to_mp", + "inputQty": "8248648649879532339200", + "outputIndex": 0, + "outputQty": "8320250420083779327344", + "swapFee": "0", + "redemptionFee": "4946452296963376560", "mpReserves": [ - "64919689629662491452141179", - "26248650194576405622072756", - "20606845327572675302885884" + "57479061693515125937400306", + "9325408375291024579241034", + "36066788183045030924801136" ], "fpReserves": [ - "12615416076102988681056811", - "12793649629917421524683624" + "3433306806702738344013950", + "3740106557183822812118072" ], - "mAssetSupply": "111716768916092963847766201", - "LPTokenSupply": "25153294489882320859198068" + "mAssetSupply": "102567211072964417312890259", + "LPTokenSupply": "6992467713266891952307525" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "722785767849542025216", - "outputQty0": "725254026780488113390", - "outputQty": "724740887334111384004", - "swapFee": "574389630709807578", + "inputQty": "485836781499197920641024", + "outputQty0": "483963115339247939798692", + "outputQty": "471787450914749191465201", "mpReserves": [ - "64919689629662491452141179", - "26248650194576405622072756", - "20607568113340524844911100" + "57479061693515125937400306", + "9325408375291024579241034", + "36552624964544228845442160" ], "fpReserves": [ - "12616141330129769169170201", - "12792924889030087413299620" + "3917269922041986283812642", + "3740106557183822812118072" ], - "mAssetSupply": "111717494170119744335879591", - "LPTokenSupply": "25153294547321283930178825" + "mAssetSupply": "103051174188303665252688951", + "LPTokenSupply": "7464255164181641143772726" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "640219446723060892172288", - "outputQty0": "641152089943240934472909", - "outputQty": "634675142930934702232705", + "inputIndex": 0, + "inputQty": "542157447965539827712", + "outputQty0": "536893489630672425674", + "outputQty": "523274342975957717056", "mpReserves": [ - "64919689629662491452141179", - "26888869641299466514245044", - "20607568113340524844911100" + "57479603850963091477228018", + "9325408375291024579241034", + "36552624964544228845442160" ], "fpReserves": [ - "13257293420073010103643110", - "12792924889030087413299620" + "3917806815531616956238316", + "3740106557183822812118072" ], - "mAssetSupply": "112358646260062985270352500", - "LPTokenSupply": "25787969690252218632411530" + "mAssetSupply": "103051711081793295925114625", + "LPTokenSupply": "7464778438524617101489782" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "607524279576311153819648", - "outputQty0": "613358109149067287532581", - "outputQty": "612222635201583030007697", - "swapFee1": "364514567745786692291", - "swapFee2": "245343243659626915013", + "outputIndex": 2, + "inputQty": "18352127647633748525056", + "outputQty0": "18818333848414544059068", + "outputQty": "18881153139787836046871", + "swapFee1": "11011276588580249115", + "swapFee2": "11291000309048726435", "mpReserves": [ - "64919689629662491452141179", - "26276647006097883484237347", - "20607568113340524844911100" + "57479603850963091477228018", + "9325408375291024579241034", + "36533743811404441009395289" ], "fpReserves": [ - "12643935310923942816110529", - "12792924889030087413299620" + "3898988481683202412179248", + "3740106557183822812118072" ], - "mAssetSupply": "111745533494157577609734932", - "LPTokenSupply": "25180481862132682057261111" + "mAssetSupply": "103032904038945190429781992", + "LPTokenSupply": "7446427412004642210989637" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "3829612258403053731840", - "outputQty0": "3842692351153658668581", - "outputQty": "3839908420142183238125", - "swapFee": "3043286659549384519", + "inputQty": "104322041572169", + "outputQty0": "103912855234606", + "outputQty": "101278368345007", "mpReserves": [ - "64919689629662491452141179", - "26276647006097883484237347", - "20611397725598927898642940" + "57479603850963091477228018", + "9325408375291024579241034", + "36533743811508763050967458" ], "fpReserves": [ - "12647778003275096474779110", - "12789084980609945230061495" + "3898988481787115267413854", + "3740106557183822812118072" ], - "mAssetSupply": "111749376186508731268403513", - "LPTokenSupply": "25180482166461348012199562" + "mAssetSupply": "103032904039049103285016598", + "LPTokenSupply": "7446427412105920579334644" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "13236547145935964078080", "outputIndex": 0, - "inputQty": "686331198306236497920", - "outputQty0": "692877547307862565637", - "outputQty": "694403477659339992332", - "swapFee1": "411798718983741898", - "swapFee2": "277151018923145026", + "outputQty": "13361681808602321672746", + "swapFee": "0", + "redemptionFee": "7943935528711465041", "mpReserves": [ - "64918995226184832112148847", - "26276647006097883484237347", - "20611397725598927898642940" + "57466242169154489155555272", + "9325408375291024579241034", + "36533743811508763050967458" ], "fpReserves": [ - "12647085125727788612213473", - "12789084980609945230061495" + "3885748589239262825678308", + "3753343104329758776196152" ], - "mAssetSupply": "111748683586112442328982902", - "LPTokenSupply": "25179795876442913674075831" + "mAssetSupply": "103019672090436779554746093", + "LPTokenSupply": "7446427412105920579334644" }, { "type": "mint", "inputIndex": 1, - "inputQty": "907135378600798350999552", - "outputQty0": "908428268463065625957558", - "outputQty": "899201652254354616108437", - "mpReserves": [ - "64918995226184832112148847", - "27183782384698681835236899", - "20611397725598927898642940" - ], - "fpReserves": [ - "13555513394190854238171031", - "12789084980609945230061495" - ], - "mAssetSupply": "112657111854575507954940460", - "LPTokenSupply": "26078997528697268290184268" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2638412205477025280", - "outputQty0": "2647550673815813714", - "outputQty": "2644411748231779532", - "swapFee": "2096294019679116", + "inputQty": "11478771228414142578688", + "outputQty0": "11964990716829380388772", + "outputQty": "11661848861103036136572", "mpReserves": [ - "64918995226184832112148847", - "27183782384698681835236899", - "20611400364011133375668220" + "57466242169154489155555272", + "9336887146519438721819722", + "36533743811508763050967458" ], "fpReserves": [ - "13555516041741528053984745", - "12789082336198196998281963" + "3897713579956092206067080", + "3753343104329758776196152" ], - "mAssetSupply": "112657114502126181770754174", - "LPTokenSupply": "26078997528906897692152179" + "mAssetSupply": "103031637081153608935134865", + "LPTokenSupply": "7458089260967023615471216" }, { "type": "swap_fp_to_mp", - "inputQty": "407937639867089726472192", + "inputQty": "30204739742157657604096", "outputIndex": 1, - "outputQty": "407287524683803295455329", + "outputQty": "28963462255186091071592", "swapFee": "0", - "redemptionFee": "163204490743841722934", + "redemptionFee": "18126427537870563883", "mpReserves": [ - "64918995226184832112148847", - "26776494860014878539781570", - "20611400364011133375668220" + "57466242169154489155555272", + "9307923684264252630748130", + "36533743811508763050967458" ], "fpReserves": [ - "13147504814881923746648891", - "13197019976065286724754155" + "3867502867392974599594604", + "3783547844071916433800248" ], - "mAssetSupply": "112249266479757321305141254", - "LPTokenSupply": "26078997528906897692152179" + "mAssetSupply": "103001444495018029199226272", + "LPTokenSupply": "7458089260967023615471216" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "702379419729109543026688", - "outputQty0": "703326429568423187495628", - "outputQty": "696186060052940066289181", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "2568725964584452620288", + "outputQty0": "2558617009789956817037", + "outputQty": "2556187160627563160490", + "swapFee": "1995124829399930861", "mpReserves": [ - "64918995226184832112148847", - "27478874279743988082808258", - "20611400364011133375668220" + "57466242169154489155555272", + "9307923684264252630748130", + "36536312537473347503587746" ], "fpReserves": [ - "13850831244450346934144519", - "13197019976065286724754155" + "3870061484402764556411641", + "3780991656911288870639758" ], - "mAssetSupply": "112952592909325744492636882", - "LPTokenSupply": "26775183588959837758441360" + "mAssetSupply": "103004003112027819156043309", + "LPTokenSupply": "7458089460479506555464302" }, { - "type": "swap_fp_to_mp", - "inputQty": "250577848952384500269056", + "type": "redeem", "outputIndex": 0, - "outputQty": "251158366893969145377615", - "swapFee": "0", - "redemptionFee": "100250943974598481543", + "inputQty": "710999450629054848", + "outputQty0": "729013117572164654", + "outputQty": "735731376516613662", + "swapFee1": "426599670377432", + "swapFee2": "437407870543298", "mpReserves": [ - "64667836859290862966771232", - "27478874279743988082808258", - "20611400364011133375668220" + "57466241433423112638941610", + "9307923684264252630748130", + "36536312537473347503587746" ], "fpReserves": [ - "13600203884513850730286481", - "13447597825017671225023211" + "3870060755389646984246987", + "3780991656911288870639758" ], - "mAssetSupply": "112702065800333222887260387", - "LPTokenSupply": "26775183588959837758441360" + "mAssetSupply": "103004002383452109454421953", + "LPTokenSupply": "7458088749522715893447197" }, { - "type": "swap_fp_to_mp", - "inputQty": "191925426921435616", - "outputIndex": 2, - "outputQty": "191202623376362471", - "swapFee": "0", - "redemptionFee": "76775908344737", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "7651928061983066112", + "outputQty0": "7977668107699298884", + "outputQty": "7970056527152445738", + "swapFee": "6220699427181393", "mpReserves": [ - "64667836859290862966771232", - "27478874279743988082808258", - "20611400172808509999305749" + "57466241433423112638941610", + "9307931336192314613814242", + "36536312537473347503587746" ], "fpReserves": [ - "13600203692574079868441558", - "13447598016943098146458827" + "3870068733057754683545871", + "3780983686854761718194020" ], - "mAssetSupply": "112702065608470227933760201", - "LPTokenSupply": "26775183588959837758441360" + "mAssetSupply": "103004010361120217153720837", + "LPTokenSupply": "7458088750144785836165336" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "128369473197930736", - "outputQty0": "129603508259245595", - "outputQty": "129387671952984375", - "swapFee1": "77021683918758", - "swapFee2": "51841403303698", + "outputIndex": 0, + "inputQty": "1361235093613875298304", + "outputQty0": "1395722129367824614274", + "outputQty": "1408584249975967827682", + "swapFee1": "816741056168325178", + "swapFee2": "837433277620694768", "mpReserves": [ - "64667836859290862966771232", - "27478874150356316129823883", - "20611400172808509999305749" + "57464832849173136671113928", + "9307931336192314613814242", + "36536312537473347503587746" ], "fpReserves": [ - "13600203562970571609195963", - "13447598016943098146458827" + "3868673010928386858931597", + "3780983686854761718194020" ], - "mAssetSupply": "112702065478918561077818304", - "LPTokenSupply": "26775183460598066728902499" + "mAssetSupply": "103002615476424126949801331", + "LPTokenSupply": "7456727596725277577699549" }, { - "type": "swap_fp_to_mp", - "inputQty": "21887286944320171540480", - "outputIndex": 0, - "outputQty": "21934888755321943099614", - "swapFee": "0", - "redemptionFee": "8755475233727940028", + "type": "mint", + "inputIndex": 2, + "inputQty": "366670321657195538677760", + "outputQty0": "365207605687613632871969", + "outputQty": "355917375475231668680476", "mpReserves": [ - "64645901970535541023671618", - "27478874150356316129823883", - "20611400172808509999305749" + "57464832849173136671113928", + "9307931336192314613814242", + "36902982859130543042265506" ], "fpReserves": [ - "13578314874886251759123560", - "13469485303887418317999307" + "4233880616616000491803566", + "3780983686854761718194020" ], - "mAssetSupply": "112680185546309474955685929", - "LPTokenSupply": "26775183460598066728902499" + "mAssetSupply": "103367823082111740582673300", + "LPTokenSupply": "7812644972200509246380025" }, { - "type": "swap_fp_to_mp", - "inputQty": "524603246185232228941824", - "outputIndex": 1, - "outputQty": "523598231797382630745184", - "swapFee": "0", - "redemptionFee": "209798532745502169643", + "type": "mint", + "inputIndex": 2, + "inputQty": "3225114085363209469952", + "outputQty0": "3212075886335266545785", + "outputQty": "3129917175267956545110", "mpReserves": [ - "64645901970535541023671618", - "26955275918558933499078699", - "20611400172808509999305749" + "57464832849173136671113928", + "9307931336192314613814242", + "36906207973215906251735458" ], "fpReserves": [ - "13053818543022496335014807", - "13994088550072650546941131" + "4237092692502335758349351", + "3780983686854761718194020" ], - "mAssetSupply": "112155899012978465033746819", - "LPTokenSupply": "26775183460598066728902499" + "mAssetSupply": "103371035157998075849219085", + "LPTokenSupply": "7815774889375777202925135" }, { "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "2900731136011996160", + "outputQty0": "2872602055616700484", + "outputQty": "2868128221784301031", + "swapFee": "2239298447014572", + "mpReserves": [ + "57464835749904272683110088", + "9307931336192314613814242", + "36906207973215906251735458" + ], + "fpReserves": [ + "4237095565104391375049835", + "3780980818726539933892989" + ], + "mAssetSupply": "103371038030600131465919569", + "LPTokenSupply": "7815774889599707047626592" + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "1052233058118094422016", - "outputQty0": "1053667945896732816196", - "outputQty": "1053310501884505012763", - "swapFee": "834634206643774009", + "inputQty": "251125269404114432", + "outputQty0": "261877529643126176", + "outputQty": "255178898709329190", "mpReserves": [ - "64645901970535541023671618", - "26956328151617051593500715", - "20611400172808509999305749" + "57464835749904272683110088", + "9307931587317584017928674", + "36906207973215906251735458" ], "fpReserves": [ - "13054872210968393067831003", - "13993035239570766041928368" + "4237095826981921018176011", + "3780980818726539933892989" ], - "mAssetSupply": "112156952680924361766563015", - "LPTokenSupply": "26775183544061487393279899" + "mAssetSupply": "103371038292477661109045745", + "LPTokenSupply": "7815775144778605756955782" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "10209476058516996227072", - "outputQty0": "10304809557170508726978", - "outputQty": "10265528870169294384748", - "swapFee1": "6125685635110197736", - "swapFee2": "4121923822868203490", + "inputQty": "48514485375722273636352", + "outputQty0": "49757220920413464551489", + "outputQty": "49928878470133720978930", + "swapFee1": "29108691225433364181", + "swapFee2": "29854332552248078730", "mpReserves": [ - "64645901970535541023671618", - "26956328151617051593500715", - "20601134643938340704921001" + "57464835749904272683110088", + "9307931587317584017928674", + "36856279094745772530756528" ], "fpReserves": [ - "13044567401411222559104025", - "13993035239570766041928368" + "4187338606061507553624522", + "3780980818726539933892989" ], - "mAssetSupply": "112146651993291014126039527", - "LPTokenSupply": "26764974680571533908072600" + "mAssetSupply": "103321310925889799892572986", + "LPTokenSupply": "7767263570272006026655848" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "8319534052967919386624", - "outputQty0": "8330866970355869080556", - "outputQty": "8328046078126177191945", - "swapFee": "6599074638543859976", + "inputQty": "598302730392721546018816", + "outputQty0": "622365207005461932594523", + "outputQty": "620755751098062613746655", + "swapFee": "485064546590319036971", "mpReserves": [ - "64645901970535541023671618", - "26964647685670019512887339", - "20601134643938340704921001" + "57464835749904272683110088", + "9906234317710305563947490", + "36856279094745772530756528" ], "fpReserves": [ - "13052898268381578428184581", - "13984707193492639864736423" + "4809703813066969486219045", + "3160225067628477320146334" ], - "mAssetSupply": "112154982860261369995120083", - "LPTokenSupply": "26764975340478997762458597" + "mAssetSupply": "103943676132895261825167509", + "LPTokenSupply": "7767312076726665058559545" }, { - "type": "swap_fp_to_mp", - "inputQty": "1568877303302662914048000", - "outputIndex": 0, - "outputQty": "1570195637760459155709782", - "swapFee": "0", - "redemptionFee": "626764412387316309534", + "type": "mint", + "inputIndex": 1, + "inputQty": "148345135663564361564160", + "outputQty0": "153871005339785895551137", + "outputQty": "149773667409196078610460", "mpReserves": [ - "63075706332775081867961836", - "26964647685670019512887339", - "20601134643938340704921001" + "57464835749904272683110088", + "10054579453373869925511650", + "36856279094745772530756528" ], "fpReserves": [ - "11485987237413287654348002", - "15553584496795302778784423" + "4963574818406755381770182", + "3160225067628477320146334" ], - "mAssetSupply": "110588698593705466537593038", - "LPTokenSupply": "26764975340478997762458597" + "mAssetSupply": "104097547138235047720718646", + "LPTokenSupply": "7917085744135861137170005" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "18792068308792967692288", - "outputQty0": "18950677282395423951427", - "outputQty": "18881341087916624505607", - "swapFee1": "11275240985275780615", - "swapFee2": "7580270912958169580", + "type": "mint", + "inputIndex": 0, + "inputQty": "2283919072985460244480", + "outputQty0": "2263412937583899200418", + "outputQty": "2203027835641134435069", "mpReserves": [ - "63075706332775081867961836", - "26964647685670019512887339", - "20582253302850424080415394" + "57467119668977258143354568", + "10054579453373869925511650", + "36856279094745772530756528" ], "fpReserves": [ - "11467036560130892230396575", - "15553584496795302778784423" + "4965838231344339280970600", + "3160225067628477320146334" ], - "mAssetSupply": "110569755496693984071811191", - "LPTokenSupply": "26746184399694303322344370" + "mAssetSupply": "104099810551172631619919064", + "LPTokenSupply": "7919288771971502271605074" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "732115706133173108736", - "outputQty0": "733041239183889392757", - "outputQty": "733992230756860470458", - "swapFee": "581177628754994629", + "inputQty": "97572413599326273536", + "outputQty0": "101153811386511191528", + "outputQty": "100744525045586595151", + "swapFee": "78764059327700169", "mpReserves": [ - "63075706332775081867961836", - "26965379801376152685996075", - "20582253302850424080415394" + "57467119668977258143354568", + "10054677025787469251785186", + "36856279094745772530756528" ], "fpReserves": [ - "11467769601370076119789332", - "15552850504564545918313965" + "4965939385155725792162128", + "3160124323103431733551183" ], - "mAssetSupply": "110570488537933167961203948", - "LPTokenSupply": "26746184457812066197843832" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "251063673779900087533568", - "outputIndex": 1, - "outputQty": "250080166600342272394211", - "swapFee": "0", - "redemptionFee": "100200909163861571444", - "mpReserves": [ - "63075706332775081867961836", - "26715299634775810413601864", - "20582253302850424080415394" - ], - "fpReserves": [ - "11217267328460422191177289", - "15803914178344446005847533" - ], - "mAssetSupply": "110320086465932677894163349", - "LPTokenSupply": "26746184457812066197843832" + "mAssetSupply": "104099911704984018131110592", + "LPTokenSupply": "7919288779847908204375090" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "14062687703756806553600", - "outputQty0": "14081098009876490836453", - "outputQty": "14103278368067021572355", - "swapFee": "11165743667950297308", + "inputIndex": 0, + "inputQty": "556799456805374853120", + "outputQty0": "551800127463203460210", + "outputQty": "549566667763786031535", + "swapFee": "429662541774152023", "mpReserves": [ - "63075706332775081867961836", - "26729362322479567220155464", - "20582253302850424080415394" + "57467676468434063518207688", + "10054677025787469251785186", + "36856279094745772530756528" ], "fpReserves": [ - "11231348426470298682013742", - "15789810899976378984275178" + "4966491185283188995622338", + "3159574756435667947519648" ], - "mAssetSupply": "110334167563942554384999802", - "LPTokenSupply": "26746185574386432992873562" + "mAssetSupply": "104100463505111481334570802", + "LPTokenSupply": "7919288822814162381790292" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1117650706856912", - "outputQty0": "1121295685876792", - "outputQty": "1111419980526398", + "inputQty": "144608467785711811035136", + "outputQty0": "144090666385179491510168", + "outputQty": "140239619516313382834769", "mpReserves": [ - "63075706332775081867961836", - "26729362322479567220155464", - "20582253303968074787272306" + "57467676468434063518207688", + "10054677025787469251785186", + "37000887562531484341791664" ], "fpReserves": [ - "11231348427591594367890534", - "15789810899976378984275178" + "5110581851668368487132506", + "3159574756435667947519648" ], - "mAssetSupply": "110334167565063850070876594", - "LPTokenSupply": "26746185575497852973399960" + "mAssetSupply": "104244554171496660826080970", + "LPTokenSupply": "8059528442330475764625061" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "25366281556172620", - "outputQty0": "25303852125249304", - "outputQty": "25343503430595299", - "swapFee": "20064792678943", + "type": "swap_fp_to_mp", + "inputQty": "941542678815156862976", + "outputIndex": 1, + "outputQty": "910765530777942858871", + "swapFee": "0", + "redemptionFee": "566905286590272856", "mpReserves": [ - "63075706358141363424134456", - "26729362322479567220155464", - "20582253303968074787272306" + "57467676468434063518207688", + "10053766260256691308926315", + "37000887562531484341791664" ], "fpReserves": [ - "11231348452895446493139838", - "15789810874632875553679879" + "5109637009524051365704549", + "3160516299114483104382624" ], - "mAssetSupply": "110334167590367702196125898", - "LPTokenSupply": "26746185575499859452667854" + "mAssetSupply": "104243609896257630294925869", + "LPTokenSupply": "8059528442330475764625061" }, { - "type": "swap_fp_to_mp", - "inputQty": "47732440153853563764736", - "outputIndex": 2, - "outputQty": "47444110035106434811604", - "swapFee": "0", - "redemptionFee": "19047326349316848668", + "type": "mint", + "inputIndex": 2, + "inputQty": "456308101111918976", + "outputQty0": "454664907106760327", + "outputQty": "442493231531933995", "mpReserves": [ - "63075706358141363424134456", - "26729362322479567220155464", - "20534809193932968352460702" + "57467676468434063518207688", + "10053766260256691308926315", + "37000888018839585453710640" ], "fpReserves": [ - "11183730137022154371467469", - "15837543314786729117444615" + "5109637464188958472464876", + "3160516299114483104382624" ], - "mAssetSupply": "110286568321820759391302197", - "LPTokenSupply": "26746185575499859452667854" + "mAssetSupply": "104243610350922537401686196", + "LPTokenSupply": "8059528884823707296559056" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "12732070168503437492224", - "outputQty0": "12773792903672457519249", - "outputQty": "12794423234275808156350", - "swapFee": "10129333477234756172", + "type": "swap_fp_to_mp", + "inputQty": "420690035870241690484736", + "outputIndex": 1, + "outputQty": "405984024782939422387907", + "swapFee": "0", + "redemptionFee": "253080415701554110188", "mpReserves": [ - "63075706358141363424134456", - "26729362322479567220155464", - "20547541264101471789952926" + "57467676468434063518207688", + "9647782235473751886538408", + "37000888018839585453710640" ], "fpReserves": [ - "11196503929925826828986718", - "15824748891552453309288265" + "4687836771353034955484038", + "3581206334984724794867360" ], - "mAssetSupply": "110299342114724431848821446", - "LPTokenSupply": "26746186588433207176143471" + "mAssetSupply": "103822062738502315438815546", + "LPTokenSupply": "8059528884823707296559056" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "44310941985303259250688", - "outputQty0": "44676409146867879946924", - "outputQty": "44768817882264929725391", - "swapFee1": "26586565191181955550", - "swapFee2": "17870563658747151978", + "type": "mint", + "inputIndex": 1, + "inputQty": "16571753490903325474816", + "outputQty0": "17232470994140799328599", + "outputQty": "16782386427407176183529", "mpReserves": [ - "63030937540259098494409065", - "26729362322479567220155464", - "20547541264101471789952926" + "57467676468434063518207688", + "9664353988964655212013224", + "37000888018839585453710640" ], "fpReserves": [ - "11151827520778958949039794", - "15824748891552453309288265" + "4705069242347175754812637", + "3581206334984724794867360" ], - "mAssetSupply": "110254683576141222716026500", - "LPTokenSupply": "26701878305104423035088338" + "mAssetSupply": "103839295209496456238144145", + "LPTokenSupply": "8076311271251114472742585" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "789976044935839875072", - "outputQty0": "796485042739040513506", - "outputQty": "795130195752692892629", - "swapFee1": "473985626961503925", - "swapFee2": "318594017095616205", + "outputIndex": 2, + "inputQty": "324076535157237963816960", + "outputQty0": "332532451955141429871709", + "outputQty": "333597448340013639534178", + "swapFee1": "194445921094342778290", + "swapFee2": "199519471173084857923", "mpReserves": [ - "63030937540259098494409065", - "26728567192283814527262835", - "20547541264101471789952926" + "57467676468434063518207688", + "9664353988964655212013224", + "36667290570499571814176462" ], "fpReserves": [ - "11151031035736219908526288", - "15824748891552453309288265" + "4372536790392034324940928", + "3581206334984724794867360" ], - "mAssetSupply": "110253887409692500771129199", - "LPTokenSupply": "26701088376458049891363658" + "mAssetSupply": "103506962277012487893130359", + "LPTokenSupply": "7752254180685985943203454" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "514631505352664994021376", - "outputQty0": "516264870638419581639289", - "outputQty": "511687273501491618945653", + "inputQty": "246814837885554732826624", + "outputQty0": "245882293602505284611353", + "outputQty": "245246210911902875216589", + "swapFee": "191590178498866130073", "mpReserves": [ - "63030937540259098494409065", - "26728567192283814527262835", - "21062172769454136783974302" + "57467676468434063518207688", + "9664353988964655212013224", + "36914105408385126547003086" ], "fpReserves": [ - "11667295906374639490165577", - "15824748891552453309288265" + "4618419083994539609552281", + "3335960124072821919650771" ], - "mAssetSupply": "110770152280330920352768488", - "LPTokenSupply": "27212775649959541510309311" + "mAssetSupply": "103752844570614993177741712", + "LPTokenSupply": "7752273339703835829816461" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "1528699914500514991046656", - "outputQty0": "1541120045944873539218265", - "outputQty": "1538223036867460537355982", - "swapFee1": "917219948700308994627", - "swapFee2": "616448018377949415687", + "outputIndex": 0, + "inputQty": "4548943031488814", + "outputQty0": "4669142464025821", + "outputQty": "4710328866699097", + "swapFee1": "2729365818893", + "swapFee2": "2801485478415", "mpReserves": [ - "63030937540259098494409065", - "25190344155416353989906853", - "21062172769454136783974302" + "57467676463723734651508591", + "9664353988964655212013224", + "36914105408385126547003086" ], "fpReserves": [ - "10126175860429765950947312", - "15824748891552453309288265" + "4618419079325397145526460", + "3335960124072821919650771" ], - "mAssetSupply": "109229648682404424762965910", - "LPTokenSupply": "25684167457453896550162117" + "mAssetSupply": "103752844565948652199194306", + "LPTokenSupply": "7752273335155165734909536" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "40858309727493292032", - "outputQty0": "40925379458111331443", - "outputQty": "40583956756230994051", + "inputQty": "36656772833295632171008", + "outputQty0": "38108324018850656906308", + "outputQty": "37989439015050270594907", + "swapFee": "29683623327829430460", "mpReserves": [ - "63030937540259098494409065", - "25190385013726081483198885", - "21062172769454136783974302" + "57467676463723734651508591", + "9701010761797950844184232", + "36914105408385126547003086" ], "fpReserves": [ - "10126216785809224062278755", - "15824748891552453309288265" + "4656527403344247802432768", + "3297970685057771649055864" ], - "mAssetSupply": "109229689607783882874297353", - "LPTokenSupply": "25684208041410652781156168" + "mAssetSupply": "103790952889967502856100614", + "LPTokenSupply": "7752276303517498517852582" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "21149091974432031768576", - "outputQty0": "21183759913599363089535", - "outputQty": "21234518491823897590047", - "swapFee": "16805536989648865160", + "inputQty": "2283880502367649529856", + "outputQty0": "2373958157846780493801", + "outputQty": "2366364378049682028657", + "swapFee": "1849042555198510496", "mpReserves": [ - "63030937540259098494409065", - "25211534105700513514967461", - "21062172769454136783974302" + "57467676463723734651508591", + "9703294642300318493714088", + "36914105408385126547003086" ], "fpReserves": [ - "10147400545722823425368290", - "15803514373060629411698218" + "4658901361502094582926569", + "3295604320679721967027207" ], - "mAssetSupply": "109250873367697482237386888", - "LPTokenSupply": "25684209721964351746042684" + "mAssetSupply": "103793326848125349636594415", + "LPTokenSupply": "7752276488421754037703631" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "156667667465215552782336", - "outputQty0": "156921469825300143851603", - "outputQty": "155603523602845665804673", + "inputIndex": 0, + "inputQty": "187168055716280065327104", + "outputQty0": "185423519715600469977201", + "outputQty": "180517843775422220211097", "mpReserves": [ - "63030937540259098494409065", - "25368201773165729067749797", - "21062172769454136783974302" + "57654844519440014716835695", + "9703294642300318493714088", + "36914105408385126547003086" ], "fpReserves": [ - "10304322015548123569219893", - "15803514373060629411698218" + "4844324881217695052903770", + "3295604320679721967027207" ], - "mAssetSupply": "109407794837522782381238491", - "LPTokenSupply": "25839813245567197411847357" + "mAssetSupply": "103978750367840950106571616", + "LPTokenSupply": "7932794332197176257914728" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "138733108436818752", - "outputQty0": "139150243900523364", - "outputQty": "137976283309830346", + "inputIndex": 0, + "inputQty": "6702284808789955706880", + "outputQty0": "6639678001556321321399", + "outputQty": "6463600952585318129297", "mpReserves": [ - "63030937540259098494409065", - "25368201773165729067749797", - "21062172908187245220793054" + "57661546804248804672542575", + "9703294642300318493714088", + "36914105408385126547003086" ], "fpReserves": [ - "10304322154698367469743257", - "15803514373060629411698218" + "4850964559219251374225169", + "3295604320679721967027207" ], - "mAssetSupply": "109407794976673026281761855", - "LPTokenSupply": "25839813383543480721677703" + "mAssetSupply": "103985390045842506427893015", + "LPTokenSupply": "7939257933149761576044025" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "1175350003847041615134720", - "outputQty0": "1184267651799875409891558", - "outputQty": "1181743892274814605408636", - "swapFee1": "705210002308224969080", - "swapFee2": "473707060719950163956", + "outputIndex": 0, + "inputQty": "45502388109337736249344", + "outputQty0": "46713269055596961591877", + "outputQty": "47125242675461573649836", + "swapFee1": "27301432865602641749", + "swapFee2": "28027961433358176955", "mpReserves": [ - "63030937540259098494409065", - "24186457880890914462341161", - "21062172908187245220793054" + "57614421561573343098892739", + "9703294642300318493714088", + "36914105408385126547003086" ], "fpReserves": [ - "9120054502898492059851699", - "15803514373060629411698218" + "4804251290163654412633292", + "3295604320679721967027207" ], - "mAssetSupply": "108224001031933870822034253", - "LPTokenSupply": "24664533900696669929039891" + "mAssetSupply": "103938704804748342824478093", + "LPTokenSupply": "7893758275183710400058855" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "851482328057302089728", - "outputQty0": "853076209356933640804", - "outputQty": "846415390226505447300", + "type": "swap_fp_to_mp", + "inputQty": "2571967822538701537280", + "outputIndex": 2, + "outputQty": "2586993421966043824998", + "swapFee": "0", + "redemptionFee": "1547261186327038333", "mpReserves": [ - "63030937540259098494409065", - "24187309363218971764430889", - "21062172908187245220793054" + "57614421561573343098892739", + "9703294642300318493714088", + "36911518414963160503178088" ], "fpReserves": [ - "9120907579107848993492503", - "15803514373060629411698218" + "4801672521519776015410312", + "3298176288502260668564487" ], - "mAssetSupply": "108224854108143227755675057", - "LPTokenSupply": "24665380316086896434487191" + "mAssetSupply": "103936127583365650754293446", + "LPTokenSupply": "7893758275183710400058855" }, { "type": "mint", "inputIndex": 2, - "inputQty": "52317149671772431319040", - "outputQty0": "52470717844177534460610", - "outputQty": "52060133415003304485620", + "inputQty": "191577002150021595136", + "outputQty0": "190853408889101504784", + "outputQty": "185797713981679094166", "mpReserves": [ - "63030937540259098494409065", - "24187309363218971764430889", - "21114490057859017652112094" + "57614421561573343098892739", + "9703294642300318493714088", + "36911709991965310524773224" ], "fpReserves": [ - "9173378296952026527953113", - "15803514373060629411698218" + "4801863374928665116915096", + "3298176288502260668564487" ], - "mAssetSupply": "108277324825987405290135667", - "LPTokenSupply": "24717440449501899738972811" + "mAssetSupply": "103936318436774539855798230", + "LPTokenSupply": "7893944072897692079153021" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "1034348547042932424704", - "outputQty0": "1041897831188814138322", - "outputQty": "1038442257657085974755", - "swapFee1": "620609128225759454", - "swapFee2": "416759132475525655", + "inputQty": "10282345287611221803008", + "outputQty0": "10555761945715658237063", + "outputQty": "10589409581691891738137", + "swapFee1": "6169407172566733081", + "swapFee2": "6333457167429394942", "mpReserves": [ - "63030937540259098494409065", - "24187309363218971764430889", - "21113451615601360566137339" + "57614421561573343098892739", + "9703294642300318493714088", + "36901120582383618633035087" ], "fpReserves": [ - "9172336399120837713814791", - "15803514373060629411698218" + "4791307612982949458678033", + "3298176288502260668564487" ], - "mAssetSupply": "108276283344915348951523000", - "LPTokenSupply": "24716406163015769629124052" + "mAssetSupply": "103925769008285991626956109", + "LPTokenSupply": "7883662344550798114023321" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "5340334138508758016", "outputIndex": 1, - "inputQty": "281439864080257696", - "outputQty0": "283493890015926977", - "outputQty": "282850300805990063", - "swapFee1": "168863918448154", - "swapFee2": "113397556006370", + "outputQty": "5147466330982118347", + "swapFee": "0", + "redemptionFee": "3212602195895294", "mpReserves": [ - "63030937540259098494409065", - "24187309080368670958440826", - "21113451615601360566137339" + "57614421561573343098892739", + "9703289494833987511595741", + "36901120582383618633035087" ], "fpReserves": [ - "9172336115626947697887814", - "15803514373060629411698218" + "4791302258645956299853237", + "3298181628836399177322503" ], - "mAssetSupply": "108276283061534856491602393", - "LPTokenSupply": "24716405881592791940711171" + "mAssetSupply": "103925763657161600664026607", + "LPTokenSupply": "7883662344550798114023321" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "149523320079602221056", - "outputQty0": "149803592901839614787", - "outputQty": "150293430196386191911", - "swapFee": "118903174647864757", + "type": "redeem", + "outputIndex": 2, + "inputQty": "910827402594141272539136", + "outputQty0": "934736219289032177424415", + "outputQty": "937588687188953352443032", + "swapFee1": "546496441556484763523", + "swapFee2": "560841731573419306454", + "mpReserves": [ + "57614421561573343098892739", + "9703289494833987511595741", + "35963531895194665280592055" + ], + "fpReserves": [ + "3856566039356924122428822", + "3298181628836399177322503" + ], + "mAssetSupply": "102991588279604141905908646", + "LPTokenSupply": "6972889591600812489960537" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "80110859375357793927168", + "outputQty0": "79356672605213983628439", + "outputQty": "77299811259683337628273", "mpReserves": [ - "63030937540259098494409065", - "24187458603688750560661882", - "21113451615601360566137339" + "57694532420948700892819907", + "9703289494833987511595741", + "35963531895194665280592055" ], "fpReserves": [ - "9172485919219849537502601", - "15803364079630433025506307" + "3935922711962138106057261", + "3298181628836399177322503" ], - "mAssetSupply": "108276432865127758331217180", - "LPTokenSupply": "24716405893483109405497646" + "mAssetSupply": "103070944952209355889537085", + "LPTokenSupply": "7050189402860495827588810" }, { "type": "swap_fp_to_mp", - "inputQty": "214571779807346111283200", + "inputQty": "2155965975654812614656", "outputIndex": 2, - "outputQty": "212947592336171800007456", + "outputQty": "2164793694563095379944", "swapFee": "0", - "redemptionFee": "85465711167636533943", + "redemptionFee": "1295109143480409383", "mpReserves": [ - "63030937540259098494409065", - "24187458603688750560661882", - "20900504023265188766129883" + "57694532420948700892819907", + "9703289494833987511595741", + "35961367101500102185212111" ], "fpReserves": [ - "8958821641300758202642982", - "16017935859437779136789507" + "3933764196723004090417515", + "3300337594812053989937159" ], - "mAssetSupply": "108062854052919834632891504", - "LPTokenSupply": "24716405893483109405497646" + "mAssetSupply": "103068787732079365354306722", + "LPTokenSupply": "7050189402860495827588810" }, { "type": "swap_fp_to_mp", - "inputQty": "282957841032961606025216", + "inputQty": "128301438134624605700096", "outputIndex": 0, - "outputQty": "282261553460827285891148", + "outputQty": "129563405809273393170752", "swapFee": "0", - "redemptionFee": "112657150938395318191", + "redemptionFee": "77052822600223130990", "mpReserves": [ - "62748675986798271208517917", - "24187458603688750560661882", - "20900504023265188766129883" + "57564969015139427499649155", + "9703289494833987511595741", + "35961367101500102185212111" ], "fpReserves": [ - "8677178763954769907163006", - "16300893700470740742814723" + "3805342825722632205433132", + "3428639032946678595637255" ], - "mAssetSupply": "107781323832724784732729719", - "LPTokenSupply": "24716405893483109405497646" + "mAssetSupply": "102940443413901593692453329", + "LPTokenSupply": "7050189402860495827588810" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1149781843068163072", - "outputQty0": "1153201563340470932", - "outputQty": "1144777910887652371", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1025519745248265764864", + "outputQty0": "1051968115497649544415", + "outputQty": "1011929159837395946784", + "swapFee1": "615311847148959458", + "swapFee2": "631180869298589726", "mpReserves": [ - "62748675986798271208517917", - "24187458603688750560661882", - "20900505173047031834292955" + "57564969015139427499649155", + "9702277565674150115648957", + "35961367101500102185212111" ], "fpReserves": [ - "8677179917156333247633938", - "16300893700470740742814723" + "3804290857607134555888717", + "3428639032946678595637255" ], - "mAssetSupply": "107781324985926348073200651", - "LPTokenSupply": "24716407038261020293150017" + "mAssetSupply": "102939392076966965341498640", + "LPTokenSupply": "7049163944646432276719891" }, { - "type": "swap_fp_to_mp", - "inputQty": "421382094870758656", - "outputIndex": 2, - "outputQty": "417908685529430149", - "swapFee": "0", - "redemptionFee": "167727748581075", + "type": "mint", + "inputIndex": 2, + "inputQty": "408345895115874883338240", + "outputQty0": "406888713958827201149178", + "outputQty": "396356239594231085508920", "mpReserves": [ - "62748675986798271208517917", - "24187458603688750560661882", - "20900504755138346304862806" + "57564969015139427499649155", + "9702277565674150115648957", + "36369712996615977068550351" ], "fpReserves": [ - "8677179497836961794946210", - "16300894121852835613573379" + "4211179571565961757037895", + "3428639032946678595637255" ], - "mAssetSupply": "107781324566774704369093998", - "LPTokenSupply": "24716407038261020293150017" + "mAssetSupply": "103346280790925792542647818", + "LPTokenSupply": "7445520184240663362228811" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "96842551462443740037120", - "outputQty0": "97019813316008676575888", - "outputQty": "97410580210276241953108", - "swapFee": "77046048952558494467", + "type": "redeem", + "outputIndex": 0, + "inputQty": "555304458882870142828544", + "outputQty0": "569680794149126994542692", + "outputQty": "574685425756407500239450", + "swapFee1": "333182675329722085697", + "swapFee2": "341808476489476196725", "mpReserves": [ - "62748675986798271208517917", - "24284301155151194300699002", - "20900504755138346304862806" + "56990283589383019999409705", + "9702277565674150115648957", + "36369712996615977068550351" ], "fpReserves": [ - "8774199311152970471522098", - "16203483541642559371620271" + "3641498777416834762495203", + "3428639032946678595637255" ], - "mAssetSupply": "107878344380090713045669886", - "LPTokenSupply": "24716414742865915548999463" + "mAssetSupply": "102776941805253155024301851", + "LPTokenSupply": "6890249043625326191608836" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "36588479849553788928", - "outputQty0": "36697488656858138045", - "outputQty": "36842109413382941272", - "swapFee": "29140173617941365", + "type": "swap_fp_to_mp", + "inputQty": "888732785970536148631552", + "outputIndex": 1, + "outputQty": "850995983486890490177758", + "swapFee": "0", + "redemptionFee": "532530617241148107645", "mpReserves": [ - "62748675986798271208517917", - "24284301155151194300699002", - "20900541343618195858651734" + "56990283589383019999409705", + "8851281582187259625471199", + "36369712996615977068550351" ], "fpReserves": [ - "8774236008641627329660143", - "16203446699533145988678999" + "2753947748681587916418846", + "4317371818917214744268807" ], - "mAssetSupply": "107878381077579369903807931", - "LPTokenSupply": "24716414745779932910793599" + "mAssetSupply": "101889923307135149326333139", + "LPTokenSupply": "6890249043625326191608836" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "199468178409162622894080", - "outputQty0": "200055396423320725164423", - "outputQty": "200808911216281279145443", - "swapFee": "158845335491257418500", - "mpReserves": [ - "62748675986798271208517917", - "24284301155151194300699002", - "21100009522027358481545814" - ], - "fpReserves": [ - "8974291405064948054824566", - "16002637788316864709533556" - ], - "mAssetSupply": "108078436474002690628972354", - "LPTokenSupply": "24716430630313482036535449" + "type": "swap_fp_to_mp", + "inputQty": "2169936734855920403611648", + "outputIndex": 2, + "hardLimitError": true }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "13263756822766457716736", - "outputQty0": "13357859301556836210428", - "outputQty": "13328113480067042445165", - "swapFee1": "7958254093659874630", - "swapFee2": "5343143720622734484", + "type": "swap_fp_to_mp", + "inputQty": "117093855783524065345536", + "outputIndex": 0, + "outputQty": "117802762756916692652689", + "swapFee": "0", + "redemptionFee": "70008475399641740247", "mpReserves": [ - "62748675986798271208517917", - "24270973041671127258253837", - "21100009522027358481545814" + "56872480826626103306757016", + "8851281582187259625471199", + "36369712996615977068550351" ], "fpReserves": [ - "8960933545763391218614138", - "16002637788316864709533556" + "2637266956348851682673496", + "4434465674700738809614343" ], - "mAssetSupply": "108065083957844854415496410", - "LPTokenSupply": "24703167669316124944806176" + "mAssetSupply": "101773312523277812734328036", + "LPTokenSupply": "6890249043625326191608836" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "10010131765350992183296", - "outputQty0": "10039225122060396544900", - "outputQty": "9962528890016905814601", + "inputQty": "110263532649149376757760", + "outputQty0": "109792900410544270323484", + "outputQty": "110095388009147353251233", + "swapFee": "85776771802333939010", "mpReserves": [ - "62748675986798271208517917", - "24270973041671127258253837", - "21110019653792709473729110" + "56872480826626103306757016", + "8851281582187259625471199", + "36479976529265126445308111" ], "fpReserves": [ - "8970972770885451615159038", - "16002637788316864709533556" + "2747059856759395952996980", + "4324370286691591456363110" ], - "mAssetSupply": "108075123182966914812041310", - "LPTokenSupply": "24713130198206141850620777" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "13230209796948738048", - "outputIndex": 2, - "outputQty": "13128816856677792153", - "swapFee": "0", - "redemptionFee": "5268888143518735", - "mpReserves": [ - "62748675986798271208517917", - "24270973041671127258253837", - "21110006524975852795936957" - ], - "fpReserves": [ - "8970959598665092818320143", - "16002651018526661658271604" - ], - "mAssetSupply": "108075110016015444158721150", - "LPTokenSupply": "24713130198206141850620777" + "mAssetSupply": "101883105423688357004651520", + "LPTokenSupply": "6890257621302506425002737" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "938465011813035574034432", - "outputQty0": "940083843179247669879383", - "outputQty": "932621709399576332782854", + "inputIndex": 2, + "inputQty": "19254322102404599808", + "outputQty0": "19171821887235609899", + "outputQty": "18717989739219576186", "mpReserves": [ - "62748675986798271208517917", - "25209438053484162832288269", - "21110006524975852795936957" + "56872480826626103306757016", + "8851281582187259625471199", + "36479995783587228849907919" ], "fpReserves": [ - "9911043441844340488199526", - "16002651018526661658271604" + "2747079028581283188606879", + "4324370286691591456363110" ], - "mAssetSupply": "109015193859194691828600533", - "LPTokenSupply": "25645751907605718183403631" + "mAssetSupply": "101883124595510244240261419", + "LPTokenSupply": "6890276339292245644578923" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "36747716068351955435520", - "outputQty0": "36856041330967494272179", - "outputQty": "36954161899617415897129", - "swapFee": "29242501300411173086", + "inputQty": "189369620396508807168", + "outputQty0": "188558210465087446661", + "outputQty": "189024163315138503580", + "swapFee": "147275725144829302", "mpReserves": [ - "62748675986798271208517917", - "25209438053484162832288269", - "21146754241044204751372477" + "56872480826626103306757016", + "8851281582187259625471199", + "36480185153207625358715087" ], "fpReserves": [ - "9947899483175307982471705", - "15965696856627044242374475" + "2747267586791748276053540", + "4324181262528276317859530" ], - "mAssetSupply": "109052049900525659322872712", - "LPTokenSupply": "25645754831855848224520939" + "mAssetSupply": "101883313153720709327708080", + "LPTokenSupply": "6890276354019818159061853" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "32198105765900200", - "outputQty0": "32250344789186292", - "outputQty": "32335367445817321", - "swapFee": "25587636497789", + "type": "swap_fp_to_mp", + "inputQty": "188538460640200523776", + "outputIndex": 1, + "outputQty": "179498131370513159134", + "swapFee": "0", + "redemptionFee": "112753947815359576", "mpReserves": [ - "62748675986798271208517917", - "25209438085682268598188469", - "21146754241044204751372477" + "56872480826626103306757016", + "8851102084055889112312065", + "36480185153207625358715087" ], "fpReserves": [ - "9947899515425652771657997", - "15965696824291676796557154" + "2747079663545389343426536", + "4324369800988916518383306" ], - "mAssetSupply": "109052049932776004112059004", - "LPTokenSupply": "25645754831858406988170717" + "mAssetSupply": "101883125343228298210440652", + "LPTokenSupply": "6890276354019818159061853" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "451608177525152808960", - "outputQty0": "450485999299087591670", - "outputQty": "446773154511616370805", + "type": "swap_fp_to_mp", + "inputQty": "97045829316554160", + "outputIndex": 2, + "outputQty": "97087092688949135", + "swapFee": "0", + "redemptionFee": "58037469820667", "mpReserves": [ - "62749127594975796361326877", - "25209438085682268598188469", - "21146754241044204751372477" + "56872480826626103306757016", + "8851102084055889112312065", + "36480185056120532669765952" ], "fpReserves": [ - "9948350001424951859249667", - "15965696824291676796557154" + "2747079566816272975648091", + "4324369898034745834937466" ], - "mAssetSupply": "109052500418775303199650674", - "LPTokenSupply": "25646201605012918604541522" + "mAssetSupply": "101883125246557219312482874", + "LPTokenSupply": "6890276354019818159061853" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "867737819200626688", - "outputQty0": "870290231913804278", - "outputQty": "872584267692578212", - "swapFee": "690493851227242", + "inputQty": "13830797887822532608", + "outputQty0": "13771533517451150661", + "outputQty": "13445535396411613489", "mpReserves": [ - "62749127594975796361326877", - "25209438085682268598188469", - "21146755108782023951999165" + "56872480826626103306757016", + "8851102084055889112312065", + "36480198886918420492298560" ], "fpReserves": [ - "9948350871715183773053945", - "15965695951707409103978942" + "2747093338349790426798752", + "4324369898034745834937466" ], - "mAssetSupply": "109052501289065535113454952", - "LPTokenSupply": "25646201605081967989664246" + "mAssetSupply": "101883139018090736763633535", + "LPTokenSupply": "6890289799555214570675342" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "33163084353616138469376", - "outputQty0": "33418325388466181816706", - "outputQty": "33306794521490842344568", - "swapFee1": "19897850612169683081", - "swapFee2": "13367330155386472726", + "outputIndex": 0, + "inputQty": "296999657815378407456768", + "outputQty0": "303923291739146287024891", + "outputQty": "306828168683151303026045", + "swapFee1": "178199794689227044474", + "swapFee2": "182353975043487772214", "mpReserves": [ - "62749127594975796361326877", - "25209438085682268598188469", - "21113448314260533109654597" + "56565652657942952003730971", + "8851102084055889112312065", + "36480198886918420492298560" ], "fpReserves": [ - "9914932546326717591237239", - "15965695951707409103978942" + "2443170046610644139773861", + "4324369898034745834937466" ], - "mAssetSupply": "109019096331007224318110972", - "LPTokenSupply": "25613040510513413068163178" + "mAssetSupply": "101579398080326633964380858", + "LPTokenSupply": "6593307961719305085923021" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1175623415548093923328", - "outputQty0": "1184661550089003464657", - "outputQty": "1182271445084205042577", - "swapFee1": "705374049328856353", - "swapFee2": "473864620035601385", + "type": "mint", + "inputIndex": 2, + "inputQty": "799734078211012908023808", + "outputQty0": "796194126496446570501014", + "outputQty": "777225938916949531815382", "mpReserves": [ - "62749127594975796361326877", - "25208255814237184393145892", - "21113448314260533109654597" + "56565652657942952003730971", + "8851102084055889112312065", + "37279932965129433400322368" ], "fpReserves": [ - "9913747884776628587772582", - "15965695951707409103978942" + "3239364173107090710274875", + "4324369898034745834937466" ], - "mAssetSupply": "109017912143321755350247700", - "LPTokenSupply": "25611864957635269907125485" + "mAssetSupply": "102375592206823080534881872", + "LPTokenSupply": "7370533900636254617738403" }, { "type": "mint", "inputIndex": 1, - "inputQty": "32110581827601704", - "outputQty0": "32162631151145789", - "outputQty": "31898111851856049", + "inputQty": "4021664961685527461888", + "outputQty0": "4208810528892340762689", + "outputQty": "4105937196384640265616", "mpReserves": [ - "62749127594975796361326877", - "25208255846347766220747596", - "21113448314260533109654597" + "56565652657942952003730971", + "8855123749017574639773953", + "37279932965129433400322368" ], "fpReserves": [ - "9913747916939259738918371", - "15965695951707409103978942" + "3243572983635983051037564", + "4324369898034745834937466" ], - "mAssetSupply": "109017912175484386501393489", - "LPTokenSupply": "25611864989533381758981534" + "mAssetSupply": "102379801017351972875644561", + "LPTokenSupply": "7374639837832639258004019" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "97293043916784025600", "outputIndex": 0, - "inputQty": "867555248575828852736", - "outputQty0": "874224510822944552568", - "outputQty": "876054543514410714092", - "swapFee1": "520533149145497311", - "swapFee2": "349689804329177821", + "outputQty": "98019769630923754374", + "swapFee": "0", + "redemptionFee": "58260901337226943", "mpReserves": [ - "62748251540432281950612785", - "25208255846347766220747596", - "21113448314260533109654597" + "56565554638173321079976597", + "8855123749017574639773953", + "37279932965129433400322368" ], "fpReserves": [ - "9912873692428436794365803", - "15965695951707409103978942" + "3243475882133754339465449", + "4324467191078662618963066" ], - "mAssetSupply": "109017038300663367886018742", - "LPTokenSupply": "25610997486338120844678529" + "mAssetSupply": "102379703974110645501299389", + "LPTokenSupply": "7374639837832639258004019" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "46048005519188156219392", - "outputQty0": "46183611809243087060863", - "outputQty": "46305268513358184544585", - "swapFee": "36642587980362380650", + "inputIndex": 1, + "inputQty": "245156351929972722499584", + "outputQty0": "256255373714996209984641", + "outputQty": "256429931085994412860366", + "swapFee": "199961702455434574932", "mpReserves": [ - "62748251540432281950612785", - "25208255846347766220747596", - "21159496319779721265873989" + "56565554638173321079976597", + "9100280100947547362273537", + "37279932965129433400322368" ], "fpReserves": [ - "9959057304237679881426666", - "15919390683194050919434357" + "3499731255848750549450090", + "4068037259992668206102700" ], - "mAssetSupply": "109063221912472610973079605", - "LPTokenSupply": "25611001150596918880916594" + "mAssetSupply": "102635959347825641711284030", + "LPTokenSupply": "7374659834002884801461512" }, { "type": "swap_fp_to_mp", - "inputQty": "139453052439989", - "outputIndex": 1, - "outputQty": "138699145737651", + "inputQty": "246352572014941470720", + "outputIndex": 2, + "outputQty": "247034322725459797656", "swapFee": "0", - "redemptionFee": "55591956768", + "redemptionFee": "147662874004255094", "mpReserves": [ - "62748251540432281950612785", - "25208255846209067075009945", - "21159496319779721265873989" + "56565554638173321079976597", + "9100280100947547362273537", + "37279685930806707940524712" ], "fpReserves": [ - "9959057304098699989506105", - "15919390683333503971874346" + "3499485151058743457626000", + "4068283612564683147573420" ], - "mAssetSupply": "109063221912333686673115812", - "LPTokenSupply": "25611001150596918880916594" + "mAssetSupply": "102635713390698508623715034", + "LPTokenSupply": "7374659834002884801461512" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "9220491213978531266560", - "outputQty0": "9197587996405106036837", - "outputQty": "9121550054927569039100", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "90259945144902664323072", + "outputQty0": "94198621496901750881708", + "outputQty": "94202112725856534244182", + "swapFee": "73472127900221033203", "mpReserves": [ - "62757472031646260481879345", - "25208255846209067075009945", - "21159496319779721265873989" + "56565554638173321079976597", + "9190540046092450026596609", + "37279685930806707940524712" ], "fpReserves": [ - "9968254892095105095542942", - "15919390683333503971874346" + "3593683772555645208507708", + "3974081499838826613329238" ], - "mAssetSupply": "109072419500330091779152649", - "LPTokenSupply": "25620122700651846449955694" + "mAssetSupply": "102729912012195410374596742", + "LPTokenSupply": "7374667181215674823564832" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "267966351480491737088", - "outputQty0": "270038653440302039431", - "outputQty": "269492984062605384330", - "swapFee1": "160779810888295042", - "swapFee2": "108015461376120815", + "outputIndex": 2, + "inputQty": "1389961992741259313152", + "outputQty0": "1424999193401081168412", + "outputQty": "1430289407799374131158", + "swapFee1": "833977195644755587", + "swapFee2": "854999516040648701", "mpReserves": [ - "62757472031646260481879345", - "25207986353225004469625615", - "21159496319779721265873989" + "56565554638173321079976597", + "9190540046092450026596609", + "37278255641398908566393554" ], "fpReserves": [ - "9967984853441664793503511", - "15919390683333503971874346" + "3592258773362244127339296", + "3974081499838826613329238" ], - "mAssetSupply": "109072149569692112853234033", - "LPTokenSupply": "25619854750378347047048110" + "mAssetSupply": "102728487868001525334077031", + "LPTokenSupply": "7373277302620653128727238" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "8054172936220595716096", - "outputQty0": "8116441554077084737241", - "outputQty": "8089418908017466723946", - "swapFee1": "4832503761732357429", - "swapFee2": "3246576621630833894", + "inputQty": "641764492697580358074368", + "outputQty0": "657701960548665231944867", + "outputQty": "660081325313378819410054", + "swapFee1": "385058695618548214844", + "swapFee2": "394621176329199139166", "mpReserves": [ - "62757472031646260481879345", - "25207986353225004469625615", - "21151406900871703799150043" + "56565554638173321079976597", + "9190540046092450026596609", + "36618174316085529746983500" ], "fpReserves": [ - "9959868411887587708766270", - "15919390683333503971874346" + "2934556812813578895394429", + "3974081499838826613329238" ], - "mAssetSupply": "109064036374714657399330686", - "LPTokenSupply": "25611801060692502624567756" + "mAssetSupply": "102071180528629189301271330", + "LPTokenSupply": "6731551315792634625474354" }, { "type": "swap_fp_to_mp", - "inputQty": "595012245409003601920", - "outputIndex": 0, - "outputQty": "594233022299828486465", + "inputQty": "49242643952988688744448", + "outputIndex": 1, + "outputQty": "47082031369680189768105", "swapFee": "0", - "redemptionFee": "237197420634702254", + "redemptionFee": "29480828612997054238", "mpReserves": [ - "62756877798623960653392880", - "25207986353225004469625615", - "21151406900871703799150043" + "56565554638173321079976597", + "9143458014722769836828504", + "36618174316085529746983500" ], "fpReserves": [ - "9959275418336000953131174", - "15919985695578912975476266" + "2885422098458583804996167", + "4023324143791815302073686" ], - "mAssetSupply": "109063443618360491278397844", - "LPTokenSupply": "25611801060692502624567756" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "79025108042506", - "outputQty0": "79153409130402", - "outputQty": "78499217747965", - "mpReserves": [ - "62756877798623960653392880", - "25207986353304029577668121", - "21151406900871703799150043" - ], - "fpReserves": [ - "9959275418415154362261576", - "15919985695578912975476266" - ], - "mAssetSupply": "109063443618439644687528246", - "LPTokenSupply": "25611801060771001842315721" + "mAssetSupply": "102022075295102807207927306", + "LPTokenSupply": "6731551315792634625474354" }, { "type": "swap_fp_to_mp", - "inputQty": "31789222428176654336", - "outputIndex": 2, - "outputQty": "31575835946622088496", + "inputQty": "5220411187726274002944", + "outputIndex": 1, + "outputQty": "4989589486776909119109", "swapFee": "0", - "redemptionFee": "12672543020264092", + "redemptionFee": "3125002282772145369", "mpReserves": [ - "62756877798623960653392880", - "25207986353304029577668121", - "21151375325035757177061547" + "56565554638173321079976597", + "9138468425235992927709395", + "36618174316085529746983500" ], "fpReserves": [ - "9959243737057603702031566", - "15920017484801341152130602" + "2880213761320630229381133", + "4028544554979541576076630" ], - "mAssetSupply": "109063411949754637047562328", - "LPTokenSupply": "25611801060771001842315721" + "mAssetSupply": "102016870082967136404457641", + "LPTokenSupply": "6731551315792634625474354" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "9503958722913478115328", - "outputQty0": "9577387827731627246369", - "outputQty": "9545472428628718427918", - "swapFee1": "5702375233748086869", - "swapFee2": "3830955131092650898", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1601745635450436190208", + "outputQty0": "1595107773975663771027", + "outputQty": "1597539546916927605302", + "swapFee": "1245041199284000061", "mpReserves": [ - "62756877798623960653392880", - "25207986353304029577668121", - "21141829852607128458633629" + "56565554638173321079976597", + "9138468425235992927709395", + "36619776061720980183173708" ], "fpReserves": [ - "9949666349229872074785197", - "15920017484801341152130602" + "2881808869094605893152160", + "4026947015432624648471328" ], - "mAssetSupply": "109053838392882036512966857", - "LPTokenSupply": "25602297672285611739009079" + "mAssetSupply": "102018465190741112068228668", + "LPTokenSupply": "6731551440296754553874360" }, { - "type": "swap_fp_to_mp", - "inputQty": "80662605238268248195072", - "outputIndex": 0, - "outputQty": "80551598913934663080586", - "swapFee": "0", - "redemptionFee": "32153481407327356017", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "100437754543928602787840", + "outputQty0": "99462357800605766662062", + "outputQty": "99591686224388941642200", + "swapFee": "77628081070330533205", "mpReserves": [ - "62676326199710025990312294", - "25207986353304029577668121", - "21141829852607128458633629" + "56665992392717249682764437", + "9138468425235992927709395", + "36619776061720980183173708" ], "fpReserves": [ - "9869282645711553684742085", - "16000680090039609400325674" + "2981271226895211659814222", + "3927355329208235706829128" ], - "mAssetSupply": "108973486842845125450279762", - "LPTokenSupply": "25602297672285611739009079" + "mAssetSupply": "102117927548541717834890730", + "LPTokenSupply": "6731559203104861586927680" }, { "type": "mint", "inputIndex": 0, - "inputQty": "65086543062584556257280", - "outputQty0": "64924931579518156586934", - "outputQty": "64392017590360890784986", + "inputQty": "17764224443771", + "outputQty0": "17591510817292", + "outputQty": "17158994483996", "mpReserves": [ - "62741412742772610546569574", - "25207986353304029577668121", - "21141829852607128458633629" + "56665992392735013907208208", + "9138468425235992927709395", + "36619776061720980183173708" ], "fpReserves": [ - "9934207577291071841329019", - "16000680090039609400325674" + "2981271226912803170631514", + "3927355329208235706829128" ], - "mAssetSupply": "109038411774424643606866696", - "LPTokenSupply": "25666689689875972629794065" + "mAssetSupply": "102117927548559309345708022", + "LPTokenSupply": "6731559203122020581411676" }, { - "type": "swap_fp_to_mp", - "inputQty": "33044368964927643648", - "outputIndex": 2, - "outputQty": "32820365390565023263", - "swapFee": "0", - "redemptionFee": "13172042675142642", + "type": "mint", + "inputIndex": 2, + "inputQty": "2831486412252727", + "outputQty0": "2819773163619456", + "outputQty": "2750444385539219", "mpReserves": [ - "62741412742772610546569574", - "25207986353304029577668121", - "21141797032241737893610366" + "56665992392735013907208208", + "9138468425235992927709395", + "36619776064552466595426435" ], "fpReserves": [ - "9934174647184383984721580", - "16000713134408574327969322" + "2981271229732576334250970", + "3927355329208235706829128" ], - "mAssetSupply": "109038378857489998425401899", - "LPTokenSupply": "25666689689875972629794065" + "mAssetSupply": "102117927551379082509327478", + "LPTokenSupply": "6731559205872464966950895" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "31565052716685461553152", - "outputQty0": "31657755588365383822489", - "outputQty": "31397093304072261105311", + "type": "swap_fp_to_mp", + "inputQty": "2830918797138900", + "outputIndex": 1, + "outputQty": "2706577692222415", + "swapFee": "0", + "redemptionFee": "1695355576433", "mpReserves": [ - "62741412742772610546569574", - "25207986353304029577668121", - "21173362084958423355163518" + "56665992392735013907208208", + "9138468422529415235486980", + "36619776064552466595426435" ], "fpReserves": [ - "9965832402772749368544069", - "16000713134408574327969322" + "2981271226906983706861801", + "3927355332039154503968028" ], - "mAssetSupply": "109070036613078363809224388", - "LPTokenSupply": "25698086783180044890899376" + "mAssetSupply": "102117927548555185237514742", + "LPTokenSupply": "6731559205872464966950895" }, { - "type": "swap_fp_to_mp", - "inputQty": "67003144647038270963712", - "outputIndex": 0, - "outputQty": "66909374167463745896643", - "swapFee": "0", - "redemptionFee": "26708059977595000693", + "type": "redeem", + "outputIndex": 1, + "inputQty": "79607498535362150400", + "outputQty0": "81565143242264293436", + "outputQty": "78129563801946481589", + "swapFee1": "47764499121217290", + "swapFee2": "48939085945358576", "mpReserves": [ - "62674503368605146800672931", - "25207986353304029577668121", - "21173362084958423355163518" + "56665992392735013907208208", + "9138390292965613289005391", + "36619776064552466595426435" ], "fpReserves": [ - "9899062252828761866809436", - "16067716279055612598933034" + "2981189661763741442568365", + "3927355332039154503968028" ], - "mAssetSupply": "109003293171194353902490448", - "LPTokenSupply": "25698086783180044890899376" + "mAssetSupply": "102117846032351028918579882", + "LPTokenSupply": "6731479603150379516922224" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "98532982477983563382784", - "outputQty0": "98288531889221697597631", - "outputQty": "98550428493363611840407", - "swapFee": "77985205893306272953", + "inputIndex": 1, + "inputQty": "11390084142520718065664", + "outputQty0": "11883199170312724673725", + "outputQty": "11895774214297824653223", + "swapFee": "9272749882825265149", "mpReserves": [ - "62773036351083130364055715", - "25207986353304029577668121", - "21173362084958423355163518" + "56665992392735013907208208", + "9149780377108134007071055", + "36619776064552466595426435" ], "fpReserves": [ - "9997350784717983564407067", - "15969165850562248987092627" + "2993072860934054167242090", + "3915459557824856679314805" ], - "mAssetSupply": "109101581703083575600088079", - "LPTokenSupply": "25698094581700634221526671" + "mAssetSupply": "102129729231521341643253607", + "LPTokenSupply": "6731480530425367799448738" }, { - "type": "swap_fp_to_mp", - "inputQty": "147105231708668932653056", + "type": "redeem", "outputIndex": 0, - "outputQty": "146897510718068609866885", - "swapFee": "0", - "redemptionFee": "58636768659836894906", + "inputQty": "3286164822872778866688", + "outputQty0": "3367068812229436982705", + "outputQty": "3398043986443736149223", + "swapFee1": "1971698893723667320", + "swapFee2": "2020241287337662189", "mpReserves": [ - "62626138840365061754188830", - "25207986353304029577668121", - "21173362084958423355163518" + "56662594348748570171058985", + "9149780377108134007071055", + "36619776064552466595426435" ], "fpReserves": [ - "9850758863068391327140769", - "16116271082270917919745683" + "2989705792121824730259385", + "3915459557824856679314805" ], - "mAssetSupply": "108955048418202643199716687", - "LPTokenSupply": "25698094581700634221526671" + "mAssetSupply": "102126364182950399543933091", + "LPTokenSupply": "6728194562772384392948782" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "153634362625342799872", - "outputQty0": "153254106900206495816", - "outputQty": "152005843320706069145", + "type": "redeem", + "outputIndex": 0, + "inputQty": "2414602476188922806272", + "outputQty0": "2474039721764741115105", + "outputQty": "2496797880469812982589", + "swapFee1": "1448761485713353683", + "swapFee2": "1484423833058844669", "mpReserves": [ - "62626292474727687096988702", - "25207986353304029577668121", - "21173362084958423355163518" + "56660097550868100358076396", + "9149780377108134007071055", + "36619776064552466595426435" ], "fpReserves": [ - "9850912117175291533636585", - "16116271082270917919745683" + "2987231752400059989144280", + "3915459557824856679314805" ], - "mAssetSupply": "108955201672309543406212503", - "LPTokenSupply": "25698246587543954927595816" + "mAssetSupply": "102123891627652467861662655", + "LPTokenSupply": "6725780105172344041477878" }, { - "type": "swap_fp_to_mp", - "inputQty": "2338247248334420705280", - "outputIndex": 2, - "outputQty": "2322127971555274494411", - "swapFee": "0", - "redemptionFee": "931936978883888145", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "8016206728090009731072", + "outputQty0": "7983095397751437661998", + "outputQty": "7991317350727443162462", + "swapFee": "6229280716372628975", "mpReserves": [ - "62626292474727687096988702", - "25207986353304029577668121", - "21171039956986868080669107" + "56660097550868100358076396", + "9149780377108134007071055", + "36627792271280556605157507" ], "fpReserves": [ - "9848582274728081813272998", - "16118609329519252340450963" + "2995214847797811426806278", + "3907468240474129236152343" ], - "mAssetSupply": "108952872761799312569737061", - "LPTokenSupply": "25698246587543954927595816" + "mAssetSupply": "102131874723050219299324653", + "LPTokenSupply": "6725780728100415678740775" }, { "type": "mint", "inputIndex": 0, - "inputQty": "144884960036872400142336", - "outputQty0": "144525699506481336848924", - "outputQty": "143343182537909883928330", + "inputQty": "204905135293068457541632", + "outputQty0": "202911159737526383609501", + "outputQty": "197887684783546308758071", "mpReserves": [ - "62771177434764559497131038", - "25207986353304029577668121", - "21171039956986868080669107" + "56865002686161168815618028", + "9149780377108134007071055", + "36627792271280556605157507" ], "fpReserves": [ - "9993107974234563150121922", - "16118609329519252340450963" + "3198126007535337810415779", + "3907468240474129236152343" ], - "mAssetSupply": "109097398461305793906585985", - "LPTokenSupply": "25841589770081864811524146" + "mAssetSupply": "102334785882787745682934154", + "LPTokenSupply": "6923668412883961987498846" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "2452616148467883442176", - "outputQty0": "2471459857057013474906", - "outputQty": "2463240464988134172237", - "swapFee1": "1471569689080730065", - "swapFee2": "988583942822805389", + "type": "mint", + "inputIndex": 2, + "inputQty": "954300598613488143695872", + "outputQty0": "950241539330635312570787", + "outputQty": "926150695203108501417351", "mpReserves": [ - "62771177434764559497131038", - "25207986353304029577668121", - "21168576716521879946496870" + "56865002686161168815618028", + "9149780377108134007071055", + "37582092869894044748853379" ], "fpReserves": [ - "9990636514377506136647016", - "16118609329519252340450963" + "4148367546865973122986566", + "3907468240474129236152343" ], - "mAssetSupply": "109094927990032679715916468", - "LPTokenSupply": "25839137301090365836154976" + "mAssetSupply": "103285027422118380995504941", + "LPTokenSupply": "7849819108087070488916197" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "77441419011350100705280", - "outputQty0": "77248860163589906342366", - "outputQty": "76612360448487133494377", + "type": "redeem", + "outputIndex": 2, + "inputQty": "5068808293219032064", + "outputQty0": "5199717603719297269", + "outputQty": "5219506832153358918", + "swapFee1": "3041284975931419", + "swapFee2": "3119830562231578", "mpReserves": [ - "62848618853775909597836318", - "25207986353304029577668121", - "21168576716521879946496870" + "56865002686161168815618028", + "9149780377108134007071055", + "37582087650387212595494461" ], "fpReserves": [ - "10067885374541096042989382", - "16118609329519252340450963" + "4148362347148369403689297", + "3907468240474129236152343" ], - "mAssetSupply": "109172176850196269622258834", - "LPTokenSupply": "25915749661538852969649353" + "mAssetSupply": "103285022225520607838439250", + "LPTokenSupply": "7849814039582905767477274" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "306676082936246114975744", - "outputQty0": "307166147509616093352096", - "outputQty": "307905418740845836425756", - "swapFee": "243684151600803085582", + "type": "mint", + "inputIndex": 2, + "inputQty": "2673156939785504292864", + "outputQty0": "2661423121933136067823", + "outputQty": "2592859178795839198224", "mpReserves": [ - "62848618853775909597836318", - "25514662436240275692643865", - "21168576716521879946496870" + "56865002686161168815618028", + "9149780377108134007071055", + "37584760807326998099787325" ], "fpReserves": [ - "10375051522050712136341478", - "15810703910778406504025207" + "4151023770270302539757120", + "3907468240474129236152343" ], - "mAssetSupply": "109479342997705885715610930", - "LPTokenSupply": "25915774029954013049957911" + "mAssetSupply": "103287683648642540974507073", + "LPTokenSupply": "7852406898761701606675498" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "460334873826554", - "outputQty0": "461055553325710", - "outputQty": "462070994682279", - "swapFee": "365703071132", + "inputIndex": 2, + "inputQty": "8879084093080526127104", + "outputQty0": "8840094952418062055543", + "outputQty": "8829352250419751617090", + "swapFee": "6889853407130058135", "mpReserves": [ - "62848618853775909597836318", - "25514662436700610566470419", - "21168576716521879946496870" + "56865002686161168815618028", + "9149780377108134007071055", + "37593639891420078625914429" ], "fpReserves": [ - "10375051522511767689667188", - "15810703910316335509342928" + "4159863865222720601812663", + "3898638888223709484535253" ], - "mAssetSupply": "109479342998166941268936640", - "LPTokenSupply": "25915774029954049620265024" + "mAssetSupply": "103296523743594959036562616", + "LPTokenSupply": "7852407587747042319681311" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "17935617730869209333760", "outputIndex": 2, - "inputQty": "297923715602955", - "outputQty0": "300302576055953", - "outputQty": "299296646841687", - "swapFee1": "178754229361", - "swapFee2": "120121030422", + "outputQty": "18011104239653792048449", + "swapFee": "0", + "redemptionFee": "10765682451540321850", "mpReserves": [ - "62848618853775909597836318", - "25514662436700610566470419", - "21168576716222583299655183" + "56865002686161168815618028", + "9149780377108134007071055", + "37575628787180424833865980" ], "fpReserves": [ - "10375051522211465113611235", - "15810703910316335509342928" + "4141921061136820065394967", + "3916574505954578693869013" ], - "mAssetSupply": "109479342997866758813911109", - "LPTokenSupply": "25915774029656143780085005" + "mAssetSupply": "103278591705191510040466770", + "LPTokenSupply": "7852407587747042319681311" }, { - "type": "swap_fp_to_mp", - "inputQty": "404544489857020657139712", - "outputIndex": 0, - "outputQty": "404054967400179629314234", - "swapFee": "0", - "redemptionFee": "161289556349092977994", + "type": "mint", + "inputIndex": 1, + "inputQty": "7554819420463522906112", + "outputQty0": "7887888974196817870353", + "outputQty": "7684754699987821741524", "mpReserves": [ - "62444563886375729968522084", - "25514662436700610566470419", - "21168576716222583299655183" + "56865002686161168815618028", + "9157335196528597529977167", + "37575628787180424833865980" ], "fpReserves": [ - "9971827631338732668625888", - "16215248400173356166482640" + "4149808950111016883265320", + "3916574505954578693869013" ], - "mAssetSupply": "109076280396550375461903756", - "LPTokenSupply": "25915774029656143780085005" + "mAssetSupply": "103286479594165706858337123", + "LPTokenSupply": "7860092342447030141422835" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "418269757546578378752", - "outputQty0": "419491571385345227865", - "outputQty": "420644952236271599945", - "swapFee": "332846028134968395", + "inputIndex": 0, + "inputQty": "72811090621031571456", + "outputQty0": "72106573517226127148", + "outputQty": "72021246482320147367", + "swapFee": "56199534631155299", "mpReserves": [ - "62444563886375729968522084", - "25514662436700610566470419", - "21168994985980129878033935" + "56865075497251789847189484", + "9157335196528597529977167", + "37575628787180424833865980" ], "fpReserves": [ - "9972247122910118013853753", - "16214827755221119894882695" + "4149881056684534109392468", + "3916502484708096373721646" ], - "mAssetSupply": "109076699888121760807131621", - "LPTokenSupply": "25915774062940746593581844" + "mAssetSupply": "103286551700739224084464271", + "LPTokenSupply": "7860092348066983604538364" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "2098891654720758218752", - "outputQty0": "2114945012255723548506", - "outputQty": "2107940884750452321407", - "swapFee1": "1259334992832454931", - "swapFee2": "845978004902289419", + "outputIndex": 1, + "inputQty": "291795798666067786596352", + "outputQty0": "299294115035406988603862", + "outputQty": "286108895785492858029645", + "swapFee1": "175077479199640671957", + "swapFee2": "179576469021244193162", "mpReserves": [ - "62444563886375729968522084", - "25514662436700610566470419", - "21166887045095379425712528" + "56865075497251789847189484", + "8871226300743104671947522", + "37575628787180424833865980" ], "fpReserves": [ - "9970132177897862290305247", - "16214827755221119894882695" + "3850586941649127120788606", + "3916502484708096373721646" ], - "mAssetSupply": "109074585789087509985872534", - "LPTokenSupply": "25913675297219525118608585" + "mAssetSupply": "102987437162172838340053571", + "LPTokenSupply": "7568314057148835782009207" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1432961833323667128320", - "outputQty0": "1443920509596894218637", - "outputQty": "1446879336492860051108", - "swapFee1": "859777099994200276", - "swapFee2": "577568203838757687", + "type": "mint", + "inputIndex": 1, + "inputQty": "118941461946089997336576", + "outputQty0": "124447659583074517557643", + "outputQty": "121263227928204487461278", "mpReserves": [ - "62443117007039237108470976", - "25514662436700610566470419", - "21166887045095379425712528" + "56865075497251789847189484", + "8990167762689194669284098", + "37575628787180424833865980" ], "fpReserves": [ - "9968688257388265396086610", - "16214827755221119894882695" + "3975034601232201638346249", + "3916502484708096373721646" ], - "mAssetSupply": "109073142446146116930411584", - "LPTokenSupply": "25912242421363911450900292" + "mAssetSupply": "103111884821755912857611214", + "LPTokenSupply": "7689577285077040269470485" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "56688987837952983826432", - "outputQty0": "56775866719436991554839", - "outputQty": "56310319794146691697283", + "inputQty": "160163785342756788895744", + "outputQty0": "167354478295398357628788", + "outputQty": "167157068872732505683359", + "swapFee": "130442029796126278654", "mpReserves": [ - "62443117007039237108470976", - "25571351424538563550296851", - "21166887045095379425712528" + "56865075497251789847189484", + "9150331548031951458179842", + "37575628787180424833865980" ], "fpReserves": [ - "10025464124107702387641449", - "16214827755221119894882695" + "4142389079527599995975037", + "3749345415835363868038287" ], - "mAssetSupply": "109129918312865553921966423", - "LPTokenSupply": "25968552741158058142597575" + "mAssetSupply": "103279239300051311215240002", + "LPTokenSupply": "7689590329280019882098350" }, { - "type": "swap_fp_to_mp", - "inputQty": "83652581127440973824", - "outputIndex": 2, - "outputQty": "83083998293100468364", - "swapFee": "0", - "redemptionFee": "33344134773182122", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "9516338073431166681088", + "outputQty0": "9474578030805329254264", + "outputQty": "9460571932970713007354", + "swapFee": "7383158887810160186", "mpReserves": [ - "62443117007039237108470976", - "25571351424538563550296851", - "21166803961097086325244164" + "56865075497251789847189484", + "9150331548031951458179842", + "37585145125253856000547068" ], "fpReserves": [ - "10025380763770769432336188", - "16214911407802247335856519" + "4151863657558405325229301", + "3739884843902393155030933" ], - "mAssetSupply": "109129834985872755739843284", - "LPTokenSupply": "25968552741158058142597575" + "mAssetSupply": "103288713878082116544494266", + "LPTokenSupply": "7689591067595908663114368" }, { "type": "swap_fp_to_mp", - "inputQty": "211933945458233448595456", + "inputQty": "699669067117425664", "outputIndex": 2, - "outputQty": "210454249537583862944450", + "outputQty": "702820637719477653", "swapFee": "0", - "redemptionFee": "84464770143876664326", + "redemptionFee": "420093384268501", "mpReserves": [ - "62443117007039237108470976", - "25571351424538563550296851", - "20956349711559502462299714" + "56865075497251789847189484", + "9150331548031951458179842", + "37585144422433218281069415" ], "fpReserves": [ - "9814218838411077771520222", - "16426845353260480784451975" + "4151862957402764877726154", + "3739885543571460272456597" ], - "mAssetSupply": "108918757525283207955691644", - "LPTokenSupply": "25968552741158058142597575" + "mAssetSupply": "103288713178346569481259620", + "LPTokenSupply": "7689591067595908663114368" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "81088234266981216288768", - "outputQty0": "81693588923921737823669", - "outputQty": "81862134246025296595553", - "swapFee1": "48652940560188729773", - "swapFee2": "32677435569568695129", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "170867601466952384512", + "outputQty0": "178406936788129462725", + "outputQty": "178140272515453784890", + "swapFee": "139023621574347205", "mpReserves": [ - "62361254872793211811875423", - "25571351424538563550296851", - "20956349711559502462299714" + "56865075497251789847189484", + "9150502415633418410564354", + "37585144422433218281069415" ], "fpReserves": [ - "9732525249487156033696553", - "16426845353260480784451975" + "4152041364339553007188879", + "3739707403298944818671707" ], - "mAssetSupply": "108837096613794855786563104", - "LPTokenSupply": "25887469372185132945181784" + "mAssetSupply": "103288891585283357610722345", + "LPTokenSupply": "7689591081498270820549088" }, { "type": "mint", "inputIndex": 0, - "inputQty": "861733843269688448", - "outputQty0": "859617743602428043", - "outputQty": "852754686825221385", + "inputQty": "860764913629796155523072", + "outputQty0": "852349392681722115974678", + "outputQty": "829989860125669338300512", "mpReserves": [ - "62361255734527055081563871", - "25571351424538563550296851", - "20956349711559502462299714" + "57725840410881586002712556", + "9150502415633418410564354", + "37585144422433218281069415" ], "fpReserves": [ - "9732526109104899636124596", - "16426845353260480784451975" + "5004390757021275123163557", + "3739707403298944818671707" ], - "mAssetSupply": "108837097473412599388991147", - "LPTokenSupply": "25887470224939819770403169" + "mAssetSupply": "104141240977965079726697023", + "LPTokenSupply": "8519580941623940158849600" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "79038788453999799435264", - "outputQty0": "79157493641698165885633", - "outputQty": "78523713430961115721674", + "type": "swap_fp_to_mp", + "inputQty": "98080424250002309120", + "outputIndex": 1, + "outputQty": "93983742988576126232", + "swapFee": "0", + "redemptionFee": "58965922599068621", "mpReserves": [ - "62361255734527055081563871", - "25650390212992563349732115", - "20956349711559502462299714" + "57725840410881586002712556", + "9150408431890429834438122", + "37585144422433218281069415" ], "fpReserves": [ - "9811683602746597802010229", - "16426845353260480784451975" + "5004292480483610008794129", + "3739805483723194820980827" ], - "mAssetSupply": "108916254967054297554876780", - "LPTokenSupply": "25965993938370780886124843" + "mAssetSupply": "104141142760393337211396216", + "LPTokenSupply": "8519580941623940158849600" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "126259828007962", - "outputQty0": "127205423078862", - "outputQty": "126774908837135", - "swapFee1": "75755896804", - "swapFee2": "50882169231", + "outputIndex": 1, + "inputQty": "3367684785077917057024", + "outputQty0": "3457309830897854834905", + "outputQty": "3306239435597170462915", + "swapFee1": "2020610871046750234", + "swapFee2": "2074385898538712900", "mpReserves": [ - "62361255734527055081563871", - "25650390212992563349732115", - "20956349711432727553462579" + "57725840410881586002712556", + "9147102192454832663975207", + "37585144422433218281069415" ], "fpReserves": [ - "9811683602619392378931367", - "16426845353260480784451975" + "5000835170652712153959224", + "3739805483723194820980827" ], - "mAssetSupply": "108916254966927143013967149", - "LPTokenSupply": "25965993938244528633706561" + "mAssetSupply": "104137687524948337895274211", + "LPTokenSupply": "8516213458899949346467599" }, { - "type": "swap_fp_to_mp", - "inputQty": "92131662162874974208", - "outputIndex": 2, - "outputQty": "91471259844820145279", - "swapFee": "0", - "redemptionFee": "36712755236333813", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "9996511507965303324672", + "outputQty0": "9953215619219655059290", + "outputQty": "9925289789143152401459", + "swapFee": "7751484812391039447", "mpReserves": [ - "62361255734527055081563871", - "25650390212992563349732115", - "20956258240172882733317300" + "57725840410881586002712556", + "9147102192454832663975207", + "37595140933941183584394087" ], "fpReserves": [ - "9811591820731301544398282", - "16426937484922643659426183" + "5010788386271931809018514", + "3729880193934051668579368" ], - "mAssetSupply": "108916163221751807415767877", - "LPTokenSupply": "25965993938244528633706561" + "mAssetSupply": "104147640740567557550333501", + "LPTokenSupply": "8516214234048430585571543" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "24001523827329795620864", - "outputQty0": "24037318005472092575834", - "outputQty": "23844157502596561510550", + "inputIndex": 0, + "inputQty": "35476564361140340", + "outputQty0": "35126266641980583", + "outputQty": "34194649606020580", "mpReserves": [ - "62361255734527055081563871", - "25674391736819893145352979", - "20956258240172882733317300" + "57725840446358150363852896", + "9147102192454832663975207", + "37595140933941183584394087" ], "fpReserves": [ - "9835629138736773636974116", - "16426937484922643659426183" + "5010788421398198450999097", + "3729880193934051668579368" ], - "mAssetSupply": "108940200539757279508343711", - "LPTokenSupply": "25989838095747125195217111" + "mAssetSupply": "104147640775693824192314084", + "LPTokenSupply": "8516214268243080191592123" }, { - "type": "swap_fp_to_mp", - "inputQty": "241999954121404219392", - "outputIndex": 2, - "outputQty": "240270171494573984331", - "swapFee": "0", - "redemptionFee": "96434573503306782", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "307643429670746675216384", + "outputQty0": "304595354082788640923133", + "outputQty": "303569536506829938028605", + "swapFee": "237191242449540978122", "mpReserves": [ - "62361255734527055081563871", - "25674391736819893145352979", - "20956017970001388159332969" + "58033483876028897039069280", + "9147102192454832663975207", + "37595140933941183584394087" ], "fpReserves": [ - "9835388052303015370018221", - "16427179484876765063645575" + "5315383775480987091922230", + "3426310657427221730550763" ], - "mAssetSupply": "108939959549758094744694598", - "LPTokenSupply": "25989838095747125195217111" + "mAssetSupply": "104452236129776612833237217", + "LPTokenSupply": "8516237987367325145689935" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "44821087858813327900672", - "outputQty0": "44955015374692833349981", - "outputQty": "45087795704219412710209", - "swapFee": "35674320855278484019", + "type": "redeem", + "outputIndex": 0, + "inputQty": "39472197466301646503936", + "outputQty0": "40542382985330963902212", + "outputQty": "40924730585053293883266", + "swapFee1": "23683318479780987902", + "swapFee2": "24325429791198578341", "mpReserves": [ - "62361255734527055081563871", - "25674391736819893145352979", - "21000839057860201487233641" + "57992559145443843745186014", + "9147102192454832663975207", + "37595140933941183584394087" ], "fpReserves": [ - "9880343067677708203368202", - "16382091689172545650935366" + "5274841392495656128020018", + "3426310657427221730550763" ], - "mAssetSupply": "108984914565132787578044579", - "LPTokenSupply": "25989841663179210723065512" + "mAssetSupply": "104411718072221073067913346", + "LPTokenSupply": "8476768158232871477284789" }, { "type": "mint", "inputIndex": 2, - "inputQty": "317281470433817984", - "outputQty0": "318227019243555310", - "outputQty": "315654496735609892", + "inputQty": "486128747023073286291456", + "outputQty0": "483998448326978570807723", + "outputQty": "470875574857965273032086", "mpReserves": [ - "62361255734527055081563871", - "25674391736819893145352979", - "21000839375141671921051625" + "57992559145443843745186014", + "9147102192454832663975207", + "38081269680964256870685543" ], "fpReserves": [ - "9880343385904727446923512", - "16382091689172545650935366" + "5758839840822634698827741", + "3426310657427221730550763" ], - "mAssetSupply": "108984914883359806821599889", - "LPTokenSupply": "25989841978833707458675404" + "mAssetSupply": "104895716520548051638721069", + "LPTokenSupply": "8947643733090836750316875" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "2073411542808579840", - "outputQty0": "2089055255290716658", - "outputQty": "2093336923403383835", - "swapFee1": "1244046925685147", - "swapFee2": "835622102116286", + "outputIndex": 1, + "inputQty": "498039536445391962112", + "outputQty0": "511685759491844423481", + "outputQty": "489017010859955694641", + "swapFee1": "298823721867235177", + "swapFee2": "307011455695106654", "mpReserves": [ - "62361253641190131678180036", - "25674391736819893145352979", - "21000839375141671921051625" + "57992559145443843745186014", + "9146613175443972708280566", + "38081269680964256870685543" ], "fpReserves": [ - "9880341296849472156206854", - "16382091689172545650935366" + "5758328155063142854404260", + "3426310657427221730550763" ], - "mAssetSupply": "108984912795140173632999517", - "LPTokenSupply": "25989839905546569342664078" + "mAssetSupply": "104895205141800015489404242", + "LPTokenSupply": "8947145723436763545078280" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "289820390670414206992384", - "outputQty0": "290669533341814935907687", - "outputQty": "291458768479421281143610", - "swapFee": "230637517492612452501", + "type": "swap_fp_to_mp", + "inputQty": "548441551756189239345152", + "outputIndex": 0, + "outputQty": "555108330984982253571920", + "swapFee": "0", + "redemptionFee": "329986555398862400734", "mpReserves": [ - "62361253641190131678180036", - "25674391736819893145352979", - "21290659765812086128044009" + "57437450814458861491614094", + "9146613175443972708280566", + "38081269680964256870685543" ], "fpReserves": [ - "10171010830191287092114541", - "16090632920693124369791756" + "5208350562731705519847252", + "3974752209183410969895915" ], - "mAssetSupply": "109275582328481988568907204", - "LPTokenSupply": "25989862969298318603909328" + "mAssetSupply": "104345557536023977017247968", + "LPTokenSupply": "8947145723436763545078280" }, { - "type": "swap_fp_to_mp", - "inputQty": "58479525250270387765248", - "outputIndex": 1, - "outputQty": "58172601610251689833250", - "swapFee": "0", - "redemptionFee": "23313567786409145789", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "25010778380655612", + "outputQty0": "26139499006586926", + "outputQty": "26070451291237873", + "swapFee": "20358012327904", "mpReserves": [ - "62361253641190131678180036", - "25616219135209641455519729", - "21290659765812086128044009" + "57437450814458861491614094", + "9146613200454751088936178", + "38081269680964256870685543" ], "fpReserves": [ - "10112726910725264227641854", - "16149112445943394757557004" + "5208350588871204526434178", + "3974752183112959678658042" ], - "mAssetSupply": "109217321722583752113580306", - "LPTokenSupply": "25989862969298318603909328" + "mAssetSupply": "104345557562163476023834894", + "LPTokenSupply": "8947145723438799346311070" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "31763406282687934464", - "outputQty0": "32009783155682717491", - "outputQty": "31948457557329302265", - "swapFee1": "19058043769612760", - "swapFee2": "12803913262273086", + "type": "mint", + "inputIndex": 2, + "inputQty": "405427765352804843520", + "outputQty0": "403607091819856226160", + "outputQty": "392922467201394280282", "mpReserves": [ - "62361253641190131678180036", - "25616187186752084126217464", - "21290659765812086128044009" + "57437450814458861491614094", + "9146613200454751088936178", + "38081675108729609675529063" ], "fpReserves": [ - "10112694900942108544924363", - "16149112445943394757557004" + "5208754195963024382660338", + "3974752183112959678658042" ], - "mAssetSupply": "109217289725604509693135901", - "LPTokenSupply": "25989831207797840292936140" + "mAssetSupply": "104345961169255295880061054", + "LPTokenSupply": "8947538645906000740591352" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "3435627231608072830976", "outputIndex": 0, - "inputQty": "2422698360198767575040", - "outputQty0": "2441488763271512539716", - "outputQty": "2446434625140937394925", - "swapFee1": "1453619016119260545", - "swapFee2": "976595505308605015", + "outputQty": "3473849698172636464973", + "swapFee": "0", + "redemptionFee": "2065172205098646422", "mpReserves": [ - "62358807206564990740785111", - "25616187186752084126217464", - "21290659765812086128044009" + "57433976964760688855149121", + "9146613200454751088936178", + "38081675108729609675529063" ], "fpReserves": [ - "10110253412178837032384647", - "16149112445943394757557004" + "5205312242287859971955826", + "3978187810344567751489018" ], - "mAssetSupply": "109214849213436743489201200", - "LPTokenSupply": "25987408654799543137287154" + "mAssetSupply": "104342521280752336568002964", + "LPTokenSupply": "8947538645906000740591352" }, { "type": "swap_fp_to_mp", - "inputQty": "82845083622256377069568", - "outputIndex": 0, - "outputQty": "82726843547336967398420", + "inputQty": "180682063619884908544", + "outputIndex": 1, + "outputQty": "173093947715426063623", "swapFee": "0", - "redemptionFee": "33023922132578103777", + "redemptionFee": "108608235319171128", "mpReserves": [ - "62276080363017653773386691", - "25616187186752084126217464", - "21290659765812086128044009" + "57433976964760688855149121", + "9146440106507035662872555", + "38081675108729609675529063" ], "fpReserves": [ - "10027693606847391772940157", - "16231957529565651134626572" + "5205131228562328020075482", + "3978368492408187636397562" ], - "mAssetSupply": "109132322432027430807860487", - "LPTokenSupply": "25987408654799543137287154" + "mAssetSupply": "104342340375635039935293748", + "LPTokenSupply": "8947538645906000740591352" }, { "type": "swap_fp_to_mp", - "inputQty": "14482504118526772510720", + "inputQty": "7904177966535400226816", "outputIndex": 1, - "outputQty": "14404070456194704248686", + "outputQty": "7571853416793792061933", "swapFee": "0", - "redemptionFee": "5772664005680439423", + "redemptionFee": "4751150628551275954", "mpReserves": [ - "62276080363017653773386691", - "25601783116295889421968778", - "21290659765812086128044009" + "57433976964760688855149121", + "9138868253090241870810622", + "38081675108729609675529063" ], "fpReserves": [ - "10013261946833190674381924", - "16246440033684177907137292" + "5197212644181409226817665", + "3986272670374723036624378" ], - "mAssetSupply": "109117896544677235389741677", - "LPTokenSupply": "25987408654799543137287154" + "mAssetSupply": "104334426542404749693311885", + "LPTokenSupply": "8947538645906000740591352" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "16262712481658850770944", - "outputQty0": "16223400054127755193954", - "outputQty": "16267511824476198808658", - "swapFee": "12872123607452974015", + "type": "redeem", + "outputIndex": 0, + "inputQty": "4683735341016631214080", + "outputQty0": "4808128697325818266999", + "outputQty": "4852721310224092552663", + "swapFee1": "2810241204609978728", + "swapFee2": "2884877218395490960", "mpReserves": [ - "62292343075499312624157635", - "25601783116295889421968778", - "21290659765812086128044009" + "57429124243450464762596458", + "9138868253090241870810622", + "38081675108729609675529063" ], "fpReserves": [ - "10029485346887318429575878", - "16230172521859701708328634" + "5192404515484083408550666", + "3986272670374723036624378" ], - "mAssetSupply": "109134119944731363144935631", - "LPTokenSupply": "25987409942011903882584555" + "mAssetSupply": "104329621298584642270535846", + "LPTokenSupply": "8942855191589104570375144" }, { "type": "mint", "inputIndex": 1, - "inputQty": "141921572192553141272576", - "outputQty0": "142134844073412094321009", - "outputQty": "140960768501219017247266", + "inputQty": "152652474348082003968", + "outputQty0": "159551703739245188338", + "outputQty": "155330786174941512294", "mpReserves": [ - "62292343075499312624157635", - "25743704688488442563241354", - "21290659765812086128044009" + "57429124243450464762596458", + "9139020905564589952814590", + "38081675108729609675529063" ], "fpReserves": [ - "10171620190960730523896887", - "16230172521859701708328634" + "5192564067187822653739004", + "3986272670374723036624378" ], - "mAssetSupply": "109276254788804775239256640", - "LPTokenSupply": "26128370710513122899831821" + "mAssetSupply": "104329780850288381515724184", + "LPTokenSupply": "8943010522375279511887438" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "40928260089208129978368", - "outputQty0": "41045751197929888737128", - "outputQty": "40704767894552889553791", + "type": "swap_fp_to_mp", + "inputQty": "1984529907011609165824", + "outputIndex": 2, + "outputQty": "1995884494050776320981", + "swapFee": "0", + "redemptionFee": "1192861613094498638", "mpReserves": [ - "62292343075499312624157635", - "25743704688488442563241354", - "21331588025901294258022377" + "57429124243450464762596458", + "9139020905564589952814590", + "38079679224235558899208082" ], "fpReserves": [ - "10212665942158660412634015", - "16230172521859701708328634" + "5190575964499331822675253", + "3988257200281734645790202" ], - "mAssetSupply": "109317300540002705127993768", - "LPTokenSupply": "26169075478407675789385612" + "mAssetSupply": "104327793940461503779159071", + "LPTokenSupply": "8943010522375279511887438" }, { "type": "swap_fp_to_mp", - "inputQty": "50221577972393", - "outputIndex": 2, - "outputQty": "49890756694708", + "inputQty": "468510340795787", + "outputIndex": 0, + "outputQty": "473705025006349", "swapFee": "0", - "redemptionFee": "20021461638", + "redemptionFee": "281611391267", "mpReserves": [ - "62292343075499312624157635", - "25743704688488442563241354", - "21331588025851403501327669" + "57429124242976759737590109", + "9139020905564589952814590", + "38079679224235558899208082" ], "fpReserves": [ - "10212665942108606758538712", - "16230172521909923286301027" + "5190575964029979503896841", + "3988257200750244986585989" ], - "mAssetSupply": "109317300539952671495360103", - "LPTokenSupply": "26169075478407675789385612" + "mAssetSupply": "104327793939992433071771926", + "LPTokenSupply": "8943010522375279511887438" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "185662689408405949382656", - "outputQty0": "187098564910014069139492", - "outputQty": "186483791016610601909566", - "swapFee1": "111397613645043569629", - "swapFee2": "74839425964005627655", + "inputQty": "2996705792588837814272", + "outputQty0": "3076279402463241059950", + "outputQty": "3088318333474426190480", + "swapFee1": "1798023475553302688", + "swapFee2": "1845767641477944635", "mpReserves": [ - "62292343075499312624157635", - "25743704688488442563241354", - "21145104234834792899418103" + "57429124242976759737590109", + "9139020905564589952814590", + "38076590905902084473017602" ], "fpReserves": [ - "10025567377198592689399220", - "16230172521909923286301027" + "5187499684627516262836891", + "3988257200750244986585989" ], - "mAssetSupply": "109130276814468621431848266", - "LPTokenSupply": "25983423928760634344359918" + "mAssetSupply": "104324719506357611308656611", + "LPTokenSupply": "8940013996385038229403434" }, { - "type": "swap_fp_to_mp", - "inputQty": "720420417370471006208", - "outputIndex": 1, - "outputQty": "716549367725295800450", - "swapFee": "0", - "redemptionFee": "287158987863713572", + "type": "redeem", + "outputIndex": 2, + "inputQty": "3748608586229464064", + "outputQty0": "3848145111514715282", + "outputQty": "3863203041712108832", + "swapFee1": "2249165151737678", + "swapFee2": "2308887066908829", "mpReserves": [ - "62292343075499312624157635", - "25742988139120717267440904", - "21145104234834792899418103" + "57429124242976759737590109", + "9139020905564589952814590", + "38076587042699042760908770" ], "fpReserves": [ - "10024849479728933405468717", - "16230892942327293757307235" + "5187495836482404748121609", + "3988257200750244986585989" ], - "mAssetSupply": "109129559204157950011631335", - "LPTokenSupply": "25983423928760634344359918" + "mAssetSupply": "104324715660521386860850158", + "LPTokenSupply": "8940010248001368515113137" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "34018053274444759040000", - "outputQty0": "34279255918250693417686", - "outputQty": "34214764337439386490892", - "swapFee1": "20410831964666855424", - "swapFee2": "13711702367300277367", + "inputQty": "322895822891941691392", + "outputQty0": "331469618202047167712", + "outputQty": "316947016043716794513", + "swapFee1": "193737493735165014", + "swapFee2": "198881770921228300", "mpReserves": [ - "62292343075499312624157635", - "25708773374783277880950012", - "21145104234834792899418103" + "57429124242976759737590109", + "9138703958548546236020077", + "38076587042699042760908770" ], "fpReserves": [ - "9990570223810682712051031", - "16230892942327293757307235" + "5187164366864202700953897", + "3988257200750244986585989" ], - "mAssetSupply": "109095293659942066618491016", - "LPTokenSupply": "25949407916569386052005460" + "mAssetSupply": "104324384389784955734910746", + "LPTokenSupply": "8939687371552225946938246" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "184296429341326062911488", - "outputQty0": "185700544954059607583046", - "outputQty": "186076383764058697929240", - "swapFee1": "110577857604795637746", - "swapFee2": "74280217981623843033", + "inputQty": "95613265861522", + "outputQty0": "98152059981470", + "outputQty": "99062364076145", + "swapFee1": "57367959516", + "swapFee2": "58891235988", "mpReserves": [ - "62106266691735253926228395", - "25708773374783277880950012", - "21145104234834792899418103" + "57429124242877697373513964", + "9138703958548546236020077", + "38076587042699042760908770" ], "fpReserves": [ - "9804869678856623104467985", - "16230892942327293757307235" + "5187164366766050640972427", + "3988257200750244986585989" ], - "mAssetSupply": "108909667395205988634751003", - "LPTokenSupply": "25765122545013820468657746" + "mAssetSupply": "104324384389686862566165264", + "LPTokenSupply": "8939687371456618417872675" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3927338275825790", - "outputQty0": "3938757891604590", - "outputQty": "3950207014027608", - "swapFee": "3125453288731", + "type": "redeem", + "outputIndex": 0, + "inputQty": "233426282712621767458816", + "outputQty0": "239606790487310156757242", + "outputQty": "241822562625776884916168", + "swapFee1": "140055769627573060475", + "swapFee2": "143764074292386094054", "mpReserves": [ - "62106266691735253926228395", - "25708773374783277880950012", - "21145104238762131175243893" + "57187301680251920488597796", + "9138703958548546236020077", + "38076587042699042760908770" ], "fpReserves": [ - "9804869682795380996072575", - "16230892938377086743279627" + "4947557576278740484215185", + "3988257200750244986585989" ], - "mAssetSupply": "108909667399144746526355593", - "LPTokenSupply": "25765122545014133013986619" + "mAssetSupply": "104084921363273844795502076", + "LPTokenSupply": "8706275094320959407719906" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "384410675282606848", - "outputQty0": "384977875887306794", - "outputQty": "386096923699717302", - "swapFee": "305484724184907", + "inputIndex": 2, + "inputQty": "12979987895103418007552", + "outputQty0": "12921391017496887526394", + "outputQty": "12892017804925096890050", + "swapFee": "10064995119477981736", "mpReserves": [ - "62106266691735253926228395", - "25708773759193953163556860", - "21145104238762131175243893" + "57187301680251920488597796", + "9138703958548546236020077", + "38089567030594146178916322" ], "fpReserves": [ - "9804870067773256883379369", - "16230892552280163043562325" + "4960478967296237371741579", + "3975365182945319889695939" ], - "mAssetSupply": "108909667784122622413662387", - "LPTokenSupply": "25765122545044681486405109" + "mAssetSupply": "104097842754291341683028470", + "LPTokenSupply": "8706276100820471355518079" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "16213782654867329777664", - "outputQty0": "16174642674703812004494", - "outputQty": "16221468793111277562124", - "swapFee": "12834721491937184668", + "inputIndex": 1, + "inputQty": "4045109141558738288640", + "outputQty0": "4226830327884317005646", + "outputQty": "4217106868901291975217", + "swapFee": "3292394823986042212", "mpReserves": [ - "62122480474390121256006059", - "25708773759193953163556860", - "21145104238762131175243893" + "57187301680251920488597796", + "9142749067690104974308717", + "38089567030594146178916322" ], "fpReserves": [ - "9821044710447960695383863", - "16214671083487051766000201" + "4964705797624121688747225", + "3971148076076418597720722" ], - "mAssetSupply": "108925842426797326225666881", - "LPTokenSupply": "25765123828516830680123575" + "mAssetSupply": "104102069584619226000034116", + "LPTokenSupply": "8706276430059953754122300" }, { "type": "swap_fp_to_mp", - "inputQty": "387904569388214339502080", - "outputIndex": 0, - "outputQty": "387144626911185146562348", + "inputQty": "60142071616088504", + "outputIndex": 1, + "outputQty": "57609869107144353", "swapFee": "0", - "redemptionFee": "154547535449130362537", + "redemptionFee": "36139753740894", "mpReserves": [ - "61735335847478936109443711", - "25708773759193953163556860", - "21145104238762131175243893" + "57187301680251920488597796", + "9142749010080235867164364", + "38089567030594146178916322" ], "fpReserves": [ - "9434675871825134789039725", - "16602575652875266105502281" + "4964705737391198787256038", + "3971148136218490213809226" ], - "mAssetSupply": "108539628135709949449685280", - "LPTokenSupply": "25765123828516830680123575" + "mAssetSupply": "104102069524422442852283823", + "LPTokenSupply": "8706276430059953754122300" }, { "type": "swap_fp_to_mp", - "inputQty": "246354023453044494041088", - "outputIndex": 2, - "outputQty": "244447045853874090677790", + "inputQty": "4447726482799369650176", + "outputIndex": 1, + "outputQty": "4260346130479679503256", "swapFee": "0", - "redemptionFee": "98103064228666065843", + "redemptionFee": "2672648199733161404", "mpReserves": [ - "61735335847478936109443711", - "25708773759193953163556860", - "20900657192908257084566103" + "57187301680251920488597796", + "9138488663949756187661108", + "38089567030594146178916322" ], "fpReserves": [ - "9189418211253469624431924", - "16848929676328310599543369" + "4960251323724976851582279", + "3975595862701289583459402" ], - "mAssetSupply": "108294468578202512951143322", - "LPTokenSupply": "25765123828516830680123575" + "mAssetSupply": "104097617783404420649771468", + "LPTokenSupply": "8706276430059953754122300" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "3944972001878705963008", - "outputQty0": "3956635043708920854792", - "outputQty": "3926930240299597562531", + "inputIndex": 1, + "inputQty": "107990554786942844928", + "outputQty0": "112844182665063525327", + "outputQty": "109871952079476015907", "mpReserves": [ - "61735335847478936109443711", - "25708773759193953163556860", - "20904602164910135790529111" + "57187301680251920488597796", + "9138596654504543130506036", + "38089567030594146178916322" ], "fpReserves": [ - "9193374846297178545286716", - "16848929676328310599543369" + "4960364167907641915107606", + "3975595862701289583459402" ], - "mAssetSupply": "108298425213246221871998114", - "LPTokenSupply": "25769050758757130277686106" + "mAssetSupply": "104097730627587085713296795", + "LPTokenSupply": "8706386302012033230138207" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "2391788972035922944", + "outputQty0": "2455017283873734164", + "outputQty": "2477652166134813131", + "swapFee1": "1435073383221553", + "swapFee2": "1473010370324240", + "mpReserves": [ + "57187299202599754353784665", + "9138596654504543130506036", + "38089567030594146178916322" + ], + "fpReserves": [ + "4960361712890358041373442", + "3975595862701289583459402" + ], + "mAssetSupply": "104097728174042812209886871", + "LPTokenSupply": "8706383910366568532537418" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "924251672965226168320", - "outputQty0": "922020106091082705759", - "outputQty": "925582626294524444576", - "swapFee": "732077115303806269", + "inputQty": "9996558844248993792", + "outputQty0": "9899290958586507205", + "outputQty": "9876590452985316460", + "swapFee": "7710840598346140", "mpReserves": [ - "61736260099151901335612031", - "25708773759193953163556860", - "20904602164910135790529111" + "57187309199158598602778457", + "9138596654504543130506036", + "38089567030594146178916322" ], "fpReserves": [ - "9194296866403269627992475", - "16848004093702016075098793" + "4960371612181316627880647", + "3975585986110836598142942" ], - "mAssetSupply": "108299347233352312954703873", - "LPTokenSupply": "25769050831964841808066732" + "mAssetSupply": "104097738073333770796394076", + "LPTokenSupply": "8706383911137652592372032" }, { - "type": "swap_fp_to_mp", - "inputQty": "52095038550119325696", - "outputIndex": 2, - "outputQty": "51679551895274526481", - "swapFee": "0", - "redemptionFee": "20741219824836549", + "type": "redeem", + "outputIndex": 1, + "inputQty": "944948798681319804502016", + "outputQty0": "969607898096384149232236", + "outputQty": "922943706316542001769340", + "swapFee1": "566969279208791882701", + "swapFee2": "581764738857830489539", "mpReserves": [ - "61736260099151901335612031", - "25708773759193953163556860", - "20904550485358240516002630" + "57187309199158598602778457", + "8215652948188001128736696", + "38089567030594146178916322" ], "fpReserves": [ - "9194245013353707536618600", - "16848056188740566194424489" + "3990763714084932478648411", + "3975585986110836598142942" ], - "mAssetSupply": "108299295401043970688166547", - "LPTokenSupply": "25769050831964841808066732" + "mAssetSupply": "103128711939976244477651379", + "LPTokenSupply": "7761491809384253667058286" }, { - "type": "swap_fp_to_mp", - "inputQty": "2844320281725244614377472", - "outputIndex": 2, - "outputQty": "2811010153984693396652932", - "swapFee": "0", - "redemptionFee": "1128812374999987379106", + "type": "mint", + "inputIndex": 2, + "inputQty": "6838178684823366795264", + "outputQty0": "6802243551735159110400", + "outputQty": "6627219007080549427603", + "mpReserves": [ + "57187309199158598602778457", + "8215652948188001128736696", + "38096405209278969545711586" + ], + "fpReserves": [ + "3997565957636667637758811", + "3975585986110836598142942" + ], + "mAssetSupply": "103135514183527979636761779", + "LPTokenSupply": "7768119028391334216485889" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1274690847998237474816", + "outputQty0": "1267990711150494494570", + "outputQty": "1266927389154393078574", + "swapFee": "988288531310201103", + "mpReserves": [ + "57187309199158598602778457", + "8215652948188001128736696", + "38097679900126967783186402" + ], + "fpReserves": [ + "3998833948347818132253381", + "3974319058721682205064368" + ], + "mAssetSupply": "103136782174239130131256349", + "LPTokenSupply": "7768119127220187347505999" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "351910576880813814579200", + "outputQty0": "370640090109819161511809", + "outputQty": "361048628232149464848396", "mpReserves": [ - "61736260099151901335612031", - "25708773759193953163556860", - "18093540331373547119349698" + "57187309199158598602778457", + "8567563525068814943315896", + "38097679900126967783186402" ], "fpReserves": [ - "6372214075853739088851327", - "19692376470465810808801961" + "4369474038457637293765190", + "3974319058721682205064368" ], - "mAssetSupply": "105478393275919002227778380", - "LPTokenSupply": "25769050831964841808066732" + "mAssetSupply": "103507422264348949292768158", + "LPTokenSupply": "8129167755452336812354395" }, { "type": "swap_fp_to_mp", - "inputQty": "45233828461029034557440", + "inputQty": "50642419376096165888", "outputIndex": 0, - "outputQty": "44779779735798734304504", + "outputQty": "51175279499057065253", "swapFee": "0", - "redemptionFee": "17870239609834140593", + "redemptionFee": "30404600246746949", "mpReserves": [ - "61691480319416102601307527", - "25708773759193953163556860", - "18093540331373547119349698" + "57187258023879099545713204", + "8567563525068814943315896", + "38097679900126967783186402" ], "fpReserves": [ - "6327538476829153737367095", - "19737610298926839843359401" + "4369423364123892715515660", + "3974369701141058301230256" ], - "mAssetSupply": "105433735547134026710434741", - "LPTokenSupply": "25769050831964841808066732" + "mAssetSupply": "103507371620419804961265577", + "LPTokenSupply": "8129167755452336812354395" }, { "type": "swap_fp_to_mp", - "inputQty": "374830884715882507927552", + "inputQty": "260137385515021414432768", "outputIndex": 0, - "outputQty": "370696986774042641281109", + "outputQty": "262757380912816560872599", "swapFee": "0", - "redemptionFee": "147935844016113756263", + "redemptionFee": "156115937863980207713", "mpReserves": [ - "61320783332642059960026418", - "25708773759193953163556860", - "18093540331373547119349698" + "56924500642966282984840605", + "8567563525068814943315896", + "38097679900126967783186402" ], "fpReserves": [ - "5957698866788869346707972", - "20112441183642722351286953" + "4109230134350592369326723", + "4234507086656079715663024" ], - "mAssetSupply": "105064043872937758433531881", - "LPTokenSupply": "25769050831964841808066732" + "mAssetSupply": "103247334506584368595284353", + "LPTokenSupply": "8129167755452336812354395" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "9125304867957734", - "outputQty0": "9162820185617163", - "outputQty": "9287770701703345", - "swapFee": "7326094469721", + "type": "swap_fp_to_mp", + "inputQty": "27890313231599342190592", + "outputIndex": 1, + "outputQty": "26517048292416588543379", + "swapFee": "0", + "redemptionFee": "16730116945962428478", "mpReserves": [ - "61320783332642059960026418", - "25708773759193953163556860", - "18093540340498851987307432" + "56924500642966282984840605", + "8541046476776398354772517", + "38097679900126967783186402" ], "fpReserves": [ - "5957698875951689532325135", - "20112441174354951649583608" + "4081346606107321655196266", + "4262397399887679057853616" ], - "mAssetSupply": "105064043882100578619149044", - "LPTokenSupply": "25769050831965574417513704" + "mAssetSupply": "103219467708458043843582374", + "LPTokenSupply": "8129167755452336812354395" }, { - "type": "swap_fp_to_mp", - "inputQty": "15468403120273764", - "outputIndex": 1, - "outputQty": "15222979056633593", - "swapFee": "0", - "redemptionFee": "6099237956610", + "type": "redeem", + "outputIndex": 0, + "inputQty": "230833643003681345372160", + "outputQty0": "236725704291582629388137", + "outputQty": "239052452229991418901457", + "swapFee1": "138500185802208807223", + "swapFee2": "142035422574949577632", "mpReserves": [ - "61320783332642059960026418", - "25708773743970974106923267", - "18093540340498851987307432" + "56685448190736291565939148", + "8541046476776398354772517", + "38097679900126967783186402" ], "fpReserves": [ - "5957698860703594640799066", - "20112441189823354769857372" + "3844620901815739025808129", + "4262397399887679057853616" ], - "mAssetSupply": "105064043866858582965579585", - "LPTokenSupply": "25769050831965574417513704" + "mAssetSupply": "102982884039589036163771869", + "LPTokenSupply": "7898347962467235687862957" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "36526729162109271146496", - "outputQty0": "36428070539735255486931", - "outputQty": "36921231002706531250144", - "swapFee": "29124233122968995769", + "type": "redeem", + "outputIndex": 0, + "inputQty": "240808786329054975361024", + "outputQty0": "246904378247508114696227", + "outputQty": "249317027059650684227816", + "swapFee1": "144485271797432985216", + "swapFee2": "148142626948504868817", "mpReserves": [ - "61357310061804169231172914", - "25708773743970974106923267", - "18093540340498851987307432" + "56436131163676640881711332", + "8541046476776398354772517", + "38097679900126967783186402" ], "fpReserves": [ - "5994126931243329896285997", - "20075519958820648238607228" + "3597716523568230911111902", + "4262397399887679057853616" ], - "mAssetSupply": "105100471937398318221066516", - "LPTokenSupply": "25769053744388886714413280" + "mAssetSupply": "102736127803968476553944459", + "LPTokenSupply": "7657553624665360455800454" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "635632576991597279838208", - "outputQty0": "635007441372158647494578", - "outputQty": "633918702023280998030055", - "swapFee1": "381379546194958367902", - "swapFee2": "254002976548863458997", + "type": "mint", + "inputIndex": 1, + "inputQty": "517042349948866754772992", + "outputQty0": "541662212838140751944507", + "outputQty": "527892619102917541159373", "mpReserves": [ - "61357310061804169231172914", - "25074855041947693108893212", - "18093540340498851987307432" + "56436131163676640881711332", + "9058088826725265109545509", + "38097679900126967783186402" ], "fpReserves": [ - "5359119489871171248791419", - "20075519958820648238607228" + "4139378736406371663056409", + "4262397399887679057853616" ], - "mAssetSupply": "104465718499002708437030935", - "LPTokenSupply": "25133459305351908930411862" + "mAssetSupply": "103277790016806617305888966", + "LPTokenSupply": "8185446243768277996959827" }, { - "type": "swap_fp_to_mp", - "inputQty": "188929764885428076544", + "type": "redeem", "outputIndex": 1, - "outputQty": "185386980594391458538", - "swapFee": "0", - "redemptionFee": "74287090490041550", + "inputQty": "2612716106269473280", + "outputQty0": "2679893696792640512", + "outputQty": "2563127571730856863", + "swapFee1": "1567629663761683", + "swapFee2": "1607936218075584", "mpReserves": [ - "61357310061804169231172914", - "25074669654967098717434674", - "18093540340498851987307432" + "56436131163676640881711332", + "9058086263597693378688646", + "38097679900126967783186402" ], "fpReserves": [ - "5358933772144946144915386", - "20075708888585533666683772" + "4139376056512674870415897", + "4262397399887679057853616" ], - "mAssetSupply": "104465532855563573823196452", - "LPTokenSupply": "25133459305351908930411862" + "mAssetSupply": "103277787338520856731324038", + "LPTokenSupply": "8185443631208934693862715" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "20112384704710671597568", - "outputQty0": "20140164589869451110914", - "outputQty": "20470685777021014052373", - "swapFee": "16137208211250328520", + "inputIndex": 2, + "inputQty": "193526816062082220032", + "outputQty0": "192630969301179550693", + "outputQty": "192514154044234159293", + "swapFee": "150151634370466920", "mpReserves": [ - "61357310061804169231172914", - "25094782039671809389032242", - "18093540340498851987307432" + "56436131163676640881711332", + "9058086263597693378688646", + "38097873426943029865406434" ], "fpReserves": [ - "5379073936734815596026300", - "20055238202808512652631399" + "4139568687481976049966590", + "4262204885733634823694323" ], - "mAssetSupply": "104485673020153443274307366", - "LPTokenSupply": "25133460919072730055444714" + "mAssetSupply": "103277979969490157910874731", + "LPTokenSupply": "8185443646224098130909407" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "44788648188281949782016", - "outputQty0": "44690929745206111157094", - "outputQty": "44491078986994356623919", - "swapFee1": "26873188912969169869", - "swapFee2": "17876371898082444462", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "173775723951425107001344", + "outputQty0": "181437797023790691782143", + "outputQty": "181275838069477361284239", + "swapFee": "141416571822374567591", "mpReserves": [ - "61357310061804169231172914", - "25094782039671809389032242", - "18049049261511857630683513" + "56436131163676640881711332", + "9231861987549118485689990", + "38097873426943029865406434" ], "fpReserves": [ - "5334383006989609484869206", - "20055238202808512652631399" + "4321006484505766741748733", + "4080929047664157462410084" ], - "mAssetSupply": "104440999966780135245594734", - "LPTokenSupply": "25088674958203339402579684" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "956631488323617072087040", - "hardLimitError": true + "mAssetSupply": "103459417766513948602656874", + "LPTokenSupply": "8185457787881280368366166" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "701135011476113794793472", - "hardLimitError": true - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4333525785208175104", - "outputQty0": "4339490468995821727", - "outputQty": "4346785186414927153", + "outputIndex": 1, + "inputQty": "104516075308837360", + "outputQty0": "107235549452651973", + "outputQty": "102726246748381576", + "swapFee1": "62709645185302", + "swapFee2": "64341329671591", "mpReserves": [ - "61357310061804169231172914", - "25094786373197594597207346", - "18049049261511857630683513" + "56436131163676640881711332", + "9231861884822871737308414", + "38097873426943029865406434" ], "fpReserves": [ - "5334387346480078480690933", - "20055238202808512652631399" + "4321006377270217289096760", + "4080929047664157462410084" ], - "mAssetSupply": "104441004306270604241416461", - "LPTokenSupply": "25088679304988525817506837" + "mAssetSupply": "103459417659342740479676492", + "LPTokenSupply": "8185457683371476024047336" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "126125893113931540463616", - "outputQty0": "125803384518605565657358", - "outputQty": "126099269453560549500750", - "swapFee1": "75675535868358924278", - "swapFee2": "50321353807442226262", + "inputQty": "74265963936812826624", + "outputQty0": "76198337889799913429", + "outputQty": "76880528065513587919", + "swapFee1": "44559578362087695", + "swapFee2": "45719002733879948", "mpReserves": [ - "61231210792350608681672164", - "25094786373197594597207346", - "18049049261511857630683513" + "56436054283148575368123413", + "9231861884822871737308414", + "38097873426943029865406434" ], "fpReserves": [ - "5208583961961472915033575", - "20055238202808512652631399" + "4320930178932327489183331", + "4080929047664157462410084" ], - "mAssetSupply": "104315251243105806117985365", - "LPTokenSupply": "24962560979428181112935648" + "mAssetSupply": "103459341506723853413643011", + "LPTokenSupply": "8185383421863497047429481" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "5602752175025726", - "outputQty0": "5586836916508999", - "outputQty": "5561879358414104", - "swapFee1": "3361651305015", - "swapFee2": "2234734766603", + "type": "swap_fp_to_mp", + "inputQty": "5510147969233155260416", + "outputIndex": 1, + "outputQty": "5280274679822370162350", + "swapFee": "0", + "redemptionFee": "3307313026930886433", "mpReserves": [ - "61231210792350608681672164", - "25094786373197594597207346", - "18049049255949978272269409" + "56436054283148575368123413", + "9226581610143049367146064", + "38097873426943029865406434" ], "fpReserves": [ - "5208583956374635998524576", - "20055238202808512652631399" + "4315417990554109345127194", + "4086439195633390617670500" ], - "mAssetSupply": "104315251237521203936242969", - "LPTokenSupply": "24962560973825765103040423" + "mAssetSupply": "103453832625658662200473307", + "LPTokenSupply": "8185383421863497047429481" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "123154919923312614178816", - "outputQty0": "123654134937521511820032", - "outputQty": "125739143718697318954442", - "swapFee": "99117605589966295141", + "inputQty": "231779546907307744", + "outputQty0": "230734878197465057", + "outputQty": "230466960429707489", + "swapFee": "179800377848802", "mpReserves": [ - "61231210792350608681672164", - "25094786373197594597207346", - "18172204175873290886448225" + "56436054283148575368123413", + "9226581610143049367146064", + "38097873658722576772714178" ], "fpReserves": [ - "5332238091312157510344608", - "19929499059089815333676957" + "4315418221288987542592251", + "4086438965166430187963011" ], - "mAssetSupply": "104438905372458725448063001", - "LPTokenSupply": "24962570885586324099669937" + "mAssetSupply": "103453832856393540397938364", + "LPTokenSupply": "8185383421881477085214361" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2357709139620040704", - "outputQty0": "2351283134411047754", - "outputQty": "2389875016916428914", - "swapFee": "1883920243696877", + "type": "redeem", + "outputIndex": 0, + "inputQty": "5183053750963785728", + "outputQty0": "5317869701576574423", + "outputQty": "5365509332808979024", + "swapFee1": "3109832250578271", + "swapFee2": "3190721820945944", "mpReserves": [ - "61231213150059748301712868", - "25094786373197594597207346", - "18172204175873290886448225" + "56436048917639242559144389", + "9226581610143049367146064", + "38097873658722576772714178" ], "fpReserves": [ - "5332240442595291921392362", - "19929496669214798417248043" + "4315412903419285966017828", + "4086438965166430187963011" ], - "mAssetSupply": "104438907723741859859110755", - "LPTokenSupply": "24962570885774716124039624" + "mAssetSupply": "103453827541714560642309885", + "LPTokenSupply": "8185378239138709346486460" }, { "type": "swap_fp_to_mp", - "inputQty": "800649415180981764096", + "inputQty": "107436995334518247260160", "outputIndex": 0, - "outputQty": "788923514680623239341", + "outputQty": "108418962993962406726511", "swapFee": "0", - "redemptionFee": "314835254553535878", + "redemptionFee": "64474557187808379685", "mpReserves": [ - "61230424226545067678473527", - "25094786373197594597207346", - "18172204175873290886448225" + "56327629954645280152417878", + "9226581610143049367146064", + "38097873658722576772714178" ], "fpReserves": [ - "5331453354458908081695393", - "19930297318629979399012139" + "4207955308106271999874875", + "4193875960500948435223171" ], - "mAssetSupply": "104438120950440730572949664", - "LPTokenSupply": "24962570885774716124039624" + "mAssetSupply": "103346434420958734484546617", + "LPTokenSupply": "8185378239138709346486460" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "179505698967797238857728", - "outputQty0": "180219463779928014076843", - "outputQty": "180429568573724520526170", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "871003774058883840", + "outputQty0": "862772672815076149", + "outputQty": "862063319404967175", + "swapFee": "672428873283490", "mpReserves": [ - "61230424226545067678473527", - "25094786373197594597207346", - "18351709874841088125305953" + "56327630825649054211301718", + "9226581610143049367146064", + "38097873658722576772714178" ], "fpReserves": [ - "5511672818238836095772236", - "19930297318629979399012139" + "4207956170878944814951024", + "4193875098437629030255996" ], - "mAssetSupply": "104618340414220658587026507", - "LPTokenSupply": "25143000454348440644565794" + "mAssetSupply": "103346435283731407299622766", + "LPTokenSupply": "8185378239205952233814809" }, { - "type": "swap_fp_to_mp", - "inputQty": "133831670770891025809408", - "outputIndex": 2, - "outputQty": "131059775490099672425951", - "swapFee": "0", - "redemptionFee": "52652781648841088382", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "345429017393471527321600", + "outputQty0": "343853388868747795760799", + "outputQty": "343383240783324689892932", + "swapFee": "267958059210270969301", "mpReserves": [ - "61230424226545067678473527", - "25094786373197594597207346", - "18220650099350988452880002" + "56327630825649054211301718", + "9226581610143049367146064", + "38443302676116048300035778" ], "fpReserves": [ - "5380040864116733374816547", - "20064128989400870424821547" + "4551809559747692610711823", + "3850491857654304340363064" ], - "mAssetSupply": "104486761112880204707159200", - "LPTokenSupply": "25143000454348440644565794" + "mAssetSupply": "103690288672600155095383565", + "LPTokenSupply": "8185405035011873260911739" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "4844023295939749871616", - "outputQty0": "4830850016778772416676", - "outputQty": "4837988719629298783618", + "inputQty": "263456695031907255058432", + "outputQty0": "260965616037843130776860", + "outputQty": "260350447166562830731255", + "swapFee": "203260834503695431915", "mpReserves": [ - "61235268249841007428345143", - "25094786373197594597207346", - "18220650099350988452880002" + "56591087520680961466360150", + "9226581610143049367146064", + "38443302676116048300035778" ], "fpReserves": [ - "5384871714133512147233223", - "20064128989400870424821547" + "4812775175785535741488683", + "3590141410487741509631809" ], - "mAssetSupply": "104491591962896983479575876", - "LPTokenSupply": "25147838443068069943349412" + "mAssetSupply": "103951254288637998226160425", + "LPTokenSupply": "8185425361095323630454930" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "15677621273627", + "outputIndex": 1, + "outputQty": "15042006813977", + "swapFee": "0", + "redemptionFee": "9425505657", + "mpReserves": [ + "56591087520680961466360150", + "9226581610128007360332087", + "38443302676116048300035778" + ], + "fpReserves": [ + "4812775175769826565393186", + "3590141410503419130905436" + ], + "mAssetSupply": "103951254288622298475570585", + "LPTokenSupply": "8185425361095323630454930" }, { "type": "mint", "inputIndex": 1, - "inputQty": "13998502541464063442944", - "outputQty0": "14017774290299384383573", - "outputQty": "14037928234299690070268", + "inputQty": "901993757806251081728", + "outputQty0": "941431538400233583678", + "outputQty": "916276407518098167257", "mpReserves": [ - "61235268249841007428345143", - "25108784875739058660650290", - "18220650099350988452880002" + "56591087520680961466360150", + "9227483603885813611413815", + "38443302676116048300035778" ], "fpReserves": [ - "5398889488423811531616796", - "20064128989400870424821547" + "4813716607308226798976864", + "3590141410503419130905436" ], - "mAssetSupply": "104505609737187282863959449", - "LPTokenSupply": "25161876371302369633419680" + "mAssetSupply": "103952195720160698709154263", + "LPTokenSupply": "8186341637502841728622187" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "102213001999393126088704", - "outputQty0": "101934772236457059449456", - "outputQty": "102056787872316398447260", + "type": "swap_fp_to_mp", + "inputQty": "767059361847306878976", + "outputIndex": 0, + "outputQty": "775495924299093836558", + "swapFee": "0", + "redemptionFee": "461161977497559651", "mpReserves": [ - "61337481251840400554433847", - "25108784875739058660650290", - "18220650099350988452880002" + "56590312024756662372523592", + "9227483603885813611413815", + "38443302676116048300035778" ], "fpReserves": [ - "5500824260660268591066252", - "20064128989400870424821547" + "4812948004012397532890221", + "3590908469865266437784412" ], - "mAssetSupply": "104607544509423739923408905", - "LPTokenSupply": "25263933159174686031866940" + "mAssetSupply": "103951427578026846940627271", + "LPTokenSupply": "8186341637502841728622187" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "14878378207251712180224", - "outputQty0": "14898921224563216050716", - "outputQty": "15132145546914779792072", - "swapFee": "11930579711891562696", + "type": "swap_fp_to_mp", + "inputQty": "152768185949096928", + "outputIndex": 1, + "outputQty": "146575648548442182", + "swapFee": "0", + "redemptionFee": "91845280369083", "mpReserves": [ - "61337481251840400554433847", - "25123663253946310372830514", - "18220650099350988452880002" + "56590312024756662372523592", + "9227483457310165062971633", + "38443302676116048300035778" ], "fpReserves": [ - "5515723181884831807116968", - "20048996843853955645029475" + "4812947850936930251083837", + "3590908622633452386881340" ], - "mAssetSupply": "104622443430648303139459621", - "LPTokenSupply": "25263934352232657221023209" + "mAssetSupply": "103951427425043224939189970", + "LPTokenSupply": "8186341637502841728622187" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3967977887637322072064", - "outputQty0": "3983894821398157615042", - "outputQty": "4046010123431671675036", - "swapFee": "3190002289620369392", + "inputIndex": 1, + "inputQty": "15711317748515575169024", + "outputQty0": "16397027003245682547224", + "outputQty": "16350541591791433700496", + "swapFee": "12767060446347879742", "mpReserves": [ - "61337481251840400554433847", - "25123663253946310372830514", - "18224618077238625774952066" + "56590312024756662372523592", + "9243194775058680638140657", + "38443302676116048300035778" ], "fpReserves": [ - "5519707076706229964732010", - "20044950833730523973354439" + "4829344877940175933631061", + "3574558081041660953180844" ], - "mAssetSupply": "104626427325469701297074663", - "LPTokenSupply": "25263934671232886183060148" + "mAssetSupply": "103967824452046470621737194", + "LPTokenSupply": "8186342914208886363410161" }, { "type": "swap_fp_to_mp", - "inputQty": "1036331596998282496", - "outputIndex": 0, - "outputQty": "1021994337107464422", + "inputQty": "54327810906528663207936", + "outputIndex": 2, + "outputQty": "54652169886906348077215", "swapFee": "0", - "redemptionFee": "407847349318120", + "redemptionFee": "32660999321649132476", "mpReserves": [ - "61337480229846063446969425", - "25123663253946310372830514", - "18224618077238625774952066" + "56590312024756662372523592", + "9243194775058680638140657", + "38388650506229141951958563" ], "fpReserves": [ - "5519706057087856669429842", - "20044951870062120971636935" + "4774909879070760712837271", + "3628885891948189616388780" ], - "mAssetSupply": "104626426306259175351090615", - "LPTokenSupply": "25263934671232886183060148" + "mAssetSupply": "103913422114176377050075880", + "LPTokenSupply": "8186342914208886363410161" }, { "type": "swap_fp_to_mp", - "inputQty": "1449614205331187695616", + "inputQty": "22270520410928292", "outputIndex": 2, - "outputQty": "1419963738665077378740", + "outputQty": "22401160599150747", "swapFee": "0", - "redemptionFee": "570491710320936240", + "redemptionFee": "13387386503467", "mpReserves": [ - "61337480229846063446969425", - "25123663253946310372830514", - "18223198113499960697573326" + "56590312024756662372523592", + "9243194775058680638140657", + "38388650483827981352807816" ], "fpReserves": [ - "5518279827812054328828174", - "20046401484267452159332551" + "4774909856758449873724850", + "3628885914218710027317072" ], - "mAssetSupply": "104625000647475083331425187", - "LPTokenSupply": "25263934671232886183060148" + "mAssetSupply": "103913422091877453597466926", + "LPTokenSupply": "8186342914208886363410161" }, { "type": "swap_fp_to_mp", - "inputQty": "4471877117622192640", + "inputQty": "2739654563322585088", "outputIndex": 1, - "outputQty": "4391899599717111674", + "outputQty": "2628715871846416001", "swapFee": "0", - "redemptionFee": "1759886887371188", + "redemptionFee": "1646877292049395", "mpReserves": [ - "61337480229846063446969425", - "25123658862046710655718840", - "18223198113499960697573326" + "56590312024756662372523592", + "9243192146342808791724656", + "38388650483827981352807816" ], "fpReserves": [ - "5518275428094835900856895", - "20046405956144569781525191" + "4774907111962963124732716", + "3628888653873273349902160" ], - "mAssetSupply": "104624996249517751790825096", - "LPTokenSupply": "25263934671232886183060148" + "mAssetSupply": "103913419348728844140524187", + "LPTokenSupply": "8186342914208886363410161" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "1312275804456958033920", - "outputQty0": "1310305104595225565137", - "outputQty": "1307976711960162356502", - "swapFee1": "787365482674174820", - "swapFee2": "524122041838090226", + "outputIndex": 0, + "inputQty": "52847178799988391936", + "outputQty0": "54262333396261598712", + "outputQty": "54748236732907110720", + "swapFee1": "31708307279993035", + "swapFee2": "32557400037756959", "mpReserves": [ - "61337480229846063446969425", - "25122350885334750493362338", - "18223198113499960697573326" + "56590257276519929465412872", + "9243192146342808791724656", + "38388650483827981352807816" ], "fpReserves": [ - "5516965122990240675291758", - "20046405956144569781525191" + "4774852849629566863134004", + "3628888653873273349902160" ], - "mAssetSupply": "104623686468535198403350185", - "LPTokenSupply": "25262622474164977492443710" + "mAssetSupply": "103913365118952847916682434", + "LPTokenSupply": "8186290070200917103017528" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "4046583229243836071936", - "outputQty0": "4052164052664973039429", - "outputQty": "4115302236582931852759", - "swapFee": "3244641201873026835", + "type": "mint", + "inputIndex": 2, + "inputQty": "260428582494317265813504", + "outputQty0": "259230856951751603878090", + "outputQty": "252297536783201562259672", "mpReserves": [ - "61337480229846063446969425", - "25126397468563994329434274", - "18223198113499960697573326" + "56590257276519929465412872", + "9243192146342808791724656", + "38649079066322298618621320" ], "fpReserves": [ - "5521017287042905648331187", - "20042290653907986849672432" + "5034083706581318467012094", + "3628888653873273349902160" ], - "mAssetSupply": "104627738632587863376389614", - "LPTokenSupply": "25262622798629097679746393" + "mAssetSupply": "104172595975904599520560524", + "LPTokenSupply": "8438587606984118665277200" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "148395603908752375808", - "outputQty0": "148990846101049284216", - "outputQty": "149122670009288210986", + "type": "swap_fp_to_mp", + "inputQty": "18848421040479245697024", + "outputIndex": 2, + "outputQty": "18967040877152388648828", + "swapFee": "0", + "redemptionFee": "11334317141687484500", "mpReserves": [ - "61337480229846063446969425", - "25126397468563994329434274", - "18223346509103869449949134" + "56590257276519929465412872", + "9243192146342808791724656", + "38630112025445146229972492" ], "fpReserves": [ - "5521166277889006697615403", - "20042290653907986849672432" + "5015193178011839326177120", + "3647737074913752595599184" ], - "mAssetSupply": "104627887623433964425673830", - "LPTokenSupply": "25262771921299106967957379" + "mAssetSupply": "104153716781652262067210050", + "LPTokenSupply": "8438587606984118665277200" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4968220302098038784000", - "outputQty0": "4988142284484175428358", - "outputQty": "5065712727951818102429", - "swapFee": "3994004170914447970", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1732454253685562671104", + "outputQty0": "1779090915576986757956", + "outputQty": "1786291769712867383736", + "swapFee1": "1039472552211337602", + "swapFee2": "1067454549346192054", "mpReserves": [ - "61337480229846063446969425", - "25126397468563994329434274", - "18228314729405967488733134" + "56590257276519929465412872", + "9243192146342808791724656", + "38628325733675433362588756" ], "fpReserves": [ - "5526154420173490873043761", - "20037224941180035031570003" + "5013414087096262339419164", + "3647737074913752595599184" ], - "mAssetSupply": "104632875765718448601102188", - "LPTokenSupply": "25262772320699524059402176" + "mAssetSupply": "104151938758191234426644148", + "LPTokenSupply": "8436855256677688323739856" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "102488054857912631296", - "outputQty0": "102208954691422476729", - "outputQty": "102296753100599108510", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "217497503438522892156928", + "outputQty0": "216484477949798736599079", + "outputQty": "215751606532853851785802", + "swapFee": "168535234097217526706", "mpReserves": [ - "61337582717900921359600721", - "25126397468563994329434274", - "18228314729405967488733134" + "56590257276519929465412872", + "9243192146342808791724656", + "38845823237113956254745684" ], "fpReserves": [ - "5526256629128182295520490", - "20037224941180035031570003" + "5229898565046061076018243", + "3431985468380898743813382" ], - "mAssetSupply": "104632977974673140023578917", - "LPTokenSupply": "25262874617452624658510686" + "mAssetSupply": "104368423236141033163243227", + "LPTokenSupply": "8436872110201098045492526" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "202901273270480797696", "outputIndex": 0, - "inputQty": "290633719090994479104", - "outputQty0": "290209938695618890342", - "outputQty": "290886007010111405282", - "swapFee1": "174380231454596687", - "swapFee2": "116083975478247556", + "outputQty": "205326951848716717500", + "swapFee": "0", + "redemptionFee": "122106495573046512", "mpReserves": [ - "61337291831893911248195439", - "25126397468563994329434274", - "18228314729405967488733134" + "56590051949568080748695372", + "9243192146342808791724656", + "38845823237113956254745684" ], "fpReserves": [ - "5525966419189486676630148", - "20037224941180035031570003" + "5229695054220105998497940", + "3432188369654169224611078" ], - "mAssetSupply": "104632687880818419882936131", - "LPTokenSupply": "25262584001171556809491250" + "mAssetSupply": "104368219847421573658769436", + "LPTokenSupply": "8436872110201098045492526" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "5076558838093629440", - "outputQty0": "5096908702579341914", - "outputQty": "5176092230072260571", - "swapFee": "4081033360229909", + "inputQty": "87598059905121060388864", + "outputQty0": "87186490927373474098623", + "outputQty": "86840744833515843612380", + "swapFee": "67854718076702144343", "mpReserves": [ - "61337291831893911248195439", - "25126397468563994329434274", - "18228319805964805582362574" + "56590051949568080748695372", + "9243192146342808791724656", + "38933421297019077315134548" ], "fpReserves": [ - "5525971516098189255972062", - "20037219765087804959309432" + "5316881545147479472596563", + "3345347624820653380998698" ], - "mAssetSupply": "104632692977727122462278045", - "LPTokenSupply": "25262584001579660145514240" + "mAssetSupply": "104455406338348947132868059", + "LPTokenSupply": "8436878895672905715706960" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "416286968848793242435584", - "outputQty0": "416842833412587404304435", - "outputQty": "416883105058747607744900", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1613170701671437312", + "outputQty0": "1657410016389247913", + "outputQty": "1672191086135467352", + "swapFee1": "967902421002862", + "swapFee2": "994446009833548", "mpReserves": [ - "61337291831893911248195439", - "25542684437412787571869858", - "18228319805964805582362574" + "56590050277376994613228020", + "9243192146342808791724656", + "38933421297019077315134548" ], "fpReserves": [ - "5942814349510776660276497", - "20037219765087804959309432" + "5316879887737463083348650", + "3345347624820653380998698" ], - "mAssetSupply": "105049535811139709866582480", - "LPTokenSupply": "25679467106638407753259140" + "mAssetSupply": "104455404681933376753453694", + "LPTokenSupply": "8436877282598994286369934" }, { "type": "swap_fp_to_mp", - "inputQty": "247582121141070658011136", + "inputQty": "1306837828769902592", "outputIndex": 0, - "outputQty": "244455880248566070202504", + "outputQty": "1322916628305472035", "swapFee": "0", - "redemptionFee": "97558651601402927004", + "redemptionFee": "786733749326973", "mpReserves": [ - "61092835951645345177992935", - "25542684437412787571869858", - "18228319805964805582362574" + "56590048954460366307755985", + "9243192146342808791724656", + "38933421297019077315134548" ], "fpReserves": [ - "5698917720507269342765644", - "20284801886228875617320568" + "5316878576514547538392154", + "3345348931658482150901290" ], - "mAssetSupply": "104805736740787803951998631", - "LPTokenSupply": "25679467106638407753259140" + "mAssetSupply": "104455403371497194957824171", + "LPTokenSupply": "8436877282598994286369934" }, { - "type": "swap_mp_to_fp", + "type": "redeem", + "outputIndex": 0, + "inputQty": "88666249644407561125888", + "outputQty0": "91095244643754942666728", + "outputQty": "91906735328831156878185", + "swapFee1": "53199749786644536675", + "swapFee2": "54657146786252965600", + "mpReserves": [ + "56498142219131535150877800", + "9243192146342808791724656", + "38933421297019077315134548" + ], + "fpReserves": [ + "5225783331870792595725426", + "3345348931658482150901290" + ], + "mAssetSupply": "104364362784000226268123043", + "LPTokenSupply": "8348216352929565389697713" + }, + { + "type": "mint", "inputIndex": 2, - "inputQty": "3690197401753323008", - "outputQty0": "3704968789697893388", - "outputQty": "3760620069589155725", - "swapFee": "2965351327838314", + "inputQty": "3506262135683155492864", + "outputQty0": "3489725091011970335999", + "outputQty": "3394708895884627467327", "mpReserves": [ - "61092835951645345177992935", - "25542684437412787571869858", - "18228323496162207335685582" + "56498142219131535150877800", + "9243192146342808791724656", + "38936927559154760470627412" ], "fpReserves": [ - "5698921425476059040659032", - "20284798125608806028164843" + "5229273056961804566061425", + "3345348931658482150901290" ], - "mAssetSupply": "104805740445756593649892019", - "LPTokenSupply": "25679467106934942886042971" + "mAssetSupply": "104367852509091238238459042", + "LPTokenSupply": "8351611061825450017165040" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "134080793098935060135936", - "outputQty0": "134250043933943814099275", - "outputQty": "136212254719587093125265", - "swapFee": "107423979775753047380", + "type": "swap_fp_to_mp", + "inputQty": "141324865907257795149824", + "outputIndex": 2, + "outputQty": "142322860829341859941714", + "swapFee": "0", + "redemptionFee": "85043564828224633647", "mpReserves": [ - "61092835951645345177992935", - "25676765230511722632005794", - "18228323496162207335685582" + "56498142219131535150877800", + "9243192146342808791724656", + "38794604698325418610685698" ], "fpReserves": [ - "5833171469410002854758307", - "20148585870889218935039578" + "5087533782248096843314941", + "3486673797565739946051114" ], - "mAssetSupply": "104939990489690537463991294", - "LPTokenSupply": "25679477849332920461347709" + "mAssetSupply": "104226198277942358740346205", + "LPTokenSupply": "8351611061825450017165040" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "573694628469276288", - "outputQty0": "574411073125258839", - "outputQty": "582579558650884044", - "swapFee": "459459463282924", + "inputQty": "20141322190533896962048", + "outputQty0": "21020157774426136165107", + "outputQty": "20946854003223769363622", + "swapFee": "16361775520429221541", "mpReserves": [ - "61092835951645345177992935", - "25676765804206351101282082", - "18228323496162207335685582" + "56498142219131535150877800", + "9263333468533342688686704", + "38794604698325418610685698" ], "fpReserves": [ - "5833172043821075980017146", - "20148585288309660284155534" + "5108553940022522979480048", + "3465726943562516176687492" ], - "mAssetSupply": "104939991064101610589250133", - "LPTokenSupply": "25679477849378866407676001" + "mAssetSupply": "104247218435716784876511312", + "LPTokenSupply": "8351612698003002060087194" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "1040434037101455867904", - "outputQty0": "1039964992293334158928", - "outputQty": "1035395711331217092410", - "swapFee1": "624260422260873520", - "swapFee2": "415985996917333663", + "outputIndex": 1, + "inputQty": "1480156403503445311488", + "outputQty0": "1520387435186342763082", + "outputQty": "1456068771709716213043", + "swapFee1": "888093842102067186", + "swapFee2": "912232461111805657", "mpReserves": [ - "61092835951645345177992935", - "25676765804206351101282082", - "18227288100450876118593172" + "56498142219131535150877800", + "9261877399761632972473661", + "38794604698325418610685698" ], "fpReserves": [ - "5832132078828782645858218", - "20148585288309660284155534" + "5107033552587336636716966", + "3465726943562516176687492" ], - "mAssetSupply": "104938951515095314172424868", - "LPTokenSupply": "25678437477767807177895449" + "mAssetSupply": "104245698960514059645553887", + "LPTokenSupply": "8350132630408882824982424" }, { - "type": "swap_fp_to_mp", - "inputQty": "14407930967288417615872", - "outputIndex": 0, - "outputQty": "14226211500822325459423", - "swapFee": "0", - "redemptionFee": "5677564224442152295", + "type": "redeem", + "outputIndex": 2, + "inputQty": "629432312610816931135488", + "outputQty0": "646404669670446249610431", + "outputQty": "648988257885635891358954", + "swapFee1": "377659387566490158681", + "swapFee2": "387842801802267749766", "mpReserves": [ - "61078609740144522852533512", - "25676765804206351101282082", - "18227288100450876118593172" + "56498142219131535150877800", + "9261877399761632972473661", + "38145616440439782719326744" ], "fpReserves": [ - "5817938168267677265120660", - "20162993219276948701771406" + "4460628882916890387106535", + "3465726943562516176687492" ], - "mAssetSupply": "104924763282098433233839605", - "LPTokenSupply": "25678437477767807177895449" + "mAssetSupply": "103599682133645415663693222", + "LPTokenSupply": "7720738083736822542862804" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "812707977612963072", - "outputQty0": "812289334137284357", - "outputQty": "810952491369581630", - "swapFee1": "487624786567777", - "swapFee2": "324915733654913", + "outputIndex": 0, + "inputQty": "78485683395102769152", + "outputQty0": "80588017625137939731", + "outputQty": "81307785534288367405", + "swapFee1": "47091410037061661", + "swapFee2": "48352810575082763", "mpReserves": [ - "61078609740144522852533512", - "25676764993253859731700452", - "18227288100450876118593172" + "56498060911346000862510395", + "9261877399761632972473661", + "38145616440439782719326744" ], "fpReserves": [ - "5817937355978343127836303", - "20162993219276948701771406" + "4460548294899265249166804", + "3465726943562516176687492" ], - "mAssetSupply": "104924762470134014830210161", - "LPTokenSupply": "25678436665108592043589154" + "mAssetSupply": "103599601593980601100836254", + "LPTokenSupply": "7720659602762568443799818" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "1250835702443349377024", "outputIndex": 0, - "inputQty": "9612432681415932379136", - "outputQty0": "9607322829198798006840", - "outputQty": "9629178617818752902018", - "swapFee1": "5767459608849559427", - "swapFee2": "3842929131679519202", + "outputQty": "1264171296115703835087", + "swapFee": "0", + "redemptionFee": "751788328104531614", "mpReserves": [ - "61068980561526704099631494", - "25676764993253859731700452", - "18227288100450876118593172" + "56496796740049885158675308", + "9261877399761632972473661", + "38145616440439782719326744" ], "fpReserves": [ - "5808330033149144329829463", - "20162993219276948701771406" + "4459295314352424363142316", + "3466977779264959526064516" ], - "mAssetSupply": "104915158990233947711722523", - "LPTokenSupply": "25668824809173136996165960" + "mAssetSupply": "103598349365222088319343380", + "LPTokenSupply": "7720659602762568443799818" }, { - "type": "swap_fp_to_mp", - "inputQty": "239513695235304161280", - "outputIndex": 1, - "outputQty": "235547943393172648696", - "swapFee": "0", - "redemptionFee": "94374438679416695", + "type": "mint", + "inputIndex": 1, + "inputQty": "34349032989693552099328", + "outputQty0": "35823682949709084538242", + "outputQty": "34867835147473146013291", + "mpReserves": [ + "56496796740049885158675308", + "9296226432751326524572989", + "38145616440439782719326744" + ], + "fpReserves": [ + "4495118997302133447680558", + "3466977779264959526064516" + ], + "mAssetSupply": "103634173048171797403881622", + "LPTokenSupply": "7755527437910041589813109" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "514610754304866137407488", + "outputQty0": "509739113668357644686841", + "outputQty": "496046776432896775701350", "mpReserves": [ - "61068980561526704099631494", - "25676529445310466559051756", - "18227288100450876118593172" + "57011407494354751296082796", + "9296226432751326524572989", + "38145616440439782719326744" ], "fpReserves": [ - "5808094097052445788090706", - "20163232732972184005932686" + "5004858110970491092367399", + "3466977779264959526064516" ], - "mAssetSupply": "104914923148511687849400461", - "LPTokenSupply": "25668824809173136996165960" + "mAssetSupply": "104143912161840155048568463", + "LPTokenSupply": "8251574214342938365514459" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "4890560036099463315456", - "outputQty0": "4910158120013295349917", - "outputQty": "4980558388198647877798", - "swapFee": "3927892603252798644", + "inputIndex": 0, + "inputQty": "3287871151317832957952", + "outputQty0": "3256563173654317977845", + "outputQty": "3245587470933728551432", + "swapFee": "2534844325886130772", "mpReserves": [ - "61068980561526704099631494", - "25676529445310466559051756", - "18232178660486975581908628" + "57014695365506069129040748", + "9296226432751326524572989", + "38145616440439782719326744" ], "fpReserves": [ - "5813004255172459083440623", - "20158252174583985358054888" + "5008114674144145410345244", + "3463732191794025797513084" ], - "mAssetSupply": "104919833306631701144750378", - "LPTokenSupply": "25668825201962397321445824" + "mAssetSupply": "104147168725013809366546308", + "LPTokenSupply": "8251574467827370954127536" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "469073989058853710331904", "outputIndex": 2, - "inputQty": "82876510726676021248", - "outputQty0": "82832823280225501564", - "outputQty": "82469308820012239209", - "swapFee1": "49725906436005612", - "swapFee2": "33133129312090200", + "outputQty": "471671724975185726440330", + "swapFee": "0", + "redemptionFee": "281936427023288134723", "mpReserves": [ - "61068980561526704099631494", - "25676529445310466559051756", - "18232096191178155569669419" + "57014695365506069129040748", + "9296226432751326524572989", + "37673944715464596992886414" ], "fpReserves": [ - "5812921422349178857939059", - "20158252174583985358054888" + "4538220629105331852472649", + "3932806180852879507844988" ], - "mAssetSupply": "104919750506941550231339014", - "LPTokenSupply": "25668742330424261289025137" + "mAssetSupply": "103677556616402019096808436", + "LPTokenSupply": "8251574467827370954127536" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "2006057404141084606464", - "outputQty0": "2008559623079030978272", - "outputQty": "2037318035454562215261", - "swapFee": "1606725251521132312", + "type": "swap_fp_to_mp", + "inputQty": "137666801491804426338304", + "outputIndex": 1, + "outputQty": "131934177509521343636145", + "swapFee": "0", + "redemptionFee": "82660906167311745004", "mpReserves": [ - "61068980561526704099631494", - "25678535502714607643658220", - "18232096191178155569669419" + "57014695365506069129040748", + "9164292255241805180936844", + "37673944715464596992886414" ], "fpReserves": [ - "5814929981972257888917331", - "20156214856548530795839627" + "4400452452159812277465274", + "4070472982344683934183292" ], - "mAssetSupply": "104921759066564629262317286", - "LPTokenSupply": "25668742491096786441138368" + "mAssetSupply": "103539871100362666833546065", + "LPTokenSupply": "8251574467827370954127536" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "58663195702109495361536", - "outputQty0": "58897347537694492247792", - "outputQty": "58886649330813547157566", + "inputIndex": 0, + "inputQty": "1764793614467620929536", + "outputQty0": "1747684942103199373814", + "outputQty": "1702004954258059188876", "mpReserves": [ - "61068980561526704099631494", - "25678535502714607643658220", - "18290759386880265065030955" + "57016460159120536749970284", + "9164292255241805180936844", + "37673944715464596992886414" ], "fpReserves": [ - "5873827329509952381165123", - "20156214856548530795839627" + "4402200137101915476839088", + "4070472982344683934183292" ], - "mAssetSupply": "104980656414102323754565078", - "LPTokenSupply": "25727629140427599988295934" + "mAssetSupply": "103541618785304770032919879", + "LPTokenSupply": "8253276472781629013316412" }, { "type": "swap_fp_to_mp", - "inputQty": "10399130680762621952", + "inputQty": "220051727175472765730816", "outputIndex": 2, - "outputQty": "10202163128497295593", + "outputQty": "220921973685955167690682", "swapFee": "0", - "redemptionFee": "4098733174469662", + "redemptionFee": "132054122994076484747", "mpReserves": [ - "61068980561526704099631494", - "25678535502714607643658220", - "18290749184717136567735362" + "57016460159120536749970284", + "9164292255241805180936844", + "37453022741778641825195732" ], "fpReserves": [ - "5873817082677016207008885", - "20156225255679211558461579" + "4182109932111788002259168", + "4290524709520156699914108" ], - "mAssetSupply": "104980646171368120754878502", - "LPTokenSupply": "25727629140427599988295934" + "mAssetSupply": "103321660634437636634824706", + "LPTokenSupply": "8253276472781629013316412" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3441394936139387904", - "outputQty0": "3455080381871729637", - "outputQty": "3503627847027156804", - "swapFee": "2763288831385970", + "type": "swap_fp_to_mp", + "inputQty": "77246915410350407942144", + "outputIndex": 2, + "outputQty": "77513042449606117028741", + "swapFee": "0", + "redemptionFee": "46334684916702879044", "mpReserves": [ - "61068980561526704099631494", - "25678535502714607643658220", - "18290752626112072707123266" + "57016460159120536749970284", + "9164292255241805180936844", + "37375509699329035708166991" ], "fpReserves": [ - "5873820537757398078738522", - "20156221752051364531304775" + "4104885457250616537184982", + "4367771624930507107856252" ], - "mAssetSupply": "104980649626448502626608139", - "LPTokenSupply": "25727629140703928871434531" + "mAssetSupply": "103244482494261381872629564", + "LPTokenSupply": "8253276472781629013316412" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "16960658639545698304", - "outputQty0": "16955238812374986237", - "outputQty": "16927285520129312109", - "swapFee1": "10176395183727418", - "swapFee2": "6782095524949994", + "type": "swap_fp_to_mp", + "inputQty": "6434136105847080615936", + "outputIndex": 0, + "outputQty": "6490622316279618774911", + "swapFee": "0", + "redemptionFee": "3858853412128689830", "mpReserves": [ - "61068980561526704099631494", - "25678518575429087514346111", - "18290752626112072707123266" + "57009969536804257131195373", + "9164292255241805180936844", + "37375509699329035708166991" ], "fpReserves": [ - "5873803582518585703752285", - "20156221752051364531304775" + "4098454034897068720800915", + "4374205761036354188472188" ], - "mAssetSupply": "104980632677991785776571896", - "LPTokenSupply": "25727612181062928844108968" + "mAssetSupply": "103238054930761246184935327", + "LPTokenSupply": "8253276472781629013316412" }, { - "type": "swap_fp_to_mp", - "inputQty": "1248775075436524606586880", - "outputIndex": 1, - "hardLimitError": true + "type": "mint", + "inputIndex": 1, + "inputQty": "311731169142539865292800", + "outputQty0": "324999455500623792363320", + "outputQty": "316613416877027587989204", + "mpReserves": [ + "57009969536804257131195373", + "9476023424384345046229644", + "37375509699329035708166991" + ], + "fpReserves": [ + "4423453490397692513164235", + "4374205761036354188472188" + ], + "mAssetSupply": "103563054386261869977298647", + "LPTokenSupply": "8569889889658656601305616" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "6985181804131823648768", - "outputQty0": "6982868232458884227707", - "outputQty": "6998693364922938860486", - "swapFee1": "4191109082479094189", - "swapFee2": "2793147292983553691", + "outputIndex": 2, + "inputQty": "111185832003916840960", + "outputQty0": "114076630052485480693", + "outputQty": "114477212978763854770", + "swapFee1": "66711499202350104", + "swapFee2": "68445978031491288", "mpReserves": [ - "61061981868161781160771008", - "25678518575429087514346111", - "18290752626112072707123266" + "57009969536804257131195373", + "9476023424384345046229644", + "37375395222116056944312221" ], "fpReserves": [ - "5866820714286126819524578", - "20156221752051364531304775" + "4423339413767640027683542", + "4374205761036354188472188" ], - "mAssetSupply": "104973652602906619875897880", - "LPTokenSupply": "25720627418369705268369618" + "mAssetSupply": "103562940378077795523309242", + "LPTokenSupply": "8569778710497802604699666" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "683064465995462272", - "outputQty0": "681247498433523087", - "outputQty": "681072158433235028", + "type": "redeem", + "outputIndex": 1, + "inputQty": "37391566248913085136896", + "outputQty0": "38363184070545441024193", + "outputQty": "36818310037160904309337", + "swapFee1": "22434939749347851082", + "swapFee2": "23017910442327264614", "mpReserves": [ - "61061982551226247156233280", - "25678518575429087514346111", - "18290752626112072707123266" + "57009969536804257131195373", + "9439205114347184141920307", + "37375395222116056944312221" ], "fpReserves": [ - "5866821395533625253047665", - "20156221752051364531304775" + "4384976229697094586659349", + "4374205761036354188472188" ], - "mAssetSupply": "104973653284154118309420967", - "LPTokenSupply": "25720628099441863701604646" + "mAssetSupply": "103524600211917692409549663", + "LPTokenSupply": "8532389387742864454347878" }, { - "type": "swap_fp_to_mp", - "inputQty": "224782344876469644165120", + "type": "redeem", "outputIndex": 1, - "outputQty": "220971427001160972288369", - "swapFee": "0", - "redemptionFee": "88536459564721054082", + "inputQty": "139483017403635192561664", + "outputQty0": "143097901439076914444505", + "outputQty": "137234338527482696831210", + "swapFee1": "83689810442181115536", + "swapFee2": "85858740863446148666", "mpReserves": [ - "61061982551226247156233280", - "25457547148427926542057742", - "18290752626112072707123266" + "57009969536804257131195373", + "9301970775819701445089097", + "37375395222116056944312221" ], "fpReserves": [ - "5645480246621822617842623", - "20381004096927834175469895" + "4241878328258017672214844", + "4374205761036354188472188" ], - "mAssetSupply": "104752400671701880395270007", - "LPTokenSupply": "25720628099441863701604646" + "mAssetSupply": "103381588169219478941253824", + "LPTokenSupply": "8392914739320273479897767" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "142885608184548807409664", - "outputQty0": "143446707544621194287827", - "outputQty": "143517526791306382589984", + "inputQty": "393912407482716651520", + "outputQty0": "392252302759554307994", + "outputQty": "392018037669660853972", + "swapFee": "305705444117083312", "mpReserves": [ - "61061982551226247156233280", - "25457547148427926542057742", - "18433638234296621514532930" + "57009969536804257131195373", + "9301970775819701445089097", + "37375789134523539660963741" ], "fpReserves": [ - "5788926954166443812130450", - "20381004096927834175469895" + "4242270580560777226522838", + "4373813742998684527618216" ], - "mAssetSupply": "104895847379246501589557834", - "LPTokenSupply": "25864145626233170084194630" + "mAssetSupply": "103381980421522238495561818", + "LPTokenSupply": "8392914769890817891606098" }, { - "type": "swap_fp_to_mp", - "inputQty": "1417252590133768093696", - "outputIndex": 1, - "outputQty": "1393189578910130530317", - "swapFee": "0", - "redemptionFee": "558225623709201072", + "type": "redeem", + "outputIndex": 2, + "inputQty": "70481976299026621923328", + "outputQty0": "72303176775545559918549", + "outputQty": "72564876088748260381416", + "swapFee1": "42289185779415973153", + "swapFee2": "43381906065327335951", "mpReserves": [ - "61061982551226247156233280", - "25456153958849016411527425", - "18433638234296621514532930" + "57009969536804257131195373", + "9301970775819701445089097", + "37303224258434791400582325" ], "fpReserves": [ - "5787531390107170809448198", - "20382421349517967943563591" + "4169967403785231666604289", + "4373813742998684527618216" ], - "mAssetSupply": "104894452373412852296076654", - "LPTokenSupply": "25864145626233170084194630" + "mAssetSupply": "103309720626652758262979220", + "LPTokenSupply": "8322437022510369211280085" }, { - "type": "swap_fp_to_mp", - "inputQty": "11966753194968606572544", - "outputIndex": 2, - "outputQty": "11732759162197415838218", - "swapFee": "0", - "redemptionFee": "4713266093878574197", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "316412912522380470910976", + "outputQty0": "329472919096196690095632", + "outputQty": "329145068286803841585377", + "swapFee": "256758250256205728652", "mpReserves": [ - "61061982551226247156233280", - "25456153958849016411527425", - "18421905475134424098694712" + "57009969536804257131195373", + "9618383688342081916000073", + "37303224258434791400582325" ], "fpReserves": [ - "5775748224872474373953541", - "20394388102712936550136135" + "4499440322881428356699921", + "4044668674711880686032839" ], - "mAssetSupply": "104882673921444249739156194", - "LPTokenSupply": "25864145626233170084194630" + "mAssetSupply": "103639193545748954953074852", + "LPTokenSupply": "8322462698335394831852950" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "186836883020666503168", - "outputQty0": "187565041237683718559", - "outputQty": "190341538614171112390", - "swapFee": "150096025533943427", + "inputQty": "1769863189897948430336", + "outputQty0": "1762811009372524365055", + "outputQty": "1760147546272055272946", + "swapFee": "1373203069490693765", "mpReserves": [ - "61061982551226247156233280", - "25456153958849016411527425", - "18422092312017444765197880" + "57009969536804257131195373", + "9618383688342081916000073", + "37304994121624689349012661" ], "fpReserves": [ - "5775935789913712057672100", - "20394197761174322379023745" + "4501203133890800881064976", + "4042908527165608630759893" ], - "mAssetSupply": "104882861486485487422874753", - "LPTokenSupply": "25864145641242772637588972" + "mAssetSupply": "103640956356758327477439907", + "LPTokenSupply": "8322462835655701780922326" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "184934944709528734662656", - "outputQty0": "184707010378396806525199", - "outputQty": "185124172738396354291283", - "swapFee1": "110960966825717240797", - "swapFee2": "73882804151358722610", + "inputQty": "28863119399534301544448", + "outputQty0": "29623745362151920248912", + "outputQty": "29882525290405674178486", + "swapFee1": "17317871639720580926", + "swapFee2": "17774247217291152149", "mpReserves": [ - "60876858378487850801941997", - "25456153958849016411527425", - "18422092312017444765197880" + "56980087011513851457016887", + "9618383688342081916000073", + "37304994121624689349012661" ], "fpReserves": [ - "5591228779535315251146901", - "20394197761174322379023745" + "4471579388528648960816064", + "4042908527165608630759893" ], - "mAssetSupply": "104698228358911241975072164", - "LPTokenSupply": "25679221792629926474650395" + "mAssetSupply": "103611350385643392848343144", + "LPTokenSupply": "8293601448043331451435970" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "623904600142926446592", - "outputQty0": "622918422870337331957", - "outputQty": "621866538947190246751", - "swapFee1": "374342760085755867", - "swapFee2": "249167369148134932", + "type": "mint", + "inputIndex": 0, + "inputQty": "57546144738226217156608", + "outputQty0": "57013403884142412328791", + "outputQty": "55515543647512906284772", "mpReserves": [ - "60876858378487850801941997", - "25455532092310069221280674", - "18422092312017444765197880" + "57037633156252077674173495", + "9618383688342081916000073", + "37304994121624689349012661" ], "fpReserves": [ - "5590605861112444913814944", - "20394197761174322379023745" + "4528592792412791373144855", + "4042908527165608630759893" ], - "mAssetSupply": "104697605689655740785875139", - "LPTokenSupply": "25678597925464059556779389" + "mAssetSupply": "103668363789527535260671935", + "LPTokenSupply": "8349116991690844357720742" }, { - "type": "swap_fp_to_mp", - "inputQty": "2596315379752256405504", - "outputIndex": 1, - "outputQty": "2549786974296227537781", - "swapFee": "0", - "redemptionFee": "1021640298613743677", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "304401624684777950937088", + "outputQty0": "316193691482841033865385", + "outputQty": "315541672736688637423505", + "swapFee": "246277796829423947516", "mpReserves": [ - "60876858378487850801941997", - "25452982305335772993742893", - "18422092312017444765197880" + "57037633156252077674173495", + "9922785313026859866937161", + "37304994121624689349012661" ], "fpReserves": [ - "5588051760365910554621766", - "20396794076554074635429249" + "4844786483895632407010240", + "3727366854428919993336388" ], - "mAssetSupply": "104695052610549505040425638", - "LPTokenSupply": "25678597925464059556779389" + "mAssetSupply": "103984557481010376294537320", + "LPTokenSupply": "8349141619470527300115493" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "78539168357789137371136", - "outputQty0": "78841957811815075476384", - "outputQty": "80061594602792411281297", - "swapFee": "63126748253048184947", + "type": "redeem", + "outputIndex": 0, + "inputQty": "3186249189731379707904", + "outputQty0": "3271931580813906876556", + "outputQty": "3299588034348755121728", + "swapFee1": "1911749513838827824", + "swapFee2": "1963158948488344125", "mpReserves": [ - "60876858378487850801941997", - "25452982305335772993742893", - "18500631480375233902569016" + "57034333568217728919051767", + "9922785313026859866937161", + "37304994121624689349012661" ], "fpReserves": [ - "5666893718177725630098150", - "20316732481951282224147952" + "4841514552314818500133684", + "3727366854428919993336388" ], - "mAssetSupply": "104773894568361320115902022", - "LPTokenSupply": "25678604238138884861597883" + "mAssetSupply": "103981287512588510876004889", + "LPTokenSupply": "8345955561455747304290371" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "11507378719045730697216", - "outputQty0": "11522280355757319260366", - "outputQty": "11697222610376376111637", - "swapFee": "9223211851748416981", + "inputIndex": 2, + "inputQty": "191642510082643364675584", + "outputQty0": "190910602898631232017585", + "outputQty": "190354834000004153870369", + "swapFee": "148630786014130715769", "mpReserves": [ - "60876858378487850801941997", - "25464489684054818724440109", - "18500631480375233902569016" + "57034333568217728919051767", + "9922785313026859866937161", + "37496636631707332713688245" ], "fpReserves": [ - "5678415998533482949358516", - "20305035259340905848036315" + "5032425155213449732151269", + "3537012020428915839466019" ], - "mAssetSupply": "104785416848717077435162388", - "LPTokenSupply": "25678605160460070036439581" + "mAssetSupply": "104172198115487142108022474", + "LPTokenSupply": "8345970424534348717361947" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3964141530221017825280", - "outputQty0": "3969268732591696374707", - "outputQty": "3971424262117455023844", + "inputIndex": 0, + "inputQty": "785448180086815719424", + "outputQty0": "778408315162994196662", + "outputQty": "757340297563351458787", "mpReserves": [ - "60876858378487850801941997", - "25468453825585039742265389", - "18500631480375233902569016" + "57035119016397815734771191", + "9922785313026859866937161", + "37496636631707332713688245" ], "fpReserves": [ - "5682385267266074645733223", - "20305035259340905848036315" + "5033203563528612726347931", + "3537012020428915839466019" ], - "mAssetSupply": "104789386117449669131537095", - "LPTokenSupply": "25682576584722187491463425" + "mAssetSupply": "104172976523802305102219136", + "LPTokenSupply": "8346727764831912068820734" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "3039279848377365299200", - "outputQty0": "3050939919185638014074", - "outputQty": "3052556937179423750517", + "inputIndex": 0, + "inputQty": "340299987387909373165568", + "outputQty0": "337238005804079044046503", + "outputQty": "328076093649396014527032", "mpReserves": [ - "60876858378487850801941997", - "25468453825585039742265389", - "18503670760223611267868216" + "57375419003785725107936759", + "9922785313026859866937161", + "37496636631707332713688245" ], "fpReserves": [ - "5685436207185260283747297", - "20305035259340905848036315" + "5370441569332691770394434", + "3537012020428915839466019" ], - "mAssetSupply": "104792437057368854769551169", - "LPTokenSupply": "25685629141659366915213942" + "mAssetSupply": "104510214529606384146265639", + "LPTokenSupply": "8674803858481308083347766" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2282875591400440463360", - "outputQty0": "2280300555451302584129", - "outputQty": "2276444065976370412281", - "swapFee1": "1369725354840264278", - "swapFee2": "912120222180521033", + "type": "mint", + "inputIndex": 2, + "inputQty": "8930029369393509", + "outputQty0": "8895910507638186", + "outputQty": "8653339837984415", "mpReserves": [ - "60876858378487850801941997", - "25466177381519063371853108", - "18503670760223611267868216" + "57375419003785725107936759", + "9922785313026859866937161", + "37496636640637362083081754" ], "fpReserves": [ - "5683155906629808981163168", - "20305035259340905848036315" + "5370441578228602278032620", + "3537012020428915839466019" ], - "mAssetSupply": "104790157668933625647488073", - "LPTokenSupply": "25683346403040501958777009" + "mAssetSupply": "104510214538502294653903825", + "LPTokenSupply": "8674803867134647921332181" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "39723083639313350656", - "outputQty0": "39774470764815209975", - "outputQty": "40376015938729117922", - "swapFee": "31836526508337976", + "type": "swap_fp_to_mp", + "inputQty": "145783489487233376845824", + "outputIndex": 0, + "outputQty": "147419230213847171950695", + "swapFee": "0", + "redemptionFee": "87706532627338400690", "mpReserves": [ - "60876858378487850801941997", - "25466217104602702685203764", - "18503670760223611267868216" + "57227999773571877935986064", + "9922785313026859866937161", + "37496636640637362083081754" ], "fpReserves": [ - "5683195681100573796373143", - "20304994883324967118918393" + "5224264023849704943547934", + "3682795509916149216311843" ], - "mAssetSupply": "104790197443404390462698048", - "LPTokenSupply": "25683346406224154609610806" + "mAssetSupply": "104364124690656024657819829", + "LPTokenSupply": "8674803867134647921332181" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "7383882586516478976", - "outputQty0": "7375524167876839657", - "outputQty": "7344403812403327319", - "swapFee1": "4430329551909887", - "swapFee2": "2950209667150735", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "21793565798950647103488", + "outputQty0": "21597319227491855511415", + "outputQty": "21526739374907894287380", + "swapFee": "16810274276664644110", "mpReserves": [ - "60876858378487850801941997", - "25466217104602702685203764", - "18503663415819798864540897" + "57249793339370828583089552", + "9922785313026859866937161", + "37496636640637362083081754" ], "fpReserves": [ - "5683188305576405919533486", - "20304994883324967118918393" + "5245861343077196799059349", + "3661268770541241322024463" ], - "mAssetSupply": "104790190070830432253009126", - "LPTokenSupply": "25683339022784601048322818" + "mAssetSupply": "104385722009883516513331244", + "LPTokenSupply": "8674805548162075587796592" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "6727394651100025978880", - "outputQty0": "6719695344195177458178", - "outputQty": "6691331437298225207573", - "swapFee1": "4036436790660015587", - "swapFee2": "2687878137678070983", + "type": "mint", + "inputIndex": 0, + "inputQty": "8454660339746616639488", + "outputQty0": "8378501595352405142392", + "outputQty": "8151518806668960342956", "mpReserves": [ - "60876858378487850801941997", - "25466217104602702685203764", - "18496972084382500639333324" + "57258247999710575199729040", + "9922785313026859866937161", + "37496636640637362083081754" ], "fpReserves": [ - "5676468610232210742075308", - "20304994883324967118918393" + "5254239844672549204201741", + "3661268770541241322024463" ], - "mAssetSupply": "104783473063364374753621931", - "LPTokenSupply": "25676612031777180088345496" + "mAssetSupply": "104394100511478868918473636", + "LPTokenSupply": "8682957066968744548139548" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "875663763249462", - "outputQty0": "874650778473814", - "outputQty": "873171709117103", - "swapFee1": "525398257949", - "swapFee2": "349860311389", + "outputIndex": 2, + "inputQty": "91482219711648202752", + "outputQty0": "93973402085384881990", + "outputQty": "94278011526969537524", + "swapFee1": "54889331826988921", + "swapFee2": "56384041251230929", "mpReserves": [ - "60876858378487850801941997", - "25466217103729530976086661", - "18496972084382500639333324" + "57258247999710575199729040", + "9922785313026859866937161", + "37496542362625835113544230" ], "fpReserves": [ - "5676468609357559963601494", - "20304994883324967118918393" + "5254145871270463819319751", + "3661268770541241322024463" ], - "mAssetSupply": "104783473062490073835459506", - "LPTokenSupply": "25676612030901568864921828" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "641836254378420338688000", - "hardLimitError": true + "mAssetSupply": "104394006594460824784822575", + "LPTokenSupply": "8682865590237966082635688" }, { - "type": "swap_fp_to_mp", - "inputQty": "5223116615873155039232", - "outputIndex": 1, - "outputQty": "5132241356760950836996", - "swapFee": "0", - "redemptionFee": "2056375021228000011", + "type": "mint", + "inputIndex": 0, + "inputQty": "174249618626482213486592", + "outputQty0": "172676723223970210407679", + "outputQty": "167989597699526079182384", "mpReserves": [ - "60876858378487850801941997", - "25461084862372770025249665", - "18496972084382500639333324" + "57432497618337057413215632", + "9922785313026859866937161", + "37496542362625835113544230" ], "fpReserves": [ - "5671327671804489963571793", - "20310217999940840273957625" + "5426822594494434029727430", + "3661268770541241322024463" ], - "mAssetSupply": "104778334181312025063429816", - "LPTokenSupply": "25676612030901568864921828" + "mAssetSupply": "104566683317684794995230254", + "LPTokenSupply": "8850855187937492161818072" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "728138609304861893722112", - "outputQty0": "729028533859817610591104", - "outputQty": "728569281655905851848862", + "inputIndex": 0, + "inputQty": "422623793434756605018112", + "outputQty0": "418782970577264127217882", + "outputQty": "407345052376431145275077", "mpReserves": [ - "60876858378487850801941997", - "26189223471677631918971777", - "18496972084382500639333324" + "57855121411771814018233744", + "9922785313026859866937161", + "37496542362625835113544230" ], "fpReserves": [ - "6400356205664307574162897", - "20310217999940840273957625" + "5845605565071698156945312", + "3661268770541241322024463" ], - "mAssetSupply": "105507362715171842674020920", - "LPTokenSupply": "26405181312557474716770690" + "mAssetSupply": "104985466288262059122448136", + "LPTokenSupply": "9258200240313923307093149" }, { - "type": "swap_fp_to_mp", - "inputQty": "7552857102699930320896", - "outputIndex": 2, - "outputQty": "7424139733428854245528", - "swapFee": "0", - "redemptionFee": "2982384777612725675", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "158337160626216575696896", + "outputQty0": "157734262661413917469275", + "outputQty": "157026660039469025390998", + "swapFee": "122720832000227402645", "mpReserves": [ - "60876858378487850801941997", - "26189223471677631918971777", - "18489547944649071785087796" + "57855121411771814018233744", + "9922785313026859866937161", + "37654879523252051689241126" ], "fpReserves": [ - "6392900243720275759973240", - "20317770857043540204278521" + "6003339827733112074414587", + "3504242110501772296633465" ], - "mAssetSupply": "105499909735612588472556938", - "LPTokenSupply": "26405181312557474716770690" + "mAssetSupply": "105143200550923473039917411", + "LPTokenSupply": "9258212512397123329833413" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1001368040622137409536", - "outputQty0": "1002452098435795061431", - "outputQty": "998171580570234049816", - "swapFee1": "600820824373282445", - "swapFee2": "400980839374318024", + "type": "mint", + "inputIndex": 1, + "inputQty": "157772311658011557888000", + "outputQty0": "163755484108996282830487", + "outputQty": "159217137070830430593157", "mpReserves": [ - "60876858378487850801941997", - "26189223471677631918971777", - "18488549773068501551037980" + "57855121411771814018233744", + "10080557624684871424825161", + "37654879523252051689241126" ], "fpReserves": [ - "6391897791621839964911809", - "20317770857043540204278521" + "6167095311842108357245074", + "3504242110501772296633465" ], - "mAssetSupply": "105498907684494992051813531", - "LPTokenSupply": "26404180004598935016689398" + "mAssetSupply": "105306956035032469322747898", + "LPTokenSupply": "9417429649467953760426570" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "40264212361173136310272", - "outputQty0": "40159832119728958375800", - "outputQty": "40646293471231267791756", - "swapFee": "32072213319702416126", + "inputQty": "18352313904573376888832", + "outputQty0": "18187544957509028795106", + "outputQty": "18094977507631490325014", + "swapFee": "14146072250471814675", "mpReserves": [ - "60917122590849023938252269", - "26189223471677631918971777", - "18488549773068501551037980" + "57873473725676387395122576", + "10080557624684871424825161", + "37654879523252051689241126" ], "fpReserves": [ - "6432057623741568923287609", - "20277124563572308936486765" + "6185282856799617386040180", + "3486147132994140806308451" ], - "mAssetSupply": "105539067516614721010189331", - "LPTokenSupply": "26404183211820266986931010" + "mAssetSupply": "105325143579989978351543004", + "LPTokenSupply": "9417431064075178807608037" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "872984729987945513091072", - "outputQty0": "872914568202726189360132", - "outputQty": "874810054918412399629377", - "swapFee1": "523790837992767307854", - "swapFee2": "349165827281090475744", + "inputQty": "1242337848534359959666688", + "outputQty0": "1276605062024264588212730", + "outputQty": "1287230465384529148867219", + "swapFee1": "745402709120615975800", + "swapFee2": "765963037214558752927", "mpReserves": [ - "60042312535930611538622892", - "26189223471677631918971777", - "18488549773068501551037980" + "56586243260291858246255357", + "10080557624684871424825161", + "37654879523252051689241126" ], "fpReserves": [ - "5559143055538842733927477", - "20277124563572308936486765" + "4908677794775352797827450", + "3486147132994140806308451" ], - "mAssetSupply": "104666502114239275911304943", - "LPTokenSupply": "25531250860916120750570723" + "mAssetSupply": "104049304481002928322083201", + "LPTokenSupply": "8175167755811730909538929" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1910781664414179052748800", + "hardLimitError": true }, { "type": "mint", "inputIndex": 0, - "inputQty": "746042634082807502077952", - "outputQty0": "744131433486675913407723", - "outputQty": "743876473319012160659798", + "inputQty": "33019994471282704908288", + "outputQty0": "32731975128490325657519", + "outputQty": "31843698993473674044187", "mpReserves": [ - "60788355170013419040700844", - "26189223471677631918971777", - "18488549773068501551037980" + "56619263254763140951163645", + "10080557624684871424825161", + "37654879523252051689241126" ], "fpReserves": [ - "6303274489025518647335200", - "20277124563572308936486765" + "4941409769903843123484969", + "3486147132994140806308451" ], - "mAssetSupply": "105410633547725951824712666", - "LPTokenSupply": "26275127334235132911230521" + "mAssetSupply": "104082036456131418647740720", + "LPTokenSupply": "8207011454805204583583116" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "15593478617299616", - "outputQty0": "15607449335234485", - "outputQty": "15641647408732955", - "swapFee1": "9356087170379", - "swapFee2": "6242979734093", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "60056722651103398723584", + "outputQty0": "59532308344694174088204", + "outputQty": "59333725169008134361884", + "swapFee": "46332012990282255563", "mpReserves": [ - "60788355154371771631967889", - "26189223471677631918971777", - "18488549773068501551037980" + "56679319977414244349887229", + "10080557624684871424825161", + "37654879523252051689241126" ], "fpReserves": [ - "6303274473418069312100715", - "20277124563572308936486765" + "5000942078248537297573173", + "3426813407825132671946567" ], - "mAssetSupply": "105410633532124745469212274", - "LPTokenSupply": "26275127318642589902647942" + "mAssetSupply": "104141568764476112821828924", + "LPTokenSupply": "8207016088006503611808672" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "108037853171685959663616", - "outputQty0": "107758153076403043628383", - "outputQty": "107581436447823840007747", + "inputQty": "8981764834290320801792", + "outputQty0": "8903273519458975807907", + "outputQty": "8872416291442274975065", + "swapFee": "6928555905835314382", "mpReserves": [ - "60896393007543457591631505", - "26189223471677631918971777", - "18488549773068501551037980" + "56688301742248534670689021", + "10080557624684871424825161", + "37654879523252051689241126" ], "fpReserves": [ - "6411032626494472355729098", - "20277124563572308936486765" + "5009845351767996273381080", + "3417940991533690396971502" ], - "mAssetSupply": "105518391685201148512840657", - "LPTokenSupply": "26382708755090413742655689" + "mAssetSupply": "104150472037995571797636831", + "LPTokenSupply": "8207016780862094195340110" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2030767467781747712", - "outputQty0": "2038665622888132084", - "outputQty": "2063320932280656047", - "swapFee": "1628024666380846", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1034856419212409176064", + "outputQty0": "1063215830075246265674", + "outputQty": "1071946458833934754986", + "swapFee1": "620913851527445505", + "swapFee2": "637929498045147759", "mpReserves": [ - "60896393007543457591631505", - "26189223471677631918971777", - "18488551803835969332785692" + "56687229795789700735934035", + "10080557624684871424825161", + "37654879523252051689241126" ], "fpReserves": [ - "6411034665160095243861182", - "20277122500251376655830718" + "5008782135937921027115406", + "3417940991533690396971502" ], - "mAssetSupply": "105518393723866771400972741", - "LPTokenSupply": "26382708755253216209293773" + "mAssetSupply": "104149409460094994596518916", + "LPTokenSupply": "8205981986534266938908596" }, { - "type": "swap_fp_to_mp", - "inputQty": "323978684739421184", - "outputIndex": 0, - "outputQty": "320554317477745250", - "swapFee": "0", - "redemptionFee": "127940508336964", + "type": "mint", + "inputIndex": 0, + "inputQty": "28153756073784661508096", + "outputQty0": "27907621816575129933361", + "outputQty": "27146703114905039673387", "mpReserves": [ - "60896392686989140113886255", - "26189223471677631918971777", - "18488551803835969332785692" + "56715383551863485397442131", + "10080557624684871424825161", + "37654879523252051689241126" ], "fpReserves": [ - "6411034345308824401451068", - "20277122824230061395251902" + "5036689757754496157048767", + "3417940991533690396971502" ], - "mAssetSupply": "105518393404143441066899591", - "LPTokenSupply": "26382708755253216209293773" + "mAssetSupply": "104177317081911569726452277", + "LPTokenSupply": "8233128689649171978581983" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "57661547491302584614912", - "outputQty0": "57725483014428326602482", - "outputQty": "57478042487795868715811", - "swapFee1": "34596928494781550768", - "swapFee2": "23090193205771330640", + "type": "swap_fp_to_mp", + "inputQty": "106973526841209372278784", + "outputIndex": 1, + "outputQty": "103386145077774912238332", + "swapFee": "0", + "redemptionFee": "64346492567401907663", "mpReserves": [ - "60896392686989140113886255", - "26189223471677631918971777", - "18431073761348173464069881" + "56715383551863485397442131", + "9977171479607096512586829", + "37654879523252051689241126" ], "fpReserves": [ - "6353308862294396074848586", - "20277122824230061395251902" + "4929445603475492977609069", + "3524914518374899769250286" ], - "mAssetSupply": "105460691011322218511627749", - "LPTokenSupply": "26325050667454763102833937" + "mAssetSupply": "104070137274125133948920242", + "LPTokenSupply": "8233128689649171978581983" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1174825624077962802364416", - "outputQty0": "1176049679975442399272465", - "outputQty": "1172557184783334732512799", + "inputIndex": 2, + "inputQty": "108417209665206848", + "outputQty0": "107996937289669694", + "outputQty": "105068889560017533", "mpReserves": [ - "60896392686989140113886255", - "27364049095755594721336193", - "18431073761348173464069881" + "56715383551863485397442131", + "9977171479607096512586829", + "37654879631669261354447974" ], "fpReserves": [ - "7529358542269838474121051", - "20277122824230061395251902" + "4929445711472430267278763", + "3524914518374899769250286" ], - "mAssetSupply": "106636740691297660910900214", - "LPTokenSupply": "27497607852238097835346736" + "mAssetSupply": "104070137382122071238589936", + "LPTokenSupply": "8233128794718061538599516" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "271836146628309408", - "outputQty0": "271148624804612519", - "outputQty": "270034947463120472", + "inputQty": "12772779077455979741184", + "outputQty0": "12659886576239051825097", + "outputQty": "12620075219780159981758", + "swapFee": "9853278145576320413", "mpReserves": [ - "60896392958825286742195663", - "27364049095755594721336193", - "18431073761348173464069881" + "56728156330940941377183315", + "9977171479607096512586829", + "37654879631669261354447974" ], "fpReserves": [ - "7529358813418463278733570", - "20277122824230061395251902" + "4942105598048669319103860", + "3512294443155119609268528" ], - "mAssetSupply": "106636740962446285715512733", - "LPTokenSupply": "27497608122273045298467208" + "mAssetSupply": "104082797268698310290415033", + "LPTokenSupply": "8233129780045876096231557" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "162341273617603124789248", - "outputQty0": "162491430574189726936138", - "outputQty": "161802736464926056856061", + "inputIndex": 0, + "inputQty": "25748312407043457024", + "outputQty0": "25520701759561598898", + "outputQty": "24828266106627372415", "mpReserves": [ - "60896392958825286742195663", - "27526390369373197846125441", - "18431073761348173464069881" + "56728182079253348420640339", + "9977171479607096512586829", + "37654879631669261354447974" ], "fpReserves": [ - "7691850243992653005669708", - "20277122824230061395251902" + "4942131118750428880702758", + "3512294443155119609268528" ], - "mAssetSupply": "106799232393020475442448871", - "LPTokenSupply": "27659410858737971355323269" + "mAssetSupply": "104082822789400069852013931", + "LPTokenSupply": "8233154608311982723603972" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "51124481976952986533888", - "outputQty0": "51315840314427671828227", - "outputQty": "51424822684360753497469", - "swapFee1": "30674689186171791920", - "swapFee2": "20526336125771068731", + "type": "swap_fp_to_mp", + "inputQty": "103625226590167853170688", + "outputIndex": 1, + "outputQty": "100042139247745596951290", + "swapFee": "0", + "redemptionFee": "62311041038122892673", "mpReserves": [ - "60844968136140925988698194", - "27526390369373197846125441", - "18431073761348173464069881" + "56728182079253348420640339", + "9877129340359350915635539", + "37654879631669261354447974" ], "fpReserves": [ - "7640534403678225333841481", - "20277122824230061395251902" + "4838279383686890726246614", + "3615919669745287462439216" ], - "mAssetSupply": "106747937079042173541689375", - "LPTokenSupply": "27608289444229936985968573" + "mAssetSupply": "103979033365377569820450460", + "LPTokenSupply": "8233154608311982723603972" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "38261940181059568", - "outputQty0": "38296698325932882", - "outputQty": "38132500351552219", + "type": "swap_fp_to_mp", + "inputQty": "4614418450423406919680", + "outputIndex": 1, + "outputQty": "4452306019823688529384", + "swapFee": "0", + "redemptionFee": "2774162869757832567", "mpReserves": [ - "60844968136140925988698194", - "27526390407635138027185009", - "18431073761348173464069881" + "56728182079253348420640339", + "9872677034339527227106155", + "37654879631669261354447974" ], "fpReserves": [ - "7640534441974923659774363", - "20277122824230061395251902" + "4833655778903961005300329", + "3620534088195710869358896" ], - "mAssetSupply": "106747937117338871867622257", - "LPTokenSupply": "27608289482362437337520792" + "mAssetSupply": "103974412534757509857336742", + "LPTokenSupply": "8233154608311982723603972" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "245380751594960044687360", - "outputQty0": "246346409710269193375104", - "outputQty": "248393822430195488368388", - "swapFee": "196194949688035983859", + "inputQty": "459396856800188864", + "outputQty0": "457587079149763036", + "outputQty": "456316317013651164", + "swapFee": "356196321793201", "mpReserves": [ - "60844968136140925988698194", - "27526390407635138027185009", - "18676454512943133508757241" + "56728182079253348420640339", + "9872677034339527227106155", + "37654880091066118154636838" ], "fpReserves": [ - "7886880851685192853149467", - "20028729001799865906883514" + "4833656236491040155063365", + "3620533631879393855707732" ], - "mAssetSupply": "106994283527049141060997361", - "LPTokenSupply": "27608309101857406141119177" + "mAssetSupply": "103974412992344589007099778", + "LPTokenSupply": "8233154608347602355783292" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "40287040333564337979392", - "outputQty0": "40186770739933347135372", - "outputQty": "40504301527681810783249", - "swapFee": "31994040966388391276", + "type": "swap_fp_to_mp", + "inputQty": "1107551368339458490368", + "outputIndex": 2, + "outputQty": "1113465469984155454694", + "swapFee": "0", + "redemptionFee": "665847014639005861", "mpReserves": [ - "60885255176474490326677586", - "27526390407635138027185009", - "18676454512943133508757241" + "56728182079253348420640339", + "9872677034339527227106155", + "37653766625596133999182144" ], "fpReserves": [ - "7927067622425126200284839", - "19988224700272184096100265" + "4832546491466641811961673", + "3621641183247733314198100" ], - "mAssetSupply": "107034470297789074408132733", - "LPTokenSupply": "27608312301261502779958304" + "mAssetSupply": "103973303913167205303003947", + "LPTokenSupply": "8233154608347602355783292" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "167065637398708614070272", - "outputQty0": "166648768911407662399333", - "outputQty": "167918766596186739022497", - "swapFee": "132652731120711867742", + "inputQty": "9263573944129347584", + "outputQty0": "9180806645983959586", + "outputQty": "8933204173994745582", "mpReserves": [ - "61052320813873198940747858", - "27526390407635138027185009", - "18676454512943133508757241" + "56728191342827292549987923", + "9872677034339527227106155", + "37653766625596133999182144" ], "fpReserves": [ - "8093716391336533862684172", - "19820305933675997357077768" + "4832555672273287795921259", + "3621641183247733314198100" ], - "mAssetSupply": "107201119066700482070532066", - "LPTokenSupply": "27608325566534614851145078" + "mAssetSupply": "103973313093973851286963533", + "LPTokenSupply": "8233163541551776350528874" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "88265648816055111385088", - "outputQty0": "88347585822075161813140", - "outputQty": "87883047038462435847297", + "inputQty": "3216893458233145856", + "outputQty0": "3338708698355862915", + "outputQty": "3329449776458884930", + "swapFee": "2598932098992755", "mpReserves": [ - "61052320813873198940747858", - "27614656056451193138570097", - "18676454512943133508757241" + "56728191342827292549987923", + "9872680251232985460252011", + "37653766625596133999182144" ], "fpReserves": [ - "8182063977158609024497312", - "19820305933675997357077768" + "4832559010981986151784174", + "3621637853797956855313170" ], - "mAssetSupply": "107289466652522557232345206", - "LPTokenSupply": "27696208613573077286992375" + "mAssetSupply": "103973316432682549642826448", + "LPTokenSupply": "8233163541811669560428149" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "6258044159201276592128", - "outputQty0": "6287676401159844514341", - "outputQty": "6260696172636999293087", - "swapFee1": "3754826495520765955", - "swapFee2": "2515070560463937805", + "type": "swap_fp_to_mp", + "inputQty": "59023765628741570527232", + "outputIndex": 0, + "outputQty": "59631368572961538962340", + "swapFee": "0", + "redemptionFee": "35480655738460778525", "mpReserves": [ - "61052320813873198940747858", - "27614656056451193138570097", - "18670193816770496509464154" + "56668559974254331011025583", + "9872680251232985460252011", + "37653766625596133999182144" ], "fpReserves": [ - "8175776300757449179982971", - "19820305933675997357077768" + "4773424584751218187574552", + "3680661619426698425840402" ], - "mAssetSupply": "107283181491191957851768670", - "LPTokenSupply": "27689950944896525562476842" + "mAssetSupply": "103914217487107520139395351", + "LPTokenSupply": "8233163541811669560428149" }, { "type": "mint", "inputIndex": 2, - "inputQty": "96218193988875924275200", - "outputQty0": "96592128506111653735523", - "outputQty": "96073820461691410906491", + "inputQty": "976728262099702674096128", + "outputQty0": "972751115212064972081264", + "outputQty": "946315022819256318054808", "mpReserves": [ - "61052320813873198940747858", - "27614656056451193138570097", - "18766412010759372433739354" + "56668559974254331011025583", + "9872680251232985460252011", + "38630494887695836673278272" ], "fpReserves": [ - "8272368429263560833718494", - "19820305933675997357077768" + "5746175699963283159655816", + "3680661619426698425840402" ], - "mAssetSupply": "107379773619698069505504193", - "LPTokenSupply": "27786024765358216973383333" + "mAssetSupply": "104886968602319585111476615", + "LPTokenSupply": "9179478564630925878482957" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "1414149202583102852956160", - "outputQty0": "1410574031877271230192516", - "outputQty": "1418418124526737153694064", - "swapFee": "1121502887422960863436", + "inputQty": "3129006356722145280", + "outputQty0": "3101293337707663226", + "outputQty": "3088913509933170068", + "swapFee": "2412913602527258", "mpReserves": [ - "62466470016456301793704018", - "27614656056451193138570097", - "18766412010759372433739354" + "56668563103260687733170863", + "9872680251232985460252011", + "38630494887695836673278272" ], "fpReserves": [ - "9682942461140832063911010", - "18401887809149260203383704" + "5746178801256620867319042", + "3680658530513188492670334" ], - "mAssetSupply": "108790347651575340735696709", - "LPTokenSupply": "27786136915646959269469676" + "mAssetSupply": "104886971703612922819139841", + "LPTokenSupply": "9179478564872217238735682" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "209500219103243367612416", - "outputQty0": "209707375875649713647841", - "outputQty": "208145867271109693715137", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "156639264041102185857024", + "outputQty0": "155978366540006226359691", + "outputQty": "155309493379759281063267", + "swapFee": "121351225623400537133", "mpReserves": [ - "62466470016456301793704018", - "27824156275554436506182513", - "18766412010759372433739354" + "56668563103260687733170863", + "9872680251232985460252011", + "38787134151736938859135296" ], "fpReserves": [ - "9892649837016481777558851", - "18401887809149260203383704" + "5902157167796627093678733", + "3525349037133429211607067" ], - "mAssetSupply": "109000055027450990449344550", - "LPTokenSupply": "27994282782918068963184813" + "mAssetSupply": "105042950070152929045499532", + "LPTokenSupply": "9179490699994779578789395" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "12631841990007612", - "outputQty0": "12644107314034115", - "outputQty": "12549066350264504", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "75399780166110678089728", + "outputQty0": "74732165829813861109615", + "outputQty": "74377466510366192987665", + "swapFee": "58128839929144551407", "mpReserves": [ - "62466470016456301793704018", - "27824156288186278496190125", - "18766412010759372433739354" + "56743962883426798411260591", + "9872680251232985460252011", + "38787134151736938859135296" ], "fpReserves": [ - "9892649849660589091592966", - "18401887809149260203383704" + "5976889333626440954788348", + "3450971570623063018619402" ], - "mAssetSupply": "109000055040095097763378665", - "LPTokenSupply": "27994282795467135313449317" + "mAssetSupply": "105117682235982742906609147", + "LPTokenSupply": "9179496512878772493244535" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "72184904057374415781888", - "outputQty0": "72254554702277060954603", - "outputQty": "72540499532816243683280", - "swapFee": "57367786128785340783", + "type": "redeem", + "outputIndex": 0, + "inputQty": "2529328517372893462528", + "outputQty0": "2600119470487703336651", + "outputQty": "2621793019110684027378", + "swapFee1": "1517597110423736077", + "swapFee2": "1560071682292622001", "mpReserves": [ - "62466470016456301793704018", - "27896341192243652911972013", - "18766412010759372433739354" + "56741341090407687727233213", + "9872680251232985460252011", + "38787134151736938859135296" ], "fpReserves": [ - "9964904404362866152547569", - "18329347309616443959700424" + "5974289214155953251451697", + "3450971570623063018619402" ], - "mAssetSupply": "109072309594797374824333268", - "LPTokenSupply": "27994288532245748191983395" + "mAssetSupply": "105115083676583937495894497", + "LPTokenSupply": "9176967336121110642155614" }, { "type": "swap_fp_to_mp", - "inputQty": "720377435529632389529600", - "outputIndex": 1, - "outputQty": "715564863487678394644045", + "inputQty": "36057018105764031496192", + "outputIndex": 2, + "outputQty": "36334703375237172043721", "swapFee": "0", - "redemptionFee": "286632619081866722530", + "redemptionFee": "21721638025953991321", "mpReserves": [ - "62466470016456301793704018", - "27180776328755974517327968", - "18766412010759372433739354" + "56741341090407687727233213", + "9872680251232985460252011", + "38750799448361701687091575" ], "fpReserves": [ - "9248322856658199346220307", - "19049724745146076349230024" + "5938086484112696599249404", + "3487028588728827050115594" ], - "mAssetSupply": "108356014679711789884728536", - "LPTokenSupply": "27994288532245748191983395" + "mAssetSupply": "105078902668178706797683525", + "LPTokenSupply": "9176967336121110642155614" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "72269690339031", - "outputQty0": "72347958822920", - "outputQty": "71856373928157", + "type": "redeem", + "outputIndex": 2, + "inputQty": "959160226406214263635968", + "outputQty0": "985662878244997476036381", + "outputQty": "989123785002551457429446", + "swapFee1": "575496135843728558181", + "swapFee2": "591397726946998485621", "mpReserves": [ - "62466470016456301793704018", - "27180776328828244207666999", - "18766412010759372433739354" + "56741341090407687727233213", + "9872680251232985460252011", + "37761675663359150229662129" ], "fpReserves": [ - "9248322856730547305043227", - "19049724745146076349230024" + "4952423605867699123213023", + "3487028588728827050115594" ], - "mAssetSupply": "108356014679784137843551456", - "LPTokenSupply": "27994288532317604565911552" + "mAssetSupply": "104093831187660656320132765", + "LPTokenSupply": "8217864659328480751375464" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "138152216042449420288", - "outputQty0": "139013878518024321313", - "outputQty": "139320076872560920126", - "swapFee1": "82891329625469652", - "swapFee2": "55605551407209728", + "type": "swap_fp_to_mp", + "inputQty": "15082862290630181126144", + "outputIndex": 2, + "outputQty": "15170418086676867650602", + "swapFee": "0", + "redemptionFee": "9071603788875404462", "mpReserves": [ - "62466330696379429232783892", - "27180776328828244207666999", - "18766412010759372433739354" + "56741341090407687727233213", + "9872680251232985460252011", + "37746505245272473362011527" ], "fpReserves": [ - "9248183842852029280721914", - "19049724745146076349230024" + "4937304266219573449108249", + "3502111451019457231241738" ], - "mAssetSupply": "108355875721511171226439871", - "LPTokenSupply": "27994150388390695079038229" + "mAssetSupply": "104078720919616319521432453", + "LPTokenSupply": "8217864659328480751375464" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1172477244748894976", - "outputQty0": "1173747034381167410", - "outputQty": "1165771871813879085", + "type": "redeem", + "outputIndex": 1, + "inputQty": "9481851012164570054656", + "outputQty0": "9741258459439672151828", + "outputQty": "9379258877157942684970", + "swapFee1": "5689110607298742032", + "swapFee2": "5844755075663803291", "mpReserves": [ - "62466330696379429232783892", - "27180777501305488956561975", - "18766412010759372433739354" + "56741341090407687727233213", + "9863300992355827517567041", + "37746505245272473362011527" ], "fpReserves": [ - "9248185016599063661889324", - "19049724745146076349230024" + "4927563007760133776956421", + "3502111451019457231241738" ], - "mAssetSupply": "108355876895258205607607281", - "LPTokenSupply": "27994151554162566892917314" + "mAssetSupply": "104068985505911955513083916", + "LPTokenSupply": "8208383377227376911195011" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "20159583365883584577536", - "outputQty0": "20285145498906453617327", - "outputQty": "20196067264807964570227", - "swapFee1": "12095750019530150746", - "swapFee2": "8114058199562581446", + "inputQty": "208191869411350", + "outputQty0": "213887112207916", + "outputQty": "214610516301084", + "swapFee1": "124915121646", + "swapFee2": "128332267324", "mpReserves": [ - "62466330696379429232783892", - "27180777501305488956561975", - "18746215943494564469169127" + "56741341090407687727233213", + "9863300992355827517567041", + "37746505245057862845710443" ], "fpReserves": [ - "9227899871100157208271997", - "19049724745146076349230024" + "4927563007546246664748505", + "3502111451019457231241738" ], - "mAssetSupply": "108335599863817498716571400", - "LPTokenSupply": "27973993180371685261354852" + "mAssetSupply": "104068985505698196733143324", + "LPTokenSupply": "8208383377019197533295825" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "5673263403868702638080", - "outputQty0": "5679397642524538139182", - "outputQty": "5708605306087055842960", - "swapFee": "4512711165800448758", + "type": "swap_fp_to_mp", + "inputQty": "4358093935116174753792", + "outputIndex": 1, + "outputQty": "4205862544195570928742", + "swapFee": "0", + "redemptionFee": "2621045861530582111", "mpReserves": [ - "62466330696379429232783892", - "27186450764709357659200055", - "18746215943494564469169127" + "56741341090407687727233213", + "9859095129811631946638299", + "37746505245057862845710443" ], "fpReserves": [ - "9233579268742681746411179", - "19044016139839989293387064" + "4923194597777029027896258", + "3506469544954573405995530" ], - "mAssetSupply": "108341279261460023254710582", - "LPTokenSupply": "27973993631642801841399727" + "mAssetSupply": "104064619716974840626873188", + "LPTokenSupply": "8208383377019197533295825" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "661327847179335409598464", - "outputQty0": "663878855930270386876363", - "outputQty": "666899625793261129895287", - "swapFee": "527360675984481887218", + "type": "mint", + "inputIndex": 0, + "inputQty": "2508178459258688", + "outputQty0": "2485746682938202", + "outputQty": "2418122456261432", "mpReserves": [ - "62466330696379429232783892", - "27186450764709357659200055", - "19407543790673899878767591" + "56741341092915866186491901", + "9859095129811631946638299", + "37746505245057862845710443" ], "fpReserves": [ - "9897458124672952133287542", - "18377116514046728163491777" + "4923194600262775710834460", + "3506469544954573405995530" ], - "mAssetSupply": "109005158117390293641586945", - "LPTokenSupply": "27974046367710400289588448" + "mAssetSupply": "104064619719460587309811390", + "LPTokenSupply": "8208383379437319989557257" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "47485038073798186762240", - "outputQty0": "47816701592501566712154", - "outputQty": "47743872944016820288607", - "swapFee1": "28491022844278912057", - "swapFee2": "19126680637000626684", + "type": "swap_fp_to_mp", + "inputQty": "31935044088915063472128", + "outputIndex": 2, + "outputQty": "32116692966820866824978", + "swapFee": "0", + "redemptionFee": "19205092927844522714", "mpReserves": [ - "62466330696379429232783892", - "27138706891765340838911448", - "19407543790673899878767591" + "56741341092915866186491901", + "9859095129811631946638299", + "37714388552091041978885465" ], "fpReserves": [ - "9849641423080450566575388", - "18377116514046728163491777" + "4891186112049701506309886", + "3538404589043488469467658" ], - "mAssetSupply": "108957360542478429075501475", - "LPTokenSupply": "27926564178738886530717413" + "mAssetSupply": "104032630436340440949809530", + "LPTokenSupply": "8208383379437319989557257" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "656168605779987858980864", + "outputQty0": "653511434020372454651728", + "outputQty": "635634470844457731335084", + "mpReserves": [ + "56741341092915866186491901", + "9859095129811631946638299", + "38370557157871029837866329" + ], + "fpReserves": [ + "5544697546070073960961614", + "3538404589043488469467658" + ], + "mAssetSupply": "104686141870360813404461258", + "LPTokenSupply": "8844017850281777720892341" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "222543205678185522921472", - "outputQty0": "221979788547608562672875", - "outputQty": "222839096808741581901613", - "swapFee": "176236049665398962041", + "inputIndex": 2, + "inputQty": "61421301662538551787520", + "outputQty0": "61166797871771259378113", + "outputQty": "60913449111152888318692", + "swapFee": "47584579154636920706", "mpReserves": [ - "62688873902057614755705364", - "27138706891765340838911448", - "19407543790673899878767591" + "56741341092915866186491901", + "9859095129811631946638299", + "38431978459533568389653849" ], "fpReserves": [ - "10071621211628059129248263", - "18154277417237986581590164" + "5605864343941845220339727", + "3477491139932335581148966" ], - "mAssetSupply": "109179340331026037638174350", - "LPTokenSupply": "27926581802343853070613617" + "mAssetSupply": "104747308668232584663839371", + "LPTokenSupply": "8844022608739693184584411" }, { - "type": "swap_fp_to_mp", - "inputQty": "1002175463428687744", - "outputIndex": 2, - "outputQty": "993578989202544986", - "swapFee": "0", - "redemptionFee": "399072808717896", + "type": "mint", + "inputIndex": 1, + "inputQty": "19613785818369754136576", + "outputQty0": "20366845307787339768421", + "outputQty": "19803727225278957850572", "mpReserves": [ - "62688873902057614755705364", - "27138706891765340838911448", - "19407542797094910676222605" + "56741341092915866186491901", + "9878708915630001700774875", + "38431978459533568389653849" ], "fpReserves": [ - "10071620213946037334506649", - "18154278419413450010277908" + "5626231189249632560108148", + "3477491139932335581148966" ], - "mAssetSupply": "109179339333743088652150632", - "LPTokenSupply": "27926581802343853070613617" + "mAssetSupply": "104767675513540372003607792", + "LPTokenSupply": "8863826335964972142434983" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2801808256389127680", - "outputQty0": "2794695942487689452", - "outputQty": "2805037091796670563", - "swapFee": "2218445618130019", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1012309840575333291524096", + "outputQty0": "1040144280510278201306704", + "outputQty": "997064254864589317486688", + "swapFee1": "607385904345199974914", + "swapFee2": "624086568306166920784", "mpReserves": [ - "62688876703865871144833044", - "27138706891765340838911448", - "19407542797094910676222605" + "56741341092915866186491901", + "8881644660765412383288187", + "38431978459533568389653849" ], "fpReserves": [ - "10071623008641979822196101", - "18154275614376358213607345" + "4586086908739354358801444", + "3477491139932335581148966" ], - "mAssetSupply": "109179342128439031139840084", - "LPTokenSupply": "27926581802565697632426618" + "mAssetSupply": "103728155319598399969221872", + "LPTokenSupply": "7851577233980073370908378" }, { "type": "swap_fp_to_mp", - "inputQty": "288856793183331664527360", + "inputQty": "156570216480037344", "outputIndex": 1, - "outputQty": "287047541415633159242263", + "outputQty": "149690455099659561", "swapFee": "0", - "redemptionFee": "114999164973584640564", + "redemptionFee": "94119959815124", "mpReserves": [ - "62688876703865871144833044", - "26851659350349707679669185", - "19407542797094910676222605" + "56741341092915866186491901", + "8881644511074957283628626", + "38431978459533568389653849" ], "fpReserves": [ - "9784125096208018220785407", - "18443132407559689878134705" + "4586086751872754666927243", + "3477491296502552061186310" ], - "mAssetSupply": "108891959215170043123069954", - "LPTokenSupply": "27926581802565697632426618" + "mAssetSupply": "103728155162825920237162795", + "LPTokenSupply": "7851577233980073370908378" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1633132838836401602560", - "outputQty0": "1644410823887568334214", - "outputQty": "1641791466616747415841", - "swapFee1": "979879703301840961", - "swapFee2": "657764329555027333", + "type": "swap_fp_to_mp", + "inputQty": "107375719103581585408", + "outputIndex": 0, + "outputQty": "108588470246208383715", + "swapFee": "0", + "redemptionFee": "64547374316809499", "mpReserves": [ - "62688876703865871144833044", - "26850017558883090932253344", - "19407542797094910676222605" + "56741232504445619978108186", + "8881644511074957283628626", + "38431978459533568389653849" ], "fpReserves": [ - "9782480685384130652451193", - "18443132407559689878134705" + "4585979172915559984428009", + "3477598672221655642771718" ], - "mAssetSupply": "108890315462110485109763073", - "LPTokenSupply": "27924948767714831561008154" + "mAssetSupply": "103728047648416099871473060", + "LPTokenSupply": "7851577233980073370908378" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "17373410218197420867584", - "outputQty0": "17493271816778315584705", - "outputQty": "17465376229879211552432", - "swapFee1": "10424046130918452520", - "swapFee2": "6997308726711326233", + "outputIndex": 2, + "inputQty": "34089202059317321138176", + "outputQty0": "35016777673722325790450", + "outputQty": "35165580726529465584184", + "swapFee1": "20453521235590392682", + "swapFee2": "21010066604233395474", "mpReserves": [ - "62688876703865871144833044", - "26832552182653211720700912", - "19407542797094910676222605" + "56741232504445619978108186", + "8881644511074957283628626", + "38396812878807038924069665" ], "fpReserves": [ - "9764987413567352336866488", - "18443132407559689878134705" + "4550962395241837658637559", + "3477598672221655642771718" ], - "mAssetSupply": "108872829187602433505504601", - "LPTokenSupply": "27907576399901247231985822" + "mAssetSupply": "103693051880808981779078084", + "LPTokenSupply": "7817490077272879608809470" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "418746547562061318062080", - "outputQty0": "417670467029246894937867", - "outputQty": "419275223236371959186675", - "swapFee": "331603596961740237591", + "inputQty": "756721102527836444426240", + "outputQty0": "749170836114513375761634", + "outputQty": "728715394511074549580867", "mpReserves": [ - "63107623251427932462895124", - "26832552182653211720700912", - "19407542797094910676222605" + "57497953606973456422534426", + "8881644511074957283628626", + "38396812878807038924069665" ], "fpReserves": [ - "10182657880596599231804355", - "18023857184323317918948030" + "5300133231356351034399193", + "3477598672221655642771718" ], - "mAssetSupply": "109290499654631680400442468", - "LPTokenSupply": "27907609560260943406009581" + "mAssetSupply": "104442222716923495154839718", + "LPTokenSupply": "8546205471783954158390337" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1266324923682105138872320", - "outputQty0": "1270742692968125158380975", - "outputQty": "1260313886188574339766223", + "type": "swap_fp_to_mp", + "inputQty": "206420732543285942288384", + "outputIndex": 2, + "outputQty": "207822504686236430138484", + "swapFee": "0", + "redemptionFee": "124176611295260986503", "mpReserves": [ - "63107623251427932462895124", - "26832552182653211720700912", - "20673867720777015815094925" + "57497953606973456422534426", + "8881644511074957283628626", + "38188990374120802493931181" ], "fpReserves": [ - "11453400573564724390185330", - "18023857184323317918948030" + "5093172212530916056893280", + "3684019404764941585060102" ], - "mAssetSupply": "110561242347599805558823443", - "LPTokenSupply": "29167923446449517745775804" + "mAssetSupply": "104235385874709355438320308", + "LPTokenSupply": "8546205471783954158390337" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1766546142040965888", - "outputQty0": "1772261781238841621", - "outputQty": "1757167210356020592", + "inputIndex": 1, + "inputQty": "543956421393256512", + "outputQty0": "570056933183048970", + "outputQty": "554533126916961689", "mpReserves": [ - "63107623251427932462895124", - "26832552182653211720700912", - "20673869487323157856060813" + "57497953606973456422534426", + "8881645055031378676885138", + "38188990374120802493931181" ], "fpReserves": [ - "11453402345826505629026951", - "18023857184323317918948030" + "5093172782587849239942250", + "3684019404764941585060102" ], - "mAssetSupply": "110561244119861586797665064", - "LPTokenSupply": "29167925203616728101796396" + "mAssetSupply": "104235386444766288621369278", + "LPTokenSupply": "8546206026317081075352026" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "3594297638486752100352", - "outputQty0": "3622995642409491335192", - "outputQty": "3609864316886296559377", - "swapFee1": "2156578583092051260", - "swapFee2": "1449198256963796534", + "inputQty": "525140328647775682560", + "outputQty0": "539517307154352987871", + "outputQty": "541747024166443894518", + "swapFee1": "315084197188665409", + "swapFee2": "323710384292611792", "mpReserves": [ - "63107623251427932462895124", - "26832552182653211720700912", - "20670259623006271559501436" + "57497953606973456422534426", + "8881645055031378676885138", + "38188448627096636050036663" ], "fpReserves": [ - "11449779350184096137691759", - "18023857184323317918948030" + "5092633265280694886954379", + "3684019404764941585060102" ], - "mAssetSupply": "110557622573417434270126406", - "LPTokenSupply": "29164331121636099658901170" + "mAssetSupply": "104234847251169518560993199", + "LPTokenSupply": "8545680917496853018536006" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "66325400792439906631680", - "outputQty0": "66162916875610503072196", - "outputQty": "65598532491994318008691", + "type": "redeem", + "outputIndex": 0, + "inputQty": "28204802513010216140800", + "outputQty0": "28976712365241060350543", + "outputQty": "29254004905328743035153", + "swapFee1": "16922881507806129684", + "swapFee2": "17386027419144636210", "mpReserves": [ - "63173948652220372369526804", - "26832552182653211720700912", - "20670259623006271559501436" + "57468699602068127679499273", + "8881645055031378676885138", + "38188448627096636050036663" ], "fpReserves": [ - "11515942267059706640763955", - "18023857184323317918948030" + "5063656552915453826603836", + "3684019404764941585060102" ], - "mAssetSupply": "110623785490293044773198602", - "LPTokenSupply": "29229929654128093976909861" + "mAssetSupply": "104205887924831696645278866", + "LPTokenSupply": "8517477807271993583008174" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "19897540093603229990912", - "outputQty0": "20056895365322212735838", - "outputQty": "20098136230886195800280", - "swapFee1": "11938524056161937994", - "swapFee2": "8022758146128885094", + "type": "mint", + "inputIndex": 0, + "inputQty": "487400746515306816", + "outputQty0": "482492699997831009", + "outputQty": "469361193429893537", "mpReserves": [ - "63153850515989486173726524", - "26832552182653211720700912", - "20670259623006271559501436" + "57468700089468874194806089", + "8881645055031378676885138", + "38188448627096636050036663" ], "fpReserves": [ - "11495885371694384428028117", - "18023857184323317918948030" + "5063657035408153824434845", + "3684019404764941585060102" ], - "mAssetSupply": "110603736617685868689347858", - "LPTokenSupply": "29210033307886896363112748" + "mAssetSupply": "104205888407324396643109875", + "LPTokenSupply": "8517478276633187012901711" }, { - "type": "swap_fp_to_mp", - "inputQty": "10392138750232170496", - "outputIndex": 1, - "outputQty": "10341004586038015046", - "swapFee": "0", - "redemptionFee": "4143429214167875", + "type": "mint", + "inputIndex": 1, + "inputQty": "1941741267229488380379136", + "outputQty0": "2018271033312038328094691", + "outputQty": "1962207151522462581982168", "mpReserves": [ - "63153850515989486173726524", - "26832541841648625682685866", - "20670259623006271559501436" + "57468700089468874194806089", + "10823386322260867057264274", + "38188448627096636050036663" ], "fpReserves": [ - "11495875013121349008339651", - "18023867576462068151118526" + "7081928068720192152529536", + "3684019404764941585060102" ], - "mAssetSupply": "110603726263256262483827267", - "LPTokenSupply": "29210033307886896363112748" + "mAssetSupply": "106224159440636434971204566", + "LPTokenSupply": "10479685428155649594883879" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "76180875768222491607040", - "outputQty0": "76789361878146713803008", - "outputQty": "76509534286377091887510", - "swapFee1": "45708525460933494964", - "swapFee2": "30715744751258685521", + "inputQty": "4579877462409739239424", + "outputQty0": "4710454827704093333973", + "outputQty": "4724088012991093246598", + "swapFee1": "2747926477445843543", + "swapFee2": "2826272896622456000", "mpReserves": [ - "63153850515989486173726524", - "26832541841648625682685866", - "20593750088719894467613926" + "57468700089468874194806089", + "10823386322260867057264274", + "38183724539083644956790065" ], "fpReserves": [ - "11419085651243202294536643", - "18023867576462068151118526" + "7077217613892488059195563", + "3684019404764941585060102" ], - "mAssetSupply": "110526967617122867028709780", - "LPTokenSupply": "29133857002971219964855204" + "mAssetSupply": "106219451812081627500326593", + "LPTokenSupply": "10475105825485887600228809" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "109764181754800490151936", - "outputQty0": "109905101062263128392083", - "outputQty": "108967824369133819981401", + "inputIndex": 2, + "inputQty": "1545696691623851196416", + "outputQty0": "1540311858823001729038", + "outputQty": "1496715543996566913867", "mpReserves": [ - "63153850515989486173726524", - "26942306023403426172837802", - "20593750088719894467613926" + "57468700089468874194806089", + "10823386322260867057264274", + "38185270235775268807986481" ], "fpReserves": [ - "11528990752305465422928726", - "18023867576462068151118526" + "7078757925751311060924601", + "3684019404764941585060102" ], - "mAssetSupply": "110636872718185130157101863", - "LPTokenSupply": "29242824827340353784836605" + "mAssetSupply": "106220992123940450502055631", + "LPTokenSupply": "10476602541029884167142676" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "9052246490811776106496", - "outputQty0": "9124835035076401075493", - "outputQty": "9143599041241868273998", - "swapFee1": "5431347894487065663", - "swapFee2": "3649934014030560430", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "140781968048237311950848", + "outputQty0": "139619490593087812465661", + "outputQty": "138748942468973013706263", + "swapFee": "108530297005109310672", "mpReserves": [ - "63144706916948244305452526", - "26942306023403426172837802", - "20593750088719894467613926" + "57609482057517111506756937", + "10823386322260867057264274", + "38185270235775268807986481" ], "fpReserves": [ - "11519865917270389021853233", - "18023867576462068151118526" + "7218377416344398873390262", + "3545270462295968571353839" ], - "mAssetSupply": "110627751533084067786586800", - "LPTokenSupply": "29233773123984331457436675" + "mAssetSupply": "106360611614533538314521292", + "LPTokenSupply": "10476613394059584678073743" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "9544752717765360", - "outputQty0": "9521357976861548", - "outputQty": "9544402615104507", - "swapFee": "7551972121120", + "inputQty": "84950390766999488", + "outputQty0": "84247790557589582", + "outputQty": "83695516654132895", + "swapFee": "65475982389315", "mpReserves": [ - "63144706926492997023217886", - "26942306023403426172837802", - "20593750088719894467613926" + "57609482142467502273756425", + "10823386322260867057264274", + "38185270235775268807986481" ], "fpReserves": [ - "11519865926791746998714781", - "18023867566917665536014019" + "7218377500592189430979844", + "3545270378600451917220944" ], - "mAssetSupply": "110627751542605425763448348", - "LPTokenSupply": "29233773123985086654648787" + "mAssetSupply": "106360611698781328872110874", + "LPTokenSupply": "10476613394066132276312674" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "8458190274731395072", - "outputQty0": "8437458759114673898", - "outputQty": "8365331573190110824", + "inputIndex": 1, + "inputQty": "1713885369193352658944", + "outputQty0": "1769555292645716464093", + "outputQty": "1719085405090444937052", "mpReserves": [ - "63144715384683271754612958", - "26942306023403426172837802", - "20593750088719894467613926" + "57609482142467502273756425", + "10825100207630060409923218", + "38185270235775268807986481" ], "fpReserves": [ - "11519874364250506113388679", - "18023867566917665536014019" + "7220147055884835147443937", + "3545270378600451917220944" ], - "mAssetSupply": "110627759980064184878122246", - "LPTokenSupply": "29233781489316659844759611" + "mAssetSupply": "106362381254073974588574967", + "LPTokenSupply": "10478332479471222721249726" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "3888801592824413290496", - "outputQty0": "3919974654276937124409", - "outputQty": "3905610302052210589634", - "swapFee1": "2333280955694647974", - "swapFee2": "1567989861710774849", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "50368939862715785019392", + "outputQty0": "51997189501831307890665", + "outputQty": "51649704649025509588381", + "swapFee": "40410766847890294659", "mpReserves": [ - "63144715384683271754612958", - "26942306023403426172837802", - "20589844478417842257024292" + "57609482142467502273756425", + "10875469147492776194942610", + "38185270235775268807986481" ], "fpReserves": [ - "11515954389596229176264270", - "18023867566917665536014019" + "7272144245386666455334602", + "3493620673951426407632563" ], - "mAssetSupply": "110623841573399769651772686", - "LPTokenSupply": "29229892921051931000933912" + "mAssetSupply": "106414378443575805896465632", + "LPTokenSupply": "10478336520547907510279191" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "2161181703597281509376", - "outputQty0": "2178503191910246664209", - "outputQty": "2170517777868529175667", - "swapFee1": "1296709022158368905", - "swapFee2": "871401276764098665", + "type": "swap_fp_to_mp", + "inputQty": "19549793506969249644544", + "outputIndex": 0, + "outputQty": "19818395456485236987301", + "swapFee": "0", + "redemptionFee": "11800271283632293212", "mpReserves": [ - "63144715384683271754612958", - "26942306023403426172837802", - "20587673960639973727848625" + "57589663747011017036769124", + "10875469147492776194942610", + "38185270235775268807986481" ], "fpReserves": [ - "11513775886404318929600061", - "18023867566917665536014019" + "7252477126580612633314250", + "3513170467458395657277107" ], - "mAssetSupply": "110621663941609136169207142", - "LPTokenSupply": "29227731869019235935261426" + "mAssetSupply": "106394723125041035706738492", + "LPTokenSupply": "10478336520547907510279191" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "19824379862601800089600", - "outputQty0": "19983171423075188942842", - "outputQty": "19909838375015348307525", - "swapFee1": "11894627917561080053", - "swapFee2": "7993268569230075577", + "type": "swap_fp_to_mp", + "inputQty": "10966544797541758976", + "outputIndex": 0, + "outputQty": "11116660999632846631", + "swapFee": "0", + "redemptionFee": "6619096132225748", "mpReserves": [ - "63144715384683271754612958", - "26942306023403426172837802", - "20567764122264958379541100" + "57589652630350017403922493", + "10875469147492776194942610", + "38185270235775268807986481" ], "fpReserves": [ - "11493792714981243740657219", - "18023867566917665536014019" + "7252466094753725590400757", + "3513181434003193199036083" ], - "mAssetSupply": "110601688763454630210339877", - "LPTokenSupply": "29207908678619425891279831" + "mAssetSupply": "106394712099833244796050747", + "LPTokenSupply": "10478336520547907510279191" }, { "type": "swap_fp_to_mp", - "inputQty": "50908644645808824320", + "inputQty": "266333596424009011953664", "outputIndex": 0, - "outputQty": "50848603703918564964", + "outputQty": "269806365628441958109984", + "swapFee": "0", + "redemptionFee": "160652592765701576521", + "mpReserves": [ + "57319846264721575445812509", + "10875469147492776194942610", + "38185270235775268807986481" + ], + "fpReserves": [ + "6984711773477556296198197", + "3779515030427202210989747" + ], + "mAssetSupply": "106127118431149841203424708", + "LPTokenSupply": "10478336520547907510279191" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "4122013296374205382656", + "outputIndex": 1, + "outputQty": "4010867568543033260101", "swapFee": "0", - "redemptionFee": "20297654102239600", + "redemptionFee": "2484939553308374188", "mpReserves": [ - "63144664536079567836047994", - "26942306023403426172837802", - "20567764122264958379541100" + "57319846264721575445812509", + "10871458279924233161682509", + "38185270235775268807986481" ], "fpReserves": [ - "11493741970845988141656925", - "18023918475562311344838339" + "6980570207555375672550536", + "3783637043723576416372403" ], - "mAssetSupply": "110601638039617028713579183", - "LPTokenSupply": "29207908678619425891279831" + "mAssetSupply": "106122979350167213888151235", + "LPTokenSupply": "10478336520547907510279191" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "3559879660349699072", - "outputQty0": "3564406790911666981", - "outputQty": "3573101711060574020", - "swapFee": "2827180741677092", + "inputIndex": 0, + "inputQty": "3793240802074212", + "outputQty0": "3762217745226091", + "outputQty": "3741492084122544", + "swapFee": "2924973845544", + "mpReserves": [ + "57319846268514816247886721", + "10871458279924233161682509", + "38185270235775268807986481" + ], + "fpReserves": [ + "6980570211317593417776627", + "3783637039982084332249859" + ], + "mAssetSupply": "106122979353929431633377326", + "LPTokenSupply": "10478336520548200007663745" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "10278409287835469217792", + "outputQty0": "10194337186051918739956", + "outputQty": "10137966703630331139214", + "swapFee": "7925669028574416430", "mpReserves": [ - "63144664536079567836047994", - "26942309583283086522536874", - "20567764122264958379541100" + "57330124677802651717104513", + "10871458279924233161682509", + "38185270235775268807986481" ], "fpReserves": [ - "11493745535252779053323906", - "18023914902460600284264319" + "6990764548503645336516583", + "3773499073278454001110645" ], - "mAssetSupply": "110601641604023819625246164", - "LPTokenSupply": "29207908678902143965447540" + "mAssetSupply": "106133173691115483552117282", + "LPTokenSupply": "10478337313115102865105388" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "34195982467141013504", - "outputQty0": "34469747644813305773", - "outputQty": "34540711437060775967", - "swapFee1": "20517589480284608", - "swapFee2": "13787899057925322", + "outputIndex": 1, + "inputQty": "749271584121748062208", + "outputQty0": "770543418320049136625", + "outputQty": "746211037006598157539", + "swapFee1": "449562950473048837", + "swapFee2": "462326050992029481", "mpReserves": [ - "63144629995368130775272027", - "26942309583283086522536874", - "20567764122264958379541100" + "57330124677802651717104513", + "10870712068887226563524970", + "38185270235775268807986481" ], "fpReserves": [ - "11493711065505134240018133", - "18023914902460600284264319" + "6989994005085325287379958", + "3773499073278454001110645" ], - "mAssetSupply": "110601607148064073869865713", - "LPTokenSupply": "29207874484971435772462496" + "mAssetSupply": "106132403610023214495010138", + "LPTokenSupply": "10477588086487276164348063" }, { "type": "swap_fp_to_mp", - "inputQty": "74146700901492555776", + "inputQty": "1208583064105979", "outputIndex": 1, - "outputQty": "73783697009223954479", + "outputQty": "1176005258440611", "swapFee": "0", - "redemptionFee": "29562836620343292", + "redemptionFee": "728612945891", + "mpReserves": [ + "57330124677802651717104513", + "10870712067711221305084359", + "38185270235775268807986481" + ], + "fpReserves": [ + "6989994003870970377560209", + "3773499074487037065216624" + ], + "mAssetSupply": "106132403608809588198136280", + "LPTokenSupply": "10477588086487276164348063" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "8445266100508166144", + "outputQty0": "8685025981529738962", + "outputQty": "8710025222507526378", + "swapFee1": "5067159660304899", + "swapFee2": "5211015588917843", "mpReserves": [ - "63144629995368130775272027", - "26942235799586077298582395", - "20567764122264958379541100" + "57330124677802651717104513", + "10870712067711221305084359", + "38185261525750046300460103" ], "fpReserves": [ - "11493637158413583381786151", - "18023989049161501776820095" + "6989985318844988847821247", + "3773499074487037065216624" ], - "mAssetSupply": "110601533270535359631977023", - "LPTokenSupply": "29207874484971435772462496" + "mAssetSupply": "106132394928994622257315161", + "LPTokenSupply": "10477579641727891622212408" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "24506998800255316", - "outputQty0": "24446866497674132", - "outputQty": "24506504268206821", - "swapFee": "19390523814399", + "inputQty": "719925508390857736192", + "outputQty0": "714035724078494579738", + "outputQty": "710072358476495686498", + "swapFee": "555125798771476781", "mpReserves": [ - "63144630019875129575527343", - "26942235799586077298582395", - "20567764122264958379541100" + "57330844603311042574840705", + "10870712067711221305084359", + "38185261525750046300460103" ], "fpReserves": [ - "11493637182860449879460283", - "18023989024654997508613274" + "6990699354569067342400985", + "3772789002128560569530126" ], - "mAssetSupply": "110601533294982226129651155", - "LPTokenSupply": "29207874484973374824843935" + "mAssetSupply": "106133108964718700751894899", + "LPTokenSupply": "10477579697240471499360086" }, { - "type": "swap_fp_to_mp", - "inputQty": "11334637515377106944", + "type": "redeem", "outputIndex": 2, - "outputQty": "11256505041938412781", + "inputQty": "473778417419273699328", + "outputQty0": "487229381689570549307", + "outputQty": "488631783421349684901", + "swapFee1": "284267050451564219", + "swapFee2": "292337629013742329", + "mpReserves": [ + "57330844603311042574840705", + "10870712067711221305084359", + "38184772893966624950775202" + ], + "fpReserves": [ + "6990212125187377771851678", + "3772789002128560569530126" + ], + "mAssetSupply": "106132622027674640195087921", + "LPTokenSupply": "10477105947249757270817179" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "23612994599960858066944", + "outputIndex": 0, + "outputQty": "23905957547057091099074", "swapFee": "0", - "redemptionFee": "4519203361630660", + "redemptionFee": "14234800266925255081", + "mpReserves": [ + "57306938645763985483741631", + "10870712067711221305084359", + "38184772893966624950775202" + ], + "fpReserves": [ + "6966487458075835680049008", + "3796401996728521427597070" + ], + "mAssetSupply": "106108911595363365028540332", + "LPTokenSupply": "10477105947249757270817179" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "8651424850634785792", + "outputQty0": "8928032415901015969", + "outputQty": "8676643368155549007", "mpReserves": [ - "63144630019875129575527343", - "26942235799586077298582395", - "20567752865759916441128319" + "57306938645763985483741631", + "10870720719136071939870151", + "38184772893966624950775202" ], "fpReserves": [ - "11493625884852045802808147", - "18024000359292512885720218" + "6966496386108251581064977", + "3796401996728521427597070" ], - "mAssetSupply": "110601522001493025414629679", - "LPTokenSupply": "29207874484973374824843935" + "mAssetSupply": "106108920523395780929556301", + "LPTokenSupply": "10477114623893125426366186" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "11937401575277519175680", - "outputQty0": "11952569500312786418459", - "outputQty": "11981642275012204740611", - "swapFee": "9480395794320548524", + "inputQty": "164314368207851880448000", + "outputQty0": "169489786758462548999815", + "outputQty": "168505355409356071374517", + "swapFee": "131768301128272097864", "mpReserves": [ - "63144630019875129575527343", - "26954173201161354817758075", - "20567752865759916441128319" + "57306938645763985483741631", + "11035035087343923820318151", + "38184772893966624950775202" ], "fpReserves": [ - "11505578454352358589226606", - "18012018717017500680979607" + "7135986172866714130064792", + "3627896641319165356222553" ], - "mAssetSupply": "110613474570993338201048138", - "LPTokenSupply": "29207875433012954256898787" + "mAssetSupply": "106278410310154243478556116", + "LPTokenSupply": "10477127800723238253575972" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "981285629803578966147072", - "outputQty0": "978850294868232742390265", - "outputQty": "970287428394561344464726", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "141397503044509600", + "outputQty0": "140918833644304544", + "outputQty": "140048826643136857", + "swapFee": "109532132457263", "mpReserves": [ - "64125915649678708541674415", - "26954173201161354817758075", - "20567752865759916441128319" + "57306938645763985483741631", + "11035035087343923820318151", + "38184773035364127995284802" ], "fpReserves": [ - "12484428749220591331616871", - "18012018717017500680979607" + "7135986313785547774369336", + "3627896501270338713085696" ], - "mAssetSupply": "111592324865861570943438403", - "LPTokenSupply": "30178162861407515601363513" + "mAssetSupply": "106278410451073077122860660", + "LPTokenSupply": "10477127800734191466821698" }, { - "type": "swap_fp_to_mp", - "inputQty": "28504237339590512640", + "type": "redeem", "outputIndex": 0, - "outputQty": "28491373092194666629", - "swapFee": "0", - "redemptionFee": "11372485535306194", + "inputQty": "618383687418716268527616", + "outputQty0": "635979104447241842291644", + "outputQty": "640718482421362294220903", + "swapFee1": "371030212451229761116", + "swapFee2": "381587462668345105374", "mpReserves": [ - "64125887158305616347007786", - "26954173201161354817758075", - "20567752865759916441128319" + "56666220163342623189520728", + "11035035087343923820318151", + "38184773035364127995284802" ], "fpReserves": [ - "12484400318006753066130027", - "18012047221254840271492247" + "6500007209338305932077692", + "3627896501270338713085696" ], - "mAssetSupply": "111592296446020218213257753", - "LPTokenSupply": "30178162861407515601363513" + "mAssetSupply": "105642812934088503625674390", + "LPTokenSupply": "9858781216336720321270193" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "135512014462265573376", - "outputQty0": "136651989325785371884", - "outputQty": "136415980815755860004", - "swapFee1": "81307208677359344", - "swapFee2": "54660795730314148", + "outputIndex": 0, + "inputQty": "108875244863530496688128", + "outputQty0": "111954802465774770341510", + "outputQty": "112781070227261489186965", + "swapFee1": "65325146918118298012", + "swapFee2": "67172881479464862204", "mpReserves": [ - "64125887158305616347007786", - "26954036785180539061898071", - "20567752865759916441128319" + "56553439093115361700333763", + "11035035087343923820318151", + "38184773035364127995284802" ], "fpReserves": [ - "12484263666017427280758143", - "18012047221254840271492247" + "6388052406872531161736182", + "3627896501270338713085696" ], - "mAssetSupply": "111592159848691688158200017", - "LPTokenSupply": "30178027357523774203526071" + "mAssetSupply": "105530925304504208320195084", + "LPTokenSupply": "9749912503987881636411866" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "267923485398935502848", - "outputQty0": "268279652310842886242", - "outputQty": "265881984359054658118", + "inputQty": "47375906153926865453056", + "outputQty0": "48813372407201773357719", + "outputQty": "48561671987312952727456", + "swapFee": "37954153535982667606", "mpReserves": [ - "64125887158305616347007786", - "26954304708665937997400919", - "20567752865759916441128319" + "56553439093115361700333763", + "11082410993497850685771207", + "38184773035364127995284802" ], "fpReserves": [ - "12484531945669738123644385", - "18012047221254840271492247" + "6436865779279732935093901", + "3579334829283025760358240" ], - "mAssetSupply": "111592428128343999001086259", - "LPTokenSupply": "30178293239508133258184189" + "mAssetSupply": "105579738676911410093552803", + "LPTokenSupply": "9749916299403235234678626" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "108019475194076163211264", "outputIndex": 2, - "inputQty": "16940861063073047248896", - "outputQty0": "17083321252504123046887", - "outputQty": "17018799959179024050389", - "swapFee1": "10164516637843828349", - "swapFee2": "6833328501001649218", + "outputQty": "108783814887690749069895", + "swapFee": "0", + "redemptionFee": "65087563973155759415", "mpReserves": [ - "64125887158305616347007786", - "26954304708665937997400919", - "20550734065800737417077930" + "56553439093115361700333763", + "11082410993497850685771207", + "38075989220476437246214907" ], "fpReserves": [ - "12467448624417234000597498", - "18012047221254840271492247" + "6328386505991140002734007", + "3687354304477101923569504" ], - "mAssetSupply": "111575351640419995879688590", - "LPTokenSupply": "30161353394896723995318127" + "mAssetSupply": "105471324491186790316952324", + "LPTokenSupply": "9749916299403235234678626" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "69237126346289618944", - "outputQty0": "69329100542515753486", - "outputQty": "68709899069021622161", + "type": "swap_fp_to_mp", + "inputQty": "220048992122948749885440", + "outputIndex": 0, + "outputQty": "222461750765290788671921", + "swapFee": "0", + "redemptionFee": "132507015625933630051", "mpReserves": [ - "64125887158305616347007786", - "26954373945792284287019863", - "20550734065800737417077930" + "56330977342350070911661842", + "11082410993497850685771207", + "38075989220476437246214907" ], "fpReserves": [ - "12467517953517776516350984", - "18012047221254840271492247" + "6107541479947917285981543", + "3907403296600050673454944" ], - "mAssetSupply": "111575420969520538395442076", - "LPTokenSupply": "30161422104795793016940288" + "mAssetSupply": "105250611972159193533829911", + "LPTokenSupply": "9749916299403235234678626" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "344375505303962648576", - "outputQty0": "347270451388232628882", - "outputQty": "345957680449243518408", - "swapFee1": "206625303182377589", - "swapFee2": "138908180555293051", + "inputQty": "14930492172623847424", + "outputQty0": "15346364631631104921", + "outputQty": "15389468162023751792", + "swapFee1": "8958295303574308", + "swapFee2": "9207818778978662", "mpReserves": [ - "64125887158305616347007786", - "26954373945792284287019863", - "20550388108120288173559522" + "56330977342350070911661842", + "11082410993497850685771207", + "38075973831008275222463115" ], "fpReserves": [ - "12467170683066388283722102", - "18012047221254840271492247" + "6107526133583285654876622", + "3907403296600050673454944" ], - "mAssetSupply": "111575073837977330718106245", - "LPTokenSupply": "30161077749953019372529470" + "mAssetSupply": "105250596635002380681703652", + "LPTokenSupply": "9749901369806892141188632" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "370481009452820866269184", - "outputQty0": "373569105753502056767232", - "outputQty": "372129241504498216076171", - "swapFee1": "222288605671692519761", - "swapFee2": "149427642301400822706", + "type": "swap_fp_to_mp", + "inputQty": "5015603724686472192", + "outputIndex": 0, + "outputQty": "5068456664536145287", + "swapFee": "0", + "redemptionFee": "3019036454814035", "mpReserves": [ - "64125887158305616347007786", - "26954373945792284287019863", - "20178258866615789957483351" + "56330972273893406375516555", + "11082410993497850685771207", + "38075973831008275222463115" ], "fpReserves": [ - "12093601577312886226954870", - "18012047221254840271492247" + "6107521101855860964817158", + "3907408312203775359927136" ], - "mAssetSupply": "111201654159866130062161719", - "LPTokenSupply": "29790618969360765675512262" + "mAssetSupply": "105250591606293992446458223", + "LPTokenSupply": "9749901369806892141188632" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "494599624223433", - "outputQty0": "498689746516992", - "outputQty": "497839205376550", - "swapFee1": "296759774534", - "swapFee2": "199475898606", + "inputQty": "3304073002218571776", + "outputQty0": "3396104288759828127", + "outputQty": "3295224113391674741", + "swapFee1": "1982443801331143", + "swapFee2": "2037662573255896", "mpReserves": [ - "64125887158305616347007786", - "26954373945294445081643313", - "20178258866615789957483351" + "56330972273893406375516555", + "11082407698273737294096466", + "38075973831008275222463115" ], "fpReserves": [ - "12093601576814196480437878", - "18012047221254840271492247" + "6107517705751572204989031", + "3907408312203775359927136" ], - "mAssetSupply": "111201654159367639791543333", - "LPTokenSupply": "29790618968866195727266282" + "mAssetSupply": "105250588212227366259885992", + "LPTokenSupply": "9749898065932134302749970" }, { - "type": "swap_fp_to_mp", - "inputQty": "501294869675569053696", + "type": "redeem", "outputIndex": 0, - "outputQty": "500963588542888094949", - "swapFee": "0", - "redemptionFee": "199954129996659867", + "inputQty": "315362594555930720862208", + "outputQty0": "324118266581250800364307", + "outputQty": "326474145379161589341885", + "swapFee1": "189217556733558432517", + "swapFee2": "194470959948750480218", "mpReserves": [ - "64125386194717073458912837", - "26954373945294445081643313", - "20178258866615789957483351" + "56004498128514244786174670", + "11082407698273737294096466", + "38075973831008275222463115" ], "fpReserves": [ - "12093101691489204830769611", - "18012548516124515840545943" + "5783399439170321404624724", + "3907408312203775359927136" ], - "mAssetSupply": "111201154473996778138534933", - "LPTokenSupply": "29790618968866195727266282" + "mAssetSupply": "104926664416606064210001903", + "LPTokenSupply": "9434554393131876937731013" }, { - "type": "swap_fp_to_mp", - "inputQty": "52814808972984374525952", - "outputIndex": 2, - "outputQty": "52457232620431562929576", - "swapFee": "0", - "redemptionFee": "21065901470937398909", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "56360470918043067744256", + "outputQty0": "56167309657634792491597", + "outputQty": "55961982785162554160232", + "swapFee": "43696189129487313008", "mpReserves": [ - "64125386194717073458912837", - "26954373945294445081643313", - "20125801633995358394553775" + "56004498128514244786174670", + "11082407698273737294096466", + "38132334301926318290207371" ], "fpReserves": [ - "12040436937811861333496497", - "18065363325097500215071895" + "5839566748827956197116321", + "3851446329418612805766904" ], - "mAssetSupply": "111148510786220905578660728", - "LPTokenSupply": "29790618968866195727266282" + "mAssetSupply": "104982831726263699002493500", + "LPTokenSupply": "9434558762750789886462313" }, { - "type": "swap_fp_to_mp", - "inputQty": "1368402145989494308864", - "outputIndex": 0, - "outputQty": "1367424212612830995429", - "swapFee": "0", - "redemptionFee": "545789346924477399", + "type": "mint", + "inputIndex": 2, + "inputQty": "6417411700465065787392", + "outputQty0": "6395368974255961470888", + "outputQty": "6218792484097728848136", "mpReserves": [ - "64124018770504460627917408", - "26954373945294445081643313", - "20125801633995358394553775" + "56004498128514244786174670", + "11082407698273737294096466", + "38138751713626783355994763" ], "fpReserves": [ - "12039072464444550139997007", - "18066731727243489709380759" + "5845962117802212158587209", + "3851446329418612805766904" ], - "mAssetSupply": "111147146858642941309638637", - "LPTokenSupply": "29790618968866195727266282" + "mAssetSupply": "104989227095237954963964388", + "LPTokenSupply": "9440777555234887615310449" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "95781585883307855314944", - "outputQty0": "95536392593543073585326", - "outputQty": "95729830841539417765615", - "swapFee": "75758083838133016777", + "inputQty": "6939239957500936585216", + "outputQty0": "6885267251214581407020", + "outputQty": "6859288070499706785883", + "swapFee": "5356112059236315425", "mpReserves": [ - "64219800356387768483232352", - "26954373945294445081643313", - "20125801633995358394553775" + "56011437368471745722759886", + "11082407698273737294096466", + "38138751713626783355994763" ], "fpReserves": [ - "12134608857038093213582333", - "17971001896401950291615144" + "5852847385053426739994229", + "3844587041348113098981021" ], - "mAssetSupply": "111242683251236484383223963", - "LPTokenSupply": "29790626544674579540567959" + "mAssetSupply": "104996112362489169545371408", + "LPTokenSupply": "9440778090846093538941991" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "7487378170106125312", - "outputQty0": "7468189608872214050", - "outputQty": "7482916861181764475", - "swapFee": "5921821619031788", + "inputQty": "8990286229768302592", + "outputQty0": "8920354865575169717", + "outputQty": "8886589877444999415", + "swapFee": "6939168491784777", "mpReserves": [ - "64219807843765938589357664", - "26954373945294445081643313", - "20125801633995358394553775" + "56011446358757975491062478", + "11082407698273737294096466", + "38138751713626783355994763" ], "fpReserves": [ - "12134616325227702085796383", - "17970994413485089109850669" + "5852856305408292315163946", + "3844578154758235653981606" ], - "mAssetSupply": "111242690719426093255438013", - "LPTokenSupply": "29790626545266761702471137" + "mAssetSupply": "104996121282844035120541125", + "LPTokenSupply": "9440778091540010388120468" }, { - "type": "swap_fp_to_mp", - "inputQty": "5788267943365343969280", - "outputIndex": 1, - "outputQty": "5762371516141092503318", - "swapFee": "0", - "redemptionFee": "2308894476276348751", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "280299920468553", + "outputQty0": "288651848364044", + "outputQty": "287559249871170", + "swapFee": "224543061370", "mpReserves": [ - "64219807843765938589357664", - "26948611573778303989139995", - "20125801633995358394553775" + "56011446358757975491062478", + "11082407698554037214565019", + "38138751713626783355994763" ], "fpReserves": [ - "12128844089037011213916765", - "17976782681428454453819949" + "5852856305696944163527990", + "3844578154470676404110436" ], - "mAssetSupply": "111236920792129878659907146", - "LPTokenSupply": "29790626545266761702471137" + "mAssetSupply": "104996121283132686968905169", + "LPTokenSupply": "9440778091540032842426605" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "15876373835439890432", - "outputQty0": "16008071736602528743", - "outputQty": "15944662918758527211", - "swapFee1": "9525824301263934", - "swapFee2": "6403228694641011", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "10565538753691051360256", + "outputQty0": "10529230994632111937305", + "outputQty": "10489182285872871047088", + "swapFee": "8190693738179480890", "mpReserves": [ - "64219807843765938589357664", - "26948611573778303989139995", - "20125785689332439636026564" + "56011446358757975491062478", + "11082407698554037214565019", + "38149317252380474407355019" ], "fpReserves": [ - "12128828080965274611388022", - "17976782681428454453819949" + "5863385536691576275465295", + "3834088972184803533063348" ], - "mAssetSupply": "111236904790461370752019414", - "LPTokenSupply": "29790610669845508692707098" + "mAssetSupply": "105006650514127319080842474", + "LPTokenSupply": "9440778910609406660374694" }, { "type": "mint", "inputIndex": 1, - "inputQty": "198131666319452045312", - "outputQty0": "198391566359079800445", - "outputQty": "196641342493908443362", + "inputQty": "967823322568749744128", + "outputQty0": "996663609908402516208", + "outputQty": "969118951491223860091", "mpReserves": [ - "64219807843765938589357664", - "26948809705444623441185307", - "20125785689332439636026564" + "56011446358757975491062478", + "11083375521876605964309147", + "38149317252380474407355019" ], "fpReserves": [ - "12129026472531633691188467", - "17976782681428454453819949" + "5864382200301484677981503", + "3834088972184803533063348" ], - "mAssetSupply": "111237103182027729831819859", - "LPTokenSupply": "29790807311188002601150460" + "mAssetSupply": "105007647177737227483358682", + "LPTokenSupply": "9441748029560897884234785" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "427886584477716565721088", + "outputQty0": "424541755784536624202505", + "outputQty": "422577135853052187197383", + "swapFee": "330208770505100334631", + "mpReserves": [ + "56439332943235692056783566", + "11083375521876605964309147", + "38149317252380474407355019" + ], + "fpReserves": [ + "6288923956086021302184008", + "3411511836331751345865965" + ], + "mAssetSupply": "105432188933521764107561187", + "LPTokenSupply": "9441781050437948394268248" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1312920688907828", + "outputQty0": "1352447466897125", + "outputQty": "1314200812695334", + "mpReserves": [ + "56439332943235692056783566", + "11083375523189526653216975", + "38149317252380474407355019" + ], + "fpReserves": [ + "6288923957438468769081133", + "3411511836331751345865965" + ], + "mAssetSupply": "105432188934874211574458312", + "LPTokenSupply": "9441781051752149206963582" }, { "type": "swap_fp_to_mp", - "inputQty": "122058311511069163520000", - "outputIndex": 2, - "outputQty": "121226496188695052272300", + "inputQty": "29716181179180642304", + "outputIndex": 1, + "outputQty": "28966655955683245942", "swapFee": "0", - "redemptionFee": "48684675633871799058", + "redemptionFee": "17913985255886943", "mpReserves": [ - "64219807843765938589357664", - "26948809705444623441185307", - "20004559193143744583754264" + "56439332943235692056783566", + "11083346556533570969971033", + "38149317252380474407355019" ], "fpReserves": [ - "12007314783446954193541992", - "18098840992939523617339949" + "6288894100796375624174592", + "3411541552512930526508269" ], - "mAssetSupply": "111115440177618684205972442", - "LPTokenSupply": "29790807311188002601150460" + "mAssetSupply": "105432159096146103685438714", + "LPTokenSupply": "9441781051752149206963582" }, { "type": "mint", + "inputIndex": 1, + "inputQty": "261249192364532090011648", + "outputQty0": "268933212433880802987947", + "outputQty": "261308269389250134758131", + "mpReserves": [ + "56439332943235692056783566", + "11344595748898103059982681", + "38149317252380474407355019" + ], + "fpReserves": [ + "6557827313230256427162539", + "3411541552512930526508269" + ], + "mAssetSupply": "105701092308579984488426661", + "LPTokenSupply": "9703089321141399341721713" + }, + { + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "313638811370910059069440", - "outputQty0": "312827825971268080858399", - "outputQty": "310073879755143106663711", + "inputQty": "10624741795248581115904", + "outputQty0": "10543221974512225224680", + "outputQty": "10480453127996126397062", + "swapFee": "8194799506530753732", "mpReserves": [ - "64533446655136848648427104", - "26948809705444623441185307", - "20004559193143744583754264" + "56449957685030940637899470", + "11344595748898103059982681", + "38149317252380474407355019" ], "fpReserves": [ - "12320142609418222274400391", - "18098840992939523617339949" + "6568370535204768652387219", + "3401061099384934400111207" ], - "mAssetSupply": "111428268003589952286830841", - "LPTokenSupply": "30100881190943145707814171" + "mAssetSupply": "105711635530554496713651341", + "LPTokenSupply": "9703090140621349994797086" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "15496045827233312407552", - "outputQty0": "15552722447420154643753", - "outputQty": "15414824887844385725535", + "inputIndex": 0, + "inputQty": "3520449899486280704", + "outputQty0": "3493435323158947401", + "outputQty": "3394073586852630540", "mpReserves": [ - "64533446655136848648427104", - "26948809705444623441185307", - "20020055238970977896161816" + "56449961205480840124180174", + "11344595748898103059982681", + "38149317252380474407355019" ], "fpReserves": [ - "12335695331865642429044144", - "18098840992939523617339949" + "6568374028640091811334620", + "3401061099384934400111207" ], - "mAssetSupply": "111443820726037372441474594", - "LPTokenSupply": "30116296015830990093539706" + "mAssetSupply": "105711639023989819872598742", + "LPTokenSupply": "9703093534694936847427626" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1771246011172992499843072", - "outputQty0": "1766557627632670837841113", - "outputQty": "1768346720305082789119271", - "swapFee": "1400286723252677583734", + "type": "mint", + "inputIndex": 1, + "inputQty": "2301338719042651815936", + "outputQty0": "2367470527211287653894", + "outputQty": "2300132439454825581515", "mpReserves": [ - "66304692666309841148270176", - "26948809705444623441185307", - "20020055238970977896161816" + "56449961205480840124180174", + "11346897087617145711798617", + "38149317252380474407355019" ], "fpReserves": [ - "14102252959498313266885257", - "16330494272634440828220678" + "6570741499167303098988514", + "3401061099384934400111207" ], - "mAssetSupply": "113210378353670043279315707", - "LPTokenSupply": "30116436044503315361298079" + "mAssetSupply": "105714006494517031160252636", + "LPTokenSupply": "9705393667134391673009141" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "1035683619050189030948864", - "outputQty0": "1045235399635870080476677", - "outputQty": "1047613190359133225928255", - "swapFee1": "621410171430113418569", - "swapFee2": "418094159854348032190", + "inputQty": "6985416607576542412800", + "outputQty0": "7185596340285664873848", + "outputQty": "7236801056420565780267", + "swapFee1": "4191249964545925447", + "swapFee2": "4311357804171398924", "mpReserves": [ - "65257079475950707922341921", - "26948809705444623441185307", - "20020055238970977896161816" + "56442724404424419558399907", + "11346897087617145711798617", + "38149317252380474407355019" ], "fpReserves": [ - "13057017559862443186408580", - "16330494272634440828220678" + "6563555902827017434114666", + "3401061099384934400111207" ], - "mAssetSupply": "112165561048194027546871220", - "LPTokenSupply": "29080814566470269341691071" + "mAssetSupply": "105706825209534549666777712", + "LPTokenSupply": "9698408669651811585188885" }, { - "type": "swap_fp_to_mp", - "inputQty": "15943641757968943284224", - "outputIndex": 0, - "outputQty": "15955124416426200460750", - "swapFee": "0", - "redemptionFee": "6367769794200906395", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "54343244110250524672", + "outputQty0": "55904266974659516006", + "outputQty": "55570488045006708099", + "swapFee": "43451469977850274", "mpReserves": [ - "65241124351534281721881171", - "26948809705444623441185307", - "20020055238970977896161816" + "56442724404424419558399907", + "11346951430861255962323289", + "38149317252380474407355019" ], "fpReserves": [ - "13041098135376940920418919", - "16346437914392409771504902" + "6563611807093992093630672", + "3401005528896889393403108" ], - "mAssetSupply": "112149647991478319481787954", - "LPTokenSupply": "29080814566470269341691071" + "mAssetSupply": "105706881113801524326293718", + "LPTokenSupply": "9698408673996958582973912" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "4453189463938949447680", - "outputQty0": "4493635910759285934017", - "outputQty": "4503710273996341384203", - "swapFee1": "2671913678363369668", - "swapFee2": "1797454364303714373", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "31274526164439944658944", + "outputQty0": "31034540406950261186066", + "outputQty": "30846967908027428798814", + "swapFee": "24121320059137844508", "mpReserves": [ - "65236620641260285380496968", - "26948809705444623441185307", - "20020055238970977896161816" + "56473998930588859503058851", + "11346951430861255962323289", + "38149317252380474407355019" ], "fpReserves": [ - "13036604499466181634484902", - "16346437914392409771504902" + "6594646347500942354816738", + "3370158560988861964604294" ], - "mAssetSupply": "112145156153021924499568310", - "LPTokenSupply": "29076361644197698228580357" + "mAssetSupply": "105737915654208474587479784", + "LPTokenSupply": "9698411086128964496758362" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "7593280316397080018944", "outputIndex": 1, - "inputQty": "110149090632957476864", - "outputQty0": "111149460785448464722", - "outputQty": "110953018500085812034", - "swapFee1": "66089454379774486", - "swapFee2": "44459784314179385", + "outputQty": "7415865973329453294428", + "swapFee": "0", + "redemptionFee": "4580260924750985177", "mpReserves": [ - "65236620641260285380496968", - "26948698752426123355373273", - "20020055238970977896161816" + "56473998930588859503058851", + "11339535564887926509028861", + "38149317252380474407355019" ], "fpReserves": [ - "13036493350005396186020180", - "16346437914392409771504902" + "6587012579293024046187506", + "3377751841305259044623238" ], - "mAssetSupply": "112145045048020923365282973", - "LPTokenSupply": "29076251501716010709080941" + "mAssetSupply": "105730286466261481029835729", + "LPTokenSupply": "9698411086128964496758362" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1553372240624202285056", - "outputQty0": "1555499818306247936394", - "outputQty": "1540574732492761664576", + "inputIndex": 2, + "inputQty": "590131292888486071238656", + "outputQty0": "588153689121770258721602", + "outputQty": "571311063297836096473550", "mpReserves": [ - "65236620641260285380496968", - "26950252124666747557658329", - "20020055238970977896161816" + "56473998930588859503058851", + "11339535564887926509028861", + "38739448545268960478593675" ], "fpReserves": [ - "13038048849823702433956574", - "16346437914392409771504902" + "7175166268414794304909108", + "3377751841305259044623238" ], - "mAssetSupply": "112146600547839229613219367", - "LPTokenSupply": "29077792076448503470745517" + "mAssetSupply": "106318440155383251288557331", + "LPTokenSupply": "10269722149426800593231912" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "859632432129900544000", - "outputQty0": "867439863264447218761", - "outputQty": "869384370868399657183", - "swapFee1": "515779459277940326", - "swapFee2": "346975945305778887", + "type": "mint", + "inputIndex": 2, + "inputQty": "2016540321090454", + "outputQty0": "2009641804627445", + "outputQty": "1951780136069100", + "mpReserves": [ + "56473998930588859503058851", + "11339535564887926509028861", + "38739448547285500799684129" + ], + "fpReserves": [ + "7175166270424436109536553", + "3377751841305259044623238" + ], + "mAssetSupply": "106318440157392893093184776", + "LPTokenSupply": "10269722151378580729301012" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "778673069019751776256", + "outputQty0": "801308735482947019317", + "outputQty": "778237261372068371439", "mpReserves": [ - "65235751256889416980839785", - "26950252124666747557658329", - "20020055238970977896161816" + "56473998930588859503058851", + "11340314237956946260805117", + "38739448547285500799684129" ], "fpReserves": [ - "13037181409960437986737813", - "16346437914392409771504902" + "7175967579159919056555870", + "3377751841305259044623238" ], - "mAssetSupply": "112145733454951910471779493", - "LPTokenSupply": "29076932495594319497995549" + "mAssetSupply": "106319241466128376040204093", + "LPTokenSupply": "10270500388639952797672451" }, { "type": "swap_fp_to_mp", - "inputQty": "7891725524187797782528", + "inputQty": "290689965795030597632000", "outputIndex": 2, - "outputQty": "7847180994125817185215", + "outputQty": "293128313534604409708828", "swapFee": "0", - "redemptionFee": "3151852292463027475", + "redemptionFee": "175386698379661547849", "mpReserves": [ - "65235751256889416980839785", - "26950252124666747557658329", - "20012208057976852078976601" + "56473998930588859503058851", + "11340314237956946260805117", + "38446320233750896389975301" ], "fpReserves": [ - "13029301779229280418047963", - "16354329639916597569287430" + "6883656415193816476806724", + "3668441807100289642255238" ], - "mAssetSupply": "112137856976073045366117118", - "LPTokenSupply": "29076932495594319497995549" + "mAssetSupply": "106027105688860653122002796", + "LPTokenSupply": "10270500388639952797672451" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "46761824626057326624768", - "outputQty0": "46638466265874286287907", - "outputQty": "46671807119308314964393", - "swapFee": "36952673696639760126", + "inputQty": "39460973769296715776", + "outputQty0": "39158630692457934408", + "outputQty": "38936222070503602884", + "swapFee": "30438969514851554", "mpReserves": [ - "65282513081515474307464553", - "26950252124666747557658329", - "20012208057976852078976601" + "56474038391562628799774627", + "11340314237956946260805117", + "38446320233750896389975301" ], "fpReserves": [ - "13075940245495154704335870", - "16307657832797289254323037" + "6883695573824508934741132", + "3668402870878219138652354" ], - "mAssetSupply": "112184495442338919652405025", - "LPTokenSupply": "29076936190861689161971561" + "mAssetSupply": "106027144847491345579937204", + "LPTokenSupply": "10270500391683849749157606" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "19839397401829956386816", - "outputQty0": "19787020858290083507666", - "outputQty": "19800528664012989422024", - "swapFee": "15677339511922368159", + "type": "redeem", + "outputIndex": 1, + "inputQty": "140889767101501776", + "outputQty0": "144912669396827513", + "outputQty": "140754475033056250", + "swapFee1": "84533860260901", + "swapFee2": "86947601638096", "mpReserves": [ - "65302352478917304263851369", - "26950252124666747557658329", - "20012208057976852078976601" + "56474038391562628799774627", + "11340314097202471227748867", + "38446320233750896389975301" ], "fpReserves": [ - "13095727266353444787843536", - "16287857304133276264901013" + "6883695428911839537913619", + "3668402870878219138652354" ], - "mAssetSupply": "112204282463197209735912691", - "LPTokenSupply": "29076937758595640354208376" + "mAssetSupply": "106027144702665623784747787", + "LPTokenSupply": "10270500250802536033681920" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "10984405076553004", - "outputQty0": "11084534554818189", - "outputQty": "11109436614251898", - "swapFee1": "6590643045931", - "swapFee2": "4433813821927", + "outputIndex": 2, + "inputQty": "350304728243104175357952", + "outputQty0": "360273244753904989618167", + "outputQty": "361252193379173713909679", + "swapFee1": "210182836945862505214", + "swapFee2": "216163946852342993770", "mpReserves": [ - "65302352467807867649599471", - "26950252124666747557658329", - "20012208057976852078976601" + "56474038391562628799774627", + "11340314097202471227748867", + "38085068040371722676065622" ], "fpReserves": [ - "13095727255268910233025347", - "16287857304133276264901013" + "6523422184157934548295452", + "3668402870878219138652354" ], - "mAssetSupply": "112204282452117108994916429", - "LPTokenSupply": "29076937747611894341959965" + "mAssetSupply": "105667087621858571138123390", + "LPTokenSupply": "9920216540843126444574489" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "80823353515263112773632", - "outputQty0": "81124425057768374642940", - "outputQty": "80342408607224606544711", + "type": "swap_fp_to_mp", + "inputQty": "499162266274216458321920", + "outputIndex": 1, + "outputQty": "485980149246747252722708", + "swapFee": "0", + "redemptionFee": "300526932431715102966", "mpReserves": [ - "65302352467807867649599471", - "26950252124666747557658329", - "20093031411492115191750233" + "56474038391562628799774627", + "10854333947955723975026159", + "38085068040371722676065622" ], "fpReserves": [ - "13176851680326678607668287", - "16287857304133276264901013" + "6022543963438409376684589", + "4167565137152435596974274" ], - "mAssetSupply": "112285406877174877369559369", - "LPTokenSupply": "29157280156219118948504676" + "mAssetSupply": "105166509928071477681615493", + "LPTokenSupply": "9920216540843126444574489" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "440287557175615", - "outputQty0": "444311678908662", - "outputQty": "445305845148450", - "swapFee1": "264172534305", - "swapFee2": "177724671563", + "outputIndex": 1, + "inputQty": "398717061206833233920", + "outputQty0": "409750976647975637304", + "outputQty": "397044802260008415478", + "swapFee1": "239230236724099940", + "swapFee2": "245850585988785382", "mpReserves": [ - "65302352467362561804451021", - "26950252124666747557658329", - "20093031411492115191750233" + "56474038391562628799774627", + "10853936903153463966610681", + "38085068040371722676065622" ], "fpReserves": [ - "13176851679882366928759625", - "16287857304133276264901013" + "6022134212461761401047285", + "4167565137152435596974274" ], - "mAssetSupply": "112285406876730743415322270", - "LPTokenSupply": "29157280155778857808582491" + "mAssetSupply": "105166100422945415694763571", + "LPTokenSupply": "9919817847704943283750563" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3224473159460406784", - "outputQty0": "3228915515061282384", - "outputQty": "3197751489394296209", + "type": "swap_fp_to_mp", + "inputQty": "15511123804947803537408", + "outputIndex": 0, + "outputQty": "15667348575775550210423", + "swapFee": "0", + "redemptionFee": "9330462037898522312", "mpReserves": [ - "65302352467362561804451021", - "26950255349139907018065113", - "20093031411492115191750233" + "56458371042986853249564204", + "10853936903153463966610681", + "38085068040371722676065622" ], "fpReserves": [ - "13176854908797881990042009", - "16287857304133276264901013" + "6006583442398597197192553", + "4183076260957383400511682" ], - "mAssetSupply": "112285410105646258476604654", - "LPTokenSupply": "29157283353530347202878700" + "mAssetSupply": "105150558983344289389431151", + "LPTokenSupply": "9919817847704943283750563" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "493096206244556111872", - "outputQty0": "497602950412734199597", - "outputQty": "498716350516328182605", - "swapFee1": "295857723746733667", - "swapFee2": "199041180165093679", + "outputIndex": 1, + "inputQty": "11347199847944436056064", + "outputQty0": "11660946273895985848649", + "outputQty": "11299105830944216111290", + "swapFee1": "6808319908766661633", + "swapFee2": "6996567764337591509", "mpReserves": [ - "65301853751012045476268416", - "26950255349139907018065113", - "20093031411492115191750233" + "56458371042986853249564204", + "10842637797322519750499391", + "38085068040371722676065622" ], "fpReserves": [ - "13176357305847469255842412", - "16287857304133276264901013" + "5994922496124701211343904", + "4183076260957383400511682" ], - "mAssetSupply": "112284912701737025907498736", - "LPTokenSupply": "29156790286909875021440194" + "mAssetSupply": "105138905033638157741174011", + "LPTokenSupply": "9908471328688989724360662" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "14624549764280979816448", - "outputQty0": "14586057006076858489493", - "outputQty": "14445250102814164340519", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "698618118278977668775936", + "outputQty0": "696101891190308806347887", + "outputQty": "692953363315976611808479", + "swapFee": "541477120428498537905", "mpReserves": [ - "65316478300776326456084864", - "26950255349139907018065113", - "20093031411492115191750233" + "56458371042986853249564204", + "10842637797322519750499391", + "38783686158650700344841558" ], "fpReserves": [ - "13190943362853546114331905", - "16287857304133276264901013" + "6691024387315010017691791", + "3490122897641406788703203" ], - "mAssetSupply": "112299498758743102765988229", - "LPTokenSupply": "29171235537012689185780713" + "mAssetSupply": "105835006924828466547521898", + "LPTokenSupply": "9908525476401032574214452" }, { - "type": "swap_fp_to_mp", - "inputQty": "136284360224670308368384", - "outputIndex": 0, - "outputQty": "136385762914526368895331", - "swapFee": "0", - "redemptionFee": "54432687943960206808", + "type": "redeem", + "outputIndex": 1, + "inputQty": "499623505811122624", + "outputQty0": "513964529083020426", + "outputQty": "497822015540897341", + "swapFee1": "299774103486673", + "swapFee2": "308378717449812", "mpReserves": [ - "65180092537861800087189533", - "26950255349139907018065113", - "20093031411492115191750233" + "56458371042986853249564204", + "10842637299500504209602050", + "38783686158650700344841558" ], "fpReserves": [ - "13054861642993645597311280", - "16424141664357946573269397" + "6691023873350480934671365", + "3490122897641406788703203" ], - "mAssetSupply": "112163471471571146209174412", - "LPTokenSupply": "29171235537012689185780713" + "mAssetSupply": "105835006411172316181951284", + "LPTokenSupply": "9908524976807504173440495" }, { - "type": "swap_fp_to_mp", - "inputQty": "273634521663709445619712", - "outputIndex": 2, - "outputQty": "272042732626173688756165", - "swapFee": "0", - "redemptionFee": "109269242037575979554", + "type": "redeem", + "outputIndex": 1, + "inputQty": "290616431613882996359168", + "outputQty0": "298933877031151463950245", + "outputQty": "289301202219244544710548", + "swapFee1": "174369858968329797815", + "swapFee2": "179360326218690878370", "mpReserves": [ - "65180092537861800087189533", - "26950255349139907018065113", - "19820988678865941502994068" + "56458371042986853249564204", + "10553336097281259664891502", + "38783686158650700344841558" ], "fpReserves": [ - "12781688537899705648425269", - "16697776186021656018889109" + "6392089996319329470721120", + "3490122897641406788703203" ], - "mAssetSupply": "111890407635719243836267955", - "LPTokenSupply": "29171235537012689185780713" + "mAssetSupply": "105536251894467383408879409", + "LPTokenSupply": "9617925982179518010061108" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "137528855268892080", - "outputQty0": "138755351598839976", - "outputQty": "139069038307281983", - "swapFee1": "82517313161335", - "swapFee2": "55502140639535", + "outputIndex": 2, + "inputQty": "180987383112960793640960", + "outputQty0": "186145465299565140005492", + "outputQty": "186747532007354329677295", + "swapFee1": "108592429867776476184", + "swapFee2": "111687279179739084003", "mpReserves": [ - "65180092398792761779907550", - "26950255349139907018065113", - "19820988678865941502994068" + "56458371042986853249564204", + "10553336097281259664891502", + "38596938626643346015164263" ], "fpReserves": [ - "12781688399144354049585293", - "16697776186021656018889109" + "6205944531019764330715628", + "3490122897641406788703203" ], - "mAssetSupply": "111890407497019394378067514", - "LPTokenSupply": "29171235399492085648204766" + "mAssetSupply": "105350218116446998007957920", + "LPTokenSupply": "9436949458309543994067766" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "117764246091327155994624", - "outputQty0": "118812208658928649423898", - "outputQty": "119080377218206367902653", - "swapFee1": "70658547654796293596", - "swapFee2": "47524883463571459769", + "inputQty": "191792624377284043735040", + "outputQty0": "197239582417939282489990", + "outputQty": "198754251735065943661262", + "swapFee1": "115075574626370426241", + "swapFee2": "118343749450763569493", "mpReserves": [ - "65061012021574555412004897", - "26950255349139907018065113", - "19820988678865941502994068" + "56259616791251787305902942", + "10553336097281259664891502", + "38596938626643346015164263" ], "fpReserves": [ - "12662876190485425400161395", - "16697776186021656018889109" + "6008704948601825048225638", + "3490122897641406788703203" ], - "mAssetSupply": "111771642813243929300103385", - "LPTokenSupply": "29053478219255523971839501" + "mAssetSupply": "105153096877778509489037423", + "LPTokenSupply": "9245168341489722587375350" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "99530485241091194880000", - "outputQty0": "99266679592386152678561", - "outputQty": "99369982364293301586419", - "swapFee": "78665739682667049839", + "inputIndex": 1, + "inputQty": "367814729132027136", + "outputQty0": "380065193805537815", + "outputQty": "378223244443518693", + "swapFee": "295491193505800", "mpReserves": [ - "65160542506815646606884897", - "26950255349139907018065113", - "19820988678865941502994068" + "56259616791251787305902942", + "10553336465095988796918638", + "38596938626643346015164263" ], "fpReserves": [ - "12762142870077811552839956", - "16598406203657362717302690" + "6008705328667018853763453", + "3490122519418162345184510" ], - "mAssetSupply": "111870909492836315452781946", - "LPTokenSupply": "29053486085829492238544484" + "mAssetSupply": "105153097257843703294575238", + "LPTokenSupply": "9245168341519271706725930" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "678464813190776750080", - "outputQty0": "679383155231935081411", - "outputQty": "672958513640836212015", + "type": "redeem", + "outputIndex": 2, + "inputQty": "9794410660548508123136", + "outputQty0": "10072098358676300141351", + "outputQty": "10104558664799640863057", + "swapFee1": "5876646396329104873", + "swapFee2": "6043259015205780084", "mpReserves": [ - "65160542506815646606884897", - "26950933813953097794815193", - "19820988678865941502994068" + "56259616791251787305902942", + "10553336465095988796918638", + "38586834067978546374301206" ], "fpReserves": [ - "12762822253233043487921367", - "16598406203657362717302690" + "5998633230308342553622102", + "3490122519418162345184510" ], - "mAssetSupply": "111871588875991547387863357", - "LPTokenSupply": "29054159044343133074756499" + "mAssetSupply": "105143031202744042200213971", + "LPTokenSupply": "9235374518523362831513281" }, { "type": "swap_fp_to_mp", - "inputQty": "15156975222651975680", - "outputIndex": 1, - "outputQty": "15103368972958593990", + "inputQty": "126710307649067712512", + "outputIndex": 0, + "outputQty": "128198113277254206900", "swapFee": "0", - "redemptionFee": "6051945296275639", - "mpReserves": [ - "65160542506815646606884897", - "26950918710584124836221203", - "19820988678865941502994068" - ], - "fpReserves": [ - "12762807123369802798822082", - "16598421360632585369278370" - ], - "mAssetSupply": "111871573752180251995039711", - "LPTokenSupply": "29054159044343133074756499" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "16262648935868543270912", - "outputQty0": "16219488197802083636024", - "outputQty": "16066064217707460999069", + "redemptionFee": "76334112274175059", "mpReserves": [ - "65176805155751515150155809", - "26950918710584124836221203", - "19820988678865941502994068" + "56259488593138510051696042", + "10553336465095988796918638", + "38586834067978546374301206" ], "fpReserves": [ - "12779026611567604882458106", - "16598421360632585369278370" + "5998506006787885595189026", + "3490249229725811412897022" ], - "mAssetSupply": "111887793240378054078675735", - "LPTokenSupply": "29070225108560840535755568" + "mAssetSupply": "105142904055557697515955954", + "LPTokenSupply": "9235374518523362831513281" }, { - "type": "swap_fp_to_mp", - "inputQty": "23670345538122838704128", - "outputIndex": 2, - "outputQty": "23528643316549709022007", - "swapFee": "0", - "redemptionFee": "9451177005899897082", + "type": "redeem", + "outputIndex": 0, + "inputQty": "69366791877304491442176", + "outputQty0": "71331831835524133279744", + "outputQty": "71877763747224242089146", + "swapFee1": "41620075126382694865", + "swapFee2": "42799099101314479967", "mpReserves": [ - "65176805155751515150155809", - "26950918710584124836221203", - "19797460035549391793972061" + "56187610829391285809606896", + "10553336465095988796918638", + "38586834067978546374301206" ], "fpReserves": [ - "12755398669052855139751770", - "16622091706170708207982498" + "5927174174952361461909282", + "3490249229725811412897022" ], - "mAssetSupply": "111864174749040310235866481", - "LPTokenSupply": "29070225108560840535755568" + "mAssetSupply": "105071615022821274697156177", + "LPTokenSupply": "9166011888653570978340591" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "467622807930603439128576", - "outputQty0": "471763588078709284582698", - "outputQty": "472824447048637400284053", - "swapFee1": "280573684758362063477", - "swapFee2": "188705435231483713833", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "19980551624888446976", + "outputQty0": "19904348517788026134", + "outputQty": "19810372802764932428", + "swapFee": "15475781061558755", "mpReserves": [ - "64703980708702877749871756", - "26950918710584124836221203", - "19797460035549391793972061" + "56187610829391285809606896", + "10553336465095988796918638", + "38586854048530171262748182" ], "fpReserves": [ - "12283635080974145855169072", - "16622091706170708207982498" + "5927194079300879249935416", + "3490229419353008647964594" ], - "mAssetSupply": "111392599866396832434997616", - "LPTokenSupply": "28602630357998712932833339" + "mAssetSupply": "105071634927169792485182311", + "LPTokenSupply": "9166011890201149084496466" }, { "type": "mint", "inputIndex": 0, - "inputQty": "197019634925342665211904", - "outputQty0": "196500609969397601927413", - "outputQty": "194666213366366519434133", + "inputQty": "1221855735671810048", + "outputQty0": "1211856333015030913", + "outputQty": "1177784264668832089", "mpReserves": [ - "64901000343628220415083660", - "26950918710584124836221203", - "19797460035549391793972061" + "56187612051247021481416944", + "10553336465095988796918638", + "38586854048530171262748182" ], "fpReserves": [ - "12480135690943543457096485", - "16622091706170708207982498" + "5927195291157212264966329", + "3490229419353008647964594" ], - "mAssetSupply": "111589100476366230036925029", - "LPTokenSupply": "28797296571365079452267472" + "mAssetSupply": "105071636139026125500213224", + "LPTokenSupply": "9166013067985413753328555" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "168369425464197285675008", - "outputQty0": "169001712108457805417910", - "outputQty": "169183768691209081271217", - "swapFee": "133931024379863792924", + "inputQty": "10669625753667180167168", + "outputQty0": "10628919248199987879572", + "outputQty": "10578502886413622762814", + "swapFee": "8264039580413282681", "mpReserves": [ - "64901000343628220415083660", - "26950918710584124836221203", - "19965829461013589079647069" + "56187612051247021481416944", + "10553336465095988796918638", + "38597523674283838442915350" ], "fpReserves": [ - "12649137403052001262514395", - "16452907937479499126711281" + "5937824210405412252845901", + "3479650916466595025201780" ], - "mAssetSupply": "111758102188474687842342939", - "LPTokenSupply": "28797309964467517438646764" + "mAssetSupply": "105082265058274325488092796", + "LPTokenSupply": "9166013894389371794656823" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "17439258117004710641664", - "outputQty0": "17504036697440057510922", - "outputQty": "17338242176075027614398", + "type": "redeem", + "outputIndex": 1, + "inputQty": "13151573790622386176", + "outputQty0": "13524147889614273338", + "outputQty": "13081098189269496112", + "swapFee1": "7890944274373431", + "swapFee2": "8114488733768564", "mpReserves": [ - "64901000343628220415083660", - "26950918710584124836221203", - "19983268719130593790288733" + "56187612051247021481416944", + "10553323383997799527422526", + "38597523674283838442915350" ], "fpReserves": [ - "12666641439749441320025317", - "16452907937479499126711281" + "5937810686257522638572563", + "3479650916466595025201780" ], - "mAssetSupply": "111775606225172127899853861", - "LPTokenSupply": "28814648206643592466261162" + "mAssetSupply": "105082251542240924607588022", + "LPTokenSupply": "9166000743604675599707990" }, { - "type": "swap_fp_to_mp", - "inputQty": "14139015739652083548160", - "outputIndex": 0, - "outputQty": "14145152885297176439222", - "swapFee": "0", - "redemptionFee": "5645500172193739300", + "type": "mint", + "inputIndex": 1, + "inputQty": "114009020247713358282752", + "outputQty0": "117759342242837473540249", + "outputQty": "114442669024113641586926", "mpReserves": [ - "64886855190742923238644438", - "26950918710584124836221203", - "19983268719130593790288733" + "56187612051247021481416944", + "10667332404245512885705278", + "38597523674283838442915350" ], "fpReserves": [ - "12652527689318956971774039", - "16467046953219151210259441" + "6055570028500360112112812", + "3479650916466595025201780" ], - "mAssetSupply": "111761498120241815745341883", - "LPTokenSupply": "28814648206643592466261162" + "mAssetSupply": "105200010884483762081128271", + "LPTokenSupply": "9280443412628789241294916" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2084915792641726649204736", - "outputQty0": "2087326142984063763026561", - "outputQty": "2066939598181961293893583", + "inputQty": "99314034335198476238848", + "outputQty0": "102516419046331256882546", + "outputQty": "99622852148495840242799", "mpReserves": [ - "64886855190742923238644438", - "29035834503225851485425939", - "19983268719130593790288733" + "56187612051247021481416944", + "10766646438580711361944126", + "38597523674283838442915350" ], "fpReserves": [ - "14739853832303020734800600", - "16467046953219151210259441" + "6158086447546691368995358", + "3479650916466595025201780" ], - "mAssetSupply": "113848824263225879508368444", - "LPTokenSupply": "30881587804825553760154745" + "mAssetSupply": "105302527303530093338010817", + "LPTokenSupply": "9380066264777285081537715" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "107143433102558459068416", - "outputQty0": "107551082269903184988261", - "outputQty": "107539337873678651626597", - "swapFee": "85175981641921373524", - "mpReserves": [ - "64886855190742923238644438", - "29035834503225851485425939", - "20090412152233152249357149" - ], - "fpReserves": [ - "14847404914572923919788861", - "16359507615345472558632844" - ], - "mAssetSupply": "113956375345495782693356705", - "LPTokenSupply": "30881596322423717952292097" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "29588796450388121223168", - "outputQty0": "29515223656235893719307", - "outputQty": "29510258284596673656598", - "swapFee": "23373850519341603060", - "mpReserves": [ - "64916443987193311359867606", - "29035834503225851485425939", - "20090412152233152249357149" - ], - "fpReserves": [ - "14876920138229159813508168", - "16329997357060875884976246" - ], - "mAssetSupply": "113985890569152018587076012", - "LPTokenSupply": "30881598659808769886452403" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "26882207212719084404736", - "outputQty0": "26815320727121657251734", - "outputQty": "26810160298245203707730", - "swapFee": "21235439547818592002", + "inputQty": "22173567376647454720", + "outputQty0": "22091537556556807426", + "outputQty": "21467375953767428387", "mpReserves": [ - "64943326194406030444272342", - "29035834503225851485425939", - "20090412152233152249357149" + "56187612051247021481416944", + "10766646438580711361944126", + "38597545847851215090370070" ], "fpReserves": [ - "14903735458956281470759902", - "16303187196762630681268516" + "6158108539084247925802784", + "3479650916466595025201780" ], - "mAssetSupply": "114012705889879140244327746", - "LPTokenSupply": "30881600783352724668311603" + "mAssetSupply": "105302549395067649894818243", + "LPTokenSupply": "9380087732153238848966102" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "33263136219573112832", - "outputQty0": "33582915485085475515", - "outputQty": "33653242015848539852", - "swapFee1": "19957881731743867", - "swapFee2": "13433166194034190", + "outputIndex": 2, + "inputQty": "1124281509986636767690752", + "outputQty0": "1155887434256009108921045", + "outputQty": "1159317572852323245777308", + "swapFee1": "674568905991982060614", + "swapFee2": "693532460553605465352", "mpReserves": [ - "64943292541164014595732490", - "29035834503225851485425939", - "20090412152233152249357149" + "56187612051247021481416944", + "10766646438580711361944126", + "37438228274998891844592762" ], "fpReserves": [ - "14903701876040796385284387", - "16303187196762630681268516" + "5002221104828238816881739", + "3479650916466595025201780" ], - "mAssetSupply": "114012672320396821352886421", - "LPTokenSupply": "30881567522212293268373157" + "mAssetSupply": "104147355493272194391362550", + "LPTokenSupply": "8255873679057201279481411" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "841449781970912730415104", - "outputQty0": "844488822664690839374407", - "outputQty": "844012458903463955922485", - "swapFee": "668692355015713525421", + "inputQty": "416905305118109100670976", + "outputQty0": "415460742091167109651514", + "outputQty": "413726602029793232654753", + "swapFee": "323134012487940235847", "mpReserves": [ - "64943292541164014595732490", - "29035834503225851485425939", - "20931861934204064979772253" + "56187612051247021481416944", + "10766646438580711361944126", + "37855133580117000945263738" ], "fpReserves": [ - "15748190698705487224658794", - "15459174737859166725346031" + "5417681846919405926533253", + "3065924314436801792547027" ], - "mAssetSupply": "114857161143061512192260828", - "LPTokenSupply": "30881634391447794839725699" + "mAssetSupply": "104562816235363361501014064", + "LPTokenSupply": "8255905992458450073504995" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "210043886435509567488", - "outputQty0": "209539464995698618750", - "outputQty": "209346129582565298795", - "swapFee": "165871810068947089", + "type": "swap_fp_to_mp", + "inputQty": "369376945101208350097408", + "outputIndex": 0, + "outputQty": "373438333226805496963111", + "swapFee": "0", + "redemptionFee": "222397392357872311706", "mpReserves": [ - "64943502585050450105299978", - "29035834503225851485425939", - "20931861934204064979772253" + "55814173718020215984453833", + "10766646438580711361944126", + "37855133580117000945263738" ], "fpReserves": [ - "15748400238170482923277544", - "15458965391729584160047236" + "5047019526322952073689426", + "3435301259538010142644435" ], - "mAssetSupply": "114857370682526507890879578", - "LPTokenSupply": "30881634408034975846620407" + "mAssetSupply": "104192376312159265520481943", + "LPTokenSupply": "8255905992458450073504995" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "1085448009214740267008", - "outputQty0": "1086572169031355839187", - "outputQty": "1085569026104435312117", - "swapFee": "860132286906478729", + "inputQty": "1524552596947970715287552", + "outputQty0": "1566300767465251248218209", + "outputQty": "1553488619330310940067862", + "swapFee": "1217686373799910240409", "mpReserves": [ - "64943502585050450105299978", - "29036919951235066225692947", - "20931861934204064979772253" + "55814173718020215984453833", + "12291199035528682077231678", + "37855133580117000945263738" ], "fpReserves": [ - "15749486810339514279116731", - "15457879822703479724735119" + "6613320293788203321907635", + "1881812640207699202576573" ], - "mAssetSupply": "114858457254695539246718765", - "LPTokenSupply": "30881634494048204537268279" + "mAssetSupply": "105758677079624516768700152", + "LPTokenSupply": "8256027761095830064529035" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "7317932246416877420544", - "outputQty0": "7343115150804499881238", - "outputQty": "7266019054327491260692", - "mpReserves": [ - "64943502585050450105299978", - "29036919951235066225692947", - "20939179866450481857192797" - ], - "fpReserves": [ - "15756829925490318778997969", - "15457879822703479724735119" - ], - "mAssetSupply": "114865800369846343746600003", - "LPTokenSupply": "30888900513102532028528971" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "250978714205184480772096", - "outputIndex": 0, - "outputQty": "251485411327116651277933", - "swapFee": "0", - "redemptionFee": "100393529357733736527", + "inputIndex": 0, + "inputQty": "305184644169441428373504", + "outputQty0": "303047629568548235452326", + "outputQty": "293471294299389910381089", "mpReserves": [ - "64692017173723333454022045", - "29036919951235066225692947", - "20939179866450481857192797" + "56119358362189657412827337", + "12291199035528682077231678", + "37855133580117000945263738" ], "fpReserves": [ - "15505846102095984437678466", - "15708858536908664205507215" + "6916367923356751557359961", + "1881812640207699202576573" ], - "mAssetSupply": "114614916939981367139017027", - "LPTokenSupply": "30888900513102532028528971" + "mAssetSupply": "106061724709193065004152478", + "LPTokenSupply": "8549499055395219974910124" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "474895332125075374080", - "outputQty0": "479595583486917170090", - "outputQty": "478913965714472004820", - "swapFee1": "284937199275045224", - "swapFee2": "191838233394766868", + "outputIndex": 0, + "inputQty": "10413382119544745623552", + "outputQty0": "10748132433373295338869", + "outputQty": "10817708265698626661916", + "swapFee1": "6248029271726847374", + "swapFee2": "6448879460023977203", "mpReserves": [ - "64692017173723333454022045", - "29036441037269351753688127", - "20939179866450481857192797" + "56108540653923958786165421", + "12291199035528682077231678", + "37855133580117000945263738" ], "fpReserves": [ - "15505366506512497520508376", - "15708858536908664205507215" + "6905619790923378262021092", + "1881812640207699202576573" ], - "mAssetSupply": "114614437536236113616613805", - "LPTokenSupply": "30888425646264126880659413" + "mAssetSupply": "106050983025639151732790812", + "LPTokenSupply": "8539086298078602401971309" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "275988390393818775552", - "outputQty0": "276930835502974586479", - "outputQty": "276733154411233518536", - "swapFee": "219241810396337317", - "mpReserves": [ - "64692017173723333454022045", - "29036441037269351753688127", - "20939455854840875675968349" - ], - "fpReserves": [ - "15505643437348000495094855", - "15708581803754252971988679" - ], - "mAssetSupply": "114614714467071616591200284", - "LPTokenSupply": "30888425668188307920293144" + "inputIndex": 0, + "inputQty": "163721404644781398687744", + "hardLimitError": true }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "27186244510195755515904", - "outputQty0": "27213990559188914093277", - "outputQty": "27194247199444692859804", - "swapFee": "21544825602627252752", + "inputIndex": 0, + "inputQty": "5120565483561954574336", + "outputQty0": "5084581684454082388443", + "outputQty": "4996870724905719468447", + "swapFee": "3938620766252695457", "mpReserves": [ - "64692017173723333454022045", - "29063627281779547509204031", - "20939455854840875675968349" + "56113661219407520740739757", + "12291199035528682077231678", + "37855133580117000945263738" ], "fpReserves": [ - "15532857427907189409188132", - "15681387556554808279128875" + "6910704372607832344409535", + "1876815769482793483108126" ], - "mAssetSupply": "114641928457630805505293561", - "LPTokenSupply": "30888427822670868183018419" + "mAssetSupply": "106056067607323605815179255", + "LPTokenSupply": "8539086691940679027240854" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "55633453642576674816", - "outputQty0": "56184774618093169759", - "outputQty": "56296581817462414671", - "swapFee1": "33380072185546004", - "swapFee2": "22473909847237267", - "mpReserves": [ - "64691960877141515991607374", - "29063627281779547509204031", - "20939455854840875675968349" - ], - "fpReserves": [ - "15532801243132571316018373", - "15681387556554808279128875" - ], - "mAssetSupply": "114641872295330097259361069", - "LPTokenSupply": "30888372192555232824898203" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "20942730949200850944", - "outputQty0": "20964059835435148274", - "outputQty": "20948609212687314091", - "swapFee": "16596713687943094", + "inputQty": "221022417165112332779520", + "outputQty0": "228108114753701543763596", + "outputQty": "229580127574462687883391", + "swapFee1": "132613450299067399667", + "swapFee2": "136864868852220926258", "mpReserves": [ - "64691960877141515991607374", - "29063648224510496710054975", - "20939455854840875675968349" + "55884081091833058052856366", + "12291199035528682077231678", + "37855133580117000945263738" ], "fpReserves": [ - "15532822207192406751166647", - "15681366607945595591814784" + "6682596257854130800645939", + "1876815769482793483108126" ], - "mAssetSupply": "114641893259389932694509343", - "LPTokenSupply": "30888372194214904193692512" + "mAssetSupply": "105828096357438756492341917", + "LPTokenSupply": "8318077536120596601201300" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "8401608919050359930880", - "outputQty0": "8484860198447933035298", - "outputQty": "8501742951399320661683", - "swapFee1": "5040965351430215958", - "swapFee2": "3393944079379173214", + "inputQty": "371054021788818866176", + "outputQty0": "382915910822548503736", + "outputQty": "385379208319513708995", + "swapFee1": "222632413073291319", + "swapFee2": "229749546493529102", "mpReserves": [ - "64683459134190116670945691", - "29063648224510496710054975", - "20939455854840875675968349" + "55883695712624738539147371", + "12291199035528682077231678", + "37855133580117000945263738" ], "fpReserves": [ - "15524337346993958818131349", - "15681366607945595591814784" + "6682213341943308252142203", + "1876815769482793483108126" ], - "mAssetSupply": "114633411793135564140647259", - "LPTokenSupply": "30879971089392388976783227" + "mAssetSupply": "105827713671277480437367283", + "LPTokenSupply": "8317706504362049089664255" }, { "type": "mint", "inputIndex": 0, - "inputQty": "74365119900756100513792", - "outputQty0": "74187622155166536851409", - "outputQty": "73415109885509060844831", + "inputQty": "50556422227811211673600", + "outputQty0": "50202912573565616885915", + "outputQty": "48617463596246761786561", "mpReserves": [ - "64757824254090872771459483", - "29063648224510496710054975", - "20939455854840875675968349" + "55934252134852549750820971", + "12291199035528682077231678", + "37855133580117000945263738" ], "fpReserves": [ - "15598524969149125354982758", - "15681366607945595591814784" + "6732416254516873869028118", + "1876815769482793483108126" ], - "mAssetSupply": "114707599415290730677498668", - "LPTokenSupply": "30953386199277898037628058" + "mAssetSupply": "105877916583851046054253198", + "LPTokenSupply": "8366323967958295851450816" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "206640983920344640", - "outputQty0": "208691731079312309", - "outputQty": "209107795202777570", - "swapFee1": "123984590352206", - "swapFee2": "83476692431724", + "type": "swap_fp_to_mp", + "inputQty": "246695925427499914231808", + "outputIndex": 1, + "outputQty": "244006625133341137045861", + "swapFee": "0", + "redemptionFee": "150085791535902720231", "mpReserves": [ - "64757824044983077568681913", - "29063648224510496710054975", - "20939455854840875675968349" + "55934252134852549750820971", + "12047192410395340940185817", + "37855133580117000945263738" ], "fpReserves": [ - "15598524760457394275670449", - "15681366607945595591814784" + "6482273268623702668641946", + "2123511694910293397339934" ], - "mAssetSupply": "114707599206682476290618083", - "LPTokenSupply": "30953385992649312576318638" + "mAssetSupply": "105627923683749410756587257", + "LPTokenSupply": "8366323967958295851450816" }, { "type": "mint", "inputIndex": 1, - "inputQty": "11046226424888540790784", - "outputQty0": "11057505094520669469023", - "outputQty": "10942264334826775504160", + "inputQty": "364969670915614048256", + "outputQty0": "374105913709459026326", + "outputQty": "362610657287131708309", "mpReserves": [ - "64757824044983077568681913", - "29074694450935385250845759", - "20939455854840875675968349" + "55934252134852549750820971", + "12047557380066256554234073", + "37855133580117000945263738" ], "fpReserves": [ - "15609582265551914945139472", - "15681366607945595591814784" + "6482647374537412127668272", + "2123511694910293397339934" ], - "mAssetSupply": "114718656711776996960087106", - "LPTokenSupply": "30964328256984139351822798" + "mAssetSupply": "105628297789663120215613583", + "LPTokenSupply": "8366686578615582983159125" }, { "type": "swap_fp_to_mp", - "inputQty": "25728844344676780605440", - "outputIndex": 2, - "outputQty": "25629624052290145230958", + "inputQty": "7513400519160683520", + "outputIndex": 1, + "outputQty": "7414398244496754482", "swapFee": "0", - "redemptionFee": "10291112946634401562", + "redemptionFee": "4562735516524045", "mpReserves": [ - "64757824044983077568681913", - "29074694450935385250845759", - "20913826230788585530737391" + "55934252134852549750820971", + "12047549965668012057479591", + "37855133580117000945263738" ], "fpReserves": [ - "15583854483185328941233009", - "15707095452290272372420224" + "6482639769978217920926367", + "2123519208310812558023454" ], - "mAssetSupply": "114692939220523357590582205", - "LPTokenSupply": "30964328256984139351822798" + "mAssetSupply": "105628290189666661525395723", + "LPTokenSupply": "8366686578615582983159125" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2829318864836517429248", - "outputQty0": "2822554091403156869309", - "outputQty": "2820439811254048383268", - "swapFee": "2234531171533917784", + "type": "redeem", + "outputIndex": 0, + "inputQty": "21009853992409716", + "outputQty0": "21662892436148071", + "outputQty": "21805644762710706", + "swapFee1": "12605912395445", + "swapFee2": "12997735461688", "mpReserves": [ - "64760653363847914086111161", - "29074694450935385250845759", - "20913826230788585530737391" + "55934252113046904988110265", + "12047549965668012057479591", + "37855133580117000945263738" ], "fpReserves": [ - "15586677037276732098102318", - "15704275012479018324036956" + "6482639748315325484778296", + "2123519208310812558023454" ], - "mAssetSupply": "114695761774614760747451514", - "LPTokenSupply": "30964328480437256505214576" + "mAssetSupply": "105628290168016766824709340", + "LPTokenSupply": "8366686557606989581988953" }, { "type": "swap_fp_to_mp", - "inputQty": "42870094403718234112", - "outputIndex": 2, - "outputQty": "42704184525360869132", + "inputQty": "1097229607682006937763840", + "outputIndex": 0, + "outputQty": "1112303736443140404804194", "swapFee": "0", - "redemptionFee": "17147183859159650", + "redemptionFee": "663078282811920196670", "mpReserves": [ - "64760653363847914086111161", - "29074694450935385250845759", - "20913783526604060169868259" + "54821948376603764583306071", + "12047549965668012057479591", + "37855133580117000945263738" ], "fpReserves": [ - "15586634169317084198975748", - "15704317882573422042271068" + "5377509276962125156994494", + "3220748815992819495787294" ], - "mAssetSupply": "114695718923802296707484594", - "LPTokenSupply": "30964328480437256505214576" + "mAssetSupply": "104523822774946378417122208", + "LPTokenSupply": "8366686557606989581988953" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "15117875575950604763136", - "outputQty0": "15081721782381415913287", - "outputQty": "14924643757351356442026", + "type": "swap_fp_to_mp", + "inputQty": "3581645931657993805365248", + "outputIndex": 1, + "outputQty": "3449310384672024809492486", + "swapFee": "0", + "redemptionFee": "2141491700499622649760", "mpReserves": [ - "64775771239423864690874297", - "29074694450935385250845759", - "20913783526604060169868259" + "54821948376603764583306071", + "8598239580995987247987105", + "37855133580117000945263738" ], "fpReserves": [ - "15601715891099465614889035", - "15704317882573422042271068" + "1808356442796087407392875", + "6802394747650813301152542" ], - "mAssetSupply": "114710800645584678123397881", - "LPTokenSupply": "30979253124194607861656602" + "mAssetSupply": "100956811432480840290170349", + "LPTokenSupply": "8366686557606989581988953" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "612691516244794319831040", - "outputQty0": "613287088582852868565437", - "outputQty": "612663951558482963641363", - "swapFee": "485487824086035275671", + "type": "redeem", + "outputIndex": 0, + "inputQty": "520247463084391384743936", + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "3287207463334824116224", + "outputQty0": "3335266971920894994590", + "outputQty": "3181435101908522643276", + "swapFee1": "1972324478000894469", + "swapFee2": "2001160183152536996", "mpReserves": [ - "64775771239423864690874297", - "29687385967180179570676799", - "20913783526604060169868259" + "54821948376603764583306071", + "8595058145894078725343829", + "37855133580117000945263738" ], "fpReserves": [ - "16215002979682318483454472", - "15091653931014939078629705" + "1805021175824166512398285", + "6802394747650813301152542" ], - "mAssetSupply": "115324087734167530991963318", - "LPTokenSupply": "30979301672977016465184169" + "mAssetSupply": "100953478166669102547712755", + "LPTokenSupply": "8363399547376102557962175" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "2008474281039959949312", "outputIndex": 0, - "inputQty": "376945584419898820395008", - "outputQty0": "380773115909609363893200", - "outputQty": "381517261412230398367757", - "swapFee1": "226167350651939292237", - "swapFee2": "152309246363843745557", + "outputQty": "1992329758940224722869", + "swapFee": "0", + "redemptionFee": "1184363250628476711", "mpReserves": [ - "64394253978011634292506540", - "29687385967180179570676799", - "20913783526604060169868259" + "54819956046844824358583202", + "8595058145894078725343829", + "37855133580117000945263738" ], "fpReserves": [ - "15834229863772709119561272", - "15091653931014939078629705" + "1803047237073119051212366", + "6804403221931853261101854" ], - "mAssetSupply": "114943466927504285471815675", - "LPTokenSupply": "30602378705292182838718384" + "mAssetSupply": "100951505412281305715003547", + "LPTokenSupply": "8363399547376102557962175" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "493524712874407041695744", - "outputQty0": "498494274741532631516968", - "outputQty": "496542324223815524234911", - "swapFee1": "296114827724644225017", - "swapFee2": "199397709896613052606", - "mpReserves": [ - "64394253978011634292506540", - "29687385967180179570676799", - "20417241202380244645633348" - ], - "fpReserves": [ - "15335735589031176488044304", - "15091653931014939078629705" - ], - "mAssetSupply": "114445172050472649453351313", - "LPTokenSupply": "30108883603900548261445141" + "inputQty": "116411097273679472492544", + "hardLimitError": true }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "404559908112510360748032", - "outputQty0": "405995145852962950516501", - "outputQty": "405555451128975608110581", - "swapFee": "321365494598588886856", + "type": "mint", + "inputIndex": 1, + "inputQty": "10455633866923872", + "outputQty0": "10954776521657399", + "outputQty": "10791026284366088", "mpReserves": [ - "64394253978011634292506540", - "29687385967180179570676799", - "20821801110492755006381380" + "54819956046844824358583202", + "8595058156349712592267701", + "37855133580117000945263738" ], "fpReserves": [ - "15741730734884139438560805", - "14686098479885963470519124" + "1803047248027895572869765", + "6804403221931853261101854" ], - "mAssetSupply": "114851167196325612403867814", - "LPTokenSupply": "30108915740450008120333826" + "mAssetSupply": "100951505423236082236660946", + "LPTokenSupply": "8363399558167128842328263" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "612849378329786006372352", - "outputQty0": "611399847152169089038614", - "outputQty": "604820133333069337572637", + "inputQty": "7054651906506102931456", + "outputQty0": "6985333290634950376573", + "outputQty": "7101490165126777991501", + "swapFee": "5504485382150602434", "mpReserves": [ - "65007103356341420298878892", - "29687385967180179570676799", - "20821801110492755006381380" + "54827010698751330461514658", + "8595058156349712592267701", + "37855133580117000945263738" ], "fpReserves": [ - "16353130582036308527599419", - "14686098479885963470519124" + "1810032581318530523246338", + "6797301731766726483110353" ], - "mAssetSupply": "115462567043477781492906428", - "LPTokenSupply": "30713735873783077457906463" + "mAssetSupply": "100958490756526717187037519", + "LPTokenSupply": "8363400108615667057388506" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "978408255486083584", - "outputQty0": "988518438436638793", - "outputQty": "990482544486576180", - "swapFee1": "587044953291650", - "swapFee2": "395407375374655", + "type": "mint", + "inputIndex": 1, + "inputQty": "203971552192897967194112", + "outputQty0": "213487471462304270848588", + "outputQty": "210014057620880268840244", "mpReserves": [ - "65007102365858875812302712", - "29687385967180179570676799", - "20821801110492755006381380" + "54827010698751330461514658", + "8799029708542610559461813", + "37855133580117000945263738" ], "fpReserves": [ - "16353129593517870090960626", - "14686098479885963470519124" + "2023520052780834794094926", + "6797301731766726483110353" ], - "mAssetSupply": "115462566055354750431642290", - "LPTokenSupply": "30713734895433526467152044" + "mAssetSupply": "101171978227989021457886107", + "LPTokenSupply": "8573414166236547326228750" }, { "type": "swap_fp_to_mp", - "inputQty": "252396346859872711606272", + "inputQty": "6289911645808105", "outputIndex": 0, - "outputQty": "253049413288558560293169", + "outputQty": "6257405204320691", "swapFee": "0", - "redemptionFee": "101019757854241946669", + "redemptionFee": "3720650362193", "mpReserves": [ - "64754052952570317252009543", - "29687385967180179570676799", - "20821801110492755006381380" + "54827010692493925257193967", + "8799029708542610559461813", + "37855133580117000945263738" ], "fpReserves": [ - "16100580198882265224285648", - "14938494826745836182125396" + "2023520046579750857105172", + "6797301738056638128918458" ], - "mAssetSupply": "115210117680476999806913981", - "LPTokenSupply": "30713734895433526467152044" + "mAssetSupply": "101171978221791658171258546", + "LPTokenSupply": "8573414166236547326228750" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "735475414157121229422592", - "outputQty0": "733718699145450957821073", - "outputQty": "732533952892377687469159", - "swapFee": "580641844913869048131", + "type": "mint", + "inputIndex": 2, + "inputQty": "1376037948589801073541120", + "outputQty0": "1369083993755530849200669", + "outputQty": "1340125731534195221511210", "mpReserves": [ - "65489528366727438481432135", - "29687385967180179570676799", - "20821801110492755006381380" + "54827010692493925257193967", + "8799029708542610559461813", + "39231171528706802018804858" ], "fpReserves": [ - "16834298898027716182106721", - "14205960873853458494656237" + "3392604040335281706305841", + "6797301738056638128918458" ], - "mAssetSupply": "115943836379622450764735054", - "LPTokenSupply": "30713792959618017854056857" + "mAssetSupply": "102541062215547189020459215", + "LPTokenSupply": "9913539897770742547739960" }, { - "type": "swap_fp_to_mp", - "inputQty": "142572089151375048704", - "outputIndex": 1, - "outputQty": "142540951725994731607", - "swapFee": "0", - "redemptionFee": "57093747568889902", + "type": "redeem", + "outputIndex": 0, + "inputQty": "57855201195978424320", + "outputQty0": "59211167961119158516", + "outputQty": "59743681207789796167", + "swapFee1": "34713120717587054", + "swapFee2": "35526700776671495", "mpReserves": [ - "65489528366727438481432135", - "29687243426228453575945192", - "20821801110492755006381380" + "54826950948812717467397800", + "8799029708542610559461813", + "39231171528706802018804858" ], "fpReserves": [ - "16834156163658793957349484", - "14206103445942609869704941" + "3392544829167320587147325", + "6797301738056638128918458" ], - "mAssetSupply": "115943693702347276108867719", - "LPTokenSupply": "30713792959618017854056857" + "mAssetSupply": "102541003039905928677972194", + "LPTokenSupply": "9913482046040858641074345" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1100053093815795562053632", - "outputQty0": "1097369508858922392538647", - "outputQty": "1094695176472381833001410", - "swapFee": "868123210872209560381", + "type": "mint", + "inputIndex": 1, + "inputQty": "59485353752824056381440", + "outputQty0": "62243164353408012864773", + "outputQty": "60777206736976506281032", "mpReserves": [ - "66589581460543234043485767", - "29687243426228453575945192", - "20821801110492755006381380" + "54826950948812717467397800", + "8858515062295434615843253", + "39231171528706802018804858" ], "fpReserves": [ - "17931525672517716349888131", - "13111408269470228036703531" + "3454787993520728600012098", + "6797301738056638128918458" ], - "mAssetSupply": "117041063211206198501406366", - "LPTokenSupply": "30713879771939105075012895" + "mAssetSupply": "102603246204259336690836967", + "LPTokenSupply": "9974259252777835147355377" }, { "type": "mint", "inputIndex": 0, - "inputQty": "23194300675411525632", - "outputQty0": "23137007852791135614", - "outputQty": "22870882241002882915", + "inputQty": "25709960688404716", + "outputQty0": "25467193536643065", + "outputQty": "24865748896375099", "mpReserves": [ - "66589604654843909455011399", - "29687243426228453575945192", - "20821801110492755006381380" + "54826950974522678155802516", + "8858515062295434615843253", + "39231171528706802018804858" ], "fpReserves": [ - "17931548809525569141023745", - "13111408269470228036703531" + "3454788018987922136655163", + "6797301738056638128918458" ], - "mAssetSupply": "117041086348214051292541980", - "LPTokenSupply": "30713902642821346077895810" + "mAssetSupply": "102603246229726530227480032", + "LPTokenSupply": "9974259277643584043730476" }, { - "type": "swap_fp_to_mp", - "inputQty": "22490176143950307328", - "outputIndex": 0, - "outputQty": "22585548863456713706", - "swapFee": "0", - "redemptionFee": "9015510097454961", + "type": "mint", + "inputIndex": 2, + "inputQty": "36433882938465960", + "outputQty0": "36244752268438905", + "outputQty": "35388779975446557", "mpReserves": [ - "66589582069295045998297693", - "29687243426228453575945192", - "20821801110492755006381380" + "54826950974522678155802516", + "8858515062295434615843253", + "39231171565140684957270818" ], "fpReserves": [ - "17931526270750325503619049", - "13111430759646371987010859" + "3454788055232674405094068", + "6797301738056638128918458" ], - "mAssetSupply": "117041063818454317752592245", - "LPTokenSupply": "30713902642821346077895810" + "mAssetSupply": "102603246265971282495918937", + "LPTokenSupply": "9974259313032364019177033" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "16641404835311013888", "outputIndex": 0, - "inputQty": "13189514786485254144", - "outputQty0": "13334982089399914242", - "outputQty": "13362655513230945893", - "swapFee1": "7913708871891152", - "swapFee2": "5333992835759965", + "outputQty": "16699612128481590794", + "swapFee": "0", + "redemptionFee": "9931113980888322", "mpReserves": [ - "66589568706639532767351800", - "29687243426228453575945192", - "20821801110492755006381380" + "54826934274910549674211722", + "8858515062295434615843253", + "39231171565140684957270818" ], "fpReserves": [ - "17931512935768236103704807", - "13111430759646371987010859" + "3454771503376039591222961", + "6797318379461473439932346" ], - "mAssetSupply": "117041050488806221188437968", - "LPTokenSupply": "30713889454097930479830781" + "mAssetSupply": "102603229724045761662936152", + "LPTokenSupply": "9974259313032364019177033" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "951546678153408000", - "outputQty0": "952511091123959799", - "outputQty": "941555163086514100", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "35694231172804354506752", + "outputQty0": "35508771862585437280943", + "outputQty": "35669333070031263611085", + "swapFee": "27735129142352946302", "mpReserves": [ - "66589568706639532767351800", - "29687244377775131729353192", - "20821801110492755006381380" + "54826934274910549674211722", + "8858515062295434615843253", + "39266865796313489311777570" ], "fpReserves": [ - "17931513888279327227664606", - "13111430759646371987010859" + "3490280275238625028503904", + "6761649046391442176321261" ], - "mAssetSupply": "117041051441317312312397767", - "LPTokenSupply": "30713890395653093566344881" + "mAssetSupply": "102638738495908347100217095", + "LPTokenSupply": "9974262086545278254471663" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "23950567150221234176", - "outputQty0": "24214718147227061390", - "outputQty": "24180524735289536899", - "swapFee1": "14370340290132740", - "swapFee2": "9685887258890824", + "type": "swap_fp_to_mp", + "inputQty": "295845921331312207069184", + "outputIndex": 0, + "outputQty": "296702005370743751946294", + "swapFee": "0", + "redemptionFee": "176452295269330808891", "mpReserves": [ - "66589568706639532767351800", - "29687220197250396439816293", - "20821801110492755006381380" + "54530232269539805922265428", + "8858515062295434615843253", + "39266865796313489311777570" ], "fpReserves": [ - "17931489673561180000603216", - "13111430759646371987010859" + "3196193116456407013685039", + "7057494967722754383390445" ], - "mAssetSupply": "117041027236285052344227201", - "LPTokenSupply": "30713866446522977374123979" + "mAssetSupply": "102344827789421398416207121", + "LPTokenSupply": "9974262086545278254471663" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "235382135615931514880", - "outputQty0": "237978161695958199174", - "outputQty": "237642109731002099029", - "swapFee1": "141229281369558908", - "swapFee2": "95191264678383279", + "type": "mint", + "inputIndex": 0, + "inputQty": "303223205671461388288", + "outputQty0": "300380433758328494880", + "outputQty": "293554356529314648276", "mpReserves": [ - "66589568706639532767351800", - "29686982555140665437717264", - "20821801110492755006381380" + "54530535492745477383653716", + "8858515062295434615843253", + "39266865796313489311777570" ], "fpReserves": [ - "17931251695399484042404042", - "13111430759646371987010859" + "3196493496890165342179919", + "7057494967722754383390445" ], - "mAssetSupply": "117040789353314621064411306", - "LPTokenSupply": "30713631078510289579564989" + "mAssetSupply": "102345128169855156744702001", + "LPTokenSupply": "9974555640901807569119939" }, { - "type": "swap_fp_to_mp", - "inputQty": "38471256804313664585728", - "outputIndex": 1, - "outputQty": "38499096458618659056422", - "swapFee": "0", - "redemptionFee": "15421462314081085903", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "65828929092308320256", + "outputQty0": "68841167590820471394", + "outputQty": "69252062793791643508", + "swapFee": "53821386971636123", "mpReserves": [ - "66589568706639532767351800", - "29648483458682046778660842", - "20821801110492755006381380" + "54530535492745477383653716", + "8858580891224526924163509", + "39266865796313489311777570" ], "fpReserves": [ - "17892698039614281327645301", - "13149902016450685651596587" + "3196562338057756162651313", + "7057425715659960591746937" ], - "mAssetSupply": "117002251118991732430738468", - "LPTokenSupply": "30713631078510289579564989" + "mAssetSupply": "102345197011022747565173395", + "LPTokenSupply": "9974555646283946266283551" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "167540596009175837835264", - "outputQty0": "167709221349072185965760", - "outputQty": "165780425095792205379618", + "inputQty": "729801715620805513052160", + "outputQty0": "760679716441196097081617", + "outputQty": "763812618278952305224146", + "swapFee": "594204378146386520720", "mpReserves": [ - "66589568706639532767351800", - "29816024054691222616496106", - "20821801110492755006381380" + "54530535492745477383653716", + "9588382606845332437215669", + "39266865796313489311777570" ], "fpReserves": [ - "18060407260963353513611061", - "13149902016450685651596587" + "3957242054498952259732930", + "6293613097381008286522791" ], - "mAssetSupply": "117169960340340804616704228", - "LPTokenSupply": "30879411503606081784944607" + "mAssetSupply": "103105876727463943662255012", + "LPTokenSupply": "9974615066721760904935623" }, { "type": "swap_fp_to_mp", - "inputQty": "1113212716046739988021248", + "inputQty": "14024297892611938304", "outputIndex": 1, - "outputQty": "1113414968988903432874945", + "outputQty": "13443048199613000824", "swapFee": "0", - "redemptionFee": "446026606834191848027", + "redemptionFee": "8386390009093749", "mpReserves": [ - "66589568706639532767351800", - "28702609085702319183621161", - "20821801110492755006381380" + "54530535492745477383653716", + "9588369163797132824214845", + "39266865796313489311777570" ], "fpReserves": [ - "16945340743877873893541655", - "14263114732497425639617835" + "3957228077182270436817734", + "6293627121678900898461095" ], - "mAssetSupply": "116055339849862159188482849", - "LPTokenSupply": "30879411503606081784944607" + "mAssetSupply": "103105862758533651848433565", + "LPTokenSupply": "9974615066721760904935623" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "55738420198821", - "outputQty0": "55597747980967", - "outputQty": "54982511790518", - "mpReserves": [ - "66589568706695271187550621", - "28702609085702319183621161", - "20821801110492755006381380" - ], - "fpReserves": [ - "16945340743933471641522622", - "14263114732497425639617835" - ], - "mAssetSupply": "116055339849917756936463816", - "LPTokenSupply": "30879411503661064296735125" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "71415824368877789184", - "outputQty0": "71499732274608413699", - "outputQty": "71360046483815707134", - "swapFee": "56566821348295021", + "type": "redeem", + "outputIndex": 0, + "inputQty": "873178946039222144", + "outputQty0": "894978057821773524", + "outputQty": "902237562198713597", + "swapFee1": "523907367623533", + "swapFee2": "536986834693064", "mpReserves": [ - "66589568706695271187550621", - "28702680501526688061410345", - "20821801110492755006381380" + "54530534590507915184940119", + "9588369163797132824214845", + "39266865796313489311777570" ], "fpReserves": [ - "16945412243665746249936321", - "14263043372450941823910701" + "3957227182204212615044210", + "6293627121678900898461095" ], - "mAssetSupply": "116055411349650031544877515", - "LPTokenSupply": "30879411509317746431564627" + "mAssetSupply": "103105861864092580861353105", + "LPTokenSupply": "9974614193595205602475832" }, { "type": "swap_fp_to_mp", - "inputQty": "26776575599618165833728", - "outputIndex": 1, - "outputQty": "26764978852767181475250", + "inputQty": "7631725325255887028224", + "outputIndex": 2, + "outputQty": "7637231868511859188849", "swapFee": "0", - "redemptionFee": "10722883830316171727", + "redemptionFee": "4563634528476447592", "mpReserves": [ - "66589568706695271187550621", - "28675915522673920879935095", - "20821801110492755006381380" + "54530534590507915184940119", + "9588369163797132824214845", + "39259228564444977452588721" ], "fpReserves": [ - "16918605034089955820617130", - "14289819948050559989744429" + "3949621124656751869056673", + "6301258847004156785489319" ], - "mAssetSupply": "116028614862958071431730051", - "LPTokenSupply": "30879411509317746431564627" + "mAssetSupply": "103098260370179648591813160", + "LPTokenSupply": "9974614193595205602475832" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "1346943249318194708480", - "outputQty0": "1348531807330892067255", - "outputQty": "1345928345320280973679", - "swapFee": "1066898754426827362", + "inputQty": "56587573951053338509312", + "outputQty0": "58788064799288150507781", + "outputQty": "58934023742067331273454", + "swapFee": "45856379460079266644", "mpReserves": [ - "66589568706695271187550621", - "28677262465923239074643575", - "20821801110492755006381380" + "54530534590507915184940119", + "9644956737748186162724157", + "39259228564444977452588721" ], "fpReserves": [ - "16919953565897286712684385", - "14288474019705239708770750" + "4008409189456040019564454", + "6242324823262089454215865" ], - "mAssetSupply": "116029963394765402323797306", - "LPTokenSupply": "30879411616007621874247363" + "mAssetSupply": "103157048434978936742320941", + "LPTokenSupply": "9974618779233151610402496" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "38226599974819625697280", - "outputQty0": "38130027528348674570642", - "outputQty": "38055749051975734048009", - "swapFee": "30166671895946058370", - "mpReserves": [ - "66627795306670090813247901", - "28677262465923239074643575", - "20821801110492755006381380" - ], - "fpReserves": [ - "16958083593425635387255027", - "14250418270653263974722741" - ], - "mAssetSupply": "116068093422293750998367948", - "LPTokenSupply": "30879414632674811468853200" - }, - { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "881433951464883093504", "outputIndex": 2, - "inputQty": "806657600335665038360576", - "outputQty0": "815136691914827288139510", - "outputQty": "811717832215122141926185", - "swapFee1": "483994560201399023016", - "swapFee2": "326054676765930915255", + "outputQty": "882201339303663290448", + "swapFee": "0", + "redemptionFee": "527181108060292177", "mpReserves": [ - "66627795306670090813247901", - "28677262465923239074643575", - "20010083278277632864455195" + "54530534590507915184940119", + "9644956737748186162724157", + "39258346363105673789298273" ], "fpReserves": [ - "16142946901510808099115517", - "14250418270653263974722741" + "4007530554275939532602210", + "6243206257213554337309369" ], - "mAssetSupply": "115253282785055689641143693", - "LPTokenSupply": "30072805431795166570394925" + "mAssetSupply": "103156170326979944315650874", + "LPTokenSupply": "9974618779233151610402496" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "637201042181445124096", - "outputQty0": "643857729064883559531", - "outputQty": "642869749346081179444", - "swapFee1": "382320625308867074", - "swapFee2": "257543091625953423", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "703534382371831220797440", + "outputQty0": "728895728406759836257975", + "outputQty": "729810313779700700035141", + "swapFee": "568279485995991980216", "mpReserves": [ - "66627795306670090813247901", - "28676619596173892993464131", - "20010083278277632864455195" + "54530534590507915184940119", + "10348491120120017383521597", + "39258346363105673789298273" ], "fpReserves": [ - "16142303043781743215555986", - "14250418270653263974722741" + "4736426282682699368860185", + "5513395943433853637274228" ], - "mAssetSupply": "115252639184869716383537585", - "LPTokenSupply": "30072168268985047656157536" + "mAssetSupply": "103885066055386704151908849", + "LPTokenSupply": "9974675607181751209600517" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "22100005292445158866944", - "outputQty0": "22330828669867598965600", - "outputQty": "22296518567522355061653", - "swapFee1": "13260003175467095320", - "swapFee2": "8932331467947039586", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "661955265660734436016128", + "outputQty0": "659126608111492553273671", + "outputQty": "658700534983349100935536", + "swapFee": "513305632844752463219", "mpReserves": [ - "66627795306670090813247901", - "28654323077606370638402478", - "20010083278277632864455195" + "54530534590507915184940119", + "10348491120120017383521597", + "39920301628766408225314401" ], "fpReserves": [ - "16119972215111875616590386", - "14250418270653263974722741" + "5395552890794191922133856", + "4854695408450504536338692" ], - "mAssetSupply": "115230317288531316731611571", - "LPTokenSupply": "30050069589692920044000124" + "mAssetSupply": "104544192663498196705182520", + "LPTokenSupply": "9974726937745035684846838" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "118816749837843660013568", - "outputQty0": "120056094687475836575718", - "outputQty": "119870158263773953339471", - "swapFee1": "71290049902706196008", - "swapFee2": "48022437874990334630", + "type": "mint", + "inputIndex": 1, + "inputQty": "167554853286632423948288", + "outputQty0": "173162353342367427723635", + "outputQty": "168443266342189194121102", "mpReserves": [ - "66627795306670090813247901", - "28534452919342596685063007", - "20010083278277632864455195" + "54530534590507915184940119", + "10516045973406649807469885", + "39920301628766408225314401" ], "fpReserves": [ - "15999916120424399780014668", - "14250418270653263974722741" + "5568715244136559349857491", + "4854695408450504536338692" ], - "mAssetSupply": "115110309216281715885370483", - "LPTokenSupply": "29931259968860066654606156" + "mAssetSupply": "104717355016840564132906155", + "LPTokenSupply": "10143170204087224878967940" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "25751602603852541460480", - "outputQty0": "25781441532072554336444", - "outputQty": "25500172110125486930964", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "803886791620733184", + "outputQty0": "797604439513301702", + "outputQty": "796236820115151757", + "swapFee": "620663385995648", "mpReserves": [ - "66627795306670090813247901", - "28560204521946449226523487", - "20010083278277632864455195" + "54530535394394706805673303", + "10516045973406649807469885", + "39920301628766408225314401" ], "fpReserves": [ - "16025697561956472334351112", - "14250418270653263974722741" + "5568716041740998863159193", + "4854694612213684421186935" ], - "mAssetSupply": "115136090657813788439706927", - "LPTokenSupply": "29956760140970192141537120" + "mAssetSupply": "104717355814445003646207857", + "LPTokenSupply": "10143170204149291217567504" }, { "type": "swap_fp_to_mp", - "inputQty": "33131468737792901644288", + "inputQty": "6613128299618485927936", "outputIndex": 1, - "outputQty": "33105252240078274828024", + "outputQty": "6404106497966951704994", "swapFee": "0", - "redemptionFee": "13262758411023655187", + "redemptionFee": "3971478151502161252", "mpReserves": [ - "66627795306670090813247901", - "28527099269706370951695463", - "20010083278277632864455195" + "54530535394394706805673303", + "10509641866908682855764891", + "39920301628766408225314401" ], "fpReserves": [ - "15992540665928913196382522", - "14283549739391056876367029" + "5562096911488495261071117", + "4861307740513302907114871" ], - "mAssetSupply": "115102947024544640325393524", - "LPTokenSupply": "29956760140970192141537120" + "mAssetSupply": "104710740655670651546281033", + "LPTokenSupply": "10143170204149291217567504" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "13359945832794163249152", - "outputQty0": "13499031132696336029070", - "outputQty": "13440091673704504155406", - "swapFee1": "8015967499676497949", - "swapFee2": "5399612453078534411", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "88186989369629423435776", + "outputQty0": "87810823942495969761783", + "outputQty": "87651686115029860386178", + "swapFee": "68329674188585000084", "mpReserves": [ - "66627795306670090813247901", - "28527099269706370951695463", - "19996643186603928360299789" + "54530535394394706805673303", + "10509641866908682855764891", + "40008488618136037648750177" ], "fpReserves": [ - "15979041634796216860353452", - "14283549739391056876367029" + "5649907735430991230832900", + "4773656054398273046728693" ], - "mAssetSupply": "115089453393024397067898865", - "LPTokenSupply": "29943400996734147945937762" + "mAssetSupply": "104798551479613147516042816", + "LPTokenSupply": "10143177037116710076067512" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "854265634091114982014976", - "outputQty0": "855195564981538738223207", - "outputQty": "845806919776757762835547", + "inputQty": "278134933594243730505728", + "outputQty0": "287085021071609055843331", + "outputQty": "286420417193875132428052", + "swapFee": "223357015258228777313", "mpReserves": [ - "66627795306670090813247901", - "29381364903797485933710439", - "19996643186603928360299789" + "54530535394394706805673303", + "10787776800502926586270619", + "40008488618136037648750177" ], "fpReserves": [ - "16834237199777755598576659", - "14283549739391056876367029" + "5936992756502600286676231", + "4487235637204397914300641" ], - "mAssetSupply": "115944648958005935806122072", - "LPTokenSupply": "30789207916510905708773309" + "mAssetSupply": "105085636500684756571886147", + "LPTokenSupply": "10143199372818235898945243" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "88466196842462280941568", - "outputQty0": "89401058844064539375996", - "outputQty": "89273820474893219221075", - "swapFee1": "53079718105477368564", - "swapFee2": "35760423537625815750", - "mpReserves": [ - "66627795306670090813247901", - "29292091083322592714489364", - "19996643186603928360299789" - ], - "fpReserves": [ - "16744836140933691059200663", - "14283549739391056876367029" - ], - "mAssetSupply": "115855283659585408892561826", - "LPTokenSupply": "30700747027640253975568597" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "385879093048289741766656", - "outputQty0": "387400708337850048114187", - "outputQty": "383108462246403961233419", + "inputQty": "305400473989087018090496", + "outputQty0": "313905952476088905085038", + "outputQty": "303914023789642445997944", + "swapFee1": "183240284393452210854", + "swapFee2": "188343571485653343051", "mpReserves": [ - "66627795306670090813247901", - "29292091083322592714489364", - "20382522279652218102066445" + "54530535394394706805673303", + "10483862776713284140272675", + "40008488618136037648750177" ], "fpReserves": [ - "17132236849271541107314850", - "14283549739391056876367029" + "5623086804026511381591193", + "4487235637204397914300641" ], - "mAssetSupply": "116242684367923258940676013", - "LPTokenSupply": "31083855489886657936802016" + "mAssetSupply": "104771918891780153320144160", + "LPTokenSupply": "9837817222857588226075832" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "275746164016166535168", - "outputQty0": "276036816758307644172", - "outputQty": "272968666106985559913", + "type": "swap_fp_to_mp", + "inputQty": "103798039404996804608", + "outputIndex": 2, + "outputQty": "104341875091968230039", + "swapFee": "0", + "redemptionFee": "62373923543891304", "mpReserves": [ - "66627795306670090813247901", - "29292366829486608881024532", - "20382522279652218102066445" + "54530535394394706805673303", + "10483862776713284140272675", + "40008384276260945680520138" ], "fpReserves": [ - "17132512886088299414959022", - "14283549739391056876367029" + "5622982847487271562750736", + "4487339435243802911105249" ], - "mAssetSupply": "116242960404740017248320185", - "LPTokenSupply": "31084128458552764922361929" + "mAssetSupply": "104771814997614837045195007", + "LPTokenSupply": "9837817222857588226075832" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "93946235451135737856", - "outputQty0": "94945185496418059211", - "outputQty": "94542494694310308851", - "swapFee1": "56367741270681442", - "swapFee2": "37978074198567223", + "inputQty": "1746501667630080851968", + "outputQty0": "1795017115690430338805", + "outputQty": "1801670310636891769919", + "swapFee1": "1047901000578048511", + "swapFee2": "1077010269414258203", "mpReserves": [ - "66627795306670090813247901", - "29292366829486608881024532", - "20382427737157523791757594" + "54530535394394706805673303", + "10483862776713284140272675", + "40006582605950308788750219" ], "fpReserves": [ - "17132417940902802996899811", - "14283549739391056876367029" + "5621187830371581132411931", + "4487339435243802911105249" ], - "mAssetSupply": "116242865497532595028828197", - "LPTokenSupply": "31084034517954087913692217" + "mAssetSupply": "104770021057509416029114405", + "LPTokenSupply": "9836070825980058203028715" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "16353090606591428", - "outputQty0": "16526976335562336", - "outputQty": "16502970898963598", - "swapFee1": "9811854363954", - "swapFee2": "6610790534224", + "inputQty": "159726664759525811159040", + "outputQty0": "164156010426739575804027", + "outputQty": "158709667808622221007660", + "swapFee1": "95835998855715486695", + "swapFee2": "98493606256043745482", "mpReserves": [ - "66627795306670090813247901", - "29292366812983637982060934", - "20382427737157523791757594" + "54530535394394706805673303", + "10325153108904661919265015", + "40006582605950308788750219" ], "fpReserves": [ - "17132417924375826661337475", - "14283549739391056876367029" + "5457031819944841556607904", + "4487339435243802911105249" ], - "mAssetSupply": "116242865481012229483800085", - "LPTokenSupply": "31084034501601978492537184" + "mAssetSupply": "104605963540688932497055860", + "LPTokenSupply": "9676353744820417963418344" }, { - "type": "swap_fp_to_mp", - "inputQty": "431944180916456167309312", - "outputIndex": 0, - "outputQty": "433312158993691342792386", - "swapFee": "0", - "redemptionFee": "172955958934404132893", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "56968886688816600", + "outputQty0": "58917858758518551", + "outputQty": "58793286724179511", + "swapFee": "45836696111849", "mpReserves": [ - "66194483147676399470455515", - "29292366812983637982060934", - "20382427737157523791757594" + "54530535394394706805673303", + "10325153165873548608081615", + "40006582605950308788750219" ], "fpReserves": [ - "16700028027039816329104337", - "14715493920307513043676341" + "5457031878862700315126455", + "4487339376450516186925738" ], - "mAssetSupply": "115810648539635153555699840", - "LPTokenSupply": "31084034501601978492537184" + "mAssetSupply": "104605963599606791255574411", + "LPTokenSupply": "9676353744825001633029528" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "5418845462896990748672", - "outputQty0": "5439489866248499434787", - "outputQty": "5379964974915118294482", + "type": "redeem", + "outputIndex": 1, + "inputQty": "166165929922035365969920", + "outputQty0": "170758929665047802768360", + "outputQty": "164923182069656416808865", + "swapFee1": "99699557953221219581", + "swapFee2": "102455357799028681661", "mpReserves": [ - "66194483147676399470455515", - "29292366812983637982060934", - "20387846582620420782506266" + "54530535394394706805673303", + "10160229983803892191272750", + "40006582605950308788750219" ], "fpReserves": [ - "16705467516906064828539124", - "14715493920307513043676341" + "5286272949197652512358095", + "4487339376450516186925738" ], - "mAssetSupply": "115816088029501402055134627", - "LPTokenSupply": "31089414466576893610831666" + "mAssetSupply": "104435307125299542481487712", + "LPTokenSupply": "9510197784858761589181566" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4703149640540852060160", - "outputQty0": "4721057174610937296505", - "outputQty": "4669389670980418397320", + "type": "redeem", + "outputIndex": 1, + "inputQty": "152760557511124582400", + "outputQty0": "156976615404526203797", + "outputQty": "151529651365833817919", + "swapFee1": "91656334506674749", + "swapFee2": "94185969242715722", "mpReserves": [ - "66194483147676399470455515", - "29292366812983637982060934", - "20392549732260961634566426" + "54530535394394706805673303", + "10160078454152526357454831", + "40006582605950308788750219" ], "fpReserves": [ - "16710188574080675765835629", - "14715493920307513043676341" + "5286115972582247986154298", + "4487339376450516186925738" ], - "mAssetSupply": "115820809086676012992431132", - "LPTokenSupply": "31094083856247874029228986" + "mAssetSupply": "104435150242870107197999637", + "LPTokenSupply": "9510045033466883915266640" }, { "type": "mint", "inputIndex": 1, - "inputQty": "208003301952977987698688", - "outputQty0": "208214309513622463624703", - "outputQty": "205931468679834641067393", - "mpReserves": [ - "66194483147676399470455515", - "29500370114936615969759622", - "20392549732260961634566426" - ], - "fpReserves": [ - "16918402883594298229460332", - "14715493920307513043676341" - ], - "mAssetSupply": "116029023396189635456055835", - "LPTokenSupply": "31300015324927708670296379" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "132852004629587378176", - "outputQty0": "132519477345607005049", - "outputQty": "132290196479083223901", - "swapFee": "104851189471661429", + "inputQty": "164444502521603653632", + "outputQty0": "170253489783624872068", + "outputQty": "165581432697329132568", "mpReserves": [ - "66194615999681029057833691", - "29500370114936615969759622", - "20392549732260961634566426" + "54530535394394706805673303", + "10160242898655047961108463", + "40006582605950308788750219" ], "fpReserves": [ - "16918535403071643836465381", - "14715361630111033960452440" + "5286286226072031611026366", + "4487339376450516186925738" ], - "mAssetSupply": "116029155915666981063060884", - "LPTokenSupply": "31300015335412827617462521" + "mAssetSupply": "104435320496359890822871705", + "LPTokenSupply": "9510210614899581244399208" }, { "type": "mint", "inputIndex": 2, - "inputQty": "2002140965922027601920", - "outputQty0": "2009785166887877735692", - "outputQty": "1987710795615640815134", - "mpReserves": [ - "66194615999681029057833691", - "29500370114936615969759622", - "20394551873226883662168346" - ], - "fpReserves": [ - "16920545188238531714201073", - "14715361630111033960452440" - ], - "mAssetSupply": "116031165700833868940796576", - "LPTokenSupply": "31302003046208443258277655" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "377514577728933068800", - "outputQty0": "376569737994842316002", - "outputQty": "372433620875973674125", - "mpReserves": [ - "66194993514258757990902491", - "29500370114936615969759622", - "20394551873226883662168346" - ], - "fpReserves": [ - "16920921757976526556517075", - "14715361630111033960452440" - ], - "mAssetSupply": "116031542270571863783112578", - "LPTokenSupply": "31302375479829319231951780" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "126709761398595567747072", - "outputQty0": "126392176881714469179501", - "outputQty": "125002453313288782356444", + "inputQty": "692283953526994501632", + "outputQty0": "689178174457937521070", + "outputQty": "670265734287436903904", "mpReserves": [ - "66321703275657353558649563", - "29500370114936615969759622", - "20394551873226883662168346" + "54530535394394706805673303", + "10160242898655047961108463", + "40007274889903835783251851" ], "fpReserves": [ - "17047313934858241025696576", - "14715361630111033960452440" + "5286975404246489548547436", + "4487339376450516186925738" ], - "mAssetSupply": "116157934447453578252292079", - "LPTokenSupply": "31427377933142608014308224" + "mAssetSupply": "104436009674534348760392775", + "LPTokenSupply": "9510880880633868681303112" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "9021570869613560856576", - "outputQty0": "9056116975880041120959", - "outputQty": "8956429515673182752678", + "type": "swap_fp_to_mp", + "inputQty": "132349981054979440640", + "outputIndex": 0, + "outputQty": "133496624427680459380", + "swapFee": "0", + "redemptionFee": "79497222117852529", "mpReserves": [ - "66321703275657353558649563", - "29500370114936615969759622", - "20403573444096497223024922" + "54530401897770279125213923", + "10160242898655047961108463", + "40007274889903835783251851" ], "fpReserves": [ - "17056370051834121066817535", - "14715361630111033960452440" + "5286842908876293127664327", + "4487471726431571166366378" ], - "mAssetSupply": "116166990564429458293413038", - "LPTokenSupply": "31436334362658281197060902" + "mAssetSupply": "104435877258661374457362195", + "LPTokenSupply": "9510880880633868681303112" }, { "type": "swap_fp_to_mp", - "inputQty": "749586984832771712", - "outputIndex": 2, - "outputQty": "747167043644167641", + "inputQty": "234455830585851179433984", + "outputIndex": 0, + "outputQty": "236404353621363361474797", "swapFee": "0", - "redemptionFee": "300130731759110", + "redemptionFee": "140782052589943439785", "mpReserves": [ - "66321703275657353558649563", - "29500370114936615969759622", - "20403572696929453578857281" + "54293997544148915763739126", + "10160242898655047961108463", + "40007274889903835783251851" ], "fpReserves": [ - "17056369301507291669041548", - "14715362379698018793224152" + "5052206154559720728021870", + "4721927557017422345800362" ], - "mAssetSupply": "116166989814402759627396161", - "LPTokenSupply": "31436334362658281197060902" + "mAssetSupply": "104201381286397392001159523", + "LPTokenSupply": "9510880880633868681303112" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "225509355276635766784", - "outputQty0": "227882709092295490279", - "outputQty": "228364525135847061899", - "swapFee1": "135305613165981460", - "swapFee2": "91153083636918196", + "inputQty": "333919666556338896896", + "outputQty0": "343030673854590463037", + "outputQty": "345606755210741390779", + "swapFee1": "200351799933803338", + "swapFee2": "205818404312754277", "mpReserves": [ - "66321474911132217711587664", - "29500370114936615969759622", - "20403572696929453578857281" + "54293651937393705022348347", + "10160242898655047961108463", + "40007274889903835783251851" ], "fpReserves": [ - "17056141418798199373551269", - "14715362379698018793224152" + "5051863123885866137558833", + "4721927557017422345800362" ], - "mAssetSupply": "116166762022846750968824078", - "LPTokenSupply": "31436108866833565877892264" + "mAssetSupply": "104201038461541941723450763", + "LPTokenSupply": "9510546981002492335786549" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "21325946190239375556608", - "outputQty0": "21272426396247274227321", - "outputQty": "21234257526001528840217", - "swapFee": "16830565390700006956", + "type": "swap_fp_to_mp", + "inputQty": "1264536594900809154560", + "outputIndex": 0, + "outputQty": "1274601626739483088471", + "swapFee": "0", + "redemptionFee": "759060727248725011", "mpReserves": [ - "66342800857322457087144272", - "29500370114936615969759622", - "20403572696929453578857281" + "54292377335766965539259876", + "10160242898655047961108463", + "40007274889903835783251851" ], "fpReserves": [ - "17077413845194446647778590", - "14694128122172017264383935" + "5050598022673784929206894", + "4723192093612323154954922" ], - "mAssetSupply": "116188034449242998243051399", - "LPTokenSupply": "31436110549890104947892959" + "mAssetSupply": "104199774119390587763823835", + "LPTokenSupply": "9510546981002492335786549" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "34471192358563504", - "outputQty0": "34384662285294158", - "outputQty": "34322652056234653", - "swapFee": "27204666152336", + "inputIndex": 2, + "inputQty": "12542977640096143360", + "outputQty0": "12486537309508189864", + "outputQty": "12471001078517268722", + "swapFee": "9718095324366611", "mpReserves": [ - "66342800891793649445707776", - "29500370114936615969759622", - "20403572696929453578857281" + "54292377335766965539259876", + "10160242898655047961108463", + "40007287432881475879395211" ], "fpReserves": [ - "17077413879579108933072748", - "14694128087849365208149282" + "5050610509211094437396758", + "4723179622611244637686200" ], - "mAssetSupply": "116188034483627660528345557", - "LPTokenSupply": "31436110549892825414508192" + "mAssetSupply": "104199786605927897272013699", + "LPTokenSupply": "9510546981974301868223210" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "45063835102033890770944", - "outputQty0": "45538321334993449733156", - "outputQty": "45634599569076769043369", - "swapFee1": "27038301061220334462", - "swapFee2": "18215328533997379893", + "type": "swap_fp_to_mp", + "inputQty": "36282200936238161920", + "outputIndex": 2, + "outputQty": "36440532162985809117", + "swapFee": "0", + "redemptionFee": "21779002673179353", "mpReserves": [ - "66297166292224572676664407", - "29500370114936615969759622", - "20403572696929453578857281" + "54292377335766965539259876", + "10160242898655047961108463", + "40007250992349312893586094" ], "fpReserves": [ - "17031875558244115483339592", - "14694128087849365208149282" + "5050574210873305805141702", + "4723215904812180875848120" ], - "mAssetSupply": "116142514377621201075992294", - "LPTokenSupply": "31391049418620897645770694" + "mAssetSupply": "104199750329369111312937996", + "LPTokenSupply": "9510546981974301868223210" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "11289449681138061672448", - "outputQty0": "11332600909692384213722", - "outputQty": "11207818979839700607162", - "mpReserves": [ - "66297166292224572676664407", - "29500370114936615969759622", - "20414862146610591640529729" - ], - "fpReserves": [ - "17043208159153807867553314", - "14694128087849365208149282" - ], - "mAssetSupply": "116153846978530893460206016", - "LPTokenSupply": "31402257237600737346377856" - }, - { - "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "394447844254548361216", - "outputQty0": "394844084619165150788", - "outputQty": "394137323706818554056", - "swapFee": "312396863594937996", + "inputQty": "1664853672183689117696", + "outputQty0": "1723326160123062253953", + "outputQty": "1676549597514583776343", "mpReserves": [ - "66297166292224572676664407", - "29500764562780870518120838", - "20414862146610591640529729" + "54292377335766965539259876", + "10161907752327231650226159", + "40007250992349312893586094" ], "fpReserves": [ - "17043603003238427032704102", - "14693733950525658389595226" + "5052297537033428867395655", + "4723215904812180875848120" ], - "mAssetSupply": "116154241822615512625356804", - "LPTokenSupply": "31402257268840423705871655" + "mAssetSupply": "104201473655529234375191949", + "LPTokenSupply": "9512223531571816451999553" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "383083156222269259251712", - "outputQty0": "384515420674001415542531", - "outputQty": "383763024424321818827996", - "swapFee": "304214161153428972185", + "inputQty": "143808583667166008573952", + "outputQty0": "143159209534361406757677", + "outputQty": "139267064043650391337289", "mpReserves": [ - "66297166292224572676664407", - "29500764562780870518120838", - "20797945302832860899781441" + "54292377335766965539259876", + "10161907752327231650226159", + "40151059576016478902160046" ], "fpReserves": [ - "17428118423912428448246633", - "14309970926101336570767230" + "5195456746567790274153332", + "4723215904812180875848120" ], - "mAssetSupply": "116538757243289514040899335", - "LPTokenSupply": "31402287690256539048768873" + "mAssetSupply": "104344632865063595781949626", + "LPTokenSupply": "9651490595615466843336842" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "50973191847336801730560", - "outputQty0": "51517941533693305053479", - "outputQty": "51444332116055743899835", - "swapFee1": "30583915108402081038", - "swapFee2": "20607176613477322021", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1439603857869719", + "outputQty0": "1490286231572668", + "outputQty": "1488151022605631", + "swapFee": "1159763627487", "mpReserves": [ - "66297166292224572676664407", - "29449320230664814774221003", - "20797945302832860899781441" + "54292377335766965539259876", + "10161907753766835508095878", + "40151059576016478902160046" ], "fpReserves": [ - "17376600482378735143193154", - "14309970926101336570767230" + "5195456748058076505726000", + "4723215903324029853242489" ], - "mAssetSupply": "116487259908932434213167877", - "LPTokenSupply": "31351317556800713087246416" + "mAssetSupply": "104344632866553882013522294", + "LPTokenSupply": "9651490595615582819699590" }, { "type": "swap_fp_to_mp", - "inputQty": "891889340853907619840", - "outputIndex": 0, - "outputQty": "894906683666176585829", - "swapFee": "0", - "redemptionFee": "357221824724892877", - "mpReserves": [ - "66296271385540906500078578", - "29449320230664814774221003", - "20797945302832860899781441" - ], - "fpReserves": [ - "17375707427816922911000380", - "14310862815442190478387070" - ], - "mAssetSupply": "116486367211592446705867980", - "LPTokenSupply": "31351317556800713087246416" - }, - { - "type": "redeem", + "inputQty": "62896414455600412360704", "outputIndex": 1, - "inputQty": "22402773070462358388736", - "outputQty0": "22642051619682644928216", - "outputQty": "22609568418039082610288", - "swapFee1": "13441663842277415033", - "swapFee2": "9056820647873057971", + "outputQty": "60741917367288005516933", + "swapFee": "0", + "redemptionFee": "37758553433286380927", "mpReserves": [ - "66296271385540906500078578", - "29426710662246775691610715", - "20797945302832860899781441" + "54292377335766965539259876", + "10101165836399547502578945", + "40151059576016478902160046" ], "fpReserves": [ - "17353065376197240266072164", - "14310862815442190478387070" + "5132525825669265870846167", + "4786112317779630265603193" ], - "mAssetSupply": "116463734216793411933997735", - "LPTokenSupply": "31328916127896634956599183" + "mAssetSupply": "104281739702718504665023388", + "LPTokenSupply": "9651490595615582819699590" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "508914017715220512768", - "outputQty0": "507657005287118071287", - "outputQty": "506593704973668972384", - "swapFee": "401593263517267322", + "inputIndex": 1, + "inputQty": "193307906834362761216", + "outputQty0": "200194914042214281010", + "outputQty": "199941967522910398210", + "swapFee": "155807427393872963", "mpReserves": [ - "66296780299558621720591346", - "29426710662246775691610715", - "20797945302832860899781441" + "54292377335766965539259876", + "10101359144306381865340161", + "40151059576016478902160046" ], "fpReserves": [ - "17353573033202527384143451", - "14310356221737216809414686" + "5132726020583308085127177", + "4785912375812107355204983" ], - "mAssetSupply": "116464241873798699052069022", - "LPTokenSupply": "31328916168055961308325915" + "mAssetSupply": "104281939897632546879304398", + "LPTokenSupply": "9651490611196325559086886" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "23298188802842796032", - "outputQty0": "23322371260349163053", - "outputQty": "23062090873961578159", + "inputIndex": 0, + "inputQty": "967496551078484901888", + "outputQty0": "959669444355744459888", + "outputQty": "933612321069385729845", "mpReserves": [ - "66296780299558621720591346", - "29426733960435578534406747", - "20797945302832860899781441" + "54293344832318044024161764", + "10101359144306381865340161", + "40151059576016478902160046" ], "fpReserves": [ - "17353596355573787733306504", - "14310356221737216809414686" + "5133685690027663829587065", + "4785912375812107355204983" ], - "mAssetSupply": "116464265196169959401232075", - "LPTokenSupply": "31328939230146835269904074" + "mAssetSupply": "104282899567076902623764286", + "LPTokenSupply": "9652424223517394944816731" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "41614446363451", - "outputQty0": "41657640183689", - "outputQty": "41570377514262", - "swapFee": "32954188774", + "inputIndex": 0, + "inputQty": "166667913098733184", + "outputQty0": "165319543545444685", + "outputQty": "165110411972504272", + "swapFee": "128664566556308", "mpReserves": [ - "66296780299558621720591346", - "29426733960477192980770198", - "20797945302832860899781441" + "54293344998985957122894948", + "10101359144306381865340161", + "40151059576016478902160046" ], "fpReserves": [ - "17353596355615445373490193", - "14310356221695646431900424" + "5133685855347207375031750", + "4785912210701695382700711" ], - "mAssetSupply": "116464265196211617041415764", - "LPTokenSupply": "31328939230146838565322951" + "mAssetSupply": "104282899732396446169208971", + "LPTokenSupply": "9652424223530261401472361" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "27782857764495100477440", - "outputQty0": "27811633530053677603763", - "outputQty": "27501183361212853716804", + "inputQty": "19191264114885699567616", + "outputQty0": "19873708064445164427423", + "outputQty": "19848036921406878078140", + "swapFee": "15467174004816623074", "mpReserves": [ - "66296780299558621720591346", - "29454516818241688081247638", - "20797945302832860899781441" + "54293344998985957122894948", + "10120550408421267564907777", + "40151059576016478902160046" ], "fpReserves": [ - "17381407989145499051093956", - "14310356221695646431900424" + "5153559563411652539459173", + "4766064173780288504622571" ], - "mAssetSupply": "116492076829741670719019527", - "LPTokenSupply": "31356440413508051419039755" + "mAssetSupply": "104302773440460891333636394", + "LPTokenSupply": "9652425770247661883134668" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "20790354010129928192", - "outputQty0": "20866373846844874422", - "outputQty": "20633399037809193658", + "inputQty": "30378414353509938888704", + "outputQty0": "30239833207563644174918", + "outputQty": "30198733423332241158745", + "swapFee": "23534136572290928822", "mpReserves": [ - "66296780299558621720591346", - "29454516818241688081247638", - "20797966093186871029709633" + "54293344998985957122894948", + "10120550408421267564907777", + "40181437990369988841048750" ], "fpReserves": [ - "17381428855519345895968378", - "14310356221695646431900424" + "5183799396619216183634091", + "4735865440356956263463826" ], - "mAssetSupply": "116492097696115517563893949", - "LPTokenSupply": "31356461046907089228233413" + "mAssetSupply": "104333013273668454977811312", + "LPTokenSupply": "9652428123661319112227550" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "116508546964663054630912", - "outputQty0": "117752115169122574064708", - "outputQty": "117273381507878143820004", - "swapFee1": "69905128178797832778", - "swapFee2": "47100846067649029625", - "mpReserves": [ - "66296780299558621720591346", - "29454516818241688081247638", - "20680692711678992885889629" - ], - "fpReserves": [ - "17263676740350223321903670", - "14310356221695646431900424" - ], - "mAssetSupply": "116374392681792462638858866", - "LPTokenSupply": "31239959490455244053385778" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "697873692575771937210368", - "outputQty0": "698552310197355205152158", - "outputQty": "690723039761283243304955", - "mpReserves": [ - "66296780299558621720591346", - "30152390510817460018458006", - "20680692711678992885889629" - ], - "fpReserves": [ - "17962229050547578527055828", - "14310356221695646431900424" - ], - "mAssetSupply": "117072944991989817844011024", - "LPTokenSupply": "31930682530216527296690733" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "132807055577297190912", - "outputQty0": "132929092310962136637", - "outputQty": "131431133661325476211", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "591089663889787453440", + "outputQty0": "586318088096381549549", + "outputQty": "585496860795883814413", + "swapFee": "456287158305854715", "mpReserves": [ - "66296780299558621720591346", - "30152523317873037315648918", - "20680692711678992885889629" + "54293936088649846910348388", + "10120550408421267564907777", + "40181437990369988841048750" ], "fpReserves": [ - "17962361979639889489192465", - "14310356221695646431900424" + "5184385714707312565183640", + "4735279943496160379649413" ], - "mAssetSupply": "117073077921082128806147661", - "LPTokenSupply": "31930813961350188622166944" + "mAssetSupply": "104333599591756551359360861", + "LPTokenSupply": "9652428169290034942813021" }, { "type": "swap_fp_to_mp", - "inputQty": "362669478129570873344", + "inputQty": "468564939537472", "outputIndex": 0, - "outputQty": "363971932745549451281", + "outputQty": "472379153139385", "swapFee": "0", - "redemptionFee": "145290999050119088", + "redemptionFee": "281308289828", "mpReserves": [ - "66296416327625876171140065", - "30152523317873037315648918", - "20680692711678992885889629" + "54293936088177467757209003", + "10120550408421267564907777", + "40181437990369988841048750" ], "fpReserves": [ - "17961998752142264191470496", - "14310718891173776002773768" + "5184385714238465415470124", + "4735279943964725319186885" ], - "mAssetSupply": "117072714838875502558544780", - "LPTokenSupply": "31930813961350188622166944" + "mAssetSupply": "104333599591287985517937173", + "LPTokenSupply": "9652428169290034942813021" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "354850998302747259830272", - "outputQty0": "355167681340815316918139", - "outputQty": "354282191015920274237773", - "swapFee": "280923679662433253053", + "inputQty": "425682962641148323037184", + "outputQty0": "440193278668927495134950", + "outputQty": "439308866653463341547298", + "swapFee": "342524141235895406343", "mpReserves": [ - "66296416327625876171140065", - "30507374316175784575479190", - "20680692711678992885889629" + "54293936088177467757209003", + "10546233371062415887944961", + "40181437990369988841048750" ], "fpReserves": [ - "18317166433483079508388635", - "13956436700157855728535995" + "5624578992907392910605074", + "4295971077311261977639587" ], - "mAssetSupply": "117427882520216317875462919", - "LPTokenSupply": "31930842053718154865492249" + "mAssetSupply": "104773792869956913013072123", + "LPTokenSupply": "9652462421704158532353655" }, { "type": "swap_fp_to_mp", - "inputQty": "422300216083477430272", - "outputIndex": 1, - "outputQty": "422549471540348732948", + "inputQty": "74884903730919635943424", + "outputIndex": 0, + "outputQty": "75553059499739303652431", "swapFee": "0", - "redemptionFee": "169233901455031709", + "redemptionFee": "45008663075473339374", "mpReserves": [ - "66296416327625876171140065", - "30506951766704244226746242", - "20680692711678992885889629" + "54218383028677728453556572", + "10546233371062415887944961", + "40181437990369988841048750" ], "fpReserves": [ - "18316743348729441929116083", - "13956859000373939205966267" + "5549564554448270678315054", + "4370855981042181613583011" ], - "mAssetSupply": "117427459604696581751222076", - "LPTokenSupply": "31930842053718154865492249" + "mAssetSupply": "104698823440160866254121477", + "LPTokenSupply": "9652462421704158532353655" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "2435915320711063797760", - "outputQty0": "2445084697586513246660", - "outputQty": "2438596019266519411712", - "swapFee": "1933739618758851391", - "mpReserves": [ - "66296416327625876171140065", - "30506951766704244226746242", - "20683128626999703949687389" - ], - "fpReserves": [ - "18319188433427028442362743", - "13954420404354672686554555" - ], - "mAssetSupply": "117429904689394168264468736", - "LPTokenSupply": "31930842247092116741377388" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "928181914056743321600", - "outputIndex": 1, - "outputQty": "928731034518116696008", - "swapFee": "0", - "redemptionFee": "371963106194512402", - "mpReserves": [ - "66296416327625876171140065", - "30506023035669726110050234", - "20683128626999703949687389" - ], - "fpReserves": [ - "18318258525661542161355260", - "13955348586268729429876155" - ], - "mAssetSupply": "117428975153591788177973655", - "LPTokenSupply": "31930842247092116741377388" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "37417261896810874535936", - "outputQty0": "37826489172905739118289", - "outputQty": "37778515574695459743975", - "swapFee1": "22450357138086524721", - "swapFee2": "15130595669162295647", + "inputQty": "304888548431079669760", + "outputQty0": "303574067953862794455", + "outputQty": "295163594402846004155", "mpReserves": [ - "66296416327625876171140065", - "30468244520095030650306259", - "20683128626999703949687389" + "54218383028677728453556572", + "10546233371062415887944961", + "40181742878918419920718510" ], "fpReserves": [ - "18280432036488636422236971", - "13955348586268729429876155" + "5549868128516224541109509", + "4370855981042181613583011" ], - "mAssetSupply": "117391163795014551601151013", - "LPTokenSupply": "31893427230231019675493924" + "mAssetSupply": "104699127014228820116915932", + "LPTokenSupply": "9652757585298561378357810" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2057860093387654299648", - "outputQty0": "2052862570722447967440", - "outputQty": "2047442921422238604991", - "swapFee": "1623552113876260225", + "inputIndex": 1, + "inputQty": "69621918887768414486528", + "outputQty0": "71880920206816749173041", + "outputQty": "71699695485287457920208", + "swapFee": "55910442928352685081", "mpReserves": [ - "66298474187719263825439713", - "30468244520095030650306259", - "20683128626999703949687389" + "54218383028677728453556572", + "10615855289950184302431489", + "40181742878918419920718510" ], "fpReserves": [ - "18282484899059358870204411", - "13953301143347307191271164" + "5621749048723041290282550", + "4299156285556894155662803" ], - "mAssetSupply": "117393216657585274049118453", - "LPTokenSupply": "31893427392586231063119946" + "mAssetSupply": "104771007934435636866088973", + "LPTokenSupply": "9652763176342854213626318" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "6664803688627910475776", - "outputQty0": "6737680020925679333354", - "outputQty": "6751379832613030625477", - "swapFee1": "3998882213176746285", - "swapFee2": "2695072008370271733", + "type": "mint", + "inputIndex": 1, + "inputQty": "11528661473269550940160", + "outputQty0": "11899883093011115504178", + "outputQty": "11569033563647736467836", "mpReserves": [ - "66291722807886650794814236", - "30468244520095030650306259", - "20683128626999703949687389" + "54218383028677728453556572", + "10627383951423453853371649", + "40181742878918419920718510" ], "fpReserves": [ - "18275747219038433190871057", - "13953301143347307191271164" + "5633648931816052405786728", + "4299156285556894155662803" ], - "mAssetSupply": "117386481672636356740056832", - "LPTokenSupply": "31886762988785824470318798" + "mAssetSupply": "104782907817528647981593151", + "LPTokenSupply": "9664332209906501950094154" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2076683477352819", - "outputQty0": "2078494121164247", - "outputQty": "2054779987183158", + "inputQty": "98969899997327010037760", + "outputQty0": "102124006339690183608223", + "outputQty": "99281543896436836383189", "mpReserves": [ - "66291722807886650794814236", - "30468244522171714127659078", - "20683128626999703949687389" + "54218383028677728453556572", + "10726353851420780863409409", + "40181742878918419920718510" ], "fpReserves": [ - "18275747221116927312035304", - "13953301143347307191271164" + "5735772938155742589394951", + "4299156285556894155662803" ], - "mAssetSupply": "117386481674714850861221079", - "LPTokenSupply": "31886762990840604457501956" + "mAssetSupply": "104885031823868338165201374", + "LPTokenSupply": "9763613753802938786477343" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "9387049149540088152064", - "outputQty0": "9395227184218443073563", - "outputQty": "9370399376519710851256", - "swapFee": "7430421494901855609", + "inputQty": "17473545263934392320", + "outputQty0": "18025293974454695628", + "outputQty": "17523095561472840523", "mpReserves": [ - "66291722807886650794814236", - "30477631571321254215811142", - "20683128626999703949687389" + "54218383028677728453556572", + "10726371324966044797801729", + "40181742878918419920718510" ], "fpReserves": [ - "18285142448301145755108867", - "13943930743970787480419908" + "5735790963449717044090579", + "4299156285556894155662803" ], - "mAssetSupply": "117395876901899069304294642", - "LPTokenSupply": "31886763733882753947687516" + "mAssetSupply": "104885049849162312619897002", + "LPTokenSupply": "9763631276898500259317866" }, { "type": "swap_fp_to_mp", - "inputQty": "11356950561866624532480", + "inputQty": "191208494697069171179520", "outputIndex": 1, - "outputQty": "11363469254317434221262", + "outputQty": "185459428107680903430613", "swapFee": "0", - "redemptionFee": "4551168787666102444", + "redemptionFee": "114919869560421341137", "mpReserves": [ - "66291722807886650794814236", - "30466268102066936781589880", - "20683128626999703949687389" + "54218383028677728453556572", + "10540911896858363894371116", + "40181742878918419920718510" ], "fpReserves": [ - "18273764526331980498997181", - "13955287694532654104952388" + "5544257847515681475528295", + "4490364780253963326842323" ], - "mAssetSupply": "117384503531098691714285400", - "LPTokenSupply": "31886763733882753947687516" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2056686990558201", - "outputQty0": "2051692764526110", - "outputQty": "2028285584136508", - "mpReserves": [ - "66291722809943337785372437", - "30466268102066936781589880", - "20683128626999703949687389" - ], - "fpReserves": [ - "18273764528383673263523291", - "13955287694532654104952388" - ], - "mAssetSupply": "117384503533150384478811510", - "LPTokenSupply": "31886763735911039531824024" + "mAssetSupply": "104693631653097837472675855", + "LPTokenSupply": "9763631276898500259317866" }, { "type": "mint", "inputIndex": 1, - "inputQty": "60517664309940032", - "outputQty0": "60570446719973855", - "outputQty": "59879415685587813", - "mpReserves": [ - "66291722809943337785372437", - "30466268162584601091529912", - "20683128626999703949687389" - ], - "fpReserves": [ - "18273764588954119983497146", - "13955287694532654104952388" - ], - "mAssetSupply": "117384503593720831198785365", - "LPTokenSupply": "31886763795790455217411837" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "110469835462334885134336", - "outputIndex": 0, - "outputQty": "110892353013921762645255", - "swapFee": "0", - "redemptionFee": "44267072177246410134", + "inputQty": "165703034371364", + "outputQty0": "171120344754052", + "outputQty": "166393174868580", "mpReserves": [ - "66180830456929416022727182", - "30466268162584601091529912", - "20683128626999703949687389" + "54218383028677728453556572", + "10540911897024066928742480", + "40181742878918419920718510" ], "fpReserves": [ - "18163096908511003958161247", - "14065757529994988990086724" + "5544257847686801820282347", + "4490364780253963326842323" ], - "mAssetSupply": "117273880180349892419859600", - "LPTokenSupply": "31886763795790455217411837" + "mAssetSupply": "104693631653268957817429907", + "LPTokenSupply": "9763631277064893434186446" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "183037931589171069059072", - "outputQty0": "185028115906819142783307", - "outputQty": "184791434781138182369379", - "swapFee1": "109822758953502641435", - "swapFee2": "74011246362727657113", + "inputQty": "245856178459185329995776", + "outputQty0": "252670832515996371002217", + "outputQty": "244342289583745723168022", + "swapFee1": "147513707075511197997", + "swapFee2": "151602499509597822601", "mpReserves": [ - "66180830456929416022727182", - "30281476727803462909160533", - "20683128626999703949687389" + "54218383028677728453556572", + "10296569607440321205574458", + "40181742878918419920718510" ], "fpReserves": [ - "17978068792604184815377940", - "14065757529994988990086724" + "5291587015170805449280130", + "4490364780253963326842323" ], - "mAssetSupply": "117088926075689436004733406", - "LPTokenSupply": "31703736846477179498616908" + "mAssetSupply": "104441112423252471044250291", + "LPTokenSupply": "9517789849976415655310469" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "30911691825564192768", - "outputQty0": "31027262899223487462", - "outputQty": "30950833228399941210", - "swapFee": "24540408504958119", + "inputQty": "9855241978112678821888", + "outputQty0": "9811272666569993211081", + "outputQty": "9792515765254753946467", + "swapFee": "7633178284680256545", "mpReserves": [ - "66180830456929416022727182", - "30281476727803462909160533", - "20683159538691529513880157" + "54218383028677728453556572", + "10296569607440321205574458", + "40191598120896532599540398" ], "fpReserves": [ - "17978099819867084038865402", - "14065726579161760590145514" + "5301398287837375442491211", + "4480572264488708572895856" ], - "mAssetSupply": "117088957102952335228220868", - "LPTokenSupply": "31703736848931220349112719" + "mAssetSupply": "104450923695919041037461372", + "LPTokenSupply": "9517790613294244123336123" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "3715321195957723856896", - "outputQty0": "3718641440154918845000", - "outputQty": "3709475013200680951694", - "swapFee": "2941185944824039668", + "inputQty": "2384084726712968413184", + "outputQty0": "2465747719801738753713", + "outputQty": "2397915302368099620768", "mpReserves": [ - "66180830456929416022727182", - "30285192048999420633017429", - "20683159538691529513880157" + "54218383028677728453556572", + "10298953692167034173987642", + "40191598120896532599540398" ], "fpReserves": [ - "17981818461307238957710402", - "14062017104148559909193820" + "5303864035557177181244924", + "4480572264488708572895856" ], - "mAssetSupply": "117092675744392490147065868", - "LPTokenSupply": "31703737143049814831516685" + "mAssetSupply": "104453389443638842776215085", + "LPTokenSupply": "9520188528596612222956891" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "4193222629443501555712", - "outputQty0": "4238766086068209817889", - "outputQty": "4221283675449555900077", - "swapFee1": "2515933577666100933", - "swapFee2": "1695506434427283927", + "outputIndex": 0, + "inputQty": "14172967560133943296", + "outputQty0": "14565159826944833446", + "outputQty": "14672498627386871808", + "swapFee1": "8503780536080365", + "swapFee2": "8739095896166900", "mpReserves": [ - "66180830456929416022727182", - "30285192048999420633017429", - "20678938255016079957980080" + "54218368356179101066684764", + "10298953692167034173987642", + "40191598120896532599540398" ], "fpReserves": [ - "17977579695221170747892513", - "14062017104148559909193820" + "5303849470397350236411478", + "4480572264488708572895856" ], - "mAssetSupply": "117088438673812856364531906", - "LPTokenSupply": "31699544172013729096571066" + "mAssetSupply": "104453374887218111727548539", + "LPTokenSupply": "9520174356479430142621631" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "15212768023050658", - "outputQty0": "15226355222499435", - "outputQty": "15188822411269755", - "swapFee": "12042977881043", + "type": "swap_fp_to_mp", + "inputQty": "141041803280448126976", + "outputIndex": 0, + "outputQty": "142241870208654868296", + "swapFee": "0", + "redemptionFee": "84720768753595716", "mpReserves": [ - "66180830456929416022727182", - "30285192064212188656068087", - "20678938255016079957980080" + "54218226114308892411816468", + "10298953692167034173987642", + "40191598120896532599540398" ], "fpReserves": [ - "17977579710447525970391948", - "14062017088959737497924065" + "5303708269116094243550781", + "4480713306291989021022832" ], - "mAssetSupply": "117088438689039211587031341", - "LPTokenSupply": "31699544172014933394359170" + "mAssetSupply": "104453233770657624488283558", + "LPTokenSupply": "9520174356479430142621631" }, { "type": "swap_fp_to_mp", - "inputQty": "310819699493537767751680", - "outputIndex": 2, - "outputQty": "309990759908745562007576", + "inputQty": "597339460274416", + "outputIndex": 1, + "outputQty": "577866687580875", "swapFee": "0", - "redemptionFee": "124518062473014062138", + "redemptionFee": "358808856826", "mpReserves": [ - "66180830456929416022727182", - "30285192064212188656068087", - "20368947495107334395972504" + "54218226114308892411816468", + "10298953691589167486406767", + "40191598120896532599540398" ], "fpReserves": [ - "17666284554264990815045992", - "14372836788453275265675745" + "5303708268518079482173958", + "4480713306889328481297248" ], - "mAssetSupply": "116777268050919149445747523", - "LPTokenSupply": "31699544172014933394359170" + "mAssetSupply": "104453233770059968535763561", + "LPTokenSupply": "9520174356479430142621631" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "269631095817741854048256", - "outputQty0": "272519362649715898963382", - "outputQty": "273081217783155472971783", - "swapFee1": "161778657490645112428", - "swapFee2": "109007745059886359585", + "type": "mint", + "inputIndex": 1, + "inputQty": "284100685407316901888", + "outputQty0": "293829554717555632315", + "outputQty": "285746160482257200284", "mpReserves": [ - "65907749239146260549755399", - "30285192064212188656068087", - "20368947495107334395972504" + "54218226114308892411816468", + "10299237792274574803308655", + "40191598120896532599540398" ], "fpReserves": [ - "17393765191615274916082610", - "14372836788453275265675745" + "5304002098072797037806273", + "4480713306889328481297248" ], - "mAssetSupply": "116504857696014493433143726", - "LPTokenSupply": "31429929254062940604822156" + "mAssetSupply": "104453527599614686091395876", + "LPTokenSupply": "9520460102639912399821915" }, { - "type": "swap_fp_to_mp", - "inputQty": "12404927299003564949504", - "outputIndex": 0, - "outputQty": "12446287234391715715330", - "swapFee": "0", - "redemptionFee": "4968311471205486124", + "type": "mint", + "inputIndex": 0, + "inputQty": "20828899598145970176", + "outputQty0": "20664122155109209218", + "outputQty": "20095640212789870726", "mpReserves": [ - "65895302951911868834040069", - "30285192064212188656068087", - "20368947495107334395972504" + "54218246943208490557786644", + "10299237792274574803308655", + "40191598120896532599540398" ], "fpReserves": [ - "17381344412937261200771968", - "14385241715752278830625249" + "5304022762194952147015491", + "4480713306889328481297248" ], - "mAssetSupply": "116492441885647950923319208", - "LPTokenSupply": "31429929254062940604822156" + "mAssetSupply": "104453548263736841200605094", + "LPTokenSupply": "9520480198280125189692641" }, { "type": "swap_fp_to_mp", - "inputQty": "614233248647754786275328", + "inputQty": "25464174864916709113856", "outputIndex": 0, - "outputQty": "616102710317452172062563", + "outputQty": "25679851837280112288872", "swapFee": "0", - "redemptionFee": "245940325641410251433", - "mpReserves": [ - "65279200241594416661977506", - "30285192064212188656068087", - "20368947495107334395972504" - ], - "fpReserves": [ - "16766493598833735572187086", - "14999474964400033616900577" - ], - "mAssetSupply": "115877837011870066704985759", - "LPTokenSupply": "31429929254062940604822156" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "204398824150042902528", - "outputQty0": "204568559630576044198", - "outputQty": "204253415193512106799", - "swapFee": "161866925621380284", + "redemptionFee": "15295234539612023456", "mpReserves": [ - "65279200241594416661977506", - "30285396463036338698970615", - "20368947495107334395972504" + "54192567091371210445497772", + "10299237792274574803308655", + "40191598120896532599540398" ], "fpReserves": [ - "16766698167393366148231284", - "14999270710984840104793778" + "5278530704628932107921791", + "4506177481754245190411104" ], - "mAssetSupply": "115878041580429697281029957", - "LPTokenSupply": "31429929270249633166960184" + "mAssetSupply": "104428071501405360773534850", + "LPTokenSupply": "9520480198280125189692641" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "55597041783346194022400", - "outputQty0": "56177123837734269005997", - "outputQty": "56290448602225335281470", - "swapFee1": "33358225070007716413", - "swapFee2": "22470849535093707602", + "outputIndex": 1, + "inputQty": "11415282498516589477888", + "outputQty0": "11730736706654287866263", + "outputQty": "11335345004733061903546", + "swapFee1": "6849169499109953686", + "swapFee2": "7038442023992572719", "mpReserves": [ - "65222909792992191326696036", - "30285396463036338698970615", - "20368947495107334395972504" + "54192567091371210445497772", + "10287902447269841741405109", + "40191598120896532599540398" ], "fpReserves": [ - "16710521043555631879225287", - "14999270710984840104793778" + "5266799967922277820055528", + "4506177481754245190411104" ], - "mAssetSupply": "115821886927441498105731562", - "LPTokenSupply": "31374335564288793973709425" + "mAssetSupply": "104416347803140730478241306", + "LPTokenSupply": "9509065600698558511210121" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "156140785859574944", - "outputQty0": "157769218789582434", - "outputQty": "157113644057678222", - "swapFee1": "93684471515744", - "swapFee2": "63107687515832", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "144242491827553019363328", + "outputQty0": "143098774287924593902945", + "outputQty": "142806221880143443507377", + "swapFee": "111329300196683148732", "mpReserves": [ - "65222909792992191326696036", - "30285396463036338698970615", - "20368947337993690338294282" + "54336809583198763464861100", + "10287902447269841741405109", + "40191598120896532599540398" ], "fpReserves": [ - "16710520885786413089642853", - "14999270710984840104793778" + "5409898742210202413958473", + "4363371259874101746903727" ], - "mAssetSupply": "115821886769735387003664960", - "LPTokenSupply": "31374335408157376561286055" + "mAssetSupply": "104559446577428655072144251", + "LPTokenSupply": "9509076733628578179524994" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "36488708803584896", - "outputQty0": "36518908055045372", - "outputQty": "36120288809299571", + "inputQty": "36455891106554961920", + "outputQty0": "37710488322010850609", + "outputQty": "37625679634303395100", + "swapFee": "29333853554873896", "mpReserves": [ - "65222909792992191326696036", - "30285396499525047502555511", - "20368947337993690338294282" + "54336809583198763464861100", + "10287938903160948296367029", + "40191598120896532599540398" ], "fpReserves": [ - "16710520922305321144688225", - "14999270710984840104793778" + "5409936452698524424809082", + "4363333634194467443508627" ], - "mAssetSupply": "115821886806254295058710332", - "LPTokenSupply": "31374335444277665370585626" + "mAssetSupply": "104559484287916977082994860", + "LPTokenSupply": "9509076736561963535012383" }, { "type": "swap_fp_to_mp", - "inputQty": "578584081683198720", - "outputIndex": 1, - "outputQty": "578289979653410418", + "inputQty": "65140041088802258944", + "outputIndex": 0, + "outputQty": "65717493834632390177", "swapFee": "0", - "redemptionFee": "231600076598229", + "redemptionFee": "39140781207386225", "mpReserves": [ - "65222909792992191326696036", - "30285395921235067849145093", - "20368947337993690338294282" + "54336743865704928832470923", + "10287938903160948296367029", + "40191598120896532599540398" ], "fpReserves": [ - "16710520343305129649115453", - "14999271289568921787992498" + "5409871218063178781099792", + "4363398774235556245767571" ], - "mAssetSupply": "115821886227485703639735789", - "LPTokenSupply": "31374335444277665370585626" + "mAssetSupply": "104559419092422412646671795", + "LPTokenSupply": "9509076736561963535012383" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "2828812146563441292738560", - "outputQty0": "2857470558903488897179591", - "outputQty": "2853324867436315951157622", - "swapFee1": "1697287287938064775643", - "swapFee2": "1142988223561395558871", + "outputIndex": 2, + "inputQty": "30946715321104267739136", + "outputQty0": "31807746733989548539745", + "outputQty": "31931000004801079985361", + "swapFee1": "18568029192662560643", + "swapFee2": "19084648040393729123", "mpReserves": [ - "65222909792992191326696036", - "27432071053798751897987471", - "20368947337993690338294282" + "54336743865704928832470923", + "10287938903160948296367029", + "40159667120891731519555037" ], "fpReserves": [ - "13853049784401640751935862", - "14999271289568921787992498" + "5378063471329189232560047", + "4363398774235556245767571" ], - "mAssetSupply": "112965558656805776138115069", - "LPTokenSupply": "28545693026443017884324630" + "mAssetSupply": "104527630430336463491861173", + "LPTokenSupply": "9478131878043778533529311" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "13917357362341763072", - "outputQty0": "13881632610101341556", - "outputQty": "13877850551818478085", - "swapFee": "10990299415568394", - "mpReserves": [ - "65222923710349553668459108", - "27432071053798751897987471", - "20368947337993690338294282" - ], - "fpReserves": [ - "13853063666034250853277418", - "14999257411718369969514413" - ], - "mAssetSupply": "112965572538438386239456625", - "LPTokenSupply": "28545693027542047825881469" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "370208078921177656983552", - "outputQty0": "370675361402753505504988", - "outputQty": "370510937548690098354256", - "swapFee": "293455891585873006998", + "inputQty": "124682780910982561792", + "outputQty0": "123692193852489452796", + "outputQty": "123419103056025256501", + "swapFee": "96218041226486642", "mpReserves": [ - "65222923710349553668459108", - "27802279132719929554971023", - "20368947337993690338294282" + "54336868548485839815032715", + "10287938903160948296367029", + "40159667120891731519555037" ], "fpReserves": [ - "14223739027437004358782406", - "14628746474169679871160157" + "5378187163523041722012843", + "4363275355132500220511070" ], - "mAssetSupply": "113336247899841139744961613", - "LPTokenSupply": "28545722373131206413182168" + "mAssetSupply": "104527754122530315981313969", + "LPTokenSupply": "9478131887665582656177975" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "86917708569856698220544", - "outputQty0": "87231534405524534562303", - "outputQty": "87174468840512170279635", - "swapFee": "69049064204057200892", + "inputQty": "28737233275350323200", + "outputQty0": "28609238528896985600", + "outputQty": "27818292483730445278", "mpReserves": [ - "65222923710349553668459108", - "27802279132719929554971023", - "20455865046563547036514826" + "54336868548485839815032715", + "10287938903160948296367029", + "40159695858125006869878237" ], "fpReserves": [ - "14310970561842528893344709", - "14541572005329167700880522" + "5378215772761570618998443", + "4363275355132500220511070" ], - "mAssetSupply": "113423479434246664279523916", - "LPTokenSupply": "28545729278037626818902257" + "mAssetSupply": "104527782731768844878299569", + "LPTokenSupply": "9478159705958066386623253" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "39751701260436577976320", - "outputQty0": "39894188232935639320237", - "outputQty": "39471882548296388064250", + "type": "swap_fp_to_mp", + "inputQty": "67522080166034032", + "outputIndex": 1, + "outputQty": "65329805547586350", + "swapFee": "0", + "redemptionFee": "40570418661156", "mpReserves": [ - "65222923710349553668459108", - "27802279132719929554971023", - "20495616747823983614491146" + "54336868548485839815032715", + "10287938837831142748780679", + "40159695858125006869878237" ], "fpReserves": [ - "14350864750075464532664946", - "14541572005329167700880522" + "5378215705144206183737447", + "4363275422654580386545102" ], - "mAssetSupply": "113463373622479599918844153", - "LPTokenSupply": "28585201160585923206966507" + "mAssetSupply": "104527782664192050861699729", + "LPTokenSupply": "9478159705958066386623253" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "1232077714062244052992", - "outputQty0": "1244518028301397204382", - "outputQty": "1242484828515140416934", - "swapFee1": "739246628437346431", - "swapFee2": "497807211320558881", + "outputIndex": 0, + "inputQty": "553307098346360", + "outputQty0": "568697632289384", + "outputQty": "572908093519952", + "swapFee1": "331984259007", + "swapFee2": "341218579373", "mpReserves": [ - "65222923710349553668459108", - "27801036647891414414554089", - "20495616747823983614491146" + "54336868547912931721512763", + "10287938837831142748780679", + "40159695858125006869878237" ], "fpReserves": [ - "14349620232047163135460564", - "14541572005329167700880522" + "5378215704575508551448063", + "4363275422654580386545102" ], - "mAssetSupply": "113462129602258509842198652", - "LPTokenSupply": "28583969156796523806648158" + "mAssetSupply": "104527782663623694447989718", + "LPTokenSupply": "9478159705404792486702793" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1474305015979255", - "outputQty0": "1476127043154231", - "outputQty": "1475075952971735", - "swapFee": "1168395918851", + "inputIndex": 0, + "inputQty": "1511071607419861204992", + "outputQty0": "1499066119862182255659", + "outputQty": "1495752872047004204018", + "swapFee": "1166097201590236744", "mpReserves": [ - "65222923710349553668459108", - "27801036649365719430533344", - "20495616747823983614491146" + "54338379619520351582717755", + "10287938837831142748780679", + "40159695858125006869878237" ], "fpReserves": [ - "14349620233523290178614795", - "14541572003854091747908787" + "5379714770695370733703722", + "4361779669782533382341084" ], - "mAssetSupply": "113462129603734636885352883", - "LPTokenSupply": "28583969156796640646240043" + "mAssetSupply": "104529281729743556630245377", + "LPTokenSupply": "9478159822014512645726467" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10437053232247056891904", - "outputQty0": "10449942148224706847816", - "outputQty": "10339265003343618885633", + "type": "redeem", + "outputIndex": 1, + "inputQty": "399723252019567919104", + "outputQty0": "410842564784291768795", + "outputQty": "396942400516124912980", + "swapFee1": "239833951211740751", + "swapFee2": "246505538870575061", "mpReserves": [ - "65222923710349553668459108", - "27811473702597966487425248", - "20495616747823983614491146" + "54338379619520351582717755", + "10287541895430626623867699", + "40159695858125006869878237" ], "fpReserves": [ - "14360070175671514885462611", - "14541572003854091747908787" + "5379303928130586441934927", + "4361779669782533382341084" ], - "mAssetSupply": "113472579545882861592200699", - "LPTokenSupply": "28594308421799984265125676" + "mAssetSupply": "104528871133684311209051643", + "LPTokenSupply": "9477760122745888198981438" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "1125812828095030400", - "outputQty0": "1122963701572675523", - "outputQty": "1122158673024882967", - "swapFee": "888855080698127", + "inputQty": "156560868497322361749504", + "outputQty0": "155314539556363391378442", + "outputQty": "151013593403240042553911", "mpReserves": [ - "65222924836162381763489508", - "27811473702597966487425248", - "20495616747823983614491146" + "54494940488017673944467259", + "10287541895430626623867699", + "40159695858125006869878237" ], "fpReserves": [ - "14360071298635216458138134", - "14541570881695418723025820" + "5534618467686949833313369", + "4361779669782533382341084" ], - "mAssetSupply": "113472580668846563164876222", - "LPTokenSupply": "28594308421888869773195488" + "mAssetSupply": "104684185673240674600430085", + "LPTokenSupply": "9628773716149128241535349" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1436497609605283053568", - "outputQty0": "1441635199948989773677", - "outputQty": "1440600770073471359811", - "swapFee": "1141091698081474967", + "type": "redeem", + "outputIndex": 2, + "inputQty": "2749784681167248162816", + "outputQty0": "2826526170371829307690", + "outputQty": "2837442919604156017735", + "swapFee1": "1649870808700348897", + "swapFee2": "1695915702223097584", "mpReserves": [ - "65222924836162381763489508", - "27811473702597966487425248", - "20497053245433588897544714" + "54494940488017673944467259", + "10287541895430626623867699", + "40156858415205402713860502" ], "fpReserves": [ - "14361512933835165447911811", - "14540130280925345251666009" + "5531791941516578004005679", + "4361779669782533382341084" ], - "mAssetSupply": "113474022304046512154649899", - "LPTokenSupply": "28594308535998039581342984" + "mAssetSupply": "104681360842986004994219979", + "LPTokenSupply": "9626024096455041863407422" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "1733856784238375862272", - "outputQty0": "1751368481487534594728", - "outputQty": "1744428926504389002166", - "swapFee1": "1040314070543025517", - "swapFee2": "700547392595013837", + "outputIndex": 0, + "inputQty": "270239925877839132360704", + "outputQty0": "277759445547572404511094", + "outputQty": "279817019304552920213848", + "swapFee1": "162143955526703479416", + "swapFee2": "166655667328543442706", "mpReserves": [ - "65222924836162381763489508", - "27811473702597966487425248", - "20495308816507084508542548" + "54215123468713121024253411", + "10287541895430626623867699", + "40156858415205402713860502" ], "fpReserves": [ - "14359761565353677913317083", - "14540130280925345251666009" + "5254032495969005599494585", + "4361779669782533382341084" ], - "mAssetSupply": "113472271636112417215069008", - "LPTokenSupply": "28592574783245208259783263" + "mAssetSupply": "104403768053105761133151591", + "LPTokenSupply": "9355800384972755401394659" }, { - "type": "swap_fp_to_mp", - "inputQty": "98718978834195808", - "outputIndex": 2, - "outputQty": "98319655000310875", - "swapFee": "0", - "redemptionFee": "39484327200119", + "type": "mint", + "inputIndex": 1, + "inputQty": "10924643884424371372032", + "outputQty0": "11298933763459763466413", + "outputQty": "10987138281159498021016", "mpReserves": [ - "65222924836162381763489508", - "27811473702597966487425248", - "20495308718187429508231673" + "54215123468713121024253411", + "10298466539315050995239731", + "40156858415205402713860502" ], "fpReserves": [ - "14359761466642859913017662", - "14540130379644324085861817" + "5265331429732465362960998", + "4361779669782533382341084" ], - "mAssetSupply": "113472271537441083541969706", - "LPTokenSupply": "28592574783245208259783263" + "mAssetSupply": "104415066986869220896618004", + "LPTokenSupply": "9366787523253914899415675" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "1415629383142025199616", "outputIndex": 0, - "inputQty": "2913505029956852736", - "outputQty0": "2942930497341554950", - "outputQty": "2949217088172710866", - "swapFee1": "1748103017974111", - "swapFee2": "1177172198936621", + "outputQty": "1427866521246524223841", + "swapFee": "0", + "redemptionFee": "850451127310773069", "mpReserves": [ - "65222921886945293590778642", - "27811473702597966487425248", - "20495308718187429508231673" + "54213695602191874500029570", + "10298466539315050995239731", + "40156858415205402713860502" ], "fpReserves": [ - "14359758523712362571462712", - "14540130379644324085861817" + "5263914011186947407845177", + "4363195299165675407540700" ], - "mAssetSupply": "113472268595687758399351377", - "LPTokenSupply": "28592571869914988604727938" + "mAssetSupply": "104413650418774830252275252", + "LPTokenSupply": "9366787523253914899415675" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "150811955250367920340992", - "outputQty0": "150429623504561480948317", - "outputQty": "150311344599454082265919", - "swapFee": "119066867164343507936", + "inputIndex": 1, + "inputQty": "2525116755279414296576", + "outputQty0": "2611514681099218566384", + "outputQty": "2606127169232365087411", + "swapFee": "2031555049124532402", "mpReserves": [ - "65373733842195661511119634", - "27811473702597966487425248", - "20495308718187429508231673" + "54213695602191874500029570", + "10300991656070330409536307", + "40156858415205402713860502" ], "fpReserves": [ - "14510188147216924052411029", - "14389819035044870003595898" + "5266525525868046626411561", + "4360589171996443042453289" ], - "mAssetSupply": "113622698219192319880299694", - "LPTokenSupply": "28592583776601705039078731" + "mAssetSupply": "104416261933455929470841636", + "LPTokenSupply": "9366787726409419811868915" }, { "type": "swap_fp_to_mp", - "inputQty": "1655043534685286694912", - "outputIndex": 0, - "outputQty": "1658683765276400291395", + "inputQty": "198107004683690549706752", + "outputIndex": 2, + "outputQty": "199064954226903855325686", "swapFee": "0", - "redemptionFee": "662053434635598210", + "redemptionFee": "118981350575954219325", "mpReserves": [ - "65372075158430385110828239", - "27811473702597966487425248", - "20495308718187429508231673" + "54213695602191874500029570", + "10300991656070330409536307", + "39957793460978498858534816" ], "fpReserves": [ - "14508533013630335056884808", - "14391474078579555290290810" + "5068223274908122927535705", + "4558696176680133592160041" ], - "mAssetSupply": "113621043747659165520371683", - "LPTokenSupply": "28592583776601705039078731" + "mAssetSupply": "104218078663846581726185105", + "LPTokenSupply": "9366787726409419811868915" }, { "type": "swap_fp_to_mp", - "inputQty": "87137503181234954567680", - "outputIndex": 0, - "outputQty": "87325379174930202363141", + "inputQty": "7577052332920268652544", + "outputIndex": 2, + "outputQty": "7611294678700549791541", "swapFee": "0", - "redemptionFee": "34855479248002418303", + "redemptionFee": "4549389107067296769", "mpReserves": [ - "65284749779255454908465098", - "27811473702597966487425248", - "20495308718187429508231673" + "54213695602191874500029570", + "10300991656070330409536307", + "39950182166299798308743275" ], "fpReserves": [ - "14421394315510329011126851", - "14478611581760790244858490" + "5060640959729677432920579", + "4566273229013053860812585" ], - "mAssetSupply": "113533939905018407477032029", - "LPTokenSupply": "28592583776601705039078731" + "mAssetSupply": "104210500898057243298866748", + "LPTokenSupply": "9366787726409419811868915" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "304371296143078522880", - "outputQty0": "307455203085450188285", - "outputQty": "308113088879064858849", - "swapFee1": "182622777685847113", - "swapFee2": "122982081234180075", + "type": "mint", + "inputIndex": 0, + "inputQty": "522408019930631176192", + "outputQty0": "518269395602414834488", + "outputQty": "504101741451095078590", "mpReserves": [ - "65284441666166575843606249", - "27811473702597966487425248", - "20495308718187429508231673" + "54214218010211805131205762", + "10300991656070330409536307", + "39950182166299798308743275" ], "fpReserves": [ - "14421086860307243560938566", - "14478611581760790244858490" + "5061159229125279847755067", + "4566273229013053860812585" ], - "mAssetSupply": "113533632572797403261023819", - "LPTokenSupply": "28592279423567839729140562" + "mAssetSupply": "104211019167452845713701236", + "LPTokenSupply": "9367291828150870906947505" }, { "type": "swap_fp_to_mp", - "inputQty": "1274651355691095", + "inputQty": "314996709561601", "outputIndex": 0, - "outputQty": "1277345137898686", + "outputQty": "317538872732917", "swapFee": "0", - "redemptionFee": "509847100292", + "redemptionFee": "189127425283", "mpReserves": [ - "65284441664889230705707563", - "27811473702597966487425248", - "20495308718187429508231673" + "54214218009894266258472845", + "10300991656070330409536307", + "39950182166299798308743275" ], "fpReserves": [ - "14421086859032625810206606", - "14478611583035441600549585" + "5061159228810067472282500", + "4566273229328050570374186" ], - "mAssetSupply": "113533632571523295357392151", - "LPTokenSupply": "28592279423567839729140562" + "mAssetSupply": "104211019167137822465653952", + "LPTokenSupply": "9367291828150870906947505" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "23365262162110233706496", - "outputQty0": "23601935468491123927829", - "outputQty": "23563282900438947313208", - "swapFee1": "14019157297266140223", - "swapFee2": "9440774187396449571", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "2123989470851580821504", + "outputQty0": "2107162241883507726452", + "outputQty": "2104029768107244221734", + "swapFee": "1639646543216794721", "mpReserves": [ - "65284441664889230705707563", - "27787910419697527540112040", - "20495308718187429508231673" + "54216341999365117839294349", + "10300991656070330409536307", + "39950182166299798308743275" ], "fpReserves": [ - "14397484923564134686278777", - "14478611583035441600549585" + "5063266391051950980008952", + "4564169199559943326152452" ], - "mAssetSupply": "113510040076828991629913893", - "LPTokenSupply": "28568915563321459222048088" + "mAssetSupply": "104213126329379705973380404", + "LPTokenSupply": "9367291992115525228626977" }, { - "type": "swap_fp_to_mp", - "inputQty": "309136596053193588736", - "outputIndex": 0, - "outputQty": "309786935045585946634", - "swapFee": "0", - "redemptionFee": "123650019516266793", + "type": "redeem", + "outputIndex": 1, + "inputQty": "16024595091622444662784", + "outputQty0": "16465043302325767623923", + "outputQty": "15911993090123644014929", + "swapFee1": "9614757054973466797", + "swapFee2": "9879025981395460574", "mpReserves": [ - "65284131877954185119760929", - "27787910419697527540112040", - "20495308718187429508231673" + "54216341999365117839294349", + "10285079662980206765521378", + "39950182166299798308743275" ], "fpReserves": [ - "14397175798515344019294964", - "14478920719631494794138321" + "5046801347749625212385029", + "4564169199559943326152452" ], - "mAssetSupply": "113509731075430220479196873", - "LPTokenSupply": "28568915563321459222048088" + "mAssetSupply": "104196671165103361601217055", + "LPTokenSupply": "9351268358499608281310872" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "376001103394371241246720", - "outputQty0": "379791943167091320401799", - "outputQty": "380600903416883799716139", - "swapFee1": "225600662036622744748", - "swapFee2": "151916777266836528160", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "51797828737168452878336", + "outputQty0": "51568892218143657753329", + "outputQty": "51489483625025008550576", + "swapFee": "40126948595982293955", "mpReserves": [ - "64903530974537301320044790", - "27787910419697527540112040", - "20495308718187429508231673" + "54216341999365117839294349", + "10285079662980206765521378", + "40001979995036966761621611" ], "fpReserves": [ - "14017383855348252698893165", - "14478920719631494794138321" + "5098370239967768870138358", + "4512679715934918317601876" ], - "mAssetSupply": "113130091049040395995323234", - "LPTokenSupply": "28192937019993291643075842" + "mAssetSupply": "104248240057321505258970384", + "LPTokenSupply": "9351272371194467879540267" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "968761098580782233944064", - "outputQty0": "969861152927306218631106", - "outputQty": "959532743378998452545799", + "inputIndex": 2, + "inputQty": "327958887722693773230080", + "outputQty0": "326494934226787498180300", + "outputQty": "317517380794495938153493", "mpReserves": [ - "64903530974537301320044790", - "28756671518278309774056104", - "20495308718187429508231673" + "54216341999365117839294349", + "10285079662980206765521378", + "40329938882759660534851691" ], "fpReserves": [ - "14987245008275558917524271", - "14478920719631494794138321" + "5424865174194556368318658", + "4512679715934918317601876" ], - "mAssetSupply": "114099952201967702213954340", - "LPTokenSupply": "29152469763372290095621641" + "mAssetSupply": "104574734991548292757150684", + "LPTokenSupply": "9668789751988963817693760" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "22776242793426210816", - "outputQty0": "23010099324154569109", - "outputQty": "22918469974761792538", - "swapFee1": "13665745676055726", - "swapFee2": "9204039729661827", - "mpReserves": [ - "64903530974537301320044790", - "28756671518278309774056104", - "20495285799717454746439135" - ], - "fpReserves": [ - "14987221998176234762955162", - "14478920719631494794138321" - ], - "mAssetSupply": "114099929201072417789047058", - "LPTokenSupply": "29152446988496071237016397" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "9077220700591997583360", - "outputQty0": "9054899896428683817096", - "outputQty": "8957486501785081037907", + "outputIndex": 1, + "inputQty": "1528958397029160192", + "outputQty0": "1571396969948261590", + "outputQty": "1518196860026944408", + "swapFee1": "917375038217496", + "swapFee2": "942838181968956", "mpReserves": [ - "64912608195237893317628150", - "28756671518278309774056104", - "20495285799717454746439135" + "54216341999365117839294349", + "10285078144783346738576970", + "40329938882759660534851691" ], "fpReserves": [ - "14996276898072663446772258", - "14478920719631494794138321" + "5424863602797586420057068", + "4512679715934918317601876" ], - "mAssetSupply": "114108984100968846472864154", - "LPTokenSupply": "29161404474997856318054304" + "mAssetSupply": "104574733421094160990858050", + "LPTokenSupply": "9668788223122304292355317" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "636749538150444815089664", - "outputQty0": "638959569475170222437541", - "outputQty": "632041936757889358309607", + "type": "redeem", + "outputIndex": 0, + "inputQty": "428820199645657664", + "outputQty0": "440722758284764715", + "outputQty": "443972100216203262", + "swapFee1": "257292119787394", + "swapFee2": "264433654970858", "mpReserves": [ - "64912608195237893317628150", - "28756671518278309774056104", - "21132035337867899561528799" + "54216341555393017623091087", + "10285078144783346738576970", + "40329938882759660534851691" ], "fpReserves": [ - "15635236467547833669209799", - "14478920719631494794138321" + "5424863162074828135292353", + "4512679715934918317601876" ], - "mAssetSupply": "114747943670444016695301695", - "LPTokenSupply": "29793446411755745676363911" + "mAssetSupply": "104574732980635836361064193", + "LPTokenSupply": "9668787794327833858676392" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2467535654518678618112", - "outputQty0": "2461625687348957000024", - "outputQty": "2458399425946184788212", - "swapFee": "1947849517093049377", + "inputIndex": 1, + "inputQty": "6372378446002768576512", + "outputQty0": "6591584608150793426380", + "outputQty": "6578112603898519852972", + "swapFee": "5127764756510043432", "mpReserves": [ - "64915075730892411996246262", - "28756671518278309774056104", - "21132035337867899561528799" + "54216341555393017623091087", + "10291450523229349507153482", + "40329938882759660534851691" ], "fpReserves": [ - "15637698093235182626209823", - "14476462320205548609350109" + "5431454746682978928718733", + "4506101603331019797748904" ], - "mAssetSupply": "114750405296131365652301719", - "LPTokenSupply": "29793446606540697385668848" + "mAssetSupply": "104581324565243987154490573", + "LPTokenSupply": "9668788307104309509680735" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "197253467132392248442880", - "outputQty0": "196779927793131835165805", - "outputQty": "194632386312881006820662", - "mpReserves": [ - "65112329198024804244689142", - "28756671518278309774056104", - "21132035337867899561528799" - ], - "fpReserves": [ - "15834478021028314461375628", - "14476462320205548609350109" - ], - "mAssetSupply": "114947185223924497487467524", - "LPTokenSupply": "29988078992853578392489510" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "22966350347906146369536", - "outputIndex": 0, - "outputQty": "23026001829319104733159", - "swapFee": "0", - "redemptionFee": "9191921612826307993", + "inputIndex": 2, + "inputQty": "303972820511672693161984", + "outputQty0": "302594995654571656201834", + "outputQty": "294218370781766823536709", "mpReserves": [ - "65089303196195485139955983", - "28756671518278309774056104", - "21132035337867899561528799" + "54216341555393017623091087", + "10291450523229349507153482", + "40633911703271333228013675" ], "fpReserves": [ - "15811498216996248691391813", - "14499428670553454755719645" + "5734049742337550584920567", + "4506101603331019797748904" ], - "mAssetSupply": "114924214611814044543791702", - "LPTokenSupply": "29988078992853578392489510" + "mAssetSupply": "104883919560898558810692407", + "LPTokenSupply": "9963006677886076333217444" }, { "type": "swap_fp_to_mp", - "inputQty": "800843146808441769558016", + "inputQty": "89622265936553403482112", "outputIndex": 0, - "outputQty": "802614203315401362358348", + "outputQty": "90416620868665649199173", "swapFee": "0", - "redemptionFee": "320408954811702303416", + "redemptionFee": "53854579505981386898", "mpReserves": [ - "64286688992880083777597635", - "28756671518278309774056104", - "21132035337867899561528799" + "54125924934524351973891914", + "10291450523229349507153482", + "40633911703271333228013675" ], "fpReserves": [ - "15010475829966992932850868", - "15300271817361896525277661" + "5644292109827581606756546", + "4595723869267573201231016" ], - "mAssetSupply": "114123512633739600487554173", - "LPTokenSupply": "29988078992853578392489510" + "mAssetSupply": "104794215782968095813915284", + "LPTokenSupply": "9963006677886076333217444" }, { "type": "swap_fp_to_mp", - "inputQty": "86256606102743367680", + "inputQty": "733781264788461893713920", "outputIndex": 1, - "outputQty": "86120194373589745135", + "outputQty": "707452988086552702032647", "swapFee": "0", - "redemptionFee": "34498271432665667", + "redemptionFee": "440450158696450533426", "mpReserves": [ - "64286688992880083777597635", - "28756585398083936184310969", - "21132035337867899561528799" + "54125924934524351973891914", + "9583997535142796805120835", + "40633911703271333228013675" ], "fpReserves": [ - "15010389584288411268681514", - "15300358073967999268645341" + "4910208512000164051045784", + "5329505134056035094944936" ], - "mAssetSupply": "114123426422559290256050486", - "LPTokenSupply": "29988078992853578392489510" + "mAssetSupply": "104060572635299374708737948", + "LPTokenSupply": "9963006677886076333217444" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "9441983612854254698496", - "outputQty0": "9451951985782421552688", - "outputQty": "9351920984202957844656", + "inputIndex": 2, + "inputQty": "1596246230208694307520512", + "outputQty0": "1587900263765852760301777", + "outputQty": "1544678925771003873376892", "mpReserves": [ - "64286688992880083777597635", - "28766027381696790439009465", - "21132035337867899561528799" + "54125924934524351973891914", + "9583997535142796805120835", + "42230157933480027535534187" ], "fpReserves": [ - "15019841536274193690234202", - "15300358073967999268645341" + "6498108775766016811347561", + "5329505134056035094944936" ], - "mAssetSupply": "114132878374545072677603174", - "LPTokenSupply": "29997430913837781350334166" + "mAssetSupply": "105648472899065227469039725", + "LPTokenSupply": "11507685603657080206594336" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "6732012769649174249472", - "outputQty0": "6739111371769781657097", - "outputQty": "6734525593548028861107", - "swapFee": "5334222905466823173", + "type": "swap_fp_to_mp", + "inputQty": "102715201710448342728704", + "outputIndex": 2, + "outputQty": "103336487823234690120740", + "swapFee": "0", + "redemptionFee": "61703935198026265905", "mpReserves": [ - "64286688992880083777597635", - "28772759394466439613258937", - "21132035337867899561528799" + "54125924934524351973891914", + "9583997535142796805120835", + "42126821445656792845413447" ], "fpReserves": [ - "15026580647645963471891299", - "15293623548374451239784234" + "6395268883769306368172241", + "5432220335766483437673640" ], - "mAssetSupply": "114139617485916842459260271", - "LPTokenSupply": "29997431447260071897016483" + "mAssetSupply": "105545694711003715052130310", + "LPTokenSupply": "11507685603657080206594336" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "15157552897059094528", - "outputQty0": "15310554918539246198", - "outputQty": "15288318078043163887", - "swapFee1": "9094531738235456", - "swapFee2": "6124221967415698", + "type": "mint", + "inputIndex": 2, + "inputQty": "2341309425488758833152", + "outputQty0": "2328687239420090993465", + "outputQty": "2264583309874845231147", "mpReserves": [ - "64286688992880083777597635", - "28772744106148361570095050", - "21132035337867899561528799" + "54125924934524351973891914", + "9583997535142796805120835", + "42129162755082281604246599" ], "fpReserves": [ - "15026565337091044932645101", - "15293623548374451239784234" + "6397597571008726459165706", + "5432220335766483437673640" ], - "mAssetSupply": "114139602181486145887429771", - "LPTokenSupply": "29997416290616628011745500" + "mAssetSupply": "105548023398243135143123775", + "LPTokenSupply": "11509950186966955051825483" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "515436764687312814080", - "outputQty0": "515979971632451819803", - "outputQty": "515627230937043938710", - "swapFee": "408413710513255585", + "inputQty": "5124562649197863501824", + "outputQty0": "5333570345675773085021", + "outputQty": "5323436521482278825381", + "swapFee": "4149390761798928735", "mpReserves": [ - "64286688992880083777597635", - "28773259542913048882909130", - "21132035337867899561528799" + "54125924934524351973891914", + "9589122097791994668622659", + "42129162755082281604246599" ], "fpReserves": [ - "15027081317062677384464904", - "15293107921143514195845524" + "6402931141354402232250727", + "5426896899245001158848259" ], - "mAssetSupply": "114140118161457778339249574", - "LPTokenSupply": "29997416331457999063071058" + "mAssetSupply": "105553356968588810916208796", + "LPTokenSupply": "11509950601906031231718356" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "4516646054987278", - "outputQty0": "4562238668442143", - "outputQty": "4571198356668064", - "swapFee1": "2709987632992", - "swapFee2": "1824895467376", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1963194583829948137472", + "outputQty0": "2043205814858691749096", + "outputQty": "2039306193911575154555", + "swapFee": "1589557190289953277", "mpReserves": [ - "64286688988308885420929571", - "28773259542913048882909130", - "21132035337867899561528799" + "54125924934524351973891914", + "9591085292375824616760131", + "42129162755082281604246599" ], "fpReserves": [ - "15027081312500438716022761", - "15293107921143514195845524" + "6404974347169260923999823", + "5424857593051089583693704" ], - "mAssetSupply": "114140118156897364566274807", - "LPTokenSupply": "29997416326941624006847079" + "mAssetSupply": "105555400174403669607957892", + "LPTokenSupply": "11509950760861750260713683" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "3144372106986979852288", - "outputQty0": "3136953483045930839944", - "outputQty": "3134803955968392521298", - "swapFee": "2482991980007435177", + "inputQty": "1656639774677111668736", + "outputQty0": "1642723357560812901941", + "outputQty": "1597487716597431467334", "mpReserves": [ - "64289833360415872400781859", - "28773259542913048882909130", - "21132035337867899561528799" + "54127581574299029085560650", + "9591085292375824616760131", + "42129162755082281604246599" ], "fpReserves": [ - "15030218265983484646862705", - "15289973117187545803324226" + "6406617070526821736901764", + "5424857593051089583693704" ], - "mAssetSupply": "114143255110380410497114751", - "LPTokenSupply": "29997416575240822007590596" + "mAssetSupply": "105557042897761230420859833", + "LPTokenSupply": "11511548248578347692181017" }, { - "type": "swap_fp_to_mp", - "inputQty": "6038401256061177692160", - "outputIndex": 1, - "outputQty": "6028927578521204765781", - "swapFee": "0", - "redemptionFee": "2415080031748722692", + "type": "mint", + "inputIndex": 1, + "inputQty": "28714658515663313698816", + "outputQty0": "29881290985833756467039", + "outputQty": "29058226123923710502301", "mpReserves": [ - "64289833360415872400781859", - "28767230615334527678143349", - "21132035337867899561528799" + "54127581574299029085560650", + "9619799950891487930458947", + "42129162755082281604246599" ], "fpReserves": [ - "15024180565904112840131140", - "15296011518443606981016386" + "6436498361512655493368803", + "5424857593051089583693704" ], - "mAssetSupply": "114137219825381070439105878", - "LPTokenSupply": "29997416575240822007590596" + "mAssetSupply": "105586924188747064177326872", + "LPTokenSupply": "11540606474702271402683318" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "891963017166860288", - "outputQty0": "889858213313633236", - "outputQty": "889251932320145100", - "swapFee": "704350336021431", + "type": "swap_fp_to_mp", + "inputQty": "8946038420494948352", + "outputIndex": 0, + "outputQty": "9026513275186205031", + "swapFee": "0", + "redemptionFee": "5373778513957795", "mpReserves": [ - "64289834252378889567642147", - "28767230615334527678143349", - "21132035337867899561528799" + "54127572547785753899355619", + "9619799950891487930458947", + "42129162755082281604246599" ], "fpReserves": [ - "15024181455762326153764376", - "15296010629191674660871286" + "6436489405215132230376603", + "5424866539089510078642056" ], - "mAssetSupply": "114137220715239283752739114", - "LPTokenSupply": "29997416575311257041192739" + "mAssetSupply": "105586915237823319428292467", + "LPTokenSupply": "11540606474702271402683318" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "473519364339943648264192", - "outputQty0": "472395736838255225237151", - "outputQty": "467370647193159721623050", + "inputIndex": 2, + "inputQty": "14121176296936334950400", + "outputQty0": "14045391126361257872283", + "outputQty": "13658371607458622896339", "mpReserves": [ - "64763353616718833215906339", - "28767230615334527678143349", - "21132035337867899561528799" + "54127572547785753899355619", + "9619799950891487930458947", + "42143283931379217939196999" ], "fpReserves": [ - "15496577192600581379001527", - "15296010629191674660871286" + "6450534796341493488248886", + "5424866539089510078642056" ], - "mAssetSupply": "114609616452077538977976265", - "LPTokenSupply": "30464787222504416762815789" + "mAssetSupply": "105600960628949680686164750", + "LPTokenSupply": "11554264846309730025579657" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6594836958925896704", - "outputQty0": "6579100870398596749", - "outputQty": "6508784485462838625", - "mpReserves": [ - "64763360211555792141803043", - "28767230615334527678143349", - "21132035337867899561528799" - ], - "fpReserves": [ - "15496583771701451777598276", - "15296010629191674660871286" - ], - "mAssetSupply": "114609623031178409376573014", - "LPTokenSupply": "30464793731288902225654414" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1015960917447324091809792", - "outputQty0": "1013507886736970089775582", - "outputQty": "1012165809412930553255201", - "swapFee": "802056825219621144209", + "inputIndex": 2, + "inputQty": "24381501515873038336", + "outputQty0": "24250611767559724531", + "outputQty": "23582307456890492743", "mpReserves": [ - "65779321129003116233612835", - "28767230615334527678143349", - "21132035337867899561528799" + "54127572547785753899355619", + "9619799950891487930458947", + "42143308312880733812235335" ], "fpReserves": [ - "16510091658438421867373858", - "14283844819778744107616085" + "6450559046953261047973417", + "5424866539089510078642056" ], - "mAssetSupply": "115623130917915379466348596", - "LPTokenSupply": "30464873936971424187768834" + "mAssetSupply": "105600984879561448245889281", + "LPTokenSupply": "11554288428617186916072400" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "18694014699159905370112", - "outputQty0": "18893043651912638683971", - "outputQty": "18931724833046655484858", - "swapFee1": "11216408819495943222", - "swapFee2": "7557217460765055473", + "inputQty": "20487252363900227584", + "outputQty0": "21055204521987974006", + "outputQty": "21220258278571665284", + "swapFee1": "12292351418340136", + "swapFee2": "12633122713192784", "mpReserves": [ - "65760389404170069578127977", - "28767230615334527678143349", - "21132035337867899561528799" + "54127551327527475327690335", + "9619799950891487930458947", + "42143308312880733812235335" ], "fpReserves": [ - "16491198614786509228689887", - "14283844819778744107616085" + "6450537991748739059999411", + "5424866539089510078642056" ], - "mAssetSupply": "115604245431480927592720098", - "LPTokenSupply": "30446181043913146231993044" + "mAssetSupply": "105600963836990048971108059", + "LPTokenSupply": "11554267942594058157678829" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "98686608935860243005440", - "outputQty0": "99736191723202585220840", - "outputQty": "99940055795395871962811", - "swapFee1": "59211965361516145803", - "swapFee2": "39894476689281034088", + "inputQty": "593434058877728356040704", + "outputQty0": "609791316625894728259128", + "outputQty": "614533091990827524501622", + "swapFee1": "356060435326637013624", + "swapFee2": "365874789975536836955", "mpReserves": [ - "65660449348374673706165166", - "28767230615334527678143349", - "21132035337867899561528799" + "53513018235536647803188713", + "9619799950891487930458947", + "42143308312880733812235335" ], "fpReserves": [ - "16391462423063306643469047", - "14283844819778744107616085" + "5840746675122844331740283", + "5424866539089510078642056" ], - "mAssetSupply": "115504549134234414288533346", - "LPTokenSupply": "30347500356173822140602184" + "mAssetSupply": "104991538395154129779685886", + "LPTokenSupply": "10960869489759862465339487" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "181506876003597123584", - "outputQty0": "183435855623755057478", - "outputQty": "183810288029112222254", - "swapFee1": "108904125602158274", - "swapFee2": "73374342249502022", + "outputIndex": 2, + "inputQty": "203695855176078789181440", + "outputQty0": "209270741770847747739324", + "outputQty": "210275388249427666814616", + "swapFee1": "122217513105647273508", + "swapFee2": "125562445062508648643", "mpReserves": [ - "65660265538086644593942912", - "28767230615334527678143349", - "21132035337867899561528799" + "53513018235536647803188713", + "9619799950891487930458947", + "41933032924631306145420719" ], "fpReserves": [ - "16391278987207682888411569", - "14283844819778744107616085" + "5631475933351996584000959", + "5424866539089510078642056" ], - "mAssetSupply": "115504365771753132782977890", - "LPTokenSupply": "30347318860188231103694427" + "mAssetSupply": "104782393215828344540595205", + "LPTokenSupply": "10757185856335094240885397" }, { "type": "mint", "inputIndex": 2, - "inputQty": "110149167008647556890624", - "outputQty0": "110523785719258215824954", - "outputQty": "109294760878279492369782", - "mpReserves": [ - "65660265538086644593942912", - "28767230615334527678143349", - "21242184504876547118419423" - ], - "fpReserves": [ - "16501802772926941104236523", - "14283844819778744107616085" - ], - "mAssetSupply": "115614889557472390998802844", - "LPTokenSupply": "30456613621066510596064209" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "15425941972662196224", - "outputQty0": "15590212868464493341", - "outputQty": "15531477999666029453", - "swapFee1": "9255565183597317", - "swapFee2": "6236085147385797", + "inputQty": "8861773602709546467328", + "outputQty0": "8814347266023437434930", + "outputQty": "8574789336781372336374", "mpReserves": [ - "65660265538086644593942912", - "28767230615334527678143349", - "21242168973398547452389970" + "53513018235536647803188713", + "9619799950891487930458947", + "41941894698234015691888047" ], "fpReserves": [ - "16501787182714072639743182", - "14283844819778744107616085" + "5640290280618020021435889", + "5424866539089510078642056" ], - "mAssetSupply": "115614873973495607681695300", - "LPTokenSupply": "30456598196050094452227716" + "mAssetSupply": "104791207563094367978030135", + "LPTokenSupply": "10765760645671875613221771" }, { - "type": "swap_fp_to_mp", - "inputQty": "205191921361429757952", - "outputIndex": 1, - "outputQty": "205074858913151434828", - "swapFee": "0", - "redemptionFee": "82155932301954075", - "mpReserves": [ - "65660265538086644593942912", - "28767025540475614526708521", - "21242168973398547452389970" - ], - "fpReserves": [ - "16501581792883317754555245", - "14284050011700105537374037" - ], - "mAssetSupply": "115614668665820785098461438", - "LPTokenSupply": "30456598196050094452227716" - }, - { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "363643034906761021620224", - "outputQty0": "362757367282379098985788", - "outputQty": "358707406042370786905063", + "inputQty": "18115390893107791790080", + "outputQty0": "17965735106888103290192", + "outputQty": "17946343864731812625768", + "swapFee": "13981859373341304758", "mpReserves": [ - "66023908572993405615563136", - "28767025540475614526708521", - "21242168973398547452389970" + "53531133626429755594978793", + "9619799950891487930458947", + "41941894698234015691888047" ], "fpReserves": [ - "16864339160165696853541033", - "14284050011700105537374037" + "5658256015724908124726081", + "5406920195224778266016288" ], - "mAssetSupply": "115977426033103164197447226", - "LPTokenSupply": "30815305602092465239132779" + "mAssetSupply": "104809173298201256081320327", + "LPTokenSupply": "10765762043857812947352246" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "75580175384234885120", - "outputQty0": "75838350578547054586", - "outputQty": "75693437635089394895", - "swapFee": "59991284487767828", - "mpReserves": [ - "66023908572993405615563136", - "28767025540475614526708521", - "21242244553573931687275090" - ], - "fpReserves": [ - "16864414998516275400595619", - "14283974318262470447979142" - ], - "mAssetSupply": "115977501871453742744501812", - "LPTokenSupply": "30815305608091593687909561" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "97220994273855850676224", - "outputIndex": 1, - "outputQty": "97173024866208125601956", - "swapFee": "0", - "redemptionFee": "38930005715479846217", + "inputIndex": 1, + "inputQty": "1796304516906502324224", + "outputQty0": "1867836112684100635090", + "outputQty": "1865775682686477487944", + "swapFee": "1453620533739439964", "mpReserves": [ - "66023908572993405615563136", - "28669852515609406401106565", - "21242244553573931687275090" + "53531133626429755594978793", + "9621596255408394432783171", + "41941894698234015691888047" ], "fpReserves": [ - "16767089984227575785051892", - "14381195312536326298655366" + "5660123851837592225361171", + "5405054419542091788528344" ], - "mAssetSupply": "115880215787170758608804302", - "LPTokenSupply": "30815305608091593687909561" + "mAssetSupply": "104811041134313940181955417", + "LPTokenSupply": "10765762189219866321296242" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "536154669599986330632192", - "outputQty0": "541851891388871005260133", - "outputQty": "542957740172169247539695", - "swapFee1": "321692801759991798379", - "swapFee2": "216740756555548402104", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "242396479472185475072", + "outputQty0": "252047052578419208287", + "outputQty": "251768376368183211644", + "swapFee": "196152163049903742", "mpReserves": [ - "65480950832821236368023441", - "28669852515609406401106565", - "21242244553573931687275090" + "53531133626429755594978793", + "9621838651887866618258243", + "41941894698234015691888047" ], "fpReserves": [ - "16225238092838704779791759", - "14381195312536326298655366" + "5660375898890170644569458", + "5404802651165723605316700" ], - "mAssetSupply": "115338580636538443151946273", - "LPTokenSupply": "30279183107771783356457206" + "mAssetSupply": "104811293181366518601163704", + "LPTokenSupply": "10765762208835082626286616" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "772136004583684571136", - "outputQty0": "774728154450297125106", - "outputQty": "773486134649841447634", - "swapFee": "612924051224083587", + "inputQty": "21897026990933714927616", + "outputQty0": "21779813485284042483997", + "outputQty": "21187164480687066804758", "mpReserves": [ - "65480950832821236368023441", - "28669852515609406401106565", - "21243016689578515371846226" + "53531133626429755594978793", + "9621838651887866618258243", + "41963791725224949406815663" ], "fpReserves": [ - "16226012820993155076916865", - "14380421826401676457207732" + "5682155712375454687053455", + "5404802651165723605316700" ], - "mAssetSupply": "115339355364692893449071379", - "LPTokenSupply": "30279183169064188478865564" + "mAssetSupply": "104833072994851802643647701", + "LPTokenSupply": "10786949373315769693091374" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "9685607138347471339520", - "outputQty0": "9788103583136947331793", - "outputQty": "9807927181016895164280", - "swapFee1": "5811364283008482803", - "swapFee2": "3915241433254778932", + "type": "mint", + "inputIndex": 2, + "inputQty": "384409729500411739504640", + "outputQty0": "382334114365019885093363", + "outputQty": "371888788007257087741825", "mpReserves": [ - "65471142905640219472859161", - "28669852515609406401106565", - "21243016689578515371846226" + "53531133626429755594978793", + "9621838651887866618258243", + "42348201454725361146320303" ], "fpReserves": [ - "16216224717410018129585072", - "14380421826401676457207732" + "6064489826740474572146818", + "5404802651165723605316700" ], - "mAssetSupply": "115329571176351189756518518", - "LPTokenSupply": "30269498143062269308374324" + "mAssetSupply": "105215407109216822528741064", + "LPTokenSupply": "11158838161323026780833199" }, { - "type": "swap_fp_to_mp", - "inputQty": "723889789960978801098752", - "outputIndex": 2, - "outputQty": "721427955920327153427153", - "swapFee": "0", - "redemptionFee": "289695824469635290993", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "145677729438909104128", + "outputQty0": "144884745246205065592", + "outputQty": "144657839737298547613", + "swapFee": "112729611518297989", "mpReserves": [ - "65471142905640219472859161", - "28669852515609406401106565", - "20521588733658188218419073" + "53531133626429755594978793", + "9621838651887866618258243", + "42348347132454800055424431" ], "fpReserves": [ - "15491985156235929902102284", - "15104311616362655258306484" + "6064634711485720777212410", + "5404657993325986306769087" ], - "mAssetSupply": "114605621311001571164326723", - "LPTokenSupply": "30269498143062269308374324" + "mAssetSupply": "105215551993962068733806656", + "LPTokenSupply": "11158838172595987932662997" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "2765940294544199254016", - "outputQty0": "2794355494997092198323", - "outputQty": "2783105463579834003478", - "swapFee1": "1659564176726519552", - "swapFee2": "1117742197998836879", + "type": "mint", + "inputIndex": 2, + "inputQty": "734933496132947542016", + "outputQty0": "730932875116968098666", + "outputQty": "710890510674639931168", "mpReserves": [ - "65471142905640219472859161", - "28669852515609406401106565", - "20518805628194608384415595" + "53531133626429755594978793", + "9621838651887866618258243", + "42349082065950933002966447" ], "fpReserves": [ - "15489190800740932809903961", - "15104311616362655258306484" + "6065365644360837745311076", + "5404657993325986306769087" ], - "mAssetSupply": "114602828073248772070965279", - "LPTokenSupply": "30266732368724142781772263" + "mAssetSupply": "105216282926837185701905322", + "LPTokenSupply": "11159549063106662572594165" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "239806974405405596188672", - "outputQty0": "240066220096632684971965", - "outputQty": "237476543412235335516411", + "inputQty": "1529449201519103574016", + "outputQty0": "1590783086704203592414", + "outputQty": "1588287211401883148163", + "swapFee": "1237729977760927517", "mpReserves": [ - "65471142905640219472859161", - "28909659490014811997295237", - "20518805628194608384415595" + "53531133626429755594978793", + "9623368101089385721832259", + "42349082065950933002966447" ], "fpReserves": [ - "15729257020837565494875926", - "15104311616362655258306484" + "6066956427447541948903490", + "5403069706114584423620924" ], - "mAssetSupply": "114842894293345404755937244", - "LPTokenSupply": "30504208912136378117288674" + "mAssetSupply": "105217873709923889905497736", + "LPTokenSupply": "11159549186879660348686916" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "22385088584569122816", - "outputQty0": "22408845849225602125", - "outputQty": "22166559920524127709", + "inputIndex": 2, + "inputQty": "12349658272661574", + "outputQty0": "12282445491091379", + "outputQty": "11945633168901861", "mpReserves": [ - "65471142905640219472859161", - "28909681875103396566418053", - "20518805628194608384415595" + "53531133626429755594978793", + "9623368101089385721832259", + "42349082078300591275628021" ], "fpReserves": [ - "15729279429683414720478051", - "15104311616362655258306484" + "6066956439729987439994869", + "5403069706114584423620924" ], - "mAssetSupply": "114842916702191253981539369", - "LPTokenSupply": "30504231078696298641416383" + "mAssetSupply": "105217873722206335396589115", + "LPTokenSupply": "11159549198825293517588777" }, { "type": "swap_fp_to_mp", - "inputQty": "41904469668373676949504", - "outputIndex": 1, - "outputQty": "41853645276382552273136", + "inputQty": "42230324337909", + "outputIndex": 2, + "outputQty": "42468705283286", "swapFee": "0", - "redemptionFee": "16765989569682233827", + "redemptionFee": "25357756748", "mpReserves": [ - "65471142905640219472859161", - "28867828229827014014144917", - "20518805628194608384415595" + "53531133626429755594978793", + "9623368101089385721832259", + "42349082078258122570344735" ], "fpReserves": [ - "15687364455759209135910061", - "15146216086031028935255988" + "6066956439687724512080156", + "5403069706156814747958833" ], - "mAssetSupply": "114801018494256618079205206", - "LPTokenSupply": "30504231078696298641416383" + "mAssetSupply": "105217873722164097826431150", + "LPTokenSupply": "11159549198825293517588777" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "10498517430034122145792", - "outputQty0": "10606701405970377404196", - "outputQty": "10563852404704600739285", - "swapFee1": "6299110458020473287", - "swapFee2": "4242680562388150961", + "outputIndex": 0, + "inputQty": "159593668120960271646720", + "outputQty0": "163987911805068475303264", + "outputQty": "165248365571481650301234", + "swapFee1": "95756200872576162988", + "swapFee2": "98392747083041085181", "mpReserves": [ - "65471142905640219472859161", - "28867828229827014014144917", - "20508241775789903783676310" + "53365885260858273944677559", + "9623368101089385721832259", + "42349082078258122570344735" ], "fpReserves": [ - "15676757754353238758505865", - "15146216086031028935255988" + "5902968527882656036776892", + "5403069706156814747958833" ], - "mAssetSupply": "114790416035531210089951971", - "LPTokenSupply": "30493733191177310321317919" + "mAssetSupply": "105053984203106112392213067", + "LPTokenSupply": "10999965106324420503558355" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "7996033618213532073984", - "outputQty0": "8078416083410961353598", - "outputQty": "8095288878965327699824", - "swapFee1": "4797620170928119244", - "swapFee2": "3231366433364384541", + "inputQty": "86818714108003178512384", + "outputQty0": "89203791569361180557024", + "outputQty": "89887104586663783715705", + "swapFee1": "52091228464801907107", + "swapFee2": "53522274941616708334", "mpReserves": [ - "65463047616761254145159337", - "28867828229827014014144917", - "20508241775789903783676310" + "53275998156271610160961854", + "9623368101089385721832259", + "42349082078258122570344735" ], "fpReserves": [ - "15668679338269827797152267", - "15146216086031028935255988" + "5813764736313294856219868", + "5403069706156814747958833" ], - "mAssetSupply": "114782340850814232492982914", - "LPTokenSupply": "30485737637321113882055859" + "mAssetSupply": "104964833933811692828364377", + "LPTokenSupply": "10913151601339263805236681" }, { "type": "mint", "inputIndex": 1, - "inputQty": "209348910395097579520", - "outputQty0": "209572306982420492039", - "outputQty": "207310799529359108152", + "inputQty": "10143994787498887168", + "outputQty0": "10548385383294070444", + "outputQty": "10260396201973247560", "mpReserves": [ - "65463047616761254145159337", - "28868037578737409111724437", - "20508241775789903783676310" + "53275998156271610160961854", + "9623378245084173220719427", + "42349082078258122570344735" ], "fpReserves": [ - "15668888910576810217644306", - "15146216086031028935255988" + "5813775284698678150290312", + "5403069706156814747958833" ], - "mAssetSupply": "114782550423121214913474953", - "LPTokenSupply": "30485944948120643241164011" + "mAssetSupply": "104964844482197076122434821", + "LPTokenSupply": "10913161861735465778484241" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "487272358297424233496576", "outputIndex": 2, - "inputQty": "115705395029308063744", - "outputQty0": "116897420044330446886", - "outputQty": "116425017714152094074", - "swapFee1": "69423237017584838", - "swapFee2": "46758968017732178", + "outputQty": "489579110327887799888015", + "swapFee": "0", + "redemptionFee": "292336889265222242880", "mpReserves": [ - "65463047616761254145159337", - "28868037578737409111724437", - "20508125350772189631582236" + "53275998156271610160961854", + "9623378245084173220719427", + "41859502967930234770456720" ], "fpReserves": [ - "15668772013156765887197420", - "15146216086031028935255988" + "5326547135923307745490055", + "5890342064454238981455409" ], - "mAssetSupply": "114782433572460138600760245", - "LPTokenSupply": "30485829249667937634858750" + "mAssetSupply": "104477908670310970939877444", + "LPTokenSupply": "10913161861735465778484241" }, { - "type": "swap_fp_to_mp", - "inputQty": "7018526975051126800384", - "outputIndex": 0, - "outputQty": "7034742545547576850287", - "swapFee": "0", - "redemptionFee": "2808033299358013476", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "3236073064109988380672", + "outputQty0": "3218781119748042849643", + "outputQty": "3218346309941525602662", + "swapFee": "2506176800067058997", "mpReserves": [ - "65456012874215706568309050", - "28868037578737409111724437", - "20508125350772189631582236" + "53275998156271610160961854", + "9623378245084173220719427", + "41862739040994344758837392" ], "fpReserves": [ - "15661751929908370853505206", - "15153234613006080062056372" + "5329765917043055788339698", + "5887123718144297455852747" ], - "mAssetSupply": "114775416297245042925081507", - "LPTokenSupply": "30485829249667937634858750" + "mAssetSupply": "104481127451430718982727087", + "LPTokenSupply": "10913162112353145785190140" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "983515480046974271488", - "outputQty0": "984564509856928723829", - "outputQty": "983561321593155229405", - "swapFee": "779154247732804365", + "inputIndex": 0, + "inputQty": "145456725197782775758848", + "outputQty0": "144260061542794527964528", + "outputQty": "144215194740828639564309", + "swapFee": "112316775173575223586", "mpReserves": [ - "65456012874215706568309050", - "28869021094217456085995925", - "20508125350772189631582236" + "53421454881469392936720702", + "9623378245084173220719427", + "41862739040994344758837392" ], "fpReserves": [ - "15662736494418227782229035", - "15152251051684486906826967" + "5474025978585850316304226", + "5742908523403468816288438" ], - "mAssetSupply": "114776400861754899853805336", - "LPTokenSupply": "30485829327583362408139186" + "mAssetSupply": "104625387512973513510691615", + "LPTokenSupply": "10913173344030663142712498" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "256040074508379558510592", - "outputQty0": "256307806777586606939447", - "outputQty": "256018261892347425850566", - "swapFee": "202828721807329990373", + "inputQty": "646407510544472866816", + "outputQty0": "672031386244324692713", + "outputQty": "671706701594782512830", + "swapFee": "523150920966324610", "mpReserves": [ - "65456012874215706568309050", - "29125061168725835644506517", - "20508125350772189631582236" + "53421454881469392936720702", + "9624024652594717693586243", + "41862739040994344758837392" ], "fpReserves": [ - "15919044301195814389168482", - "14896232789792139480976401" + "5474698009972094640996939", + "5742236816701874033775608" ], - "mAssetSupply": "115032708668532486460744783", - "LPTokenSupply": "30485849610455543141138223" + "mAssetSupply": "104626059544359757835384328", + "LPTokenSupply": "10913173396345755239344959" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "909613520525088784384", - "outputQty0": "919086725467605773650", - "outputQty": "917778345455982345721", - "swapFee1": "545768112315053270", - "swapFee2": "367634690187042309", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "94474454090893269925888", + "outputQty0": "98183145572868237801352", + "outputQty": "98124232582261702269122", + "swapFee": "76429493976392013284", "mpReserves": [ - "65456012874215706568309050", - "29124143390380379662160796", - "20508125350772189631582236" + "53421454881469392936720702", + "9718499106685610963512131", + "41862739040994344758837392" ], "fpReserves": [ - "15918125214470346783394832", - "14896232789792139480976401" + "5572881155544962878798291", + "5644112584119612331506486" ], - "mAssetSupply": "115031789949441709042013442", - "LPTokenSupply": "30484940051511829283859166" + "mAssetSupply": "104724242689932626073185680", + "LPTokenSupply": "10913181039295152878546287" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "716405840188965608488960", - "outputQty0": "717099815978553752480201", - "outputQty": "715986910158604370263379", - "swapFee": "567385856290614134073", + "type": "swap_fp_to_mp", + "inputQty": "8926284430076914171904", + "outputIndex": 2, + "outputQty": "8967319699092331069162", + "swapFee": "0", + "redemptionFee": "5355263707569313863", "mpReserves": [ - "65456012874215706568309050", - "29840549230569345270649756", - "20508125350772189631582236" + "53421454881469392936720702", + "9718499106685610963512131", + "41853771721295252427768230" ], "fpReserves": [ - "16635225030448900535875033", - "14180245879633535110713022" + "5563955716032347355692574", + "5653038868549689245678390" ], - "mAssetSupply": "115748889765420262794493643", - "LPTokenSupply": "30484996790097458345272573" + "mAssetSupply": "104715322605683718119393826", + "LPTokenSupply": "10913181039295152878546287" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3169977813315050496", - "outputQty0": "3172873247812942785", - "outputQty": "3137302879162314612", + "inputIndex": 2, + "inputQty": "6573764702106433880064", + "outputQty0": "6539139124726560217688", + "outputQty": "6362350649273431578267", "mpReserves": [ - "65456012874215706568309050", - "29840552400547158585700252", - "20508125350772189631582236" + "53421454881469392936720702", + "9718499106685610963512131", + "41860345485997358861648294" ], "fpReserves": [ - "16635228203322148348817818", - "14180245879633535110713022" + "5570494855157073915910262", + "5653038868549689245678390" ], - "mAssetSupply": "115748892938293510607436428", - "LPTokenSupply": "30484999927400337507587185" + "mAssetSupply": "104721861744808444679611514", + "LPTokenSupply": "10919543389944426310124554" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4853581795504012918784", - "outputQty0": "4841779665349936731070", - "outputQty": "4787497368925253294830", + "type": "redeem", + "outputIndex": 1, + "inputQty": "531325567389655883579392", + "outputQty0": "545668633263086505469292", + "outputQty": "523828354579791720987056", + "swapFee1": "318795340433793530147", + "swapFee2": "327401179957851903281", "mpReserves": [ - "65460866456011210581227834", - "29840552400547158585700252", - "20508125350772189631582236" + "53421454881469392936720702", + "9194670752105819242525075", + "41860345485997358861648294" ], "fpReserves": [ - "16640069982987498285548888", - "14180245879633535110713022" + "5024826221893987410440970", + "5653038868549689245678390" ], - "mAssetSupply": "115753734717958860544167498", - "LPTokenSupply": "30489787424769262760882015" + "mAssetSupply": "104176520512725316026045503", + "LPTokenSupply": "10388249702088813805898176" }, { - "type": "swap_fp_to_mp", - "inputQty": "352308198673338702233600", - "outputIndex": 0, - "outputQty": "353345187802638294304883", - "swapFee": "0", - "redemptionFee": "141052189902815018993", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "24686671711678249304064", + "outputQty0": "24546884524183288898994", + "outputQty": "24545737002524247718819", + "swapFee": "19112650397234682880", "mpReserves": [ - "65107521268208572286922951", - "29840552400547158585700252", - "20508125350772189631582236" + "53421454881469392936720702", + "9194670752105819242525075", + "41885032157709037110952358" ], "fpReserves": [ - "16287439508230460738064047", - "14532554078306873812946622" + "5049373106418170699339964", + "5628493131547164997959571" ], - "mAssetSupply": "115401245295391725811701650", - "LPTokenSupply": "30489787424769262760882015" + "mAssetSupply": "104201067397249499314944497", + "LPTokenSupply": "10388251613353853529366464" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "1200201462350951412137984", - "outputQty0": "1212757793888815387300874", - "outputQty": "1211074083906107959779406", - "swapFee1": "720120877410570847282", - "swapFee2": "485103117555526154920", + "inputQty": "1641444115548118974464", + "outputQty0": "1685550707398268890861", + "outputQty": "1614455538972501641021", + "swapFee1": "984866469328871384", + "swapFee2": "1011330424438961334", "mpReserves": [ - "65107521268208572286922951", - "28629478316641050625920846", - "20508125350772189631582236" + "53421454881469392936720702", + "9193056296566846740884054", + "41885032157709037110952358" ], "fpReserves": [ - "15074681714341645350763173", - "14532554078306873812946622" + "5047687555710772430449103", + "5628493131547164997959571" ], - "mAssetSupply": "114188972604620465950555696", - "LPTokenSupply": "29289657974506052405828759" + "mAssetSupply": "104199382857872525485014970", + "LPTokenSupply": "10386610267724952343279138" }, { - "type": "swap_fp_to_mp", - "inputQty": "12114964354885208", - "outputIndex": 2, - "outputQty": "12069543773659806", - "swapFee": "0", - "redemptionFee": "4847161939902", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "618206276742361630375936", + "outputQty0": "612820407439444676503601", + "outputQty": "612305780329176378890582", + "swapFee": "477045211922300382838", "mpReserves": [ - "65107521268208572286922951", - "28629478316641050625920846", - "20508125338702645857922430" + "54039661158211754567096638", + "9193056296566846740884054", + "41885032157709037110952358" ], "fpReserves": [ - "15074681702223740501007630", - "14532554090421838167831830" + "5660507963150217106952704", + "5016187351217988619068989" ], - "mAssetSupply": "114188972592507408262740055", - "LPTokenSupply": "29289657974506052405828759" + "mAssetSupply": "104812203265311970161518571", + "LPTokenSupply": "10386657972246144573317421" }, { - "type": "swap_fp_to_mp", - "inputQty": "61400248969683616", - "outputIndex": 1, - "outputQty": "61323930671560022", - "swapFee": "0", - "redemptionFee": "24566060714537", + "type": "redeem", + "outputIndex": 2, + "inputQty": "876267816928265895936", + "outputQty0": "900536727371732118561", + "outputQty": "905096928506756804010", + "swapFee1": "525760690156959537", + "swapFee2": "540322036423039271", "mpReserves": [ - "65107521268208572286922951", - "28629478255317119954360824", - "20508125338702645857922430" + "54039661158211754567096638", + "9193056296566846740884054", + "41884127060780530354148348" ], "fpReserves": [ - "15074681640808588714665021", - "14532554151822087137515446" + "5659607426422845374834143", + "5016187351217988619068989" ], - "mAssetSupply": "114188972531116822537111983", - "LPTokenSupply": "29289657974506052405828759" + "mAssetSupply": "104811303268906634852439281", + "LPTokenSupply": "10385781757005285323117438" }, { - "type": "swap_fp_to_mp", - "inputQty": "418439272775826305712128", - "outputIndex": 0, - "outputQty": "419328291868572933252877", - "swapFee": "0", - "redemptionFee": "167384973879270285863", + "type": "mint", + "inputIndex": 2, + "inputQty": "4596675883117269", + "outputQty0": "4570772577438598", + "outputQty": "4444925432533223", "mpReserves": [ - "64688192976339999353670074", - "28629478255317119954360824", - "20508125338702645857922430" + "54039661158211754567096638", + "9193056296566846740884054", + "41884127065377206237265617" ], "fpReserves": [ - "14656219206110413000005983", - "14950993424597913443227574" + "5659607430993617952272741", + "5016187351217988619068989" ], - "mAssetSupply": "113770677481392526092738808", - "LPTokenSupply": "29289657974506052405828759" + "mAssetSupply": "104811303273477407429877879", + "LPTokenSupply": "10385781761450210755650661" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2868376759050044440576", - "outputQty0": "2878591246124674273300", - "outputQty": "2876664061890950291246", - "swapFee": "2278324326337958194", + "type": "redeem", + "outputIndex": 2, + "inputQty": "144150648270249776906240", + "outputQty0": "148136768298285570402466", + "outputQty": "148884233893118916836383", + "swapFee1": "86490388962149866143", + "swapFee2": "88882060978971342241", "mpReserves": [ - "64688192976339999353670074", - "28629478255317119954360824", - "20510993715461695902363006" + "54039661158211754567096638", + "9193056296566846740884054", + "41735242831484087320429234" ], "fpReserves": [ - "14659097797356537674279283", - "14948116760536022492936328" + "5511470662695332381870275", + "5016187351217988619068989" ], - "mAssetSupply": "113773556072638650767012108", - "LPTokenSupply": "29289658202338485039624578" + "mAssetSupply": "104663255387240100830817654", + "LPTokenSupply": "10241639762218857193731035" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1928712521600758016", - "outputQty0": "1948326500593075139", - "outputQty": "1940637554882035087", - "swapFee1": "1157227512960454", - "swapFee2": "779330600237230", + "type": "mint", + "inputIndex": 0, + "inputQty": "635477146597494528", + "outputQty0": "629894808678490189", + "outputQty": "612598914813682798", "mpReserves": [ - "64688192976339999353670074", - "28629478255317119954360824", - "20510991774824141020327919" + "54039661793688901164591166", + "9193056296566846740884054", + "41735242831484087320429234" ], "fpReserves": [ - "14659095849030037081204144", - "14948116760536022492936328" + "5511471292590141060360464", + "5016187351217988619068989" ], - "mAssetSupply": "113773554125091480774174199", - "LPTokenSupply": "29289656273741686190162607" + "mAssetSupply": "104663256017134909509307843", + "LPTokenSupply": "10241640374817772007413833" }, { - "type": "swap_fp_to_mp", - "inputQty": "624401491255440992894976", - "outputIndex": 1, - "outputQty": "623200455976494068679693", - "swapFee": "0", - "redemptionFee": "249658289905400502867", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "40580432686713218793472", + "outputQty0": "40223781949259853163383", + "outputQty": "40164394674215741103910", + "swapFee": "31295078193983864409", "mpReserves": [ - "64688192976339999353670074", - "28006277799340625885681131", - "20510991774824141020327919" + "54080242226375614383384638", + "9193056296566846740884054", + "41735242831484087320429234" ], "fpReserves": [ - "14034950124266535824036318", - "15572518251791463485831304" + "5551695074539400913523847", + "4976022956543772877965079" ], - "mAssetSupply": "113149658058617884917509240", - "LPTokenSupply": "29289656273741686190162607" + "mAssetSupply": "104703479799084169362471226", + "LPTokenSupply": "10241643504325591405800273" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "86787317802193456726016", - "outputQty0": "86571283159031661327876", - "outputQty": "85672232180129297340005", + "type": "redeem", + "outputIndex": 1, + "inputQty": "2115435486072041036054528", + "outputQty0": "2172254883741688477360795", + "outputQty": "2055057066828854505141161", + "swapFee1": "1269261291643224621632", + "swapFee2": "1303352930245013086416", "mpReserves": [ - "64774980294142192810396090", - "28006277799340625885681131", - "20510991774824141020327919" + "54080242226375614383384638", + "7137999229737992235742893", + "41735242831484087320429234" ], "fpReserves": [ - "14121521407425567485364194", - "15572518251791463485831304" + "3379440190797712436163052", + "4976022956543772877965079" ], - "mAssetSupply": "113236229341776916578837116", - "LPTokenSupply": "29375328505921815487502612" + "mAssetSupply": "102532528268272725898196847", + "LPTokenSupply": "8126334944382714692207908" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "37381015547979893833728", - "outputQty0": "37424791204994532802133", - "outputQty": "37418543570934351349128", - "swapFee": "29628447049961044545", + "inputIndex": 0, + "inputQty": "212489622717294253703168", + "outputQty0": "210056657196427899553501", + "outputQty": "210377359340021042418300", + "swapFee": "163679507359730793546", "mpReserves": [ - "64774980294142192810396090", - "28043658814888605779514859", - "20510991774824141020327919" + "54292731849092908637087806", + "7137999229737992235742893", + "41735242831484087320429234" ], "fpReserves": [ - "14158946198630562018166327", - "15535099708220529134482176" + "3589496847994140335716553", + "4765645597203751835546779" ], - "mAssetSupply": "113273654132981911111639249", - "LPTokenSupply": "29375331468766520483607066" + "mAssetSupply": "102742584925469153797750348", + "LPTokenSupply": "8126351312333450665287262" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "170429298843518056267776", - "outputQty0": "170625822790460532961278", - "outputQty": "168845350271957803909441", + "inputIndex": 0, + "inputQty": "307609479675789914931200", + "outputQty0": "304066847914641242177427", + "outputQty": "296018503717681842875987", "mpReserves": [ - "64774980294142192810396090", - "28214088113732123835782635", - "20510991774824141020327919" + "54600341328768698552019006", + "7137999229737992235742893", + "41735242831484087320429234" ], "fpReserves": [ - "14329572021421022551127605", - "15535099708220529134482176" + "3893563695908781577893980", + "4765645597203751835546779" ], - "mAssetSupply": "113444279955772371644600527", - "LPTokenSupply": "29544176819038478287516507" + "mAssetSupply": "103046651773383795039927775", + "LPTokenSupply": "8422369816051132508163249" }, { - "type": "swap_fp_to_mp", - "inputQty": "47904412927238627917824", + "type": "redeem", "outputIndex": 2, - "outputQty": "47688975967659784181312", - "swapFee": "0", - "redemptionFee": "19151078890065160335", + "inputQty": "81919396116042421895168", + "outputQty0": "84105918699640946673091", + "outputQty": "84700489136802790524152", + "swapFee1": "49151637669625453137", + "swapFee2": "50463551219784568003", "mpReserves": [ - "64774980294142192810396090", - "28214088113732123835782635", - "20463302798856481236146607" + "54600341328768698552019006", + "7137999229737992235742893", + "41650542342347284529905082" ], "fpReserves": [ - "14281694324195859650289733", - "15583004121147767762400000" + "3809457777209140631220889", + "4765645597203751835546779" ], - "mAssetSupply": "113396421409626098808922990", - "LPTokenSupply": "29544176819038478287516507" + "mAssetSupply": "102962596318235373877822687", + "LPTokenSupply": "8340455335098857048813394" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "248548863670215751237632", - "outputQty0": "247929472519440623608574", - "outputQty": "245335365297287116845994", + "inputQty": "24178344554470903382016", + "outputQty0": "23898748880701540538722", + "outputQty": "23914863315901926944007", + "swapFee": "18611250287385910443", "mpReserves": [ - "65023529157812408561633722", - "28214088113732123835782635", - "20463302798856481236146607" + "54624519673323169455401022", + "7137999229737992235742893", + "41650542342347284529905082" ], "fpReserves": [ - "14529623796715300273898307", - "15583004121147767762400000" + "3833356526089842171759611", + "4741730733887849908602772" ], - "mAssetSupply": "113644350882145539432531564", - "LPTokenSupply": "29789512184335765404362501" + "mAssetSupply": "102986495067116075418361409", + "LPTokenSupply": "8340457196223885787404438" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "37687934274147729801216", - "outputQty0": "38064542104471497412371", - "outputQty": "37912856349392579209003", - "swapFee1": "22612760564488637880", - "swapFee2": "15225816841788598964", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "106509408296251418476544", + "outputQty0": "105698092686918056041699", + "outputQty": "105746898448454029559189", + "swapFee": "82305747146335110257", "mpReserves": [ - "65023529157812408561633722", - "28214088113732123835782635", - "20425389942507088656937604" + "54624519673323169455401022", + "7137999229737992235742893", + "41757051750643535948381626" ], "fpReserves": [ - "14491559254610828776485936", - "15583004121147767762400000" + "3939054618776760227801310", + "4635983835439395879043583" ], - "mAssetSupply": "113606301565857909723718157", - "LPTokenSupply": "29751826511337674123425073" + "mAssetSupply": "103092193159802993474403108", + "LPTokenSupply": "8340465426798600420915463" }, { - "type": "swap_fp_to_mp", - "inputQty": "4832291180212990771200", - "outputIndex": 2, - "outputQty": "4810663106076217854496", - "swapFee": "0", - "redemptionFee": "1931981008367964830", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1258570233114697662464", + "outputQty0": "1350746433696566882057", + "outputQty": "1351135818403139905075", + "swapFee": "1051656194602732178", "mpReserves": [ - "65023529157812408561633722", - "28214088113732123835782635", - "20420579279401012439083108" + "54624519673323169455401022", + "7139257799971106933405357", + "41757051750643535948381626" ], "fpReserves": [ - "14486729302089908864410195", - "15587836412327980753171200" + "3940405365210456794683367", + "4634632699620992739138508" ], - "mAssetSupply": "113601473545317998179607246", - "LPTokenSupply": "29751826511337674123425073" + "mAssetSupply": "103093543906236690041285165", + "LPTokenSupply": "8340465531964219881188680" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1096281804318203904", - "outputQty0": "1100238406608735941", - "outputQty": "1088705720192904958", + "inputIndex": 1, + "inputQty": "302516641812443234304", + "outputQty0": "324667855992621972840", + "outputQty": "315971856911765789209", "mpReserves": [ - "65023529157812408561633722", - "28214088113732123835782635", - "20420580375682816757287012" + "54624519673323169455401022", + "7139560316612919376639661", + "41757051750643535948381626" ], "fpReserves": [ - "14486730402328315473146136", - "15587836412327980753171200" + "3940730033066449416656207", + "4634632699620992739138508" ], - "mAssetSupply": "113601474645556404788343187", - "LPTokenSupply": "29751827600043394316330031" + "mAssetSupply": "103093868574092682663258005", + "LPTokenSupply": "8340781503821131646977889" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "1763685164580400713957376", - "outputQty0": "1780890992401694819693790", - "outputQty": "1777851280567411816023981", - "swapFee1": "1058211098748240428374", - "swapFee2": "712356396960677927877", + "inputQty": "864198394986404656447488", + "outputQty0": "887014694216679219075529", + "outputQty": "818928622641802326366530", + "swapFee1": "518519036991842793868", + "swapFee2": "532208816530007531445", "mpReserves": [ - "65023529157812408561633722", - "26436236833164712019758654", - "20420580375682816757287012" + "54624519673323169455401022", + "6320631693971117050273131", + "41757051750643535948381626" ], "fpReserves": [ - "12705839409926620653452346", - "15587836412327980753171200" + "3053715338849770197580678", + "4634632699620992739138508" ], - "mAssetSupply": "111821296009551670646577274", - "LPTokenSupply": "27988248256572868426415492" + "mAssetSupply": "102207386088692533451713921", + "LPTokenSupply": "7476634960738426174809787" }, { - "type": "swap_fp_to_mp", - "inputQty": "2559828937146146816", - "outputIndex": 1, - "outputQty": "2551507317535050000", - "swapFee": "0", - "redemptionFee": "1022522243654900", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1617973055394102116352", + "outputQty0": "1596809177886365623481", + "outputQty": "1600267215258034377914", + "swapFee": "1244491448474667123", "mpReserves": [ - "65023529157812408561633722", - "26436234281657394484708654", - "20420580375682816757287012" + "54626137646378563557517374", + "6320631693971117050273131", + "41757051750643535948381626" ], "fpReserves": [ - "12705836853621011516201872", - "15587838972156917899318016" + "3055312148027656563204159", + "4633032432405734704760594" ], - "mAssetSupply": "111821293454268583752981700", - "LPTokenSupply": "27988248256572868426415492" + "mAssetSupply": "102208982897870419817337402", + "LPTokenSupply": "7476635085187571022276499" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "11525129275728828825600", - "outputQty0": "11565570135620157770970", - "outputQty": "11572179008584458470838", - "swapFee": "9159506362766983121", - "mpReserves": [ - "65023529157812408561633722", - "26436234281657394484708654", - "20432105504958545586112612" - ], - "fpReserves": [ - "12717402423756631673972842", - "15576266793148333440847178" - ], - "mAssetSupply": "111832859024404203910752670", - "LPTokenSupply": "27988249172523504703113804" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1694122493592140513280", - "outputQty0": "1689698600869625841083", - "outputQty": "1672715369917413233311", + "inputQty": "50908226245927387136", + "outputQty0": "50459949606566619372", + "outputQty": "50569041569625282165", + "swapFee": "39326413319174313", "mpReserves": [ - "65025223280306000702147002", - "26436234281657394484708654", - "20432105504958545586112612" + "54626137646378563557517374", + "6320631693971117050273131", + "41757102658869781875768762" ], "fpReserves": [ - "12719092122357501299813925", - "15576266793148333440847178" + "3055362607977263129823531", + "4632981863364165079478429" ], - "mAssetSupply": "111834548723005073536593753", - "LPTokenSupply": "27989921887893422116347115" + "mAssetSupply": "102209033357820026383956774", + "LPTokenSupply": "7476635089120212354193930" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "67418065871541528", - "outputQty0": "67242012418404516", - "outputQty": "66566143213742886", + "type": "redeem", + "outputIndex": 1, + "inputQty": "118588918644942787575808", + "outputQty0": "121644475483362298963199", + "outputQty": "111069079971131913796443", + "swapFee1": "71153351186965672545", + "swapFee2": "72986685290017379377", "mpReserves": [ - "65025223347724066573688530", - "26436234281657394484708654", - "20432105504958545586112612" + "54626137646378563557517374", + "6209562613999985136476688", + "41757102658869781875768762" ], "fpReserves": [ - "12719092189599513718218441", - "15576266793148333440847178" + "2933718132493900830860332", + "4632981863364165079478429" ], - "mAssetSupply": "111834548790247085954998269", - "LPTokenSupply": "27989921954459565330090001" + "mAssetSupply": "102087461869021954102372952", + "LPTokenSupply": "7358053285810388263185376" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "738069910023860912128", - "outputQty0": "745116368655588327376", - "outputQty": "746768393222253963057", - "swapFee1": "442841946014316547", - "swapFee2": "298046547462235330", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "5236005041355080704", + "outputQty0": "5739752455843140911", + "outputQty": "5754093949139604056", + "swapFee": "4474200124534467", "mpReserves": [ - "65024476579330844319725473", - "26436234281657394484708654", - "20432105504958545586112612" + "54626137646378563557517374", + "6209567850005026491557392", + "41757102658869781875768762" ], "fpReserves": [ - "12718347073230858129891065", - "15576266793148333440847178" + "2933723872246356674001243", + "4632976109270215939874373" ], - "mAssetSupply": "111833803971924977828906223", - "LPTokenSupply": "27989183928833736070609527" + "mAssetSupply": "102087467608774409945513863", + "LPTokenSupply": "7358053286257808275638822" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "543837770462473027584", - "outputQty0": "549029767984201226555", - "outputQty": "547998812267507417992", - "swapFee1": "326302662277483816", - "swapFee2": "219611907193680490", + "type": "swap_fp_to_mp", + "inputQty": "568705349718777200640", + "outputIndex": 2, + "outputQty": "571630868049848313219", + "swapFee": "0", + "redemptionFee": "340099998851739187", "mpReserves": [ - "65024476579330844319725473", - "26435686282845126977290662", - "20432105504958545586112612" + "54626137646378563557517374", + "6209567850005026491557392", + "41756531028001732027455543" ], "fpReserves": [ - "12717798043462873928664510", - "15576266793148333440847178" + "2933157038914937108688079", + "4633544814619934717075013" ], - "mAssetSupply": "111833255161768900821360158", - "LPTokenSupply": "27988640123693539825330324" + "mAssetSupply": "102086901115542989231939886", + "LPTokenSupply": "7358053286257808275638822" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "5347631880066817851392", "outputIndex": 2, - "inputQty": "36528428156087699505152", - "outputQty0": "36876955731701126730113", - "outputQty": "36733118650034331523152", - "swapFee1": "21917056893652619703", - "swapFee2": "14750782292680450692", + "outputQty": "5375061223897853512634", + "swapFee": "0", + "redemptionFee": "3197972988660780203", "mpReserves": [ - "65024476579330844319725473", - "26435686282845126977290662", - "20395372386308511254589460" + "54626137646378563557517374", + "6209567850005026491557392", + "41751155966777834173942909" ], "fpReserves": [ - "12680921087731172801934397", - "15576266793148333440847178" + "2927827083933835808349593", + "4638892446500001534926405" ], - "mAssetSupply": "111796392956819492375080737", - "LPTokenSupply": "27952113887243141491087142" + "mAssetSupply": "102081574358534876592381603", + "LPTokenSupply": "7358053286257808275638822" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "2834677475144501821440", "outputIndex": 1, - "inputQty": "3888501089929709223936", - "outputQty0": "3925580876492146200823", - "outputQty": "3918215473036697886894", - "swapFee1": "2333100653957825534", - "swapFee2": "1570232350596858480", + "outputQty": "2575681142100708406708", + "swapFee": "0", + "redemptionFee": "1695151761143638116", "mpReserves": [ - "65024476579330844319725473", - "26431768067372090279403768", - "20395372386308511254589460" + "54626137646378563557517374", + "6206992168862925783150684", + "41751155966777834173942909" ], "fpReserves": [ - "12676995506854680655733574", - "15576266793148333440847178" + "2925001830998596411488411", + "4641727123975146036747845" ], - "mAssetSupply": "111792468946175350825738394", - "LPTokenSupply": "27948225619463277177645759" + "mAssetSupply": "102078750800751398339158537", + "LPTokenSupply": "7358053286257808275638822" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "241092228890144440320", - "outputQty0": "241941221376010946784", - "outputQty": "242083419574902991844", - "swapFee": "191609795042075134", + "inputQty": "664116041665709795704832", + "outputQty0": "658075064102852525815904", + "outputQty": "658836923798591499851858", + "swapFee": "512733894198603149792", "mpReserves": [ - "65024476579330844319725473", - "26431768067372090279403768", - "20395613478537401399029780" + "54626137646378563557517374", + "6206992168862925783150684", + "42415272008443543969647741" ], "fpReserves": [ - "12677237448076056666680358", - "15576024709728758537855334" + "3583076895101448937304315", + "3982890200176554536895987" ], - "mAssetSupply": "111792710887396726836685178", - "LPTokenSupply": "27948225638624256681853272" + "mAssetSupply": "102736825864854250864974441", + "LPTokenSupply": "7358104559647228135953801" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "176692096723593003008", - "outputQty0": "178376916253335856335", - "outputQty": "178773148509960627598", - "swapFee1": "106015258034155801", - "swapFee2": "71350766501334342", + "type": "mint", + "inputIndex": 1, + "inputQty": "10257759415035412611072", + "outputQty0": "11255192372675963520988", + "outputQty": "10949969325802313103212", "mpReserves": [ - "65024297806182334359097875", - "26431768067372090279403768", - "20395613478537401399029780" + "54626137646378563557517374", + "6217249928277961195761756", + "42415272008443543969647741" ], "fpReserves": [ - "12677059071159803330824023", - "15576024709728758537855334" + "3594332087474124900825303", + "3982890200176554536895987" ], - "mAssetSupply": "111792532581831240002163185", - "LPTokenSupply": "27948048957129058892265844" + "mAssetSupply": "102748081057226926828495429", + "LPTokenSupply": "7369054528973030449057013" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "119615026805234800263168", - "outputQty0": "120033311798446717172584", - "outputQty": "120096685391342627166362", - "swapFee": "95060862698155937940", + "type": "swap_fp_to_mp", + "inputQty": "31949580436455993376768", + "outputIndex": 0, + "outputQty": "32335568505575230918453", + "swapFee": "0", + "redemptionFee": "19155576225680601455", "mpReserves": [ - "65024297806182334359097875", - "26431768067372090279403768", - "20515228505342636199292948" + "54593802077872988326598921", + "6217249928277961195761756", + "42415272008443543969647741" ], "fpReserves": [ - "12797092382958250047996607", - "15455928024337415910688972" + "3562406127097990565066563", + "4014839780613010530272755" ], - "mAssetSupply": "111912565893629686719335769", - "LPTokenSupply": "27948058463215328707859638" + "mAssetSupply": "102716174252427018173338144", + "LPTokenSupply": "7369054528973030449057013" }, { "type": "swap_fp_to_mp", - "inputQty": "378075169173831728234496", - "outputIndex": 2, - "outputQty": "376038673720744919363552", + "inputQty": "148057608345787712", + "outputIndex": 0, + "outputQty": "149837084350619980", "swapFee": "0", - "redemptionFee": "151009843172539689212", + "redemptionFee": "88763838486691", "mpReserves": [ - "65024297806182334359097875", - "26431768067372090279403768", - "20139189831621891279929396" + "54593801928035903975978941", + "6217249928277961195761756", + "42415272008443543969647741" ], "fpReserves": [ - "12419567775026900824964674", - "15834003193511247638923468" + "3562405979158259753914466", + "4014839928670618876060467" ], - "mAssetSupply": "111535192295541510035993048", - "LPTokenSupply": "27948058463215328707859638" + "mAssetSupply": "102716174104576051200672738", + "LPTokenSupply": "7369054528973030449057013" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "217629052896258060976128", - "outputQty0": "218408772131205743131127", - "outputQty": "218569764441045589770425", - "swapFee": "172991313886306718328", + "type": "swap_fp_to_mp", + "inputQty": "179920825503162751254528", + "outputIndex": 0, + "outputQty": "182019206365354335267404", + "swapFee": "0", + "redemptionFee": "107831455027104355318", "mpReserves": [ - "65024297806182334359097875", - "26431768067372090279403768", - "20356818884518149340905524" + "54411782721670549640711537", + "6217249928277961195761756", + "42415272008443543969647741" ], "fpReserves": [ - "12637976547158106568095801", - "15615433429070202049153043" + "3382686887446419161716401", + "4194760754173781627314995" ], - "mAssetSupply": "111753601067672715779124175", - "LPTokenSupply": "27948075762346717338531470" + "mAssetSupply": "102536562844319237712829991", + "LPTokenSupply": "7369054528973030449057013" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2802635492665183", - "outputQty0": "2812549431534679", - "outputQty": "2784348791048397", + "inputIndex": 1, + "inputQty": "1135263851036867166208", + "outputQty0": "1244932349973877264986", + "outputQty": "1211667143482975433389", "mpReserves": [ - "65024297806182334359097875", - "26431768067372090279403768", - "20356818887320784833570707" + "54411782721670549640711537", + "6218385192128998062927964", + "42415272008443543969647741" ], "fpReserves": [ - "12637976549970655999630480", - "15615433429070202049153043" + "3383931819796393038981387", + "4194760754173781627314995" ], - "mAssetSupply": "111753601070485265210658854", - "LPTokenSupply": "27948075765131066129579867" + "mAssetSupply": "102537807776669211590094977", + "LPTokenSupply": "7370266196116513424490402" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "691959716476457975808", - "outputQty0": "698548616923246191767", - "outputQty": "697239088029481010596", - "swapFee1": "415175829885874785", - "swapFee2": "279419446769298476", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "54683244400704833454080", + "outputQty0": "59919855638560613391525", + "outputQty": "59952105546412076063353", + "swapFee": "46653398369718618970", "mpReserves": [ - "65024297806182334359097875", - "26431070828284060798393172", - "20356818887320784833570707" + "54411782721670549640711537", + "6273068436529702896382044", + "42415272008443543969647741" ], "fpReserves": [ - "12637278001353732753438713", - "15615433429070202049153043" + "3443851675434953652372912", + "4134808648627369551251642" ], - "mAssetSupply": "111752902801287788733765563", - "LPTokenSupply": "27947383846932172660191537" + "mAssetSupply": "102597727632307772203486502", + "LPTokenSupply": "7370270861456350396352299" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "15805210800218297073664", - "outputQty0": "15763798176282296458548", - "outputQty": "15605704567094618399307", + "inputQty": "104288988576888957960192", + "outputQty0": "102922913720688915799756", + "outputQty": "102947626917370558539294", + "swapFee": "80123501773494037859", "mpReserves": [ - "65040103016982552656171539", - "26431070828284060798393172", - "20356818887320784833570707" + "54516071710247438598671729", + "6273068436529702896382044", + "42415272008443543969647741" ], "fpReserves": [ - "12653041799530015049897261", - "15615433429070202049153043" + "3546774589155642568172668", + "4031861021709998992712348" ], - "mAssetSupply": "111768666599464071030224111", - "LPTokenSupply": "27962989551499267278590844" + "mAssetSupply": "102700650546028461119286258", + "LPTokenSupply": "7370278873806527745756084" }, { "type": "swap_fp_to_mp", - "inputQty": "3633225666007753293824", - "outputIndex": 1, - "outputQty": "3621261432922931330732", + "inputQty": "232388563705298505695232", + "outputIndex": 2, + "outputQty": "234073071314508788166349", "swapFee": "0", - "redemptionFee": "1451227243711539660", + "redemptionFee": "139254965579740302120", "mpReserves": [ - "65040103016982552656171539", - "26427449566851137867062440", - "20356818887320784833570707" + "54516071710247438598671729", + "6273068436529702896382044", + "42181198937129035181481392" ], "fpReserves": [ - "12649413731420736200745360", - "15619066654736209802446867" + "3314682979856075397972398", + "4264249585415297498407580" ], - "mAssetSupply": "111765039982582035892611870", - "LPTokenSupply": "27962989551499267278590844" + "mAssetSupply": "102468698191694473689388108", + "LPTokenSupply": "7370278873806527745756084" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "330135492229187952967680", - "outputQty0": "331281595721293828965446", - "outputQty": "331433290405395366060309", - "swapFee": "262354215780810398486", + "type": "swap_fp_to_mp", + "inputQty": "97113139762363346452480", + "outputIndex": 2, + "outputQty": "97751082202415029429798", + "swapFee": "0", + "redemptionFee": "58157230745042255423", "mpReserves": [ - "65040103016982552656171539", - "26427449566851137867062440", - "20686954379549972786538387" + "54516071710247438598671729", + "6273068436529702896382044", + "42083447854926620152051594" ], "fpReserves": [ - "12980695327142030029710806", - "15287633364330814436386558" + "3217754261947671638932447", + "4361362725177660844860060" ], - "mAssetSupply": "112096321578303329721577316", - "LPTokenSupply": "27963015786920845359630692" + "mAssetSupply": "102371827631016814972603580", + "LPTokenSupply": "7370278873806527745756084" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1247499892694568960", - "outputQty0": "1251748147540153241", - "outputQty": "1238962113467155093", + "inputIndex": 0, + "inputQty": "1576494052262332334080", + "outputQty0": "1555791875621505268004", + "outputQty": "1514742917165614375051", "mpReserves": [ - "65040103016982552656171539", - "26427449566851137867062440", - "20686955627049865481107347" + "54517648204299700931005809", + "6273068436529702896382044", + "42083447854926620152051594" ], "fpReserves": [ - "12980696578890177569864047", - "15287633364330814436386558" + "3219310053823293144200451", + "4361362725177660844860060" ], - "mAssetSupply": "112096322830051477261730557", - "LPTokenSupply": "27963017025882958826785785" + "mAssetSupply": "102373383422892436477871584", + "LPTokenSupply": "7371793616723693360131135" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "30313852648600239079424", - "outputQty0": "30359138266338768195888", - "outputQty": "30367646576473577572589", - "swapFee": "24039123016754300675", + "type": "swap_fp_to_mp", + "inputQty": "21498190044147411320832", + "outputIndex": 1, + "outputQty": "19581079377230851986682", + "swapFee": "0", + "redemptionFee": "12871450843014609562", "mpReserves": [ - "65040103016982552656171539", - "26457763419499738106141864", - "20686955627049865481107347" + "54517648204299700931005809", + "6253487357152472044395362", + "42083447854926620152051594" ], "fpReserves": [ - "13011055717156516338059935", - "15257265717754340858813969" + "3197857635751602128262481", + "4382860915221808256180892" ], - "mAssetSupply": "112126681968317816029926445", - "LPTokenSupply": "27963019429795260502215852" + "mAssetSupply": "102351943876271588476543176", + "LPTokenSupply": "7371793616723693360131135" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "423648148969827598336", - "outputQty0": "427770502357739087569", - "outputQty": "428707177174579250582", - "swapFee1": "254188889381896559", - "swapFee2": "171108200943095635", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "34791875950499663446016", + "outputQty0": "34333369668959167298540", + "outputQty": "34378213835006605249795", + "swapFee": "26742684574413088441", "mpReserves": [ - "65039674309805378076920957", - "26457763419499738106141864", - "20686955627049865481107347" + "54552440080250200594451825", + "6253487357152472044395362", + "42083447854926620152051594" ], "fpReserves": [ - "13010627946654158598972366", - "15257265717754340858813969" + "3232191005420561295561021", + "4348482701386801650931097" ], - "mAssetSupply": "112126254368923659233934511", - "LPTokenSupply": "27962595807065179612807171" + "mAssetSupply": "102386277245940547643841716", + "LPTokenSupply": "7371796290992150801439979" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "4832834109241001", - "outputQty0": "4840038863979110", - "outputQty": "4790520425465614", + "inputQty": "2333169315400996093952", + "outputQty0": "2555382490597456525856", + "outputQty": "2558531810170119136645", + "swapFee": "1990297322049812571", "mpReserves": [ - "65039674309805378076920957", - "26457763424332572215382865", - "20686955627049865481107347" + "54552440080250200594451825", + "6255820526467873040489314", + "42083447854926620152051594" ], "fpReserves": [ - "13010627951494197462951476", - "15257265717754340858813969" + "3234746387911158752086877", + "4345924169576631531794452" ], - "mAssetSupply": "112126254373763698097913621", - "LPTokenSupply": "27962595811855700038272785" + "mAssetSupply": "102388832628431145100367572", + "LPTokenSupply": "7371796490021883006421236" }, { - "type": "swap_fp_to_mp", - "inputQty": "3049657550886644", + "type": "redeem", "outputIndex": 2, - "outputQty": "3034850134317224", - "swapFee": "0", - "redemptionFee": "1218563358342", + "inputQty": "99220491250208360890368", + "outputQty0": "101845326751485397512425", + "outputQty": "102708870079655643852225", + "swapFee1": "59532294750125016534", + "swapFee2": "61107196050891238507", "mpReserves": [ - "65039674309805378076920957", - "26457763424332572215382865", - "20686955624015015346790123" + "54552440080250200594451825", + "6255820526467873040489314", + "41980738984846964508199369" ], "fpReserves": [ - "13010627948447789067095658", - "15257265720803998409700613" + "3132901061159673354574452", + "4345924169576631531794452" ], - "mAssetSupply": "112126254370718508265416145", - "LPTokenSupply": "27962595811855700038272785" + "mAssetSupply": "102287048408875710594093654", + "LPTokenSupply": "7272581952001149658032521" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "133917662885714134564864", - "outputQty0": "134115499286829416203088", - "outputQty": "132740857835012724613336", + "inputIndex": 0, + "inputQty": "187725541845646671872", + "outputQty0": "185250537583560750593", + "outputQty": "180379000171585906976", "mpReserves": [ - "65039674309805378076920957", - "26591681087218286349947729", - "20686955624015015346790123" + "54552627805792046241123697", + "6255820526467873040489314", + "41980738984846964508199369" ], "fpReserves": [ - "13144743447734618483298746", - "15257265720803998409700613" + "3133086311697256915325045", + "4345924169576631531794452" ], - "mAssetSupply": "112260369870005337681619233", - "LPTokenSupply": "28095336669690712762886121" + "mAssetSupply": "102287233659413294154844247", + "LPTokenSupply": "7272762331001321243939497" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "200968737340261727731712", - "outputQty0": "202926133192941043022187", - "outputQty": "202544340474343735889516", - "swapFee1": "120581242404157036639", - "swapFee2": "81170453277176417208", + "outputIndex": 0, + "inputQty": "55025271304357484167168", + "outputQty0": "56475198463881235854327", + "outputQty": "57194914018814239591811", + "swapFee1": "33015162782614490500", + "swapFee2": "33885119078328741512", "mpReserves": [ - "65039674309805378076920957", - "26389136746743942614058213", - "20686955624015015346790123" + "54495432891773232001531886", + "6255820526467873040489314", + "41980738984846964508199369" ], "fpReserves": [ - "12941817314541677440276559", - "15257265720803998409700613" + "3076611113233375679470718", + "4345924169576631531794452" ], - "mAssetSupply": "112057524907265673815014254", - "LPTokenSupply": "27894379990474691450858072" + "mAssetSupply": "102230792346068491247731432", + "LPTokenSupply": "7217740361213242021221379" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2683499318827417075712", - "outputQty0": "2676552882905772685026", - "outputQty": "2677357633575862103704", - "swapFee": "2119367714091615732", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1082309079848876900352", + "outputQty0": "1110786907311278683213", + "outputQty": "1120190137816343894037", + "swapFee1": "649385447909326140", + "swapFee2": "666472144386767209", "mpReserves": [ - "65042357809124205493996669", - "26389136746743942614058213", - "20686955624015015346790123" + "54495432891773232001531886", + "6255820526467873040489314", + "41979618794709148164305332" ], "fpReserves": [ - "12944493867424583212961585", - "15254588363170422547596909" + "3075500326326064400787505", + "4345924169576631531794452" ], - "mAssetSupply": "112060201460148579587699280", - "LPTokenSupply": "27894380202411462860019645" + "mAssetSupply": "102229682225633324355815428", + "LPTokenSupply": "7216658117071937935253641" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "94908544612367238955008", - "outputQty0": "94662590117797617524305", - "outputQty": "94686554982809076638231", - "swapFee": "74955333347594919083", + "type": "swap_fp_to_mp", + "inputQty": "5048655286424096768", + "outputIndex": 0, + "outputQty": "5100670567515431136", + "swapFee": "0", + "redemptionFee": "3021916458013328", "mpReserves": [ - "65137266353736572732951677", - "26389136746743942614058213", - "20686955624015015346790123" + "54495427791102664486100750", + "6255820526467873040489314", + "41979618794709148164305332" ], "fpReserves": [ - "13039156457542380830485890", - "15159901808187613470958678" + "3075495289798634378574083", + "4345929218231917955891220" ], - "mAssetSupply": "112154864050266377205223585", - "LPTokenSupply": "27894387697944797619511553" + "mAssetSupply": "102229677192127810791615334", + "LPTokenSupply": "7216658117071937935253641" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "122395662677503737856", - "outputQty0": "123591325976104568377", - "outputQty": "123121612621711843085", - "swapFee1": "73437397606502242", - "swapFee2": "49436530390441827", + "type": "swap_fp_to_mp", + "inputQty": "202174524720749215744", + "outputIndex": 0, + "outputQty": "204257392432327890347", + "swapFee": "0", + "redemptionFee": "121013264123577809", "mpReserves": [ - "65137266353736572732951677", - "26389136746743942614058213", - "20686832502402393634947038" + "54495223533710232158210403", + "6255820526467873040489314", + "41979618794709148164305332" ], "fpReserves": [ - "13039032866216404725917513", - "15159901808187613470958678" + "3075293601025095082224199", + "4346131392756638705106964" ], - "mAssetSupply": "112154740508376931491097035", - "LPTokenSupply": "27894265309625859876423921" + "mAssetSupply": "102229475624367535618843259", + "LPTokenSupply": "7216658117071937935253641" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "28803019202634574725120", - "outputQty0": "28728269630579969087634", - "outputQty": "28733819695187108056929", - "swapFee": "22746526894300780300", + "inputQty": "299349364949250444623872", + "outputQty0": "295394763526000384733057", + "outputQty": "295692490577759136536420", + "swapFee": "230073203163788459807", "mpReserves": [ - "65166069372939207307676797", - "26389136746743942614058213", - "20686832502402393634947038" + "54794572898659482602834275", + "6255820526467873040489314", + "41979618794709148164305332" ], "fpReserves": [ - "13067761135846984695005147", - "15131167988492426362901749" + "3370688364551095466957256", + "4050438902178879568570544" ], - "mAssetSupply": "112183468778007511460184669", - "LPTokenSupply": "27894267584278549306501951" + "mAssetSupply": "102524870387893536003576316", + "LPTokenSupply": "7216681124392254314099621" }, { "type": "swap_fp_to_mp", - "inputQty": "3345098913225805312", + "inputQty": "63035672438772", "outputIndex": 0, - "outputQty": "3349181743666541324", + "outputQty": "63765294761482", "swapFee": "0", - "redemptionFee": "1336729518574878", + "redemptionFee": "37774774069", "mpReserves": [ - "65166066023757463641135473", - "26389136746743942614058213", - "20686832502402393634947038" + "54794572898595717308072793", + "6255820526467873040489314", + "41979618794709148164305332" ], "fpReserves": [ - "13067757794023188257808247", - "15131171333591339588707061" + "3370688364488137510175311", + "4050438902241915241009316" ], - "mAssetSupply": "112183465437520444541562647", - "LPTokenSupply": "27894267584278549306501951" + "mAssetSupply": "102524870387830615821568440", + "LPTokenSupply": "7216681124392254314099621" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "541869750433113178112", - "outputQty0": "540463015327901032368", - "outputQty": "534904825145169632392", + "inputIndex": 1, + "inputQty": "219973019260935700480", + "outputQty0": "240990922595377761039", + "outputQty": "234509586068188665796", "mpReserves": [ - "65166607893507896754313585", - "26389136746743942614058213", - "20686832502402393634947038" + "54794572898595717308072793", + "6256040499487133976189794", + "41979618794709148164305332" ], "fpReserves": [ - "13068298257038516158840615", - "15131171333591339588707061" + "3370929355410732887936350", + "4050438902241915241009316" ], - "mAssetSupply": "112184005900535772442595015", - "LPTokenSupply": "27894802489103694476134343" + "mAssetSupply": "102525111378753211199329479", + "LPTokenSupply": "7216915633978322502765417" }, { - "type": "swap_fp_to_mp", - "inputQty": "78681081453229984", - "outputIndex": 2, - "outputQty": "78305090235099774", - "swapFee": "0", - "redemptionFee": "31441627366796", + "type": "redeem", + "outputIndex": 0, + "inputQty": "45556766047272251162624", + "outputQty0": "46786539874696289160758", + "outputQty": "47386156309255980727901", + "swapFee1": "27334059628363350697", + "swapFee2": "28071923924817773496", "mpReserves": [ - "65166607893507896754313585", - "26389136746743942614058213", - "20686832424097303399847264" + "54747186742286461327344892", + "6256040499487133976189794", + "41979618794709148164305332" ], "fpReserves": [ - "13068298178434447741850127", - "15131171412272421041937045" + "3324142815536036598775592", + "4050438902241915241009316" ], - "mAssetSupply": "112184005821963145652971323", - "LPTokenSupply": "27894802489103694476134343" + "mAssetSupply": "102478352910802439727942217", + "LPTokenSupply": "7171361601337013087937862" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "766019372175635775488", - "outputQty0": "764030697642701516179", - "outputQty": "756173171461341800055", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1102969763080603828224", + "outputQty0": "1132716706572754499635", + "outputQty": "1147225532319744026339", + "swapFee1": "661781857848362296", + "swapFee2": "679630023943652699", "mpReserves": [ - "65167373912880072390089073", - "26389136746743942614058213", - "20686832424097303399847264" + "54746039516754141583318553", + "6256040499487133976189794", + "41979618794709148164305332" ], "fpReserves": [ - "13069062209132090443366306", - "15131171412272421041937045" + "3323010098829463844275957", + "4050438902241915241009316" ], - "mAssetSupply": "112184769852660788354487502", - "LPTokenSupply": "27895558662275155817934398" + "mAssetSupply": "102477220873725890917095281", + "LPTokenSupply": "7170258697752118268945867" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "41689154772479795200", - "outputQty0": "42097084816412531704", - "outputQty": "42016669190559641117", - "swapFee1": "25013492863487877", - "swapFee2": "16838833926565012", + "inputQty": "23523142460724949811200", + "outputQty0": "24157208225293882058751", + "outputQty": "22032649115190740900386", + "swapFee1": "14113885476434969886", + "swapFee2": "14494324935176329235", "mpReserves": [ - "65167373912880072390089073", - "26389094730074752054417096", - "20686832424097303399847264" + "54746039516754141583318553", + "6234007850371943235289408", + "41979618794709148164305332" ], "fpReserves": [ - "13069020112047274030834602", - "15131171412272421041937045" + "3298852890604169962217206", + "4050438902241915241009316" ], - "mAssetSupply": "112184727772414805868520810", - "LPTokenSupply": "27895516975621732624487985" + "mAssetSupply": "102453078159825532211365765", + "LPTokenSupply": "7146736966679940962631655" }, { "type": "swap_fp_to_mp", - "inputQty": "144806798241852544", + "inputQty": "1113105162619753725952", "outputIndex": 0, - "outputQty": "144983647607686465", + "outputQty": "1125855758807054696718", "swapFee": "0", - "redemptionFee": "57866046273030", + "redemptionFee": "666938616719674160", "mpReserves": [ - "65167373767896424782402608", - "26389094730074752054417096", - "20686832424097303399847264" + "54744913660995334528621835", + "6234007850371943235289408", + "41979618794709148164305332" ], "fpReserves": [ - "13069019967382158348257506", - "15131171557079219283789589" + "3297741326242970505283514", + "4051552007404534994735268" ], - "mAssetSupply": "112184727627807556232216744", - "LPTokenSupply": "27895516975621732624487985" + "mAssetSupply": "102451967262402949474106233", + "LPTokenSupply": "7146736966679940962631655" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "78415775166664556544", - "outputQty0": "78683694754987824890", - "outputQty": "77874479191091699511", + "type": "swap_fp_to_mp", + "inputQty": "380359648533517395034112", + "outputIndex": 0, + "outputQty": "384398926006797133143146", + "swapFee": "0", + "redemptionFee": "227724429999098898199", "mpReserves": [ - "65167373767896424782402608", - "26389094730074752054417096", - "20686910839872470064403808" + "54360514734988537395478689", + "6234007850371943235289408", + "41979618794709148164305332" ], "fpReserves": [ - "13069098651076913336082396", - "15131171557079219283789589" + "2918200609577805674950744", + "4431911655938052389769380" ], - "mAssetSupply": "112184806311502311220041634", - "LPTokenSupply": "27895594850100923716187496" + "mAssetSupply": "102072654270167783742671662", + "LPTokenSupply": "7146736966679940962631655" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "12836234407813255168", "outputIndex": 1, - "inputQty": "2800025283126646276096", - "outputQty0": "2827422574377688801566", - "outputQty": "2822020675771088620648", - "swapFee1": "1680015169875987765", - "swapFee2": "1130969029751075520", + "outputQty": "11677857936649668015", + "swapFee": "0", + "redemptionFee": "7678880964996906", "mpReserves": [ - "65167373767896424782402608", - "26386272709398980965796448", - "20686910839872470064403808" + "54360514734988537395478689", + "6233996172514006585621393", + "41979618794709148164305332" ], "fpReserves": [ - "13066271228502535647280830", - "15131171557079219283789589" + "2918187811442864013439677", + "4431924492172460203024548" ], - "mAssetSupply": "112181980019896963282315588", - "LPTokenSupply": "27892794992819314057510176" + "mAssetSupply": "102072641479711723046157501", + "LPTokenSupply": "7146736966679940962631655" }, { - "type": "swap_fp_to_mp", - "inputQty": "1288830948941323829248", - "outputIndex": 2, - "outputQty": "1282669699566161083367", - "swapFee": "0", - "redemptionFee": "515026911522102807", + "type": "mint", + "inputIndex": 2, + "inputQty": "263739987046394012631040", + "outputQty0": "261346690222321151334084", + "outputQty": "254518697691867749688367", "mpReserves": [ - "65167373767896424782402608", - "26386272709398980965796448", - "20685628170172903903320441" + "54360514734988537395478689", + "6233996172514006585621393", + "42243358781755542176936372" ], "fpReserves": [ - "13064983661223730390261886", - "15132460388028160607618837" + "3179534501665185164773761", + "4431924492172460203024548" ], - "mAssetSupply": "112180692967645069547399451", - "LPTokenSupply": "27892794992819314057510176" + "mAssetSupply": "102333988169934044197491585", + "LPTokenSupply": "7401255664371808712320022" }, { - "type": "swap_fp_to_mp", - "inputQty": "2526648014985854189568", - "outputIndex": 0, - "outputQty": "2529724476023486947882", - "swapFee": "0", - "redemptionFee": "1009666409799213196", + "type": "mint", + "inputIndex": 1, + "inputQty": "315955120565871907438592", + "outputQty0": "344770963761372547358288", + "outputQty": "335624549052677449344792", "mpReserves": [ - "65164844043420401295454726", - "26386272709398980965796448", - "20685628170172903903320441" + "54360514734988537395478689", + "6549951293079878493059985", + "42243358781755542176936372" ], "fpReserves": [ - "13062459495199232357271858", - "15134987036043146461808405" + "3524305465426557712132049", + "4431924492172460203024548" ], - "mAssetSupply": "112178169811286981313622619", - "LPTokenSupply": "27892794992819314057510176" + "mAssetSupply": "102678759133695416744849873", + "LPTokenSupply": "7736880213424486161664814" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "262195959557561371328512", - "outputQty0": "264750928822669919511323", - "outputQty": "263729983129301151629118", - "swapFee1": "157317575734536822797", - "swapFee2": "105900371529067967804", + "outputIndex": 1, + "inputQty": "148900410547017318400", + "outputQty0": "152897941870978907104", + "outputQty": "140588503810543629585", + "swapFee1": "89340246328210391", + "swapFee2": "91738765122587344", "mpReserves": [ - "65164844043420401295454726", - "26386272709398980965796448", - "20421898187043602751691323" + "54360514734988537395478689", + "6549810704576067949430400", + "42243358781755542176936372" ], "fpReserves": [ - "12797708566376562437760535", - "15134987036043146461808405" + "3524152567484686733224945", + "4431924492172460203024548" ], - "mAssetSupply": "111913524782835840462079100", - "LPTokenSupply": "27630614765019326139863943" + "mAssetSupply": "102678606327492310888530113", + "LPTokenSupply": "7736731321947963777167453" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "145590397764582", - "outputQty0": "145808695038950", - "outputQty": "144319664957028", + "type": "swap_fp_to_mp", + "inputQty": "36520762344895588335616", + "outputIndex": 1, + "outputQty": "33512786867319357889481", + "swapFee": "0", + "redemptionFee": "21877055780320044466", "mpReserves": [ - "65164844043420401295454726", - "26386272709544571363561030", - "20421898187043602751691323" + "54360514734988537395478689", + "6516297917708748591540919", + "42243358781755542176936372" ], "fpReserves": [ - "12797708566522371132799485", - "15134987036043146461808405" + "3487690807850819992446916", + "4468445254517355791360164" ], - "mAssetSupply": "111913524782981649157118050", - "LPTokenSupply": "27630614765163645804820971" + "mAssetSupply": "102642166444914224467796550", + "LPTokenSupply": "7736731321947963777167453" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "258731230146980", - "outputQty0": "261243870590737", - "outputQty": "260222564652009", - "swapFee1": "155238738088", - "swapFee2": "104497548236", + "outputIndex": 1, + "inputQty": "5988490891273274", + "outputQty0": "6148809705352092", + "outputQty": "5649222087981801", + "swapFee1": "3593094534763", + "swapFee2": "3689285823211", "mpReserves": [ - "65164844043420401295454726", - "26386272709544571363561030", - "20421898186783380187039314" + "54360514734988537395478689", + "6516297912059526503559118", + "42243358781755542176936372" ], "fpReserves": [ - "12797708566261127262208748", - "15134987036043146461808405" + "3487690801702010287094824", + "4468445254517355791360164" ], - "mAssetSupply": "111913524782720509784075549", - "LPTokenSupply": "27630614764904930098547799" + "mAssetSupply": "102642166438769104048267669", + "LPTokenSupply": "7736731315959832195347655" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "79170288352158", - "outputQty0": "78962532355892", - "outputQty": "78156149814777", + "inputIndex": 1, + "inputQty": "3480399136157159391232", + "outputQty0": "3785755090188932506053", + "outputQty": "3684828313759422431515", "mpReserves": [ - "65164844043499571583806884", - "26386272709544571363561030", - "20421898186783380187039314" + "54360514734988537395478689", + "6519778311195683662950350", + "42243358781755542176936372" ], "fpReserves": [ - "12797708566340089794564640", - "15134987036043146461808405" + "3491476556792199219600877", + "4468445254517355791360164" ], - "mAssetSupply": "111913524782799472316431441", - "LPTokenSupply": "27630614764983086248362576" + "mAssetSupply": "102645952193859292980773722", + "LPTokenSupply": "7740416144273591617779170" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "81575220171737350144", - "outputQty0": "81361153033885638537", - "outputQty": "81387475610692744582", - "swapFee": "64424219445455929", + "inputQty": "1947163783160140288", + "outputQty0": "1922674146308772821", + "outputQty": "1924357221454518234", + "swapFee": "1497129863444879", "mpReserves": [ - "65164925618719743321157028", - "26386272709544571363561030", - "20421898186783380187039314" + "54360516682152320555618977", + "6519778311195683662950350", + "42243358781755542176936372" ], "fpReserves": [ - "12797789927493123680203177", - "15134905648567535769063823" + "3491478479466345528373698", + "4468443330160134336841930" ], - "mAssetSupply": "111913606143952506202069978", - "LPTokenSupply": "27630614771425508192908168" + "mAssetSupply": "102645954116533439289546543", + "LPTokenSupply": "7740416144423304604123657" }, { - "type": "swap_fp_to_mp", - "inputQty": "150795675505981947904", - "outputIndex": 1, - "outputQty": "150340628652263432071", - "swapFee": "0", - "redemptionFee": "60250520815286387", + "type": "redeem", + "outputIndex": 2, + "inputQty": "5641664460858988544", + "outputQty0": "5792723483953662339", + "outputQty": "5839806149886032017", + "swapFee1": "3384998676515393", + "swapFee2": "3475634090372197", "mpReserves": [ - "65164925618719743321157028", - "26386122368915919100128959", - "20421898186783380187039314" + "54360516682152320555618977", + "6519778311195683662950350", + "42243352941949392290904355" ], "fpReserves": [ - "12797639301191085464235562", - "15135056444243041751011727" + "3491472686742861574711359", + "4468443330160134336841930" ], - "mAssetSupply": "111913455577900988801388750", - "LPTokenSupply": "27630614771425508192908168" + "mAssetSupply": "102645948327285589426256401", + "LPTokenSupply": "7740410503097343612786652" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "33471431921617436934144", - "outputQty0": "33796319001960409547131", - "outputQty": "33732104882872456993183", - "swapFee1": "20082859152970462160", - "swapFee2": "13518527600784163818", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "101852192212787111395328", + "outputQty0": "100968821082817069030557", + "outputQty": "101038854819110799944416", + "swapFee": "78616994045882143057", "mpReserves": [ - "65164925618719743321157028", - "26352390264033046643135776", - "20421898186783380187039314" + "54360516682152320555618977", + "6519778311195683662950350", + "42345205134162179402299683" ], "fpReserves": [ - "12763842982189125054688431", - "15135056444243041751011727" + "3592441507825678643741916", + "4367404475341023536897514" ], - "mAssetSupply": "111879672777426629176005437", - "LPTokenSupply": "27597145347789806053020240" + "mAssetSupply": "102746917148368406495286958", + "LPTokenSupply": "7740418364796748201000957" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "36151187010854680", - "outputQty0": "36278488424252188", - "outputQty": "36290887646497409", - "swapFee": "28726668207296", + "inputQty": "280685021960301376", + "outputQty0": "278246262284766281", + "outputQty": "278389259937432043", + "swapFee": "216616802752165", "mpReserves": [ - "65164925618719743321157028", - "26352390264033046643135776", - "20421898222934567197893994" + "54360516682152320555618977", + "6519778311195683662950350", + "42345205414847201362601059" ], "fpReserves": [ - "12763843018467613478940619", - "15135056407952154104514318" + "3592441786071940928508197", + "4367404196951763599465471" ], - "mAssetSupply": "111879672813705117600257625", - "LPTokenSupply": "27597145347792678719840969" + "mAssetSupply": "102746917426614668780053239", + "LPTokenSupply": "7740418364818409881276173" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "21444533444116641480704", - "outputQty0": "21476789216773361144260", - "outputQty": "21257592841497524556647", + "inputQty": "306070783231512704", + "outputQty0": "332958149058830432", + "outputQty": "333129264148106757", + "swapFee": "259210416932522", "mpReserves": [ - "65164925618719743321157028", - "26373834797477163284616480", - "20421898222934567197893994" + "54360516682152320555618977", + "6519778617266466894463054", + "42345205414847201362601059" ], "fpReserves": [ - "12785319807684386840084879", - "15135056407952154104514318" + "3592442119030089987338629", + "4367403863822499451358714" ], - "mAssetSupply": "111901149602921890961401885", - "LPTokenSupply": "27618402940634176244397616" + "mAssetSupply": "102746917759572817838883671", + "LPTokenSupply": "7740418364844330922969425" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "137555191091983745548288", - "outputQty0": "137759860139134483089727", - "outputQty": "136350718458670567648335", + "inputQty": "10426884146788063772672", + "outputQty0": "11341423907595285289430", + "outputQty": "11347026168769514302817", + "swapFee": "8829330670936313788", "mpReserves": [ - "65164925618719743321157028", - "26511389988569147030164768", - "20421898222934567197893994" + "54360516682152320555618977", + "6530205501413254958235726", + "42345205414847201362601059" ], "fpReserves": [ - "12923079667823521323174606", - "15135056407952154104514318" + "3603783542937685272628059", + "4356056837653729937055897" ], - "mAssetSupply": "112038909463061025444491612", - "LPTokenSupply": "27754753659092846812045951" + "mAssetSupply": "102758259183480413124173101", + "LPTokenSupply": "7740419247777398016600803" }, { "type": "swap_fp_to_mp", - "inputQty": "996057494229448916992", + "inputQty": "22467758854067", "outputIndex": 2, - "outputQty": "991107845491235966583", + "outputQty": "22621873651692", "swapFee": "0", - "redemptionFee": "398001825222683867", + "redemptionFee": "13463488614", "mpReserves": [ - "65164925618719743321157028", - "26511389988569147030164768", - "20420907115089075961927411" + "54360516682152320555618977", + "6530205501413254958235726", + "42345205414824579488949367" ], "fpReserves": [ - "12922084663260464613505557", - "15136052465446383553431310" + "3603783542915246124937263", + "4356056837676197695909964" ], - "mAssetSupply": "112037914856499793957506430", - "LPTokenSupply": "27754753659092846812045951" + "mAssetSupply": "102758259183457987439970919", + "LPTokenSupply": "7740419247777398016600803" }, { "type": "swap_fp_to_mp", - "inputQty": "142131303231552487424", - "outputIndex": 1, - "outputQty": "141715312763601595949", + "inputQty": "397623654884096640", + "outputIndex": 0, + "outputQty": "401923711090537341", "swapFee": "0", - "redemptionFee": "56792390917665692", + "redemptionFee": "238270384750804", "mpReserves": [ - "65164925618719743321157028", - "26511248273256383428568819", - "20420907115089075961927411" + "54360516280228609465081636", + "6530205501413254958235726", + "42345205414824579488949367" ], "fpReserves": [ - "12921942682283170449275160", - "15136194596749615105918734" + "3603783145797938206928997", + "4356057235299852580006604" ], - "mAssetSupply": "112037772932314890710941725", - "LPTokenSupply": "27754753659092846812045951" + "mAssetSupply": "102758258786578949906713457", + "LPTokenSupply": "7740419247777398016600803" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "314649569022720344064000", - "outputQty0": "313823449215490706074177", - "outputQty": "313856464975848711421116", - "swapFee": "248474979102042630617", + "inputIndex": 1, + "inputQty": "96943066384717168640", + "outputQty0": "105432528423524512606", + "outputQty": "105482487829669890670", + "swapFee": "82078133489317373", "mpReserves": [ - "65479575187742463665221028", - "26511248273256383428568819", - "20420907115089075961927411" + "54360516280228609465081636", + "6530302444479639675404366", + "42345205414824579488949367" ], "fpReserves": [ - "13235766131498661155349337", - "14822338131773766394497618" + "3603888578326361731441603", + "4355951752812022910115934" ], - "mAssetSupply": "112351596381530381417015902", - "LPTokenSupply": "27754778506590757016309012" + "mAssetSupply": "102758364219107373431226063", + "LPTokenSupply": "7740419255985211365532540" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "886951835691000281432064", - "outputQty0": "889956299593263608862953", - "outputQty": "880584516824667716247190", + "inputQty": "40987703763483492352", + "outputQty0": "40632241485168807905", + "outputQty": "40651484732549679155", + "swapFee": "31631774341311315", "mpReserves": [ - "65479575187742463665221028", - "26511248273256383428568819", - "21307858950780076243359475" + "54360516280228609465081636", + "6530302444479639675404366", + "42345246402528342972441719" ], "fpReserves": [ - "14125722431091924764212290", - "14822338131773766394497618" + "3603929210567846900249508", + "4355911101327290360436779" ], - "mAssetSupply": "113241552681123645025878855", - "LPTokenSupply": "28635363023415424732556202" + "mAssetSupply": "102758404851348858600033968", + "LPTokenSupply": "7740419259148388799663671" }, { "type": "swap_fp_to_mp", - "inputQty": "9707975717055144", - "outputIndex": 1, - "outputQty": "9686066121469378", + "inputQty": "21234301069863935803392", + "outputIndex": 0, + "outputQty": "21463078999620466393261", "swapFee": "0", - "redemptionFee": "3881951361287", - "mpReserves": [ - "65479575187742463665221028", - "26511248263570317307099441", - "21307858950780076243359475" - ], - "fpReserves": [ - "14125722421387046360994422", - "14822338141481742111552762" - ], - "mAssetSupply": "113241552671422648574022274", - "LPTokenSupply": "28635363023415424732556202" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "492178001681903572221952", - "outputQty0": "497142483735211098794512", - "outputQty": "496153447809323763330842", - "swapFee1": "295306801009142143333", - "swapFee2": "198856993494084439517", + "redemptionFee": "12723888271257322239", "mpReserves": [ - "65479575187742463665221028", - "26015094815760993543768599", - "21307858950780076243359475" + "54339053201228988998688375", + "6530302444479639675404366", + "42345246402528342972441719" ], "fpReserves": [ - "13628579937651835262199910", - "14822338141481742111552762" + "3582722730115751363183234", + "4377145402397154296240171" ], - "mAssetSupply": "112744609044680931559667279", - "LPTokenSupply": "28143214552413622074548583" + "mAssetSupply": "102737211094785034320289933", + "LPTokenSupply": "7740419259148388799663671" }, { "type": "mint", "inputIndex": 1, - "inputQty": "10990023308174247854080", - "outputQty0": "11008085118429249142468", - "outputQty": "10892178505262275643094", + "inputQty": "488040817485308518989824", + "outputQty0": "527849839815568439283925", + "outputQty": "513545303759308219738479", "mpReserves": [ - "65479575187742463665221028", - "26026084839069167791622679", - "21307858950780076243359475" + "54339053201228988998688375", + "7018343261964948194394190", + "42345246402528342972441719" ], "fpReserves": [ - "13639588022770264511342378", - "14822338141481742111552762" + "4110572569931319802467159", + "4377145402397154296240171" ], - "mAssetSupply": "112755617129799360808809747", - "LPTokenSupply": "28154106730918884350191677" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "22900712753160790016", - "outputIndex": 2, - "outputQty": "22806104128540407663", - "swapFee": "0", - "redemptionFee": "9155227226172388", - "mpReserves": [ - "65479575187742463665221028", - "26026084839069167791622679", - "21307836144675947702951812" - ], - "fpReserves": [ - "13639565134702199080370277", - "14822361042194495272342778" - ], - "mAssetSupply": "112755594250886522604010034", - "LPTokenSupply": "28154106730918884350191677" + "mAssetSupply": "103265060934600602759573858", + "LPTokenSupply": "8253964562907697019402150" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "102957541162247790788608", - "outputQty0": "102692017127582211004996", - "outputQty": "102661600748072972056035", - "swapFee": "81287426856042833828", + "inputQty": "147146561647516483584", + "outputQty0": "145431298657420160500", + "outputQty": "145375500382957908474", + "swapFee": "113165186247155152", "mpReserves": [ - "65582532728904711456009636", - "26026084839069167791622679", - "21307836144675947702951812" + "54339200347790636515171959", + "7018343261964948194394190", + "42345246402528342972441719" ], "fpReserves": [ - "13742257151829781291375273", - "14719699441446422300286743" + "4110718001229977222627659", + "4377000026896771338331697" ], - "mAssetSupply": "112858286268014104815015030", - "LPTokenSupply": "28154114859661569954475059" + "mAssetSupply": "103265206365899260179734358", + "LPTokenSupply": "8253964574224215644117665" }, { "type": "swap_fp_to_mp", - "inputQty": "2701959930182219857920", - "outputIndex": 0, - "outputQty": "2706632948614251100265", + "inputQty": "874274736097682304", + "outputIndex": 2, + "outputQty": "880406727168512020", "swapFee": "0", - "redemptionFee": "1080289957464597672", + "redemptionFee": "524346487024242", "mpReserves": [ - "65579826095956097204909371", - "26026084839069167791622679", - "21307836144675947702951812" + "54339200347790636515171959", + "7018343261964948194394190", + "42345245522121615803929699" ], "fpReserves": [ - "13739556426936119797195263", - "14722401401376604520144663" + "4110717127319165515557214", + "4377000901171507436014001" ], - "mAssetSupply": "112855586623410400785432692", - "LPTokenSupply": "28154114859661569954475059" + "mAssetSupply": "103265205492512794959688155", + "LPTokenSupply": "8253964574224215644117665" }, { "type": "swap_fp_to_mp", - "inputQty": "177699528526598993084416", + "inputQty": "725037004169249280", "outputIndex": 1, - "outputQty": "177236565257643733703106", + "outputQty": "673132461173481954", "swapFee": "0", - "redemptionFee": "71041305542455509320", + "redemptionFee": "434841119670747", "mpReserves": [ - "65579826095956097204909371", - "25848848273811524057919573", - "21307836144675947702951812" + "54339200347790636515171959", + "7018342588832487020912236", + "42345245522121615803929699" ], "fpReserves": [ - "13561953163079981023895028", - "14900100929903203513229079" + "4110716402583966064311904", + "4377001626208511605263281" ], - "mAssetSupply": "112678054400859804467641777", - "LPTokenSupply": "28154114859661569954475059" + "mAssetSupply": "103265204768212436628113592", + "LPTokenSupply": "8253964574224215644117665" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "88536981140484135059456", - "outputQty0": "88307083613905735181275", - "outputQty": "88287970808692032877173", - "swapFee": "69903418034889212930", + "inputQty": "310078999094112785793024", + "outputQty0": "306451968647895032034624", + "outputQty": "306187599475539217298868", + "swapFee": "238431623114763252705", "mpReserves": [ - "65668363077096581339968827", - "25848848273811524057919573", - "21307836144675947702951812" + "54649279346884749300964983", + "7018342588832487020912236", + "42345245522121615803929699" ], "fpReserves": [ - "13650260246693886759076303", - "14811812959094511480351906" + "4417168371231861096346528", + "4070814026732972387964413" ], - "mAssetSupply": "112766361484473710202823052", - "LPTokenSupply": "28154121850003373443396352" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "830653372026505", - "outputQty0": "832060016827228", - "outputQty": "831845378795207", - "swapFee": "658631730673", - "mpReserves": [ - "65668363077096581339968827", - "25848848274642177429946078", - "21307836144675947702951812" - ], - "fpReserves": [ - "13650260247525946775903531", - "14811812958262666101556699" - ], - "mAssetSupply": "112766361485305770219650280", - "LPTokenSupply": "28154121850003439306569419" + "mAssetSupply": "103571656736860331660148216", + "LPTokenSupply": "8253988417386527120442935" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "231451452628413184", - "outputQty0": "233776712174163339", - "outputQty": "232937309041841094", - "swapFee1": "138870871577047", - "swapFee2": "93510684869665", + "outputIndex": 0, + "inputQty": "785504278360543199232", + "outputQty0": "807497801433171507086", + "outputQty": "816597941413154789879", + "swapFee1": "471302567016325919", + "swapFee2": "484498680859902904", "mpReserves": [ - "65668363077096581339968827", - "25848848274642177429946078", - "21307835911738638661110718" + "54648462748943336146175104", + "7018342588832487020912236", + "42345245522121615803929699" ], "fpReserves": [ - "13650260013749234601740192", - "14811812958262666101556699" + "4416360873430427924839442", + "4070814026732972387964413" ], - "mAssetSupply": "112766361251622568730356606", - "LPTokenSupply": "28154121618565873765313939" + "mAssetSupply": "103570849723557579348544034", + "LPTokenSupply": "8253202960238423278876294" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "16831038342476791808", - "outputQty0": "16787290091974779584", - "outputQty": "16782959515538835095", - "swapFee": "13288274499423990", + "inputQty": "1219212081978921984", + "outputQty0": "1204901977549792726", + "outputQty": "1203286856419301568", + "swapFee": "937105226804349", "mpReserves": [ - "65668379908134923816760635", - "25848848274642177429946078", - "21307835911738638661110718" + "54648463968155418125097088", + "7018342588832487020912236", + "42345245522121615803929699" ], "fpReserves": [ - "13650276801039326576519776", - "14811796175303150562721604" + "4416362078332405474632168", + "4070812823446115968662845" ], - "mAssetSupply": "112766378038912660705136190", - "LPTokenSupply": "28154121619894701215256338" + "mAssetSupply": "103570850928459556898336760", + "LPTokenSupply": "8253202960332133801556728" }, { - "type": "swap_fp_to_mp", - "inputQty": "215216165278161095884800", - "outputIndex": 1, - "outputQty": "214623141284759693910602", - "swapFee": "0", - "redemptionFee": "86031070364798297908", - "mpReserves": [ - "65668379908134923816760635", - "25634225133357417736035476", - "21307835911738638661110718" - ], - "fpReserves": [ - "13435199125127330831748982", - "15027012340581311658606404" - ], - "mAssetSupply": "112551386394071029758663304", - "LPTokenSupply": "28154121619894701215256338" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "166308749773031788773376", - "outputQty0": "167957931462024869169622", - "outputQty": "167595865474832755103297", - "swapFee1": "99785249863819073264", - "swapFee2": "67183172584809947667", + "type": "mint", + "inputIndex": 0, + "inputQty": "1075670596591757295616", + "outputQty0": "1063045113108589446291", + "outputQty": "1033470735447575311657", "mpReserves": [ - "65668379908134923816760635", - "25466629267882584980932179", - "21307835911738638661110718" + "54649539638752009882392704", + "7018342588832487020912236", + "42345245522121615803929699" ], "fpReserves": [ - "13267241193665305962579360", - "15027012340581311658606404" + "4417425123445514064078459", + "4070812823446115968662845" ], - "mAssetSupply": "112383495645781589699441349", - "LPTokenSupply": "27987822848646655808390288" + "mAssetSupply": "103571913973572665487783051", + "LPTokenSupply": "8254236431067581376868385" }, { "type": "swap_fp_to_mp", - "inputQty": "9705339674622462787584", + "inputQty": "5757143975225911672832", "outputIndex": 2, - "outputQty": "9662593020272573314815", + "outputQty": "5802933858837794579834", "swapFee": "0", - "redemptionFee": "3878896476794182436", + "redemptionFee": "3456129991672453237", "mpReserves": [ - "65668379908134923816760635", - "25466629267882584980932179", - "21298173318718366087795903" + "54649539638752009882392704", + "7018342588832487020912236", + "42339442588262778009349865" ], "fpReserves": [ - "13257543952473320506488452", - "15036717680255934121393988" + "4411664906792726642016720", + "4076569967421341880335677" ], - "mAssetSupply": "112373802283486081037532877", - "LPTokenSupply": "27987822848646655808390288" + "mAssetSupply": "103566157213049869738174549", + "LPTokenSupply": "8254236431067581376868385" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "3913982117907898302464", - "outputQty0": "3903699317151852623592", - "outputQty": "3903844698258045571164", - "swapFee": "3090512980118574590", + "type": "redeem", + "outputIndex": 1, + "inputQty": "4248735542714361184256", + "outputQty0": "4367654252595166343944", + "outputQty": "4054542662944453251296", + "swapFee1": "2549241325628616710", + "swapFee2": "2620592551557099806", "mpReserves": [ - "65672293890252831715063099", - "25466629267882584980932179", - "21298173318718366087795903" + "54649539638752009882392704", + "7014288046169542567660940", + "42339442588262778009349865" ], "fpReserves": [ - "13261447651790472359112044", - "15032813835557676075822824" + "4407297252540131475672776", + "4076569967421341880335677" ], - "mAssetSupply": "112377705982803232890156469", - "LPTokenSupply": "27987823157697953820247747" + "mAssetSupply": "103561792179389826128930411", + "LPTokenSupply": "8249987950448999578545800" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "4844728020029469097984", - "outputQty0": "4860161621819516130733", - "outputQty": "4809655559934213545751", - "mpReserves": [ - "65672293890252831715063099", - "25466629267882584980932179", - "21303018046738395556893887" - ], - "fpReserves": [ - "13266307813412291875242777", - "15032813835557676075822824" - ], - "mAssetSupply": "112382566144425052406287202", - "LPTokenSupply": "27992632813257888033793498" - }, - { - "type": "redeem", - "outputIndex": 2, - "inputQty": "108030469259500", - "outputQty0": "109099466992518", - "outputQty": "108709613623540", - "swapFee1": "64818281555", - "swapFee2": "43639786797", + "inputQty": "1158894587743200", + "outputQty0": "1149668070551626", + "outputQty": "1148153562458517", + "swapFee": "894157078652", "mpReserves": [ - "65672293890252831715063099", - "25466629267882584980932179", - "21303018046629685943270347" + "54649539638752009882392704", + "7014288046169542567660940", + "42339442589421672597093065" ], "fpReserves": [ - "13266307813303192408250259", - "15032813835557676075822824" + "4407297253689799546224402", + "4076569966273188317877160" ], - "mAssetSupply": "112382566144315996579081481", - "LPTokenSupply": "27992632813149864046362153" + "mAssetSupply": "103561792180539494199482037", + "LPTokenSupply": "8249987950449088994253665" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "733597235963393", - "outputQty0": "731670200313126", - "outputQty": "731694270517968", - "swapFee": "579253055256", + "inputQty": "198126444105298517950464", + "outputQty0": "195794410318215855361047", + "outputQty": "195475658813165947812783", + "swapFee": "152268924955394202217", "mpReserves": [ - "65672293890986428951026492", - "25466629267882584980932179", - "21303018046629685943270347" + "54847666082857308400343168", + "7014288046169542567660940", + "42339442589421672597093065" ], "fpReserves": [ - "13266307814034862608563385", - "15032813834825981805304856" + "4603091664008015401585449", + "3881094307460022370064377" ], - "mAssetSupply": "112382566145047666779394607", - "LPTokenSupply": "27992632813149921971667678" + "mAssetSupply": "103757586590857710054843084", + "LPTokenSupply": "8250003177341584533673886" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "225504067266839871488", - "outputQty0": "225905099383943852418", - "outputQty": "223557374221178876734", + "inputQty": "66056646859609014796288", + "outputQty0": "71093981111730693517455", + "outputQty": "70947659673720818640497", + "swapFee": "55275035855866131223", "mpReserves": [ - "65672293890986428951026492", - "25466854771949851820803667", - "21303018046629685943270347" + "54847666082857308400343168", + "7080344693029151582457228", + "42339442589421672597093065" ], "fpReserves": [ - "13266533719134246552415803", - "15032813834825981805304856" + "4674185645119746095102904", + "3810146647786301551423880" ], - "mAssetSupply": "112382792050147050723247025", - "LPTokenSupply": "27992856370524143150544412" + "mAssetSupply": "103828680571969440748360539", + "LPTokenSupply": "8250008704845170120287008" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "121315118675306597056512", - "outputQty0": "122513540844670412730035", - "outputQty": "122073000721870071346371", - "swapFee1": "72789071205183958233", - "swapFee2": "49005416337868165092", - "mpReserves": [ - "65672293890986428951026492", - "25466854771949851820803667", - "21180945045907815871923976" - ], - "fpReserves": [ - "13144020178289576139685768", - "15032813834825981805304856" - ], - "mAssetSupply": "112260327514718718178682082", - "LPTokenSupply": "27871548530755957071883723" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "16695950064277677670400", - "outputQty0": "16749827794796578479854", - "outputQty": "16751292165183794025515", - "swapFee": "13260984364595946167", - "mpReserves": [ - "65672293890986428951026492", - "25466854771949851820803667", - "21197640995972093549594376" - ], - "fpReserves": [ - "13160770006084372718165622", - "15016062542660798011279341" - ], - "mAssetSupply": "112277077342513514757161936", - "LPTokenSupply": "27871549856854393531478339" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "29873041691776580059136", - "outputQty0": "29794228049876380182435", - "outputQty": "29485117868262523803202", + "inputQty": "3381149234231959342809088", + "outputQty0": "3469149259072793290807534", + "outputQty": "3492732171605342957368720", + "swapFee1": "2028689540539175605685", + "swapFee2": "2081489555443675974484", "mpReserves": [ - "65702166932678205531085628", - "25466854771949851820803667", - "21197640995972093549594376" + "54847666082857308400343168", + "7080344693029151582457228", + "38846710417816329639724345" ], "fpReserves": [ - "13190564234134249098348057", - "15016062542660798011279341" + "1205036386046952804295370", + "3810146647786301551423880" ], - "mAssetSupply": "112306871570563391137344371", - "LPTokenSupply": "27901034974722656055281541" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "135327171216227008512", - "outputQty0": "135567391534736247401", - "outputQty": "134160353962232142679", - "mpReserves": [ - "65702166932678205531085628", - "25466990099121068047812179", - "21197640995972093549594376" - ], - "fpReserves": [ - "13190699801525783834595458", - "15016062542660798011279341" - ], - "mAssetSupply": "112307007137954925873591772", - "LPTokenSupply": "27901169135076618287424220" + "mAssetSupply": "100361612802452091133527489", + "LPTokenSupply": "4869062339567264695038488" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "18311820189951184896", - "outputQty0": "18492767589867403517", - "outputQty": "18452615345978903646", - "swapFee1": "10987092113970710", - "swapFee2": "7397107035946961", - "mpReserves": [ - "65702166932678205531085628", - "25466971646505722068908533", - "21197640995972093549594376" - ], - "fpReserves": [ - "13190681308758193967191941", - "15016062542660798011279341" - ], - "mAssetSupply": "112306988652584443042135216", - "LPTokenSupply": "27901150824355137547636395" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2175270715187331386572800", - "outputQty0": "2169386612130339039456416", - "outputQty": "2146289046030786848827045", + "outputIndex": 0, + "inputQty": "672228776161116553216", + "outputQty0": "685289761125203435229", + "outputQty": "693118698071115523653", + "swapFee1": "403337265696669931", + "swapFee2": "411173856675122061", "mpReserves": [ - "67877437647865536917658428", - "25466971646505722068908533", - "21197640995972093549594376" + "54846972964159237284819515", + "7080344693029151582457228", + "38846710417816329639724345" ], "fpReserves": [ - "15360067920888533006648357", - "15016062542660798011279341" + "1204351096285827600860141", + "3810146647786301551423880" ], - "mAssetSupply": "114476375264714782081591632", - "LPTokenSupply": "30047439870385924396463440" + "mAssetSupply": "100360927923864822605214321", + "LPTokenSupply": "4868390151124830148152265" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "7122272161475939270656", - "outputQty0": "7196391200392565100057", - "outputQty": "7179618478062202231357", - "swapFee1": "4273363296885563562", - "swapFee2": "2878556480157026040", - "mpReserves": [ - "67877437647865536917658428", - "25459792028027659866677176", - "21197640995972093549594376" - ], - "fpReserves": [ - "15352871529688140441548300", - "15016062542660798011279341" - ], - "mAssetSupply": "114469181752070869673517615", - "LPTokenSupply": "30040318025560778145749140" + "type": "swap_fp_to_mp", + "inputQty": "461156952247004555116544", + "outputIndex": 0, + "hardLimitError": true }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1175755849478484393984", - "outputQty0": "1179812868350528094779", - "outputQty": "1166961420039559811377", + "inputQty": "951560167634728386560", + "outputQty0": "945071999520545362834", + "outputQty": "956495969817629411386", + "swapFee": "741201462230319801", "mpReserves": [ - "67877437647865536917658428", - "25459792028027659866677176", - "21198816751821572033988360" + "54846972964159237284819515", + "7080344693029151582457228", + "38847661977983964368110905" ], "fpReserves": [ - "15354051342556490969643079", - "15016062542660798011279341" + "1205296168285348146222975", + "3809190151816483922012494" ], - "mAssetSupply": "114470361564939220201612394", - "LPTokenSupply": "30041484986980817705560517" + "mAssetSupply": "100361872995864343150577155", + "LPTokenSupply": "4868390225244976371184245" }, { "type": "swap_fp_to_mp", - "inputQty": "37131455672926263574528", + "inputQty": "643008794626029892141056", "outputIndex": 2, - "outputQty": "36993563038851472806652", - "swapFee": "0", - "redemptionFee": "14854531575324478377", - "mpReserves": [ - "67877437647865536917658428", - "25459792028027659866677176", - "21161823188782720561181708" - ], - "fpReserves": [ - "15316915013618179773700398", - "15053193998333724274853869" - ], - "mAssetSupply": "114433240090532484330148090", - "LPTokenSupply": "30041484986980817705560517" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "112809366659629049708544", - "outputQty0": "112495887741075589031654", - "outputQty": "112387444915198044680930", - "swapFee": "89016742716260140875", - "mpReserves": [ - "67990247014525165967366972", - "25459792028027659866677176", - "21161823188782720561181708" - ], - "fpReserves": [ - "15429410901359255362732052", - "14940806553418526230172939" - ], - "mAssetSupply": "114545735978273559919179744", - "LPTokenSupply": "30041493888655089331574604" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "7335312885643744256", - "outputQty0": "7411906251848979197", - "outputQty": "7394575279726529725", - "swapFee1": "4401187731386246", - "swapFee2": "2964762500739591", - "mpReserves": [ - "67990247014525165967366972", - "25459784633452380140147451", - "21161823188782720561181708" - ], - "fpReserves": [ - "15429403489453003513752855", - "14940806553418526230172939" - ], - "mAssetSupply": "114545728569332070570940138", - "LPTokenSupply": "30041486553782322460968972" + "hardLimitError": true }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "8574344630332362326016", - "outputQty0": "8550486115894628347131", - "outputQty": "8541792557568479769770", - "swapFee": "6765633557789173584", - "mpReserves": [ - "67998821359155498329692988", - "25459784633452380140147451", - "21161823188782720561181708" - ], - "fpReserves": [ - "15437953975568898142099986", - "14932264760860957750403169" - ], - "mAssetSupply": "114554279055447965199287269", - "LPTokenSupply": "30041487230345678239886330" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "3707701618367584010240", - "outputQty0": "3746429474966933898315", - "outputQty": "3737665253312760162734", - "swapFee1": "2224620971020550406", - "swapFee2": "1498571789986773559", + "inputIndex": 2, + "inputQty": "155605581527983423488", + "outputQty0": "154544565311723950389", + "outputQty": "156410606461071869777", + "swapFee": "121204823255693859", "mpReserves": [ - "67998821359155498329692988", - "25456046968199067379984717", - "21161823188782720561181708" + "54846972964159237284819515", + "7080344693029151582457228", + "38847817583565492351534393" ], "fpReserves": [ - "15434207546093931208201671", - "14932264760860957750403169" + "1205450712850659870173364", + "3809033741210022850142717" ], - "mAssetSupply": "114550534124544788252162513", - "LPTokenSupply": "30037779751189407757931130" + "mAssetSupply": "100362027540429654874527544", + "LPTokenSupply": "4868390237365458696753630" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "155338507451986016731136", "outputIndex": 0, - "inputQty": "55796786795577901842432", - "outputQty0": "56379243009551025466834", - "outputQty": "56513876907278457878900", - "swapFee1": "33478072077346741105", - "swapFee2": "22551697203820410186", - "mpReserves": [ - "67942307482248219871814088", - "25456046968199067379984717", - "21161823188782720561181708" - ], - "fpReserves": [ - "15377828303084380182734837", - "14932264760860957750403169" - ], - "mAssetSupply": "114494177433232441047105865", - "LPTokenSupply": "29981986312201037590762808" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "146034655216993288192", - "outputQty0": "146317975074537545468", - "outputQty": "146172435967366015991", - "swapFee": "115776153406458402", + "outputQty": "154784708309975289488097", + "swapFee": "0", + "redemptionFee": "91823745704003736511", "mpReserves": [ - "67942307482248219871814088", - "25456193002854284373272909", - "21161823188782720561181708" + "54692188255849261995331418", + "7080344693029151582457228", + "38847817583565492351534393" ], "fpReserves": [ - "15377974621059454720280305", - "14932118588424990384387178" + "1052411136677320309321172", + "3964372248662008866873853" ], - "mAssetSupply": "114494323751207515584651333", - "LPTokenSupply": "29981986323778652931408648" + "mAssetSupply": "100209079788002019317411863", + "LPTokenSupply": "4868390237365458696753630" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "89523079381909552", - "outputQty0": "89696760318888004", - "outputQty": "88717272671364800", + "inputIndex": 0, + "inputQty": "199166291223336573730816", + "outputQty0": "196801453500257865469408", + "outputQty": "193248384229689234695848", "mpReserves": [ - "67942307482248219871814088", - "25456193092377363755182461", - "21161823188782720561181708" + "54891354547072598569062234", + "7080344693029151582457228", + "38847817583565492351534393" ], "fpReserves": [ - "15377974710756215039168309", - "14932118588424990384387178" + "1249212590177578174790580", + "3964372248662008866873853" ], - "mAssetSupply": "114494323840904275903539337", - "LPTokenSupply": "29981986412495925602773448" + "mAssetSupply": "100405881241502277182881271", + "LPTokenSupply": "5061638621595147931449478" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "48239830259450133872640", - "outputQty0": "48333138726889812554217", - "outputQty": "47805096354221810821799", + "inputQty": "57593611174036025376768", + "outputQty0": "61663669490750484162063", + "outputQty": "62370884768939630577474", + "swapFee": "48345218935676672479", "mpReserves": [ - "67942307482248219871814088", - "25504432922636813889055101", - "21161823188782720561181708" + "54891354547072598569062234", + "7137938304203187607833996", + "38847817583565492351534393" ], "fpReserves": [ - "15426307849483104851722526", - "14932118588424990384387178" + "1310876259668328658952643", + "3902001363893069236296379" ], - "mAssetSupply": "114542656979631165716093554", - "LPTokenSupply": "30029791508850147413595247" + "mAssetSupply": "100467544910993027667043334", + "LPTokenSupply": "5061643456117041499116725" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1181055881280620068864", - "outputQty0": "1177777217392328677998", - "outputQty": "1176580547891309045735", - "swapFee": "931923060372902233", + "type": "swap_fp_to_mp", + "inputQty": "6438365201858777055232", + "outputIndex": 2, + "outputQty": "6403437941016294581472", + "swapFee": "0", + "redemptionFee": "3818435959279180906", "mpReserves": [ - "67943488538129500491882952", - "25504432922636813889055101", - "21161823188782720561181708" + "54891354547072598569062234", + "7137938304203187607833996", + "38841414145624476056952921" ], "fpReserves": [ - "15427485626700497180400524", - "14930942007877099075341443" + "1304512199736196690774608", + "3908439729094928013351611" ], - "mAssetSupply": "114543834756848558044771552", - "LPTokenSupply": "30029791602042453450885470" + "mAssetSupply": "100461184669496854978046205", + "LPTokenSupply": "5061643456117041499116725" }, { "type": "swap_fp_to_mp", - "inputQty": "15888991420836988583936", + "inputQty": "75439897529879411818496", "outputIndex": 2, - "outputQty": "15830918966251836771703", + "outputQty": "74963353898171822842778", "swapFee": "0", - "redemptionFee": "6356930161915083457", + "redemptionFee": "44701988811146655695", "mpReserves": [ - "67943488538129500491882952", - "25504432922636813889055101", - "21145992269816468724410005" + "54891354547072598569062234", + "7137938304203187607833996", + "38766450791726304234110143" ], "fpReserves": [ - "15411593301295709471757855", - "14946830999297936063925379" + "1230008885050952264614668", + "3983879626624807425170107" ], - "mAssetSupply": "114527948788373932251212340", - "LPTokenSupply": "30029791602042453450885470" + "mAssetSupply": "100386726056800421698541960", + "LPTokenSupply": "5061643456117041499116725" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "43192870412437061369856", - "outputQty0": "43275913150198548511159", - "outputQty": "42802975935671073132199", + "inputQty": "8307685471728548446208", + "outputQty0": "8888664797343318994264", + "outputQty": "9000013966902315611855", + "swapFee": "6973563122356922502", "mpReserves": [ - "67943488538129500491882952", - "25547625793049250950424957", - "21145992269816468724410005" + "54891354547072598569062234", + "7146245989674916156280204", + "38766450791726304234110143" ], "fpReserves": [ - "15454869214445908020269014", - "14946830999297936063925379" + "1238897549848295583608932", + "3974879612657905109558252" ], - "mAssetSupply": "114571224701524130799723499", - "LPTokenSupply": "30072594577978124524017669" + "mAssetSupply": "100395614721597765017536224", + "LPTokenSupply": "5061644153473353734808975" }, { "type": "swap_fp_to_mp", - "inputQty": "947027253049929236480000", + "inputQty": "1531247897690393280512", "outputIndex": 0, - "outputQty": "949072832740405456941815", + "outputQty": "1528348079044696013539", "swapFee": "0", - "redemptionFee": "378738304869103847148", + "redemptionFee": "906737092217059184", "mpReserves": [ - "66994415705389095034941137", - "25547625793049250950424957", - "21145992269816468724410005" + "54889826198993553873048695", + "7146245989674916156280204", + "38766450791726304234110143" ], "fpReserves": [ - "14508023452273148402396663", - "15893858252347865300405379" + "1237386321361267151634644", + "3976410860555595502838764" ], - "mAssetSupply": "113624757677656240285698296", - "LPTokenSupply": "30072594577978124524017669" + "mAssetSupply": "100394104399847828802621120", + "LPTokenSupply": "5061644153473353734808975" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "8759451554708627390464", - "outputQty0": "8775624632220387285390", - "outputQty": "8773887798510369310004", - "swapFee": "6946653371546788545", + "type": "swap_fp_to_mp", + "inputQty": "4091014795363697", + "outputIndex": 1, + "outputQty": "3771586161880236", + "swapFee": "0", + "redemptionFee": "2422473357844", "mpReserves": [ - "66994415705389095034941137", - "25556385244603959577815421", - "21145992269816468724410005" + "54889826198993553873048695", + "7146245985903329994399968", + "38766450791726304234110143" ], "fpReserves": [ - "14516799076905368789682053", - "15885084364549354931095375" + "1237386317323811555226890", + "3976410864646610298202461" ], - "mAssetSupply": "113633533302288460672983686", - "LPTokenSupply": "30072595272643461678696523" + "mAssetSupply": "100394104395812795679571210", + "LPTokenSupply": "5061644153473353734808975" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2691283786192529", - "outputQty0": "2696250113078718", - "outputQty": "2667880619621464", + "type": "swap_fp_to_mp", + "inputQty": "2639466954493775360", + "outputIndex": 1, + "outputQty": "2433375826561280666", + "swapFee": "0", + "redemptionFee": "1562946724600379", "mpReserves": [ - "66994415705389095034941137", - "25556385247295243364007950", - "21145992269816468724410005" + "54889826198993553873048695", + "7146243552527503433119302", + "38766450791726304234110143" ], "fpReserves": [ - "14516799079601618902760771", - "15885084364549354931095375" + "1237383712412603887926932", + "3976413504113564791977821" ], - "mAssetSupply": "113633533304984710786062404", - "LPTokenSupply": "30072595275311342298317987" + "mAssetSupply": "100394101792464534736871631", + "LPTokenSupply": "5061644153473353734808975" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "16006408316427352145920", - "outputQty0": "16060515724752695687407", - "outputQty": "16057161270763561856443", - "swapFee": "12713199170912365220", + "type": "redeem", + "outputIndex": 1, + "inputQty": "109589955801160504836096", + "outputQty0": "111594792797708225972730", + "outputQty": "104147546710134796811681", + "swapFee1": "65753973480696302901", + "swapFee2": "66956875678624935583", "mpReserves": [ - "66994415705389095034941137", - "25556385247295243364007950", - "21161998678132896076555925" + "54889826198993553873048695", + "7042096005817368636307621", + "38766450791726304234110143" ], "fpReserves": [ - "14532859595326371598448178", - "15869027203278591369238932" + "1125788919614895661954202", + "3976413504113564791977821" ], - "mAssetSupply": "113649593820709463481749811", - "LPTokenSupply": "30072596546631259389554509" + "mAssetSupply": "100282573956542505135834484", + "LPTokenSupply": "4952060773069541299603169" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "47314261190403923968", - "outputQty0": "47185827048572439953", - "outputQty": "47175636811795366119", - "swapFee": "37351186006304676", + "type": "redeem", + "outputIndex": 0, + "inputQty": "46750953778288205824", + "outputQty0": "47562312941677115575", + "outputQty": "48109650436616436657", + "swapFee1": "28050572266972923", + "swapFee2": "28537387765006269", "mpReserves": [ - "66994463019650285438865105", - "25556385247295243364007950", - "21161998678132896076555925" + "54889778089343117256612038", + "7042096005817368636307621", + "38766450791726304234110143" ], "fpReserves": [ - "14532906781153420170888131", - "15868980027641779573872813" + "1125741357301953984838627", + "3976413504113564791977821" ], - "mAssetSupply": "113649641006536512054189764", - "LPTokenSupply": "30072596550366377990184976" + "mAssetSupply": "100282526422766951223725178", + "LPTokenSupply": "4952014024920820238094637" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "9540520974038371139584", - "outputQty0": "9514620541347151969476", - "outputQty": "9512525683023278789076", - "swapFee": "7531540125882593408", + "type": "redeem", + "outputIndex": 1, + "inputQty": "77642870881136912", + "outputQty0": "78990322748422148", + "outputQty": "73648236538285247", + "swapFee1": "46585722528682", + "swapFee2": "47394193649053", "mpReserves": [ - "67004003540624323810004689", - "25556385247295243364007950", - "21161998678132896076555925" + "54889778089343117256612038", + "7042095932169132098022374", + "38766450791726304234110143" ], "fpReserves": [ - "14542421401694767322857607", - "15859467501958756295083737" + "1125741278311631236416479", + "3976413504113564791977821" ], - "mAssetSupply": "113659155627077859206159240", - "LPTokenSupply": "30072597303520390578444316" + "mAssetSupply": "100282526343824022668952083", + "LPTokenSupply": "4952013947282607929210593" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "823940995534009808191488", + "outputIndex": 2, + "hardLimitError": true }, { "type": "redeem", "outputIndex": 1, - "inputQty": "40358323152838461489152", - "outputQty0": "40763315495713779372908", - "outputQty": "40671703313791636796612", - "swapFee1": "24214993891703076893", - "swapFee2": "16305326198285511749", + "inputQty": "349337559502273249280", + "outputQty0": "355398973039572166096", + "outputQty": "331362446475491396513", + "swapFee1": "209602535701363949", + "swapFee2": "213239383823743299", "mpReserves": [ - "67004003540624323810004689", - "25515713543981451727211338", - "21161998678132896076555925" + "54889778089343117256612038", + "7041764569722656606625861", + "38766450791726304234110143" ], "fpReserves": [ - "14501658086199053543484699", - "15859467501958756295083737" + "1125385879338591664250383", + "3976413504113564791977821" ], - "mAssetSupply": "113618408616908343712298081", - "LPTokenSupply": "30032241401866941287262853" + "mAssetSupply": "100282171158090366920529286", + "LPTokenSupply": "4951664630683359226097707" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "3734757277985158987776", - "outputQty0": "3724605611808894247156", - "outputQty": "3723833716303522811593", - "swapFee": "2948321620518842916", + "type": "mint", + "inputIndex": 1, + "inputQty": "214513286004723548160", + "outputQty0": "229935959389209035940", + "outputQty": "225878990048956339292", "mpReserves": [ - "67007738297902308968992465", - "25515713543981451727211338", - "21161998678132896076555925" + "54889778089343117256612038", + "7041979083008661330174021", + "38766450791726304234110143" ], "fpReserves": [ - "14505382691810862437731855", - "15855743668242452772272144" + "1125615815297980873286323", + "3976413504113564791977821" ], - "mAssetSupply": "113622133222520152606545237", - "LPTokenSupply": "30032241696699103339147144" + "mAssetSupply": "100282401094049756129565226", + "LPTokenSupply": "4951890509673408182436999" }, { "type": "swap_fp_to_mp", - "inputQty": "24952841206712472", - "outputIndex": 1, - "outputQty": "24881917131015379", + "inputQty": "531997361071737798656", + "outputIndex": 2, + "outputQty": "527096250479176072525", "swapFee": "0", - "redemptionFee": "9975235255675", + "redemptionFee": "314284153621707628", "mpReserves": [ - "67007738297902308968992465", - "25515713519099534596195959", - "21161998678132896076555925" + "54889778089343117256612038", + "7041979083008661330174021", + "38765923695475825058037618" ], "fpReserves": [ - "14505382666872774298542892", - "15855743693195293978984616" + "1125092008375278027239565", + "3976945501474636529776477" ], - "mAssetSupply": "113622133197592039702611949", - "LPTokenSupply": "30032241696699103339147144" + "mAssetSupply": "100281877601411206905226096", + "LPTokenSupply": "4951890509673408182436999" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "692865835522691584", - "outputQty0": "695205364173290267", - "outputQty": "695060145635491597", - "swapFee": "550309600122180", + "type": "swap_fp_to_mp", + "inputQty": "418188822259936264192", + "outputIndex": 2, + "outputQty": "414330226401164992889", + "swapFee": "0", + "redemptionFee": "247046803708427866", "mpReserves": [ - "67007738297902308968992465", - "25515713519099534596195959", - "21161999370998731599247509" + "54889778089343117256612038", + "7041979083008661330174021", + "38765509365249423893044729" ], "fpReserves": [ - "14505383362078138471833159", - "15855742998135148343493019" + "1124680263702430647462118", + "3977363690296896466040669" ], - "mAssetSupply": "113622133892797403875902216", - "LPTokenSupply": "30032241696754134299159362" + "mAssetSupply": "100281466103785163233876515", + "LPTokenSupply": "4951890509673408182436999" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "469599692525864512", - "outputQty0": "468323192431490980", - "outputQty": "468225366120180892", - "swapFee": "370714557102998", + "inputQty": "106122674261526192", + "outputQty0": "104852353489053026", + "outputQty": "103004410267646728", "mpReserves": [ - "67007738767502001494856977", - "25515713519099534596195959", - "21161999370998731599247509" + "54889778195465791518138230", + "7041979083008661330174021", + "38765509365249423893044729" ], "fpReserves": [ - "14505383830401330903324139", - "15855742529909782223312127" + "1124680368554784136515144", + "3977363690296896466040669" ], - "mAssetSupply": "113622134361120596307393196", - "LPTokenSupply": "30032241696791205754869661" + "mAssetSupply": "100281466208637516722929541", + "LPTokenSupply": "4951890612677818450083727" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "633832110480497442816", - "outputQty0": "640190995444768408697", - "outputQty": "641679165612830173238", - "swapFee1": "380299266288298465", - "swapFee2": "256076398177907363", + "outputIndex": 1, + "inputQty": "2938167311783220477952", + "outputQty0": "2989002347290092673838", + "outputQty": "2786781544473011359585", + "swapFee1": "1762900387069932286", + "swapFee2": "1793401408374055604", "mpReserves": [ - "67007097088336388664683739", - "25515713519099534596195959", - "21161999370998731599247509" + "54889778195465791518138230", + "7039192301464188318814436", + "38765509365249423893044729" ], "fpReserves": [ - "14504743639405886134915442", - "15855742529909782223312127" + "1121691366207494043841306", + "3977363690296896466040669" ], - "mAssetSupply": "113621494426201549716891862", - "LPTokenSupply": "30031607902710651886256691" + "mAssetSupply": "100278478999691635004311307", + "LPTokenSupply": "4948952621656073936599003" }, { "type": "mint", "inputIndex": 1, - "inputQty": "18526248535028572094464", - "outputQty0": "18560603401290704650533", - "outputQty": "18365179221153312468925", + "inputQty": "124861179989540992974848", + "outputQty0": "133691152653735096801611", + "outputQty": "131196202911969301582725", "mpReserves": [ - "67007097088336388664683739", - "25534239767634563168290423", - "21161999370998731599247509" + "54889778195465791518138230", + "7164053481453729311789284", + "38765509365249423893044729" ], "fpReserves": [ - "14523304242807176839565975", - "15855742529909782223312127" + "1255382518861229140642917", + "3977363690296896466040669" ], - "mAssetSupply": "113640055029602840421542395", - "LPTokenSupply": "30049973081931805198725616" + "mAssetSupply": "100412170152345370101112918", + "LPTokenSupply": "5080148824568043238181728" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "24827238203922168414208", - "outputQty0": "24759766942804538963022", - "outputQty": "24754120345214559536537", - "swapFee": "19599155578799234670", + "inputQty": "1278776872987072397312", + "outputQty0": "1263731889682748552974", + "outputQty": "1279044802372135417300", + "swapFee": "991120374977756674", "mpReserves": [ - "67031924326540310833097947", - "25534239767634563168290423", - "21161999370998731599247509" + "54891056972338778590535542", + "7164053481453729311789284", + "38765509365249423893044729" ], "fpReserves": [ - "14548064009749981378528997", - "15830988409564567663775590" + "1256646250750911889195891", + "3976084645494524330623369" ], - "mAssetSupply": "113664814796545644960505417", - "LPTokenSupply": "30049975041847363078649083" + "mAssetSupply": "100413433884235052849665892", + "LPTokenSupply": "5080148923680080735957395" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "125318336306037779333120", - "outputQty0": "125738876851036859838181", - "outputQty": "124411346201489915276141", - "mpReserves": [ - "67031924326540310833097947", - "25534239767634563168290423", - "21287317707304769378580629" - ], - "fpReserves": [ - "14673802886601018238367178", - "15830988409564567663775590" - ], - "mAssetSupply": "113790553673396681820343598", - "LPTokenSupply": "30174386388048852993925224" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "4847616404986635747328", - "outputQty0": "4834500732726908834843", - "outputQty": "4783384869539282579913", + "inputQty": "9982313652184009408512", + "outputQty0": "9915512508870169985344", + "outputQty": "10034364217400570785552", + "swapFee": "7775923889308626589", "mpReserves": [ - "67036771942945297468845275", - "25534239767634563168290423", - "21287317707304769378580629" + "54891056972338778590535542", + "7164053481453729311789284", + "38775491678901607902453241" ], "fpReserves": [ - "14678637387333745147202021", - "15830988409564567663775590" + "1266561763259782059181235", + "3966050281277123759837817" ], - "mAssetSupply": "113795388174129408729178441", - "LPTokenSupply": "30179169772918392276505137" + "mAssetSupply": "100423349396743923019651236", + "LPTokenSupply": "5080149701272469666820053" }, { "type": "swap_fp_to_mp", - "inputQty": "6481822511062907355136", - "outputIndex": 0, - "outputQty": "6493530214101812362185", + "inputQty": "39405450418652528640", + "outputIndex": 2, + "outputQty": "39150674326052397048", "swapFee": "0", - "redemptionFee": "2591421245896045203", + "redemptionFee": "23347180033617148", "mpReserves": [ - "67030278412731195656483090", - "25534239767634563168290423", - "21287317707304769378580629" + "54891056972338778590535542", + "7164053481453729311789284", + "38775452528227281850056193" ], "fpReserves": [ - "14672158834219005034194395", - "15837470232075630571130726" + "1266522851293059363934439", + "3966089686727542412366457" ], - "mAssetSupply": "113788912212435914512216018", - "LPTokenSupply": "30179169772918392276505137" + "mAssetSupply": "100423310508124380358021588", + "LPTokenSupply": "5080149701272469666820053" }, { - "type": "swap_fp_to_mp", - "inputQty": "360398052701346033827840", - "outputIndex": 1, - "outputQty": "359330453158932528369070", - "swapFee": "0", - "redemptionFee": "144063274948351033468", + "type": "redeem", + "outputIndex": 0, + "inputQty": "828090039321361", + "outputQty0": "844338882149034", + "outputQty": "853877852911239", + "swapFee1": "496854023592", + "swapFee2": "506603329289", "mpReserves": [ - "67030278412731195656483090", - "25174909314475630639921353", - "21287317707304769378580629" + "54891056971484900737624303", + "7164053481453729311789284", + "38775452528227281850056193" ], "fpReserves": [ - "14312000646848127450523488", - "16197868284776976604958566" + "1266522850448720481785405", + "3966089686727542412366457" ], - "mAssetSupply": "113428898088339985279578579", - "LPTokenSupply": "30179169772918392276505137" + "mAssetSupply": "100423310507280548079201843", + "LPTokenSupply": "5080149700444429312901051" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "12277479175192787812352", - "outputQty0": "12301348212361738702048", - "outputQty": "12173323379794707290009", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1079420987790569728", + "outputQty0": "1100601456846498811", + "outputQty": "1107353150144712178", + "swapFee1": "647652592674341", + "swapFee2": "660360874107899", "mpReserves": [ - "67030278412731195656483090", - "25187186793650823427733705", - "21287317707304769378580629" + "54891056971484900737624303", + "7164053481453729311789284", + "38775451420874131705344015" ], "fpReserves": [ - "14324301995060489189225536", - "16197868284776976604958566" + "1266521749847263635286594", + "3966089686727542412366457" ], - "mAssetSupply": "113441199436552347018280627", - "LPTokenSupply": "30191343096298186983795146" + "mAssetSupply": "100423309407339452106810931", + "LPTokenSupply": "5080148621088206781598757" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "670565574425146", - "outputQty0": "671868245560523", - "outputQty": "664874833611048", + "inputIndex": 2, + "inputQty": "92644314875314000", + "outputQty0": "92024201351127728", + "outputQty": "90199094896765666", "mpReserves": [ - "67030278412731195656483090", - "25187186794321389002158851", - "21287317707304769378580629" + "54891056971484900737624303", + "7164053481453729311789284", + "38775451513518446580658015" ], "fpReserves": [ - "14324301995732357434786059", - "16197868284776976604958566" + "1266521841871464986414322", + "3966089686727542412366457" ], - "mAssetSupply": "113441199437224215263841150", - "LPTokenSupply": "30191343096963061817406194" + "mAssetSupply": "100423309499363653457938659", + "LPTokenSupply": "5080148711287301678364423" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2960910641323503104", - "outputQty0": "2952824137586229541", - "outputQty": "2922088474054936811", - "mpReserves": [ - "67030281373641836979986194", - "25187186794321389002158851", - "21287317707304769378580629" - ], - "fpReserves": [ - "14324304948556495021015600", - "16197868284776976604958566" - ], - "mAssetSupply": "113441202390048352850070691", - "LPTokenSupply": "30191346019051535872343005" + "type": "redeem", + "outputIndex": 1, + "inputQty": "1843608190587982588149760", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "594866131696963316350976", - "outputIndex": 0, - "outputQty": "595598671185787116701554", + "inputQty": "535714439579117", + "outputIndex": 1, + "outputQty": "494321343460180", "swapFee": "0", - "redemptionFee": "237688212162654325964", + "redemptionFee": "317403191173", "mpReserves": [ - "66434682702456049863284640", - "25187186794321389002158851", - "21287317707304769378580629" + "54891056971484900737624303", + "7164053480959407968329104", + "38775451513518446580658015" ], "fpReserves": [ - "13730084418149859206103760", - "16792734416473939921309542" + "1266521841342459667792624", + "3966089687263256851945574" ], - "mAssetSupply": "112847219547853879689484815", - "LPTokenSupply": "30191346019051535872343005" + "mAssetSupply": "100423309498834965542508134", + "LPTokenSupply": "5080148711287301678364423" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "372579167624984025628672", - "outputQty0": "376143029546487138610826", - "outputQty": "375263286817747733762899", - "swapFee1": "223547500574990415377", - "swapFee2": "150457211818594855444", - "mpReserves": [ - "66434682702456049863284640", - "24811923507503641268395952", - "21287317707304769378580629" - ], - "fpReserves": [ - "13353941388603372067492934", - "16792734416473939921309542" - ], - "mAssetSupply": "112471226975519211145729433", - "LPTokenSupply": "29818789206176609345755870" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "19632262654881456717824", - "outputQty0": "19671269452024199821341", - "outputQty": "19685850265942611835583", - "swapFee": "15579254830630072433", + "inputQty": "1862750065131186290688", + "outputQty0": "1899277586476627293675", + "outputQty": "1774724329057144102870", + "swapFee1": "1117650039078711774", + "swapFee2": "1139566551885976376", "mpReserves": [ - "66434682702456049863284640", - "24831555770158522725113776", - "21287317707304769378580629" + "54891056971484900737624303", + "7162278756630350824226234", + "38775451513518446580658015" ], "fpReserves": [ - "13373612658055396267314275", - "16773048566207997309473959" + "1264622563755983040498949", + "3966089687263256851945574" ], - "mAssetSupply": "112490898244971235345550774", - "LPTokenSupply": "29818790764102092408763113" + "mAssetSupply": "100421411360815040801190835", + "LPTokenSupply": "5078286072987174399944912" }, { "type": "mint", "inputIndex": 1, - "inputQty": "7370989276389917589504", - "outputQty0": "7385609853959580917240", - "outputQty": "7311504353579741811449", + "inputQty": "8306152790616677376", + "outputQty0": "8883899453322302438", + "outputQty": "8707919132448016076", "mpReserves": [ - "66434682702456049863284640", - "24838926759434912642703280", - "21287317707304769378580629" + "54891056971484900737624303", + "7162287062783141440903610", + "38775451513518446580658015" ], "fpReserves": [ - "13380998267909355848231515", - "16773048566207997309473959" + "1264631447655436362801387", + "3966089687263256851945574" ], - "mAssetSupply": "112498283854825194926468014", - "LPTokenSupply": "29826102268455672150574562" + "mAssetSupply": "100421420244714494123493273", + "LPTokenSupply": "5078294780906306847960988" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "6225175356845394493440", - "outputQty0": "6284498458420925118204", - "outputQty": "6261714219721307858243", - "swapFee1": "3735105214107236696", - "swapFee2": "2513799383368370047", + "type": "mint", + "inputIndex": 2, + "inputQty": "132736552431627026432", + "outputQty0": "131847803258444353149", + "outputQty": "129235923975579306989", "mpReserves": [ - "66434682702456049863284640", - "24838926759434912642703280", - "21281055993085048070722386" + "54891056971484900737624303", + "7162287062783141440903610", + "38775584250070878207684447" ], "fpReserves": [ - "13374713769450934923113311", - "16773048566207997309473959" + "1264763295458694807154536", + "3966089687263256851945574" ], - "mAssetSupply": "112492001870166157369719857", - "LPTokenSupply": "29819877466609348166804791" + "mAssetSupply": "100421552092517752567846422", + "LPTokenSupply": "5078424016830282427267977" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "270455539363628382683136", - "outputQty0": "269717184015693308662126", - "outputQty": "267000663986005332615206", + "inputQty": "50418492538896190013440", + "outputQty0": "49824856214037324477764", + "outputQty": "50390285779371177519255", + "swapFee": "39058000038220820192", "mpReserves": [ - "66705138241819678245967776", - "24838926759434912642703280", - "21281055993085048070722386" + "54941475464023796927637743", + "7162287062783141440903610", + "38775584250070878207684447" ], "fpReserves": [ - "13644430953466628231775437", - "16773048566207997309473959" + "1314588151672732131632300", + "3915699401483885674426319" ], - "mAssetSupply": "112761719054181850678381983", - "LPTokenSupply": "30086878130595353499419997" + "mAssetSupply": "100471376948731789892324186", + "LPTokenSupply": "5078427922630286249349996" }, { "type": "mint", "inputIndex": 2, - "inputQty": "51479085603358735597568", - "outputQty0": "51646718698442039069070", - "outputQty": "51124207597584512011720", + "inputQty": "492575790123555376594944", + "outputQty0": "489241801627151083352222", + "outputQty": "478169794611632074740607", "mpReserves": [ - "66705138241819678245967776", - "24838926759434912642703280", - "21332535078688406806319954" + "54941475464023796927637743", + "7162287062783141440903610", + "39268160040194433584279391" ], "fpReserves": [ - "13696077672165070270844507", - "16773048566207997309473959" + "1803829953299883214984522", + "3915699401483885674426319" ], - "mAssetSupply": "112813365772880292717451053", - "LPTokenSupply": "30138002338192938011431717" + "mAssetSupply": "100960618750358940975676408", + "LPTokenSupply": "5556597717241918324090603" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "260934006036156678930432", - "outputQty0": "260218764895227289644033", - "outputQty": "257574999571006485842020", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1549516393095460607229952", + "outputQty0": "1538547710015630611824767", + "outputQty": "1539744532443251913641306", + "swapFee": "1198605182849398019087", "mpReserves": [ - "66966072247855834924898208", - "24838926759434912642703280", - "21332535078688406806319954" + "54941475464023796927637743", + "7162287062783141440903610", + "40817676433289894191509343" ], "fpReserves": [ - "13956296437060297560488540", - "16773048566207997309473959" + "3342377663315513826809289", + "2375954869040633760785013" ], - "mAssetSupply": "113073584537775520007095086", - "LPTokenSupply": "30395577337763944497273737" + "mAssetSupply": "102499166460374571587501175", + "LPTokenSupply": "5556717577760203263892511" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "107695736524842737860608", "outputIndex": 0, - "inputQty": "1859232900262934784", - "outputQty0": "1877255875266874616", - "outputQty": "1881677874639683106", - "swapFee1": "1115539740157760", - "swapFee2": "750902350106749", + "outputQty": "109125816195501873978912", + "swapFee": "0", + "redemptionFee": "64752139750529299401", "mpReserves": [ - "66966070366177960285215102", - "24838926759434912642703280", - "21332535078688406806319954" + "54832349647828295053658831", + "7162287062783141440903610", + "40817676433289894191509343" ], "fpReserves": [ - "13956294559804422293613924", - "16773048566207997309473959" + "3234457430397964994473262", + "2483650605565476498645621" ], - "mAssetSupply": "113073582661270547090327219", - "LPTokenSupply": "30395575478642598208354729" + "mAssetSupply": "102391310979596773284464549", + "LPTokenSupply": "5556717577760203263892511" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "8323538164601574400", - "outputQty0": "8300656007888595282", - "outputQty": "8216031294039244728", + "type": "redeem", + "outputIndex": 0, + "inputQty": "198594328155169985921024", + "outputQty0": "204378905884420142446345", + "outputQty": "206653513488706602141516", + "swapFee1": "119156596893101991552", + "swapFee2": "122627343530652085467", "mpReserves": [ - "66966078689716124886789502", - "24838926759434912642703280", - "21332535078688406806319954" + "54625696134339588451517315", + "7162287062783141440903610", + "40817676433289894191509343" ], "fpReserves": [ - "13956302860460430182209206", - "16773048566207997309473959" + "3030078524513544852026917", + "2483650605565476498645621" ], - "mAssetSupply": "113073590961926554978922501", - "LPTokenSupply": "30395583694673892247599457" + "mAssetSupply": "102187054701055883794103671", + "LPTokenSupply": "5358135165264722588170642" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "725173754323805463904256", - "outputQty0": "723164014952104611733107", - "outputQty": "723244552313871936154713", - "swapFee": "572579000465999174102", + "inputIndex": 1, + "inputQty": "6206203287868776906752", + "outputQty0": "6650119136683513349851", + "outputQty": "6635798093400677262843", + "swapFee": "5166830340601121986", "mpReserves": [ - "67691252444039930350693758", - "24838926759434912642703280", - "21332535078688406806319954" + "54625696134339588451517315", + "7168493266071010217810362", + "40817676433289894191509343" ], "fpReserves": [ - "14679466875412534793942313", - "16049804013894125373319246" + "3036728643650228365376768", + "2477014807472075821382778" ], - "mAssetSupply": "113796754976878659590655608", - "LPTokenSupply": "30395640952573938847516867" + "mAssetSupply": "102193704820192567307453522", + "LPTokenSupply": "5358135681947756648282840" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "1099283593260211109888", - "outputQty0": "1110338748846427173119", - "outputQty": "1106190473240441972638", - "swapFee1": "659570155956126665", - "swapFee2": "444135499538570869", + "type": "swap_fp_to_mp", + "inputQty": "167604534742537830400", + "outputIndex": 1, + "outputQty": "156545840159331105021", + "swapFee": "0", + "redemptionFee": "100700789168877097", "mpReserves": [ - "67691252444039930350693758", - "24838926759434912642703280", - "21331428888215166364347316" + "54625696134339588451517315", + "7168336720230850886705341", + "40817676433289894191509343" ], "fpReserves": [ - "14678356536663688366769194", - "16049804013894125373319246" + "3036560809001613570213831", + "2477182412006818359213178" ], - "mAssetSupply": "113795645082265312702053358", - "LPTokenSupply": "30394541734937694232019645" + "mAssetSupply": "102193537086244741681167682", + "LPTokenSupply": "5358135681947756648282840" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "6949183402921590521856", - "outputQty0": "7019062541729883873058", - "outputQty": "6992828089483760638969", - "swapFee1": "4169510041752954313", - "swapFee2": "2807625016691953549", + "inputQty": "2813133320576578355200", + "outputQty0": "2894873313958303767556", + "outputQty": "2914471593322780689513", + "swapFee1": "1687879992345947013", + "swapFee2": "1736923988374982260", "mpReserves": [ - "67691252444039930350693758", - "24838926759434912642703280", - "21324436060125682603708347" + "54625696134339588451517315", + "7168336720230850886705341", + "40814761961696571410819830" ], "fpReserves": [ - "14671337474121958482896136", - "16049804013894125373319246" + "3033665935687655266446275", + "2477182412006818359213178" ], - "mAssetSupply": "113788628827348599510133849", - "LPTokenSupply": "30387592968485776816793220" + "mAssetSupply": "102190643949854771752382386", + "LPTokenSupply": "5355322717415179304522341" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "34769970589648665182208", - "outputQty0": "35119436115291143218022", - "outputQty": "35032296706246870405651", - "swapFee1": "20861982353789199109", - "swapFee2": "14047774446116457287", + "outputIndex": 2, + "inputQty": "1436007296969735929856", + "outputQty0": "1477729821407946255785", + "outputQty": "1487733076344751517369", + "swapFee1": "861604378181841557", + "swapFee2": "886637892844767753", "mpReserves": [ - "67691252444039930350693758", - "24803894462728665772297629", - "21324436060125682603708347" + "54625696134339588451517315", + "7168336720230850886705341", + "40813274228620226659302461" ], "fpReserves": [ - "14636218038006667339678114", - "16049804013894125373319246" + "3032188205866247320190490", + "2477182412006818359213178" ], - "mAssetSupply": "113753523439007754483373114", - "LPTokenSupply": "30352825084094363530530922" + "mAssetSupply": "102189167106671256650894354", + "LPTokenSupply": "5353886796278647386776640" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1003738375962039156736", - "outputQty0": "1007100489767935867993", - "outputQty": "996484255728105786777", + "inputIndex": 0, + "inputQty": "47439019336174269366272", + "outputQty0": "46890148307691226664668", + "outputQty": "45537833747020205740369", "mpReserves": [ - "67691252444039930350693758", - "24803894462728665772297629", - "21325439798501644642865083" + "54673135153675762720883587", + "7168336720230850886705341", + "40813274228620226659302461" ], "fpReserves": [ - "14637225138496435275546107", - "16049804013894125373319246" + "3079078354173938546855158", + "2477182412006818359213178" ], - "mAssetSupply": "113754530539497522419241107", - "LPTokenSupply": "30353821568350091636317699" + "mAssetSupply": "102236057254978947877559022", + "LPTokenSupply": "5399424630025667592517009" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "13753407187944462090240", - "outputQty0": "13891570355014781764796", - "outputQty": "13839622241518880840057", - "swapFee1": "8252044312766677254", - "swapFee2": "5556628142005912705", + "inputQty": "61042075943230", + "outputQty0": "62818604628432", + "outputQty": "63243658692621", + "swapFee1": "36625245565", + "swapFee2": "37691162777", "mpReserves": [ - "67691252444039930350693758", - "24803894462728665772297629", - "21311600176260125762025026" + "54673135153675762720883587", + "7168336720230850886705341", + "40813274228556983000609840" ], "fpReserves": [ - "14623333568141420493781311", - "16049804013894125373319246" + "3079078354111119942226726", + "2477182412006818359213178" ], - "mAssetSupply": "113740644525770649643389016", - "LPTokenSupply": "30340068986366578450895184" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "25072706323598687600640", - "outputIndex": 2, - "outputQty": "24963037209578672559670", - "swapFee": "0", - "redemptionFee": "10022770360458130562", - "mpReserves": [ - "67691252444039930350693758", - "24803894462728665772297629", - "21286637139050547089465356" - ], - "fpReserves": [ - "14598276642240275167375298", - "16074876720217724060919886" - ], - "mAssetSupply": "113715597622639864775113565", - "LPTokenSupply": "30340068986366578450895184" + "mAssetSupply": "102236057254916166964093367", + "LPTokenSupply": "5399424629964629179098335" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "181961007554188064", - "outputQty0": "182341137544602463", - "outputQty": "182312007998490169", - "swapFee": "144337292047575", + "inputIndex": 0, + "inputQty": "100527427980753584128", + "outputQty0": "99363706103818572225", + "outputQty": "99138469511619994069", + "swapFee": "77196587266451246", "mpReserves": [ - "67691252444039930350693758", - "24803894644689673326485693", - "21286637139050547089465356" + "54673235681103743474467715", + "7168336720230850886705341", + "40813274228556983000609840" ], "fpReserves": [ - "14598276824581412711977761", - "16074876537905716062429717" + "3079177717817223760798951", + "2477083273537306739219109" ], - "mAssetSupply": "113715597804981002319716028", - "LPTokenSupply": "30340068986381012180099941" + "mAssetSupply": "102236156618622270782665592", + "LPTokenSupply": "5399424637684287905743459" }, { "type": "swap_fp_to_mp", - "inputQty": "325710203457251850584064", - "outputIndex": 1, - "outputQty": "324632985554446198484238", + "inputQty": "11713670182936045568", + "outputIndex": 0, + "outputQty": "11861161666496769199", "swapFee": "0", - "redemptionFee": "130182013409340224914", + "redemptionFee": "7038535996725954", "mpReserves": [ - "67691252444039930350693758", - "24479261659135227128001455", - "21286637139050547089465356" + "54673223819942076977698516", + "7168336720230850886705341", + "40813274228556983000609840" ], "fpReserves": [ - "14272821791058062149691289", - "16400586741362967913013781" + "3079165986923895884208165", + "2477094987207489675264677" ], - "mAssetSupply": "113390272953471061097654470", - "LPTokenSupply": "30340068986381012180099941" + "mAssetSupply": "102236144894767478902800760", + "LPTokenSupply": "5399424637684287905743459" }, { - "type": "swap_fp_to_mp", - "inputQty": "296789670698735684812800", + "type": "redeem", "outputIndex": 2, - "outputQty": "295350324652012992112105", - "swapFee": "0", - "redemptionFee": "118590076802630086038", + "inputQty": "181769039228220423012352", + "outputQty0": "187040988738161157480641", + "outputQty": "188301318133234766068635", + "swapFee1": "109061423536932253807", + "swapFee2": "112224593242896694488", "mpReserves": [ - "67691252444039930350693758", - "24479261659135227128001455", - "20991286814398534097353251" + "54673223819942076977698516", + "7168336720230850886705341", + "40624972910423748234541205" ], "fpReserves": [ - "13976346599051486934595940", - "16697376412061703597826581" + "2892124998185734726727524", + "2477094987207489675264677" ], - "mAssetSupply": "113093916351541288512645159", - "LPTokenSupply": "30340068986381012180099941" + "mAssetSupply": "102049216130622560642014607", + "LPTokenSupply": "5217666504598421175956487" }, { - "type": "swap_fp_to_mp", - "inputQty": "17221660880972711723008", - "outputIndex": 2, - "outputQty": "17134656056361262442912", - "swapFee": "0", - "redemptionFee": "6880393993210884659", + "type": "redeem", + "outputIndex": 1, + "inputQty": "47774657604837617696768", + "outputQty0": "49155006354722776501994", + "outputQty": "45836303355474819967187", + "swapFee1": "28664794562902570618", + "swapFee2": "29493003812833665901", "mpReserves": [ - "67691252444039930350693758", - "24479261659135227128001455", - "20974152158342172834910339" + "54673223819942076977698516", + "7122500416875376066738154", + "40624972910423748234541205" ], "fpReserves": [ - "13959145614068459722946463", - "16714598072942676309549589" + "2842969991831011950225530", + "2477094987207489675264677" ], - "mAssetSupply": "113076722246952254511880341", - "LPTokenSupply": "30340068986381012180099941" + "mAssetSupply": "102000090617271650699178514", + "LPTokenSupply": "5169894713473039848516780" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "168584617799528973598720", - "outputQty0": "168101474018207588461795", - "outputQty": "168157441755541442033195", - "swapFee": "133102926683549874622", + "type": "mint", + "inputIndex": 1, + "inputQty": "818719130125821312", + "outputQty0": "877841056842508747", + "outputQty": "852696871098309335", "mpReserves": [ - "67859837061839459324292478", - "24479261659135227128001455", - "20974152158342172834910339" + "54673223819942076977698516", + "7122501235594506192559466", + "40624972910423748234541205" ], "fpReserves": [ - "14127247088086667311408258", - "16546440631187134867516394" + "2842970869672068792734277", + "2477094987207489675264677" ], - "mAssetSupply": "113244823720970462100342136", - "LPTokenSupply": "30340082296673680535087403" + "mAssetSupply": "102000091495112707541687261", + "LPTokenSupply": "5169895566169910946826115" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1966957972772016290267136", + "hardLimitError": true }, { "type": "redeem", "outputIndex": 2, - "inputQty": "99722746901268246036480", - "outputQty0": "100699978497691310657066", - "outputQty": "100307441647878303486088", - "swapFee1": "59833648140760947621", - "swapFee2": "40279991399076524262", + "inputQty": "4598994122793779986432", + "outputQty0": "4731755302720857542374", + "outputQty": "4763775278539566567514", + "swapFee1": "2759396473676267991", + "swapFee2": "2839053181632514525", "mpReserves": [ - "67859837061839459324292478", - "24479261659135227128001455", - "20873844716694294531424251" + "54673223819942076977698516", + "7122501235594506192559466", + "40620209135145208667973691" ], "fpReserves": [ - "14026547109588976000751192", - "16546440631187134867516394" + "2838239114369347935191903", + "2477094987207489675264677" ], - "mAssetSupply": "113144164022464169866209332", - "LPTokenSupply": "30240365533137226365145685" + "mAssetSupply": "101995362578863168316659412", + "LPTokenSupply": "5165296847986764534466482" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "619129063917726279401472", - "outputQty0": "625135950865466106593119", - "outputQty": "626679668398614043850232", - "swapFee1": "371477438350635767640", - "swapFee2": "250054380346186442637", + "outputIndex": 1, + "inputQty": "849060683038487979491328", + "outputQty0": "873069517401900154493722", + "outputQty": "806996194080197918074116", + "swapFee1": "509436409823092787694", + "swapFee2": "523841710441140092696", "mpReserves": [ - "67233157393440845280442246", - "24479261659135227128001455", - "20873844716694294531424251" + "54673223819942076977698516", + "6315505041514308274485350", + "40620209135145208667973691" ], "fpReserves": [ - "13401411158723509894158073", - "16546440631187134867516394" + "1965169596967447780698181", + "2477094987207489675264677" ], - "mAssetSupply": "112519278125979049946058850", - "LPTokenSupply": "29621273616963335149320977" + "mAssetSupply": "101122816903171709302258386", + "LPTokenSupply": "4316287108589258864253923" }, { - "type": "swap_fp_to_mp", - "inputQty": "47260092916998799884288", - "outputIndex": 1, - "outputQty": "47073069607648796980265", - "swapFee": "0", - "redemptionFee": "18876755525578882247", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1263438228647548026880", + "outputQty0": "1378855185757799479950", + "outputQty": "1379907099173726254430", + "swapFee": "1072737312481729640", "mpReserves": [ - "67233157393440845280442246", - "24432188589527578331021190", - "20873844716694294531424251" + "54673223819942076977698516", + "6316768479742955822512230", + "40620209135145208667973691" ], "fpReserves": [ - "13354219269909562688540167", - "16593700724104133667400682" + "1966548452153205580178131", + "2475715080108315949010247" ], - "mAssetSupply": "112472105113920628319323191", - "LPTokenSupply": "29621273616963335149320977" + "mAssetSupply": "101124195758357467101738336", + "LPTokenSupply": "4316287215862990112426887" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "962126351793415127040", - "outputQty0": "965456795752105314410", - "outputQty": "955702315720168232747", + "type": "swap_fp_to_mp", + "inputQty": "2559091445629872242688", + "outputIndex": 2, + "outputQty": "2575298992750368872120", + "swapFee": "0", + "redemptionFee": "1533051128012279683", "mpReserves": [ - "67233157393440845280442246", - "24432188589527578331021190", - "20874806843046087946551291" + "54673223819942076977698516", + "6316768479742955822512230", + "40617633836152458299101571" ], "fpReserves": [ - "13355184726705314793854577", - "16593700724104133667400682" + "1963993366939851780706103", + "2478274171553945821252935" ], - "mAssetSupply": "112473070570716380424637601", - "LPTokenSupply": "29622229319279055317553724" + "mAssetSupply": "101121642206195241314545991", + "LPTokenSupply": "4316287215862990112426887" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "5349461292491046125568", - "outputQty0": "5367971843667165594293", - "outputQty": "5371532995663923854643", - "swapFee": "4250985374848173847", + "type": "redeem", + "outputIndex": 2, + "inputQty": "4358014176185803079680", + "outputQty0": "4478565636809986157847", + "outputQty": "4513991210397473067439", + "swapFee1": "2614808505711481847", + "swapFee2": "2687139382085991694", "mpReserves": [ - "67233157393440845280442246", - "24432188589527578331021190", - "20880156304338578992676859" + "54673223819942076977698516", + "6316768479742955822512230", + "40613119844942060826034132" ], "fpReserves": [ - "13360552698548981959448870", - "16588329191108469743546039" + "1959514801303041794548256", + "2478274171553945821252935" ], - "mAssetSupply": "112478438542560047590231894", - "LPTokenSupply": "29622229744377592802371108" + "mAssetSupply": "101117166327697813414379838", + "LPTokenSupply": "4311929463167654880495391" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "4571429482417794560", - "outputQty0": "4615331666212855289", - "outputQty": "4603681269166787123", - "swapFee1": "2742857689450676", - "swapFee2": "1846132666485142", + "type": "swap_fp_to_mp", + "inputQty": "596508862394763968512", + "outputIndex": 2, + "outputQty": "600269738628111026360", + "swapFee": "0", + "redemptionFee": "357335610373291742", "mpReserves": [ - "67233157393440845280442246", - "24432183985846309164234067", - "20880156304338578992676859" + "54673223819942076977698516", + "6316768479742955822512230", + "40612519575203432715007772" ], "fpReserves": [ - "13360548083217315746593581", - "16588329191108469743546039" + "1958919241952419641643663", + "2478870680416340585221447" ], - "mAssetSupply": "112478433929074514043861747", - "LPTokenSupply": "29622225173222396153521615" + "mAssetSupply": "101116571125682801634766987", + "LPTokenSupply": "4311929463167654880495391" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4274050110015663505408", - "outputQty0": "4283149959119647678997", - "outputQty": "4239859491385024727284", + "type": "swap_fp_to_mp", + "inputQty": "28237871835052582633472", + "outputIndex": 0, + "outputQty": "28549182348350430892752", + "swapFee": "0", + "redemptionFee": "16914167457355184207", "mpReserves": [ - "67233157393440845280442246", - "24436458035956324827739475", - "20880156304338578992676859" + "54644674637593726546805764", + "6316768479742955822512230", + "40612519575203432715007772" ], "fpReserves": [ - "13364831233176435394272578", - "16588329191108469743546039" + "1930728962856827667964608", + "2507108552251393167854919" ], - "mAssetSupply": "112482717079033633691540744", - "LPTokenSupply": "29626465032713781178248899" + "mAssetSupply": "101088397760754667016272139", + "LPTokenSupply": "4311929463167654880495391" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3931489716691000623104", - "outputQty0": "3939855956913912490303", - "outputQty": "3900030560485329311459", + "type": "redeem", + "outputIndex": 2, + "inputQty": "216886371807547228160", + "outputQty0": "222861413271038537389", + "outputQty": "224624419987653413844", + "swapFee1": "130131823084528336", + "swapFee2": "133716847962623122", "mpReserves": [ - "67233157393440845280442246", - "24440389525673015828362579", - "20880156304338578992676859" + "54644674637593726546805764", + "6316768479742955822512230", + "40612294950783445061593928" ], "fpReserves": [ - "13368771089133349306762881", - "16588329191108469743546039" + "1930506101443556629427219", + "2507108552251393167854919" ], - "mAssetSupply": "112486656934990547604031047", - "LPTokenSupply": "29630365063274266507560358" + "mAssetSupply": "101088175033058243940357872", + "LPTokenSupply": "4311712589809029641720064" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "240085941069964836864", - "outputQty0": "240916524958734560637", - "outputQty": "241074670827952183106", - "swapFee": "190784891671372963", + "type": "swap_fp_to_mp", + "inputQty": "36444734518456569823232", + "outputIndex": 0, + "outputQty": "36838276003544201039160", + "swapFee": "0", + "redemptionFee": "21825307222932231974", "mpReserves": [ - "67233157393440845280442246", - "24440389525673015828362579", - "20880396390279648957513723" + "54607836361590182345766604", + "6316768479742955822512230", + "40612294950783445061593928" ], "fpReserves": [ - "13369012005658308041323518", - "16588088116437641791362933" + "1894130589405336242802226", + "2543553286769849737678151" ], - "mAssetSupply": "112486897851515506338591684", - "LPTokenSupply": "29630365082352755674697654" + "mAssetSupply": "101051821346327246485964853", + "LPTokenSupply": "4311712589809029641720064" }, { "type": "swap_fp_to_mp", - "inputQty": "3014352079828729987072", + "inputQty": "552367251696032535281664", "outputIndex": 1, - "outputQty": "3002368092636283132663", + "outputQty": "500215890277648254717664", "swapFee": "0", - "redemptionFee": "1203984322123746458", + "redemptionFee": "329988985381826748532", "mpReserves": [ - "67233157393440845280442246", - "24437387157580379545229916", - "20880396390279648957513723" + "54607836361590182345766604", + "5816552589465307567794566", + "40612294950783445061593928" ], "fpReserves": [ - "13366002044852998675176225", - "16591102468517470521350005" + "1344148947102291661915434", + "3095920538465882272959815" ], - "mAssetSupply": "112483889094694519096190849", - "LPTokenSupply": "29630365082352755674697654" + "mAssetSupply": "100502169693009583731826593", + "LPTokenSupply": "4311712589809029641720064" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "7200285978117836636160", - "outputQty0": "7179797846897062518030", - "outputQty": "7184506150751336531293", - "swapFee": "5685776667722951055", + "inputQty": "7418149220690036785152", + "outputQty0": "7312182731476405456491", + "outputQty": "7359522511572930858008", + "swapFee": "5709472714036339198", "mpReserves": [ - "67240357679418963117078406", - "24437387157580379545229916", - "20880396390279648957513723" + "54615254510810872382551756", + "5816552589465307567794566", + "40612294950783445061593928" ], "fpReserves": [ - "13373181842699895737694255", - "16583917962366719184818712" + "1351461129833768067371925", + "3088561015954309342101807" ], - "mAssetSupply": "112491068892541416158708879", - "LPTokenSupply": "29630365650930422446992759" + "mAssetSupply": "100509481875741060137283084", + "LPTokenSupply": "4311713160756301045353983" }, { "type": "swap_fp_to_mp", - "inputQty": "47696743389906805456896", - "outputIndex": 0, - "outputQty": "47743179303417847761634", + "inputQty": "117824783446684096004096", + "outputIndex": 1, + "outputQty": "105318119121059884866647", "swapFee": "0", - "redemptionFee": "19050575854869758680", + "redemptionFee": "70124282143573906152", "mpReserves": [ - "67192614500115545269316772", - "24437387157580379545229916", - "20880396390279648957513723" + "54615254510810872382551756", + "5711234470344247682927919", + "40612294950783445061593928" ], "fpReserves": [ - "13325555403062721340993646", - "16631614705756625990275608" + "1234587326261144890451331", + "3206385799400993438105903" ], - "mAssetSupply": "112443461503480096631766950", - "LPTokenSupply": "29630365650930422446992759" + "mAssetSupply": "100392678196450580534268642", + "LPTokenSupply": "4311713160756301045353983" }, { "type": "swap_fp_to_mp", - "inputQty": "165716880477445355995136", + "inputQty": "752096087381612167168", "outputIndex": 1, - "outputQty": "165035291826807770119082", + "outputQty": "670409625866614556180", "swapFee": "0", - "redemptionFee": "66182317864574642379", + "redemptionFee": "447174436220236704", "mpReserves": [ - "67192614500115545269316772", - "24272351865753571775110834", - "20880396390279648957513723" + "54615254510810872382551756", + "5710564060718381068371739", + "40612294950783445061593928" ], "fpReserves": [ - "13160099608401284735044171", - "16797331586234071346270744" + "1233842035534111162609926", + "3207137895488375050273071" ], - "mAssetSupply": "112278071891136524600459854", - "LPTokenSupply": "29630365650930422446992759" + "mAssetSupply": "100391933352897983026663941", + "LPTokenSupply": "4311713160756301045353983" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "744806230751471", - "outputQty0": "746421717426377", - "outputQty": "747060832733390", - "swapFee": "591166546782", + "type": "swap_fp_to_mp", + "inputQty": "10300626868070716014592", + "outputIndex": 2, + "outputQty": "10298025753559238489713", + "swapFee": "0", + "redemptionFee": "6123837245227039189", "mpReserves": [ - "67192614500115545269316772", - "24272351866498378005862305", - "20880396390279648957513723" + "54615254510810872382551756", + "5710564060718381068371739", + "40601996925029885823104215" ], "fpReserves": [ - "13160099609147706452470548", - "16797331585487010513537354" + "1223635640125399430626714", + "3217438522356445766287663" ], - "mAssetSupply": "112278071891882946317886231", - "LPTokenSupply": "29630365650930481563647437" + "mAssetSupply": "100381733081326516521719918", + "LPTokenSupply": "4311713160756301045353983" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "15951307056242030018560", - "outputQty0": "15905739772015691621934", - "outputQty": "15919236738390456076384", - "swapFee": "12597327207089779523", + "inputIndex": 1, + "inputQty": "7317685858083304112128", + "outputQty0": "8129087011753203139877", + "outputQty": "8197732882092308914751", + "swapFee": "6356148722170944882", "mpReserves": [ - "67208565807171787299335332", - "24272351866498378005862305", - "20880396390279648957513723" + "54615254510810872382551756", + "5717881746576464372483867", + "40601996925029885823104215" ], "fpReserves": [ - "13176005348919722144092482", - "16781412348748620057460970" + "1231764727137152633766591", + "3209240789474353457372912" ], - "mAssetSupply": "112293977631654962009508165", - "LPTokenSupply": "29630366910663202272625389" + "mAssetSupply": "100389862168338269724859795", + "LPTokenSupply": "4311713796371173262448471" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "39857367086097414225920", - "outputQty0": "40235889601343422078307", - "outputQty": "40334986961334185160647", - "swapFee1": "23914420251658448535", - "swapFee2": "16094355840537368831", - "mpReserves": [ - "67168230820210453114174685", - "24272351866498378005862305", - "20880396390279648957513723" - ], - "fpReserves": [ - "13135769459318378722014175", - "16781412348748620057460970" - ], - "mAssetSupply": "112253757836409459124798689", - "LPTokenSupply": "29590511935019130024244322" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1954417058891267571712", - "outputQty0": "1961147930972086504371", - "outputQty": "1941542503895292152334", + "outputIndex": 1, + "inputQty": "5178188766510960345088", + "outputQty0": "5295104267634151152436", + "outputQty": "4763922922782040678033", + "swapFee1": "3106913259906576207", + "swapFee2": "3177062560580490691", "mpReserves": [ - "67168230820210453114174685", - "24272351866498378005862305", - "20882350807338540225085435" + "54615254510810872382551756", + "5713117823653682331805834", + "40601996925029885823104215" ], "fpReserves": [ - "13137730607249350808518546", - "16781412348748620057460970" + "1226469622869518482614155", + "3209240789474353457372912" ], - "mAssetSupply": "112255718984340431211303060", - "LPTokenSupply": "29592453477523025316396656" + "mAssetSupply": "100384570241133196154198050", + "LPTokenSupply": "4306535918295988292761003" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "383369901072714280468480", - "outputQty0": "382270953521303772012213", - "outputQty": "378427752289958008224681", + "type": "redeem", + "outputIndex": 2, + "inputQty": "4659597380861672448", + "outputQty0": "4764685881658697062", + "outputQty": "4807429627218330550", + "swapFee1": "2795758428517003", + "swapFee2": "2858811528995218", "mpReserves": [ - "67551600721283167394643165", - "24272351866498378005862305", - "20882350807338540225085435" + "54615254510810872382551756", + "5713117823653682331805834", + "40601992117600258604773665" ], "fpReserves": [ - "13520001560770654580530759", - "16781412348748620057460970" + "1226464858183636823917093", + "3209240789474353457372912" ], - "mAssetSupply": "112637989937861734983315273", - "LPTokenSupply": "29970881229812983324621337" + "mAssetSupply": "100384565479306126024496206", + "LPTokenSupply": "4306531258978183273940255" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "417985452324472960", - "outputQty0": "416782190830036431", - "outputQty": "417056774959153475", - "swapFee": "330055172966238", + "type": "redeem", + "outputIndex": 0, + "inputQty": "992714857087633", + "outputQty0": "1015103660614315", + "outputQty": "1029468161324343", + "swapFee1": "595628914252", + "swapFee2": "609062196368", "mpReserves": [ - "67551601139268619719116125", - "24272351866498378005862305", - "20882350807338540225085435" + "54615254509781404221227413", + "5713117823653682331805834", + "40601992117600258604773665" ], "fpReserves": [ - "13520001977552845410567190", - "16781411931691845098307495" + "1226464857168533163302778", + "3209240789474353457372912" ], - "mAssetSupply": "112637990354643925813351704", - "LPTokenSupply": "29970881229845988841917960" + "mAssetSupply": "100384565478291631426078259", + "LPTokenSupply": "4306531257985527979744047" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "55169254424111552", - "outputQty0": "55699212673610595", - "outputQty": "55483558685985247", - "swapFee1": "33101552654466", - "swapFee2": "22279685069444", + "inputQty": "44733359369250356068352", + "outputQty0": "45731797679404570828580", + "outputQty": "46141678755022611718814", + "swapFee1": "26840015621550213641", + "swapFee2": "27439078607642742497", "mpReserves": [ - "67551601139268619719116125", - "24272351866498378005862305", - "20882350751854981539100188" + "54615254509781404221227413", + "5713117823653682331805834", + "40555850438845235993054851" ], "fpReserves": [ - "13520001921853632736956595", - "16781411931691845098307495" + "1180733059489128592474198", + "3209240789474353457372912" ], - "mAssetSupply": "112637990298966992824810553", - "LPTokenSupply": "29970881174680044573071854" + "mAssetSupply": "100338861119690834497992176", + "LPTokenSupply": "4261800582617839778697059" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "24760211016444520", - "outputQty0": "24688933395290901", - "outputQty": "24705198935406355", - "swapFee": "19551483629004", - "mpReserves": [ - "67551601164028830735560645", - "24272351866498378005862305", - "20882350751854981539100188" - ], - "fpReserves": [ - "13520001946542566132247496", - "16781411906986646162901140" - ], - "mAssetSupply": "112637990323655926220101454", - "LPTokenSupply": "29970881174681999721434754" + "type": "redeem", + "outputIndex": 2, + "inputQty": "851072171047648592134144", + "hardLimitError": true }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "791230973622874231799808", - "outputQty0": "792888056972396409005445", - "outputQty": "793121546705922261688028", - "swapFee": "627829400158366907167", + "inputQty": "10210986829843568", + "outputQty0": "11342733555183415", + "outputQty": "11445795375301898", + "swapFee": "8872797193967", "mpReserves": [ - "67551601164028830735560645", - "25063582840121252237662113", - "20882350751854981539100188" + "54615254509781404221227413", + "5713117833864669161649402", + "40555850438845235993054851" ], "fpReserves": [ - "14312890003514962541252941", - "15988290360280723901213112" + "1180733070831862147657613", + "3209240778028558082071014" ], - "mAssetSupply": "113430878380628322629106899", - "LPTokenSupply": "29970943957622015558125470" + "mAssetSupply": "100338861131033568053175591", + "LPTokenSupply": "4261800582618727058416455" }, { "type": "swap_fp_to_mp", - "inputQty": "34732825633300747911168", - "outputIndex": 2, - "outputQty": "34570768579190663927149", + "inputQty": "59463232044904", + "outputIndex": 0, + "outputQty": "59714040980646", "swapFee": "0", - "redemptionFee": "13882682908893901592", + "redemptionFee": "35328397629", "mpReserves": [ - "67551601164028830735560645", - "25063582840121252237662113", - "20847779983275790875173039" + "54615254509721690180246767", + "5713117833864669161649402", + "40555850438845235993054851" ], "fpReserves": [ - "14278183296242727787271727", - "16023023185914024649124280" + "1180733070772981484941210", + "3209240778088021314115918" ], - "mAssetSupply": "113396185556038996769027277", - "LPTokenSupply": "29970943957622015558125470" + "mAssetSupply": "100338861130974722718856817", + "LPTokenSupply": "4261800582618727058416455" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "324286478991554112", - "outputQty0": "323372269182026599", - "outputQty": "319977583086965234", + "inputQty": "603153796924775466008576", + "outputQty0": "594322558128732664673417", + "outputQty": "597235867575347629395622", + "swapFee": "463895493050007289947", "mpReserves": [ - "67551601488315309727114757", - "25063582840121252237662113", - "20847779983275790875173039" + "55218408306646465646255343", + "5713117833864669161649402", + "40555850438845235993054851" ], "fpReserves": [ - "14278183619614996969298326", - "16023023185914024649124280" + "1775055628901714149614627", + "2612004910512673684720296" ], - "mAssetSupply": "113396185879411265951053876", - "LPTokenSupply": "29970944277599598645090704" + "mAssetSupply": "100933183689103455383530234", + "LPTokenSupply": "4261846972168032059145449" }, { "type": "swap_fp_to_mp", - "inputQty": "7391522788045355008", - "outputIndex": 1, - "outputQty": "7368224530487061934", + "inputQty": "389746164966175", + "outputIndex": 0, + "outputQty": "394264237452719", "swapFee": "0", - "redemptionFee": "2954340093410637", + "redemptionFee": "233212589066", "mpReserves": [ - "67551601488315309727114757", - "25063575471896721750600179", - "20847779983275790875173039" + "55218408306252201408802624", + "5713117833864669161649402", + "40555850438845235993054851" ], "fpReserves": [ - "14278176233764763442704725", - "16023030577436812694479288" + "1775055628513026501170766", + "2612004910902419849686471" ], - "mAssetSupply": "113396178496515372517870912", - "LPTokenSupply": "29970944277599598645090704" + "mAssetSupply": "100933183688715000947675439", + "LPTokenSupply": "4261846972168032059145449" }, { "type": "swap_fp_to_mp", - "inputQty": "892598544655278800896", + "inputQty": "125263262484950595665920", "outputIndex": 2, - "outputQty": "888413294107730347244", + "outputQty": "125972500561722377743797", "swapFee": "0", - "redemptionFee": "356765268238765376", + "redemptionFee": "74917212500134181471", "mpReserves": [ - "67551601488315309727114757", - "25063575471896721750600179", - "20846891569981683144825795" + "55218408306252201408802624", + "5713117833864669161649402", + "40429877938283513615311054" ], "fpReserves": [ - "14277284320594166529263218", - "16023923175981467973280184" + "1650193607679469532051900", + "2737268173387370445352391" ], - "mAssetSupply": "113395286940110043843194781", - "LPTokenSupply": "29970944277599598645090704" + "mAssetSupply": "100808396585093944112738044", + "LPTokenSupply": "4261846972168032059145449" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "51399900548291966795776", - "outputQty0": "51254909647170884547453", - "outputQty": "51252110001050689557375", - "swapFee": "40573236682986587420", + "inputQty": "90247688545562345340928", + "outputQty0": "88915826961549145658554", + "outputQty": "86558366749028069843388", "mpReserves": [ - "67603001388863601693910533", - "25063575471896721750600179", - "20846891569981683144825795" + "55308655994797763754143552", + "5713117833864669161649402", + "40429877938283513615311054" ], "fpReserves": [ - "14328539230241337413810671", - "15972671065980417283722809" + "1739109434641018677710454", + "2737268173387370445352391" ], - "mAssetSupply": "113446541849757214727742234", - "LPTokenSupply": "29970948334923266943749446" + "mAssetSupply": "100897312412055493258396598", + "LPTokenSupply": "4348405338917060128988837" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "457209669338757509152768", - "outputQty0": "458096178689856012081497", - "outputQty": "457967890298276433474288", - "swapFee": "362600573098072549409", + "type": "mint", + "inputIndex": 0, + "inputQty": "191168467823410139889664", + "outputQty0": "188338830107884713554614", + "outputQty": "183273226193354817224142", "mpReserves": [ - "67603001388863601693910533", - "25520785141235479259752947", - "20846891569981683144825795" + "55499824462621173894033216", + "5713117833864669161649402", + "40429877938283513615311054" ], "fpReserves": [ - "14786635408931193425892168", - "15514703175682140850248521" + "1927448264748903391265068", + "2737268173387370445352391" ], - "mAssetSupply": "113904638028447070739823731", - "LPTokenSupply": "29970984594980576751004386" + "mAssetSupply": "101085651242163377971951212", + "LPTokenSupply": "4531678565110414946212979" }, { "type": "swap_fp_to_mp", - "inputQty": "24557046165160543125504", - "outputIndex": 2, - "outputQty": "24451815875193546505948", + "inputQty": "41993790318728934588416", + "outputIndex": 1, + "outputQty": "37590220991914637381396", "swapFee": "0", - "redemptionFee": "9819583541762366575", + "redemptionFee": "25131172313066535175", "mpReserves": [ - "67603001388863601693910533", - "25520785141235479259752947", - "20822439754106489598319847" + "55499824462621173894033216", + "5675527612872754524268006", + "40429877938283513615311054" ], "fpReserves": [ - "14762086450076787509454110", - "15539260221847301393374025" + "1885562977560459165972913", + "2779261963706099379940807" ], - "mAssetSupply": "113880098889176206585752248", - "LPTokenSupply": "29970984594980576751004386" + "mAssetSupply": "101043791086147246813194232", + "LPTokenSupply": "4531678565110414946212979" }, { "type": "swap_fp_to_mp", - "inputQty": "56814054691685460344832", - "outputIndex": 2, - "outputQty": "56567632861108856429870", + "inputQty": "14766182630007818240", + "outputIndex": 0, + "outputQty": "14940094112495655065", "swapFee": "0", - "redemptionFee": "22717326471879940731", + "redemptionFee": "8835530132013163", "mpReserves": [ - "67603001388863601693910533", - "25520785141235479259752947", - "20765872121245380741889977" + "55499809522527061398378151", + "5675527612872754524268006", + "40429877938283513615311054" ], "fpReserves": [ - "14705293133897087657624583", - "15596074276538986853718857" + "1885548251676905810701074", + "2779276729888729387759047" ], - "mAssetSupply": "113823328290322978613863452", - "LPTokenSupply": "29970984594980576751004386" + "mAssetSupply": "101043776369099223589935556", + "LPTokenSupply": "4531678565110414946212979" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "12162626298945101365248", - "outputQty0": "12206378291370606028323", - "outputQty": "12201305825730063504212", - "swapFee": "9660556744374200047", + "type": "swap_fp_to_mp", + "inputQty": "162381071315329953562624", + "outputIndex": 0, + "outputQty": "164190117579413680680197", + "swapFee": "0", + "redemptionFee": "97104121904482580732", "mpReserves": [ - "67603001388863601693910533", - "25520785141235479259752947", - "20778034747544325843255225" + "55335619404947647717697954", + "5675527612872754524268006", + "40429877938283513615311054" ], "fpReserves": [ - "14717499512188458263652906", - "15583872970713256790214645" + "1723708048502768176146822", + "2941657801204059341321671" ], - "mAssetSupply": "113835534668614349219891775", - "LPTokenSupply": "29970985561036251188424390" + "mAssetSupply": "100882033270046990437962036", + "LPTokenSupply": "4531678565110414946212979" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "141273479413296594944", + "outputQty0": "144990054249495726589", + "outputQty": "130086487180396273516", + "swapFee1": "84764087647977956", + "swapFee2": "86994032549697435", + "mpReserves": [ + "55335619404947647717697954", + "5675397526385574127994490", + "40429877938283513615311054" + ], + "fpReserves": [ + "1723563058448518680420233", + "2941657801204059341321671" + ], + "mAssetSupply": "100881888366986773491932882", + "LPTokenSupply": "4531537300107410414415830" }, { "type": "swap_fp_to_mp", - "inputQty": "568038701567624320", + "inputQty": "676114913350650374914048", "outputIndex": 0, - "outputQty": "569187140826673303", + "outputQty": "680232379715779812022083", "swapFee": "0", - "redemptionFee": "227129310603340", + "redemptionFee": "402352068687223251850", "mpReserves": [ - "67603000819676460867237230", - "25520785141235479259752947", - "20778034747544325843255225" + "54655387025231867905675871", + "5675397526385574127994490", + "40429877938283513615311054" ], "fpReserves": [ - "14717498944365181755302040", - "15583873538751958357838965" + "1052976277303146594003377", + "3617772714554709716235719" ], - "mAssetSupply": "113835534101018202022144249", - "LPTokenSupply": "29970985561036251188424390" + "mAssetSupply": "100211703937910088628767876", + "LPTokenSupply": "4531537300107410414415830" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1165323443999008751616", - "outputQty0": "1162066086493221417358", - "outputQty": "1161576361683034118683", - "swapFee": "919695781361692393", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1064970234776255232", + "outputQty0": "1084557788452825320", + "outputQty": "1094297316214885696", + "swapFee1": "638982140865753", + "swapFee2": "650734673071695", "mpReserves": [ - "67604166143120459875988846", - "25520785141235479259752947", - "20778034747544325843255225" + "54655387025231867905675871", + "5675397526385574127994490", + "40429876843986197400425358" ], "fpReserves": [ - "14718661010451674976719398", - "15582711962390275323720282" + "1052975192745358141178057", + "3617772714554709716235719" ], - "mAssetSupply": "113836696167104695243561607", - "LPTokenSupply": "29970985653005829324593629" + "mAssetSupply": "100211702854003034849014251", + "LPTokenSupply": "4531536235201073852247173" }, { "type": "mint", "inputIndex": 1, - "inputQty": "125817970474725681397760", - "outputQty0": "126052679805165500064880", - "outputQty": "124700717824061846541044", + "inputQty": "3395558071359592988672", + "outputQty0": "3776103753728563118124", + "outputQty": "3705551325640862032648", "mpReserves": [ - "67604166143120459875988846", - "25646603111710204941150707", - "20778034747544325843255225" + "54655387025231867905675871", + "5678793084456933720983162", + "40429876843986197400425358" ], "fpReserves": [ - "14844713690256840476784278", - "15582711962390275323720282" + "1056751296499086704296181", + "3617772714554709716235719" ], - "mAssetSupply": "113962748846909860743626487", - "LPTokenSupply": "30095686370829891171134673" + "mAssetSupply": "100215478957756763412132375", + "LPTokenSupply": "4535241786526714714279821" }, { - "type": "swap_fp_to_mp", - "inputQty": "74626507790729351266304", - "outputIndex": 0, - "outputQty": "74778393653374372579975", - "swapFee": "0", - "redemptionFee": "29840030885351100554", + "type": "redeem", + "outputIndex": 2, + "inputQty": "108770298822824083456", + "outputQty0": "110778495924959255883", + "outputQty": "111772569951085741234", + "swapFee1": "65262179293694450", + "swapFee2": "66467097554975553", "mpReserves": [ - "67529387749467085503408871", - "25646603111710204941150707", - "20778034747544325843255225" + "54655387025231867905675871", + "5678793084456933720983162", + "40429765071416246314684124" ], "fpReserves": [ - "14770113613043462725397479", - "15657338470181004674986586" + "1056640518003161745040298", + "3617772714554709716235719" ], - "mAssetSupply": "113888178609727368343340242", - "LPTokenSupply": "30095686370829891171134673" + "mAssetSupply": "100215368245727936007852045", + "LPTokenSupply": "4535133022754109819565810" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "2033218429694496735232", - "outputQty0": "2053989254252404075960", - "outputQty": "2058894025020976012215", - "swapFee1": "1219931057816698041", - "swapFee2": "821595701700961630", + "outputIndex": 1, + "inputQty": "52059079832226756558848", + "outputQty0": "52992984928759622185960", + "outputQty": "47587264383232231533940", + "swapFee1": "31235447899336053935", + "swapFee2": "31795790957255773311", "mpReserves": [ - "67527328855442064527396656", - "25646603111710204941150707", - "20778034747544325843255225" + "54655387025231867905675871", + "5631205820073701489449222", + "40429765071416246314684124" ], "fpReserves": [ - "14768059623789210321321519", - "15657338470181004674986586" + "1003647533074402122854338", + "3617772714554709716235719" ], - "mAssetSupply": "113886125442068817640225912", - "LPTokenSupply": "30093653274393302456069245" + "mAssetSupply": "100162407056590133641439396", + "LPTokenSupply": "4483077066466672996612355" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "24623442108781890109440", - "outputQty0": "24711781850989229124497", - "outputQty": "24701322438738227918126", - "swapFee": "19557714823633408894", + "type": "swap_fp_to_mp", + "inputQty": "397470226923085103104", + "outputIndex": 2, + "outputQty": "394684410815143750818", + "swapFee": "0", + "redemptionFee": "234682750325031457", "mpReserves": [ - "67527328855442064527396656", - "25646603111710204941150707", - "20802658189653107733364665" + "54655387025231867905675871", + "5631205820073701489449222", + "40429370387005431170933306" ], "fpReserves": [ - "14792771405640199550446016", - "15632637147742266447068460" + "1003256395157193737091147", + "3618170184781632801338823" ], - "mAssetSupply": "113910837223919806869350409", - "LPTokenSupply": "30093655230164784819410134" + "mAssetSupply": "100162016153355675580707662", + "LPTokenSupply": "4483077066466672996612355" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "604911804582116953423872", - "outputQty0": "607005188261686357603582", - "outputQty": "606581150435559253923835", - "swapFee": "480366632728601865431", + "inputQty": "377559545920695238656", + "outputQty0": "373942431244660774235", + "outputQty": "367330087422563708291", "mpReserves": [ - "67527328855442064527396656", - "25646603111710204941150707", - "21407569994235224686788537" + "54655387025231867905675871", + "5631205820073701489449222", + "40429747946551351866171962" ], "fpReserves": [ - "15399776593901885908049598", - "15026055997306707193144625" + "1003630337588438397865382", + "3618170184781632801338823" ], - "mAssetSupply": "114517842412181493226953991", - "LPTokenSupply": "30093703266828057679596677" + "mAssetSupply": "100162390095786920241481897", + "LPTokenSupply": "4483444396554095560320646" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "39539449470582612033536", - "outputQty0": "39954882618740847805770", - "outputQty": "40047573093920234645584", - "swapFee1": "23723669682349567220", - "swapFee2": "15981953047496339122", + "outputIndex": 1, + "inputQty": "6484116956552422752256", + "outputQty0": "6596435726406765865818", + "outputQty": "5917983823221057860880", + "swapFee1": "3890470173931453651", + "swapFee2": "3957861435844059519", "mpReserves": [ - "67487281282348144292751072", - "25646603111710204941150707", - "21407569994235224686788537" + "54655387025231867905675871", + "5625287836250480431588342", + "40429747946551351866171962" ], "fpReserves": [ - "15359821711283145060243828", - "15026055997306707193144625" + "997033901862031631999564", + "3618170184781632801338823" ], - "mAssetSupply": "114477903511515799875487343", - "LPTokenSupply": "30054166189724443302519863" + "mAssetSupply": "100155797617921949319675598", + "LPTokenSupply": "4476960668644560530713755" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "94544990012634621280256", - "outputQty0": "94288279273739196283076", - "outputQty": "94195265371149153289967", - "swapFee": "74601057869601147397", + "type": "mint", + "inputIndex": 2, + "inputQty": "61194044035276611584", + "outputQty0": "60607078871779117233", + "outputQty": "59543533596092543564", "mpReserves": [ - "67581826272360778914031328", - "25646603111710204941150707", - "21407569994235224686788537" + "54655387025231867905675871", + "5625287836250480431588342", + "40429809140595387142783546" ], "fpReserves": [ - "15454109990556884256526904", - "14931860731935558039854658" + "997094508940903411116797", + "3618170184781632801338823" ], - "mAssetSupply": "114572191790789539071770419", - "LPTokenSupply": "30054173649830230262634602" + "mAssetSupply": "100155858225000821098792831", + "LPTokenSupply": "4477020212178156623257319" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "15517081725813651406848", - "outputQty0": "15568980495391077872793", - "outputQty": "15552876569127159136134", - "swapFee": "12317781925327532453", + "inputQty": "4750005967771889827840", + "outputQty0": "4704440473921122077950", + "outputQty": "4777226207681829545133", + "swapFee": "3697317650613002154", "mpReserves": [ - "67581826272360778914031328", - "25646603111710204941150707", - "21423087075961038338195385" + "54655387025231867905675871", + "5625287836250480431588342", + "40434559146563159032611386" ], "fpReserves": [ - "15469678971052275334399697", - "14916307855366430880718524" + "1001798949414824533194747", + "3613392958573950971793690" ], - "mAssetSupply": "114587760771284930149643212", - "LPTokenSupply": "30054174881608422795387847" + "mAssetSupply": "100160562665474742220870781", + "LPTokenSupply": "4477020581909921684557534" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "339202371236612190240768", - "outputQty0": "342769668922953428904499", - "outputQty": "343562292852769829248899", - "swapFee1": "203521422741967314144", - "swapFee2": "137107867569181371561", + "type": "mint", + "inputIndex": 0, + "inputQty": "2988808746575985115136", + "outputQty0": "2944589158832151512191", + "outputQty": "2892444942752102842682", "mpReserves": [ - "67238263979508009084782429", - "25646603111710204941150707", - "21423087075961038338195385" + "54658375833978443890791007", + "5625287836250480431588342", + "40434559146563159032611386" ], "fpReserves": [ - "15126909302129321905495198", - "14916307855366430880718524" + "1004743538573656684706938", + "3613392958573950971793690" ], - "mAssetSupply": "114245128210229545902110274", - "LPTokenSupply": "29714992862514084801878493" + "mAssetSupply": "100163507254633574372382972", + "LPTokenSupply": "4479913026852673787400216" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2545493259933366102261760", - "outputQty0": "2538435602027461820662905", - "outputQty": "2533238199930337146611081", - "swapFee": "2007954560451892832501", + "type": "mint", + "inputIndex": 1, + "inputQty": "1905829229127854848", + "outputQty0": "2123298746085731366", + "outputQty": "2085632805107599676", "mpReserves": [ - "69783757239441375187044189", - "25646603111710204941150707", - "21423087075961038338195385" + "54658375833978443890791007", + "5625289742079709559443190", + "40434559146563159032611386" ], "fpReserves": [ - "17665344904156783726158103", - "12383069655436093734107443" + "1004745661872402770438304", + "3613392958573950971793690" ], - "mAssetSupply": "116783563812257007722773179", - "LPTokenSupply": "29715193657970129991161743" + "mAssetSupply": "100163509377932320458114338", + "LPTokenSupply": "4479915112485478894999892" }, { "type": "swap_fp_to_mp", - "inputQty": "59150316502584238080", - "outputIndex": 1, - "outputQty": "59152336933084731957", + "inputQty": "1763803467796675584", + "outputIndex": 2, + "outputQty": "1751587249013171719", "swapFee": "0", - "redemptionFee": "23718826323040480", + "redemptionFee": "1041495062978989", "mpReserves": [ - "69783757239441375187044189", - "25646543959373271856418750", - "21423087075961038338195385" + "54658375833978443890791007", + "5625289742079709559443190", + "40434557394975910019439667" ], "fpReserves": [ - "17665285607090976124956705", - "12383128805752596318345523" + "1004743926047297805455135", + "3613394722377418768469274" ], - "mAssetSupply": "116783504538910026444612261", - "LPTokenSupply": "29715193657970129991161743" + "mAssetSupply": "100163507643148710556110158", + "LPTokenSupply": "4479915112485478894999892" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "9672240464634126008320", - "outputQty0": "9784820000262278075375", - "outputQty": "9746077182746791351252", - "swapFee1": "5803344278780475604", - "swapFee2": "3913928000104911230", + "type": "swap_fp_to_mp", + "inputQty": "123536654414530101248", + "outputIndex": 1, + "outputQty": "109059141203736766707", + "swapFee": "0", + "redemptionFee": "72946073918380767", "mpReserves": [ - "69783757239441375187044189", - "25646543959373271856418750", - "21413340998778291546844133" + "54658375833978443890791007", + "5625180682938505822676483", + "40434557394975910019439667" ], "fpReserves": [ - "17655500787090713846881330", - "12383128805752596318345523" + "1004622349257433837508919", + "3613518259031833298570522" ], - "mAssetSupply": "116773723632837764271448116", - "LPTokenSupply": "29705521997839923743200983" + "mAssetSupply": "100163386139304920506544709", + "LPTokenSupply": "4479915112485478894999892" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "570384675578682324025344", - "outputQty0": "572359960928520578133501", - "outputQty": "570312268514746538148076", - "swapFee": "452325382717871327702", + "type": "swap_fp_to_mp", + "inputQty": "29076258501775", + "outputIndex": 0, + "outputQty": "29027225554703", + "swapFee": "0", + "redemptionFee": "17168947959", "mpReserves": [ - "69783757239441375187044189", - "25646543959373271856418750", - "21983725674356973870869477" + "54658375833949416665236304", + "5625180682938505822676483", + "40434557394975910019439667" ], "fpReserves": [ - "18227860748019234425014831", - "11812816537237849780197447" + "1004622349228818924242981", + "3613518259060909557072297" ], - "mAssetSupply": "117346083593766284849581617", - "LPTokenSupply": "29705567230378195530333753" + "mAssetSupply": "100163386139276322762226730", + "LPTokenSupply": "4479915112485478894999892" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "527163847100672409337856", - "outputQty0": "528880554926336110817390", - "outputQty": "522318037684602509760083", + "type": "redeem", + "outputIndex": 0, + "inputQty": "3279362349243804680192", + "outputQty0": "3336453609806663184116", + "outputQty": "3384526733967827490055", + "swapFee1": "1967617409546282808", + "swapFee2": "2001872165883997910", "mpReserves": [ - "69783757239441375187044189", - "25646543959373271856418750", - "22510889521457646280207333" + "54654991307215448837746249", + "5625180682938505822676483", + "40434557394975910019439667" ], "fpReserves": [ - "18756741302945570535832221", - "11812816537237849780197447" + "1001285895619012261058865", + "3613518259060909557072297" ], - "mAssetSupply": "117874964148692620960399007", - "LPTokenSupply": "30227885268062798040093836" + "mAssetSupply": "100160051687538681983040524", + "LPTokenSupply": "4476635946897976044947980" }, { - "type": "swap_fp_to_mp", - "inputQty": "751537971571779113582592", - "outputIndex": 2, - "outputQty": "750956709923461143040115", - "swapFee": "0", - "redemptionFee": "301493940372701015648", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "233154422030334531993600", + "outputQty0": "229696376295992276567877", + "outputQty": "232460530461595784705100", + "swapFee": "180146392937784935436", "mpReserves": [ - "69783757239441375187044189", - "25646543959373271856418750", - "21759932811534185137167218" + "54888145729245783369739849", + "5625180682938505822676483", + "40434557394975910019439667" ], "fpReserves": [ - "18003006452013817996711987", - "12564354508809628893780039" + "1230982271915004537626742", + "3381057728599313772367197" ], - "mAssetSupply": "117121530791701241122294421", - "LPTokenSupply": "30227885268062798040093836" + "mAssetSupply": "100389748063834674259608401", + "LPTokenSupply": "4476653961537269823441523" }, { "type": "swap_fp_to_mp", - "inputQty": "7639514860626309", - "outputIndex": 1, - "outputQty": "7639914279680203", + "inputQty": "649768996853389852672", + "outputIndex": 2, + "outputQty": "649113016061603726199", "swapFee": "0", - "redemptionFee": "3063491256637", + "redemptionFee": "385968641493800492", "mpReserves": [ - "69783757239441375187044189", - "25646543951733357576738547", - "21759932811534185137167218" + "54888145729245783369739849", + "5625180682938505822676483", + "40433908281959848415713468" ], "fpReserves": [ - "18003006444355089855118974", - "12564354516449143754406348" + "1230338990845848203471835", + "3381707497596167162219869" ], - "mAssetSupply": "117121530784045576471958045", - "LPTokenSupply": "30227885268062798040093836" + "mAssetSupply": "100389105168734159419253986", + "LPTokenSupply": "4476653961537269823441523" }, { - "type": "swap_fp_to_mp", - "inputQty": "3229274995194835968", - "outputIndex": 1, - "outputQty": "3229443825602180896", - "swapFee": "0", - "redemptionFee": "1294958629810391", + "type": "redeem", + "outputIndex": 2, + "inputQty": "168265021837649952", + "outputQty0": "171980826316203692", + "outputQty": "173539973692707668", + "swapFee1": "100959013102589", + "swapFee2": "103188495789722", "mpReserves": [ - "69783757239441375187044189", - "25646540722289531974557651", - "21759932811534185137167218" + "54888145729245783369739849", + "5625180682938505822676483", + "40433908108419874723005800" ], "fpReserves": [ - "18003003206958515329140151", - "12564357745724138949242316" + "1230338818865021887268143", + "3381707497596167162219869" ], - "mAssetSupply": "117121527547943960575789613", - "LPTokenSupply": "30227885268062798040093836" + "mAssetSupply": "100389104996856521598840016", + "LPTokenSupply": "4476653793282343887101829" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "12779298614561300545536", - "outputQty0": "12928399688126791137582", - "outputQty": "12959696923077313640706", - "swapFee1": "7667579168736780327", - "swapFee2": "5171359875250716455", - "mpReserves": [ - "69770797542518297873403483", - "25646540722289531974557651", - "21759932811534185137167218" - ], - "fpReserves": [ - "17990074807270388538002569", - "12564357745724138949242316" - ], - "mAssetSupply": "117108604319615709035368486", - "LPTokenSupply": "30215106736206153613226332" + "outputIndex": 1, + "inputQty": "1102938069144649487876096", + "hardLimitError": true }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "541065887266018", - "outputQty0": "542180809396978", - "outputQty": "540390994331299", - "swapFee": "428485488890", + "type": "mint", + "inputIndex": 0, + "inputQty": "49425713725768548220928", + "outputQty0": "48690444095860597626480", + "outputQty": "47598126552322456021789", "mpReserves": [ - "69770797542518297873403483", - "25646540722830597861823669", - "21759932811534185137167218" + "54937571442971551917960777", + "5625180682938505822676483", + "40433908108419874723005800" ], "fpReserves": [ - "17990074807812569347399547", - "12564357745183747954911017" + "1279029262960882484894623", + "3381707497596167162219869" ], - "mAssetSupply": "117108604320157889844765464", - "LPTokenSupply": "30215106736206196461775221" + "mAssetSupply": "100437795440952382196466496", + "LPTokenSupply": "4524251919834666343123618" }, { - "type": "swap_fp_to_mp", - "inputQty": "869337878127346974720", - "outputIndex": 2, - "outputQty": "868186117741511351108", - "swapFee": "0", - "redemptionFee": "348607608150236081", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "350368258325700480598016", + "outputQty0": "346991319932472869006437", + "outputQty": "349103307581926575528250", + "swapFee": "270947452898339837453", "mpReserves": [ - "69770797542518297873403483", - "25646540722830597861823669", - "21759064625416443625816110" + "54937571442971551917960777", + "5625180682938505822676483", + "40784276366745575203603816" ], "fpReserves": [ - "17989203288792193757194677", - "12565227083061875301885737" + "1626020582893355353901060", + "3032604190014240586691619" ], - "mAssetSupply": "117107733149745122404796675", - "LPTokenSupply": "30215106736206196461775221" + "mAssetSupply": "100784786760884855065472933", + "LPTokenSupply": "4524279014579956177107363" }, { - "type": "swap_fp_to_mp", - "inputQty": "1270886348175548472098816", - "outputIndex": 1, - "outputQty": "1269936149088197559572932", - "swapFee": "0", - "redemptionFee": "509308320018036989592", + "type": "redeem", + "outputIndex": 2, + "inputQty": "3778166483149555200", + "outputQty0": "3875819303937372462", + "outputQty": "3911436621181547714", + "swapFee1": "2266899889889733", + "swapFee2": "2325491582362423", "mpReserves": [ - "69770797542518297873403483", - "24376604573742400302250737", - "21759064625416443625816110" + "54937571442971551917960777", + "5625180682938505822676483", + "40784272455308954022056102" ], "fpReserves": [ - "16715932488747101283212260", - "13836113431237423773984553" + "1626016707074051416528598", + "3032604190014240586691619" ], - "mAssetSupply": "115834971658020047967803850", - "LPTokenSupply": "30215106736206196461775221" + "mAssetSupply": "100784782887391042710462894", + "LPTokenSupply": "4524275236640163016541136" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1212144716071291648", - "outputQty0": "1215049884941752087", - "outputQty": "1200958287663412408", + "type": "redeem", + "outputIndex": 0, + "inputQty": "4285751953186025897984", + "outputQty0": "4396484755711793150461", + "outputQty": "4460131387859371951541", + "swapFee1": "2571451171911615538", + "swapFee2": "2637890853427075890", "mpReserves": [ - "69770797542518297873403483", - "24376605785887116373542385", - "21759064625416443625816110" + "54933111311583692546009236", + "5625180682938505822676483", + "40784272455308954022056102" ], "fpReserves": [ - "16715933703796986224964347", - "13836113431237423773984553" + "1621620222318339623378137", + "3032604190014240586691619" ], - "mAssetSupply": "115834972873069932909555937", - "LPTokenSupply": "30215107937164484125187629" + "mAssetSupply": "100780389040526184344388323", + "LPTokenSupply": "4519989741832094181804705" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "203286499709815495852032", - "outputQty0": "205544404644561427513127", - "outputQty": "206061714034370871774718", - "swapFee1": "121971899825889297511", - "swapFee2": "82217761857824571005", + "inputQty": "4035582422932251136", + "outputQty0": "4139816431449187034", + "outputQty": "4199744350859586388", + "swapFee1": "2421349453759350", + "swapFee2": "2483889858869512", "mpReserves": [ - "69564735828483927001628765", - "24376605785887116373542385", - "21759064625416443625816110" + "54933107111839341686422848", + "5625180682938505822676483", + "40784272455308954022056102" ], "fpReserves": [ - "16510389299152424797451220", - "13836113431237423773984553" + "1621616082501908174191103", + "3032604190014240586691619" ], - "mAssetSupply": "115629510686187229306613815", - "LPTokenSupply": "30011833634644651218265348" + "mAssetSupply": "100780384903193642754070801", + "LPTokenSupply": "4519985706491806194929504" }, { "type": "mint", "inputIndex": 2, - "inputQty": "215810242369146157268992", - "outputQty0": "216525959788942358056092", - "outputQty": "214017929866781073733129", + "inputQty": "2601979160574816256", + "outputQty0": "2576738002791365220", + "outputQty": "2510352719670935140", "mpReserves": [ - "69564735828483927001628765", - "24376605785887116373542385", - "21974874867785589783085102" + "54933107111839341686422848", + "5625180682938505822676483", + "40784275057288114596872358" ], "fpReserves": [ - "16726915258941367155507312", - "13836113431237423773984553" + "1621618659239910965556323", + "3032604190014240586691619" ], - "mAssetSupply": "115846036645976171664669907", - "LPTokenSupply": "30225851564511432291998477" + "mAssetSupply": "100780387479931645545436021", + "LPTokenSupply": "4519988216844525865864644" }, { "type": "mint", "inputIndex": 0, - "inputQty": "225383995115678859264", - "outputQty0": "224734710266558439248", - "outputQty": "222127064513426001054", + "inputQty": "44671012074221690880", + "outputQty0": "44007162177812530234", + "outputQty": "42873388218817049503", "mpReserves": [ - "69564961212479042680488029", - "24376605785887116373542385", - "21974874867785589783085102" + "54933151782851415908113728", + "5625180682938505822676483", + "40784275057288114596872358" ], "fpReserves": [ - "16727139993651633713946560", - "13836113431237423773984553" + "1621662666402088778086557", + "3032604190014240586691619" ], - "mAssetSupply": "115846261380686438223109155", - "LPTokenSupply": "30226073691575945717999531" + "mAssetSupply": "100780431487093823357966255", + "LPTokenSupply": "4520031090232744682914147" }, { - "type": "swap_fp_to_mp", - "inputQty": "85211920856400707584", - "outputIndex": 2, - "outputQty": "85008070589083466866", - "swapFee": "0", - "redemptionFee": "34128266547426141", + "type": "redeem", + "outputIndex": 0, + "inputQty": "45418117539751436288", + "outputQty0": "46591214348431174324", + "outputQty": "47265668334263693075", + "swapFee1": "27250870523850861", + "swapFee2": "27954728609058704", "mpReserves": [ - "69564961212479042680488029", - "24376605785887116373542385", - "21974789859715000699618236" + "54933104517183081644420653", + "5625180682938505822676483", + "40784275057288114596872358" ], "fpReserves": [ - "16727054672985265148591791", - "13836198643158280174692137" + "1621616075187740346912233", + "3032604190014240586691619" ], - "mAssetSupply": "115846176094148336205180527", - "LPTokenSupply": "30226073691575945717999531" + "mAssetSupply": "100780384923834203535850635", + "LPTokenSupply": "4519985674840291983862945" }, { - "type": "swap_fp_to_mp", - "inputQty": "2829834701551604596736", - "outputIndex": 0, - "outputQty": "2840491585122414132794", - "swapFee": "0", - "redemptionFee": "1133376918374023143", + "type": "mint", + "inputIndex": 2, + "inputQty": "40272479451665719296", + "outputQty0": "39881805753685275009", + "outputQty": "38854315514840716819", "mpReserves": [ - "69562120720893920266355235", - "24376605785887116373542385", - "21974789859715000699618236" + "54933104517183081644420653", + "5625180682938505822676483", + "40784315329767566262591654" ], "fpReserves": [ - "16724221230689330090733155", - "13839028477859831779288873" + "1621655956993494032187242", + "3032604190014240586691619" ], - "mAssetSupply": "115843343785229319521345034", - "LPTokenSupply": "30226073691575945717999531" + "mAssetSupply": "100780424805639957221125644", + "LPTokenSupply": "4520024529155806824579764" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "44380629589147738112", - "outputQty0": "44486647761486189436", - "outputQty": "44394519013123174373", - "swapFee": "35176409195570911", + "type": "swap_fp_to_mp", + "inputQty": "25735651594232846614528", + "outputIndex": 2, + "outputQty": "25842865865339783252183", + "swapFee": "0", + "redemptionFee": "15364591880008159255", "mpReserves": [ - "69562120720893920266355235", - "24376650166516705521280497", - "21974789859715000699618236" + "54933104517183081644420653", + "5625180682938505822676483", + "40758472463902226479339471" ], "fpReserves": [ - "16724265717337091576922591", - "13838984083340818656114500" + "1596048303860147100094457", + "3058339841608473433306147" ], - "mAssetSupply": "115843388271877081007534470", - "LPTokenSupply": "30226073695093586637556622" + "mAssetSupply": "100754832517098490297192114", + "LPTokenSupply": "4520024529155806824579764" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1557836463076321154564096", - "outputQty0": "1561234720708272811493494", - "outputQty": "1556837015930694566286104", - "swapFee": "1234321883406877331710", + "type": "redeem", + "outputIndex": 2, + "inputQty": "33339460556427448", + "outputQty0": "34194945652243994", + "outputQty": "34508875243560029", + "swapFee1": "20003676333856", + "swapFee2": "20516967391346", "mpReserves": [ - "69562120720893920266355235", - "25934486629593026675844593", - "21974789859715000699618236" + "54933104517183081644420653", + "5625180682938505822676483", + "40758472429393351235779442" ], "fpReserves": [ - "18285500438045364388416085", - "12282147067410124089828396" + "1596048269665201447850463", + "3058339841608473433306147" ], - "mAssetSupply": "117404622992585353819027964", - "LPTokenSupply": "30226197127281927325289793" + "mAssetSupply": "100754832482924061612339466", + "LPTokenSupply": "4520024495818346635785701" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "80300979572379935047680", - "outputQty0": "80568616088801036408747", - "outputQty": "79578027781210803389811", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "15102968050386624053248", + "outputQty0": "16842336584894199211023", + "outputQty": "16913709882280551189053", + "swapFee": "13128426124003092234", "mpReserves": [ - "69562120720893920266355235", - "25934486629593026675844593", - "22055090839287380634665916" + "54933104517183081644420653", + "5640283650988892446729731", + "40758472429393351235779442" ], "fpReserves": [ - "18366069054134165424824832", - "12282147067410124089828396" + "1612890606250095647061486", + "3041426131726192882117094" ], - "mAssetSupply": "117485191608674154855436711", - "LPTokenSupply": "30305775155063138128679604" + "mAssetSupply": "100771674819508955811550489", + "LPTokenSupply": "4520025808660959036094924" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "2699976317094590939136", - "outputQty0": "2708933499711679033569", - "outputQty": "2699066030262859297000", - "swapFee": "2140486186665705501", + "type": "redeem", + "outputIndex": 2, + "inputQty": "11142284219145477160960", + "outputQty0": "11429197831044070271704", + "outputQty": "11533755671870183144162", + "swapFee1": "6685370531487286296", + "swapFee2": "6857518698626442163", "mpReserves": [ - "69562120720893920266355235", - "25934486629593026675844593", - "22057790815604475225605052" + "54933104517183081644420653", + "5640283650988892446729731", + "40746938673721481052635280" ], "fpReserves": [ - "18368777987633877103858401", - "12279448001379861230531396" + "1601461408419051576789782", + "3041426131726192882117094" ], - "mAssetSupply": "117487900542173866534470280", - "LPTokenSupply": "30305775369111756795250154" + "mAssetSupply": "100760252479196610367720948", + "LPTokenSupply": "4508884192978866707662593" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "113571256737923512401920", - "outputQty0": "113258627789249071628914", - "outputQty": "111864080508708178393684", + "type": "swap_fp_to_mp", + "inputQty": "1526833432363801830752256", + "outputIndex": 2, + "hardLimitError": true + }, + { + "type": "swap_fp_to_mp", + "inputQty": "394298444351824914808832", + "outputIndex": 2, + "outputQty": "394911961861727614655183", + "swapFee": "0", + "redemptionFee": "234816257789711351606", "mpReserves": [ - "69675691977631843778757155", - "25934486629593026675844593", - "22057790815604475225605052" + "54933104517183081644420653", + "5640283650988892446729731", + "40352026711859753437980097" ], "fpReserves": [ - "18482036615423126175487315", - "12279448001379861230531396" + "1210100978769532657446177", + "3435724576078017796925926" ], - "mAssetSupply": "117601159169963115606099194", - "LPTokenSupply": "30417639449620464973643838" + "mAssetSupply": "100369126865804881159728949", + "LPTokenSupply": "4508884192978866707662593" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "28739594992518590464", - "outputQty0": "28835249929245107176", - "outputQty": "28728753987443235544", - "swapFee": "22783937162413559", + "type": "redeem", + "outputIndex": 2, + "inputQty": "137987951953253974016", + "outputQty0": "140982374662272988440", + "outputQty": "142251670131162219471", + "swapFee1": "82792771171952384", + "swapFee2": "84589424797363793", "mpReserves": [ - "69675691977631843778757155", - "25934486629593026675844593", - "22057819555199467744195516" + "54933104517183081644420653", + "5640283650988892446729731", + "40351884460189622275760626" ], "fpReserves": [ - "18482065450673055420594491", - "12279419272625873787295852" + "1209959996394870384457737", + "3435724576078017796925926" ], - "mAssetSupply": "117601188005213044851206370", - "LPTokenSupply": "30417639451898858689885193" + "mAssetSupply": "100368985968019643684104302", + "LPTokenSupply": "4508746213306190570883815" }, { "type": "swap_fp_to_mp", - "inputQty": "9844068084770291712", + "inputQty": "15912763232051030654976", "outputIndex": 1, - "outputQty": "9849032284688700908", + "outputQty": "14117972648590003706946", "swapFee": "0", - "redemptionFee": "3949062067456955", + "redemptionFee": "9445119631056466744", "mpReserves": [ - "69675691977631843778757155", - "25934476780560741987143685", - "22057819555199467744195516" + "54933104517183081644420653", + "5626165678340302443022785", + "40351884460189622275760626" ], "fpReserves": [ - "18482055578017886778205982", - "12279429116693958557587564" + "1194218130343109606550913", + "3451637339310068827580902" ], - "mAssetSupply": "117601178136506938276274816", - "LPTokenSupply": "30417639451898858689885193" + "mAssetSupply": "100353253547087513962664222", + "LPTokenSupply": "4508746213306190570883815" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "17682222237372618113024", - "outputQty0": "17717505857415715091731", - "outputQty": "17499151007128064622504", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1316681571866719232", + "outputQty0": "1344920974503845681", + "outputQty": "1364423799530874209", + "swapFee1": "790008943120031", + "swapFee2": "806952584702307", "mpReserves": [ - "69675691977631843778757155", - "25952159002798114605256709", - "22057819555199467744195516" + "54933103152759282113546444", + "5626165678340302443022785", + "40351884460189622275760626" ], "fpReserves": [ - "18499773083875302493297713", - "12279429116693958557587564" + "1194216785422135102705232", + "3451637339310068827580902" ], - "mAssetSupply": "117618895642364353991366547", - "LPTokenSupply": "30435138602905986754507697" + "mAssetSupply": "100353252202973492043520848", + "LPTokenSupply": "4508744896703619598476586" }, { - "type": "swap_fp_to_mp", - "inputQty": "289301946140334487502848", + "type": "redeem", "outputIndex": 2, - "outputQty": "289005181206926619571997", - "swapFee": "0", - "redemptionFee": "116039623232385158725", + "inputQty": "6759201698821956608", + "outputQty0": "6904168696710657059", + "outputQty": "6966521097368438473", + "swapFee1": "4055521019293173", + "swapFee2": "4142501218026394", "mpReserves": [ - "69675691977631843778757155", - "25952159002798114605256709", - "21768814373992541124623519" + "54933103152759282113546444", + "5626165678340302443022785", + "40351877493668524907322153" ], "fpReserves": [ - "18209674025794339596482980", - "12568731062834293045090412" + "1194209881253438392048173", + "3451637339310068827580902" ], - "mAssetSupply": "117328912623906623479710539", - "LPTokenSupply": "30435138602905986754507697" + "mAssetSupply": "100353245302947296550890183", + "LPTokenSupply": "4508738137907472878449295" }, { - "type": "swap_fp_to_mp", - "inputQty": "13291048679399417856", - "outputIndex": 2, - "outputQty": "13274644897687654061", - "swapFee": "0", - "redemptionFee": "5330247664715514", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "2728768966119716290560", + "outputQty0": "3041429614585467358451", + "outputQty": "3072404664348009853200", + "swapFee": "2380582908206374527", "mpReserves": [ - "69675691977631843778757155", - "25952159002798114605256709", - "21768801099347643436969458" + "54933103152759282113546444", + "5628894447306422159313345", + "40351877493668524907322153" ], "fpReserves": [ - "18209660700175177807695585", - "12568744353882972444508268" + "1197251310868023859406624", + "3448564934645720817727702" ], - "mAssetSupply": "117328899303617709355638658", - "LPTokenSupply": "30435138602905986754507697" + "mAssetSupply": "100356286732561882018248634", + "LPTokenSupply": "4508738375965763699086747" }, { "type": "mint", "inputIndex": 1, - "inputQty": "254699321152822021455872", - "outputQty0": "255195853579534184235377", - "outputQty": "252076334491882775328721", + "inputQty": "1418535915328128768", + "outputQty0": "1580994120989925053", + "outputQty": "1546793521675288157", "mpReserves": [ - "69675691977631843778757155", - "26206858323950936626712581", - "21768801099347643436969458" + "54933103152759282113546444", + "5628895865842337487442113", + "40351877493668524907322153" ], "fpReserves": [ - "18464856553754711991930962", - "12568744353882972444508268" + "1197252891862144849331677", + "3448564934645720817727702" ], - "mAssetSupply": "117584095157197243539874035", - "LPTokenSupply": "30687214937397869529836418" + "mAssetSupply": "100356288313556003008173687", + "LPTokenSupply": "4508739922759285374374904" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "6092980787145592537088", - "outputQty0": "6104672540623704684035", - "outputQty": "6083281016782641772407", - "swapFee": "4823929577382486175", + "type": "swap_fp_to_mp", + "inputQty": "59195923433651645186048", + "outputIndex": 1, + "outputQty": "52421936257967526029788", + "swapFee": "0", + "redemptionFee": "35109369448027320194", "mpReserves": [ - "69675691977631843778757155", - "26212951304738082219249669", - "21768801099347643436969458" + "54933103152759282113546444", + "5576473929584369961412325", + "40351877493668524907322153" ], "fpReserves": [ - "18470961226295335696614997", - "12562661072866189802735861" + "1138737276115432649007014", + "3507760858079372462913750" ], - "mAssetSupply": "117590199829737867244558070", - "LPTokenSupply": "30687215419790827268085035" + "mAssetSupply": "100297807807178738835169218", + "LPTokenSupply": "4508739922759285374374904" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "1019695321340195832332288", - "outputQty0": "1016845077749938978634975", - "outputQty": "1012707159659999638474267", - "swapFee": "803442211919072887013", + "inputQty": "542166003204443263205376", + "outputQty0": "533977327929409782093750", + "outputQty": "537638184178440033903719", + "swapFee": "417277919150140564701", "mpReserves": [ - "70695387298972039611089443", - "26212951304738082219249669", - "21768801099347643436969458" + "55475269155963725376751820", + "5576473929584369961412325", + "40351877493668524907322153" ], "fpReserves": [ - "19487806304045274675249972", - "11549953913206190164261594" + "1672714604044842431100764", + "2970122673900932429010031" ], - "mAssetSupply": "118607044907487806223193045", - "LPTokenSupply": "30687295764012019175373736" + "mAssetSupply": "100831785135108148617262968", + "LPTokenSupply": "4508781650551200388431374" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "693882307067428480", - "outputQty0": "691921720648365499", - "outputQty": "683122265646496443", + "type": "swap_fp_to_mp", + "inputQty": "103344027241505013760", + "outputIndex": 2, + "outputQty": "103831403332476678924", + "swapFee": "0", + "redemptionFee": "61737338112445485", "mpReserves": [ - "70695387992854346678517923", - "26212951304738082219249669", - "21768801099347643436969458" + "55475269155963725376751820", + "5576473929584369961412325", + "40351773662265192430643229" ], "fpReserves": [ - "19487806995966995323615471", - "11549953913206190164261594" + "1672611708481321688624334", + "2970226017928173934023791" ], - "mAssetSupply": "118607045599409526871558544", - "LPTokenSupply": "30687296447134284821870179" + "mAssetSupply": "100831682301281965987232023", + "LPTokenSupply": "4508781650551200388431374" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "423608243189991094616064", - "outputQty0": "425079883164625105478199", - "outputQty": "419658588441783957942945", + "type": "swap_fp_to_mp", + "inputQty": "113512157071556", + "outputIndex": 2, + "outputQty": "114047431834247", + "swapFee": "0", + "redemptionFee": "67811709827", "mpReserves": [ - "70695387992854346678517923", - "26212951304738082219249669", - "22192409342537634531585522" + "55475269155963725376751820", + "5576473929584369961412325", + "40351773662151144998808982" ], "fpReserves": [ - "19912886879131620429093670", - "11549953913206190164261594" + "1672611708368302172244651", + "2970226018041686091095347" ], - "mAssetSupply": "119032125482574151977036743", - "LPTokenSupply": "31106955035576068779813124" + "mAssetSupply": "100831682301169014282562167", + "LPTokenSupply": "4508781650551200388431374" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "23557025378089207595008", - "outputQty0": "23491469177719906228741", - "outputQty": "23376966961974495974197", - "swapFee": "18552780221771293915", + "type": "mint", + "inputIndex": 1, + "inputQty": "163538438596942746353664", + "outputQty0": "182314767588203468782201", + "outputQty": "177489308755229295829594", "mpReserves": [ - "70718945018232435886112931", - "26212951304738082219249669", - "22192409342537634531585522" + "55475269155963725376751820", + "5740012368181312707765989", + "40351773662151144998808982" ], "fpReserves": [ - "19936378348309340335322411", - "11526576946244215668287397" + "1854926475956505641026852", + "2970226018041686091095347" ], - "mAssetSupply": "119055616951751871883265484", - "LPTokenSupply": "31106956890854090956942515" + "mAssetSupply": "101013997068757217751344368", + "LPTokenSupply": "4686270959306429684260968" }, { "type": "swap_fp_to_mp", - "inputQty": "5730299520600194940928", - "outputIndex": 0, - "outputQty": "5767576790135983709333", + "inputQty": "161459257479031255203840", + "outputIndex": 2, + "outputQty": "162211914448238436191317", "swapFee": "0", - "redemptionFee": "2301529948746063916", + "redemptionFee": "96483379423685677539", "mpReserves": [ - "70713177441442299902403598", - "26212951304738082219249669", - "22192409342537634531585522" + "55475269155963725376751820", + "5740012368181312707765989", + "40189561747702906562617665" ], "fpReserves": [ - "19930624523437475175530539", - "11532307245764815863228325" + "1694120843583696178460234", + "3131685275520717346299187" ], - "mAssetSupply": "119049865428409955469537528", - "LPTokenSupply": "31106956890854090956942515" + "mAssetSupply": "100853287919763831974455289", + "LPTokenSupply": "4686270959306429684260968" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "103442584387214540537856", - "outputQty0": "103649649567587976145523", - "outputQty": "102322202146399283698160", + "inputQty": "56190247127590933364736", + "outputQty0": "62386478741430697411245", + "outputQty": "62615570570175450392386", + "swapFee": "48609735278194320833", "mpReserves": [ - "70713177441442299902403598", - "26316393889125296759787525", - "22192409342537634531585522" + "55475269155963725376751820", + "5796202615308903641130725", + "40189561747702906562617665" ], "fpReserves": [ - "20034274173005063151676062", - "11532307245764815863228325" + "1756507322325126875871479", + "3069069704950541895906801" ], - "mAssetSupply": "119153515077977543445683051", - "LPTokenSupply": "31209279093000490240640675" + "mAssetSupply": "100915674398505262671866534", + "LPTokenSupply": "4686275820279957503693051" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1518034330887701135360", - "outputQty0": "1523195048495385059095", - "outputQty": "1503673880447273465750", + "inputIndex": 1, + "inputQty": "236977156085252620288", + "outputQty0": "262861321016487808219", + "outputQty": "255954683035710959616", "mpReserves": [ - "70713177441442299902403598", - "26316393889125296759787525", - "22193927376868522232720882" + "55475269155963725376751820", + "5796439592464988893751013", + "40189561747702906562617665" ], "fpReserves": [ - "20035797368053558536735157", - "11532307245764815863228325" + "1756770183646143363679698", + "3069069704950541895906801" ], - "mAssetSupply": "119155038273026038830742146", - "LPTokenSupply": "31210782766880937514106425" + "mAssetSupply": "100915937259826279159674753", + "LPTokenSupply": "4686531774962993214652667" }, { - "type": "swap_fp_to_mp", - "inputQty": "49766184751496", - "outputIndex": 0, - "outputQty": "50091803471284", - "swapFee": "0", - "redemptionFee": "19989105453", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "796931308397734658048", + "outputQty0": "785274250920374001254", + "outputQty": "787941310762827363369", + "swapFee": "611711950215863071", "mpReserves": [ - "70713177441392208098932314", - "26316393889125296759787525", - "22193927376868522232720882" + "55476066087272123111409868", + "5796439592464988893751013", + "40189561747702906562617665" ], "fpReserves": [ - "20035797368003585773100347", - "11532307245814582047979821" + "1757555457897063737680952", + "3068281763639779068543432" ], - "mAssetSupply": "119155038272976086056212789", - "LPTokenSupply": "31210782766880937514106425" + "mAssetSupply": "100916722534077199533676007", + "LPTokenSupply": "4686531836134188236238974" }, { "type": "mint", "inputIndex": 0, - "inputQty": "640437784791824908419072", - "outputQty0": "638648218844821216292182", - "outputQty": "630429055291542058409559", + "inputQty": "2214418006019712483328", + "outputQty0": "2182025728716949498833", + "outputQty": "2124675385730214173297", "mpReserves": [ - "71353615226184033007351386", - "26316393889125296759787525", - "22193927376868522232720882" + "55478280505278142823893196", + "5796439592464988893751013", + "40189561747702906562617665" ], "fpReserves": [ - "20674445586848406989392529", - "11532307245814582047979821" + "1759737483625780687179785", + "3068281763639779068543432" ], - "mAssetSupply": "119793686491820907272504971", - "LPTokenSupply": "31841211822172479572515984" + "mAssetSupply": "100918904559805916483174840", + "LPTokenSupply": "4688656511519918450412271" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "219521967197043720192", - "outputQty0": "220282359349241287094", - "outputQty": "219130799010163345298", - "swapFee": "173948530280708939", + "type": "redeem", + "outputIndex": 0, + "inputQty": "27650350938606232666112", + "outputQty0": "28378389714219911174973", + "outputQty": "28782268451857936241696", + "swapFee1": "16590210563163739599", + "swapFee2": "17027033828531946704", "mpReserves": [ - "71353615226184033007351386", - "26316393889125296759787525", - "22194146898835719276441074" + "55449498236826284887651500", + "5796439592464988893751013", + "40189561747702906562617665" ], "fpReserves": [ - "20674665869207756230679623", - "11532088115015571884634523" + "1731359093911560776004812", + "3068281763639779068543432" ], - "mAssetSupply": "119793906774180256513792065", - "LPTokenSupply": "31841211839567332600586877" + "mAssetSupply": "100890543197125525103946571", + "LPTokenSupply": "4661007819602368534120118" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "33424385827108485595136", - "outputQty0": "33330327250976641834856", - "outputQty": "32899506119119216864690", + "type": "swap_fp_to_mp", + "inputQty": "2034403831872740743184384", + "outputIndex": 2, + "hardLimitError": true + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "3507708274434852782080", + "outputQty0": "3599877982521624951492", + "outputQty": "3630876002651755531903", + "swapFee1": "2104624964660911669", + "swapFee2": "2159926789512974970", "mpReserves": [ - "71387039612011141492946522", - "26316393889125296759787525", - "22194146898835719276441074" + "55449498236826284887651500", + "5796439592464988893751013", + "40185930871700254807085762" ], "fpReserves": [ - "20707996196458732872514479", - "11532088115015571884634523" + "1727759215929039151053320", + "3068281763639779068543432" ], - "mAssetSupply": "119827237101431233155626921", - "LPTokenSupply": "31874111345686451817451567" + "mAssetSupply": "100886945479069792991970049", + "LPTokenSupply": "4657500321790430147429204" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "4203129282456129634304", - "outputQty0": "4255625033521630961956", - "outputQty": "4239221114250981129810", - "swapFee1": "2521877569473677780", - "swapFee2": "1702250013408652384", + "outputIndex": 1, + "inputQty": "8906715731364050944", + "outputQty0": "9140696943543307336", + "outputQty": "8236221807582741815", + "swapFee1": "5344029438818430", + "swapFee2": "5484418166125984", + "mpReserves": [ + "55449498236826284887651500", + "5796431356243181311009198", + "40185930871700254807085762" + ], + "fpReserves": [ + "1727750075232095607745984", + "3068281763639779068543432" + ], + "mAssetSupply": "100886936343857267614788697", + "LPTokenSupply": "4657491415609101727260103" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "398956257222170714832896", + "outputQty0": "439765593861137069186141", + "outputQty": "427975167942531336003845", "mpReserves": [ - "71387039612011141492946522", - "26316393889125296759787525", - "22189907677721468295311264" + "55449498236826284887651500", + "6195387613465352025842094", + "40185930871700254807085762" ], "fpReserves": [ - "20703740571425211241552523", - "11532088115015571884634523" + "2167515669093232676932125", + "3068281763639779068543432" ], - "mAssetSupply": "119822983178647724933317349", - "LPTokenSupply": "31869908468591752635185041" + "mAssetSupply": "101326701937718404683974838", + "LPTokenSupply": "5085466583551633063263948" }, { "type": "swap_fp_to_mp", - "inputQty": "37576039800566374727680", - "outputIndex": 0, - "outputQty": "37834261764524322476718", + "inputQty": "627125203228870049792", + "outputIndex": 2, + "outputQty": "630559920227289368316", "swapFee": "0", - "redemptionFee": "15097151708810887791", + "redemptionFee": "375365469258261840", "mpReserves": [ - "71349205350246617170469804", - "26316393889125296759787525", - "22189907677721468295311264" + "55449498236826284887651500", + "6195387613465352025842094", + "40185300311780027517717446" ], "fpReserves": [ - "20665997692153184022074023", - "11569664154816138259362203" + "2166890059977802240530618", + "3068908888843007938593224" ], - "mAssetSupply": "119785255396527406524726640", - "LPTokenSupply": "31869908468591752635185041" + "mAssetSupply": "101326076703968443505835171", + "LPTokenSupply": "5085466583551633063263948" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "390364800838852172316672", - "outputQty0": "395220080247612605503481", - "outputQty": "393667924796333889916485", - "swapFee1": "234218880503311303390", - "swapFee2": "158088032099045042201", + "outputIndex": 0, + "inputQty": "20386722680039723237376", + "outputQty0": "20946580491821203082333", + "outputQty": "21224300359876627261557", + "swapFee1": "12232033608023833942", + "swapFee2": "12567948295092721849", "mpReserves": [ - "71349205350246617170469804", - "26316393889125296759787525", - "21796239752925134405394779" + "55428273936466408260389943", + "6195387613465352025842094", + "40185300311780027517717446" ], "fpReserves": [ - "20270777611905571416570542", - "11569664154816138259362203" + "2145943479485981037448285", + "3068908888843007938593224" ], - "mAssetSupply": "119390193404311892964265360", - "LPTokenSupply": "31479567089640950793998708" + "mAssetSupply": "101305142691424917395474687", + "LPTokenSupply": "5065081084074954142409966" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "202627112278577031151616", - "outputQty0": "203352219732298529837167", - "outputQty": "200735430568429378884220", + "type": "swap_fp_to_mp", + "inputQty": "2405573905227578880", + "outputIndex": 1, + "outputQty": "2188454502791020666", + "swapFee": "0", + "redemptionFee": "1439744909138759", "mpReserves": [ - "71349205350246617170469804", - "26316393889125296759787525", - "21998866865203711436546395" + "55428273936466408260389943", + "6195385425010849234821428", + "40185300311780027517717446" ], "fpReserves": [ - "20474129831637869946407709", - "11569664154816138259362203" + "2145941079911132472848380", + "3068911294416913166172104" ], - "mAssetSupply": "119593545624044191494102527", - "LPTokenSupply": "31680302520209380172882928" + "mAssetSupply": "101305140293289813740013541", + "LPTokenSupply": "5065081084074954142409966" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "26701819883357065969664", - "outputQty0": "26755868550121994440220", - "outputQty": "26618862470717711523517", - "swapFee": "21128842903689901199", + "inputQty": "34289519819759943680", + "outputQty0": "37574856909762958584", + "outputQty": "37638656842694595377", + "swapFee": "29239472112551163", "mpReserves": [ - "71349205350246617170469804", - "26343095709008653825757189", - "21998866865203711436546395" + "55428273936466408260389943", + "6195419714530668994765108", + "40185300311780027517717446" ], "fpReserves": [ - "20500885700187991940847929", - "11543045292345420547838686" + "2145978654768042235806964", + "3068873655760070471576727" ], - "mAssetSupply": "119620301492594313488542747", - "LPTokenSupply": "31680304633093670541873047" + "mAssetSupply": "101305177868146723502972125", + "LPTokenSupply": "5065081086998901353665082" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "485190692406402816", - "outputQty0": "491235601431178121", - "outputQty": "489307021941326457", - "swapFee1": "291114415443841", - "swapFee2": "196494240572471", + "type": "mint", + "inputIndex": 1, + "inputQty": "267819532927092359168", + "outputQty0": "293478555326072769291", + "outputQty": "285468635773660751543", "mpReserves": [ - "71349205350246617170469804", - "26343095709008653825757189", - "21998866375896689495219938" + "55428273936466408260389943", + "6195687534063596087124276", + "40185300311780027517717446" ], "fpReserves": [ - "20500885208952390509669808", - "11543045292345420547838686" + "2146272133323368308576255", + "3068873655760070471576727" ], - "mAssetSupply": "119620301001555206297937097", - "LPTokenSupply": "31680304147932089577014615" + "mAssetSupply": "101305471346702049575741416", + "LPTokenSupply": "5065366555634675014416625" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "76722695089347526656", - "outputQty0": "76877747972918607466", - "outputQty": "75886167858448153525", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1967541591356140769247232", + "outputQty0": "1950280678868645803769449", + "outputQty": "1941054156167690970985226", + "swapFee": "1515623203316993377472", "mpReserves": [ - "71349205350246617170469804", - "26343172431703743173283845", - "21998866375896689495219938" + "55428273936466408260389943", + "6195687534063596087124276", + "42152841903136168286964678" ], "fpReserves": [ - "20500962086700363428277274", - "11543045292345420547838686" + "4096552812192014112345704", + "1127819499592379500591501" ], - "mAssetSupply": "119620377879303179216544563", - "LPTokenSupply": "31680380034099948025168140" + "mAssetSupply": "103255752025570695379510865", + "LPTokenSupply": "5065518117955006713754372" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "6142357126294106275840", - "outputQty0": "6218880533296673649431", - "outputQty": "6194457866871696978520", - "swapFee1": "3685414275776463765", - "swapFee2": "2487552213318669459", + "outputIndex": 0, + "inputQty": "1646405934436170072064", + "outputQty0": "1703023267856463377533", + "outputQty": "1725391301368622951907", + "swapFee1": "987843560661702043", + "swapFee2": "1021813960713878026", "mpReserves": [ - "71349205350246617170469804", - "26343172431703743173283845", - "21992671918029817798241418" + "55426548545165039637438036", + "6195687534063596087124276", + "42152841903136168286964678" ], "fpReserves": [ - "20494743206167066754627843", - "11543045292345420547838686" + "4094849788924157648968171", + "1127819499592379500591501" ], - "mAssetSupply": "119614161486322095861564591", - "LPTokenSupply": "31674238045515081496538676" + "mAssetSupply": "103254050024116799630011358", + "LPTokenSupply": "5063871810804926609852512" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "265061579716174048", "outputIndex": 0, - "inputQty": "3091189432153032097792", - "outputQty0": "3129698294647134936295", - "outputQty": "3137329384583801020174", - "swapFee1": "1854713659291819258", - "swapFee2": "1251879317858853974", + "outputQty": "272943185268546790", + "swapFee": "0", + "redemptionFee": "161642884924464", "mpReserves": [ - "71346068020862033369449630", - "26343172431703743173283845", - "21992671918029817798241418" + "55426548272221854368891246", + "6195687534063596087124276", + "42152841903136168286964678" ], "fpReserves": [ - "20491613507872419619691548", - "11543045292345420547838686" + "4094849519519349441527858", + "1127819764653959216765549" ], - "mAssetSupply": "119611033039906766585482270", - "LPTokenSupply": "31671147041554294393622809" + "mAssetSupply": "103254049754873634307495509", + "LPTokenSupply": "5063871810804926609852512" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "207812414538991357919232", - "outputQty0": "210397474032756155208799", - "outputQty": "210909143196748412477132", - "swapFee1": "124687448723394814751", - "swapFee2": "84158989613102462083", + "type": "swap_fp_to_mp", + "inputQty": "177598843618570352459776", + "outputIndex": 2, + "outputQty": "181607506918746612258244", + "swapFee": "0", + "redemptionFee": "108041628982847541329", "mpReserves": [ - "71135158877665284956972498", - "26343172431703743173283845", - "21992671918029817798241418" + "55426548272221854368891246", + "6195687534063596087124276", + "41971234396217421674706434" ], "fpReserves": [ - "20281216033839663464482749", - "11543045292345420547838686" + "3914780137881270205978531", + "1305418608272529569225325" ], - "mAssetSupply": "119400719724863623532735554", - "LPTokenSupply": "31463347095760175375185052" + "mAssetSupply": "103074088414864537919487511", + "LPTokenSupply": "5063871810804926609852512" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "11174139637209583583232", + "outputIndex": 2, + "outputQty": "11400461256348447632871", + "swapFee": "0", + "redemptionFee": "6782555950154459515", + "mpReserves": [ + "55426548272221854368891246", + "6195687534063596087124276", + "41959833934961073227073563" + ], + "fpReserves": [ + "3903475877964346106786679", + "1316592747909739152808557" + ], + "mAssetSupply": "103062790937503563974755174", + "LPTokenSupply": "5063871810804926609852512" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "81467596499559185907712", - "outputQty0": "81753095449152634285389", - "outputQty": "81337123469424801863064", - "swapFee": "64560618955024580695", + "inputQty": "73021071623488200704", + "outputQty0": "72361583182678807907", + "outputQty": "71479547202128669664", + "swapFee": "55994257688691158", "mpReserves": [ - "71135158877665284956972498", - "26343172431703743173283845", - "22074139514529376984149130" + "55426548272221854368891246", + "6195687534063596087124276", + "41959906956032696715274267" ], "fpReserves": [ - "20362969129288816098768138", - "11461708168875995745975622" + "3903548239547528785594586", + "1316521268362537024138893" ], - "mAssetSupply": "119482472820312776167020943", - "LPTokenSupply": "31463353551822070877643121" + "mAssetSupply": "103062863299086746653563081", + "LPTokenSupply": "5063871816404352378721627" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "8494713565670147096576", - "outputQty0": "8524335466019174637002", - "outputQty": "8480466065683824116604", - "swapFee": "6731460079512497604", + "inputIndex": 1, + "inputQty": "127685576651654893142016", + "outputQty0": "140042305350142683313395", + "outputQty": "138119802600387246075269", + "swapFee": "108356531176354762953", "mpReserves": [ - "71135158877665284956972498", - "26343172431703743173283845", - "22082634228095047131245706" + "55426548272221854368891246", + "6323373110715250980266292", + "41959906956032696715274267" ], "fpReserves": [ - "20371493464754835273405140", - "11453227702810311921859018" + "4043590544897671468907981", + "1178401465762149778063624" ], - "mAssetSupply": "119490997155778795341657945", - "LPTokenSupply": "31463354224968078828892881" + "mAssetSupply": "103202905604436889336876476", + "LPTokenSupply": "5063882652057470014197922" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "24039561130790174720", - "outputQty0": "24339330937182949525", - "outputQty": "24280814591010021236", - "swapFee1": "14423736678474104", - "swapFee2": "9735732374873179", + "type": "mint", + "inputIndex": 1, + "inputQty": "2772995580552697872384", + "outputQty0": "3035948282907534628825", + "outputQty": "2934180054338208603865", "mpReserves": [ - "71135158877665284956972498", - "26343148150889152163262609", - "22082634228095047131245706" + "55426548272221854368891246", + "6326146106295803678138676", + "41959906956032696715274267" ], "fpReserves": [ - "20371469125423898090455615", - "11453227702810311921859018" + "4046626493180579003536806", + "1178401465762149778063624" ], - "mAssetSupply": "119490972826183590533581599", - "LPTokenSupply": "31463330186849321706565571" + "mAssetSupply": "103205941552719796871505301", + "LPTokenSupply": "5066816832111808222801787" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "382162214983153615896576", - "outputQty0": "383466629702821654589614", - "outputQty": "381393099505394780476106", - "swapFee": "302803358593832877382", + "type": "swap_fp_to_mp", + "inputQty": "20675361998153691136", + "outputIndex": 2, + "outputQty": "21156972287383162934", + "swapFee": "0", + "redemptionFee": "12589820112560769", "mpReserves": [ - "71135158877665284956972498", - "26343148150889152163262609", - "22464796443078200747142282" + "55426548272221854368891246", + "6326146106295803678138676", + "41959885799060409332111333" ], "fpReserves": [ - "20754935755126719745045229", - "11071834603304917141382912" + "4046605510147058068920539", + "1178422141124147931754760" ], - "mAssetSupply": "119874439455886412188171213", - "LPTokenSupply": "31463360467185181089853309" + "mAssetSupply": "103205920582276096049449803", + "LPTokenSupply": "5066816832111808222801787" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "650826901091685446451200", + "hardLimitError": true }, { "type": "swap_fp_to_mp", - "inputQty": "1606418790069559885824", - "outputIndex": 1, - "outputQty": "1610374061147654583930", + "inputQty": "612199374724123311734784", + "outputIndex": 2, + "outputQty": "622811077678605971684265", "swapFee": "0", - "redemptionFee": "645713531656448115", + "redemptionFee": "370651597116332907954", "mpReserves": [ - "71135158877665284956972498", - "26341537776828004508678679", - "22464796443078200747142282" + "55426548272221854368891246", + "6326146106295803678138676", + "41337074721381803360427068" ], "fpReserves": [ - "20753321471297578624756993", - "11073441022094986701268736" + "3428852848286503222329506", + "1790621515848271243489544" ], - "mAssetSupply": "119872825817770802724331092", - "LPTokenSupply": "31463360467185181089853309" + "mAssetSupply": "102588538572012657535766724", + "LPTokenSupply": "5066816832111808222801787" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "95063189964690800640", - "outputQty0": "96267143199745189221", - "outputQty": "96496064869348947802", - "swapFee1": "57037913978814480", - "swapFee2": "38506857279898075", + "outputIndex": 1, + "inputQty": "6152521581166657011712", + "outputQty0": "6345189582402616924158", + "outputQty": "5797196453553156657219", + "swapFee1": "3691512948699994207", + "swapFee2": "3807113749441570154", "mpReserves": [ - "71135062381600415608024696", - "26341537776828004508678679", - "22464796443078200747142282" + "55426548272221854368891246", + "6320348909842250521481457", + "41337074721381803360427068" ], "fpReserves": [ - "20753225204154378879567772", - "11073441022094986701268736" + "3422507658704100605405348", + "1790621515848271243489544" ], - "mAssetSupply": "119872729589134460259039946", - "LPTokenSupply": "31463265409699007796934117" + "mAssetSupply": "102582197189544004360412720", + "LPTokenSupply": "5060664679681936435789495" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "40204244817583290712064", - "outputQty0": "40713279401127434085114", - "outputQty": "40810046159247212097856", - "swapFee1": "24122546890549974427", - "swapFee2": "16285311760450973634", + "outputIndex": 2, + "inputQty": "2139776920102335055659008", + "outputQty0": "2203629229342630963341306", + "outputQty": "2220655686339444800550586", + "swapFee1": "1283866152061401033395", + "swapFee2": "1322177537605578578004", "mpReserves": [ - "71094252335441168395926840", - "26341537776828004508678679", - "22464796443078200747142282" + "55426548272221854368891246", + "6320348909842250521481457", + "39116419035042358559876482" ], "fpReserves": [ - "20712511924753251445482658", - "11073441022094986701268736" + "1218878429361469642064042", + "1790621515848271243489544" ], - "mAssetSupply": "119832032595045093275928466", - "LPTokenSupply": "31423063577136113561219495" + "mAssetSupply": "100379890137738978975649418", + "LPTokenSupply": "2921016146194807520233826" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1611865515088380952576", - "outputQty0": "1617245588725126177445", - "outputQty": "1596071358800935973425", + "type": "redeem", + "outputIndex": 2, + "inputQty": "345298074168389992448", + "outputQty0": "354972407289153055370", + "outputQty": "357581597250890399803", + "swapFee1": "207178844501033995", + "swapFee2": "212983444373491833", "mpReserves": [ - "71094252335441168395926840", - "26341537776828004508678679", - "22466408308593289128094858" + "55426548272221854368891246", + "6320348909842250521481457", + "39116061453445107669476679" ], "fpReserves": [ - "20714129170341976571660103", - "11073441022094986701268736" + "1218523456954180489008672", + "1790621515848271243489544" ], - "mAssetSupply": "119833649840633818402105911", - "LPTokenSupply": "31424659648494914497192920" + "mAssetSupply": "100379535378315134196085881", + "LPTokenSupply": "2920670868838523580344777" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "31548726104379279540224", - "outputQty0": "31612467944615512198253", - "outputQty": "31198483868212779396008", + "type": "swap_fp_to_mp", + "inputQty": "1161111580184325", + "outputIndex": 2, + "outputQty": "1166482040408980", + "swapFee": "0", + "redemptionFee": "694782337474", "mpReserves": [ - "71094252335441168395926840", - "26373086502932383788218903", - "22466408308593289128094858" + "55426548272221854368891246", + "6320348909842250521481457", + "39116061452278625629067699" ], "fpReserves": [ - "20745741638286592083858356", - "11073441022094986701268736" + "1218523455796209926550737", + "1790621517009382823673869" ], - "mAssetSupply": "119865262308578433914304164", - "LPTokenSupply": "31455858132363127276588928" + "mAssetSupply": "100379535377157858415965420", + "LPTokenSupply": "2920670868838523580344777" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "2331130866699883511808", - "outputQty0": "2324681524088463296890", - "outputQty": "2311512109782440956084", - "swapFee": "1835385391121030996", + "inputQty": "108858254735712385499136", + "outputQty0": "107389907101984192504143", + "outputQty": "107535073486892946058434", + "swapFee": "83504216717664497948", "mpReserves": [ - "71096583466307868279438648", - "26373086502932383788218903", - "22466408308593289128094858" + "55535406526957566754390382", + "6320348909842250521481457", + "39116061452278625629067699" ], "fpReserves": [ - "20748066319810680547155246", - "11071129509985204260312652" + "1325913362898194119054880", + "1683086443522489877615435" ], - "mAssetSupply": "119867586990102522377601054", - "LPTokenSupply": "31455858315901666388692027" + "mAssetSupply": "100486925284259842608469563", + "LPTokenSupply": "2920679219260195346794571" }, { "type": "swap_fp_to_mp", - "inputQty": "8406602679557647", - "outputIndex": 2, - "outputQty": "8416265431694852", + "inputQty": "2330135866862332", + "outputIndex": 0, + "outputQty": "2356802347785234", "swapFee": "0", - "redemptionFee": "3379099201176", + "redemptionFee": "1395822534722", "mpReserves": [ - "71096583466307868279438648", - "26373086502932383788218903", - "22466408300177023696400006" + "55535406524600764406605148", + "6320348909842250521481457", + "39116061452278625629067699" ], "fpReserves": [ - "20748066311362932544214006", - "11071129518391806939870299" + "1325913360571823227850558", + "1683086445852625744477767" ], - "mAssetSupply": "119867586981658153473860990", - "LPTokenSupply": "31455858315901666388692027" + "mAssetSupply": "100486925281934867539799963", + "LPTokenSupply": "2920679219260195346794571" }, { - "type": "swap_fp_to_mp", - "inputQty": "977680586114826633216", - "outputIndex": 2, - "outputQty": "978803502424917366545", - "swapFee": "0", - "redemptionFee": "392986028034242625", + "type": "redeem", + "outputIndex": 0, + "inputQty": "245600348855664098934784", + "outputQty0": "252536458164564852724082", + "outputQty": "255830273253393180942423", + "swapFee1": "147360209313398459360", + "swapFee2": "151521874898738911634", "mpReserves": [ - "71096583466307868279438648", - "26373086502932383788218903", - "22465429496674598779033461" + "55279576251347371225662725", + "6320348909842250521481457", + "39116061452278625629067699" ], "fpReserves": [ - "20747083846292846937651143", - "11072107198977921766503515" + "1073376902407258375126476", + "1683086445852625744477767" ], - "mAssetSupply": "119866604909574095901540752", - "LPTokenSupply": "31455858315901666388692027" + "mAssetSupply": "100234540345645201425987515", + "LPTokenSupply": "2675093606425462587705723" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1009710491546994944", - "outputQty0": "1006916845212034133", - "outputQty": "1001212367097031172", - "swapFee": "794981807091799", + "type": "redeem", + "outputIndex": 2, + "inputQty": "900105351592913143857152", + "hardLimitError": true + }, + { + "type": "swap_fp_to_mp", + "inputQty": "16549991164208814080", + "outputIndex": 1, + "outputQty": "15122615964432186811", + "swapFee": "0", + "redemptionFee": "9897911358600545", "mpReserves": [ - "71096584476018359826433592", - "26373086502932383788218903", - "22465429496674598779033461" + "55279576251347371225662725", + "6320333787226286089294646", + "39116061452278625629067699" ], "fpReserves": [ - "20747084853209692149685276", - "11072106197765554669472343" + "1073360405888327374218058", + "1683102995843789953291847" ], - "mAssetSupply": "119866605916490941113574885", - "LPTokenSupply": "31455858315981164569401206" + "mAssetSupply": "100234523859024181783679642", + "LPTokenSupply": "2675093606425462587705723" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "317471848795200880640", - "outputQty0": "321492582834307595307", - "outputQty": "322255592972689335323", - "swapFee1": "190483109277120528", - "swapFee2": "128597033133723038", + "type": "swap_fp_to_mp", + "inputQty": "88529728529078176", + "outputIndex": 1, + "outputQty": "80894344307649429", + "swapFee": "0", + "redemptionFee": "52946210297483", "mpReserves": [ - "71096262220425387137098269", - "26373086502932383788218903", - "22465429496674598779033461" + "55279576251347371225662725", + "6320333706331941781645217", + "39116061452278625629067699" ], "fpReserves": [ - "20746763360626857842089969", - "11072106197765554669472343" + "1073360317644643545078140", + "1683103084373518482370023" ], - "mAssetSupply": "119866284552505139939702616", - "LPTokenSupply": "31455540863180680296232618" + "mAssetSupply": "100234523770833444164837207", + "LPTokenSupply": "2675093606425462587705723" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "75220286214896707698688", - "outputQty0": "75012005054346872039927", - "outputQty": "74028950376875913387047", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "53871019976369471488", + "outputQty0": "53445315005261565468", + "outputQty": "53575646554121122221", + "swapFee": "41576122946794280", "mpReserves": [ - "71171482506640283844796957", - "26373086502932383788218903", - "22465429496674598779033461" + "55279576251347371225662725", + "6320333706331941781645217", + "39116115323298601998539187" ], "fpReserves": [ - "20821775365681204714129896", - "11072106197765554669472343" + "1073413762959648806643608", + "1683049508726964361247802" ], - "mAssetSupply": "119941296557559486811742543", - "LPTokenSupply": "31529569813557556209619665" + "mAssetSupply": "100234577216148449426402675", + "LPTokenSupply": "2675093610583074882385151" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "29873442744456829730816", - "outputQty0": "30252096261581357487144", - "outputQty": "30178856963665742979281", - "swapFee1": "17924065646674097838", - "swapFee2": "12100838504632542994", + "type": "mint", + "inputIndex": 2, + "inputQty": "1302609249668126474240", + "outputQty0": "1292315340843301766937", + "outputQty": "1256641488111348033659", "mpReserves": [ - "71171482506640283844796957", - "26342907645968718045239622", - "22465429496674598779033461" + "55279576251347371225662725", + "6320333706331941781645217", + "39117417932548270125013427" ], "fpReserves": [ - "20791523269419623356642752", - "11072106197765554669472343" + "1074706078300492108410545", + "1683049508726964361247802" ], - "mAssetSupply": "119911056562136410086798393", - "LPTokenSupply": "31499698163219664047298632" + "mAssetSupply": "100235869531489292728169612", + "LPTokenSupply": "2676350252071186230418810" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1392038963735875584", - "outputQty0": "1409680470908446982", - "outputQty": "1406262658182813716", - "swapFee1": "835223378241525", - "swapFee2": "563872188363378", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "561025143093776640", + "outputQty0": "611628837186211255", + "outputQty": "613113966177938661", + "swapFee": "475794591720942", "mpReserves": [ - "71171482506640283844796957", - "26342906239706059862425906", - "22465429496674598779033461" + "55279576251347371225662725", + "6320334267357084875421857", + "39117417932548270125013427" ], "fpReserves": [ - "20791521859739152448195770", - "11072106197765554669472343" + "1074706689929329294621800", + "1683048895612998183309141" ], - "mAssetSupply": "119911055153019811366714789", - "LPTokenSupply": "31499696771264222649247200" + "mAssetSupply": "100235870143118129914380867", + "LPTokenSupply": "2676350252118765689590904" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "118265939155034421854208", - "outputQty0": "119763506625042128921225", - "outputQty": "120048116892422376983996", - "swapFee1": "70959563493020653112", - "swapFee2": "47905402650016851568", + "type": "swap_fp_to_mp", + "inputQty": "4051900601699102208", + "outputIndex": 2, + "outputQty": "4068581708322420273", + "swapFee": "0", + "redemptionFee": "2423311222789947", "mpReserves": [ - "71051434389747861467812961", - "26342906239706059862425906", - "22465429496674598779033461" + "55279576251347371225662725", + "6320334267357084875421857", + "39117413863966561802593154" ], "fpReserves": [ - "20671758353114110319274545", - "11072106197765554669472343" + "1074702651077291311376427", + "1683052947513599882411349" ], - "mAssetSupply": "119791339551797419254645132", - "LPTokenSupply": "31381437928065537529458303" + "mAssetSupply": "100235866106689403153925441", + "LPTokenSupply": "2676350252118765689590904" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "95808392530367493439488", - "outputQty0": "95543084960466601683333", - "outputQty": "94998903072109372534934", - "swapFee": "75433419342008276576", + "type": "swap_fp_to_mp", + "inputQty": "1536028630888619008", + "outputIndex": 0, + "outputQty": "1550993314787893693", + "swapFee": "0", + "redemptionFee": "918649210154274", "mpReserves": [ - "71147242782278228961252449", - "26342906239706059862425906", - "22465429496674598779033461" + "55279574700354056437769032", + "6320334267357084875421857", + "39117413863966561802593154" ], "fpReserves": [ - "20767301438074576920957878", - "10977107294693445296937409" + "1074701119995274387585119", + "1683054483542230771030357" ], - "mAssetSupply": "119886882636757885856328465", - "LPTokenSupply": "31381445471407471730285960" + "mAssetSupply": "100235864576526035440288407", + "LPTokenSupply": "2676350252118765689590904" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "10956668373974667264", - "outputQty0": "10926297175835334291", - "outputQty": "10863324781340901386", - "swapFee": "8626202223947977", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1364381006205862805504", + "outputQty0": "1402271106804471406320", + "outputQty": "1285459996633481150301", + "swapFee1": "818628603723517683", + "swapFee2": "841362664082682843", "mpReserves": [ - "71147253738946602935919713", - "26342906239706059862425906", - "22465429496674598779033461" + "55279574700354056437769032", + "6319048807360451394271556", + "39117413863966561802593154" ], "fpReserves": [ - "20767312364371752756292169", - "10977096431368663956036023" + "1073298848888469916178799", + "1683054483542230771030357" ], - "mAssetSupply": "119886893563055061691662756", - "LPTokenSupply": "31381445472270091952680757" + "mAssetSupply": "100234463146781895051564930", + "LPTokenSupply": "2674985952975420199137168" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "199087239766812947120128", - "outputQty0": "198534227736158105915383", - "outputQty": "195922622921409929726926", + "inputIndex": 1, + "inputQty": "249633087059200960", + "outputQty0": "272158595802011417", + "outputQty": "264646654132007313", "mpReserves": [ - "71346340978713415883039841", - "26342906239706059862425906", - "22465429496674598779033461" + "55279574700354056437769032", + "6319049056993538453472516", + "39117413863966561802593154" ], "fpReserves": [ - "20965846592107910862207552", - "10977096431368663956036023" + "1073299121047065718190216", + "1683054483542230771030357" ], - "mAssetSupply": "120085427790791219797578139", - "LPTokenSupply": "31577368095191501882407683" + "mAssetSupply": "100234463418940490853576347", + "LPTokenSupply": "2674986217622074331144481" }, { "type": "swap_fp_to_mp", - "inputQty": "66601276767574878584832", - "outputIndex": 1, - "outputQty": "66773481214650364051128", + "inputQty": "22751667075248308224", + "outputIndex": 2, + "outputQty": "22845123054460044582", "swapFee": "0", - "redemptionFee": "26774864144642378564", + "redemptionFee": "13606887880359330", "mpReserves": [ - "71346340978713415883039841", - "26276132758491409498374778", - "22465429496674598779033461" + "55279574700354056437769032", + "6319049056993538453472516", + "39117391018843507342548572" ], "fpReserves": [ - "20898909431746304915795098", - "11043697708136238834620855" + "1073276442900598452639469", + "1683077235209306019338581" ], - "mAssetSupply": "120018517405293758493544249", - "LPTokenSupply": "31577368095191501882407683" + "mAssetSupply": "100234440754400911468384930", + "LPTokenSupply": "2674986217622074331144481" }, { - "type": "swap_fp_to_mp", - "inputQty": "12832100842785132773376", + "type": "redeem", "outputIndex": 0, - "outputQty": "12926960934110035677594", - "swapFee": "0", - "redemptionFee": "5158431138655546786", + "inputQty": "2328228008253714857984", + "outputQty0": "2392863627624047192326", + "outputQty": "2423987997164021985552", + "swapFee1": "1396936804952228914", + "swapFee2": "1435718176574428315", "mpReserves": [ - "71333414017779305847362247", - "26276132758491409498374778", - "22465429496674598779033461" + "55277150712356892415783480", + "6319049056993538453472516", + "39117391018843507342548572" ], "fpReserves": [ - "20886013353899666048830001", - "11056529808979023967394231" + "1070883579272974405447143", + "1683077235209306019338581" ], - "mAssetSupply": "120005626485878258282125938", - "LPTokenSupply": "31577368095191501882407683" + "mAssetSupply": "100232049326491463995620919", + "LPTokenSupply": "2672658129307501111509388" }, { - "type": "swap_fp_to_mp", - "inputQty": "295098208553734296829952", - "outputIndex": 2, - "outputQty": "295378587286064574657632", - "swapFee": "0", - "redemptionFee": "118602176265854514210", + "type": "redeem", + "outputIndex": 0, + "inputQty": "174548172292261085184", + "outputQty0": "179392912378537280122", + "outputQty": "181726235717433105633", + "swapFee1": "104728903375356651", + "swapFee2": "107635747427122368", "mpReserves": [ - "71333414017779305847362247", - "26276132758491409498374778", - "22170050909388534204375829" + "55276968986121174982677847", + "6319049056993538453472516", + "39117391018843507342548572" ], "fpReserves": [ - "20589507913235029763304096", - "11351628017532758264224183" + "1070704186360595868167021", + "1683077235209306019338581" ], - "mAssetSupply": "119709239647389887851114243", - "LPTokenSupply": "31577368095191501882407683" + "mAssetSupply": "100231870041214832885463165", + "LPTokenSupply": "2672483591608099187959869" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1354677487777708507136", - "outputQty0": "1357445881115698552475", - "outputQty": "1339812431195292330688", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "70996322116093897342976", + "outputQty0": "70041964729790084614126", + "outputQty": "70183919557535686116469", + "swapFee": "54478931617663404495", "mpReserves": [ - "71333414017779305847362247", - "26277487435979187206881914", - "22170050909388534204375829" + "55347965308237268880020823", + "6319049056993538453472516", + "39117391018843507342548572" ], "fpReserves": [ - "20590865359116145461856571", - "11351628017532758264224183" + "1140746151090385952781147", + "1612893315651770333222112" ], - "mAssetSupply": "119710597093271003549666718", - "LPTokenSupply": "31578707907622697174738371" + "mAssetSupply": "100301912005944622970077291", + "LPTokenSupply": "2672489039501260954300318" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "3937300321827718430720", - "outputQty0": "3986725292722511908232", - "outputQty": "3977002022518779653923", - "swapFee1": "2362380193096631058", - "swapFee2": "1594690117089004763", + "type": "mint", + "inputIndex": 0, + "inputQty": "369628006967131901001728", + "outputQty0": "364635679757036966282248", + "outputQty": "354181359686335524699994", "mpReserves": [ - "71333414017779305847362247", - "26273510433956668427227991", - "22170050909388534204375829" + "55717593315204400781022551", + "6319049056993538453472516", + "39117391018843507342548572" ], "fpReserves": [ - "20586878633823422949948339", - "11351628017532758264224183" + "1505381830847422919063395", + "1612893315651770333222112" ], - "mAssetSupply": "119706611962668398126763249", - "LPTokenSupply": "31574770843538888765970756" + "mAssetSupply": "100666547685701659936359539", + "LPTokenSupply": "3026670399187596479000312" }, { "type": "mint", "inputIndex": 1, - "inputQty": "225418269541717737472", - "outputQty0": "225879102810321703720", - "outputQty": "222945001483771324101", + "inputQty": "252810184946675777536", + "outputQty0": "275857455097311994390", + "outputQty": "267816972797726771590", "mpReserves": [ - "71333414017779305847362247", - "26273735852226210144965463", - "22170050909388534204375829" + "55717593315204400781022551", + "6319301867178485129250052", + "39117391018843507342548572" ], "fpReserves": [ - "20587104512926233271652059", - "11351628017532758264224183" + "1505657688302520231057785", + "1612893315651770333222112" ], - "mAssetSupply": "119706837841771208448466969", - "LPTokenSupply": "31574993788540372537294857" + "mAssetSupply": "100666823543156757248353929", + "LPTokenSupply": "3026938216160394205771902" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "49379422070449763254272", - "outputQty0": "49999058106782258631920", - "outputQty": "49805808619064740787948", - "swapFee1": "29627653242269857952", - "swapFee2": "19999623242712903452", + "type": "mint", + "inputIndex": 1, + "inputQty": "40862896079705206685696", + "outputQty0": "44564598470896253006864", + "outputQty": "43263479441231603621822", "mpReserves": [ - "71333414017779305847362247", - "26273735852226210144965463", - "22120245100769469463587881" + "55717593315204400781022551", + "6360164763258190335935748", + "39117391018843507342548572" ], "fpReserves": [ - "20537105454819451013020139", - "11351628017532758264224183" + "1550222286773416484064649", + "1612893315651770333222112" ], - "mAssetSupply": "119656858783287668902738501", - "LPTokenSupply": "31525617329235247001026380" + "mAssetSupply": "100711388141627653501360793", + "LPTokenSupply": "3070201695601625809393724" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "60011874846930708201472", - "outputQty0": "60764410194878441942680", - "outputQty": "60615882332581141668762", - "swapFee1": "36007124908158424920", - "swapFee2": "24305764077951376777", + "outputIndex": 2, + "inputQty": "1171159246794908416", + "outputQty0": "1205716760452204133", + "outputQty": "1214482448252214295", + "swapFee1": "702695548076945", + "swapFee2": "723430056271322", "mpReserves": [ - "71333414017779305847362247", - "26213119969893629003296701", - "22120245100769469463587881" + "55717593315204400781022551", + "6360164763258190335935748", + "39117389804361059090334277" ], "fpReserves": [ - "20476341044624572571077459", - "11351628017532758264224183" + "1550221081056656031860516", + "1612893315651770333222112" ], - "mAssetSupply": "119596118678856868412172598", - "LPTokenSupply": "31465609055100807108667400" + "mAssetSupply": "100711386936634323105427982", + "LPTokenSupply": "3070200524512648569293002" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "495897072877146472448", - "outputQty0": "502113405864100998751", - "outputQty": "500882388500603319275", - "swapFee1": "297538243726287883", - "swapFee2": "200845362345640399", + "outputIndex": 0, + "inputQty": "820248686541992", + "outputQty0": "844451846075444", + "outputQty": "855470636886760", + "swapFee1": "492149211925", + "swapFee2": "506671107645", "mpReserves": [ - "71333414017779305847362247", - "26212619087505128399977426", - "22120245100769469463587881" + "55717593314348930144135791", + "6360164763258190335935748", + "39117389804361059090334277" ], "fpReserves": [ - "20475838931218708470078708", - "11351628017532758264224183" + "1550221080212204185785072", + "1612893315651770333222112" ], - "mAssetSupply": "119595616766296366656814246", - "LPTokenSupply": "31465113187781754334823740" + "mAssetSupply": "100711386935790377930460183", + "LPTokenSupply": "3070200523692449097672202" }, { - "type": "swap_fp_to_mp", - "inputQty": "1197511024844913393008640", - "outputIndex": 0, - "outputQty": "1204901233901760035346152", - "swapFee": "0", - "redemptionFee": "480807383678291188421", + "type": "mint", + "inputIndex": 0, + "inputQty": "18968026741533073997824", + "outputQty0": "18712425008237539001030", + "outputQty": "18164826778342764224956", "mpReserves": [ - "70128512783877545812016095", - "26212619087505128399977426", - "22120245100769469463587881" + "55736561341090463218133615", + "6360164763258190335935748", + "39117389804361059090334277" ], "fpReserves": [ - "19273820472022980499025688", - "12549139042377671657232823" + "1568933505220441724786102", + "1612893315651770333222112" ], - "mAssetSupply": "118394079114484316976949647", - "LPTokenSupply": "31465113187781754334823740" + "mAssetSupply": "100730099360798615469461213", + "LPTokenSupply": "3088365350470791861897158" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "119081166743093620244480", - "outputQty0": "119479065023501249787726", - "outputQty": "119010512819555534915523", - "swapFee": "94393242477562317288", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1152663665950657347584", + "outputQty0": "1186721922056220617401", + "outputQty": "1195347706811504326301", + "swapFee1": "691598199570394408", + "swapFee2": "712033153233732370", "mpReserves": [ - "70128512783877545812016095", - "26212619087505128399977426", - "22239326267512563083832361" + "55736561341090463218133615", + "6360164763258190335935748", + "39116194456654247586007976" ], "fpReserves": [ - "19393299537046481748813414", - "12430128529558116122317300" + "1567746783298385504168701", + "1612893315651770333222112" ], - "mAssetSupply": "118513558179507818226737373", - "LPTokenSupply": "31465122627106002091055468" + "mAssetSupply": "100728913350909712482576182", + "LPTokenSupply": "3087212755964661161589014" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "13290905127666606", - "outputQty0": "13317134320505053", - "outputQty": "13264045209773398", - "swapFee": "10520608680536", + "inputQty": "2346945974045664870400", + "outputQty0": "2558230629715974525346", + "outputQty": "2556637586993192082156", + "swapFee": "1986652644942100219", "mpReserves": [ - "70128512783877545812016095", - "26212619100796033527644032", - "22239326267512563083832361" + "55736561341090463218133615", + "6362511709232236000806148", + "39116194456654247586007976" ], "fpReserves": [ - "19393299550363616069318467", - "12430128516294070912543902" + "1570305013928101478694047", + "1610336678064777141139956" ], - "mAssetSupply": "118513558192824952547242426", - "LPTokenSupply": "31465122627107054151923521" + "mAssetSupply": "100731471581539428457101528", + "LPTokenSupply": "3087212954629925655799035" }, { "type": "swap_fp_to_mp", - "inputQty": "212910343831584388415488", + "inputQty": "178332925665692123136", "outputIndex": 2, - "outputQty": "212766654266486003380515", + "outputQty": "179598393512709467313", "swapFee": "0", - "redemptionFee": "85426691963423628540", + "redemptionFee": "106981834645354491", "mpReserves": [ - "70128512783877545812016095", - "26212619100796033527644032", - "22026559613246077080451846" + "55736561341090463218133615", + "6362511709232236000806148", + "39116014858260734876540663" ], "fpReserves": [ - "19179732820455056997966248", - "12643038860125655300959390" + "1570126710870359221208662", + "1610515010990442833263092" ], - "mAssetSupply": "118300076889608356899518747", - "LPTokenSupply": "31465122627107054151923521" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "5228635568860699", - "outputQty0": "5291125587689957", - "outputQty": "5278644805154186", - "swapFee1": "3137181341316", - "swapFee2": "2116450235075", - "mpReserves": [ - "70128512783877545812016095", - "26212619095517388722489846", - "22026559613246077080451846" - ], - "fpReserves": [ - "19179732815163931410276291", - "12643038860125655300959390" - ], - "mAssetSupply": "118300076884319347762063865", - "LPTokenSupply": "31465122621878732301196953" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "155728339421221027840", - "outputIndex": 1, - "outputQty": "155822074837207141544", - "swapFee": "0", - "redemptionFee": "62476200827385766", - "mpReserves": [ - "70128512783877545812016095", - "26212463273442551515348302", - "22026559613246077080451846" - ], - "fpReserves": [ - "19179576624661862945859217", - "12643194588465076521987230" - ], - "mAssetSupply": "118299920756293480125032557", - "LPTokenSupply": "31465122621878732301196953" - }, - { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "5979000778567334", - "outputQty0": "5990740440622607", - "outputQty": "5968236117563173", - "swapFee": "4733148901892", - "mpReserves": [ - "70128512783877545812016095", - "26212463279421552293915636", - "22026559613246077080451846" - ], - "fpReserves": [ - "19179576630652603386481824", - "12643194582496840404424057" - ], - "mAssetSupply": "118299920762284220565655164", - "LPTokenSupply": "31465122621879205616087142" + "mAssetSupply": "100731293385463520844970634", + "LPTokenSupply": "3087212954629925655799035" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "17507350721645615513600", - "outputQty0": "17541690115853326544272", - "outputQty": "17324091553453354975965", + "inputIndex": 2, + "inputQty": "150459048400741302272", + "outputQty0": "149284253712327411923", + "outputQty": "144911470700126547678", "mpReserves": [ - "70128512783877545812016095", - "26229970630143197909429236", - "22026559613246077080451846" + "55736561341090463218133615", + "6362511709232236000806148", + "39116165317309135617842935" ], "fpReserves": [ - "19197118320768456713026096", - "12643194582496840404424057" + "1570275995124071548620585", + "1610515010990442833263092" ], - "mAssetSupply": "118317462452400073892199436", - "LPTokenSupply": "31482446713432658971063107" + "mAssetSupply": "100731442669717233172382557", + "LPTokenSupply": "3087357866100625782346713" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "3924771583786658304", - "outputQty0": "3971689942850402535", - "outputQty": "3981106010595809807", - "swapFee1": "2354862950271994", - "swapFee2": "1588675977140161", + "outputIndex": 2, + "inputQty": "264851200521452491112448", + "outputQty0": "272591528825633900239243", + "outputQty": "274558927289811613559532", + "swapFee1": "158910720312871494667", + "swapFee2": "163554917295380340143", "mpReserves": [ - "70128508802771535216206288", - "26229970630143197909429236", - "22026559613246077080451846" + "55736561341090463218133615", + "6362511709232236000806148", + "38841606390019324004283403" ], "fpReserves": [ - "19197114349078513862623561", - "12643194582496840404424057" + "1297684466298437648381342", + "1610515010990442833263092" ], - "mAssetSupply": "118317458482298807018937062", - "LPTokenSupply": "31482442788896561479432002" + "mAssetSupply": "100459014695808894652483457", + "LPTokenSupply": "2822522556651204578383731" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "197633699825251778560", - "outputQty0": "199996292213883471779", - "outputQty": "200470441468961578666", - "swapFee1": "118580219895151067", - "swapFee2": "79998516885553388", + "inputQty": "814538860879659705303040", + "outputQty0": "835806672785296015930445", + "outputQty": "846624266874955988343313", + "swapFee1": "488723316527795823181", + "swapFee2": "501484003671177609558", "mpReserves": [ - "70128308332330066254627622", - "26229970630143197909429236", - "22026559613246077080451846" + "54889937074215507229790302", + "6362511709232236000806148", + "38841606390019324004283403" ], "fpReserves": [ - "19196914352786299979151782", - "12643194582496840404424057" + "461877793513141632450897", + "1610515010990442833263092" ], - "mAssetSupply": "118317258566005110021018671", - "LPTokenSupply": "31482245167054758217168548" + "mAssetSupply": "99623709507027269814162570", + "LPTokenSupply": "2008032568103197652663009" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "1578738583024758685696", "outputIndex": 2, - "inputQty": "2728024572666027", - "outputQty0": "2760636433718883", - "outputQty": "2750183228160870", - "swapFee1": "1636814743599", - "swapFee2": "1104254573487", + "outputQty": "1566130114640846828665", + "swapFee": "0", + "redemptionFee": "932934246389052247", "mpReserves": [ - "70128308332330066254627622", - "26229970630143197909429236", - "22026559610495893852290976" + "54889937074215507229790302", + "6362511709232236000806148", + "38840040259904683157454738" ], "fpReserves": [ - "19196914350025663545432899", - "12643194582496840404424057" + "460322903102493212037761", + "1612093749573467591948788" ], - "mAssetSupply": "118317258563245577841873275", - "LPTokenSupply": "31482245164326897325976880" + "mAssetSupply": "99622155549550867782801681", + "LPTokenSupply": "2008032568103197652663009" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "16195603384277536768", - "outputQty0": "16389211869645742604", - "outputQty": "16428067147730375163", - "swapFee1": "9717362030566522", - "swapFee2": "6555684747858297", + "type": "swap_fp_to_mp", + "inputQty": "27037144190072712593408", + "outputIndex": 2, + "outputQty": "26791829395525021325544", + "swapFee": "0", + "redemptionFee": "15959807983632749607", "mpReserves": [ - "70128291904262918524252459", - "26229970630143197909429236", - "22026559610495893852290976" + "54889937074215507229790302", + "6362511709232236000806148", + "38813248430509158136129194" ], "fpReserves": [ - "19196897960813793899690295", - "12643194582496840404424057" + "433723223129771962691772", + "1639130893763540304542196" ], - "mAssetSupply": "118317242180589392943988968", - "LPTokenSupply": "31482228969695249251496764" + "mAssetSupply": "99595571829386130166205299", + "LPTokenSupply": "2008032568103197652663009" }, { "type": "swap_fp_to_mp", - "inputQty": "198381902308136775057408", - "outputIndex": 2, - "outputQty": "198190465135493962053572", + "inputQty": "7626229402582965551104", + "outputIndex": 0, + "outputQty": "7588168146560664541132", "swapFee": "0", - "redemptionFee": "79580496686810465487", + "redemptionFee": "4495281209656162949", "mpReserves": [ - "70128291904262918524252459", - "26229970630143197909429236", - "21828369145360399890237404" + "54882348906068946565249170", + "6362511709232236000806148", + "38813248430509158136129194" ], "fpReserves": [ - "18997946719096767735970458", - "12841576484804977179481465" + "426231087780345024442982", + "1646757123166123270093300" ], - "mAssetSupply": "118118370519369053590734618", - "LPTokenSupply": "31482228969695249251496764" + "mAssetSupply": "99588084189317912884119458", + "LPTokenSupply": "2008032568103197652663009" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "263163553290784455262208", - "outputQty0": "264064824512480962588373", - "outputQty": "263089461069696476411167", - "swapFee": "208643866694520361006", + "inputQty": "2910785690764823232512", + "outputQty0": "2888186016655407354332", + "outputQty": "2938132732361324117569", + "swapFee": "2270274441533986606", "mpReserves": [ - "70128291904262918524252459", - "26229970630143197909429236", - "22091532698651184345499612" + "54882348906068946565249170", + "6362511709232236000806148", + "38816159216199922959361706" ], "fpReserves": [ - "19262011543609248698558831", - "12578487023735280703070298" + "429119273797000431797314", + "1643818990433761945975731" ], - "mAssetSupply": "118382435343881534553322991", - "LPTokenSupply": "31482249834081918703532864" + "mAssetSupply": "99590972375334568291473790", + "LPTokenSupply": "2008032795130641806061669" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "6804221643285908480", - "outputQty0": "6817574397358978930", - "outputQty": "6791442536776621683", - "swapFee": "5386215464203744", + "inputQty": "422182764319228859252736", + "outputQty0": "456974716297204546261818", + "outputQty": "460039268703723681818305", + "swapFee": "356881728754514185723", "mpReserves": [ - "70128291904262918524252459", - "26229977434364841195337716", - "22091532698651184345499612" + "54882348906068946565249170", + "6784694473551464860058884", + "38816159216199922959361706" ], "fpReserves": [ - "19262018361183646057537761", - "12578480232292743926448615" + "886093990094204978059132", + "1183779721730038264157426" ], - "mAssetSupply": "118382442161455931912301921", - "LPTokenSupply": "31482249834620540249953238" + "mAssetSupply": "100047947091631772837735608", + "LPTokenSupply": "2008068483303517257480241" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "123429430366253271220224", - "outputQty0": "124907826706785926407841", - "outputQty": "125202674430729979064232", - "swapFee1": "74057658219751962732", - "swapFee2": "49963130682714370563", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "34602997244257736", + "outputQty0": "34173190274048469", + "outputQty": "34213715431389953", + "swapFee": "26552359778891", "mpReserves": [ - "70003089229832188545188227", - "26229977434364841195337716", - "22091532698651184345499612" + "54882348940671943809506906", + "6784694473551464860058884", + "38816159216199922959361706" ], "fpReserves": [ - "19137110534476860131129920", - "12578480232292743926448615" + "886094024267395252107601", + "1183779687516322832767473" ], - "mAssetSupply": "118257584297879828700264643", - "LPTokenSupply": "31358827810020108953929287" + "mAssetSupply": "100047947125804963111784077", + "LPTokenSupply": "2008068483306172493458130" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "274123776459311553708032", - "outputQty0": "273367633627123200646269", - "outputQty": "272293893762819036542249", - "swapFee": "215972847057811140330", + "type": "swap_fp_to_mp", + "inputQty": "2289400261895938899968", + "outputIndex": 1, + "outputQty": "2119386801605556929337", + "swapFee": "0", + "redemptionFee": "1370892821005294208", "mpReserves": [ - "70277213006291500098896259", - "26229977434364841195337716", - "22091532698651184345499612" + "54882348940671943809506906", + "6782575086749859303129547", + "38816159216199922959361706" ], "fpReserves": [ - "19410478168103983331776189", - "12306186338529924889906366" + "883809202899053095093335", + "1186069087778218771667441" ], - "mAssetSupply": "118530951931506951900910912", - "LPTokenSupply": "31358849407304814735043320" + "mAssetSupply": "100045663675329441960064019", + "LPTokenSupply": "2008068483306172493458130" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "110216044115120319627264", - "outputQty0": "109910778424969299786666", - "outputQty": "108531216662481665450972", + "type": "swap_fp_to_mp", + "inputQty": "78191697269202295455744", + "outputIndex": 0, + "outputQty": "78920558908120236323055", + "swapFee": "0", + "redemptionFee": "46792571184333001314", "mpReserves": [ - "70387429050406620418523523", - "26229977434364841195337716", - "22091532698651184345499612" + "54803428381763823573183851", + "6782575086749859303129547", + "38816159216199922959361706" ], "fpReserves": [ - "19520388946528952631562855", - "12306186338529924889906366" + "805821584258498092903126", + "1264260785047421067123185" ], - "mAssetSupply": "118640862709931921200697578", - "LPTokenSupply": "31467380623967296400494292" + "mAssetSupply": "99967722849260071290875124", + "LPTokenSupply": "2008068483306172493458130" }, { "type": "swap_fp_to_mp", - "inputQty": "57989585919981415038976", - "outputIndex": 1, - "outputQty": "58042640240976141937061", + "inputQty": "355283716873649723015168", + "outputIndex": 0, + "outputQty": "356663216818811307468922", "swapFee": "0", - "redemptionFee": "23272525307964542939", + "redemptionFee": "211480989758693579701", "mpReserves": [ - "70387429050406620418523523", - "26171934794123865053400655", - "22091532698651184345499612" + "54446765164945012265714929", + "6782575086749859303129547", + "38816159216199922959361706" ], "fpReserves": [ - "19462207633259041274213731", - "12364175924449906304945342" + "453353267994008793400520", + "1619544501921070790138353" ], - "mAssetSupply": "118582704669187317807891393", - "LPTokenSupply": "31467380623967296400494292" + "mAssetSupply": "99615466013985340684952219", + "LPTokenSupply": "2008068483306172493458130" }, { "type": "mint", "inputIndex": 2, - "inputQty": "571209593795247931392", - "outputQty0": "573150668764439017023", - "outputQty": "565965676020745347886", + "inputQty": "149757803485910194454528", + "outputQty0": "148674598788797162518296", + "outputQty": "145428394802114032992088", "mpReserves": [ - "70387429050406620418523523", - "26171934794123865053400655", - "22092103908244979593431004" + "54446765164945012265714929", + "6782575086749859303129547", + "38965917019685833153816234" ], "fpReserves": [ - "19462780783927805713230754", - "12364175924449906304945342" + "602027866782805955918816", + "1619544501921070790138353" ], - "mAssetSupply": "118583277819856082246908416", - "LPTokenSupply": "31467946589643317145842178" + "mAssetSupply": "99764140612774137847470515", + "LPTokenSupply": "2153496878108286526450218" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "30407181790506672717824", - "outputQty0": "30510333933396436458994", - "outputQty": "30385925484999288045710", - "swapFee": "24102223162352255454", + "inputQty": "346972326761244590080", + "outputQty0": "344454333429889002034", + "outputQty": "347520094575017014197", + "swapFee": "269005273826759690", "mpReserves": [ - "70387429050406620418523523", - "26171934794123865053400655", - "22122511090035486266148828" + "54446765164945012265714929", + "6782575086749859303129547", + "38966263992012594398406314" ], "fpReserves": [ - "19493291117861202149689748", - "12333789998964907016899632" + "602372321116235844920850", + "1619196981826495773124156" ], - "mAssetSupply": "118613788153789478683367410", - "LPTokenSupply": "31467948999865633381067723" + "mAssetSupply": "99764485067107567736472549", + "LPTokenSupply": "2153496905008813909126187" }, { "type": "mint", "inputIndex": 2, - "inputQty": "88040137276629836627968", - "outputQty0": "88336851180716756928926", - "outputQty": "87227601967490104395810", + "inputQty": "49519917162084081598464", + "outputQty0": "49160154816809049181793", + "outputQty": "47967322426865816891493", "mpReserves": [ - "70387429050406620418523523", - "26171934794123865053400655", - "22210551227312116102776796" + "54446765164945012265714929", + "6782575086749859303129547", + "39015783909174678480004778" ], "fpReserves": [ - "19581627969041918906618674", - "12333789998964907016899632" + "651532475933044894102643", + "1619196981826495773124156" ], - "mAssetSupply": "118702125004970195440296336", - "LPTokenSupply": "31555176601833123485463533" + "mAssetSupply": "99813645221924376785654342", + "LPTokenSupply": "2201464227435679726017680" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "960289840187290812416", - "outputQty0": "963510319026292352426", - "outputQty": "959528013688124371700", - "swapFee": "761123482310401917", + "inputQty": "12214010098898715017216", + "outputQty0": "12125154994846437986760", + "outputQty": "12215199039028077951696", + "swapFee": "9459692841062457847", "mpReserves": [ - "70387429050406620418523523", - "26171934794123865053400655", - "22211511517152303393589212" + "54446765164945012265714929", + "6782575086749859303129547", + "39027997919273577195021994" ], "fpReserves": [ - "19582591479360945198971100", - "12332830470951218892527932" + "663657630927891332089403", + "1606981782787467695172460" ], - "mAssetSupply": "118703088515289221732648762", - "LPTokenSupply": "31555176677945471716503724" + "mAssetSupply": "99825770376919223223641102", + "LPTokenSupply": "2201465173404963832263464" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "200764805778704387014656", - "outputQty0": "203194011712079079700602", - "outputQty": "203674715651700897948271", - "swapFee1": "120458883467222632208", - "swapFee2": "81277604684831631880", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "5587311278234051543040", + "outputQty0": "6016712534007306682776", + "outputQty": "6059672793326374792753", + "swapFee": "4693007190254086565", "mpReserves": [ - "70183754334754919520575252", - "26171934794123865053400655", - "22211511517152303393589212" + "54446765164945012265714929", + "6788162398028093354672587", + "39027997919273577195021994" ], "fpReserves": [ - "19379397467648866119270498", - "12332830470951218892527932" + "669674343461898638772179", + "1600922109994141320379707" ], - "mAssetSupply": "118499975781181827484580040", - "LPTokenSupply": "31354423918055114051752288" + "mAssetSupply": "99831787089453230530323878", + "LPTokenSupply": "2201465642705682857672120" }, { "type": "swap_fp_to_mp", - "inputQty": "208393012503475195478016", + "inputQty": "17675224648117523578880", "outputIndex": 1, - "outputQty": "208545273062516862546662", + "outputQty": "16269875998877117569964", "swapFee": "0", - "redemptionFee": "83619273204333228962", + "redemptionFee": "10519629343927190651", "mpReserves": [ - "70183754334754919520575252", - "25963389521061348190853993", - "22211511517152303393589212" + "54446765164945012265714929", + "6771892522029216237102623", + "39027997919273577195021994" ], "fpReserves": [ - "19170349284638033046865353", - "12541223483454694088005948" + "652141627888686654353029", + "1618597334642258843958587" ], - "mAssetSupply": "118291011217444198745403857", - "LPTokenSupply": "31354423918055114051752288" + "mAssetSupply": "99814264893509362473095379", + "LPTokenSupply": "2201465642705682857672120" }, { - "type": "swap_fp_to_mp", - "inputQty": "38803342288540447801344", + "type": "redeem", "outputIndex": 0, - "outputQty": "39012496328588403337304", - "swapFee": "0", - "redemptionFee": "15568039408300874675", + "inputQty": "15753235202017603878912", + "outputQty0": "16140468537335136190961", + "outputQty": "16331814314755868492675", + "swapFee1": "9451941121210562327", + "swapFee2": "9684281122401081714", "mpReserves": [ - "70144741838426331117237948", - "25963389521061348190853993", - "22211511517152303393589212" + "54430433350630256397222254", + "6771892522029216237102623", + "39027997919273577195021994" ], "fpReserves": [ - "19131429186117280860176536", - "12580026825743234535807292" + "636001159351351518162068", + "1618597334642258843958587" ], - "mAssetSupply": "118252106686962854859589715", - "LPTokenSupply": "31354423918055114051752288" + "mAssetSupply": "99798134109253149737986132", + "LPTokenSupply": "2185713352697777374849440" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1334246765064364228608", - "outputQty0": "1336958553284945432349", - "outputQty": "1320340827170507020878", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "114686854928893759979520", + "outputQty0": "113273617758863614304251", + "outputQty": "113986897471266077140991", + "swapFee": "88327838881418961808", "mpReserves": [ - "70144741838426331117237948", - "25964723767826412555082601", - "22211511517152303393589212" + "54545120205559150157201774", + "6771892522029216237102623", + "39027997919273577195021994" ], "fpReserves": [ - "19132766144670565805608885", - "12580026825743234535807292" + "749274777110215132466319", + "1504610437170992766817596" ], - "mAssetSupply": "118253443645516139805022064", - "LPTokenSupply": "31355744258882284558773166" + "mAssetSupply": "99911407727012013352290383", + "LPTokenSupply": "2185722185481665516745620" }, { "type": "mint", "inputIndex": 1, - "inputQty": "14063481216012296126464", - "outputQty0": "14092038457602262496266", - "outputQty": "13916863330056375234850", + "inputQty": "2251671064374230646784", + "outputQty0": "2425742737753854938689", + "outputQty": "2361188687546247096429", "mpReserves": [ - "70144741838426331117237948", - "25978787249042424851209065", - "22211511517152303393589212" + "54545120205559150157201774", + "6774144193093590467749407", + "39027997919273577195021994" ], "fpReserves": [ - "19146858183128168068105151", - "12580026825743234535807292" + "751700519847968987405008", + "1504610437170992766817596" ], - "mAssetSupply": "118267535683973742067518330", - "LPTokenSupply": "31369661122212340934008016" + "mAssetSupply": "99913833469749767207229072", + "LPTokenSupply": "2188083374169211763842049" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "23304309966350336393216", - "outputQty0": "23351526918126973587107", - "outputQty": "23262891288543203160280", - "swapFee": "18448940924047900038", + "inputQty": "3429604307979734089728", + "outputQty0": "3694521661932188417091", + "outputQty": "3712087808571117193197", + "swapFee": "2876875618737547189", "mpReserves": [ - "70144741838426331117237948", - "26002091559008775187602281", - "22211511517152303393589212" + "54545120205559150157201774", + "6777573797401570201839135", + "39027997919273577195021994" ], "fpReserves": [ - "19170209710046295041692258", - "12556763934454691332647012" + "755395041509901175822099", + "1500898349362421649624399" ], - "mAssetSupply": "118290887210891869041105437", - "LPTokenSupply": "31369662967106433338798019" + "mAssetSupply": "99917527991411699395646163", + "LPTokenSupply": "2188083661856773637596767" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "179306656916795564228608", - "outputQty0": "181454026069532153439859", - "outputQty": "181883094328707421355536", - "swapFee1": "107583994150077338537", - "swapFee2": "72581610427812861375", + "type": "mint", + "inputIndex": 1, + "inputQty": "340658078429169216", + "outputQty0": "366958925159471541", + "outputQty": "357169300057516552", "mpReserves": [ - "69962858744097623695882412", - "26002091559008775187602281", - "22211511517152303393589212" + "54545120205559150157201774", + "6777574138059648631008351", + "39027997919273577195021994" ], "fpReserves": [ - "18988755683976762888252399", - "12556763934454691332647012" + "755395408468826335293640", + "1500898349362421649624399" ], - "mAssetSupply": "118109505766432764700526953", - "LPTokenSupply": "31190367068589052782303264" + "mAssetSupply": "99917528358370624555117704", + "LPTokenSupply": "2188084019026073695113319" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "44434923881160251539456", + "outputQty0": "43886865632341135717860", + "outputQty": "42707427034507545361128", + "mpReserves": [ + "54589555129440310408741230", + "6777574138059648631008351", + "39027997919273577195021994" + ], + "fpReserves": [ + "799282274101167471011500", + "1500898349362421649624399" + ], + "mAssetSupply": "99961415224002965690835564", + "LPTokenSupply": "2230791446060581240474447" }, { "type": "swap_fp_to_mp", - "inputQty": "99504800217760746438656", + "inputQty": "71039966825371828224", "outputIndex": 0, - "outputQty": "100027400261428802638582", + "outputQty": "71532771131480427414", "swapFee": "0", - "redemptionFee": "39916905018511371413", + "redemptionFee": "42415482303791779", "mpReserves": [ - "69862831343836194893243830", - "26002091559008775187602281", - "22211511517152303393589212" + "54589483596669178928313816", + "6777574138059648631008351", + "39027997919273577195021994" ], "fpReserves": [ - "18888963421430484459718167", - "12656268734672452079085668" + "799211581630661151378201", + "1500969389329247021452623" ], - "mAssetSupply": "118009753420791504783364134", - "LPTokenSupply": "31190367068589052782303264" + "mAssetSupply": "99961344573947941674994044", + "LPTokenSupply": "2230791446060581240474447" }, { "type": "mint", "inputIndex": 2, - "inputQty": "101473815335648911949824", - "outputQty0": "101806142895998384214755", - "outputQty": "100545610965460371466617", + "inputQty": "20379022176990563139584", + "outputQty0": "20230715591740750709273", + "outputQty": "19681624651124456199741", "mpReserves": [ - "69862831343836194893243830", - "26002091559008775187602281", - "22312985332487952305539036" + "54589483596669178928313816", + "6777574138059648631008351", + "39048376941450567758161578" ], "fpReserves": [ - "18990769564326482843932922", - "12656268734672452079085668" + "819442297222401902087474", + "1500969389329247021452623" ], - "mAssetSupply": "118111559563687503167578889", - "LPTokenSupply": "31290912679554513153769881" + "mAssetSupply": "99981575289539682425703317", + "LPTokenSupply": "2250473070711705696674188" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2374285232363035688960", - "outputQty0": "2367786940225330230624", - "outputQty": "2338449070418146467510", + "inputIndex": 1, + "inputQty": "1077226973924831484968960", + "outputQty0": "1149286042378253036839970", + "outputQty": "1115491219630468367643561", "mpReserves": [ - "69865205629068557928932790", - "26002091559008775187602281", - "22312985332487952305539036" + "54589483596669178928313816", + "7854801111984480115977311", + "39048376941450567758161578" ], "fpReserves": [ - "18993137351266708174163546", - "12656268734672452079085668" + "1968728339600654938927444", + "1500969389329247021452623" ], - "mAssetSupply": "118113927350627728497809513", - "LPTokenSupply": "31293251128624931300237391" + "mAssetSupply": "101130861331917935462543287", + "LPTokenSupply": "3365964290342174064317749" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "7553497080374905856", - "outputQty0": "7568660117905151125", - "outputQty": "7540886039247334480", - "swapFee": "5979903800864575", + "inputIndex": 0, + "inputQty": "599305674231818693378048", + "outputQty0": "592891981361371784969019", + "outputQty": "589285778154564319949497", + "swapFee": "459562949001841860360", "mpReserves": [ - "69865205629068557928932790", - "26002099112505855562508137", - "22312985332487952305539036" + "55188789270900997621691864", + "7854801111984480115977311", + "39048376941450567758161578" ], "fpReserves": [ - "18993144919926826079314671", - "12656261193786412831751188" + "2561620320962026723896463", + "911683611174682701503126" ], - "mAssetSupply": "118113934919287846402960638", - "LPTokenSupply": "31293251129222921680323848" + "mAssetSupply": "101723753313279307247512306", + "LPTokenSupply": "3366010246637074248503785" }, { - "type": "swap_fp_to_mp", - "inputQty": "1643071777922707619840", - "outputIndex": 0, - "outputQty": "1651664131903446061322", - "swapFee": "0", - "redemptionFee": "659121080885135369", + "type": "mint", + "inputIndex": 1, + "inputQty": "1058836592740483072", + "outputQty0": "1120990129849597929", + "outputQty": "1083378112065885676", "mpReserves": [ - "69863553964936654482871468", - "26002099112505855562508137", - "22312985332487952305539036" + "55188789270900997621691864", + "7854802170821072856460383", + "39048376941450567758161578" ], "fpReserves": [ - "18991497117224613240890851", - "12657904265564335539371028" + "2561621441952156573494392", + "911683611174682701503126" ], - "mAssetSupply": "118112287775706714449672187", - "LPTokenSupply": "31293251129222921680323848" + "mAssetSupply": "101723754434269437097110235", + "LPTokenSupply": "3366011330015186314389461" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "452329500230440", - "outputQty0": "453802593830995", - "outputQty": "448180011023335", + "inputIndex": 1, + "inputQty": "1258284256710267904", + "outputQty0": "1332145318064704750", + "outputQty": "1287448513513838504", "mpReserves": [ - "69863553964936654482871468", - "26002099112505855562508137", - "22312985332940281805769476" + "55188789270900997621691864", + "7854803429105329566728287", + "39048376941450567758161578" ], "fpReserves": [ - "18991497117678415834721846", - "12657904265564335539371028" + "2561622774097474638199142", + "911683611174682701503126" ], - "mAssetSupply": "118112287776160517043503182", - "LPTokenSupply": "31293251129671101691347183" + "mAssetSupply": "101723755766414755161814985", + "LPTokenSupply": "3366012617463699828227965" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "108411835512703844352", - "outputQty0": "108629448873081074353", - "outputQty": "108231002177641525993", - "swapFee": "85826829210864233", + "inputIndex": 2, + "inputQty": "85243062475355653668864", + "outputQty0": "84729764969069945221813", + "outputQty": "83678283384807634905483", + "swapFee": "65504261327827577596", "mpReserves": [ - "69863553964936654482871468", - "26002207524341368266352489", - "22312985332940281805769476" + "55188789270900997621691864", + "7854803429105329566728287", + "39133620003925923411830442" ], "fpReserves": [ - "18991605747127288915796199", - "12657796034562157897845035" + "2646352539066544583420955", + "828005327789875066597643" ], - "mAssetSupply": "118112396405609390124577535", - "LPTokenSupply": "31293251138253784612433606" + "mAssetSupply": "101808485531383825107036798", + "LPTokenSupply": "3366019167889832610985724" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "5803036262158107648", - "outputQty0": "5872312261725701564", - "outputQty": "5858204327572594841", - "swapFee1": "3481821757294864", - "swapFee2": "2348924904690280", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "5529002420161639424", + "outputQty0": "5495640919109018364", + "outputQty": "5420022442218883852", + "swapFee": "4246121828126036", "mpReserves": [ - "69863553964936654482871468", - "26002201666137040693757648", - "22312985332940281805769476" + "55188789270900997621691864", + "7854803429105329566728287", + "39133625532928343573469866" ], "fpReserves": [ - "18991599874815027190094635", - "12657796034562157897845035" + "2646358034707463692439319", + "827999907767432847713791" ], - "mAssetSupply": "118112390535646053303566251", - "LPTokenSupply": "31293245335565704630055444" + "mAssetSupply": "101808491027024744216055162", + "LPTokenSupply": "3366019168314444793798327" }, { - "type": "swap_fp_to_mp", - "inputQty": "737889676859237851987968", + "type": "redeem", "outputIndex": 0, - "outputQty": "741451538323039409456284", - "swapFee": "0", - "redemptionFee": "295893696298188839170", + "inputQty": "394785998059583314067456", + "outputQty0": "408351595644843951614326", + "outputQty": "412528544113391188219683", + "swapFee1": "236871598835749988440", + "swapFee2": "245010957386906370968", "mpReserves": [ - "69122102426613615073415184", - "26002201666137040693757648", - "22312985332940281805769476" + "54776260726787606433472181", + "7854803429105329566728287", + "39133625532928343573469866" ], "fpReserves": [ - "18251865634069555092167962", - "13395685711421395749833003" + "2238006439062619740824993", + "827999907767432847713791" ], - "mAssetSupply": "117372952188596879394478748", - "LPTokenSupply": "31293245335565704630055444" + "mAssetSupply": "101400384442337287170811804", + "LPTokenSupply": "2971256857414745054729715" }, { - "type": "swap_fp_to_mp", - "inputQty": "337757704709940826865664", + "type": "redeem", "outputIndex": 1, - "outputQty": "337615573608144340963154", - "swapFee": "0", - "redemptionFee": "135369525649196475164", + "inputQty": "905133881448928641024", + "outputQty0": "935905703759568976909", + "outputQty": "883884667620285961394", + "swapFee1": "543080328869357184", + "swapFee2": "561543422255741386", "mpReserves": [ - "69122102426613615073415184", - "25664586092528896352794494", - "22312985332940281805769476" + "54776260726787606433472181", + "7853919544437709280766893", + "39133625532928343573469866" ], "fpReserves": [ - "17913441819946563904255475", - "13733443416131336576698667" + "2237070533358860171848084", + "827999907767432847713791" ], - "mAssetSupply": "117034663743999537403041425", - "LPTokenSupply": "31293245335565704630055444" + "mAssetSupply": "101399449098176949857576281", + "LPTokenSupply": "2970351777841329013024409" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "269329458552847405678592", - "outputQty0": "270170166614491051089916", - "outputQty": "269431397667657512715727", - "swapFee": "213547848931026856017", + "type": "redeem", + "outputIndex": 2, + "inputQty": "29497105005726836719616", + "outputQty0": "30498919176745558010020", + "outputQty": "30666345296222198376319", + "swapFee1": "17698263003436102031", + "swapFee2": "18299351506047334806", "mpReserves": [ - "69122102426613615073415184", - "25664586092528896352794494", - "22582314791493129211448068" + "54776260726787606433472181", + "7853919544437709280766893", + "39102959187632121375093547" ], "fpReserves": [ - "18183611986561054955345391", - "13464012018463679063982940" + "2206571614182114613838064", + "827999907767432847713791" ], - "mAssetSupply": "117304833910614028454131341", - "LPTokenSupply": "31293266690350597732741045" + "mAssetSupply": "101368968478351710346901067", + "LPTokenSupply": "2940856442661902519914996" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "144141863857037198229504", - "outputQty0": "143753138662358144297296", - "outputQty": "142016863888492014680790", + "type": "redeem", + "outputIndex": 1, + "inputQty": "133380419567554419228672", + "outputQty0": "137886777067851628573303", + "outputQty": "130106922888659033065566", + "swapFee1": "80028251740532651537", + "swapFee2": "82732066240710977143", "mpReserves": [ - "69266244290470652271644688", - "25664586092528896352794494", - "22582314791493129211448068" + "54776260726787606433472181", + "7723812621549050247701327", + "39102959187632121375093547" ], "fpReserves": [ - "18327365125223413099642687", - "13464012018463679063982940" + "2068684837114262985264761", + "827999907767432847713791" ], - "mAssetSupply": "117448587049276386598428637", - "LPTokenSupply": "31435283554239089747421835" + "mAssetSupply": "101231164433350099429304907", + "LPTokenSupply": "2807484025919522153951477" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "66897811744105181478912", - "outputQty0": "67034867323229109056376", - "outputQty": "66837003972203970049403", - "swapFee": "52979206996205796793", + "inputIndex": 0, + "inputQty": "17487096525010891702272", + "outputQty0": "17297240440474203646238", + "outputQty": "17133689221616756610074", + "swapFee": "13378879377429664583", "mpReserves": [ - "69266244290470652271644688", - "25731483904273001534273406", - "22582314791493129211448068" + "54793747823312617325174453", + "7723812621549050247701327", + "39102959187632121375093547" ], "fpReserves": [ - "18394399992546642208699063", - "13397175014491475093933537" + "2085982077554737188910999", + "810866218545816091103717" ], - "mAssetSupply": "117515621916599615707485013", - "LPTokenSupply": "31435288852159789368001514" + "mAssetSupply": "101248461673790573632951145", + "LPTokenSupply": "2807485363807459896917935" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "1247362568740670013440", - "outputQty0": "1251218678969483571954", - "outputQty": "1236055361608980383251", + "inputQty": "10794719036525552599040", + "outputQty0": "10727963966665433793042", + "outputQty": "10622518632495109981803", + "swapFee": "8296691601601642751", "mpReserves": [ - "69266244290470652271644688", - "25731483904273001534273406", - "22583562154061869881461508" + "54793747823312617325174453", + "7723812621549050247701327", + "39113753906668646927692587" ], "fpReserves": [ - "18395651211225611692271017", - "13397175014491475093933537" + "2096710041521402622704041", + "800243699913320981121914" ], - "mAssetSupply": "117516873135278585191056967", - "LPTokenSupply": "31436524907521398348384765" + "mAssetSupply": "101259189637757239066744187", + "LPTokenSupply": "2807486193476620057082210" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "38323560202740657291264", - "outputQty0": "38441773912023776867236", - "outputQty": "38326345650472041006425", - "swapFee": "30380620161715878090", + "inputQty": "6838767418338354176", + "outputQty0": "6796465393120778748", + "outputQty": "6569746569761615565", "mpReserves": [ - "69266244290470652271644688", - "25731483904273001534273406", - "22621885714264610538752772" + "54793747823312617325174453", + "7723812621549050247701327", + "39113760745436065266046763" ], "fpReserves": [ - "18434092985137635469138253", - "13358848668841003052927112" + "2096716837986795743482789", + "800243699913320981121914" ], - "mAssetSupply": "117555314909190608967924203", - "LPTokenSupply": "31436527945583414519972574" + "mAssetSupply": "101259196434222632187522935", + "LPTokenSupply": "2807492763223189818697775" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "20363340050171380629504", - "outputQty0": "20425948752092751185826", - "outputQty": "20178039936331844918883", + "type": "redeem", + "outputIndex": 0, + "inputQty": "13102731187295954665472", + "outputQty0": "13546567707298685668591", + "outputQty": "13687035985564100305566", + "swapFee1": "7861638712377572799", + "swapFee2": "8127940624379211401", "mpReserves": [ - "69266244290470652271644688", - "25731483904273001534273406", - "22642249054314781919382276" + "54780060787327053224868887", + "7723812621549050247701327", + "39113760745436065266046763" ], "fpReserves": [ - "18454518933889728220324079", - "13358848668841003052927112" + "2083170270279497057814198", + "800243699913320981121914" ], - "mAssetSupply": "117575740857942701719110029", - "LPTokenSupply": "31456705985519746364891457" + "mAssetSupply": "101245657994455957881065745", + "LPTokenSupply": "2794390818199765101789582" }, { "type": "swap_fp_to_mp", - "inputQty": "887694731204459497521152", + "inputQty": "3602322904166457409536", "outputIndex": 2, - "outputQty": "886093093654905740457850", + "outputQty": "3655576949407492853916", "swapFee": "0", - "redemptionFee": "355723647414539615041", + "redemptionFee": "2181086891858297487", "mpReserves": [ - "69266244290470652271644688", - "25731483904273001534273406", - "21756155960659876178924426" + "54780060787327053224868887", + "7723812621549050247701327", + "39110105168486657773192847" ], "fpReserves": [ - "17565209815353379182719724", - "14246543400045462550448264" + "2079535125459733228669034", + "803846022817487438531450" ], - "mAssetSupply": "116686787463053767221120715", - "LPTokenSupply": "31456705985519746364891457" + "mAssetSupply": "101242025030723085910218068", + "LPTokenSupply": "2794390818199765101789582" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "30114333017853259776", - "outputQty0": "30030697076356287440", - "outputQty": "29964330666515712509", - "swapFee": "23741398208718972", + "inputQty": "680034943167278848", + "outputQty0": "672652987204289773", + "outputQty": "650250267313194961", "mpReserves": [ - "69266274404803670124904464", - "25731483904273001534273406", - "21756155960659876178924426" + "54780061467361996392147735", + "7723812621549050247701327", + "39110105168486657773192847" ], "fpReserves": [ - "17565239846050455539007164", - "14246513435714796034735755" + "2079535798112720432958807", + "803846022817487438531450" ], - "mAssetSupply": "116686817493750843577408155", - "LPTokenSupply": "31456705987893886185763354" + "mAssetSupply": "101242025703376073114507841", + "LPTokenSupply": "2794391468450032414984543" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "118550526210484027392", - "outputQty0": "119892478580299598875", - "outputQty": "119439515827991077200", - "swapFee1": "71130315726290416", - "swapFee2": "47956991432119839", + "type": "mint", + "inputIndex": 2, + "inputQty": "5362486632668155871232", + "outputQty0": "5329313226152391730883", + "outputQty": "5151790563753808363326", "mpReserves": [ - "69266274404803670124904464", - "25731483904273001534273406", - "21756036521144048187847226" + "54780061467361996392147735", + "7723812621549050247701327", + "39115467655119325929064079" ], "fpReserves": [ - "17565119953571875239408289", - "14246513435714796034735755" + "2084865111338872824689690", + "803846022817487438531450" ], - "mAssetSupply": "116686697649229254709929119", - "LPTokenSupply": "31456587444480707274365003" + "mAssetSupply": "101247355016602225506238724", + "LPTokenSupply": "2799543259013786223347869" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "971860542262677631664128", - "outputQty0": "982773802977735521229369", - "outputQty": "978870481617010841281148", - "swapFee1": "583116325357606578998", - "swapFee2": "393109521191094208491", + "type": "mint", + "inputIndex": 0, + "inputQty": "17529624532875000938496", + "outputQty0": "17339304028929699800611", + "outputQty": "16761309327906285896865", "mpReserves": [ - "69266274404803670124904464", - "25731483904273001534273406", - "20777166039527037346566078" + "54797591091894871393086231", + "7723812621549050247701327", + "39115467655119325929064079" ], "fpReserves": [ - "16582346150594139718178920", - "14246513435714796034735755" + "2102204415367802524490301", + "803846022817487438531450" ], - "mAssetSupply": "115704316955772710282908241", - "LPTokenSupply": "30484785213850565403358774" + "mAssetSupply": "101264694320631155206039335", + "LPTokenSupply": "2816304568341692509244734" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "207413835975972487168", - "outputQty0": "209727391378727160896", - "outputQty": "208852000405416256729", - "swapFee1": "124448301585583492", - "swapFee2": "83890956551490864", + "type": "mint", + "inputIndex": 1, + "inputQty": "65984956919884840960", + "outputQty0": "69956130936314849239", + "outputQty": "67622912085864362818", "mpReserves": [ - "69266274404803670124904464", - "25731483904273001534273406", - "20776957187526631930309349" + "54797591091894871393086231", + "7723878606505970132542287", + "39115467655119325929064079" ], "fpReserves": [ - "16582136423202760991018024", - "14246513435714796034735755" + "2102274371498738839339540", + "803846022817487438531450" ], - "mAssetSupply": "115704107312272288107238209", - "LPTokenSupply": "30484577812459419589429955" + "mAssetSupply": "101264764276762091520888574", + "LPTokenSupply": "2816372191253778373607552" }, { - "type": "swap_fp_to_mp", - "inputQty": "881774512457056159531008", - "outputIndex": 1, - "outputQty": "880158201784892574062962", - "swapFee": "0", - "redemptionFee": "352931481690748939109", + "type": "mint", + "inputIndex": 0, + "inputQty": "412055899440464313450496", + "outputQty0": "407560444795590338892139", + "outputQty": "393794968315621352235378", "mpReserves": [ - "69266274404803670124904464", - "24851325702488108960210444", - "20776957187526631930309349" + "55209646991335335706536727", + "7723878606505970132542287", + "39115467655119325929064079" ], "fpReserves": [ - "15699807718975888643244149", - "15128287948171852194266763" + "2509834816294329178231679", + "803846022817487438531450" ], - "mAssetSupply": "114822131539527106508403443", - "LPTokenSupply": "30484577812459419589429955" + "mAssetSupply": "101672324721557681859780713", + "LPTokenSupply": "3210167159569399725842930" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "63045707659862263988224", - "outputQty0": "63281141741087314058803", - "outputQty": "62568043961487475163286", + "type": "swap_fp_to_mp", + "inputQty": "2296077033162917281792", + "outputIndex": 2, + "outputQty": "2337958860854307506021", + "swapFee": "0", + "redemptionFee": "1394972043413000884", "mpReserves": [ - "69266274404803670124904464", - "24851325702488108960210444", - "20840002895186494194297573" + "55209646991335335706536727", + "7723878606505970132542287", + "39113129696258471621558058" ], "fpReserves": [ - "15763088860716975957302952", - "15128287948171852194266763" + "2507509862888640843423983", + "806142099850650355813242" ], - "mAssetSupply": "114885412681268193822462246", - "LPTokenSupply": "30547145856420907064593241" + "mAssetSupply": "101670001163124036937973901", + "LPTokenSupply": "3210167159569399725842930" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "19394598895576649039872", - "outputQty0": "19337479986174357560490", - "outputQty": "19316586760932078995239", - "swapFee": "15295526532063589927", + "type": "redeem", + "outputIndex": 0, + "inputQty": "11457555190503245348864", + "outputQty0": "11855707973567513855767", + "outputQty": "11979884354531213935579", + "swapFee1": "6874533114301947209", + "swapFee2": "7113424784140508313", "mpReserves": [ - "69285669003699246773944336", - "24851325702488108960210444", - "20840002895186494194297573" + "55197667106980804492601148", + "7723878606505970132542287", + "39113129696258471621558058" ], "fpReserves": [ - "15782426340703150314863442", - "15108971361410920115271524" + "2495654154915073329568216", + "806142099850650355813242" ], - "mAssetSupply": "114904750161254368180022736", - "LPTokenSupply": "30547147385973560270952233" + "mAssetSupply": "101658152568575253564626447", + "LPTokenSupply": "3198710291832207910688786" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "9906214066924103401472", - "outputQty0": "9943072936628754333560", - "outputQty": "9932204957677035136913", - "swapFee": "7864694777579692686", + "type": "swap_fp_to_mp", + "inputQty": "1796259675515032436736", + "outputIndex": 2, + "outputQty": "1828706566105283172189", + "swapFee": "0", + "redemptionFee": "1091120201332123773", "mpReserves": [ - "69285669003699246773944336", - "24851325702488108960210444", - "20849909109253418297699045" + "55197667106980804492601148", + "7723878606505970132542287", + "39111300989692366338385869" ], "fpReserves": [ - "15792369413639779069197002", - "15099039156453243080134611" + "2493835621246186456612603", + "807938359526165388249978" ], - "mAssetSupply": "114914693234190996934356296", - "LPTokenSupply": "30547148172443038028921501" + "mAssetSupply": "101656335126026568023794607", + "LPTokenSupply": "3198710291832207910688786" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "18433947632362279927808", - "outputQty0": "18633184043640649756191", - "outputQty": "18585095918120484829884", - "swapFee1": "11060368579417367956", - "swapFee2": "7453273617456259902", + "outputIndex": 0, + "inputQty": "10849033148843378688", + "outputQty0": "11225746277124046545", + "outputQty": "11343308864549648826", + "swapFee1": "6509419889306027", + "swapFee2": "6735447766274427", "mpReserves": [ - "69285669003699246773944336", - "24832740606569988475380560", - "20849909109253418297699045" + "55197655763671939942952322", + "7723878606505970132542287", + "39111300989692366338385869" ], "fpReserves": [ - "15773736229596138419440811", - "15099039156453243080134611" + "2493824395499909332566058", + "807938359526165388249978" ], - "mAssetSupply": "114896067503420973740860007", - "LPTokenSupply": "30528715330847533690730488" + "mAssetSupply": "101656323907015738666022489", + "LPTokenSupply": "3198699443450001056240700" }, { "type": "swap_fp_to_mp", - "inputQty": "2799781139361251328", + "inputQty": "24614699267213008896", "outputIndex": 2, - "outputQty": "2789102923028315132", + "outputQty": "25058520348766593043", "swapFee": "0", - "redemptionFee": "1120236976812522", + "redemptionFee": "14951477575087721", "mpReserves": [ - "69285669003699246773944336", - "24832740606569988475380560", - "20849906320150495269383913" + "55197655763671939942952322", + "7723878606505970132542287", + "39111275931172017571792826" ], "fpReserves": [ - "15773733429003696388134091", - "15099041956234382441385939" + "2493799476370617519696290", + "807962974225432601258874" ], - "mAssetSupply": "114896064703948768686365809", - "LPTokenSupply": "30528715330847533690730488" + "mAssetSupply": "101656299002837924428240442", + "LPTokenSupply": "3198699443450001056240700" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "390255972202686775296", - "outputQty0": "394473263580099961184", - "outputQty": "395480598774907415638", - "swapFee1": "234153583321612065", - "swapFee2": "157789305432039984", + "type": "mint", + "inputIndex": 0, + "inputQty": "5604295536072467677184", + "outputQty0": "5542880758972157610428", + "outputQty": "5353628807195468543952", "mpReserves": [ - "69285273523100471866528698", - "24832740606569988475380560", - "20849906320150495269383913" + "55203260059208012410629506", + "7723878606505970132542287", + "39111275931172017571792826" ], "fpReserves": [ - "15773338955740116288172907", - "15099041956234382441385939" + "2499342357129589677306718", + "807962974225432601258874" ], - "mAssetSupply": "114895670388474494018444609", - "LPTokenSupply": "30528325098290689336116398" + "mAssetSupply": "101661841883596896585850870", + "LPTokenSupply": "3204053072257196524784652" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "792237887084687588851712", - "outputQty0": "789884003150489651855111", - "outputQty": "788753749051874046253857", - "swapFee": "624726785676903284445", + "type": "swap_fp_to_mp", + "inputQty": "193621341501056057344", + "outputIndex": 2, + "outputQty": "197120971528341181996", + "swapFee": "0", + "redemptionFee": "117614723424091644", "mpReserves": [ - "70077511410185159455380410", - "24832740606569988475380560", - "20849906320150495269383913" + "55203260059208012410629506", + "7723878606505970132542287", + "39111078810200489230610830" ], "fpReserves": [ - "16563222958890605940028018", - "14310288207182508395132082" + "2499146332590549524565301", + "808156595566933657316218" ], - "mAssetSupply": "115685554391624983670299720", - "LPTokenSupply": "30528387570969257026444842" + "mAssetSupply": "101661645976672579857201097", + "LPTokenSupply": "3204053072257196524784652" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "3130103719819834556416", - "outputQty0": "3137158460399116424863", - "outputQty": "3131583892222277604221", - "swapFee": "2480547052649394741", + "inputQty": "1455287123836570", + "outputQty0": "1543708528596146", + "outputQty": "1523568504669277", + "swapFee": "1192796077842", "mpReserves": [ - "70077511410185159455380410", - "24835870710289808309936976", - "20849906320150495269383913" + "55203260059208012410629506", + "7723878607961257256378857", + "39111078810200489230610830" ], "fpReserves": [ - "16566360117351005056452881", - "14307156623290286117527861" + "2499146334134258053161447", + "808156594043365152646941" ], - "mAssetSupply": "115688691550085382786724583", - "LPTokenSupply": "30528387819023962291384316" + "mAssetSupply": "101661645978216288385797243", + "LPTokenSupply": "3204053072257315804392436" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "21003983261658411008", - "outputQty0": "21051313756525489282", - "outputQty": "20806535359680573472", + "inputIndex": 0, + "inputQty": "47682435480163073392640", + "outputQty0": "47159593288365371572746", + "outputQty": "45546961757132693137584", "mpReserves": [ - "70077511410185159455380410", - "24835891714273069968347984", - "20849906320150495269383913" + "55250942494688175484022146", + "7723878607961257256378857", + "39111078810200489230610830" ], "fpReserves": [ - "16566381168664761581942163", - "14307156623290286117527861" + "2546305927422623424734193", + "808156594043365152646941" ], - "mAssetSupply": "115688712601399139312213865", - "LPTokenSupply": "30528408625559321971957788" + "mAssetSupply": "101708805571504653757369989", + "LPTokenSupply": "3249600034014448497530020" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1229964518153079004069888", - "outputQty0": "1232538320250248251219832", - "outputQty": "1229655747956848229306425", - "swapFee": "974454194492164772045", + "type": "swap_fp_to_mp", + "inputQty": "98440800921762402402304", + "outputIndex": 0, + "outputQty": "100587054707941681770502", + "swapFee": "0", + "redemptionFee": "59726694160560368115", + "mpReserves": [ + "55150355439980233802251644", + "7723878607961257256378857", + "39111078810200489230610830" + ], + "fpReserves": [ + "2446761437155022811208642", + "906597394965127555049245" + ], + "mAssetSupply": "101609320807931213704212553", + "LPTokenSupply": "3249600034014448497530020" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "904162143203769", + "outputQty0": "898590486396578", + "outputQty": "868492354734532", "mpReserves": [ - "70077511410185159455380410", - "26065856232426148972417872", - "20849906320150495269383913" + "55150355439980233802251644", + "7723878607961257256378857", + "39111078811104651373814599" ], "fpReserves": [ - "17798919488915009833161995", - "13077500875333437888221436" + "2446761438053613297605220", + "906597394965127555049245" ], - "mAssetSupply": "116921250921649387563433697", - "LPTokenSupply": "30528506070978771188434992" + "mAssetSupply": "101609320808829804190609131", + "LPTokenSupply": "3249600034882940852264552" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "2266269221202467850551296", - "outputQty0": "2270090274026585437836841", - "outputQty": "2260648248028201437283578", - "swapFee": "1793645805790416350499", + "inputQty": "8901603887932994560", + "outputQty0": "9441777145749172100", + "outputQty": "9342935763787261267", + "swapFee": "7300421107368597", "mpReserves": [ - "70077511410185159455380410", - "28332125453628616822969168", - "20849906320150495269383913" + "55150355439980233802251644", + "7723887509565145189373417", + "39111078811104651373814599" ], "fpReserves": [ - "20069009762941595270998836", - "10816852627305236450937858" + "2446770879830759046777320", + "906588052029363767787978" ], - "mAssetSupply": "119191341195675973001270538", - "LPTokenSupply": "30528685435559350230070041" + "mAssetSupply": "101609330250606949939781231", + "LPTokenSupply": "3249600035612982963001411" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "77273249854265575342080", "outputIndex": 2, - "inputQty": "149022626237752868864", - "outputQty0": "150928552728164919018", - "outputQty": "150270342597996772983", - "swapFee1": "89413575742651721", - "swapFee2": "60371421091265967", + "outputQty": "78390943627329627083033", + "swapFee": "0", + "redemptionFee": "46773332532601772489", "mpReserves": [ - "70077511410185159455380410", - "28332125453628616822969168", - "20849756049807897272610930" + "55150355439980233802251644", + "7723887509565145189373417", + "39032687867477321746731566" ], "fpReserves": [ - "20068858834388867106079818", - "10816852627305236450937858" + "2368815325609756092628983", + "983861301883629343130058" ], - "mAssetSupply": "119191190327494665927617487", - "LPTokenSupply": "30528536421874470051466349" + "mAssetSupply": "101531421469718479587405383", + "LPTokenSupply": "3249600035612982963001411" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "61303413186366881792", - "outputQty0": "61547305189834045474", - "outputQty": "61204783509976131984", - "swapFee": "48586899033635173", + "type": "redeem", + "outputIndex": 1, + "inputQty": "79123070051254936797184", + "outputQty0": "81768329447525281390480", + "outputQty": "77006311065296975681667", + "swapFee1": "47473842030752962078", + "swapFee2": "49060997668515168834", "mpReserves": [ - "70077511410185159455380410", - "28332125453628616822969168", - "20849817353221083639492722" + "55150355439980233802251644", + "7646881198499848213691750", + "39032687867477321746731566" ], "fpReserves": [ - "20068920381694056940125292", - "10816791422521726474805874" + "2287046996162230811238503", + "983861301883629343130058" ], - "mAssetSupply": "119191251874799855761662961", - "LPTokenSupply": "30528536426733159954829866" + "mAssetSupply": "101449702201268622821183737", + "LPTokenSupply": "3170481712945931101500434" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "43864386763668754268160", - "outputQty0": "43927861064693287402014", - "outputQty": "43346946736627051593657", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "49248203786757398528", + "outputQty0": "48703379751498654854", + "outputQty": "48304086811179778609", + "swapFee": "37681886820043618", "mpReserves": [ - "70077511410185159455380410", - "28375989840392285577237328", - "20849817353221083639492722" + "55150404688184020559650172", + "7646881198499848213691750", + "39032687867477321746731566" ], "fpReserves": [ - "20112848242758750227527306", - "10816791422521726474805874" + "2287095699541982309893357", + "983812997796818163351449" ], - "mAssetSupply": "119235179735864549049064975", - "LPTokenSupply": "30571883373469787006423523" + "mAssetSupply": "101449750904648374319838591", + "LPTokenSupply": "3170481716714119783504795" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "199816187025572669423616", - "outputQty0": "202369691752957074866894", - "outputQty": "202843526550420879860438", - "swapFee1": "119889712215343601654", - "swapFee2": "80947876701182829946", + "outputIndex": 2, + "inputQty": "444391302185749057634304", + "outputQty0": "459026168853630328779729", + "outputQty": "461589779687954662908510", + "swapFee1": "266634781311449434580", + "swapFee2": "275415701312178197267", "mpReserves": [ - "69874667883634738575519972", - "28375989840392285577237328", - "20849817353221083639492722" + "55150404688184020559650172", + "7646881198499848213691750", + "38571098087789367083823056" ], "fpReserves": [ - "19910478551005793152660412", - "10816791422521726474805874" + "1828069530688351981113628", + "983812997796818163351449" ], - "mAssetSupply": "119032890991988293157028027", - "LPTokenSupply": "30372079175415435871360072" + "mAssetSupply": "100991000151496056169256129", + "LPTokenSupply": "2726117078006501870813949" }, { "type": "swap_fp_to_mp", - "inputQty": "182503305156983911350272", - "outputIndex": 2, - "outputQty": "182536363020351837551850", + "inputQty": "81734381083253080064", + "outputIndex": 0, + "outputQty": "82998656119214201633", "swapFee": "0", - "redemptionFee": "73335851575470778398", + "redemptionFee": "49276344788533420", "mpReserves": [ - "69874667883634738575519972", - "28375989840392285577237328", - "20667280990200731801940872" + "55150321689527901345448539", + "7646881198499848213691750", + "38571098087789367083823056" ], "fpReserves": [ - "19727138922067116206663519", - "10999294727678710386156146" + "1827987403447037758745947", + "983894732177901416431513" ], - "mAssetSupply": "118849624698901191681809532", - "LPTokenSupply": "30372079175415435871360072" + "mAssetSupply": "100990918073531086735421868", + "LPTokenSupply": "2726117078006501870813949" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "768442317212558208", - "outputQty0": "769534051883991377", - "outputQty": "765508200229426112", - "swapFee": "607558593923027", + "type": "redeem", + "outputIndex": 2, + "inputQty": "119022122761493380333568", + "outputQty0": "122884470506671294920840", + "outputQty": "123559918735734068086785", + "swapFee1": "71413273656896028200", + "swapFee2": "73730682304002776952", "mpReserves": [ - "69874667883634738575519972", - "28375990608834602789795536", - "20667280990200731801940872" + "55150321689527901345448539", + "7646881198499848213691750", + "38447538169053633015736271" ], "fpReserves": [ - "19727139691601168090654896", - "10999293962170510156730034" + "1705102932940366463825107", + "983894732177901416431513" ], - "mAssetSupply": "118849625468435243565800909", - "LPTokenSupply": "30372079175476191730752374" + "mAssetSupply": "100868107333706719443277980", + "LPTokenSupply": "2607102096572374180083201" }, { - "type": "swap_fp_to_mp", - "inputQty": "4980458262976462848", + "type": "mint", + "inputIndex": 0, + "inputQty": "767144925423790951759872", + "outputQty0": "758555331319940174239237", + "outputQty": "733814102621212403432268", + "mpReserves": [ + "55917466614951692297208411", + "7646881198499848213691750", + "38447538169053633015736271" + ], + "fpReserves": [ + "2463658264260306638064344", + "983894732177901416431513" + ], + "mAssetSupply": "101626662665026659617517217", + "LPTokenSupply": "3340916199193586583515469" + }, + { + "type": "redeem", "outputIndex": 2, - "outputQty": "4980524399010787441", - "swapFee": "0", - "redemptionFee": "2001058177728982", + "inputQty": "195003306830750000611328", + "outputQty0": "201560737120294202546956", + "outputQty": "202648017141352067143032", + "swapFee1": "117001984098450000366", + "swapFee2": "120936442272176521528", "mpReserves": [ - "69874667883634738575519972", - "28375990608834602789795536", - "20667276009676332791153431" + "55917466614951692297208411", + "7646881198499848213691750", + "38244890151912280948593239" ], "fpReserves": [ - "19727134688955723768198377", - "10999298942628773133192882" + "2262097527140012435517388", + "983894732177901416431513" ], - "mAssetSupply": "118849620467790857421073372", - "LPTokenSupply": "30372079175476191730752374" + "mAssetSupply": "101425222864348637591491789", + "LPTokenSupply": "3145924592561246427904177" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3177582771235278848", - "outputQty0": "3190419357466220815", - "outputQty": "3148604499185398027", + "type": "redeem", + "outputIndex": 0, + "inputQty": "16545501847731206144", + "outputQty0": "17099344950260133490", + "outputQty": "17284515433862564740", + "swapFee1": "9927301108638723", + "swapFee2": "10259606970156080", "mpReserves": [ - "69874667883634738575519972", - "28375990608834602789795536", - "20667279187259104026432279" + "55917449330436258434643671", + "7646881198499848213691750", + "38244890151912280948593239" ], "fpReserves": [ - "19727137879375081234419192", - "10999298942628773133192882" + "2262080427795062175383898", + "983894732177901416431513" ], - "mAssetSupply": "118849623658210214887294187", - "LPTokenSupply": "30372082324080690916150401" + "mAssetSupply": "101425205775263294301514379", + "LPTokenSupply": "3145908048052128807561905" }, { "type": "swap_fp_to_mp", - "inputQty": "119616341949348424187904", - "outputIndex": 0, - "outputQty": "120422032744287940303535", + "inputQty": "615534477238494386192384", + "outputIndex": 2, + "outputQty": "620754539052875008960552", "swapFee": "0", - "redemptionFee": "48055766405472497001", + "redemptionFee": "370501483430130865638", "mpReserves": [ - "69754245850890450635216437", - "28375990608834602789795536", - "20667279187259104026432279" + "55917449330436258434643671", + "7646881198499848213691750", + "37624135612859405939632687" ], "fpReserves": [ - "19606998463361399991916023", - "11118915284578121557380786" + "1644577955411510732653084", + "1599429209416395802623897" ], - "mAssetSupply": "118729532297962939117288019", - "LPTokenSupply": "30372082324080690916150401" + "mAssetSupply": "100808073804363172989649203", + "LPTokenSupply": "3145908048052128807561905" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "107094782488896438272", - "outputQty0": "106801082937456726686", - "outputQty": "105407485812699937454", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "110763170387815638761472", + "outputQty0": "110125519861725494695633", + "outputQty": "109967229879572677116472", + "swapFee": "85419414277486661175", "mpReserves": [ - "69754352945672939531654709", - "28375990608834602789795536", - "20667279187259104026432279" + "55917449330436258434643671", + "7646881198499848213691750", + "37734898783247221578394159" ], "fpReserves": [ - "19607105264444337448642709", - "11118915284578121557380786" + "1754703475273236227348717", + "1489461979536823125507425" ], - "mAssetSupply": "118729639099045876574014705", - "LPTokenSupply": "30372187731566503616087855" + "mAssetSupply": "100918199324224898484344836", + "LPTokenSupply": "3145916589993556556228022" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "2038845036631898695139328", + "outputIndex": 0, + "hardLimitError": true }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "19679596355995759017984", - "outputQty0": "19707371264656392803390", - "outputQty": "19607196869754759930486", - "swapFee": "15560148125432946744", + "inputQty": "16620967931648948568064", + "outputQty0": "17642761999535480824219", + "outputQty": "17607989268456390044761", + "swapFee": "13679652041303067385", "mpReserves": [ - "69754352945672939531654709", - "28395670205190598548813520", - "20667279187259104026432279" + "55917449330436258434643671", + "7663502166431497162259814", + "37734898783247221578394159" ], "fpReserves": [ - "19626812635708993841446099", - "11099308087708366797450300" + "1772346237272771708172936", + "1471853990268366735462664" ], - "mAssetSupply": "118749346470310532966818095", - "LPTokenSupply": "30372189287581316159382529" + "mAssetSupply": "100935842086224433965169055", + "LPTokenSupply": "3145917957958760686534760" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1995799341236813115162624", - "outputQty0": "2003014594148387599864970", - "outputQty": "1989683809014726608670593", - "swapFee": "1581212047397804498732", + "type": "swap_fp_to_mp", + "inputQty": "245545834460824561778688", + "outputIndex": 0, + "outputQty": "248256207977192865313981", + "swapFee": "0", + "redemptionFee": "147360935748669235221", "mpReserves": [ - "69754352945672939531654709", - "28395670205190598548813520", - "22663078528495917141594903" + "55669193122459065569329690", + "7663502166431497162259814", + "37734898783247221578394159" ], "fpReserves": [ - "21629827229857381441311069", - "9109624278693640188779707" + "1526744677691656316136537", + "1717399824729191297241352" ], - "mAssetSupply": "120752361064458920566683065", - "LPTokenSupply": "30372347408786055939832402" + "mAssetSupply": "100690387887579067242367877", + "LPTokenSupply": "3145917957958760686534760" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "976642214931809249001472", - "outputQty0": "990028583845751239792980", - "outputQty": "986263484444873210229669", - "swapFee1": "585985328959085549400", - "swapFee2": "396011433538300495917", + "outputIndex": 0, + "inputQty": "297981615615405082017792", + "outputQty0": "306847770179379169308934", + "outputQty": "310142415412869317985163", + "swapFee1": "178788969369243049210", + "swapFee2": "184108662107627501585", "mpReserves": [ - "69754352945672939531654709", - "28395670205190598548813520", - "21676815044051043931365234" + "55359050707046196251344527", + "7663502166431497162259814", + "37734898783247221578394159" ], "fpReserves": [ - "20639798646011630201518089", - "9109624278693640188779707" + "1219896907512277146827603", + "1717399824729191297241352" ], - "mAssetSupply": "119762728492046707627386002", - "LPTokenSupply": "29395763792387142599385870" + "mAssetSupply": "100383724226061795700560528", + "LPTokenSupply": "2847954221240292528821889" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "4150656377325360128", - "outputQty0": "4156722300215469678", - "outputQty": "4124067508296134523", - "swapFee": "3278705913462122", + "type": "redeem", + "outputIndex": 0, + "inputQty": "67052500394906482638848", + "outputQty0": "69009505486918984792971", + "outputQty": "69747102047407657240128", + "swapFee1": "40231500236943889583", + "swapFee2": "41405703292151390875", "mpReserves": [ - "69754352945672939531654709", - "28395674355846975874173648", - "21676815044051043931365234" + "55289303604998788594104399", + "7663502166431497162259814", + "37734898783247221578394159" ], "fpReserves": [ - "20639802802733930416987767", - "9109620154626131892645184" + "1150887402025358162034632", + "1717399824729191297241352" ], - "mAssetSupply": "119762732648769007842855680", - "LPTokenSupply": "29395763792715013190732082" + "mAssetSupply": "100314756126278168867158432", + "LPTokenSupply": "2780905743995409740571999" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "7665105494500107616256", - "outputQty0": "7676302010185647382523", - "outputQty": "7568558802239514183787", + "inputIndex": 2, + "inputQty": "145308749144197022351360", + "outputQty0": "144462433963831731204684", + "outputQty": "140260388836634124029782", "mpReserves": [ - "69754352945672939531654709", - "28403339461341475981789904", - "21676815044051043931365234" + "55289303604998788594104399", + "7663502166431497162259814", + "37880207532391418600745519" ], "fpReserves": [ - "20647479104744116064370290", - "9109620154626131892645184" + "1295349835989189893239316", + "1717399824729191297241352" ], - "mAssetSupply": "119770408950779193490238203", - "LPTokenSupply": "29403332351517252704915869" + "mAssetSupply": "100459218560242000598363116", + "LPTokenSupply": "2921166132832043864601781" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1108405178574949580800", - "outputQty0": "1123510239400251574878", - "outputQty": "1121423451088627064039", - "swapFee1": "665043107144969748", - "swapFee2": "449404095760100629", + "type": "swap_fp_to_mp", + "inputQty": "664125076845487194112", + "outputIndex": 2, + "outputQty": "666340459962417739871", + "swapFee": "0", + "redemptionFee": "397705486623139998", "mpReserves": [ - "69754352945672939531654709", - "28402218037890387354725865", - "21676815044051043931365234" + "55289303604998788594104399", + "7663502166431497162259814", + "37879541191931456183005648" ], "fpReserves": [ - "20646355594504715812795412", - "9109620154626131892645184" + "1294686993511484659908959", + "1718063949806036784435464" ], - "mAssetSupply": "119769285889943888998763954", - "LPTokenSupply": "29402224012842988469832043" + "mAssetSupply": "100458556115469781988172757", + "LPTokenSupply": "2921166132832043864601781" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "19951813437160189952", - "outputQty0": "20223709757081334136", - "outputQty": "20268987930496380837", - "swapFee1": "11971088062296113", - "swapFee2": "8089483902832533", + "type": "mint", + "inputIndex": 2, + "inputQty": "14935658485664464", + "outputQty0": "14848340287564726", + "outputQty": "14412864813198478", "mpReserves": [ - "69754332676685009035273872", - "28402218037890387354725865", - "21676815044051043931365234" + "55289303604998788594104399", + "7663502166431497162259814", + "37879541206867114668670112" ], "fpReserves": [ - "20646335370794958731461276", - "9109620154626131892645184" + "1294687008359824947473685", + "1718063949806036784435464" ], - "mAssetSupply": "119769265674323615820262351", - "LPTokenSupply": "29402204062226660115871702" + "mAssetSupply": "100458556130318122275737483", + "LPTokenSupply": "2921166147244908677800259" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "202367723436532301824000", - "outputQty0": "201833737818793988940204", - "outputQty": "198996776613639485337772", + "inputIndex": 1, + "inputQty": "16774387682617212928", + "outputQty0": "17790337415218934975", + "outputQty": "17268577891807925865", "mpReserves": [ - "69956700400121541337097872", - "28402218037890387354725865", - "21676815044051043931365234" + "55289303604998788594104399", + "7663518940819179779472742", + "37879541206867114668670112" ], "fpReserves": [ - "20848169108613752720401480", - "9109620154626131892645184" + "1294704798697240166408660", + "1718063949806036784435464" ], - "mAssetSupply": "119971099412142409809202555", - "LPTokenSupply": "29601200838840299601209474" + "mAssetSupply": "100458573920655537494672458", + "LPTokenSupply": "2921183415822800485726124" }, { - "type": "swap_fp_to_mp", - "inputQty": "82797025342647025664", - "outputIndex": 0, - "outputQty": "83584663353973196044", - "swapFee": "0", - "redemptionFee": "33358796065495028", + "type": "redeem", + "outputIndex": 1, + "inputQty": "26175332422488322048", + "outputQty0": "26950023970049537637", + "outputQty": "25395745394834043139", + "swapFee1": "15705199453492993", + "swapFee2": "16170014382029722", + "mpReserves": [ + "55289303604998788594104399", + "7663493545073784945429603", + "37879541206867114668670112" + ], + "fpReserves": [ + "1294677848673270116871023", + "1718063949806036784435464" + ], + "mAssetSupply": "100458546986801581827164543", + "LPTokenSupply": "2921157242060897942753375" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "122514757009810141478912", + "outputQty0": "126113279953803335927237", + "outputQty": "118735034463773456766451", + "swapFee1": "73508854205886084887", + "swapFee2": "75667967972282001556", "mpReserves": [ - "69956616815458187363901828", - "28402218037890387354725865", - "21676815044051043931365234" + "55289303604998788594104399", + "7544758510610011488663152", + "37879541206867114668670112" ], "fpReserves": [ - "20848085711623588982830012", - "9109702951651474539670848" + "1168564568719466780943786", + "1718063949806036784435464" ], - "mAssetSupply": "119971016048511042137126115", - "LPTokenSupply": "29601200838840299601209474" + "mAssetSupply": "100332509374815750773238862", + "LPTokenSupply": "2798649835936508389882951" }, { "type": "mint", "inputIndex": 2, - "inputQty": "15828271741871402778624", - "outputQty0": "15885567816711490599210", - "outputQty": "15661947203941721143506", + "inputQty": "1421196699726034688", + "outputQty0": "1412715116157387562", + "outputQty": "1371870385270627709", "mpReserves": [ - "69956616815458187363901828", - "28402218037890387354725865", - "21692643315792915334143858" + "55289303604998788594104399", + "7544758510610011488663152", + "37879542628063814394704800" ], "fpReserves": [ - "20863971279440300473429222", - "9109702951651474539670848" + "1168565981434582938331348", + "1718063949806036784435464" ], - "mAssetSupply": "119986901616327753627725325", - "LPTokenSupply": "29616862786044241322352980" + "mAssetSupply": "100332510787530866930626424", + "LPTokenSupply": "2798651207806893660510660" }, { "type": "swap_fp_to_mp", - "inputQty": "13394281895832602624", + "inputQty": "2367708508934724648960", "outputIndex": 1, - "outputQty": "13466238306211126166", + "outputQty": "2221087708620824241692", "swapFee": "0", - "redemptionFee": "5396590417086277", + "redemptionFee": "1416757471458780384", "mpReserves": [ - "69956616815458187363901828", - "28402204571652081143599699", - "21692643315792915334143858" + "55289303604998788594104399", + "7542537422901390664421460", + "37879542628063814394704800" ], "fpReserves": [ - "20863957787964257757735240", - "9109716345933370372273472" + "1166204718982151637691124", + "1720431658314971509084424" ], - "mAssetSupply": "119986888130248301329117620", - "LPTokenSupply": "29616862786044241322352980" + "mAssetSupply": "100330150941835907088766584", + "LPTokenSupply": "2798651207806893660510660" }, { "type": "mint", "inputIndex": 0, - "inputQty": "64859586838768216178688", - "outputQty0": "64688057466882814764373", - "outputQty": "63776942087720361613437", + "inputQty": "1375984327715043078569984", + "outputQty0": "1360153857525865071362222", + "outputQty": "1318708600611901789324605", "mpReserves": [ - "70021476402296955580080516", - "28402204571652081143599699", - "21692643315792915334143858" + "56665287932713831672674383", + "7542537422901390664421460", + "37879542628063814394704800" ], "fpReserves": [ - "20928645845431140572499613", - "9109716345933370372273472" + "2526358576508016709053346", + "1720431658314971509084424" ], - "mAssetSupply": "120051576187715184143881993", - "LPTokenSupply": "29680639728131961683966417" + "mAssetSupply": "101690304799361772160128806", + "LPTokenSupply": "4117359808418795449835265" }, { - "type": "swap_fp_to_mp", - "inputQty": "276287316532464365600768", - "outputIndex": 2, - "outputQty": "277093459851173266999393", - "swapFee": "0", - "redemptionFee": "111289645561254022137", + "type": "redeem", + "outputIndex": 1, + "inputQty": "194797599764379724677120", + "outputQty0": "200994651702172196138269", + "outputQty": "188398264143423199829839", + "swapFee1": "116878559858627834806", + "swapFee2": "120596791021303317682", "mpReserves": [ - "70021476402296955580080516", - "28402204571652081143599699", - "21415549855941742067144465" + "56665287932713831672674383", + "7354139158757967464591621", + "37879542628063814394704800" ], "fpReserves": [ - "20650421731528005517155959", - "9386003662465834737874240" + "2325363924805844512915077", + "1720431658314971509084424" ], - "mAssetSupply": "119773463363457610342560476", - "LPTokenSupply": "29680639728131961683966417" + "mAssetSupply": "101489430744450621267308219", + "LPTokenSupply": "3922573896510401587941625" }, { "type": "swap_fp_to_mp", - "inputQty": "90904539227925840", + "inputQty": "51118697713392", "outputIndex": 0, - "outputQty": "91725039091559105", + "outputQty": "51814632573711", "swapFee": "0", - "redemptionFee": "36606508561830", + "redemptionFee": "30734811766", "mpReserves": [ - "70021476310571916488521411", - "28402204571652081143599699", - "21415549855941742067144465" + "56665287932662017040100672", + "7354139158757967464591621", + "37879542628063814394704800" ], "fpReserves": [ - "20650421640011734112579720", - "9386003753370373965800080" + "2325363924754619826637402", + "1720431658366090206797816" ], - "mAssetSupply": "119773463271977945446546067", - "LPTokenSupply": "29680639728131961683966417" + "mAssetSupply": "101489430744399427315842310", + "LPTokenSupply": "3922573896510401587941625" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "887076498297861439488", - "outputQty0": "888374539653023052596", - "outputQty": "876009427637599172602", + "type": "swap_fp_to_mp", + "inputQty": "19772866402794118053888", + "outputIndex": 0, + "outputQty": "20040530329271187792242", + "swapFee": "0", + "redemptionFee": "11887444204243553881", "mpReserves": [ - "70021476310571916488521411", - "28403091648150379005039187", - "21415549855941742067144465" + "56645247402332745852308430", + "7354139158757967464591621", + "37879542628063814394704800" ], "fpReserves": [ - "20651310014551387135632316", - "9386003753370373965800080" + "2305551517747547236834524", + "1740204524768884324851704" ], - "mAssetSupply": "119774351646517598469598663", - "LPTokenSupply": "29681515737559599283139019" + "mAssetSupply": "101469630224836558969593313", + "LPTokenSupply": "3922573896510401587941625" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "293893013892420894720", - "outputQty0": "297862586036883202491", - "outputQty": "298542053733873985416", - "swapFee1": "176335808335452536", - "swapFee2": "119145034414753280", - "mpReserves": [ - "70021177768518182614535995", - "28403091648150379005039187", - "21415549855941742067144465" - ], - "fpReserves": [ - "20651012151965350252429825", - "9386003753370373965800080" - ], - "mAssetSupply": "119774053903076596001149452", - "LPTokenSupply": "29681221862179287695789552" + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "1568108906354105680658432", + "hardLimitError": true }, { "type": "mint", "inputIndex": 0, - "inputQty": "1226131247536412557312", - "outputQty0": "1222851261680636201795", - "outputQty": "1205830451080561157917", + "inputQty": "138015914089007143714816", + "outputQty0": "136360878650321231806123", + "outputQty": "132087552288887119893094", "mpReserves": [ - "70022403899765719027093307", - "28403091648150379005039187", - "21415549855941742067144465" + "56783263316421752996023246", + "7354139158757967464591621", + "37879542628063814394704800" ], "fpReserves": [ - "20652235003227030888631620", - "9386003753370373965800080" + "2441912396397868468640647", + "1740204524768884324851704" ], - "mAssetSupply": "119775276754338276637351247", - "LPTokenSupply": "29682427692630368256947469" + "mAssetSupply": "101605991103486880201399436", + "LPTokenSupply": "4054661448799288707834719" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3852486443843880448", - "outputQty0": "3842180641051524048", - "outputQty": "3788701057775617894", + "type": "redeem", + "outputIndex": 0, + "inputQty": "28784840225531994570752", + "outputQty0": "29700356008259565208911", + "outputQty": "30043225327347497129558", + "swapFee1": "17270904135319196742", + "swapFee2": "17820213604955739125", "mpReserves": [ - "70022407752252162870973755", - "28403091648150379005039187", - "21415549855941742067144465" + "56753220091094405498893688", + "7354139158757967464591621", + "37879542628063814394704800" ], "fpReserves": [ - "20652238845407671940155668", - "9386003753370373965800080" + "2412212040389608903431736", + "1740204524768884324851704" ], - "mAssetSupply": "119775280596518917688875295", - "LPTokenSupply": "29682431481331426032565363" + "mAssetSupply": "101576308567692225591929650", + "LPTokenSupply": "4025878335664170245183641" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "7770579406444876005376", - "outputQty0": "7875531250867656784743", - "outputQty": "7860872706663808634697", - "swapFee1": "4662347643866925603", - "swapFee2": "3150212500347062713", + "outputIndex": 0, + "inputQty": "22212245079193038848", + "outputQty0": "22918360534268634065", + "outputQty": "23182844706928726204", + "swapFee1": "13327347047515823", + "swapFee2": "13751016320561180", "mpReserves": [ - "70022407752252162870973755", - "28395230775443715196404490", - "21415549855941742067144465" + "56753196908249698570167484", + "7354139158757967464591621", + "37879542628063814394704800" ], "fpReserves": [ - "20644363314156804283370925", - "9386003753370373965800080" + "2412189122029074634797671", + "1740204524768884324851704" ], - "mAssetSupply": "119767408215480550379153265", - "LPTokenSupply": "29674661368159745543252547" + "mAssetSupply": "101576285663082707643856765", + "LPTokenSupply": "4025856124751825756896375" }, { - "type": "swap_fp_to_mp", - "inputQty": "29387699161646453751808", + "type": "redeem", "outputIndex": 1, - "outputQty": "29529328448309121595709", - "swapFee": "0", - "redemptionFee": "11833799407722343639", + "inputQty": "7861892754586075136", + "outputQty0": "8111818002522563771", + "outputQty": "7590567785797821915", + "swapFee1": "4717135652751645", + "swapFee2": "4867090801513538", "mpReserves": [ - "70022407752252162870973755", - "28365701446995406074808781", - "21415549855941742067144465" + "56753196908249698570167484", + "7354131568190181666769706", + "37879542628063814394704800" ], "fpReserves": [ - "20614778815637498424273331", - "9415391452532020419551888" + "2412181010211072112233900", + "1740204524768884324851704" ], - "mAssetSupply": "119737835550760652242399310", - "LPTokenSupply": "29674661368159745543252547" + "mAssetSupply": "101576277556131795922806532", + "LPTokenSupply": "4025848263330784736096403" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "128518138550479560376320", - "outputQty0": "128994547175445765342157", - "outputQty": "127199963597581966404438", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "598053449557262204928", + "outputQty0": "590875696959919968341", + "outputQty": "589069339251741260336", + "swapFee": "457861588458031538", "mpReserves": [ - "70022407752252162870973755", - "28365701446995406074808781", - "21544067994492221627520785" + "56753794961699255832372412", + "7354131568190181666769706", + "37879542628063814394704800" ], "fpReserves": [ - "20743773362812944189615488", - "9415391452532020419551888" + "2412771885908032032202241", + "1739615455429632583591368" ], - "mAssetSupply": "119866830097936098007741467", - "LPTokenSupply": "29801861331757327509656985" + "mAssetSupply": "101576868431828755842774873", + "LPTokenSupply": "4025848309116943581899556" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "427554613699120572923904", - "outputQty0": "429092241677364546775180", - "outputQty": "423100056566777326503357", + "type": "swap_fp_to_mp", + "inputQty": "45700810043895402463232", + "outputIndex": 2, + "outputQty": "46048159169124774567892", + "swapFee": "0", + "redemptionFee": "27478009248052766666", "mpReserves": [ - "70022407752252162870973755", - "28365701446995406074808781", - "21971622608191342200444689" + "56753794961699255832372412", + "7354131568190181666769706", + "37833494468894689620136908" ], "fpReserves": [ - "21172865604490308736390668", - "9415391452532020419551888" + "2366975203827944087757310", + "1785316265473527986054600" ], - "mAssetSupply": "120295922339613462554516647", - "LPTokenSupply": "30224961388324104836160342" + "mAssetSupply": "101531099227757915951096608", + "LPTokenSupply": "4025848309116943581899556" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "35350017314158985347072", - "outputQty0": "35257341639952033492492", - "outputQty": "34763437764218917879525", + "inputIndex": 1, + "inputQty": "764696489644355613622272", + "outputQty0": "811862150034434511564376", + "outputQty": "786096145002564324995861", "mpReserves": [ - "70057757769566321856320827", - "28365701446995406074808781", - "21971622608191342200444689" + "56753794961699255832372412", + "8118828057834537280391978", + "37833494468894689620136908" ], "fpReserves": [ - "21208122946130260769883160", - "9415391452532020419551888" + "3178837353862378599321686", + "1785316265473527986054600" ], - "mAssetSupply": "120331179681253414588009139", - "LPTokenSupply": "30259724826088323754039867" + "mAssetSupply": "102342961377792350462660984", + "LPTokenSupply": "4811944454119507906895417" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1129041270941539", - "outputQty0": "1144398999109068", - "outputQty": "1146949285945030", - "swapFee1": "677424762564", - "swapFee2": "457759599643", + "type": "swap_fp_to_mp", + "inputQty": "1095735095768052691632128", + "outputIndex": 1, + "outputQty": "1030169497817803052431968", + "swapFee": "0", + "redemptionFee": "658022003528034098746", "mpReserves": [ - "70057757768419372570375797", - "28365701446995406074808781", - "21971622608191342200444689" + "56753794961699255832372412", + "7088658560016734227960010", + "37833494468894689620136908" ], "fpReserves": [ - "21208122944985861770774092", - "9415391452532020419551888" + "2082134014648988434743787", + "2881051361241580677686728" ], - "mAssetSupply": "120331179680109473348499714", - "LPTokenSupply": "30259724824959350225574584" + "mAssetSupply": "101246916060582488332181831", + "LPTokenSupply": "4811944454119507906895417" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "99231995713971060736", - "outputQty0": "100581793073714822839", - "outputQty": "100390917843108116305", - "swapFee1": "59539197428382636", - "swapFee2": "40232717229485929", + "type": "swap_fp_to_mp", + "inputQty": "470489204506824", + "outputIndex": 2, + "outputQty": "472149735864868", + "swapFee": "0", + "redemptionFee": "281660210978", "mpReserves": [ - "70057757768419372570375797", - "28365601056077562966692476", - "21971622608191342200444689" + "56753794961699255832372412", + "7088658560016734227960010", + "37833494468422539884272040" ], "fpReserves": [ - "21208022363192788055951253", - "9415391452532020419551888" + "2082134014179554749779619", + "2881051361712069882193552" ], - "mAssetSupply": "120331079138549116863162804", - "LPTokenSupply": "30259625598917555997352111" + "mAssetSupply": "101246916060113336307428641", + "LPTokenSupply": "4811944454119507906895417" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "858743848122625325793280", - "outputQty0": "859963971148432450320890", - "outputQty": "847844996159585680432139", + "type": "redeem", + "outputIndex": 0, + "inputQty": "73207836341139709952", + "outputQty0": "75365195163692554262", + "outputQty": "76269793764306078965", + "swapFee1": "43924701804683825", + "swapFee2": "45219117098215532", "mpReserves": [ - "70057757768419372570375797", - "29224344904200188292485756", - "21971622608191342200444689" + "56753718691905491526293447", + "7088658560016734227960010", + "37833494468422539884272040" ], "fpReserves": [ - "22067986334341220506272143", - "9415391452532020419551888" + "2082058648984391057225357", + "2881051361712069882193552" ], - "mAssetSupply": "121191043109697549313483694", - "LPTokenSupply": "31107470595077141677784250" + "mAssetSupply": "101246840740137289713089911", + "LPTokenSupply": "4811871250675636947653847" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "18398094638687961088", - "outputQty0": "18350783742130672773", - "outputQty": "18090702659544217849", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1375351661768350892032", + "outputQty0": "1475826420200919359002", + "outputQty": "1477955113367066210721", + "swapFee": "1146174432863737073", "mpReserves": [ - "70057776166514011258336885", - "29224344904200188292485756", - "21971622608191342200444689" + "56753718691905491526293447", + "7090033911678502578852042", + "37833494468422539884272040" ], "fpReserves": [ - "22068004685124962636944916", - "9415391452532020419551888" + "2083534475404591976584359", + "2879573406598702815982831" ], - "mAssetSupply": "121191061460481291444156467", - "LPTokenSupply": "31107488685779801222002099" + "mAssetSupply": "101248316566557490632448913", + "LPTokenSupply": "4811871365293080234027554" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "27037197572300968", - "outputQty0": "26967671116710235", - "outputQty": "26585464991656742", - "mpReserves": [ - "70057776193551208830637853", - "29224344904200188292485756", - "21971622608191342200444689" - ], - "fpReserves": [ - "22068004712092633753655151", - "9415391452532020419551888" - ], - "mAssetSupply": "121191061487448962560866702", - "LPTokenSupply": "31107488712365266213658841" + "type": "swap_fp_to_mp", + "inputQty": "1535575277319697672962048", + "outputIndex": 2, + "hardLimitError": true }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1770230025258664783249408", - "outputQty0": "1765591351301197008949070", - "outputQty": "1740279422960625879471838", + "type": "swap_fp_to_mp", + "inputQty": "47262075231165409656832", + "outputIndex": 1, + "outputQty": "43895469813413781107649", + "swapFee": "0", + "redemptionFee": "28289682710023638113", "mpReserves": [ - "71828006218809873613887261", - "29224344904200188292485756", - "21971622608191342200444689" + "56753718691905491526293447", + "7046138441865088797744393", + "37833494468422539884272040" ], "fpReserves": [ - "23833596063393830762604221", - "9415391452532020419551888" + "2036385004221219246394959", + "2926835481829868225639663" ], - "mAssetSupply": "122956652838750159569815772", - "LPTokenSupply": "32847768135325892093130679" + "mAssetSupply": "101201195385056827925897626", + "LPTokenSupply": "4811871365293080234027554" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "69379384465066945413120", - "outputQty0": "70357404284179707681496", - "outputQty": "70066376565106457777764", - "swapFee1": "41627630679040167247", - "swapFee2": "28142961713671883072", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "712727043801202819072", + "outputQty0": "708166295603751553138", + "outputQty": "709394586879563025309", + "swapFee": "550078121176295669", "mpReserves": [ - "71828006218809873613887261", - "29224344904200188292485756", - "21901556231626235742666925" + "56753718691905491526293447", + "7046138441865088797744393", + "37834207195466341087091112" ], "fpReserves": [ - "23763238659109651054922725", - "9415391452532020419551888" + "2037093170516822997948097", + "2926126087242988662614354" ], - "mAssetSupply": "122886323577427693534017348", - "LPTokenSupply": "32778392913623893051734283" + "mAssetSupply": "101201903551352431677450764", + "LPTokenSupply": "4811871420300892351657120" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "582431164816753360896", - "outputQty0": "584624545853448028353", - "outputQty": "576155015848834466359", + "type": "swap_fp_to_mp", + "inputQty": "76648845580504561352704", + "outputIndex": 2, + "outputQty": "76880951196021472544524", + "swapFee": "0", + "redemptionFee": "45861494887367263484", "mpReserves": [ - "71828006218809873613887261", - "29224344904200188292485756", - "21902138662791052496027821" + "56753718691905491526293447", + "7046138441865088797744393", + "37757326244270319614546588" ], "fpReserves": [ - "23763823283655504502951078", - "9415391452532020419551888" + "1960657345704544225473503", + "3002774932823493223967058" ], - "mAssetSupply": "122886908201973546982045701", - "LPTokenSupply": "32778969068639741886200642" + "mAssetSupply": "101125513588035040272239654", + "LPTokenSupply": "4811871420300892351657120" }, { "type": "swap_fp_to_mp", - "inputQty": "924667389642960954982400", - "outputIndex": 2, - "outputQty": "927723455495805013215715", + "inputQty": "5285656389572968448", + "outputIndex": 1, + "outputQty": "4904285769123846621", "swapFee": "0", - "redemptionFee": "372708231701416943857", + "redemptionFee": "3161764351291489", "mpReserves": [ - "71828006218809873613887261", - "29224344904200188292485756", - "20974415207295247482812106" + "56753718691905491526293447", + "7046133537579319673897772", + "37757326244270319614546588" ], "fpReserves": [ - "22832052704401962143308293", - "10340058842174981374534288" + "1960652076097292072991549", + "3002780218479882796935506" ], - "mAssetSupply": "121955510330951706039346773", - "LPTokenSupply": "32778969068639741886200642" + "mAssetSupply": "101125508321589552471049189", + "LPTokenSupply": "4811871420300892351657120" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "30151328280339512", - "outputQty0": "30559053902023666", - "outputQty": "30420167788108880", - "swapFee1": "18090796968203", - "swapFee2": "12223621560809", + "outputIndex": 1, + "inputQty": "27597925290729640", + "outputQty0": "28397843276201620", + "outputQty": "26429129423988426", + "swapFee1": "16558755174437", + "swapFee2": "17038705965720", "mpReserves": [ - "71828006218809873613887261", - "29224344904200188292485756", - "20974415176875079694703226" + "56753718691905491526293447", + "7046133511150190249909346", + "37757326244270319614546588" ], "fpReserves": [ - "22832052673842908241284627", - "10340058842174981374534288" + "1960652047699448796789929", + "3002780218479882796935506" ], - "mAssetSupply": "121955510300404875758883916", - "LPTokenSupply": "32778969038490222685557950" + "mAssetSupply": "101125508293208747900813289", + "LPTokenSupply": "4811871392704622936444923" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "51712843898149296", - "outputQty0": "51569282140505075", - "outputQty": "51181238211809106", - "swapFee": "40680563752146", + "inputQty": "34959596705844664", + "outputQty0": "34521414949787698", + "outputQty": "34598852899699774", + "swapFee": "26823101734452", "mpReserves": [ - "71828006270522717512036557", - "29224344904200188292485756", - "20974415176875079694703226" + "56753718726865088232138111", + "7046133511150190249909346", + "37757326244270319614546588" ], "fpReserves": [ - "22832052725412190381789702", - "10340058790993743162725182" + "1960652082220863746577627", + "3002780183881029897235732" ], - "mAssetSupply": "121955510351974157899388991", - "LPTokenSupply": "32778969038494290741933164" + "mAssetSupply": "101125508327730162850600987", + "LPTokenSupply": "4811871392707305246618368" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "26093179081313006649344", - "outputQty0": "26020721385471936603806", - "outputQty": "25658084807422410699368", + "type": "redeem", + "outputIndex": 0, + "inputQty": "37923161738717228433408", + "outputQty0": "39020402217477373559142", + "outputQty": "39491767096778321436116", + "swapFee1": "22753897043230337060", + "swapFee2": "23412241330486424135", "mpReserves": [ - "71854099449604030518685901", - "29224344904200188292485756", - "20974415176875079694703226" + "56714226959768309910701995", + "7046133511150190249909346", + "37757326244270319614546588" ], "fpReserves": [ - "22858073446797662318393508", - "10340058790993743162725182" + "1921631680003386373018485", + "3002780183881029897235732" ], - "mAssetSupply": "121981531073359629835992797", - "LPTokenSupply": "32804627123301713152632532" + "mAssetSupply": "101086511337754015963465980", + "LPTokenSupply": "4773950506358292341218666" }, { - "type": "swap_fp_to_mp", - "inputQty": "33114387539806547607552", - "outputIndex": 1, - "outputQty": "33278288364559700988632", - "swapFee": "0", - "redemptionFee": "13335302646380426667", + "type": "mint", + "inputIndex": 0, + "inputQty": "422388734135332962304", + "outputQty0": "417099017105316267624", + "outputQty": "405145733497314769922", "mpReserves": [ - "71854099449604030518685901", - "29191066615835628591497124", - "20974415176875079694703226" + "56714649348502445243664299", + "7046133511150190249909346", + "37757326244270319614546588" ], "fpReserves": [ - "22824735190181711251725289", - "10373173178533549710332734" + "1922048779020491689286109", + "3002780183881029897235732" ], - "mAssetSupply": "121948206152046325149751245", - "LPTokenSupply": "32804627123301713152632532" + "mAssetSupply": "101086928436771121279733604", + "LPTokenSupply": "4774355652091789655988588" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5878626986329051758592", - "outputQty0": "5862285471139104425667", - "outputQty": "5780677111163681023144", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "3004967521947886080", + "outputQty0": "3226663378304302423", + "outputQty": "3234432969562539687", + "swapFee": "2507353162599395", "mpReserves": [ - "71859978076590359570444493", - "29191066615835628591497124", - "20974415176875079694703226" + "56714649348502445243664299", + "7046136516117712197795426", + "37757326244270319614546588" ], "fpReserves": [ - "22830597475652850356150956", - "10373173178533549710332734" + "1922052005683869993588532", + "3002776949448060334696045" ], - "mAssetSupply": "121954068437517464254176912", - "LPTokenSupply": "32810407800412876833655676" + "mAssetSupply": "101086931663434499584036027", + "LPTokenSupply": "4774355652342524972248527" }, { - "type": "swap_fp_to_mp", - "inputQty": "23432577361648914432", - "outputIndex": 2, - "outputQty": "23483113467316455369", - "swapFee": "0", - "redemptionFee": "9436148857300560", + "type": "mint", + "inputIndex": 0, + "inputQty": "1347728873657900204032", + "outputQty0": "1330850493992922072023", + "outputQty": "1292707784208058626237", "mpReserves": [ - "71859978076590359570444493", - "29191066615835628591497124", - "20974391693761612378247857" + "56715997077376103143868331", + "7046136516117712197795426", + "37757326244270319614546588" ], "fpReserves": [ - "22830573885280707104749913", - "10373196611110911359247166" + "1923382856177862915660555", + "3002776949448060334696045" ], - "mAssetSupply": "121954044856581469860076429", - "LPTokenSupply": "32810407800412876833655676" + "mAssetSupply": "101088262513928492506108050", + "LPTokenSupply": "4775648360126733030874764" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "132296189247034293747712", - "outputQty0": "132480408513374052104535", - "outputQty": "131473420914946985243524", - "swapFee": "104507671530582997246", + "inputIndex": 2, + "inputQty": "5349939790033009664", + "outputQty0": "5315826447034428818", + "outputQty": "5328595670862209099", + "swapFee": "4130770891355375", "mpReserves": [ - "71859978076590359570444493", - "29323362805082662885244836", - "20974391693761612378247857" + "56715997077376103143868331", + "7046136516117712197795426", + "37757331594210109647556252" ], "fpReserves": [ - "22963054293794081156854448", - "10241723190195964374003642" + "1923388172004309950089373", + "3002771620852389472486946" ], - "mAssetSupply": "122086525265094843912180964", - "LPTokenSupply": "32810418251180029891955400" + "mAssetSupply": "101088267829754939540536868", + "LPTokenSupply": "4775648360539810120010301" }, { "type": "swap_fp_to_mp", - "inputQty": "231705604901024997310464", + "inputQty": "21034005750320069607424", "outputIndex": 1, - "outputQty": "232852920488487486599011", + "outputQty": "19509361746212384882417", "swapFee": "0", - "redemptionFee": "93309060563596216801", + "redemptionFee": "12579142516355672179", "mpReserves": [ - "71859978076590359570444493", - "29090509884594175398645825", - "20974391693761612378247857" + "56715997077376103143868331", + "7026627154371499812913009", + "37757331594210109647556252" ], "fpReserves": [ - "22729781642385090614850207", - "10473428795096989371314106" + "1902422934477050496457532", + "3023805626602709542094370" ], - "mAssetSupply": "121853345922746416966393524", - "LPTokenSupply": "32810418251180029891955400" + "mAssetSupply": "101067315171370196442577206", + "LPTokenSupply": "4775648360539810120010301" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "5933861022340632576", - "outputQty0": "6013707626186753218", - "outputQty": "6028097131670969409", - "swapFee1": "3560316613404379", - "swapFee2": "2405483050474701", + "type": "mint", + "inputIndex": 2, + "inputQty": "4054697044978850856960", + "outputQty0": "4028746667971748840708", + "outputQty": "3913613570065743224182", "mpReserves": [ - "71859972048493227899475084", - "29090509884594175398645825", - "20974391693761612378247857" + "56715997077376103143868331", + "7026627154371499812913009", + "37761386291255088498413212" ], "fpReserves": [ - "22729775628677464428096989", - "10473428795096989371314106" + "1906451681145022245298240", + "3023805626602709542094370" ], - "mAssetSupply": "121853339911444273830115007", - "LPTokenSupply": "32810412317675039212663261" + "mAssetSupply": "101071343918038168191417914", + "LPTokenSupply": "4779561974109875863234483" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "82505216278637915930624", - "outputQty0": "82846932001166855316660", - "outputQty": "82235510610490396994692", - "swapFee": "65357842849208167584", + "type": "redeem", + "outputIndex": 0, + "inputQty": "451184822676784821567488", + "outputQty0": "463814220630166034303393", + "outputQty": "469400885592599263558750", + "swapFee1": "270710893606070892940", + "swapFee2": "278288532378099620582", "mpReserves": [ - "71859972048493227899475084", - "29090509884594175398645825", - "21056896910040250294178481" + "56246596191783503880309581", + "7026627154371499812913009", + "37761386291255088498413212" ], "fpReserves": [ - "22812622560678631283413649", - "10391193284486498974319414" + "1442637460514856210994847", + "3023805626602709542094370" ], - "mAssetSupply": "121936186843445440685431667", - "LPTokenSupply": "32810418853459324133480019" + "mAssetSupply": "100607807985940380256735103", + "LPTokenSupply": "4328404222522451648756289" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "120724963440157720576", - "outputQty0": "121222716552326656551", - "outputQty": "120319357974546124231", - "swapFee": "95628611620863593", + "type": "swap_fp_to_mp", + "inputQty": "150618228144022847488", + "outputIndex": 2, + "outputQty": "150579399554919474296", + "swapFee": "0", + "redemptionFee": "89820058677532317", "mpReserves": [ - "71859972048493227899475084", - "29090509884594175398645825", - "21057017635003690451899057" + "56246596191783503880309581", + "7026627154371499812913009", + "37761235711855533578938916" ], "fpReserves": [ - "22812743783395183610070200", - "10391072965128524428195183" + "1442487760417060323799092", + "3023956244830853564941858" ], - "mAssetSupply": "121936308066161993012088218", - "LPTokenSupply": "32810418863022185295566378" + "mAssetSupply": "100607658375662643047071665", + "LPTokenSupply": "4328404222522451648756289" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "454898597345696576", - "outputQty0": "456774147228212228", - "outputQty": "453370191798250340", - "swapFee": "360334070891913", + "inputQty": "3941856629890586509312", + "outputQty0": "3916484554763032944083", + "outputQty": "3937262623351665467643", + "swapFee": "3048905420210772760", "mpReserves": [ - "71859972048493227899475084", - "29090509884594175398645825", - "21057018089902287797595633" + "56246596191783503880309581", + "7026627154371499812913009", + "37765177568485424165448228" ], "fpReserves": [ - "22812744240169330838282428", - "10391072511758332629944843" + "1446404244971823356743175", + "3020018982207501899474215" ], - "mAssetSupply": "121936308522936140240300446", - "LPTokenSupply": "32810418863058218702655569" + "mAssetSupply": "100611574860217406080015748", + "LPTokenSupply": "4328404527412993669833565" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3659102941955187802112", - "outputQty0": "3674186426401748775697", - "outputQty": "3646793998969124563876", - "swapFee": "2898443655177508002", + "type": "redeem", + "outputIndex": 2, + "inputQty": "5959935781785660", + "outputQty0": "6121147533477430", + "outputQty": "6157109590868764", + "swapFee1": "3575961469071", + "swapFee2": "3672688520086", "mpReserves": [ - "71859972048493227899475084", - "29090509884594175398645825", - "21060677192844242985397745" + "56246596191783503880309581", + "7026627154371499812913009", + "37765177562328314574579464" ], "fpReserves": [ - "22816418426595732587058125", - "10387425717759363505380967" + "1446404238850675823265745", + "3020018982207501899474215" ], - "mAssetSupply": "121939982709362541989076143", - "LPTokenSupply": "32810419152902584220406369" + "mAssetSupply": "100611574854099931235058404", + "LPTokenSupply": "4328404521453415484194812" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "76443518318218166927360", - "outputQty0": "76231108670500294127107", - "outputQty": "75169604509555200790114", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "45428041696648315797504", + "outputQty0": "45135269348692988339003", + "outputQty": "45361619140452429755421", + "swapFee": "35131907132012262700", "mpReserves": [ - "71936415566811446066402444", - "29090509884594175398645825", - "21060677192844242985397745" + "56246596191783503880309581", + "7026627154371499812913009", + "37810605604024962890376968" ], "fpReserves": [ - "22892649535266232881185232", - "10387425717759363505380967" + "1491539508199368811604748", + "2974657363067049469718794" ], - "mAssetSupply": "122016213818033042283203250", - "LPTokenSupply": "32885588757412139421196483" + "mAssetSupply": "100656710123448624223397407", + "LPTokenSupply": "4328408034644128685421082" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "6662948907833747456", "outputIndex": 2, - "inputQty": "279825512791044113039360", - "outputQty0": "283601671100614097659045", - "outputQty": "282304106835218393278991", - "swapFee1": "167895307674626467823", - "swapFee2": "113440668440245639063", + "outputQty": "6665139034108276260", + "swapFee": "0", + "redemptionFee": "3975665686802908", "mpReserves": [ - "71936415566811446066402444", - "29090509884594175398645825", - "20778373086009024592118754" + "56246596191783503880309581", + "7026627154371499812913009", + "37810598938885928782100708" ], "fpReserves": [ - "22609047864165618783526187", - "10387425717759363505380967" + "1491532882089890806758020", + "2974664026015957303466250" ], - "mAssetSupply": "121732725587600868431183268", - "LPTokenSupply": "32605780034151862770803905" + "mAssetSupply": "100656703501314811905353587", + "LPTokenSupply": "4328408034644128685421082" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "857185928875862673850368", - "outputQty0": "854753479880103947063116", - "outputQty": "842820706964112939048030", + "inputIndex": 2, + "inputQty": "1102216227906279218085888", + "outputQty0": "1094905856477737517695669", + "outputQty": "1063249967963608841804225", "mpReserves": [ - "72793601495687308740252812", - "29090509884594175398645825", - "20778373086009024592118754" + "56246596191783503880309581", + "7026627154371499812913009", + "38912815166792208000186596" ], "fpReserves": [ - "23463801344045722730589303", - "10387425717759363505380967" + "2586438738567628324453689", + "2974664026015957303466250" ], - "mAssetSupply": "122587479067480972378246384", - "LPTokenSupply": "33448600741115975709851935" + "mAssetSupply": "101751609357792549423049256", + "LPTokenSupply": "5391658002607737527225307" }, { "type": "swap_fp_to_mp", - "inputQty": "465641555194778908360704", + "inputQty": "27296317157873", "outputIndex": 1, - "outputQty": "467844973614024757996742", + "outputQty": "25359136094634", "swapFee": "0", - "redemptionFee": "187496882749167552774", + "redemptionFee": "16362506303", "mpReserves": [ - "72793601495687308740252812", - "28622664910980150640649083", - "20778373086009024592118754" + "56246596191783503880309581", + "7026627154346140676818375", + "38912815166792208000186596" ], "fpReserves": [ - "22995059137172803848654178", - "10853067272954142413741671" + "2586438738540357480615199", + "2974664026043253620624123" ], - "mAssetSupply": "122118924357490802663864033", - "LPTokenSupply": "33448600741115975709851935" + "mAssetSupply": "101751609357765294941717069", + "LPTokenSupply": "5391658002607737527225307" }, { - "type": "swap_fp_to_mp", - "inputQty": "131485856932008472608768", - "outputIndex": 2, - "outputQty": "131667173727391482293309", - "swapFee": "0", - "redemptionFee": "52918048717948950396", + "type": "mint", + "inputIndex": 2, + "inputQty": "14084801564963999055872", + "outputQty0": "13988843580453817479593", + "outputQty": "13569249566725294089026", "mpReserves": [ - "72793601495687308740252812", - "28622664910980150640649083", - "20646705912281633109825445" + "56246596191783503880309581", + "7026627154346140676818375", + "38926899968357171999242468" ], "fpReserves": [ - "22862764015377931472663098", - "10984553129886150886350439" + "2600427582120811298094792", + "2974664026043253620624123" ], - "mAssetSupply": "121986682153744648236823349", - "LPTokenSupply": "33448600741115975709851935" + "mAssetSupply": "101765598201345748759196662", + "LPTokenSupply": "5405227252174462821314333" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "138883942681857671168", - "outputQty0": "139100155750852735677", - "outputQty": "137192253991337070424", + "type": "redeem", + "outputIndex": 0, + "inputQty": "135404789546848893272064", + "outputQty0": "139495466815176309960968", + "outputQty": "141152034021474029756218", + "swapFee1": "81242873728109335963", + "swapFee2": "83697280089105785976", "mpReserves": [ - "72793601495687308740252812", - "28622803794922832498320251", - "20646705912281633109825445" + "56105444157762029850553363", + "7026627154346140676818375", + "38926899968357171999242468" ], "fpReserves": [ - "22862903115533682325398775", - "10984553129886150886350439" + "2460932115305634988133824", + "2974664026043253620624123" ], - "mAssetSupply": "121986821253900399089559026", - "LPTokenSupply": "33448737933369967046922359" + "mAssetSupply": "101626186431810661555021670", + "LPTokenSupply": "5269830586914986738975865" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "60547633598584357650432", - "outputQty0": "61352508268396954240253", - "outputQty": "61232264482956439085709", - "swapFee1": "36328580159150614590", - "swapFee2": "24541003307358781696", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "339142551248713875456", + "outputQty0": "336827960933377957517", + "outputQty": "336987356186304337292", + "swapFee": "261426891238217785", "mpReserves": [ - "72793601495687308740252812", - "28561571530439876059234542", - "20646705912281633109825445" + "56105444157762029850553363", + "7026627154346140676818375", + "38927239110908420713117924" ], "fpReserves": [ - "22801550607265285371158522", - "10984553129886150886350439" + "2461268943266568366091341", + "2974327038687067316286831" ], - "mAssetSupply": "121925493286635309494100469", - "LPTokenSupply": "33388193932629398604333386" + "mAssetSupply": "101626523259771594932979187", + "LPTokenSupply": "5269830613057675862797643" }, { "type": "swap_fp_to_mp", - "inputQty": "7434706475202617344", - "outputIndex": 0, - "outputQty": "7498286730478229846", + "inputQty": "518448785011033981845504", + "outputIndex": 2, + "outputQty": "520219010805220107763586", "swapFee": "0", - "redemptionFee": "2991777672907321", + "redemptionFee": "310213307651181226904", "mpReserves": [ - "72793593997400578262022966", - "28561571530439876059234542", - "20646705912281633109825445" + "56105444157762029850553363", + "7026627154346140676818375", + "38407020100103200605354338" ], "fpReserves": [ - "22801543127821103102854198", - "10984560564592626088967783" + "1944246763847932987916625", + "3492775823698101298132335" ], - "mAssetSupply": "121925485810182904898703466", - "LPTokenSupply": "33388193932629398604333386" + "mAssetSupply": "101109811293660610736031375", + "LPTokenSupply": "5269830613057675862797643" }, { "type": "mint", "inputIndex": 1, - "inputQty": "10881049715696373760", - "outputQty0": "10898123478005633303", - "outputQty": "10748744110722485063", + "inputQty": "9677068221338822", + "outputQty0": "10391989479240921", + "outputQty": "10101312942081747", "mpReserves": [ - "72793593997400578262022966", - "28561582411489591755608302", - "20646705912281633109825445" + "56105444157762029850553363", + "7026627164023208898157197", + "38407020100103200605354338" ], "fpReserves": [ - "22801554025944581108487501", - "10984560564592626088967783" + "1944246774239922467157546", + "3492775823698101298132335" ], - "mAssetSupply": "121925496708306382904336769", - "LPTokenSupply": "33388204681373509326818449" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "7625301802171727085568", - "outputQty0": "7658809549654733642721", - "outputQty": "7553826254548690159199", - "mpReserves": [ - "72793593997400578262022966", - "28561582411489591755608302", - "20654331214083804836911013" - ], - "fpReserves": [ - "22809212835494235842130222", - "10984560564592626088967783" - ], - "mAssetSupply": "121933155517856037637979490", - "LPTokenSupply": "33395758507628058016977648" + "mAssetSupply": "101109811304052600215272296", + "LPTokenSupply": "5269830623158988804879390" }, { "type": "mint", "inputIndex": 0, - "inputQty": "56965991076126418534400", - "outputQty0": "56800066788568327946583", - "outputQty": "56021176840191056381251", + "inputQty": "8689459426475936579584", + "outputQty0": "8582167036866121202165", + "outputQty": "8341999155251593027757", "mpReserves": [ - "72850559988476704680557366", - "28561582411489591755608302", - "20654331214083804836911013" + "56114133617188505787132947", + "7026627164023208898157197", + "38407020100103200605354338" ], "fpReserves": [ - "22866012902282804170076805", - "10984560564592626088967783" + "1952828941276788588359711", + "3492775823698101298132335" ], - "mAssetSupply": "121989955584644605965926073", - "LPTokenSupply": "33451779684468249073358899" + "mAssetSupply": "101118393471089466336474461", + "LPTokenSupply": "5278172622314240397907147" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "623512057971557248", - "outputQty0": "631804742437124277", - "outputQty": "628785875623372172", - "swapFee1": "374107234782934", - "swapFee2": "252721896974849", + "inputQty": "204790859348919986421760", + "outputQty0": "210485913781148056014684", + "outputQty": "211762050274914002400413", + "swapFee1": "122874515609351991853", + "swapFee2": "126291548268688833608", "mpReserves": [ - "72850559988476704680557366", - "28561582411489591755608302", - "20654330585297929213538841" + "56114133617188505787132947", + "7026627164023208898157197", + "38195258049828286602953925" ], "fpReserves": [ - "22866012270478061732952528", - "10984560564592626088967783" + "1742343027495640532345027", + "3492775823698101298132335" ], - "mAssetSupply": "121989954953092585425776645", - "LPTokenSupply": "33451779060993601825279944" + "mAssetSupply": "100908033848856586969293385", + "LPTokenSupply": "5073394050416881346684572" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "8321845398607959040", - "outputQty0": "8358454714157558791", - "outputQty": "8243797471986075113", + "type": "redeem", + "outputIndex": 1, + "inputQty": "671605749422054309888", + "outputQty0": "690016586990883230619", + "outputQty": "642300298910206760324", + "swapFee1": "402963449653232585", + "swapFee2": "414009952194529938", "mpReserves": [ - "72850559988476704680557366", - "28561582411489591755608302", - "20654338907143327821497881" + "56114133617188505787132947", + "7025984863724298691396873", + "38195258049828286602953925" ], "fpReserves": [ - "22866020628932775890511319", - "10984560564592626088967783" + "1741653010908649649114408", + "3492775823698101298132335" ], - "mAssetSupply": "121989963311547299583335436", - "LPTokenSupply": "33451787304791073811355057" + "mAssetSupply": "100907344246279548280592704", + "LPTokenSupply": "5072722484963804257697942" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "30703995538071982080", - "outputQty0": "30752299732255600546", - "outputQty": "30330454447858086622", + "type": "swap_fp_to_mp", + "inputQty": "453148705788470848", + "outputIndex": 0, + "outputQty": "455983284668821499", + "swapFee": "0", + "redemptionFee": "270369306192236", "mpReserves": [ - "72850559988476704680557366", - "28561613115485129827590382", - "20654338907143327821497881" + "56114133161205221118311448", + "7025984863724298691396873", + "38195258049828286602953925" ], "fpReserves": [ - "22866051381232508146111865", - "10984560564592626088967783" + "1741652560293139328719925", + "3492776276846807086603183" ], - "mAssetSupply": "121989994063847031838935982", - "LPTokenSupply": "33451817635245521669441679" + "mAssetSupply": "100907343795934407266390457", + "LPTokenSupply": "5072722484963804257697942" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "748880049443364419928064", - "outputQty0": "758791859457798207923313", - "outputQty": "757237587954605882910906", - "swapFee1": "449328029666018651956", - "swapFee2": "303516743783119283169", + "type": "swap_fp_to_mp", + "inputQty": "334545872284156432482304", + "outputIndex": 2, + "outputQty": "334023069215371817776482", + "swapFee": "0", + "redemptionFee": "199223803268424988987", "mpReserves": [ - "72850559988476704680557366", - "27804375527530523944679476", - "20654338907143327821497881" + "56114133161205221118311448", + "7025984863724298691396873", + "37861234980612914785177443" ], "fpReserves": [ - "22107259521774709938188552", - "10984560564592626088967783" + "1409612888179097680406968", + "3827322149130963519085487" ], - "mAssetSupply": "121231505721133016750295838", - "LPTokenSupply": "32702982518605123851378810" + "mAssetSupply": "100575503347623634043066487", + "LPTokenSupply": "5072722484963804257697942" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "22508359820652961792", "outputIndex": 0, - "inputQty": "716971045343781453824", - "outputQty0": "726423086670607413706", - "outputQty": "728292086726955048908", - "swapFee1": "430182627206268872", - "swapFee2": "290569234668242965", + "outputQty": "22554297417845882537", + "swapFee": "0", + "redemptionFee": "13372946181831772", "mpReserves": [ - "72849831696389977725508458", - "27804375527530523944679476", - "20654338907143327821497881" + "56114110606907803272428911", + "7025984863724298691396873", + "37861234980612914785177443" ], "fpReserves": [ - "22106533098688039330774846", - "10984560564592626088967783" + "1409590599935461294119975", + "3827344657490784172047279" ], - "mAssetSupply": "121230779588615580811125097", - "LPTokenSupply": "32702265590578042790551873" + "mAssetSupply": "100575481072752943838611266", + "LPTokenSupply": "5072722484963804257697942" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "7437189546987530223616", - "outputQty0": "7535231048171670268248", - "outputQty": "7519187144362719192184", - "swapFee1": "4462313728192518134", - "swapFee2": "3014092419268668107", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "3999112494780856139776", + "outputQty0": "3949565071896032112803", + "outputQty": "3985248000198140537678", + "swapFee": "3082553575313933914", "mpReserves": [ - "72849831696389977725508458", - "27796856340386161225487292", - "20654338907143327821497881" + "56118109719402584128568687", + "7025984863724298691396873", + "37861234980612914785177443" ], "fpReserves": [ - "22098997867639867660506598", - "10984560564592626088967783" + "1413540165007357326232778", + "3823359409490586031509601" ], - "mAssetSupply": "121223247371659828409524956", - "LPTokenSupply": "32694828847262428079580070" + "mAssetSupply": "100579430637824839870724069", + "LPTokenSupply": "5072722793219161789091333" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "19924888888756072448", - "outputQty0": "20187540344286638556", - "outputQty": "20144540845866417584", - "swapFee1": "11954933333253643", - "swapFee2": "8075016137714655", + "type": "swap_fp_to_mp", + "inputQty": "533957738143585216", + "outputIndex": 2, + "outputQty": "531900022654149344", + "swapFee": "0", + "redemptionFee": "317262592391866", "mpReserves": [ - "72849831696389977725508458", - "27796836195845315359069708", - "20654338907143327821497881" + "56118109719402584128568687", + "7025984863724298691396873", + "37861234448712892131028099" ], "fpReserves": [ - "22098977680099523373868042", - "10984560564592626088967783" + "1413539636236370006454944", + "3823359943448324175094817" ], - "mAssetSupply": "121223227192194500260601055", - "LPTokenSupply": "32694808923569032656832986" + "mAssetSupply": "100579430109371115143338101", + "LPTokenSupply": "5072722793219161789091333" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "272648640363176807890944", - "outputQty0": "273113315759023281397328", - "outputQty": "269392014169191822972469", + "type": "redeem", + "outputIndex": 2, + "inputQty": "11881160254277675909120", + "outputQty0": "12170733133600284169768", + "outputQty": "12242729352418159646239", + "swapFee1": "7128696152566605545", + "swapFee2": "7302439880160170501", "mpReserves": [ - "72849831696389977725508458", - "28069484836208492166960652", - "20654338907143327821497881" + "56118109719402584128568687", + "7025984863724298691396873", + "37848991719360473971381860" ], "fpReserves": [ - "22372090995858546655265370", - "10984560564592626088967783" + "1401368903102769722285176", + "3823359943448324175094817" ], - "mAssetSupply": "121496340507953523541998383", - "LPTokenSupply": "32964200937738224479805455" + "mAssetSupply": "100567266678677395019338834", + "LPTokenSupply": "5060842345834499369842767" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "26388031084610350743552", - "outputQty0": "26432161390120801968481", - "outputQty": "26071352647874368616151", + "type": "redeem", + "outputIndex": 0, + "inputQty": "2344712861106668568576", + "outputQty0": "2401704146391149842380", + "outputQty": "2430377240410955657150", + "swapFee1": "1406827716664001141", + "swapFee2": "1441022487834689905", "mpReserves": [ - "72849831696389977725508458", - "28095872867293102517704204", - "20654338907143327821497881" + "56115679342162173172911537", + "7025984863724298691396873", + "37848991719360473971381860" ], "fpReserves": [ - "22398523157248667457233851", - "10984560564592626088967783" + "1398967198956378572442796", + "3823359943448324175094817" ], - "mAssetSupply": "121522772669343644343966864", - "LPTokenSupply": "32990272290386098848421606" + "mAssetSupply": "100564866415553491704186359", + "LPTokenSupply": "5058497773656164367674305" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "513631155346787", - "outputQty0": "512118366700726", - "outputQty": "508752623672552", - "swapFee": "404101311611", + "inputQty": "83987728302327715594240", + "outputQty0": "82946135714781017594887", + "outputQty": "83651418844128162203114", + "swapFee": "64720875865462585961", "mpReserves": [ - "72849831696903608880855245", - "28095872867293102517704204", - "20654338907143327821497881" + "56199667070464500888505777", + "7025984863724298691396873", + "37848991719360473971381860" ], "fpReserves": [ - "22398523157760785823934577", - "10984560564083873465295231" + "1481913334671159590037683", + "3739708524604196012891703" ], - "mAssetSupply": "121522772669855762710667590", - "LPTokenSupply": "32990272290386139258552767" + "mAssetSupply": "100647812551268272721781246", + "LPTokenSupply": "5058504245743750913932901" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "445023433632540590080", - "outputQty0": "446970832459523026355", - "outputQty": "444033099001812546782", - "swapFee": "352694815507198559", - "mpReserves": [ - "72849831696903608880855245", - "28095872867293102517704204", - "20654783930576960362087961" - ], - "fpReserves": [ - "22398970128593245346960932", - "10984116530984871652748449" - ], - "mAssetSupply": "121523219640688222233693945", - "LPTokenSupply": "32990272325655620809272622" - }, - { - "type": "redeem", - "outputIndex": 1, - "inputQty": "134354699059106545664", - "outputQty0": "136132676183845110503", - "outputQty": "135851404993524651897", - "swapFee1": "80612819435463927", - "swapFee2": "54453070473538044", - "mpReserves": [ - "72849831696903608880855245", - "28095737015888108993052307", - "20654783930576960362087961" - ], - "fpReserves": [ - "22398833995917061501850429", - "10984116530984871652748449" - ], - "mAssetSupply": "121523083562465108862121486", - "LPTokenSupply": "32990137979017843646273350" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "141059441192150188032", - "outputIndex": 2, - "outputQty": "141204479573844040788", - "swapFee": "0", - "redemptionFee": "56751649246857726", + "inputQty": "185691506019196441985024", + "outputQty0": "184484556560649633337203", + "outputQty": "179716943626888146542912", "mpReserves": [ - "72849831696903608880855245", - "28095737015888108993052307", - "20654642726097386518047173" + "56199667070464500888505777", + "7025984863724298691396873", + "38034683225379670413366884" ], "fpReserves": [ - "22398692116793944357533904", - "10984257590426063802936481" + "1666397891231809223374886", + "3739708524604196012891703" ], - "mAssetSupply": "121522941740093640964662687", - "LPTokenSupply": "32990137979017843646273350" + "mAssetSupply": "100832297107828922355118449", + "LPTokenSupply": "5238221189370639060475813" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1862993015951030543712256", - "outputQty0": "1857401788868191645543842", - "outputQty": "1831759506041743267135200", + "inputIndex": 2, + "inputQty": "8157788476299934695424", + "outputQty0": "8104504940834923205996", + "outputQty": "7890516480311564981814", "mpReserves": [ - "74712824712854639424567501", - "28095737015888108993052307", - "20654642726097386518047173" + "56199667070464500888505777", + "7025984863724298691396873", + "38042841013855970348062308" ], "fpReserves": [ - "24256093905662136003077746", - "10984257590426063802936481" + "1674502396172644146580882", + "3739708524604196012891703" ], - "mAssetSupply": "123380343528961832610206529", - "LPTokenSupply": "34821897485059586913408550" + "mAssetSupply": "100840401612769757278324445", + "LPTokenSupply": "5246111705850950625457627" }, { "type": "redeem", "outputIndex": 0, - "inputQty": "169476241288068399104", - "outputQty0": "171771977873525853832", - "outputQty": "172229834182172156017", - "swapFee1": "101685744772841039", - "swapFee2": "68708791149410341", + "inputQty": "598849254666287917826048", + "outputQty0": "613206181659717827734183", + "outputQty": "620479659895309942648973", + "swapFee1": "359309552799772750695", + "swapFee2": "367923708995830696640", "mpReserves": [ - "74712652483020457252411484", - "28095737015888108993052307", - "20654642726097386518047173" + "55579187410569190945856804", + "7025984863724298691396873", + "38042841013855970348062308" ], "fpReserves": [ - "24255922133684262477223914", - "10984257590426063802936481" + "1061296214512926318846699", + "3739708524604196012891703" ], - "mAssetSupply": "123380171825692750233763038", - "LPTokenSupply": "34821728018986873322293549" + "mAssetSupply": "100227563354819035281286902", + "LPTokenSupply": "4647298382139942684906648" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "517819579582044589522944", - "outputQty0": "516228317523014413278672", - "outputQty": "509001775704389932847523", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "443995200749016973312", + "outputQty0": "476197597068330848356", + "outputQty": "483216648619280415802", + "swapFee": "373214008507776972", "mpReserves": [ - "75230472062602501841934428", - "28095737015888108993052307", - "20654642726097386518047173" + "55579187410569190945856804", + "7026428858925047708370185", + "38042841013855970348062308" ], "fpReserves": [ - "24772150451207276890502586", - "10984257590426063802936481" + "1061772412109994649695055", + "3739225307955576732475901" ], - "mAssetSupply": "123896400143215764647041710", - "LPTokenSupply": "35330729794691263255141072" + "mAssetSupply": "100228039552416103612135258", + "LPTokenSupply": "4647298419461343535684345" }, { "type": "swap_fp_to_mp", - "inputQty": "381841042814056464384", + "inputQty": "712739761307298387984384", "outputIndex": 1, - "outputQty": "383675300439701732660", - "swapFee": "0", - "redemptionFee": "153813215666668137", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "24150927976840024064", + "outputQty0": "23992084990050339868", + "outputQty": "24345527757097274121", + "swapFee": "18803359197010581", "mpReserves": [ - "75230472062602501841934428", - "28095353340587669291319647", - "20654642726097386518047173" + "55579187410569190945856804", + "7026428858925047708370185", + "38042865164783947188086372" ], "fpReserves": [ - "24771765918168110220158589", - "10984639431468877859400865" + "1061796404194984700034923", + "3739200962427819635201780" ], - "mAssetSupply": "123896015763989813643365850", - "LPTokenSupply": "35330729794691263255141072" + "mAssetSupply": "100228063544501093662475126", + "LPTokenSupply": "4647298421341679455385403" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "354421340642894080", - "outputQty0": "355071609420812089", - "outputQty": "350086335281643078", + "inputQty": "7133873374684397961216", + "outputQty0": "7650737402558624003249", + "outputQty": "7762495705729466820936", + "swapFee": "5995683264743725318", "mpReserves": [ - "75230472062602501841934428", - "28095353695009009934213727", - "20654642726097386518047173" + "55579187410569190945856804", + "7033562732299732106331401", + "38042865164783947188086372" ], "fpReserves": [ - "24771766273239719640970678", - "10984639431468877859400865" + "1069447141597543324038172", + "3731438466722090168380844" ], - "mAssetSupply": "123896016119061423064177939", - "LPTokenSupply": "35330730144777598536784150" + "mAssetSupply": "100235714281903652286478375", + "LPTokenSupply": "4647299020910005929757934" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "3201402559809923584", - "outputQty0": "3245042745921032565", - "outputQty": "3237804219258450174", - "swapFee1": "1920841535885954", - "swapFee2": "1298017098368413", + "type": "mint", + "inputIndex": 0, + "inputQty": "134230732242765859520512", + "outputQty0": "132588192961935837884334", + "outputQty": "129722286001766271896384", "mpReserves": [ - "75230472062602501841934428", - "28095350457204790675763553", - "20654642726097386518047173" + "55713418142811956805377316", + "7033562732299732106331401", + "38042865164783947188086372" ], "fpReserves": [ - "24771763028196973719938113", - "10984639431468877859400865" + "1202035334559479161922506", + "3731438466722090168380844" ], - "mAssetSupply": "123896012875316694241513787", - "LPTokenSupply": "35330726943567122880449161" + "mAssetSupply": "100368302474865588124362709", + "LPTokenSupply": "4777021306911772201654318" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "474031334250018177024", - "outputQty0": "480493112967058710890", - "outputQty": "479421279239407690798", - "swapFee1": "284418800550010906", - "swapFee2": "192197245186823484", + "outputIndex": 2, + "inputQty": "77485506604831892045824", + "outputQty0": "79183858720532133092020", + "outputQty": "79657791288834798593424", + "swapFee1": "46491303962899135227", + "swapFee2": "47510315232319279855", "mpReserves": [ - "75230472062602501841934428", - "28094871035925551268072755", - "20654642726097386518047173" + "55713418142811956805377316", + "7033562732299732106331401", + "37963207373495112389492948" ], "fpReserves": [ - "24771282535084006661227223", - "10984639431468877859400865" + "1122851475838947028830486", + "3731438466722090168380844" ], - "mAssetSupply": "123895532574400972369626381", - "LPTokenSupply": "35330252940674752917273227" + "mAssetSupply": "100289166126460288310550544", + "LPTokenSupply": "4699540449437336599522016" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "9934257335973886033920", - "outputQty0": "9980580694734855810580", - "outputQty": "9840444090891001288664", + "inputQty": "13898720437132222005248", + "outputQty0": "13807887757222220166543", + "outputQty": "13988160151489285035489", + "swapFee": "10808162454673333865", "mpReserves": [ - "75230472062602501841934428", - "28094871035925551268072755", - "20664576983433360404081093" + "55713418142811956805377316", + "7033562732299732106331401", + "37977106093932244611498196" ], "fpReserves": [ - "24781263115778741517037803", - "10984639431468877859400865" + "1136659363596169248997029", + "3717450306570600883345355" ], - "mAssetSupply": "123905513155095707225436961", - "LPTokenSupply": "35340093384765643918561891" + "mAssetSupply": "100302974014217510530717087", + "LPTokenSupply": "4699541530253582066855402" }, { "type": "swap_fp_to_mp", - "inputQty": "397279711366956800", - "outputIndex": 1, - "outputQty": "399189763237022004", + "inputQty": "4087752775434030284800", + "outputIndex": 2, + "outputQty": "4056480388794432534769", "swapFee": "0", - "redemptionFee": "160032972196299", + "redemptionFee": "2419429731691392363", "mpReserves": [ - "75230472062602501841934428", - "28094870636735788031050751", - "20664576983433360404081093" + "55713418142811956805377316", + "7033562732299732106331401", + "37973049613543450178963427" ], "fpReserves": [ - "24781262715696311026290047", - "10984639828748589226357665" + "1132626980710016928391819", + "3721538059346034913630155" ], - "mAssetSupply": "123905512755173309706885504", - "LPTokenSupply": "35340093384765643918561891" + "mAssetSupply": "100298944050761089901504240", + "LPTokenSupply": "4699541530253582066855402" }, { - "type": "swap_fp_to_mp", - "inputQty": "42364184677773058506752", + "type": "redeem", "outputIndex": 1, - "outputQty": "42566108801726522198274", - "swapFee": "0", - "redemptionFee": "17064599427580503508", - "mpReserves": [ - "75230472062602501841934428", - "28052304527934061508852477", - "20664576983433360404081093" - ], - "fpReserves": [ - "24738601217127359767519824", - "11027004013426362284864417" - ], - "mAssetSupply": "123862868321203786028618789", - "LPTokenSupply": "35340093384765643918561891" + "inputQty": "690628967961409666154496", + "hardLimitError": true }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "279639719780966080", - "outputQty0": "280155618369792741", - "outputQty": "276227968122217596", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "134603845363839539347456", + "outputQty0": "133721089366122042438035", + "outputQty": "135234672269451985310891", + "swapFee": "104560539760156599948", "mpReserves": [ - "75230472062602501841934428", - "28052304807573781289818557", - "20664576983433360404081093" + "55713418142811956805377316", + "7033562732299732106331401", + "38107653458907289718310883" ], "fpReserves": [ - "24738601497282978137312565", - "11027004013426362284864417" + "1266348070076138970829854", + "3586303387076582928319264" ], - "mAssetSupply": "123862868601359404398411530", - "LPTokenSupply": "35340093660993612040779487" + "mAssetSupply": "100432665140127211943942275", + "LPTokenSupply": "4699551986307558082515396" }, { - "type": "swap_fp_to_mp", - "inputQty": "6884482861996227690496", - "outputIndex": 0, - "outputQty": "6951214289763058440458", - "swapFee": "0", - "redemptionFee": "2773002288198151504", + "type": "redeem", + "outputIndex": 2, + "inputQty": "80116215893760245760", + "outputQty0": "82033342864701251442", + "outputQty": "82527155112604665559", + "swapFee1": "48069729536256147", + "swapFee2": "49220005718820750", "mpReserves": [ - "75223520848312738783493970", - "28052304807573781289818557", - "20664576983433360404081093" + "55713418142811956805377316", + "7033562732299732106331401", + "38107570931752177113645324" ], "fpReserves": [ - "24731668991562482758551229", - "11033888496288358512554913" + "1266266036733274269578412", + "3586303387076582928319264" ], - "mAssetSupply": "123855938868641197217801698", - "LPTokenSupply": "35340093660993612040779487" + "mAssetSupply": "100432583156004352961511583", + "LPTokenSupply": "4699471874898637275895250" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "21045954499848511488", - "outputQty0": "21332319314119725763", - "outputQty": "21284529710450280264", - "swapFee1": "12627572699909106", - "swapFee2": "8532927725647890", + "outputIndex": 0, + "inputQty": "5467607396290423422976", + "outputQty0": "5598271450828827131074", + "outputQty": "5664296401847258485826", + "swapFee1": "3280564437774254053", + "swapFee2": "3358962870497296278", "mpReserves": [ - "75223520848312738783493970", - "28052283523044070839538293", - "20664576983433360404081093" + "55707753846410109546891490", + "7033562732299732106331401", + "38107570931752177113645324" ], "fpReserves": [ - "24731647659243168638825466", - "11033888496288358512554913" + "1260667765282445442447338", + "3586303387076582928319264" ], - "mAssetSupply": "123855917544854810823723825", - "LPTokenSupply": "35340072616301869462258909" + "mAssetSupply": "100426988243516394631676787", + "LPTokenSupply": "4694004595558790629897679" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "7583296708468117504", - "outputQty0": "7597283170676017624", - "outputQty": "7490800154514799830", - "mpReserves": [ - "75223520848312738783493970", - "28052291106340779307655797", - "20664576983433360404081093" - ], - "fpReserves": [ - "24731655256526339314843090", - "11033888496288358512554913" - ], - "mAssetSupply": "123855925142137981499741449", - "LPTokenSupply": "35340080107102023977058739" + "type": "redeem", + "outputIndex": 2, + "inputQty": "767519317546978464759808", + "hardLimitError": true }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "56878677359144763392", - "outputQty0": "57143594288163676693", - "outputQty": "56342673170045509296", + "type": "redeem", + "outputIndex": 1, + "inputQty": "23148807917803900928", + "outputQty0": "23701305097490294612", + "outputQty": "22082128997835535968", + "swapFee1": "13889284750682340", + "swapFee2": "14220783058494176", "mpReserves": [ - "75223520848312738783493970", - "28052291106340779307655797", - "20664633862110719548844485" + "55707753846410109546891490", + "7033540650170734270795433", + "38107570931752177113645324" ], "fpReserves": [ - "24731712400120627478519783", - "11033888496288358512554913" + "1260644063977347952152726", + "3586303387076582928319264" ], - "mAssetSupply": "123855982285732269663418142", - "LPTokenSupply": "35340136449775194022568035" + "mAssetSupply": "100426964556432080199876351", + "LPTokenSupply": "4693981448139801301064985" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "11143135030359742", - "outputQty0": "11195034898023317", - "outputQty": "11038125923071514", + "type": "redeem", + "outputIndex": 1, + "inputQty": "18682350421593896", + "outputQty0": "19128243350016225", + "outputQty": "17821476379567255", + "swapFee1": "11209410252956", + "swapFee2": "11476946010009", "mpReserves": [ - "75223520848312738783493970", - "28052291106340779307655797", - "20664633873253854579204227" + "55707753846410109546891490", + "7033540632349257891228178", + "38107570931752177113645324" ], "fpReserves": [ - "24731712411315662376543100", - "11033888496288358512554913" + "1260644044849104602136501", + "3586303387076582928319264" ], - "mAssetSupply": "123855982296927304561441459", - "LPTokenSupply": "35340136460813319945639549" + "mAssetSupply": "100426964537315313795870135", + "LPTokenSupply": "4693981429458571820496384" }, { "type": "mint", "inputIndex": 1, - "inputQty": "222520266509062208", - "outputQty0": "222930678284297439", - "outputQty": "219806094521900220", + "inputQty": "120521568771491521101824", + "outputQty0": "129136455163659979352549", + "outputQty": "125969520520063620529958", "mpReserves": [ - "75223520848312738783493970", - "28052291328861045816718005", - "20664633873253854579204227" + "55707753846410109546891490", + "7154062201120749412330002", + "38107570931752177113645324" ], "fpReserves": [ - "24731712634246340660840539", - "11033888496288358512554913" + "1389780500012764581489050", + "3586303387076582928319264" ], - "mAssetSupply": "123855982519857982845738898", - "LPTokenSupply": "35340136680619414467539769" + "mAssetSupply": "100556100992478973775222684", + "LPTokenSupply": "4819950949978635441026342" }, { - "type": "swap_fp_to_mp", - "inputQty": "39758171488922600734720", - "outputIndex": 1, - "outputQty": "39944051048137081650568", - "swapFee": "0", - "redemptionFee": "16013566569482351345", + "type": "mint", + "inputIndex": 2, + "inputQty": "44689003802442539728896", + "outputQty0": "44400942330883694661541", + "outputQty": "43278933418383279645978", "mpReserves": [ - "75223520848312738783493970", - "28012347277812908735067437", - "20664633873253854579204227" + "55707753846410109546891490", + "7154062201120749412330002", + "38152259935554619653374220" ], "fpReserves": [ - "24691678717822634782477235", - "11073646667777281113289633" + "1434181442343648276150591", + "3586303387076582928319264" ], - "mAssetSupply": "123815964617000846449726939", - "LPTokenSupply": "35340136680619414467539769" + "mAssetSupply": "100600501934809857469884225", + "LPTokenSupply": "4863229883397018720672320" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "2743281938753701888", - "outputQty0": "2734797060416077935", - "outputQty": "2696522873835031265", + "inputQty": "31342579549961126412288", + "outputQty0": "30965116996892502371206", + "outputQty": "31196989235275159009823", + "swapFee": "24139136214803995107", "mpReserves": [ - "75223523591594677537195858", - "28012347277812908735067437", - "20664633873253854579204227" + "55739096425960070673303778", + "7154062201120749412330002", + "38152259935554619653374220" ], "fpReserves": [ - "24691681452619695198555170", - "11073646667777281113289633" + "1465146559340540778521797", + "3555106397841307769309441" ], - "mAssetSupply": "123815967351797906865804874", - "LPTokenSupply": "35340139377142288302571034" + "mAssetSupply": "100631467051806749972255431", + "LPTokenSupply": "4863232297310640201071830" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "15673079827268", - "outputQty0": "15886004694741", - "outputQty": "15806061770151", - "swapFee1": "9403847896", - "swapFee2": "6354401877", + "inputQty": "198601531525265440", + "outputQty0": "203729223381443083", + "outputQty": "204928953751647305", + "swapFee1": "119160918915159", + "swapFee2": "122237534028865", "mpReserves": [ - "75223523591594677537195858", - "28012347277812908735067437", - "20664633873238048517434076" + "55739096425960070673303778", + "7154062201120749412330002", + "38152259730625665901726915" ], "fpReserves": [ - "24691681452603809193860429", - "11073646667777281113289633" + "1465146355611317397078714", + "3555106397841307769309441" ], - "mAssetSupply": "123815967351782027215512010", - "LPTokenSupply": "35340139377126616163128555" + "mAssetSupply": "100631466848199764124841213", + "LPTokenSupply": "4863232098721024767697905" }, { "type": "swap_fp_to_mp", - "inputQty": "20731662704754307366912", + "inputQty": "400414252592448798720", "outputIndex": 2, - "outputQty": "20769222333694975221234", + "outputQty": "399546532629512620501", "swapFee": "0", - "redemptionFee": "8349751534031783530", + "redemptionFee": "238324478471701651", "mpReserves": [ - "75223523591594677537195858", - "28012347277812908735067437", - "20643864650904353542212842" + "55739096425960070673303778", + "7154062201120749412330002", + "38151860184093036389106414" ], "fpReserves": [ - "24670807073768729735033383", - "11094378330482035420656545" + "1464749148147197894326238", + "3555506812093900218108161" ], - "mAssetSupply": "123795101322698481788468494", - "LPTokenSupply": "35340139377126616163128555" + "mAssetSupply": "100631069879060123093790388", + "LPTokenSupply": "4863232098721024767697905" }, { - "type": "swap_fp_to_mp", - "inputQty": "322160325868460638208", - "outputIndex": 1, - "outputQty": "323643025023259310945", - "swapFee": "0", - "redemptionFee": "129748924508733862", + "type": "mint", + "inputIndex": 1, + "inputQty": "56031998776024997888", + "outputQty0": "59976763452971844172", + "outputQty": "58432337848886426326", "mpReserves": [ - "75223523591594677537195858", - "28012023634787885475756492", - "20643864650904353542212842" + "55739096425960070673303778", + "7154118233119525437327890", + "38151860184093036389106414" ], "fpReserves": [ - "24670482701457457900377645", - "11094700490807903881294753" + "1464809124910650866170410", + "3555506812093900218108161" ], - "mAssetSupply": "123794777080136134462546618", - "LPTokenSupply": "35340139377126616163128555" + "mAssetSupply": "100631129855823576065634560", + "LPTokenSupply": "4863290531058873654124231" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "5008225259668542324736", - "outputQty0": "5076205704035400807172", - "outputQty": "5064789791873188594949", - "swapFee1": "3004935155801125394", - "swapFee2": "2030482281614160322", + "type": "mint", + "inputIndex": 2, + "inputQty": "334162679517267904", + "outputQty0": "332007107454284377", + "outputQty": "323457723179078537", "mpReserves": [ - "75223523591594677537195858", - "28006958844996012287161543", - "20643864650904353542212842" + "55739096425960070673303778", + "7154118233119525437327890", + "38151860518255715906374318" ], "fpReserves": [ - "24665406495753422499570473", - "11094700490807903881294753" + "1464809456917758320454787", + "3555506812093900218108161" ], - "mAssetSupply": "123789702904914380675899768", - "LPTokenSupply": "35335131452360463200916358" + "mAssetSupply": "100631130187830683519918937", + "LPTokenSupply": "4863290854516596833202768" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "94203914976976355328", - "outputQty0": "94643484717941775146", - "outputQty": "93923152294134166290", - "swapFee": "74656020854023008", + "type": "mint", + "inputIndex": 0, + "inputQty": "3784366109444545708032", + "outputQty0": "3738773173562655550364", + "outputQty": "3642449643050040217593", "mpReserves": [ - "75223523591594677537195858", - "28006958844996012287161543", - "20643958854819330518568170" + "55742880792069515219011810", + "7154118233119525437327890", + "38151860518255715906374318" ], "fpReserves": [ - "24665501139238140441345619", - "11094606567655609747128463" + "1468548230091320976005151", + "3555506812093900218108161" ], - "mAssetSupply": "123789797548399098617674914", - "LPTokenSupply": "35335131459826065286318658" + "mAssetSupply": "100634868961004246175469301", + "LPTokenSupply": "4866933304159646873420361" }, { "type": "mint", "inputIndex": 0, - "inputQty": "150166071414994409357312", - "outputQty0": "149700483343002657795230", - "outputQty": "147605328968673300483505", + "inputQty": "1946064394551471898624", + "outputQty0": "1922617303587124670112", + "outputQty": "1873047006987529635233", "mpReserves": [ - "75373689663009671946553170", - "28006958844996012287161543", - "20643958854819330518568170" + "55744826856464066690910434", + "7154118233119525437327890", + "38151860518255715906374318" ], "fpReserves": [ - "24815201622581143099140849", - "11094606567655609747128463" + "1470470847394908100675263", + "3555506812093900218108161" ], - "mAssetSupply": "123939498031742101275470144", - "LPTokenSupply": "35482736788794738586802163" + "mAssetSupply": "100636791578307833300139413", + "LPTokenSupply": "4868806351166634403055594" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "14044954791579603697664", - "outputQty0": "14235922926379419718938", - "outputQty": "14274545598040887309762", - "swapFee1": "8426972874947762218", - "swapFee2": "5694369170551767887", + "type": "swap_fp_to_mp", + "inputQty": "388586954429145728", + "outputIndex": 2, + "outputQty": "387765582598272769", + "swapFee": "0", + "redemptionFee": "231297414322363", "mpReserves": [ - "75359415117411631059243408", - "28006958844996012287161543", - "20643958854819330518568170" + "55744826856464066690910434", + "7154118233119525437327890", + "38151860130490133308101549" ], "fpReserves": [ - "24800965699654763679421911", - "11094606567655609747128463" + "1470470461899217563403047", + "3555507200680854647253889" ], - "mAssetSupply": "123925267803184892407519093", - "LPTokenSupply": "35468692676700446477880720" + "mAssetSupply": "100636791193043440177189560", + "LPTokenSupply": "4868806351166634403055594" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1481923698548221411328", - "outputQty0": "1488863074546504245092", - "outputQty": "1477424978086500524019", - "swapFee": "1174408442661047757", + "inputIndex": 0, + "inputQty": "103351001022070407168", + "outputQty0": "102105751940947821457", + "outputQty": "102842118271881015853", + "swapFee": "79577988871823729", "mpReserves": [ - "75359415117411631059243408", - "28006958844996012287161543", - "20645440778517878739979498" + "55744930207465088761317602", + "7154118233119525437327890", + "38151860130490133308101549" ], "fpReserves": [ - "24802454562729310183667003", - "11093129142677523246604444" + "1470572567651158511224504", + "3555404358562582766238036" ], - "mAssetSupply": "123926756666259438911764185", - "LPTokenSupply": "35468692794141290743985495" + "mAssetSupply": "100636893298795381125011017", + "LPTokenSupply": "4868806359124433290237966" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "173801236531882459136", - "outputQty0": "174615017751789338905", - "outputQty": "173273306722018554698", - "swapFee": "137735437840339950", + "type": "swap_fp_to_mp", + "inputQty": "287769464425628129296384", + "outputIndex": 2, + "outputQty": "286452593359473955544933", + "swapFee": "0", + "redemptionFee": "170873376040164552388", "mpReserves": [ - "75359415117411631059243408", - "28006958844996012287161543", - "20645614579754410622438634" + "55744930207465088761317602", + "7154118233119525437327890", + "37865407537130659352556616" ], "fpReserves": [ - "24802629177747061973005908", - "11092955869370801228049746" + "1185783607584217590577666", + "3843173822988210895534420" ], - "mAssetSupply": "123926931281277190701103090", - "LPTokenSupply": "35468692807914834528019490" + "mAssetSupply": "100352275212104480368916567", + "LPTokenSupply": "4868806359124433290237966" }, { "type": "mint", "inputIndex": 0, - "inputQty": "630918010856484372480", - "outputQty0": "628959642306278646658", - "outputQty": "620150126851320043384", - "mpReserves": [ - "75360046035422487543615888", - "28006958844996012287161543", - "20645614579754410622438634" - ], - "fpReserves": [ - "24803258137389368251652566", - "11092955869370801228049746" - ], - "mAssetSupply": "123927560240919496979749748", - "LPTokenSupply": "35469312958041685848062874" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "992468425070466784296960", - "outputQty0": "1005880665821191956516513", - "outputQty": "1008578076416125931464587", - "swapFee1": "595481055042280070578", - "swapFee2": "402352266328476782606", + "inputQty": "1516345984684946414895104", + "outputQty0": "1497739111221897722132277", + "outputQty": "1457454925053877363503723", "mpReserves": [ - "74351467959006361612151301", - "28006958844996012287161543", - "20645614579754410622438634" + "57261276192150035176212706", + "7154118233119525437327890", + "37865407537130659352556616" ], "fpReserves": [ - "23797377471568176295136053", - "11092955869370801228049746" + "2683522718806115312709943", + "3843173822988210895534420" ], - "mAssetSupply": "122922081927364633500015841", - "LPTokenSupply": "34476904081076723291772971" + "mAssetSupply": "101850014323326378091048844", + "LPTokenSupply": "6326261284178310653741689" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "620661404868284121088", - "outputQty0": "621773538646994442683", - "outputQty": "613155636260784541801", + "inputIndex": 0, + "inputQty": "330714958011830991060992", + "outputQty0": "326575384311284695011932", + "outputQty": "316933294574472501810962", "mpReserves": [ - "74351467959006361612151301", - "28007579506400880571282631", - "20645614579754410622438634" + "57591991150161866167273698", + "7154118233119525437327890", + "37865407537130659352556616" ], "fpReserves": [ - "23797999245106823289578736", - "11092955869370801228049746" + "3010098103117400007721875", + "3843173822988210895534420" ], - "mAssetSupply": "122922703700903280494458524", - "LPTokenSupply": "34477517236712984076314772" + "mAssetSupply": "102176589707637662786060776", + "LPTokenSupply": "6643194578752783155552651" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "29937028245048627200", - "outputQty0": "29845936054638751704", - "outputQty": "29432263993579210270", + "inputIndex": 1, + "inputQty": "40143424472600474025984", + "outputQty0": "43067807657688433275432", + "outputQty": "41785270241859368046762", "mpReserves": [ - "74351497896034606660778501", - "28007579506400880571282631", - "20645614579754410622438634" + "57591991150161866167273698", + "7194261657592125911353874", + "37865407537130659352556616" ], "fpReserves": [ - "23798029091042877928330440", - "11092955869370801228049746" + "3053165910775088440997307", + "3843173822988210895534420" ], - "mAssetSupply": "122922733546839335133210228", - "LPTokenSupply": "34477546668976977655525042" + "mAssetSupply": "102219657515295351219336208", + "LPTokenSupply": "6684979848994642523599413" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "62468832067748806656", - "outputQty0": "62580762418597209850", - "outputQty": "62132204708489457494", - "swapFee": "49370701675266873", + "type": "redeem", + "outputIndex": 0, + "inputQty": "2362022866858913824768", + "outputQty0": "2433125294924193788015", + "outputQty": "2462424227253711163758", + "swapFee1": "1417213720115348294", + "swapFee2": "1459875176954516272", "mpReserves": [ - "74351497896034606660778501", - "28007641975232948320089287", - "20645614579754410622438634" + "57589528725934612456109940", + "7194261657592125911353874", + "37865407537130659352556616" ], "fpReserves": [ - "23798091671805296525540290", - "11092893737166092738592252" + "3050732785480164247209292", + "3843173822988210895534420" ], - "mAssetSupply": "122922796127601753730420078", - "LPTokenSupply": "34477546673914047823051729" + "mAssetSupply": "102217225849875603980064465", + "LPTokenSupply": "6682617967849155621309474" }, { "type": "swap_fp_to_mp", - "inputQty": "380520086536769408", + "inputQty": "20086280075162423394304", "outputIndex": 2, - "outputQty": "381070671509137118", + "outputQty": "20166493943275493041303", "swapFee": "0", - "redemptionFee": "153184248601188", + "redemptionFee": "12032440609958568454", "mpReserves": [ - "74351497896034606660778501", - "28007641975232948320089287", - "20645614198683739113301516" + "57589528725934612456109940", + "7194261657592125911353874", + "37845241043187383859515313" ], "fpReserves": [ - "23798091288844675022569077", - "11092894117686179275361660" + "3030678717796899966452078", + "3863260103063373318928724" ], - "mAssetSupply": "122922795744794316476050053", - "LPTokenSupply": "34477546673914047823051729" + "mAssetSupply": "102197183814632949657875705", + "LPTokenSupply": "6682617967849155621309474" }, { - "type": "swap_fp_to_mp", - "inputQty": "63431770358898", - "outputIndex": 0, - "outputQty": "64007828500009", - "swapFee": "0", - "redemptionFee": "25535440626", + "type": "redeem", + "outputIndex": 1, + "inputQty": "57416329817249703526400", + "outputQty0": "59139519962093031947230", + "outputQty": "55084484232283360278614", + "swapFee1": "34449797890349822115", + "swapFee2": "35483711977255819168", "mpReserves": [ - "74351497895970598832278492", - "28007641975232948320089287", - "20645614198683739113301516" + "57589528725934612456109940", + "7139177173359842551075260", + "37845241043187383859515313" ], "fpReserves": [ - "23798091288780836421003300", - "11092894117749611045720558" + "2971539197834806934504848", + "3863260103063373318928724" ], - "mAssetSupply": "122922795744730503409924902", - "LPTokenSupply": "34477546673914047823051729" + "mAssetSupply": "102138079778382833881747643", + "LPTokenSupply": "6625205083011694952765285" }, { - "type": "swap_fp_to_mp", - "inputQty": "92193226979894509568", - "outputIndex": 0, - "outputQty": "93030476227956553110", - "swapFee": "0", - "redemptionFee": "37113807240956773", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "116339518980779664", + "outputQty0": "114875010819872056", + "outputQty": "114988515162929585", + "swapFee": "89171861320455", "mpReserves": [ - "74351404865494370875725382", - "28007641975232948320089287", - "20645614198683739113301516" + "57589528842274131436889604", + "7139177173359842551075260", + "37845241043187383859515313" ], "fpReserves": [ - "23797998504262734029069279", - "11092986310976590940230126" + "2971539312709817754376904", + "3863259988074858155999139" ], - "mAssetSupply": "122922702997326208258947654", - "LPTokenSupply": "34477546673914047823051729" + "mAssetSupply": "102138079893257844701619699", + "LPTokenSupply": "6625205083020612138897330" }, { - "type": "swap_fp_to_mp", - "inputQty": "89467254595738560", - "outputIndex": 2, - "outputQty": "89596694828725906", - "swapFee": "0", - "redemptionFee": "36016422271430", + "type": "mint", + "inputIndex": 0, + "inputQty": "206970280524158836146176", + "outputQty0": "204359154684312132573358", + "outputQty": "198266044546636316796074", "mpReserves": [ - "74351404865494370875725382", - "28007641975232948320089287", - "20645614109087044284575610" + "57796499122798290273035780", + "7139177173359842551075260", + "37845241043187383859515313" ], "fpReserves": [ - "23797998414221678350491825", - "11092986400443845535968686" + "3175898467394129886950262", + "3863259988074858155999139" ], - "mAssetSupply": "122922702907321169002641630", - "LPTokenSupply": "34477546673914047823051729" + "mAssetSupply": "102342439047942156834193057", + "LPTokenSupply": "6823471127567248455693404" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "2492963210081336819712", - "outputQty0": "2526484587807181567652", - "outputQty": "2514014564744472341344", - "swapFee1": "1495777926048802091", - "swapFee2": "1010593835122872627", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1016913759474017", + "outputQty0": "1004056234642422", + "outputQty": "1004576315569551", + "swapFee": "779196035202", "mpReserves": [ - "74351404865494370875725382", - "28007641975232948320089287", - "20643100094522299812234266" + "57796499123815204032509797", + "7139177173359842551075260", + "37845241043187383859515313" ], "fpReserves": [ - "23795471929633871168924173", - "11092986400443845535968686" + "3175898468398186121592684", + "3863259987070281840429588" ], - "mAssetSupply": "122920177433327196943946605", - "LPTokenSupply": "34475053860281759091112226" + "mAssetSupply": "102342439048946213068835479", + "LPTokenSupply": "6823471127567326375296924" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "5291021225018431373312", - "outputQty0": "5315135145480430934787", - "outputQty": "5277022878025859060608", - "swapFee": "4193172642033269051", + "inputQty": "1024626460598406016", + "outputQty0": "1018258537120097745", + "outputQty": "1018785972485838008", + "swapFee": "790217706015769", "mpReserves": [ - "74351404865494370875725382", - "28007641975232948320089287", - "20648391115747318243607578" + "57796499123815204032509797", + "7139177173359842551075260", + "37845242067813844457921329" ], "fpReserves": [ - "23800787064779351599858960", - "11087709377565819676908078" + "3175899486656723241690429", + "3863258968284309354591580" ], - "mAssetSupply": "122925492568472677374881392", - "LPTokenSupply": "34475054279599023294439131" + "mAssetSupply": "102342440067204750188933224", + "LPTokenSupply": "6823471127646348145898500" }, { - "type": "swap_fp_to_mp", - "inputQty": "83706756142034239488", - "outputIndex": 1, - "outputQty": "84059891990781564762", - "swapFee": "0", - "redemptionFee": "33697686847386183", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "252640913699670884352", + "outputQty0": "251070771735677777745", + "outputQty": "251200694706435622930", + "swapFee": "194842991109156720", "mpReserves": [ - "74351404865494370875725382", - "28007557915340957538524525", - "20648391115747318243607578" + "57796499123815204032509797", + "7139177173359842551075260", + "37845494708727544128805681" ], "fpReserves": [ - "23800702820562233134401182", - "11087793084321961711147566" + "3176150557428458919468174", + "3863007767589602918968650" ], - "mAssetSupply": "122925408357953245756809797", - "LPTokenSupply": "34475054279599023294439131" + "mAssetSupply": "102342691137976485866710969", + "LPTokenSupply": "6823471147130647256814172" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "1051521529109883859763200", - "outputQty0": "1053287304905614323693717", - "outputQty": "1044765554392503206534249", - "swapFee": "830877295889359274752", + "inputQty": "472797841028443598225408", + "outputQty0": "505599875023134082677818", + "outputQty": "490326565219471748678247", "mpReserves": [ - "74351404865494370875725382", - "29059079444450841398287725", - "20648391115747318243607578" + "57796499123815204032509797", + "7611975014388286149300668", + "37845494708727544128805681" ], "fpReserves": [ - "24853990125467847458094899", - "10043027529929458504613317" + "3681750432451593002145992", + "3863007767589602918968650" ], - "mAssetSupply": "123978695662858860080503514", - "LPTokenSupply": "34475137367328612230366606" + "mAssetSupply": "102848291012999619949388787", + "LPTokenSupply": "7313797712350119005492419" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "16630495275887", "outputIndex": 1, - "inputQty": "185348699712444149268480", - "outputQty0": "187952575156937240203218", - "outputQty": "187579308255181146296403", - "swapFee1": "111209219827466489561", - "swapFee2": "75181030062774896081", - "mpReserves": [ - "74351404865494370875725382", - "28871500136195660251991322", - "20648391115747318243607578" - ], - "fpReserves": [ - "24666037550310910217891681", - "10043027529929458504613317" - ], - "mAssetSupply": "123790818268731985615196377", - "LPTokenSupply": "34289799788538150827747082" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "27122165964133572608", - "outputQty0": "27502819503873457484", - "outputQty": "27574092282856683264", - "swapFee1": "16273299578480143", - "swapFee2": "11001127801549382", + "outputQty": "15599031268796", + "swapFee": "0", + "redemptionFee": "9975118916", "mpReserves": [ - "74351377291402088019042118", - "28871500136195660251991322", - "20648391115747318243607578" + "57796499123815204032509797", + "7611975014372687118031872", + "37845494708727544128805681" ], "fpReserves": [ - "24666010047491406344434197", - "10043027529929458504613317" + "3681750432434967803951457", + "3863007767606233414244537" ], - "mAssetSupply": "123790790776913609543288275", - "LPTokenSupply": "34289772667999516652022488" + "mAssetSupply": "102848291012983004726313168", + "LPTokenSupply": "7313797712350119005492419" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "25599583458213889048576", - "outputQty0": "25523181560454672771782", - "outputQty": "25154769055562708222597", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "13422449524577370112", + "outputQty0": "13345869986184920311", + "outputQty": "13339441804367856864", + "swapFee": "10351548586081298", "mpReserves": [ - "74376976874860301908090694", - "28871500136195660251991322", - "20648391115747318243607578" + "57796499123815204032509797", + "7611975014372687118031872", + "37845508131177068706175793" ], "fpReserves": [ - "24691533229051861017205979", - "10043027529929458504613317" + "3681763778304953988871768", + "3862994428164429046387673" ], - "mAssetSupply": "123816313958474064216060057", - "LPTokenSupply": "34314927437055079360245085" + "mAssetSupply": "102848304358852990911233479", + "LPTokenSupply": "7313797713385273864100548" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "353015050715740864", - "outputQty0": "357971139479908763", - "outputQty": "357252823464315489", - "swapFee1": "211809030429444", - "swapFee2": "143188455791963", + "inputQty": "2687404252863802638336", + "outputQty0": "2770150404781831754024", + "outputQty": "2599113376309043990559", + "swapFee1": "1612442551718281583", + "swapFee2": "1662090242869099052", "mpReserves": [ - "74376976874860301908090694", - "28871499778942836787675833", - "20648391115747318243607578" + "57796499123815204032509797", + "7609375900996378074041313", + "37845508131177068706175793" ], "fpReserves": [ - "24691532871080721537297216", - "10043027529929458504613317" + "3678993627900172157117744", + "3862994428164429046387673" ], - "mAssetSupply": "123816313600646113191943257", - "LPTokenSupply": "34314927084061209547547165" + "mAssetSupply": "102845535870538451948578507", + "LPTokenSupply": "7311110470376665233290370" }, { - "type": "swap_fp_to_mp", - "inputQty": "817739993908825030656", + "type": "redeem", "outputIndex": 1, - "outputQty": "822844158582507224102", - "swapFee": "0", - "redemptionFee": "329799476975728816", + "inputQty": "147342174315396513792", + "outputQty0": "151878718381304511827", + "outputQty": "142498203585805707565", + "swapFee1": "88405304589237908", + "swapFee2": "91127231028782707", "mpReserves": [ - "74376976874860301908090694", - "28870676934784254280451731", - "20648391115747318243607578" + "57796499123815204032509797", + "7609233402792792268333748", + "37845508131177068706175793" ], "fpReserves": [ - "24690708372388282215256194", - "10043845269923367329643973" + "3678841749181790852605917", + "3862994428164429046387673" ], - "mAssetSupply": "123815489431753150845631051", - "LPTokenSupply": "34314927084061209547547165" + "mAssetSupply": "102845384082947301672849387", + "LPTokenSupply": "7310963137042880295700368" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "581412711176796266037248", - "outputQty0": "589544534778459908449819", - "outputQty": "586520600745425050178058", - "swapFee1": "348847626706077759622", - "swapFee2": "235817813911383963379", + "type": "mint", + "inputIndex": 2, + "inputQty": "736328936793289916416", + "outputQty0": "732125799161945880168", + "outputQty": "709831201998131627561", "mpReserves": [ - "74376976874860301908090694", - "28870676934784254280451731", - "20061870515001893193429520" + "57796499123815204032509797", + "7609233402792792268333748", + "37846244460113861996092209" ], "fpReserves": [ - "24101163837609822306806375", - "10043845269923367329643973" + "3679573874980952798486085", + "3862994428164429046387673" ], - "mAssetSupply": "123226180714788602321144611", - "LPTokenSupply": "33733549257647083889285879" + "mAssetSupply": "102846116208746463618729555", + "LPTokenSupply": "7311672968244878427327929" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "556797648713031943716864", - "outputQty0": "559448789742260171068301", - "outputQty": "551397374788825310675139", + "type": "swap_fp_to_mp", + "inputQty": "649925039787362176", + "outputIndex": 2, + "outputQty": "653053520259987082", + "swapFee": "0", + "redemptionFee": "389829294312185", "mpReserves": [ - "74376976874860301908090694", - "28870676934784254280451731", - "20618668163714925137146384" + "57796499123815204032509797", + "7609233402792792268333748", + "37846243807060341736105127" ], "fpReserves": [ - "24660612627352082477874676", - "10043845269923367329643973" + "3679573225265462278176951", + "3862995078089468833749849" ], - "mAssetSupply": "123785629504530862492212912", - "LPTokenSupply": "34284946632435909199961018" + "mAssetSupply": "102846115559420802392732606", + "LPTokenSupply": "7311672968244878427327929" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "31921793212893192", - "outputQty0": "32069142645577084", - "outputQty": "31781419410657522", - "swapFee": "25284848445892", + "inputIndex": 1, + "inputQty": "19903355649375014912", + "outputQty0": "21200880985365284322", + "outputQty": "21190751849833110589", + "swapFee": "16444213962169374", "mpReserves": [ - "74376976874860301908090694", - "28870676934784254280451731", - "20618668195636718350039576" + "57796499123815204032509797", + "7609253306148441643348660", + "37846243807060341736105127" ], "fpReserves": [ - "24660612659421225123451760", - "10043845238141947918986451" + "3679594426146447643461273", + "3862973887337619000639260" ], - "mAssetSupply": "123785629536600005137789996", - "LPTokenSupply": "34284946632438437684805607" + "mAssetSupply": "102846136760301787758016928", + "LPTokenSupply": "7311672969889299823544866" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "60610281506893128", - "outputQty0": "60429121451887610", - "outputQty": "59886953465566301", - "swapFee": "47645214419408", + "type": "swap_fp_to_mp", + "inputQty": "7164738370805652520960", + "outputIndex": 1, + "outputQty": "6719602091875526567998", + "swapFee": "0", + "redemptionFee": "4297403043154719861", "mpReserves": [ - "74376976935470583414983822", - "28870676934784254280451731", - "20618668195636718350039576" + "57796499123815204032509797", + "7602533704056566116780662", + "37846243807060341736105127" ], "fpReserves": [ - "24660612719850346575339370", - "10043845178254994453420150" + "3672432087741189777025521", + "3870138625708424653160220" ], - "mAssetSupply": "123785629597029126589677606", - "LPTokenSupply": "34284946632443202206247547" + "mAssetSupply": "102838978719299573046301037", + "LPTokenSupply": "7311672969889299823544866" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "184705555997898244096", - "outputQty0": "185558139108723949358", - "outputQty": "182878655368360190703", + "type": "swap_fp_to_mp", + "inputQty": "6583867018003594870784", + "outputIndex": 1, + "outputQty": "6174039043030397126863", + "swapFee": "0", + "redemptionFee": "3948901263898491141", "mpReserves": [ - "74376976935470583414983822", - "28870676934784254280451731", - "20618852901192716248283672" + "57796499123815204032509797", + "7596359665013535719653799", + "37846243807060341736105127" ], "fpReserves": [ - "24660798277989455299288728", - "10043845178254994453420150" + "3665850585634692291789678", + "3876722492726428248031004" ], - "mAssetSupply": "123785815155168235313626964", - "LPTokenSupply": "34285129511098570566438250" + "mAssetSupply": "102832401166094339459556335", + "LPTokenSupply": "7311672969889299823544866" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2990344046572847235072", - "outputQty0": "3004144771893964306206", - "outputQty": "2960763701335077306049", + "inputIndex": 1, + "inputQty": "558966727739190651387904", + "outputQty0": "593061365665450321852415", + "outputQty": "574868701511115366666619", "mpReserves": [ - "74376976935470583414983822", - "28870676934784254280451731", - "20621843245239289095518744" + "57796499123815204032509797", + "8155326392752726371041703", + "37846243807060341736105127" ], "fpReserves": [ - "24663802422761349263594934", - "10043845178254994453420150" + "4258911951300142613642093", + "3876722492726428248031004" ], - "mAssetSupply": "123788819299940129277933170", - "LPTokenSupply": "34288090274799905643744299" + "mAssetSupply": "103425462531759789781408750", + "LPTokenSupply": "7886541671400415190211485" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "26866408003630747648", - "outputQty0": "26990378438747627249", - "outputQty": "26748169549275832245", - "swapFee": "21280495474296815", + "type": "mint", + "inputIndex": 0, + "inputQty": "519985299451326538711040", + "outputQty0": "514194246376337727728801", + "outputQty": "498210922513124422287148", "mpReserves": [ - "74376976935470583414983822", - "28870676934784254280451731", - "20621870111647292726266392" + "58316484423266530571220837", + "8155326392752726371041703", + "37846243807060341736105127" ], "fpReserves": [ - "24663829413139788011222183", - "10043818430085445177587905" + "4773106197676480341370894", + "3876722492726428248031004" ], - "mAssetSupply": "123788846290318568025560419", - "LPTokenSupply": "34288090276927955191173980" + "mAssetSupply": "103939656778136127509137551", + "LPTokenSupply": "8384752593913539612498633" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "69843819267097272254464", - "outputQty0": "70824229624989139723721", - "outputQty": "70469463891161264660863", - "swapFee1": "41906291560258363352", - "swapFee2": "28329691849995655889", + "type": "swap_fp_to_mp", + "inputQty": "4923311302946005712896", + "outputIndex": 1, + "outputQty": "4658783160155348010397", + "swapFee": "0", + "redemptionFee": "2958108283151321037", "mpReserves": [ - "74376976935470583414983822", - "28870676934784254280451731", - "20551400647756131461605529" + "58316484423266530571220837", + "8150667609592571023031306", + "37846243807060341736105127" ], "fpReserves": [ - "24593005183514798871498462", - "10043818430085445177587905" + "4768176017204561472975573", + "3881645804029374253743900" ], - "mAssetSupply": "123718050390385428881492587", - "LPTokenSupply": "34218250648290013944755851" + "mAssetSupply": "103934729555772491792063267", + "LPTokenSupply": "8384752593913539612498633" }, { "type": "swap_fp_to_mp", - "inputQty": "141651271858259950043136", - "outputIndex": 1, - "outputQty": "142504782101297085608512", + "inputQty": "8871364066168124416", + "outputIndex": 2, + "outputQty": "8924342048952650637", "swapFee": "0", - "redemptionFee": "57117097977515406676", + "redemptionFee": "5330202129036221", "mpReserves": [ - "74376976935470583414983822", - "28728172152682957194843219", - "20551400647756131461605529" + "58316484423266530571220837", + "8150667609592571023031306", + "37846234882718292783454490" ], "fpReserves": [ - "24450212438571010354807635", - "10185469701943705127631041" + "4768167133534346412607162", + "3881654675393440421868316" ], - "mAssetSupply": "123575314762539617880208436", - "LPTokenSupply": "34218250648290013944755851" + "mAssetSupply": "103934720677432478860731077", + "LPTokenSupply": "8384752593913539612498633" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "11217534860923512", - "outputQty0": "11373973738404749", - "outputQty": "11403710630952515", - "swapFee1": "6730520916554", - "swapFee2": "4549589495361", + "outputIndex": 2, + "inputQty": "1111353110506703159296", + "outputQty0": "1146511517713454742161", + "outputQty": "1151760349001482441418", + "swapFee1": "666811866304021895", + "swapFee2": "687906910628072845", "mpReserves": [ - "74376976924066872784031307", - "28728172152682957194843219", - "20551400647756131461605529" + "58316484423266530571220837", + "8150667609592571023031306", + "37845083122369291301013072" ], "fpReserves": [ - "24450212427197036616402886", - "10185469701943705127631041" + "4767020622016632957865001", + "3881654675393440421868316" ], - "mAssetSupply": "123575314751170193731299048", - "LPTokenSupply": "34218250637073152135923994" + "mAssetSupply": "103933574853821676034061761", + "LPTokenSupply": "8383641307484219539741526" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1054241791869770268672", - "outputQty0": "1051072067398657297108", - "outputQty": "1041984303916474999884", - "swapFee": "828794754765209893", + "type": "mint", + "inputIndex": 2, + "inputQty": "26401702758184105541632", + "outputQty0": "26265512708722924583091", + "outputQty": "25444578905729264759762", "mpReserves": [ - "74378031165858742554299979", - "28728172152682957194843219", - "20551400647756131461605529" + "58316484423266530571220837", + "8150667609592571023031306", + "37871484825127475406554704" ], "fpReserves": [ - "24451263499264435273699994", - "10184427717639788652631157" + "4793286134725355882448092", + "3881654675393440421868316" ], - "mAssetSupply": "123576365823237592388596156", - "LPTokenSupply": "34218250719952627612444983" + "mAssetSupply": "103959840366530398958644852", + "LPTokenSupply": "8409085886389948804501288" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "498226364103302355877888", - "outputQty0": "499015456434517882776996", - "outputQty": "491835046544891552525902", + "inputIndex": 2, + "inputQty": "232670351600250286768128", + "outputQty0": "231460889374816721041324", + "outputQty": "224207927965793227585219", "mpReserves": [ - "74378031165858742554299979", - "29226398516786259550721107", - "20551400647756131461605529" + "58316484423266530571220837", + "8150667609592571023031306", + "38104155176727725693322832" ], "fpReserves": [ - "24950278955698953156476990", - "10184427717639788652631157" + "5024747024100172603489416", + "3881654675393440421868316" ], - "mAssetSupply": "124075381279672110271373152", - "LPTokenSupply": "34710085766497519164970885" + "mAssetSupply": "104191301255905215679686176", + "LPTokenSupply": "8633293814355742032086507" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "216816765877861335695360", - "outputQty0": "217144657276424492080404", - "outputQty": "215155082851685875853949", - "swapFee": "171205487842625067064", + "type": "swap_fp_to_mp", + "inputQty": "1326547247703764634697728", + "outputIndex": 2, + "outputQty": "1332069772667983201132673", + "swapFee": "0", + "redemptionFee": "795701393723460415933", "mpReserves": [ - "74378031165858742554299979", - "29443215282664120886416467", - "20551400647756131461605529" + "58316484423266530571220837", + "8150667609592571023031306", + "36772085404059742492190159" ], "fpReserves": [ - "25167423612975377648557394", - "9969272634788102776777208" + "3698578034561071910267287", + "5208201923097205056566044" ], - "mAssetSupply": "124292525936948534763453556", - "LPTokenSupply": "34710102887046303427477591" + "mAssetSupply": "102865927967759838446879980", + "LPTokenSupply": "8633293814355742032086507" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "211474222905247727616", - "outputQty0": "212463695496862645594", - "outputQty": "210468657024094063905", - "swapFee": "167495258726497904", + "inputIndex": 0, + "inputQty": "150195508843299831808", + "outputQty0": "148499728557286763119", + "outputQty": "148734234762527792219", + "swapFee": "115312167024803469", "mpReserves": [ - "74378031165858742554299979", - "29443215282664120886416467", - "20551612121979036709333145" + "58316634618775373871052645", + "8150667609592571023031306", + "36772085404059742492190159" ], "fpReserves": [ - "25167636076670874511202988", - "9969062166131078682713303" + "3698726534289629197030406", + "5208053188862442528773825" ], - "mAssetSupply": "124292738400644031626099150", - "LPTokenSupply": "34710102903795829300127381" + "mAssetSupply": "102866076467488395733643099", + "LPTokenSupply": "8633293825886958734566853" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "5703138930153545728", - "outputQty0": "5686255965888986328", - "outputQty": "5632860581447443295", - "swapFee": "4482746102271205", + "type": "swap_fp_to_mp", + "inputQty": "242250857409982201856", + "outputIndex": 1, + "outputQty": "228567306492856324006", + "swapFee": "0", + "redemptionFee": "145005222381043924", "mpReserves": [ - "74378036868997672707845707", - "29443215282664120886416467", - "20551612121979036709333145" + "58316634618775373871052645", + "8150439042286078166707300", + "36772085404059742492190159" ], "fpReserves": [ - "25167641762926840400189316", - "9969056533270497235270008" + "3698484858918994123822301", + "5208295439719852510975681" ], - "mAssetSupply": "124292744086899997515085478", - "LPTokenSupply": "34710102904244103910354501" + "mAssetSupply": "102865834937122983041478918", + "LPTokenSupply": "8633293825886958734566853" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "132537181779500046745600", - "outputQty0": "134413904796334860115686", - "outputQty": "134158340420891740025207", - "swapFee1": "79522309067700028047", - "swapFee2": "53765561918533944046", + "type": "swap_fp_to_mp", + "inputQty": "53433188060424560443392", + "outputIndex": 0, + "outputQty": "53877166477833874342886", + "swapFee": "0", + "redemptionFee": "31980710098291492890", "mpReserves": [ - "74378036868997672707845707", - "29309056942243229146391260", - "20551612121979036709333145" + "58262757452297539996709759", + "8150439042286078166707300", + "36772085404059742492190159" ], "fpReserves": [ - "25033227858130505540073630", - "9969056533270497235270008" + "3645183675421841635671273", + "5261728627780277071419073" ], - "mAssetSupply": "124158383947665581188913838", - "LPTokenSupply": "34577573674695510633611705" + "mAssetSupply": "102812565734335928844820780", + "LPTokenSupply": "8633293825886958734566853" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "5505895048758030336", - "outputQty0": "5531619319058828318", - "outputQty": "5451165875585417665", + "type": "redeem", + "outputIndex": 1, + "inputQty": "14777530323245809532928", + "outputQty0": "15213493299159846675224", + "outputQty": "14387981171097917615275", + "swapFee1": "8866518193947485719", + "swapFee2": "9128095979495908005", "mpReserves": [ - "74378036868997672707845707", - "29309056942243229146391260", - "20551617627874085467363481" + "58262757452297539996709759", + "8136051061114980249092025", + "36772085404059742492190159" ], "fpReserves": [ - "25033233389749824598901948", - "9969056533270497235270008" + "3629970182122681788996049", + "5261728627780277071419073" ], - "mAssetSupply": "124158389479284900247742156", - "LPTokenSupply": "34577579125861386219029370" + "mAssetSupply": "102797361369132748494053561", + "LPTokenSupply": "8618517182215532319782496" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "31190024319183427207168", - "outputQty0": "31097398684892415622973", - "outputQty": "30806902881605575543154", - "swapFee": "24516020358686664136", + "inputIndex": 1, + "inputQty": "222657540695810932736", + "outputQty0": "235312963925751746324", + "outputQty": "235737090170358434767", + "swapFee": "182747654513727986", "mpReserves": [ - "74409226893316856135052875", - "29309056942243229146391260", - "20551617627874085467363481" + "58262757452297539996709759", + "8136273718655676060024761", + "36772085404059742492190159" ], "fpReserves": [ - "25064330788434717014524921", - "9938249630388891659726854" + "3630205495086607540742373", + "5261492890690106712984306" ], - "mAssetSupply": "124189486877969792663365129", - "LPTokenSupply": "34577581577463422087695783" + "mAssetSupply": "102797596682096674245799885", + "LPTokenSupply": "8618517200490297771155294" }, { "type": "swap_fp_to_mp", - "inputQty": "7733023258088484896768", - "outputIndex": 1, - "outputQty": "7784939194899954187455", + "inputQty": "18524285105143963189248", + "outputIndex": 2, + "outputQty": "18554098711295136150848", "swapFee": "0", - "redemptionFee": "3119957196063915112", + "redemptionFee": "11085330254244267972", "mpReserves": [ - "74409226893316856135052875", - "29301272003048329192203805", - "20551617627874085467363481" + "58262757452297539996709759", + "8136273718655676060024761", + "36753531305348447356039311" ], "fpReserves": [ - "25056530895444557226743445", - "9945982653646980144623622" + "3611729944662867094120776", + "5280017175795250676173554" ], - "mAssetSupply": "124181690104936828939498765", - "LPTokenSupply": "34577581577463422087695783" + "mAssetSupply": "102779132217003188043446260", + "LPTokenSupply": "8618517200490297771155294" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10164254413179912192", - "outputQty0": "10179712821949916869", - "outputQty": "10031506116772115121", + "type": "swap_fp_to_mp", + "inputQty": "41224962445816371347456", + "outputIndex": 2, + "outputQty": "41286387024345616519953", + "swapFee": "0", + "redemptionFee": "24667199324101856945", "mpReserves": [ - "74409226893316856135052875", - "29301282167302742372115997", - "20551617627874085467363481" + "58262757452297539996709759", + "8136273718655676060024761", + "36712244918324101739519358" ], "fpReserves": [ - "25056541075157379176660314", - "9945982653646980144623622" + "3570617945789363999210977", + "5321242138241067047521010" ], - "mAssetSupply": "124181700284649650889415634", - "LPTokenSupply": "34577591608969538859810904" + "mAssetSupply": "102738044885329009050393406", + "LPTokenSupply": "8618517200490297771155294" }, { - "type": "mint", + "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "62717619877681251221504", - "outputQty0": "63009850273418273521498", - "outputQty": "62092143489113614743688", + "inputQty": "1249675511868839679754240", + "outputQty0": "1243411625599292452573521", + "outputQty": "1243399773712404310091105", + "swapFee": "965134411158752586195", "mpReserves": [ - "74409226893316856135052875", - "29301282167302742372115997", - "20614335247751766718584985" + "58262757452297539996709759", + "8136273718655676060024761", + "37961920430192941419273598" ], "fpReserves": [ - "25119550925430797450181812", - "9945982653646980144623622" + "4814029571388656451784498", + "4077842364528662737429905" ], - "mAssetSupply": "124244710134923069162937132", - "LPTokenSupply": "34639683752458652474554592" + "mAssetSupply": "103981456510928301502966927", + "LPTokenSupply": "8618613713931413646413913" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "28710146842711", - "outputQty0": "28843459852639", - "outputQty": "28572433121607", - "swapFee": "22738569288", + "type": "redeem", + "outputIndex": 0, + "inputQty": "1700906478420412160", + "outputQty0": "1754676414228867535", + "outputQty": "1773493772913910895", + "swapFee1": "1020543887052247", + "swapFee2": "1052805848537320", "mpReserves": [ - "74409226893316856135052875", - "29301282167302742372115997", - "20614335247780476865427696" + "58262755678803767082798864", + "8136273718655676060024761", + "37961920430192941419273598" ], "fpReserves": [ - "25119550925459640910034451", - "9945982653618407711502015" + "4814027816712242222916963", + "4077842364528662737429905" ], - "mAssetSupply": "124244710134951912622789771", - "LPTokenSupply": "34639683752458654748411520" + "mAssetSupply": "103981454757304693122636712", + "LPTokenSupply": "8618612013126989614706977" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "150204968555516706947072", - "outputQty0": "149759175846312339410724", - "outputQty": "147575243992770571006998", + "type": "swap_fp_to_mp", + "inputQty": "15585641215987248267264", + "outputIndex": 1, + "outputQty": "14738598199570099248421", + "swapFee": "0", + "redemptionFee": "9361559855702363772", "mpReserves": [ - "74559431861872372841999947", - "29301282167302742372115997", - "20614335247780476865427696" + "58262755678803767082798864", + "8121535120456105960776340", + "37961920430192941419273598" ], "fpReserves": [ - "25269310101305953249445175", - "9945982653618407711502015" + "4798425216952738283296765", + "4093428005744649985697169" ], - "mAssetSupply": "124394469310798224962200495", - "LPTokenSupply": "34787258996451425319418518" + "mAssetSupply": "103965861519105044885380286", + "LPTokenSupply": "8618612013126989614706977" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4346890853841179246592", - "outputQty0": "4353555312965648684255", - "outputQty": "4290009412141082636969", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "3986957972593896325120", + "outputQty0": "3942205430370424365911", + "outputQty": "3934841293541150906288", + "swapFee": "3055350679486379561", "mpReserves": [ - "74559431861872372841999947", - "29305629058156583551362589", - "20614335247780476865427696" + "58266742636776360979123984", + "8121535120456105960776340", + "37961920430192941419273598" ], "fpReserves": [ - "25273663656618918898129430", - "9945982653618407711502015" + "4802367422383108707662676", + "4089493164451108834790881" ], - "mAssetSupply": "124398822866111190610884750", - "LPTokenSupply": "34791549005863566402055487" + "mAssetSupply": "103969803724535415309746197", + "LPTokenSupply": "8618612318662057563344933" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "1500806475054267236352", "outputIndex": 2, - "inputQty": "7329201795946950688768", - "outputQty0": "7433301157149038929082", - "outputQty": "7395834919271248442134", - "swapFee1": "4397521077568170413", - "swapFee2": "2973320462859615571", + "outputQty": "1509395376740711915231", + "swapFee": "0", + "redemptionFee": "901450820566334523", "mpReserves": [ - "74559431861872372841999947", - "29305629058156583551362589", - "20606939412861205616985562" + "58266742636776360979123984", + "8121535120456105960776340", + "37960411034816200707358367" ], "fpReserves": [ - "25266230355461769859200348", - "9945982653618407711502015" + "4800865004348831483457619", + "4090993970926163102027233" ], - "mAssetSupply": "124391392538274504431571239", - "LPTokenSupply": "34784220243819727208183760" + "mAssetSupply": "103968302207951958651875663", + "LPTokenSupply": "8618612318662057563344933" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "2271430604434226544640", - "outputQty0": "2303690861347163581328", - "outputQty": "2292073850564635847401", - "swapFee1": "1362858362660535926", - "swapFee2": "921476344538865432", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "38641214815818672", + "outputQty0": "38439523056770978", + "outputQty": "38367661640934199", + "swapFee": "29791935409968", "mpReserves": [ - "74559431861872372841999947", - "29305629058156583551362589", - "20604647339010640981138161" + "58266742636776360979123984", + "8121535120456105960776340", + "37960411073457415523177039" ], "fpReserves": [ - "25263926664600422695619020", - "9945982653618407711502015" + "4800865042788354540228597", + "4090993932558501461093034" ], - "mAssetSupply": "124389089768889501806855343", - "LPTokenSupply": "34781948949501129247692712" + "mAssetSupply": "103968302246391481708646641", + "LPTokenSupply": "8618612318665036756885929" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "885895880636298061414400", - "outputQty0": "887177679011950139801924", - "outputQty": "877840550644122468657660", - "swapFee": "699328870872385629757", + "type": "mint", + "inputIndex": 2, + "inputQty": "381752546390578063998976", + "outputQty0": "379737640066102623730397", + "outputQty": "367842468422990443335550", "mpReserves": [ - "74559431861872372841999947", - "30191524938792881612776989", - "20604647339010640981138161" + "58266742636776360979123984", + "8121535120456105960776340", + "38342163619847993587176015" ], "fpReserves": [ - "26151104343612372835420944", - "9068142102974285242844355" + "5180602682854457163958994", + "4090993932558501461093034" ], - "mAssetSupply": "125276267447901451946657267", - "LPTokenSupply": "34782018882388216486255687" + "mAssetSupply": "104348039886457584332377038", + "LPTokenSupply": "8986454787088027200221479" }, { - "type": "swap_fp_to_mp", - "inputQty": "10822882141484104024064", - "outputIndex": 0, - "outputQty": "10969215293827299642739", - "swapFee": "0", - "redemptionFee": "4376633123164125522", + "type": "redeem", + "outputIndex": 2, + "inputQty": "42769531947747180544", + "outputQty0": "44131301221284264538", + "outputQty": "44341438341461686185", + "swapFee1": "25661719168648308", + "swapFee2": "26478780732770558", "mpReserves": [ - "74548462646578545542357208", - "30191524938792881612776989", - "20604647339010640981138161" + "58266742636776360979123984", + "8121535120456105960776340", + "38342119278409652125489830" ], "fpReserves": [ - "26140162760804462521615504", - "9078964985115769346868419" + "5180558551553235879694456", + "4090993932558501461093034" ], - "mAssetSupply": "125265330241726664796977349", - "LPTokenSupply": "34782018882388216486255687" + "mAssetSupply": "104347995781635143780883058", + "LPTokenSupply": "8986412020122251369905765" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "8587901038840880562176", "outputIndex": 1, - "inputQty": "299961059430991226994688", - "outputQty0": "304396698010960513742686", - "outputQty": "303852252038604613645018", - "swapFee1": "179976635658594736196", - "swapFee2": "121758679204384205497", + "outputQty": "8121309118600884633813", + "swapFee": "0", + "redemptionFee": "5160923135858737680", "mpReserves": [ - "74548462646578545542357208", - "29887672686754276999131971", - "20604647339010640981138161" + "58266742636776360979123984", + "8113413811337505076142527", + "38342119278409652125489830" ], "fpReserves": [ - "25835766062793502007872818", - "9078964985115769346868419" + "5171957012993471316893226", + "4099581833597342341655210" ], - "mAssetSupply": "124961055302394908667440160", - "LPTokenSupply": "34482075820620791118734618" + "mAssetSupply": "104339399403998515076819508", + "LPTokenSupply": "8986412020122251369905765" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "120653448563046", - "outputQty0": "121219905681024", - "outputQty": "119384706994772", + "type": "redeem", + "outputIndex": 1, + "inputQty": "3569219624254963187712", + "outputQty0": "3682815056024283373457", + "outputQty": "3476930529808492872012", + "swapFee1": "2141531774552977912", + "swapFee2": "2209689033614570024", "mpReserves": [ - "74548462646578545542357208", - "29887672686754276999131971", - "20604647339131294429701207" + "58266742636776360979123984", + "8109936880807696583270515", + "38342119278409652125489830" ], "fpReserves": [ - "25835766062914721913553842", - "9078964985115769346868419" + "5168274197937447033519769", + "4099581833597342341655210" ], - "mAssetSupply": "124961055302516128573121184", - "LPTokenSupply": "34482075820740175825729390" + "mAssetSupply": "104335718798631524408016075", + "LPTokenSupply": "8982843014651173862015844" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "8046348214816156418048", - "outputQty0": "8165129488584039528323", - "outputQty": "8150288753537858894091", - "swapFee1": "4827808928889693850", - "swapFee2": "3266051795433615811", + "outputIndex": 0, + "inputQty": "139298167584322754707456", + "outputQty0": "143725084023834191822362", + "outputQty": "145265171901086954724498", + "swapFee1": "83578900550593652824", + "swapFee2": "86235050414300515093", "mpReserves": [ - "74548462646578545542357208", - "29879522398000739140237880", - "20604647339131294429701207" + "58121477464875274024399486", + "8109936880807696583270515", + "38342119278409652125489830" ], "fpReserves": [ - "25827600933426137874025519", - "9078964985115769346868419" + "5024549113913612841697407", + "4099581833597342341655210" ], - "mAssetSupply": "124952893439079339967208672", - "LPTokenSupply": "34474029955306252558280727" + "mAssetSupply": "104192079949658104516708806", + "LPTokenSupply": "8843553204956906166673670" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "49417988690441052160", - "outputQty0": "49272864565118151385", - "outputQty": "48526970813185244563", + "inputIndex": 2, + "inputQty": "90163478967916199936", + "outputQty0": "89680438047882855008", + "outputQty": "86869126852276960083", "mpReserves": [ - "74548512064567235983409368", - "29879522398000739140237880", - "20604647339131294429701207" + "58121477464875274024399486", + "8109936880807696583270515", + "38342209441888620041689766" ], "fpReserves": [ - "25827650206290702992176904", - "9078964985115769346868419" + "5024638794351660724552415", + "4099581833597342341655210" ], - "mAssetSupply": "124952942711943905085360057", - "LPTokenSupply": "34474078482277065743525290" + "mAssetSupply": "104192169630096152399563814", + "LPTokenSupply": "8843640074083758443633753" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "12344919556032835584", "outputIndex": 2, - "inputQty": "24801393728697604767744", - "outputQty0": "25167439214057379362387", - "outputQty": "25039662247104458153583", - "swapFee1": "14880836237218562860", - "swapFee2": "10066975685622951744", + "outputQty": "12420978495685212313", + "swapFee": "0", + "redemptionFee": "7417110860573935", "mpReserves": [ - "74548512064567235983409368", - "29879522398000739140237880", - "20579607676884189971547624" + "58121477464875274024399486", + "8109936880807696583270515", + "38342197020910124356477453" ], "fpReserves": [ - "25802482767076645612814517", - "9078964985115769346868419" + "5024626432500226434660614", + "4099594178516898374490794" ], - "mAssetSupply": "124927785339705533328949414", - "LPTokenSupply": "34449278576631991860613832" + "mAssetSupply": "104192157275661828970245948", + "LPTokenSupply": "8843640074083758443633753" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "351974155836228789862400", - "outputQty0": "350935843953218664772685", - "outputQty": "346767636936600994034946", - "swapFee": "276490721719417911153", + "inputIndex": 1, + "inputQty": "2142714796425171347439616", + "outputQty0": "2241979194624314334694256", + "outputQty": "2224414829240831035119407", + "swapFee": "1736276487240734541239", "mpReserves": [ - "74900486220403464773271768", - "29879522398000739140237880", - "20579607676884189971547624" + "58121477464875274024399486", + "10252651677232867930710131", + "38342197020910124356477453" ], "fpReserves": [ - "26153418611029864277587202", - "8732197348179168352833473" + "7266605627124540769354870", + "1875179349276067339371387" ], - "mAssetSupply": "125278721183658751993722099", - "LPTokenSupply": "34449306225704163802404947" + "mAssetSupply": "106434136470286143304940204", + "LPTokenSupply": "8843813701732482517087876" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "7536745726031558656", - "outputQty0": "7547608380285349963", - "outputQty": "7454094335125193808", - "swapFee": "5945105703918449", + "inputIndex": 0, + "inputQty": "568853975010181775360", + "outputQty0": "563831296459364609386", + "outputQty": "553232464112971013432", + "swapFee": "434727590401923170", "mpReserves": [ - "74900486220403464773271768", - "29879529934746465171796536", - "20579607676884189971547624" + "58122046318850284206174846", + "10252651677232867930710131", + "38342197020910124356477453" ], "fpReserves": [ - "26153426158638244562937165", - "8732189894084833227639665" + "7267169458421000133964256", + "1874626116811954368357955" ], - "mAssetSupply": "125278728731267132279072062", - "LPTokenSupply": "34449306226298674372796791" + "mAssetSupply": "106434700301582602669549590", + "LPTokenSupply": "8843813745205241557280193" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "84809701102377861120", - "outputQty0": "84931935936493905082", - "outputQty": "83879626614144261944", - "swapFee": "66899248674511769", + "type": "mint", + "inputIndex": 0, + "inputQty": "41847325055064440832", + "outputQty0": "41477832851847171002", + "outputQty": "39975428701978822326", "mpReserves": [ - "74900486220403464773271768", - "29879614744447567549657656", - "20579607676884189971547624" + "58122088166175339270615678", + "10252651677232867930710131", + "38342197020910124356477453" ], "fpReserves": [ - "26153511090574181056842247", - "8732106014458219083377721" + "7267210936253851981135258", + "1874626116811954368357955" ], - "mAssetSupply": "125278813663203068772977144", - "LPTokenSupply": "34449306232988599240247967" + "mAssetSupply": "106434741779415454516720592", + "LPTokenSupply": "8843853720633943536102519" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "296274316120773355372544", - "outputQty0": "295394719087627945935447", - "outputQty": "291598376418230874055622", - "swapFee": "232669992983314525534", + "type": "swap_fp_to_mp", + "inputQty": "3570112604803671523328", + "outputIndex": 2, + "outputQty": "3647145636796432233456", + "swapFee": "0", + "redemptionFee": "2181290394938613490", "mpReserves": [ - "75196760536524238128644312", - "29879614744447567549657656", - "20579607676884189971547624" + "58122088166175339270615678", + "10252651677232867930710131", + "38338549875273327924243997" ], "fpReserves": [ - "26448905809661809002777694", - "8440507638039988209322099" + "7263575452262287625318296", + "1878196229416758039881283" ], - "mAssetSupply": "125574208382290696718912591", - "LPTokenSupply": "34449329499987897571700520" + "mAssetSupply": "106431108476714285099517120", + "LPTokenSupply": "8843853720633943536102519" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "163635561469803690459136", - "outputQty0": "163147553184690024705846", - "outputQty": "160928023888751099496786", - "swapFee": "128474972439698145068", + "inputIndex": 1, + "inputQty": "61378979692771368960", + "outputQty0": "63633070018530662572", + "outputQty": "62441149077889493679", + "swapFee": "49063289719168471", "mpReserves": [ - "75360396097994041819103448", - "29879614744447567549657656", - "20579607676884189971547624" + "58122088166175339270615678", + "10252713056212560702079091", + "38338549875273327924243997" ], "fpReserves": [ - "26612053362846499027483540", - "8279579614151237109825313" + "7263639085332306155980868", + "1878133788267680150387604" ], - "mAssetSupply": "125737355935475386743618437", - "LPTokenSupply": "34449342347485141541515026" + "mAssetSupply": "106431172109784303630179692", + "LPTokenSupply": "8843853725540272508019366" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "247084805674954188128256", + "hardLimitError": true }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "93426719245152538329088", - "outputQty0": "94866305721098953952622", - "outputQty": "94372355074324956192287", - "swapFee1": "56056031547091522997", - "swapFee2": "37946522288439581581", + "outputIndex": 0, + "inputQty": "42297341717379872", + "outputQty0": "43860009939082380", + "outputQty": "44224181546853794", + "swapFee1": "25378405030427", + "swapFee2": "26316005963449", "mpReserves": [ - "75360396097994041819103448", - "29879614744447567549657656", - "20485235321809865015355337" + "58122088121951157723761884", + "10252713056212560702079091", + "38338549875273327924243997" ], "fpReserves": [ - "26517187057125400073530918", - "8279579614151237109825313" + "7263639041472296216898488", + "1878133788267680150387604" ], - "mAssetSupply": "125642527576276576229247396", - "LPTokenSupply": "34355921233843143712338237" + "mAssetSupply": "106431172065950609697060761", + "LPTokenSupply": "8843853683245468631142536" }, { - "type": "swap_fp_to_mp", - "inputQty": "59904779704500179959808", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "59736074981823806963712", + "hardLimitError": true + }, + { + "type": "redeem", "outputIndex": 0, - "outputQty": "60846401522650743133411", - "swapFee": "0", - "redemptionFee": "24275327952374271603", + "inputQty": "46821001148875222810624", + "outputQty0": "48549746981566841794767", + "outputQty": "48952617114916407950517", + "swapFee1": "28092600689325133686", + "swapFee2": "29129848188940105076", "mpReserves": [ - "75299549696471391075970037", - "29879614744447567549657656", - "20485235321809865015355337" + "58073135504836241315811367", + "10252713056212560702079091", + "38338549875273327924243997" ], "fpReserves": [ - "26456498737244464394521113", - "8339484393855737289785121" + "7215089294490729375103721", + "1878133788267680150387604" ], - "mAssetSupply": "125581863531723592924509194", - "LPTokenSupply": "34355921233843143712338237" + "mAssetSupply": "106382651448817231795371070", + "LPTokenSupply": "8797035491356662340845280" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "95659396237982647189504", - "outputQty0": "97126634458557516413265", - "outputQty": "97379177990425820268859", - "swapFee1": "57395637742789588313", - "swapFee2": "38850653783423006565", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "495716534779211000315904", + "hardLimitError": true + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "626165811636588672", + "outputQty0": "620643035978863612", + "outputQty": "609143152834433192", + "swapFee": "478556338968478", "mpReserves": [ - "75202170518480965255701178", - "29879614744447567549657656", - "20485235321809865015355337" + "58073136131002052952400039", + "10252713056212560702079091", + "38338549875273327924243997" ], "fpReserves": [ - "26359372102785906878107848", - "8339484393855737289785121" + "7215089915133765353967333", + "1878133179124527315954412" ], - "mAssetSupply": "125484775747918818831102494", - "LPTokenSupply": "34260267577168935344107564" + "mAssetSupply": "106382652069460267774234682", + "LPTokenSupply": "8797035491404517974742127" }, { "type": "swap_fp_to_mp", - "inputQty": "26891618969667231744", - "outputIndex": 1, - "outputQty": "27187781207975221584", + "inputQty": "109122484562333641211904", + "outputIndex": 0, + "outputQty": "111894333622128220953782", "swapFee": "0", - "redemptionFee": "10895295910319527", + "redemptionFee": "66585154511259651636", "mpReserves": [ - "75202170518480965255701178", - "29879587556666359574436072", - "20485235321809865015355337" + "57961241797379924731446257", + "10252713056212560702079091", + "38338549875273327924243997" ], "fpReserves": [ - "26359344864546131079289886", - "8339511285474706957016865" + "7104114657614999267906277", + "1987255663686860957166316" ], - "mAssetSupply": "125484748520574338942604059", - "LPTokenSupply": "34260267577168935344107564" + "mAssetSupply": "106271743397096012947825262", + "LPTokenSupply": "8797035491404517974742127" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1456855323536673", - "outputQty0": "1458975322436543", - "outputQty": "1436085294887449", + "inputIndex": 2, + "inputQty": "9739636110258058821632", + "outputQty0": "9702554206282592090619", + "outputQty": "9355770791188449832998", "mpReserves": [ - "75202170518480965255701178", - "29879587558123214897972745", - "20485235321809865015355337" + "57961241797379924731446257", + "10252713056212560702079091", + "38348289511383585983065629" ], "fpReserves": [ - "26359344866005106401726429", - "8339511285474706957016865" + "7113817211821281859996896", + "1987255663686860957166316" ], - "mAssetSupply": "125484748522033314265040602", - "LPTokenSupply": "34260267578605020638995013" + "mAssetSupply": "106281445951302295539915881", + "LPTokenSupply": "8806391262195706424575125" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "385628860745105728", - "outputQty0": "391540404759383546", - "outputQty": "390815079031465657", - "swapFee1": "231377316447063", - "swapFee2": "156616161903753", + "outputIndex": 0, + "inputQty": "7865917536398891008", + "outputQty0": "8152616573512707950", + "outputQty": "8220037175336692127", + "swapFee1": "4719550521839334", + "swapFee2": "4891569944107624", "mpReserves": [ - "75202170518480965255701178", - "29879587167308135866507088", - "20485235321809865015355337" + "57961233577342749394754130", + "10252713056212560702079091", + "38348289511383585983065629" ], "fpReserves": [ - "26359344474464701642342883", - "8339511285474706957016865" + "7113809059204708347288946", + "1987255663686860957166316" ], - "mAssetSupply": "125484748130649525667560809", - "LPTokenSupply": "34260267192999297625533991" + "mAssetSupply": "106281437803577291971315555", + "LPTokenSupply": "8806383396750125077868050" }, { "type": "swap_fp_to_mp", - "inputQty": "452833548155738193920", + "inputQty": "463560356638927016165376", "outputIndex": 2, - "outputQty": "456279312208651035956", + "outputQty": "470889892661833426884262", "swapFee": "0", - "redemptionFee": "183467992971754397", + "redemptionFee": "281644222687317132568", "mpReserves": [ - "75202170518480965255701178", - "29879587167308135866507088", - "20484779042497656364319381" + "57961233577342749394754130", + "10252713056212560702079091", + "37877399618721752556181367" ], "fpReserves": [ - "26358885804482272256350192", - "8339964119022862695210785" + "6644402021392513126342149", + "2450816020325787973331692" ], - "mAssetSupply": "125484289644135089253322515", - "LPTokenSupply": "34260267192999297625533991" + "mAssetSupply": "105812312409987784067501326", + "LPTokenSupply": "8806383396750125077868050" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "183403778603590610845696", - "outputQty0": "183667462418302670538952", - "outputQty": "181126758794111509122950", - "swapFee": "144626058677537866955", + "inputQty": "13219753596967763050496", + "outputQty0": "13699228968091925478267", + "outputQty": "13229010907692740582898", "mpReserves": [ - "75202170518480965255701178", - "30062990945911726477352784", - "20484779042497656364319381" + "57961233577342749394754130", + "10265932809809528465129587", + "37877399618721752556181367" ], "fpReserves": [ - "26542553266900574926889144", - "8158837360228751186087835" + "6658101250360605051820416", + "2450816020325787973331692" ], - "mAssetSupply": "125667957106553391923861467", - "LPTokenSupply": "34260281655605165379320686" + "mAssetSupply": "105826011638955875992979593", + "LPTokenSupply": "8819612407657817818450948" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "48046277156645321572352", - "outputQty0": "48790393699469376817926", - "outputQty": "48701479809464171082189", - "swapFee1": "28827766293987192943", - "swapFee2": "19516157479787750727", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "4491932305408433586176", + "outputQty0": "4654573375565431211981", + "outputQty": "4605220337740496227636", + "swapFee": "3595822980282906125", "mpReserves": [ - "75202170518480965255701178", - "30014289466102262306270595", - "20484779042497656364319381" + "57961233577342749394754130", + "10270424742114936898715763", + "37877399618721752556181367" ], "fpReserves": [ - "26493762873201105550071218", - "8158837360228751186087835" + "6662755823736170483032397", + "2446210799988047477104056" ], - "mAssetSupply": "125619186229011402334794268", - "LPTokenSupply": "34212238261225149456467628" + "mAssetSupply": "105830666212331441424191574", + "LPTokenSupply": "8819612767240115846741560" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "139792444486810386432", - "outputQty0": "141956866307169359916", - "outputQty": "142324385546038393434", - "swapFee1": "83875466692086231", - "swapFee2": "56782746522867743", + "outputIndex": 2, + "inputQty": "210739609256676823138304", + "outputQty0": "218086233304776681907726", + "outputQty": "218753015202019038226492", + "swapFee1": "126443765554006093882", + "swapFee2": "130851739982866009144", "mpReserves": [ - "75202028194095419217307744", - "30014289466102262306270595", - "20484779042497656364319381" + "57961233577342749394754130", + "10270424742114936898715763", + "37658646603519733517954875" ], "fpReserves": [ - "26493620916334798380711302", - "8158837360228751186087835" + "6444669590431393801124671", + "2446210799988047477104056" ], - "mAssetSupply": "125619044328927841688302095", - "LPTokenSupply": "34212098477168209315289819" + "mAssetSupply": "105612710830766647608292992", + "LPTokenSupply": "8608885802359994424212644" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "1558280139293888768", - "outputQty0": "1582407142302621613", - "outputQty": "1586503908692197833", - "swapFee1": "934968083576333", - "swapFee2": "632962856921048", + "outputIndex": 2, + "inputQty": "1733147054996763705344", + "outputQty0": "1793450331711672404993", + "outputQty": "1798880904829320277560", + "swapFee1": "1039888232998058223", + "swapFee2": "1076070199027003442", "mpReserves": [ - "75202026607591510525109911", - "30014289466102262306270595", - "20484779042497656364319381" + "57961233577342749394754130", + "10270424742114936898715763", + "37656847722614904197677315" ], "fpReserves": [ - "26493619333927656078089689", - "8158837360228751186087835" + "6442876140099682128719678", + "2446210799988047477104056" ], - "mAssetSupply": "125619042747153662242601530", - "LPTokenSupply": "34212096918981566829758684" + "mAssetSupply": "105610918456505134962891441", + "LPTokenSupply": "8607152759293820960313122" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "655885582256004136960", - "outputQty0": "653930225513661313753", - "outputQty": "643573314869221067462", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "828071975375933696", + "outputQty0": "825076994940886249", + "outputQty": "816775312731367257", + "swapFee": "637485189772204", "mpReserves": [ - "75202682493173766529246871", - "30014289466102262306270595", - "20484779042497656364319381" + "57961233577342749394754130", + "10270424742114936898715763", + "37656848550686879573611011" ], "fpReserves": [ - "26494273264153169739403442", - "8158837360228751186087835" + "6442876965176677069605927", + "2446209983212734745736799" ], - "mAssetSupply": "125619696677379175903915283", - "LPTokenSupply": "34212740492296436050826146" + "mAssetSupply": "105610919281582129903777690", + "LPTokenSupply": "8607152759357569479290342" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "231345292396930048", - "outputQty0": "234927265914273641", - "outputQty": "235535488924610671", - "swapFee1": "138807175438158", - "swapFee2": "93970906365709", + "type": "mint", + "inputIndex": 2, + "inputQty": "58865877077004408", + "outputQty0": "58652970275271384", + "outputQty": "56646834241650502", "mpReserves": [ - "75202682257638277604636200", - "30014289466102262306270595", - "20484779042497656364319381" + "57961233577342749394754130", + "10270424742114936898715763", + "37656848609552756650615419" ], "fpReserves": [ - "26494273029225903825129801", - "8158837360228751186087835" + "6442877023829647344877311", + "2446209983212734745736799" ], - "mAssetSupply": "125619696442545880896007351", - "LPTokenSupply": "34212740260965024371439913" + "mAssetSupply": "105610919340235100179049074", + "LPTokenSupply": "8607152816004403720940844" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "78284001763202258960384", - "outputQty0": "78050437247299522711029", - "outputQty": "76937447241582413786393", - "swapFee": "61450921146633585331", + "inputIndex": 2, + "inputQty": "13792893253673084256256", + "outputQty0": "13742981680407752320953", + "outputQty": "13603833917681189286633", + "swapFee": "10618287175328547235", "mpReserves": [ - "75280966259401479863596584", - "30014289466102262306270595", - "20484779042497656364319381" + "57961233577342749394754130", + "10270424742114936898715763", + "37670641502806429734871675" ], "fpReserves": [ - "26572323466473203347840830", - "8081899912987168772301442" + "6456620005510055097198264", + "2432606149295053556450166" ], - "mAssetSupply": "125697746879793180418718380", - "LPTokenSupply": "34212746406057139034798446" + "mAssetSupply": "105624662321915507931370027", + "LPTokenSupply": "8607153877833121253795567" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "362071344413610757586944", - "outputQty0": "367689067035052655222098", - "outputQty": "368638718367309151511833", - "swapFee1": "217242806648166454552", - "swapFee2": "147075626814021062088", + "type": "mint", + "inputIndex": 2, + "inputQty": "276753031317973412872192", + "outputQty0": "275740916615266629578370", + "outputQty": "266273733381313048655383", "mpReserves": [ - "74912327541034170712084751", - "30014289466102262306270595", - "20484779042497656364319381" + "57961233577342749394754130", + "10270424742114936898715763", + "37947394534124403147743867" ], "fpReserves": [ - "26204634399438150692618732", - "8081899912987168772301442" + "6732360922125321726776634", + "2432606149295053556450166" ], - "mAssetSupply": "125330204888384941784558370", - "LPTokenSupply": "33850696785924193093856957" + "mAssetSupply": "105900403238530774560948397", + "LPTokenSupply": "8873427611214434302450950" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "17597406915337304145920", - "outputQty0": "17545233704267202715371", - "outputQty": "17297582232927907958760", - "swapFee": "13813869364463908043", + "type": "redeem", + "outputIndex": 1, + "inputQty": "333273130787295346032640", + "outputQty0": "344906856010171859901873", + "outputQty": "332261234848867578989684", + "swapFee1": "199963878472377207619", + "swapFee2": "206944113606103115941", "mpReserves": [ - "74929924947949508016230671", - "30014289466102262306270595", - "20484779042497656364319381" + "57961233577342749394754130", + "9938163507266069319726079", + "37947394534124403147743867" ], "fpReserves": [ - "26222179633142417895334103", - "8064602330754240864342682" + "6387454066115149866874761", + "2432606149295053556450166" ], - "mAssetSupply": "125347750122089208987273741", - "LPTokenSupply": "33850698167311129540247761" + "mAssetSupply": "105555703326634208804162465", + "LPTokenSupply": "8540174476814986194139071" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1792955151122888960", - "outputQty0": "1795488311382825672", - "outputQty": "1770087365198075414", - "swapFee": "1413620041361350", - "mpReserves": [ - "74929924947949508016230671", - "30014291259057413429159555", - "20484779042497656364319381" - ], - "fpReserves": [ - "26222181428630729278159775", - "8064600560666875666267268" - ], - "mAssetSupply": "125347751917577520370099413", - "LPTokenSupply": "33850698167452491544383896" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2651191923726026276864", - "outputQty0": "2654936975599866085931", - "outputQty": "2612848439407353210025", + "inputIndex": 0, + "inputQty": "160756824655696479911936", + "outputQty0": "159290193163837388992786", + "outputQty": "157571645615889917738564", + "swapFee": "123065523389151260393", "mpReserves": [ - "74929924947949508016230671", - "30016942450981139455436419", - "20484779042497656364319381" + "58121990401998445874666066", + "9938163507266069319726079", + "37947394534124403147743867" ], "fpReserves": [ - "26224836365606329144245706", - "8064600560666875666267268" + "6546744259278987255867547", + "2275034503679163638711602" ], - "mAssetSupply": "125350406854553120236185344", - "LPTokenSupply": "33853311015891898897593921" + "mAssetSupply": "105714993519798046193155251", + "LPTokenSupply": "8540186783367325109265110" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "228190366699258147504128", - "outputQty0": "228507793329368985520608", - "outputQty": "225176322861366920523006", - "swapFee": "179903855420810489764", + "type": "redeem", + "outputIndex": 1, + "inputQty": "1323107811253784038866944", + "outputQty0": "1369052900363056227642595", + "outputQty": "1309731087283422470673154", + "swapFee1": "793864686752270423320", + "swapFee2": "821431740217833736585", "mpReserves": [ - "74929924947949508016230671", - "30245132817680397602940547", - "20484779042497656364319381" + "58121990401998445874666066", + "8628432419982646849052925", + "37947394534124403147743867" ], "fpReserves": [ - "26453344158935698129766314", - "7839424237805508745744262" + "5177691358915931028224952", + "2275034503679163638711602" ], - "mAssetSupply": "125578914647882489221705952", - "LPTokenSupply": "33853329006277440978642897" + "mAssetSupply": "104346762051175207799249241", + "LPTokenSupply": "7217158358582216297440498" }, { "type": "swap_fp_to_mp", - "inputQty": "307069655368458940973056", - "outputIndex": 1, - "outputQty": "310755367286632331635212", + "inputQty": "628971066699873578385408", + "outputIndex": 0, + "outputQty": "638419359009687406283405", "swapFee": "0", - "redemptionFee": "124525828504451173977", + "redemptionFee": "379272109602161630404", "mpReserves": [ - "74929924947949508016230671", - "29934377450393765271305335", - "20484779042497656364319381" + "57483571042988758468382661", + "8628432419982646849052925", + "37947394534124403147743867" ], "fpReserves": [ - "26142029587674570194821828", - "8146493893173967686717318" + "4545571176245661644216919", + "2904005570379037217097010" ], - "mAssetSupply": "125267724602449865737935443", - "LPTokenSupply": "33853329006277440978642897" + "mAssetSupply": "103715021140614540576871612", + "LPTokenSupply": "7217158358582216297440498" }, { - "type": "swap_fp_to_mp", - "inputQty": "30985132351030980247552", - "outputIndex": 2, - "outputQty": "31230456572258100161228", - "swapFee": "0", - "redemptionFee": "12557352308029530980", + "type": "mint", + "inputIndex": 0, + "inputQty": "107198396686961040", + "outputQty0": "106084844845451550", + "outputQty": "102646010777803020", "mpReserves": [ - "74929924947949508016230671", - "29934377450393765271305335", - "20453548585925398264158153" + "57483571150187155155343701", + "8628432419982646849052925", + "37947394534124403147743867" ], "fpReserves": [ - "26110636206904496367371156", - "8177479025524998666964870" + "4545571282330506489668469", + "2904005570379037217097010" ], - "mAssetSupply": "125236343779032099940015751", - "LPTokenSupply": "33853329006277440978642897" + "mAssetSupply": "103715021246699385422323162", + "LPTokenSupply": "7217158461228227075243518" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "315091646310586192494592", - "outputQty0": "319934224031359046019329", - "outputQty": "320757211167771311286457", - "swapFee1": "189054987786351715496", - "swapFee2": "127973689612543618407", + "type": "mint", + "inputIndex": 2, + "inputQty": "65438710437443782311936", + "outputQty0": "65121155537635423168111", + "outputQty": "63008725993751107000670", "mpReserves": [ - "74609167736781736704944214", - "29934377450393765271305335", - "20453548585925398264158153" + "57483571150187155155343701", + "8628432419982646849052925", + "38012833244561846930055803" ], "fpReserves": [ - "25790701982873137321351827", - "8177479025524998666964870" + "4610692437868141912836580", + "2904005570379037217097010" ], - "mAssetSupply": "124916537528690353437614829", - "LPTokenSupply": "33538256265465633421319854" + "mAssetSupply": "103780142402237020845491273", + "LPTokenSupply": "7280167187221978182244188" }, { "type": "swap_fp_to_mp", - "inputQty": "1255064492203587072", + "inputQty": "4657283648593013506048", "outputIndex": 1, - "outputQty": "1268886949241702998", + "outputQty": "4444793127066623331622", "swapFee": "0", - "redemptionFee": "508472096642919", + "redemptionFee": "2803691131574365544", "mpReserves": [ - "74609167736781736704944214", - "29934376181506816029602337", - "20453548585925398264158153" + "57483571150187155155343701", + "8623987626855580225721303", + "38012833244561846930055803" ], "fpReserves": [ - "25790700711692895714052685", - "8177480280589490870551942" + "4606019619315517970261681", + "2908662854027630230603058" ], - "mAssetSupply": "124916536258018583926958606", - "LPTokenSupply": "33538256265465633421319854" + "mAssetSupply": "103775472387375528477281918", + "LPTokenSupply": "7280167187221978182244188" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "595509499620341448704", - "outputQty0": "596347111897213918431", - "outputQty": "588315107198027106566", - "swapFee": "469587831133493334", + "type": "mint", + "inputIndex": 2, + "inputQty": "2366627463624562049024", + "outputQty0": "2355111104131644569834", + "outputQty": "2278679604515194403294", "mpReserves": [ - "74609167736781736704944214", - "29934971691006436371051041", - "20453548585925398264158153" + "57483571150187155155343701", + "8623987626855580225721303", + "38015199872025471492104827" ], "fpReserves": [ - "25791297058804792927971116", - "8176891965482292843445376" + "4608374730419649614831515", + "2908662854027630230603058" ], - "mAssetSupply": "124917132605130481140877037", - "LPTokenSupply": "33538256312424416534669187" + "mAssetSupply": "103777827498479660121851752", + "LPTokenSupply": "7282445866826493376647482" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "15605192388945073143808", - "outputQty0": "15844561723488807300603", - "outputQty": "15885162346961724456391", - "swapFee1": "9363115433367043886", - "swapFee2": "6337824689395522920", + "type": "mint", + "inputIndex": 1, + "inputQty": "276134591166030230323200", + "outputQty0": "289705096515893197522305", + "outputQty": "280274369133402782158082", "mpReserves": [ - "74593282574434774980487823", - "29934971691006436371051041", - "20453548585925398264158153" + "57483571150187155155343701", + "8900122218021610456044503", + "38015199872025471492104827" ], "fpReserves": [ - "25775452497081304120670513", - "8176891965482292843445376" + "4898079826935542812353820", + "2908662854027630230603058" ], - "mAssetSupply": "124901294381231681729099354", - "LPTokenSupply": "33522652056347014798229767" + "mAssetSupply": "104067532594995553319374057", + "LPTokenSupply": "7562720235959896158805564" }, { - "type": "swap_fp_to_mp", - "inputQty": "10739087694906857095168", + "type": "redeem", "outputIndex": 2, - "outputQty": "10820533585810379642398", - "swapFee": "0", - "redemptionFee": "4350660705872848085", - "mpReserves": [ - "74593282574434774980487823", - "29934971691006436371051041", - "20442728052339587884515755" - ], - "fpReserves": [ - "25764575845316622000456817", - "8187631053177199700540544" - ], - "mAssetSupply": "124890422080127705481733743", - "LPTokenSupply": "33522652056347014798229767" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "299743340017302208", - "outputQty0": "301178223058391762", - "outputQty": "296453405492614897", + "inputQty": "1818617594766542592", + "outputQty0": "1878872171216939782", + "outputQty": "1886518942539202764", + "swapFee1": "1091170556859925", + "swapFee2": "1127323302730163", "mpReserves": [ - "74593282574434774980487823", - "29934971691006436371051041", - "20442728352082927901817963" + "57483571150187155155343701", + "8900122218021610456044503", + "38015197985506528952902063" ], "fpReserves": [ - "25764576146494845058848579", - "8187631053177199700540544" + "4898077948063371595414038", + "2908662854027630230603058" ], - "mAssetSupply": "124890422381305928540125505", - "LPTokenSupply": "33522652352800420290844664" + "mAssetSupply": "104067530717250705405164438", + "LPTokenSupply": "7562718417451418447948964" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "1589747033289500928", - "outputQty0": "1614115066164320006", - "outputQty": "1618252544083909194", - "swapFee1": "953848219973700", - "swapFee2": "645646026465728", + "type": "swap_fp_to_mp", + "inputQty": "857857075282109934862336", + "outputIndex": 2, + "outputQty": "863010994139820292766668", + "swapFee": "0", + "redemptionFee": "515772077997714006192", "mpReserves": [ - "74593280956182230896578629", - "29934971691006436371051041", - "20442728352082927901817963" + "57483571150187155155343701", + "8900122218021610456044503", + "37152186991366708660135395" ], "fpReserves": [ - "25764574532379778894528573", - "8187631053177199700540544" + "4038457818067181585093406", + "3766519929309740165465394" ], - "mAssetSupply": "124890420767836508402271227", - "LPTokenSupply": "33522650763148771823341106" + "mAssetSupply": "103208426359332513108849998", + "LPTokenSupply": "7562718417451418447948964" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "782603642096461184", - "outputQty0": "780290473979692345", - "outputQty": "768049449197623961", + "inputIndex": 1, + "inputQty": "63170144235438800371712", + "outputQty0": "66117921590857027467923", + "outputQty": "64049706175303731618643", "mpReserves": [ - "74593281738785872993039813", - "29934971691006436371051041", - "20442728352082927901817963" + "57483571150187155155343701", + "8963292362257049256416215", + "37152186991366708660135395" ], "fpReserves": [ - "25764575312670252874220918", - "8187631053177199700540544" + "4104575739658038612561329", + "3766519929309740165465394" ], - "mAssetSupply": "124890421548126982381963572", - "LPTokenSupply": "33522651531198221020965067" + "mAssetSupply": "103274544280923370136317921", + "LPTokenSupply": "7626768123626722179567607" }, { "type": "mint", "inputIndex": 1, - "inputQty": "108884481266116395532288", - "outputQty0": "109036351105856551956943", - "outputQty": "107324599101507548503118", + "inputQty": "189287105515208376320", + "outputQty0": "198058244200875059815", + "outputQty": "191857848598945971401", "mpReserves": [ - "74593281738785872993039813", - "30043856172272552766583329", - "20442728352082927901817963" + "57483571150187155155343701", + "8963481649362564464792535", + "37152186991366708660135395" ], "fpReserves": [ - "25873611663776109426177861", - "8187631053177199700540544" + "4104773797902239487621144", + "3766519929309740165465394" ], - "mAssetSupply": "124999457899232838933920515", - "LPTokenSupply": "33629976130299728569468185" + "mAssetSupply": "103274742339167571011377736", + "LPTokenSupply": "7626959981475321125539008" }, { "type": "mint", "inputIndex": 1, - "inputQty": "384657362627174400000", - "outputQty0": "385189956039176651377", - "outputQty": "379138590715559200490", + "inputQty": "126496141094506299392", + "outputQty0": "132357483414322763217", + "outputQty": "128213894083427223052", "mpReserves": [ - "74593281738785872993039813", - "30044240829635179940983329", - "20442728352082927901817963" + "57483571150187155155343701", + "8963608145503658971091927", + "37152186991366708660135395" ], "fpReserves": [ - "25873996853732148602829238", - "8187631053177199700540544" + "4104906155385653810384361", + "3766519929309740165465394" ], - "mAssetSupply": "124999843089188878110571892", - "LPTokenSupply": "33630355268890444128668675" + "mAssetSupply": "103274874696650985334140953", + "LPTokenSupply": "7627088195369404552762060" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "2487565524209347072", - "outputQty0": "2525752865070518847", - "outputQty": "2521251749095181828", - "swapFee1": "1492539314525608", - "swapFee2": "1010301146028207", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "36023123668139584", + "outputQty0": "35866255112301048", + "outputQty": "35817087286746923", + "swapFee": "27794738178959", "mpReserves": [ - "74593281738785872993039813", - "30044238308383430845801501", - "20442728352082927901817963" + "57483571150187155155343701", + "8963608145503658971091927", + "37152187027389832328274979" ], "fpReserves": [ - "25873994327979283532310391", - "8187631053177199700540544" + "4104906191251908922685409", + "3766519893492652878718471" ], - "mAssetSupply": "124999840564446314186081252", - "LPTokenSupply": "33630352781474173850774163" + "mAssetSupply": "103274874732517240446442001", + "LPTokenSupply": "7627088195372184026579955" }, { - "type": "swap_fp_to_mp", - "inputQty": "4533839101816372461568", - "outputIndex": 0, - "outputQty": "4603960067959508398085", - "swapFee": "0", - "redemptionFee": "1836888065311517634", + "type": "mint", + "inputIndex": 0, + "inputQty": "3013541626625774321664", + "outputQty0": "2983237236851077001915", + "outputQty": "2889840370332765257084", "mpReserves": [ - "74588677778717913484641728", - "30044238308383430845801501", - "20442728352082927901817963" + "57486584691813780929665365", + "8963608145503658971091927", + "37152187027389832328274979" ], "fpReserves": [ - "25869402107816004738223845", - "8192164892279016073002112" + "4107889428488759999687324", + "3766519893492652878718471" ], - "mAssetSupply": "124995250181171100703512340", - "LPTokenSupply": "33630352781474173850774163" + "mAssetSupply": "103277857969754091523443916", + "LPTokenSupply": "7629978035742516791837039" }, { "type": "mint", "inputIndex": 0, - "inputQty": "762522834530022304251904", - "outputQty0": "760257330831933351619656", - "outputQty": "748257630174865373218379", + "inputQty": "398679858234698617585664", + "outputQty0": "394652770589722330498084", + "outputQty": "382240357257085365452180", "mpReserves": [ - "75351200613247935788893632", - "30044238308383430845801501", - "20442728352082927901817963" + "57885264550048479547251029", + "8963608145503658971091927", + "37152187027389832328274979" ], "fpReserves": [ - "26629659438647938089843501", - "8192164892279016073002112" + "4502542199078482330185408", + "3766519893492652878718471" ], - "mAssetSupply": "125755507512003034055131996", - "LPTokenSupply": "34378610411649039223992542" + "mAssetSupply": "103672510740343813853942000", + "LPTokenSupply": "8012218392999602157289219" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "723585672466412863488", - "outputQty0": "734806326969743431659", - "outputQty": "736717643811074148588", - "swapFee1": "434151403479847718", - "swapFee2": "293922530787897372", + "type": "mint", + "inputIndex": 1, + "inputQty": "621153069086940634021888", + "outputQty0": "648349939107348407946574", + "outputQty": "627733678956081441683353", "mpReserves": [ - "75350463895604124714745044", - "30044238308383430845801501", - "20442728352082927901817963" + "57885264550048479547251029", + "9584761214590599605113815", + "37152187027389832328274979" ], "fpReserves": [ - "26628924632320968346411842", - "8192164892279016073002112" + "5150892138185830738131982", + "3766519893492652878718471" ], - "mAssetSupply": "125754772999598595099597709", - "LPTokenSupply": "34377886869391713159113825" + "mAssetSupply": "104320860679451162261888574", + "LPTokenSupply": "8639952071955683598972572" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "179219154951658924933120", - "outputQty0": "181994873748521137314655", - "outputQty": "181028564847325392396823", - "swapFee1": "107531492970995354959", - "swapFee2": "72797949499408454925", + "inputQty": "23567678928936505442304", + "outputQty0": "24331929560179919231508", + "outputQty": "24412442427332579650340", + "swapFee1": "14140607357361903265", + "swapFee2": "14599157736107951538", "mpReserves": [ - "75350463895604124714745044", - "30044238308383430845801501", - "20261699787235602509421140" + "57885264550048479547251029", + "9584761214590599605113815", + "37127774584962499748624639" ], "fpReserves": [ - "26446929758572447209097187", - "8192164892279016073002112" + "5126560208625650818900474", + "3766519893492652878718471" ], - "mAssetSupply": "125572850923799573370737979", - "LPTokenSupply": "34198678467589351333716200" + "mAssetSupply": "104296543349048718450608604", + "LPTokenSupply": "8616385807087482829720594" }, { - "type": "swap_fp_to_mp", - "inputQty": "756837277754782646272", - "outputIndex": 0, - "outputQty": "768968820064615261888", - "swapFee": "0", - "redemptionFee": "306782511513965634", + "type": "mint", + "inputIndex": 2, + "inputQty": "71649170291949043712", + "outputQty0": "71370268029526748214", + "outputQty": "69087507344719171253", "mpReserves": [ - "75349694926784060099483156", - "30044238308383430845801501", - "20261699787235602509421140" + "57885264550048479547251029", + "9584761214590599605113815", + "37127846234132791697668351" ], "fpReserves": [ - "26446162802293662295011632", - "8192921729556770855648384" + "5126631578893680345648688", + "3766519893492652878718471" ], - "mAssetSupply": "125572084274303299970618058", - "LPTokenSupply": "34198678467589351333716200" + "mAssetSupply": "104296614719316747977356818", + "LPTokenSupply": "8616454894594827548891847" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 2, - "inputQty": "470379767091982106624", - "outputQty0": "472724552711713433972", - "outputQty": "466114619219166482179", - "swapFee": "372194517298337928", + "inputQty": "76690418742047", + "outputQty0": "76391892090318", + "outputQty": "73948514359760", "mpReserves": [ - "75349694926784060099483156", - "30044238308383430845801501", - "20262170167002694491527764" + "57885264550048479547251029", + "9584761214590599605113815", + "37127846234209482116410398" ], "fpReserves": [ - "26446635526846374008445604", - "8192455614937551689166205" + "5126631578970072237739006", + "3766519893492652878718471" ], - "mAssetSupply": "125572556998856011684052030", - "LPTokenSupply": "34198678504808803063549992" + "mAssetSupply": "104296614719393139869447136", + "LPTokenSupply": "8616454894668776063251607" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "16217331903218122227712", - "outputQty0": "16468208103847535133507", - "outputQty": "16438226327859913475372", - "swapFee1": "9730399141930873336", - "swapFee2": "6587283241539014053", + "outputIndex": 2, + "inputQty": "16350709337920876544", + "outputQty0": "16880828380501076992", + "outputQty": "16936627697318708305", + "swapFee1": "9810425602752525", + "swapFee2": "10128497028300646", "mpReserves": [ - "75349694926784060099483156", - "30027800082055570932326129", - "20262170167002694491527764" + "57885264550048479547251029", + "9584761214590599605113815", + "37127829297581784797702093" ], "fpReserves": [ - "26430167318742526473312097", - "8192455614937551689166205" + "5126614698141691736662014", + "3766519893492652878718471" ], - "mAssetSupply": "125556095378035405687932576", - "LPTokenSupply": "34182462145945499134409613" + "mAssetSupply": "104296597848693256396670790", + "LPTokenSupply": "8616438544940480702650315" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "1491421654108392390656", - "outputQty0": "1486921846344301954228", - "outputQty": "1466146462423533426845", - "swapFee": "1170714762076927617", + "type": "redeem", + "outputIndex": 2, + "inputQty": "39400782929944200", + "outputQty0": "40678226135543996", + "outputQty": "40812687283886513", + "swapFee1": "23640469757966", + "swapFee2": "24406935681326", "mpReserves": [ - "75351186348438168491873812", - "30027800082055570932326129", - "20262170167002694491527764" + "57885264550048479547251029", + "9584761214590599605113815", + "37127829256769097513815580" ], "fpReserves": [ - "26431654240588870775266325", - "8190989468475128155739360" + "5126614657463465601118018", + "3766519893492652878718471" ], - "mAssetSupply": "125557582299881749989886804", - "LPTokenSupply": "34182462263016975342102374" + "mAssetSupply": "104296597808039437196808120", + "LPTokenSupply": "8616438505542061819681911" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "60296928935912839053312", - "outputQty0": "60382497045270633328949", - "outputQty": "59532116114504766403547", - "swapFee": "47541272702063313646", + "type": "redeem", + "outputIndex": 1, + "inputQty": "5245993648987380736", + "outputQty0": "5416078050571804945", + "outputQty": "5199864927322155060", + "swapFee1": "3147596189392428", + "swapFee2": "3249646830343082", "mpReserves": [ - "75351186348438168491873812", - "30088097010991483771379441", - "20262170167002694491527764" + "57885264550048479547251029", + "9584756014725672282958755", + "37127829256769097513815580" ], "fpReserves": [ - "26492036737634141408595274", - "8131457352360623389335813" + "5126609241385415029313073", + "3766519893492652878718471" ], - "mAssetSupply": "125617964796927020623215753", - "LPTokenSupply": "34182467017144245548433738" + "mAssetSupply": "104296592395211033455346257", + "LPTokenSupply": "8616433259863172451240417" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "401161821370495235260416", "outputIndex": 2, - "inputQty": "3403099177894903545856", - "outputQty0": "3455928247746036013324", - "outputQty": "3437399661598867816497", - "swapFee1": "2041859506736942127", - "swapFee2": "1382371299098414405", + "outputQty": "403055748082577830208668", + "swapFee": "0", + "redemptionFee": "241050553790096041911", "mpReserves": [ - "75351186348438168491873812", - "30088097010991483771379441", - "20258732767341095623711267" + "57885264550048479547251029", + "9584756014725672282958755", + "36724773508686519683606912" ], "fpReserves": [ - "26488580809386395372581950", - "8131457352360623389335813" + "4724858318401921626126460", + "4167681714863148113978887" ], - "mAssetSupply": "125614510251050573685616834", - "LPTokenSupply": "34179064122152301318582094" + "mAssetSupply": "103895082522781330148201555", + "LPTokenSupply": "8616433259863172451240417" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "42091714109886046208", - "outputQty0": "42745124672789963238", - "outputQty": "42667727194490972643", - "swapFee1": "25255028465931627", - "swapFee2": "17098049869115985", + "inputQty": "140833457055450607386624", + "outputQty0": "145308944396875941349880", + "outputQty": "139462667236787739431161", + "swapFee1": "84500074233270364431", + "swapFee2": "87185366638125564809", "mpReserves": [ - "75351186348438168491873812", - "30088054343264289280406798", - "20258732767341095623711267" + "57885264550048479547251029", + "9445293347488884543527594", + "36724773508686519683606912" ], "fpReserves": [ - "26488538064261722582618712", - "8131457352360623389335813" + "4579549374005045684776580", + "4167681714863148113978887" ], - "mAssetSupply": "125614467523023950764769581", - "LPTokenSupply": "34179022032963694279129048" + "mAssetSupply": "103749860763751092332416484", + "LPTokenSupply": "8475608252815145170890236" }, { - "type": "swap_fp_to_mp", - "inputQty": "100480822961384886108160", - "outputIndex": 0, - "outputQty": "102093281734749577933195", - "swapFee": "0", - "redemptionFee": "40730648660951168669", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "5087366617952567296", + "outputQty0": "5300526188282978516", + "outputQty": "5292969167677508394", + "swapFee": "4107519256122791", "mpReserves": [ - "75249093066703418913940617", - "30088054343264289280406798", - "20258732767341095623711267" + "57885264550048479547251029", + "9445298434855502496094890", + "36724773508686519683606912" ], "fpReserves": [ - "26386711442609344660945927", - "8231938175322008275443973" + "4579554674531233967755096", + "4167676421893980436470493" ], - "mAssetSupply": "125512681632020233794265465", - "LPTokenSupply": "34179022032963694279129048" + "mAssetSupply": "103749866064277280615395000", + "LPTokenSupply": "8475608253225897096502515" }, { - "type": "swap_fp_to_mp", - "inputQty": "2388670156359725481984", + "type": "mint", + "inputIndex": 0, + "inputQty": "578327100408777882468352", + "outputQty0": "572704112848304392208987", + "outputQty": "554649234040803938464867", + "mpReserves": [ + "58463591650457257429719381", + "9445298434855502496094890", + "36724773508686519683606912" + ], + "fpReserves": [ + "5152258787379538359964083", + "4167676421893980436470493" + ], + "mAssetSupply": "104322570177125585007603987", + "LPTokenSupply": "9030257487266701034967382" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "136461174447175117045760", + "outputQty0": "142178051093220573669843", + "outputQty": "141830197908174149611053", + "swapFee": "110131924805012062456", + "mpReserves": [ + "58463591650457257429719381", + "9581759609302677613140650", + "36724773508686519683606912" + ], + "fpReserves": [ + "5294436838472758933633926", + "4025846223985806286859440" + ], + "mAssetSupply": "104464748228218805581273830", + "LPTokenSupply": "9030268500459181536173627" + }, + { + "type": "redeem", "outputIndex": 0, - "outputQty": "2426537914080119465842", - "swapFee": "0", - "redemptionFee": "968082977526011617", + "inputQty": "51895001421334458662912", + "outputQty0": "53571962193915188178163", + "outputQty": "54060998267609838626172", + "swapFee1": "31137000852800675197", + "swapFee2": "32143177316349112906", "mpReserves": [ - "75246666528789338794474775", - "30088054343264289280406798", - "20258732767341095623711267" + "58409530652189647591093209", + "9581759609302677613140650", + "36724773508686519683606912" ], "fpReserves": [ - "26384291235165529631902525", - "8234326845478368000925957" + "5240864876278843745455763", + "4025846223985806286859440" ], - "mAssetSupply": "125510262392659396291233680", - "LPTokenSupply": "34179022032963694279129048" + "mAssetSupply": "104411208409202206742208573", + "LPTokenSupply": "8978376612737932357578234" }, { - "type": "swap_fp_to_mp", - "inputQty": "34034952572979642368", - "outputIndex": 1, - "outputQty": "34421941801927432888", - "swapFee": "0", - "redemptionFee": "13793664154592294", + "type": "mint", + "inputIndex": 1, + "inputQty": "46049495421918742839296", + "outputQty0": "47939903917354071930170", + "outputQty": "46411312470291360601358", "mpReserves": [ - "75246666528789338794474775", - "30088019921322487352973910", - "20258732767341095623711267" + "58409530652189647591093209", + "9627809104724596355979946", + "36724773508686519683606912" ], "fpReserves": [ - "26384256751005143151165056", - "8234360880430940980568325" + "5288804780196197817385933", + "4025846223985806286859440" ], - "mAssetSupply": "125510227922292673965088505", - "LPTokenSupply": "34179022032963694279129048" + "mAssetSupply": "104459148313119560814138743", + "LPTokenSupply": "9024787925208223718179592" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "330010527904952683069440", - "outputQty0": "331623150505754708711000", - "outputQty": "326376334502788369217062", + "inputIndex": 0, + "inputQty": "7652053608670354432", + "outputQty0": "7578679601962993266", + "outputQty": "7336924487899605277", "mpReserves": [ - "75246666528789338794474775", - "30088019921322487352973910", - "20588743295246048306780707" + "58409538304243256261447641", + "9627809104724596355979946", + "36724773508686519683606912" ], "fpReserves": [ - "26715879901510897859876056", - "8234360880430940980568325" + "5288812358875799780379199", + "4025846223985806286859440" ], - "mAssetSupply": "125841851072798428673799505", - "LPTokenSupply": "34505398367466482648346110" + "mAssetSupply": "104459155891799162777132009", + "LPTokenSupply": "9024795262132711617784869" }, { - "type": "swap_fp_to_mp", - "inputQty": "247575725024926679171072", - "outputIndex": 0, - "outputQty": "251447601190473905466589", - "swapFee": "0", - "redemptionFee": "100321541831122878220", + "type": "redeem", + "outputIndex": 2, + "inputQty": "15154080855079030784", + "outputQty0": "15644022863224754937", + "outputQty": "15692856870372278351", + "swapFee1": "9092448513047418", + "swapFee2": "9386413717934852", "mpReserves": [ - "74995218927598864889008186", - "30088019921322487352973910", - "20588743295246048306780707" + "58409538304243256261447641", + "9627809104724596355979946", + "36724757815829649311328561" ], "fpReserves": [ - "26465076046933090664325194", - "8481936605455867659739397" + "5288796714852936555624262", + "4025846223985806286859440" ], - "mAssetSupply": "125591147539762452601126863", - "LPTokenSupply": "34505398367466482648346110" + "mAssetSupply": "104459140257162713270311924", + "LPTokenSupply": "9024780108961101390058826" }, { "type": "mint", + "inputIndex": 2, + "inputQty": "16982632713524216856576", + "outputQty0": "16919585612437043743383", + "outputQty": "16379779516510936718817", + "mpReserves": [ + "58409538304243256261447641", + "9627809104724596355979946", + "36741740448543173528185137" + ], + "fpReserves": [ + "5305716300465373599367645", + "4025846223985806286859440" + ], + "mAssetSupply": "104476059842775150314055307", + "LPTokenSupply": "9041159888477612326777643" + }, + { + "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "67336411898696089600", - "outputQty0": "67431243712493368816", - "outputQty": "66376102202913517484", + "inputQty": "254818392446163178487808", + "outputQty0": "264965464772384229421159", + "outputQty": "264139916503165673860425", + "swapFee": "205192699390291261717", + "mpReserves": [ + "58409538304243256261447641", + "9882627497170759534467754", + "36741740448543173528185137" + ], + "fpReserves": [ + "5570681765237757828788804", + "3761706307482640612999015" + ], + "mAssetSupply": "104741025307547534543476466", + "LPTokenSupply": "9041180407747551355903814" + }, + { + "type": "redeem", + "outputIndex": 0, + "inputQty": "1740256768492803194880", + "outputQty0": "1797237223578616681330", + "outputQty": "1813093834798027689497", + "swapFee1": "1044154061095681916", + "swapFee2": "1078342334147170008", "mpReserves": [ - "74995218927598864889008186", - "30088087257734386049063510", - "20588743295246048306780707" + "58407725210408458233758144", + "9882627497170759534467754", + "36741740448543173528185137" ], "fpReserves": [ - "26465143478176803157694010", - "8481936605455867659739397" + "5568884528014179212107474", + "3761706307482640612999015" ], - "mAssetSupply": "125591214971006165094495679", - "LPTokenSupply": "34505464743568685561863594" + "mAssetSupply": "104739229148666290073965144", + "LPTokenSupply": "9039440255394464662277125" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "1508388544407450943488", - "outputQty0": "1503935971097496381237", - "outputQty": "1484025881316804387735", - "swapFee": "1184322121396491911", + "inputQty": "150360129701402836992", + "outputQty0": "148955737669968850864", + "outputQty": "148425213626205792946", + "swapFee": "115317350660180428", "mpReserves": [ - "74996727316143272339951674", - "30088087257734386049063510", - "20588743295246048306780707" + "58407875570538159636595136", + "9882627497170759534467754", + "36741740448543173528185137" ], "fpReserves": [ - "26466647414147900654075247", - "8480452579574550855351662" + "5569033483751849180958338", + "3761557882269014407206069" ], - "mAssetSupply": "125592718906977262590876916", - "LPTokenSupply": "34505464862000897701512785" + "mAssetSupply": "104739378104403960042816008", + "LPTokenSupply": "9039440266926199728295167" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2096279342954558139662336", + "outputQty0": "2076240122572910332271605", + "outputQty": "2008085264801950061456061", + "mpReserves": [ + "60504154913492717776257472", + "9882627497170759534467754", + "36741740448543173528185137" + ], + "fpReserves": [ + "7645273606324759513229943", + "3761557882269014407206069" + ], + "mAssetSupply": "106815618226976870375087613", + "LPTokenSupply": "11047525531728149789751228" + }, + { + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "104966797177237472", + "outputQty0": "109251141948234053", + "outputQty": "108537135222114362", + "swapFee": "84487010115095", + "mpReserves": [ + "60504154913492717776257472", + "9882627602137556711705226", + "36741740448543173528185137" + ], + "fpReserves": [ + "7645273715575901461463996", + "3761557773731879185091707" + ], + "mAssetSupply": "106815618336228012323321666", + "LPTokenSupply": "11047525531736598490762737" }, { "type": "swap_fp_to_mp", - "inputQty": "290036059490218704896", - "outputIndex": 1, - "outputQty": "293162333207719327350", + "inputQty": "7188679976057139200", + "outputIndex": 0, + "outputQty": "7297204409181431536", "swapFee": "0", - "redemptionFee": "117477084951614232", + "redemptionFee": "4338108897829504", "mpReserves": [ - "74996727316143272339951674", - "30087794095401178329736160", - "20588743295246048306780707" + "60504147616288308594825936", + "9882627602137556711705226", + "36741740448543173528185137" ], "fpReserves": [ - "26466353721435521618494182", - "8480742615634041074056558" + "7645266485394405078956431", + "3761564962411855242230907" ], - "mAssetSupply": "125592425331741968506910083", - "LPTokenSupply": "34505464862000897701512785" + "mAssetSupply": "106815611110384624838643605", + "LPTokenSupply": "11047525531736598490762737" }, { "type": "mint", "inputIndex": 2, - "inputQty": "122673399747120152576", - "outputQty0": "123258310332025568178", - "outputQty": "121329479464973246436", + "inputQty": "60149025535182677999616", + "outputQty0": "59944524788835173786416", + "outputQty": "57945151385537154051817", "mpReserves": [ - "74996727316143272339951674", - "30087794095401178329736160", - "20588865968645795426933283" + "60504147616288308594825936", + "9882627602137556711705226", + "36801889474078356206184753" ], "fpReserves": [ - "26466476979745853644062360", - "8480742615634041074056558" + "7705211010183240252742847", + "3761564962411855242230907" ], - "mAssetSupply": "125592548590052300532478261", - "LPTokenSupply": "34505586191480362674759221" + "mAssetSupply": "106875555635173460012430021", + "LPTokenSupply": "11105470683122135644814554" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "453094506559007555584", - "outputQty0": "460021365485381476069", - "outputQty": "459190578606968654950", - "swapFee1": "271856703935404533", - "swapFee2": "184008546194152590", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "473464955009025835008", + "outputQty0": "492805969607179959125", + "outputQty": "489541087311427213288", + "swapFee": "381089590767877486", "mpReserves": [ - "74996727316143272339951674", - "30087334904822571361081210", - "20588865968645795426933283" + "60504147616288308594825936", + "9883101067092565737540234", + "36801889474078356206184753" ], "fpReserves": [ - "26466016958380368262586291", - "8480742615634041074056558" + "7705703816152847432701972", + "3761075421324543815017619" ], - "mAssetSupply": "125592088752695361345154782", - "LPTokenSupply": "34505133124159474060744090" + "mAssetSupply": "106876048441143067192389146", + "LPTokenSupply": "11105470721231094721602302" }, { - "type": "swap_fp_to_mp", - "inputQty": "2083930301886305851670528", - "outputIndex": 1, - "outputQty": "2099926997183679449645219", - "swapFee": "0", - "redemptionFee": "841665841869925353154", + "type": "redeem", + "outputIndex": 2, + "inputQty": "48835641092536870633472", + "outputQty0": "50490537969821160589988", + "outputQty": "50632445882918128829027", + "swapFee1": "29301384655522122380", + "swapFee2": "30294322781892696353", "mpReserves": [ - "74996727316143272339951674", - "27987407907638891911435991", - "20588865968645795426933283" + "60504147616288308594825936", + "9883101067092565737540234", + "36751257028195438077355726" ], "fpReserves": [ - "24361852353705554879699503", - "10564672917520346925727086" + "7655213278183026272111984", + "3761075421324543815017619" ], - "mAssetSupply": "123488765813862417887621148", - "LPTokenSupply": "34505133124159474060744090" + "mAssetSupply": "106825588197496027924495511", + "LPTokenSupply": "11056638010277023403181068" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "7286741646998629253120", - "outputQty0": "7387686481993594983260", - "outputQty": "7371167419890843406787", - "swapFee1": "4372044988199177551", - "swapFee2": "2955074592797437993", + "inputQty": "12669243997125486", + "outputQty0": "13098436430791624", + "outputQty": "12577201875865941", + "swapFee1": "7601546398275", + "swapFee2": "7859061858474", "mpReserves": [ - "74996727316143272339951674", - "27980036740219001068029204", - "20588865968645795426933283" + "60504147616288308594825936", + "9883101054515363861674293", + "36751257028195438077355726" ], "fpReserves": [ - "24354464667223561284716243", - "10564672917520346925727086" + "7655213265084589841320360", + "3761075421324543815017619" ], - "mAssetSupply": "123481381082455017090075881", - "LPTokenSupply": "34497846819716974251408725" + "mAssetSupply": "106825588184405450555562361", + "LPTokenSupply": "11056637997608539560695409" }, { - "type": "swap_fp_to_mp", - "inputQty": "17160092958070023389184", - "outputIndex": 0, - "outputQty": "17332508021928477542283", - "swapFee": "0", - "redemptionFee": "6914343279278332569", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "34045515877907565641728", + "outputQty0": "33929809545075148235019", + "outputQty": "33704928211171310384180", + "swapFee": "26238462228897615687", "mpReserves": [ - "74979394808121343862409391", - "27980036740219001068029204", - "20588865968645795426933283" + "60504147616288308594825936", + "9883101054515363861674293", + "36785302544073345642997454" ], "fpReserves": [ - "24337178809025365453292930", - "10581833010478416949116270" + "7689143074629664989555379", + "3727370493113372504633439" ], - "mAssetSupply": "123464102138600100536985137", - "LPTokenSupply": "34497846819716974251408725" + "mAssetSupply": "106859517993950525703797380", + "LPTokenSupply": "11056640621454762450456977" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "2815073043000170381312", - "outputQty0": "2854041342745964761678", - "outputQty": "2847659872020815899006", - "swapFee1": "1689043825800102228", - "swapFee2": "1141616537098385904", + "outputIndex": 0, + "inputQty": "20537405395519540297728", + "outputQty0": "21234156594590125117580", + "outputQty": "21430858063657038258694", + "swapFee1": "12322443237311724178", + "swapFee2": "12740493956754075070", "mpReserves": [ - "74979394808121343862409391", - "27977189080346980252130198", - "20588865968645795426933283" + "60482716758224651556567242", + "9883101054515363861674293", + "36785302544073345642997454" ], "fpReserves": [ - "24334324767682619488531252", - "10581833010478416949116270" + "7667908918035074864437799", + "3727370493113372504633439" ], - "mAssetSupply": "123461249238873891670609363", - "LPTokenSupply": "34495031915578356661037635" + "mAssetSupply": "106838296577849892332754870", + "LPTokenSupply": "11036104448303566641331666" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "8433378650420142931968", - "outputQty0": "8448891230599378597755", - "outputQty": "8380791243072201272180", - "swapFee": "6662822368941290116", + "inputIndex": 2, + "inputQty": "19933540867037022126080", + "outputQty0": "19865601235864686285539", + "outputQty": "19732138492606559583018", + "swapFee": "15361772039667481624", "mpReserves": [ - "74979394808121343862409391", - "27985622458997400395062166", - "20588865968645795426933283" + "60482716758224651556567242", + "9883101054515363861674293", + "36805236084940382665123534" ], "fpReserves": [ - "24342773658913218867129007", - "10573452219235344747844090" + "7687774519270939550723338", + "3707638354620765945050421" ], - "mAssetSupply": "123469698130104491049207118", - "LPTokenSupply": "34495032581860593555166646" + "mAssetSupply": "106858162179085757019040409", + "LPTokenSupply": "11036105984480770608079828" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "69038407410385609031680", "outputIndex": 2, - "inputQty": "68914838336415161384960", - "outputQty0": "69868721142258559069165", - "outputQty": "69515355847162831911995", - "swapFee1": "41348903001849096830", - "swapFee2": "27947488456903423627", + "outputQty": "69637089217915759864222", + "swapFee": "0", + "redemptionFee": "41665152249079362286", "mpReserves": [ - "74979394808121343862409391", - "27985622458997400395062166", - "20519350612798632595021288" + "60482716758224651556567242", + "9883101054515363861674293", + "36735598995722466905259312" ], "fpReserves": [ - "24272904937770960308059842", - "10573452219235344747844090" + "7618332598855807280245835", + "3776676762031151554082101" ], - "mAssetSupply": "123399857356450689393561580", - "LPTokenSupply": "34426121878414478578691369" + "mAssetSupply": "106788761923822873827925192", + "LPTokenSupply": "11036105984480770608079828" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1222255015625700163977216", - "outputQty0": "1218422602526334782961569", - "outputQty": "1200949598435207050845736", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "829473803509952000", + "outputQty0": "826661311982667396", + "outputQty": "821328664048827228", + "swapFee": "639294385076893", "mpReserves": [ - "76201649823747044026386607", - "27985622458997400395062166", - "20519350612798632595021288" + "60482716758224651556567242", + "9883101054515363861674293", + "36735599825196270415211312" ], "fpReserves": [ - "25491327540297295091021411", - "10573452219235344747844090" + "7618333425517119262913231", + "3776675940702487505254873" ], - "mAssetSupply": "124618279958977024176523149", - "LPTokenSupply": "35627071476849685629537105" + "mAssetSupply": "106788762750484185810592588", + "LPTokenSupply": "11036105984544700046587517" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "148334442456119584", - "outputQty0": "147863780503858733", - "outputQty": "145728417023029392", + "type": "redeem", + "outputIndex": 0, + "inputQty": "193027710977044750794752", + "outputQty0": "199551218040835917262950", + "outputQty": "201395820644240588413765", + "swapFee1": "115816626586226850476", + "swapFee2": "119730730824501550357", "mpReserves": [ - "76201649972081486482506191", - "27985622458997400395062166", - "20519350612798632595021288" + "60281320937580410968153477", + "9883101054515363861674293", + "36735599825196270415211312" ], "fpReserves": [ - "25491327688161075594880144", - "10573452219235344747844090" + "7418782207476283345650281", + "3776675940702487505254873" ], - "mAssetSupply": "124618280106840804680381882", - "LPTokenSupply": "35627071622578102652566497" + "mAssetSupply": "106589331263174174394879995", + "LPTokenSupply": "10843089855230313918477812" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "822582608998445770342400", - "outputQty0": "819951761550234813440441", - "outputQty": "808055218119200744952445", + "type": "redeem", + "outputIndex": 1, + "inputQty": "55523540443294012014592", + "outputQty0": "57396904476968404172152", + "outputQty": "55112932798562325689767", + "swapFee1": "33314124265976407208", + "swapFee2": "34438142686181042503", "mpReserves": [ - "77024232581079932252848591", - "27985622458997400395062166", - "20519350612798632595021288" + "60281320937580410968153477", + "9827988121716801535984526", + "36735599825196270415211312" ], "fpReserves": [ - "26311279449711310408320585", - "10573452219235344747844090" + "7361385302999314941478129", + "3776675940702487505254873" ], - "mAssetSupply": "125438231868391039493822323", - "LPTokenSupply": "36435126840697303397518942" + "mAssetSupply": "106531968796839892171750346", + "LPTokenSupply": "10787569646199446504103940" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "24326791121872151904256", - "outputQty0": "24447307315997161509177", - "outputQty": "24090912045176021300346", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "406153803481982519214080", + "outputQty0": "402161549523552682133023", + "outputQty": "399340161868738222883105", + "swapFee": "311014351518448411297", "mpReserves": [ - "77024232581079932252848591", - "27985622458997400395062166", - "20543677403920504746925544" + "60687474741062393487367557", + "9827988121716801535984526", + "36735599825196270415211312" ], "fpReserves": [ - "26335726757027307569829762", - "10573452219235344747844090" + "7763546852522867623611152", + "3377335778833749282371768" ], - "mAssetSupply": "125462679175707036655331500", - "LPTokenSupply": "36459217752742479418819288" + "mAssetSupply": "106934130346363444853883369", + "LPTokenSupply": "10787600747634598348945069" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "34758508369748751810560", - "outputQty0": "34646532981216373080777", - "outputQty": "34327103516681520558568", - "swapFee": "27313027852321912389", + "type": "swap_fp_to_mp", + "inputQty": "268076542612628138098688", + "outputIndex": 1, + "outputQty": "258670428868472306662177", + "swapFee": "0", + "redemptionFee": "161904546435160585292", "mpReserves": [ - "77058991089449681004659151", - "27985622458997400395062166", - "20543677403920504746925544" + "60687474741062393487367557", + "9569317692848329229322349", + "36735599825196270415211312" ], "fpReserves": [ - "26370373290008523942910539", - "10539125115718663227285522" + "7493705941797599981457210", + "3645412321446377420470456" ], - "mAssetSupply": "125497325708688253028412277", - "LPTokenSupply": "36459220484045264651010526" + "mAssetSupply": "106664451340184612372314719", + "LPTokenSupply": "10787600747634598348945069" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "634322207010928721920", - "outputQty0": "632278030401910036912", - "outputQty": "623046430130310765151", + "inputIndex": 1, + "inputQty": "9344749112625793597440", + "outputQty0": "9752715820253297157290", + "outputQty": "9426712899393569721438", "mpReserves": [ - "77059625411656691933381071", - "27985622458997400395062166", - "20543677403920504746925544" + "60687474741062393487367557", + "9578662441960955022919789", + "36735599825196270415211312" ], "fpReserves": [ - "26371005568038925852947451", - "10539125115718663227285522" + "7503458657617853278614500", + "3645412321446377420470456" ], - "mAssetSupply": "125497957986718654938449189", - "LPTokenSupply": "36459843530475394961775677" + "mAssetSupply": "106674204056004865669472009", + "LPTokenSupply": "10797027460533991918666507" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "3427433867338327785472", - "outputQty0": "3476129968416703558049", - "outputQty": "3485973161308002652683", - "swapFee1": "2056460320402996671", - "swapFee2": "1390451987366681423", + "type": "mint", + "inputIndex": 0, + "inputQty": "515873536146394644480", + "outputQty0": "510649526748053327103", + "outputQty": "493578823382121561687", "mpReserves": [ - "77056139438495383930728388", - "27985622458997400395062166", - "20543677403920504746925544" + "60687990614598539882012037", + "9578662441960955022919789", + "36735599825196270415211312" ], "fpReserves": [ - "26367529438070509149389402", - "10539125115718663227285522" + "7503969307144601331941603", + "3645412321446377420470456" ], - "mAssetSupply": "125494483247202225601572563", - "LPTokenSupply": "36456416302254088674289872" + "mAssetSupply": "106674714705531613722799112", + "LPTokenSupply": "10797521039357374040228194" }, { - "type": "swap_fp_to_mp", - "inputQty": "11575916697068180078592", - "outputIndex": 2, - "outputQty": "11612333362206893402180", - "swapFee": "0", - "redemptionFee": "4669815594502738279", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "3440457774448095789056", + "outputQty0": "3428210151911641596895", + "outputQty": "3405282271543522422220", + "swapFee": "2650883098459432143", "mpReserves": [ - "77056139438495383930728388", - "27985622458997400395062166", - "20532065070558297853523364" + "60687990614598539882012037", + "9578662441960955022919789", + "36739040282970718511000368" ], "fpReserves": [ - "26355854899084252303690530", - "10550701032415731407364114" + "7507397517296512973538498", + "3642007039174833898048236" ], - "mAssetSupply": "125482813378031563258611970", - "LPTokenSupply": "36456416302254088674289872" + "mAssetSupply": "106678142915683525364396007", + "LPTokenSupply": "10797521304445683886171408" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "8367335234166188032", - "outputQty0": "8408819595174765370", - "outputQty": "8286106242819351351", + "inputIndex": 0, + "inputQty": "109400936138102800384", + "outputQty0": "108293108379321162475", + "outputQty": "104672343728348397463", "mpReserves": [ - "77056139438495383930728388", - "27985622458997400395062166", - "20532073437893532019711396" + "60688100015534677984812421", + "9578662441960955022919789", + "36739040282970718511000368" ], "fpReserves": [ - "26355863307903847478455900", - "10550701032415731407364114" + "7507505810404892294700973", + "3642007039174833898048236" ], - "mAssetSupply": "125482821786851158433377340", - "LPTokenSupply": "36456424588360331493641223" + "mAssetSupply": "106678251208791904685558482", + "LPTokenSupply": "10797625976789412234568871" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "211707222744086848", - "outputQty0": "214713602193946284", - "outputQty": "213568865437472341", - "swapFee1": "127024333646452", - "swapFee2": "85885440877578", + "outputIndex": 0, + "inputQty": "6159367228533825536", + "outputQty0": "6368605173445851325", + "outputQty": "6429895191718544083", + "swapFee1": "3695620337120295", + "swapFee2": "3821163104067510", + "mpReserves": [ + "60688093585639486266268338", + "9578662441960955022919789", + "36739040282970718511000368" + ], + "fpReserves": [ + "7507499441799718848849648", + "3642007039174833898048236" + ], + "mAssetSupply": "106678244844007894343774667", + "LPTokenSupply": "10797619817791745734455364" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "143581423314971552", + "outputIndex": 1, + "outputQty": "138314079312459736", + "swapFee": "0", + "redemptionFee": "86660224613586", "mpReserves": [ - "77056139438495383930728388", - "27985622458997400395062166", - "20532073224324666582239055" + "60688093585639486266268338", + "9578662303646875710460053", + "36739040282970718511000368" ], "fpReserves": [ - "26355863093190245284509616", - "10550701032415731407364114" + "7507499297366011159538689", + "3642007182756257213019788" ], - "mAssetSupply": "125482821572223441680308634", - "LPTokenSupply": "36456424376665811182919020" + "mAssetSupply": "106678244699660846879077294", + "LPTokenSupply": "10797619817791745734455364" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "19593221680644348706816", - "outputQty0": "19632112571783181910369", - "outputQty": "19450538546756185968809", - "swapFee": "15476465196476723500", + "inputIndex": 0, + "inputQty": "6772834180685227884544", + "outputQty0": "6704245342845391070711", + "outputQty": "6659247697972121774265", + "swapFee": "5184062975705033384", "mpReserves": [ - "77056139438495383930728388", - "28005215680678044743768982", - "20532073224324666582239055" + "60694866419820171494152882", + "9578662303646875710460053", + "36739040282970718511000368" ], "fpReserves": [ - "26375495205762028466419985", - "10531250493868975221395305" + "7514203542708856550609400", + "3635347935058285091245523" ], - "mAssetSupply": "125502453684795224862219003", - "LPTokenSupply": "36456425924312330830591370" + "mAssetSupply": "106684948945003692270148005", + "LPTokenSupply": "10797620336198043304958702" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "186237435619235212558336", - "outputQty0": "187151517950704822245651", - "outputQty": "185381293166482663085659", - "swapFee": "147532238386686626693", + "inputIndex": 0, + "inputQty": "155495329243596619776", + "outputQty0": "153920503843560190659", + "outputQty": "152884948495255176708", + "swapFee": "119018065213201184", "mpReserves": [ - "77056139438495383930728388", - "28005215680678044743768982", - "20718310659943901794797391" + "60695021915149415090772658", + "9578662303646875710460053", + "36739040282970718511000368" ], "fpReserves": [ - "26562646723712733288665636", - "10345869200702492558309646" + "7514357463212700110800059", + "3635195050109789836068815" ], - "mAssetSupply": "125689605202745929684464654", - "LPTokenSupply": "36456440677536169499254039" + "mAssetSupply": "106685102865507535830338664", + "LPTokenSupply": "10797620348099849826278820" }, { "type": "swap_fp_to_mp", - "inputQty": "19712842375461727109120", + "inputQty": "81702244068920000", "outputIndex": 0, - "outputQty": "19944448912641232786255", + "outputQty": "82980975819172708", "swapFee": "0", - "redemptionFee": "7955449817965090354", + "redemptionFee": "49313924237498", "mpReserves": [ - "77036194989582742697942133", - "28005215680678044743768982", - "20718310659943901794797391" + "60695021832168439271599950", + "9578662303646875710460053", + "36739040282970718511000368" ], "fpReserves": [ - "26542758099167820562779108", - "10365582043077954285418766" + "7514357381022826381636066", + "3635195131812033904988815" ], - "mAssetSupply": "125669724533650834923668480", - "LPTokenSupply": "36456440677536169499254039" + "mAssetSupply": "106685102783366976025412169", + "LPTokenSupply": "10797620348099849826278820" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "2290992593099260690432", - "outputQty0": "2323790001775897794938", - "outputQty": "2311635036922222631969", - "swapFee1": "1374595555859556414", - "swapFee2": "929516000710359117", + "outputIndex": 1, + "inputQty": "8469817014619562049536", + "outputQty0": "8757619629402902078633", + "outputQty": "8386198115410692903811", + "swapFee1": "5081890208771737229", + "swapFee2": "5254571777641741247", "mpReserves": [ - "77036194989582742697942133", - "28005215680678044743768982", - "20715999024906979572165422" + "60695021832168439271599950", + "9570276105531465017556242", + "36739040282970718511000368" ], "fpReserves": [ - "26540434309166044664984170", - "10365582043077954285418766" + "7505599761393423479557433", + "3635195131812033904988815" ], - "mAssetSupply": "125667401673165059736232659", - "LPTokenSupply": "36454149822402625824519248" + "mAssetSupply": "106676350418309350765074783", + "LPTokenSupply": "10789151039274251141403006" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 0, - "inputQty": "135205382416089642696704", - "outputQty0": "134772495625929648095676", - "outputQty": "133458263480749330953301", - "swapFee": "106231312377048703442", + "inputQty": "2902735394493290250240", + "outputQty0": "2873310643991251587858", + "outputQty": "2777220347840579400275", "mpReserves": [ - "77171400371998832340638837", - "28005215680678044743768982", - "20715999024906979572165422" + "60697924567562932561850190", + "9570276105531465017556242", + "36739040282970718511000368" ], "fpReserves": [ - "26675206804791974313079846", - "10232123779597204954465465" + "7508473072037414731145291", + "3635195131812033904988815" ], - "mAssetSupply": "125802174168790989384328335", - "LPTokenSupply": "36454160445533863529389592" + "mAssetSupply": "106679223728953342016662641", + "LPTokenSupply": "10791928259622091720803281" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "474135863848672559104", - "outputQty0": "476446719301380430656", - "outputQty": "469401118071328562585", + "type": "swap_fp_to_mp", + "inputQty": "797473635146788287545344", + "outputIndex": 1, + "outputQty": "764187070053553737877189", + "swapFee": "0", + "redemptionFee": "480560836733545868616", "mpReserves": [ - "77171400371998832340638837", - "28005215680678044743768982", - "20716473160770828244724526" + "60697924567562932561850190", + "8806089035477911279679053", + "36739040282970718511000368" ], "fpReserves": [ - "26675683251511275693510502", - "10232123779597204954465465" + "6707538344148171616784210", + "4432668766958822192534159" ], - "mAssetSupply": "125802650615510290764758991", - "LPTokenSupply": "36454629846651934857952177" + "mAssetSupply": "105878769561900832448170176", + "LPTokenSupply": "10791928259622091720803281" }, { "type": "swap_fp_to_mp", - "inputQty": "14467689921816662016", + "inputQty": "1617550887958751739904", "outputIndex": 1, - "outputQty": "14565639597146345198", + "outputQty": "1541872623417201283401", "swapFee": "0", - "redemptionFee": "5840240204681458", + "redemptionFee": "973388651963803258", "mpReserves": [ - "77171400371998832340638837", - "28005201115038447597423784", - "20716473160770828244724526" + "60697924567562932561850190", + "8804547162854494078395652", + "36739040282970718511000368" ], "fpReserves": [ - "26675668650910763989863088", - "10232138247287126771127481" + "6705916029728231944686080", + "4434286317846780944274063" ], - "mAssetSupply": "125802636020750019265793035", - "LPTokenSupply": "36454629846651934857952177" + "mAssetSupply": "105877148220869544739875304", + "LPTokenSupply": "10791928259622091720803281" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "25072404267413972", - "outputQty0": "25194599589939738", - "outputQty": "24822025975693653", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "2068631287161046171648", + "outputQty0": "2045860638902596330006", + "outputQty": "2038220278488131642542", + "swapFee": "1583665419649000361", "mpReserves": [ - "77171400371998832340638837", - "28005201115038447597423784", - "20716473185843232512138498" + "60699993198850093608021838", + "8804547162854494078395652", + "36739040282970718511000368" ], "fpReserves": [ - "26675668676105363579802826", - "10232138247287126771127481" + "6707961890367134541016086", + "4432248097568292812631521" ], - "mAssetSupply": "125802636045944618855732773", - "LPTokenSupply": "36454629871473960833645830" + "mAssetSupply": "105879194081508447336205310", + "LPTokenSupply": "10791928417988633685703317" }, { "type": "swap_fp_to_mp", - "inputQty": "46108225552543282888704", - "outputIndex": 0, - "outputQty": "46660355585293358819115", + "inputQty": "416308334201644565659648", + "outputIndex": 2, + "outputQty": "418717763762735863717857", "swapFee": "0", - "redemptionFee": "18611780495337246013", + "redemptionFee": "250371338088945260121", "mpReserves": [ - "77124740016413538981819722", - "28005201115038447597423784", - "20716473185843232512138498" + "60699993198850093608021838", + "8804547162854494078395652", + "36320322519207982647282511" ], "fpReserves": [ - "26629139224867020464770049", - "10278246472839670054016185" + "6290676326885559107480528", + "4848556431769937378291169" ], - "mAssetSupply": "125756125206486771077946009", - "LPTokenSupply": "36454629871473960833645830" + "mAssetSupply": "105462158889364960847929873", + "LPTokenSupply": "10791928417988633685703317" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "9003024293684548993024", - "outputQty0": "9020983030984069700439", - "outputQty": "8932529219322252329473", - "swapFee": "7110261368435069459", + "type": "redeem", + "outputIndex": 0, + "inputQty": "170421382368615938916352", + "outputQty0": "175928347025747554083635", + "outputQty": "177782648393440183437407", + "swapFee1": "102252829421169563349", + "swapFee2": "105557008215448532450", "mpReserves": [ - "77124740016413538981819722", - "28014204139332132146416808", - "20716473185843232512138498" + "60522210550456653424584431", + "8804547162854494078395652", + "36320322519207982647282511" ], "fpReserves": [ - "26638160207898004534470488", - "10269313943620347801686712" + "6114747979859811553396893", + "4848556431769937378291169" ], - "mAssetSupply": "125765146189517755147646448", - "LPTokenSupply": "36454630582500097677152775" + "mAssetSupply": "105286336099347428742378688", + "LPTokenSupply": "10621517260902959863743299" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "322229338450513753014272", - "outputQty0": "323770622043845840600322", - "outputQty": "318981214956656666877496", + "type": "redeem", + "outputIndex": 2, + "inputQty": "204574640955983265792", + "outputQty0": "211177626884530101645", + "outputQty": "211891397817452001838", + "swapFee1": "122744784573589959", + "swapFee2": "126706576130718060", "mpReserves": [ - "77124740016413538981819722", - "28014204139332132146416808", - "21038702524293746265152770" + "60522210550456653424584431", + "8804547162854494078395652", + "36320110627810165195280673" ], "fpReserves": [ - "26961930829941850375070810", - "10269313943620347801686712" + "6114536802232927023295248", + "4848556431769937378291169" ], - "mAssetSupply": "126088916811561600988246770", - "LPTokenSupply": "36773611797456754344030271" + "mAssetSupply": "105286125048427120342995103", + "LPTokenSupply": "10621312698536482337836502" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "29702574050827202199552", - "outputQty0": "29841935718784219106260", - "outputQty": "29399614806866231572875", + "inputIndex": 1, + "inputQty": "35572018520692650672128", + "outputQty0": "37379908729784840170347", + "outputQty": "36189063704233731505401", "mpReserves": [ - "77124740016413538981819722", - "28014204139332132146416808", - "21068405098344573467352322" + "60522210550456653424584431", + "8840119181375186729067780", + "36320110627810165195280673" ], "fpReserves": [ - "26991772765660634594177070", - "10269313943620347801686712" + "6151916710962711863465595", + "4848556431769937378291169" ], - "mAssetSupply": "126118758747280385207353030", - "LPTokenSupply": "36803011412263620575603146" + "mAssetSupply": "105323504957156905183165450", + "LPTokenSupply": "10657501762240716069341903" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "3713456398570991648768", - "outputQty0": "3730847919984131687508", - "outputQty": "3693419844914889643158", - "swapFee": "2940430697331705523", + "inputIndex": 1, + "inputQty": "93233321457480537997312", + "outputQty0": "97904202006695022416731", + "outputQty": "97655522042991548451089", + "swapFee": "75825543457431435713", "mpReserves": [ - "77124740016413538981819722", - "28014204139332132146416808", - "21072118554743144459001090" + "60522210550456653424584431", + "8933352502832667267065092", + "36320110627810165195280673" ], "fpReserves": [ - "26995503613580618725864578", - "10265620523775432912043554" + "6249820912969406885882326", + "4750900909726945829840080" ], - "mAssetSupply": "126122489595200369339040538", - "LPTokenSupply": "36803011706306690308773698" + "mAssetSupply": "105421409159163600205582181", + "LPTokenSupply": "10657509344795061812485474" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "139543530420429389824", - "outputQty0": "140196928584053366728", - "outputQty": "138118236879023390062", + "type": "redeem", + "outputIndex": 2, + "inputQty": "7948065582719054118912", + "outputQty0": "8205722960141316725817", + "outputQty": "8232683650833972983243", + "swapFee1": "4768839349631432471", + "swapFee2": "4923433776084790035", "mpReserves": [ - "77124740016413538981819722", - "28014204139332132146416808", - "21072258098273564888390914" + "60522210550456653424584431", + "8933352502832667267065092", + "36311877944159331222297430" ], "fpReserves": [ - "26995643810509202779231306", - "10265620523775432912043554" + "6241615190009265569156509", + "4750900909726945829840080" ], - "mAssetSupply": "126122629792128953392407266", - "LPTokenSupply": "36803149824543569332163760" + "mAssetSupply": "105413208359637234973646399", + "LPTokenSupply": "10649561756096277721509809" }, { "type": "swap_fp_to_mp", - "inputQty": "1215430496834140028010496", + "inputQty": "4382303002423376478208", "outputIndex": 2, - "outputQty": "1218677979802843379768312", + "outputQty": "4404867629259206060461", "swapFee": "0", - "redemptionFee": "490109988424439687882", + "redemptionFee": "2634270804655944512", "mpReserves": [ - "77124740016413538981819722", - "28014204139332132146416808", - "19853580118470721508622602" + "60522210550456653424584431", + "8933352502832667267065092", + "36307473076530072016236969" ], "fpReserves": [ - "25770368839448103559526244", - "11481051020609572940054050" + "6237224738668172328301526", + "4755283212729369206318288" ], - "mAssetSupply": "124897844931056278612390086", - "LPTokenSupply": "36803149824543569332163760" + "mAssetSupply": "105408820542566946388735928", + "LPTokenSupply": "10649561756096277721509809" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "11091928436307996442624", - "outputQty0": "11244450280153268283289", - "outputQty": "11179999283871259575554", - "swapFee1": "6655157061784797865", - "swapFee2": "4497780112061307313", + "type": "swap_fp_to_mp", + "inputQty": "5518802782038350888960", + "outputIndex": 0, + "outputQty": "5586270393196949726379", + "swapFee": "0", + "redemptionFee": "3317394492564019612", "mpReserves": [ - "77124740016413538981819722", - "28014204139332132146416808", - "19842400119186850249047048" + "60516624280063456474858052", + "8933352502832667267065092", + "36307473076530072016236969" ], "fpReserves": [ - "25759124389167950291242955", - "11481051020609572940054050" + "6231695747847232295614052", + "4760802015511407557207248" ], - "mAssetSupply": "124886604978556237405414110", - "LPTokenSupply": "36792058561622967514200922" + "mAssetSupply": "105403294869140498920068066", + "LPTokenSupply": "10649561756096277721509809" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "13130374061256349843456", - "outputQty0": "13310902553699091989371", - "outputQty": "13234509666447125668574", - "swapFee1": "7878224436753809906", - "swapFee2": "5324361021479636795", + "type": "swap_fp_to_mp", + "inputQty": "88052280844534411165696", + "outputIndex": 0, + "outputQty": "89116653681598828296160", + "swapFee": "0", + "redemptionFee": "52922311627628737617", "mpReserves": [ - "77124740016413538981819722", - "28014204139332132146416808", - "19829165609520403123378474" + "60427507626381857646561892", + "8933352502832667267065092", + "36307473076530072016236969" ], "fpReserves": [ - "25745813486614251199253584", - "11481051020609572940054050" + "6143491895134517732917730", + "4848854296355941968372944" ], - "mAssetSupply": "124873299400363559793061534", - "LPTokenSupply": "36778928975384154839738456" + "mAssetSupply": "105315143938739411986109361", + "LPTokenSupply": "10649561756096277721509809" }, { - "type": "swap_fp_to_mp", - "inputQty": "507739143292841689088", + "type": "redeem", "outputIndex": 0, - "outputQty": "512779083412135994318", - "swapFee": "0", - "redemptionFee": "204512293115338577", + "inputQty": "1561086841455300313088", + "outputQty0": "1611507262107350941413", + "outputQty": "1628167242915212572080", + "swapFee1": "936652104873180187", + "swapFee2": "966904357264410564", "mpReserves": [ - "77124227237330126845825404", - "28014204139332132146416808", - "19829165609520403123378474" + "60425879459138942433989812", + "8933352502832667267065092", + "36307473076530072016236969" ], "fpReserves": [ - "25745302205881462852810467", - "11481558759752865781743138" + "6141880387872410381976317", + "4848854296355941968372944" ], - "mAssetSupply": "124872788324143064561956994", - "LPTokenSupply": "36778928975384154839738456" + "mAssetSupply": "105313533398381661899578512", + "LPTokenSupply": "10648000762920032908514739" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "452198652902259264", - "outputQty0": "454628715808783296", - "outputQty": "448194253805643907", + "type": "redeem", + "outputIndex": 0, + "inputQty": "13819795874795225088000", + "outputQty0": "14266094896736510983026", + "outputQty": "14413552919467811434020", + "swapFee1": "8291877524877135052", + "swapFee2": "8559656938041906589", "mpReserves": [ - "77124227237330126845825404", - "28014204139332132146416808", - "19829166061719056025637738" + "60411465906219474622555792", + "8933352502832667267065092", + "36307473076530072016236969" ], "fpReserves": [ - "25745302660510178661593763", - "11481558759752865781743138" + "6127614292975673870993291", + "4848854296355941968372944" ], - "mAssetSupply": "124872788778771780370740290", - "LPTokenSupply": "36778929423578408645382363" + "mAssetSupply": "105299275863141863430502075", + "LPTokenSupply": "10634181796232990171140244" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "10298278312004552753152", - "outputQty0": "10264076075199907983935", - "outputQty": "10118798177999538999559", + "type": "redeem", + "outputIndex": 1, + "inputQty": "2115479378680397430784", + "outputQty0": "2183789422355086599735", + "outputQty": "2079637159623824954180", + "swapFee1": "1269287627208238458", + "swapFee2": "1310273653413051959", "mpReserves": [ - "77134525515642131398578556", - "28014204139332132146416808", - "19829166061719056025637738" + "60411465906219474622555792", + "8931272865673043442110912", + "36307473076530072016236969" ], "fpReserves": [ - "25755566736585378569577698", - "11481558759752865781743138" + "6125430503553318784393556", + "4848854296355941968372944" ], - "mAssetSupply": "124883052854846980278724225", - "LPTokenSupply": "36789048221756408184381922" + "mAssetSupply": "105297093383993161756954299", + "LPTokenSupply": "10632066443783072494533305" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "3948893444650251583488", - "outputQty0": "4003187218752129501437", - "outputQty": "3980186342168609928660", - "swapFee1": "2369336066790150950", - "swapFee2": "1601274887500851800", + "outputIndex": 1, + "inputQty": "1853145930723460907008", + "outputQty0": "1912983280245219845428", + "outputQty": "1821709579633673775739", + "swapFee1": "1111887558434076544", + "swapFee2": "1147789968147131907", "mpReserves": [ - "77134525515642131398578556", - "28014204139332132146416808", - "19825185875376887415709078" + "60411465906219474622555792", + "8929451156093409768335173", + "36307473076530072016236969" ], "fpReserves": [ - "25751563549366626440076261", - "11481558759752865781743138" + "6123517520273073564548128", + "4848854296355941968372944" ], - "mAssetSupply": "124879051268903115650074588", - "LPTokenSupply": "36785099565245364611813529" + "mAssetSupply": "105295181548502884684240778", + "LPTokenSupply": "10630213409041104877033951" }, { - "type": "swap_fp_to_mp", - "inputQty": "1345392575315523665920", - "outputIndex": 0, - "outputQty": "1358751062085741065758", - "swapFee": "0", - "redemptionFee": "541911680829821952", + "type": "mint", + "inputIndex": 1, + "inputQty": "330356620300341592719360", + "outputQty0": "346126481944425224642152", + "outputQty": "335069625973195721115686", "mpReserves": [ - "77133166764580045657512798", - "28014204139332132146416808", - "19825185875376887415709078" + "60411465906219474622555792", + "9259807776393751361054533", + "36307473076530072016236969" ], "fpReserves": [ - "25750208770164551885193818", - "11482904152328181305409058" + "6469644002217498789190280", + "4848854296355941968372944" ], - "mAssetSupply": "124877697031612721925014097", - "LPTokenSupply": "36785099565245364611813529" + "mAssetSupply": "105641308030447309908882930", + "LPTokenSupply": "10965283035014300598149637" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3994792494797620772864", - "outputQty0": "4016269849834220972877", - "outputQty": "3959424038065562778368", + "type": "redeem", + "outputIndex": 2, + "inputQty": "374615329820814016512", + "outputQty0": "386777944877266578907", + "outputQty": "387964519668597799885", + "swapFee1": "224769197892488409", + "swapFee2": "232066766926359947", "mpReserves": [ - "77133166764580045657512798", - "28014204139332132146416808", - "19829180667871685036481942" + "60411465906219474622555792", + "9259807776393751361054533", + "36307085112010403418437084" ], "fpReserves": [ - "25754225040014386106166695", - "11482904152328181305409058" + "6469257224272621522611373", + "4848854296355941968372944" ], - "mAssetSupply": "124881713301462556145986974", - "LPTokenSupply": "36789058989283430174591897" + "mAssetSupply": "105640921484569199568663970", + "LPTokenSupply": "10964908442161399573381965" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "12478289145656739102720", - "outputQty0": "12649838067132291312701", - "outputQty": "12686911326198652421653", - "swapFee1": "7486973487394043461", - "swapFee2": "5059935226852916525", + "type": "mint", + "inputIndex": 0, + "inputQty": "2061109826385060525244416", + "outputQty0": "2039104051873022500036757", + "outputQty": "1972890900565318117012836", "mpReserves": [ - "77120479853253847005091145", - "28014204139332132146416808", - "19829180667871685036481942" + "62472575732604535147800208", + "9259807776393751361054533", + "36307085112010403418437084" ], "fpReserves": [ - "25741575201947253814853994", - "11482904152328181305409058" + "8508361276145644022648130", + "4848854296355941968372944" ], - "mAssetSupply": "124869068523330650707590798", - "LPTokenSupply": "36776581448835122174893523" + "mAssetSupply": "107680025536442222068700727", + "LPTokenSupply": "12937799342726717690394801" }, { - "type": "swap_fp_to_mp", - "inputQty": "146504959718349089013760", - "outputIndex": 2, - "outputQty": "146655155251449704140871", - "swapFee": "0", - "redemptionFee": "59003505548685137308", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "13344759567998590", + "outputQty0": "13199200690544299", + "outputQty": "13132895375599013", + "swapFee": "10212061075873", "mpReserves": [ - "77120479853253847005091145", - "28014204139332132146416808", - "19682525512620235332341071" + "62472575745949294715798798", + "9259807776393751361054533", + "36307085112010403418437084" ], "fpReserves": [ - "25594066438075540971581626", - "11629409112046530394422818" + "8508361289344844713192429", + "4848854283223046592773931" ], - "mAssetSupply": "124721618762964486549455738", - "LPTokenSupply": "36776581448835122174893523" + "mAssetSupply": "107680025549641422759245026", + "LPTokenSupply": "12937799342727738896502388" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "1272741366072446287872", - "outputQty0": "1290142433756969303577", - "outputQty": "1287119566302528055151", - "swapFee1": "763644819643467772", - "swapFee2": "516056973502787721", + "inputQty": "12994916268786323554304", + "outputQty0": "13428758612552010979096", + "outputQty": "12800502869564693681620", + "swapFee1": "7796949761271794132", + "swapFee2": "8057255167531206587", + "mpReserves": [ + "62472575745949294715798798", + "9247007273524186667372913", + "36307085112010403418437084" + ], + "fpReserves": [ + "8494932530732292702213333", + "4848854283223046592773931" + ], + "mAssetSupply": "107666604848284038279472517", + "LPTokenSupply": "12924805206153928700127497" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1200661517994793881305088", + "outputQty0": "1187384998416830333392528", + "outputQty": "1148066902915541538909354", "mpReserves": [ - "77120479853253847005091145", - "28012917019765829618361657", - "19682525512620235332341071" + "63673237263944088597103886", + "9247007273524186667372913", + "36307085112010403418437084" ], "fpReserves": [ - "25592776295641784002278049", - "11629409112046530394422818" + "9682317529149123035605861", + "4848854283223046592773931" ], - "mAssetSupply": "124720329136587703082939882", - "LPTokenSupply": "36775308783833531692952428" + "mAssetSupply": "108853989846700868612865045", + "LPTokenSupply": "14072872109069470239036851" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "81603884812107399168", - "outputQty0": "82049708338319336094", - "outputQty": "81435783410511742829", - "swapFee": "64715588699215811", + "inputQty": "394381662800738076590080", + "outputQty0": "393027940287293088539190", + "outputQty": "390255626159977389010064", + "swapFee": "303917682822265752662", "mpReserves": [ - "77120479853253847005091145", - "28012917019765829618361657", - "19682607116505047439740239" + "63673237263944088597103886", + "9247007273524186667372913", + "36701466774811141495027164" ], "fpReserves": [ - "25592858345350122321614143", - "11629327676263119882679989" + "10075345469436416124145051", + "4458598657063069203763867" ], - "mAssetSupply": "124720411186296041402275976", - "LPTokenSupply": "36775308790305090562874009" + "mAssetSupply": "109247017786988161701404235", + "LPTokenSupply": "14072902500837752465612117" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "137576044621426189139968", - "outputQty0": "137841755370597815108043", - "outputQty": "136795353475203866237845", - "swapFee": "108719637864964925064", + "inputIndex": 0, + "inputQty": "40082878348146730074112", + "outputQty0": "39635538511994666060430", + "outputQty": "39322205981240263386095", + "swapFee": "30635830847181837880", + "mpReserves": [ + "63713320142292235327177998", + "9247007273524186667372913", + "36701466774811141495027164" + ], + "fpReserves": [ + "10114981007948410790205481", + "4419276451081828940377772" + ], + "mAssetSupply": "109286653325500156367464665", + "LPTokenSupply": "14072905564420837183795905" + }, + { + "type": "swap_fp_to_mp", + "inputQty": "92682659760175579136", + "outputIndex": 1, + "outputQty": "88836403008254508432", + "swapFee": "0", + "redemptionFee": "56012628271291108", "mpReserves": [ - "77120479853253847005091145", - "28150493064387255807501625", - "19682607116505047439740239" + "63713320142292235327177998", + "9246918437121178412864481", + "36701466774811141495027164" ], "fpReserves": [ - "25730700100720720136722186", - "11492532322787916016442144" + "10114887653567958638358376", + "4419369133741589115956908" ], - "mAssetSupply": "124858252941666639217384019", - "LPTokenSupply": "36775319662268877059366515" + "mAssetSupply": "109286560027132332486908668", + "LPTokenSupply": "14072905564420837183795905" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "489148637191235040182272", - "outputQty0": "491751521748640409883412", - "outputQty": "484774587877228106816551", + "inputIndex": 1, + "inputQty": "3271748869051977218129920", + "outputQty0": "3393331609286962889972461", + "outputQty": "3276190235472602680910654", "mpReserves": [ - "77120479853253847005091145", - "28150493064387255807501625", - "20171755753696282479922511" + "63713320142292235327177998", + "12518667306173155630994401", + "36701466774811141495027164" ], "fpReserves": [ - "26222451622469360546605598", - "11492532322787916016442144" + "13508219262854921528330837", + "4419369133741589115956908" ], - "mAssetSupply": "125350004463415279627267431", - "LPTokenSupply": "37260094250146105166183066" + "mAssetSupply": "112679891636419295376881129", + "LPTokenSupply": "17349095799893439864706559" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "870252569819831730176", - "outputQty0": "867412578612904983858", - "outputQty": "860517400414832781755", - "swapFee": "684058352795484891", + "type": "swap_fp_to_mp", + "inputQty": "18139200602547948", + "outputIndex": 2, + "outputQty": "18383029286173167", + "swapFee": "0", + "redemptionFee": "11015855147521", "mpReserves": [ - "77121350105823666836821321", - "28150493064387255807501625", - "20171755753696282479922511" + "63713320142292235327177998", + "12518667306173155630994401", + "36701466756428112208853997" ], "fpReserves": [ - "26223319035047973451589456", - "11491671805387501183660389" + "13508219244495162949128832", + "4419369151880789718504856" ], - "mAssetSupply": "125350871875993892532251289", - "LPTokenSupply": "37260094318551940445731555" + "mAssetSupply": "112679891618070552652826645", + "LPTokenSupply": "17349095799893439864706559" }, { "type": "redeem", - "outputIndex": 1, - "inputQty": "170642988751610869448704", - "outputQty0": "172999425816183198476334", - "outputQty": "172592371938767187291061", - "swapFee1": "102385793250966521669", - "swapFee2": "69199770326473279390", + "outputIndex": 0, + "inputQty": "32141638614053372", + "outputQty0": "33292943099325391", + "outputQty": "33551386273271685", + "swapFee1": "19284983168432", + "swapFee2": "19975765859595", "mpReserves": [ - "77121350105823666836821321", - "27977900692448488620210564", - "20171755753696282479922511" + "63713320108740849053906313", + "12518667306173155630994401", + "36701466756428112208853997" ], "fpReserves": [ - "26050319609231790253113122", - "11491671805387501183660389" + "13508219211202219849803441", + "4419369151880789718504856" ], - "mAssetSupply": "125177941649948035807054345", - "LPTokenSupply": "37089461568379654672935017" + "mAssetSupply": "112679891584797585319360849", + "LPTokenSupply": "17349095767753729748970030" }, { "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "18852601706559700", - "outputQty0": "18889892559966460", - "outputQty": "18741367403666092", - "swapFee": "14897293889310", + "inputIndex": 0, + "inputQty": "74473967558174087053312", + "outputQty0": "73855471618407210841567", + "outputQty": "72892833358669429556652", + "swapFee": "57006142027774830153", "mpReserves": [ - "77121350105823666836821321", - "27977900711301090326770264", - "20171755753696282479922511" + "63787794076299023140959625", + "12518667306173155630994401", + "36701466756428112208853997" ], "fpReserves": [ - "26050319628121682813079582", - "11491671786646133779994297" + "13582074682820627060645008", + "4346476318522120288948204" ], - "mAssetSupply": "125177941668837928367020805", - "LPTokenSupply": "37089461568381144402323948" + "mAssetSupply": "112753747056415992530202416", + "LPTokenSupply": "17349101468367932526453045" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "134440883574771879510016", - "outputQty0": "135130615517700903927494", - "outputQty": "134053045762373749183427", - "swapFee": "106568064214062021115", + "inputIndex": 0, + "inputQty": "6729063805616962666496", + "outputQty0": "6673131608498304213899", + "outputQty": "6584447765082668610995", + "swapFee": "5150181644139669427", "mpReserves": [ - "77121350105823666836821321", - "27977900711301090326770264", - "20306196637271054359432527" + "63794523140104640103626121", + "12518667306173155630994401", + "36701466756428112208853997" ], "fpReserves": [ - "26185450243639383717007076", - "11357618740883760030810870" + "13588747814429125364858907", + "4339891870757037620337209" ], - "mAssetSupply": "125313072284355629270948299", - "LPTokenSupply": "37089472225187565808526059" + "mAssetSupply": "112760420188024490834416315", + "LPTokenSupply": "17349101983386096940419987" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1576230886954221436928", - "outputQty0": "1598094178490495473222", - "outputQty": "1594291609392891183331", - "swapFee1": "945738532172532862", - "swapFee2": "639237671396198189", + "type": "swap_fp_to_mp", + "inputQty": "646046661026411226071040", + "outputIndex": 2, + "outputQty": "653772399006680377501513", + "swapFee": "0", + "redemptionFee": "391805428403492750219", "mpReserves": [ - "77121350105823666836821321", - "27976306419691697435586933", - "20306196637271054359432527" + "63794523140104640103626121", + "12518667306173155630994401", + "36047694357421431831352484" ], "fpReserves": [ - "26183852149460893221533854", - "11357618740883760030810870" + "12935738767089970781160115", + "4985938531783448846408249" ], - "mAssetSupply": "125311474829414810171673266", - "LPTokenSupply": "37087896088874464804342417" + "mAssetSupply": "112107802946113739743467742", + "LPTokenSupply": "17349101983386096940419987" }, { "type": "mint", "inputIndex": 0, - "inputQty": "41222270310711880", - "outputQty0": "41087952044714618", - "outputQty": "40501522470398401", + "inputQty": "199648353124482795175936", + "outputQty0": "197973873259953274745173", + "outputQty": "191157880465229519367861", "mpReserves": [ - "77121350147045937147533201", - "27976306419691697435586933", - "20306196637271054359432527" + "63994171493229122898802057", + "12518667306173155630994401", + "36047694357421431831352484" ], "fpReserves": [ - "26183852190548845266248472", - "11357618740883760030810870" + "13133712640349924055905288", + "4985938531783448846408249" ], - "mAssetSupply": "125311474870502762216387884", - "LPTokenSupply": "37087896129375987274740818" + "mAssetSupply": "112305776819373693018212915", + "LPTokenSupply": "17540259863851326459787848" }, { "type": "redeem", "outputIndex": 2, - "inputQty": "350181842602057554460672", - "outputQty0": "355029125152216756814243", - "outputQty": "353053455131640030427680", - "swapFee1": "210109105561234532676", - "swapFee2": "142011650060886702725", + "inputQty": "184066643003823538307072", + "outputQty0": "190515658477141690071856", + "outputQty": "190712102018477873281050", + "swapFee1": "110439985802294122984", + "swapFee2": "114309395086285014043", "mpReserves": [ - "77121350147045937147533201", - "27976306419691697435586933", - "19953143182139414329004847" + "63994171493229122898802057", + "12518667306173155630994401", + "35856982255402953958071434" ], "fpReserves": [ - "25828823065396628509434229", - "11357618740883760030810870" + "12943196981872782365833432", + "4985938531783448846408249" ], - "mAssetSupply": "124956587757000606346276366", - "LPTokenSupply": "36737735297684485843733413" + "mAssetSupply": "112115375470291637613155102", + "LPTokenSupply": "17356204264846083150893074" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "275610504663708662235136", - "outputQty0": "277048120779140241206972", - "outputQty": "274793063937346727508353", - "swapFee": "218481471504823212461", + "inputQty": "370885170842324762624", + "outputQty0": "370291020217720008739", + "outputQty": "366651786623669361357", + "swapFee": "286041380712165862", "mpReserves": [ - "77121350147045937147533201", - "27976306419691697435586933", - "20228753686803122991239983" + "63994171493229122898802057", + "12518667306173155630994401", + "35857353140573796282834058" ], "fpReserves": [ - "26105871186175768750641201", - "11082825676946413303302517" + "12943567272893000085842171", + "4985571879996825177046892" ], - "mAssetSupply": "125233635877779746587483338", - "LPTokenSupply": "36737757145831636326054659" + "mAssetSupply": "112115745761311855333163841", + "LPTokenSupply": "17356204293450221222109660" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "13934927253516264", - "outputQty0": "14129621534623703", - "outputQty": "14096046455345570", - "swapFee1": "8360956352109", - "swapFee2": "5651848613849", + "type": "swap_fp_to_mp", + "inputQty": "9214094611844863885312", + "outputIndex": 2, + "outputQty": "9307239743002789972409", + "swapFee": "0", + "redemptionFee": "5578752312552366353", "mpReserves": [ - "77121350147045937147533201", - "27976306405595650980241363", - "20228753686803122991239983" + "63994171493229122898802057", + "12518667306173155630994401", + "35848045900830793492861649" ], "fpReserves": [ - "26105871172046147216017498", - "11082825676946413303302517" + "12934269352372079475252581", + "4994785974608670040932204" ], - "mAssetSupply": "125233635863655776901473484", - "LPTokenSupply": "36737757131897545168173605" + "mAssetSupply": "112106453419543247274940604", + "LPTokenSupply": "17356204293450221222109660" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "2215603124961074579767296", "outputIndex": 2, - "inputQty": "3507080936015363833856", - "outputQty0": "3556079718983588906053", - "outputQty": "3536489953781573571099", - "swapFee1": "2104248561609218300", - "swapFee2": "1422431887593435562", + "outputQty": "2229193624971122645305910", + "swapFee": "0", + "redemptionFee": "1336628168861341346567", "mpReserves": [ - "77121350147045937147533201", - "27976306405595650980241363", - "20225217196849341417668884" + "63994171493229122898802057", + "12518667306173155630994401", + "33618852275859670847555739" ], "fpReserves": [ - "26102315092327163627111445", - "11082825676946413303302517" + "10706555737603177230973426", + "7210389099569744620699500" ], - "mAssetSupply": "125230081206368680906002993", - "LPTokenSupply": "36734250261386385965261579" + "mAssetSupply": "109880076432943206372008016", + "LPTokenSupply": "17356204293450221222109660" }, { - "type": "swap_fp_to_mp", - "inputQty": "14404809991995637760", + "type": "redeem", "outputIndex": 2, - "outputQty": "14434911993766137391", - "swapFee": "0", - "redemptionFee": "5805954540753132", + "inputQty": "91182692031610400", + "outputQty0": "94177947269193959", + "outputQty": "94207519814953896", + "swapFee1": "54709615218966", + "swapFee2": "56506768361516", "mpReserves": [ - "77121350147045937147533201", - "27976306405595650980241363", - "20225202761937347651531493" + "63994171493229122898802057", + "12518667306173155630994401", + "33618852181652151032601843" ], "fpReserves": [ - "26102300577440811744279442", - "11082840081756405298940277" + "10706555643425229961779467", + "7210389099569744620699500" ], - "mAssetSupply": "125230066697288283563924122", - "LPTokenSupply": "36734250261386385965261579" + "mAssetSupply": "109880076338821765871175573", + "LPTokenSupply": "17356204202273000152021156" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "11866104472030351982592", - "outputQty0": "11927033724764641356749", - "outputQty": "11826987705586417762595", - "swapFee": "9404501266260227166", + "type": "mint", + "inputIndex": 0, + "inputQty": "1559655310890925555712", + "outputQty0": "1546179002539895544005", + "outputQty": "1496105451431334816025", "mpReserves": [ - "77121350147045937147533201", - "27976306405595650980241363", - "20237068866409378003514085" + "63995731148540013824357769", + "12518667306173155630994401", + "33618852181652151032601843" ], "fpReserves": [ - "26114227611165576385636191", - "11071013094050818881177682" + "10708101822427769857323472", + "7210389099569744620699500" ], - "mAssetSupply": "125241993731013048205280871", - "LPTokenSupply": "36734251201836512591284295" + "mAssetSupply": "109881622517824305766719578", + "LPTokenSupply": "17357700307724431486837181" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "5996186076361129984000", - "outputQty0": "6079996889998794403648", - "outputQty": "6065542874150644561561", - "swapFee1": "3597711645816677990", - "swapFee2": "2431998755999517761", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "1464129445067023104", + "outputQty0": "1451478323534872883", + "outputQty": "1446272802564435924", + "swapFee": "1123577089248792", "mpReserves": [ - "77121350147045937147533201", - "27970240862721500335679802", - "20237068866409378003514085" + "63995732612669458891380873", + "12518667306173155630994401", + "33618852181652151032601843" ], "fpReserves": [ - "26108147614275577591232543", - "11071013094050818881177682" + "10708103273906093392196355", + "7210387653296942056263576" ], - "mAssetSupply": "125235916166121805410394984", - "LPTokenSupply": "36728255375531316042968094" + "mAssetSupply": "109881623969302629301592461", + "LPTokenSupply": "17357700307836789195762060" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "3499243552668671541248", - "outputQty0": "3548151289705202609776", - "outputQty": "3528622873161371748952", - "swapFee1": "2099546131601202924", - "swapFee2": "1419260515882081043", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "22253215763827482624", + "outputQty0": "22843473505750178789", + "outputQty": "22761548120823822869", + "swapFee": "17682939484740526", "mpReserves": [ - "77121350147045937147533201", - "27970240862721500335679802", - "20233540243536216631765133" + "63995732612669458891380873", + "12518689559388919458477025", + "33618852181652151032601843" ], "fpReserves": [ - "26104599462985872388622767", - "11071013094050818881177682" + "10708126117379599142375144", + "7210364891748821232440707" ], - "mAssetSupply": "125232369434092616089866251", - "LPTokenSupply": "36724756341933260531547138" + "mAssetSupply": "109881646812776135051771250", + "LPTokenSupply": "17357700309605083144236112" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "190522804892934369968128", - "outputQty0": "189898936677773702056149", - "outputQty": "188272518539858732491982", - "swapFee": "149732954858510374262", + "inputIndex": 2, + "inputQty": "2244103862853282299904", + "outputQty0": "2242052942055588666105", + "outputQty": "2234007421618830972193", + "swapFee": "1735553596736260084", "mpReserves": [ - "77311872951938871517501329", - "27970240862721500335679802", - "20233540243536216631765133" + "63995732612669458891380873", + "12518689559388919458477025", + "33621096285515004314901747" ], "fpReserves": [ - "26294498399663646090678916", - "10882740575510960148685700" + "10710368170321654731041249", + "7208130884327202401468514" ], - "mAssetSupply": "125422268370770389791922400", - "LPTokenSupply": "36724771315228746382584564" + "mAssetSupply": "109883888865718190640437355", + "LPTokenSupply": "17357700483160442817862120" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "43431678694003558055936", - "outputQty0": "43655188029576066821074", - "outputQty": "43022872729803014474285", + "inputIndex": 1, + "inputQty": "75513517472733642883072", + "outputQty0": "77504377064025921617058", + "outputQty": "74993350689955154004457", "mpReserves": [ - "77311872951938871517501329", - "27970240862721500335679802", - "20276971922230220189821069" + "63995732612669458891380873", + "12594203076861653101360097", + "33621096285515004314901747" ], "fpReserves": [ - "26338153587693222157499990", - "10882740575510960148685700" + "10787872547385680652658307", + "7208130884327202401468514" ], - "mAssetSupply": "125465923558799965858743474", - "LPTokenSupply": "36767794187958549397058849" + "mAssetSupply": "109961393242782216562054413", + "LPTokenSupply": "17432693833850397971866577" }, { - "type": "swap_fp_to_mp", - "inputQty": "1114826439382301258285056", - "outputIndex": 2, - "outputQty": "1116140019605324835589094", - "swapFee": "0", - "redemptionFee": "449078080591448586326", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "14805918711179055726592", + "outputQty0": "15193434242435323915450", + "outputQty": "15137796555743788583697", + "swapFee": "11760788949366669086", "mpReserves": [ - "77311872951938871517501329", - "27970240862721500335679802", - "19160831902624895354231975" + "63995732612669458891380873", + "12609008995572832157086689", + "33621096285515004314901747" ], "fpReserves": [ - "25215458386214600691682565", - "11997567014893261406970756" + "10803065981628115976573757", + "7192993087771458612884817" ], - "mAssetSupply": "124343677435401935841512375", - "LPTokenSupply": "36767794187958549397058849" + "mAssetSupply": "109976586677024651885969863", + "LPTokenSupply": "17432695009929292908533485" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "126669913118623875989504", - "outputQty0": "126914872882364596686839", - "outputQty": "126024645209420626610051", - "swapFee": "100117180999340762592", + "inputQty": "1820118787961652772864", + "outputQty0": "1867693158072157051505", + "outputQty": "1860824288069814943811", + "swapFee": "1445711805793909112", "mpReserves": [ - "77311872951938871517501329", - "28096910775840124211669306", - "19160831902624895354231975" + "63995732612669458891380873", + "12610829114360793809859553", + "33621096285515004314901747" ], "fpReserves": [ - "25342373259096965288369404", - "11871542369683840780360705" + "10804933674786188133625262", + "7191132263483388797941006" ], - "mAssetSupply": "124470592308284300438199214", - "LPTokenSupply": "36767804199676649331135108" + "mAssetSupply": "109978454370182724043021368", + "LPTokenSupply": "17432695154500473487924396" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "24642756041620875902976", - "outputQty0": "24786276501020553783537", - "outputQty": "24609647767250693130320", - "swapFee": "19551655125337791076", + "type": "swap_fp_to_mp", + "inputQty": "6396485354791545864192", + "outputIndex": 1, + "outputQty": "6247723115776777036925", + "swapFee": "0", + "redemptionFee": "3848960123319158523", "mpReserves": [ - "77311872951938871517501329", - "28096910775840124211669306", - "19185474658666516230134951" + "63995732612669458891380873", + "12604581391245017032822628", + "33621096285515004314901747" ], "fpReserves": [ - "25367159535597985842152941", - "11846932721916590087230385" + "10798518741247322869419776", + "7197528748838180343805198" ], - "mAssetSupply": "124495378584785320991982751", - "LPTokenSupply": "36767806154842161864914215" + "mAssetSupply": "109972043285603982097974405", + "LPTokenSupply": "17432695154500473487924396" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "162993656628288002457600", - "outputQty0": "165206383983868424517134", - "outputQty": "164820618313312393159681", - "swapFee1": "97796193976972801474", - "swapFee2": "66082553593547369806", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "100488354288839114752", + "outputQty0": "103117157614062965480", + "outputQty": "102738957331086293184", + "swapFee": "79819441508274262", "mpReserves": [ - "77311872951938871517501329", - "27932090157526811818509625", - "19185474658666516230134951" + "63995732612669458891380873", + "12604681879599305871937380", + "33621096285515004314901747" ], "fpReserves": [ - "25201953151614117417635807", - "11846932721916590087230385" + "10798621858404936932385256", + "7197426009880849257512014" ], - "mAssetSupply": "124330238283355046114835423", - "LPTokenSupply": "36604822277833271559736762" + "mAssetSupply": "109972146402761596160939885", + "LPTokenSupply": "17432695162482417638751822" }, { - "type": "swap_fp_to_mp", - "inputQty": "27374738723547111227392", - "outputIndex": 0, - "outputQty": "27630716544755713578539", - "swapFee": "0", - "redemptionFee": "11018767502614346727", + "type": "mint", + "inputIndex": 2, + "inputQty": "3642192433497373671424", + "outputQty0": "3638966165614495857649", + "outputQty": "3520995889641772789860", "mpReserves": [ - "77284242235394115803922790", - "27932090157526811818509625", - "19185474658666516230134951" + "63995732612669458891380873", + "12604681879599305871937380", + "33624738477948501688573171" ], "fpReserves": [ - "25174406232857581550817370", - "11874307460640137198457777" + "10802260824570551428242905", + "7197426009880849257512014" ], - "mAssetSupply": "124302702383366012862363713", - "LPTokenSupply": "36604822277833271559736762" + "mAssetSupply": "109975785368927210656797534", + "LPTokenSupply": "17436216158372059411541682" }, { - "type": "swap_fp_to_mp", - "inputQty": "78359769552011221008384", - "outputIndex": 1, - "outputQty": "78660162619070316640665", - "swapFee": "0", - "redemptionFee": "31538572486808240270", + "type": "redeem", + "outputIndex": 0, + "inputQty": "101850569342800711647232", + "outputQty0": "105198299219489507222454", + "outputQty": "106044396982138207031562", + "swapFee1": "61110341605680426988", + "swapFee2": "63118979531693704333", "mpReserves": [ - "77284242235394115803922790", - "27853429994907741501868960", - "19185474658666516230134951" + "63889688215687320684349311", + "12604681879599305871937380", + "33624738477948501688573171" ], "fpReserves": [ - "25095559801640560950142193", - "11952667230192148419466161" + "10697062525351061921020451", + "7197426009880849257512014" ], - "mAssetSupply": "124223887490721479069928806", - "LPTokenSupply": "36604822277833271559736762" + "mAssetSupply": "109870650188687252843279413", + "LPTokenSupply": "17334371700063419267937148" }, { "type": "swap_mp_to_fp", "inputIndex": 1, - "inputQty": "7528782939197303422976", - "outputQty0": "7543658175273773796871", - "outputQty": "7491491074817272699216", - "swapFee": "5950883202914847946", + "inputQty": "490894968125059648978944", + "outputQty0": "503216651318480990609924", + "outputQty": "501165024307849834808559", + "swapFee": "389504158766670531756", "mpReserves": [ - "77284242235394115803922790", - "27860958777846938805291936", - "19185474658666516230134951" + "63889688215687320684349311", + "13095576847724365520916324", + "33624738477948501688573171" ], "fpReserves": [ - "25103103459815834723939064", - "11945175739117331146766945" + "11200279176669542911630375", + "6696260985572999422703455" ], - "mAssetSupply": "124231431148896752843725677", - "LPTokenSupply": "36604822872921591851221556" + "mAssetSupply": "110373866840005733833889337", + "LPTokenSupply": "17334410650479295934990323" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "100262750428789056", - "outputQty0": "100844372827259676", - "outputQty": "99439686518124684", + "type": "swap_fp_to_mp", + "inputQty": "2422318185507803627520", + "outputIndex": 1, + "outputQty": "2372762511818614406477", + "swapFee": "0", + "redemptionFee": "1458913335094299274", "mpReserves": [ - "77284242235394115803922790", - "27860958777846938805291936", - "19185474758929266658924007" + "63889688215687320684349311", + "13093204085212546906509847", + "33624738477948501688573171" ], "fpReserves": [ - "25103103560660207551198740", - "11945175739117331146766945" + "11197847654444385746172219", + "6698683303758507226330975" ], - "mAssetSupply": "124231431249741125670985353", - "LPTokenSupply": "36604822972361278369346240" + "mAssetSupply": "110371436776693911762730455", + "LPTokenSupply": "17334410650479295934990323" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "616064011039636586496", - "outputQty0": "613947107894566444265", - "outputQty": "605395257708689698234", + "type": "redeem", + "outputIndex": 1, + "inputQty": "90149644049852359770112", + "outputQty0": "93148071032216994292193", + "outputQty": "90881442984886627322147", + "swapFee1": "54089786429911415862", + "swapFee2": "55888842619330196575", "mpReserves": [ - "77284858299405155440509286", - "27860958777846938805291936", - "19185474758929266658924007" + "63889688215687320684349311", + "13002322642227660279187700", + "33624738477948501688573171" ], "fpReserves": [ - "25103717507768102117643005", - "11945175739117331146766945" + "11104699583412168751880026", + "6698683303758507226330975" ], - "mAssetSupply": "124232045196849020237429618", - "LPTokenSupply": "36605428367618987059044474" + "mAssetSupply": "110278344594504314098634837", + "LPTokenSupply": "17244266415408086566361797" }, { "type": "swap_fp_to_mp", - "inputQty": "12661573660403396608", - "outputIndex": 0, - "outputQty": "12778429942049413483", + "inputQty": "163978970991333834752", + "outputIndex": 1, + "outputQty": "160557143215962235755", "swapFee": "0", - "redemptionFee": "5095846651360876", + "redemptionFee": "98753601143648677", "mpReserves": [ - "77284845520975213391095803", - "27860958777846938805291936", - "19185474758929266658924007" + "63889688215687320684349311", + "13002162085084444316951945", + "33624738477948501688573171" ], "fpReserves": [ - "25103704768151473715450542", - "11945188400690991550163553" + "11104534994076929337417659", + "6698847282729498560165727" ], - "mAssetSupply": "124232032462328238486598031", - "LPTokenSupply": "36605428367618987059044474" + "mAssetSupply": "110278180103922675827821147", + "LPTokenSupply": "17244266415408086566361797" }, { - "type": "swap_fp_to_mp", - "inputQty": "1238915167959075832987648", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "54745360489137989222400", + "outputQty0": "54702871375656576225309", + "outputQty": "54453249177798136339312", + "swapFee": "42328311585000020123", + "mpReserves": [ + "63889688215687320684349311", + "13002162085084444316951945", + "33679483838437639677795571" + ], + "fpReserves": [ + "11159237865452585913642968", + "6644394033551700423826415" + ], + "mAssetSupply": "110332882975298332404046456", + "LPTokenSupply": "17244270648239245066363809" + }, + { + "type": "redeem", "outputIndex": 1, - "outputQty": "1242357610715483463521141", - "swapFee": "0", - "redemptionFee": "498202645698461973650", + "inputQty": "141435925436497823531008", + "outputQty0": "146142014850742161636009", + "outputQty": "142520881252529639367120", + "swapFee1": "84861555261898694118", + "swapFee2": "87685208910445296981", "mpReserves": [ - "77284845520975213391095803", - "26618601167131455341770795", - "19185474758929266658924007" + "63889688215687320684349311", + "12859641203831914677584825", + "33679483838437639677795571" ], "fpReserves": [ - "23858198153905318781325535", - "13184103568650067383151201" + "11013095850601843752006959", + "6644394033551700423826415" ], - "mAssetSupply": "122987024050727782014446674", - "LPTokenSupply": "36605428367618987059044474" + "mAssetSupply": "110186828645656500687707428", + "LPTokenSupply": "17102843208958273432702212" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "105947554439687040925696", - "outputQty0": "105572410955517482237093", - "outputQty": "105004528340213748536922", - "swapFee": "83326475541590753944", + "inputIndex": 2, + "inputQty": "203781372856874909564928", + "outputQty0": "203605421259963356244684", + "outputQty": "202643306602636563698421", + "swapFee": "157542454702578227091", "mpReserves": [ - "77390793075414900432021499", - "26618601167131455341770795", - "19185474758929266658924007" + "63889688215687320684349311", + "12859641203831914677584825", + "33883265211294514587360499" ], "fpReserves": [ - "23963770564860836263562628", - "13079099040309853634614279" + "11216701271861807108251643", + "6441750726949063860127994" ], - "mAssetSupply": "123092596461683299496683767", - "LPTokenSupply": "36605436700266541218119868" + "mAssetSupply": "110390434066916464043952112", + "LPTokenSupply": "17102858963203743690524921" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "1091672274014779", - "outputQty0": "1094191998390236", - "outputQty": "1088239389391270", - "swapFee": "863594082777", + "type": "swap_fp_to_mp", + "inputQty": "48086772314046772281344", + "outputIndex": 1, + "outputQty": "47068157665320700623525", + "swapFee": "0", + "redemptionFee": "28970845776961002361", "mpReserves": [ - "77390793075414900432021499", - "26618601168223127615785574", - "19185474758929266658924007" + "63889688215687320684349311", + "12812573046166593976961300", + "33883265211294514587360499" ], "fpReserves": [ - "23963770565955028261952864", - "13079099039221614245223009" + "11168416528900205437648889", + "6489837499263110632409338" ], - "mAssetSupply": "123092596462777491495074003", - "LPTokenSupply": "36605436700266627577528145" + "mAssetSupply": "110342178294800639334351719", + "LPTokenSupply": "17102858963203743690524921" }, { "type": "mint", "inputIndex": 1, - "inputQty": "718365391192391021494272", - "outputQty0": "719953415599624779071186", - "outputQty": "710244125212008148643489", + "inputQty": "681174813159329759232", + "outputQty0": "698425199330605132474", + "outputQty": "675449534913266235504", "mpReserves": [ - "77390793075414900432021499", - "27336966559415518637279846", - "19185474758929266658924007" + "63889688215687320684349311", + "12813254220979753306720532", + "33883265211294514587360499" ], "fpReserves": [ - "24683723981554653041024050", - "13079099039221614245223009" + "11169114954099536042781363", + "6489837499263110632409338" ], - "mAssetSupply": "123812549878377116274145189", - "LPTokenSupply": "37315680825478635726171634" + "mAssetSupply": "110342876719999969939484193", + "LPTokenSupply": "17103534412738656956760425" }, { "type": "swap_fp_to_mp", - "inputQty": "92031781629495", + "inputQty": "60542218197236552", "outputIndex": 2, - "outputQty": "91919296288250", + "outputQty": "60807120553258048", "swapFee": "0", - "redemptionFee": "36995554738", + "redemptionFee": "36472913166386", "mpReserves": [ - "77390793075414900432021499", - "27336966559415518637279846", - "19185474758837347362635757" + "63889688215687320684349311", + "12813254220979753306720532", + "33883265150487394034102451" ], "fpReserves": [ - "24683723981462164154178025", - "13079099039313646026852504" + "11169114893311347432136567", + "6489837559805328829645890" ], - "mAssetSupply": "123812549878284664382853902", - "LPTokenSupply": "37315680825478635726171634" + "mAssetSupply": "110342876659248254242005783", + "LPTokenSupply": "17103534412738656956760425" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1137727845798009216", - "outputQty0": "1152649508925106103", - "outputQty": "1149756275838065244", - "swapFee1": "682636707478805", - "swapFee2": "461059803570042", + "type": "mint", + "inputIndex": 0, + "inputQty": "7786327132756836876288", + "outputQty0": "7720885334997179321929", + "outputQty": "7466886534665107571200", "mpReserves": [ - "77390793075414900432021499", - "27336965409659242799214602", - "19185474758837347362635757" + "63897474542820077521225599", + "12813254220979753306720532", + "33883265150487394034102451" ], "fpReserves": [ - "24683722828812655229071922", - "13079099039313646026852504" + "11176835778646344611458496", + "6489837559805328829645890" ], - "mAssetSupply": "123812548726096215261317841", - "LPTokenSupply": "37315679687819053598910298" + "mAssetSupply": "110350597544583251421327712", + "LPTokenSupply": "17111001299273322064331625" }, { "type": "swap_mp_to_fp", "inputIndex": 2, - "inputQty": "34725129097881952714752", - "outputQty0": "34925927698931058204643", - "outputQty": "34724781052128668550048", - "swapFee": "27562417042316839498", + "inputQty": "312562527965452257198080", + "outputQty0": "312262546392770587566778", + "outputQty": "310635237576982449448817", + "swapFee": "241580151526348772466", "mpReserves": [ - "77390793075414900432021499", - "27336965409659242799214602", - "19220199887935229315350509" + "63897474542820077521225599", + "12813254220979753306720532", + "34195827678452846291300531" ], "fpReserves": [ - "24718648756511586287276565", - "13044374258261517358302456" + "11489098325039115199025274", + "6179202322228346380197073" ], - "mAssetSupply": "123847474653795146319522484", - "LPTokenSupply": "37315682444060757830594247" + "mAssetSupply": "110662860090976022008894490", + "LPTokenSupply": "17111025457288474699208871" }, { - "type": "swap_fp_to_mp", - "inputQty": "597022860428506300416", - "outputIndex": 0, - "outputQty": "601867309038382341439", - "swapFee": "0", - "redemptionFee": "240005286367104497", - "mpReserves": [ - "77390191208105862049680060", - "27336965409659242799214602", - "19220199887935229315350509" - ], - "fpReserves": [ - "24718048743295668526033078", - "13044971281121945864602872" - ], - "mAssetSupply": "123846874880584514925383494", - "LPTokenSupply": "37315682444060757830594247" - }, - { - "type": "swap_fp_to_mp", - "inputQty": "16277813740041691136", - "outputIndex": 0, - "outputQty": "16409891056921606341", - "swapFee": "0", - "redemptionFee": "6543735843233067", + "type": "mint", + "inputIndex": 1, + "inputQty": "39450418903596572672", + "outputQty0": "40453708247655096455", + "outputQty": "39111915061646538038", "mpReserves": [ - "77390174798214805128073719", - "27336965409659242799214602", - "19220199887935229315350509" + "63897474542820077521225599", + "12813293671398656903293204", + "34195827678452846291300531" ], "fpReserves": [ - "24718032383956060443363925", - "13044987558935685906294008" + "11489138778747362854121729", + "6179202322228346380197073" ], - "mAssetSupply": "123846858527788642685947408", - "LPTokenSupply": "37315682444060757830594247" + "mAssetSupply": "110662900544684269663990945", + "LPTokenSupply": "17111064569203536345746909" }, { "type": "swap_mp_to_fp", "inputIndex": 0, - "inputQty": "670930101235290617151488", - "outputQty0": "668580846928917806401870", - "outputQty": "664436563976663369263548", - "swapFee": "527590330690264358238", + "inputQty": "2047394861673584263168", + "outputQty0": "2030250166243365164137", + "outputQty": "2018902530047587043091", + "swapFee": "1570327172978453836", "mpReserves": [ - "78061104899450095745225207", - "27336965409659242799214602", - "19220199887935229315350509" + "63899521937681751105488767", + "12813293671398656903293204", + "34195827678452846291300531" ], "fpReserves": [ - "25386613230884978249765795", - "12380550994959022537030460" + "11491169028913606219285866", + "6177183419698298793153982" ], - "mAssetSupply": "124515439374717560492349278", - "LPTokenSupply": "37315735203093826857030070" + "mAssetSupply": "110664930794850513029155082", + "LPTokenSupply": "17111064726236253643592292" }, { "type": "mint", "inputIndex": 1, - "inputQty": "12334422093627625472", - "outputQty0": "12361205012685722526", - "outputQty": "12189976474809178452", + "inputQty": "7090379140192165429248", + "outputQty0": "7270606660878566960385", + "outputQty": "7029429659145748761705", "mpReserves": [ - "78061104899450095745225207", - "27336977744081336426840074", - "19220199887935229315350509" + "63899521937681751105488767", + "12820384050538849068722452", + "34195827678452846291300531" ], "fpReserves": [ - "25386625592089990935488321", - "12380550994959022537030460" + "11498439635574484786246251", + "6177183419698298793153982" ], - "mAssetSupply": "124515451735922573178071804", - "LPTokenSupply": "37315747393070301666208522" + "mAssetSupply": "110672201401511391596115467", + "LPTokenSupply": "17118094155895399392353997" }, { - "type": "redeem", + "type": "swap_fp_to_mp", + "inputQty": "134898781763914172465152", "outputIndex": 0, - "inputQty": "313897191345321156804608", - "outputQty0": "318107871168687101924184", - "outputQty": "319101671657437998986383", - "swapFee1": "188338314807192694082", - "swapFee2": "127243148467474840769", + "outputQty": "136587171744895660188896", + "swapFee": "0", + "redemptionFee": "81316186180295525471", "mpReserves": [ - "77742003227792657746238824", - "27336977744081336426840074", - "19220199887935229315350509" + "63762934765936855445299871", + "12820384050538849068722452", + "34195827678452846291300531" ], "fpReserves": [ - "25068517720921303833564137", - "12380550994959022537030460" + "11362912658607325577127141", + "6312082201462212965619134" ], - "mAssetSupply": "124197471107902353550988389", - "LPTokenSupply": "37001869035556461228673322" + "mAssetSupply": "110536755740730412682521828", + "LPTokenSupply": "17118094155895399392353997" }, { - "type": "swap_fp_to_mp", - "inputQty": "1611901841672895488", - "outputIndex": 0, - "outputQty": "1626185835798188842", - "swapFee": "0", - "redemptionFee": "648455389110523", + "type": "mint", + "inputIndex": 1, + "inputQty": "280803585800141312", + "outputQty0": "287913175185469152", + "outputQty": "278395139728338621", "mpReserves": [ - "77742001601606821948049982", - "27336977744081336426840074", - "19220199887935229315350509" + "63762934765936855445299871", + "12820384331342434868863764", + "34195827678452846291300531" ], "fpReserves": [ - "25068516099782831057255345", - "12380552606860864209925948" + "11362912946520500762596293", + "6312082201462212965619134" ], - "mAssetSupply": "124197469487412336163790120", - "LPTokenSupply": "37001869035556461228673322" + "mAssetSupply": "110536756028643587867990980", + "LPTokenSupply": "17118094434290539120692618" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "8775725664133966725120", - "outputQty0": "8893268581905124922207", - "outputQty": "8920954848635673200819", - "swapFee1": "5265435398480380035", - "swapFee2": "3557307432762049968", + "type": "mint", + "inputIndex": 2, + "inputQty": "592263395847842944", + "outputQty0": "591659335780543529", + "outputQty": "572099846864812727", "mpReserves": [ - "77733080646758186274849163", - "27336977744081336426840074", - "19220199887935229315350509" + "63762934765936855445299871", + "12820384331342434868863764", + "34195828270716242139143475" ], "fpReserves": [ - "25059622831200925932333138", - "12380552606860864209925948" + "11362913538179836543139822", + "6312082201462212965619134" ], - "mAssetSupply": "124188579776137863800917881", - "LPTokenSupply": "36993093836435867109986205" + "mAssetSupply": "110536756620302923648534509", + "LPTokenSupply": "17118095006390385985505345" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "1025687293843075183411200", - "outputQty0": "1039343720211743064468296", - "outputQty": "1036559815936571872565912", - "swapFee1": "615412376305845110046", - "swapFee2": "415737488084697225787", + "type": "mint", + "inputIndex": 1, + "inputQty": "12496568281577734275072", + "outputQty0": "12812653117392668087803", + "outputQty": "12389059097347482428903", "mpReserves": [ - "77733080646758186274849163", - "26300417928144764554274162", - "19220199887935229315350509" + "63762934765936855445299871", + "12832880899624012603138836", + "34195828270716242139143475" ], "fpReserves": [ - "24020279110989182867864842", - "12380552606860864209925948" + "11375726191297229211227625", + "6312082201462212965619134" ], - "mAssetSupply": "123149651793414205433675372", - "LPTokenSupply": "35967468083830422511086009" + "mAssetSupply": "110549569273420316316622312", + "LPTokenSupply": "17130484065487733467934248" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "507146394515854131200", - "outputQty0": "508378526499905130552", - "outputQty": "505314472648415100844", - "swapFee": "401143433354900355", + "type": "redeem", + "outputIndex": 2, + "inputQty": "402669776271047655424", + "outputQty0": "416188377810107038737", + "outputQty": "416361557523629780321", + "swapFee1": "241601865762628593", + "swapFee2": "249713026686064223", "mpReserves": [ - "77733080646758186274849163", - "26300925074539280408405362", - "19220199887935229315350509" + "63762934765936855445299871", + "12832880899624012603138836", + "34195411909158718509363154" ], "fpReserves": [ - "24020787489515682772995394", - "12380047292388215794825104" + "11375310002919419104188888", + "6312082201462212965619134" ], - "mAssetSupply": "123150160171940705338805924", - "LPTokenSupply": "35967468123944765846576044" + "mAssetSupply": "110549153334755532895647798", + "LPTokenSupply": "17130081419871648996541683" }, { "type": "mint", "inputIndex": 2, - "inputQty": "145581758202111441502208", - "outputQty0": "146416278770749360182471", - "outputQty": "144413222438259737777097", + "inputQty": "91241443059973673189376", + "outputQty0": "91147483537368638757982", + "outputQty": "88132699181787119855415", "mpReserves": [ - "77733080646758186274849163", - "26300925074539280408405362", - "19365781646137340756852717" + "63762934765936855445299871", + "12832880899624012603138836", + "34286653352218692182552530" ], "fpReserves": [ - "24167203768286432133177865", - "12380047292388215794825104" + "11466457486456787742946870", + "6312082201462212965619134" ], - "mAssetSupply": "123296576450711454698988395", - "LPTokenSupply": "36111881346383025584353141" + "mAssetSupply": "110640300818292901534405780", + "LPTokenSupply": "17218214119053436116397098" }, { - "type": "swap_mp_to_fp", + "type": "mint", "inputIndex": 1, - "inputQty": "940624199888640016384", - "outputQty0": "942914535620844117090", - "outputQty": "937169510698676596688", - "swapFee": "744003642622833365", + "inputQty": "530228539539451", + "outputQty0": "543642826644560", + "outputQty": "525654023671666", "mpReserves": [ - "77733080646758186274849163", - "26301865698739169048421746", - "19365781646137340756852717" + "63762934765936855445299871", + "12832880900154241142678287", + "34286653352218692182552530" ], "fpReserves": [ - "24168146682822052977294955", - "12379110122877517118228416" + "11466457487000430569591430", + "6312082201462212965619134" ], - "mAssetSupply": "123297519365247075543105485", - "LPTokenSupply": "36111881420783389846636477" + "mAssetSupply": "110640300818836544361050340", + "LPTokenSupply": "17218214119579090140068764" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "243852919483275214848", - "outputQty0": "247089739607586981174", - "outputQty": "245594914270998747262", - "swapFee1": "146311751689965128", - "swapFee2": "98835895843034792", + "type": "mint", + "inputIndex": 2, + "inputQty": "16441239508827257176064", + "outputQty0": "16424034122267276628275", + "outputQty": "15880533194056532051911", "mpReserves": [ - "77733080646758186274849163", - "26301865698739169048421746", - "19365536051223069758105455" + "63762934765936855445299871", + "12832880900154241142678287", + "34303094591727519439728594" ], "fpReserves": [ - "24167899593082445390313781", - "12379110122877517118228416" + "11482881521122697846219705", + "6312082201462212965619134" ], - "mAssetSupply": "123297272374343363799159103", - "LPTokenSupply": "36111637582495081740418141" + "mAssetSupply": "110656724852958811637678615", + "LPTokenSupply": "17234094652773146672120675" }, { - "type": "redeem", - "outputIndex": 2, - "inputQty": "84722311501645840", - "outputQty0": "85846885149997248", - "outputQty": "85327528108740889", - "swapFee1": "50833386900987", - "swapFee2": "34338754059998", + "type": "swap_fp_to_mp", + "inputQty": "3091591771187972606525440", + "outputIndex": 1, + "outputQty": "2995906469910539737490871", + "swapFee": "0", + "redemptionFee": "1858097466405599181411", "mpReserves": [ - "77733080646758186274849163", - "26301865698739169048421746", - "19365535965895541649364566" + "63762934765936855445299871", + "9836974430243701405187416", + "34303094591727519439728594" ], "fpReserves": [ - "24167899507235560240316533", - "12379110122877517118228416" + "8386052410446699210534081", + "9403673972650185572144574" ], - "mAssetSupply": "123297272288530817403221853", - "LPTokenSupply": "36111637497777853577462399" + "mAssetSupply": "107561753839749218601174402", + "LPTokenSupply": "17234094652773146672120675" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "91798974513821704519680", - "outputQty0": "91471181023639372118737", - "outputQty": "90218142015116688578502", + "type": "swap_fp_to_mp", + "inputQty": "127004659930061982400512", + "outputIndex": 0, + "outputQty": "128196992553676770183391", + "swapFee": "0", + "redemptionFee": "76137343302962529966", "mpReserves": [ - "77824879621272007979368843", - "26301865698739169048421746", - "19365535965895541649364566" + "63634737773383178675116480", + "9836974430243701405187416", + "34303094591727519439728594" ], "fpReserves": [ - "24259370688259199612435270", - "12379110122877517118228416" + "8259156838275094993923539", + "9530678632580247554545086" ], - "mAssetSupply": "123388743469554456775340590", - "LPTokenSupply": "36201855639792970266040901" + "mAssetSupply": "107434934404920917347093826", + "LPTokenSupply": "17234094652773146672120675" }, { "type": "redeem", - "outputIndex": 2, - "inputQty": "86859500621299154944", - "outputQty0": "88013660496643786443", - "outputQty": "87479984010856097041", - "swapFee1": "52115700372779492", - "swapFee2": "35205464198657514", + "outputIndex": 1, + "inputQty": "68852645039220616", + "outputQty0": "70993889330199113", + "outputQty": "68026279346888054", + "swapFee1": "41311587023532", + "swapFee2": "42596333598119", "mpReserves": [ - "77824879621272007979368843", - "26301865698739169048421746", - "19365448485911530793267525" + "63634737773383178675116480", + "9836974362217422058299362", + "34303094591727519439728594" ], "fpReserves": [ - "24259282674598702968648827", - "12379110122877517118228416" + "8259156767281205663724426", + "9530678632580247554545086" ], - "mAssetSupply": "123388655491099424330211661", - "LPTokenSupply": "36201768785503919004163906" + "mAssetSupply": "107434934333969624350492832", + "LPTokenSupply": "17234094583924632791602412" }, { "type": "swap_fp_to_mp", - "inputQty": "407413197727155991085056", + "inputQty": "98706579441562081558528", "outputIndex": 1, - "outputQty": "408306474038461539607138", + "outputQty": "94445444774346620615308", "swapFee": "0", - "redemptionFee": "163796882040653012369", + "redemptionFee": "59162841945952579880", "mpReserves": [ - "77824879621272007979368843", - "25893559224700707508814608", - "19365448485911530793267525" + "63634737773383178675116480", + "9742528917443075437684054", + "34303094591727519439728594" ], "fpReserves": [ - "23849790469497070437724436", - "12786523320604673109313472" + "8160552030704618030590338", + "9629385212021809636103614" ], - "mAssetSupply": "122979327082879832452299639", - "LPTokenSupply": "36201768785503919004163906" + "mAssetSupply": "107336388760234982669938624", + "LPTokenSupply": "17234094583924632791602412" }, { "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "3202424114038099673088", + "outputQty0": "3342743662603852454020", + "outputQty": "3343765384667321974427", + "swapFee": "2592192846486231044", + "mpReserves": [ + "63634737773383178675116480", + "9745731341557113537357142", + "34303094591727519439728594" + ], + "fpReserves": [ + "8163894774367221883044358", + "9626041446637142314129187" + ], + "mAssetSupply": "107339731503897586522392644", + "LPTokenSupply": "17234094843143917440225516" + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "194014134318643019776", - "outputQty0": "193313624263259299475", - "outputQty": "192227424013064867311", - "swapFee": "152558553496198907", + "inputQty": "47950276091439594078208", + "outputQty0": "47430794516712407978019", + "outputQty": "45975773522820437575809", "mpReserves": [ - "77825073635406326622388619", - "25893559224700707508814608", - "19365448485911530793267525" + "63682688049474618269194688", + "9745731341557113537357142", + "34303094591727519439728594" ], "fpReserves": [ - "23849983783121333697023911", - "12786331093180660044446161" + "8211325568883934291022377", + "9626041446637142314129187" ], - "mAssetSupply": "122979520396504095711599114", - "LPTokenSupply": "36201768800759774353783796" + "mAssetSupply": "107387162298414298930370663", + "LPTokenSupply": "17280070616666737877801325" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "24918861603181338624", - "outputQty0": "25060472739018452947", - "outputQty": "24919658392371799475", - "swapFee": "19777132647563350", + "inputIndex": 0, + "inputQty": "77792578797872019931136", + "outputQty0": "76948702799426315322997", + "outputQty": "76964419408178083638581", + "swapFee": "59668873931837728449", "mpReserves": [ - "77825073635406326622388619", - "25893559224700707508814608", - "19365473404773133974606149" + "63760480628272490289125824", + "9745731341557113537357142", + "34303094591727519439728594" ], "fpReserves": [ - "23850008843594072715476858", - "12786306173522267672646686" + "8288274271683360606345374", + "9549077027228964230490606" ], - "mAssetSupply": "122979545456976834730052061", - "LPTokenSupply": "36201768802737487618540131" + "mAssetSupply": "107464111001213725245693660", + "LPTokenSupply": "17280076583554131061574169" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "249319585104222467653632", - "outputQty0": "250716158461570804097950", - "outputQty": "249268758039534131841216", - "swapFee": "197855567297763507113", + "type": "mint", + "inputIndex": 0, + "inputQty": "202367206886391283712", + "outputQty0": "200170214494783264586", + "outputQty": "194014648295761793800", "mpReserves": [ - "77825073635406326622388619", - "25893559224700707508814608", - "19614792989877356442259781" + "63760682995479376680409536", + "9745731341557113537357142", + "34303094591727519439728594" ], "fpReserves": [ - "24100725002055643519574808", - "12537037415482733540805470" + "8288474441897855389609960", + "9549077027228964230490606" ], - "mAssetSupply": "123230261615438405534150011", - "LPTokenSupply": "36201788588294217394890842" + "mAssetSupply": "107464311171428220028958246", + "LPTokenSupply": "17280270598202426823367969" }, { - "type": "swap_fp_to_mp", - "inputQty": "29703283838970939572224", + "type": "redeem", "outputIndex": 0, - "outputQty": "29951034966541281167682", - "swapFee": "0", - "redemptionFee": "11942395031045079333", + "inputQty": "29418930812962335621120", + "outputQty0": "30333902737326930724777", + "outputQty": "30648330883010714133720", + "swapFee1": "17651358487777401372", + "swapFee2": "18200341642396158434", + "mpReserves": [ + "63730034664596365966275816", + "9745731341557113537357142", + "34303094591727519439728594" + ], + "fpReserves": [ + "8258140539160528458885183", + "9549077027228964230490606" + ], + "mAssetSupply": "107433995469032535494391903", + "LPTokenSupply": "17250853432525313265486986" + }, + { + "type": "redeem", + "outputIndex": 1, + "inputQty": "21192574236964209819648", + "outputQty0": "21851463157712597825219", + "outputQty": "20917992261423433427037", + "swapFee1": "12715544542178525891", + "swapFee2": "13110877894627558695", "mpReserves": [ - "77795122600439785341220937", - "25893559224700707508814608", - "19614792989877356442259781" + "63730034664596365966275816", + "9724813349295690103930105", + "34303094591727519439728594" ], "fpReserves": [ - "24070869014478030821241347", - "12566740699321704480377694" + "8236289076002815861059964", + "9549077027228964230490606" ], - "mAssetSupply": "123200417570255823880895883", - "LPTokenSupply": "36201788588294217394890842" + "mAssetSupply": "107412157116752717524125379", + "LPTokenSupply": "17229662129842803273519927" + }, + { + "type": "redeem", + "outputIndex": 2, + "inputQty": "103589069258018799616", + "outputQty0": "106809263010991603702", + "outputQty": "106999997505575746349", + "swapFee1": "62153441554811279", + "swapFee2": "64085557806594962", + "mpReserves": [ + "63730034664596365966275816", + "9724813349295690103930105", + "34302987591730013863982245" + ], + "fpReserves": [ + "8236182266739804869456262", + "9549077027228964230490606" + ], + "mAssetSupply": "107412050371575264339116639", + "LPTokenSupply": "17229558546988889410201438" }, { "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "2344826953913873465344", - "outputQty0": "2336453053994803591625", - "outputQty": "2322683877256414177462", - "swapFee": "1843688552586330830", + "inputIndex": 1, + "inputQty": "1820706753697080588369920", + "outputQty0": "1888361037106036063573156", + "outputQty": "1886023023365180876834791", + "swapFee": "1463720717064577489562", "mpReserves": [ - "77797467427393699214686281", - "25893559224700707508814608", - "19614792989877356442259781" + "63730034664596365966275816", + "11545520102992770692300025", + "34302987591730013863982245" ], "fpReserves": [ - "24073205467532025624832972", - "12564418015444448066200232" + "10124543303845840933029418", + "7663054003863783353655815" ], - "mAssetSupply": "123202754023309818684487508", - "LPTokenSupply": "36201788772663072653523925" + "mAssetSupply": "109300411408681300402689795", + "LPTokenSupply": "17229704919060595867950394" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "26216931263544360435712", - "outputQty0": "26361354430495245375642", - "outputQty": "26205523993966607696083", - "swapFee": "20801611144488245700", + "inputIndex": 0, + "inputQty": "13223274089672894464", + "outputQty0": "13101446385125036018", + "outputQty": "13066056717955146059", + "swapFee": "10144093759867970", "mpReserves": [ - "77797467427393699214686281", - "25893559224700707508814608", - "19641009921140900802695493" + "63730047887870455639170280", + "11545520102992770692300025", + "34302987591730013863982245" ], "fpReserves": [ - "24099566821962520870208614", - "12538212491450481458504149" + "10124556405292226058065436", + "7663040937807065398509756" ], - "mAssetSupply": "123229115377740313929863150", - "LPTokenSupply": "36201790852824187102348495" + "mAssetSupply": "109300424510127685527725813", + "LPTokenSupply": "17229704920075005243937191" }, { - "type": "swap_fp_to_mp", - "inputQty": "21238667192214940024832", - "outputIndex": 1, - "outputQty": "21284601097957478296674", - "swapFee": "0", - "redemptionFee": "8539175272621187682", + "type": "mint", + "inputIndex": 1, + "inputQty": "3079979822988503552", + "outputQty0": "3176369820655812806", + "outputQty": "3074220973295562114", "mpReserves": [ - "77797467427393699214686281", - "25872274623602750030517934", - "19641009921140900802695493" + "63730047887870455639170280", + "11545523182972593680803577", + "34302987591730013863982245" ], "fpReserves": [ - "24078218883780967901003554", - "12559451158642696398528981" + "10124559581662046713878242", + "7663040937807065398509756" ], - "mAssetSupply": "123207775978734033581845772", - "LPTokenSupply": "36201790852824187102348495" + "mAssetSupply": "109300427686497506183538619", + "LPTokenSupply": "17229707994295978539499305" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "67633534321297566203904", - "outputQty0": "68526766141099291640162", - "outputQty": "68744569871584242774191", - "swapFee1": "40580120592778539722", - "swapFee2": "27410706456439716656", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "67138572182326784032768", + "outputQty0": "67035470565656280902338", + "outputQty": "66850647083796067052323", + "swapFee": "51903204134547814636", "mpReserves": [ - "77728722857522114971912090", - "25872274623602750030517934", - "19641009921140900802695493" + "63730047887870455639170280", + "11545523182972593680803577", + "34370126163912340648015013" ], "fpReserves": [ - "24009692117639868609363392", - "12559451158642696398528981" + "10191595052227702994780580", + "7596190290723269331457433" ], - "mAssetSupply": "123139276623299390729922266", - "LPTokenSupply": "36134161376514948813998563" + "mAssetSupply": "109367463157063162464440957", + "LPTokenSupply": "17229713184616391994280768" }, { - "type": "swap_fp_to_mp", - "inputQty": "13346796831692480839680", - "outputIndex": 0, - "outputQty": "13457366897846995736325", - "swapFee": "0", - "redemptionFee": "5365906901484876985", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "239043904363743563218944", + "outputQty0": "236837647712481765863845", + "outputQty": "236123489986159983884213", + "swapFee": "183360963576226617708", "mpReserves": [ - "77715265490624267976175765", - "25872274623602750030517934", - "19641009921140900802695493" + "63969091792234199202389224", + "11545523182972593680803577", + "34370126163912340648015013" ], "fpReserves": [ - "23996277350386156416900545", - "12572797955474388879368661" + "10428432699940184760644425", + "7360066800737109347573220" ], - "mAssetSupply": "123125867221952580022336404", - "LPTokenSupply": "36134161376514948813998563" + "mAssetSupply": "109604300804775644230304802", + "LPTokenSupply": "17229731520712749616942538" }, { "type": "swap_fp_to_mp", - "inputQty": "882123854695904315441152", - "outputIndex": 1, - "outputQty": "883391740742881087588580", + "inputQty": "68505187012236458065920", + "outputIndex": 2, + "outputQty": "68730049899347795966665", "swapFee": "0", - "redemptionFee": "354455204121006922837", + "redemptionFee": "41200443895284223694", "mpReserves": [ - "77715265490624267976175765", - "24988882882859868942929354", - "19641009921140900802695493" + "63969091792234199202389224", + "11545523182972593680803577", + "34301396114012992852048348" ], "fpReserves": [ - "23110139340083639109807614", - "13454921810170293194809813" + "10359765293448044387819998", + "7428571987749345805639140" ], - "mAssetSupply": "122240083666854183722166310", - "LPTokenSupply": "36134161376514948813998563" + "mAssetSupply": "109535674598727399141704069", + "LPTokenSupply": "17229731520712749616942538" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "131501876924183314432", - "outputQty0": "132219399878322894865", - "outputQty": "130467100695885901827", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "1730451089100110", + "outputQty0": "1784924562731395", + "outputQty": "1779390400081425", + "swapFee": "1381766566713", "mpReserves": [ - "77715265490624267976175765", - "24988882882859868942929354", - "19641141423017824986009925" + "63969091792234199202389224", + "11545523184703044769903687", + "34301396114012992852048348" ], "fpReserves": [ - "23110271559483517432702479", - "13454921810170293194809813" + "10359765295232968950551393", + "7428571985969955405557715" ], - "mAssetSupply": "122240215886254062045061175", - "LPTokenSupply": "36134291843615644699900390" + "mAssetSupply": "109535674600512323704435464", + "LPTokenSupply": "17229731520712887793599209" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "62047483579788160925696", - "outputQty0": "62842822524590976302699", - "outputQty": "62638562018762508742963", - "swapFee1": "37228490147872896555", - "swapFee2": "25137129009836390521", + "inputQty": "402877406229215297142784", + "outputQty0": "416063442615831654180063", + "outputQty": "402678023278831112829413", + "swapFee1": "241726443737529178285", + "swapFee2": "249638065569498992508", "mpReserves": [ - "77715265490624267976175765", - "24926244320841106434186391", - "19641141423017824986009925" + "63969091792234199202389224", + "11142845161424213657074274", + "34301396114012992852048348" ], "fpReserves": [ - "23047428736958926456399780", - "13454921810170293194809813" + "9943701852617137296371330", + "7428571985969955405557715" ], - "mAssetSupply": "122177398200858480905148997", - "LPTokenSupply": "36072248082884871326264349" + "mAssetSupply": "109119860795962061549247909", + "LPTokenSupply": "16826878287128046249374253" }, { "type": "redeem", "outputIndex": 1, - "inputQty": "2872289941125463015424", - "outputQty0": "2909096226283874687497", - "outputQty": "2899609149981627852927", - "swapFee1": "1723373964675277809", - "swapFee2": "1163638490513549874", + "inputQty": "205796823369749757952", + "outputQty0": "212521423845577697173", + "outputQty": "205448972632627351248", + "swapFee1": "123478094021849854", + "swapFee2": "127512854307346618", "mpReserves": [ - "77715265490624267976175765", - "24923344711691124806333464", - "19641141423017824986009925" + "63969091792234199202389224", + "11142639712451581029723026", + "34301396114012992852048348" ], "fpReserves": [ - "23044519640732642581712283", - "13454921810170293194809813" + "9943489331193291718674157", + "7428571985969955405557715" ], - "mAssetSupply": "122174490268270687544011374", - "LPTokenSupply": "36069375965281142330776705" + "mAssetSupply": "109119648402051070278897354", + "LPTokenSupply": "16826672502652485901801286" }, { - "type": "swap_fp_to_mp", - "inputQty": "19005987838538679320576", - "outputIndex": 0, - "outputQty": "19144460126289356952240", - "swapFee": "0", - "redemptionFee": "7632863619505264020", + "type": "mint", + "inputIndex": 1, + "inputQty": "275511333722599882752", + "outputQty0": "284824581447858602535", + "outputQty": "275646673014692558004", "mpReserves": [ - "77696121030497978619223525", - "24923344711691124806333464", - "19641141423017824986009925" + "63969091792234199202389224", + "11142915223785303629605778", + "34301396114012992852048348" ], "fpReserves": [ - "23025437481683879421659870", - "13473927798008831874130389" + "9943774155774739577276692", + "7428571985969955405557715" ], - "mAssetSupply": "122155415742085543889222981", - "LPTokenSupply": "36069375965281142330776705" + "mAssetSupply": "109119933226632518137499889", + "LPTokenSupply": "16826948149325500594359290" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2051885984114710413312", - "outputQty0": "2044391743487026091618", - "outputQty": "2017330086529839268589", + "type": "swap_fp_to_mp", + "inputQty": "39710853659205595824128", + "outputIndex": 2, + "outputQty": "39831246956138225365889", + "swapFee": "0", + "redemptionFee": "23873394639733288357", "mpReserves": [ - "77698172916482093329636837", - "24923344711691124806333464", - "19641141423017824986009925" + "63969091792234199202389224", + "11142915223785303629605778", + "34261564867056854626682459" ], "fpReserves": [ - "23027481873427366447751488", - "13473927798008831874130389" + "9903985164708517430014092", + "7468282839629161001381843" ], - "mAssetSupply": "122157460133829030915314599", - "LPTokenSupply": "36071393295367672170045294" + "mAssetSupply": "109080168108960935723525646", + "LPTokenSupply": "16826948149325500594359290" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "36247171182910226432", - "outputQty0": "36351176311606083482", - "outputQty": "35869989518770342737", + "inputIndex": 2, + "inputQty": "3221833930871554560", + "outputQty0": "3216506383841429621", + "outputQty": "3112951961888029077", "mpReserves": [ - "77698172916482093329636837", - "24923380958862307716559896", - "19641141423017824986009925" + "63969091792234199202389224", + "11142915223785303629605778", + "34261568088890785498237019" ], "fpReserves": [ - "23027518224603678053834970", - "13473927798008831874130389" + "9903988381214901271443713", + "7468282839629161001381843" ], - "mAssetSupply": "122157496485005342521398081", - "LPTokenSupply": "36071429165357190940388031" + "mAssetSupply": "109080171325467319564955267", + "LPTokenSupply": "16826951262277462482388367" }, { "type": "mint", "inputIndex": 1, - "inputQty": "131942854478511332130816", - "outputQty0": "132318553072782748954537", - "outputQty": "130565757476498802692859", + "inputQty": "714319788006645742698496", + "outputQty0": "736994907345825508451020", + "outputQty": "713186064085018688691289", "mpReserves": [ - "77698172916482093329636837", - "25055323813340819048690712", - "19641141423017824986009925" + "63969091792234199202389224", + "11857235011791949372304274", + "34261568088890785498237019" ], "fpReserves": [ - "23159836777676460802789507", - "13473927798008831874130389" + "10640983288560726779894733", + "7468282839629161001381843" ], - "mAssetSupply": "122289815038078125270352618", - "LPTokenSupply": "36201994922833689743080890" + "mAssetSupply": "109817166232813145073406287", + "LPTokenSupply": "17540137326362481171079656" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "199558187265279605604352", - "outputQty0": "202114798704527459428680", - "outputQty": "201457984998932407579762", - "swapFee1": "119734912359167763362", - "swapFee2": "80845919481810983771", + "type": "swap_mp_to_fp", + "inputIndex": 1, + "inputQty": "27350792292647903232", + "outputQty0": "28166447811778788479", + "outputQty": "28074526938699405768", + "swapFee": "21802774791847298", "mpReserves": [ - "77698172916482093329636837", - "24853865828341886641110950", - "19641141423017824986009925" + "63969091792234199202389224", + "11857262362584242020207506", + "34261568088890785498237019" ], "fpReserves": [ - "22957721978971933343360827", - "13473927798008831874130389" + "10641011455008538558683212", + "7468254765102222301976075" ], - "mAssetSupply": "122087781085293079621907709", - "LPTokenSupply": "36002448709059646054252874" + "mAssetSupply": "109817194399260956852194766", + "LPTokenSupply": "17540137328542758650264385" }, { - "type": "redeem", - "outputIndex": 0, - "inputQty": "29703267545217970995200", - "outputQty0": "30083381955229594895233", - "outputQty": "30181761216104677624235", - "swapFee1": "17821960527130782597", - "swapFee2": "12033352782091837958", + "type": "mint", + "inputIndex": 2, + "inputQty": "29391293366032019456", + "outputQty0": "29351195930495564859", + "outputQty": "28399813901726412479", "mpReserves": [ - "77667991155265988652012602", - "24853865828341886641110950", - "19641141423017824986009925" + "63969091792234199202389224", + "11857262362584242020207506", + "34261597480184151530256475" ], "fpReserves": [ - "22927638597016703748465594", - "13473927798008831874130389" + "10641040806204469054248071", + "7468254765102222301976075" ], - "mAssetSupply": "122057709736690632118850434", - "LPTokenSupply": "35972747223710480796335933" + "mAssetSupply": "109817223750456887347759625", + "LPTokenSupply": "17540165728356660376676864" }, { "type": "redeem", - "outputIndex": 0, - "inputQty": "14611118458893131317248", - "outputQty0": "14798055334524361313568", - "outputQty": "14846424914851198324576", - "swapFee1": "8766671075335878790", - "swapFee2": "5919222133809744525", + "outputIndex": 1, + "inputQty": "4711442059559611442135040", + "outputQty0": "4862060612143136390081373", + "outputQty": "4632889512850569272646306", + "swapFee1": "2826865235735766865281", + "swapFee2": "2917236367285881834048", "mpReserves": [ - "77653144730351137453688026", - "24853865828341886641110950", - "19641141423017824986009925" + "63969091792234199202389224", + "7224372849733672747561200", + "34261597480184151530256475" ], "fpReserves": [ - "22912840541682179387152026", - "13473927798008831874130389" + "5778980194061332664166698", + "7468254765102222301976075" ], - "mAssetSupply": "122042917600578241567281391", - "LPTokenSupply": "35958136981918695198606564" + "mAssetSupply": "104958080374681036839512300", + "LPTokenSupply": "12829006355320622511228352" }, { "type": "swap_fp_to_mp", - "inputQty": "70906509203063389028352", - "outputIndex": 2, - "outputQty": "70768830266575236242539", + "inputQty": "1036344556694552767889408", + "outputIndex": 0, + "outputQty": "1047699380264403001817373", "swapFee": "0", - "redemptionFee": "28473622384265020700", + "redemptionFee": "619939171008633452975", "mpReserves": [ - "77653144730351137453688026", - "24853865828341886641110950", - "19570372592751249749767386" + "62921392411969796200571851", + "7224372849733672747561200", + "34261597480184151530256475" ], "fpReserves": [ - "22841656485721516835400402", - "13544834307211895263158741" + "4745748242380276909207763", + "8504599321796775069865483" ], - "mAssetSupply": "121971762018239963280550467", - "LPTokenSupply": "35958136981918695198606564" + "mAssetSupply": "103925468362170989718006340", + "LPTokenSupply": "12829006355320622511228352" }, { - "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "9066126227564316852224", - "outputQty0": "9115850672311701634779", - "outputQty": "9073343473987021703939", - "swapFee": "7196439894535089948", - "mpReserves": [ - "77653144730351137453688026", - "24853865828341886641110950", - "19579438718978814066619610" - ], - "fpReserves": [ - "22850772336393828537035181", - "13535760963737908241454802" - ], - "mAssetSupply": "121980877868912274982185246", - "LPTokenSupply": "35958137701562684652115558" - }, - { - "type": "redeem", - "outputIndex": 0, - "inputQty": "285648837813566400", - "outputQty0": "289296144178594841", - "outputQty": "290244293010429582", - "swapFee1": "171389302688139", - "swapFee2": "115718457671437", + "type": "mint", + "inputIndex": 1, + "inputQty": "3318493157956107776", + "outputQty0": "3576319693452613664", + "outputQty": "3472465527156311722", "mpReserves": [ - "77653144440106844443258444", - "24853865828341886641110950", - "19579438718978814066619610" + "62921392411969796200571851", + "7224376168226830703668976", + "34261597480184151530256475" ], "fpReserves": [ - "22850772047097684358440340", - "13535760963737908241454802" + "4745751818699970361821427", + "8504599321796775069865483" ], - "mAssetSupply": "121980877579731849261261842", - "LPTokenSupply": "35958137415930985768817971" + "mAssetSupply": "103925471938490683170620004", + "LPTokenSupply": "12829009827786149667540074" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "799216366158085170921472", - "outputQty0": "803401379807817359908623", - "outputQty": "792749786413146181791521", + "inputIndex": 0, + "inputQty": "1174779565156039168", + "outputQty0": "1158037452641191989", + "outputQty": "1124408740182323056", "mpReserves": [ - "77653144440106844443258444", - "24853865828341886641110950", - "20378655085136899237541082" + "62921393586749361356611019", + "7224376168226830703668976", + "34261597480184151530256475" ], "fpReserves": [ - "23654173426905501718348963", - "13535760963737908241454802" + "4745752976737423003013416", + "8504599321796775069865483" ], - "mAssetSupply": "122784278959539666621170465", - "LPTokenSupply": "36750887202344131950609492" + "mAssetSupply": "103925473096528135811811993", + "LPTokenSupply": "12829010952194889849863130" }, { - "type": "swap_fp_to_mp", - "inputQty": "82051408735193792512", - "outputIndex": 0, - "outputQty": "82656994907073858501", - "swapFee": "0", - "redemptionFee": "32958602717604591", + "type": "redeem", + "outputIndex": 2, + "inputQty": "224576981613181111631872", + "outputQty0": "231118389502186134694643", + "outputQty": "231959863940950329893438", + "swapFee1": "134746188967908666979", + "swapFee2": "138671033701311680816", "mpReserves": [ - "77653061783111937369399943", - "24853865828341886641110950", - "20378655085136899237541082" + "62921393586749361356611019", + "7224376168226830703668976", + "34029637616243201200363037" ], "fpReserves": [ - "23654091030398707706870882", - "13535843015146643435247314" + "4514634587235236868318773", + "8504599321796775069865483" ], - "mAssetSupply": "122784196595991475327296975", - "LPTokenSupply": "36750887202344131950609492" + "mAssetSupply": "103694493378059650988798166", + "LPTokenSupply": "12604447445200605529097955" }, { - "type": "swap_fp_to_mp", - "inputQty": "91618316849441883029504", - "outputIndex": 0, - "outputQty": "92289617130625789652091", - "swapFee": "0", - "redemptionFee": "36799624172267651091", + "type": "mint", + "inputIndex": 2, + "inputQty": "65890679878509676986368", + "outputQty0": "65614607584284637303449", + "outputQty": "63726047619410103726629", "mpReserves": [ - "77560772165981311579747852", - "24853865828341886641110950", - "20378655085136899237541082" + "62921393586749361356611019", + "7224376168226830703668976", + "34095528296121710877349405" ], "fpReserves": [ - "23562091969968038579142470", - "13627461331996085318276818" + "4580249194819521505622222", + "8504599321796775069865483" ], - "mAssetSupply": "122692234335184978467219654", - "LPTokenSupply": "36750887202344131950609492" + "mAssetSupply": "103760107985643935626101615", + "LPTokenSupply": "12668173492820015632824584" }, { - "type": "swap_fp_to_mp", - "inputQty": "1139741411826434179072", + "type": "redeem", "outputIndex": 1, - "outputQty": "1140650120305487594386", - "swapFee": "0", - "redemptionFee": "457768166504830159", + "inputQty": "20736773726157385728", + "outputQty0": "21339524540169373619", + "outputQty": "19792143486246532211", + "swapFee1": "12442064235694431", + "swapFee2": "12803714724101624", "mpReserves": [ - "77560772165981311579747852", - "24852725178221581153516564", - "20378655085136899237541082" + "62921393586749361356611019", + "7224356376083344457136765", + "34095528296121710877349405" ], "fpReserves": [ - "23560947549551776503744934", - "13628601073407911752455890" + "4580227855294981336248603", + "8504599321796775069865483" ], - "mAssetSupply": "122691090372536882896652277", - "LPTokenSupply": "36750887202344131950609492" + "mAssetSupply": "103760086658923110180829620", + "LPTokenSupply": "12668152757290495899008299" }, { - "type": "redeem", - "outputIndex": 1, - "inputQty": "28957174362814854201344", - "outputQty0": "29329216941626073297197", - "outputQty": "29232444568312011389417", - "swapFee1": "17374304617688912520", - "swapFee2": "11731686776650429318", + "type": "mint", + "inputIndex": 0, + "inputQty": "1204524453436372", + "outputQty0": "1187333908645570", + "outputQty": "1153104513838638", "mpReserves": [ - "77560772165981311579747852", - "24823492733653269142127147", - "20378655085136899237541082" + "62921393587953885810047391", + "7224356376083344457136765", + "34095528296121710877349405" ], "fpReserves": [ - "23531618332610150430447737", - "13628601073407911752455890" + "4580227856482315244894173", + "8504599321796775069865483" ], - "mAssetSupply": "122661772887282033473784398", - "LPTokenSupply": "36721931765411778865299400" + "mAssetSupply": "103760086660110444089475190", + "LPTokenSupply": "12668152758443600412846937" }, { "type": "swap_mp_to_fp", - "inputIndex": 2, - "inputQty": "1604578705068271861760", - "outputQty0": "1612579202515727369094", - "outputQty": "1604719478118575150458", - "swapFee": "1272936639052305233", + "inputIndex": 1, + "inputQty": "3796119046563357", + "outputQty0": "4090450680211814", + "outputQty": "4106796227677194", + "swapFee": "3178022363295", "mpReserves": [ - "77560772165981311579747852", - "24823492733653269142127147", - "20380259663841967509402842" + "62921393587953885810047391", + "7224356379879463503700122", + "34095528296121710877349405" ], "fpReserves": [ - "23533230911812666157816831", - "13626996353929793177305432" + "4580227860572765925105987", + "8504599317689978842188289" ], - "mAssetSupply": "122663385466484549201153492", - "LPTokenSupply": "36721931892705442770529923" + "mAssetSupply": "103760086664200894769687004", + "LPTokenSupply": "12668152758443918215083266" }, { - "type": "swap_fp_to_mp", - "inputQty": "1784809151676782", + "type": "redeem", "outputIndex": 0, - "outputQty": "1797776935643483", - "swapFee": "0", - "redemptionFee": "716847056533", + "inputQty": "19218337446478055735296", + "outputQty0": "19776670847046723970047", + "outputQty": "20050906980290136015050", + "swapFee1": "11531002467886833441", + "swapFee2": "11866002508228034382", "mpReserves": [ - "77560772164183534644104369", - "24823492733653269142127147", - "20380259663841967509402842" + "62901342680973595674032341", + "7224356379879463503700122", + "34095528296121710877349405" ], "fpReserves": [ - "23533230910020548516482240", - "13626996355714602328982214" + "4560451189725719201135940", + "8504599317689978842188289" ], - "mAssetSupply": "122663385464693148406875434", - "LPTokenSupply": "36721931892705442770529923" + "mAssetSupply": "103740321859356356273751339", + "LPTokenSupply": "12648935574097686948031314" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "15510858686730963255296", - "outputQty0": "15455838490297494088971", - "outputQty": "15380365795603890724553", - "swapFee": "12200498567189146615", + "type": "mint", + "inputIndex": 1, + "inputQty": "273980489295595424", + "outputQty0": "295213094250408241", + "outputQty": "286710389571459780", "mpReserves": [ - "77576283022870265607359665", - "24823492733653269142127147", - "20380259663841967509402842" + "62901342680973595674032341", + "7224356653859952799295546", + "34095528296121710877349405" ], "fpReserves": [ - "23548686748510846010571211", - "13611615989918998438257661" + "4560451484938813451544181", + "8504599317689978842188289" ], - "mAssetSupply": "122678841303183445900964405", - "LPTokenSupply": "36721933112755299489444584" + "mAssetSupply": "103740322154569450524159580", + "LPTokenSupply": "12648935860808076519491094" }, { - "type": "swap_fp_to_mp", - "inputQty": "418690138168656855040", - "outputIndex": 2, - "outputQty": "418157609475175800741", - "swapFee": "0", - "redemptionFee": "168164592390299730", + "type": "swap_mp_to_fp", + "inputIndex": 0, + "inputQty": "633120191732266009886720", + "outputQty0": "624030972892080609225524", + "outputQty": "625944581304864891994430", + "swapFee": "484649832190214830729", "mpReserves": [ - "77576283022870265607359665", - "24823492733653269142127147", - "20379841506232492333602101" + "63534462872705861683919061", + "7224356653859952799295546", + "34095528296121710877349405" ], "fpReserves": [ - "23548266337029870261244732", - "13612034680057167095112701" + "5184482457830894060769705", + "7878654736385113950193859" ], - "mAssetSupply": "122678421059867062541937656", - "LPTokenSupply": "36721933112755299489444584" + "mAssetSupply": "104364353127461531133385104", + "LPTokenSupply": "12648984325791295540974166" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "203298189246258428772352", - "outputQty0": "202575533612000908741359", - "outputQty": "199881879709426301648077", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "306104107481368576", + "outputQty0": "304840592003714889", + "outputQty": "305505028484808790", + "swapFee": "236564955846308", "mpReserves": [ - "77779581212116524036132017", - "24823492733653269142127147", - "20379841506232492333602101" + "63534462872705861683919061", + "7224356653859952799295546", + "34095528602225818358717981" ], "fpReserves": [ - "23750841870641871169986091", - "13612034680057167095112701" + "5184482762671486064484594", + "7878654430880085465385069" ], - "mAssetSupply": "122880996593479063450679015", - "LPTokenSupply": "36921814992464725791092661" + "mAssetSupply": "104364353432302123137099993", + "LPTokenSupply": "12648984325814952036558796" }, { - "type": "swap_mp_to_fp", - "inputIndex": 1, - "inputQty": "22898143549135154839552", - "outputQty0": "22965272161591938687754", - "outputQty": "22850837950423626096088", - "swapFee": "18127626189124790760", + "type": "redeem", + "outputIndex": 0, + "inputQty": "230481315999607318118400", + "outputQty0": "237430734911234224442767", + "outputQty": "240758138009815125672124", + "swapFee1": "138288789599764390871", + "swapFee2": "142458440946740534665", "mpReserves": [ - "77779581212116524036132017", - "24846390877202404296966699", - "20379841506232492333602101" + "63293704734696046558246937", + "7224356653859952799295546", + "34095528602225818358717981" ], "fpReserves": [ - "23773807142803463108673845", - "13589183842106743469016613" + "4947052027760251840041827", + "7878654430880085465385069" ], - "mAssetSupply": "122903961865640655389366769", - "LPTokenSupply": "36921816805227344703571737" + "mAssetSupply": "104127065155831835653191891", + "LPTokenSupply": "12418516838694304694879483" }, { - "type": "swap_fp_to_mp", - "inputQty": "38901168534279839744", + "type": "redeem", "outputIndex": 2, - "outputQty": "38854633886782713728", - "swapFee": "0", - "redemptionFee": "15626075791942752", + "inputQty": "2177358415514317464010752", + "outputQty0": "2238378116901486944946360", + "outputQty": "2245232568429999485824372", + "swapFee1": "1306415049308590478406", + "swapFee2": "1343026870140892166967", "mpReserves": [ - "77779581212116524036132017", - "24846390877202404296966699", - "20379802651598605550888373" + "63293704734696046558246937", + "7224356653859952799295546", + "31850296033795818872893609" ], "fpReserves": [ - "23773768077613983251792701", - "13589222743275277748856357" + "2708673910858764895095467", + "7878654430880085465385069" ], - "mAssetSupply": "122903922816077251324428377", - "LPTokenSupply": "36921816805227344703571737" + "mAssetSupply": "101890030065800489600412498", + "LPTokenSupply": "10241289064684918089916571" }, { - "type": "swap_fp_to_mp", - "inputQty": "201115422461551902720", - "outputIndex": 1, - "outputQty": "201293233303788731542", - "swapFee": "0", - "redemptionFee": "80785347622792839", + "type": "mint", + "inputIndex": 0, + "inputQty": "5816819740105750085632", + "outputQty0": "5731397812481229005187", + "outputQty": "5589854816521920186410", "mpReserves": [ - "77779581212116524036132017", - "24846189583969100508235157", - "20379802651598605550888373" + "63299521554436152308332569", + "7224356653859952799295546", + "31850296033795818872893609" ], "fpReserves": [ - "23773566114244926269693985", - "13589423858697739300759077" + "2714405308671246124100654", + "7878654430880085465385069" ], - "mAssetSupply": "122903720933493541965122500", - "LPTokenSupply": "36921816805227344703571737" + "mAssetSupply": "101895761463612970829417685", + "LPTokenSupply": "10246878919501440010102981" }, { - "type": "swap_mp_to_fp", - "inputIndex": 0, - "inputQty": "152201713421113294848", - "outputQty0": "151659979067620204582", - "outputQty": "150902417640033928384", - "swapFee": "119711797673396792", + "type": "redeem", + "outputIndex": 1, + "inputQty": "7591148022524914171904", + "outputQty0": "7778654452530266870039", + "outputQty": "7222909669006085198366", + "swapFee1": "4554688813514948503", + "swapFee2": "4667192671518160122", "mpReserves": [ - "77779733413829945149426865", - "24846189583969100508235157", - "20379802651598605550888373" + "63299521554436152308332569", + "7217133744190946714097180", + "31850296033795818872893609" ], "fpReserves": [ - "23773717774223993889898567", - "13589272956280099266830693" + "2706626654218715857230615", + "7878654430880085465385069" ], - "mAssetSupply": "122903872593472609585327082", - "LPTokenSupply": "36921816817198524470911416" + "mAssetSupply": "101887987476353112080707768", + "LPTokenSupply": "10239288226947796447425927" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10405411469239779328000", - "outputQty0": "10435859059868992656823", - "outputQty": "10296836791691194024303", + "type": "swap_fp_to_mp", + "inputQty": "18191052089010118656", + "outputIndex": 1, + "outputQty": "16703728586248591481", + "swapFee": "0", + "redemptionFee": "10794121664528222", "mpReserves": [ - "77779733413829945149426865", - "24856594995438340287563157", - "20379802651598605550888373" + "63299521554436152308332569", + "7217117040462360465505699", + "31850296033795818872893609" ], "fpReserves": [ - "23784153633283862882555390", - "13589272956280099266830693" + "2706608664015941643525999", + "7878672621932174475503725" ], - "mAssetSupply": "122914308452532478577983905", - "LPTokenSupply": "36932113653990215664935719" + "mAssetSupply": "101887969496944459531531374", + "LPTokenSupply": "10239288226947796447425927" }, { - "type": "swap_fp_to_mp", - "inputQty": "48090462553463354032128", - "outputIndex": 0, - "outputQty": "48445147577535414051704", - "swapFee": "0", - "redemptionFee": "19316864458562669799", + "type": "redeem", + "outputIndex": 1, + "inputQty": "244096428768649126346752", + "outputQty0": "249938826574285417953832", + "outputQty": "231531271551247629441033", + "swapFee1": "146457857261189475808", + "swapFee2": "149963295944571250772", "mpReserves": [ - "77731288266252409735375161", - "24856594995438340287563157", - "20379802651598605550888373" + "63299521554436152308332569", + "6985585768911112836064666", + "31850296033795818872893609" ], "fpReserves": [ - "23735861472137456208056803", - "13637363418833562620862821" + "2456669837441656225572167", + "7878672621932174475503725" ], - "mAssetSupply": "122866035608250530466155117", - "LPTokenSupply": "36932113653990215664935719" + "mAssetSupply": "101638180633666118684828314", + "LPTokenSupply": "9995206443964873440026755" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "401971951454072359354368", - "outputQty0": "403119023869274875179983", - "outputQty": "397744591933891098620484", + "type": "redeem", + "outputIndex": 2, + "inputQty": "1450865294249366126592", + "outputQty0": "1484418666253740380567", + "outputQty": "1488488896067763424580", + "swapFee1": "870519176549619675", + "swapFee2": "890651199752244228", "mpReserves": [ - "77731288266252409735375161", - "25258566946892412646917525", - "20379802651598605550888373" + "63299521554436152308332569", + "6985585768911112836064666", + "31848807544899751109469029" ], "fpReserves": [ - "24138980496006731083236786", - "13637363418833562620862821" + "2455185418775402485191600", + "7878672621932174475503725" ], - "mAssetSupply": "123269154632119805341335100", - "LPTokenSupply": "37329858245924106763556203" + "mAssetSupply": "101636697105651064696691975", + "LPTokenSupply": "9993755665722541728862130" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "378588740209848745984", - "outputQty0": "377257463315067418868", - "outputQty": "372217043296981992489", + "type": "swap_mp_to_fp", + "inputIndex": 2, + "inputQty": "743416849067565383680", + "outputQty0": "740939305941041441313", + "outputQty": "750140111389296343183", + "swapFee": "579006913769918791", "mpReserves": [ - "77731666854992619584121145", - "25258566946892412646917525", - "20379802651598605550888373" + "63299521554436152308332569", + "6985585768911112836064666", + "31849550961748818674852709" ], "fpReserves": [ - "24139357753470046150655654", - "13637363418833562620862821" + "2455926358081343526632913", + "7877922481820785179160542" ], - "mAssetSupply": "123269531889583120408753968", - "LPTokenSupply": "37330230462967403745548692" + "mAssetSupply": "101637438044957005738133288", + "LPTokenSupply": "9993755723623233105854009" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "50824810249507364143104", - "outputQty0": "50646001941358330459779", - "outputQty": "49969153992446783256935", + "type": "redeem", + "outputIndex": 1, + "inputQty": "151885034348749810302976", + "outputQty0": "155307817022167062283824", + "outputQty": "143306922112598072372776", + "swapFee1": "91131020609249886181", + "swapFee2": "93184690213300237370", "mpReserves": [ - "77782491665242126948264249", - "25258566946892412646917525", - "20379802651598605550888373" + "63299521554436152308332569", + "6842278846798514763691890", + "31849550961748818674852709" ], "fpReserves": [ - "24190003755411404481115433", - "13637363418833562620862821" + "2300618541059176464349089", + "7877922481820785179160542" ], - "mAssetSupply": "123320177891524478739213747", - "LPTokenSupply": "37380199616959850528805627" + "mAssetSupply": "101482223412625051976086834", + "LPTokenSupply": "9841879802376544220539651" } ] } \ No newline at end of file diff --git a/test-utils/validator-data/feeder/fPoolIntegrationData.json b/test-utils/validator-data/feeder/fPoolIntegrationData.json index 3c089382..a9c9fb0e 100644 --- a/test-utils/validator-data/feeder/fPoolIntegrationData.json +++ b/test-utils/validator-data/feeder/fPoolIntegrationData.json @@ -8,117707 +8,117204 @@ "redemptionFeeRate": 600000000000000, "actions": [ { - "type": "mintMulti", - "inputQtys": [ - "135293863696794894336", - "74204737120820084736" - ], - "expectedQty": "209498594639650544878", + "type": "redeem", + "inputIndex": 1, + "inputQty": "204202175593555427328", + "expectedQty": "204079585326729403823", + "swapFee": "122521305356133256", "reserves": [ - "1000135293863696794894336", - "1000074204737120820084736" + "1000000000000000000000000", + "999795920414673270596177" ], - "LPTokenSupply": "2000209498594639650544879" + "LPTokenSupply": "1999795810076536980185998" }, { "type": "mint", "inputIndex": 1, - "inputQty": "9399676271407280128", - "expectedQty": "9399678026347077840", + "inputQty": "209674383135256088674304", + "expectedQty": "209608021038191223814058", "reserves": [ - "1000135293863696794894336", - "1000083604413392227364864" + "1000000000000000000000000", + "1209470303549929359270481" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "68699993782742319104", - "expectedQty": "68699997726765323282", + "inputQty": "188462401131631", + "expectedQty": "188347684110767", "reserves": [ - "1000135293863696794894336", - "1000152304407174969683968" + "1000000000000000000000000", + "1209470303738391760402112" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "44822858683588003495936", - "outputIndex": 0, - "expectedQty": "44809527770603627859435", - "swapFee": "0", + "inputQty": "238926527588935204864", + "expectedQty": "238781019130443466531", "reserves": [ - "955325766093093167034901", - "1044975163090762973179904" - ], - "LPTokenSupply": "2000287598270392762946001", - "hardLimitError": false, - "insufficientLiquidityError": false + "1000000000000000000000000", + "1209709230265980695606976" + ] }, { "type": "redeemBassets", "inputQtys": [ - "570219802081896759296", - "737472518102864363520" - ], - "expectedQty": "1307651249288762252224", - "swapFee": "785061786645244498", - "reserves": [ - "954755546291011270275605", - "1044237690572660108816384" + "66930708102146608", + "204884925413945568" ], - "LPTokenSupply": "1998979240465496019973727" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "28175148749550283390976", - "outputIndex": 1, - "expectedQty": "28164072723015043601482", - "swapFee": "22545826947938924750", + "expectedQty": "271735669061611577", + "swapFee": "163139285007971", "reserves": [ - "982930695040561553666581", - "1016073617849645065214902" + "999999933069291897853392", + "1209709025381055281661408" ], - "LPTokenSupply": "1998981495048190813866202", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "2209642340439711913458602" }, { - "type": "redeemBassets", - "inputQtys": [ - "49064915906833906925568", - "40482645970993289363456" - ], - "expectedQty": "89547821760367488408269", - "swapFee": "53760949625996090699", + "type": "redeem", + "inputIndex": 1, + "inputQty": "282494657239069679943680", + "expectedQty": "282382585406731272580802", + "swapFee": "169496794343441807966", "reserves": [ - "933865779133727646741013", - "975590971878651775851446" + "999999933069291897853392", + "927326439974324009080606" ], - "LPTokenSupply": "1909385288433159928976302" + "LPTokenSupply": "1927164632880076577695718" }, { - "type": "redeemMasset", - "inputQty": "2191634924147912704", - "expectedQtys": [ - "1071268775712090976", - "1119133144604234633" - ], - "redemptionFee": "1314980954488747", + "type": "mint", + "inputIndex": 0, + "inputQty": "665982692665121189134336", + "expectedQty": "665181357546256070212292", "reserves": [ - "933864707864951934650037", - "975589852745507171616813" - ], - "LPTokenSupply": "1909383096929733876512472" + "1665982625734413086987728", + "927326439974324009080606" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "406458575061684224", - "expectedQty": "406385774967376618", + "inputQty": "148315967868192904183808", + "expectedQty": "148620694265245107871438", "reserves": [ - "933864707864951934650037", - "975590259204082233301037" + "1665982625734413086987728", + "1075642407842516913264414" ] }, { - "type": "redeemMasset", - "inputQty": "36824725033093975244", - "expectedQtys": [ - "17999881867056868167", - "18804125767288692185" + "type": "redeemBassets", + "inputQtys": [ + "35316481426886483771392", + "25793144125282337161216" ], - "redemptionFee": "22094835019856385", + "expectedQty": "61100668461270858994157", + "swapFee": "36682410523076361213", "reserves": [ - "933846707983084877781870", - "975571455078314944608852" + "1630666144307526603216336", + "1049849263717234576103198" ], - "LPTokenSupply": "1909346680799959251899484" + "LPTokenSupply": "2679833002060836128060198" }, { "type": "mintMulti", "inputQtys": [ - "25809416829074885574656", - "21448275107773792911360" + "776516005204443392", + "770765246971903744" ], - "expectedQty": "47256654688476522407064", + "expectedQty": "1547407540727018964", "reserves": [ - "959656124812159763356526", - "997019730186088737520212" + "1630666920823531807659728", + "1049850034482481548006942" ], - "LPTokenSupply": "1956603335488435774306548" + "LPTokenSupply": "2679834549468376855079162" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "254872873977308352", + "expectedQty": "255297531094573868", + "reserves": [ + "1630666920823531807659728", + "1049850289355355525315294" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "787610135578589396992", - "expectedQty": "787064146033160381845", - "swapFee": "472566081347153638", + "inputQty": "203289220174651064320", + "expectedQty": "203470616393086820618", + "swapFee": "121973532104790638", "reserves": [ - "958869060666126602974681", - "997019730186088737520212" + "1630463450207138720839110", + "1049850289355355525315294" ], - "LPTokenSupply": "1955815772609465319624919" + "LPTokenSupply": "2679631527743086509067773" }, { "type": "mintMulti", "inputQtys": [ - "30646178948692792311808", - "11090815160103804600320" + "4048635779668128563200", + "3372532151291838726144" ], - "expectedQty": "41737380273421397758476", + "expectedQty": "7420747651163036905462", "reserves": [ - "989515239614819395286489", - "1008110545346192542120532" + "1634512085986806849402310", + "1053222821506647364041438" ], - "LPTokenSupply": "1997553152882886717383395" + "LPTokenSupply": "2687052275394249545973235" }, { "type": "mintMulti", "inputQtys": [ - "428686584710709575680", - "2907361806154469998592" + "229318876415249022976", + "397061484279273291776" ], - "expectedQty": "3335766266601623466975", + "expectedQty": "626698723228747981827", "reserves": [ - "989943926199530104862169", - "1011017907152347012119124" + "1634741404863222098425286", + "1053619882990926637333214" ], - "LPTokenSupply": "2000888919149488340850370" + "LPTokenSupply": "2687678974117478293955062" }, { - "type": "redeemMasset", - "inputQty": "1420340846215108440883", - "expectedQtys": [ - "702294937874288010361", - "717245431283385815376" + "type": "redeemBassets", + "inputQtys": [ + "5656311392830874451968", + "7416484284028136980480" ], - "redemptionFee": "852204507729065064", + "expectedQty": "13076731078474296415633", + "swapFee": "7850749096542503351", "reserves": [ - "989241631261655816851808", - "1010300661721063626303748" + "1629085093470391223973318", + "1046203398706898500352734" ], - "LPTokenSupply": "1999468663523724005315993" + "LPTokenSupply": "2674595177364817109286412" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5596920370179894935552", - "25310833177504415481856" + "1397164568302810300416", + "1207416308633694896128" ], - "expectedQty": "30905895357569923614410", - "swapFee": "18554670016551885299", + "expectedQty": "2604505897356941665963", "reserves": [ - "983644710891475921916256", - "984989828543559210821892" + "1630482258038694034273734", + "1047410815015532195248862" ], - "LPTokenSupply": "1968546068963139185004812" + "LPTokenSupply": "2677199683262174050952375" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "86337656498091282399232", + "expectedQty": "86200699217297606372329", + "reserves": [ + "1716819914536785316672966", + "1047410815015532195248862" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1422943010573569753088", - "647913513001873833984" + "109137233364848976", + "59812805238093248" ], - "expectedQty": "2070767987550834122244", - "swapFee": "1243206716560436735", + "expectedQty": "168884080990045373", + "swapFee": "101391283364045", "reserves": [ - "982221767880902352163168", - "984341915030557336987908" + "1716819805399551951823990", + "1047410755202726957155614" ], - "LPTokenSupply": "1966474182089543446489505" + "LPTokenSupply": "2763400213504138512251689" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "317012166343786605051904", - "168400341390242546188288" + "536359527072248", + "630645528252993" ], - "expectedQty": "485361343338752133931499", + "expectedQty": "1167335987691051", + "swapFee": "700822085866", "reserves": [ - "1299233934224688957215072", - "1152742256420799883176196" + "1716819804863192424751742", + "1047410754572081428902621" ], - "LPTokenSupply": "2451835525428295580421004" + "LPTokenSupply": "2763400212336171784683357" }, { "type": "redeemMasset", - "inputQty": "912441223315483", + "inputQty": "136542564024796262", "expectedQtys": [ - "483214841807062", - "428731233388768" + "84779007286692508", + "51722634922133041" ], - "redemptionFee": "547464733989", + "redemptionFee": "81925538414877", "reserves": [ - "1299233933741474115408010", - "1152742255992068649787428" + "1716819720084185138059234", + "1047410702849446506769580" ], - "LPTokenSupply": "2451835524515909103578919" + "LPTokenSupply": "2763400075801800313728582" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "99446634735836848", - "111364703307917120" + "47004668215869824", + "15033608848292918" ], - "expectedQty": "210809011601795462", - "swapFee": "126561343767337", + "expectedQty": "61988997960832647", "reserves": [ - "1299233834294839379571162", - "1152742144627365341870308" + "1716819767088853353929058", + "1047410717883055355062498" ], - "LPTokenSupply": "2451835313592992292392852" + "LPTokenSupply": "2763400137790798274561229" }, { - "type": "redeemBassets", - "inputQtys": [ - "116756950815526125568", - "438360097597097705472" + "type": "redeemMasset", + "inputQty": "15392605089912720", + "expectedQtys": [ + "9557238029689506", + "5830753895984377" ], - "expectedQty": "555226737191916439681", - "swapFee": "333336043941514772", + "redemptionFee": "9235563053947", "reserves": [ - "1299117077344023853445594", - "1152303784529768244164836" + "1716819757531615324239552", + "1047410712052301459078121" ], - "LPTokenSupply": "2451279786853360828589875" + "LPTokenSupply": "2763400122399116740953903" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "21167224340206183251968", - "65789695814081301184512" + "81182556511152113713152", + "101133993461742353514496" ], - "expectedQty": "86968525402916672578215", + "expectedQty": "182385279827476862794728", + "swapFee": "109496866016095775141", "reserves": [ - "1320284301684230036697562", - "1218093480343849545349348" + "1635637201020463210526400", + "946276718590559105563625" ], - "LPTokenSupply": "2538248312256277501168090" + "LPTokenSupply": "2580916295392225391961547" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "211975501097167155625984", - "expectedQty": "211854473223682775949773", - "swapFee": "127185300658300293375", + "type": "mint", + "inputIndex": 1, + "inputQty": "26860752968570510508032", + "expectedQty": "26917869668464052053993", "reserves": [ - "1108429828460547260747789", - "1218093480343849545349348" - ], - "LPTokenSupply": "2326285529689176175571443" + "1635637201020463210526400", + "973137471559129616071657" + ] }, { "type": "redeemMasset", - "inputQty": "968815120243646005248", + "inputQty": "23666880674361966592", "expectedQtys": [ - "461344596653412924763", - "506988201640034903241" + "14834994005042691470", + "8826216808749067938" ], - "redemptionFee": "581289072146187603", + "redemptionFee": "14200128404617179", "reserves": [ - "1107968483863893847823026", - "1217586492142209510446107" + "1635622366026458167834930", + "973128645342320867003719" ], - "LPTokenSupply": "2325316772697839744184955" + "LPTokenSupply": "2607810499600027922510665" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "428357746174490574848", - "expectedQty": "428454206056200480624", - "reserves": [ - "1108396841610068338397874", - "1217586492142209510446107" - ] - }, - { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "10331859011458789376", - "expectedQty": "10323342054534675549", - "swapFee": "6199115406875273", + "inputQty": "5919159711965480222720", + "outputIndex": 1, + "expectedQty": "5891505774560015807174", + "swapFee": "4726810076472363703", "reserves": [ - "1108386518268013803722325", - "1217586492142209510446107" + "1641541525738423648057650", + "967237139567760851196545" ], - "LPTokenSupply": "2325734895664796026563730" + "LPTokenSupply": "2607810972281035569747035", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "923083729217533378560", - "5933441982966445113344" + "26582034733872533504", + "162924784885567291392" ], - "expectedQty": "6854391606043819544230", - "swapFee": "4115104026041916876", + "expectedQty": "189800476280738785310", + "swapFee": "113948654961420123", "reserves": [ - "1107463434538796270343765", - "1211653050159243065332763" + "1641514943703689775524146", + "967074214782875283905153" ], - "LPTokenSupply": "2318876800465128769294310" + "LPTokenSupply": "2607621069250965365683613" }, { - "type": "redeemBassets", - "inputQtys": [ - "40235826546780630155264", - "18872735247403375919104" + "type": "redeemMasset", + "inputQty": "1024407692545902824652", + "expectedQtys": [ + "644484586834696893852", + "379688548156973647007" ], - "expectedQty": "59110484143286014944555", - "swapFee": "35487583035793084817", + "redemptionFee": "614644615527541694", "reserves": [ - "1067227607992015640188501", - "1192780314911839689413659" + "1640870459116855078630294", + "966694526234718310258146" ], - "LPTokenSupply": "2259734377497110540573418" + "LPTokenSupply": "2606596723022881015613130" }, { "type": "redeemMasset", - "inputQty": "791990289077944975360", + "inputQty": "3357611818150615", "expectedQtys": [ - "373816838756121016102", - "417794070647964574905" + "2112371412625800", + "1244472329070455" ], - "redemptionFee": "475194173446766985", + "redemptionFee": "2014567090890", "reserves": [ - "1066853791153259519172399", - "1192362520841191724838754" + "1640870457004483666004494", + "966694524990245981187691" ], - "LPTokenSupply": "2258942434727449940274756" + "LPTokenSupply": "2606596719665470654171604" }, { - "type": "redeemBassets", - "inputQtys": [ - "641194518582268919808", - "119010324354205007872" - ], - "expectedQty": "760322070885968083101", - "swapFee": "456467122805264008", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4472839299708200943616", + "expectedQty": "4460725727077949757201", + "swapFee": "2683703579824920566", "reserves": [ - "1066212596634677250252591", - "1192243510516837519830882" + "1640870457004483666004494", + "962233799263168031430490" ], - "LPTokenSupply": "2258181701836153447454046" + "LPTokenSupply": "2602124148736120435720044" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "811826317728352305152", - "expectedQty": "811118259204620487623", - "swapFee": "487095790637011383", + "inputQty": "118964465034437705728", + "outputIndex": 1, + "expectedQty": "118398204646702449952", + "swapFee": "94996040405196252", "reserves": [ - "1065401478375472629764968", - "1192243510516837519830882" + "1640989421469518103710222", + "962115401058521328980538" ], - "LPTokenSupply": "2257369924228004158850032" + "LPTokenSupply": "2602124158235724476239669", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "9260200771243753865216", - "11129517991469940473856" + "type": "redeemMasset", + "inputQty": "2953095843280223993856", + "expectedQtys": [ + "1861206900776206689709", + "1091229352465664478885" ], - "expectedQty": "20386962807245886644658", + "redemptionFee": "1771857505968134396", "reserves": [ - "1074661679146716383630184", - "1203373028508307460304738" + "1639128214568741897020513", + "961024171706055664501653" ], - "LPTokenSupply": "2277756887035250045494690" + "LPTokenSupply": "2599171239578194849059252" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4931827531027565568", - "expectedQty": "4933187883050499489", + "inputIndex": 1, + "inputQty": "4808738613892261888", + "expectedQty": "4818966007946694117", "reserves": [ - "1074666610974247411195752", - "1203373028508307460304738" + "1639128214568741897020513", + "961028980444669556763541" ] }, { "type": "mintMulti", "inputQtys": [ - "1927285014869710733312", - "3662748175185889722368" + "11080274778576220323840", + "27813145595602909790208" ], - "expectedQty": "5588813975969395483740", + "expectedQty": "38930793829515248909100", "reserves": [ - "1076593895989117121929064", - "1207035776683493350027106" + "1650208489347318117344353", + "988842126040272466553749" ], - "LPTokenSupply": "2283350634199102491477919" + "LPTokenSupply": "2638106852373718044662469" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "311492483528583938048", - "893050629098513891328" + "250225002617118941773824", + "341498168569667451355136" ], - "expectedQty": "1204201110567340912817", - "swapFee": "722954439003806831", + "expectedQty": "591884358445058825974573", "reserves": [ - "1076282403505588537991016", - "1206142726054394836135778" + "1900433491964437059118177", + "1330340294609939917908885" ], - "LPTokenSupply": "2282145782429540047138953" + "LPTokenSupply": "3229991210818776870637042" }, { "type": "redeemMasset", - "inputQty": "5519315090369874912870", + "inputQty": "9737731652948898611", "expectedQtys": [ - "2601401519503738115631", - "2915277170821079516173" - ], - "redemptionFee": "3311589054221924947", - "reserves": [ - "1073681001986084799875385", - "1203227448883573756619605" - ], - "LPTokenSupply": "2276626798498075594418577" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "21669415215059677184", - "outputIndex": 1, - "expectedQty": "21668505108982013567", - "swapFee": "17340334531631455", - "reserves": [ - "1073702671401299859552569", - "1203205780378464774606038" - ], - "LPTokenSupply": "2276626800232109047581722", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mintMulti", - "inputQtys": [ - "12649101232690715164672", - "2129779541061973311488" + "5725962275147059564", + "4008284621510494545" ], - "expectedQty": "14781168830566843660120", + "redemptionFee": "5842638991769339", "reserves": [ - "1086351772633990574717241", - "1205335559919526747917526" + "1900427766002161912058613", + "1330336286325318407414340" ], - "LPTokenSupply": "2291407969062675891241842" + "LPTokenSupply": "3229981473671387820915364" }, { "type": "redeemBassets", "inputQtys": [ - "1292159458640688578560", - "2305899158562173091840" + "12496601204628209664", + "25790006698274660352" ], - "expectedQty": "3597335181128191659982", - "swapFee": "2159696926833014804", + "expectedQty": "38302279977301222283", + "swapFee": "22995165085431992", "reserves": [ - "1085059613175349886138681", - "1203029660760964574825686" + "1900415269400957283848949", + "1330310496318620132753988" ], - "LPTokenSupply": "2287808690154313549868535" + "LPTokenSupply": "3229943150695761942804287" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9276785517916616704", - "expectedQty": "9269010640938665027", - "swapFee": "5566071310749970", + "type": "redeemMasset", + "inputQty": "87314200136463417344", + "expectedQtys": [ + "51342600006950301784", + "35940355140939408157" + ], + "redemptionFee": "52388520081878050", "reserves": [ - "1085050344164708947473654", - "1203029660760964574825686" + "1900363926800950333547165", + "1330274555963479193345831" ], - "LPTokenSupply": "2287799413925402764326828" + "LPTokenSupply": "3229855841734477487574748" }, { - "type": "redeemBassets", - "inputQtys": [ - "4582139723217161945088", - "204997921012439733764096" + "type": "redeemMasset", + "inputQty": "10087182806284414", + "expectedQtys": [ + "5931477340123266", + "4152095960968211" ], - "expectedQty": "209546856903200549377716", - "swapFee": "125803596299700149716", + "redemptionFee": "6052309683770", "reserves": [ - "1080468204441491785528566", - "998031739748524841061590" + "1900363920869472993423899", + "1330274551811383232377620" ], - "LPTokenSupply": "2078139333785532484814366" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "67968134517878267904", - "expectedQty": "67939140297726850976", - "reserves": [ - "1080536172576009663796470", - "998031739748524841061590" - ] + "LPTokenSupply": "3229855831647899912258711" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "21115926703148859392", - "outputIndex": 1, - "expectedQty": "21087906806311080458", - "swapFee": "16885532932813452", + "type": "redeemMasset", + "inputQty": "33091482017226391552", + "expectedQtys": [ + "19458492971329983865", + "13621147892829771705" + ], + "redemptionFee": "19854889210335834", "reserves": [ - "1080557288502712812655862", - "998010651841718529981132" + "1900344462376501663440034", + "1330260930663490402605915" ], - "LPTokenSupply": "2078207274614383504946687", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3229822742151371606900742" }, { "type": "swap", "inputIndex": 1, - "inputQty": "20171160518008684675072", + "inputQty": "2560201658324499968", "outputIndex": 0, - "expectedQty": "20179194859429767636246", + "expectedQty": "2566580825315293569", "swapFee": "0", "reserves": [ - "1060378093643283045019616", - "1018181812359727214656204" + "1900341895795676348146465", + "1330263490865148727105883" ], - "LPTokenSupply": "2078207274614383504946687", + "LPTokenSupply": "3229822742151371606900742", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "48005707649942792", - "expectedQty": "47978458307002812", - "swapFee": "28803424589965", - "reserves": [ - "1060378093643283045019616", - "1018181764381268907653392" + "type": "mintMulti", + "inputQtys": [ + "38247634801166055899136", + "92786231291826659131392" ], - "LPTokenSupply": "2078207226611556197462891" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "163840121911602483036160", - "expectedQty": "163698057131986823009750", - "swapFee": "98304073146961489821", + "expectedQty": "131091726353907062122089", "reserves": [ - "1060378093643283045019616", - "854483707249282084643642" + "1938589530596842404045601", + "1423049722156975386237275" ], - "LPTokenSupply": "1914376935107268410575713" + "LPTokenSupply": "3360914468505278669022831" }, { - "type": "redeemMasset", - "inputQty": "10225168292223082496", - "expectedQtys": [ - "5660347623027304335", - "4561273804352201685" + "type": "redeemBassets", + "inputQtys": [ + "9380188754273822048256", + "5521832471818056761344" ], - "redemptionFee": "6135100975333849", + "expectedQty": "14897136404564351303153", + "swapFee": "8943648031557545309", "reserves": [ - "1060372433295660017715281", - "854479145975477732441957" + "1929209341842568581997345", + "1417527889685157329475931" ], - "LPTokenSupply": "1914366710552486285026601" + "LPTokenSupply": "3346009282817485915928898" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1921083141311484395520", - "expectedQty": "1921661156319803717058", - "swapFee": "1152649884786890637", + "type": "mint", + "inputIndex": 1, + "inputQty": "43152270320846112", + "expectedQty": "43195672796811397", "reserves": [ - "1058450772139340213998223", - "854479145975477732441957" - ], - "LPTokenSupply": "1912445742676163279320144" + "1929209341842568581997345", + "1417527932837427650322043" + ] }, { - "type": "redeemMasset", - "inputQty": "24679224503971292774", - "expectedQtys": [ - "13650620565558128568", - "11020040714144679854" + "type": "redeemBassets", + "inputQtys": [ + "622295189967829467136", + "2517369394470950273024" ], - "redemptionFee": "14807534702382775", + "expectedQty": "3141508257212632783175", + "swapFee": "1886036576273343676", "reserves": [ - "1058437121518774655869655", - "854468125934763587762103" + "1928587046652600752530209", + "1415010563442956700049019" ], - "LPTokenSupply": "1912421064932412778265647" + "LPTokenSupply": "3342866120323027433947810" }, { - "type": "redeemBassets", - "inputQtys": [ - "857409161316690296832", - "1072026615097881395200" - ], - "expectedQty": "1929251319520804260011", - "swapFee": "1158245739155976141", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1310504376664875776", + "expectedQty": "1308394604397494765", + "swapFee": "786302625998925", "reserves": [ - "1057579712357457965572823", - "853396099319665706366903" + "1928587046652600752530209", + "1415009255048352302554254" ], - "LPTokenSupply": "1910490771191726733627108" + "LPTokenSupply": "3342864809897281031671926" }, { - "type": "redeemMasset", - "inputQty": "82612210393392435", - "expectedQtys": [ - "45703741479980227", - "36879862810895648" + "type": "redeemBassets", + "inputQtys": [ + "5810189911405314048", + "9149820691854750720" ], - "redemptionFee": "49567326236035", + "expectedQty": "14962750082016706459", + "swapFee": "8983039873133904", "reserves": [ - "1057579666653716485592596", - "853396062439802895471255" + "1928581236462689347216161", + "1415000105227660447803534" ], - "LPTokenSupply": "1910490688584473072858276" + "LPTokenSupply": "3342849839062463129144952" }, { "type": "redeemMasset", - "inputQty": "83067511237962393", + "inputQty": "6252837223098130366464", "expectedQtys": [ - "45955628605205432", - "37083118875307915" + "3605267858449998226166", + "2645185125018374151401" ], - "redemptionFee": "49840506742777", + "redemptionFee": "3751702333858878219", "reserves": [ - "1057579620698087880387164", - "853396025356684020163340" + "1924975968604239348989995", + "1412354920102642073652133" ], - "LPTokenSupply": "1910490605521945885570160" + "LPTokenSupply": "3336597377009598384666309" }, { - "type": "mintMulti", - "inputQtys": [ - "37571222356284678340608", - "43442162455972373594112" - ], - "expectedQty": "81002962255191640771574", + "type": "redeem", + "inputIndex": 0, + "inputQty": "14829535437417470754816", + "expectedQty": "14837111737505785505013", + "swapFee": "8897721262450482452", "reserves": [ - "1095150843054372558727772", - "896838187812656393757452" + "1910138856866733563484982", + "1412354920102642073652133" ], - "LPTokenSupply": "1991493567777137526341734" + "LPTokenSupply": "3321768731344307158959738" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1980791876056066293760", - "expectedQty": "1981755192436454286303", + "inputQty": "104623934127959196041216", + "expectedQty": "104710296503088302627560", "reserves": [ - "1095150843054372558727772", - "898818979688712460051212" + "1910138856866733563484982", + "1516978854230601269693349" ] }, { "type": "redeemBassets", "inputQtys": [ - "99698975891697385472", - "144711960348743188480" + "106445174243454382768128", + "384289589923917584138240" ], - "expectedQty": "244396245762239039295", - "swapFee": "146725782927099683", + "expectedQty": "491049100178322125355198", + "swapFee": "294806343913341279981", "reserves": [ - "1095051144078480861342300", - "898674267728363716862732" + "1803693682623279180716854", + "1132689264306683685555109" ], - "LPTokenSupply": "1993230794670607107199026" + "LPTokenSupply": "2935164601959551329080116" }, { - "type": "redeemBassets", - "inputQtys": [ - "322875068462239842304", - "306655809962716823552" + "type": "redeemMasset", + "inputQty": "12478743820686899", + "expectedQtys": [ + "7663736024409631", + "4812697190747003" ], - "expectedQty": "629405148835858914179", - "swapFee": "377869811188228285", + "redemptionFee": "7487246292412", "reserves": [ - "1094728269010018621499996", - "898367611918401000039180" + "1803693674959543156307223", + "1132689259493986494808106" ], - "LPTokenSupply": "1992601049438941178879389" + "LPTokenSupply": "2935164589481556233022458" }, { - "type": "redeemBassets", - "inputQtys": [ - "213539982178309406720", - "1780874846607572467712" + "type": "swap", + "inputIndex": 1, + "inputQty": "172465024799008960282624", + "outputIndex": 0, + "expectedQty": "172879440581886408253684", + "swapFee": "0", + "reserves": [ + "1630814234377656748053539", + "1305154284292995455090730" ], - "expectedQty": "1995098228955855577898", - "swapFee": "1197777603935874871", + "LPTokenSupply": "2935164589481556233022458", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "25123179047258280689664", + "expectedQty": "25093039180936538832922", + "swapFee": "15073907428354968413", "reserves": [ - "1094514729027840312093276", - "896586737071793427571468" + "1630814234377656748053539", + "1280061245112058916257808" ], - "LPTokenSupply": "1990604873210141781014106" + "LPTokenSupply": "2910042917825040787829635" }, { "type": "swap", "inputIndex": 0, - "inputQty": "3418510170693046370304", + "inputQty": "131171726943506528", "outputIndex": 1, - "expectedQty": "3411109363617480243464", - "swapFee": "2732459346120026421", + "expectedQty": "130851628018962757", + "swapFee": "104831564925766", "reserves": [ - "1097933239198533358463580", - "893175627708175947328004" + "1630814365549383691560067", + "1280061114260430897295051" ], - "LPTokenSupply": "1990605146456076393016748", + "LPTokenSupply": "2910042917835523944322211", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "337484350033968811212800", - "expectedQty": "337456234379750536059939", + "type": "redeem", + "inputIndex": 0, + "inputQty": "596559106001197", + "expectedQty": "596802974278912", + "swapFee": "357935463600", "reserves": [ - "1097933239198533358463580", - "1230659977742144758540804" - ] + "1630814364952580717281155", + "1280061114260430897295051" + ], + "LPTokenSupply": "2910042917239000631867374" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "211603614747533210812416", + "outputIndex": 1, + "expectedQty": "210845380191218008247366", + "swapFee": "169079142764313554635", + "reserves": [ + "1842417979700113928093571", + "1069215734069212889047685" + ], + "LPTokenSupply": "2910059825153277063222837", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "79285824916455070105", + "inputQty": "31942722464014", "expectedQtys": [ - "37369423746152732082", - "41886931330404092005" + "20211452208704", + "11729370288413" ], - "redemptionFee": "47571494949873042", + "redemptionFee": "19165633478", "reserves": [ - "1097895869774787205731498", - "1230618090810814354448799" + "1842417979679902475884867", + "1069215734057483518759272" ], - "LPTokenSupply": "2327982099768059968993886" + "LPTokenSupply": "2910059825121336257322170" }, { "type": "redeemMasset", - "inputQty": "254537941798324692582", + "inputQty": "81447073337163015782", "expectedQtys": [ - "119970201375766991721", - "134473135600300946247" + "51534856872249515093", + "29907371957900068983" ], - "redemptionFee": "152722765078994815", + "redemptionFee": "48868244002297809", "reserves": [ - "1097775899573411438739777", - "1230483617675214053502552" + "1842366444823030226369774", + "1069185826685525618690289" ], - "LPTokenSupply": "2327727577098538152200785" + "LPTokenSupply": "2909978382934823494536168" }, { - "type": "redeemBassets", - "inputQtys": [ - "19850673810747208", - "9191663842313900" + "type": "redeemMasset", + "inputQty": "447805366059616174080", + "expectedQtys": [ + "283344567824665570650", + "164434169346569878076" ], - "expectedQty": "29040379816923301", - "swapFee": "17434688703376", + "redemptionFee": "268683219635769704", "reserves": [ - "1097775879722737627992569", - "1230483608483550211188652" + "1842083100255205560799124", + "1069021392516179048812213" ], - "LPTokenSupply": "2327727548042467115444444" + "LPTokenSupply": "2909530604437085841939058" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "3443918360685970980864", - "expectedQty": "3441882675830996123548", + "inputQty": "36730678984594841600", + "expectedQty": "36634187807576204930", + "swapFee": "22038407390756904", "reserves": [ - "1097775879722737627992569", - "1233927526844236182169516" - ] + "1842083100255205560799124", + "1068984758328371472607283" + ], + "LPTokenSupply": "2909493875961941986173148" }, { - "type": "redeemBassets", - "inputQtys": [ - "10133186851791276343296", - "4414025414311864696832" + "type": "redeemMasset", + "inputQty": "8436384315709873088102", + "expectedQtys": [ + "5338109418603655246484", + "3097774256756311773273" ], - "expectedQty": "14546500609282231328470", - "swapFee": "8733140249719170299", + "redemptionFee": "5061830589425923852", "reserves": [ - "1087642692870946351649273", - "1229513501429924317472684" + "1836744990836601905552640", + "1065886984071615160834010" ], - "LPTokenSupply": "2316615070282791132986251" + "LPTokenSupply": "2901057997829291055677431" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "906486544282770866176", - "expectedQty": "906666395090908288329", + "inputQty": "155959866377132081152", + "expectedQty": "156184175628977889572", + "swapFee": "93575919826279248", "reserves": [ - "1088549179415229122515449", - "1229513501429924317472684" - ] + "1836588806660972927663068", + "1065886984071615160834010" + ], + "LPTokenSupply": "2900902047320505906224203" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "651288127223456464896", - "1470803503679751585792" + "458236281181554737152", + "206451992043169513472" ], - "expectedQty": "2121317054959247989672", - "swapFee": "1273554365594905737", + "expectedQty": "664174822072258351846", "reserves": [ - "1087897891288005666050553", - "1228042697926244565886892" + "1837047042942154482400220", + "1066093436063658330347482" ], - "LPTokenSupply": "2315399273423993757869743" + "LPTokenSupply": "2901566222142578164576049" }, { - "type": "redeemBassets", - "inputQtys": [ - "6570985041674133045248", - "17392804424845505855488" - ], - "expectedQty": "23954535490458548752280", - "swapFee": "14381350104337731890", + "type": "mint", + "inputIndex": 1, + "inputQty": "34446625907715665920", + "expectedQty": "34516571685702914191", "reserves": [ - "1081326906246331533005305", - "1210649893501399060031404" - ], - "LPTokenSupply": "2291431794718441305158761" + "1837047042942154482400220", + "1066127882689566046013402" + ] }, { "type": "redeemMasset", - "inputQty": "70284840955270358630", + "inputQty": "3602477651949107609", "expectedQtys": [ - "33147523425079828993", - "37111853476127418044" + "2279414282255236278", + "1322855139638170480" ], - "redemptionFee": "42170904573162215", + "redemptionFee": "2161486591169464", "reserves": [ - "1081293758722906453176312", - "1210612781647922932613360" + "1837044763527872227163942", + "1066126559834426407842922" ], - "LPTokenSupply": "2291361514094576492116352" + "LPTokenSupply": "2901597136452760577499577" }, { - "type": "mintMulti", - "inputQtys": [ - "10451193592357406638080", - "16764404243139166994432" - ], - "expectedQty": "27207296433530995443451", + "type": "swap", + "inputIndex": 1, + "inputQty": "113788774924495929344", + "outputIndex": 0, + "expectedQty": "114252265559602987013", + "swapFee": "0", "reserves": [ - "1091744952315263859814392", - "1227377185891062099607792" + "1836930511262312624176929", + "1066240348609350903772266" ], - "LPTokenSupply": "2318568810528107487559803" + "LPTokenSupply": "2901597136452760577499577", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "111157543455977589702656", - "expectedQty": "111050053229186720113503", - "swapFee": "66694526073586553821", + "inputQty": "44221938245805950369792", + "expectedQty": "44283687295504537362085", + "swapFee": "26533162947483570221", "reserves": [ - "980694899086077139700889", - "1227377185891062099607792" + "1792646823966808086814844", + "1066240348609350903772266" ], - "LPTokenSupply": "2207417936524737256512529" + "LPTokenSupply": "2857377851523249375486807" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "239041038254257373184", - "expectedQty": "238766935817163289995", - "swapFee": "143424622952554423", + "type": "redeemMasset", + "inputQty": "94186386485292354764", + "expectedQtys": [ + "59054710159476571837", + "35124885674988002331" + ], + "redemptionFee": "56511831891175412", "reserves": [ - "980456132150259976410894", - "1227377185891062099607792" + "1792587769256648610243007", + "1066205223723675915769935" ], - "LPTokenSupply": "2207178909828945294394787" + "LPTokenSupply": "2857283670787947272249584" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "129913806201068", - "expectedQty": "129764783043984", - "swapFee": "77948283720", + "type": "redeemMasset", + "inputQty": "2319277340902536354201", + "expectedQtys": [ + "1454183122375546348767", + "864927044532138980234" + ], + "redemptionFee": "1391566404541521812", "reserves": [ - "980456132020495193366910", - "1227377185891062099607792" + "1791133586134273063894240", + "1065340296679143776789701" ], - "LPTokenSupply": "2207178909699039283022091" + "LPTokenSupply": "2854964532603685190047564" }, { - "type": "redeemMasset", - "inputQty": "240753519831969955840", - "expectedQtys": [ - "106881519585580453849", - "133798886506395924337" + "type": "mintMulti", + "inputQtys": [ + "222703737222328288", + "263445241696272512" ], - "redemptionFee": "144452111899181973", + "expectedQty": "486207596047388604", "reserves": [ - "980349250500909612913061", - "1227243387004555703683455" + "1791133808838010286222528", + "1065340560124385473062213" ], - "LPTokenSupply": "2206938170624418502984448" + "LPTokenSupply": "2854965018811281237436168" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "2064181606611419922432", - "expectedQty": "2061805427130520582773", - "swapFee": "1238508963966851953", + "inputQty": "35987178737416462663680", + "expectedQty": "35915396235848486190693", "reserves": [ - "978287445073779092330288", - "1227243387004555703683455" - ], - "LPTokenSupply": "2204874112868703479747211" + "1827120987575426748886208", + "1065340560124385473062213" + ] }, { "type": "redeemMasset", - "inputQty": "23926723342416874700", + "inputQty": "738173891374025696870", "expectedQtys": [ - "10609752540191665763", - "13309737039222687858" + "466267564229938835101", + "271866915996470037427" ], - "redemptionFee": "14356034005450124", + "redemptionFee": "442904334824415418", "reserves": [ - "978276835321238900664525", - "1227230077267516480995597" + "1826654720011196810051107", + "1065068693208389003024786" ], - "LPTokenSupply": "2204850187580964463417523" + "LPTokenSupply": "2890142285446189180371532" }, { - "type": "redeemBassets", - "inputQtys": [ - "57684847337748157169664", - "68946070004031668879360" + "type": "redeemMasset", + "inputQty": "1796023395417511165952", + "expectedQtys": [ + "1134458396817738630046", + "661469356502441002898" ], - "expectedQty": "126595551661441238313974", - "swapFee": "76002932756518654180", + "redemptionFee": "1077614037250506699", "reserves": [ - "920591987983490743494861", - "1158284007263484812116237" + "1825520261614379071421061", + "1064407223851886562021888" ], - "LPTokenSupply": "2078186233280042358314786" + "LPTokenSupply": "2888346369812175394256249" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "10018472514065604", - "expectedQty": "10007116854488554", - "swapFee": "6011083508439", + "inputIndex": 1, + "inputQty": "39942537472460912", + "expectedQty": "39839139329849333", + "swapFee": "23965522483476", "reserves": [ - "920591977976373889006307", - "1158284007263484812116237" + "1825520261614379071421061", + "1064407184012747232172555" ], - "LPTokenSupply": "2078186223262170952600025" + "LPTokenSupply": "2888346329872034474043684" }, { - "type": "redeemBassets", - "inputQtys": [ - "527538282593611808768", - "549472959925842083840" - ], - "expectedQty": "1076732553668425935628", - "swapFee": "646427388634236103", + "type": "mint", + "inputIndex": 0, + "inputQty": "175924596397817882214400", + "expectedQty": "175539373388577191614235", "reserves": [ - "920064439693780277197539", - "1157734534303558970032397" - ], - "LPTokenSupply": "2077108908923852755851903" + "2001444858012196953635461", + "1064407184012747232172555" + ] }, { "type": "redeemMasset", - "inputQty": "8554448654807674060", + "inputQty": "305813132269117190963", "expectedQtys": [ - "3786956759116243559", - "4765199512984500582" + "199648726964258463491", + "106177064238889539128" ], - "redemptionFee": "5132669192884604", + "redemptionFee": "183487879361470314", "reserves": [ - "920060652737021160953980", - "1157729769104045985531815" + "2001245209285232695171970", + "1064301006948508342633427" ], - "LPTokenSupply": "2077100354988464867466303" + "LPTokenSupply": "3063579908477130484613987" }, { "type": "redeemBassets", "inputQtys": [ - "207281140164448124928", - "299767814808911478784" + "484134489652042432", + "191201313344985888" ], - "expectedQty": "506853748167274270051", - "swapFee": "304294825795842067", + "expectedQty": "674689895646865006", + "swapFee": "405056971571061", "reserves": [ - "919853371596856712829052", - "1157430001289237074053031" + "2001244725150743043129538", + "1064300815747194997647539" ], - "LPTokenSupply": "2076593227374954376938390" + "LPTokenSupply": "3063579233422683563335025" }, { "type": "mintMulti", "inputQtys": [ - "19612961913157487427584", - "5769504627530482581504" + "10408257145200703438848", + "20170451670193972183040" ], - "expectedQty": "25386574513932700740304", + "expectedQty": "30605410718630285617314", "reserves": [ - "939466333510014200256636", - "1163199505916767556634535" + "2011652982295943746568386", + "1084471267417388969830579" ], - "LPTokenSupply": "2101979801888887077678694" + "LPTokenSupply": "3094184644141313848952339" }, { "type": "redeemBassets", "inputQtys": [ - "570280730888250982400", - "597848727551823314944" + "160943592231815708672", + "139542966053404622848" ], - "expectedQty": "1167818047223733546862", - "swapFee": "701111495231378955", + "expectedQty": "300462197866653386192", + "swapFee": "180385550050022044", "reserves": [ - "938896052779125949274236", - "1162601657189215733319591" + "2011492038703711930859714", + "1084331724451335565207731" ], - "LPTokenSupply": "2100811352841317635890771" + "LPTokenSupply": "3093884019596452150546306" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "176180530926526564139008", - "expectedQty": "176201531179428537536455", - "swapFee": "105708318555915938483", + "inputQty": "3144227010141234688", + "expectedQty": "3152020633313930901", "reserves": [ - "938896052779125949274236", - "986400126009787195783136" - ], - "LPTokenSupply": "1924641392746646663345611" + "2011492038703711930859714", + "1084334868678345706442419" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "15976217045651788136448", - "16383825816588052856832" + "type": "redeemMasset", + "inputQty": "3320296083821", + "expectedQtys": [ + "2157396672539", + "1162987669149" ], - "expectedQty": "32349101518748030919759", - "swapFee": "19421113579396456425", + "redemptionFee": "1992177650", "reserves": [ - "922919835733474161137788", - "970016300193199142926304" + "2011492038701554534187175", + "1084334868677182718773270" ], - "LPTokenSupply": "1892274812225677175615068" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "23492488937105547853824", - "expectedQty": "23487248264840687717688", - "reserves": [ - "946412324670579708991612", - "970016300193199142926304" - ] + "LPTokenSupply": "3093887171613765367611151" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "25302985339584838107136", - "expectedQty": "25293363016627622432416", - "swapFee": "15181791203750902864", + "inputIndex": 1, + "inputQty": "65188547016888041472", + "expectedQty": "64988334562713918397", + "swapFee": "39113128210132824", "reserves": [ - "921118961653952086559196", - "970016300193199142926304" + "2011492038701554534187175", + "1084269880342620004854873" ], - "LPTokenSupply": "1890460593330053400315906" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "34526551283828744", - "expectedQty": "34520304658603965", - "reserves": [ - "921118996180503370387940", - "970016300193199142926304" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "123169470182384505716736", - "expectedQty": "123120912296464875110577", - "reserves": [ - "1044288466362887876104676", - "970016300193199142926304" - ] + "LPTokenSupply": "3093821986978061300582961" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "3343059822078139", - "outputIndex": 1, - "expectedQty": "3338750003722232", - "swapFee": "2672857143805", - "reserves": [ - "1044288469705947698182815", - "970016296854449139204072" + "type": "redeemBassets", + "inputQtys": [ + "66736052864576974225408", + "12983464496911280504832" ], - "LPTokenSupply": "2013581540147090219744828", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "32503713033190843088896", - "outputIndex": 1, - "expectedQty": "32454780115459340119209", - "swapFee": "25986222950552995943", + "expectedQty": "79599786679807667686913", + "swapFee": "47788545134965579960", "reserves": [ - "1076792182739138541271711", - "937561516738989799084863" + "1944755985836977559961767", + "1071286415845708724350041" ], - "LPTokenSupply": "2013584138769385275044422", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3014179190607632163874083" }, { - "type": "redeemMasset", - "inputQty": "60763711470515884392448", - "expectedQtys": [ - "32474745064255684655471", - "28275717196148727318485" + "type": "mintMulti", + "inputQtys": [ + "34150302865208008245248", + "117107650523899340259328" ], - "redemptionFee": "36458226882309530635", + "expectedQty": "151427608500303073285549", "reserves": [ - "1044317437674882856616240", - "909285799542841071766378" + "1978906288702185568207015", + "1188394066369608064609369" ], - "LPTokenSupply": "1952824073121557621605037" + "LPTokenSupply": "3165606799107935237159632" }, { "type": "redeemMasset", - "inputQty": "317208111083481989120", + "inputQty": "9492637262316092", "expectedQtys": [ - "169532528176037962145", - "147611746074337810273" - ], - "redemptionFee": "190324866650089193", - "reserves": [ - "1044147905146706818654095", - "909138187796766733956105" + "5930543413133804", + "3561473649738971" ], - "LPTokenSupply": "1952506884042960804624836" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3878049619562163", - "expectedQty": "3878938178877252", - "swapFee": "2326829771737", + "redemptionFee": "5695582357389", "reserves": [ - "1044147901267768639776843", - "909138187796766733956105" + "1978906282771642155073211", + "1188394062808134414870398" ], - "LPTokenSupply": "1952506880165143868039846" + "LPTokenSupply": "3165606789615867533079278" }, { "type": "redeemMasset", - "inputQty": "17748588195393162759372", + "inputQty": "5806314995360585318", "expectedQtys": [ - "9485770325403583665048", - "8259247596076135619596" + "3627506476737517172", + "2178429164273051506" ], - "redemptionFee": "10649152917235897655", + "redemptionFee": "3483788997216351", "reserves": [ - "1034662130942365056111795", - "900878940200690598336509" + "1978902655265165417556039", + "1188391884378970141818892" ], - "LPTokenSupply": "1934759356885042428870239" + "LPTokenSupply": "3165600983649251072215595" }, { - "type": "redeemMasset", - "inputQty": "1363006014991294873", - "expectedQtys": [ - "728465042703045577", - "634273543041391972" - ], - "redemptionFee": "817803608994776", + "type": "mint", + "inputIndex": 1, + "inputQty": "135806226736109840236544", + "expectedQty": "136012641539534397426334", "reserves": [ - "1034661402477322353066218", - "900878305927147556944537" - ], - "LPTokenSupply": "1934757993960807798474843" + "1978902655265165417556039", + "1324198111115079982055436" + ] }, { - "type": "redeemMasset", - "inputQty": "121456959567994880", - "expectedQtys": [ - "64913249317175716", - "56519879776191385" - ], - "redemptionFee": "72874175740796", + "type": "mint", + "inputIndex": 1, + "inputQty": "836048928381676617203712", + "expectedQty": "836206316190702729618306", "reserves": [ - "1034661337564073035890502", - "900878249407267780753152" - ], - "LPTokenSupply": "1934757872511135648054042" + "1978902655265165417556039", + "2160247039496756599259148" + ] }, { "type": "redeemMasset", - "inputQty": "13930286414379655168", + "inputQty": "2124327756866674278", "expectedQtys": [ - "7445107784051821334", - "6482445437591967134" + "1015345180683011449", + "1108390255984505784" ], - "redemptionFee": "8358171848627793", + "redemptionFee": "1274596654120004", "reserves": [ - "1034653892456288984069168", - "900871766961830188786018" + "1978901639919984734544590", + "2160245931106500614753364" ], - "LPTokenSupply": "1934743943060538453261653" + "LPTokenSupply": "4137817817179190997997957" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "72213850702587136835584", - "expectedQty": "72153011666378972113617", - "swapFee": "43328310421552282101", + "type": "mintMulti", + "inputQtys": [ + "714634421817079234560", + "77607404735919586017280" + ], + "expectedQty": "78271189297210454808323", "reserves": [ - "1034653892456288984069168", - "828718755295451216672401" + "1979616274341801813779150", + "2237853335842420200770644" ], - "LPTokenSupply": "1862534425188993471654279" + "LPTokenSupply": "4216089006476401452806280" }, { - "type": "redeemBassets", - "inputQtys": [ - "63068380727499795988480", - "101870451243865950126080" - ], - "expectedQty": "164914312950533932462958", - "swapFee": "99007992565859875403", + "type": "mint", + "inputIndex": 0, + "inputQty": "12694063470911667830784", + "expectedQty": "12695264713390215586818", "reserves": [ - "971585511728789188080688", - "726848304051585266546321" - ], - "LPTokenSupply": "1697531005045150265303457" + "1992310337812713481609934", + "2237853335842420200770644" + ] }, { "type": "redeemMasset", - "inputQty": "11696407584329219597926", + "inputQty": "242210871122021580800", "expectedQtys": [ - "6690447289837863629777", - "5005159306371613989560" + "114044523438850425076", + "128099981397668128838" ], - "redemptionFee": "7017844550597531758", + "redemptionFee": "145326522673212948", "reserves": [ - "964895064438951324450911", - "721843144745213652556761" + "1992196293289274631184858", + "2237725235861022532641806" ], - "LPTokenSupply": "1685835299245276105458706" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "3262924881267538944", - "expectedQty": "3258401018446356545", - "reserves": [ - "964898327363832591989855", - "721843144745213652556761" - ] + "LPTokenSupply": "4228542074851321914133592" }, { "type": "mintMulti", "inputQtys": [ - "41425772594215415447552", - "256465403196786457182208" + "50049343261933842726912", + "4500052317615343271936" ], - "expectedQty": "297869668136388413869587", + "expectedQty": "54548586760068681504013", "reserves": [ - "1006324099958048007437407", - "978308547942000109738969" + "2042245636551208473911770", + "2242225288178637875913742" ], - "LPTokenSupply": "1983708225782682965684838" + "LPTokenSupply": "4283090661611390595637605" }, { - "type": "mintMulti", - "inputQtys": [ - "19677941528385855488", - "524735061573326592" - ], - "expectedQty": "20191502034676190962", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5958177388808181383168", + "expectedQty": "5958259538846747715792", + "swapFee": "3574906433284908829", "reserves": [ - "1006343777899576393292895", - "978309072677061683065561" + "2042245636551208473911770", + "2236267028639791128197950" ], - "LPTokenSupply": "1983728417284717641875800" + "LPTokenSupply": "4277132841713225742745319" }, { "type": "mintMulti", "inputQtys": [ - "32312569471072808730624", - "63128422080228662181888" + "21635150549898416357376", + "30169804968554506747904" ], - "expectedQty": "95397897684109438549093", + "expectedQty": "51786354160181473641919", "reserves": [ - "1038656347370649202023519", - "1041437494757290345247449" + "2063880787101106890269146", + "2266436833608345634945854" ], - "LPTokenSupply": "2079126314968827080424893" + "LPTokenSupply": "4328919195873407216387238" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2943277466165335031808", - "4008186455092798947328" + "5722408904335859712", + "4296386622713678336" ], - "expectedQty": "6948219433243416815568", + "expectedQty": "10016149374482588737", + "swapFee": "6013297603251504", "reserves": [ - "1041599624836814537055327", - "1045445681212383144194777" + "2063875064692202554409434", + "2266432537221722921267518" ], - "LPTokenSupply": "2086074534402070497240461" + "LPTokenSupply": "4328909174312064890872146" }, { - "type": "redeemMasset", - "inputQty": "1208096135518605646233", - "expectedQtys": [ - "602853565054680673629", - "605079572766402027953" - ], - "redemptionFee": "724857681311163387", + "type": "mint", + "inputIndex": 1, + "inputQty": "27300745516047547760640", + "expectedQty": "27283313017065987082774", "reserves": [ - "1040996771271759856381698", - "1044840601639616742166824" - ], - "LPTokenSupply": "2084866510752320022710566" + "2063875064692202554409434", + "2293733282737770469028158" + ] }, { "type": "mintMulti", "inputQtys": [ - "1604027368167241984", - "1275228376654010368" + "93533564937045688320", + "128754406092998082560" ], - "expectedQty": "2877919658011801558", + "expectedQty": "222207494912251686014", "reserves": [ - "1040998375299128023623682", - "1044841876867993396177192" + "2063968598257139600097754", + "2293862037143863467110718" ], - "LPTokenSupply": "2084869388671978034512124" + "LPTokenSupply": "4356414694824043129640934" }, { "type": "mint", "inputIndex": 1, - "inputQty": "7036680819519583682560", - "expectedQty": "7033241874138242417063", + "inputQty": "1555291090566279331840", + "expectedQty": "1554266677929437584775", "reserves": [ - "1040998375299128023623682", - "1051878557687512979859752" + "2063968598257139600097754", + "2295417328234429746442558" ] }, { - "type": "redeemMasset", - "inputQty": "312047715699308748", - "expectedQtys": [ - "155191860089107750", - "156813875822299478" - ], - "redemptionFee": "187228629419585", + "type": "mint", + "inputIndex": 1, + "inputQty": "199926662122476874498048", + "expectedQty": "199768023583116527118154", "reserves": [ - "1040998220107267934515932", - "1051878400873637157560274" - ], - "LPTokenSupply": "2091902318517123440562397" + "2063968598257139600097754", + "2495343990356906620940606" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "23372472547956974682112", - "expectedQty": "23361537124722724582353", + "inputQty": "838621616730580058112", + "expectedQty": "838916527736197442690", "reserves": [ - "1064370692655224909198044", - "1051878400873637157560274" + "2064807219873870180155866", + "2495343990356906620940606" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "74977399516726263808", - "expectedQty": "74970219767474911349", - "swapFee": "44986439710035758", + "type": "mint", + "inputIndex": 1, + "inputQty": "22781268524522037248", + "expectedQty": "22760271838136253840", "reserves": [ - "1064295722435457434286695", - "1051878400873637157560274" - ], - "LPTokenSupply": "2115188882740973409884517" + "2064807219873870180155866", + "2495366771625431142977854" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "89076312828847398584320", - "outputIndex": 1, - "expectedQty": "88948098505278909066435", - "swapFee": "71215679746848914595", + "inputQty": "65330917807682314305536", + "expectedQty": "65264830269421784629147", + "swapFee": "39198550684609388583", "reserves": [ - "1153372035264304832871015", - "962930302368358248493839" + "1999542389604448395526719", + "2495366771625431142977854" ], - "LPTokenSupply": "2115196004308948094775976", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4493271663932049574673715" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "132552938419058240389120", - "expectedQty": "132590728374830571711665", - "swapFee": "79531763051434944233", + "type": "redeemMasset", + "inputQty": "2560474957148762564198", + "expectedQtys": [ + "1138748495552428943826", + "1421122738789303000164" + ], + "redemptionFee": "1536284974289257538", "reserves": [ - "1020781306889474261159350", - "962930302368358248493839" + "1998403641108895966582893", + "2493945648886641839977690" ], - "LPTokenSupply": "1982651019066194997881279" + "LPTokenSupply": "4490711342603398241035270" }, { - "type": "mintMulti", - "inputQtys": [ - "45184274241218987163648", - "105527831520748815515648" + "type": "redeemMasset", + "inputQty": "2986983855420998261145", + "expectedQtys": [ + "1328434948905177617386", + "1657845538558285382232" ], - "expectedQty": "150637530762481439056064", + "redemptionFee": "1792190313252598956", "reserves": [ - "1065965581130693248322998", - "1068458133889107064009487" + "1997075206159990788965507", + "2492287803348083554595458" ], - "LPTokenSupply": "2133288549828676436937343" + "LPTokenSupply": "4487724537967008568034020" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "568594965658942373888", - "expectedQty": "568287676034191019313", + "type": "redeem", + "inputIndex": 0, + "inputQty": "18091117222366930944", + "expectedQty": "18071843810815463424", + "swapFee": "10854670333420158", "reserves": [ - "1065965581130693248322998", - "1069026728854766006383375" - ] + "1997057134316179973502083", + "2492287803348083554595458" + ], + "LPTokenSupply": "4487706447935253234445091" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "30705645028996492", - "expectedQty": "30703842117707995", - "swapFee": "18423387017397", + "type": "redeemMasset", + "inputQty": "1200885417300194918", + "expectedQtys": [ + "534080799590688341", + "666522274175218311" + ], + "redemptionFee": "720531250380116", "reserves": [ - "1065965581130693248322998", - "1069026698150923888675380" + "1997056600235380382813742", + "2492287136825809379377147" ], - "LPTokenSupply": "2133856806800907937661903" + "LPTokenSupply": "4487705247121889059288184" }, { "type": "redeemBassets", "inputQtys": [ - "24932614334718500864", - "66727931423411208192" + "18157395291980513148928", + "13215821393779851526144" ], - "expectedQty": "91611404381717380582", - "swapFee": "54999842534551159", + "expectedQty": "31368110157730222019328", + "swapFee": "18832165393874457886", "reserves": [ - "1065940648516358529822134", - "1068959970219500477467188" + "1978899204943399869664814", + "2479071315432029527851003" ], - "LPTokenSupply": "2133765145896667939185276" + "LPTokenSupply": "4456320188015304350256757" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2186251879864185651200", - "expectedQty": "2185061277455678371866", + "type": "redeemBassets", + "inputQtys": [ + "328725576726971502559232", + "149621808519048035565568" + ], + "expectedQty": "478397609690704245521458", + "swapFee": "287210892349832446780", "reserves": [ - "1065940648516358529822134", - "1071146222099364663118388" - ] + "1650173628216428367105582", + "2329449506912981492285435" + ], + "LPTokenSupply": "3977664088521485255533196" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5379259074556748365824", - "2156007663608956977152" + "4968245523401685336064", + "2910848758921116516352" ], - "expectedQty": "7531327512188572071700", - "swapFee": "4521509412960919794", + "expectedQty": "7879281190576553147247", "reserves": [ - "1060561389441801781456310", - "1068990214435755706141236" + "1655141873739830052441646", + "2332360355671902608801787" ], - "LPTokenSupply": "2128414810303463380657626" + "LPTokenSupply": "3985543369712061808680443" }, { - "type": "redeemMasset", - "inputQty": "5651165490130018369536", - "expectedQtys": [ - "2814212648036092108163", - "2836578638484370192720" + "type": "mintMulti", + "inputQtys": [ + "3402540583008083116032", + "3877501687962283278336" ], - "redemptionFee": "3390699294078011021", + "expectedQty": "7277372724946288732786", "reserves": [ - "1057747176793765689348147", - "1066153635797271335948516" + "1658544414322838135557678", + "2336237857359864892080123" ], - "LPTokenSupply": "2122763983883262770089192" + "LPTokenSupply": "3992820742437008097413229" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "88956250583590001180672", - "expectedQty": "88935140298198717117162", - "swapFee": "53373750350154000708", + "inputQty": "277186713401086640128", + "expectedQty": "276770933115793348680", + "swapFee": "166312028040651984", "reserves": [ - "968812036495566972230985", - "1066153635797271335948516" + "1658267643389722342208998", + "2336237857359864892080123" ], - "LPTokenSupply": "2033813070674707784308590" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "8377510640830777344", - "expectedQty": "8370228495609978517", - "reserves": [ - "968812036495566972230985", - "1066162013307912166725860" - ] + "LPTokenSupply": "3992543572354809814838299" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "376109563157064250818560", - "expectedQty": "375594898462870304967298", + "type": "redeem", + "inputIndex": 0, + "inputQty": "10505533882206911463424", + "expectedQty": "10489623723932182701442", + "swapFee": "6303320329324146878", "reserves": [ - "968812036495566972230985", - "1442271576464976417544420" - ] + "1647778019665790159507556", + "2336237857359864892080123" + ], + "LPTokenSupply": "3982038668804635835789562" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "101906605445882462208", - "expectedQty": "101721035471742737651", + "type": "swap", + "inputIndex": 0, + "inputQty": "88411324451015540736", + "outputIndex": 1, + "expectedQty": "88555549314222227539", + "swapFee": "70794732689396441", "reserves": [ - "968812036495566972230985", - "1442373483070422300006628" - ] + "1647866430990241175048292", + "2336149301810550669852584" + ], + "LPTokenSupply": "3982038675884109104729206", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "3549552764086074368", - "2816483569051922944" + "type": "redeemMasset", + "inputQty": "318269337303801502105", + "expectedQtys": [ + "131628725988176543111", + "186607573606984890465" ], - "expectedQty": "6364421722341087376", + "redemptionFee": "190961602382280901", "reserves": [ - "968815586048331058305353", - "1442376299553991351929572" + "1647734802264252998505181", + "2335962694236943684962119" ], - "LPTokenSupply": "2409524424823267783079432" + "LPTokenSupply": "3981720425642965541455191" }, { "type": "redeemMasset", - "inputQty": "3488192408503692401049", + "inputQty": "1917308010465446592512", "expectedQtys": [ - "1401682211060412996410", - "2086829763945515731268" + "792953615248566011166", + "1124155453253516727854" ], - "redemptionFee": "2092915445102215440", + "redemptionFee": "1150384806279267955", "reserves": [ - "967413903837270645308943", - "1440289469790045836198304" + "1646941848649004432494015", + "2334838538783690168234265" ], - "LPTokenSupply": "2406036441706308600899927" + "LPTokenSupply": "3979803232670980722789474" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "78111414657844066123776", - "expectedQty": "78174504212507017522164", + "inputIndex": 1, + "inputQty": "67432173932063296", + "expectedQty": "67330935980958248", "reserves": [ - "1045525318495114711432719", - "1440289469790045836198304" + "1646941848649004432494015", + "2334838606215864100297561" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "7181801397005592821760", - "expectedQty": "7188761009309821547835", - "swapFee": "4309080838203355693", + "inputQty": "863182333896017313792", + "expectedQty": "863961009062262363049", + "swapFee": "517909400337610388", "reserves": [ - "1045525318495114711432719", - "1433100708780736014650469" + "1646941848649004432494015", + "2333974645206801837934512" ], - "LPTokenSupply": "2477029575429893845935900" + "LPTokenSupply": "3978940169458960720194968" }, { - "type": "redeemBassets", - "inputQtys": [ - "48616431989654655336448", - "45262542293979233255424" - ], - "expectedQty": "93838636450188053648802", - "swapFee": "56336984060549161686", + "type": "redeem", + "inputIndex": 1, + "inputQty": "51927708024687288320", + "expectedQty": "51974525670300930908", + "swapFee": "31156624814812372", "reserves": [ - "996908886505460056096271", - "1387838166486756781395045" + "1646941848649004432494015", + "2333922670681131537003604" ], - "LPTokenSupply": "2383140235694051298041579" + "LPTokenSupply": "3978888244866598514387885" }, { - "type": "redeemMasset", - "inputQty": "852470080016189646438", - "expectedQtys": [ - "356389055301170253787", - "496143970387222060581" + "type": "redeemBassets", + "inputQtys": [ + "1099645389725170270208", + "1034190581868179095552" ], - "redemptionFee": "511482048009713787", + "expectedQty": "2133302948666149113399", + "swapFee": "1280750219331288240", "reserves": [ - "996552497450158885842484", - "1387342022516369559334464" + "1645842203259279262223807", + "2332888480099263357908052" ], - "LPTokenSupply": "2382287816762239909366519" + "LPTokenSupply": "3976753789242734967115069" }, { "type": "mint", "inputIndex": 1, - "inputQty": "476194320900741021040640", - "expectedQty": "475177609466980109883514", + "inputQty": "229865734153467872", + "expectedQty": "229520656752067080", "reserves": [ - "996552497450158885842484", - "1863536343417110580375104" + "1645842203259279262223807", + "2332888709964997511375924" ] }, { - "type": "redeemMasset", - "inputQty": "10384457997528", - "expectedQtys": [ - "3619448292404", - "6768307192318" - ], - "redemptionFee": "6230674798", + "type": "swap", + "inputIndex": 1, + "inputQty": "224415116225290646323200", + "outputIndex": 0, + "expectedQty": "223653554233602767236525", + "swapFee": "0", "reserves": [ - "996552497446539437550080", - "1863536343410342273182786" + "1422188649025676494987282", + "2557303826190288157699124" ], - "LPTokenSupply": "2857465426218836184319984" + "LPTokenSupply": "3976754018763391719182149", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "2042012238690534817792", - "expectedQty": "2046124221997956270534", - "swapFee": "1225207343214320890", + "inputQty": "6688786238373502124032", + "expectedQty": "6673468016384193038808", "reserves": [ - "996552497446539437550080", - "1861490219188344316912252" - ], - "LPTokenSupply": "2855423536500879970934281" + "1422188649025676494987282", + "2563992612428661659823156" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "28617467703342839889920", - "37778149293287247183872" - ], - "expectedQty": "66361043789531387900029", + "type": "swap", + "inputIndex": 1, + "inputQty": "168654909625471893504", + "outputIndex": 0, + "expectedQty": "167898261732562925559", + "swapFee": "0", "reserves": [ - "1025169965149882277440000", - "1899268368481631564096124" + "1422020750763943932061723", + "2564161267338287131716660" ], - "LPTokenSupply": "2921784580290411358834310" + "LPTokenSupply": "3983427486779775912220957", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "8867205018529087409356", + "inputQty": "1278965399746520075468", "expectedQtys": [ - "3109379824149606935876", - "5760553807035228053238" + "456296522223192772012", + "822785369395849523606" ], - "redemptionFee": "5320323011117452445", + "redemptionFee": "767379239847912045", "reserves": [ - "1022060585325732670504124", - "1893507814674596336042886" + "1421564454241720739289711", + "2563338481968891282193054" ], - "LPTokenSupply": "2912917907304183383170198" + "LPTokenSupply": "3982148598117953376936693" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "158889386038774661120", - "expectedQty": "158447705797101264562", - "swapFee": "95333631623264796", + "inputQty": "11569802409126035193856", + "outputIndex": 1, + "expectedQty": "11611942244244541333726", + "swapFee": "9275985133802644990", "reserves": [ - "1021902137619935569239562", - "1893507814674596336042886" + "1433134256650846774483567", + "2551726539724646740859328" ], - "LPTokenSupply": "2912759027451507770835557" + "LPTokenSupply": "3982149525716466757201192", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "2542386670118073548", - "expectedQtys": [ - "891426824586369442", - "1651746871276847609" + "type": "mintMulti", + "inputQtys": [ + "223021394126630", + "48026493065363" ], - "redemptionFee": "1525432002070844", + "expectedQty": "271412657853722", "reserves": [ - "1021901246193110982870120", - "1893506162927725059195277" + "1433134256873868168610197", + "2551726539772673233924691" ], - "LPTokenSupply": "2912756485217380852969093" + "LPTokenSupply": "3982149525987879415054914" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "12774222573970231296", - "expectedQty": "12802150987644388500", + "inputIndex": 1, + "inputQty": "8175361880724986658816", + "expectedQty": "8156891828494718589536", "reserves": [ - "1021914020415684953101416", - "1893506162927725059195277" + "1433134256873868168610197", + "2559901901653398220583507" ] }, { "type": "mintMulti", "inputQtys": [ - "3344339209224465154048", - "9899971831171790143488" + "151838219355662450688", + "1498653866050527952896" ], - "expectedQty": "13226068871693324982360", + "expectedQty": "1647421995210960876705", "reserves": [ - "1025258359624909418255464", - "1903406134758896849338765" + "1433286095093223831060885", + "2561400555519448748536403" ], - "LPTokenSupply": "2925995356240061822339953" + "LPTokenSupply": "3991953839811585094521155" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1143122597456901308416", - "1578388370649565102080" + "2104241394010720768", + "131185412911638320" ], - "expectedQty": "2719942050487075637391", - "swapFee": "1632944997290619754", + "expectedQty": "2239640171768167038", "reserves": [ - "1024115237027452516947048", - "1901827746388247284236685" + "1433288199334617841781653", + "2561400686704861660174723" ], - "LPTokenSupply": "2923273944539077185144782" + "LPTokenSupply": "3991956079451756862688193" }, { "type": "redeemMasset", - "inputQty": "1804068039002156957696", + "inputQty": "160269567107356898099", "expectedQtys": [ - "631642828646036527364", - "1172988950748311143867" + "57509313026165078853", + "102773743581735964959" ], - "redemptionFee": "1082440823401294174", + "redemptionFee": "96161740264414138", "reserves": [ - "1023483594198806480419684", - "1900654757437498973092818" + "1433230690021591676702800", + "2561297912961279924209764" ], - "LPTokenSupply": "2921469984744157368316503" + "LPTokenSupply": "3991795819500823532231507" }, { - "type": "redeemMasset", - "inputQty": "49277749532327601766", - "expectedQtys": [ - "17253200439389791665", - "32039963983808813948" - ], - "redemptionFee": "29566649719396561", + "type": "swap", + "inputIndex": 1, + "inputQty": "452793322728726816882688", + "outputIndex": 0, + "expectedQty": "449349510209281740763016", + "swapFee": "0", "reserves": [ - "1023466340998367090628019", - "1900622717473515164278870" + "983881179812309935939784", + "3014091235690006741092452" ], - "LPTokenSupply": "2921420709951290012654393" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1597069720662700720128", - "expectedQty": "1592599471807472397565", - "swapFee": "958241832397620432", - "reserves": [ - "1021873741526559618230454", - "1900622717473515164278870" - ], - "LPTokenSupply": "2919823736054810551696308" + "LPTokenSupply": "3991795819500823532231507", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "709327714656665216", - "11147089682466072576" - ], - "expectedQty": "11829064194838162076", - "reserves": [ - "1021874450854274274895670", - "1900633864563197630351446" - ], - "LPTokenSupply": "2919835565119005389858384" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "587588380281035620352", - "expectedQty": "585939750542667408227", - "swapFee": "352553028168621372", - "reserves": [ - "1021288511103731607487443", - "1900633864563197630351446" - ], - "LPTokenSupply": "2919248011994027171100169" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "69841086837511020544", - "92007494385499930624" + "399543774324996898816", + "1033692544517883035648" ], - "expectedQty": "161764283840744140639", - "swapFee": "97116840408691699", + "expectedQty": "1431591108640627895809", "reserves": [ - "1021218670016894096466899", - "1900541857068812130420822" + "984280723586634932838600", + "3015124928234524624128100" ], - "LPTokenSupply": "2919086160305030059136999" + "LPTokenSupply": "3993227410609464160127316" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1223996941255512686592", - "expectedQty": "1226701848589629856556", + "inputQty": "184294803772378758250496", + "expectedQty": "185465319465093136668956", "reserves": [ - "1022442666958149609153491", - "1900541857068812130420822" + "1168575527359013691089096", + "3015124928234524624128100" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "117250963442002", - "1558658299061743" + "5978238629963608621056", + "7180713284255619219456" ], - "expectedQty": "1672127118698000", - "swapFee": "1003878598377", + "expectedQty": "13163839607708746310571", "reserves": [ - "1022442666840898645711489", - "1900541855510153831359079" + "1174553765988977299710152", + "3022305641518780243347556" ], - "LPTokenSupply": "2920312860480589079557014" + "LPTokenSupply": "4191856569682266043106843" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "331257349582204174336", - "outputIndex": 0, - "expectedQty": "329670502861845748504", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "562718727094625370112", + "548865707689771073536" + ], + "expectedQty": "1112508507959922448174", "reserves": [ - "1022112996338036799962985", - "1900873112859736035533415" + "1175116484716071925080264", + "3022854507226470014421092" ], - "LPTokenSupply": "2920312860480589079557014", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4192969078190225965555017" }, { "type": "redeemMasset", - "inputQty": "20453954648284102656", + "inputQty": "95997014967435984896", "expectedQtys": [ - "7154613262004413735", - "13305781289719592225" + "26887865868919647781", + "69165999786993621369" ], - "redemptionFee": "12272372788970461", + "redemptionFee": "57598208980461590", "reserves": [ - "1022105841724774795549250", - "1900859807078446315941190" + "1175089596850203005432483", + "3022785341226683020799723" ], - "LPTokenSupply": "2920292407753178074351404" + "LPTokenSupply": "4192873086935079427616280" }, { "type": "redeemMasset", - "inputQty": "2895208019191199334", + "inputQty": "6623254428173425049", "expectedQtys": [ - "1012718279907278917", - "1883401303059693996" + "1855111629696118108", + "4772065258356133201" ], - "redemptionFee": "1737124811514719", + "redemptionFee": "3973952656904055", "reserves": [ - "1022104829006494888270333", - "1900857923677143256247194" + "1175087741738573309314375", + "3022780569161424664666522" ], - "LPTokenSupply": "2920289512718871364303541" + "LPTokenSupply": "4192866464078046519881636" }, { "type": "mintMulti", "inputQtys": [ - "1888817277121379172352", - "2793215638426695499776" + "525890671811544481792", + "26508628093717849309184" ], - "expectedQty": "4678958956184773251403", + "expectedQty": "26938913336239960791832", "reserves": [ - "1023993646283616267442685", - "1903651139315569951746970" + "1175613632410384853796167", + "3049289197255142513975706" ], - "LPTokenSupply": "2924968471675056137554944" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "98163502590344644526080", - "expectedQty": "98351470642689537611086", - "reserves": [ - "1122157148873960911968765", - "1903651139315569951746970" - ] + "LPTokenSupply": "4219805377414286480673468" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1214090926343715328", - "expectedQty": "1211326859146145369", + "type": "mintMulti", + "inputQtys": [ + "790950972235164418048", + "149674417909819342848" + ], + "expectedQty": "944287442636758906070", "reserves": [ - "1122157148873960911968765", - "1903652353406496295462298" - ] + "1176404583382620018214215", + "3049438871673052333318554" + ], + "LPTokenSupply": "4220749664856923239579538" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "65068313289087019646976", - "expectedQty": "65165024724365140964201", + "type": "redeemMasset", + "inputQty": "6507366214835474432", + "expectedQtys": [ + "1812640613898261373", + "4698669850895045285" + ], + "redemptionFee": "3904419728901284", "reserves": [ - "1187225462163047931615741", - "1903652353406496295462298" - ] + "1176402770742006119952842", + "3049434173003201438273269" + ], + "LPTokenSupply": "4220743157881150376995234" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2672984485460300288", - "expectedQty": "2676552959563831604", + "type": "redeemBassets", + "inputQtys": [ + "44726791205356019122176", + "118420819044714302930944" + ], + "expectedQty": "162944700274344053216656", + "swapFee": "97825515473890766389", "reserves": [ - "1187228135147533391916029", - "1903652353406496295462298" - ] + "1131675979536650100830666", + "2931013353958487135342325" + ], + "LPTokenSupply": "4057710414642879822088826" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "355767994166060158812160", - "expectedQty": "356183964057833315925674", - "swapFee": "213460796499636095287", + "type": "redeemBassets", + "inputQtys": [ + "827196783867", + "16094797954916" + ], + "expectedQty": "16866101858985", + "swapFee": "10125736557", "reserves": [ - "1187228135147533391916029", - "1547468389348662979536624" + "1131675979535822904046799", + "2931013353942392337387409" ], - "LPTokenSupply": "2732742206835519330904572" + "LPTokenSupply": "4057710414626004607066938" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "23231857820858203504640", - "outputIndex": 0, - "expectedQty": "23187016246594977798779", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "2573179893325169664", + "1003843071019535488" + ], + "expectedQty": "3586901860945727898", + "swapFee": "2153433176473320", "reserves": [ - "1164041118900938414117250", - "1570700247169521183041264" + "1131673406355929578877135", + "2931012350099321317851921" ], - "LPTokenSupply": "2732742206835519330904572", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4057706825786053802513051" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "7232043327799592960", - "outputIndex": 0, - "expectedQty": "7217168639754352684", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "10461766843338026123264", + "outputIndex": 1, + "expectedQty": "10547225587044849761594", + "swapFee": "8413326331403463870", "reserves": [ - "1164033901732298659764566", - "1570707479212848982634224" + "1142135173199267605000399", + "2920465124512276468090327" ], - "LPTokenSupply": "2732742206835519330904572", + "LPTokenSupply": "4057707667118686942859438", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1728170729305487", - "expectedQty": "1726355512699248", - "swapFee": "1036902437583", + "type": "redeemBassets", + "inputQtys": [ + "1166619635046092800", + "37344738670500200448" + ], + "expectedQty": "38379578369372712975", + "swapFee": "23041571964802509", "reserves": [ - "1164033900005943147065318", - "1570707479212848982634224" + "1142134006579632558907599", + "2920427779773605967889879" ], - "LPTokenSupply": "2732742205107452291842843" + "LPTokenSupply": "4057669266802902801824203" }, { - "type": "redeemBassets", - "inputQtys": [ - "25847722405549286883328", - "4906383350707888586752" + "type": "redeemMasset", + "inputQty": "1074371243136817037312", + "expectedQtys": [ + "302227610552537164433", + "772793651697200052799" ], - "expectedQty": "30758787691477707687945", - "swapFee": "18466352426342430070", + "redemptionFee": "644622745882090222", "reserves": [ - "1138186177600393860181990", - "1565801095862141094047472" + "1141831778969080021743166", + "2919654986121908767837080" ], - "LPTokenSupply": "2701966797698790875967834" + "LPTokenSupply": "4056594960022040572995913" }, { "type": "swap", "inputIndex": 1, - "inputQty": "3665256118760181858304", + "inputQty": "3176464404919002", "outputIndex": 0, - "expectedQty": "3657116215176563448503", + "expectedQty": "3148527383071394", "swapFee": "0", "reserves": [ - "1134529061385217296733487", - "1569466351980901275905776" + "1141831775820552638671772", + "2919654989298373172756082" ], - "LPTokenSupply": "2701966797698790875967834", + "LPTokenSupply": "4056594960022040572995913", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4141435472395587", - "7817093874885762" + "278867173875010895872", + "3580524188697054674944" ], - "expectedQty": "11947592821003917", - "swapFee": "7172859408247", + "expectedQty": "3847610104479257441375", "reserves": [ - "1134529057243781824337900", - "1569466344163807401020014" + "1142110642994427649567644", + "2923235513487070227431026" ], - "LPTokenSupply": "2701966785744742481496493" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "82133051062359280", - "expectedQty": "82178354204016883", - "reserves": [ - "1134529139376832886697180", - "1569466344163807401020014" - ] + "LPTokenSupply": "4060442570126519830437288" }, { "type": "redeemBassets", "inputQtys": [ - "80951468074517894529024", - "4620739257088782368768" + "19779258631148430950400", + "14307082230151432372224" ], - "expectedQty": "85621265142762262270482", - "swapFee": "51403601246405200482", + "expectedQty": "34136605867538915267066", + "swapFee": "20494260076569290734", "reserves": [ - "1053577671302314992168156", - "1564845604906718618651246" + "1122331384363279218617244", + "2908928431256918795058802" ], - "LPTokenSupply": "2616299339539212658562459" + "LPTokenSupply": "4026287519424912002808560" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "78895684305783221125120", - "expectedQty": "78765945009964915428597", - "swapFee": "47337410583469932675", + "inputIndex": 1, + "inputQty": "357577129963856536272896", + "expectedQty": "358608806761235565109104", + "swapFee": "214546277978313921763", "reserves": [ - "974811726292350076739559", - "1564845604906718618651246" + "1122331384363279218617244", + "2550319624495683229949698" ], - "LPTokenSupply": "2537408388974487784430606" + "LPTokenSupply": "3668731844088853297927840" }, { - "type": "redeemMasset", - "inputQty": "778757326748039168", - "expectedQtys": [ - "299000465310304415", - "479979416933656818" - ], - "redemptionFee": "467254396048823", + "type": "swap", + "inputIndex": 0, + "inputQty": "1095035957327351775232", + "outputIndex": 1, + "expectedQty": "1101973640591906147476", + "swapFee": "879425797168216425", "reserves": [ - "974811427291884766435144", - "1564845124927301684994428" + "1123426420320606570392476", + "2549217650855091323802222" ], - "LPTokenSupply": "2537407610263886475996320" + "LPTokenSupply": "3668731932031433014749482", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "39571245147512725569536", - "expectedQty": "39633169060102406738836", - "swapFee": "23742747088507635341", + "inputQty": "10983053857255457816576", + "expectedQty": "11012043563045932131111", + "swapFee": "6589832314353274689", "reserves": [ - "974811427291884766435144", - "1525211955867199278255592" + "1123426420320606570392476", + "2538205607292045391671111" ], - "LPTokenSupply": "2497838739391082601190318" + "LPTokenSupply": "3657749537157408992260374" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "255221241171740314304512", - "expectedQty": "255356614520511606258118", + "inputIndex": 1, + "inputQty": "23522285257124625776640", + "expectedQty": "23446013573068910000536", "reserves": [ - "1230032668463625080739656", - "1525211955867199278255592" + "1123426420320606570392476", + "2561727892549170017447751" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "15730660557532985344", - "expectedQty": "15720288138681724654", - "swapFee": "9438396334519791", - "reserves": [ - "1230016948175486399015002", - "1525211955867199278255592" - ], - "LPTokenSupply": "2753179624194876307915071" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "274284998977951629312", - "expectedQty": "274104017709095400994", - "swapFee": "164570999386770977", - "reserves": [ - "1229742844157777303614008", - "1525211955867199278255592" - ], - "LPTokenSupply": "2752905355652998294962856" - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1615998013347128576", - "3073454855910898176" + "21821799946462898946048", + "1281909469548343459840" ], - "expectedQty": "4685271098397892425", - "swapFee": "2812850369260291", + "expectedQty": "23183076861150804534648", "reserves": [ - "1229741228159763956485432", - "1525208882412343367357416" + "1145248220267069469338524", + "2563009802018718360907591" ], - "LPTokenSupply": "2752900667850334564736168" + "LPTokenSupply": "3704378627591628706795558" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "26201890520901", - "expectedQty": "26165410004171", + "inputIndex": 0, + "inputQty": "452826201304737710080", + "expectedQty": "454519714282391863835", "reserves": [ - "1229741228159763956485432", - "1525208882438545257878317" + "1145701046468374207048604", + "2563009802018718360907591" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "34278148974348167282688", - "expectedQty": "34304127680989969252418", - "swapFee": "20566889384608900369", + "inputQty": "10734833205553997545472", + "expectedQty": "10762568915596965306926", + "swapFee": "6440899923332398527", "reserves": [ - "1229741228159763956485432", - "1490904754757555288625899" + "1145701046468374207048604", + "2552247233103121395600665" ], - "LPTokenSupply": "2718624575591090268347687" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "226639782403485699407872", - "expectedQty": "226287465805164902125484", - "reserves": [ - "1229741228159763956485432", - "1717544537161040988033771" - ] + "LPTokenSupply": "3694098958190349434353773" }, { "type": "redeemMasset", - "inputQty": "22428904071358826571366", + "inputQty": "11062752928575587038003", "expectedQtys": [ - "9360279221479769905261", - "13073235307571511845007" + "3428983085155663668779", + "7638652874083349236407" ], - "redemptionFee": "13457342442815295942", + "redemptionFee": "6637651757145352222", "reserves": [ - "1220380948938284186580171", - "1704471301853469476188764" + "1142272063383218543379825", + "2544608580229038046364258" ], - "LPTokenSupply": "2922484483059140625431399" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "186026864919086857453568", - "expectedQty": "185665411944470861926471", - "reserves": [ - "1220380948938284186580171", - "1890498166772556333642332" - ] + "LPTokenSupply": "3683036869026949561850992" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "58343415844078824194048", - "113641685618179857973248" + "1069017038576286336", + "1090006687330202240" ], - "expectedQty": "171806113231866780238837", - "swapFee": "103145555272283438206", + "expectedQty": "2159520572601651846", "reserves": [ - "1162037533094205362386123", - "1776856481154376475669084" + "1142273132400257119666161", + "2544609670235725376566498" ], - "LPTokenSupply": "2936250950771999652024646" + "LPTokenSupply": "3683039028547522163502838" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2231414244298775", - "expectedQty": "2228002663718749", - "swapFee": "1338848546579", + "type": "redeemBassets", + "inputQtys": [ + "17343010878303276", + "11122211003452562" + ], + "expectedQty": "28494083451751797", + "swapFee": "17106714099510", "reserves": [ - "1162037530866202698667374", - "1776856481154376475669084" + "1142273115057246241362885", + "2544609659113514373113936" ], - "LPTokenSupply": "2936250948540719292580528" + "LPTokenSupply": "3683039000038042669061481" }, { "type": "mintMulti", "inputQtys": [ - "1496692536352157990912", - "2743063748986735165440" + "3717478721441995685888", + "46716322831457046233088" ], - "expectedQty": "4235399290709145009132", + "expectedQty": "50298287907058066787031", "reserves": [ - "1163534223402554856658286", - "1779599544903363210834524" + "1145990593778688237048773", + "2591325981944971419347024" ], - "LPTokenSupply": "2940486347831428437589660" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "16159814059325356032", - "expectedQty": "16125931086321510495", - "reserves": [ - "1163534223402554856658286", - "1779615704717422536190556" - ] + "LPTokenSupply": "3733337287945100735848512" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "48066045628506120", - "outputIndex": 1, - "expectedQty": "48173343909907611", - "swapFee": "38488659809306", + "inputIndex": 1, + "inputQty": "52907295361505970618368", + "outputIndex": 0, + "expectedQty": "52511200295557434143906", + "swapFee": "0", "reserves": [ - "1163534271468600485164406", - "1779615656544078626282945" + "1093479393483130802904867", + "2644233277306477389965392" ], - "LPTokenSupply": "2940502473766363625081085", + "LPTokenSupply": "3733337287945100735848512", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "2812875075899875131392", - "expectedQty": "2817086888897576366894", - "swapFee": "1687725045539925078", + "inputQty": "4118151178736566796288", + "outputIndex": 0, + "expectedQty": "4085227151082157032297", + "swapFee": "0", "reserves": [ - "1163534271468600485164406", - "1776798569655181049916051" + "1089394166332048645872570", + "2648351428485213956761680" ], - "LPTokenSupply": "2937689767462968303942200" + "LPTokenSupply": "3733337287945100735848512", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "10882018343769434226688", - "90688848484359726956544" + "type": "redeemMasset", + "inputQty": "9603577552889784880332", + "expectedQtys": [ + "2800658849383896276493", + "6808489611651589870842" ], - "expectedQty": "101386280970998769299718", + "redemptionFee": "5762146531733870928", "reserves": [ - "1174416289812369919391094", - "1867487418139540776872595" + "1086593507482664749596077", + "2641542938873562366890838" ], - "LPTokenSupply": "3039076048433967073241918" + "LPTokenSupply": "3723734286606864124355272" }, { - "type": "redeemBassets", - "inputQtys": [ - "13285186934364608397312", - "15239230546400346374144" - ], - "expectedQty": "28505550993197604890533", - "swapFee": "17113598755171665933", + "type": "swap", + "inputIndex": 1, + "inputQty": "5905466659629092044800", + "outputIndex": 0, + "expectedQty": "5857698077702311851273", + "swapFee": "0", "reserves": [ - "1161131102878005310993782", - "1852248187593140430498451" + "1080735809404962437744804", + "2647448405533191458935638" ], - "LPTokenSupply": "3010555095201889813852044" + "LPTokenSupply": "3723734286606864124355272", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "18742659556927856443392", - "expectedQty": "18709285535342576916911", - "swapFee": "11245595734156713866", - "reserves": [ - "1142421817342662734076871", - "1852248187593140430498451" - ], - "LPTokenSupply": "2991813560204535373080038" - }, - { - "type": "mintMulti", - "inputQtys": [ - "4761123083766379577344", - "6565465036577359003648" - ], - "expectedQty": "11317332179963756593566", + "inputIndex": 1, + "inputQty": "272940996878349", + "expectedQty": "273753305516977", + "swapFee": "163764598127", "reserves": [ - "1147182940426429113654215", - "1858813652629717789502099" + "1080735809404962437744804", + "2647448405259438153418661" ], - "LPTokenSupply": "3003130892384499129673604" + "LPTokenSupply": "3723734286333939503936735" }, { "type": "mintMulti", "inputQtys": [ - "152862354002251296", - "258813280885079712" + "3515100611803629568", + "26444754021846560768" ], - "expectedQty": "411268254337586383", + "expectedQty": "29881793767399330729", "reserves": [ - "1147183093288783115905511", - "1858813911442998674581811" + "1080739324505574241374372", + "2647474850013459999979429" ], - "LPTokenSupply": "3003131303652753467259987" + "LPTokenSupply": "3723764168127706903267464" }, { "type": "swap", "inputIndex": 0, - "inputQty": "353911343421627695104", + "inputQty": "262729911663774782193664", "outputIndex": 1, - "expectedQty": "354872795490607038640", - "swapFee": "283474072233820000", + "expectedQty": "264121532486322185076166", + "swapFee": "210934236924829144746", "reserves": [ - "1147537004632204743600615", - "1858459038647508067543171" + "1343469236169349023568036", + "2383353317527137814903263" ], - "LPTokenSupply": "3003131332000160690641987", + "LPTokenSupply": "3723785261551399386181938", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "252567972537896672", - "expectedQty": "252875242745192166", + "inputQty": "54363980920088766185472", + "outputIndex": 1, + "expectedQty": "54540690196018680088525", + "swapFee": "43571209794038677427", "reserves": [ - "1147537257200177281497287", - "1858459038647508067543171" - ] + "1397833217089437789753508", + "2328812627331119134814738" + ], + "LPTokenSupply": "3723789618672378790049680", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "9819555643869295017984", - "expectedQty": "9831278750378951192872", + "inputQty": "1087501688882508857344", + "expectedQty": "1089220151521436646921", "reserves": [ - "1157356812844046576515271", - "1858459038647508067543171" + "1398920718778320298610852", + "2328812627331119134814738" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "123137922240083516194816", - "expectedQty": "122882345095547247289152", - "swapFee": "73882753344050109716", + "type": "redeemBassets", + "inputQtys": [ + "228244453841608990785536", + "166456299489717712322560" + ], + "expectedQty": "394737518278203137030646", + "swapFee": "236984701787994679025", "reserves": [ - "1034474467748499329226119", - "1858459038647508067543171" + "1170676264936711307825316", + "2162356327841401422492178" ], - "LPTokenSupply": "2889832329661033275843180" + "LPTokenSupply": "3329928034314087894454831" }, { "type": "redeemMasset", - "inputQty": "323665659625799942144", + "inputQty": "25817506136152243", "expectedQtys": [ - "115793211674856744907", - "208025376710873250317" + "9071009035989924", + "16755062331377967" ], - "redemptionFee": "194199395775479965", + "redemptionFee": "15490503681691", "reserves": [ - "1034358674536824472481212", - "1858251013270797194292854" + "1170676255865702271835392", + "2162356311086339091114211" ], - "LPTokenSupply": "2889508683421347053449032" + "LPTokenSupply": "3329928008498130808670757" }, { "type": "mintMulti", "inputQtys": [ - "453645493520888823808", - "1012711321699393208320" + "174079610929190207488", + "416229453721534398464" ], - "expectedQty": "1464469481878786694563", + "expectedQty": "589601756692070765813", "reserves": [ - "1034812320030345361305020", - "1859263724592496587501174" + "1170850335476631462042880", + "2162772540540060625512675" ], - "LPTokenSupply": "2890973152903225840143595" + "LPTokenSupply": "3330517610254822879436570" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "223586736581429805711360", - "expectedQty": "223859715661038914009690", + "type": "swap", + "inputIndex": 1, + "inputQty": "39735551484675370254336", + "outputIndex": 0, + "expectedQty": "39537169234172497196939", + "swapFee": "0", "reserves": [ - "1258399056611775167016380", - "1859263724592496587501174" - ] + "1131313166242458964845941", + "2202508092024735995767011" + ], + "LPTokenSupply": "3330517610254822879436570", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "242482350676347125760", - "338652943161755435008" - ], - "expectedQty": "580629562867860291757", - "swapFee": "348586889854628952", + "type": "redeem", + "inputIndex": 0, + "inputQty": "155789357197705347072", + "expectedQty": "155307870696355236447", + "swapFee": "93473614318623208", "reserves": [ - "1258156574261098819890620", - "1858925071649334832066166" + "1131157858371762609609494", + "2202508092024735995767011" ], - "LPTokenSupply": "3114251925273196024695470" + "LPTokenSupply": "3330361830244986605951818" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "137068689813684281671680", - "expectedQty": "136847824677222639746353", - "swapFee": "82241213888210569003", + "inputIndex": 1, + "inputQty": "837852185710547828736", + "expectedQty": "839686151974334441461", + "swapFee": "502711311426328697", "reserves": [ - "1121308749583876180144267", - "1858925071649334832066166" + "1131157858371762609609494", + "2201668405872761661325550" ], - "LPTokenSupply": "2977191459580900564080690" + "LPTokenSupply": "3329524028330407200755951" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "142281816830146290647040", - "expectedQty": "141956932865959187988778", - "swapFee": "85369090098087774388", + "inputQty": "25600820736330903322624", + "expectedQty": "25662705086552961893150", "reserves": [ - "979351816717916992155489", - "1858925071649334832066166" - ], - "LPTokenSupply": "2834918179659764082211088" + "1156758679108093512932118", + "2201668405872761661325550" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1702295639191872864256", - "1272235519092012875776" + "19536902551928230117376", + "39311091659310624669696" + ], + "expectedQty": "58787526705706166236937", + "swapFee": "35293692238766959918", + "reserves": [ + "1137221776556165282814742", + "2162357314213451036655854" ], - "expectedQty": "2974395161650205746009", + "LPTokenSupply": "3296367442388239106148236" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "77464586500739587637248", + "outputIndex": 1, + "expectedQty": "77753074104267499219184", + "swapFee": "62102063656036089084", "reserves": [ - "981054112357108865019745", - "1860197307168426844941942" + "1214686363056904870451990", + "2084604240109183537436670" ], - "LPTokenSupply": "2837892574821414287957097" + "LPTokenSupply": "3296373652594604709757144", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "131947659427242192", + "expectedQty": "132166737543929163", + "reserves": [ + "1214686495004564297694182", + "2084604240109183537436670" + ] }, { "type": "redeemBassets", "inputQtys": [ - "856127292934405888", - "833048382195983360" + "175735677687294", + "133477803760509" ], - "expectedQty": "1688543392027794268", - "swapFee": "1013734275782145", + "expectedQty": "309189353529624", + "swapFee": "185624987110", "reserves": [ - "981053256229815930613857", - "1860196474120044648958582" + "1214686494828828620006888", + "2084604239975705733676161" ], - "LPTokenSupply": "2837890885365661411958897" + "LPTokenSupply": "3296373784451985837668283" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "12288833441532529868800", - "expectedQty": "12317143600776872264704", - "swapFee": "7373300064919517921", + "inputQty": "295261378674736693248", + "outputIndex": 0, + "expectedQty": "294073784394867132802", + "swapFee": "0", "reserves": [ - "981053256229815930613857", - "1847879330519267776693878" + "1214392421044433752874086", + "2084899501354380470369409" ], - "LPTokenSupply": "2825602789254135374041889" + "LPTokenSupply": "3296373784451985837668283", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "54207558005569264025", + "inputQty": "3419846102573783397171", "expectedQtys": [ - "18809647695344902183", - "35429227689587347920" + "1259124006679085747719", + "2161695814447530418744" ], - "redemptionFee": "32524534803341558", + "redemptionFee": "2051907661544270038", "reserves": [ - "981034446582120585711674", - "1847843901291578189345958" + "1213133297037754667126367", + "2082737805539932939950665" ], - "LPTokenSupply": "2825548584948583285112019" + "LPTokenSupply": "3292954143540178208698115" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "65058129516941746896896", - "expectedQty": "65177431922502713326443", + "inputQty": "746485305195978817536", + "expectedQty": "744798216536801644484", + "swapFee": "447891183117587290", "reserves": [ - "1046092576099062332608570", - "1847843901291578189345958" - ] + "1212388498821217865481883", + "2082737805539932939950665" + ], + "LPTokenSupply": "3292207703024100541639308" }, { - "type": "mintMulti", - "inputQtys": [ - "15390788051089783521280", - "19337732929451779424256" - ], - "expectedQty": "34702127933244950445867", + "type": "redeem", + "inputIndex": 0, + "inputQty": "11892819835452259303424", + "expectedQty": "11865581037214331433142", + "swapFee": "7135691901271355582", "reserves": [ - "1061483364150152116129850", - "1867181634221029968770214" + "1200522917784003534048741", + "2082737805539932939950665" ], - "LPTokenSupply": "2925428144804330948884329" + "LPTokenSupply": "3280315596757838409471442" }, { - "type": "mintMulti", - "inputQtys": [ - "16355540738996682358784", - "9570348446967520034816" + "type": "redeemMasset", + "inputQty": "50207842042806724565401", + "expectedQtys": [ + "18363934154808950148772", + "31858833643314097449626" ], - "expectedQty": "25926522808308165796567", + "redemptionFee": "30124705225684034739", "reserves": [ - "1077838904889148798488634", - "1876751982667997488805030" + "1182158983629194583899969", + "2050878971896618842501039" ], - "LPTokenSupply": "2951354667612639114680896" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "346976014715992248680448", - "expectedQty": "345962485554909232951352", - "reserves": [ - "1077838904889148798488634", - "2223727997383989737485478" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "540193865258416340992", - "expectedQty": "538453082831738069112", - "reserves": [ - "1077838904889148798488634", - "2224268191249248153826470" - ] + "LPTokenSupply": "3230110767185554253309514" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "461142148314551746560", - "outputIndex": 0, - "expectedQty": "458413476257684270242", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "50913779537654686154752", + "outputIndex": 1, + "expectedQty": "51067833704458007168547", + "swapFee": "40795779679204841373", "reserves": [ - "1077380491412891114218392", - "2224729333397562705573030" + "1233072763166849270054721", + "1999811138192160835332492" ], - "LPTokenSupply": "3297855606250380085701360", + "LPTokenSupply": "3230114846763522173793651", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "594205843043336847360", - "expectedQty": "592289009233649702882", + "inputIndex": 0, + "inputQty": "298825009039112581152768", + "expectedQty": "299056544602065179264344", "reserves": [ - "1077380491412891114218392", - "2225323539240606042420390" + "1531897772205961851207489", + "1999811138192160835332492" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1312954874063121809408", - "292352848896699498496" - ], - "expectedQty": "1607932334855737974588", - "swapFee": "965338604075888317", - "reserves": [ - "1076067536538827992408984", - "2225031186391709342921894" - ], - "LPTokenSupply": "3296839094120014329130167" - }, - { - "type": "redeemMasset", - "inputQty": "10008639566843889057792", - "expectedQtys": [ - "3264796925856049830960", - "6750761202806134068817" - ], - "redemptionFee": "6005183740106333434", + "type": "mint", + "inputIndex": 1, + "inputQty": "184632853387294191648768", + "expectedQty": "184328760391893823719453", "reserves": [ - "1072802739612971942578024", - "2218280425188903208853077" - ], - "LPTokenSupply": "3286831055071544450705718" + "1531897772205961851207489", + "2184443991579455026981260" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3164622101838060584960", - "expectedQty": "3154384206874336049480", + "inputIndex": 0, + "inputQty": "254586869420834", + "expectedQty": "254762325209268", "reserves": [ - "1072802739612971942578024", - "2221445047290741269438037" + "1531897772460548720628323", + "2184443991579455026981260" ] }, { - "type": "mintMulti", - "inputQtys": [ - "51373625480864937803776", - "17852518620877945831424" + "type": "redeemMasset", + "inputQty": "1591025185719243820236", + "expectedQtys": [ + "655937919875746997955", + "935349390592969382687" ], - "expectedQty": "69302250699773072931831", + "redemptionFee": "954615111431546292", "reserves": [ - "1124176365093836880381800", - "2239297565911619215269461" + "1531241834540672973630368", + "2183508642188862057598573" ], - "LPTokenSupply": "3359287689978191859687029" + "LPTokenSupply": "3711909222288035401321109" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1304939644116115390464", - "17506953719160978276352" + "2466306778427860975616", + "7932668508147324813312" ], - "expectedQty": "18761114376197558544429", - "swapFee": "11263426681727571669", + "expectedQty": "10386505463084769585525", "reserves": [ - "1122871425449720764991336", - "2221790612192458236993109" + "1533708141319100834605984", + "2191441310697009382411885" ], - "LPTokenSupply": "3340516438517980746328096" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "151415224885014566010880", - "expectedQty": "151709712735239473702051", - "reserves": [ - "1274286650334735331002216", - "2221790612192458236993109" - ] + "LPTokenSupply": "3722295727751120170906634" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "536380203650647936", - "expectedQty": "537468014446988112", - "swapFee": "321828122190388", + "inputQty": "12502027015266232172544", + "expectedQty": "12516827039787073652896", + "swapFee": "7501216209159739303", "reserves": [ - "1274286650334735331002216", - "2221790074724443790004997" + "1533708141319100834605984", + "2178924483657222308758989" ], - "LPTokenSupply": "3492225614905199381601249" + "LPTokenSupply": "3709794450857474854708020" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "74034964448505583632384", - "expectedQty": "73862584059443373345828", - "swapFee": "44420978669103350179", - "reserves": [ - "1200424066275291957656388", - "2221790074724443790004997" - ], - "LPTokenSupply": "3418195092554560708303882" - }, - { - "type": "mintMulti", - "inputQtys": [ - "34021881658257494016", - "2648832586276179968" - ], - "expectedQty": "36728227079726480088", + "inputQty": "240478454400722501632", + "expectedQty": "240173072406466193170", + "swapFee": "144287072640433500", "reserves": [ - "1200458088156950215150404", - "2221792723557030066184965" + "1533467968246694368412814", + "2178924483657222308758989" ], - "LPTokenSupply": "3418231820781640434783970" + "LPTokenSupply": "3709553986831781396249738" }, { "type": "redeemBassets", "inputQtys": [ - "2814288443999447416832", - "4873676137932288688128" + "10227742410281672769536", + "5720780765334895329280" ], - "expectedQty": "7679494686093080499753", - "swapFee": "4610463089509554032", + "expectedQty": "15945289180922099198767", + "swapFee": "9572917258908604682", "reserves": [ - "1197643799712950767733572", - "2216919047419097777496837" + "1523240225836412695643278", + "2173203702891887413429709" ], - "LPTokenSupply": "3410548176678766795685587" + "LPTokenSupply": "3693600082025326279306756" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "99549003426368716800", - "3063693089406606336" + "503154614923512578048", + "537443623897286705152" ], - "expectedQty": "102794289096367661247", - "swapFee": "61713601618791871", + "expectedQty": "1039981796534993055540", "reserves": [ - "1197544250709524399016772", - "2216915983726008370890501" + "1523743380451336208221326", + "2173741146515784700134861" ], - "LPTokenSupply": "3410445326847428971111655" + "LPTokenSupply": "3694640063821861272362296" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "304036743163163388674048", - "expectedQty": "302951496166217108515094", - "swapFee": "182422045897898033204", + "inputQty": "1499028621774528446464", + "expectedQty": "1497097848444442437713", + "swapFee": "899417173064717067", "reserves": [ - "894592754543307290501678", - "2216915983726008370890501" + "1522246282602891765783613", + "2173741146515784700134861" ], - "LPTokenSupply": "3106426825888855372240927" + "LPTokenSupply": "3693141125141804050387538" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "19339821363309633536", - "expectedQty": "19406512294053655984", - "swapFee": "11603892817985780", - "reserves": [ - "894592754543307290501678", - "2216896577213714317234517" + "type": "mintMulti", + "inputQtys": [ + "3296779237859142656", + "4530650884018364928" ], - "LPTokenSupply": "3106407487227881344405969" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "136501304218968196644864", - "expectedQty": "135704391889890214400677", - "swapFee": "81900782531380917986", + "expectedQty": "7821583355927991780", "reserves": [ - "758888362653417076101001", - "2216896577213714317234517" + "1522249579382129624926269", + "2173745677166668718499789" ], - "LPTokenSupply": "2969914373087166285852903" + "LPTokenSupply": "3693148946725159978379318" }, { "type": "mint", "inputIndex": 1, - "inputQty": "390193235782697587048448", - "expectedQty": "388141097628521620672346", + "inputQty": "2438886312720836096", + "expectedQty": "2434512803042285476", "reserves": [ - "758888362653417076101001", - "2607089812996411904282965" + "1522249579382129624926269", + "2173748116052981439335885" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "104989806000753443078144", - "expectedQty": "105820141995439640985363", + "type": "redeemBassets", + "inputQtys": [ + "1133476083488039632896", + "4551624771705472811008" + ], + "expectedQty": "5677728103237300221321", + "swapFee": "3408682071185091187", "reserves": [ - "863878168654170519179145", - "2607089812996411904282965" - ] + "1521116103298641585293373", + "2169196491281275966524877" + ], + "LPTokenSupply": "3687470585320861653861403" }, { - "type": "redeemMasset", - "inputQty": "1447619503318656404684", - "expectedQtys": [ - "360814499434494906619", - "1088898689641090540620" + "type": "mintMulti", + "inputQtys": [ + "157479442414331920384", + "9713117598221064192" ], - "redemptionFee": "868571701991193842", + "expectedQty": "167282852916426470579", "reserves": [ - "863517354154736024272526", - "2606000914306770813742345" + "1521273582741055917213757", + "2169206204398874187589069" ], - "LPTokenSupply": "3462428080064979090225312" + "LPTokenSupply": "3687637868173778080331982" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "13719402858828040", - "5473798278354655" + "229879099512318689280", + "2509470636186957512704" ], - "expectedQty": "19259791308999204", - "swapFee": "11562812472883", + "expectedQty": "2735012750420937261810", "reserves": [ - "863517340435333165444486", - "2606000908832972535387690" + "1521503461840568235903037", + "2171715675035061145101773" ], - "LPTokenSupply": "3462428060794781250000512" + "LPTokenSupply": "3690372880924199017593792" }, { - "type": "redeemMasset", - "inputQty": "7149687728310927", - "expectedQtys": [ - "1782037026085850", - "5377992881083913" + "type": "redeemBassets", + "inputQtys": [ + "556105023749627772928", + "24841890652464910336" ], - "redemptionFee": "4289812636986", + "expectedQty": "581285449996438201980", + "swapFee": "348980658392898660", "reserves": [ - "863517338653296139358636", - "2606000903454979654303777" + "1520947356816818608130109", + "2171690833144408680191437" ], - "LPTokenSupply": "3462428053645522502953283" + "LPTokenSupply": "3689791281391610025783017" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "42315040556473221382144", - "expectedQty": "42499887107032036970168", - "swapFee": "25389024333883932829", + "inputQty": "248226900837163866259456", + "outputIndex": 0, + "expectedQty": "247316113569241450234730", + "swapFee": "0", "reserves": [ - "863517338653296139358636", - "2563501016347947617333609" + "1273631243247577157895379", + "2419917733981572546450893" ], - "LPTokenSupply": "3420115551991482669964421" + "LPTokenSupply": "3689791281391610025783017", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "354397512538641216", - "771764834274742784" + "136259785472445", + "1544364728579800" ], - "expectedQty": "1124706186808277310", + "expectedQty": "1676688163442292", "reserves": [ - "863517693050808677999852", - "2563501788112781892076393" + "1273631243383836943367824", + "2419917735525937275030693" ], - "LPTokenSupply": "3420116676697669478241731" + "LPTokenSupply": "3689791283068298189225309" }, { "type": "mint", "inputIndex": 1, - "inputQty": "90311236698848695943168", - "expectedQty": "89859645796571669586655", + "inputQty": "225627137071458679783424", + "expectedQty": "224969457188728711135894", "reserves": [ - "863517693050808677999852", - "2653813024811630588019561" + "1273631243383836943367824", + "2645544872597395954814117" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7687209528714615324672", - "3410570214559392989184" + "9833356544804346920960", + "9515338424291648602112" + ], + "expectedQty": "19348108587811828540103", + "reserves": [ + "1283464599928641290288784", + "2655060211021687603416229" ], - "expectedQty": "11135586072932173232049", - "swapFee": "6685362861476189653", + "LPTokenSupply": "3934108848844838728901306" + }, + { + "type": "redeemMasset", + "inputQty": "9451296010028629308211", + "expectedQtys": [ + "3081543006510062988351", + "6374684759978500983509" + ], + "redemptionFee": "5670777606017177584", "reserves": [ - "855830483522094062675180", - "2650402454597071195030377" + "1280383056922131227300433", + "2648685526261709102432720" ], - "LPTokenSupply": "3498834719594733646025648" + "LPTokenSupply": "3924658119912570701310853" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1162177874265006014464", - "expectedQty": "1170585095318883797454", + "inputQty": "16639030048198735429632", + "expectedQty": "16686353106585029346324", "reserves": [ - "856992661396359068689644", - "2650402454597071195030377" + "1297022086970329962730065", + "2648685526261709102432720" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "10964400936206794227712", - "expectedQty": "10908103790925077495452", + "inputQty": "1568422618529806942208", + "expectedQty": "1563691126272201612208", "reserves": [ - "856992661396359068689644", - "2661366855533277989258089" + "1297022086970329962730065", + "2650253948880238909374928" ] }, { "type": "mintMulti", "inputQtys": [ - "9847574786312526364672", - "746279371926996910080" + "9177025585827792551936", + "29439214215879882440704" ], - "expectedQty": "10660935244430482903328", + "expectedQty": "38553001725134974554272", "reserves": [ - "866840236182671595054316", - "2662113134905204986168169" + "1306199112556157755282001", + "2679693163096118791815632" ], - "LPTokenSupply": "3521574343725408090221882" + "LPTokenSupply": "3981461165870562906823657" }, { - "type": "redeemBassets", - "inputQtys": [ - "2704929633938464833536", - "5507986400075925422080" - ], - "expectedQty": "8204136582113378027800", - "swapFee": "4925437211594983806", + "type": "mint", + "inputIndex": 1, + "inputQty": "445157076389488492544", + "expectedQty": "443806828199315061264", "reserves": [ - "864135306548733130220780", - "2656605148505129060746089" - ], - "LPTokenSupply": "3513365774249804276708655" + "1306199112556157755282001", + "2680138320172508280308176" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "256435115013436320", - "expectedQty": "257593389817280782", - "swapFee": "153861069008061", + "inputQty": "42386744808939716608", + "expectedQty": "42258163009989696898", "reserves": [ - "864135306548733130220780", - "2656604890911739243465307" - ], - "LPTokenSupply": "3513365517830075370173141" + "1306199112556157755282001", + "2680180706917317220024784" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "4481269138413930938368", - "outputIndex": 1, - "expectedQty": "4532351062258900917748", - "swapFee": "3610413078775620190", + "inputQty": "70563153845797007654912", + "expectedQty": "70306389874140492942421", + "swapFee": "42337892307478204592", "reserves": [ - "868616575687147061159148", - "2652072539849480342547559" + "1235892722682017262339580", + "2680180706917317220024784" ], - "LPTokenSupply": "3513365878871383247735160", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3911388310805205951747366" }, { - "type": "redeemBassets", - "inputQtys": [ - "2663479424578305392640", - "1257625925540871667712" + "type": "redeemMasset", + "inputQty": "613592977613162283008", + "expectedQtys": [ + "193762427670456989592", + "420196923921394696512" ], - "expectedQty": "3933474497743084415305", - "swapFee": "2361501599605614017", + "redemptionFee": "368155786567897369", "reserves": [ - "865953096262568755766508", - "2650814913923939470879847" + "1235698960254346805349988", + "2679760509993395825328272" ], - "LPTokenSupply": "3509430279022200518267238" + "LPTokenSupply": "3910774754643171446254094" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "410066483722041950208", - "609538823664823828480" + "9891537885549167640576", + "6997086347837954850816" ], - "expectedQty": "1019406042164373604638", + "expectedQty": "16898340738642485380774", + "swapFee": "10145091498084341833", "reserves": [ - "866363162746290797716716", - "2651424452747604294708327" + "1225807422368797637709412", + "2672763423645557870477456" ], - "LPTokenSupply": "3510449685064364891871876" + "LPTokenSupply": "3893867283322180684965669" }, { - "type": "mintMulti", - "inputQtys": [ - "550435364991433375744", - "465461073117271293952" - ], - "expectedQty": "1017415931923919101227", + "type": "swap", + "inputIndex": 1, + "inputQty": "159694756133115252441088", + "outputIndex": 0, + "expectedQty": "158433779030708720826275", + "swapFee": "0", "reserves": [ - "866913598111282231092460", - "2651889913820721566002279" + "1067373643338088916883137", + "2832458179778673122918544" ], - "LPTokenSupply": "3511467100996288810973103" + "LPTokenSupply": "3893867283322180684965669", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "292506104951106233696256", - "expectedQty": "293973936082527355253228", + "inputIndex": 1, + "inputQty": "7460178045904726016", + "expectedQty": "7429487387494698271", "reserves": [ - "1159419703062388464788716", - "2651889913820721566002279" + "1067373643338088916883137", + "2832465639956719027644560" ] }, { "type": "redeemBassets", "inputQtys": [ - "48446832843260518400", - "63024860518572883968" - ], - "expectedQty": "111404882632431492352", - "swapFee": "66883059415107960", - "reserves": [ - "1159371256229545204270316", - "2651826888960202993118311" - ], - "LPTokenSupply": "3805329572001430261136814" - }, - { - "type": "redeemMasset", - "inputQty": "208121322183941239603", - "expectedQtys": [ - "63370359980270876604", - "144946861202411949887" - ], - "redemptionFee": "124872793310364743", - "reserves": [ - "1159307885869564933393712", - "2651681942099000581168424" - ], - "LPTokenSupply": "3805121463166525650933685" - }, - { - "type": "redeemMasset", - "inputQty": "625543619848815352217", - "expectedQtys": [ - "190470275356763054348", - "435662170357200943731" - ], - "redemptionFee": "375326171909289211", - "reserves": [ - "1159117415594208170339364", - "2651246279928643380224693" - ], - "LPTokenSupply": "3804495957079294026510389" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1459195782181911003136", - "964052054109077766144" + "9182792531317548384256", + "192371290921643026677760" ], - "expectedQty": "2424727627904047007449", - "swapFee": "1455710002744074649", + "expectedQty": "200834765654756472815582", + "swapFee": "120573203314842789362", "reserves": [ - "1157658219812026259336228", - "2650282227874534302458549" + "1058190850806771368498881", + "2640094349035076000966800" ], - "LPTokenSupply": "3802069919312387509835754" + "LPTokenSupply": "3692931431271828348337931" }, { - "type": "redeemBassets", - "inputQtys": [ - "96892361187590290800640", - "4085429218774964764672" - ], - "expectedQty": "101339830751196280460006", - "swapFee": "60840402692333168176", + "type": "swap", + "inputIndex": 1, + "inputQty": "219996761716792950784", + "outputIndex": 0, + "expectedQty": "218144526061977335277", + "swapFee": "0", "reserves": [ - "1060765858624435968535588", - "2646196798655759337693877" + "1057972706280709391163604", + "2640314345796792793917584" ], - "LPTokenSupply": "3700675332198768129524388" + "LPTokenSupply": "3692931431271828348337931", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "144289999011714816", - "169832253135958944" - ], - "expectedQty": "314049274840662137", - "swapFee": "188542690518708", - "reserves": [ - "1060765714334436956820772", - "2646196628823506201734933" - ], - "LPTokenSupply": "3700675017979804867395412" - }, - { - "type": "mintMulti", - "inputQtys": [ - "689273858633380659200", - "173299886143483314176" + "1237775867870485413888", + "8753939587096632098816" ], - "expectedQty": "864848250784397662499", + "expectedQty": "9963562307183304118632", + "swapFee": "5981726420162079719", "reserves": [ - "1061454988193070337479972", - "2646369928709649685049109" + "1056734930412838905749716", + "2631560406209696161818768" ], - "LPTokenSupply": "3701539866230589265057911" + "LPTokenSupply": "3682962485410866898347550" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1930214309802540007424", - "expectedQty": "1937018262258612967307", - "swapFee": "1158128585881524004", + "inputQty": "624549165208076288000", + "expectedQty": "626593036080751760382", + "swapFee": "374729499124845772", "reserves": [ - "1061454988193070337479972", - "2644432910447391072081802" + "1056734930412838905749716", + "2630933813173615410058386" ], - "LPTokenSupply": "3699609767733645313202887" + "LPTokenSupply": "3682337973718608734544127" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "74872804563145075982336", - "expectedQty": "74560528984403315737746", + "type": "swap", + "inputIndex": 0, + "inputQty": "923135340494397440", + "outputIndex": 1, + "expectedQty": "930197053593049543", + "swapFee": "741879077086509", "reserves": [ - "1061454988193070337479972", - "2719305715010536148064138" - ] + "1056735853548179400147156", + "2630932882976561817008843" + ], + "LPTokenSupply": "3682337973792796642252777", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "159956862699982", + "inputQty": "1401947351604769744486", "expectedQtys": [ - "44959586945580", - "115180448615870" + "402081272535645832394", + "1001053231979566984017" ], - "redemptionFee": "95974117619", + "redemptionFee": "841168410962861846", "reserves": [ - "1061454988148110750534392", - "2719305714895355699448268" + "1056333772275643754314762", + "2629931829744582250024826" ], - "LPTokenSupply": "3774170296558101363652412" + "LPTokenSupply": "3680936110558032968794475" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "10408421920125510221824", - "expectedQty": "10456072296368415195019", + "inputIndex": 1, + "inputQty": "227796685040760783896576", + "expectedQty": "226874705360673404546891", "reserves": [ - "1071863410068236260756216", - "2719305714895355699448268" + "1056333772275643754314762", + "2857728514785343033921402" ] }, - { - "type": "redeemMasset", - "inputQty": "3391293995997774", - "expectedQtys": [ - "959889455567428", - "2435229020483244" - ], - "redemptionFee": "2034776397598", - "reserves": [ - "1071863409108346805188788", - "2719305712460126678965024" - ], - "LPTokenSupply": "3784626365463379260489416" - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "463460192559255275962368", - "expectedQty": "464951741681820452007665", - "swapFee": "278076115535553165577", + "inputQty": "44282738685352966356992", + "expectedQty": "44442732870802663860900", + "swapFee": "26569643211211779814", "reserves": [ - "1071863409108346805188788", - "2254353970778306226957359" + "1056333772275643754314762", + "2813285781914540370060502" ], - "LPTokenSupply": "3321193980515677539843605" + "LPTokenSupply": "3863530734197674528162355" }, { - "type": "redeemBassets", - "inputQtys": [ - "61288311318026543104", - "775291440813456490496" + "type": "redeemMasset", + "inputQty": "1555584348344587753881", + "expectedQtys": [ + "425059476937526063370", + "1132041608742897743554" ], - "expectedQty": "834035329567024492208", - "swapFee": "500721630718645882", + "redemptionFee": "933350609006752652", "reserves": [ - "1071802120797028778645684", - "2253578679337492770466863" + "1055908712798706228251392", + "2812153740305797472316948" ], - "LPTokenSupply": "3320359494536642868570102" + "LPTokenSupply": "3861975243184390841083739" }, { "type": "swap", "inputIndex": 1, - "inputQty": "2911398483537759305728", + "inputQty": "10278467726568157184", "outputIndex": 0, - "expectedQty": "2893477579997384579253", + "expectedQty": "10181307123580797297", "swapFee": "0", "reserves": [ - "1068908643217031394066431", - "2256490077821030529772591" + "1055898531491582647454095", + "2812164018773524040474132" ], - "LPTokenSupply": "3320359494536642868570102", + "LPTokenSupply": "3861975243184390841083739", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "65970994092742", - "expectedQty": "65754609745557", - "swapFee": "39582596455", + "inputIndex": 1, + "inputQty": "6524901631817709256704", + "expectedQty": "6548244367797155709919", + "swapFee": "3914940979090625554", "reserves": [ - "1068908643151276784320874", - "2256490077821030529772591" + "1055898531491582647454095", + "2805615774405726884764213" ], - "LPTokenSupply": "3320359494470675832737005" + "LPTokenSupply": "3855450733046671040889590" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "23646912698508558336", - "95075854837976350720" + "195224729984987891236864", + "72591255099620557062144" ], - "expectedQty": "118452928361726952515", - "swapFee": "71114425672439635", + "expectedQty": "268411269663809469035896", "reserves": [ - "1068884996238578275762538", - "2256395001966192553421871" + "1251123261476570538690959", + "2878207029505347441826357" ], - "LPTokenSupply": "3320240977539331000588817" + "LPTokenSupply": "4123862002710480509925486" }, { - "type": "mintMulti", - "inputQtys": [ - "2753868729526114582528", - "1078949825589031206912" - ], - "expectedQty": "3836419915419354944914", + "type": "mint", + "inputIndex": 0, + "inputQty": "2530425793098147168256", + "expectedQty": "2539909818630017104016", "reserves": [ - "1071638864968104390345066", - "2257473951791781584628783" - ], - "LPTokenSupply": "3324077397454750355533731" + "1253653687269668685859215", + "2878207029505347441826357" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "22672109602142527946752", - "expectedQty": "22737620937194578688663", - "swapFee": "13603265761285516768", + "inputQty": "426001548807010957393920", + "expectedQty": "427120148027753719375855", + "swapFee": "255600929284206574436", "reserves": [ - "1071638864968104390345066", - "2234736330854587005940120" + "1253653687269668685859215", + "2451086881477593722450502" ], - "LPTokenSupply": "3301406648179183956138655" + "LPTokenSupply": "3700425923815027990293025" }, { "type": "redeemMasset", - "inputQty": "2145318363689043", + "inputQty": "1403697671652365", "expectedQtys": [ - "695953990885794", - "1451303903654165" + "475268238746026", + "929222924163716" ], - "redemptionFee": "1287191018213", + "redemptionFee": "842218602991", "reserves": [ - "1071638864272150399459272", - "2234736329403283102285955" + "1253653686794400447113189", + "2451086880548370798286786" ], - "LPTokenSupply": "3301406646033994311551433" + "LPTokenSupply": "3700425922411414540500959" }, { "type": "mintMulti", "inputQtys": [ - "293164583544282316800", - "403415231739724824576" + "26258247790647027171328", + "6788494022963850379264" + ], + "expectedQty": "33087090517112668849990", + "reserves": [ + "1279911934585047474284517", + "2457875374571334648666050" + ], + "LPTokenSupply": "3733513012928527209350949" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "4483561623216568401920", + "25766509721704707653632" ], - "expectedQty": "695940787709816536015", + "expectedQty": "30185535089011471112637", + "swapFee": "18122194370028900007", "reserves": [ - "1071932028855694681776072", - "2235139744635022827110531" + "1275428372961830905882597", + "2432108864849629941012418" ], - "LPTokenSupply": "3302102586821704128087448" + "LPTokenSupply": "3703311167864582712228304" }, { "type": "swap", "inputIndex": 0, - "inputQty": "297358824902186831446016", + "inputQty": "81969085169199584", "outputIndex": 1, - "expectedQty": "298332575627997540556719", - "swapFee": "238291126800908932705", + "expectedQty": "82319153413627965", + "swapFee": "65718193905494", "reserves": [ - "1369290853757881513222088", - "1936807169007025286553812" + "1275428454930916075082181", + "2432108782530476527384453" ], - "LPTokenSupply": "3302126415934384218980718", + "LPTokenSupply": "3703311167871154531618853", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "113172657425782464", - "expectedQty": "112923733380101685", + "type": "mintMulti", + "inputQtys": [ + "2860916113292420186112", + "6955957587032299012096" + ], + "expectedQty": "9803070212051364573501", "reserves": [ - "1369290853757881513222088", - "1936807282179682712336276" - ] + "1278289371044208495268293", + "2439064740117508826396549" + ], + "LPTokenSupply": "3713114238083205896192354" + }, + { + "type": "mintMulti", + "inputQtys": [ + "10944064856995903045632", + "19769968231419811463168" + ], + "expectedQty": "30680938431185136455861", + "reserves": [ + "1289233435901204398313925", + "2458834708348928637859717" + ], + "LPTokenSupply": "3743795176514391032648215" }, { "type": "mint", "inputIndex": 1, - "inputQty": "195230626185583135817728", - "expectedQty": "194770850089063303334668", + "inputQty": "1588890704004711710720", + "expectedQty": "1584310953480338393910", "reserves": [ - "1369290853757881513222088", - "2132037908365265848154004" + "1289233435901204398313925", + "2460423599052933349570437" ] }, { - "type": "redeemMasset", - "inputQty": "37548214099783782", - "expectedQtys": [ - "14694047870962048", - "22879191080731843" + "type": "redeemBassets", + "inputQtys": [ + "470599796933515", + "1046828768157701" ], - "redemptionFee": "22528928459870", + "expectedQty": "1515438331802847", + "swapFee": "909808884412", "reserves": [ - "1369290839063833642260040", - "2132037885486074767422161" + "1289233435430604601380410", + "2460423598006104581412736" ], - "LPTokenSupply": "3496897341401219695479276" + "LPTokenSupply": "3745379485951614211243306" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "188823495806287478784", - "expectedQty": "188584282966259026605", - "swapFee": "113294097483772487", + "inputIndex": 1, + "inputQty": "171794459177715138560", + "expectedQty": "172187867831882235332", + "swapFee": "103076675506629083", "reserves": [ - "1369102254780867383233435", - "2132037885486074767422161" + "1289233435430604601380410", + "2460251410138272699177404" ], - "LPTokenSupply": "3496708529234823156377740" + "LPTokenSupply": "3745207701800104046767654" }, { - "type": "redeemMasset", - "inputQty": "50490232331667845939", - "expectedQtys": [ - "19757098590729881512", - "30766790833648617191" - ], - "redemptionFee": "30294139399000707", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4398291183415911424", + "expectedQty": "4386070280031573673", + "swapFee": "2638974710049546", "reserves": [ - "1369082497682276653351923", - "2132007118695241118804970" + "1289229049360324569806737", + "2460251410138272699177404" ], - "LPTokenSupply": "3496658042031905428431871" + "LPTokenSupply": "3745203303772818101861184" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2724935977219957719040", - "expectedQty": "2730141335233338629377", - "swapFee": "1634961586331974631", + "type": "mint", + "inputIndex": 0, + "inputQty": "3538615660743880", + "expectedQty": "3546346256008495", "reserves": [ - "1369082497682276653351923", - "2129276977360007780175593" - ], - "LPTokenSupply": "3493933269550844103910294" + "1289229052898940230550617", + "2460251410138272699177404" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "40142201222428688384", - "expectedQty": "40218815300883203033", - "swapFee": "24085320733457213", + "inputQty": "40048739672194334720", + "expectedQty": "40140446394504793976", + "swapFee": "24029243803316600", "reserves": [ - "1369082497682276653351923", - "2129236758544706896972560" + "1289229052898940230550617", + "2460211269691878194383428" ], - "LPTokenSupply": "3493893129758153748567631" + "LPTokenSupply": "3745163260982416543866619" }, { "type": "mintMulti", "inputQtys": [ - "25826388555567063040", - "16582582739572393984" + "519416178342676922368", + "429120174584146100224" ], - "expectedQty": "42384523543310797689", + "expectedQty": "948433535695455974631", "reserves": [ - "1369108324070832220414963", - "2129253341127446469366544" + "1289748469077282907472985", + "2460640389866462340483652" ], - "LPTokenSupply": "3493935514281697059365320" + "LPTokenSupply": "3746111694518111999841250" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3591637849869549305856", - "743319750971876311040" + "13640306410175371264", + "42101865494508978176" ], - "expectedQty": "4335488377655630403265", - "swapFee": "2602854739437040466", + "expectedQty": "55650592169656210222", "reserves": [ - "1365516686220962671109107", - "2128510021376474593055504" + "1289762109383693082844249", + "2460682491731956849461828" ], - "LPTokenSupply": "3489597683334775935625634" + "LPTokenSupply": "3746167345110281656051472" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "13976965756689989632", - "outputIndex": 1, - "expectedQty": "14010356859697924668", - "swapFee": "11189084247900233", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1070966570562328704", + "expectedQty": "1073418067633673688", + "swapFee": "642579942337397", "reserves": [ - "1365530663186719361098739", - "2128496011019614895130836" + "1289762109383693082844249", + "2460681418313889215788140" ], - "LPTokenSupply": "3489597684453684360415657", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3746166274207969087956507" }, { "type": "redeemMasset", - "inputQty": "611259063138056037990", + "inputQty": "1333830462806811238", "expectedQtys": [ - "239051103737788128145", - "372616547143872857460" - ], - "redemptionFee": "366755437882833622", - "reserves": [ - "1365291612082981572970594", - "2128123394472471022273376" - ], - "LPTokenSupply": "3488986462066090092661029" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "204749708953299714048", - "135042967927373758464" + "458947006360169822", + "875605169608291359" ], - "expectedQty": "339591011974600768111", - "swapFee": "203876933344767321", + "redemptionFee": "800298277684086", "reserves": [ - "1365086862374028273256546", - "2127988351504543648514912" + "1289761650436686722674427", + "2460680542708719607496781" ], - "LPTokenSupply": "3488646687564875481602328" + "LPTokenSupply": "3746164940457536108913677" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "33194148639135744", - "expectedQty": "33151953477062887", - "swapFee": "19916489183481", + "type": "swap", + "inputIndex": 1, + "inputQty": "2403567596024004", + "outputIndex": 0, + "expectedQty": "2391418973340084", + "swapFee": "0", "reserves": [ - "1365086829222074796193659", - "2127988351504543648514912" + "1289761648045267749334343", + "2460680545112287203520785" ], - "LPTokenSupply": "3488646654372718491384932" + "LPTokenSupply": "3746164940457536108913677", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "44229544297614620491776", - "11244748186809607913472" + "369421562693910003712", + "352807921885111517184" ], - "expectedQty": "55478381458220420223198", - "swapFee": "33307013082781921286", + "expectedQty": "722018887037581873621", "reserves": [ - "1320857284924460175701883", - "2116743603317734040601440" + "1290131069607961659338055", + "2461033353034172315037969" ], - "LPTokenSupply": "3433138296602723567432575" + "LPTokenSupply": "3746886959344573690787298" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "87642884042441380331520", - "80354287581084868673536" + "35697197746656071680", + "375275157982251450368" ], - "expectedQty": "167860983375276362649536", - "swapFee": "100777056258921170291", + "expectedQty": "409968658776925527666", "reserves": [ - "1233214400882018795370363", - "2036389315736649171927904" + "1290166766805708315409735", + "2461408628192154566488337" ], - "LPTokenSupply": "3265186613876814175729776" + "LPTokenSupply": "3747296928003350616314964" }, { - "type": "mintMulti", - "inputQtys": [ - "20413145996872709570560", - "14564715495697036607488" - ], - "expectedQty": "34956866269056113755016", + "type": "mint", + "inputIndex": 0, + "inputQty": "5096081366627607642112", + "expectedQty": "5107136602752956342324", "reserves": [ - "1253627546878891504940923", - "2050954031232346208535392" - ], - "LPTokenSupply": "3300143480145870289484792" + "1295262848172335923051847", + "2461408628192154566488337" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "264150204609152253952", - "expectedQty": "263757134328177901568", - "swapFee": "158490122765491352", + "type": "redeemMasset", + "inputQty": "2082620660121420185", + "expectedQtys": [ + "718452116769488137", + "1365286004809463677" + ], + "redemptionFee": "1249572396072852", "reserves": [ - "1253363789744563327039355", - "2050954031232346208535392" + "1295262129720219153563710", + "2461407262906149757024660" ], - "LPTokenSupply": "3299879345790273413779975" + "LPTokenSupply": "3752401982110400690844388" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "665430181757688086528", - "2170334964404030013440" + "46547156048994463907840", + "1284337625975054139392" ], - "expectedQty": "2830479243813021603091", + "expectedQty": "47933880383281979241702", + "swapFee": "28777594786841292320", "reserves": [ - "1254029219926321015125883", - "2053124366196750238548832" + "1248714973671224689655870", + "2460122925280174702885268" ], - "LPTokenSupply": "3302709825034086435383066" + "LPTokenSupply": "3704442201891810554439597" }, { - "type": "redeemBassets", - "inputQtys": [ - "213071224444363210752", - "105103180022224912384" + "type": "redeemMasset", + "inputQty": "14943353821988743702118", + "expectedQtys": [ + "5034170507790927699999", + "9917938470437988730864" ], - "expectedQty": "318079879135242730057", - "swapFee": "190962504984136119", + "redemptionFee": "8966012293193246221", "reserves": [ - "1253816148701876651915131", - "2053019263016728013636448" + "1243680803163433761955871", + "2450204986809736714154404" ], - "LPTokenSupply": "3302391573288696706930500" + "LPTokenSupply": "3689499744671051130062101" }, { "type": "redeemBassets", "inputQtys": [ - "205939120876012116639744", - "221404846898273520189440" + "959241195188845019136", + "3008276316138544562176" ], - "expectedQty": "426940719024786395804920", - "swapFee": "256318222348280805966", + "expectedQty": "3960770878570592474740", + "swapFee": "2377889260698774749", "reserves": [ - "1047877027825864535275387", - "1831614416118454493447008" + "1242721561968244916936735", + "2447196710493598169592228" ], - "LPTokenSupply": "2875220167863796858400209" + "LPTokenSupply": "3685536833692145908690085" }, { - "type": "redeemMasset", - "inputQty": "1926025840514246587187", - "expectedQtys": [ - "701520987115400038537", - "1226208724010449158705" - ], - "redemptionFee": "1155615504308547952", + "type": "redeem", + "inputIndex": 1, + "inputQty": "25591905735484968534016", + "expectedQty": "25653201075102980990033", + "swapFee": "15355143441290981120", "reserves": [ - "1047175506838749135236850", - "1830388207394444044288303" + "1242721561968244916936735", + "2421543509418495188602195" ], - "LPTokenSupply": "2873294257584833042667817" + "LPTokenSupply": "3659946463471005069254181" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "454193973302222272", - "outputIndex": 1, - "expectedQty": "455740365981767679", - "swapFee": "363785733542900", + "type": "mint", + "inputIndex": 1, + "inputQty": "1318160771023120629760", + "expectedQty": "1314241320783286216733", "reserves": [ - "1047175961032722437459122", - "1830387751654078062520624" - ], - "LPTokenSupply": "2873294257621211616022107", - "hardLimitError": false, - "insufficientLiquidityError": false + "1242721561968244916936735", + "2422861670189518309231955" + ] }, { "type": "redeemMasset", - "inputQty": "213897678899447149363", + "inputQty": "427485546621020877619", "expectedQtys": [ - "77908523906300713438", - "136178458266848681877" + "145012005896528420480", + "282721441034249125765" ], - "redemptionFee": "128338607339668289", + "redemptionFee": "256491327972612526", "reserves": [ - "1047098052508816136745684", - "1830251573195811213838747" + "1242576549962348388516255", + "2422578948748484060106190" ], - "LPTokenSupply": "2873080372776172902839572" + "LPTokenSupply": "3660833244894300131854547" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "28600868681089024000000", - "expectedQty": "28514003147887446979935", + "type": "redeemBassets", + "inputQtys": [ + "745074187943365760", + "46553716979059163136" + ], + "expectedQty": "47162048771495832058", + "swapFee": "28314217793573643", "reserves": [ - "1047098052508816136745684", - "1858852441876900237838747" - ] + "1242575804888160445150495", + "2422532395031505000943054" + ], + "LPTokenSupply": "3660786057362732621806209" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "18580060852245265121280", - "24554521067907067150336" + "77994989787912667136", + "612285645106656182272" + ], + "expectedQty": "688640274981752020176", + "reserves": [ + "1242653799877948357817631", + "2423144680676611657125326" ], - "expectedQty": "43083178883681171344860", - "swapFee": "25865426586160399046", + "LPTokenSupply": "3661474697637714373826385" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "33779367011552", + "expectedQty": "33859836131594", + "swapFee": "20267620206", "reserves": [ - "1028517991656570871624404", - "1834297920808993170688411" + "1242653799877948357817631", + "2423144680642751820993732" ], - "LPTokenSupply": "2858487918156451634115504" + "LPTokenSupply": "3661474697603937033576853" }, { "type": "mintMulti", "inputQtys": [ - "223315581389717471232", - "247646260379631386624" + "912393127452391505920", + "491801060772506894336" ], - "expectedQty": "470487204905038720795", + "expectedQty": "1404848281012522255343", "reserves": [ - "1028741307237960589095636", - "1834545567069372802075035" + "1243566193005400749323551", + "2423636481703524327888068" ], - "LPTokenSupply": "2858958405361356672836299" + "LPTokenSupply": "3662879545884949555832196" }, { "type": "redeemMasset", - "inputQty": "9218971207876", + "inputQty": "2922985610404248210636", "expectedQtys": [ - "3315279478046", - "5912109514078" + "991773026270692001346", + "1932906588775944493171" ], - "redemptionFee": "5531382724", + "redemptionFee": "1753791366242548926", "reserves": [ - "1028741307234645309617590", - "1834545567063460692560957" + "1242574419979130057322205", + "2421703575114748383394897" ], - "LPTokenSupply": "2858958405352138254766695" + "LPTokenSupply": "3659956735653681931876452" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "12090769538331590", - "outputIndex": 1, - "expectedQty": "12134247756733499", - "swapFee": "9685174589718", + "type": "redeemMasset", + "inputQty": "97523678907332847206", + "expectedQtys": [ + "33089932270368282345", + "64490308178725956062" + ], + "redemptionFee": "58514207344399708", "reserves": [ - "1028741319325414847949180", - "1834545554929212935827458" + "1242541330046859689039860", + "2421639084806569657438835" ], - "LPTokenSupply": "2858958405353106772225666", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3659859217826195333469216" }, { - "type": "mintMulti", - "inputQtys": [ - "103480326995738730954752", - "93506106726436390830080" - ], - "expectedQty": "196824943097218867354194", + "type": "mint", + "inputIndex": 1, + "inputQty": "240195027611792769024", + "expectedQty": "239480735877400990195", "reserves": [ - "1132221646321153578903932", - "1928051661655649326657538" - ], - "LPTokenSupply": "3055783348450325639579860" + "1242541330046859689039860", + "2421879279834181450207859" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "154858101174715583299584", - "313009911096575719899136" - ], - "expectedQty": "467107585852713740121452", + "type": "mint", + "inputIndex": 1, + "inputQty": "2760431835115095", + "expectedQty": "2752222366594018", "reserves": [ - "1287079747495869162203516", - "2241061572752225046556674" - ], - "LPTokenSupply": "3522890934303039379701312" + "1242541330046859689039860", + "2421879282594613285322954" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "54361650742127812608", - "expectedQty": "54492805565564755959", - "swapFee": "32616990445276687", + "inputQty": "445970350138903168", + "expectedQty": "444644043174890199", "reserves": [ - "1287079747495869162203516", - "2241007079946659481800715" - ], - "LPTokenSupply": "3522836575913996296416372" + "1242541330046859689039860", + "2421879728564963424226122" + ] }, { "type": "redeemMasset", - "inputQty": "628070826741654323", + "inputQty": "7241557811885362380", "expectedQtys": [ - "229330029179087915", - "399299437377216181" + "2456910525004808023", + "4788848186790408253" ], - "redemptionFee": "376842496044992", + "redemptionFee": "4344934687131217", "reserves": [ - "1287079518165839983115601", - "2241006680647222104584534" + "1242538873136334684231837", + "2421874939716776633817869" ], - "LPTokenSupply": "3522835947880853804366548" + "LPTokenSupply": "3660091904835019859294369" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "13390103869448437891072", - "expectedQty": "13422271032599039911469", - "swapFee": "8034062321669062734", + "type": "mint", + "inputIndex": 0, + "inputQty": "94173756225963606147072", + "expectedQty": "94368296561646386799699", "reserves": [ - "1287079518165839983115601", - "2227584409614623064673065" - ], - "LPTokenSupply": "3509446647417637533381749" + "1336712629362298290378909", + "2421874939716776633817869" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1283213314690830565376", - "378139777130831347712" + "82940330611687559266304", + "43409353160132069949440" ], - "expectedQty": "1661653047451259359281", + "expectedQty": "126392273829760779433766", + "swapFee": "75880892833556601621", "reserves": [ - "1288362731480530813680977", - "2227962549391753896020777" + "1253772298750610731112605", + "2378465586556644563868429" ], - "LPTokenSupply": "3511108300465088792741030" + "LPTokenSupply": "3627999634763355265718842" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3760380748908040552448", - "expectedQty": "3769361840157498065269", - "swapFee": "2256228449344824331", + "type": "redeemBassets", + "inputQtys": [ + "14471023522062197063680", + "14787491216691719831552" + ], + "expectedQty": "29246381324462017885029", + "swapFee": "17558363812964989724", "reserves": [ - "1288362731480530813680977", - "2224193187551596397955508" + "1239301275228548534048925", + "2363678095339952844036877" ], - "LPTokenSupply": "3507348145339025686671015" + "LPTokenSupply": "3598737450911461579343060" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "5697703874229170077696", - "expectedQty": "5711273750006392053374", - "swapFee": "3418622324537502046", + "inputQty": "1826559606566707265536", + "outputIndex": 0, + "expectedQty": "1817312005148430502879", + "swapFee": "0", "reserves": [ - "1288362731480530813680977", - "2218481913801590005902134" + "1237483963223400103546046", + "2365504654946519551302413" ], - "LPTokenSupply": "3501650783327028970343523" + "LPTokenSupply": "3598737450911461579343060", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "32484449846282541858816", - "22261829850793519349760" - ], - "expectedQty": "54716259833709317771757", - "swapFee": "32849465579573334663", - "reserves": [ - "1255878281634248271822161", - "2196220083950796486552374" - ], - "LPTokenSupply": "3446904958974298036570568" - }, - { - "type": "redeemMasset", - "inputQty": "5405407071826127880192", - "expectedQtys": [ - "1968275976750614114442", - "3442027220402635395108" + "53754108322043", + "124116765802938" ], - "redemptionFee": "3243244243095676728", + "expectedQty": "177623689554890", + "swapFee": "106638196650", "reserves": [ - "1253910005657497657707719", - "2192778056730393851157266" + "1237483963169645995224003", + "2365504654822402785499475" ], - "LPTokenSupply": "3441499876226896218258048" + "LPTokenSupply": "3598737450733741915411184" }, { - "type": "redeemMasset", - "inputQty": "287517844102518564454", - "expectedQtys": [ - "104694232626074551950", - "183084284305001670838" - ], - "redemptionFee": "172510706461511138", + "type": "mint", + "inputIndex": 0, + "inputQty": "1503180394381126926336", + "expectedQty": "1506419358087877644397", "reserves": [ - "1253805311424871583155769", - "2192594972446088849486428" - ], - "LPTokenSupply": "3441212375633864345844707" + "1238987143564027122150339", + "2365504654822402785499475" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "15843777171214684913664", - "expectedQty": "15795524377200064030412", + "inputIndex": 0, + "inputQty": "24049826654184546304", + "expectedQty": "24101545832972203079", "reserves": [ - "1253805311424871583155769", - "2208438749617303534400092" + "1239011193390681306696643", + "2365504654822402785499475" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "25440013457503786369024", - "58805896519631299936256" + "2655876118614458761216", + "16498430287687408680960" ], - "expectedQty": "84096719363694050358864", + "expectedQty": "19111906921907203842684", + "swapFee": "11474028570286494202", + "reserves": [ + "1236355317272066847935427", + "2349006224534715376818515" + ], + "LPTokenSupply": "3581145738090042303571193" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "63505658277684813234176", + "expectedQty": "63322097093233709337630", + "swapFee": "38103394966610887940", "reserves": [ - "1279245324882375369524793", - "2267244646136934834336348" + "1173033220178833138597797", + "2349006224534715376818515" ], - "LPTokenSupply": "3541104619374758460233983" + "LPTokenSupply": "3517643890151854151425811" }, { "type": "redeemMasset", - "inputQty": "28956793959069479731", + "inputQty": "18468426859559696", "expectedQtys": [ - "10454539351136431626", - "18528891926082616952" + "6154994780564179", + "12325414832940324" ], - "redemptionFee": "17374076375441687", + "redemptionFee": "11081056115735", "reserves": [ - "1279234870343024233093167", - "2267226117245008751719396" + "1173033214023838358033618", + "2349006212209300543878191" ], - "LPTokenSupply": "3541075664318207028298420" + "LPTokenSupply": "3517643871684535397477688" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "7397942568403127500800", - "expectedQty": "7384160942384038792865", - "swapFee": "4438765541041876500", + "inputQty": "1073117399549790", + "expectedQty": "1069821707401787", + "swapFee": "643870439729", "reserves": [ - "1271850709400640194300302", - "2267226117245008751719396" + "1173033212954016650631831", + "2349006212209300543878191" ], - "LPTokenSupply": "3533678165626358004985270" + "LPTokenSupply": "3517643870611482384971870" }, { - "type": "redeemBassets", - "inputQtys": [ - "213168207172078447624192", - "94794713926955549327360" - ], - "expectedQty": "308015309417529620534370", - "swapFee": "184920137733157666920", + "type": "redeem", + "inputIndex": 0, + "inputQty": "13507224017314403844096", + "expectedQty": "13465162870393891920599", + "swapFee": "8104334410388642306", "reserves": [ - "1058682502228561746676110", - "2172431403318053202392036" + "1159568050083622758711232", + "2349006212209300543878191" ], - "LPTokenSupply": "3225496428084868542550671" + "LPTokenSupply": "3504137457027609019992004" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "28597696492776779153408", + "expectedQty": "28506845657319412776540", + "reserves": [ + "1159568050083622758711232", + "2377603908702077323031599" + ] }, { "type": "redeemBassets", "inputQtys": [ - "12716176126796732825600", - "2287861203394219474944" + "62661270085080465408", + "27685143685069533184" ], - "expectedQty": "15024169995376167330278", - "swapFee": "9019913945593056231", + "expectedQty": "90424259348196058515", + "swapFee": "54287127885649024", "reserves": [ - "1045966326101765013850510", - "2170143542114658982917092" + "1159505388813537678245824", + "2377576223558392253498415" ], - "LPTokenSupply": "3210464140166941341469784" + "LPTokenSupply": "3532553829567165139625906" }, { "type": "mint", "inputIndex": 0, - "inputQty": "13447035120706025160704", - "expectedQty": "13477102567784071594480", + "inputQty": "8659171427928970240", + "expectedQty": "8682171173767307362", "reserves": [ - "1059413361222471039011214", - "2170143542114658982917092" + "1159514047984965607216064", + "2377576223558392253498415" ] }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "29782026895263325487104", + "outputIndex": 1, + "expectedQty": "29926575052101262718526", + "swapFee": "23886592635379790125", + "reserves": [ + "1189296074880228932703168", + "2347649648506290990779889" + ], + "LPTokenSupply": "3532564900397602444912280", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "347109157972162576384", + "expectedQty": "347967054753061617689", + "swapFee": "208265494783297545", + "reserves": [ + "1189296074880228932703168", + "2347301681451537929162200" + ], + "LPTokenSupply": "3532217812066179760665650" + }, { "type": "redeemBassets", "inputQtys": [ - "1297285035920655384576", - "2143892439223672504320" + "12189945217038006878208", + "27552813230417539760128" ], - "expectedQty": "3436178097362778847625", - "swapFee": "2062944625192782978", + "expectedQty": "39687171262753259716860", + "swapFee": "23826598716882085081", "reserves": [ - "1058116076186550383626638", - "2167999649675435310412772" + "1177106129663190925824960", + "2319748868221120389402072" ], - "LPTokenSupply": "3220503207987199960711957" + "LPTokenSupply": "3492509196864581307072216" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "268190218458170656817152", + "expectedQty": "267312177841487318677526", + "reserves": [ + "1177106129663190925824960", + "2587939086679291046219224" + ] }, { "type": "redeemBassets", "inputQtys": [ - "31880995986237592436736", - "51333956243963374469120" + "65752423103031959552", + "153825364624488857600" ], - "expectedQty": "83097169386783369977493", - "swapFee": "49888234572813710212", + "expectedQty": "219253735155828007327", + "swapFee": "131631219825392039", "reserves": [ - "1026235080200312791189902", - "2116665693431471935943652" + "1177040377240087893865408", + "2587785261314666557361624" ], - "LPTokenSupply": "3137361139189301058395272" + "LPTokenSupply": "3759602002502814954889578" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "517658110579942848", - "expectedQty": "518809811356137353", + "inputQty": "47967174926821150949376", + "expectedQty": "47775999722272245844464", + "swapFee": "28780304956092690569", "reserves": [ - "1026235597858423371132750", - "2116665693431471935943652" - ] + "1129264377517815648020944", + "2587785261314666557361624" + ], + "LPTokenSupply": "3711637705606489413209258" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "18556488064698220544", - "expectedQty": "18614148533015697557", - "swapFee": "11133892838818932", + "inputQty": "241897248108584370176", + "expectedQty": "242638840663614006646", + "swapFee": "145138348865150622", "reserves": [ - "1026235597858423371132750", - "2116647079282938920246095" + "1129264377517815648020944", + "2587542622474002943354978" ], - "LPTokenSupply": "3137343102624437000193974" + "LPTokenSupply": "3711395822872215715354144" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1285868144228391936", - "expectedQty": "1289863695992982683", - "swapFee": "771520886537035", + "inputIndex": 0, + "inputQty": "132302929080942956904448", + "expectedQty": "131671432612048701052011", + "swapFee": "79381757448565774142", "reserves": [ - "1026235597858423371132750", - "2116645789419242927263412" + "997592944905766946968933", + "2587542622474002943354978" ], - "LPTokenSupply": "3137341816833444860455741" + "LPTokenSupply": "3579100831967017615027110" }, { - "type": "redeemMasset", - "inputQty": "144068864522673484", - "expectedQtys": [ - "47097159565149342", - "97139491843014649" + "type": "redeemBassets", + "inputQtys": [ + "57161999522896740352", + "43854366368736387072" ], - "redemptionFee": "86441318713604", + "expectedQty": "101109706656121122098", + "swapFee": "60702245340877199", "reserves": [ - "1026235550761263805983408", - "2116645692279751084248763" + "997535782906244050228581", + "2587498768107634206967906" ], - "LPTokenSupply": "3137341672773224469653617" + "LPTokenSupply": "3578999667628340687115531" }, { "type": "redeemBassets", "inputQtys": [ - "1604913129070433665024", - "7024693393149991583744" + "127863178791997396746240", + "87715394490570809278464" ], - "expectedQty": "8607227576570077179602", - "swapFee": "5167437008146934468", + "expectedQty": "215890101058359213040341", + "swapFee": "129611827731654520536", "reserves": [ - "1024630637632193372318384", - "2109620998886601092665019" + "869672604114246653482341", + "2499783373617063397689442" ], - "LPTokenSupply": "3128729794503347060232992" + "LPTokenSupply": "3362992915925022985006706" }, { - "type": "redeemMasset", - "inputQty": "337644123700336", - "expectedQtys": [ - "110509043656952", - "227528038400576" + "type": "mintMulti", + "inputQtys": [ + "2439977787594904698880", + "89143370096392142848" ], - "redemptionFee": "202586474220", + "expectedQty": "2543647029028716130888", "reserves": [ - "1024630637521684328661432", - "2109620998659073054264443" + "872112581901841558181221", + "2499872516987159789832290" ], - "LPTokenSupply": "3128729794165723195180078" + "LPTokenSupply": "3365536562954051701137594" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "73997452438719315312640", - "expectedQty": "74141423371352830666033", + "inputQty": "4596615504115810697216", + "expectedQty": "4565809322807010032631", + "swapFee": "2757969302469486418", "reserves": [ - "1098628089960403643974072", - "2109620998659073054264443" - ] + "867546772579034548148590", + "2499872516987159789832290" + ], + "LPTokenSupply": "3360940223246866137389019" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "53153567472835444736", - "expectedQty": "53243784252118249762", + "inputIndex": 1, + "inputQty": "21507601298365414899712", + "expectedQty": "21405280347468249539698", "reserves": [ - "1098681243527876479418808", - "2109620998659073054264443" + "867546772579034548148590", + "2521380118285525204732002" ] }, + { + "type": "redeemMasset", + "inputQty": "631945722523748556", + "expectedQtys": [ + "161992181447796425", + "470803279465794439" + ], + "redemptionFee": "379167433514249", + "reserves": [ + "867546610586853100352165", + "2521379647482245738937563" + ], + "LPTokenSupply": "3382344871686528606531585" + }, { "type": "redeemBassets", "inputQtys": [ - "775507232958678784", - "1499834788656776448" + "11765370305968785588224", + "32653869589154146287616" ], - "expectedQty": "2271509185008560160", - "swapFee": "1363723745252287", + "expectedQty": "44337347821248119394860", + "swapFee": "26618379720581220369", "reserves": [ - "1098680468020643520740024", - "2109619498824284397487995" + "855781240280884314763941", + "2488725777893091592649947" ], - "LPTokenSupply": "3202922188584791764808653" + "LPTokenSupply": "3337983567323531964038391" }, { - "type": "swap", + "type": "redeemMasset", + "inputQty": "35492934672436787", + "expectedQtys": [ + "9094102032064020", + "26446859417669834" + ], + "redemptionFee": "21295760803462", + "reserves": [ + "855781231186782282699921", + "2488725751446232174980113" + ], + "LPTokenSupply": "3337983531832726867681950" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "161149640178588564062208", - "outputIndex": 0, - "expectedQty": "160110578710325276625291", - "swapFee": "0", + "inputQty": "9402522341895263223808", + "expectedQty": "9442007861459315772967", + "swapFee": "5641513405137157934", "reserves": [ - "938569889310318244114733", - "2270769139002872961550203" + "855781231186782282699921", + "2479283743584772859207146" ], - "LPTokenSupply": "3202922188584791764808653", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3328581573642172118173935" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "2222702452516642619392", + "expectedQty": "2207536381084845795612", + "swapFee": "1333621471509985571", + "reserves": [ + "853573694805697436904309", + "2479283743584772859207146" + ], + "LPTokenSupply": "3326359004551802626553100" }, { "type": "swap", "inputIndex": 1, - "inputQty": "33897647312756142080", + "inputQty": "83508479343290", "outputIndex": 0, - "expectedQty": "33627680578158690561", + "expectedQty": "82589908428098", "swapFee": "0", "reserves": [ - "938536261629740085424172", - "2270803036650185717692283" + "853573694723107528476211", + "2479283743668281338550436" ], - "LPTokenSupply": "3202922188584791764808653", + "LPTokenSupply": "3326359004551802626553100", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "214357096329438068736", - "140826025101389152256" + "25711501644180541440", + "21587496176564764672" ], - "expectedQty": "355356263612467830051", - "swapFee": "213341763225415947", + "expectedQty": "47357283318048413630", "reserves": [ - "938321904533410647355436", - "2270662210625084328540027" + "853599406224751709017651", + "2479305331164457903315108" ], - "LPTokenSupply": "3202566640313592394104248" + "LPTokenSupply": "3326406361835120674966730" }, { - "type": "redeemMasset", - "inputQty": "26661348654616734282547", - "expectedQtys": [ - "7806837483360807547426", - "18891907747558748791532" + "type": "redeemBassets", + "inputQtys": [ + "30410934429204598489088", + "16329660393726052139008" ], - "redemptionFee": "15996809192770040569", + "expectedQty": "46858930290065564602575", + "swapFee": "28132237516549268322", "reserves": [ - "930515067050049839808010", - "2251770302877525579748495" + "823188471795547110528563", + "2462975670770731851176100" ], - "LPTokenSupply": "3175906891339894936825757" + "LPTokenSupply": "3279522112531290216022664" }, { - "type": "mintMulti", - "inputQtys": [ - "2182673174427491893248", - "6725238209449894608896" - ], - "expectedQty": "8886680001422050703586", + "type": "mint", + "inputIndex": 1, + "inputQty": "107536970894287128494080", + "expectedQty": "106993693782259807029482", "reserves": [ - "932697740224477331701258", - "2258495541086975474357391" - ], - "LPTokenSupply": "3184793571341316987529343" + "823188471795547110528563", + "2570512641665018979670180" + ] }, { "type": "mintMulti", "inputQtys": [ - "5479207762067330170880", - "5031915545968277192704" + "2484231249187516186624", + "4304221227559762788352" ], - "expectedQty": "10509250078004163378524", + "expectedQty": "6784583553036350967688", "reserves": [ - "938176947986544661872138", - "2263527456632943751550095" + "825672703044734626715187", + "2574816862892578742458532" ], - "LPTokenSupply": "3195302821419321150907867" + "LPTokenSupply": "3393300389866586374019834" }, { - "type": "redeemBassets", - "inputQtys": [ - "1870179922916965613568", - "5581496996062299160576" + "type": "redeemMasset", + "inputQty": "4167645017877607", + "expectedQtys": [ + "1013481173395553", + "3160487691866503" ], - "expectedQty": "7434287011218799801637", - "swapFee": "4463250156825375106", + "redemptionFee": "2500587010726", "reserves": [ - "936306768063627696258570", - "2257945959636881452389519" + "825672702031253453319634", + "2574816859732091050592029" ], - "LPTokenSupply": "3187864517482961208268633" + "LPTokenSupply": "3393300385699191414843299" }, { - "type": "mintMulti", - "inputQtys": [ - "2153446197795557474304", - "3408606319674216939520" + "type": "redeemMasset", + "inputQty": "8126876857210357206220", + "expectedQtys": [ + "1976280767186509294409", + "6162927545500326863618" ], - "expectedQty": "5555082219485992309160", + "redemptionFee": "4876126114326214323", "reserves": [ - "938460214261423253732874", - "2261354565956555669329039" + "823696421264066944025225", + "2568653932186590723728411" ], - "LPTokenSupply": "3193419599702447200577793" + "LPTokenSupply": "3385173996454592490258511" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "980247509304357421056", - "outputIndex": 1, - "expectedQty": "987257873476744134616", - "swapFee": "787023737917965944", + "inputQty": "181891852542768895229952", + "expectedQty": "180045223312879929066947", + "swapFee": "109135111525661337137", "reserves": [ - "939440461770727611153930", - "2260367308083078925194423" + "643651197951187014958278", + "2568653932186590723728411" ], - "LPTokenSupply": "3193419678404820992374387", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3203293057422976161162272" }, { - "type": "redeem", + "type": "redeemMasset", + "inputQty": "71542839067102019584", + "expectedQtys": [ + "14366779456310659688", + "57334290157117929964" + ], + "redemptionFee": "42925703440261211", + "reserves": [ + "643636831171730704298590", + "2568596597896433605798447" + ], + "LPTokenSupply": "3203221518876479403168809" + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "108940044008897145470976", - "expectedQty": "109335718427513352752323", - "swapFee": "65364026405338287282", + "inputQty": "20687939449517120684032", + "hardLimitError": true + }, + { + "type": "redeemMasset", + "inputQty": "9885188119008052", + "expectedQtys": [ + "1985080843235339", + "7921970362077110" + ], + "redemptionFee": "5931112871404", "reserves": [ - "939440461770727611153930", - "2151031589655565572442100" + "643636829186649861063251", + "2568596589974463243721337" ], - "LPTokenSupply": "3084486170798564380732139" + "LPTokenSupply": "3203221508991884395447897" }, { "type": "redeemMasset", - "inputQty": "471055731330723505766", + "inputQty": "52495287575393166950", "expectedQtys": [ - "143383134818310882025", - "328303564694981673314" + "10541771028700839977", + "42069620457906205747" ], - "redemptionFee": "282633438798434103", + "redemptionFee": "31497172545235900", "reserves": [ - "939297078635909300271905", - "2150703286090870590768786" + "643626287415621160223274", + "2568554520354005337515590" ], - "LPTokenSupply": "3084015143330577537069783" + "LPTokenSupply": "3203169016854026256804537" }, { - "type": "redeem", + "type": "mintMulti", + "inputQtys": [ + "197501413257696962936832", + "88608149822065799593984" + ], + "expectedQty": "287508742170965312749964", + "reserves": [ + "841127700673318123160106", + "2657162670176071137109574" + ], + "LPTokenSupply": "3490677759024991569554501" + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "24348454382130832", - "expectedQty": "24434823772184173", - "swapFee": "14609072629278", + "inputQty": "331874473743497035776", + "outputIndex": 0, + "expectedQty": "327653316388659341987", + "swapFee": "0", "reserves": [ - "939297078635909300271905", - "2150703261656046818584613" + "840800047356929463818119", + "2657494544649814634145350" ], - "LPTokenSupply": "3084015118983584062201878" + "LPTokenSupply": "3490677759024991569554501", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "677783117901711015936", + "inputQty": "5731611868913332335411", "expectedQtys": [ - "206308235927829668572", - "472382812646305141417" + "1379745820032567057359", + "4360926240746735849846" ], - "redemptionFee": "406669870741026609", + "redemptionFee": "3438967121347999401", "reserves": [ - "939090770399981470603333", - "2150230878843400513443196" + "839420301536896896760760", + "2653133618409067898295504" ], - "LPTokenSupply": "3083337376532669425288602" + "LPTokenSupply": "3484946491052790372019030" }, { "type": "redeemMasset", - "inputQty": "26104153781119247974", + "inputQty": "849175017274547686604", "expectedQtys": [ - "7945760840018899533", - "18193364105619210935" + "204418363965627444853", + "646099734143191777139" ], - "redemptionFee": "15662492268671548", + "redemptionFee": "509505010364728611", "reserves": [ - "939082824639141451703800", - "2150212685479294894232261" + "839215883172931269315907", + "2652487518674924706518365" ], - "LPTokenSupply": "3083311273945137532907782" + "LPTokenSupply": "3484097366986016860805287" }, { - "type": "redeemMasset", - "inputQty": "15897651846906120241152", - "expectedQtys": [ - "4839036006685983218289", - "11079913649858895815297" + "type": "mintMulti", + "inputQtys": [ + "164481138498277998592", + "288394864993712668672" ], - "redemptionFee": "9538591108143672144", + "expectedQty": "452602728419348633305", "reserves": [ - "934243788632455468485511", - "2139132771829435998416964" + "839380364311429547314499", + "2652775913539918419187037" ], - "LPTokenSupply": "3067414575957342227033844" + "LPTokenSupply": "3484549969714436209438592" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "35492990727153614848", - "expectedQty": "35602563895063128717", + "type": "swap", + "inputIndex": 1, + "inputQty": "11680944650590328193024", + "outputIndex": 0, + "expectedQty": "11529986859708722419934", + "swapFee": "0", "reserves": [ - "934279281623182622100359", - "2139132771829435998416964" - ] + "827850377451720824894565", + "2664456858190508747380061" + ], + "LPTokenSupply": "3484549969714436209438592", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "9382825886679379968", - "23629642748286287872" - ], - "expectedQty": "32943717326559936479", - "swapFee": "19778097254288535", + "type": "redeem", + "inputIndex": 0, + "inputQty": "147026684339085580959744", + "expectedQty": "145523541751741160569695", + "swapFee": "88216010603451348575", "reserves": [ - "934269898797295942720391", - "2139109142186687712129092" + "682326835699979664324870", + "2664456858190508747380061" ], - "LPTokenSupply": "3067417217003623201366399" + "LPTokenSupply": "3337532106976410973613705" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "15391641316278761684992", - "expectedQty": "15437988979708932747545", + "inputIndex": 1, + "inputQty": "17699166833829714", + "expectedQty": "17583630061331473", "reserves": [ - "949661540113574704405383", - "2139109142186687712129092" + "682326835699979664324870", + "2664456875889675581209775" ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "9978843771426626863104", - "outputIndex": 0, - "expectedQty": "9908151555488920514385", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "12840284951998926848", + "outputIndex": 1, + "expectedQty": "13068402741935682789", + "swapFee": "10394793042891508", "reserves": [ - "939753388558085783890998", - "2149087985958114338992196" + "682339675984931663251718", + "2664443807486933645526986" ], - "LPTokenSupply": "3082855205983332134113944", + "LPTokenSupply": "3337532125599520339234328", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "665105745635712172032", - "1189367778284667666432" - ], - "expectedQty": "1851606759314551257827", - "swapFee": "1111631034209256308", + "type": "redeem", + "inputIndex": 1, + "inputQty": "72976747573312334331904", + "expectedQty": "73405576048162851683642", + "swapFee": "43786048543987400599", "reserves": [ - "939088282812450071718966", - "2147898618179829671325764" + "682339675984931663251718", + "2591038231438770793843344" ], - "LPTokenSupply": "3081002598756086794525438" + "LPTokenSupply": "3264559756631062403642483" }, { "type": "redeemMasset", - "inputQty": "53881014983082997972992", + "inputQty": "198809867567589438259", "expectedQtys": [ - "16413056723538542594577", - "37540221193065683364602" + "41529173061366822137", + "157698106836183422645" ], - "redemptionFee": "32328608989849798783", + "redemptionFee": "119285920540553662", "reserves": [ - "922675226088911529124389", - "2110358396986763987961162" + "682298146811870296429581", + "2590880533331934610420699" ], - "LPTokenSupply": "3027124816633902781532324" + "LPTokenSupply": "3264360958692086868259590" }, { - "type": "mintMulti", - "inputQtys": [ - "27354210697911", - "2270759447939" + "type": "redeemMasset", + "inputQty": "5815085897230081798963", + "expectedQtys": [ + "1214706893021389031220", + "4612588290820901966726" ], - "expectedQty": "29699470137227", + "redemptionFee": "3489051538338049079", "reserves": [ - "922675226116265739822300", - "2110358396989034747409101" + "681083439918848907398361", + "2586267945041113708453973" ], - "LPTokenSupply": "3027124816663602251669551" + "LPTokenSupply": "3258546221700010620265534" }, { "type": "redeemMasset", - "inputQty": "9398814433937825792", + "inputQty": "6642488284858643015270", "expectedQtys": [ - "2863063311235011622", - "6548446873780782519" + "1387543404264168297032", + "5268897786193742496293" ], - "redemptionFee": "5639288660362695", + "redemptionFee": "3985492970915185809", "reserves": [ - "922672363052954504810678", - "2110351848542160966626582" + "679695896514584739101329", + "2580999047254919965957680" ], - "LPTokenSupply": "3027115418413097179880028" + "LPTokenSupply": "3251904131964449068768844" }, { "type": "redeemBassets", "inputQtys": [ - "69605755362451293995008", - "7794176269488706551808" + "21440122559905240", + "11536487345233874" ], - "expectedQty": "77604952965350968118570", - "swapFee": "46590926335011587823", + "expectedQty": "33143959003312852", + "swapFee": "19898314390622", "reserves": [ - "853066607690503210815670", - "2102557672272672260074774" + "679695875074462179196089", + "2580999035718432620723806" ], - "LPTokenSupply": "2949468533614044701332416" + "LPTokenSupply": "3251904098802581582504431" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "204168236521235136", - "expectedQty": "204943609714180885", + "type": "mintMulti", + "inputQtys": [ + "4768115196743604", + "17301668863978058" + ], + "expectedQty": "22013233296486519", "reserves": [ - "853066811858739732050806", - "2102557672272672260074774" - ] + "679695879842577375939693", + "2580999053020101484701864" + ], + "LPTokenSupply": "3251904120815814878990950" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3015527888933042176", - "24878991599653109760" + "964494989213273686016", + "1150399544548871503872" ], - "expectedQty": "27794798110953911971", - "swapFee": "16686891001173051", + "expectedQty": "2118397257180763633965", "reserves": [ - "853063796330850799008630", - "2102532793281072606965014" + "680660374831790649625709", + "2582149452564650356205736" ], - "LPTokenSupply": "2949440928741341560545583" + "LPTokenSupply": "3254022518072995642624915" }, { - "type": "redeemMasset", - "inputQty": "79482006667513272729", - "expectedQtys": [ - "22974706750031948105", - "56625394918557331739" + "type": "redeemBassets", + "inputQtys": [ + "1735668547090728704", + "513587781777024384" ], - "redemptionFee": "47689204000507963", + "expectedQty": "2265441433194432302", + "swapFee": "1360080908461736", "reserves": [ - "853040821624100767060525", - "2102476167886154049633275" + "680658639163243558897005", + "2582148938976868579181352" ], - "LPTokenSupply": "2949361451503594447323650" + "LPTokenSupply": "3254020251407489630577049" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "355382331393755520", - "811791564251180928" + "935634093192208580608", + "1625117356886434250752" ], - "expectedQty": "1164895954569274131", + "expectedQty": "2560909822478415860740", + "swapFee": "1537468374511756570", "reserves": [ - "853041177006432160816045", - "2102476979677718300814203" + "679723005070051350316397", + "2580523821619982144930600" ], - "LPTokenSupply": "2949362616399549016597781" + "LPTokenSupply": "3251457957863474154135395" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "102115227838440552792064", - "expectedQty": "101648243398348100840264", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3511805993437561356288", + "expectedQty": "3470534099066117032774", + "swapFee": "2107083596062536813", "reserves": [ - "853041177006432160816045", - "2204592207516158853606267" - ] + "676252470970985233283623", + "2580523821619982144930600" + ], + "LPTokenSupply": "3247946362578396199032788" }, { "type": "mintMulti", "inputQtys": [ - "1096344917010449563648", - "2127358832167302725632" + "12974628586736588", + "3684007648893460" ], - "expectedQty": "3218494173041935095011", + "expectedQty": "16782288157543250", "reserves": [ - "854137521923442610379693", - "2206719566348326156331899" + "676252483945613820020211", + "2580523825303989793824060" ], - "LPTokenSupply": "3054229353970939052533056" + "LPTokenSupply": "3247946379360684356576038" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "174483736856885312", - "expectedQty": "173667866143370389", + "inputQty": "1308837511010572828672", + "outputIndex": 0, + "expectedQty": "1285830624344226441089", + "swapFee": "0", "reserves": [ - "854137521923442610379693", - "2206719740832063013217211" - ] + "674966653321269593579122", + "2581832662815000366652732" + ], + "LPTokenSupply": "3247946379360684356576038", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "537600218958506622976", - "expectedQty": "539801427023606612086", - "swapFee": "322560131375103973", + "inputQty": "348816971256114853183488", + "expectedQty": "350703982066379943399834", + "swapFee": "209290182753668911910", "reserves": [ - "854137521923442610379693", - "2206179939405039406605125" + "674966653321269593579122", + "2231128680748620423252898" ], - "LPTokenSupply": "3053691959675859826790866" + "LPTokenSupply": "2899150337122844870283741" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4171607442387077431296", - "expectedQty": "4189503073631638573421", + "inputQty": "78204073915411296", + "expectedQty": "78848911242208957", "reserves": [ - "858309129365829687810989", - "2206179939405039406605125" + "674966731525343508990418", + "2231128680748620423252898" ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "471787312937143631872", - "outputIndex": 0, - "expectedQty": "467596386524604237958", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "10222758953581332480", + "outputIndex": 1, + "expectedQty": "10356876904692664599", + "swapFee": "8245640013083929", "reserves": [ - "857841532979305083573031", - "2206651726717976550236997" + "674976954284297090322898", + "2231118323871715730588299" ], - "LPTokenSupply": "3057881462749491465364287", + "LPTokenSupply": "2899150416796320113801090", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "662392611436734971904", - "expectedQty": "665091720426131026227", - "swapFee": "397435566862040983", + "type": "redeemMasset", + "inputQty": "301319613568578328985", + "expectedQtys": [ + "70110803350532376407", + "231749390944173761291" + ], + "redemptionFee": "180791768141146997", "reserves": [ - "857841532979305083573031", - "2205986634997550419210770" + "674906843480946557946491", + "2230886574480771556827008" ], - "LPTokenSupply": "3057219109881611416596481" + "LPTokenSupply": "2898849115261928349586804" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2321351957050660225024", - "expectedQty": "2310540004942257511764", + "type": "redeemMasset", + "inputQty": "2633492224226704588", + "expectedQtys": [ + "612758869676227605", + "2025458104268431348" + ], + "redemptionFee": "1580095334536022", "reserves": [ - "857841532979305083573031", - "2208307986954601079435794" - ] + "674906230722076881718886", + "2230884549022667288395660" + ], + "LPTokenSupply": "2898846481927713656335818" }, { "type": "redeemBassets", "inputQtys": [ - "35035823494183912472576", - "80126468850003470188544" - ], - "expectedQty": "114938933610671613476924", - "swapFee": "69004763024217498585", - "reserves": [ - "822805709485121171100455", - "2128181518104597609247250" + "1021720835950265088", + "580399179146542336" ], - "LPTokenSupply": "2944528611989160264882593" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "492536884379422425088", - "outputIndex": 0, - "expectedQty": "488112537626387496856", - "swapFee": "0", + "expectedQty": "1607289854195139676", + "swapFee": "964952884247632", "reserves": [ - "822317596947494783603599", - "2128674054988977031672338" + "674905209001240931453798", + "2230883968623488141853324" ], - "LPTokenSupply": "2944528611989160264882593", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "2898844873769401865373272" }, { "type": "swap", "inputIndex": 1, - "inputQty": "25724492896841433612288", + "inputQty": "21388697304330141696", "outputIndex": 0, - "expectedQty": "25484150396767680761839", + "expectedQty": "21094825824467559764", "swapFee": "0", "reserves": [ - "796833446550727102841760", - "2154398547885818465284626" + "674884114175416463894034", + "2230905357320792471995020" ], - "LPTokenSupply": "2944528611989160264882593", + "LPTokenSupply": "2898844873769401865373272", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "134908894692537108791296", - "expectedQty": "135438927169073940912178", + "inputQty": "847056258716743168", + "expectedQty": "854041007800704871", "reserves": [ - "931742341243264211633056", - "2154398547885818465284626" + "674884961231675180637202", + "2230905357320792471995020" ] }, { "type": "mintMulti", "inputQtys": [ - "2215229632782977280", - "1616167718736930816" + "6488572112416708608", + "1729694327030621184" ], - "expectedQty": "3831518166939873258", + "expectedQty": "8262070935101666101", "reserves": [ - "931744556472896994610336", - "2154400164053537202215442" + "674891449803787597345810", + "2230907087015119502616204" ], - "LPTokenSupply": "3079971370676401145668029" + "LPTokenSupply": "2898853989881344767744244" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "135880294798617961562112", - "expectedQty": "135266999414401470480924", - "swapFee": "81528176879170776937", - "reserves": [ - "796477557058495524129412", - "2154400164053537202215442" - ], - "LPTokenSupply": "2944099228695471101183610" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "40789500584698461552640", - "17766491393664617545728" - ], - "expectedQty": "58675111114112287935176", - "swapFee": "35226202389901313549", + "inputQty": "3293648789387097931776", + "expectedQty": "3320660412423359618111", "reserves": [ - "755688056473797062576772", - "2136633672659872584669714" - ], - "LPTokenSupply": "2885392413999207902066238" + "678185098593174695277586", + "2230907087015119502616204" + ] }, { "type": "mintMulti", "inputQtys": [ - "266724775954390320152576", - "125675256564596179206144" + "7281746185448169472", + "6319476680424042496" ], - "expectedQty": "392857931217143298055773", + "expectedQty": "13625352600970759884", "reserves": [ - "1022412832428187382729348", - "2262308929224468763875858" + "678192380339360143447058", + "2230913406491799926658700" ], - "LPTokenSupply": "3278250345216351200122011" + "LPTokenSupply": "2902188275646369098122239" }, { "type": "mint", "inputIndex": 1, - "inputQty": "8837217135072697647104", - "expectedQty": "8801102826084948478508", + "inputQty": "3117570641811385876480", + "expectedQty": "3100161507067395698459", "reserves": [ - "1022412832428187382729348", - "2271146146359541461522962" + "678192380339360143447058", + "2234030977133611312535180" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1638025825223407042560", - "20785739752214978625536" - ], - "expectedQty": "22343391747407215468302", - "swapFee": "13414083498543455354", - "reserves": [ - "1020774806602963975686788", - "2250360406607326482897426" + "34943202318686468702208", + "126161927511952997744640" ], - "LPTokenSupply": "3264695983619880244022397" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "89936204501176891211776", - "expectedQty": "90143339019319799258568", - "reserves": [ - "1110711011104140866898564", - "2250360406607326482897426" - ] - }, - { - "type": "redeemMasset", - "inputQty": "4081052845165502267392", - "expectedQtys": [ - "1350333108132342012118", - "2735847697459369634815" - ], - "redemptionFee": "2448631707099301360", + "expectedQty": "160685891007813773103201", "reserves": [ - "1109360677996008524886446", - "2247624558909867113262611" + "713135582658046612149266", + "2360192904645564310279820" ], - "LPTokenSupply": "3350758514657205250943709" + "LPTokenSupply": "3065974328161250266923899" }, { "type": "redeemBassets", "inputQtys": [ - "75571763394712854069248", - "27479638949631518310400" + "8912962950271820800", + "434688335858900608" ], - "expectedQty": "103111543675990114606433", - "swapFee": "61904068646782138046", + "expectedQty": "9418905031513523560", + "swapFee": "5654735860424368", "reserves": [ - "1033788914601295670817198", - "2220144919960235594952211" + "713126669695096340328466", + "2360192469957228451379212" ], - "LPTokenSupply": "3247591257319433032413033" + "LPTokenSupply": "3065964904166956479018406" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3178189420486601474048", - "expectedQty": "3185833919000526679767", + "type": "swap", + "inputIndex": 1, + "inputQty": "13169853211984628023296", + "outputIndex": 0, + "expectedQty": "12984772007293348632822", + "swapFee": "0", "reserves": [ - "1036967104021782272291246", - "2220144919960235594952211" - ] + "700141897687802991695644", + "2373362323169213079402508" + ], + "LPTokenSupply": "3065964904166956479018406", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "640491158948346960281", - "expectedQtys": [ - "204188027249817165122", - "437166241491361003237" - ], - "redemptionFee": "384294695369008176", + "type": "swap", + "inputIndex": 0, + "inputQty": "623660727094859661312", + "outputIndex": 1, + "expectedQty": "632220839388207338216", + "swapFee": "503274608086508355", "reserves": [ - "1036762915994532455126124", - "2219707753718744233948974" + "700765558414897851356956", + "2372730102329824872064292" ], - "LPTokenSupply": "3250136638508954749033336" + "LPTokenSupply": "3065964954494417287669241", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "7635322122300026781696", - "expectedQty": "7661111693278546417967", - "swapFee": "4581193273380016069", + "inputQty": "13546137414496130433024", + "expectedQty": "13468130447556507988775", "reserves": [ - "1036762915994532455126124", - "2212046642025465687531007" - ], - "LPTokenSupply": "3242501774505982060253246" + "700765558414897851356956", + "2386276239744321002497316" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3965521245038128922624", - "expectedQty": "3974827372123739600956", + "inputIndex": 1, + "inputQty": "808538490830532771840", + "expectedQty": "803868546106075262260", "reserves": [ - "1040728437239570584048748", - "2212046642025465687531007" + "700765558414897851356956", + "2387084778235151535269156" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "24693783303066824474624", - "outputIndex": 1, - "expectedQty": "24824342949467646932741", - "swapFee": "19799193737959228689", - "reserves": [ - "1065422220542637408523372", - "2187222299075998040598266" - ], - "LPTokenSupply": "3246478581797479595777070", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "449655982411880234745856", - "expectedQty": "450927322556345205890685", - "swapFee": "269793589447128140847", + "inputQty": "1538231641715057920", + "expectedQty": "1551788851144521515", "reserves": [ - "1065422220542637408523372", - "1736294976519652834707581" - ], - "LPTokenSupply": "2796849578744544073845298" + "700767096646539566414876", + "2387084778235151535269156" + ] }, { "type": "redeemBassets", "inputQtys": [ - "31946939919845056512", - "36590202898664108032" + "2309161548010182672384", + "2138874116328130084864" ], - "expectedQty": "68439020004934675513", - "swapFee": "41088064841865924", + "expectedQty": "4456071053590046784813", + "swapFee": "2675247780822521583", "reserves": [ - "1065390273602717563466860", - "1736258386316754170599549" + "698457935098529383742492", + "2384945904118823405184292" ], - "LPTokenSupply": "2796781102745280781490452" + "LPTokenSupply": "3075780026500338228387552" }, { - "type": "redeemBassets", - "inputQtys": [ - "97325816882958969077760", - "6379956128425779920896" - ], - "expectedQty": "103755625387117554330875", - "swapFee": "62290749682079780466", + "type": "mint", + "inputIndex": 0, + "inputQty": "19748480929749530574848", + "expectedQty": "19918133952126087520325", "reserves": [ - "968064456719758594389100", - "1729878430188328390678653" - ], - "LPTokenSupply": "2692969415683449355357156" + "718206416028278914317340", + "2384945904118823405184292" + ] }, { "type": "mintMulti", "inputQtys": [ - "40232172821954760278016", - "36528436586842414907392" + "2796795296644537516032", + "1398741876541022011392" ], - "expectedQty": "76673787578616248190591", + "expectedQty": "4210878994198468206058", "reserves": [ - "1008296629541713354667116", - "1766406866775170805586045" + "721003211324923451833372", + "2386344645995364427195684" ], - "LPTokenSupply": "2769643203262065603547747" + "LPTokenSupply": "3099909039446662784113935" }, { "type": "redeemMasset", - "inputQty": "2374956316400196403", + "inputQty": "4396103018443792449536", "expectedQtys": [ - "864090959458936273", - "1513776957679958256" + "1021869542192255452710", + "3382138765283927077248" ], - "redemptionFee": "1424973789840117", + "redemptionFee": "2637661811066275469", "reserves": [ - "1008295765450753895730843", - "1766405352998213125627789" + "719981341782731196380662", + "2382962507230080500118436" ], - "LPTokenSupply": "2769640828448246582335355" + "LPTokenSupply": "3095513200194400098291945" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "1813917830351411740672", - "outputIndex": 1, - "expectedQty": "1820108053317183403056", - "swapFee": "1452374002412261851", + "inputQty": "357622072341179008", + "expectedQty": "360578620099620172", "reserves": [ - "1010109683281105307471515", - "1764585244944895942224733" - ], - "LPTokenSupply": "2769640973685646823561540", - "hardLimitError": false, - "insufficientLiquidityError": false + "719981699404803537559670", + "2382962507230080500118436" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "593033615520378147307520", - "outputIndex": 0, - "hardLimitError": true + "type": "redeem", + "inputIndex": 0, + "inputQty": "8207474896502961209344", + "expectedQty": "8134445575188821576747", + "swapFee": "4924484937901776725", + "reserves": [ + "711847253829614715982923", + "2382962507230080500118436" + ], + "LPTokenSupply": "3087306578325011026880445" }, { - "type": "redeemMasset", - "inputQty": "1079189235779472998", - "expectedQtys": [ - "393352585337272322", - "687157226225614968" + "type": "redeemBassets", + "inputQtys": [ + "2028811987579216592896", + "1783939918793834233856" ], - "redemptionFee": "647513541467683", + "expectedQty": "3819845731450647245283", + "swapFee": "2293283408915737789", "reserves": [ - "1010109289928519970199193", - "1764584557787669716609765" + "709818441842035499390027", + "2381178567311286665884580" ], - "LPTokenSupply": "2769639894561162398235310" + "LPTokenSupply": "3083484668638492355471150" }, { - "type": "mintMulti", - "inputQtys": [ - "53623966153749848064", - "77547014898437881856" - ], - "expectedQty": "130956655433944798190", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3014622928858689568768", + "expectedQty": "3030055074201285949888", + "swapFee": "1808773757315213741", "reserves": [ - "1010162913894673720047257", - "1764662104802568154491621" + "709818441842035499390027", + "2378148512237085379934692" ], - "LPTokenSupply": "2769770851216596343033500" + "LPTokenSupply": "3080470226587009397423756" }, { "type": "mintMulti", "inputQtys": [ - "12460193144140701696", - "27676512487270375424" + "3468817524233172992", + "17517415689587054592" ], - "expectedQty": "40054588026183593902", + "expectedQty": "20916069473627939584", "reserves": [ - "1010175374087817860748953", - "1764689781315055424867045" + "709821910659559732563019", + "2378166029652774966989284" ], - "LPTokenSupply": "2769810905804622526627402" + "LPTokenSupply": "3080491142656483025363340" }, { - "type": "redeemMasset", - "inputQty": "2664852400321621865267", - "expectedQtys": [ - "971312909405973780542", - "1696800386998058747100" - ], - "redemptionFee": "1598911440192973119", + "type": "redeem", + "inputIndex": 0, + "inputQty": "33491812308806239518720", + "expectedQty": "33174701890232928605957", + "swapFee": "20095087385283743711", "reserves": [ - "1009204061178411886968411", - "1762992980928057366119945" + "676647208769326803957062", + "2378166029652774966989284" ], - "LPTokenSupply": "2767146213295444924059446" + "LPTokenSupply": "3047001339856415314218991" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4840611912997984", - "expectedQty": "4824411510466649", + "inputQty": "69291214845671884455936", + "expectedQty": "68871759708502375776208", "reserves": [ - "1009204061178411886968411", - "1762992985768669279117929" + "676647208769326803957062", + "2447457244498446851445220" ] }, { "type": "redeemBassets", "inputQtys": [ - "2941381022315850498048", - "3562428097888213532672" + "2572836595452941434880", + "3375727005848221253632" ], - "expectedQty": "6494364828271803728936", - "swapFee": "3898958271926237980", + "expectedQty": "5953714765202016302437", + "swapFee": "3574373483211136463", "reserves": [ - "1006262680156096036470363", - "1759430557670781065585257" + "674074372173873862522182", + "2444081517492598630191588" ], - "LPTokenSupply": "2760648344229139897182976" + "LPTokenSupply": "3109916167863580783669944" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "239795532451046100041728", - "expectedQty": "240399640335680944001726", - "swapFee": "143877319470627660025", + "inputQty": "7557696233980437725184", + "expectedQty": "7511110529146859930193", "reserves": [ - "1006262680156096036470363", - "1519030917335100121583531" - ], - "LPTokenSupply": "2520867199510040859907250" + "674074372173873862522182", + "2451639213726579067916772" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "1633504120432162816", - "expectedQty": "1637298559017316119", - "swapFee": "980102472259297", - "reserves": [ - "1006262680156096036470363", - "1519029280036541104267412" - ], - "LPTokenSupply": "2520865566103930674970363" - }, - { - "type": "redeemMasset", - "inputQty": "2732340873308684261785", - "expectedQtys": [ - "1090023607618349449526", - "1645472706636087087893" - ], - "redemptionFee": "1639404523985210557", + "inputQty": "145699908863252611072", + "outputIndex": 0, + "expectedQty": "143343545121685745302", + "swapFee": "0", "reserves": [ - "1005172656548477687020837", - "1517383807329905017179519" + "673931028628752176776880", + "2451784913635442320527844" ], - "LPTokenSupply": "2518133389171074389229633" + "LPTokenSupply": "3117427278392727643600137", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "43437004188918768", - "expectedQty": "43410826832937364", - "swapFee": "26062202513351", - "reserves": [ - "1005172613137650854083473", - "1517383807329905017179519" + "type": "mintMulti", + "inputQtys": [ + "9747223618217523200", + "59771953836720529408" ], - "LPTokenSupply": "2518133345736676420562200" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "244892192273140023296", - "expectedQty": "245461127619251224026", - "swapFee": "146935315363884013", + "expectedQty": "69249174005624329237", "reserves": [ - "1005172613137650854083473", - "1517138346202285765955493" + "673940775852370394300080", + "2451844685589279041057252" ], - "LPTokenSupply": "2517888468237934816927305" + "LPTokenSupply": "3117496527566733267929374" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "61134329763820321374208", - "expectedQty": "61088079571227555003948", - "swapFee": "36680597858292192824", + "inputQty": "101205632589412843520", + "expectedQty": "102234333774377457513", "reserves": [ - "944084533566423299079525", - "1517138346202285765955493" - ], - "LPTokenSupply": "2456757806533900324772379" + "674041981484959807143600", + "2451844685589279041057252" + ] }, { "type": "mintMulti", "inputQtys": [ - "25409115573789887823872", - "14879312484083368460288" + "334658279166051876864", + "336059052494768111616" ], - "expectedQty": "40248863613235404236547", + "expectedQty": "672042560039288538475", "reserves": [ - "969493649140213186903397", - "1532017658686369134415781" + "674376639764125859020464", + "2452180744641773809168868" ], - "LPTokenSupply": "2497006670147135729008926" + "LPTokenSupply": "3118270804460546933925362" }, { "type": "mint", "inputIndex": 0, - "inputQty": "949922885024278", - "expectedQty": "950130088818489", + "inputQty": "248673960232753364992", + "expectedQty": "251198206144221861604", "reserves": [ - "969493650090136071927675", - "1532017658686369134415781" + "674625313724358612385456", + "2452180744641773809168868" ] }, { - "type": "mintMulti", - "inputQtys": [ - "4674527449304315461632", - "7689237010436431282176" + "type": "redeemMasset", + "inputQty": "26591511610272404157235", + "expectedQtys": [ + "5749051397757177803281", + "20897100732416531667005" ], - "expectedQty": "12341113720814290607580", + "redemptionFee": "15954906966163442494", "reserves": [ - "974168177539440387389307", - "1539706895696805565697957" + "668876262326601434582175", + "2431283643909357277501863" ], - "LPTokenSupply": "2509347784818080108434995" + "LPTokenSupply": "3091932086547115367973980" }, { "type": "redeemMasset", - "inputQty": "415403185879047372", + "inputQty": "7249238363568266444", "expectedQtys": [ - "161169274119756879", - "254733677878316422" + "1567283504170687307", + "5696884406997425141" ], - "redemptionFee": "249241911527428", + "redemptionFee": "4349543018140959", "reserves": [ - "974168016370166267632428", - "1539706640963127687381535" + "668874695043097263894868", + "2431277947024950280076722" ], - "LPTokenSupply": "2509347369439818420540365" + "LPTokenSupply": "3091924837743706101521631" }, { - "type": "mintMulti", - "inputQtys": [ - "26264008768620391825408", - "8627271002269538058240" + "type": "redeemMasset", + "inputQty": "11259826993651602214092", + "expectedQtys": [ + "2434371756624406883578", + "8848644463011053975671" ], - "expectedQty": "34869349597592242440546", + "redemptionFee": "6755896196190961328", "reserves": [ - "1000432025138786659457836", - "1548333911965397225439775" + "666440323286472857011290", + "2422429302561939226101051" ], - "LPTokenSupply": "2544216719037410662980911" + "LPTokenSupply": "3080665686339674118403671" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2875268535258699005952", + "expectedQty": "2844564998665654125604", + "swapFee": "1725161121155219403", + "reserves": [ + "663595758287807202885686", + "2422429302561939226101051" + ], + "LPTokenSupply": "3077790590320527534919659" + }, + { + "type": "mintMulti", "inputQtys": [ - "2546663014305623965696", - "2800361220352830341120" + "362855248042092789760", + "5066334937261862289408" ], - "expectedQty": "5338880435965010817189", - "swapFee": "3205251412426462367", + "expectedQty": "5401460727003064390418", "reserves": [ - "997885362124481035492140", - "1545533550745044395098655" + "663958613535849295675446", + "2427495637499201088390459" ], - "LPTokenSupply": "2538874953875174468347590" + "LPTokenSupply": "3083192051047530599310077" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2854141452638771740672", - "4271662522663106510848" + "2561160037376629669888", + "1116813970741096611840" ], - "expectedQty": "7113256040325250761507", + "expectedQty": "3697421021736923576449", + "swapFee": "2219784483732393582", "reserves": [ - "1000739503577119807232812", - "1549805213267707501609503" + "661397453498472666005558", + "2426378823528459991778619" ], - "LPTokenSupply": "2545988209915499719109097" + "LPTokenSupply": "3079492632219758316579403" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "112362244576238421147648", - "expectedQty": "112247249931620871397584", - "swapFee": "67417346745743052688", + "inputQty": "1712140309718604185600", + "expectedQty": "1693546428766310697322", + "swapFee": "1027284185831162511", "reserves": [ - "888492253645498935835228", - "1549805213267707501609503" + "659703907069706355308236", + "2426378823528459991778619" ], - "LPTokenSupply": "2433632707073935872266717" + "LPTokenSupply": "3077780594638458295510054" }, { "type": "mintMulti", "inputQtys": [ - "27550026456948656832512", - "71815886885953806336" + "2879818523836116107264", + "1110300734794381262848" ], - "expectedQty": "27639508354794995079676", + "expectedQty": "4013020946349693134479", "reserves": [ - "916042280102447592667740", - "1549877029154593455415839" + "662583725593542471415500", + "2427489124263254373041467" ], - "LPTokenSupply": "2461272215428730867346393" + "LPTokenSupply": "3081793615584807988644533" }, { - "type": "redeemBassets", - "inputQtys": [ - "406017184933374400", - "268428570529353888" + "type": "redeem", + "inputIndex": 1, + "inputQty": "73494017187320592", + "expectedQty": "73910066131622839", + "swapFee": "44096410312392", + "reserves": [ + "662583725593542471415500", + "2427489050353188241418628" + ], + "LPTokenSupply": "3081793542095200442355180" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "14475837352843843469312", + "expectedQty": "14557516802794229682232", + "swapFee": "8685502411706306081", + "reserves": [ + "662583725593542471415500", + "2412931533550394011736396" ], - "expectedQty": "673780018575290455", - "swapFee": "404510717575719", + "LPTokenSupply": "3067318573292597769516476" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "933240053280887668736", + "expectedQty": "938489819446167736946", + "swapFee": "559944031968532601", "reserves": [ - "916041874085262659293340", - "1549876760726022926061951" + "662583725593542471415500", + "2411993043730947843999450" ], - "LPTokenSupply": "2461271541284652646237789" + "LPTokenSupply": "3066385389233720078701000" }, { "type": "redeemMasset", - "inputQty": "3587120944135924193689", + "inputQty": "90395040425640945254", "expectedQtys": [ - "1334262134574295421620", - "2257475267883790563260" + "19520816366060962841", + "71061318689514101193" ], - "redemptionFee": "2152272566481554516", + "redemptionFee": "54237024255384567", "reserves": [ - "914707611950688363871720", - "1547619285458139135498691" + "662564204777176410452659", + "2411921982412258329898257" ], - "LPTokenSupply": "2457684635567773370199551" + "LPTokenSupply": "3066294999616996863294202" }, { "type": "mintMulti", "inputQtys": [ - "20040914331638171697152", - "134455932415108267900928" + "1040466077679215", + "454765982694669" ], - "expectedQty": "154049511997712158731732", + "expectedQty": "1502997409796041", "reserves": [ - "934748526282326535568872", - "1682075217873247403399619" + "662564205817642488131874", + "2411921982867024312592926" ], - "LPTokenSupply": "2611734147565485528931283" + "LPTokenSupply": "3066295001119994273090243" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "52198309389707542528", - "expectedQty": "52118545792935493676", - "swapFee": "31318985633824525", + "inputQty": "44223745613824322961408", + "expectedQty": "43718604527270076438483", + "swapFee": "26534247368294593776", "reserves": [ - "934696407736533600075196", - "1682075217873247403399619" + "618845601290372411693391", + "2411921982867024312592926" ], - "LPTokenSupply": "2611681952387994384771207" + "LPTokenSupply": "3022073908930906779588212" }, { - "type": "redeemBassets", - "inputQtys": [ - "77254479314562033123328", - "111434586138599680376832" + "type": "redeemMasset", + "inputQty": "4899279886869568", + "expectedQtys": [ + "1002648763764702", + "3907776979227202" ], - "expectedQty": "188366992351880766555524", - "swapFee": "113088048240072503435", + "redemptionFee": "2939567932121", "reserves": [ - "857441928421971566951868", - "1570640631734647723022787" + "618845600287723647928689", + "2411921978959247333365724" ], - "LPTokenSupply": "2423213180792697552962590" + "LPTokenSupply": "3022073904031920849511856" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "328092311290208086654976", - "outputIndex": 0, - "expectedQty": "325144533200947711820202", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "8357953494811642796441", + "expectedQtys": [ + "1710474178387394228312", + "6666493651044313249794" + ], + "redemptionFee": "5014772096886985677", "reserves": [ - "532297395221023855131666", - "1898732943024855809677763" + "617135126109336253700377", + "2405255485308203020115930" ], - "LPTokenSupply": "2423213180792697552962590", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3013716452014318895413982" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "6871829595303277756416", - "expectedQty": "6825906075815238892783", + "type": "redeemMasset", + "inputQty": "4739096372120344382668", + "expectedQtys": [ + "969868295869975078305", + "3780016628407704481785" + ], + "redemptionFee": "2843457823272206629", "reserves": [ - "532297395221023855131666", - "1905604772620159087434179" - ] + "616165257813466278622072", + "2401475468679795315634145" + ], + "LPTokenSupply": "3008977639987980878251976" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "25635521609174196224", - "expectedQty": "25792786737145335321", - "swapFee": "15381312965504517", + "type": "redeemMasset", + "inputQty": "7835999051543958519808", + "expectedQtys": [ + "1603658780799196171416", + "6250185601000063438009" + ], + "redemptionFee": "4701599430926375111", "reserves": [ - "532297395221023855131666", - "1905578979833421942098858" + "614561599032667082450656", + "2395225283078795252196136" ], - "LPTokenSupply": "2430013452885034914209600" + "LPTokenSupply": "3001142111096380012369679" }, { - "type": "mintMulti", - "inputQtys": [ - "132444095533732640", - "147938756247106144" + "type": "redeemMasset", + "inputQty": "589407551750216876032", + "expectedQtys": [ + "120624048357643962329", + "470126624944215530097" ], - "expectedQty": "280609868205309309", + "redemptionFee": "353644531050130125", "reserves": [ - "532297527665119388864306", - "1905579127772178189205002" + "614440974984309438488327", + "2394755156453851036666039" ], - "LPTokenSupply": "2430013733494903119518909" + "LPTokenSupply": "3000552738909082900506659" }, { - "type": "mintMulti", - "inputQtys": [ - "18709528003469950976", - "93557095496254144512" + "type": "redeemMasset", + "inputQty": "60449813620085952", + "expectedQtys": [ + "12371239549147330", + "48216331443069740" ], - "expectedQty": "111812346047478451495", + "redemptionFee": "36269888172051", "reserves": [ - "532316237193122858815282", - "1905672684867674443349514" + "614440962613069889340997", + "2394755108237519593596299" ], - "LPTokenSupply": "2430125545840950597970404" + "LPTokenSupply": "3000552678462896269237912" }, { "type": "mintMulti", "inputQtys": [ - "618086823831213440", - "203174624821405120" + "7285295652741966848", + "5380597413650624512" ], - "expectedQty": "825582294323511643", + "expectedQty": "12715959039468007101", + "reserves": [ + "614448247908722631307845", + "2394760488834933244220811" + ], + "LPTokenSupply": "3000565394421935737245013" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "9876655627403796676608", + "expectedQty": "9753966858398465429992", + "swapFee": "5925993376442278005", "reserves": [ - "532316855279946690028722", - "1905672888042299264754634" + "604694281050324165877853", + "2394760488834933244220811" ], - "LPTokenSupply": "2430126371423244921482047" + "LPTokenSupply": "2990689331393869584796205" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "619593293367491584", - "expectedQty": "623394310853341631", - "swapFee": "371755976020494", + "inputQty": "82378664198590709760", + "expectedQty": "82887441567570943007", + "swapFee": "49427198519154425", "reserves": [ - "532316855279946690028722", - "1905672264647988411413003" + "604694281050324165877853", + "2394677601393365673277804" ], - "LPTokenSupply": "2430125751867127151592512" + "LPTokenSupply": "2990606957672390846001887" }, { - "type": "redeemMasset", - "inputQty": "233882603709925320294", - "expectedQtys": [ - "51201034442224920206", - "183297579796756326839" + "type": "mintMulti", + "inputQtys": [ + "107644674425789", + "1527578929133323" + ], + "expectedQty": "1626246796391191", + "reserves": [ + "604694281157968840303642", + "2394677602920944602411127" ], - "redemptionFee": "140329562225955192", + "LPTokenSupply": "2990606959298637642393078" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "3275831446447491383296", + "expectedQty": "3234264946090717629042", + "swapFee": "1965498867868494829", "reserves": [ - "532265654245504465108516", - "1905488967068191655086164" + "601460016211878122674600", + "2394677602920944602411127" ], - "LPTokenSupply": "2429891883296373448867737" + "LPTokenSupply": "2987331324402076937859264" }, { "type": "redeemMasset", - "inputQty": "9498439891249", + "inputQty": "37726838140753143241113", "expectedQtys": [ - "2079376428953", - "7444081375812" + "7591247004880321705771", + "30224102501975431291907" ], - "redemptionFee": "5699063934", + "redemptionFee": "22636102884451885944", "reserves": [ - "532265654243425088679563", - "1905488967060747573710352" + "593868769206997800968829", + "2364453500418969171119220" ], - "LPTokenSupply": "2429891883286875578882881" + "LPTokenSupply": "2949606749871612239806745" }, { - "type": "redeemMasset", - "inputQty": "57164586451892473", - "expectedQtys": [ - "12514338670341942", - "44800813421435973" + "type": "redeemBassets", + "inputQtys": [ + "85949553181170663424", + "2295486263619346432" ], - "redemptionFee": "34298751871135", + "expectedQty": "89287409465670145695", + "swapFee": "53604608444468768", "reserves": [ - "532265641729086418337621", - "1905488922259934152274379" + "593782819653816630305405", + "2364451204932705551772788" ], - "LPTokenSupply": "2429891826125719002177521" + "LPTokenSupply": "2949517414217998969639157" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "478351089056518528", - "expectedQty": "473710246462703892", - "swapFee": "287010653433911", + "type": "mintMulti", + "inputQtys": [ + "1691705910293228", + "8326358490638643" + ], + "expectedQty": "9982453622744683", "reserves": [ - "532265168018839955633729", - "1905488922259934152274379" + "593782821345522540598633", + "2364451213259064042411431" ], - "LPTokenSupply": "2429891347803331011002384" + "LPTokenSupply": "2949517424200452592383840" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4450619623188990001152", - "expectedQty": "4491130375702078752913", + "inputQty": "509388774175079781105664", + "expectedQty": "512520541773816718730528", + "reserves": [ + "1103171595520602321704297", + "2364451213259064042411431" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "4427280496112314368", + "expectedQty": "4411165714289259719", "reserves": [ - "536715787642028945634881", - "1905488922259934152274379" + "1103171595520602321704297", + "2364455640539560154725799" ] }, { "type": "redeemBassets", "inputQtys": [ - "114872605365510750208", - "459817648669094576128" + "131294535684910743552", + "50983178214295650304" ], - "expectedQty": "572670657753463745956", - "swapFee": "343808679859994244", + "expectedQty": "182451788854534726108", + "swapFee": "109536795389954808", "reserves": [ - "536600915036663434884673", - "1905029104611265057698251" + "1103040300984917410960745", + "2364404657361345859075495" ], - "LPTokenSupply": "2433809498093467752014520" + "LPTokenSupply": "3461859826768013214688650" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "11755515829608595324928", + "expectedQty": "11787205580210781047484", + "reserves": [ + "1114795816814526006285673", + "2364404657361345859075495" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "69618811165394587353088", - "84699667305222979452928" + "27092505190263156637696", + "33197022129569719648256" ], - "expectedQty": "154430291529577115135956", - "swapFee": "92713803199666068722", + "expectedQty": "60241428050441273851136", "reserves": [ - "466982103871268847531585", - "1820329437306042078245323" + "1141888322004789162923369", + "2397601679490915578723751" ], - "LPTokenSupply": "2279295764141010937416713" + "LPTokenSupply": "3533888460398665269587270" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "120017539905374672", - "outputIndex": 1, - "expectedQty": "122143009298604160", - "swapFee": "97082765417855", + "type": "redeemBassets", + "inputQtys": [ + "315524826858588340224", + "5492904286575819489280" + ], + "expectedQty": "5789701027447769740169", + "swapFee": "3475906160164760700", "reserves": [ - "466982223888808752906257", - "1820329315163032779641163" + "1141572797177930574583145", + "2392108775204339759234471" ], - "LPTokenSupply": "2279295764150719213958498", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3528095631055673351562470" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "7978377306446604", - "outputIndex": 1, - "expectedQty": "8119671583067185", - "swapFee": "6453747753035", + "type": "mintMulti", + "inputQtys": [ + "1117916236924935296", + "1087377703113078272" + ], + "expectedQty": "2204284240272467748", "reserves": [ - "466982231867186059352861", - "1820329307043361196573978" + "1141573915094167499518441", + "2392109862582042872312743" ], - "LPTokenSupply": "2279295764151364588733801", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3528097835339913624030218" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "44680010508025569280", - "expectedQty": "44979706286171821059", - "swapFee": "26808006304815341", + "inputIndex": 0, + "inputQty": "20509050001231626371072", + "expectedQty": "20443053583407536679566", + "swapFee": "12305430000738975822", "reserves": [ - "466982231867186059352861", - "1820284327337075024752919" + "1121130861510759962838875", + "2392109862582042872312743" ], - "LPTokenSupply": "2279251086821657193646055" + "LPTokenSupply": "3507590015881682071556728" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "479534150870042", - "expectedQty": "484871545856487", + "type": "redeemMasset", + "inputQty": "265356194717123215360", + "expectedQtys": [ + "84764900810157932181", + "180859311066981404493" + ], + "redemptionFee": "159213716830273929", "reserves": [ - "466982232346720210222903", - "1820284327337075024752919" - ] + "1121046096609949804906694", + "2391929003270975890908250" + ], + "LPTokenSupply": "3507324675608336631368760" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2297504636903344896", - "expectedQty": "2312915215142308889", - "swapFee": "1378502782142006", + "inputQty": "27575330683509518336", + "expectedQty": "27659089113232697136", + "swapFee": "16545198410105711", + "reserves": [ + "1121046096609949804906694", + "2391901344181862658211114" + ], + "LPTokenSupply": "3507297101932172962860995" + }, + { + "type": "mintMulti", + "inputQtys": [ + "4837468382248718827520", + "7843399900262215712768" + ], + "expectedQty": "12665467520759435289035", "reserves": [ - "466982232346720210222903", - "1820282014421859882444030" + "1125883564992198523734214", + "2399744744082124873923882" ], - "LPTokenSupply": "2279248789939742114371846" + "LPTokenSupply": "3519962569452932398150030" }, { "type": "redeemMasset", - "inputQty": "756377923888495", + "inputQty": "30401335112375743283", "expectedQtys": [ - "154876959427373", - "603705503477649" + "9718235879998726152", + "20713763127840723602" ], - "redemptionFee": "453826754333", + "redemptionFee": "18240801067425445", "reserves": [ - "466982232191843250795530", - "1820282013818154378966381" + "1125873846756318525008062", + "2399724030318997033200280" ], - "LPTokenSupply": "2279248789183409573158784" + "LPTokenSupply": "3519932169941900129149291" }, { "type": "redeemBassets", "inputQtys": [ - "31693770011106471936", - "37008406109406068736" + "74314589379309380567040", + "46091314076826399145984" ], - "expectedQty": "68786313966442820780", - "swapFee": "41296566319657486", + "expectedQty": "120449586782243205506390", + "swapFee": "72313139953317914052", "reserves": [ - "466950538421832144323594", - "1820245005412044972897645" + "1051559257377009144441022", + "2353632716242170634054296" ], - "LPTokenSupply": "2279179965702533442646265" + "LPTokenSupply": "3399417501333698937520253" }, { - "type": "mintMulti", - "inputQtys": [ - "9061994143039543574528", - "266914281239976411136" + "type": "redeemMasset", + "inputQty": "39697802566905250814361", + "expectedQtys": [ + "12272556994047969773149", + "27468819707971983193023" ], - "expectedQty": "9425704173520311904427", + "redemptionFee": "23818681540143150488", "reserves": [ - "476012532564871687898122", - "1820511919693284949308781" + "1039286700382961174667873", + "2326163896534198650861273" ], - "LPTokenSupply": "2288605669876053754550692" + "LPTokenSupply": "3359722080634947701020940" }, { "type": "mint", "inputIndex": 1, - "inputQty": "158617515014724576", - "expectedQty": "157485458280892236", + "inputQty": "5549415162842620887040", + "expectedQty": "5528076467480510579378", "reserves": [ - "476012532564871687898122", - "1820512078310799964033357" + "1039286700382961174667873", + "2331713311697041271748313" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "38780184523453667213312", - "outputIndex": 1, - "expectedQty": "39386426197822640932649", - "swapFee": "31326443559275451250", + "type": "redeemBassets", + "inputQtys": [ + "647535913997542784", + "764085643811988480" + ], + "expectedQty": "1410690584461600283", + "swapFee": "846922504179467", "reserves": [ - "514792717088325355111434", - "1781125652112977323100708" + "1039286052847047177125089", + "2331712547611397459759833" ], - "LPTokenSupply": "2288608960005867962988053", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3365248745649613496238513" }, { "type": "redeemMasset", - "inputQty": "981052810703848243", + "inputQty": "7214939859372806976307", "expectedQtys": [ - "220542621105031763", - "763052985784583372" + "2226844997964339125945", + "4996085927560592232359" ], - "redemptionFee": "588631686422308", + "redemptionFee": "4328963915623684185", "reserves": [ - "514792496545704250079671", - "1781124889059991538517336" + "1037059207849082837999144", + "2326716461683836867527474" ], - "LPTokenSupply": "2288607979011920427782040" + "LPTokenSupply": "3358034238686632251630624" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "131339372047900", - "outputIndex": 1, - "expectedQty": "133212782898570", - "swapFee": "105957822602", + "inputQty": "6148609818349001506816", + "expectedQty": "6167532190845465307556", "reserves": [ - "514792496677043622127571", - "1781124888926778755618766" - ], - "LPTokenSupply": "2288607979011931023564300", - "hardLimitError": false, - "insufficientLiquidityError": false + "1043207817667431839505960", + "2326716461683836867527474" + ] }, { "type": "mintMulti", "inputQtys": [ - "83140787338188731449344", - "7235264197821563142144" + "137966841990083023732736", + "124919599380133849333760" + ], + "expectedQty": "262803737444497081273327", + "reserves": [ + "1181174659657514863238696", + "2451636061063970716861234" ], - "expectedQty": "90919555298312230027366", + "LPTokenSupply": "3627005508321974798211507" + }, + { + "type": "redeemMasset", + "inputQty": "1344713742670847180", + "expectedQtys": [ + "437658224840143916", + "908399683032866187" + ], + "redemptionFee": "806828245602508", "reserves": [ - "597933284015232353576915", - "1788360153124600318760910" + "1181174221999290023094780", + "2451635152664287683995047" ], - "LPTokenSupply": "2379527534310243253591666" + "LPTokenSupply": "3627004163688914951924577" }, { "type": "redeemBassets", "inputQtys": [ - "7435661699863710531584", - "12481283073326266187776" + "2269136814134266691584", + "8471122452617920249856" ], - "expectedQty": "19889070322163758420703", - "swapFee": "11940606557232594609", + "expectedQty": "10715775741691103355212", + "swapFee": "6433325440278829310", "reserves": [ - "590497622315368643045331", - "1775878870051274052573134" + "1178905085185155756403196", + "2443164030211669763745191" ], - "LPTokenSupply": "2359627717442177985835813" + "LPTokenSupply": "3616282597954327597622985" }, { "type": "mintMulti", "inputQtys": [ - "2426045739689132032", - "4900756385779179520" + "42282151206174", + "162767923431180" ], - "expectedQty": "7312930938632570729", + "expectedQty": "204576310883727", "reserves": [ - "590500048361108332177363", - "1775883770807659831752654" + "1178905085227437907609370", + "2443164030374437687176371" ], - "LPTokenSupply": "2359635030373116618406542" + "LPTokenSupply": "3616282598158903908506712" }, { "type": "redeemBassets", "inputQtys": [ - "17845543404651002462208", - "89743043083141084348416" + "2378858326945805312", + "874560655788000128" ], - "expectedQty": "107177894526746812837598", - "swapFee": "64345343922401528619", + "expectedQty": "3256110747020874066", + "swapFee": "1954839351823618", "reserves": [ - "572654504956457329715155", - "1686140727724518747404238" + "1178902706369110961804058", + "2443163155813781899176243" ], - "LPTokenSupply": "2252399225036839644193185" + "LPTokenSupply": "3616279340288801470991388" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "291153897961992552448", - "expectedQty": "292648025207923987850", - "swapFee": "174692338777195531", + "inputQty": "8941646337072741376", + "expectedQty": "8909966269021566685", "reserves": [ - "572654504956457329715155", - "1685848079699310823416388" - ], - "LPTokenSupply": "2252108088608111529360290" + "1178902706369110961804058", + "2443172097460118971917619" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1750419303034374324224", - "1778598343819317477376" + "type": "redeemMasset", + "inputQty": "378105393157019480883", + "expectedQtys": [ + "123187641795803783498", + "255295545223040112680" ], - "expectedQty": "3528730462012503430127", - "swapFee": "2118509382837204380", + "redemptionFee": "226863235894211688", "reserves": [ - "570904085653422955390931", - "1684069481355491505939012" + "1178779518727315158020560", + "2442916801914895931804939" ], - "LPTokenSupply": "2248577451487654472446220" + "LPTokenSupply": "3615910167548237062498358" }, { - "type": "redeemBassets", - "inputQtys": [ - "1011014370295237312512", - "661635107841635123200" + "type": "redeemMasset", + "inputQty": "4306899687890400942489", + "expectedQtys": [ + "1403198302808999626577", + "2908004979634821750642" ], - "expectedQty": "1674588739689776149370", - "swapFee": "1005356457688478776", + "redemptionFee": "2584139812734240565", "reserves": [ - "569893071283127718078419", - "1683407846247649870815812" + "1177376320424506158393983", + "2440008796935261110054297" ], - "LPTokenSupply": "2246901957927152776665950" + "LPTokenSupply": "3611603526274327934979925" }, { - "type": "redeemBassets", - "inputQtys": [ - "23723217265023627264", - "7308257234703637504" - ], - "expectedQty": "31124161078393254623", - "swapFee": "18685708071879080", + "type": "mint", + "inputIndex": 0, + "inputQty": "2518458141452136349696", + "expectedQty": "2524565417569088787154", "reserves": [ - "569869348065862694451155", - "1683400537990415167178308" - ], - "LPTokenSupply": "2246870816948937118720154" + "1179894778565958294743679", + "2440008796935261110054297" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "6877349967781550882816", - "8028103285418938597376" - ], - "expectedQty": "14898296756131871142984", + "type": "redeem", + "inputIndex": 0, + "inputQty": "679826242621413654528", + "expectedQty": "677778882203215880873", + "swapFee": "407895745572848192", "reserves": [ - "576746698033644245333971", - "1691428641275834105775684" + "1179216999683755078862806", + "2440008796935261110054297" ], - "LPTokenSupply": "2261769113705068989863138" + "LPTokenSupply": "3613448306238850167397370" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "68737089020255654641664", - "outputIndex": 0, - "expectedQty": "67849831199560015053120", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "40021191716258", + "expectedQty": "40118084210179", "reserves": [ - "508896866834084230280851", - "1760165730296089760417348" - ], - "LPTokenSupply": "2261769113705068989863138", - "hardLimitError": false, - "insufficientLiquidityError": false + "1179216999723776270579064", + "2440008796935261110054297" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "49666111872377872384", - "expectedQty": "49222929327711573864", - "swapFee": "29799667123426723", + "inputQty": "408120838424169298264064", + "expectedQty": "408682491898935394350816", "reserves": [ - "508847643904756518706987", - "1760165730296089760417348" - ], - "LPTokenSupply": "2261719450573163324333426" + "1587337838147945568843128", + "2440008796935261110054297" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "81200328951243407360", - "expectedQty": "81688454006253424360", - "swapFee": "48720197370746044", + "type": "redeemMasset", + "inputQty": "2680459494572564466892", + "expectedQtys": [ + "1057211243457491561994", + "1625113868176257150885" + ], + "redemptionFee": "1608275696743538680", "reserves": [ - "508847643904756518706987", - "1760084041842083506992988" + "1586280626904488077281134", + "2438383683067084852903412" ], - "LPTokenSupply": "2261638255116231818000670" + "LPTokenSupply": "4019450499510900755845341" }, { "type": "mintMulti", "inputQtys": [ - "774354023684470016", - "2395941386168856064" + "76379185894502168526848", + "88265973015872320569344" ], - "expectedQty": "3161053057074027092", + "expectedQty": "164466569223891167460586", "reserves": [ - "508848418258780203177003", - "1760086437783469675849052" + "1662659812798990245807982", + "2526649656082957173472756" ], - "LPTokenSupply": "2261641416169288892027762" + "LPTokenSupply": "4183917068734791923305927" }, { "type": "redeemBassets", "inputQtys": [ - "27109618916859920384", - "27164225855085420544" + "5731435861749618688", + "16438488921472331776" ], - "expectedQty": "54323007167955096936", - "swapFee": "32613372324167558", + "expectedQty": "22132263972514530539", + "swapFee": "13287330781977905", "reserves": [ - "508821308639863343256619", - "1760059273557614590428508" + "1662654081363128496189294", + "2526633217594035701140980" ], - "LPTokenSupply": "2261587063810085845180022" + "LPTokenSupply": "4183894924512221704995272" + }, + { + "type": "mintMulti", + "inputQtys": [ + "17079710007368272052224", + "51876389105301874278400" + ], + "expectedQty": "68836315523668863331252", + "reserves": [ + "1679733791370496768241518", + "2578509606699337575419380" + ], + "LPTokenSupply": "4252731240035890568326524" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "4108906931836636672", + "expectedQty": "4098633224038033115", + "reserves": [ + "1679733791370496768241518", + "2578513715606269412056052" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2867426867510757556224", - "5253836511251006488576" + "1061155576217042550784", + "5388773379325884891136" ], - "expectedQty": "8110854556209139878303", - "swapFee": "4869434394362101187", + "expectedQty": "6437054688863338580988", + "swapFee": "3864551544244549878", "reserves": [ - "505953881772352585700395", - "1754805437046363583939932" + "1678672635794279725690734", + "2573124942226943527164916" ], - "LPTokenSupply": "2253471826762921779410649" + "LPTokenSupply": "4246294805883861447683759" }, { "type": "mintMulti", "inputQtys": [ - "17349338689892868161536", - "10238899476243962396672" + "6999296282786318516224", + "3824206392018965889024" + ], + "expectedQty": "10817765631084500719558", + "reserves": [ + "1685671932077066044206958", + "2576949148618962493053940" ], - "expectedQty": "27663391635637543041600", + "LPTokenSupply": "4257112571514945948403317" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "1413925926647859249152", + "outputIndex": 0, + "expectedQty": "1409645718269758477322", + "swapFee": "0", "reserves": [ - "523303220462245453861931", - "1765044336522607546336604" + "1684262286358796285729636", + "2578363074545610352303092" ], - "LPTokenSupply": "2281135218398559322452249" + "LPTokenSupply": "4257112571514945948403317", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "79122153459582813339648", + "inputQty": "238390980292157210624", "outputIndex": 1, - "expectedQty": "80029858386298975609008", - "swapFee": "63718367999278227706", + "expectedQty": "238924656854770946908", + "swapFee": "190816121480548064", "reserves": [ - "602425373921828267201579", - "1685014478136308570727596" + "1684500677339088442940260", + "2578124149888755581356184" ], - "LPTokenSupply": "2281141590235359250275019", + "LPTokenSupply": "4257112590596558096458123", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "7991481975280843620352", + "expectedQty": "8006595789915274944086", + "swapFee": "4794889185168506172", + "reserves": [ + "1684500677339088442940260", + "2570117554098840306412098" + ], + "LPTokenSupply": "4249121588110195769688388" + }, { "type": "redeemBassets", "inputQtys": [ - "61192243593971368", - "85701995309612672" + "59276815001263", + "36829566586895" + ], + "expectedQty": "96046049655443", + "swapFee": "57662227129", + "reserves": [ + "1684500677279811627938997", + "2570117554062010739825203" + ], + "LPTokenSupply": "4249121588014097824028527" + }, + { + "type": "redeemMasset", + "inputQty": "219271535890632", + "expectedQtys": [ + "86874763463298", + "132548687924879" ], - "expectedQty": "146722743063206795", - "swapFee": "88086497736566", + "redemptionFee": "131562921534", "reserves": [ - "602425312729584673230211", - "1685014392434313261114924" + "1684500677192936864475699", + "2570117553929462051900324" ], - "LPTokenSupply": "2281141443433338339105313" + "LPTokenSupply": "4249121587794839444430048" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3636684484840718336000", - "expectedQty": "3616736291600849670530", - "swapFee": "2182010690904431001", + "inputQty": "18733726783761907712", + "expectedQty": "18712668798761631929", + "swapFee": "11240236070257144", "reserves": [ - "598808576437983823559681", - "1685014392434313261114924" + "1684481964524138102843770", + "2570117553929462051900324" ], - "LPTokenSupply": "2277504977149566711212413" + "LPTokenSupply": "4249102855192079289548050" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "4217062930239286", - "outputIndex": 0, - "expectedQty": "4173163920185988", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "81296999982107394048", + "outputIndex": 1, + "expectedQty": "81476828345714976405", + "swapFee": "65071716368694749", "reserves": [ - "598808572264819903373693", - "1685014396651376191354210" + "1684563261524120210237818", + "2570036077101116336923919" ], - "LPTokenSupply": "2277504977149566711212413", + "LPTokenSupply": "4249102861699250926417524", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "179409203943945063628", + "inputQty": "208660996415079972864", "expectedQtys": [ - "47142513970555324890", - "132656442165283979202" + "82674333504878043890", + "126131220246123029020" ], - "redemptionFee": "107645522366367038", + "redemptionFee": "125196597849047983", "reserves": [ - "598761429750849348048803", - "1684881740209210907375008" + "1684480587190615332193928", + "2569909945880870213894899" ], - "LPTokenSupply": "2277325578710175002785488" + "LPTokenSupply": "4248894213222495631349458" }, { - "type": "redeemMasset", - "inputQty": "272791081666407720550", - "expectedQtys": [ - "71680034484776910448", - "201703675688031160829" + "type": "mintMulti", + "inputQtys": [ + "2529687847963250393088", + "27932301551927895785472" ], - "redemptionFee": "163674648999844632", + "expectedQty": "30393615265022401169069", "reserves": [ - "598689749716364571138355", - "1684680036533522876214179" + "1687010275038578582587016", + "2597842247432798109680371" ], - "LPTokenSupply": "2277052803995973495049401" + "LPTokenSupply": "4279287828487518032518527" }, { - "type": "mintMulti", - "inputQtys": [ - "3188969422726017581056", - "3478098057056245776384" - ], - "expectedQty": "6663653719220662813259", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4888154392035713875968", + "expectedQty": "4882401335060866528980", + "swapFee": "2932892635221428325", "reserves": [ - "601878719139090588719411", - "1688158134590579121990563" + "1682127873703517716058036", + "2597842247432798109680371" ], - "LPTokenSupply": "2283716457715194157862660" + "LPTokenSupply": "4274399967384745840785391" }, { "type": "redeemBassets", "inputQtys": [ - "2545043238480183296000", - "12987675167721059778560" + "3414922523421253828608", + "9139887268949646114816" ], - "expectedQty": "15473906550055507058758", - "swapFee": "9289917880761761292", + "expectedQty": "12533759365938250655939", + "swapFee": "7524770481852061630", "reserves": [ - "599333675900610405423411", - "1675170459422858062212003" + "1678712951180096462229428", + "2588702360163848463565555" ], - "LPTokenSupply": "2268234190239045965218738" + "LPTokenSupply": "4261859435725373923273984" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "42737598502790827606016", - "27898954686637509967872" + "7714422664100635648", + "1328068816520165888" ], - "expectedQty": "70704114070049716080393", - "swapFee": "42447937204352441112", + "expectedQty": "9043583042674638585", "reserves": [ - "556596077397819577817395", - "1647271504736220552244131" + "1678720665602760562865076", + "2588703688232664983731443" ], - "LPTokenSupply": "2197491873025512331941343" + "LPTokenSupply": "4261868479308416597912569" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "53810145951321583255552", - "expectedQty": "53433980791817928637487", - "swapFee": "32286087570792949953", + "type": "redeemMasset", + "inputQty": "68171589402871188684", + "expectedQtys": [ + "26836208545455383260", + "41383294709639554177" + ], + "redemptionFee": "40902953641722713", "reserves": [ - "503162096606001649179908", - "1647271504736220552244131" + "1678693829394215107481816", + "2588662304937955344177266" ], - "LPTokenSupply": "2143684955682947827980786" + "LPTokenSupply": "4261800311809309090896156" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2611132760780576915456", - "expectedQty": "2590560198710816293016", - "swapFee": "1566679656468346149", + "type": "mintMulti", + "inputQtys": [ + "71553934731048912", + "382904663461706560" + ], + "expectedQty": "453535141094560814", "reserves": [ - "500571536407290832886892", - "1647271504736220552244131" + "1678693900948149838530728", + "2588662687842618805883826" ], - "LPTokenSupply": "2141073979590132897899944" + "LPTokenSupply": "4261800765344450185456970" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "26897748990800789504", - "expectedQty": "26684590825285876407", - "swapFee": "16138649394480473", + "type": "redeemMasset", + "inputQty": "1528012665030086911590", + "expectedQtys": [ + "601512516229868750727", + "927574113514744803749" + ], + "redemptionFee": "916807599018052146", "reserves": [ - "500544851816465547010485", - "1647271504736220552244131" + "1678092388431919969780001", + "2587735113729104061080077" ], - "LPTokenSupply": "2141047083455007036558487" + "LPTokenSupply": "4260272844360180000350594" }, { "type": "redeemMasset", - "inputQty": "3002456985296587404083", + "inputQty": "5258827264112505074483", "expectedQtys": [ - "701508472076569729283", - "2308634105793364294942" + "2070173307528522828043", + "3192351146054681541335" ], - "redemptionFee": "1801474191177952442", + "redemptionFee": "3155296358467503044", "reserves": [ - "499843343344388977281202", - "1644962870630427187949189" + "1676022215124391446951958", + "2584542762583049379538742" ], - "LPTokenSupply": "2138044806617129566949648" + "LPTokenSupply": "4255014332625703342026415" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1110454445139353665536", - "661369167309441466368" + "155787926068283867136", + "112851790027112775680" ], - "expectedQty": "1775834972987039738666", - "swapFee": "1066140668193139727", + "expectedQty": "268444782941529647753", "reserves": [ - "498732888899249623615666", - "1644301501463117746482821" + "1676178003050459730819094", + "2584655614373076492314422" ], - "LPTokenSupply": "2136268012117541153385226" + "LPTokenSupply": "4255282777408644871674168" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1882959333825133412352", - "expectedQty": "1870969611954032345281", + "inputQty": "6807437913696512000", + "expectedQty": "6790283840968493641", "reserves": [ - "498732888899249623615666", - "1646184460796942879895173" + "1676178003050459730819094", + "2584662421810990188826422" ] }, { "type": "mintMulti", "inputQtys": [ - "71601260846328381440", - "167529611888538779648" + "691747428633151930368", + "2617278124812610830336" ], - "expectedQty": "238596065744264322037", + "expectedQty": "3302825866661681769718", "reserves": [ - "498804490160095951997106", - "1646351990408831418674821" + "1676869750479092882749462", + "2587279699935802799656758" ], - "LPTokenSupply": "2138377577795239450052544" + "LPTokenSupply": "4258592393559147521937527" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1228799892033041596416", - "outputIndex": 0, - "expectedQty": "1211914078893367771263", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "13876834012193399767040", + "6355943113242932412416" + ], + "expectedQty": "20224899240506207563588", + "swapFee": "12142224879231263296", "reserves": [ - "497592576081202584225843", - "1647580790300864460271237" + "1662992916466899482982422", + "2580923756822559867244342" ], - "LPTokenSupply": "2138377577795239450052544", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4238356566316250006236971" }, { "type": "mint", "inputIndex": 0, - "inputQty": "214947076476016600809472", - "expectedQty": "215953025627299444034055", + "inputQty": "243368042439245758464", + "expectedQty": "243514912089107652399", "reserves": [ - "712539652557219185035315", - "1647580790300864460271237" + "1663236284509338728740886", + "2580923756822559867244342" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4697868981818566656", - "27877707655145025536" + "11135847889984649216", + "62266386526751399936" ], - "expectedQty": "32457896590379939974", + "expectedQty": "73250613321930841855", + "swapFee": "43976754045585856", "reserves": [ - "712544350426201003601971", - "1647608668008519605296773" + "1663225148661448744091670", + "2580861490436033115844406" ], - "LPTokenSupply": "2354363061319129274026573" + "LPTokenSupply": "4238526791035938542020243" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1035237570110256512", + "expectedQty": "1033992905512573966", + "swapFee": "621142542066153", + "reserves": [ + "1663224114668543231517704", + "2580861490436033115844406" + ], + "LPTokenSupply": "4238525755860482685970346" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "68613745264683598741504", + "expectedQty": "68648212163855418889854", + "reserves": [ + "1731837859933226830259208", + "2580861490436033115844406" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "12278362514300592", - "9788828031688522" + "1048899575530802118656", + "389996128106802970624" ], - "expectedQty": "22054344012852302", + "expectedQty": "1438380232359809089522", + "swapFee": "863546267176191168", "reserves": [ - "712544362704563517902563", - "1647608677797347636985295" + "1730788960357696028140552", + "2580471494307926312873782" ], - "LPTokenSupply": "2354363083373473286878875" + "LPTokenSupply": "4305734810600337837198625" }, { "type": "redeemMasset", - "inputQty": "290552162420190156", + "inputQty": "5452029306614", "expectedQtys": [ - "87882403560463496", - "203209537975032286" + "2190253409228", + "3265497190747" ], - "redemptionFee": "174331297452114", + "redemptionFee": "3271217583", "reserves": [ - "712544274822159957439067", - "1647608474587809661953009" + "1730788960355505774731324", + "2580471494304660815683035" ], - "LPTokenSupply": "2354362792838743996433930" + "LPTokenSupply": "4305734810594886135013769" }, { "type": "redeemMasset", - "inputQty": "1776373511563679000166", + "inputQty": "776108108362992844", "expectedQtys": [ - "537294138606322714205", - "1242379466644482347589" + "311787287755417158", + "464850554728614363" ], - "redemptionFee": "1065824106938207400", + "redemptionFee": "465664865017795", "reserves": [ - "712006980683553634724862", - "1646366095121165179605420" + "1730788648568218019314166", + "2580471029454106087068672" ], - "LPTokenSupply": "2352586525909591011254504" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "49866702269240213241856", - "expectedQty": "49630572119827332120605", - "reserves": [ - "712006980683553634724862", - "1696232797390405392847276" - ] + "LPTokenSupply": "4305734034533344258522704" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "74838223424390541869056", - "expectedQty": "74528722445870929513208", - "swapFee": "44902934054634325121", + "type": "mintMulti", + "inputQtys": [ + "2411414804694927147008", + "5042394034925754908672" + ], + "expectedQty": "7442615301746181376830", "reserves": [ - "637478258237682705211654", - "1696232797390405392847276" + "1733200063372912946461174", + "2585513423489031841977344" ], - "LPTokenSupply": "2327383364898433264938565" + "LPTokenSupply": "4313176649835090439899534" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4701162882400001024", - "expectedQty": "4723376982385347780", - "swapFee": "2820697729440000", + "type": "mintMulti", + "inputQtys": [ + "16119862162312658944000", + "22587266730577954340864" + ], + "expectedQty": "38659157907451140052013", "reserves": [ - "637478258237682705211654", - "1696228074013423007499496" + "1749319925535225605405174", + "2608100690219609796318208" ], - "LPTokenSupply": "2327378664017620637881541" + "LPTokenSupply": "4351835807742541579951547" }, { - "type": "redeemMasset", - "inputQty": "11569897621541591449", - "expectedQtys": [ - "3167139478770513190", - "8427253523999828085" + "type": "redeemBassets", + "inputQtys": [ + "681857681160500", + "2844536643285599" ], - "redemptionFee": "6941938572924954", + "expectedQty": "3519804543196634", + "swapFee": "2113150616287", "reserves": [ - "637475091098203934698464", - "1696219646759899007671411" + "1749319924853367924244674", + "2608100687375073153032609" ], - "LPTokenSupply": "2327367094814192953582587" + "LPTokenSupply": "4351835804220835201200253" }, { "type": "redeemMasset", - "inputQty": "2785656195125", + "inputQty": "7324333301071182875852", "expectedQtys": [ - "762544494525", - "2029009401631" - ], - "redemptionFee": "1671393717", - "reserves": [ - "637475091097441390203939", - "1696219646757869998269780" + "2942416762623145635961", + "4386915779161794063946" ], - "LPTokenSupply": "2327367094811407464526833" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1195903320033264926720", - "expectedQty": "1190200874442695178626", - "swapFee": "717541992019958956", + "redemptionFee": "4394599980642709725", "reserves": [ - "636284890222998695025313", - "1696219646757869998269780" + "1746377508090744778608713", + "2603713771595911358968663" ], - "LPTokenSupply": "2326171263245573401596008" + "LPTokenSupply": "4344511910379762082595373" }, { "type": "redeemBassets", "inputQtys": [ - "98100702750045388800", - "97316468179989331968" + "642157372822357671936", + "306893962452552843264" ], - "expectedQty": "195312519053508173453", - "swapFee": "117257866151795981", + "expectedQty": "948571038871839945657", + "swapFee": "569484313911450837", "reserves": [ - "636186789520248649636513", - "1696122330289690008937812" + "1745735350717922420936777", + "2603406877633458806125399" ], - "LPTokenSupply": "2325975845194440356806171" + "LPTokenSupply": "4343562826805007722343961" }, { - "type": "redeemBassets", - "inputQtys": [ - "153725189094291872", - "219565187611092416" - ], - "expectedQty": "372770323590568087", - "swapFee": "223796472037563", + "type": "redeem", + "inputIndex": 1, + "inputQty": "32198535653514671030272", + "expectedQty": "32256504978894639825571", + "swapFee": "19319121392108802618", "reserves": [ - "636186635795059555344641", - "1696122110724502397845396" + "1745735350717922420936777", + "2571150372654564166299828" ], - "LPTokenSupply": "2325975472222699941404276" + "LPTokenSupply": "4311366223063632262193950" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "18074356024846471168", - "expectedQty": "17987947982136513968", - "swapFee": "10844613614907882", + "inputIndex": 1, + "inputQty": "40722757065214074880", + "expectedQty": "40795419903447847650", + "swapFee": "24433654239128444", "reserves": [ - "636168647847077418830673", - "1696122110724502397845396" + "1745735350717922420936777", + "2571109577234660718452178" ], - "LPTokenSupply": "2325957398951136456423896" + "LPTokenSupply": "4311325502749932472031914" }, { "type": "mint", "inputIndex": 1, - "inputQty": "143274564608444891136", - "expectedQty": "142513794090377711110", + "inputQty": "9803297595534321123328", + "expectedQty": "9779905500782761597733", "reserves": [ - "636168647847077418830673", - "1696265385289110842736532" + "1745735350717922420936777", + "2580912874830195039575506" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "285955900530321981440", - "outputIndex": 1, - "expectedQty": "288457993100482215726", - "swapFee": "229725355989385883", + "type": "redeemMasset", + "inputQty": "1010346667549672446361", + "expectedQtys": [ + "407937194015060375083", + "603098491259052855843" + ], + "redemptionFee": "606208000529803467", "reserves": [ - "636454603747607740812113", - "1695976927296010360520806" + "1745327413523907360561694", + "2580309776338935986719663" ], - "LPTokenSupply": "2326099935717762433073594", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4320095122203965614163632" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "337545724823151640576", - "expectedQty": "335754110339985605558", + "type": "redeemMasset", + "inputQty": "8822852229897633398784", + "expectedQtys": [ + "3562311978663626125487", + "5266558213485107862581" + ], + "redemptionFee": "5293711337938580039", "reserves": [ - "636454603747607740812113", - "1696314473020833512161382" - ] + "1741765101545243734436207", + "2575043218125450878857082" + ], + "LPTokenSupply": "4311272799345201774622851" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "3571828247464927232", - "expectedQty": "3588734949560983392", - "swapFee": "2143096948478956", + "inputQty": "485467801692646735872", + "expectedQty": "484305711995542955919", "reserves": [ - "636454603747607740812113", - "1696310884285883951177990" - ], - "LPTokenSupply": "2326432118214164648599815" + "1741765101545243734436207", + "2575528685927143525592954" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "4036348558429459578880", - "387044172104356457349120" + "type": "redeemMasset", + "inputQty": "1218069133182001971", + "expectedQtys": [ + "491752504048644044", + "727148959081890060" ], - "expectedQty": "389239215871660914831138", - "swapFee": "233683739766856662896", + "redemptionFee": "730841479909201", "reserves": [ - "632418255189178281233233", - "1309266712181527493828870" + "1741764609792739685792163", + "2575527958778184443702894" ], - "LPTokenSupply": "1936982586976713562772069" + "LPTokenSupply": "4311755887061148283567719" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "24497256767288732811264", - "outputIndex": 0, - "expectedQty": "24343106882877360910087", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "37115807884785110220", + "expectedQtys": [ + "14984199970847333663", + "22156969861405568835" + ], + "redemptionFee": "22269484730871066", "reserves": [ - "608075148306300920323146", - "1333763968948816226640134" + "1741749625592768838458500", + "2575505801808323038134059" ], - "LPTokenSupply": "1936982586976713562772069", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4311718773480211971544605" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1497293165494239756288", - "expectedQty": "1503286252729910339662", - "swapFee": "898375899296543853", + "type": "mintMulti", + "inputQtys": [ + "35652601323952791552", + "5785694877132745728" + ], + "expectedQty": "41437324078508553404", "reserves": [ - "608075148306300920323146", - "1332260682696086316300472" + "1741785278194092791250052", + "2575511587503200170879787" ], - "LPTokenSupply": "1935485383648809252670166" + "LPTokenSupply": "4311760210804290480098009" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8566491856816885989376", - "5778806966033624072192" + "104116072480453980848128", + "160496781978407285030912" ], - "expectedQty": "14336745169759677907601", - "swapFee": "8607211428713034565", + "expectedQty": "264266206041818099012468", "reserves": [ - "599508656449484034333770", - "1326481875730052692228280" + "1845901350674546772098180", + "2736008369481607455910699" ], - "LPTokenSupply": "1921140891988763733031455" + "LPTokenSupply": "4576026416846108579110477" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "58769364421536931840", - "expectedQty": "59007030101937253135", - "swapFee": "35261618652922159", + "inputIndex": 0, + "inputQty": "43620790366839454564352", + "expectedQty": "43575900535244504662023", + "swapFee": "26172474220103672738", "reserves": [ - "599508656449484034333770", - "1326422868699950754975145" + "1802325450139302267436157", + "2736008369481607455910699" ], - "LPTokenSupply": "1921082126150504061391830" + "LPTokenSupply": "4532408243726691134913398" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "112707274005807366144", - "outputIndex": 0, - "expectedQty": "111945709255477546467", - "swapFee": "0", - "reserves": [ - "599396710740228556787303", - "1326535575973956562341289" + "type": "redeemMasset", + "inputQty": "2115770197882420838", + "expectedQtys": [ + "840837428022953096", + "1276427761848660068" ], - "LPTokenSupply": "1921082126150504061391830", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "3268397946571948294144", - "outputIndex": 1, - "expectedQty": "3287840299345273622710", - "swapFee": "2620269534069975178", + "redemptionFee": "1269462118729452", "reserves": [ - "602665108686800505081447", - "1323247735674611288718579" + "1802324609301874244483061", + "2736007093053845607250631" ], - "LPTokenSupply": "1921082388177457468389347", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4532406128083439464365505" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "223235486769000052948992", - "expectedQty": "222097350236431723664909", - "swapFee": "133941292061400031769", + "inputQty": "1319999787163964932096", + "expectedQty": "1318569354925843192865", + "swapFee": "791999872298378959", "reserves": [ - "380567758450368781416538", - "1323247735674611288718579" + "1801006039946948401290196", + "2736007093053845607250631" ], - "LPTokenSupply": "1697860295537663555443531" + "LPTokenSupply": "4531086207496262729271304" }, { - "type": "mintMulti", - "inputQtys": [ - "555552688389702287360", - "461046843970030403584" - ], - "expectedQty": "1018001959664010203902", - "reserves": [ - "381123311138758483703898", - "1323708782518581319122163" - ], - "LPTokenSupply": "1698878297497327565647433" - }, - { - "type": "mintMulti", - "inputQtys": [ - "637960848912471556096", - "915411146611751911424" - ], - "expectedQty": "1552324852863336568093", + "type": "swap", + "inputIndex": 0, + "inputQty": "95005148611157268889600", + "outputIndex": 1, + "expectedQty": "95179141757096967445242", + "swapFee": "76031607844767345777", "reserves": [ - "381761271987670955259994", - "1324624193665193071033587" + "1896011188558105670179796", + "2640827951296748639805389" ], - "LPTokenSupply": "1700430622350190902215526" + "LPTokenSupply": "4531093810657047206005881", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "199937313246117227397120", - "expectedQty": "198479347183363146397523", + "inputQty": "2115393044876704256", + "expectedQty": "2110686998462823278", "reserves": [ - "381761271987670955259994", - "1524561506911310298430707" + "1896011188558105670179796", + "2640830066689793516509645" ] }, { "type": "redeemMasset", - "inputQty": "12106356693738551928422", + "inputQty": "1632994130654536089", "expectedQtys": [ - "2432429742203290638931", - "9713894586324360973629" + "682907069547827349", + "951176624325944268" ], - "redemptionFee": "7263814016243131157", + "redemptionFee": "979796478392721", "reserves": [ - "379328842245467664621063", - "1514847612324985937457078" + "1896010505651036122352447", + "2640829115513169190565377" ], - "LPTokenSupply": "1886804339221217120997742" + "LPTokenSupply": "4531094288447894662132342" }, { "type": "mintMulti", "inputQtys": [ - "52333709860192135413760", - "42173148371777233092608" + "29303782218960832823296", + "2405426850056869773312" ], - "expectedQty": "94725871917827909368395", + "expectedQty": "31704990819316523475728", "reserves": [ - "431662552105659800034823", - "1557020760696763170549686" + "1925314287869996955175743", + "2643234542363226060338689" ], - "LPTokenSupply": "1981530211139045030366137" + "LPTokenSupply": "4562799279267211185608070" }, { - "type": "redeemBassets", - "inputQtys": [ - "22508001999448688", - "25218096416002296" - ], - "expectedQty": "47749858313650454", - "swapFee": "28667115257344", + "type": "swap", + "inputIndex": 1, + "inputQty": "30046328925032149942272", + "outputIndex": 0, + "expectedQty": "29977643255761351965000", + "swapFee": "0", "reserves": [ - "431662529597657800586135", - "1557020735478666754547390" - ], - "LPTokenSupply": "1981530163363386312984072" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "271176327712474111410176", - "241699910687128224268288" + "1895336644614235603210743", + "2673280871288258210280961" ], - "hardLimitError": true + "LPTokenSupply": "4562799279267211185608070", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "43157805445506096168960", - "54023794517667502620672" + "type": "redeemMasset", + "inputQty": "1699000210656843530240", + "expectedQtys": [ + "705322556412561417471", + "994823428072115019369" ], - "expectedQty": "97209087088123549931887", - "swapFee": "58360468533994526675", + "redemptionFee": "1019400126394106118", "reserves": [ - "388504724152151704417175", - "1502996940960999251926718" + "1894631322057823041793272", + "2672286047860186095261592" ], - "LPTokenSupply": "1884268551853582167978176" + "LPTokenSupply": "4561100380996566981488441" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "22012298757607799128064", - "expectedQty": "21845049347061603812486", + "inputIndex": 0, + "inputQty": "275176068336137830400", + "expectedQty": "275210039634482485580", "reserves": [ - "388504724152151704417175", - "1525009239718607051054782" + "1894906498126159179623672", + "2672286047860186095261592" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "99011865519990912", - "expectedQty": "100097087768443419", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4819458743860239269888", + "expectedQty": "4827483098217996628118", + "swapFee": "2891675246316143561", "reserves": [ - "388504823164017224408087", - "1525009239718607051054782" - ] + "1894906498126159179623672", + "2667458564761968098633474" + ], + "LPTokenSupply": "4556556421459865856318489" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "244742343983844932190208", - "hardLimitError": true + "type": "redeemMasset", + "inputQty": "2249226149141184040140", + "expectedQtys": [ + "934810327762989020298", + "1315931850824921700026" + ], + "redemptionFee": "1349535689484710424", + "reserves": [ + "1893971687798396190603374", + "2666142632911143176933448" + ], + "LPTokenSupply": "4554307330264293620749391" }, { - "type": "redeemBassets", - "inputQtys": [ - "30240911082992", - "29822457905483" + "type": "redeemMasset", + "inputQty": "3428008484431770009", + "expectedQtys": [ + "1424729385590428923", + "2005590569149139363" ], - "expectedQty": "60166834829123", - "swapFee": "36121773961", + "redemptionFee": "2056805090659062", "reserves": [ - "388504823133776313325095", - "1525009239688784593149299" + "1893970263069010600174451", + "2666140627320574027794085" ], - "LPTokenSupply": "1906113701237532195808392" + "LPTokenSupply": "4554303902461489698045288" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "103084977394713588924416", - "expectedQty": "103793624393962607816562", - "swapFee": "61850986436828153354", + "type": "redeemBassets", + "inputQtys": [ + "433317551031550", + "175441758593913" + ], + "expectedQty": "608412453710157", + "swapFee": "365266632205", "reserves": [ - "388504823133776313325095", - "1421215615294821985332737" + "1893970262635693049142901", + "2666140627145132269200172" ], - "LPTokenSupply": "1803034908941462289699311" + "LPTokenSupply": "4554303901852748504366145" }, { "type": "mint", "inputIndex": 0, - "inputQty": "41891134518287266742272", - "expectedQty": "42233000377662350544011", + "inputQty": "8319145822020411850752", + "expectedQty": "8320015232176213667557", "reserves": [ - "430395957652063580067367", - "1421215615294821985332737" + "1902289408457713460993653", + "2666140627145132269200172" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1733991995582702157824", - "2216014603114999185408" + "type": "redeemMasset", + "inputQty": "300794746603060592640", + "expectedQtys": [ + "125334752935704276971", + "175662060309740167152" ], - "expectedQty": "3947719505622688543206", + "redemptionFee": "180476847961836355", "reserves": [ - "432129949647646282225191", - "1423431629897936984518145" + "1902164073704777756716682", + "2665964965084822529033020" ], - "LPTokenSupply": "1849215628824747328786528" + "LPTokenSupply": "4562323140386006453624697" }, { - "type": "redeemMasset", - "inputQty": "92563882963478721331", - "expectedQtys": [ - "21617612184012483516", - "71208193208271868865" + "type": "mintMulti", + "inputQtys": [ + "7953921679188647936", + "3972594018619400192" ], - "redemptionFee": "55538329778087232", + "expectedQty": "11918349374676286955", "reserves": [ - "432108332035462269741675", - "1423360421704728712649280" + "1902172027626456945364618", + "2665968937678841148433212" ], - "LPTokenSupply": "1849123070495616827873920" + "LPTokenSupply": "4562335058735381129911652" }, { "type": "swap", "inputIndex": 1, - "inputQty": "207005936114067865600", + "inputQty": "3698571475240357462016", "outputIndex": 0, - "expectedQty": "204177241417944764440", + "expectedQty": "3689870468529974459940", "swapFee": "0", "reserves": [ - "431904154794044324977235", - "1423567427640842780514880" + "1898482157157926970904678", + "2669667509154081505895228" ], - "LPTokenSupply": "1849123070495616827873920", + "LPTokenSupply": "4562335058735381129911652", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "54562088879127207936", - "50646537135307284480" + "234224888251761440", + "372423187237911232" ], - "expectedQty": "105262707714749237907", + "expectedQty": "605833575044682942", + "swapFee": "363718376052441", "reserves": [ - "431958716882923452185171", - "1423618074177978087799360" + "1898481922933038719143238", + "2669667136730894267983996" ], - "LPTokenSupply": "1849228333203331577111827" + "LPTokenSupply": "4562334452574459546781512" }, { - "type": "redeem", + "type": "redeemBassets", + "inputQtys": [ + "12821409160304854", + "16642834141594464" + ], + "expectedQty": "29428102753512663", + "swapFee": "17667462129385", + "reserves": [ + "1898481910111629558838384", + "2669667120088060126389532" + ], + "LPTokenSupply": "4562334423130456077352401" + }, + { + "type": "swap", "inputIndex": 0, - "inputQty": "5311584998550043648", - "expectedQty": "5270757396223999991", - "swapFee": "3186950999130026", + "inputQty": "35274332156463715188736", + "outputIndex": 1, + "expectedQty": "35325439634922534883027", + "swapFee": "28221407230829157299", "reserves": [ - "431953446125527228185180", - "1423618074177978087799360" + "1933756242268093274027120", + "2634341680453137591506505" ], - "LPTokenSupply": "1849223021937028126981181" + "LPTokenSupply": "4562337245271179160268130", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "6866343887027685785", + "inputQty": "150662365998119116", "expectedQtys": [ - "1602922581310435897", - "5282859944120953902" + "63820245741610448", + "86941843929974368" ], - "redemptionFee": "4119806332216611", + "redemptionFee": "90397419598871", "reserves": [ - "431951843202945917749283", - "1423612791318033966845458" + "1933756178447847532416672", + "2634341593511293661532137" ], - "LPTokenSupply": "1849216156005121732517057" + "LPTokenSupply": "4562337094617852904108901" }, { - "type": "mintMulti", - "inputQtys": [ - "11945274057594209566720", - "733981640371860275200" - ], - "expectedQty": "12756872797107961847083", + "type": "redeem", + "inputIndex": 1, + "inputQty": "486168307128507041841152", + "expectedQty": "486778407539923378171629", + "swapFee": "291700984277104225104", "reserves": [ - "443897117260540127316003", - "1424346772958405827120658" + "1933756178447847532416672", + "2147563185971370283360508" ], - "LPTokenSupply": "1861973028802229694364140" + "LPTokenSupply": "4076197957587773572690259" }, { - "type": "redeemMasset", - "inputQty": "106341183178257753702", - "expectedQtys": [ - "25336683830729731189", - "81298621794350962579" + "type": "redeemBassets", + "inputQtys": [ + "48921466732807024803840", + "363805760869580358549504" ], - "redemptionFee": "63804709906954652", + "expectedQty": "412185150348138446831058", + "swapFee": "247459565948452139382", "reserves": [ - "443871780576709397584814", - "1424265474336611476158079" + "1884834711715040507612832", + "1783757425101789924811004" ], - "LPTokenSupply": "1861866693999522427305903" + "LPTokenSupply": "3663790093630281518933756" }, { "type": "mintMulti", "inputQtys": [ - "163006017192650244096", - "2711398441452791922688" - ], - "expectedQty": "2857912217732043164607", - "reserves": [ - "444034786593902047828910", - "1426976872778064268080767" + "741529364828230516736", + "919847245283223666688" ], - "LPTokenSupply": "1864724606217254470470510" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "21371248955949", - "expectedQty": "21216445211608", - "swapFee": "12822749373", + "expectedQty": "1659242784858829814864", "reserves": [ - "444034786572685602617302", - "1426976872778064268080767" + "1885576241079868738129568", + "1784677272347073148477692" ], - "LPTokenSupply": "1864724606195884503789498" + "LPTokenSupply": "3665449336415140348748620" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "52202628778907194621952", - "28664496090023194525696" + "133528061299826480", + "155568961359865536" ], - "expectedQty": "81071917034026889617296", - "swapFee": "48672353632595691185", + "expectedQty": "288724069969211569", "reserves": [ - "391832157793778407995350", - "1398312376688041073555071" + "1885576374607930037956048", + "1784677427916034508343228" ], - "LPTokenSupply": "1783608884043588278050134" + "LPTokenSupply": "3665449625139210317960189" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1673243246188737593344", - "expectedQty": "1661344910165273865035", + "inputIndex": 0, + "inputQty": "1200391682001617551360", + "expectedQty": "1198606620393376732910", "reserves": [ - "391832157793778407995350", - "1399985619934229811148415" + "1886776766289931655507408", + "1784677427916034508343228" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "300000128345340313600", - "outputIndex": 1, - "expectedQty": "304533459723601515377", - "swapFee": "242088423491131975", - "reserves": [ - "392132157922123748308950", - "1399681086474506209633038" + "type": "redeemMasset", + "inputQty": "11265346798862721246822", + "expectedQtys": [ + "5793422260563057995257", + "5479922226911911052760" ], - "LPTokenSupply": "1785270253162595901028366", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "16525778007632447488", - "expectedQty": "16634110023293175522", - "swapFee": "9915466804579468", + "redemptionFee": "6759208079317632748", "reserves": [ - "392132157922123748308950", - "1399664452364482916457516" + "1880983344029368597512151", + "1779197505689122597290468" ], - "LPTokenSupply": "1785253728376134949038824" + "LPTokenSupply": "3655383560881548905209551" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "5765050332956039577600", - "expectedQty": "5814250466948200839129", + "inputQty": "77932594970085376000", + "expectedQty": "78002034083301022343", + "swapFee": "46759556982051225", "reserves": [ - "397897208255079787886550", - "1399664452364482916457516" - ] + "1880905341995285296489808", + "1779197505689122597290468" + ], + "LPTokenSupply": "3655305632962534518038673" }, { "type": "redeemMasset", - "inputQty": "234714030597702", + "inputQty": "101473102927926355558", "expectedQtys": [ - "52111937336349", - "183311731573588" + "52183539145140918653", + "49361773084537359721" ], - "redemptionFee": "140828418358", + "redemptionFee": "60883861756755813", "reserves": [ - "397897208202967850550201", - "1399664452181171184883928" + "1880853158456140155571155", + "1779148143916038059930747" ], - "LPTokenSupply": "1791067978608383202122086" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "20555636750162453331968", - "expectedQty": "20717495608389076517652", - "reserves": [ - "418452844953130303882169", - "1399664452181171184883928" - ] + "LPTokenSupply": "3655204165947992767358696" }, { - "type": "mintMulti", - "inputQtys": [ - "334884737699191521280", - "578603338957877673984" + "type": "redeemMasset", + "inputQty": "14991942992725456977920", + "expectedQtys": [ + "7709753946386118152511", + "7292857691783531820787" ], - "expectedQty": "912066482267975746784", + "redemptionFee": "8995165795635274186", "reserves": [ - "418787729690829495403449", - "1400243055520129062557912" + "1873143404509754037418644", + "1771855286224254528109960" ], - "LPTokenSupply": "1812697540699040254386522" + "LPTokenSupply": "3640213122471846873908194" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "45726729276110017658880", - "expectedQty": "45414756150979037926453", + "type": "redeemMasset", + "inputQty": "30267654645343", + "expectedQtys": [ + "15565473330260", + "14723787904547" + ], + "redemptionFee": "18160592787", "reserves": [ - "418787729690829495403449", - "1445969784796239080216792" - ] + "1873143404494188564088384", + "1771855286209530740205413" + ], + "LPTokenSupply": "3640213122441581035322129" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "16423879919092936704", - "expectedQty": "16528300872282577545", - "swapFee": "9854327951455762", + "type": "redeemBassets", + "inputQtys": [ + "23573895256594198822912", + "2002727047426673475584" + ], + "expectedQty": "25539601822756104615922", + "swapFee": "15332960870175768230", "reserves": [ - "418787729690829495403449", - "1445953256495366797639247" + "1849569509237594365265472", + "1769852559162104066729829" ], - "LPTokenSupply": "1858095873955532994521847" + "LPTokenSupply": "3614659720954041772514799" }, { "type": "redeemBassets", "inputQtys": [ - "178610610531816", - "384738741793903" + "24431786215193534529536", + "19271867086626676015104" ], - "expectedQty": "562118940688507", - "swapFee": "337473848722", + "expectedQty": "43645553428522742338056", + "swapFee": "26203053889447313791", "reserves": [ - "418787729512218884871633", - "1445953256110628055845344" + "1825137723022400830735936", + "1750580692075477390714725" ], - "LPTokenSupply": "1858095873393110327369489" + "LPTokenSupply": "3570990584777018527594330" }, { "type": "swap", "inputIndex": 0, - "inputQty": "11973967195362662", + "inputQty": "11476907321029963022336", "outputIndex": 1, - "expectedQty": "12144116002552084", - "swapFee": "9655847039332", + "expectedQty": "11464067712018754182250", + "swapFee": "9168051771654877690", "reserves": [ - "418787741486186080234295", - "1445953243966512053293260" + "1836614630343430793758272", + "1739116624363458636532475" ], - "LPTokenSupply": "1858095873394075912073422", + "LPTokenSupply": "3570991501582195693082099", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "191961707723559484260352", - "69471988085006283046912" + "33207589770488000282624", + "16513379528944669163520" ], - "hardLimitError": true - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "784412647029843712", - "expectedQty": "790691199930163938", + "expectedQty": "49652513844775482490272", + "swapFee": "29809393943231228231", "reserves": [ - "418788525898833110078007", - "1445953243966512053293260" - ] + "1803407040572942793475648", + "1722603244834513967368955" + ], + "LPTokenSupply": "3521312159282871302486418" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "30415015844913582080", - "expectedQty": "30658439468135645868", + "type": "mintMulti", + "inputQtys": [ + "35482477827928304386048", + "1613401238806151036928" + ], + "expectedQty": "37040426146673232713890", "reserves": [ - "418818940914678023660087", - "1445953243966512053293260" - ] + "1838889518400871097861696", + "1724216646073320118405883" + ], + "LPTokenSupply": "3558352585429544535200308" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "22895450392182", - "expectedQty": "23041006131655", - "swapFee": "13737270235", + "type": "mintMulti", + "inputQtys": [ + "2661178725312281706496", + "177323023560577417216" + ], + "expectedQty": "2834199233635868308763", "reserves": [ - "418818940914678023660087", - "1445953243943471047161605" + "1841550697126183379568192", + "1724393969096880695823099" ], - "LPTokenSupply": "1858127322501849901218069" + "LPTokenSupply": "3561186784663180403509071" }, { - "type": "mintMulti", - "inputQtys": [ - "97154753056735483658240", - "29893386571489233338368" + "type": "redeemMasset", + "inputQty": "7230145421503731702169", + "expectedQtys": [ + "3736588766137314552764", + "3498872522693759106822" ], - "expectedQty": "127466785578222820886027", + "redemptionFee": "4338087252902239021", "reserves": [ - "515973693971413507318327", - "1475846630514960280499973" + "1837814108360046065015428", + "1720895096574186936716277" ], - "LPTokenSupply": "1985594108080072722104096" + "LPTokenSupply": "3553957073050401962030804" }, { "type": "redeemMasset", - "inputQty": "382195186658246865715", + "inputQty": "7197505586047144165376", "expectedQtys": [ - "99257113968448003642", - "283906483831497956909" + "3719724361584481931794", + "3483081006582529331732" ], - "redemptionFee": "229317111994948119", + "redemptionFee": "4318503351628286499", "reserves": [ - "515874436857445059314685", - "1475562724031128782543064" + "1834094383998461583083634", + "1717412015567604407384545" ], - "LPTokenSupply": "1985211935825125674733192" + "LPTokenSupply": "3546759999314689980694077" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "10119151350389072199680", - "outputIndex": 1, - "expectedQty": "10218013903145765140316", - "swapFee": "8133480502062969502", + "inputIndex": 1, + "inputQty": "534447134052114825216", + "outputIndex": 0, + "expectedQty": "534679179101314031438", + "swapFee": "0", "reserves": [ - "525993588207834131514365", - "1465344710127983017402748" + "1833559704819360269052196", + "1717946462701656522209761" ], - "LPTokenSupply": "1985212749173175881030142", + "LPTokenSupply": "3546759999314689980694077", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "3938097908381101064192", - "3933556129430225551360" + "type": "redeemMasset", + "inputQty": "39918603746803987251", + "expectedQtys": [ + "20624239427235914208", + "19323798988821377492" + ], + "redemptionFee": "23951162248082392", + "reserves": [ + "1833539080579933033137988", + "1717927138902667700832269" ], - "expectedQty": "7866460133856585216984", + "LPTokenSupply": "3546720083106059401515065" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1775398674208065280", + "expectedQty": "1777079225549475522", + "swapFee": "1065239204524839", "reserves": [ - "529931686116215232578557", - "1469278266257413242954108" + "1833537303500707483662466", + "1717927138902667700832269" ], - "LPTokenSupply": "1993079209307032466247126" + "LPTokenSupply": "3546718307813909113902268" }, { "type": "redeemBassets", "inputQtys": [ - "38860754173983154176", - "158786569143714873344" + "7274936114963010289664", + "3530463861839214149632" ], - "expectedQty": "196903370135452529977", - "swapFee": "118212949851182227", + "expectedQty": "10790238612229481034040", + "swapFee": "6478029985328885951", "reserves": [ - "529892825362041249424381", - "1469119479688269528080764" + "1826262367385744473372802", + "1714396675040828486682637" ], - "LPTokenSupply": "1992882199545242147653143" + "LPTokenSupply": "3535922238974692836870871" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "360776630774704439296", - "expectedQty": "362651470111053277747", - "swapFee": "216465978464822663", + "type": "redeemMasset", + "inputQty": "3383892281222408595046", + "expectedQtys": [ + "1746692032796905913635", + "1639700333766345358463" + ], + "redemptionFee": "2030335368733445157", "reserves": [ - "529892825362041249424381", - "1468756828218158474803017" + "1824515675352947567459167", + "1712756974707062141324174" ], - "LPTokenSupply": "1992521444561065289696113" + "LPTokenSupply": "3532538549727007301620340" }, { - "type": "redeemMasset", - "inputQty": "65945314153621939", - "expectedQtys": [ - "17527029664988929", - "48581417348397265" + "type": "mintMulti", + "inputQtys": [ + "7120143336730020282368", + "169245068511696191488" ], - "redemptionFee": "39567188492173", + "expectedQty": "7278183170957570098722", "reserves": [ - "529892807835011584435452", - "1468756779636741126405752" + "1831635818689677587741535", + "1712926219775573837515662" ], - "LPTokenSupply": "1992521378619707854923391" + "LPTokenSupply": "3539816732897964871719062" }, { "type": "redeemMasset", - "inputQty": "11205612424062802539315", + "inputQty": "2850001547133859135488", "expectedQtys": [ - "2978241955401168356058", - "8255090461156145981135" + "1473814384122106990633", + "1378295442732255393861" ], - "redemptionFee": "6723367454437681523", + "redemptionFee": "1710000928280315481", "reserves": [ - "526914565879610416079394", - "1460501689175584980424617" + "1830162004305555480750902", + "1711547924332841582121801" ], - "LPTokenSupply": "1981316438532390496152228" + "LPTokenSupply": "3536966902350923840615122" }, { - "type": "redeemBassets", - "inputQtys": [ - "1832639974735310225408", - "766357805066232004608" + "type": "swap", + "inputIndex": 1, + "inputQty": "12509585523667254640640", + "outputIndex": 0, + "expectedQty": "12514559198927598793258", + "swapFee": "0", + "reserves": [ + "1817647445106627881957644", + "1724057509856508836762441" + ], + "LPTokenSupply": "3536966902350923840615122", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "44332795276762749599744", + "outputIndex": 0, + "expectedQty": "44340967517746683269341", + "swapFee": "0", + "reserves": [ + "1773306477588881198688303", + "1768390305133271586362185" + ], + "LPTokenSupply": "3536966902350923840615122", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "776958390030465433", + "expectedQtys": [ + "389304936310066027", + "388225658571610649" ], - "expectedQty": "2602697481003250836337", - "swapFee": "1562556022215279669", + "redemptionFee": "466175034018279", "reserves": [ - "525081925904875105853986", - "1459735331370518748420009" + "1773306088283944888622276", + "1768389916907613014751536" ], - "LPTokenSupply": "1978712334750967251564187" + "LPTokenSupply": "3536966125439151313551516" }, { - "type": "mintMulti", - "inputQtys": [ - "2326993809783191552", - "3230377849849027584" + "type": "redeemMasset", + "inputQty": "1878313823731360727040", + "expectedQtys": [ + "941153159535507676347", + "938543982104593726966" ], - "expectedQty": "5549049390486198773", + "redemptionFee": "1126988294238816436", "reserves": [ - "525084252898684889045538", - "1459738561748368597447593" + "1772364935124409380945929", + "1767451372925508421024570" ], - "LPTokenSupply": "1978717883800357737762960" + "LPTokenSupply": "3535087924314249376706119" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "881765240499171072", - "expectedQty": "877329331634056607", - "swapFee": "529059144299502", + "inputQty": "381836921592975589376", + "expectedQty": "382121613486732198822", + "swapFee": "229102152955785353", "reserves": [ - "525083375569353254988931", - "1459738561748368597447593" + "1771982813510922648747107", + "1767451372925508421024570" ], - "LPTokenSupply": "1978717002088023153021838" + "LPTokenSupply": "3534706110302871696695278" }, { - "type": "swap", + "type": "redeemMasset", + "inputQty": "1190411189803119616", + "expectedQtys": [ + "596406736700375013", + "594881562939381378" + ], + "redemptionFee": "714246713881871", + "reserves": [ + "1771982217104185948372094", + "1767450778043945481643192" + ], + "LPTokenSupply": "3534704919963106564963849" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "24866710221754728448", - "outputIndex": 0, - "expectedQty": "24613259777221538562", - "swapFee": "0", + "inputQty": "1951232082323856162816", + "expectedQty": "1952649619617815011774", + "swapFee": "1170739249394313697", "reserves": [ - "525058762309576033450369", - "1459763428458590352176041" + "1771982217104185948372094", + "1765498128424327666631418" ], - "LPTokenSupply": "1978717002088023153021838", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3532753804954707648232402" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "76224971896020664320", - "6056251995165917184" + "5459743686182207", + "2710002670268406" ], - "expectedQty": "82585627269316351344", + "expectedQty": "8158797344371001", + "swapFee": "4898217337024", "reserves": [ - "525134987281472054114689", - "1459769484710585518093225" + "1771982211644442262189887", + "1765498125714324996363012" ], - "LPTokenSupply": "1978799587715292469373182" + "LPTokenSupply": "3532753796791501908258078" }, { "type": "mintMulti", "inputQtys": [ - "1990850407437603700736", - "4777252420152376426496" + "16061325667938200453120", + "24090634528791659020288" ], - "expectedQty": "6749335269021032159352", + "expectedQty": "40098349420463944269715", "reserves": [ - "527125837688909657815425", - "1464546737130737894519721" + "1788043537312380462643007", + "1789588760243116655383300" ], - "LPTokenSupply": "1985548922984313501532534" + "LPTokenSupply": "3572852146211965852527793" }, { - "type": "redeemMasset", - "inputQty": "349157037630487789568", - "expectedQtys": [ - "92638999724024750318", - "257384736388022933677" + "type": "redeemBassets", + "inputQtys": [ + "2434417001813413724160", + "2499722373054308810752" ], - "redemptionFee": "209494222578292673", + "expectedQty": "4927546588521952461650", + "swapFee": "2958302934874095934", "reserves": [ - "527033198689185633065107", - "1464289352394349871586044" + "1785609120310567048918847", + "1787089037870062346572548" ], - "LPTokenSupply": "1985199786896105271572233" + "LPTokenSupply": "3567921937150802513379801" }, { "type": "redeemMasset", - "inputQty": "4042012936638667161", + "inputQty": "86146139223757478", "expectedQtys": [ - "1072434551015233317", - "2979612096727757776" + "43086995900230399", + "43122706516340806" ], - "redemptionFee": "2425207761983200", + "redemptionFee": "51687683534254", "reserves": [ - "527032126254634617831790", - "1464286372782253143828268" + "1785609077223571148688448", + "1787088994747355830231742" ], - "LPTokenSupply": "1985195745125689409103392" + "LPTokenSupply": "3567921851009832057975748" }, { - "type": "mintMulti", - "inputQtys": [ - "144748846653695", - "518661469272437" + "type": "redeemMasset", + "inputQty": "1752206022339368845312", + "expectedQtys": [ + "876386270843569221008", + "877112622101730592366" ], - "expectedQty": "661055203798902", + "redemptionFee": "1051323613403621307", "reserves": [ - "527032126399383464485485", - "1464286373300914613100705" + "1784732690952727579467440", + "1786211882125254099639376" ], - "LPTokenSupply": "1985195745786744612902294" + "LPTokenSupply": "3566169750119854029492566" }, { "type": "redeemMasset", - "inputQty": "7134634006963996432793", + "inputQty": "5856296924712620032", "expectedQtys": [ - "1892974650458581418701", - "5259370058913746885571" + "2929095961954081726", + "2931523604430946242" ], - "redemptionFee": "4280780404178397859", + "redemptionFee": "3513778154827572", "reserves": [ - "525139151748924883066784", - "1459027003242000866215134" + "1784729761856765625385714", + "1786208950601649668693134" ], - "LPTokenSupply": "1978061539857821034309286" + "LPTokenSupply": "3566163894174307132355291" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3834002176924176896", - "expectedQty": "3851037267353149003", + "type": "redeemBassets", + "inputQtys": [ + "3049718908744730112", + "2513474165930976768" + ], + "expectedQty": "5555755823957935135", + "swapFee": "3335454767235102", "reserves": [ - "525142985751101807243680", - "1459027003242000866215134" - ] + "1784726712137856880655602", + "1786206437127483737716366" + ], + "LPTokenSupply": "3566158335416573883908563" }, { - "type": "redeemBassets", - "inputQtys": [ - "6254790424102", - "4673396050916" + "type": "redeemMasset", + "inputQty": "11566955814880428", + "expectedQtys": [ + "5785348480751857", + "5790145139345269" + ], + "redemptionFee": "6940173488928", + "reserves": [ + "1784726706352508399903745", + "1786206431337338598371097" ], - "expectedQty": "10928949959011", - "swapFee": "6561306759", + "LPTokenSupply": "3566158323850312086377027" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "406250670053153984", + "expectedQty": "406549415645682465", + "swapFee": "243750402031892", "reserves": [ - "525142985744847016819578", - "1459027003237327470164218" + "1784726299803092754221280", + "1786206431337338598371097" ], - "LPTokenSupply": "1978065390884153532323193" + "LPTokenSupply": "3566157917624017073426232" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1878206508702977280", + "inputQty": "10508123743279059566592", "outputIndex": 1, - "expectedQty": "1896007287666455898", - "swapFee": "1509241238493946", + "expectedQty": "10499365736097822081534", + "swapFee": "8395199807066231015", "reserves": [ - "525144863951355719796858", - "1459025107230039803708320" + "1795234423546371813787872", + "1775707065601240776289563" ], - "LPTokenSupply": "1978065391035077656172587", + "LPTokenSupply": "3566158757143997780049333", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "464974441631793876566016", - "expectedQty": "467032208814502174101284", - "swapFee": "278984664979076325939", + "inputIndex": 0, + "inputQty": "571898021064217133056", + "expectedQty": "572341734059474171132", + "swapFee": "343138812638530279", "reserves": [ - "525144863951355719796858", - "991992898415537629607036" + "1794662081812312339616740", + "1775707065601240776289563" ], - "LPTokenSupply": "1513118847869781687239164" + "LPTokenSupply": "3565586893436814826769304" }, { - "type": "mintMulti", - "inputQtys": [ - "303936477170987264", - "187146793902222816" - ], - "expectedQty": "490446061044343699", + "type": "mint", + "inputIndex": 1, + "inputQty": "49451148748777734144", + "expectedQty": "49386655814811856265", "reserves": [ - "525145167887832890784122", - "991993085562331531829852" - ], - "LPTokenSupply": "1513119338315842731582863" + "1794662081812312339616740", + "1775756516749989554023707" + ] }, { - "type": "redeemMasset", - "inputQty": "107088044879041147699", - "expectedQtys": [ - "37143816632305952292", - "70164235574786343760" + "type": "redeemBassets", + "inputQtys": [ + "60500773115562005889024", + "15076605847578389512192" ], - "redemptionFee": "64252826927424688", + "expectedQty": "75476489915637100775192", + "swapFee": "45313081798461337267", "reserves": [ - "525108024071200584831830", - "991922921326756745486092" + "1734161308696750333727716", + "1760679910902411164511515" ], - "LPTokenSupply": "1513012256696246383177632" + "LPTokenSupply": "3490119008403373922646835" }, { - "type": "redeemMasset", - "inputQty": "11699251659431000775065", - "expectedQtys": [ - "4057921455870227192864", - "7665366211344626120663" + "type": "mintMulti", + "inputQtys": [ + "269633365775541862400", + "573124671852262129664" ], - "redemptionFee": "7019550995658600465", + "expectedQty": "841604312859735579949", "reserves": [ - "521050102615330357638966", - "984257555115412119365429" + "1734430942062525875590116", + "1761253035574263426641179" ], - "LPTokenSupply": "1501313706991914948262613" + "LPTokenSupply": "3490960612716233658226784" }, { "type": "redeemMasset", - "inputQty": "42508063801598423859", + "inputQty": "30510807202297223577", "expectedQtys": [ - "14744114840295396320", - "27851460641134588177" - ], - "redemptionFee": "25504838280959054", - "reserves": [ - "521035358500490062242646", - "984229703654770984777252" + "15149737454348092777", + "15384020448743697023" ], - "LPTokenSupply": "1501271201478597177934659" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "55819459036221939712", - "48817415611988860928" - ], - "expectedQty": "104456361953296215956", - "swapFee": "62711444038400770", + "redemptionFee": "18306484321378334", "reserves": [ - "520979539041453840302934", - "984180886239158995916324" + "1734415792325071527497339", + "1761237651553814682944156" ], - "LPTokenSupply": "1501166688676344247158009" + "LPTokenSupply": "3490930103739679793141040" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "603947555959858816", - "outputIndex": 1, - "expectedQty": "606467764668696950", - "swapFee": "483441493214397", + "inputQty": "108064528331005229006848", + "expectedQty": "108128647336613025993444", + "swapFee": "64838716998603137404", "reserves": [ - "520980142989009800161750", - "984180279771394327219374" + "1626287144988458501503895", + "1761237651553814682944156" ], - "LPTokenSupply": "1501166688724688396479448", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3382872059280374424447932" }, { "type": "mintMulti", "inputQtys": [ - "1176722646650945667072", - "1741561754324258521088" + "19290876687366320291840", + "34023254262461543481344" ], - "expectedQty": "2911366336606900558436", + "expectedQty": "53237417740425241693818", "reserves": [ - "522156865635660745828822", - "985921841525718585740462" + "1645578021675824821795735", + "1795260905816276226425500" ], - "LPTokenSupply": "1504078055061295297037884" + "LPTokenSupply": "3436109477020799666141750" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4361518930505113796608", - "13785203138067020382208" + "102398174597974939664384", + "188131828147758791917568" ], - "expectedQty": "18089126378364300205650", - "swapFee": "10859991822111847231", + "expectedQty": "290104752669282089706462", "reserves": [ - "517795346705155632032214", - "972136638387651565358254" + "1747976196273799761460119", + "1983392733964035018343068" ], - "LPTokenSupply": "1485979154690291096169725" + "LPTokenSupply": "3726214229690081755848212" }, { "type": "redeemBassets", "inputQtys": [ - "1206276366617978339328", - "4513034117871043084288" + "170173624256890994688", + "567562042474704338944" ], - "expectedQty": "5700324222440627356538", - "swapFee": "3422247882193692629", + "expectedQty": "736569078856331157619", + "swapFee": "442206771376624669", "reserves": [ - "516589070338537653692886", - "967623604269780522273966" + "1747806022649542870465431", + "1982825171921560314004124" ], - "LPTokenSupply": "1480275750444756494489819" + "LPTokenSupply": "3725477262625131185728389" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "1143197920038415", - "expectedQty": "1141917029787366", - "swapFee": "685918752023", + "inputQty": "162900663370282976", + "expectedQty": "162748330141982839", + "reserves": [ + "1747806185550206240748407", + "1982825171921560314004124" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "64305623529515352064", + "408774868678373408768" + ], + "expectedQty": "472294694539843382282", "reserves": [ - "516589069196620623905520", - "967623604269780522273966" + "1747870491173735756100471", + "1983233946790238687412892" ], - "LPTokenSupply": "1480275749301627166326606" + "LPTokenSupply": "3725949720068001171093510" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8108622863959739392", - "expectedQty": "8073376050710680423", + "type": "swap", + "inputIndex": 0, + "inputQty": "1644078770200261", + "outputIndex": 1, + "expectedQty": "1644147542390914", + "swapFee": "1314033873082", "reserves": [ - "516589069196620623905520", - "967631712892644482013358" - ] + "1747870492817814526300732", + "1983233945146091145021978" + ], + "LPTokenSupply": "3725949720068132574480818", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "14364922878997396", + "inputQty": "274350957431356882944", "outputIndex": 0, - "expectedQty": "14295031851464720", + "expectedQty": "274119736922603802549", "swapFee": "0", "reserves": [ - "516589054901588772440800", - "967631727257567361010754" + "1747596373080891922498183", + "1983508296103522501904922" ], - "LPTokenSupply": "1480283822677677877007029", + "LPTokenSupply": "3725949720068132574480818", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1012088142081149763584", + "expectedQty": "1010289388680296053432", + "reserves": [ + "1747596373080891922498183", + "1984520384245603651668506" + ] + }, { "type": "redeemBassets", "inputQtys": [ - "6786253291707827224576", - "172388383361248591347712" + "57342040872957034496", + "138904047438335950848" ], - "expectedQty": "178477538616487444524288", - "swapFee": "107150813658087319106", + "expectedQty": "195945688965293338783", + "swapFee": "117637996176882132", "reserves": [ - "509802801609880945216224", - "795243343896318769663042" + "1747539031040018965463687", + "1984381480198165315717658" ], - "LPTokenSupply": "1301709848328898153895544" + "LPTokenSupply": "3726763957893651018001547" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1689294856108444221440", - "expectedQty": "1689306433426659231758", - "swapFee": "1013576913665066532", + "inputQty": "25624395362133063237632", + "expectedQty": "25632224426952593629580", + "swapFee": "15374637217279837942", "reserves": [ - "508113495176454285984466", - "795243343896318769663042" + "1721906806613066371834107", + "1984381480198165315717658" ], - "LPTokenSupply": "1300020654830481076180757" + "LPTokenSupply": "3701141099995239682747709" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2507612337551371141120", - "2587055951710721671168" + "1083810841418224", + "1449719940929948" ], - "expectedQty": "5083306795621535748697", - "swapFee": "3051815166472805132", + "expectedQty": "2529924068274513", "reserves": [ - "505605882838902914843346", - "792656287944608047991874" + "1721906807696877213252331", + "1984381481647885256647606" ], - "LPTokenSupply": "1294934601401209714907440" + "LPTokenSupply": "3701141102525163751022222" }, { - "type": "mintMulti", - "inputQtys": [ - "177534890698237870080", - "6869671975378390016" - ], - "expectedQty": "184272958758075406030", + "type": "redeem", + "inputIndex": 0, + "inputQty": "900995839593542975488", + "expectedQty": "901249480007212562997", + "swapFee": "540597503756125785", "reserves": [ - "505783417729601152713426", - "792663157616583426381890" + "1721005558216870000689334", + "1984381481647885256647606" ], - "LPTokenSupply": "1295118874359967790313470" + "LPTokenSupply": "3700240160745320583659312" }, { "type": "mint", "inputIndex": 0, - "inputQty": "19137082331306647355392", - "expectedQty": "19123914380104100020217", + "inputQty": "146721111967097824", + "expectedQty": "146591932227047555", "reserves": [ - "524920500060907800068818", - "792663157616583426381890" + "1721005704937981967787158", + "1984381481647885256647606" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "11593932804900331192320", - "7879736777557237825536" + "type": "redeemMasset", + "inputQty": "451095101271371520409", + "expectedQtys": [ + "209681365524684263467", + "241770156600857331542" ], - "expectedQty": "19435682621986732872337", - "swapFee": "11668410619563777990", + "redemptionFee": "270657060762822912", "reserves": [ - "513326567256007468876498", - "784783420839026188556354" + "1720796023572457283523691", + "1984139711491284399316064" ], - "LPTokenSupply": "1294796604548527550061158" + "LPTokenSupply": "3699789239301687515468749" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1348441814520269373440", - "expectedQty": "1343385990580337661838", + "type": "redeemBassets", + "inputQtys": [ + "9144125978194157568", + "14050303161075310592" + ], + "expectedQty": "23160663178355675793", + "swapFee": "13904740751464284", "reserves": [ - "513326567256007468876498", - "786131862653546457929794" - ] + "1720786879446479089366123", + "1984125661188123324005472" + ], + "LPTokenSupply": "3699766066124242483475099" }, { "type": "swap", "inputIndex": 1, - "inputQty": "8927118870906967949312", + "inputQty": "21939236400608604848128", "outputIndex": 0, - "expectedQty": "8898959267395675095482", + "expectedQty": "21916606906778251267499", "swapFee": "0", "reserves": [ - "504427607988611793781016", - "795058981524453425879106" + "1698870272539700838098624", + "2006064897588731928853600" ], - "LPTokenSupply": "1296139990539107887722996", + "LPTokenSupply": "3699766066124242483475099", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", + "inputIndex": 1, + "inputQty": "63956417593254312", + "expectedQty": "63834579353298997", + "reserves": [ + "1698870272539700838098624", + "2006064961545149522107912" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "391969539701997568000", + "expectedQty": "392045152911263035061", + "swapFee": "235181723821198540", + "reserves": [ + "1698478227386789575063563", + "2006064961545149522107912" + ], + "LPTokenSupply": "3699374183937292221325950" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "3573021606153775742976", + "expectedQty": "3570176499355855117907", + "reserves": [ + "1702051248992943350806539", + "2006064961545149522107912" + ] + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "1812770978514068045824", - "expectedQty": "1811715071170802264038", + "inputQty": "41281947872932084580352", + "expectedQty": "41288335336547773791383", + "swapFee": "24769168723759250748", "reserves": [ - "506240378967125861826840", - "795058981524453425879106" + "1660762913656395577015156", + "2006064961545149522107912" + ], + "LPTokenSupply": "3661664889480588367788579" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "93370908272320225214464", + "expectedQty": "93179136219639723420327", + "reserves": [ + "1660762913656395577015156", + "2099435869817469747322376" ] }, { "type": "redeemMasset", - "inputQty": "19345460271891904", + "inputQty": "145845763841392456499", + "expectedQtys": [ + "64468698274386969427", + "81497422976348141820" + ], + "redemptionFee": "87507458304835473", + "reserves": [ + "1660698444958121190045729", + "2099354372394493399180556" + ], + "LPTokenSupply": "3754698188687132529235954" + }, + { + "type": "redeemMasset", + "inputQty": "1890255930976045629440", "expectedQtys": [ - "7540786783627246", - "11842931755692811" + "835556265892751398710", + "1056259615048774528847" ], - "redemptionFee": "11607276163135", + "redemptionFee": "1134153558585627377", "reserves": [ - "506240371426339078199594", - "795058969681521670186295" + "1659862888692228438647019", + "2098298112779444624651709" ], - "LPTokenSupply": "1297951686265979145711443" + "LPTokenSupply": "3752808046171512342169251" }, { "type": "redeemBassets", "inputQtys": [ - "16419805050171889664", - "16846425070332723200" + "76171799289933816922112", + "76428910861030510297088" ], - "expectedQty": "33191928717433311158", - "swapFee": "19927113498559122", + "expectedQty": "152397569896520918851717", + "swapFee": "91493438000712979098", "reserves": [ - "506223951621288906309930", - "795042123256451337463095" + "1583691089402294621724907", + "2021869201918414114354621" ], - "LPTokenSupply": "1297918476402859563697074" + "LPTokenSupply": "3600328132180790781636344" }, { - "type": "mintMulti", - "inputQtys": [ - "77102242560707030679552", - "28195018346072792629248" + "type": "redeem", + "inputIndex": 1, + "inputQty": "281826116452046733312", + "expectedQty": "282271843927341049675", + "swapFee": "169095669871228039", + "reserves": [ + "1583691089402294621724907", + "2021586930074486773304946" ], - "expectedQty": "105127847082142216656942", + "LPTokenSupply": "3600046322973905722025835" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "2109911873308633856", + "expectedQty": "2113248468813075051", + "swapFee": "1265947123985180", "reserves": [ - "583326194181995936989482", - "823237141602524130092343" + "1583691089402294621724907", + "2021584816826017960229895" ], - "LPTokenSupply": "1403046323485001780354016" + "LPTokenSupply": "3600044213188627125790497" }, { - "type": "redeemMasset", - "inputQty": "41442335552587706662912", - "expectedQtys": [ - "17219599119128393676527", - "24301692088851734266263" + "type": "mintMulti", + "inputQtys": [ + "242301038195013255168", + "198993191785379135488" ], - "redemptionFee": "24865401331552623997", + "expectedQty": "440734021086831669575", "reserves": [ - "566106595062867543312955", - "798935449513672395826080" + "1583933390440489634980075", + "2021783810017803339365383" ], - "LPTokenSupply": "1361606474472547228953503" + "LPTokenSupply": "3600484947209713957460072" }, { "type": "mint", "inputIndex": 0, - "inputQty": "5608949245789634560", - "expectedQty": "5602677728781560174", + "inputQty": "1425384108002216771584", + "expectedQty": "1424635297693271631904", "reserves": [ - "566112204012113332947515", - "798935449513672395826080" + "1585358774548491851751659", + "2021783810017803339365383" ] }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "94321676932428620365824", + "expectedQty": "94303147157244931009932", + "swapFee": "56593006159457172219", + "reserves": [ + "1491055627391246920741727", + "2021783810017803339365383" + ], + "LPTokenSupply": "3507593564875594554443373" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "9734776781468204007424", + "1867662368633108037632" + ], + "expectedQty": "11595275723265409845771", + "swapFee": "6961342239302827604", + "reserves": [ + "1481320850609778716734303", + "2019916147649170231327751" + ], + "LPTokenSupply": "3495992023944313772052757" + }, + { + "type": "redeemBassets", "inputQtys": [ - "120894664483226368", - "53584552125584776" + "64179687280491469209600", + "3324706693208810717184" ], - "expectedQty": "174156069561128502", + "expectedQty": "67484964140684247953512", + "swapFee": "40515287657004751623", "reserves": [ - "566112324906777816173883", - "798935503098224521410856" + "1417141163329287247524703", + "2016591440955961420610567" ], - "LPTokenSupply": "1361612251306345571642179" + "LPTokenSupply": "3428470596044738219822783" }, { "type": "redeemMasset", - "inputQty": "16087192571524972072140", + "inputQty": "6120399242724073747251", "expectedQtys": [ - "6684497502401326348780", - "9433609091480653743486" + "2528318496023305518370", + "3597796444719133743510" ], - "redemptionFee": "9652315542914983243", + "redemptionFee": "3672239545634444248", "reserves": [ - "559427827404376489825103", - "789501894006743867667370" + "1414612844833263942006333", + "2012993644511242286867057" ], - "LPTokenSupply": "1345526023966374891068363" + "LPTokenSupply": "3422350564025968709519956" }, { - "type": "mintMulti", - "inputQtys": [ - "15256140297833562505216", - "6243660445213334175744" + "type": "redeemMasset", + "inputQty": "83898702892212243188940", + "expectedQtys": [ + "34658334979854920136216", + "49318800050916299304425" ], - "expectedQty": "21460244390215911089832", + "redemptionFee": "50339221735327345913", "reserves": [ - "574683967702210052330319", - "795745554451957201843114" + "1379954509853409021870117", + "1963674844460325987562632" ], - "LPTokenSupply": "1366986268356590802158195" + "LPTokenSupply": "3338456895055929999065607" }, { - "type": "redeemBassets", - "inputQtys": [ - "313511241154260778352640", - "559214333662616562434048" - ], - "expectedQty": "870492946670190426552212", - "swapFee": "522609333602275621304", + "type": "mint", + "inputIndex": 0, + "inputQty": "211316068406379101028352", + "expectedQty": "211228180437198403244739", + "reserves": [ + "1591270578259788122898469", + "1963674844460325987562632" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "175407548275656230961152", + "expectedQty": "175648178127900012379408", + "swapFee": "105244528965393738576", "reserves": [ - "261172726547949273977679", - "236531220789340639409066" + "1591270578259788122898469", + "1788026666332425975183224" ], - "LPTokenSupply": "496022973286158327546808" + "LPTokenSupply": "3374288051670368710723051" }, { "type": "mintMulti", "inputQtys": [ - "259291757849275858944", - "136495471937543979008" + "107020289913213683761152", + "27905595884817629577216" ], - "expectedQty": "394416514925503701662", + "expectedQty": "134752370371115857946349", "reserves": [ - "261432018305798549836623", - "236667716261278183388074" + "1698290868173001806659621", + "1815932262217243604760440" ], - "LPTokenSupply": "496417389801083831248470" + "LPTokenSupply": "3509040422041484568669400" }, { - "type": "mintMulti", - "inputQtys": [ - "39326051274424682807296", - "32710463665966654947328" + "type": "mint", + "inputIndex": 1, + "inputQty": "820537046107309735936", + "expectedQty": "819150386844495800620", + "reserves": [ + "1698290868173001806659621", + "1816752799263350914496376" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1843915335655378534", + "expectedQtys": [ + "891666919687241940", + "953863912661223895" + ], + "redemptionFee": "1106349201393227", + "reserves": [ + "1698289976506082119417681", + "1816751845399438253272481" + ], + "LPTokenSupply": "3509857728623628329230808" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "32441598452475203944448", + "expectedQty": "32385827203025310705965", + "reserves": [ + "1698289976506082119417681", + "1849193443851913457216929" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "6997675078671070208", + "expectedQty": "7005717982498131847", + "swapFee": "4198605047202642", + "reserves": [ + "1698289976506082119417681", + "1849186438133930959085082" ], - "expectedQty": "71792155071940486919028", + "LPTokenSupply": "3542236558571435473586829" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "10747066994667038965760", + "expectedQty": "10753218413768574159008", + "swapFee": "6448240196800223379", "reserves": [ - "300758069580223232643919", - "269378179927244838335402" + "1687536758092313545258673", + "1849186438133930959085082" ], - "LPTokenSupply": "568209544873024318167498" + "LPTokenSupply": "3531490136400788114643406" }, { "type": "mintMulti", "inputQtys": [ - "903246370855182270464", - "10754009991220782170112" + "2928216755503055241216", + "8956816684061259988992" ], - "expectedQty": "11621063193049889611844", + "expectedQty": "11865754709456104297225", "reserves": [ - "301661315951078414914383", - "280132189918465620505514" + "1690464974847816600499889", + "1858143254817992219074074" ], - "LPTokenSupply": "579830608066074207779342" + "LPTokenSupply": "3543355891110244218940631" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "205206652721265704960", - "expectedQty": "205725111422308405270", - "swapFee": "123123991632759422", + "inputIndex": 0, + "inputQty": "7991730445641629827072", + "expectedQty": "7996075907834244560295", + "swapFee": "4795038267384977896", "reserves": [ - "301661315951078414914383", - "279926464807043312100244" + "1682468898939982355939594", + "1858143254817992219074074" ], - "LPTokenSupply": "579625413725752105350324" + "LPTokenSupply": "3535364640168429327611348" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "442456366506979229696", - "expectedQty": "440857063288450182462", + "inputIndex": 1, + "inputQty": "63248016484264128282624", + "expectedQty": "63131082080372147705309", "reserves": [ - "302103772317585394144079", - "279926464807043312100244" + "1682468898939982355939594", + "1921391271302256347356698" ] }, { - "type": "redeemMasset", - "inputQty": "2953664633355401533849", - "expectedQtys": [ - "1537372339798204124001", - "1424514500002465444479" + "type": "redeemBassets", + "inputQtys": [ + "27093294767449153536", + "9254469118909952000" ], - "redemptionFee": "1772198780013240920", + "expectedQty": "36302614601434224445", + "swapFee": "21794645548189448", "reserves": [ - "300566399977787190020078", - "278501950307040846655765" + "1682441805645214906786058", + "1921382016833137437404698" ], - "LPTokenSupply": "577112783375563155323029" + "LPTokenSupply": "3598459400019019047721707" }, { "type": "redeemBassets", "inputQtys": [ - "28264500545278943232", - "3137202774116634624" + "94034590289916776677376", + "77205682766117425119232" ], - "expectedQty": "31289624449035059634", - "swapFee": "18785045696839139", + "expectedQty": "170998627645676982444577", + "swapFee": "102660773051236931625", "reserves": [ - "300538135477241911076846", - "278498813104266730021141" + "1588407215355298130108682", + "1844176334067020012285466" ], - "LPTokenSupply": "577081476844572993108168" + "LPTokenSupply": "3427368377677595952038666" }, { "type": "redeemBassets", "inputQtys": [ - "102991231096347394048", - "41534225202160640000" + "4834503619694524628992", + "2830193972803238625280" ], - "expectedQty": "144023298241732417798", - "swapFee": "86465858460115519", + "expectedQty": "7654342199810678240039", + "swapFee": "4595362537408852255", "reserves": [ - "300435144246145563682798", - "278457278879064569381141" + "1583572711735603605479690", + "1841346140094216773660186" ], - "LPTokenSupply": "576937375727058646586401" + "LPTokenSupply": "3419709899651501605831596" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6609342554428549365760", - "2120479849957239816192" + "374608047022648704", + "284716559479067008" ], - "expectedQty": "8699197101812893758390", + "expectedQty": "658392064224327702", + "swapFee": "395272401975782", "reserves": [ - "307044486800574113048558", - "280577758729021809197333" + "1583572337127556582830986", + "1841345855377657294593178" ], - "LPTokenSupply": "585636572828871540344791" + "LPTokenSupply": "3419709240903692219725689" }, { - "type": "redeemMasset", - "inputQty": "1275999091330971033", - "expectedQtys": [ - "668594536664019137", - "610962790931012821" + "type": "mintMulti", + "inputQtys": [ + "1599285325835660288", + "367226085577648640" ], - "redemptionFee": "765599454798582", + "expectedQty": "1964215186464971178", "reserves": [ - "307043818206037449029421", - "280577147766230878184512" + "1583573936412882418491274", + "1841346222603742872241818" ], - "LPTokenSupply": "585635296906340154853616" + "LPTokenSupply": "3419711205118878684696867" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "145366613365458698240", - "outputIndex": 1, - "expectedQty": "145162864496485614380", - "swapFee": "115867081264135034", + "type": "redeemBassets", + "inputQtys": [ + "140340677476128145408", + "174860886415007285248" + ], + "expectedQty": "314716740115676874057", + "swapFee": "188943410115475409", "reserves": [ - "307189184819402907727661", - "280431984901734392570132" + "1583433595735406290345866", + "1841171361717327864956570" ], - "LPTokenSupply": "585635308493048281267119", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3419396318329693903894940" }, { "type": "mint", "inputIndex": 0, - "inputQty": "255047647729563904", - "expectedQty": "254112252362341611", + "inputQty": "44547071847626933534720", + "expectedQty": "44501174046392305012570", "reserves": [ - "307189439867050637291565", - "280431984901734392570132" + "1627980667583033223880586", + "1841171361717327864956570" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "17591447712549", - "116070808778" + "198395313946219184128", + "78078812043923439616" ], - "expectedQty": "17642645666319", - "swapFee": "10591942565", + "expectedQty": "276111564725358787382", + "reserves": [ + "1628179062896979443064714", + "1841249440529371788396186" + ], + "LPTokenSupply": "3464173603940811567694892" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1497129155495443300352", + "expectedQty": "1499075188061677322083", + "swapFee": "898277493297265980", "reserves": [ - "307189439849459189579016", - "280431984901618321761354" + "1628179062896979443064714", + "1839750365341310111074103" ], - "LPTokenSupply": "585635562587648465194101" + "LPTokenSupply": "3462676564613065454121138" }, { "type": "redeemMasset", - "inputQty": "19235705238235361207910", + "inputQty": "31101351811657638294323", "expectedQtys": [ - "10083848200473052773199", - "9205503834022010088104" + "14615337517461919227937", + "16514505775240063891637" ], - "redemptionFee": "11541423142941216724", + "redemptionFee": "18660811086994582976", "reserves": [ - "297105591648986136805817", - "271226481067596311673250" + "1613563725379517523836777", + "1823235859566070047182466" ], - "LPTokenSupply": "566401011491727398107863" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "223185855065092652007424", - "outputIndex": 1, - "hardLimitError": true + "LPTokenSupply": "3431577078882516515285112" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2668553842464613376", - "expectedQty": "2658718036156680872", + "inputQty": "16344793522475035000832", + "expectedQty": "16326710251098123205315", "reserves": [ - "297108260202828601419193", - "271226481067596311673250" + "1629908518901992558837609", + "1823235859566070047182466" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "101860116774283617763328", - "expectedQty": "102106886086134265822326", - "swapFee": "61116070064570170657", - "reserves": [ - "195001374116694335596867", - "271226481067596311673250" - ], - "LPTokenSupply": "464549665042486394042472" - }, - { - "type": "mint", "inputIndex": 1, - "inputQty": "25833975434460574777344", - "expectedQty": "25712603761491563376947", + "inputQty": "1259682248226707603456", + "expectedQty": "1261282767544071359036", + "swapFee": "755809348936024562", "reserves": [ - "195001374116694335596867", - "297060456502056886450594" - ] + "1629908518901992558837609", + "1821974576798525975823430" + ], + "LPTokenSupply": "3446644182466322824489427" }, { - "type": "mintMulti", - "inputQtys": [ - "10465611215266244", - "32204430578579868" + "type": "redeemMasset", + "inputQty": "3472298609553601829273", + "expectedQtys": [ + "1641055202392623432772", + "1834434769318551999693" ], - "expectedQty": "42494737796191961", + "redemptionFee": "2083379165732161097", "reserves": [ - "195001384582305550863111", - "297060488706487465030462" + "1628267463699599935404837", + "1820140142029207423823737" ], - "LPTokenSupply": "490262311298715753611380" + "LPTokenSupply": "3443172092194685795876263" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1056584463783237565546496", + "inputQty": "4900188078953345", "outputIndex": 1, - "hardLimitError": true + "expectedQty": "4899899919164012", + "swapFee": "3915730722583", + "reserves": [ + "1628267468599788014358182", + "1820140137129307504659725" + ], + "LPTokenSupply": "3443172092195077368948521", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "5204046268751554805760", + "inputQty": "29963959898867278807040", "outputIndex": 1, - "expectedQty": "5214567938774343793209", - "swapFee": "4155252827678232483", + "expectedQty": "29958697670630699849594", + "swapFee": "23943368346911807871", "reserves": [ - "200205430851057105668871", - "291845920767713121237253" + "1658231428498655293165222", + "1790181439458676804810131" ], - "LPTokenSupply": "490262726823998521434628", + "LPTokenSupply": "3443174486531912060129308", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "4526122368989841408", - "920238846582124544" - ], - "expectedQty": "5432654329839932229", + "type": "swap", + "inputIndex": 0, + "inputQty": "34909978794199810572288", + "outputIndex": 1, + "expectedQty": "34895077684313290339925", + "swapFee": "27891911751512862737", "reserves": [ - "200209956973426095510279", - "291846841006559703361797" + "1693141407292855103737510", + "1755286361774363514470206" ], - "LPTokenSupply": "490268159478328361366857" + "LPTokenSupply": "3443177275723087211415581", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "5617985283599874654208", - "expectedQty": "5605991441040119680085", + "inputQty": "3962477156864815005696", + "expectedQty": "3965640594102423217667", + "swapFee": "2377486294118889003", "reserves": [ - "205827942257025970164487", - "291846841006559703361797" - ] + "1689175766698752680519843", + "1755286361774363514470206" + ], + "LPTokenSupply": "3439215036314851808298785" }, { - "type": "redeemBassets", - "inputQtys": [ - "4334921617415087849472", - "518290041478827671552" - ], - "expectedQty": "4841466297804630429861", - "swapFee": "2906623752934538981", + "type": "redeem", + "inputIndex": 0, + "inputQty": "48067124649689538560", + "expectedQty": "48105335917582038859", + "swapFee": "28840274789813723", "reserves": [ - "201493020639610882315015", - "291328550965080875690245" + "1689127661362835098480984", + "1755286361774363514470206" ], - "LPTokenSupply": "491030068660186209531997" + "LPTokenSupply": "3439166972074229597741597" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "63861080259761723670528", - "expectedQty": "63540563539981851452542", + "type": "redeemMasset", + "inputQty": "1193383695144555275878", + "expectedQtys": [ + "585772066317263626887", + "608715221847413468888" + ], + "redemptionFee": "716030217086733165", "reserves": [ - "201493020639610882315015", - "355189631224842599360773" - ] + "1688541889296517834854097", + "1754677646552516101001318" + ], + "LPTokenSupply": "3437973659982106751139035" }, { "type": "redeemBassets", "inputQtys": [ - "578639418715939712", - "47099001737674506240" + "31610875888905819783168", + "44240239540895043551232" ], - "expectedQty": "47425622863714696917", - "swapFee": "28472457192544344", + "expectedQty": "75734256130935769303298", + "swapFee": "45467834379188974966", "reserves": [ - "201492442000192166375303", - "355142532223104924854533" + "1656931013407612015070929", + "1710437407011621057450086" ], - "LPTokenSupply": "554523180952092872997711" + "LPTokenSupply": "3362198482800229711758266" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "57187932375882638819328", - "expectedQty": "57149645288182415756398", - "swapFee": "34312759425529583291", + "inputIndex": 1, + "inputQty": "74797237778371691151360", + "expectedQty": "74869597904669208249088", + "swapFee": "44878342667023014690", "reserves": [ - "144342796712009750618905", - "355142532223104924854533" + "1656931013407612015070929", + "1635567809106951849200998" ], - "LPTokenSupply": "497338679852152787136712" + "LPTokenSupply": "3287405732856124722908375" }, { - "type": "mintMulti", - "inputQtys": [ - "3550439206210886434816", - "165458628459753537536" - ], - "expectedQty": "3719855458811177811427", + "type": "redeem", + "inputIndex": 0, + "inputQty": "52056573469776414769152", + "expectedQty": "52105426893960156981478", + "swapFee": "31233944081865848861", "reserves": [ - "147893235918220637053721", - "355307990851564678392069" + "1604825586513651858089451", + "1635567809106951849200998" ], - "LPTokenSupply": "501058535310963964948139" + "LPTokenSupply": "3235352282780756494724109" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "35313328815612712976384", - "expectedQty": "35191576485819787095113", - "swapFee": "21187997289367627785", + "inputQty": "7483439213438999461888", + "expectedQty": "7490068618979355332873", + "swapFee": "4490063528063399677", "reserves": [ - "112701659432400849958608", - "355307990851564678392069" + "1597335517894672502756578", + "1635567809106951849200998" ], - "LPTokenSupply": "465747325295080188734533" + "LPTokenSupply": "3227869292573670301602188" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4029876379787079974912", - "expectedQty": "4006866247239649550221", - "swapFee": "2417925827872247984", + "type": "mint", + "inputIndex": 1, + "inputQty": "100390590658332", + "expectedQty": "100226510510309", "reserves": [ - "108694793185161200408387", - "355307990851564678392069" - ], - "LPTokenSupply": "461717690707875895984419" + "1597335517894672502756578", + "1635567809207342439859330" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "915586690523969880064", - "expectedQty": "910005531148866231704", - "swapFee": "549352014314381928", + "inputQty": "16861733163670708420608", + "outputIndex": 1, + "expectedQty": "16849719361383785307327", + "swapFee": "13469212407868630361", "reserves": [ - "107784787654012334176683", - "355307990851564678392069" + "1614197251058343211177186", + "1618718089845958654552003" ], - "LPTokenSupply": "460802158952553357542547" + "LPTokenSupply": "3227870639595137598975533", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "11512999847657162752", - "45906856163335389184" + "10788753323652391370752", + "3173615568183710711808" ], - "expectedQty": "57110376897680245635", - "swapFee": "34286798217538670", + "expectedQty": "13940712212055717045526", + "swapFee": "8369448996631409072", "reserves": [ - "107773274654164677013931", - "355262083995401343002885" + "1603408497734690819806434", + "1615544474277774943840195" ], - "LPTokenSupply": "460745017717537281512108" + "LPTokenSupply": "3213922394878984913661841" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "85348059855269172084736", - "43526485790792290926592" + "4272290469624246435840", + "1226227118134129852416" ], - "hardLimitError": true + "expectedQty": "5489991318938218608120", + "reserves": [ + "1607680788204315066242274", + "1616770701395909073692611" + ], + "LPTokenSupply": "3219412386197923132269961" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "183715063448824774656", - "expectedQty": "184741787512488808622", + "type": "mintMulti", + "inputQtys": [ + "95088886453680537075712", + "107878388794161637621760" + ], + "expectedQty": "202649710628823195548650", "reserves": [ - "107956989717613501788587", - "355262083995401343002885" - ] + "1702769674657995603317986", + "1724649090190070711314371" + ], + "LPTokenSupply": "3422062096826746327818611" }, { - "type": "redeemMasset", - "inputQty": "12495632665359750791168", - "expectedQtys": [ - "2924917440966938172206", - "9625243055687727297981" + "type": "redeemBassets", + "inputQtys": [ + "2211529110281185394688", + "1436076685242518994944" ], - "redemptionFee": "7497379599215850474", + "expectedQty": "3641939333478828221369", + "swapFee": "2186475485378524047", "reserves": [ - "105032072276646563616381", - "345636840939713615704904" + "1700558145547714417923298", + "1723213013504828192319427" ], - "LPTokenSupply": "448434876577649941114609" + "LPTokenSupply": "3418418189665330658925598" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "30551426927042597224448", - "expectedQty": "30776413763202250588316", - "swapFee": "18330856156225558334", + "inputIndex": 0, + "inputQty": "2092214173375240077312", + "expectedQty": "2094136435795308406143", + "swapFee": "1255328504025144046", "reserves": [ - "105032072276646563616381", - "314860427176511365116588" + "1698464009111919109517155", + "1723213013504828192319427" ], - "LPTokenSupply": "417885282736222966445994" + "LPTokenSupply": "3416326101024805821362690" }, { - "type": "redeemBassets", - "inputQtys": [ - "288702916975677800448", - "305079580931157327872" - ], - "expectedQty": "592581460856032091251", - "swapFee": "355762333913967635", + "type": "redeem", + "inputIndex": 0, + "inputQty": "10159295153090433384448", + "expectedQty": "10168509813089050290552", + "swapFee": "6095577091854260030", "reserves": [ - "104743369359670885815933", - "314555347595580207788716" + "1688295499298830059226603", + "1723213013504828192319427" ], - "LPTokenSupply": "417292381089266411783870" + "LPTokenSupply": "3406167415429424573404245" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "55473884501903073607680", - "expectedQty": "55545538391873462187331", + "type": "swap", + "inputIndex": 1, + "inputQty": "355266487587301056", + "outputIndex": 0, + "expectedQty": "355218318394093802", + "swapFee": "0", "reserves": [ - "160217253861573959423613", - "314555347595580207788716" - ] + "1688295144080511665132801", + "1723213368771315779620483" + ], + "LPTokenSupply": "3406167415429424573404245", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "692407552570362953728", - "172537634263738187776" - ], - "expectedQty": "863557261755913148456", + "type": "swap", + "inputIndex": 1, + "inputQty": "6753024926582478733312", + "outputIndex": 0, + "expectedQty": "6751932147258642874487", + "swapFee": "0", "reserves": [ - "160909661414144322377341", - "314727885229843945976492" + "1681543211933253022258314", + "1729966393697898258353795" ], - "LPTokenSupply": "473701476742895787119657" + "LPTokenSupply": "3406167415429424573404245", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "10510579212784183646617", - "expectedQtys": [ - "3568152250172519834449", - "6979052730616163448911" - ], - "redemptionFee": "6306347527670510187", + "type": "mint", + "inputIndex": 0, + "inputQty": "195886709012066782412800", + "expectedQty": "195562404890597878105721", "reserves": [ - "157341509163971802542892", - "307748832499227782527581" - ], - "LPTokenSupply": "463191528164864370524058" + "1877429920945319804671114", + "1729966393697898258353795" + ] }, { - "type": "redeemMasset", - "inputQty": "4680716214408223444172", - "expectedQtys": [ - "1589038282905297740240", - "3108046179035000040166" - ], - "redemptionFee": "2808429728644934066", + "type": "redeem", + "inputIndex": 1, + "inputQty": "18190206267763822592", + "expectedQty": "18202746439232506753", + "swapFee": "10914123760658293", "reserves": [ - "155752470881066504802652", - "304640786320192782487415" + "1877429920945319804671114", + "1729948190951459025847042" ], - "LPTokenSupply": "458511092793429011573292" + "LPTokenSupply": "3601711631205167063753203" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "1735209402623194", - "expectedQty": "1735160189233520", - "swapFee": "1041125641573", + "inputQty": "4037265001582371012608", + "outputIndex": 1, + "expectedQty": "4031783735320441352911", + "swapFee": "3223887312316920977", "reserves": [ - "155752469145906315569132", - "304640786320192782487415" + "1881467185946902175683722", + "1725916407216138584494131" ], - "LPTokenSupply": "458511091058323721514255" + "LPTokenSupply": "3601711953593898295445300", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "443894210433567202213888", - "expectedQty": "442072637413183723853024", + "inputQty": "31506791215267831611392", + "expectedQty": "31447791455263491399187", "reserves": [ - "599646679579473517783020", - "304640786320192782487415" + "1912973977162170007295114", + "1725916407216138584494131" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "626659659573460", - "387035883926250" - ], - "expectedQty": "1009788822698113", - "swapFee": "606237035840", + "type": "swap", + "inputIndex": 0, + "inputQty": "141713515119207589609472", + "outputIndex": 1, + "expectedQty": "141427561590380701686606", + "swapFee": "113142573398170584911", "reserves": [ - "599646678952813858209560", - "304640785933156898561165" + "2054687492281377596904586", + "1584488845625757882807525" ], - "LPTokenSupply": "900583727461173009336909" + "LPTokenSupply": "3633171059306501603902978", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "15762829203096712773632", - "expectedQty": "15751725268751176300560", + "inputQty": "17770219523289783468032", + "expectedQty": "17758220389121300556164", "reserves": [ - "599646678952813858209560", - "320403615136253611334797" + "2054687492281377596904586", + "1602259065149047666275557" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "31713336988379430912", - "12709371273033871360" - ], - "expectedQty": "44229948872588411567", - "swapFee": "26553901664551778", + "type": "mint", + "inputIndex": 1, + "inputQty": "17793665846889596", + "expectedQty": "17781252707484677", "reserves": [ - "599614965615825478778648", - "320390905764980577463437" - ], - "LPTokenSupply": "916291198882540099129300" + "2054687492281377596904586", + "1602259082942713513165153" + ] }, { "type": "redeemMasset", - "inputQty": "5297917440103311160115", + "inputQty": "83476161112508684", "expectedQtys": [ - "3464842357107262015836", - "1851361364849108573507" + "46950926660101257", + "36612647410530136" ], - "redemptionFee": "3178750464061986696", + "redemptionFee": "50085696667505", "reserves": [ - "596150123258718216762812", - "318539544400131468889930" + "2054687445330450936803329", + "1602259046330066102635017" ], - "LPTokenSupply": "910993599317483194167854" + "LPTokenSupply": "3650929214005723069101885" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "56985380424864129024", - "expectedQty": "57001215254228643761", - "swapFee": "34191228254918477", + "inputQty": "354142974815347802112", + "expectedQty": "354177411944421584410", + "swapFee": "212485784889208681", "reserves": [ - "596150123258718216762812", - "318482543184877240246169" + "2054687445330450936803329", + "1601904868918121681050607" ], - "LPTokenSupply": "910936617356181155530677" + "LPTokenSupply": "3650575092279486210220641" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2399216934836545519616", - "expectedQty": "2399821809529680564417", - "swapFee": "1439530160901927311", + "inputIndex": 0, + "inputQty": "351624903803843507126272", + "expectedQty": "352153380227773639138624", + "swapFee": "210974942282306104275", "reserves": [ - "596150123258718216762812", - "316082721375347559681752" + "1702534065102677297664705", + "1601904868918121681050607" ], - "LPTokenSupply": "908537544374360700203792" + "LPTokenSupply": "3298971285969870933704796" }, { - "type": "redeemMasset", - "inputQty": "244840828219863142", - "expectedQtys": [ - "160559476811205596", - "85129691990457366" + "type": "redeemBassets", + "inputQtys": [ + "3590485589489111007232", + "47701822961130381312" ], - "redemptionFee": "146904496931917", + "expectedQty": "3631487117732880995456", + "swapFee": "2180200390874253149", "reserves": [ - "596149962699241405557216", - "316082636245655569224386" + "1698943579513188186657473", + "1601857167095160550669295" ], - "LPTokenSupply": "908537299548222930033841" + "LPTokenSupply": "3295337836671786265881504" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "27426819343144640839680", - "expectedQty": "27396669358093631326303", + "type": "redeemMasset", + "inputQty": "929375169384476", + "expectedQtys": [ + "478860948895089", + "451496360608621" + ], + "redemptionFee": "557625101630", "reserves": [ - "596149962699241405557216", - "343509455588800210064066" - ] + "1698943579034327237762384", + "1601857166643664190060674" + ], + "LPTokenSupply": "3295337835742466859007191" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6917261946976784613376", - "14337516546143390007296" + "54748753511993", + "15094071545074" ], - "expectedQty": "21196667555146112583211", + "expectedQty": "69719908799964", + "swapFee": "41857059515", "reserves": [ - "603067224646218190170592", - "357846972134943600071362" + "1698943578979578484250391", + "1601857166628570118515600" ], - "LPTokenSupply": "957130636461462673943355" + "LPTokenSupply": "3295337835672709278853662" }, { "type": "redeemBassets", "inputQtys": [ - "2435209186917200953344", - "10251942846205928669184" + "10417941093854725799936", + "16866869831746776465408" ], - "expectedQty": "12659101470275293691831", - "swapFee": "7600020894701997413", + "expectedQty": "27241119843820589714712", + "swapFee": "16354484597050584179", "reserves": [ - "600632015459300989217248", - "347595029288737671402178" + "1688525637885723758450455", + "1584990296796823342050192" ], - "LPTokenSupply": "944464694972382148453851" + "LPTokenSupply": "3268081996792751343613187" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "282031755627384143872", - "expectedQty": "282252711276151703510", - "swapFee": "169219053376430486", + "type": "mintMulti", + "inputQtys": [ + "145784882237252218912768", + "39906180285407407636480" + ], + "expectedQty": "185352209382165462894491", "reserves": [ - "600632015459300989217248", - "347312776577461519698668" + "1834310520122975977363223", + "1624896477082230749686672" ], - "LPTokenSupply": "944182680138660101953027" + "LPTokenSupply": "3453434206174916806507678" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2482953220749726318592", - "expectedQty": "2484840366235196132990", - "swapFee": "1489771932449835791", + "inputQty": "99255218121720037376", + "expectedQty": "99318931811477063230", + "swapFee": "59553130873032022", "reserves": [ - "600632015459300989217248", - "344827936211226323565678" + "1834310520122975977363223", + "1624797158150419272623442" ], - "LPTokenSupply": "941699875895103620618014" + "LPTokenSupply": "3453334956912108173773504" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1928790225800399", - "expectedQty": "1938276742004478", - "swapFee": "1157274135480", + "type": "mintMulti", + "inputQtys": [ + "168076462838801460363264", + "9297678277738742415360" + ], + "expectedQty": "176997820144851565062222", "reserves": [ - "600632013521024247212770", - "344827936211226323565678" + "2002386982961777437726487", + "1634094836428158015038802" ], - "LPTokenSupply": "941699873966429122231163" + "LPTokenSupply": "3630332777056959738835726" }, { "type": "mintMulti", "inputQtys": [ - "6447444566076082356224", - "10348488283949195329536" + "1823685701045180170240", + "128228923220772519936" ], - "expectedQty": "16746298851141366650632", + "expectedQty": "1947588244009163109496", "reserves": [ - "607079458087100329568994", - "355176424495175518895214" + "2004210668662822617896727", + "1634223065351378787558738" ], - "LPTokenSupply": "958446172817570488881795" + "LPTokenSupply": "3632280365300968901945222" }, { "type": "redeemMasset", - "inputQty": "3634687243465656729", + "inputQty": "514022248008436940800", "expectedQtys": [ - "2300828255403466274", - "1346116957583546539" + "283455748047469937968", + "231128358265183788105" ], - "redemptionFee": "2180812346079394", + "redemptionFee": "308413348805062164", "reserves": [ - "607077157258844926102720", - "355175078378217935348675" + "2003927212914775147958759", + "1633991936993113603770633" ], - "LPTokenSupply": "958442538348408257833005" + "LPTokenSupply": "3631766373894295345510638" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "1471643260890031616", - "outputIndex": 1, - "expectedQty": "1464608507855915275", - "swapFee": "1170924958581409", + "inputQty": "3352878857513732669440", + "expectedQty": "3345132177365701822612", "reserves": [ - "607078628902105816134336", - "355173613769710079433400" - ], - "LPTokenSupply": "958442538465500753691145", - "hardLimitError": false, - "insufficientLiquidityError": false + "2007280091772288880628199", + "1633991936993113603770633" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "99822900166098878464", - "101636852349135093760" + "type": "redeemMasset", + "inputQty": "66381338958808678400", + "expectedQtys": [ + "36633262107829656853", + "29820678815729276342" ], - "expectedQty": "200770624443206141207", + "redemptionFee": "39828803375285207", "reserves": [ - "607178451802271915012800", - "355275250622059214527160" + "2007243458510181050971346", + "1633962116314297874494291" ], - "LPTokenSupply": "958643309089943959832352" + "LPTokenSupply": "3635045128715582576183370" }, { "type": "mintMulti", "inputQtys": [ - "120025563155937456291840", - "58055154752954841432064" + "110332319483445460992", + "612446281048559845376" ], - "expectedQty": "177344117531731565554787", + "expectedQty": "721954265124958176395", "reserves": [ - "727204014958209371304640", - "413330405375014055959224" + "2007353790829664496432338", + "1634574562595346434339667" ], - "LPTokenSupply": "1135987426621675525387139" + "LPTokenSupply": "3635767082980707534359765" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "9806269148880890232832", - "expectedQty": "9751857529366798360437", + "inputIndex": 1, + "inputQty": "5194338640493945028608", + "expectedQty": "5189476436803340310404", "reserves": [ - "737010284107090261537472", - "413330405375014055959224" + "2007353790829664496432338", + "1639768901235840379368275" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "64273920772068572397568", - "expectedQty": "64169706247867086832116", + "inputQty": "78564089907104943439872", + "expectedQty": "78483084782194154659380", "reserves": [ - "737010284107090261537472", - "477604326147082628356792" + "2007353790829664496432338", + "1718332991142945322808147" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5522723345631184683008", - "expectedQty": "5530297664562572897158", - "swapFee": "3313634007378710809", + "type": "mintMulti", + "inputQtys": [ + "5697612311580526592", + "13524870304262393856" + ], + "expectedQty": "19195087774380818614", "reserves": [ - "737010284107090261537472", - "472074028482520055459634" + "2007359488441976076958930", + "1718346516013249585202003" ], - "LPTokenSupply": "1204386598416678963767764" + "LPTokenSupply": "3719458839287479410148163" }, { "type": "mintMulti", "inputQtys": [ - "769582019178093084672", - "817839505233398726656" + "29094779499035181056", + "40376516706493579264" ], - "expectedQty": "1581884722781183366299", + "expectedQty": "69363461509378882392", "reserves": [ - "737779866126268354622144", - "472891867987753454186290" + "2007388583221475112139986", + "1718386892529956078781267" ], - "LPTokenSupply": "1205968483139460147134063" + "LPTokenSupply": "3719528202748988789030555" }, { "type": "redeemBassets", "inputQtys": [ - "189947160924776136704", - "1974458306749261938688" + "199948045220802035712", + "77639103403138236416" ], - "expectedQty": "2159608899318257484402", - "swapFee": "1296543265550284661", + "expectedQty": "277069401375988962072", + "swapFee": "166341445693009182", "reserves": [ - "737589918965343578485440", - "470917409681004192247602" + "2007188635176254310104274", + "1718309253426552940544851" ], - "LPTokenSupply": "1203807707351202894393465" + "LPTokenSupply": "3719250983640311676360218" }, { - "type": "redeemBassets", - "inputQtys": [ - "21809293311893682782208", - "21963890572800513015808" - ], - "expectedQty": "43619101811994043653272", - "swapFee": "26187173391231164890", + "type": "swap", + "inputIndex": 1, + "inputQty": "86838962439672714756096", + "outputIndex": 0, + "expectedQty": "86901786183489226485880", + "swapFee": "0", "reserves": [ - "715780625653449895703232", - "448953519108203679231794" + "1920286848992765083618394", + "1805148215866225655300947" ], - "LPTokenSupply": "1160165037083156742691791" + "LPTokenSupply": "3719250983640311676360218", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "2885722418373683314688", - "206644891974053462016" - ], - "expectedQty": "3076906175537155399633", + "type": "redeem", + "inputIndex": 1, + "inputQty": "14568274486138152943616", + "expectedQty": "14580456762159754115287", + "swapFee": "8740964691682891766", "reserves": [ - "718666348071823579017920", - "449160164000177732693810" + "1920286848992765083618394", + "1790567759104065901185660" ], - "LPTokenSupply": "1163241943258693898091424" + "LPTokenSupply": "3704683583250642691705778" }, { "type": "redeemMasset", - "inputQty": "1293167297861740658688", + "inputQty": "389582405571533516", "expectedQtys": [ - "798456599068839884902", - "499028371019457110013" + "201815104376590768", + "188182103828128011" ], - "redemptionFee": "775900378717044395", + "redemptionFee": "233749443342920", "reserves": [ - "717867891472754739133018", - "448661135629158275583797" + "1920286647177660707027626", + "1790567570921962073057649" ], - "LPTokenSupply": "1161948853550870029137175" + "LPTokenSupply": "3704683193691612064506554" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "60763508424719518924800", - "expectedQty": "60632366701644552704642", + "type": "redeemBassets", + "inputQtys": [ + "30826989990826640", + "76478826002522928" + ], + "expectedQty": "107138815691158586", + "swapFee": "64321882544221", "reserves": [ - "717867891472754739133018", - "509424644053877794508597" - ] + "1920286616350670716200986", + "1790567494443136070534721" + ], + "LPTokenSupply": "3704683086494906679058168" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "81416432989688742019072", - "expectedQty": "81746821169428537930577", - "swapFee": "48849859793813245211", - "reserves": [ - "636121070303326201202441", - "509424644053877794508597" - ], - "LPTokenSupply": "1141169672248805221147266" - }, - { - "type": "redeemMasset", - "inputQty": "1564787116014432157696", - "expectedQtys": [ - "871734364130597063875", - "698110766783762746298" - ], - "redemptionFee": "938872269608659294", + "inputQty": "1416054070339930423296", + "expectedQty": "1417877649417337297597", + "swapFee": "849632442203958253", "reserves": [ - "635249335939195604138566", - "508726533287094031762299" + "1918868738701253378903389", + "1790567494443136070534721" ], - "LPTokenSupply": "1139604979020017749855499" + "LPTokenSupply": "3703267117387810969030697" }, { "type": "redeemBassets", "inputQtys": [ - "27265444761434431946752", - "528705215412770242560" + "4523103946057668624384", + "4058603263170791342080" ], - "expectedQty": "27672024550748542695552", - "swapFee": "16613182640033145504", + "expectedQty": "8567396671803370685957", + "swapFee": "5143524117552553943", "reserves": [ - "607983891177761172191814", - "508197828071681261519739" + "1914345634755195710279005", + "1786508891179965279192641" ], - "LPTokenSupply": "1111918002604893177328992" + "LPTokenSupply": "3694695091544301801046190" }, { - "type": "redeemMasset", - "inputQty": "58747619864540646", - "expectedQtys": [ - "32103244911168117", - "26834262510318388" + "type": "redeemBassets", + "inputQtys": [ + "11587658894246083035136", + "3773180253172512849920" ], - "redemptionFee": "35248571918724", + "expectedQty": "15333654162949481584746", + "swapFee": "9205715927326084601", "reserves": [ - "607983859074516261023697", - "508197801237418751201351" + "1902757975860949627243869", + "1782735710926792766342721" ], - "LPTokenSupply": "1111917943860798169980218" + "LPTokenSupply": "3679353152237017725985302" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "259913292046873529417728", - "expectedQty": "258894713231539705794814", + "inputIndex": 0, + "inputQty": "120468509954289729536", + "expectedQty": "120242634280922204918", "reserves": [ - "607983859074516261023697", - "768111093284292280619079" + "1902878444370903916973405", + "1782735710926792766342721" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "111923691626201320783872", - "expectedQty": "111556273446995036136234", + "inputQty": "4003054114301857497088", + "expectedQty": "4008154302497325185134", + "swapFee": "2401832468581114498", "reserves": [ - "719907550700717581807569", - "768111093284292280619079" - ] + "1898870290068406591788271", + "1782735710926792766342721" + ], + "LPTokenSupply": "3675470580940243648804581" }, { "type": "redeemMasset", - "inputQty": "1320766728751850245324", + "inputQty": "2342686983572662681", "expectedQtys": [ - "641041122220878789705", - "683963929465669982887" + "1209583790403126369", + "1135605854590604635" ], - "redemptionFee": "792460037251110147", + "redemptionFee": "1405612190143597", "reserves": [ - "719266509578496703017864", - "767427129354826610636192" + "1898869080484616188661902", + "1782734575320938175738086" ], - "LPTokenSupply": "1481048243056584786776956" + "LPTokenSupply": "3675468238393821295156259" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "419046371781680256", - "expectedQty": "420478754962502106", - "swapFee": "251427823069008", + "inputQty": "2182973552901439881216", + "outputIndex": 0, + "expectedQty": "2183870358100468720238", + "swapFee": "0", + "reserves": [ + "1896685210126515719941664", + "1784917548873839615619302" + ], + "LPTokenSupply": "3675468238393821295156259", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "280651313205263138816", + "outputIndex": 1, + "expectedQty": "280313564877015103436", + "swapFee": "224103109105367041", "reserves": [ - "719266509578496703017864", - "767426708876071648134086" + "1896965861439720983080480", + "1784637235308962600515866" ], - "LPTokenSupply": "1481047824035355787403600" + "LPTokenSupply": "3675468260804132205692963", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2865360544687593619456", - "11781730626720273268736" + "61659083623681866334208", + "65203236474700573966336" ], - "expectedQty": "14589506399329518304857", + "expectedQty": "126652373715185880031036", "reserves": [ - "722131870123184296637320", - "779208439502791921402822" + "1958624945063402849414688", + "1849840471783663174482202" ], - "LPTokenSupply": "1495637330434685305708457" + "LPTokenSupply": "3802120634519318085723999" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "101692930311250784550912", - "expectedQty": "101965520632469141345461", - "swapFee": "61015758186750470730", + "inputQty": "50899260841527336960", + "outputIndex": 1, + "expectedQty": "50839263593349861413", + "swapFee": "40644087394374784", "reserves": [ - "620166349490715155291859", - "779208439502791921402822" + "1958675844324244376751648", + "1849789632520069824620789" ], - "LPTokenSupply": "1393950501699253196204618" + "LPTokenSupply": "3802120638583726825161477", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "537495696767297740", - "expectedQtys": [ - "238987497532060478", - "300276006857773242" - ], - "redemptionFee": "322497418060378", + "type": "swap", + "inputIndex": 0, + "inputQty": "50468839389656440", + "outputIndex": 1, + "expectedQty": "50409340530179309", + "swapFee": "40300381516482", "reserves": [ - "620166110503217623231381", - "779208139226785063629580" + "1958675894793083766408088", + "1849789582110729294441480" ], - "LPTokenSupply": "1393949964235806170712915" + "LPTokenSupply": "3802120638587756863313125", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "959010540994439040", - "expectedQty": "954639200703815668", + "type": "mintMulti", + "inputQtys": [ + "117789849253640560", + "32919300905697004" + ], + "expectedQty": "150442818210223433", "reserves": [ - "620166110503217623231381", - "779209098237326058068620" - ] + "1958676012582933020048648", + "1849789615030030200138484" + ], + "LPTokenSupply": "3802120789030575073536558" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "409084864868514398208", - "expectedQty": "407219848161834110093", + "type": "redeemMasset", + "inputQty": "1661847009178394453606", + "expectedQtys": [ + "855592718390666174141", + "808028747484012575108" + ], + "redemptionFee": "997108205507036672", "reserves": [ - "620166110503217623231381", - "779618183102194572466828" - ] + "1957820419864542353874507", + "1848981586282546187563376" + ], + "LPTokenSupply": "3800459041732217229786619" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "9948090979034490880", - "expectedQty": "9918074078099560511", + "type": "redeemMasset", + "inputQty": "6138428644222336", + "expectedQtys": [ + "3160336698563179", + "2984647776071610" + ], + "redemptionFee": "3683057186533", "reserves": [ - "620176058594196657722261", - "779618183102194572466828" - ] + "1957820416704205655311328", + "1848981583297898411491766" + ], + "LPTokenSupply": "3800459035594156891282936" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "356884082614685952", - "expectedQty": "358303732589848686", - "swapFee": "214130449568811", + "inputQty": "6590195948013990445056", + "expectedQty": "6595907273970061260746", + "swapFee": "3954117568808394267", "reserves": [ - "620176058594196657722261", - "779617824798461982618142" + "1957820416704205655311328", + "1842385676023928350231020" ], - "LPTokenSupply": "1394367699934577238470116" + "LPTokenSupply": "3793869235057899781677306" }, { "type": "mint", "inputIndex": 0, - "inputQty": "16912540866943236096", - "expectedQty": "16861508295982844908", + "inputQty": "26976542628600201216", + "expectedQty": "26926295766492006395", "reserves": [ - "620192971135063600958357", - "779617824798461982618142" + "1957847393246834255512544", + "1842385676023928350231020" ] }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "9807137145622790144", + "outputIndex": 0, + "expectedQty": "9811091441214334827", + "swapFee": "0", + "reserves": [ + "1957837582155393041177717", + "1842395483161073973021164" + ], + "LPTokenSupply": "3793896161353666273683701", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "redeem", "inputIndex": 0, - "inputQty": "8267017281782122807296", - "expectedQty": "8286843801887587402598", - "swapFee": "4960210369069273684", + "inputQty": "692667270421093248", + "expectedQty": "693543465124404630", + "swapFee": "415600362252655", "reserves": [ - "611906127333176013555759", - "779617824798461982618142" + "1957836888611927916773087", + "1842395483161073973021164" ], - "LPTokenSupply": "1386118040182128005435096" + "LPTokenSupply": "3793895468727955888815718" }, { "type": "redeemBassets", "inputQtys": [ - "79146970680847786573824", - "121238247407317164228608" + "250823674377345804795904", + "14876988746421258682368" ], - "expectedQty": "199593023911789638523002", - "swapFee": "119827710973657977900", + "expectedQty": "265260411428592675411018", + "swapFee": "159251797935917155539", "reserves": [ - "532759156652328226981935", - "658379577391144818389534" + "1707013214234582111977183", + "1827518494414652714338796" ], - "LPTokenSupply": "1186417171330462074731983" + "LPTokenSupply": "3528491730681220887964713" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "61907038200214839296", - "outputIndex": 1, - "expectedQty": "61945874152263342101", - "swapFee": "49368248139089077", + "type": "mintMulti", + "inputQtys": [ + "640351435412597637120", + "544901311522555166720" + ], + "expectedQty": "1183258006390969931055", "reserves": [ - "532821063690528441821231", - "658317631516992555047433" + "1707653565669994709614303", + "1828063395726175269505516" ], - "LPTokenSupply": "1186417176267286888640890", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3529674988687611857895768" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "14973333916585029533696", - "expectedQty": "15032956040146761024613", - "swapFee": "8984000349951017720", + "inputQty": "63932782604156592128", + "expectedQty": "63809591977651576527", + "reserves": [ + "1707653565669994709614303", + "1828127328508779426097644" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "386232450571353088", + "expectedQty": "386571045227197100", + "swapFee": "231739470342811", "reserves": [ - "532821063690528441821231", - "643284675476845794022820" + "1707653179098949482417203", + "1828127328508779426097644" ], - "LPTokenSupply": "1171444740750736854208966" + "LPTokenSupply": "3529738412070312885153488" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "54659357400854859612160", - "expectedQty": "54404467287913660702284", + "type": "redeemBassets", + "inputQtys": [ + "2207544902447639822336", + "13322847070525631496192" + ], + "expectedQty": "15501568706543103731918", + "swapFee": "9306525139009267799", "reserves": [ - "532821063690528441821231", - "697944032877700653634980" - ] + "1705445634196501842594867", + "1814804481438253794601452" + ], + "LPTokenSupply": "3514228467491144673080549" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "40579619382095186493440", - "expectedQty": "40381683090615395377215", + "inputIndex": 0, + "inputQty": "252221078180093191258112", + "expectedQty": "251783772373421613427057", "reserves": [ - "532821063690528441821231", - "738523652259795840128420" + "1957666712376595033852979", + "1814804481438253794601452" ] }, { - "type": "redeemMasset", - "inputQty": "11599137798250819066265", - "expectedQtys": [ - "4877907199914248642351", - "6761087513532290234403" + "type": "redeemBassets", + "inputQtys": [ + "2354947274810481152", + "2049284520526070528" ], - "redemptionFee": "6959482678950491439", + "expectedQty": "4396656317460278116", + "swapFee": "2639577536998365", "reserves": [ - "527943156490614193178880", - "731762564746263549894017" + "1957664357429320223371827", + "1814802432153733268530924" ], - "LPTokenSupply": "1254632449279282986271343" + "LPTokenSupply": "3766007840832629042930960" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "69630664434263387013120", - "expectedQty": "69756364952999543104649", - "swapFee": "41778398660558032207", + "inputQty": "105826549702163735511040", + "expectedQty": "105960650479674958193435", + "swapFee": "63495929821298241306", "reserves": [ - "458186791537614650074231", - "731762564746263549894017" + "1851703706949645265178392", + "1814802432153733268530924" ], - "LPTokenSupply": "1185005962684885655061443" + "LPTokenSupply": "3660187640723447437244050" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "154341160015231909888", - "expectedQty": "155094568320633900396", - "swapFee": "92604696009139145", + "type": "redeemMasset", + "inputQty": "37018897211501432012", + "expectedQtys": [ + "18716772772520550773", + "18343779635022767240" + ], + "redemptionFee": "22211338326900859", + "reserves": [ + "1851684990176872744627619", + "1814784088374098245763684" + ], + "LPTokenSupply": "3660150624047369768502123" + }, + { + "type": "redeemMasset", + "inputQty": "342616954407500749209", + "expectedQtys": [ + "173227302856802719034", + "169775180208410041215" + ], + "redemptionFee": "205570172644500449", "reserves": [ - "458186791537614650074231", - "731607470177942915993621" + "1851511762874015941908585", + "1814614313193889835722469" ], - "LPTokenSupply": "1184851630785340024065469" + "LPTokenSupply": "3659808027649979532202958" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "4587540282623512576", - "outputIndex": 1, - "expectedQty": "4599433116156564617", - "swapFee": "3662406330680351", + "inputIndex": 1, + "inputQty": "25899856007375924", + "outputIndex": 0, + "expectedQty": "25903309473959276", + "swapFee": "0", "reserves": [ - "458191379077897273586807", - "731602870744826759429004" + "1851511736970706467949309", + "1814614339093745843098393" ], - "LPTokenSupply": "1184851631151580657133504", + "LPTokenSupply": "3659808027649979532202958", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "16251608137041876992", - "expectedQty": "16162963267612016715", + "inputQty": "75741236961740278726656", + "expectedQty": "75815944355043992226198", + "swapFee": "45444742177044167235", "reserves": [ - "458191379077897273586807", - "731619122352963801305996" - ] + "1851511736970706467949309", + "1738798394738701850872195" + ], + "LPTokenSupply": "3584071335162456957893025" }, { "type": "redeemBassets", "inputQtys": [ - "29509752274395230208", - "17933230804930852864" + "21840955832134024", + "9610530059460516" ], - "expectedQty": "47283850811069557821", - "swapFee": "28387342892377160", + "expectedQty": "31394495377555424", + "swapFee": "18848006030151", "reserves": [ - "458161869325622878356599", - "731601189122158870453132" + "1851511715129750635815285", + "1738798385128171791411679" ], - "LPTokenSupply": "1184820484715428596452953" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "7619425845413748408320", - "expectedQty": "7577734419023996731763", - "reserves": [ - "458161869325622878356599", - "739220614967572618861452" - ] + "LPTokenSupply": "3584071303750998374910464" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5117710828852566032384", - "expectedQty": "5107206997690101495369", + "type": "redeemBassets", + "inputQtys": [ + "925017890422913499136", + "2184431968370738593792" + ], + "expectedQty": "3104330546207871558887", + "swapFee": "1863716557659318526", "reserves": [ - "463279580154475444388983", - "739220614967572618861452" - ] + "1850586697239327722316149", + "1736613953159801052817887" + ], + "LPTokenSupply": "3580965295859888609964902" }, { - "type": "mintMulti", - "inputQtys": [ - "2540292814951768129536", - "2628449941748919042048" + "type": "redeemMasset", + "inputQty": "5568740622749219225", + "expectedQtys": [ + "2876111105112711771", + "2698979022937745661" ], - "expectedQty": "5149119528028774570663", + "redemptionFee": "3341244373649531", "reserves": [ - "465819872969427212518519", - "741849064909321537903500" + "1850583821128222609604378", + "1736611254180778115072226" ], - "LPTokenSupply": "1202654545660171469250748" + "LPTokenSupply": "3580959727453390298110630" }, { "type": "mint", "inputIndex": 1, - "inputQty": "19290469034949944", - "expectedQty": "19185413243986948", + "inputQty": "191112146235771191296", + "expectedQty": "190821415437967802809", "reserves": [ - "465819872969427212518519", - "741849084199790572853444" + "1850583821128222609604378", + "1736802366327013886263522" ] }, { "type": "redeemMasset", - "inputQty": "196238493761045607219", + "inputQty": "19016857159472185344", "expectedQtys": [ - "75962745938664872845", - "120975717821292827371" + "9821193589926643924", + "9217346478659408639" ], - "redemptionFee": "117743096256627364", + "redemptionFee": "11410114295683311", "reserves": [ - "465743910223488547645674", - "741728108481969280026073" + "1850573999934632682960454", + "1736793148980535226854883" ], - "LPTokenSupply": "1202458338126133293293213" + "LPTokenSupply": "3581131533152680223296426" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 1, + "inputQty": "518062050601345152", + "expectedQty": "518540145495411811", + "swapFee": "310837230360807", + "reserves": [ + "1850573999934632682960454", + "1736792630440389731443072" + ], + "LPTokenSupply": "3581131015121713344987354" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "25776756470992607379456", + "expectedQty": "25736888112571939098551", + "reserves": [ + "1850573999934632682960454", + "1762569386911382338822528" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "34073956777549377830912", - "8543807061966212562944" + "235710094546517622784", + "136711705795719004160" ], - "expectedQty": "42495616844766815825687", + "expectedQty": "371760469922945418479", + "swapFee": "223190196071410097", "reserves": [ - "499817867001037925476586", - "750271915543935492589017" + "1850338289840086165337670", + "1762432675205586619818368" ], - "LPTokenSupply": "1244953954970900109118900" + "LPTokenSupply": "3606495941893185874398337" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1690599892752293953536", - "expectedQty": "1698504575240877627293", - "swapFee": "1014359935651376372", + "inputQty": "3363832505399732736", + "expectedQty": "3367107063211733388", + "swapFee": "2018299503239839", "reserves": [ - "499817867001037925476586", - "748573410968694614961724" + "1850338289840086165337670", + "1762429308098523408084980" ], - "LPTokenSupply": "1243263456514141380303001" + "LPTokenSupply": "3606492578262510424989584" }, { "type": "redeemMasset", - "inputQty": "1379656783075015550566", + "inputQty": "196396114038058112", "expectedQtys": [ - "554318041468086125953", - "830197906995569359402" + "100702053962223735", + "95917731510642152" ], - "redemptionFee": "827794069845009330", + "redemptionFee": "117837668422834", "reserves": [ - "499263548959569839350633", - "747743213061699045602322" + "1850338189138032203113935", + "1762429212180791897442828" ], - "LPTokenSupply": "1241883882510473349253368" + "LPTokenSupply": "3606492381878180153773755" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "21253682980735385600", - "expectedQty": "21202676979551253411", + "type": "redeemMasset", + "inputQty": "7241827636678558849433", + "expectedQtys": [ + "3713245147681758224424", + "3536830055543275049143" + ], + "redemptionFee": "4345096582007135309", "reserves": [ - "499284802642550574736233", - "747743213061699045602322" - ] + "1846624943990350444889511", + "1758892382125248622393685" + ], + "LPTokenSupply": "3599250988751159795637852" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "740576212535481", - "1203627492956317" + "1784559243186264604672", + "69986075528480719634432" + ], + "expectedQty": "71652756786238597792251", + "reserves": [ + "1848409503233536709494183", + "1828878457653729342028117" ], - "expectedQty": "1936108893786756", - "swapFee": "1162362753924", + "LPTokenSupply": "3670903745537398393430103" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "13100250609625583616", + "expectedQty": "13114696030464074299", + "swapFee": "7860150365775350", "reserves": [ - "499284801901974362200752", - "747743211858071552646005" + "1848409503233536709494183", + "1828865342957698877953818" ], - "LPTokenSupply": "1241905083250297880241490" + "LPTokenSupply": "3670890646072803804424022" }, { "type": "mintMulti", "inputQtys": [ - "75714305948256967852032", - "137144149302105157402624" + "26442765523568218112", + "229737366771514310656" ], - "expectedQty": "211955876219810410682211", + "expectedQty": "255742525833005413426", "reserves": [ - "574999107850231330052784", - "884887361160176710048629" + "1848435945999060277712295", + "1829095080324470392264474" ], - "LPTokenSupply": "1453860959470108290923701" + "LPTokenSupply": "3671146388598636809837448" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "35353337629574948", - "expectedQty": "35412412757834950", - "swapFee": "21212002577744", + "type": "redeemBassets", + "inputQtys": [ + "160159175080147", + "197606041614831" + ], + "expectedQty": "357145460569938", + "swapFee": "214415925897", "reserves": [ - "574999072437818572217834", - "884887361160176710048629" + "1848435945838901102632148", + "1829095080126864350649643" ], - "LPTokenSupply": "1453860924118891861606527" + "LPTokenSupply": "3671146388241298374934201" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "153879157568192167018496", - "expectedQty": "153016239153698569234555", + "inputIndex": 0, + "inputQty": "126245353044700080", + "expectedQty": "126021809322638714", "reserves": [ - "574999072437818572217834", - "1038766518728368877067125" + "1848436072084254147332228", + "1829095080126864350649643" ] }, { "type": "redeemBassets", "inputQtys": [ - "348537093471396096", - "496229516623557376" + "372548563383162437632", + "8804415679562891264" ], - "expectedQty": "841374577958099614", - "swapFee": "505127823468941", + "expectedQty": "380678443973244149193", + "swapFee": "228544192899686301", "reserves": [ - "574998723900725100821738", - "1038766022498852253509749" + "1848063523520870984894596", + "1829086275711184787758379" ], - "LPTokenSupply": "1606876321443397431619420" + "LPTokenSupply": "3670765630129360843706050" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "243071646446358712287232", - "expectedQty": "242737788095199820761078", - "swapFee": "145842987867815227372", + "inputQty": "13249239856824776130560", + "expectedQty": "13264613115728358089715", + "swapFee": "7949543914094865678", "reserves": [ - "332260935805525280060660", - "1038766022498852253509749" + "1834798910405142626804881", + "1829086275711184787758379" ], - "LPTokenSupply": "1363819259295825500854925" + "LPTokenSupply": "3657517185226927477062057" }, { - "type": "redeemMasset", - "inputQty": "7233637941182871686348", - "expectedQtys": [ - "1761240151183247784419", - "5506263991204577416990" + "type": "redeemBassets", + "inputQtys": [ + "11710043797788735488", + "4212920594535903395840" ], - "redemptionFee": "4340182764709723011", + "expectedQty": "4217347401534798141949", + "swapFee": "2531927597479366505", "reserves": [ - "330499695654342032276241", - "1033259758507647676092759" + "1834787200361344838069393", + "1824873355116648884362539" ], - "LPTokenSupply": "1356586055372919100140878" + "LPTokenSupply": "3653297559090554947490252" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "25281979631618372927488", - "16499315152946089426944" + "3423782470346048798720", + "3493399972051210993664" ], - "expectedQty": "41742322752603727166858", + "expectedQty": "6905157231478078873528", + "swapFee": "4145581687899587076", "reserves": [ - "355781675285960405203729", - "1049759073660593765519703" + "1831363417890998789270673", + "1821379955144597673368875" ], - "LPTokenSupply": "1398328378125522827307736" + "LPTokenSupply": "3646388670835557758988354" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "37055962721409004732416", - "expectedQty": "37329109390811138446565", - "swapFee": "22233577632845402839", + "type": "redeemBassets", + "inputQtys": [ + "1105270564699432448", + "649838811733335168" + ], + "expectedQty": "1752047858493331076", + "swapFee": "1051859830994595", "reserves": [ - "355781675285960405203729", - "1012429964269782627073138" + "1831362312620434089838225", + "1821379305305785940033707" ], - "LPTokenSupply": "1361274638761877107115603" + "LPTokenSupply": "3646386917841025417762141" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "247516111716527669248", - "expectedQty": "248209607942002648671", + "type": "redeemMasset", + "inputQty": "136808244013963385241", + "expectedQtys": [ + "68669381639270009717", + "68295055415303818852" + ], + "redemptionFee": "82084946408378031", "reserves": [ - "356029191397676932872977", - "1012429964269782627073138" - ] + "1831293643238794819828508", + "1821311010250370636214855" + ], + "LPTokenSupply": "3646250117805506095214703" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "35397976536156655845376", - "expectedQty": "35251544492150331064948", - "swapFee": "21238785921693993507", + "type": "redeemMasset", + "inputQty": "313773688987303385497", + "expectedQtys": [ + "157495228370790653986", + "156636700265230772944" + ], + "redemptionFee": "188264213392382031", "reserves": [ - "320777646905526601808029", - "1012429964269782627073138" + "1831136148010424029174522", + "1821154373550105405441911" ], - "LPTokenSupply": "1326126995712254623318248" + "LPTokenSupply": "3645936362942940131067409" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "274833366810542211072", - "expectedQty": "273471255034493945310", - "swapFee": "164900020086325326", + "inputQty": "30652978414472312913920", + "expectedQty": "30598257963554411144029", "reserves": [ - "320504175650492107862719", - "1012429964269782627073138" - ], - "LPTokenSupply": "1325852178835446089739708" + "1861789126424896342088442", + "1821154373550105405441911" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7191463866230081847296", - "30093767163770906345472" + "7091625989011027263488", + "633305326823417095127040" ], - "expectedQty": "37064630989799016146052", - "swapFee": "22252129871802491182", + "expectedQty": "639017265228223505430646", "reserves": [ - "313312711784262026015423", - "982336197106011720727666" + "1868880752413907369351930", + "2454459700373522500568951" ], - "LPTokenSupply": "1288767520928762451351591" + "LPTokenSupply": "4315551886134718047642084" }, { - "type": "mintMulti", - "inputQtys": [ - "28374694646154", - "1329275337506" + "type": "mint", + "inputIndex": 1, + "inputQty": "103924338836925692510208", + "expectedQty": "103646857124549872930895", + "reserves": [ + "1868880752413907369351930", + "2558384039210448193079159" + ] + }, + { + "type": "redeemMasset", + "inputQty": "2442708244438006", + "expectedQtys": [ + "1032402389799513", + "1413296055777895" ], - "expectedQty": "29813294029878", + "redemptionFee": "1465624946662", "reserves": [ - "313312711812636720661577", - "982336197107340996065172" + "1868880751381504979552417", + "2558384037797152137301264" ], - "LPTokenSupply": "1288767520958575745381469" + "LPTokenSupply": "4419198740816706238629639" }, { - "type": "redeemBassets", - "inputQtys": [ - "415960746368443744256", - "453601325529491963904" + "type": "redeemMasset", + "inputQty": "10851983911695553658880", + "expectedQtys": [ + "4586554350080123484157", + "6278713839318000766859" ], - "expectedQty": "867537949749378207973", - "swapFee": "520835271012234265", + "redemptionFee": "6511190347017332195", "reserves": [ - "312896751066268276917321", - "981882595781811504101268" + "1864294197031424856068260", + "2552105323957834136534405" ], - "LPTokenSupply": "1287899514257082456162656" + "LPTokenSupply": "4408347408024045386703978" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "41022787419579843870720", - "expectedQty": "41339319671473854181645", - "swapFee": "24613672451747906322", + "type": "redeemMasset", + "inputQty": "28347467667480670266982", + "expectedQtys": [ + "11980977398741404945219", + "16401229084033358678876" + ], + "redemptionFee": "17008480600488402160", "reserves": [ - "312896751066268276917321", - "940543276110337649919623" + "1852313219632683451123041", + "2535704094873800777855529" ], - "LPTokenSupply": "1246879188204747787082568" + "LPTokenSupply": "4380001641204624765277212" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "26325131476570258538496", - "expectedQty": "26197948762807619220331", - "swapFee": "15795078885942155123", + "inputIndex": 1, + "inputQty": "2561612334114768896", + "expectedQty": "2567107736071397352", + "swapFee": "1536967400468861", "reserves": [ - "286698802303460657696990", - "940543276110337649919623" + "1852313219632683451123041", + "2535701527766064706458177" ], - "LPTokenSupply": "1220555636236066122759584" + "LPTokenSupply": "4379999079745987390555202" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2267810554703012864", + "inputQty": "13325642030505099526144", "outputIndex": 1, - "expectedQty": "2297151814134054272", - "swapFee": "1823315849776532", + "expectedQty": "13343231850537156780519", + "swapFee": "10654195272793597454", "reserves": [ - "286701070114015360709854", - "940540978958523515865351" + "1865638861663188550649185", + "2522358295915527549677658" ], - "LPTokenSupply": "1220555636418397707737237", + "LPTokenSupply": "4380000145165514669914947", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "129185086069550512", - "149190027361130336" + "108488196387369697280", + "59984619508102602752" ], - "expectedQty": "277732858232271021", + "expectedQty": "168242068470124501892", "reserves": [ - "286701199299101430260366", - "940541128148550876995687" + "1865747349859575920346465", + "2522418280535035652280410" ], - "LPTokenSupply": "1220555914151255940008258" + "LPTokenSupply": "4380168387233984794416839" }, { - "type": "redeemMasset", - "inputQty": "54473884064590292477542", - "expectedQtys": [ - "12787908422791781151648", - "41951529480995213052011" + "type": "mintMulti", + "inputQtys": [ + "243370872240695200", + "373907374777536704" ], - "redemptionFee": "32684330438754175486", + "expectedQty": "616113791354589947", "reserves": [ - "273913290876309649108718", - "898589598667555663943676" + "1865747593230448161041665", + "2522418654442410429817114" ], - "LPTokenSupply": "1166085298519709522948264" + "LPTokenSupply": "4380169003347776149006786" }, { - "type": "redeemBassets", - "inputQtys": [ - "80078840490570194878464", - "91736998063733452308480" + "type": "redeemMasset", + "inputQty": "1472716485721136404889", + "expectedQtys": [ + "626932112962522345447", + "847587992364805252867" ], - "hardLimitError": true + "redemptionFee": "883629891432681842", + "reserves": [ + "1865120661117485638696218", + "2521571066450045624564247" + ], + "LPTokenSupply": "4378696375225044155870081" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "24232576550723578232832", - "expectedQty": "24020985273347758830333", + "inputIndex": 0, + "inputQty": "125760314505475095789568", + "expectedQty": "125663545439611350300913", "reserves": [ - "273913290876309649108718", - "922822175218279242176508" + "1990880975622960734485786", + "2521571066450045624564247" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "844725804877191040", - "expectedQty": "839630315679898508", - "swapFee": "506835482926314", + "type": "mintMulti", + "inputQtys": [ + "96546901837709656064", + "400938341470311677952" + ], + "expectedQty": "496396526485402141854", "reserves": [ - "273912451245993969210210", - "922822175218279242176508" + "1990977522524798444141850", + "2521972004791515936242199" ], - "LPTokenSupply": "1190105439117935952880188" + "LPTokenSupply": "4504856317191140908312848" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "558231035368259059712", - "expectedQty": "561271054221032354724", + "inputIndex": 1, + "inputQty": "38834135596099919872", + "expectedQty": "38737090943252190843", "reserves": [ - "274470682281362228269922", - "922822175218279242176508" + "1990977522524798444141850", + "2522010838927112036162071" ] }, { - "type": "mintMulti", - "inputQtys": [ - "899803682736840376320", - "788239545588708540416" - ], - "expectedQty": "1685978828750303698968", + "type": "mint", + "inputIndex": 0, + "inputQty": "19234612795157044527104", + "expectedQty": "19216946406699033462137", "reserves": [ - "275370485964099068646242", - "923610414763867950716924" - ], - "LPTokenSupply": "1192352689000907288933880" + "2010212135319955488668954", + "2522010838927112036162071" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "432201556604845033521152", - "413355169177741738115072" - ], - "expectedQty": "842954150265273827298478", + "type": "mint", + "inputIndex": 1, + "inputQty": "45751331370927256502272", + "expectedQty": "45637085345590026290172", "reserves": [ - "707572042568944102167394", - "1336965583941609688831996" - ], - "LPTokenSupply": "2035306839266181116232358" + "2010212135319955488668954", + "2567762170298039292664343" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "33532274509706375168", - "30167274821277634560" + "type": "redeemMasset", + "inputQty": "126722791113640217", + "expectedQtys": [ + "55711340800042657", + "71163371690700757" ], - "expectedQty": "63468794109625055301", + "redemptionFee": "76033674668184", "reserves": [ - "707605574843453808542562", - "1336995751216430966466556" + "2010212079608614688626297", + "2567762099134667601963586" ], - "LPTokenSupply": "2035370308060290741287659" + "LPTokenSupply": "4569748959319185474082601" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "22622544034787037184", - "expectedQty": "22750643044390837425", - "swapFee": "13573526420872222", + "inputQty": "4053496367131095728128", + "expectedQty": "4061309400149980794428", + "swapFee": "2432097820278657436", "reserves": [ - "707605574843453808542562", - "1336973000573386575629131" + "2010212079608614688626297", + "2563700789734517621169158" ], - "LPTokenSupply": "2035347686873608596337697" + "LPTokenSupply": "4565695706161836406220216" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "9192548052482022400", - "expectedQty": "9244600048899867955", - "swapFee": "5515528831489213", + "inputQty": "525760618069042", + "expectedQty": "526772958347432", + "swapFee": "315456370841", "reserves": [ - "707605574843453808542562", - "1336963755973337675761176" + "2010212079608614688626297", + "2563700789207744662821726" ], - "LPTokenSupply": "2035338494877108997464218" + "LPTokenSupply": "4565695705636107333788258" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7302017043878690947072", - "expectedQty": "7292422714374543357852", + "inputIndex": 1, + "inputQty": "2144451040221456236544", + "expectedQty": "2139042885675975972196", "reserves": [ - "714907591887332499489634", - "1336963755973337675761176" + "2010212079608614688626297", + "2565845240247966119058270" ] }, { - "type": "redeemMasset", - "inputQty": "17652813749053642768384", - "expectedQtys": [ - "6174663459957263978607", - "11547368282244793241643" + "type": "mintMulti", + "inputQtys": [ + "6939512772784698368", + "4577360460907745792" ], - "redemptionFee": "10591688249432185661", + "expectedQty": "11499287965780224489", "reserves": [ - "708732928427375235511027", - "1325416387691092882519533" + "2010219019121387473324665", + "2565849817608427026804062" ], - "LPTokenSupply": "2024979163011254841272252" + "LPTokenSupply": "4567846247809749089984943" }, { - "type": "redeemMasset", - "inputQty": "7014134063975510940057", - "expectedQtys": [ - "2453440103299784505077", - "4588230049290395396703" + "type": "mintMulti", + "inputQtys": [ + "4280194446814019584000", + "5776340659643568095232" ], - "redemptionFee": "4208480438385306564", + "expectedQty": "10038237372225816179152", "reserves": [ - "706279488324075451005950", - "1320828157641802487122830" + "2014499213568201492908665", + "2571626158268070594899294" ], - "LPTokenSupply": "2017965449795323168862851" + "LPTokenSupply": "4577884485181974906164095" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "436821517103944171520", + "expectedQty": "436939045163849430849", + "swapFee": "262092910262366502", + "reserves": [ + "2014062274523037643477816", + "2571626158268070594899294" + ], + "LPTokenSupply": "4577447689874161988229225" + }, + { + "type": "redeemBassets", "inputQtys": [ - "60522326214132361068544", - "26756182119784239857664" + "244507565394309971968", + "117287481919820677120" ], - "expectedQty": "87021402016701337367271", + "expectedQty": "361286657393171664236", + "swapFee": "216902135717333398", "reserves": [ - "766801814538207812074494", - "1347584339761586726980494" + "2013817766957643333505848", + "2571508870786150774222174" ], - "LPTokenSupply": "2104986851812024506230122" + "LPTokenSupply": "4577086208004846670964929" }, { "type": "swap", "inputIndex": 0, - "inputQty": "78927696105720560746496", + "inputQty": "2292762501946368065536", "outputIndex": 1, - "expectedQty": "79144031157602716669854", - "swapFee": "63013841803889018796", + "expectedQty": "2294716092087571621816", + "swapFee": "1832613420021713715", "reserves": [ - "845729510643928372820990", - "1268440308603984010310640" + "2016110529459589701571384", + "2569214154694063202600358" ], - "LPTokenSupply": "2104993153196204895132001", + "LPTokenSupply": "4577086391266188673136300", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "605778936544585711616", - "675900696418831826944" - ], - "expectedQty": "1276382657070544695696", - "swapFee": "766289367863044644", + "type": "swap", + "inputIndex": 0, + "inputQty": "464863876790022045696", + "outputIndex": 1, + "expectedQty": "465255931236571007750", + "swapFee": "371564921428516246", "reserves": [ - "845123731707383787109374", - "1267764407907565178483696" + "2016575393336379723617080", + "2568748898762826631592608" ], - "LPTokenSupply": "2103716080878703273696124" + "LPTokenSupply": "4577086428422680815987924", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "38554147900262213222", + "inputQty": "19009066792113248", "expectedQtys": [ - "15479025818664068588", - "23219982194014533399" + "8370000657090385", + "10661852783482136" ], - "redemptionFee": "23132488740157327", + "redemptionFee": "11405440075267", "reserves": [ - "845108252681565123040786", - "1267741187925371163950297" + "2016575384966379066526695", + "2568748888100973848110472" ], - "LPTokenSupply": "2103677529044051885498634" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "130585096219254537060352", - "expectedQty": "129847715152482403189106", - "reserves": [ - "845108252681565123040786", - "1398326284144625701010649" - ] + "LPTokenSupply": "4577086409414754567882202" }, { "type": "swap", "inputIndex": 1, - "inputQty": "14246756310848794263552", + "inputQty": "1884169761614476345344", "outputIndex": 0, - "expectedQty": "14192443602913009052215", + "expectedQty": "1881067578632807168936", "swapFee": "0", "reserves": [ - "830915809078652113988571", - "1412573040455474495274201" + "2014694317387746259357759", + "2570633057862588324455816" ], - "LPTokenSupply": "2233525244196534288687740", + "LPTokenSupply": "4577086409414754567882202", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2916344270643992723456", - "expectedQty": "2920314954136415027909", - "swapFee": "1749806562386395634", + "type": "redeemMasset", + "inputQty": "1846018397697", + "expectedQtys": [ + "812073652426", + "1036158864563" + ], + "redemptionFee": "1107611038", "reserves": [ - "827995494124515698960662", - "1412573040455474495274201" + "2014694317386934185705333", + "2570633057861552165591253" ], - "LPTokenSupply": "2230609074906546534603847" + "LPTokenSupply": "4577086409412908660245608" }, { "type": "redeemBassets", "inputQtys": [ - "11961268049470696718336", - "199098795164307411697664" + "4949732496780877103104", + "33949060590706274336768" ], - "expectedQty": "209900114115775485956258", - "swapFee": "126015677876191006177", + "expectedQty": "38809304071141885258786", + "swapFee": "23299562179993127031", "reserves": [ - "816034226075045002242326", - "1213474245291167083576537" + "2009744584890153308602229", + "2536683997270845891254485" ], - "LPTokenSupply": "2020595546680682476742028" + "LPTokenSupply": "4538256135735804781172493" }, { "type": "redeemMasset", - "inputQty": "734697640866380827852", + "inputQty": "307590307711420928", "expectedQtys": [ - "296535691516986868770", - "440959965853660329322" + "136133137935896631", + "171826188808528739" ], - "redemptionFee": "440818584519828496", + "redemptionFee": "184554184626852", "reserves": [ - "815737690383528015373556", - "1213033285325313423247215" + "2009744448757015372705598", + "2536683825444657082725746" ], - "LPTokenSupply": "2019860893121674547897025" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "157877053790716160", - "expectedQty": "157006483976708613", - "reserves": [ - "815737690383528015373556", - "1213033443202367213963375" - ] + "LPTokenSupply": "4538255828163952488214250" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "35530473809470449254400", - "expectedQty": "35332900726781986736225", + "type": "redeemBassets", + "inputQtys": [ + "374285408710236176384", + "150958831082825154560" + ], + "expectedQty": "524523840568606579774", + "swapFee": "314903246288937310", "reserves": [ - "815737690383528015373556", - "1248563917011837663217775" - ] + "2009370163348305136529214", + "2536532866613574257571186" + ], + "LPTokenSupply": "4537731020910462221590896" }, { "type": "redeemMasset", - "inputQty": "1161762454013404302540", + "inputQty": "11195984789980597085798", "expectedQtys": [ - "460844488455502101901", - "705366205855696829895" + "4954762535727724770904", + "6254655437501118720951" ], - "redemptionFee": "697057472408042581", + "redemptionFee": "6717590873988358251", "reserves": [ - "815276845895072513271655", - "1247858550805981966387880" + "2004415400812577411758310", + "2530278211176073138850235" ], - "LPTokenSupply": "2054032258106674347843581" + "LPTokenSupply": "4526535707879569023340923" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "595054017637589134082048", - "hardLimitError": true + "inputQty": "1701815416097063829504", + "expectedQty": "1700246656608735171607", + "reserves": [ + "2006117216228674475587814", + "2530278211176073138850235" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "48568440982095509061632", - "expectedQty": "48809879061851809387972", - "swapFee": "29141064589257305436", + "inputIndex": 0, + "inputQty": "2767809560104950300672", + "expectedQty": "2768698199565377941004", + "swapFee": "1660685736062970180", "reserves": [ - "815276845895072513271655", - "1199048671744130156999908" + "2003348518029109097646810", + "2530278211176073138850235" ], - "LPTokenSupply": "2005466731231037764512492" + "LPTokenSupply": "4525468311044646414508876" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "33220625455267565568", - "20916409890616483840" + "64677455768359830290432", + "34775722945917430530048" ], - "expectedQty": "53929527632281572271", + "expectedQty": "99308333091925388772835", + "swapFee": "59620772318546361080", "reserves": [ - "815310066520527780837223", - "1199069588154020773483748" + "1938671062260749267356378", + "2495502488230155708320187" ], - "LPTokenSupply": "2005520660758670046084763" + "LPTokenSupply": "4426106319257634334011068" }, { "type": "swap", "inputIndex": 1, - "inputQty": "2306506175798590832640", + "inputQty": "18235375378078879449088", "outputIndex": 0, - "expectedQty": "2300208815045762932843", + "expectedQty": "18203008704238007521824", "swapFee": "0", "reserves": [ - "813009857705482017904380", - "1201376094329819364316388" + "1920468053556511259834554", + "2513737863608234587769275" ], - "LPTokenSupply": "2005520660758670046084763", + "LPTokenSupply": "4426106319257634334011068", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "101296741266211038822", - "expectedQtys": [ - "41039635075219818700", - "60643836027446236141" + "type": "mintMulti", + "inputQtys": [ + "49989634151775976", + "33735554779564980" ], - "redemptionFee": "60778044759726623", + "expectedQty": "83597426798011861", "reserves": [ - "812968818070406798085680", - "1201315450493791918080247" + "1920468103546145411610530", + "2513737897343789367334255" ], - "LPTokenSupply": "2005419370095208311018603" + "LPTokenSupply": "4426106402855061132022929" }, { - "type": "redeemBassets", - "inputQtys": [ - "73553513668827504640", - "47625312462765621248" - ], - "expectedQty": "120713084101989415808", - "swapFee": "72471333261150339", + "type": "redeem", + "inputIndex": 1, + "inputQty": "21271922216585886957568", + "expectedQty": "21314736622708969461014", + "swapFee": "12763153329951532174", "reserves": [ - "812895264556737970581040", - "1201267825181329152458999" + "1920468103546145411610530", + "2492423160721080397873241" ], - "LPTokenSupply": "2005298591786906386567488" + "LPTokenSupply": "4404835756953808240218578" }, { "type": "mint", "inputIndex": 1, - "inputQty": "152404652073641435987968", - "expectedQty": "151535284681739094803603", + "inputQty": "2411755397182119215104", + "expectedQty": "2405489028234745713053", "reserves": [ - "812895264556737970581040", - "1353672477254970588446967" + "1920468103546145411610530", + "2494834916118262517088345" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "30894478924901576081408", - "expectedQty": "31057873365263494545901", - "swapFee": "18536687354940945648", + "type": "mintMulti", + "inputQtys": [ + "1425230936286898683904", + "92509531148414386176" + ], + "expectedQty": "1516328603444683935221", "reserves": [ - "812895264556737970581040", - "1322614603889707093901066" + "1921893334482432310294434", + "2494927425649410931474521" ], - "LPTokenSupply": "2125941251212479399384247" + "LPTokenSupply": "4408757574585487669866852" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "12026203283074272198656", - "expectedQty": "12089249832065464879500", - "swapFee": "7215721969844563319", + "type": "redeemBassets", + "inputQtys": [ + "4165676843707260928", + "2270548114970761216" + ], + "expectedQty": "6426897145147483964", + "swapFee": "3858453359103952", "reserves": [ - "812895264556737970581040", - "1310525354057641629021566" + "1921889168805588603033506", + "2494925155101295960713305" ], - "LPTokenSupply": "2113915769501602111641922" + "LPTokenSupply": "4408751144215734499189330" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8647630621526031360", - "5385684215247141888" + "66921656316472950784", + "18833701761147686912" ], - "expectedQty": "13981824086709235925", + "expectedQty": "85651337720691552850", + "swapFee": "51421655625790405", "reserves": [ - "812903912187359496612400", - "1310530739741856876163454" + "1921822247149272130082722", + "2494906321399534813026393" ], - "LPTokenSupply": "2113929751325688820877847" + "LPTokenSupply": "4408665446598523744425114" }, { - "type": "redeemBassets", - "inputQtys": [ - "299562652501810610176", - "603058322010305200128" + "type": "redeemMasset", + "inputQty": "2594483109665253516902", + "expectedQtys": [ + "1130306606194492578028", + "1467362083614831763915" ], - "expectedQty": "898421693661237028248", - "swapFee": "539376642182051447", + "redemptionFee": "1556689865799152110", "reserves": [ - "812604349534857686002224", - "1309927681419846570963326" + "1920691940543077637504694", + "2493438959315919981262478" ], - "LPTokenSupply": "2113030844193049620003295" + "LPTokenSupply": "4406071119157845070823423" }, { "type": "mintMulti", "inputQtys": [ - "106505780999080472739840", - "176805466170358186901504" + "32704249400503987863552", + "34092577263613737172992" ], - "expectedQty": "282036247149081896317696", + "expectedQty": "66681276628094979620746", "reserves": [ - "919110130533938158742064", - "1486733147590204757864830" + "1953396189943581625368246", + "2527531536579533718435470" ], - "LPTokenSupply": "2395067091342131516320991" + "LPTokenSupply": "4472752395785940050444169" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "48364446801571602432", - "expectedQty": "48617950813397982445", - "swapFee": "29018668080942961", + "inputQty": "174948192441939840", + "expectedQty": "175296833257756480", + "swapFee": "104968915465163", "reserves": [ - "919110130533938158742064", - "1486684529639391359882385" + "1953396189943581625368246", + "2527531361282700460678990" ], - "LPTokenSupply": "2395018729797196752812855" + "LPTokenSupply": "4472752220848244500050845" }, { - "type": "redeemMasset", - "inputQty": "258470645158039", - "expectedQtys": [ - "99130936916494", - "160346867504110" + "type": "mintMulti", + "inputQtys": [ + "88931064561541332992", + "71844562524005679104" ], - "redemptionFee": "155082387094", + "expectedQty": "160515284063729748573", "reserves": [ - "919110130434807221825570", - "1486684529479044492378275" + "1953485121008143166701238", + "2527603205845224466358094" ], - "LPTokenSupply": "2395018729538741615893525" + "LPTokenSupply": "4472912736132308229799418" }, { "type": "redeemMasset", - "inputQty": "11308251622118907497676", + "inputQty": "5395321206470306535833", "expectedQtys": [ - "4337040198521448879561", - "7015275268286151513191" + "2354920946029368871575", + "3047018719868247822946" ], - "redemptionFee": "6784950973271344498", + "redemptionFee": "3237192723882183921", "reserves": [ - "914773090236285772946009", - "1479669254210758340865084" + "1951130200062113797829663", + "2524556187125356218535148" ], - "LPTokenSupply": "2383711156411720035530298" + "LPTokenSupply": "4467517738645110311481977" }, { - "type": "redeemMasset", - "inputQty": "7931169652935", - "expectedQtys": [ - "3041839788665", - "4920254934872" - ], - "redemptionFee": "4758701791", - "reserves": [ - "914773090233243933157344", - "1479669254205838085930212" + "type": "mintMulti", + "inputQtys": [ + "3729019201092142497792", + "17933962683274588323840" ], - "LPTokenSupply": "2383711156403789341747542" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "181140694219525357568", - "expectedQty": "181454224138869238027", - "swapFee": "108684416531715214", + "expectedQty": "21613334387794802892114", "reserves": [ - "914591636009105063919317", - "1479669254205838085930212" + "1954859219263205940327455", + "2542490149808630806858988" ], - "LPTokenSupply": "2383530026578011469561495" + "LPTokenSupply": "4489131073032905114374091" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1692263993656894029824", - "1125624902474180329472" + "38897971797568749568", + "34679889161761169408" ], - "expectedQty": "2807404521015749708188", + "expectedQty": "73455771021143579968", + "swapFee": "44099922566225883", "reserves": [ - "916283900002761957949141", - "1480794879108312266259684" + "1954820321291408371577887", + "2542455469919469045689580" ], - "LPTokenSupply": "2386337431099027219269683" + "LPTokenSupply": "4489057577571953661190827" }, { "type": "redeemBassets", "inputQtys": [ - "15793143353134356103168", - "12895945028990155096064" + "598429958206248189952", + "842939520245277130752" ], - "expectedQty": "28577502041641407501696", - "swapFee": "17156795302166144187", + "expectedQty": "1438685345833810483761", + "swapFee": "863729445167386722", "reserves": [ - "900490756649627601845973", - "1467898934079322111163620" + "1954221891333202123387935", + "2541612530399223768558828" ], - "LPTokenSupply": "2357744487941613862238217" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "8674145129310466048", - "expectedQty": "8623438868663215093", - "reserves": [ - "900490756649627601845973", - "1467907608224451421629668" - ] + "LPTokenSupply": "4487618114869619200059015" }, { - "type": "mintMulti", - "inputQtys": [ - "474348141928119599104", - "7991675441950469652480" + "type": "redeemMasset", + "inputQty": "14775840555725196", + "expectedQtys": [ + "6430570778422716", + "8363440886903641" ], - "expectedQty": "8418160835077744936513", + "redemptionFee": "8865504333435", "reserves": [ - "900965104791555721445077", - "1475899283666401891282148" + "1954221884902631344965219", + "2541612522035782881655187" ], - "LPTokenSupply": "2366171272215560270389823" + "LPTokenSupply": "4487618100094665194767162" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "24938077589025142603776", - "26091805867454515642368" + "190447533329773821952", + "90013934063407448064" ], - "expectedQty": "50820677834820036841831", - "swapFee": "30510713128769283675", + "expectedQty": "280071412977545759233", "reserves": [ - "876027027202530578841301", - "1449807477798947375639780" + "1954412332435961118787171", + "2541702535969846289103251" ], - "LPTokenSupply": "2315323134738924341192683" + "LPTokenSupply": "4487898171507642740526395" }, { "type": "mintMulti", "inputQtys": [ - "345155079553512512", - "8581615385215695872" + "3868378461433940148224", + "4275215732914105352192" ], - "expectedQty": "8875306740216914011", + "expectedQty": "8129298304873760361664", "reserves": [ - "876027372357610132353813", - "1449816059414332591335652" + "1958280710897395058935395", + "2545977751702760394455443" ], - "LPTokenSupply": "2315332010045664558106694" + "LPTokenSupply": "4496027469812516500888059" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8125739486074524672", - "expectedQty": "8077735660008679204", + "type": "redeemMasset", + "inputQty": "1205392110487971718758", + "expectedQtys": [ + "524703160112909166538", + "682171133311843214389" + ], + "redemptionFee": "723235266292783031", "reserves": [ - "876027372357610132353813", - "1449824185153818665860324" - ] + "1957756007737282149768857", + "2545295580569448551241054" + ], + "LPTokenSupply": "4494822150025555158447604" }, { "type": "redeemMasset", - "inputQty": "900160191238563482828", + "inputQty": "19369714075400878109491", "expectedQtys": [ - "340378431751947454513", - "563325870892137897051" + "8431573070047817714297", + "10961961341262802961176" ], - "redemptionFee": "540096114743138089", + "redemptionFee": "11621828445240526865", "reserves": [ - "875686993925858184899300", - "1449260859282926527963273" + "1949324434667234332054560", + "2534333619228185748279878" ], - "LPTokenSupply": "2314439981599697477616878" + "LPTokenSupply": "4475453598132998804390799" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "91561250433436254208", - "516206399361637023744" + "3565634539350904320", + "8326850420128679936" ], - "expectedQty": "604514372335094128778", + "expectedQty": "11867858976500873071", + "swapFee": "7124990380128601", "reserves": [ - "875778555176291621153508", - "1449777065682288164987017" + "1949320869032694981150240", + "2534325292377765619599942" ], - "LPTokenSupply": "2315044495972032571745656" + "LPTokenSupply": "4475441723861530961401986" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "820280426659678116642816", - "expectedQty": "814714053538065267154440", + "type": "redeemMasset", + "inputQty": "1017130131248462028", + "expectedQtys": [ + "442754813006493787", + "575628537481955798" + ], + "redemptionFee": "610278078749077", "reserves": [ - "875778555176291621153508", - "2270057492341966281629833" - ] + "1949320426277881974656453", + "2534324716749228137644144" + ], + "LPTokenSupply": "4475440706792427520814865" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "65027774897328016588800", - "outputIndex": 0, - "expectedQty": "64384910164566289047514", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "235516880798182670336", + "expectedQty": "235568900891230283125", + "swapFee": "141310128478909602", "reserves": [ - "811393645011725332105994", - "2335085267239294298218633" + "1949084857376990744373328", + "2534324716749228137644144" ], - "LPTokenSupply": "3129758549510097838900096", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4475205204042642186035489" }, { "type": "redeemMasset", - "inputQty": "29007961149328832", + "inputQty": "493475139874643456819", "expectedQtys": [ - "7515836392489661", - "21629598578911621" + "214794134311372174752", + "279289063037841127615" ], - "redemptionFee": "17404776689597", + "redemptionFee": "296085083924786074", "reserves": [ - "811393637495888939616333", - "2335085245609695719307012" + "1948870063242679372198576", + "2534045427686190296516529" ], - "LPTokenSupply": "3129758520503877167240223" + "LPTokenSupply": "4474711758511275935057277" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2215983842106245382144", - "7385711947789422821376" + "334129535537496064000", + "1092498043690943905792" ], - "expectedQty": "9547850957241009448825", - "swapFee": "5732149864263163567", + "expectedQty": "1423505713295173795015", "reserves": [ - "809177653653782694234189", - "2327699533661906296485636" + "1949204192778216868262576", + "2535137925729881240422321" ], - "LPTokenSupply": "3120205510611758320944186" + "LPTokenSupply": "4476135264224571108852292" }, { "type": "mintMulti", "inputQtys": [ - "233095956751497658368", - "582940361740762415104" + "19546500799183856861184", + "26128409615472296722432" ], - "expectedQty": "811944351603352278924", + "expectedQty": "45590771095446747545508", "reserves": [ - "809410749610534191892557", - "2328282474023647058900740" + "1968750693577400725123760", + "2561266335345353537144753" ], - "LPTokenSupply": "3121017454963361673223110" + "LPTokenSupply": "4521726035320017856397800" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1276713056054670080", - "expectedQty": "1286382660783780784", - "swapFee": "766027833632802", + "inputIndex": 0, + "inputQty": "24919139261206811901952", + "expectedQty": "24923937646654412258846", + "swapFee": "14951483556724087141", "reserves": [ - "809410749610534191892557", - "2328281187640986275119956" + "1943826755930746312864914", + "2561266335345353537144753" ], - "LPTokenSupply": "3121016178326908401916310" + "LPTokenSupply": "4496808391207166716904562" }, { "type": "redeemBassets", "inputQtys": [ - "11183632464766857904128", - "5242504349596630646784" + "268148823405411041280", + "280768030390585032704" ], - "expectedQty": "16414945889393616293341", - "swapFee": "9854880461913317766", + "expectedQty": "547966325101614597311", + "swapFee": "328977181369790632", "reserves": [ - "798227117145767333988429", - "2323038683291389644473172" + "1943558607107340901823634", + "2560985567314962952112049" ], - "LPTokenSupply": "3104592363045099063636978" + "LPTokenSupply": "4496260128802601869495681" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4557178623742004166656", - "expectedQty": "4541105169560092716289", - "swapFee": "2734307174245202499", + "type": "redeemMasset", + "inputQty": "17621573490942862950", + "expectedQtys": [ + "7612551478802973616", + "10030896107976160515" + ], + "redemptionFee": "10572944094565717", "reserves": [ - "793686011976207241272140", - "2323038683291389644473172" + "1943550994555862098850018", + "2560975536418854975951534" ], - "LPTokenSupply": "3100035457852074483990571" + "LPTokenSupply": "4496242508286405336089302" }, { "type": "mintMulti", "inputQtys": [ - "44120546367226746241024", - "44707926895434349412352" + "2461934435822057029632", + "5760420473187458875392" + ], + "expectedQty": "8205186612081679806578", + "reserves": [ + "1946012928991684155879650", + "2566735956892042434826926" + ], + "LPTokenSupply": "4504447694898487015895880" + }, + { + "type": "redeemMasset", + "inputQty": "99874902751532954419", + "expectedQtys": [ + "43122098530533819527", + "56876827068313706486" ], - "expectedQty": "88585946901476540305483", + "redemptionFee": "59924941650919772", "reserves": [ - "837806558343433987513164", - "2367746610186823993885524" + "1945969806893153622060123", + "2566679080064974121120440" ], - "LPTokenSupply": "3188621404753551024296054" + "LPTokenSupply": "4504347825988229648033438" + }, + { + "type": "redeemMasset", + "inputQty": "2937175486662075586969", + "expectedQtys": [ + "1268158153494533383229", + "1672664699759631653545" + ], + "redemptionFee": "1762305291997245352", + "reserves": [ + "1944701648739659088676894", + "2565006415365214489466895" + ], + "LPTokenSupply": "4501410826732096772171004" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "33956307359506448252928", + "outputIndex": 1, + "expectedQty": "33989640128831716949698", + "swapFee": "27143284882529769704", + "reserves": [ + "1978657956099165536929822", + "2531016775236382772517197" + ], + "LPTokenSupply": "4501413541060585025147974", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "8803461560022536814592", - "expectedQty": "8775743671260069719920", - "swapFee": "5282076936013522088", + "inputQty": "8280989365806550745088", + "expectedQty": "8283367412096104088319", + "swapFee": "4968593619483930447", "reserves": [ - "829030814672173917793244", - "2367746610186823993885524" + "1970374588687069432841503", + "2531016775236382772517197" ], - "LPTokenSupply": "3179818471401222088833670" + "LPTokenSupply": "4493133048554140422795930" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "14169249719082037542912", - "expectedQty": "14054518829626912423367", + "inputQty": "24136814528917098496", + "outputIndex": 0, + "expectedQty": "24095776346777808265", + "swapFee": "0", "reserves": [ - "829030814672173917793244", - "2381915859905906031428436" - ] + "1970350492910722655033238", + "2531040912050911689615693" + ], + "LPTokenSupply": "4493133048554140422795930", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "99450737400172888064", - "expectedQty": "98644009529891822437", + "type": "redeemBassets", + "inputQtys": [ + "1485506324807525859328", + "23610618483125568667648" + ], + "expectedQty": "25034236432028680281177", + "swapFee": "15029559594974192684", "reserves": [ - "829030814672173917793244", - "2382015310643306204316500" - ] + "1968864986585915129173910", + "2507430293567786120948045" + ], + "LPTokenSupply": "4468085285518476265741336" }, { "type": "redeem", + "inputIndex": 1, + "inputQty": "557076232636129083392", + "expectedQty": "558167542962714042986", + "swapFee": "334245739581677450", + "reserves": [ + "1968864986585915129173910", + "2506872126024823406905059" + ], + "LPTokenSupply": "4467528242710414094825689" + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "34440040858383790080", - "expectedQty": "34326276737973333533", - "swapFee": "20664024515030274", + "inputQty": "460640242045500126134272", + "expectedQty": "460030575518788404754080", + "reserves": [ + "2429505228631415255308182", + "2506872126024823406905059" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "2955783687625177038848", + "10486148602322122440704" + ], + "expectedQty": "13417196372463611550241", + "swapFee": "8055150914026582879", "reserves": [ - "828996488395435944459711", - "2382015310643306204316500" + "2426549444943790078269334", + "2496385977422501284464355" ], - "LPTokenSupply": "3193937196265922960792421" + "LPTokenSupply": "4914134372220916264104935" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "9832798717799584235520", - "expectedQty": "9799494290860459743490", - "swapFee": "5899679230679750541", + "inputQty": "28700661436993298432", + "expectedQty": "28732072878584281070", + "swapFee": "17220396862195979", "reserves": [ - "819196994104575484716221", - "2382015310643306204316500" + "2426520712870911493988264", + "2496385977422501284464355" ], - "LPTokenSupply": "3184104987516046444531955" + "LPTokenSupply": "4914105673281518957026100" }, { "type": "redeemBassets", "inputQtys": [ - "200841547377819839889408", - "56116013712368973381632" + "95545109684309776", + "44861108796244728" ], - "expectedQty": "257456514090297219398825", - "swapFee": "154566648443244278206", + "expectedQty": "140160148673362264", + "swapFee": "84146577150307", "reserves": [ - "618355446726755644826813", - "2325899296930937230934868" + "2426520617325801809678488", + "2496385932561392488219627" ], - "LPTokenSupply": "2926509363442150305282743" + "LPTokenSupply": "4914105533045638364228558" }, { "type": "redeemMasset", - "inputQty": "95962503991816617984", + "inputQty": "846938373133062758", "expectedQtys": [ - "20264187227103395178", - "76222274864547237756" + "417956094378868488", + "429990047059887580" ], - "redemptionFee": "57577502395089970", + "redemptionFee": "508163023879837", "reserves": [ - "618335182539528541431635", - "2325823074656072683697112" + "2426520199369707430810000", + "2496385502571345428332047" ], - "LPTokenSupply": "2926413406695908728173756" + "LPTokenSupply": "4914104686158081533553783" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1578074413523372", - "expectedQty": "1562846212694298", + "type": "redeemBassets", + "inputQtys": [ + "170867585534911152128", + "954815149076833107968" + ], + "expectedQty": "1123598592570190572707", + "swapFee": "674563893878441408", "reserves": [ - "618335182539528541431635", - "2325823076234147097220484" - ] + "2426349331784172519657872", + "2495430687422268595224079" + ], + "LPTokenSupply": "4912980480458006852383807" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3037799552739411456", - "expectedQty": "3060885055643094148", + "type": "redeemMasset", + "inputQty": "16310567839120084172", + "expectedQtys": [ + "8050386207224624924", + "8279591287185788768" + ], + "redemptionFee": "9786340703472050", "reserves": [ - "618338220339081280843091", - "2325823076234147097220484" - ] + "2426341281397965295032948", + "2495422407830981409435311" + ], + "LPTokenSupply": "4912964170868801802646840" }, { "type": "mintMulti", "inputQtys": [ - "5027182381904414720", - "8611169709248076800" + "4815937872085766", + "2129948916005951" ], - "expectedQty": "13593458971900206912", + "expectedQty": "6933726752912216", "reserves": [ - "618343247521463185257811", - "2325831687403856345297284" + "2426341286213903167118714", + "2495422409960930325441262" ], - "LPTokenSupply": "2926430062602782484169114" + "LPTokenSupply": "4912964177802528555559056" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "28992889197381478776832", - "expectedQty": "28711987471372604804797", + "inputQty": "185851516218998047899648", + "expectedQty": "186066195742530676397100", + "swapFee": "111510909731398828739", "reserves": [ - "618343247521463185257811", - "2354824576601237824074116" - ] + "2426341286213903167118714", + "2309356214218399649044162" + ], + "LPTokenSupply": "4727123812674503647542281" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "6195805786969414303744", + "expectedQty": "6202249658374288129190", + "swapFee": "3717483472181648582", + "reserves": [ + "2426341286213903167118714", + "2303153964560025360914972" + ], + "LPTokenSupply": "4720928378635881451403395" }, { "type": "mintMulti", "inputQtys": [ - "1528246966673941725184", - "1067104458531639525376" + "445054902711388672", + "2097017327152092672" ], - "expectedQty": "2597003790795487302427", + "expectedQty": "2537763829028221497", "reserves": [ - "619871494488137126982995", - "2355891681059769463599492" + "2426341731268805878507386", + "2303156061577352513007644" ], - "LPTokenSupply": "2957739053864950576276338" + "LPTokenSupply": "4720930916399710479624892" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 0, + "inputQty": "41358072939108278272", + "expectedQty": "41415229809135787591", + "swapFee": "24814843763464966", + "reserves": [ + "2426300316038996742719795", + "2303156061577352513007644" + ], + "LPTokenSupply": "4720889560808255747693116" + }, + { + "type": "mintMulti", "inputQtys": [ - "837086568922581958656", - "380595917256014036992" + "6753681345337475727360", + "7137464704538352025600" ], - "expectedQty": "1220562436451729587350", - "swapFee": "732777128147926508", + "expectedQty": "13866112079925435573100", "reserves": [ - "619034407919214545024339", - "2355511085142513449562500" + "2433053997384334218447155", + "2310293526281890865033244" ], - "LPTokenSupply": "2956517831929083513555129" + "LPTokenSupply": "4734755672888181183266216" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2702766505257046016", - "expectedQty": "2724045694234827929", + "inputQty": "306468563845517083148288", + "expectedQty": "305803168725375569056159", "reserves": [ - "619037110685719802070355", - "2355511085142513449562500" + "2739522561229851301595443", + "2310293526281890865033244" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10093539741031790592", - "3625246111035990016" + "85125838399372400", + "365513663748321024" ], - "expectedQty": "13763008228899412745", - "swapFee": "8262762594896585", + "expectedQty": "449995064146326116", "reserves": [ - "619027017145978770279763", - "2355507459896402413572484" + "2739522646355689700967843", + "2310293891795554613354268" ], - "LPTokenSupply": "2956506785530062513563385" + "LPTokenSupply": "5040559291608620898648491" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "54342080824545156005888", - "expectedQty": "54838622895935264297444", - "swapFee": "32605248494727093603", + "type": "redeemBassets", + "inputQtys": [ + "68231352254184841216", + "49243658755007520768" + ], + "expectedQty": "117254525902112762220", + "swapFee": "70394952512775322", "reserves": [ - "619027017145978770279763", - "2300668837000467149275040" + "2739454415003435516126627", + "2310244648136799605833500" ], - "LPTokenSupply": "2902167965230366830266857" + "LPTokenSupply": "5040441973727261524388480" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1708944423713801764864", - "expectedQty": "1695469946730827543100", - "swapFee": "1025366654228281058", + "inputIndex": 1, + "inputQty": "119852800852873360", + "expectedQty": "119926565949136234", + "swapFee": "71911680511724", "reserves": [ - "617331547199247942736663", - "2300668837000467149275040" + "2739454415003435516126627", + "2310244528210233656697266" ], - "LPTokenSupply": "2900459123343318451330098" + "LPTokenSupply": "5040441853881651839566292" }, { - "type": "mintMulti", - "inputQtys": [ - "398237809920409272320", - "278796867112206729216" + "type": "redeemMasset", + "inputQty": "9126660511417627443", + "expectedQtys": [ + "4957317218278911078", + "4180618927406707090" ], - "expectedQty": "677291962787246438838", + "redemptionFee": "5475996306850576", "reserves": [ - "617729785009168352008983", - "2300947633867579356004256" + "2739449457686217237215549", + "2310240347591306249990176" ], - "LPTokenSupply": "2901136415306105697768936" + "LPTokenSupply": "5040432727768740052623906" }, { - "type": "redeemBassets", - "inputQtys": [ - "6171648547200678", - "99277772104829840" + "type": "redeemMasset", + "inputQty": "13569432629739332934041", + "expectedQtys": [ + "7370492416070667667087", + "6215704733462750705284" ], - "expectedQty": "104541810908283312", - "swapFee": "62762744191484", + "redemptionFee": "8141659577843599760", "reserves": [ - "617729778837519804808305", - "2300947534589807251174416" + "2732078965270146569548462", + "2304024642857843499284892" ], - "LPTokenSupply": "2901136310707808319713287" + "LPTokenSupply": "5026864109304958504049841" }, { "type": "redeemMasset", - "inputQty": "262936912372935373619", + "inputQty": "8399742074797553405132", "expectedQtys": [ - "55952733331689909702", - "208415245992173836057" + "4562484459966509899199", + "3847647437005676071710" ], - "redemptionFee": "157762147423761224", + "redemptionFee": "5039845244878532043", "reserves": [ - "617673826104188114898603", - "2300739119343815077338359" + "2727516480810180059649263", + "2300176995420837823213182" ], - "LPTokenSupply": "2900873389571650126715790" + "LPTokenSupply": "5018464871214685438497913" }, { - "type": "redeemMasset", - "inputQty": "3836030369461", - "expectedQtys": [ - "816303777522", - "3040604854605" + "type": "redeemBassets", + "inputQtys": [ + "450655323768485312", + "1019345967552231552" ], - "redemptionFee": "2301618221", + "expectedQty": "1467698416309423164", + "swapFee": "881147738428711", "reserves": [ - "617673826103371811121081", - "2300739119340774472483754" + "2727516030154856291163951", + "2300175976074870270981630" ], - "LPTokenSupply": "2900873389567814326508151" + "LPTokenSupply": "5018463402723236164488908" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1345440025290731159552", - "expectedQty": "1355311092157908698894", + "inputQty": "856024364332290801664", + "expectedQty": "854006180572877007408", "reserves": [ - "619019266128662542280633", - "2300739119340774472483754" + "2728372054519188581965615", + "2300175976074870270981630" ] }, { "type": "redeemMasset", - "inputQty": "5211830686704332072550", + "inputQty": "277918493084629811", "expectedQtys": [ - "1110969604832736839765", - "4129194954177672492246" + "150978714673816599", + "127283818134757632" ], - "redemptionFee": "3127098412022599243", + "redemptionFee": "166751095850777", "reserves": [ - "617908296523829805440868", - "2296609924386596799991508" + "2728371903540473908149016", + "2300175848791052136223998" ], - "LPTokenSupply": "2897017182683109105394419" + "LPTokenSupply": "5019317131001991066451582" }, { "type": "redeemMasset", - "inputQty": "9127721864841523730841", + "inputQty": "2772507207945417523", "expectedQtys": [ - "1945694711546667902628", - "7231658499332457544534" + "1506159485991962405", + "1269779852816485351" ], - "redemptionFee": "5476633118904914238", + "redemptionFee": "1663504324767250", "reserves": [ - "615962601812283137538240", - "2289378265887264342446974" + "2728370397380987916186611", + "2300174579011199319738647" ], - "LPTokenSupply": "2887890008481579472155001" + "LPTokenSupply": "5019314358661133553510784" }, { - "type": "redeemMasset", - "inputQty": "7737457778160807025049", - "expectedQtys": [ - "1649344337798497838605", - "6130198601035919658565" + "type": "redeemBassets", + "inputQtys": [ + "124255395184037445632", + "40698291595837562880" ], - "redemptionFee": "4642474666896484215", + "expectedQty": "164611196008187698010", + "swapFee": "98826013212840322", "reserves": [ - "614313257474484639699635", - "2283248067286228422788409" + "2728246141985803878740979", + "2300133880719603482175767" ], - "LPTokenSupply": "2880153014950885354778373" + "LPTokenSupply": "5019149658521713474256483" }, { "type": "redeemMasset", - "inputQty": "48816150753917965801881", + "inputQty": "3312328022798406041", "expectedQtys": [ - "10405841421020383208812", - "38675898694923737987191" + "1799393255024342347", + "1517035184958526269" ], - "redemptionFee": "29289690452350779481", + "redemptionFee": "1987396813679043", "reserves": [ - "603907416053464256490823", - "2244572168591304684801218" + "2728244342592548854398632", + "2300132363684418523649498" ], - "LPTokenSupply": "2831339793166012624054440" + "LPTokenSupply": "5019146346392430357218346" }, { - "type": "redeemBassets", - "inputQtys": [ - "557162081703318016", - "388731407033714688" - ], - "expectedQty": "946228063115641445", - "swapFee": "568077684480072", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3092802047376978083840", + "expectedQty": "3094701873098726756355", + "swapFee": "1855681228426186850", "reserves": [ - "603906858891382553172807", - "2244571779859897651086530" + "2728244342592548854398632", + "2297037661811319796893143" ], - "LPTokenSupply": "2831338846426679592380929" + "LPTokenSupply": "5016053729913176221753191" }, { - "type": "redeemBassets", - "inputQtys": [ - "3622912166912145227776", - "11312102831091279872" - ], - "expectedQty": "3660806482297415591152", - "swapFee": "2197802570921001955", + "type": "redeem", + "inputIndex": 1, + "inputQty": "27362646476339", + "expectedQty": "27379395068827", + "swapFee": "16417587885", "reserves": [ - "600283946724470407945031", - "2244560467757066559806658" + "2728244342592548854398632", + "2297037661783940401824316" ], - "LPTokenSupply": "2827676061922068347888016" + "LPTokenSupply": "5016053729885815217035640" }, { "type": "redeemMasset", - "inputQty": "1304217185449033492070", + "inputQty": "6997014928231761969152", "expectedQtys": [ - "276704573631995499648", - "1034643939107414623134" + "3803410744880999334727", + "3202270994511921826082" ], - "redemptionFee": "782530311269420095", + "redemptionFee": "4198208956939057181", "reserves": [ - "600007242150838412445383", - "2243525823817959145183524" + "2724440931847667855063905", + "2293835390789428479998234" ], - "LPTokenSupply": "2826371922989650441337955" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "101693736189350922682368", - "expectedQty": "102278406655438687455355", - "reserves": [ - "701700978340189335127751", - "2243525823817959145183524" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4473169055026593280", - "expectedQty": "4434101898558033140", - "reserves": [ - "701700978340189335127751", - "2243530296987014171776804" - ] + "LPTokenSupply": "5009057134778479148972206" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "76129072613428576256", - "expectedQty": "76753729827090382627", - "swapFee": "45677443568057145", + "inputQty": "43983471590809207308288", + "expectedQty": "44008834611265874611885", + "swapFee": "26390082954485524384", "reserves": [ - "701700978340189335127751", - "2243453543257187081394177" + "2724440931847667855063905", + "2249826556178162605386349" ], - "LPTokenSupply": "2928578639242118615055908" + "LPTokenSupply": "4965076302195965390216356" }, { "type": "redeemMasset", - "inputQty": "5261054970602360832", + "inputQty": "144010060586004617625", "expectedQtys": [ - "1259816744574767634", - "4027841526110525588" + "78973911305805013530", + "65216169976040234169" ], - "redemptionFee": "3156632982361416", + "redemptionFee": "86406036351602770", "reserves": [ - "701699718523444760360117", - "2243449515415660970868589" + "2724361957936362050050375", + "2249761340008186565152180" ], - "LPTokenSupply": "2928573378502811310931217" + "LPTokenSupply": "4964932300775983020759008" }, { "type": "mintMulti", "inputQtys": [ - "395139062413336182784", - "438405763287001333760" + "1793603427303901440", + "159656750016829824" ], - "expectedQty": "831414293867480597647", + "expectedQty": "1948721240507442237", "reserves": [ - "702094857585858096542901", - "2243887921178947972202349" + "2724363751539789353951815", + "2249761499664936581982004" ], - "LPTokenSupply": "2929404792796678791528864" + "LPTokenSupply": "4964934249497223528201245" }, { - "type": "redeemMasset", - "inputQty": "993549804706115616768", - "expectedQtys": [ - "237982702366255239687", - "760590261443215228578" + "type": "redeemBassets", + "inputQtys": [ + "690601879795000147968", + "1276390979019976212480" ], - "redemptionFee": "596129882823669370", + "expectedQty": "1963855540796557614933", + "swapFee": "1179020736920086620", "reserves": [ - "701856874883491841303214", - "2243127330917504756973771" + "2723673149659994353803847", + "2248485108685916605769524" ], - "LPTokenSupply": "2928411302604960958279033" + "LPTokenSupply": "4962969332837763742508353" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2021366938608030711808", + "expectedQty": "2016452728845261401643", + "reserves": [ + "2725694516598602384515655", + "2248485108685916605769524" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "4697549249428353187840", + "expectedQty": "4686110789981834958791", + "reserves": [ + "2730392065848030737703495", + "2248485108685916605769524" + ] }, { "type": "redeemBassets", "inputQtys": [ - "259707541942704000", - "166338755448414112" + "972314119422215061504", + "30555735138957090881536" ], - "expectedQty": "425708932723220952", - "swapFee": "255578706858047", + "expectedQty": "31491787272246761496266", + "swapFee": "18906416213075902439", "reserves": [ - "701856615175949898599214", - "2243127164578749308559659" + "2729419751728608522641991", + "2217929373546959514887988" ], - "LPTokenSupply": "2928410876666007398885837" + "LPTokenSupply": "4938163093309752309060324" }, { "type": "redeemBassets", "inputQtys": [ - "518143055498", - "536658598756897" + "1761291542561344716800", + "2832278505720269242368" + ], + "expectedQty": "4586121921497079662733", + "swapFee": "2753325147987040021", + "reserves": [ + "2727658460186047177925191", + "2215097095041239245645620" + ], + "LPTokenSupply": "4933574493395622041061571" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "419083387584140673024", + "expectedQty": "419286486119641065561", + "swapFee": "251450032550484403", + "reserves": [ + "2727658460186047177925191", + "2214677808555119604580059" + ], + "LPTokenSupply": "4933155435153041155436987" + }, + { + "type": "mintMulti", + "inputQtys": [ + "8964650763251280248832", + "62934314296656946790400" ], - "expectedQty": "532493019988554", - "swapFee": "319687624567", + "expectedQty": "71805834111614431286013", "reserves": [ - "701856615175431755543716", - "2243127164042090709802762" + "2736623110949298458174023", + "2277612122851776551370459" ], - "LPTokenSupply": "2928410876133226660035171" + "LPTokenSupply": "5004961269264655586723000" }, { "type": "redeemMasset", - "inputQty": "324703112958898654412", + "inputQty": "58273069217077362688", "expectedQtys": [ - "77775387544769441924", - "248569409653517698421" + "31843552134428162933", + "26502465789261495545" ], - "redemptionFee": "194821867775339192", + "redemptionFee": "34963841530246417", "reserves": [ - "701778839787886986101792", - "2242878594632437192104341" + "2736591267397164030011090", + "2277585620385987289874914" ], - "LPTokenSupply": "2928086192502454538914678" + "LPTokenSupply": "5004902999691822662384953" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "296884556064768082837504", - "outputIndex": 1, - "expectedQty": "299194763860827421583815", - "swapFee": "237912483033503258169", + "inputIndex": 1, + "inputQty": "549556517941672148992", + "outputIndex": 0, + "expectedQty": "550233631803033775596", + "swapFee": "0", "reserves": [ - "998663395852655068939296", - "1943683830771609770520526" + "2736041033765360996235494", + "2278135176903928962023906" ], - "LPTokenSupply": "2928109983750757889240494", + "LPTokenSupply": "5004902999691822662384953", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "83414606152615413678080", - "expectedQty": "83913718663793143191014", - "swapFee": "50048763691569248206", + "type": "redeemBassets", + "inputQtys": [ + "15426470895720421392384", + "16009628721700715626496" + ], + "expectedQty": "31380090134981247453346", + "swapFee": "18839357695606112139", "reserves": [ - "998663395852655068939296", - "1859770112107816627329512" + "2720614562869640574843110", + "2262125548182228246397410" ], - "LPTokenSupply": "2844700382474511632487234" + "LPTokenSupply": "4973505954134915369430680" }, { "type": "redeemBassets", "inputQtys": [ - "11806785582911662850048", - "907298780028013510656" + "6057202283723972608", + "2654392126870243840" ], - "expectedQty": "12688766257152631885338", - "swapFee": "7617830452563117001", + "expectedQty": "8693840667771706911", + "swapFee": "5219436062300404", "reserves": [ - "986856610269743406089248", - "1858862813327788613818856" + "2720608505667356850870502", + "2262122893790101376153570" ], - "LPTokenSupply": "2832004760169951693796594" + "LPTokenSupply": "4973497255596755141653404" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "9047321460731623424", - "outputIndex": 1, - "expectedQty": "9084802464695588120", - "swapFee": "7226210064764966", - "reserves": [ - "986865657591204137712672", - "1858853728525323918230736" + "type": "mintMulti", + "inputQtys": [ + "1133812537045235400704", + "962225333450024288256" ], - "LPTokenSupply": "2832004760892572700273090", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1342366005548074401792", - "expectedQty": "1343716837308303256844", - "swapFee": "805419603328844641", + "expectedQty": "2092166595333165098060", "reserves": [ - "985521940753895834455828", - "1858853728525323918230736" + "2721742318204402086271206", + "2263085119123551400441826" ], - "LPTokenSupply": "2830662475428984958755762" + "LPTokenSupply": "4975589422192088306751464" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "95273460912859434188800", - "expectedQty": "95092432504315031518203", + "type": "mintMulti", + "inputQtys": [ + "33864057510173364224", + "17350157668110749696" + ], + "expectedQty": "51112003140452947359", "reserves": [ - "1080795401666755268644628", - "1858853728525323918230736" - ] + "2721776182261912259635430", + "2263102469281219511191522" + ], + "LPTokenSupply": "4975640534195228759698823" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "285612110488347403616256", - "expectedQty": "283766247196415852272024", + "type": "redeemBassets", + "inputQtys": [ + "73313216632879728", + "171718074445793824" + ], + "expectedQty": "244652013341162231", + "swapFee": "146879335606060", "reserves": [ - "1080795401666755268644628", - "2144465839013671321846992" - ] + "2721776108948695626755702", + "2263102297563145065397698" + ], + "LPTokenSupply": "4975640289411024016491137" }, { "type": "redeemMasset", - "inputQty": "82590141214428351692", + "inputQty": "528729555164817312972", "expectedQtys": [ - "27795263750815845863", - "55150117689321992494" + "289052250083397892077", + "240341154119471739281" ], - "redemptionFee": "49554084728657011", + "redemptionFee": "317237733098890387", "reserves": [ - "1080767606403004452798765", - "2144410688895981999854498" + "2721487056698612228863625", + "2262861956409025593658417" ], - "LPTokenSupply": "3209438569943909887059998" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "880950948764596349960192", - "hardLimitError": true + "LPTokenSupply": "4975111591579632509067203" }, { - "type": "mintMulti", - "inputQtys": [ - "25859712245253619712", - "114119929267604094976" + "type": "redeemMasset", + "inputQty": "4771319344070682004684", + "expectedQtys": [ + "2608442554318813654087", + "2168867717786135656990" ], - "expectedQty": "139181455006281872725", + "redemptionFee": "2862791606442409202", "reserves": [ - "1080793466115249706418477", - "2144524808825249603949474" + "2718878614144293415209538", + "2260693088691239458001427" ], - "LPTokenSupply": "3209577751398916168932723" + "LPTokenSupply": "4970340558514722471303439" }, { "type": "mintMulti", "inputQtys": [ - "4402798175557706240", - "1381596823711034368" + "31161767412903419904", + "36098300282764029952" ], - "expectedQty": "5769636632336551211", + "expectedQty": "67142262915475352982", "reserves": [ - "1080797868913425264124717", - "2144526190422073314983842" + "2718909775911706318629442", + "2260729186991522222031379" ], - "LPTokenSupply": "3209583521035548505483934" + "LPTokenSupply": "4970407700777637946656421" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "20654789324051859898368", - "expectedQty": "20781511447255812141110", - "swapFee": "12392873594431115939", + "type": "redeemMasset", + "inputQty": "4852596595841513062", + "expectedQtys": [ + "2652872129087637929", + "2205819959426091766" + ], + "redemptionFee": "2911557957504907", "reserves": [ - "1080797868913425264124717", - "2123744678974817502842732" + "2718907123039577230991513", + "2260726981171562795939613" ], - "LPTokenSupply": "3188929970998856088697159" + "LPTokenSupply": "4970402848472197900893849" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "186050040638807212032", - "outputIndex": 1, - "expectedQty": "186904077709707106649", - "swapFee": "148643509111460453", + "type": "mintMulti", + "inputQtys": [ + "2533406786114269741056", + "7770080785289795600384" + ], + "expectedQty": "10288186122884405230378", "reserves": [ - "1080983918954064071336749", - "2123557774897107795736083" + "2721440529825691500732569", + "2268497061956852591539997" ], - "LPTokenSupply": "3188929985863206999843204", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4980691034595082306124227" }, { "type": "mint", "inputIndex": 0, - "inputQty": "321029972863766822912", - "expectedQty": "320605339598013867548", + "inputQty": "60610994026913808252928", + "expectedQty": "60462968177730452301826", "reserves": [ - "1081304948926927838159661", - "2123557774897107795736083" + "2782051523852605308985497", + "2268497061956852591539997" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "17804955442176094896128", - "expectedQty": "17685785161747580690072", + "inputQty": "6750548639668423884800", + "expectedQty": "6743056633143622892332", "reserves": [ - "1081304948926927838159661", - "2141362730339283890632211" + "2782051523852605308985497", + "2275247610596521015424797" ] }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "2402579580232644608", + "outputIndex": 0, + "expectedQty": "2405835231919477501", + "swapFee": "0", + "reserves": [ + "2782049118017373389507996", + "2275250013176101248069405" + ], + "LPTokenSupply": "5047897059405956381318385", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "mintMulti", "inputQtys": [ - "378159956019866830372864", - "305939051184863580258304" + "2694728609758644", + "1933614943512541" ], - "expectedQty": "681441648045454402780259", + "expectedQty": "4619538023782354", "reserves": [ - "1459464904946794668532525", - "2447301781524147470890515" + "2782049120712101999266640", + "2275250015109716191581946" ], - "LPTokenSupply": "3888378024410006997181083" + "LPTokenSupply": "5047897064025494405100739" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "61974982677409712", - "outputIndex": 0, - "expectedQty": "61738829913891638", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "5089378764409008128", + "expectedQtys": [ + "2803227996923663415", + "2292570787076541768" + ], + "redemptionFee": "3053627258645404", "reserves": [ - "1459464843207964754640887", - "2447301843499130148300227" + "2782046317484105075603225", + "2275247722538929115040178" ], - "LPTokenSupply": "3888378024410006997181083", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5047891974952092721957151" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2389655672121205456896", - "expectedQty": "2375010235426176875787", + "type": "redeemMasset", + "inputQty": "291677775375556", + "expectedQtys": [ + "160656014084906", + "131389699683155" + ], + "redemptionFee": "175006665225", "reserves": [ - "1459464843207964754640887", - "2449691499171251353757123" - ] + "2782046317323449061518319", + "2275247722407539415357023" + ], + "LPTokenSupply": "5047891974660432447248117" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "109787187645030997164032", - "expectedQty": "109510643761607845514221", + "inputQty": "1220058521650211328", + "expectedQty": "1222342295983527084", + "swapFee": "732035112990126", + "reserves": [ + "2782045094981153077991235", + "2275247722407539415357023" + ], + "LPTokenSupply": "5047890754675114308335801" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "2091610483032331386880", + "expectedQty": "2089273567157724193206", "reserves": [ - "1569252030852995751804919", - "2449691499171251353757123" + "2782045094981153077991235", + "2277339332890571746743903" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6566918086345346777088", - "7164137716156582592512" + "6870742913479079886848", + "57273417884230936952832" ], - "expectedQty": "13671080276473386733325", - "swapFee": "8207572709509737882", + "expectedQty": "64060939212880679151818", "reserves": [ - "1562685112766650405027831", - "2442527361455094771164611" + "2788915837894632157878083", + "2334612750774802683696735" ], - "LPTokenSupply": "3986585211315129074073671" + "LPTokenSupply": "5114040967455152711680825" }, { - "type": "redeemBassets", - "inputQtys": [ - "1369849085868310265856", - "1239580043751657570304" - ], - "expectedQty": "2598417889574545673908", - "swapFee": "1559986725780195521", + "type": "mint", + "inputIndex": 0, + "inputQty": "55922937148224053248", + "expectedQty": "55789034043387132894", "reserves": [ - "1561315263680782094761975", - "2441287781411343113594307" - ], - "LPTokenSupply": "3983985389437501326223793" + "2788971760831780381931331", + "2334612750774802683696735" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "109762329238351040741376", + "inputQty": "1032812707058374803456", "outputIndex": 1, - "expectedQty": "109976633788423486808626", - "swapFee": "87557887913267355130", + "expectedQty": "1030753040921926047313", + "swapFee": "824271269241913369", "reserves": [ - "1671077592919133135503351", - "2331311147622919626785681" + "2790004573538838756734787", + "2333581997733880757649422" ], - "LPTokenSupply": "3983994145226292652959306", + "LPTokenSupply": "5114096838916323023005055", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "409950206673649", - "193708567852025" + "388613605849058312192", + "315176806690519908352" ], - "expectedQty": "601247231375495", + "expectedQty": "702480449664591916570", "reserves": [ - "1671077593329083342177000", - "2331311147816628194637706" + "2790393187144687815046979", + "2333897174540571277557774" ], - "LPTokenSupply": "3983994145827539884334801" + "LPTokenSupply": "5114799319365987614921625" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8089286543057077248", - "530252600920011392" + "9631253733467756691456", + "29976747893911344644096" ], - "expectedQty": "8590241902091213275", - "swapFee": "5157239484945695", + "expectedQty": "39548542596488934724786", "reserves": [ - "1671069504042540285099752", - "2331310617564027274626314" + "2800024440878155571738435", + "2363873922434482622201870" ], - "LPTokenSupply": "3983985550944122256670399" + "LPTokenSupply": "5154347861962476549646411" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "854902075901615744", - "expectedQty": "859161961472650527", - "swapFee": "512941245540969", + "inputIndex": 0, + "inputQty": "96370223219984768", + "expectedQty": "96541006999227405", + "swapFee": "57822133931990", "reserves": [ - "1671069504042540285099752", - "2331309758402065801975787" + "2800024344337148572511030", + "2363873922434482622201870" ], - "LPTokenSupply": "3983984696093340479608751" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "68840769888699408384", - "expectedQty": "68458341657033217083", - "reserves": [ - "1671069504042540285099752", - "2331378599171954501384171" - ] + "LPTokenSupply": "5154347765598035543054842" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10779583957331255296", - "expectedQty": "10719700009736385354", + "type": "redeem", + "inputIndex": 0, + "inputQty": "367675284696798068736", + "expectedQty": "368326789231684862276", + "swapFee": "220605170818078841", "reserves": [ - "1671069504042540285099752", - "2331389378755911832639467" - ] + "2799656017547916887648754", + "2363873922434482622201870" + ], + "LPTokenSupply": "5153980112373855826793990" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "19605391571486543872", - "expectedQty": "19541527813488784227", + "inputQty": "172484316937351419920384", + "outputIndex": 1, + "expectedQty": "172069546758186378798296", + "swapFee": "137647723017731848789", "reserves": [ - "1671089109434111771643624", - "2331389378755911832639467" - ] + "2972140334485268307569138", + "2191804375676296243403574" + ], + "LPTokenSupply": "5153993877146157599978868", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1564387858890885955584", - "865289894413864402944" + "10085210988313593856", + "15048483139353202688" ], - "expectedQty": "2419776024949379185838", - "swapFee": "1452737257324021924", + "expectedQty": "25094424431662866399", "reserves": [ - "1669524721575220885688040", - "2330524088861497968236523" + "2972150419696256621162994", + "2191819424159435596606262" ], - "LPTokenSupply": "3981662332174339767189844" + "LPTokenSupply": "5154018971570589262845267" }, { - "type": "redeemMasset", - "inputQty": "263457254562975029657", - "expectedQtys": [ - "110402252591677767070", - "154112787791914275283" - ], - "redemptionFee": "158074352737785017", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3007549818033478303744", + "expectedQty": "3007911711962856714117", + "swapFee": "1804529890820086982", "reserves": [ - "1669414319322629207920970", - "2330369976073706053961240" + "2972150419696256621162994", + "2188811512447472739892145" ], - "LPTokenSupply": "3981398890727212065938688" + "LPTokenSupply": "5151011602205544866550221" }, { - "type": "mintMulti", - "inputQtys": [ - "5284514519194851606528", - "2987524628466833031168" - ], - "expectedQty": "8238220219063694358614", + "type": "redeem", + "inputIndex": 1, + "inputQty": "70974524395879284736", + "expectedQty": "70982874393053463926", + "swapFee": "42584714637527570", "reserves": [ - "1674698833841824059527498", - "2333357500702172886992408" + "2972150419696256621162994", + "2188740529573079686428219" ], - "LPTokenSupply": "3989637110946275760297302" + "LPTokenSupply": "5150940631939620451018242" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "87335859554694853558272", - "expectedQty": "87558792122297953567962", - "swapFee": "52401515732816912134", + "inputQty": "7912620244026924204032", + "expectedQty": "7930198418688730451707", + "swapFee": "4747572146416154522", "reserves": [ - "1587140041719526105959536", - "2333357500702172886992408" + "2964220221277567890711287", + "2188740529573079686428219" ], - "LPTokenSupply": "3902306491543154188430243" + "LPTokenSupply": "5143028486452808168429662" }, { - "type": "redeemBassets", - "inputQtys": [ - "12480307115660161318912", - "878394621389394804736" - ], - "expectedQty": "13316025717797548089655", - "swapFee": "7994412077925284024", + "type": "swap", + "inputIndex": 0, + "inputQty": "17294468209552490758144", + "outputIndex": 1, + "expectedQty": "17243746192792043000206", + "swapFee": "13796543684409858930", "reserves": [ - "1574659734603865944640624", - "2332479106080783492187672" + "2981514689487120381469431", + "2171496783380287643428013" ], - "LPTokenSupply": "3888983270854486507584965" + "LPTokenSupply": "5143029866107176609415555", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "3737198021321942528", + "expectedQty": "3726519268634261244", + "reserves": [ + "2981518426685141703411959", + "2171496783380287643428013" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "56346180665939163348992", - "3377112105959335395328" + "5939491865758", + "8606763515560" ], - "expectedQty": "59530582439887995496860", + "expectedQty": "14523488459752", + "swapFee": "8719324670", "reserves": [ - "1631005915269805107989616", - "2335856218186742827583000" + "2981518426679202211546201", + "2171496783371680879912453" ], - "LPTokenSupply": "3948513853294374503081825" + "LPTokenSupply": "5143033592611913907824843" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "3556328373003298", - "expectedQty": "3536227864431779", - "reserves": [ - "1631005915269805107989616", - "2335856221743071200586298" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "239009868245370593607680", - "expectedQty": "239532409632994529935750", - "swapFee": "143405920947222356164", + "inputQty": "670562221688694767616", + "outputIndex": 0, + "expectedQty": "672029642719741593951", + "swapFee": "0", "reserves": [ - "1391473505636810578053866", - "2335856221743071200586298" + "2980846397036482469952250", + "2172167345593369574680069" ], - "LPTokenSupply": "3709518329177326496141540" + "LPTokenSupply": "5143033592611913907824843", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "9225199881737050521600", - "6468599651295722209280" + "501234864297379823616", + "527896914245840863232" ], - "expectedQty": "15631693829239851570174", - "swapFee": "9384647085795388175", + "expectedQty": "1027343735350871647298", + "swapFee": "616776306994719820", "reserves": [ - "1382248305755073527532266", - "2329387622091775478377018" + "2980345162172185090128634", + "2171639448679123733816837" ], - "LPTokenSupply": "3693878189165709428722007" + "LPTokenSupply": "5142005693777886740929706" }, { "type": "redeemBassets", "inputQtys": [ - "128761309082778", - "541375107747704" + "23181086823816213037056", + "19499445631909535678464" ], - "expectedQty": "666465647672640", - "swapFee": "400119460279", + "expectedQty": "42601161550729938409759", + "swapFee": "25576042555971545973", "reserves": [ - "1382248305626312218449488", - "2329387621550400370629314" + "2957164075348368877091578", + "2152140003047214198138373" ], - "LPTokenSupply": "3693878188498883673535114" + "LPTokenSupply": "5099381513788856428128570" }, { - "type": "redeemBassets", - "inputQtys": [ - "611834009915806056448", - "611778236352528646144" + "type": "redeemMasset", + "inputQty": "52779770881750479667", + "expectedQtys": [ + "30588963557527440546", + "22261778665816139782" ], - "expectedQty": "1218358736155282961703", - "swapFee": "731454114161666777", + "redemptionFee": "31667862529050287", "reserves": [ - "1381636471616396412393040", - "2328775843314047841983170" + "2957133486384811349651032", + "2152117741268548381998591" ], - "LPTokenSupply": "3692659171454025645073310" + "LPTokenSupply": "5099328737184760930553931" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "43804116699131158528", - "expectedQty": "43531767807411362355", + "inputIndex": 0, + "inputQty": "454739771912909815808", + "expectedQty": "453437104580988476284", "reserves": [ - "1381636471616396412393040", - "2328819647430746973141698" + "2957588226156724259466840", + "2152117741268548381998591" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "153551531156790607872", - "expectedQty": "152596813948073656298", + "inputQty": "36332585866753814298624", + "expectedQty": "36333936160152400922518", + "swapFee": "21799551520052288579", "reserves": [ - "1381636471616396412393040", - "2328973198961903763749570" - ] + "2957588226156724259466840", + "2115783805108395981076073" + ], + "LPTokenSupply": "5063451768377740109960448" }, { - "type": "redeemMasset", - "inputQty": "632127951639286697164", - "expectedQtys": [ - "236361010431391414724", - "398424961907854740722" + "type": "redeemBassets", + "inputQtys": [ + "43972381150589960", + "19406920745342684" ], - "redemptionFee": "379276770983572018", + "expectedQty": "63239084695959988", + "swapFee": "37966230555909", "reserves": [ - "1381400110605965020978316", - "2328574773999995909008848" + "2957588182184343108876880", + "2115783785701475235733389" ], - "LPTokenSupply": "3692223210011818941752000" + "LPTokenSupply": "5063451705104485806500140" }, { "type": "mint", "inputIndex": 1, - "inputQty": "711708033805153152", - "expectedQty": "707282795794051610", + "inputQty": "11144582837113606144", + "expectedQty": "11137855362050016878", "reserves": [ - "1381400110605965020978316", - "2328575485708029714162000" + "2957588182184343108876880", + "2115794930284312349339533" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "511239774874444955648", - "659659262331889516544" + "type": "redeemMasset", + "inputQty": "1709073310327627571", + "expectedQtys": [ + "997677348639064086", + "713716902517179922" ], - "expectedQty": "1165586110097730037983", - "swapFee": "699771528976023636", + "redemptionFee": "1025443986196576", "reserves": [ - "1380888870831090576022668", - "2327915826445697824645456" + "2957587184506994469812794", + "2115794216567409832159611" ], - "LPTokenSupply": "3691057701390140927344353" + "LPTokenSupply": "5063461133989081927509104" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "89888622587727354789888", - "expectedQty": "90030453748699850832508", - "swapFee": "53933173552636412873", + "type": "mintMulti", + "inputQtys": [ + "1384578815232201472", + "2774058104940635648" + ], + "expectedQty": "4152916121459471007", "reserves": [ - "1290858417082390725190160", - "2327915826445697824645456" + "2957588569085809702014266", + "2115796990625514772795259" ], - "LPTokenSupply": "3601174472119768836195752" + "LPTokenSupply": "5063465286905203386980111" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "84394046995954319360", - "outputIndex": 1, - "expectedQty": "84706684134643784085", - "swapFee": "67381417176432414", + "type": "redeemBassets", + "inputQtys": [ + "327017405436307036962816", + "332971684526738242535424" + ], + "expectedQty": "658844382067323845691538", + "swapFee": "395543955613762564953", "reserves": [ - "1290942811129386679509520", - "2327831119761563180861371" + "2630571163649502665051450", + "1782825306098776530259835" ], - "LPTokenSupply": "3601174478857910553838993", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4404264915277827154980114" }, { - "type": "redeemMasset", - "inputQty": "16816281791835586560", - "expectedQtys": [ - "6024654706850912897", - "10863671567415327081" + "type": "mintMulti", + "inputQtys": [ + "32696404734478618624", + "23540433599293333504" ], - "redemptionFee": "10089769075101351", + "expectedQty": "56122733480476680505", "reserves": [ - "1290936786474679828596623", - "2327820256089995765534290" + "2630603860054237143670074", + "1782848846532375823593339" ], - "LPTokenSupply": "3601157663585095625762568" + "LPTokenSupply": "4404321038011307631660619" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2759219398744379", - "expectedQty": "2775496364834281", - "swapFee": "1655531639246", + "inputIndex": 0, + "inputQty": "190554198937227619205120", + "expectedQty": "191023680172191813777667", + "swapFee": "114332519362336571523", "reserves": [ - "1290936786474679828596623", - "2327820253314499400700009" + "2439580179882045329892407", + "1782848846532375823593339" ], - "LPTokenSupply": "3601157660826041780182113" + "LPTokenSupply": "4213778272326016246112651" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "5902463910221109526528", - "expectedQty": "5864302115869117884378", - "reserves": [ - "1290936786474679828596623", - "2333722717224720510226537" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "252915227234486681600", - "33805744230701486080" - ], - "expectedQty": "286004723331676020341", + "inputQty": "3551260925839897788416", + "expectedQty": "3551962389157930618008", + "swapFee": "2130756555503938673", "reserves": [ - "1291189701701914315278223", - "2333756522968951211712617" + "2439580179882045329892407", + "1779296884143217892975331" ], - "LPTokenSupply": "3607307967665242574086832" + "LPTokenSupply": "4210227224475831898718102" }, { "type": "mint", "inputIndex": 1, - "inputQty": "397606028582352322560", - "expectedQty": "395033732313885639368", + "inputQty": "4570561095740878336", + "expectedQty": "4566934194922488731", "reserves": [ - "1291189701701914315278223", - "2334154128997533564035177" + "2439580179882045329892407", + "1779301454704313633853667" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2821094533872572956672", - "expectedQty": "2802836821964323961009", + "type": "swap", + "inputIndex": 0, + "inputQty": "133266220488839544176640", + "outputIndex": 1, + "expectedQty": "132803129701204476057038", + "swapFee": "106287655915299549084", "reserves": [ - "1291189701701914315278223", - "2336975223531406136991849" - ] + "2572846400370884874069047", + "1646498325003109157796629" + ], + "LPTokenSupply": "4210242420175618351161741", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "29663612319519808", - "expectedQtys": [ - "10601941015188386", - "19188871659353268" - ], - "redemptionFee": "17798167391711", + "type": "mint", + "inputIndex": 1, + "inputQty": "152255197551660558712832", + "expectedQty": "152190571973346409376862", "reserves": [ - "1291189691099973300089837", - "2336975204342534477638581" - ], - "LPTokenSupply": "3610505808557688280906572" + "2572846400370884874069047", + "1798753522554769716509461" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "21563443132419858432", - "29511912205852811264" + "193384379674286063616", + "1280737246357729050624" ], - "expectedQty": "50842050893916084730", - "swapFee": "30523544663147539", + "expectedQty": "1472710002346169983977", "reserves": [ - "1291168127656840880231405", - "2336945692430328624827317" + "2573039784750559160132663", + "1800034259801127445560085" ], - "LPTokenSupply": "3610454939035604167989055" + "LPTokenSupply": "4363905702151310930522580" }, { - "type": "redeemMasset", - "inputQty": "9262253952702696652", - "expectedQtys": [ - "3310372742369533116", - "5991598735215470086" - ], - "redemptionFee": "5557352371621617", + "type": "mint", + "inputIndex": 0, + "inputQty": "130350613412294", + "expectedQty": "129943797763673", "reserves": [ - "1291164817284098510698289", - "2336939700831593409357231" - ], - "LPTokenSupply": "3610445677337386702454564" + "2573039784880909773544957", + "1800034259801127445560085" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1102289388120294817792", - "expectedQty": "1103787501056583642973", - "swapFee": "661373632872176890", + "type": "redeemBassets", + "inputQtys": [ + "9221858792917064220672", + "19667806749537993752576" + ], + "expectedQty": "28848671576623979728480", + "swapFee": "17319594702796065476", "reserves": [ - "1290061029783041927055316", - "2336939700831593409357231" + "2563817926087992709324285", + "1780366453051589451807509" ], - "LPTokenSupply": "3609343454086629694854461" + "LPTokenSupply": "4335041443069398232098843" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "129281032660846800535552", - "36158820029188211212288" + "415028146511603564544", + "451882262956864307200" ], - "expectedQty": "164985055588386522685159", - "swapFee": "99050463631210639995", + "expectedQty": "865331758763126963691", "reserves": [ - "1160779997122195126519764", - "2300780880802405198144943" + "2564232954234504312888829", + "1780818335314546316114709" ], - "LPTokenSupply": "3444269253080975082593305" + "LPTokenSupply": "4335906774828161359062534" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8411702512016911499264", - "1878120350281564160000" + "18241545245861838061568", + "35911643114970225311744" ], - "expectedQty": "10265655255697800651772", - "swapFee": "6163091008023494487", + "expectedQty": "54073447508992938000997", "reserves": [ - "1152368294610178215020500", - "2298902760452123633984943" + "2582474499480366150950397", + "1816729978429516541426453" ], - "LPTokenSupply": "3433998051043370060796493" + "LPTokenSupply": "4389980222337154297063531" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2485088870241183727616", - "1843201424518677004288" + "599170572523968384", + "631709945359603712" ], - "expectedQty": "4312365426170955288647", + "expectedQty": "1228601421878368630", + "swapFee": "737603415176126", "reserves": [ - "1154853383480419398748116", - "2300745961876642310989231" + "2582473900309793626982013", + "1816729346719571181822741" ], - "LPTokenSupply": "3438310416469541016085140" + "LPTokenSupply": "4389978993071889345036386" }, { "type": "mint", "inputIndex": 0, - "inputQty": "3161343022880242270208", - "expectedQty": "3157092100916892018057", + "inputQty": "2752329299772621824", + "expectedQty": "2743778128418803971", "reserves": [ - "1158014726503299641018324", - "2300745961876642310989231" + "2582476652639093399603837", + "1816729346719571181822741" ] }, { - "type": "redeemMasset", - "inputQty": "2899825659601981030", - "expectedQtys": [ - "975172941561323229", - "1937475539886571850" - ], - "redemptionFee": "1739895395761188", + "type": "redeem", + "inputIndex": 1, + "inputQty": "425210190762983106281472", + "expectedQty": "424962067104393007525145", + "swapFee": "255126114457789863768", "reserves": [ - "1158013751330358079695095", - "2300744024401102424417381" + "2582476652639093399603837", + "1391767279615178174297596" ], - "LPTokenSupply": "3441464608918787845698285" + "LPTokenSupply": "3964797058698480436545261" }, { - "type": "mintMulti", - "inputQtys": [ - "35534800917793652736", - "37727488453060820992" - ], - "expectedQty": "72956302254491887330", + "type": "redeem", + "inputIndex": 1, + "inputQty": "38040843257211078574080", + "expectedQty": "37987003495884048786640", + "swapFee": "22824505954326647144", "reserves": [ - "1158049286131275873347831", - "2300781751889555485238373" + "2582476652639093399603837", + "1353780276119294125510956" ], - "LPTokenSupply": "3441537565221042337585615" + "LPTokenSupply": "3926758497891864790635895" }, { - "type": "redeemBassets", - "inputQtys": [ - "2049779265804440174592", - "12152617992960140640256" - ], - "expectedQty": "14116616025839588984537", - "swapFee": "8475054648292729028", + "type": "redeem", + "inputIndex": 0, + "inputQty": "53444607727598074593280", + "expectedQty": "53633246805952168133678", + "swapFee": "32066764636558844755", "reserves": [ - "1155999506865471433173239", - "2288629133896595344598117" + "2528843405833141231470159", + "1353780276119294125510956" ], - "LPTokenSupply": "3427413321646019285144951" + "LPTokenSupply": "3873317096840730371927090" }, { - "type": "redeemBassets", - "inputQtys": [ - "871310348133778816", - "279554385393865920" - ], - "expectedQty": "1147752415436326702", - "swapFee": "689064888194712", + "type": "redeem", + "inputIndex": 1, + "inputQty": "21722598063154141331456", + "expectedQty": "21691992934409989412891", + "swapFee": "13033558837892484798", "reserves": [ - "1155998635555123299394423", - "2288628854342209950732197" + "2528843405833141231470159", + "1332088283184884136098065" ], - "LPTokenSupply": "3427412173273445449443007" + "LPTokenSupply": "3851595802133460019844113" }, { - "type": "mintMulti", - "inputQtys": [ - "67281890766313580658688", - "15790477386706210258944" + "type": "redeemMasset", + "inputQty": "1100577136859446272", + "expectedQtys": [ + "722172695607339714", + "380410184369500596" ], - "expectedQty": "82861087828541225712581", + "redemptionFee": "660346282115667", "reserves": [ - "1223280526321436880053111", - "2304419331728916160991141" + "2528842683660445624130445", + "1332087902774699766597469" ], - "LPTokenSupply": "3510273261101986675155588" + "LPTokenSupply": "3851594701622357788609407" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3270704943027455488", - "expectedQty": "3290606139407277512", - "swapFee": "1962422965816473", + "inputQty": "578108135276124176384", + "expectedQty": "577263050541442363768", + "swapFee": "346864881165674505", "reserves": [ - "1223280526321436880053111", - "2304416041122776753713629" + "2528842683660445624130445", + "1331510639724158324233701" ], - "LPTokenSupply": "3510269990593285944281747" + "LPTokenSupply": "3851016628173569781000473" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9611617353395771277312", - "expectedQty": "9622235144631202027290", - "swapFee": "5766970412037462766", + "type": "redeemMasset", + "inputQty": "120625833197983026380", + "expectedQtys": [ + "79163701153455093633", + "41682035441285045739" + ], + "redemptionFee": "72375499918789815", "reserves": [ - "1213658291176805678025821", - "2304416041122776753713629" + "2528763519959292169036812", + "1331468957688717039187962" ], - "LPTokenSupply": "3500658949936931376750711" + "LPTokenSupply": "3850896009577921789853074" }, { - "type": "redeemBassets", - "inputQtys": [ - "5799832321509041373184", - "5793282395931015118848" + "type": "redeemMasset", + "inputQty": "825450690115404719718", + "expectedQtys": [ + "541722540869675051001", + "285232976968855068466" ], - "expectedQty": "11544742663532803868799", - "swapFee": "6931004200640066361", + "redemptionFee": "495270414069242831", "reserves": [ - "1207858458855296636652637", - "2298622758726845738594781" + "2528221797418422493985811", + "1331183724711748184119496" ], - "LPTokenSupply": "3489107969369617996822186" + "LPTokenSupply": "3850070608414847792057639" }, { "type": "mintMulti", "inputQtys": [ - "1034153523848525774848", - "1383291382722395635712" + "1960890556924669722624", + "1417498560860873818112" ], - "expectedQty": "2406478294114904250343", + "expectedQty": "3371481369301599879348", "reserves": [ - "1208892612379145162427485", - "2300006050109568134230493" + "2530182687975347163708435", + "1332601223272609057937608" ], - "LPTokenSupply": "3491514447663732901072529" + "LPTokenSupply": "3853442089784149391936987" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "25525445082963440", - "expectedQty": "25681757673014510", - "swapFee": "15315267049778", + "type": "redeemBassets", + "inputQtys": [ + "13218932632560380936192", + "1851700567055586557952" + ], + "expectedQty": "15017486556536351647419", + "swapFee": "9015901474806695005", "reserves": [ - "1208892612379145162427485", - "2300006024427810461215983" + "2516963755342786782772243", + "1330749522705553471379656" ], - "LPTokenSupply": "3491514422139819344814066" + "LPTokenSupply": "3838416488916285714264062" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "24020035820408696832", - "expectedQty": "23859512586656090749", + "inputQty": "93842302754522335805440", + "expectedQty": "93684092826390812205915", + "swapFee": "56305381652713401483", "reserves": [ - "1208892612379145162427485", - "2300030044463630869912815" - ] + "2516963755342786782772243", + "1237065429879162659173741" + ], + "LPTokenSupply": "3744579816699928649798770" }, { "type": "redeemMasset", - "inputQty": "3957145324400467968", + "inputQty": "30211574911102880", "expectedQtys": [ - "1369279986317815210", - "2605181862775733704" + "20294884312712593", + "9974756185249264" ], - "redemptionFee": "2374287194640280", + "redemptionFee": "18126944946661", "reserves": [ - "1208891243099158844612275", - "2300027439281768094179111" + "2516963735047902470059650", + "1237065419904406473924477" ], - "LPTokenSupply": "3491534324744510319900875" + "LPTokenSupply": "3744579786490166433190556" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2876684645704234172416", - "expectedQty": "2894294422701721441195", - "swapFee": "1726010787422540503", + "inputIndex": 0, + "inputQty": "60404555107297105281024", + "expectedQty": "60633274096649694705418", + "swapFee": "36242733064378263168", "reserves": [ - "1208891243099158844612275", - "2297133144859066372737916" + "2456330460951252775354232", + "1237065419904406473924477" ], - "LPTokenSupply": "3488657812699884827982509" + "LPTokenSupply": "3684178855656175765735848" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "36709762326649", - "expectedQty": "36648289234709", + "type": "mintMulti", + "inputQtys": [ + "6990175418639518269440", + "6283687823317694152704" + ], + "expectedQty": "13250799060828438590239", "reserves": [ - "1208891243135868606938924", - "2297133144859066372737916" - ] + "2463320636369892293623672", + "1243349107727724168077181" + ], + "LPTokenSupply": "3697429654717004204326087" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "11869968557550528", - "expectedQty": "11850091455744995", + "type": "redeemMasset", + "inputQty": "23674335905902444203212", + "expectedQtys": [ + "15762974591523212531254", + "7956284741878890844336" + ], + "redemptionFee": "14204601543541466521", "reserves": [ - "1208891255005837164489452", - "2297133144859066372737916" - ] + "2447557661778369081092418", + "1235392822985845277232845" + ], + "LPTokenSupply": "3673756739271256114269527" }, { "type": "mint", "inputIndex": 0, - "inputQty": "114716805441878128328704", - "expectedQty": "114490514860442493261289", + "inputQty": "56509801520978737496064", + "expectedQty": "56262796788606334263302", "reserves": [ - "1323608060447715292818156", - "2297133144859066372737916" + "2504067463299347818588482", + "1235392822985845277232845" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "145651533089205088", - "161764571871203200" - ], - "expectedQty": "306059297518160548", - "swapFee": "183745826006500", - "reserves": [ - "1323607914796182203613068", - "2297132983094494501534716" - ], - "LPTokenSupply": "3603148033222398304657103" - }, - { - "type": "mintMulti", - "inputQtys": [ - "29382604408896802816", - "95420876898584821760" + "type": "redeemMasset", + "inputQty": "14636417936802378153984", + "expectedQtys": [ + "9819945239946078536601", + "4844713670596959176123" ], - "expectedQty": "124130245300609168757", + "redemptionFee": "8781850762081426892", "reserves": [ - "1323637297400591100415884", - "2297228403971393086356476" + "2494247518059401740051881", + "1230548109315248318056722" ], - "LPTokenSupply": "3603272163467698913825860" + "LPTokenSupply": "3715383996308136278521534" }, { "type": "redeemMasset", - "inputQty": "913406745559603814", + "inputQty": "1374491416700524544", "expectedQtys": [ - "335332378394497861", - "581983497995966617" + "922183229249248406", + "454963198711647358" ], - "redemptionFee": "548044047335762", + "redemptionFee": "824694850020314", "reserves": [ - "1323636962068212705918023", - "2297227821987895090389859" + "2494246595876172490803475", + "1230547654352049606409364" ], - "LPTokenSupply": "3603271250115757758955622" + "LPTokenSupply": "3715382621899189062999021" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "65962723953029210112", - "expectedQty": "66345307182777808605", - "swapFee": "39577634371817526", + "inputQty": "5025374480702284759040", + "expectedQty": "5015754186445216306206", + "swapFee": "3015224688421370855", "reserves": [ - "1323636962068212705918023", - "2297161476680712312581254" + "2494246595876172490803475", + "1225531900165604390103158" ], - "LPTokenSupply": "3603205291349568166927262" + "LPTokenSupply": "3710357548940955620377066" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "113286883124418223013888", + "expectedQty": "113400841002226652257614", + "reserves": [ + "2494246595876172490803475", + "1338818783290022613117046" + ] }, { "type": "redeemBassets", "inputQtys": [ - "5350987000420657", - "2445110027755132" + "3596522020879582887936", + "4293127412826976026624" ], - "expectedQty": "7768506965882389", - "swapFee": "4663902521042", + "expectedQty": "7877907672040161491438", + "swapFee": "4729582352635678301", "reserves": [ - "1323636956717225705497366", - "2297161474235602284826122" + "2490650073855292907915539", + "1334525655877195637090422" ], - "LPTokenSupply": "3603205283576863688775934" + "LPTokenSupply": "3815876225647024739032770" }, { - "type": "redeemMasset", - "inputQty": "65324341414332", - "expectedQtys": [ - "23982489544963", - "41621421009264" + "type": "mintMulti", + "inputQtys": [ + "5251830569604719", + "9951975842585420" ], - "redemptionFee": "39194604848", + "expectedQty": "15189301338806313", "reserves": [ - "1323636956693243215952403", - "2297161474193980863816858" + "2490650079107123477520258", + "1334525665829171479675842" ], - "LPTokenSupply": "3603205283511543266822086" + "LPTokenSupply": "3815876240836326077839083" }, { - "type": "redeemMasset", - "inputQty": "1419954519409110600908", - "expectedQtys": [ - "521307121951062222802", - "904724388899375375643" + "type": "redeemBassets", + "inputQtys": [ + "92256322504460222464", + "78999717710484570112" ], - "redemptionFee": "851972711645466360", + "expectedQty": "170932721208136950145", + "swapFee": "102621205448151060", "reserves": [ - "1323115649571292153729601", - "2296256749805081488441215" + "2490557822784619017297794", + "1334446666111460995105730" ], - "LPTokenSupply": "3601785414189405320767814" + "LPTokenSupply": "3815705215756033037552983" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "38400677761097056256", - "58419381057881792512" + "50634564029160316928", + "21585420715243118592" ], - "expectedQty": "96361968963196566067", + "expectedQty": "72026959475238789595", + "swapFee": "43242120957717904", "reserves": [ - "1323154050249053250785857", - "2296315169186139370233727" + "2490507188220589856980866", + "1334425080690745751987138" ], - "LPTokenSupply": "3601881776158368517333881" + "LPTokenSupply": "3815633149878648936817273" }, { - "type": "redeemMasset", - "inputQty": "75466093374445361561", - "expectedQtys": [ - "27705894125998642655", - "48083188004768276081" - ], - "redemptionFee": "45279656024667216", + "type": "redeem", + "inputIndex": 1, + "inputQty": "93469905527926800384", + "expectedQty": "93347045924933887234", + "swapFee": "56081943316756080", "reserves": [ - "1323126344354927252143202", - "2296267085998134601957646" + "2490507188220589856980866", + "1334331733644820818099904" ], - "LPTokenSupply": "3601806314592959674439041" + "LPTokenSupply": "3815539685581315341692497" }, { - "type": "redeemMasset", - "inputQty": "7862213688776268185", - "expectedQtys": [ - "2886457384788269860", - "5009406029971376680" + "type": "mintMulti", + "inputQtys": [ + "2617719864054461759488", + "860381165012499169280" ], - "redemptionFee": "4717328213265760", + "expectedQty": "3467938143314118009469", "reserves": [ - "1323123457897542463873342", - "2296262076592104630580966" + "2493124908084644318740354", + "1335192114809833317269184" ], - "LPTokenSupply": "3601798452851003719497432" + "LPTokenSupply": "3819007623724629459701966" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "205262027288122195968", - "183891677923579297792" + "14542844198056327168", + "16845350981729966080" ], - "expectedQty": "387521950118625380504", + "expectedQty": "31340397365443511706", + "swapFee": "18815527735907651", "reserves": [ - "1323328719924830586069310", - "2296445968270028209878758" + "2493110365240446262413186", + "1335175269458851587303104" ], - "LPTokenSupply": "3602185974801122344877936" + "LPTokenSupply": "3818976266393289053873373" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "104366469305791545344", - "expectedQty": "103702377081813267086", + "type": "mintMulti", + "inputQtys": [ + "652112417487704424448", + "3730547337582095630336" + ], + "expectedQty": "4382625306758890325486", "reserves": [ - "1323328719924830586069310", - "2296550334739334001424102" - ] + "2493762477657933966837634", + "1338905816796433682933440" + ], + "LPTokenSupply": "3823358891700047944198859" }, { "type": "redeemMasset", - "inputQty": "2139782716839718761267", + "inputQty": "293143300798745306726", "expectedQtys": [ - "785593940422751150444", - "1363346838682337031172" - ], - "redemptionFee": "1283869630103831256", - "reserves": [ - "1322543125984407834918866", - "2295186987900651664392930" + "191086206381578574368", + "102594547606692103542" ], - "LPTokenSupply": "3600150022848327449766880" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9582787227337936896", - "expectedQty": "9598627008038644086", - "swapFee": "5749672336402762", + "redemptionFee": "175885980479247184", "reserves": [ - "1322533527357399796274780", - "2295186987900651664392930" + "2493571391451552388263266", + "1338803222248826990829898" ], - "LPTokenSupply": "3600140440636067345470260" + "LPTokenSupply": "3823065765987847246816851" }, { "type": "redeemBassets", "inputQtys": [ - "11367501330354016256", - "274997937137305157632" + "344019478955215814656", + "373572970314147495936" ], - "expectedQty": "284589968824441270419", - "swapFee": "170856495191779830", + "expectedQty": "716440767578185920052", + "swapFee": "430122534067351963", "reserves": [ - "1322522159856069442258524", - "2294911989963514359235298" + "2493227371972597172448610", + "1338429649278512843333962" ], - "LPTokenSupply": "3599855696896397231597993" + "LPTokenSupply": "3822348938109988400280031" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "8103923909003534401536", - "expectedQty": "8117176774678746584710", - "swapFee": "4862354345402120640", + "type": "mintMulti", + "inputQtys": [ + "1551814587557320851456", + "30889537080402586370048" + ], + "expectedQty": "32454486617655767142096", "reserves": [ - "1314404983081390695673814", - "2294911989963514359235298" + "2494779186560154493300066", + "1369319186358915429704010" ], - "LPTokenSupply": "3591752259222828237408521" + "LPTokenSupply": "3854803424727644167422127" }, { "type": "mintMulti", "inputQtys": [ - "4467190990935", - "6717700422545" + "135123375950188304", + "245263387635065312" ], - "expectedQty": "11132103426019", + "expectedQty": "379978884752144744", "reserves": [ - "1314404983085857886664749", - "2294911989970232059657843" + "2494779321683530443488370", + "1369319431622303064769322" ], - "LPTokenSupply": "3591752259233960340834540" + "LPTokenSupply": "3854803804706528919566871" }, { "type": "swap", "inputIndex": 1, - "inputQty": "15906397215711207358464", + "inputQty": "2690288134892569600", "outputIndex": 0, - "expectedQty": "15838484366567973066256", + "expectedQty": "2702688695062588678", "swapFee": "0", "reserves": [ - "1298566498719289913598493", - "2310818387185943267016307" + "2494776618994835380899692", + "1369322121910437957338922" ], - "LPTokenSupply": "3591752259233960340834540", + "LPTokenSupply": "3854803804706528919566871", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "160394566503504841539584", - "outputIndex": 1, - "expectedQty": "160830974277443189517764", - "swapFee": "128002190753039442199", + "type": "mint", + "inputIndex": 1, + "inputQty": "296998384950071586193408", + "expectedQty": "296990347310109932337054", "reserves": [ - "1458961065222794755138077", - "2149987412908500077498543" - ], - "LPTokenSupply": "3591765059453035644778759", - "hardLimitError": false, - "insufficientLiquidityError": false + "2494776618994835380899692", + "1666320506860509543532330" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "132884746008755437568", - "160709657879051010048" - ], - "expectedQty": "292235096036212571851", + "type": "redeem", + "inputIndex": 0, + "inputQty": "267022143587616548716544", + "expectedQty": "267718858957897716684764", + "swapFee": "160213286152569929229", "reserves": [ - "1459093949968803510575645", - "2150148122566379128508591" + "2227057760036937664214928", + "1666320506860509543532330" ], - "LPTokenSupply": "3592057294549071857350610" + "LPTokenSupply": "3884788029757637560180303" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "859208340144415571968", - "outputIndex": 0, - "expectedQty": "856861746910126358462", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "172197839563005329408", + "247575657773235830784" + ], + "expectedQty": "418982118319382921245", + "swapFee": "251540195108694969", "reserves": [ - "1458237088221893384217183", - "2151007330906523544080559" + "2226885562197374658885520", + "1666072931202736307701546" ], - "LPTokenSupply": "3592057294549071857350610", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3884368821253142579433584" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "231078051776749010944", - "4594899565219162882048" + "31920363769498433486848", + "263764361809589881012224" ], - "expectedQty": "4798323790851437514851", - "swapFee": "2880722708135743955", + "expectedQty": "295239677796709598045239", "reserves": [ - "1458006010170116635206239", - "2146412431341304381198511" + "2258805925966873092372368", + "1929837293012326188713770" ], - "LPTokenSupply": "3587256378107783097666198" + "LPTokenSupply": "4179608499049852177478823" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "15664014110340847501312", - "expectedQty": "15703637327846709199222", - "swapFee": "9398408466204508500", + "type": "mintMulti", + "inputQtys": [ + "31269411994890760355840", + "66087170320156625731584" + ], + "expectedQty": "97167462491910083385814", "reserves": [ - "1442302372842269926007017", - "2146412431341304381198511" + "2290075337961763852728208", + "1995924463332482814445354" ], - "LPTokenSupply": "3571593303838288870615736" + "LPTokenSupply": "4276775961541762260864637" }, { - "type": "redeemMasset", - "inputQty": "1124361801073243136", - "expectedQtys": [ - "453774143339124843", - "675299771132570686" - ], - "redemptionFee": "674617080643945", + "type": "swap", + "inputIndex": 1, + "inputQty": "245150032250416608", + "outputIndex": 0, + "expectedQty": "245375076924992795", + "swapFee": "0", "reserves": [ - "1442301919068126586882174", - "2146411756041533248627825" + "2290075092586686927735413", + "1995924708482515064861962" ], - "LPTokenSupply": "3571592179543949505436994" + "LPTokenSupply": "4276775961541762260864637", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1529893744201711222784", - "302551624636096053248" - ], - "expectedQty": "1825918784604689019389", + "type": "mint", + "inputIndex": 0, + "inputQty": "35630347396227088384", + "expectedQty": "35538474527595319131", "reserves": [ - "1443831812812328298104958", - "2146714307666169344681073" - ], - "LPTokenSupply": "3573418098328554194456383" + "2290110722934083154823797", + "1995924708482515064861962" + ] }, { "type": "redeemMasset", - "inputQty": "677826923010299684454", + "inputQty": "62187961269935092531", "expectedQtys": [ - "273710169721097404155", - "406957051562341246253" + "33279901756479255912", + "29004788959079296054" ], - "redemptionFee": "406696153806179810", + "redemptionFee": "37312776761961055", "reserves": [ - "1443558102642607200700803", - "2146307350614607003434820" + "2290077443032326675567885", + "1995895703693555985565908" ], - "LPTokenSupply": "3572740312075159275389910" + "LPTokenSupply": "4276749315786297597287342" }, { "type": "mintMulti", "inputQtys": [ - "2358643043449536000", - "1582412977463748608" + "34419421023631168241664", + "13453918645169577525248" ], - "expectedQty": "3924413953551802133", + "expectedQty": "47761971428281884829028", "reserves": [ - "1443560461285650650236803", - "2146308933027584467183428" + "2324496864055957843809549", + "2009349622338725563091156" ], - "LPTokenSupply": "3572744236489112827192043" + "LPTokenSupply": "4324511287214579482116370" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "371814572977333952", - "expectedQty": "369623851538730117", + "inputIndex": 0, + "inputQty": "81678365626278952960", + "expectedQty": "81465642779061437355", "reserves": [ - "1443560461285650650236803", - "2146309304842157444517380" + "2324578542421584122762509", + "2009349622338725563091156" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "114155315883118800", - "146825512877153216" + "10691243416228580", + "17518308087258414" ], - "expectedQty": "259761529042276808", - "swapFee": "155950487717996", + "expectedQty": "28153100225997767", "reserves": [ - "1443560347130334767118003", - "2146309158016644567364164" + "2324578553112827538991089", + "2009349639857033650349570" ], - "LPTokenSupply": "3572744346211079884699154" + "LPTokenSupply": "4324592781010458769551492" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "36869113109730654420992", - "outputIndex": 0, - "expectedQty": "36759614711037916783443", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "11201943933531432419328", + "outputIndex": 1, + "expectedQty": "11181695237949342018700", + "swapFee": "8938147428511077862", "reserves": [ - "1406800732419296850334560", - "2183178271126375221785156" + "2335780497046358971410417", + "1998167944619084308330870" ], - "LPTokenSupply": "3572744346211079884699154", + "LPTokenSupply": "4324593674825201620659278", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "488627619153457472", - "615338516074961280" - ], - "expectedQty": "1098841905515336174", - "swapFee": "659700963887534", - "reserves": [ - "1406800243791677696877088", - "2183177655787859146823876" - ], - "LPTokenSupply": "3572743246775443501864198" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "179938026815653238800384", - "expectedQty": "178829475500005146740146", - "reserves": [ - "1406800243791677696877088", - "2363115682603512385624260" - ] - }, { "type": "redeemMasset", - "inputQty": "182632983374863977676", + "inputQty": "216786270166801501388", "expectedQtys": [ - "68444353253825973119", - "114971493126725690796" + "117019392074646839433", + "100105467289433854958" ], - "redemptionFee": "109579790024918386", + "redemptionFee": "130071762100080900", "reserves": [ - "1406731799438423870903969", - "2363000711110385659933464" + "2335663477654284324570984", + "1998067839151794874475912" ], - "LPTokenSupply": "3751390100250052787118506" + "LPTokenSupply": "4324376901562211029165980" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "69315605073852008235008", - "expectedQty": "69435714208402324996354", - "swapFee": "41589363044311204941", + "inputQty": "13961169038514845696", + "expectedQty": "13989710691342508372", + "swapFee": "8376701423108907", "reserves": [ - "1337296085230021545907615", - "2363000711110385659933464" + "2335649487943592982062612", + "1998067839151794874475912" ], - "LPTokenSupply": "3682078654112505210003992" + "LPTokenSupply": "4324362941230842656631174" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4559690569067669749760", - "expectedQty": "4530167768574972712068", + "type": "redeemMasset", + "inputQty": "305025437792850621235", + "expectedQtys": [ + "164649697021829895853", + "140852155275685109979" + ], + "redemptionFee": "183015262675710372", "reserves": [ - "1337296085230021545907615", - "2367560401679453329683224" - ] + "2335484838246571152166759", + "1997926986996519189365933" + ], + "LPTokenSupply": "4324057934094576073580976" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "804223675817078816768", - "expectedQty": "808981284060091329492", - "swapFee": "482534205490247290", + "type": "redeemMasset", + "inputQty": "65140229024043945164", + "expectedQtys": [ + "35162048971726622995", + "30079924051850764403" + ], + "redemptionFee": "39084137414426367", "reserves": [ - "1337296085230021545907615", - "2366751420395393238353732" + "2335449676197599425543764", + "1997896907072467338601530" ], - "LPTokenSupply": "3685804646458683652924021" + "LPTokenSupply": "4323992797773965771078448" }, { "type": "redeemMasset", - "inputQty": "2877608844057", + "inputQty": "105365349698126636646", "expectedQtys": [ - "1043437317451", - "1846679116501" + "56875170254317212943", + "48654752829153319828" ], - "redemptionFee": "1726565306", + "redemptionFee": "63219209818875981", "reserves": [ - "1337296085228978108590164", - "2366751420393546559237231" + "2335392801027345108330821", + "1997848252319638185281702" ], - "LPTokenSupply": "3685804646455806216736494" + "LPTokenSupply": "4323887438746188626329400" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1577850805502282039296", - "expectedQty": "1567629278537848864217", + "type": "redeemBassets", + "inputQtys": [ + "100373626788924899328", + "429243643602832719872" + ], + "expectedQty": "528667008061690024457", + "swapFee": "317390639220546342", "reserves": [ - "1337296085228978108590164", - "2368329271199048841276527" - ] + "2335292427400556183431493", + "1997419008676035352561830" + ], + "LPTokenSupply": "4323358486086551637813234" }, { "type": "redeemMasset", - "inputQty": "57757850837350886", + "inputQty": "374814474124168947302", "expectedQtys": [ - "20934421163636347", - "37074513987648116" + "202337193428590335960", + "173062761465934717546" + ], + "redemptionFee": "224888684474501368", + "reserves": [ + "2335090090207127593095533", + "1997245945914569417844284" ], - "redemptionFee": "34654710502410", + "LPTokenSupply": "4322983694101295916316068" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "7362286735454798848", + "expectedQty": "7377343067903736536", + "swapFee": "4417372041272879", "reserves": [ - "1337296064294556944953817", - "2368329234124534853628411" + "2335082712864059689358997", + "1997245945914569417844284" ], - "LPTokenSupply": "3687372217979958699300066" + "LPTokenSupply": "4322976332256297665644507" }, { "type": "redeemMasset", - "inputQty": "23027783370058055680", + "inputQty": "112787010188764066611", "expectedQtys": [ - "8346455218622964868", - "14781434286209100348" + "60886055647543189075", + "52077139338517252155" ], - "redemptionFee": "13816670022034833", + "redemptionFee": "67672206113258439", "reserves": [ - "1337287717839338321988949", - "2368314452690248644528063" + "2335021826808412146169922", + "1997193868775230900592129" ], - "LPTokenSupply": "3687349191578255643447869" + "LPTokenSupply": "4322863552013329512903739" }, { "type": "mintMulti", "inputQtys": [ - "32863332498973021700096", - "103732738208679751319552" + "501585957175570240", + "416846192727099584" ], - "expectedQty": "135851031374787110605868", + "expectedQty": "916442646754752446", "reserves": [ - "1370151050338311343689045", - "2472047190898928395847615" + "2335022328394369321740162", + "1997194285621423627691713" ], - "LPTokenSupply": "3823200222953042754053737" + "LPTokenSupply": "4322864468455976267656185" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "38287671970260733394944", - "outputIndex": 0, - "expectedQty": "38107418738967831837221", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "2062929912913546706944", + "expectedQty": "2057481591190926346915", "reserves": [ - "1332043631599343511851824", - "2510334862869189129242559" - ], - "LPTokenSupply": "3823200222953042754053737", - "hardLimitError": false, - "insufficientLiquidityError": false + "2337085258307282868447106", + "1997194285621423627691713" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "24823707122351220981760", - "expectedQty": "24778054353938014613849", + "inputIndex": 1, + "inputQty": "204719716541880576", + "expectedQty": "204393552679098467", "reserves": [ - "1356867338721694732833584", - "2510334862869189129242559" + "2337085258307282868447106", + "1997194490341140169572289" ] }, { "type": "mintMulti", "inputQtys": [ - "35066144786329380", - "110336019112377600" + "1506466519024399810560", + "1632143291448883150848" ], - "expectedQty": "144603896550703661", + "expectedQty": "3132028579336696375900", "reserves": [ - "1356867373787839519162964", - "2510334973205208241620159" + "2338591724826307268257666", + "1998826633632589052723137" ], - "LPTokenSupply": "3847978421910877319371247" + "LPTokenSupply": "4328054183020056569477467" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "22961818283244036", - "expectedQty": "23101229261987570", - "swapFee": "13777090969946", + "inputIndex": 0, + "inputQty": "1364088713996437553152", + "expectedQty": "1366880172837412625363", + "swapFee": "818453228397862531", "reserves": [ - "1356867373787839519162964", - "2510334950103978979632589" + "2337224844653469855632303", + "1998826633632589052723137" ], - "LPTokenSupply": "3847978398950436745224205" + "LPTokenSupply": "4326690176151382971710568" }, { - "type": "redeemMasset", - "inputQty": "28375286583640536488345", - "expectedQtys": [ - "9999640251973496950468", - "18500294795149713503199" - ], - "redemptionFee": "17025171950184321893", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2258796061258038116352", + "expectedQty": "2263413292627888248710", + "swapFee": "1355277636754822869", "reserves": [ - "1346867733535866022212496", - "2491834655308829266129390" + "2334961431360841967383593", + "1998826633632589052723137" ], - "LPTokenSupply": "3819604814883991227168049" + "LPTokenSupply": "4324431515617888609076502" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "207155699710127243264", - "expectedQty": "207426155531420511834", - "swapFee": "124293419826076345", + "type": "swap", + "inputIndex": 1, + "inputQty": "197160763373267433029632", + "outputIndex": 0, + "expectedQty": "197245015627133333334335", + "swapFee": "0", "reserves": [ - "1346660307380334601700662", - "2491834655308829266129390" + "2137716415733708634049258", + "2195987397005856485752769" ], - "LPTokenSupply": "3819397671613623082532419" + "LPTokenSupply": "4324431515617888609076502", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "3873839665032732344320", - "expectedQty": "3848123351201001462589", + "inputQty": "740576732314903904256", + "outputIndex": 0, + "expectedQty": "740443127825113661616", + "swapFee": "0", "reserves": [ - "1346660307380334601700662", - "2495708494973861998473710" - ] + "2136975972605883520387642", + "2196727973738171389657025" + ], + "LPTokenSupply": "4324431515617888609076502", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "29611293252176240967680", - "expectedQty": "29553168731058691774997", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4684477647942018048", + "expectedQty": "4692128047569268562", + "swapFee": "2810686588765210", "reserves": [ - "1376271600632510842668342", - "2495708494973861998473710" - ] + "2136975972605883520387642", + "2196723281610123820388463" + ], + "LPTokenSupply": "4324426831421309325934975" }, { "type": "mint", "inputIndex": 0, - "inputQty": "52364439080072151040", - "expectedQty": "52258025652561031555", + "inputQty": "1956304612944700416", + "expectedQty": "1952299641526646377", "reserves": [ - "1376323965071590914819382", - "2495708494973861998473710" + "2136977928910496465088058", + "2196723281610123820388463" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "146541936761078298968064", - "174985080685881471270912" + "21122332363641627607040", + "4520481274635647713280" ], - "expectedQty": "320075225237222393863791", + "expectedQty": "25589714122158047256838", + "swapFee": "15363046301075473638", "reserves": [ - "1522865901832669213787446", - "2670693575659743469744622" + "2115855596546854837481018", + "2192202800335488172675183" ], - "LPTokenSupply": "4172926446958757730665351" + "LPTokenSupply": "4298825242857121837398238" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "12112057293057466302464", - "expectedQty": "12084667668041868562641", + "type": "mintMulti", + "inputQtys": [ + "16432867909206900998144", + "568400737800231452672" + ], + "expectedQty": "16966525465607854960484", "reserves": [ - "1534977959125726680089910", - "2670693575659743469744622" - ] + "2132288464456061738479162", + "2192771201073288404127855" + ], + "LPTokenSupply": "4315791768322729692358722" }, { - "type": "redeemMasset", - "inputQty": "2087203141667605236940", - "expectedQtys": [ - "765084833585219518301", - "1331163837071999869257" - ], - "redemptionFee": "1252321885000563142", + "type": "redeem", + "inputIndex": 0, + "inputQty": "11418501296929500037120", + "expectedQty": "11434978443308279814371", + "swapFee": "6851100778157700022", "reserves": [ - "1534212874292141460571609", - "2669362411822671469875365" + "2120853486012753458664791", + "2192771201073288404127855" ], - "LPTokenSupply": "4182924036717320494047366" + "LPTokenSupply": "4304373952135878008091604" }, { "type": "redeemMasset", - "inputQty": "3349307184087835240038", + "inputQty": "69301069799778572", "expectedQtys": [ - "1227721810529426076164", - "2136101520275785318121" + "34125573347804482", + "35282764675018129" ], - "redemptionFee": "2009584310452701144", + "redemptionFee": "41580641879867", "reserves": [ - "1532985152481612034495445", - "2667226310302395684557244" + "2120853451887180110860309", + "2192771165790523729109726" ], - "LPTokenSupply": "4179574930491663704077442" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2391640534407055", - "expectedQty": "2386174290232954", - "reserves": [ - "1532985154873252568902500", - "2667226310302395684557244" - ] + "LPTokenSupply": "4304373882838966272501018" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "607508396946380426313728", - "118562977220351890554880" + "200088531248407", + "564179731917316" ], - "expectedQty": "724795456007402182669698", - "swapFee": "435138356618412357016", + "expectedQty": "762590528896464", "reserves": [ - "925476757926872142588772", - "2548663333082043794002364" + "2120853452087268642108716", + "2192771166354703461027042" ], - "LPTokenSupply": "3454387852349479240519382" + "LPTokenSupply": "4304373883601556801397482" }, { "type": "mintMulti", "inputQtys": [ - "313223464238135296", - "22151734044702793728" + "112535258124817547264", + "28950683337498083328" ], - "expectedQty": "22280283261126117342", + "expectedQty": "141191987807429612780", "reserves": [ - "925477071150336380724068", - "2548685484816088496796092" + "2120965987345393459655980", + "2192800117038040959110370" ], - "LPTokenSupply": "3454410132632740366636724" + "LPTokenSupply": "4304515075589364231010262" }, { - "type": "redeemBassets", - "inputQtys": [ - "64741385420990111023104", - "51537812237390933131264" - ], - "expectedQty": "115973108356528241993008", - "swapFee": "69625640398155838699", + "type": "redeem", + "inputIndex": 1, + "inputQty": "65877110955988606976", + "expectedQty": "65986235738021941625", + "swapFee": "39526266573593164", "reserves": [ - "860735685729346269700964", - "2497147672578697563664828" + "2120965987345393459655980", + "2192734130802302937168745" ], - "LPTokenSupply": "3338374361199853784388885" + "LPTokenSupply": "4304449202431034899762602" }, { - "type": "redeemBassets", - "inputQtys": [ - "64841232574163795968", - "50624138370202705920" - ], - "expectedQty": "115182345385653375342", - "swapFee": "69150897770054057", + "type": "swap", + "inputIndex": 0, + "inputQty": "764431784771413999616", + "outputIndex": 1, + "expectedQty": "763986870622314471075", + "swapFee": "610301963853348051", "reserves": [ - "860670844496772105904996", - "2497097048440327360958908" + "2121730419130164873655596", + "2191970143931680622697670" ], - "LPTokenSupply": "3338259116618660137964890" + "LPTokenSupply": "4304449263461231285097407", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "18146455721962091315", - "expectedQtys": [ - "4675716878272791692", - "13565835174658804918" + "type": "mintMulti", + "inputQtys": [ + "354455598107514241024", + "1022160814103528865792" ], - "redemptionFee": "10887873433177254", + "expectedQty": "1373594285832002119479", "reserves": [ - "860666168779893833113304", - "2497083482605152702153990" + "2122084874728272387896620", + "2192992304745784151563462" ], - "LPTokenSupply": "3338240971251725519191300" + "LPTokenSupply": "4305822857747063287216886" }, { "type": "swap", "inputIndex": 0, - "inputQty": "122786340639605490974720", + "inputQty": "5787548321768929230848", "outputIndex": 1, - "expectedQty": "123847354830930341165512", - "swapFee": "98373942294046344840", + "expectedQty": "5784074848048596624666", + "swapFee": "4620598968823487251", "reserves": [ - "983452509419499324088024", - "2373236127774222360988478" + "2127872423050041317127468", + "2187208229897735554938796" ], - "LPTokenSupply": "3338250808645954923825784", + "LPTokenSupply": "4305823319806960169565611", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "482990622550033065574", + "inputQty": "31489073590425825679769", "expectedQtys": [ - "142204216513498997850", - "343162665120321517284" + "15552084585920808636508", + "15985755080952877802662" ], - "redemptionFee": "289794373530019839", + "redemptionFee": "18893444154255495407", "reserves": [ - "983310305202985825090174", - "2372892965109102039471194" + "2112320338464120508490960", + "2171222474816782677136134" ], - "LPTokenSupply": "3337767847002842243762193" + "LPTokenSupply": "4274336135560949769435382" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "141504666431889866752", - "expectedQty": "140398704831077677118", + "inputQty": "105474630597571495591936", + "expectedQty": "105639280728988471330964", + "swapFee": "63284778358542897355", "reserves": [ - "983310305202985825090174", - "2373034469775533929337946" - ] + "2112320338464120508490960", + "2065583194087794205805170" + ], + "LPTokenSupply": "4168867833441214128133181" }, { "type": "redeemBassets", "inputQtys": [ - "1325996800951293440", - "6736203528979312640" + "251844160893187361079296", + "147684716274591398363136" ], - "expectedQty": "8009700529138244931", - "swapFee": "4808705540807431", + "expectedQty": "398666123585786819463262", + "swapFee": "239343280119543817968", "reserves": [ - "983308979206184873796734", - "2373027733572004950025306" + "1860476177570933147411664", + "1917898477813202807442034" ], - "LPTokenSupply": "3337900231679309196467691" + "LPTokenSupply": "3769986300903319719233746" }, { "type": "redeemBassets", "inputQtys": [ - "69896043850930856", - "37325056427356536" + "2283175939181404487680", + "1125039185466074464256" ], - "expectedQty": "106937245009022117", - "swapFee": "64200867525928", + "expectedQty": "3400771403986512663410", + "swapFee": "2041687855104970580", "reserves": [ - "983308909310141022865878", - "2373027696246948522668770" + "1858193001631751742923984", + "1916773438627736732977778" ], - "LPTokenSupply": "3337900124684283406672237" + "LPTokenSupply": "3766583691980263612096813" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "21794523735395984736256", - "expectedQty": "21794560977822725243410", - "reserves": [ - "1005103433045537007602134", - "2373027696246948522668770" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "6603694494078682005504", - "1201986544820693237760" - ], - "expectedQty": "7795873283427994673042", - "swapFee": "4680332169358411850", + "inputQty": "986595760515136356352", + "expectedQty": "988094155652091069488", + "swapFee": "591957456309081813", "reserves": [ - "998499738551458325596630", - "2371825709702127829431010" + "1857204907476099651854496", + "1916773438627736732977778" ], - "LPTokenSupply": "3351894600079725714671939" + "LPTokenSupply": "3765597155415494106648642" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "29375020881831165689856", - "14770776196048010346496" + "8825397777689667960832", + "1007774870103698046976" ], - "expectedQty": "44032644949125043720935", - "swapFee": "26435448238418077078", + "expectedQty": "9812111676908413842982", "reserves": [ - "969124717669627159906774", - "2357054933506079819084514" + "1866030305253789319815328", + "1917781213497840431024754" ], - "LPTokenSupply": "3307838163227186094681632" + "LPTokenSupply": "3775409267092402520491624" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "473761059137799104", - "3203410293490767872" + "19494276315986", + "67546774830862" ], - "expectedQty": "3652088628368877093", - "swapFee": "2192568718252277", + "expectedQty": "86843532921022", "reserves": [ - "969124243908568022107670", - "2357051730095786328316642" + "1866030305273283596131314", + "1917781213565387205855616" ], - "LPTokenSupply": "3307834509165245879377488" + "LPTokenSupply": "3775409267179246053412646" }, { "type": "mintMulti", "inputQtys": [ - "2483623628359083753472", - "2392273004793513377792" + "1296893573253167104", + "1398833241665135872" ], - "expectedQty": "4857545312529715285514", + "expectedQty": "2689734858188175944", "reserves": [ - "971607867536927105861142", - "2359444003100579841694434" + "1866031602166856849298418", + "1917782612398628870991488" ], - "LPTokenSupply": "3312692054477775594663002" + "LPTokenSupply": "3775411956914104241588590" }, { "type": "mint", "inputIndex": 0, - "inputQty": "125679395187685744", - "expectedQty": "125700529373185794", + "inputQty": "1734488178914695839744", + "expectedQty": "1730792867130553549884", "reserves": [ - "971607993216322293546886", - "2359444003100579841694434" + "1867766090345771545138162", + "1917782612398628870991488" ] }, { - "type": "redeemMasset", - "inputQty": "424776662662057779", - "expectedQtys": [ - "124511650494355042", - "302362958236443311" - ], - "redemptionFee": "254865997597234", + "type": "mint", + "inputIndex": 1, + "inputQty": "143299690813680326279168", + "expectedQty": "142952252386152516471680", "reserves": [ - "971607868704671799191844", - "2359443700737621605251123" - ], - "LPTokenSupply": "3312691755427128905550740" + "1867766090345771545138162", + "2061082303212309197270656" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "1319363512594596888576", - "expectedQty": "1329003864558817592864", - "swapFee": "791618107556758133", + "inputQty": "6123936644973237108736", + "expectedQty": "6108361494047820780051", "reserves": [ - "971607868704671799191844", - "2358114696873062787658259" - ], - "LPTokenSupply": "3311372471076345064337977" + "1867766090345771545138162", + "2067206239857282434379392" + ] }, { - "type": "redeemMasset", - "inputQty": "2486852103800837950668", - "expectedQtys": [ - "729243039376156213918", - "1769889668594269003731" + "type": "redeemBassets", + "inputQtys": [ + "191127510270703", + "223343290213251" ], - "redemptionFee": "1492111262280502770", + "expectedQty": "413543391712794", + "swapFee": "248275000027", "reserves": [ - "970878625665295642977926", - "2356344807204468518654528" + "1867766090154644034867459", + "2067206239633939144166141" ], - "LPTokenSupply": "3308885768183670454437586" + "LPTokenSupply": "3926203363247668293177385" }, { "type": "mintMulti", "inputQtys": [ - "439934276045531185152", - "116173128467754352640" + "43461018234141519380480", + "10651891852828022407168" ], - "expectedQty": "555265905456325889474", + "expectedQty": "54003227629528110438244", "reserves": [ - "971318559941341174163078", - "2356460980332936273007168" + "1911227108388785554247939", + "2077858131486767166573309" ], - "LPTokenSupply": "3309441034089126780327060" + "LPTokenSupply": "3980206590877196403615629" }, { "type": "mintMulti", "inputQtys": [ - "2751618140280093933568", - "3161528080335191408640" + "107904371023486547656704", + "21112896499364113940480" ], - "expectedQty": "5888759612324432671162", + "expectedQty": "128748774951476444024344", "reserves": [ - "974070178081621268096646", - "2359622508413271464415808" + "2019131479412272101904643", + "2098971027986131280513789" ], - "LPTokenSupply": "3315329793701451212998222" + "LPTokenSupply": "4108955365828672847639973" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15400788453896717598720", - "expectedQty": "15512966214996180677618", - "swapFee": "9240473072338030559", + "type": "redeemBassets", + "inputQtys": [ + "4619612752081367072768", + "165615407738310046515200" + ], + "expectedQty": "169857503773161906356103", + "swapFee": "101975687676503045641", "reserves": [ - "974070178081621268096646", - "2344109542198275283738190" + "2014511866660190734831875", + "1933355620247821233998589" ], - "LPTokenSupply": "3299929929294861729202557" + "LPTokenSupply": "3939006083936602088542792" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "81019292901425840", + "expectedQty": "80848677396773281", + "reserves": [ + "2014511866660190734831875", + "1933355701267114135424429" + ] }, { "type": "mintMulti", "inputQtys": [ - "213885850412483342237696", - "126579650487348665253888" + "119266865197497142214656", + "184251721141818392313856" ], - "expectedQty": "339379186788991960717242", + "expectedQty": "302843041899635673103729", "reserves": [ - "1187956028494104610334342", - "2470689192685623948992078" + "2133778731857687877046531", + "2117607422408932527738285" ], - "LPTokenSupply": "3639309116083853689919799" + "LPTokenSupply": "4241849206684915158419802" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1621999778904958304256", - "299094793065538650112" + "98553354726568783511552", + "49834145057545627107328" ], - "expectedQty": "1916919987877166030240", + "expectedQty": "148055285576660492252526", + "swapFee": "88886503247945062388", "reserves": [ - "1189578028273009568638598", - "2470988287478689487642190" + "2035225377131119093534979", + "2067773277351386900630957" ], - "LPTokenSupply": "3641226036071730855950039" + "LPTokenSupply": "4093713923255331515611125" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2675096852295945551872", - "expectedQty": "2692949119566897572899", - "swapFee": "1605058111377567331", + "type": "mintMulti", + "inputQtys": [ + "294298777578023354368", + "15555638082411167744000" + ], + "expectedQty": "15813092536448107639239", "reserves": [ - "1189578028273009568638598", - "2468295338359122590069291" + "2035519675908697116889347", + "2083328915433798068374957" ], - "LPTokenSupply": "3638551099725246048154900" + "LPTokenSupply": "4109527015791779623250364" }, { "type": "redeemBassets", "inputQtys": [ - "21362254496089304465408", - "3053394305892874190848" + "171878847236449504", + "363816223111078592" ], - "expectedQty": "24368121952165056811742", - "swapFee": "14629650961876159782", + "expectedQty": "534468463812215516", + "swapFee": "320873602448798", "reserves": [ - "1168215773776920264173190", - "2465241944053229715878443" + "2035519504029849880439843", + "2083328551617574957296365" ], - "LPTokenSupply": "3614169811087215302799353" + "LPTokenSupply": "4109526481034529568830928" }, { - "type": "redeemMasset", - "inputQty": "27999174108144229312102", - "expectedQtys": [ - "9044802294422147936499", - "19086907138557667510285" + "type": "mint", + "inputIndex": 0, + "inputQty": "395503240613654115123200", + "expectedQty": "394521169763430105267142", + "reserves": [ + "2431022744643503995563043", + "2083328551617574957296365" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1181673034651737784320", + "1717284830150906085376" ], - "redemptionFee": "16799504464886537587", + "expectedQty": "2892732461095998049505", + "swapFee": "1736681485548928186", "reserves": [ - "1159170971482498116236691", - "2446155036914672048368158" + "2429841071608852257778723", + "2081611266787424051210989" ], - "LPTokenSupply": "3586172316929517562141009" + "LPTokenSupply": "4501153355323526682013196" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "159913171800683392", - "expectedQty": "160991768587432046", - "swapFee": "95947903080410", + "type": "mint", + "inputIndex": 0, + "inputQty": "249034008764499853312", + "expectedQty": "248346851894320462229", "reserves": [ - "1159170971482498116236691", - "2446154875922903460936112" - ], - "LPTokenSupply": "3586172157025940551765658" + "2430090105617616757632035", + "2081611266787424051210989" + ] }, { "type": "redeemBassets", "inputQtys": [ - "3503439985903315976192", - "2219200005317939429376" + "45426166872140668928", + "55801956638076051456" ], - "expectedQty": "5702519213370218564006", - "swapFee": "3423565667422584689", + "expectedQty": "101006428942808529170", + "swapFee": "60640241510591472", "reserves": [ - "1155667531496594800260499", - "2443935675917585521506736" + "2430044679450744616963107", + "2081555464830785975159533" ], - "LPTokenSupply": "3580466556603469652875430" + "LPTokenSupply": "4501300641170260834413929" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "19694053021977337856", - "outputIndex": 1, - "expectedQty": "19801062063685165434", - "swapFee": "15737729154116670", + "inputIndex": 1, + "inputQty": "2029604132258962472960", + "outputIndex": 0, + "expectedQty": "2031693926628571148259", + "swapFee": "0", "reserves": [ - "1155687225549616777598355", - "2443915874855521836341302" + "2428012985524116045814848", + "2083585068963044937632493" ], - "LPTokenSupply": "3580466558177242568287097", + "LPTokenSupply": "4501300641170260834413929", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "22768377895516748382208", - "expectedQty": "22778186750048717373222", - "swapFee": "13661026737310049029", + "inputQty": "23920238931111403520", + "outputIndex": 1, + "expectedQty": "23876663785528487680", + "swapFee": "19083493590030167", "reserves": [ - "1132909038799568060225133", - "2443915874855521836341302" + "2428036905763047157218368", + "2083561192299259409144813" ], - "LPTokenSupply": "3557699546384399550909791" + "LPTokenSupply": "4501300643078610193416945", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "3076464301828347494", - "expectedQtys": [ - "979077338359400959", - "2112069520129547980" + "type": "mintMulti", + "inputQtys": [ + "87188704849156456448", + "1063825523274595958784" ], - "redemptionFee": "1845878581097008", + "expectedQty": "1148929580861380813534", "reserves": [ - "1132908059722229700824174", - "2443913762786001706793322" + "2428124094467896313674816", + "2084625017822534005103597" ], - "LPTokenSupply": "3557696470104685580671997" + "LPTokenSupply": "4502449572659471574230479" }, { "type": "mintMulti", "inputQtys": [ - "6187250185593480544256", - "22425997304631027302400" + "2983436022455856529408", + "232878016503742005248" ], - "expectedQty": "28441685352380350704557", + "expectedQty": "3207693733096199119091", "reserves": [ - "1139095309907823181368430", - "2466339760090632734095722" + "2431107530490352170204224", + "2084857895839037747108845" ], - "LPTokenSupply": "3586138155457065931376554" + "LPTokenSupply": "4505657266392567773349570" }, { "type": "redeemMasset", - "inputQty": "10077806357464200773632", + "inputQty": "35635260409022303436", "expectedQtys": [ - "3199177976262576859726", - "6926777569737485861296" + "19216102096181141573", + "16479255516267393843" ], - "redemptionFee": "6046683814478520464", + "redemptionFee": "21381156245413382", "reserves": [ - "1135896131931560604508704", - "2459412982520895248234426" + "2431088314388255989062651", + "2084841416583521479715002" ], - "LPTokenSupply": "3576060953767983178454968" + "LPTokenSupply": "4505621633270274375587472" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3445288132463178022912", - "expectedQty": "3468883709035610957656", - "swapFee": "2067172879477906813", + "type": "redeemMasset", + "inputQty": "340762380053743", + "expectedQtys": [ + "183754086218459", + "157582975142185" + ], + "redemptionFee": "204457428032", "reserves": [ - "1135896131931560604508704", - "2455944098811859637276770" + "2431088314204501902844192", + "2084841416425938504572817" ], - "LPTokenSupply": "3572615872352807948222737" + "LPTokenSupply": "4505621632929532441276532" }, { - "type": "redeemMasset", - "inputQty": "2372568362633698213888", - "expectedQtys": [ - "753894156930319669819", - "1630009869558493678588" + "type": "redeemBassets", + "inputQtys": [ + "217685240860062560", + "168423159652302336" ], - "redemptionFee": "1423541017580218928", + "expectedQty": "385216989854172358", + "swapFee": "231268955285674", "reserves": [ - "1135142237774630284838885", - "2454314088942301143598182" + "2431088096519261042781632", + "2084841248002778852270481" ], - "LPTokenSupply": "3570243446344276008030741" + "LPTokenSupply": "4505621247504400527347066" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "738956129195031920640", - "expectedQty": "739201328036618041451", - "swapFee": "443373677517019152", + "inputIndex": 1, + "inputQty": "30829791537348162355200", + "expectedQty": "30863866201944058546028", + "swapFee": "18497874922408897413", "reserves": [ - "1134403036446593666797434", - "2454314088942301143598182" + "2431088096519261042781632", + "2053977381800834793724453" ], - "LPTokenSupply": "3569504534552448727812016" + "LPTokenSupply": "4474793305754544605881607" }, { - "type": "mintMulti", - "inputQtys": [ - "380054297026736160768", - "144088135258280837120" - ], - "expectedQty": "522722971298631912263", + "type": "mint", + "inputIndex": 1, + "inputQty": "18442064776281691521024", + "expectedQty": "18410786432726011460546", "reserves": [ - "1134783090743620402958202", - "2454458177077559424435302" - ], - "LPTokenSupply": "3570027257523747359724279" + "2431088096519261042781632", + "2072419446577116485245477" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "159151108057178344259584", - "expectedQty": "157953769933572602412784", + "inputIndex": 0, + "inputQty": "80422436576460832", + "expectedQty": "80198994180367030", "reserves": [ - "1134783090743620402958202", - "2613609285134737768694886" + "2431088176941697619242464", + "2072419446577116485245477" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2018356315887154757632", - "8912268762604706463744" + "8728875052921022", + "9902692775928848" ], - "expectedQty": "10861697634298547095529", + "expectedQty": "18590357532696075", + "swapFee": "11160911066257", "reserves": [ - "1136801447059507557715834", - "2622521553897342475158630" + "2431088168212822566321442", + "2072419436674423709316629" ], - "LPTokenSupply": "3738842725091618509232592" + "LPTokenSupply": "4493204153785862445053475" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "9464599714364617916416", - "expectedQty": "9531814676353538464752", - "swapFee": "5678759828618770749", + "inputIndex": 0, + "inputQty": "24571963564690975490048", + "expectedQty": "24625245332423652345304", + "swapFee": "14743178138814585294", "reserves": [ - "1136801447059507557715834", - "2612989739220988936693878" + "2406462922880398913976138", + "2072419436674423709316629" ], - "LPTokenSupply": "3729378693253236753193250" + "LPTokenSupply": "4468633664538985351021956" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "191358077343667912704", - "expectedQty": "192715841077118507537", - "swapFee": "114814846406200747", + "type": "redeemBassets", + "inputQtys": [ + "31512146367147526848512", + "22926039595616850411520" + ], + "expectedQty": "54311379632433227619707", + "swapFee": "32606391614428593728", "reserves": [ - "1136801447059507557715834", - "2612797023379911818186341" + "2374950776513251387127626", + "2049493397078806858905109" ], - "LPTokenSupply": "3729187346657377725900620" + "LPTokenSupply": "4414292939154099137667892" }, { "type": "redeemMasset", - "inputQty": "3955577503994308512972", + "inputQty": "97385663613466116096", "expectedQtys": [ - "1205090489966032199755", - "2769750912290901851301" + "52363399736199168651", + "45187648969085711091" ], - "redemptionFee": "2373346502396585107", + "redemptionFee": "58431398168079669", "reserves": [ - "1135596356569541525516079", - "2610027272467620916335040" + "2374898413113515187958975", + "2049448209429837773194018" ], - "LPTokenSupply": "3725232006488033657046158" + "LPTokenSupply": "4414195559333625488359762" }, { - "type": "mintMulti", - "inputQtys": [ - "17405351369648818356224", - "14210433134735524888576" + "type": "redeemMasset", + "inputQty": "1090681632329371851161", + "expectedQtys": [ + "586449759234314520228", + "506084134945218445317" + ], + "redemptionFee": "654408979397623110", + "reserves": [ + "2374311963354280873438747", + "2048942125294892554748701" ], - "expectedQty": "31499834336049704344161", + "LPTokenSupply": "4413104943142194056270912" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "363085470132313757057024", + "outputIndex": 1, + "expectedQty": "362000048184771456710409", + "swapFee": "289603501600696534565", + "reserves": [ + "2737397433486594630495771", + "1686942077110121098038292" + ], + "LPTokenSupply": "4413133903492354125924368", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1365241241551405312", + "expectedQty": "1359950805252518770", + "reserves": [ + "2737398798727836181901083", + "1686942077110121098038292" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "52520453145363807731712", + "expectedQty": "52503061222433532364007", + "swapFee": "31512271887218284639", "reserves": [ - "1153001707939190343872303", - "2624237705602356441223616" + "2737398798727836181901083", + "1634439015887687565674285" ], - "LPTokenSupply": "3756731840824083361390319" + "LPTokenSupply": "4360617961524984292539889" }, { "type": "mint", "inputIndex": 0, - "inputQty": "15639395239061767585792", - "expectedQty": "15630857615871670561055", + "inputQty": "45180292544911277817856", + "expectedQty": "44998930094855994882967", "reserves": [ - "1168641103178252111458095", - "2624237705602356441223616" + "2782579091272747459718939", + "1634439015887687565674285" ] }, { "type": "redeemMasset", - "inputQty": "1670769242580692710195", + "inputQty": "105666494191760384", "expectedQtys": [ - "517277433012018176561", - "1161570425920816538083" + "66698709712730546", + "39177672902728014" ], - "redemptionFee": "1002461545548415626", + "redemptionFee": "63399896515056", "reserves": [ - "1168123825745240093281534", - "2623076135176435624685533" + "2782579024574037746988393", + "1634438976710014662946271" ], - "LPTokenSupply": "3770692029443528894082741" + "LPTokenSupply": "4405616785959686085313977" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "355096654896925931208704", - "outputIndex": 1, - "expectedQty": "356475424005747367751114", - "swapFee": "283599467655782807955", + "inputQty": "805078347813906304", + "expectedQty": "807860395301011917", + "swapFee": "483047008688343", "reserves": [ - "1523220480642166024490238", - "2266600711170688256934419" + "2782578216713642445976476", + "1634438976710014662946271" ], - "LPTokenSupply": "3770720389390294472363536", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4405615980929642972276507" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "36632490447661139230720", + "expectedQty": "36483622901869869835585", + "reserves": [ + "2819210707161303585207196", + "1634438976710014662946271" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "92278743284419643047936", + "expectedQty": "92262416689628399263617", + "reserves": [ + "2819210707161303585207196", + "1726717719994434305994207" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "1970917437633231323136", - "6856413981598107566080" + "6032044808450903040", + "15653600466728048640" ], - "expectedQty": "8778444808916247857105", - "swapFee": "5270229022763406758", + "expectedQty": "21656975916510802251", "reserves": [ - "1521249563204532793167102", - "2259744297189090149368339" + "2819216739206112036110236", + "1726733373594901034042847" ], - "LPTokenSupply": "3761937201375257737440347" + "LPTokenSupply": "4534383677497057752177960" }, { "type": "swap", "inputIndex": 0, - "inputQty": "96588606643649806336", + "inputQty": "196397137337253789696", "outputIndex": 1, - "expectedQty": "96781364059220309576", - "swapFee": "77009854105536924", + "expectedQty": "195538288260281291948", + "swapFee": "156504641382130412", "reserves": [ - "1521346151811176442973438", - "2259647515825030929058763" + "2819413136343449289899932", + "1726537835306640752750899" ], - "LPTokenSupply": "3761937209076243147994039", + "LPTokenSupply": "4534383693147521890391001", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3481274991748159897600", - "2333573026008902139904" + "15721364747598549745664", + "23638848648555159093248" ], - "expectedQty": "5788720336986291655615", - "swapFee": "3475317392627351404", + "expectedQty": "39290827886973146127635", "reserves": [ - "1517864876819428283075838", - "2257313942799022026918859" + "2835134501091047839645596", + "1750176683955195911844147" ], - "LPTokenSupply": "3756145360953603491722159" + "LPTokenSupply": "4573674521034495036518636" }, { "type": "mintMulti", "inputQtys": [ - "12661727721463184621568", - "1358422989981869932544" + "45420226909106618368", + "278370919974049480704" ], - "expectedQty": "13968850938557646680083", + "expectedQty": "323511960141465817556", "reserves": [ - "1530526604540891467697406", - "2258672365789003896851403" + "2835179921317956946263964", + "1750455054875169961324851" ], - "LPTokenSupply": "3770114211892161138402242" + "LPTokenSupply": "4573998032994636502336192" }, { - "type": "redeemBassets", - "inputQtys": [ - "4960183046040154112", - "558426379934518080" + "type": "redeemMasset", + "inputQty": "285896473777539737", + "expectedQtys": [ + "177105804467104488", + "109346058903049479" ], - "expectedQty": "5498268284506044746", - "swapFee": "3300941535625001", + "redemptionFee": "171537884266523", "reserves": [ - "1530521644357845427543294", - "2258671807362623962333323" + "2835179744212152479159476", + "1750454945529111058275372" ], - "LPTokenSupply": "3770108710653029250294994" + "LPTokenSupply": "4573997747115316513223107" }, { - "type": "redeemBassets", - "inputQtys": [ - "228524012682997184", - "285381219664061120" + "type": "redeemMasset", + "inputQty": "545442268718232268", + "expectedQtys": [ + "337888014212208486", + "208613844226347916" ], - "expectedQty": "511374060372457234", - "swapFee": "307008641408319", + "redemptionFee": "327265361230939", "reserves": [ - "1530521415833832744546110", - "2258671521981404298272203" + "2835179406324138266950990", + "1750454736915266831927456" ], - "LPTokenSupply": "3770108199002661100570271" + "LPTokenSupply": "4573997201705774331113932" }, { "type": "mintMulti", "inputQtys": [ - "1858326524204800540672", - "2942329380102870663168" + "27504393300991031640064", + "16740091847814129123328" ], - "expectedQty": "4776256408556893283531", + "expectedQty": "44131683280615730506281", "reserves": [ - "1532379742358037545086782", - "2261613851361507168935371" + "2862683799625129298591054", + "1767194828763080961050784" ], - "LPTokenSupply": "3774884455411217993853802" + "LPTokenSupply": "4618128884986390061620213" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "700939636600189", - "outputIndex": 0, - "expectedQty": "699019527613354", - "swapFee": "0", + "inputQty": "43819075465213476864", + "expectedQty": "43808999533017852970", + "swapFee": "26291445279128086", "reserves": [ - "1532379741659018017473428", - "2261613852062446805535560" + "2862683799625129298591054", + "1767151019763547943197814" ], - "LPTokenSupply": "3774884455411217993853802", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4618085068540069376056157" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "30443777282872676352", + "expectedQty": "30543898642210551059", + "swapFee": "18266266369723605", + "reserves": [ + "2862653255726487088039995", + "1767151019763547943197814" + ], + "LPTokenSupply": "4618054626589413140352165" + }, + { + "type": "redeemBassets", "inputQtys": [ - "182272909179617837056", - "14565573502322954240" + "1665787443746022883328", + "11680997357633576894464" ], - "expectedQty": "196127587663114925420", + "expectedQty": "13336177135062736140341", + "swapFee": "8006510187149931643", "reserves": [ - "1532562014568197635310484", - "2261628417635949128489800" + "2860987468282741065156667", + "1755470022405914366303350" ], - "LPTokenSupply": "3775080582998881108779222" + "LPTokenSupply": "4604711243595181969273344" }, { - "type": "redeemMasset", - "inputQty": "42173554694358827008", - "expectedQtys": [ - "17110842105470744171", - "25250767269158574521" + "type": "mint", + "inputIndex": 1, + "inputQty": "21389972655524061184", + "expectedQty": "21382715572205864460", + "reserves": [ + "2860987468282741065156667", + "1755491412378569890364534" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "48874323164747305844736", + "38301049147446322528256" ], - "redemptionFee": "25304132816615296", + "expectedQty": "86971998743477109696391", + "swapFee": "52214527962863984208", "reserves": [ - "1532544903726092164566313", - "2261603166868679969915279" + "2812113145117993759311931", + "1717190363231123567836278" ], - "LPTokenSupply": "3775038411974600031613743" + "LPTokenSupply": "4517713634492110487855624" }, { - "type": "mint", + "type": "mintMulti", + "inputQtys": [ + "276248244725790769152", + "35465504993432465408" + ], + "expectedQty": "310618299371222191279", + "reserves": [ + "2812389393362719550081083", + "1717225828736117000301686" + ], + "LPTokenSupply": "4518024252791481710046903" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "71807555904186733297664", - "expectedQty": "71555068930647479072632", + "inputQty": "3913785994417805312", + "expectedQty": "3926846927657580064", + "swapFee": "2348271596650683", "reserves": [ - "1604352459630278897863977", - "2261603166868679969915279" - ] + "2812385466515791892501019", + "1717225828736117000301686" + ], + "LPTokenSupply": "4518020339240314451906659" }, { "type": "redeemMasset", - "inputQty": "570451985499144806", + "inputQty": "659761361262731696537", "expectedQtys": [ - "237783619961227150", - "335195788622245105" + "410443030926575873245", + "250614072047899086728" ], - "redemptionFee": "342271191299486", + "redemptionFee": "395856816757639017", "reserves": [ - "1604352221846658936636827", - "2261602831672891347670174" + "2811975023484865316627774", + "1716975214664069101214958" ], - "LPTokenSupply": "3846592910487489130671517" + "LPTokenSupply": "4517360617464733395974023" }, { - "type": "redeemMasset", - "inputQty": "184223640581811", - "expectedQtys": [ - "76790624376838", - "108249230544081" + "type": "mintMulti", + "inputQtys": [ + "2949946672515043557376", + "13186117058008035885056" + ], + "expectedQty": "16120021637523722576988", + "reserves": [ + "2814924970157380360185150", + "1730161331722077137100014" + ], + "LPTokenSupply": "4533480639102257118551011" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "6127079753039637118976", + "2853167054090325721088" ], - "redemptionFee": "110534184349", + "expectedQty": "8955314359668049446665", + "swapFee": "5376414464479517378", "reserves": [ - "1604352221769868312259989", - "2261602831564642117126093" + "2808797890404340723066174", + "1727308164667986811378926" ], - "LPTokenSupply": "3846592910303276543508140" + "LPTokenSupply": "4524520485969571037538704" }, { "type": "redeemMasset", - "inputQty": "7863547287932216934", + "inputQty": "417073568832665958", "expectedQtys": [ - "3277791624082977216", - "4620595600962912318" + "258761669594594740", + "159128980451320803" ], - "redemptionFee": "4718128372759330", + "redemptionFee": "250244141299599", "reserves": [ - "1604348943978244229282773", - "2261598210969041154213775" + "2808797631642671128471434", + "1727308005539006360058123" ], - "LPTokenSupply": "3846585047227801448567139" + "LPTokenSupply": "4524520068921026619002705" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "474021001567615424", + "expectedQty": "473849012599698600", + "reserves": [ + "2808797631642671128471434", + "1727308479560007927673547" + ] }, { "type": "redeemBassets", "inputQtys": [ - "105450277484422311706624", - "34864316173752519884800" + "16167033559306629120", + "2946805008855443968" + ], + "expectedQty": "19049691906209607151", + "swapFee": "11436677150015773", + "reserves": [ + "2808781464609111821842314", + "1727305532754999072229579" + ], + "LPTokenSupply": "4524501482785123574079957" + }, + { + "type": "mintMulti", + "inputQtys": [ + "223386453902415167488", + "4567814178368065634304" ], - "expectedQty": "139733515915584942404344", - "swapFee": "83890443815640349652", + "expectedQty": "4788641158372447017267", "reserves": [ - "1498898666493821917576149", - "2226733894795288634328975" + "2809004851063014237009802", + "1731873346933367137863883" ], - "LPTokenSupply": "3706776029912782429848107" + "LPTokenSupply": "4529290123943496021097224" }, { "type": "mintMulti", "inputQtys": [ - "805659073771392991232", - "2064553893404850782208" + "989089221906558208", + "121319394545248352" ], - "expectedQty": "2854714374202676547592", + "expectedQty": "1106512258460163153", "reserves": [ - "1499704325567593310567381", - "2228798448688693485111183" + "2809005840152236143568010", + "1731873468252761683112235" ], - "LPTokenSupply": "3709630744286985106395699" + "LPTokenSupply": "4529291230455754481260377" }, { "type": "redeemMasset", - "inputQty": "19237283913741555", + "inputQty": "743127695685052163686", "expectedQtys": [ - "7772452231067918", - "11551096559353343" + "460601330536647605118", + "283980621327262332028" ], - "redemptionFee": "11542370348244", + "redemptionFee": "445876617411031298", "reserves": [ - "1499704317795141079499463", - "2228798437137596925757840" + "2808545238821699495962892", + "1731589487631434420780207" ], - "LPTokenSupply": "3709630725050855429688968" + "LPTokenSupply": "4528548147347731170199820" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "1558031955708905259008", + "expectedQty": "1557441333762337495345", + "reserves": [ + "2808545238821699495962892", + "1733147519587143326039215" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "5442781391276519456768", - "11732289806195838976" + "30623604959325313826816", + "64728661450258049400832" ], - "expectedQty": "5435906098517233887501", + "expectedQty": "95211786618280153294798", + "swapFee": "57161368792243438039", "reserves": [ - "1505147099186417598956231", - "2228810169427403121596816" + "2777921633862374182136076", + "1668418858136885276638383" ], - "LPTokenSupply": "3715066631149372663576469" + "LPTokenSupply": "4434842356831300335306130" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "765437529294596472832", - "expectedQty": "769727169430312778859", - "swapFee": "459262517576757883", + "type": "redeemMasset", + "inputQty": "14934491025130645094", + "expectedQtys": [ + "9349138090137850026", + "5615089391569435981" + ], + "redemptionFee": "8960694615078387", "reserves": [ - "1505147099186417598956231", - "2228040442257972808817957" + "2777912284724284044286050", + "1668413243047493707202402" ], - "LPTokenSupply": "3714301239546329824779425" + "LPTokenSupply": "4434827423236344666168874" }, { - "type": "mintMulti", - "inputQtys": [ - "170613787255004463104", - "306258237428876247040" + "type": "redeemMasset", + "inputQty": "61841924888797223321", + "expectedQtys": [ + "38713652552590149135", + "23251407526674874003" ], - "expectedQty": "474399897711414291592", + "redemptionFee": "37105154933278333", "reserves": [ - "1505317712973672603419335", - "2228346700495401685064997" + "2777873571071731454136915", + "1668389991639967032328399" ], - "LPTokenSupply": "3714775639444041239071017" + "LPTokenSupply": "4434765585021971362273386" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "21296004435478343680", - "expectedQty": "21223264676877352938", + "inputQty": "48870545305654586769408", + "outputIndex": 1, + "expectedQty": "48638114080145306031621", + "swapFee": "38939228749026604318", "reserves": [ - "1505339008978108081763015", - "2228346700495401685064997" - ] + "2826744116377386040906323", + "1619751877559821726296778" + ], + "LPTokenSupply": "4434769478944846264933817", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1208864206036096000", - "1024311716179982464" + "type": "redeemMasset", + "inputQty": "24146757495666", + "expectedQtys": [ + "15382028531928", + "8814051986848" ], - "expectedQty": "2222727653420771142", + "redemptionFee": "14488054497", "reserves": [ - "1505340217842314117859015", - "2228347724807117865047461" + "2826744116362004012374395", + "1619751877551007674309930" ], - "LPTokenSupply": "3714799085436371537195097" + "LPTokenSupply": "4434769478920700956243600" }, { "type": "redeem", + "inputIndex": 1, + "inputQty": "41427241433025610776576", + "expectedQty": "41398443728033973460262", + "swapFee": "24856344859815366465", + "reserves": [ + "2826744116362004012374395", + "1578353433822973700849668" + ], + "LPTokenSupply": "4393344723122161327003670" + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "159643636453401834815488", - "expectedQty": "160050769588287987031867", - "swapFee": "95786181872041100889", + "inputQty": "645549226359351168", + "expectedQty": "642804049567698238", + "reserves": [ + "2826744761911230371725563", + "1578353433822973700849668" + ] + }, + { + "type": "redeemMasset", + "inputQty": "324615975914050525593", + "expectedQtys": [ + "208737503942779797589", + "116551575704686578725" + ], + "redemptionFee": "194769585548430315", "reserves": [ - "1345289448254026130827148", - "2228347724807117865047461" + "2826536024407287591927974", + "1578236882247269014270943" ], - "LPTokenSupply": "3555165027601156906489697" + "LPTokenSupply": "4393020769427255399019346" }, { "type": "redeemBassets", "inputQtys": [ - "9435391549549580386304", - "42006866615084622282752" + "24714178823464325120", + "77199231802182418432" ], - "expectedQty": "51140226374595057397333", - "swapFee": "30702557359172537961", + "expectedQty": "101821417148755226816", + "swapFee": "61129528006056770", "reserves": [ - "1335854056704476550440844", - "2186340858192033242764709" + "2826511310228464127602854", + "1578159683015466831852511" ], - "LPTokenSupply": "3503997168924938593808198" + "LPTokenSupply": "4392918892993531438341436" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "19788957303234793472", - "expectedQty": "19907007162974700555", - "swapFee": "11873374381940876", + "type": "redeemMasset", + "inputQty": "30659689026562918", + "expectedQtys": [ + "19715356449016538", + "11007909493064072" + ], + "redemptionFee": "18395813415937", "reserves": [ - "1335854056704476550440844", - "2186320951184870268064154" + "2826511290513107678586316", + "1578159672007557338788439" ], - "LPTokenSupply": "3503977381154972797208813" + "LPTokenSupply": "4392918862335681993120111" }, { "type": "mint", "inputIndex": 1, - "inputQty": "31784821300534821519360", - "expectedQty": "31576616508782070263199", + "inputQty": "837826562653976", + "expectedQty": "837968887285339", "reserves": [ - "1335854056704476550440844", - "2218105772485405089583514" + "2826511290513107678586316", + "1578159672845383901442415" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "56850885576824731992064", - "expectedQty": "56972881183838528703693", - "swapFee": "34110531346094839195", + "type": "redeemMasset", + "inputQty": "1682487028935068693299", + "expectedQtys": [ + "1081903716027931500675", + "604072172033281152927" + ], + "redemptionFee": "1009492217361041215", "reserves": [ - "1278881175520638021737151", - "2218105772485405089583514" + "2825429386797079747085641", + "1577555600673350620289488" ], - "LPTokenSupply": "3478706523140064744963867" + "LPTokenSupply": "4391236477093937547816272" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "10701007524410511360", + "expectedQty": "10655497516695683473", + "reserves": [ + "2825440087804604157597001", + "1577555600673350620289488" + ] }, { "type": "redeemMasset", - "inputQty": "225976238724373282816", + "inputQty": "2655412200273383050444", "expectedQtys": [ - "83026078182691833009", - "144001355879588050987" + "1707534608972159581289", + "953384500118941275249" ], - "redemptionFee": "135585743234623969", + "redemptionFee": "1593247320164029830", "reserves": [ - "1278798149442455329904142", - "2217961771129525501532527" + "2823732553195631998015712", + "1576602216173231679014239" ], - "LPTokenSupply": "3478480560459914695143447" + "LPTokenSupply": "4388591879715912876852284" }, { "type": "redeemMasset", - "inputQty": "1672332970956334458470", + "inputQty": "21011482511416181653504", "expectedQtys": [ - "614432976001128150189", - "1065679405530897352293" + "13511215054686268716176", + "7543848858598218911139" ], - "redemptionFee": "1003399782573800675", + "redemptionFee": "12606889506849708992", "reserves": [ - "1278183716466454201753953", - "2216896091723994604180234" + "2810221338140945729299536", + "1569058367314633460103100" ], - "LPTokenSupply": "3476808327828936618065044" + "LPTokenSupply": "4367581657893447380169679" }, { "type": "mint", "inputIndex": 1, - "inputQty": "55256771677685454733312", - "expectedQty": "54882574238510381520754", + "inputQty": "34401884950144131006464", + "expectedQty": "34405325703519961275157", "reserves": [ - "1278183716466454201753953", - "2272152863401680058913546" + "2810221338140945729299536", + "1603460252264777591109564" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "13129953595716842553344", - "outputIndex": 1, - "expectedQty": "13175758794555288702904", - "swapFee": "10477640050508284662", + "type": "redeem", + "inputIndex": 1, + "inputQty": "94064106687285166080", + "expectedQty": "94004410503959365601", + "swapFee": "56438464012371099", "reserves": [ - "1291313670062171044307297", - "2258977104607124770210642" + "2810221338140945729299536", + "1603366247854273631743963" ], - "LPTokenSupply": "3531691949831452050414264", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4401892925134126457515865" }, { "type": "mint", "inputIndex": 1, - "inputQty": "7516097924920072192", - "expectedQty": "7465276366179484739", + "inputQty": "189591068243248054272", + "expectedQty": "189597602427264789905", "reserves": [ - "1291313670062171044307297", - "2258984620705049690282834" + "2810221338140945729299536", + "1603555838922516879798235" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "9238817700416079872", - "outputIndex": 0, - "expectedQty": "9200031238579699521", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "6463099958089273573376", + "8164165121067715657728" + ], + "expectedQty": "14600559410039322472619", + "swapFee": "8765595003025408728", "reserves": [ - "1291304470030932464607776", - "2258993859522750106362706" + "2803758238182856455726160", + "1595391673801449164140507" ], - "LPTokenSupply": "3531699415107818229899003", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4387474074291011676965294" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "337860430364659220480", - "outputIndex": 1, - "expectedQty": "339012750923727541630", - "swapFee": "269592333520318364", + "type": "redeemBassets", + "inputQtys": [ + "240460002487785", + "401133582200864" + ], + "expectedQty": "640605216137942", + "swapFee": "384593886014", "reserves": [ - "1291642330461297123828256", - "2258654846771826378821076" + "2803758237942396453238375", + "1595391673400315581939643" ], - "LPTokenSupply": "3531699442067051581930839", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4387474073650060326329938" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "36591696387231024", + "expectedQty": "36593495000164448", + "reserves": [ + "2803758237942396453238375", + "1595391709992011969170667" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "15374569372765323788288", - "expectedQty": "15334411775007849229973", + "inputQty": "10434042249029185699840", + "expectedQty": "10390232876498380181708", "reserves": [ - "1307016899834062447616544", - "2258654846771826378821076" + "2814192280191425638938215", + "1595391709992011969170667" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "333223468199196537913344", - "expectedQty": "333585861056091728935509", - "swapFee": "199934080919517922748", + "inputQty": "518731849150035264", + "expectedQty": "520609808826577567", + "swapFee": "311239109490021", "reserves": [ - "973431038777970718681035", - "2258654846771826378821076" + "2814191759581616812360648", + "1595391709992011969170667" ], - "LPTokenSupply": "3213830379050954845039742" + "LPTokenSupply": "4397863824419328467589832" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "612228797581346734080", - "expectedQty": "612162124743346881616", - "swapFee": "367337278548808040", + "inputQty": "30233890122372571201536", + "outputIndex": 1, + "expectedQty": "30076222219781665751208", + "swapFee": "24084958218698782053", "reserves": [ - "972818876653227371799419", - "2258654846771826378821076" + "2844425649703989383562184", + "1565315487772230303419459" ], - "LPTokenSupply": "3213218186987101353186466" + "LPTokenSupply": "4397866232915150337468037", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4840561195675706982400", - "expectedQty": "4876020181838140235136", - "swapFee": "2904336717405424189", + "inputIndex": 0, + "inputQty": "82403239663201201160192", + "expectedQty": "82706283029442690465838", + "swapFee": "49441943797920720696", "reserves": [ - "972818876653227371799419", - "2253778826589988238585940" + "2761719366674546693096346", + "1565315487772230303419459" ], - "LPTokenSupply": "3208377916225097386746484" + "LPTokenSupply": "4315467937446328928379914" }, { - "type": "redeemMasset", - "inputQty": "1413098351305564356608", - "expectedQtys": [ - "428211380747699594006", - "992059021874889035275" + "type": "redeemBassets", + "inputQtys": [ + "8211196606540530319360", + "5817581580002353217536" ], - "redemptionFee": "847859010783338613", + "expectedQty": "13994456888525364111839", + "swapFee": "8401715162212545994", "reserves": [ - "972390665272479672205413", - "2252786767568113349550665" + "2753508170068006162776986", + "1559497906192227950201923" ], - "LPTokenSupply": "3206964902659692900723737" + "LPTokenSupply": "4301465919014157572976679" }, { - "type": "mintMulti", - "inputQtys": [ - "4016778836059059200", - "6451086074282435584" - ], - "expectedQty": "10415083169165003668", + "type": "redeem", + "inputIndex": 0, + "inputQty": "539764525311668715520", + "expectedQty": "541729440274910066387", + "swapFee": "323858715187001229", "reserves": [ - "972394682051315731264613", - "2252793218654187631986249" + "2752966440627731252710599", + "1559497906192227950201923" ], - "LPTokenSupply": "3206975317742862065727405" + "LPTokenSupply": "4300926186874717422961281" }, { - "type": "redeemBassets", - "inputQtys": [ - "7909738489894195429376", - "3325435510143628345344" + "type": "redeemMasset", + "inputQty": "94099475190998132326", + "expectedQtys": [ + "60195700743066996181", + "34099605387554790794" ], - "expectedQty": "11205194794708745156788", - "swapFee": "6727153168726482983", + "redemptionFee": "56459685114598879", "reserves": [ - "964484943561421535835237", - "2249467783144044003640905" + "2752906244926988185714418", + "1559463806586840395411129" ], - "LPTokenSupply": "3195764068510301466735931" + "LPTokenSupply": "4300832093045494936288842" }, { - "type": "redeemBassets", - "inputQtys": [ - "14083725108186043121664", - "80338364534422876717056" - ], - "expectedQty": "93783712120254068163872", - "swapFee": "56304009677959216428", + "type": "mint", + "inputIndex": 1, + "inputQty": "1636643840619272470528", + "expectedQty": "1636735388218275195461", "reserves": [ - "950401218453235492713573", - "2169129418609621126923849" - ], - "LPTokenSupply": "3101929682781337235277272" + "2752906244926988185714418", + "1561100450427459667881657" + ] }, { "type": "redeemMasset", - "inputQty": "85140912248124027699", + "inputQty": "53883208958070624", "expectedQtys": [ - "26070699272680213874", - "59501944713550137163" + "34456129049489058", + "19539161087765499" ], - "redemptionFee": "51084547348874416", + "redemptionFee": "32329925374842", "reserves": [ - "950375147753962812499699", - "2169069916664907576786686" + "2752906210470859136225360", + "1561100430888298580116158" ], - "LPTokenSupply": "3101844546977543846137014" + "LPTokenSupply": "4302468774553737245951163" }, { - "type": "mintMulti", - "inputQtys": [ - "3182472368966529449984", - "3239554990771493928960" - ], - "expectedQty": "6394547062592391775681", + "type": "redeem", + "inputIndex": 0, + "inputQty": "16390881147088408", + "expectedQty": "16450485384103398", + "swapFee": "9834528688253", "reserves": [ - "953557620122929341949683", - "2172309471655679070715646" + "2752906194020373752121962", + "1561100430888298580116158" ], - "LPTokenSupply": "3108239094040136237912695" + "LPTokenSupply": "4302468758163839551731580" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "322237905016104192", - "346265364421051072" + "55901803400752046080", + "34765221723920453632" ], - "expectedQty": "665576672825699612", - "swapFee": "399585755148508", + "expectedQty": "90432893472145212180", "reserves": [ - "953557297885024325845491", - "2172309125390314649664574" + "2752962095823774504168042", + "1561135196110022500569790" ], - "LPTokenSupply": "3108238428103836232579424" + "LPTokenSupply": "4302559191057311696943760" }, { - "type": "redeemBassets", - "inputQtys": [ - "56874689938359964401664", - "90881873296273046503424" - ], - "expectedQty": "147008908822500136881948", - "swapFee": "88258300273664280697", + "type": "swap", + "inputIndex": 1, + "inputQty": "115058993320847687680", + "outputIndex": 0, + "expectedQty": "115552755420934312266", + "swapFee": "0", "reserves": [ - "896682607946664361443827", - "2081427252094041603161150" + "2752846543068353569855776", + "1561250255103343348257470" ], - "LPTokenSupply": "2961150086811089797844847" + "LPTokenSupply": "4302559191057311696943760", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "8555626774256153735987", + "inputQty": "13952744691159112928460", "expectedQtys": [ - "2589223272967558661093", - "6010242458534855775907" + "8921834058707255919600", + "5059931776880210964550" ], - "redemptionFee": "5133376064553692241", + "redemptionFee": "8371646814695467757", "reserves": [ - "894093384673696802782734", - "2075417009635506747385243" + "2743924709009646313936176", + "1556190323326463137292920" ], - "LPTokenSupply": "2952594973374440099478084" + "LPTokenSupply": "4288607283530834053562075" }, { - "type": "redeemBassets", - "inputQtys": [ - "5428082014376387", - "2702008266296873" - ], - "expectedQty": "8105773791994818", - "swapFee": "4866384105660", + "type": "mint", + "inputIndex": 1, + "inputQty": "282295130785770733568", + "expectedQty": "282309172386503759926", "reserves": [ - "894093379245614788406347", - "2075417006933498481088370" - ], - "LPTokenSupply": "2952594965264286561788171" + "2743924709009646313936176", + "1556472618457248908026488" + ] }, { "type": "mintMulti", "inputQtys": [ - "70967101179907736076288", - "47568351689719890837504" + "418043385211982184448", + "677925767371615895552" ], - "expectedQty": "118107964732012206825684", + "expectedQty": "1094237227950238298296", "reserves": [ - "965060480425522524482635", - "2122985358623218371925874" + "2744342752394858296120624", + "1557150544224620523922040" ], - "LPTokenSupply": "3070702929996298768613855" + "LPTokenSupply": "4289983829931170795620297" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2711187868361385050112", - "expectedQty": "2690298190650090604212", + "inputQty": "26331864385779654459392", + "expectedQty": "26331786491207544563591", "reserves": [ - "965060480425522524482635", - "2125696546491579756975986" + "2744342752394858296120624", + "1583482408610400178381432" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "89908311038939561984", - "343538802381526269952" + "3631122478166383788032", + "1830280054059048108032" ], - "expectedQty": "430708007114965928127", - "swapFee": "258579952240323751", + "expectedQty": "5446187733178405338592", "reserves": [ - "964970572114483584920651", - "2125353007689198230706034" + "2747973874873024679908656", + "1585312688664459226489464" ], - "LPTokenSupply": "3072962287457876876998563" + "LPTokenSupply": "4321761804155556745522480" }, { - "type": "redeemBassets", - "inputQtys": [ - "947534143865365594112", - "1860484224484332011520" + "type": "redeem", + "inputIndex": 1, + "inputQty": "45839997091208716288", + "expectedQty": "45814858035141780596", + "swapFee": "27503998254725229", + "reserves": [ + "2747973874873024679908656", + "1585266873806424084708868" ], - "expectedQty": "2792716267944339875198", - "swapFee": "1676635742211931083", + "LPTokenSupply": "4321715966908865362278714" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "778148555849188245504", + "expectedQty": "780933241081498709789", + "swapFee": "466889133509512947", "reserves": [ - "964023037970618219326539", - "2123492523464713898694514" + "2747192941631943181198867", + "1585266873806424084708868" ], - "LPTokenSupply": "3070168062217764546385389" + "LPTokenSupply": "4320937865041929524984504" }, { - "type": "mintMulti", - "inputQtys": [ - "114612808931832366104576", - "171413477851757797179392" + "type": "redeemMasset", + "inputQty": "162035024916129277542", + "expectedQtys": [ + "102957831321738151542", + "59411786088946600203" ], - "expectedQty": "284583108912728402392492", + "redemptionFee": "97221014949677566", "reserves": [ - "1078635846902450585431115", - "2294906001316471695873906" + "2747089983800621443047325", + "1585207462020335138108665" ], - "LPTokenSupply": "3354751171130492948777881" + "LPTokenSupply": "4320775839739114890674718" }, { "type": "redeemBassets", "inputQtys": [ - "593412855073276166144", - "759648926621769138176" + "916505925947462144", + "208779055433356800" ], - "expectedQty": "1346532678608192291157", - "swapFee": "808404649954888307", + "expectedQty": "1121458123767897624", + "swapFee": "673278841565677", "reserves": [ - "1078042434047377309264971", - "2294146352389849926735730" + "2747089067294695495585181", + "1585207253241279704751865" ], - "LPTokenSupply": "3353403910887699797087246" + "LPTokenSupply": "4320774717675040165367983" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "11557375654134", - "expectedQty": "11469840228944", + "type": "redeemMasset", + "inputQty": "5887873157089381371084", + "expectedQtys": [ + "3741182618511655993175", + "2158848758553439934112" + ], + "redemptionFee": "3532723894253628822", "reserves": [ - "1078042434047377309264971", - "2294146352401407302389864" - ] + "2743347884676183839592006", + "1583048404482726264817753" + ], + "LPTokenSupply": "4314887197790340209359781" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "25236399530057625600", - "25073709025840328704" + "450085093580277874688", + "272565413075879657472" ], - "expectedQty": "50087215054646963485", + "expectedQty": "720761582944385022748", + "swapFee": "432716579714459689", "reserves": [ - "1078067670446907366890571", - "2294171426110433142718568" + "2742897799582603561717318", + "1582775839069650385160281" ], - "LPTokenSupply": "3353453998114224284279675" + "LPTokenSupply": "4314166046762474081323311" }, { - "type": "mintMulti", - "inputQtys": [ - "626535422235234176", - "4057373049541489152" - ], - "expectedQty": "4652359198118883043", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3810945655868111716352", + "expectedQty": "3824576265220989593149", + "swapFee": "2286567393520867029", "reserves": [ - "1078068296982329602124747", - "2294175483483482684207720" + "2739073223317382572124169", + "1582775839069650385160281" ], - "LPTokenSupply": "3353458650473422403162718" + "LPTokenSupply": "4310355329763345321693661" }, { "type": "redeemBassets", "inputQtys": [ - "22134176677610844585984", - "156218764226536019066880" + "551508641286498025472", + "420231274889369878528" ], - "expectedQty": "177151068462869355827684", - "swapFee": "106354453749971596454", + "expectedQty": "969419310009480003612", + "swapFee": "582000786477574546", "reserves": [ - "1055934120304718757538763", - "2137956719256946665140840" + "2738521714676096074098697", + "1582355607794761015281753" ], - "LPTokenSupply": "3176211863002178072898224" + "LPTokenSupply": "4309385386652628011872956" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "85942726053451988992", - "8281618117561647104" + "58110343564800351535104", + "43265825302106421067776" ], - "expectedQty": "94014367290196423409", + "expectedQty": "101131887757199689139523", + "swapFee": "60715561991514722317", "reserves": [ - "1056020063030772209527755", - "2137965000875064226787944" + "2680411371111295722563593", + "1539089782492654594213977" ], - "LPTokenSupply": "3176305877369468269321633" + "LPTokenSupply": "4208198854889635959483346" }, { "type": "redeemMasset", - "inputQty": "341450565948282", + "inputQty": "676110115245486558412", "expectedQtys": [ - "113453273991399", - "229691780980144" + "430389806075419866754", + "247129436980801893595" ], - "redemptionFee": "204870339568", + "redemptionFee": "405666069147291935", "reserves": [ - "1056020062917318935536356", - "2137965000645372445807800" + "2679980981305220302696839", + "1538842653055673792320382" ], - "LPTokenSupply": "3176305877028038190407307" + "LPTokenSupply": "4207522785340997387654127" }, { - "type": "redeemMasset", - "inputQty": "34942131334702278325043", - "expectedQtys": [ - "11610170242799217272261", - "23505365572379812984162" - ], - "redemptionFee": "20965278800821366995", + "type": "mint", + "inputIndex": 1, + "inputQty": "3654063882510998700032", + "expectedQty": "3653897410281710968483", "reserves": [ - "1044409892674519718264095", - "2114459635072992632823638" - ], - "LPTokenSupply": "3141365842221215994218963" + "2679980981305220302696839", + "1542496716938184791020414" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "143286592781458384", - "outputIndex": 0, - "expectedQty": "142470423185185598", - "swapFee": "0", + "inputQty": "664248857965426638848", + "expectedQty": "663884372389358599415", + "swapFee": "398549314779255983", "reserves": [ - "1044409750204096533078497", - "2114459778359585414282022" + "2679980981305220302696839", + "1541832832565795432420999" ], - "LPTokenSupply": "3141365842221215994218963", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4210512473748245149909360" }, { - "type": "redeemMasset", - "inputQty": "58824558447997006643", - "expectedQtys": [ - "19545663674017339565", - "39571173739020881780" + "type": "mintMulti", + "inputQtys": [ + "365374382192777494528", + "234392416281000214528" ], - "redemptionFee": "35294735068798203", + "expectedQty": "598224820364524290628", "reserves": [ - "1044390204540422515738932", - "2114420207185846393400242" + "2680346355687413080191367", + "1542067224982076432635527" ], - "LPTokenSupply": "3141307021192241504092140" + "LPTokenSupply": "4211110698568609674199988" }, { "type": "redeemMasset", - "inputQty": "16696024745308978570854", + "inputQty": "1736238498098841020006", "expectedQtys": [ - "5547596042787268370308", - "11231385667137053943142" + "1104442184397031837743", + "635411946233151333616" ], - "redemptionFee": "10017614847185387142", + "redemptionFee": "1041743098859304612", "reserves": [ - "1038842608497635247368624", - "2103188821518709339457100" + "2679241913503016048353624", + "1541431813035843281301911" ], - "LPTokenSupply": "3124611998208417244060000" + "LPTokenSupply": "4209374564244820719110443" }, { "type": "redeemBassets", "inputQtys": [ - "5182839757846959095808", - "12298787186361740820480" + "1083054860125199794176", + "1982728930345516793856" ], - "expectedQty": "17381316609867432999705", - "swapFee": "10435050996518370822", + "expectedQty": "3061151207824504932328", + "swapFee": "1837793400735144045", "reserves": [ - "1033659768739788288272816", - "2090890034332347598636620" + "2678158858642890848559448", + "1539449084105497764508055" ], - "LPTokenSupply": "3107221290052652944526554" + "LPTokenSupply": "4206311759022935552548473" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1473098254440476180480", - "expectedQty": "1462160344140155353918", + "type": "redeemMasset", + "inputQty": "45352219079164947", + "expectedQtys": [ + "28858434175074957", + "16588295319438244" + ], + "redemptionFee": "27211331447498", "reserves": [ - "1033659768739788288272816", - "2092363132586788074817100" - ] + "2678158829784456673484491", + "1539449067517202445069811" + ], + "LPTokenSupply": "4206311713673437606528275" }, { "type": "mintMulti", "inputQtys": [ - "203357314178278326272", - "128137769280723075072" + "3470123904051425312768", + "572677249275981135872" ], - "expectedQty": "330189147913417892124", + "expectedQty": "4028225490732766431152", "reserves": [ - "1033863126053966566599088", - "2092491270356068797892172" + "2681628953688508098797259", + "1540021744766478426205683" ], - "LPTokenSupply": "3109013639544706517772596" + "LPTokenSupply": "4210339939164170372959427" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "11635340895235013083136", - "expectedQty": "11715233907123074482347", - "swapFee": "6981204537141007849", + "inputQty": "3052963307394516480", + "expectedQty": "3052840812540711472", "reserves": [ - "1033863126053966566599088", - "2080776036448945723409825" - ], - "LPTokenSupply": "3097378996769925218790244" + "2681628953688508098797259", + "1540024797729785820722163" + ] }, { "type": "mintMulti", "inputQtys": [ - "55343630984772132864", - "120738237558491496448" - ], - "expectedQty": "175088642112300644337", - "reserves": [ - "1033918469684951338731952", - "2080896774686504214906273" + "9110953455602296160256", + "7321385272933079842816" ], - "LPTokenSupply": "3097554085412037519434581" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "1988424017528483328", - "outputIndex": 0, - "expectedQty": "1977229129231319208", - "swapFee": "0", + "expectedQty": "16393817709350253412049", "reserves": [ - "1033916492455822107412744", - "2080898763110521743389601" + "2690739907144110394957515", + "1547346183002718900564979" ], - "LPTokenSupply": "3097554085412037519434581", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4226736809714333167082948" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "57721455479461", - "expectedQty": "57790100476887", - "swapFee": "34632873287", + "inputIndex": 1, + "inputQty": "62310310417748841201664", + "expectedQty": "62268234504970551173575", + "swapFee": "37386186250649304720", "reserves": [ - "1033916492398032006935857", - "2080898763110521743389601" + "2690739907144110394957515", + "1485077948497748349391404" ], - "LPTokenSupply": "3097554085354319527242448" + "LPTokenSupply": "4164430237915209390811756" }, { "type": "mint", "inputIndex": 1, - "inputQty": "15248130386737407983616", - "expectedQty": "15134978994967533960633", + "inputQty": "3831280388277622276096", + "expectedQty": "3831996567250352942066", "reserves": [ - "1033916492398032006935857", - "2096146893497259151373217" + "2690739907144110394957515", + "1488909228886025971667500" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "44250021140638403133440", - "expectedQty": "44552920209604322061675", - "swapFee": "26550012684383041880", + "type": "redeemMasset", + "inputQty": "4913788394697649658265", + "expectedQtys": [ + "3170096493364671653323", + "1754159111736508562224" + ], + "redemptionFee": "2948273036818589794", "reserves": [ - "1033916492398032006935857", - "2051593973287654829311542" + "2687569810650745723304192", + "1487155069774289463105276" ], - "LPTokenSupply": "3068441698209917096373829" + "LPTokenSupply": "4163348740915065775954536" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2822959807857842688", - "expectedQty": "2842191706696961636", - "swapFee": "1693775884714705", + "type": "redeemBassets", + "inputQtys": [ + "20455064235532255232", + "8501275268798598144" + ], + "expectedQty": "28869253826410521587", + "swapFee": "17331951466726348", "reserves": [ - "1033916492398032006935857", - "2051591131095948132349906" + "2687549355586510191048960", + "1487146568499020664507132" ], - "LPTokenSupply": "3068438875419486827002611" + "LPTokenSupply": "4163319856062483045379234" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "85586775061990438076416", - "expectedQty": "86163122290989950884029", - "swapFee": "51352065037194262845", + "inputQty": "7525075012721495040", + "expectedQty": "7526415618927761119", "reserves": [ - "1033916492398032006935857", - "1965428008804958181465877" - ], - "LPTokenSupply": "2982857235564000108352479" + "2687549355586510191048960", + "1487154093574033386002172" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2118408614341826314240", - "13425891893685480587264" - ], - "expectedQty": "15442716680386092875872", - "swapFee": "9271192723865975310", - "reserves": [ - "1031798083783690180621617", - "1952002116911272700878613" + "61704393377733031231488", + "21168812715795032309760" ], - "LPTokenSupply": "2967406174810162536098827" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1955467326814791663616", - "expectedQty": "1968479565446308136834", - "swapFee": "1173280396088874998", + "expectedQty": "82610069166410597828444", + "swapFee": "49595798979233899036", "reserves": [ - "1031798083783690180621617", - "1950033637345826392741779" + "2625844962208777159817472", + "1465985280858238353692412" ], - "LPTokenSupply": "2965450824811387353322710" + "LPTokenSupply": "4080672677092610064802775" }, { "type": "mintMulti", "inputQtys": [ - "3340189939572153516032", - "4726947818965664006144" + "22164034732186572685312", + "5449057912005234524160" ], - "expectedQty": "8025531911926858991485", + "expectedQty": "27518040366014483616180", "reserves": [ - "1035138273723262334137649", - "1954760585164792056747923" + "2648008996940963732502784", + "1471434338770243588216572" ], - "LPTokenSupply": "2973476356723314212314195" + "LPTokenSupply": "4108190717458624548418955" }, { "type": "redeemMasset", - "inputQty": "24321191334624886784000", + "inputQty": "11559038202366276088627", "expectedQtys": [ - "8461708625501001915347", - "15979135275120099934267" + "7446117816185533422945", + "4137626971026700259755" ], - "redemptionFee": "14592714800774932070", + "redemptionFee": "6935422921419765653", "reserves": [ - "1026676565097761332222302", - "1938781449889671956813656" + "2640562879124778199079839", + "1467296711799216887956817" ], - "LPTokenSupply": "2949156624660169403023402" + "LPTokenSupply": "4096632372798550414306893" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2334449650085351424", - "expectedQty": "2329152352016248387", + "type": "redeemBassets", + "inputQtys": [ + "112072260212212563968", + "99463516622585544704" + ], + "expectedQty": "211064450981170858591", + "swapFee": "126714699408347523", "reserves": [ - "1026678899547411417573726", - "1938781449889671956813656" - ] + "2640450806864565986515871", + "1467197248282594302412113" + ], + "LPTokenSupply": "4096421194304339775935530" }, { - "type": "redeemBassets", - "inputQtys": [ - "1074492796373092401152", - "1265184908188936044544" + "type": "redeem", + "inputIndex": 0, + "inputQty": "3014374666490237952", + "expectedQty": "3025665327167879208", + "swapFee": "1808624799894142", + "reserves": [ + "2640447781199238818636663", + "1467197248282594302412113" ], - "expectedQty": "2328122562340685247117", - "swapFee": "1397712164703233088", + "LPTokenSupply": "4096418180110535765686992" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "19666626079423383732224", + "expectedQty": "19651253046522151612958", + "swapFee": "11799975647654030239", "reserves": [ - "1025604406751038325172574", - "1937516264981483020769112" + "2640447781199238818636663", + "1447545995236072150799155" ], - "LPTokenSupply": "2946829573309232501114891" + "LPTokenSupply": "4076752734028677147357791" }, { "type": "mint", "inputIndex": 0, - "inputQty": "7786138813037831", - "expectedQty": "7768487893773070", + "inputQty": "445719888116568188518400", + "expectedQty": "443639264748441176547005", "reserves": [ - "1025604414537177138210405", - "1937516264981483020769112" + "3086167669315807007155063", + "1447545995236072150799155" ] }, + { + "type": "redeemMasset", + "inputQty": "6555434971932542566", + "expectedQtys": [ + "4472849427940971708", + "2097959660806543014" + ], + "redemptionFee": "3933260983159525", + "reserves": [ + "3086163196466379066183355", + "1447543897276411344256141" + ], + "LPTokenSupply": "4520385443735472489678182" + }, { "type": "mint", "inputIndex": 1, - "inputQty": "11045005144764459253760", - "expectedQty": "10965278062903419296850", + "inputQty": "67446367771950833664", + "expectedQty": "67537687612747379897", "reserves": [ - "1025604414537177138210405", - "1948561270126247480022872" + "3086163196466379066183355", + "1447611343644183295089805" ] }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "121776403578393184", - "expectedQty": "120896140795986811", + "inputQty": "1783616950792414035968", + "outputIndex": 0, + "expectedQty": "1794899492022936750448", + "swapFee": "0", "reserves": [ - "1025604414537177138210405", - "1948561391902651058416056" - ] + "3084368296974356129432907", + "1449394960594975709125773" + ], + "LPTokenSupply": "4520452981423085237058079", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "76033350055548731392", + "outputIndex": 1, + "expectedQty": "75495761101621041146", + "swapFee": "60525916843930130", + "reserves": [ + "3084444330324411678164299", + "1449319464833874088084627" + ], + "LPTokenSupply": "4520452987475676921451092", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "26189624926053", - "expectedQty": "26364487294083", - "swapFee": "15713774955", + "inputIndex": 0, + "inputQty": "67774244983214718976", + "expectedQty": "68070174616947488007", + "swapFee": "40664546989928831", "reserves": [ - "1025604414537177138210405", - "1948561391876286571121973" + "3084376260149794730676292", + "1449319464833874088084627" ], - "LPTokenSupply": "2957794980010576556623064" + "LPTokenSupply": "4520385217297148405724999" }, { "type": "redeemMasset", - "inputQty": "30057578374054828", + "inputQty": "3332756481588496590438", "expectedQtys": [ - "10416100158360270", - "19789706766869200" + "2272661906860889179088", + "1067902506304464142901" ], - "redemptionFee": "18034547024432", + "redemptionFee": "1999653888953097954", "reserves": [ - "1025604404121076979850135", - "1948561372086579804252773" + "3082103598242933841497204", + "1448251562327569623941726" ], - "LPTokenSupply": "2957794949954801637270679" + "LPTokenSupply": "4517052660780948804444356" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2868660098920842752", - "57789598416643883008" + "16497127845648205824", + "25243587738636697600" ], - "expectedQty": "60234129941711294823", + "expectedQty": "41692933461394954993", + "swapFee": "25030778543963351", "reserves": [ - "1025607272781175900692887", - "1948619161684996448135781" + "3082087101115088193291380", + "1448226318739830987244126" ], - "LPTokenSupply": "2957855184084743348565502" + "LPTokenSupply": "4517010945319786719922346" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "22528890283391897829376", - "expectedQty": "22563935977969279999594", - "swapFee": "13517334170035138697", + "type": "redeemBassets", + "inputQtys": [ + "2447172971904907608064", + "2186847113404508798976" + ], + "expectedQty": "4624849453888303336042", + "swapFee": "2776575617703604164", "reserves": [ - "1003043336803206620693293", - "1948619161684996448135781" + "3079639928143183285683316", + "1446039471626426478445150" ], - "LPTokenSupply": "2935327645534768454249995" + "LPTokenSupply": "4512383596947842483342555" }, { - "type": "redeemBassets", + "type": "mintMulti", + "inputQtys": [ + "735003495703962496", + "57037231791547520" + ], + "expectedQty": "788480205829577512", + "reserves": [ + "3079640663146678989645812", + "1446039528663658269992670" + ], + "LPTokenSupply": "4512384385428048312920067" + }, + { + "type": "mintMulti", "inputQtys": [ - "72013649803004663037952", - "31136441674718932631552" + "1319493844367882059776", + "1274721310113871429632" ], - "expectedQty": "102784462667890237188424", - "swapFee": "61707702222067382742", + "expectedQty": "2589397988279940461510", "reserves": [ - "931029687000201957655341", - "1917482720010277515504229" + "3080960156991046871705588", + "1447314249973772141422302" ], - "LPTokenSupply": "2832487645934878356417102" + "LPTokenSupply": "4514973783416328253381577" }, { "type": "mintMulti", "inputQtys": [ - "1495976383812633856", - "1108997806142659712" + "766674622984092160", + "751484503024350208" ], - "expectedQty": "2594109948609260152", + "expectedQty": "1515373977059129621", "reserves": [ - "931031182976585770289197", - "1917483829008083658163941" + "3080960923665669855797748", + "1447315001458275165772510" ], - "LPTokenSupply": "2832490240044826965677254" + "LPTokenSupply": "4514975298790305312511198" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "10644436224872724561920", + "expectedQty": "10658386408933054337489", + "reserves": [ + "3080960923665669855797748", + "1457959437683147890334430" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "24041465690221", - "expectedQty": "24067160336867", - "swapFee": "14424879414", + "inputQty": "275137573472586858496", + "expectedQty": "276331600126237006697", + "swapFee": "165082544083552115", "reserves": [ - "931031182952518609952330", - "1917483829008083658163941" + "3080684592065543618791051", + "1457959437683147890334430" ], - "LPTokenSupply": "2832490240020786942474974" + "LPTokenSupply": "4525358564134020188345402" }, { "type": "redeemMasset", - "inputQty": "3072287853551261476454", + "inputQty": "8760568684206258585", "expectedQtys": [ - "1009246039684397498628", - "2078569435717789737376" + "5960269324857290544", + "2820746705355732468" + ], + "redemptionFee": "5256341210523755", + "reserves": [ + "3080678631796218761500507", + "1457956616936442534601962" ], - "redemptionFee": "1843372712130756885", + "LPTokenSupply": "4525349804090970103139192" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "36023579897291591680", + "outputIndex": 1, + "expectedQty": "35771934738797234611", + "swapFee": "28677124578899177", "reserves": [ - "930021936912834212453702", - "1915405259572365868426565" + "3080714655376116053092187", + "1457920845001703737367351" ], - "LPTokenSupply": "2829418136504506894074208" + "LPTokenSupply": "4525349806958682561029109", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "8988768563527482867712", - "7715508961964836519936" + "223887193216595527729152", + "288502714219657886171136" ], - "expectedQty": "16630935132942017816085", + "expectedQty": "511579750754009952940415", "reserves": [ - "939010705476361695321414", - "1923120768534330704946501" + "3304601848592711580821339", + "1746423559221361623538487" ], - "LPTokenSupply": "2846049071637448911890293" + "LPTokenSupply": "5036929557712692513969524" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "70282789877538758656", - "103143843895798644736" + "109182458178528016", + "83122870541390736" ], - "expectedQty": "172529999782901974329", - "swapFee": "103580147958516294", + "expectedQty": "191851350100784022", "reserves": [ - "938940422686484156562758", - "1923017624690434906301765" + "3304601957775169759349355", + "1746423642344232164929223" ], - "LPTokenSupply": "2845876448415532847251298" + "LPTokenSupply": "5036929749564042614753546" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "12816948580801", - "expectedQty": "12795023506517", + "type": "redeemBassets", + "inputQtys": [ + "21243674331751882162176", + "287872973353847080615936" + ], + "expectedQty": "309327470323126049244955", + "swapFee": "185707906938038452618", "reserves": [ - "938940422699301105143559", - "1923017624690434906301765" - ] + "3283358283443417877187179", + "1458550668990385084313287" + ], + "LPTokenSupply": "4727435142124672330901233" }, { "type": "mintMulti", "inputQtys": [ - "1006058141935637889024", - "88297568137781493760" + "23160523398131109330944", + "28486126212851473317888" ], - "expectedQty": "1091966271777630387019", + "expectedQty": "51576070013191472571173", "reserves": [ - "939946480841236743032583", - "1923105922258572687795525" + "3306518806841548986518123", + "1487036795203236557631175" ], - "LPTokenSupply": "2846968414700105501144834" + "LPTokenSupply": "4779011212137863803472406" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "60031038805960510406656", - "expectedQty": "60446221981672004769244", - "swapFee": "36018623283576306243", + "inputIndex": 0, + "inputQty": "523432823810879628771328", + "expectedQty": "525658215102199083668733", + "swapFee": "314059694286527777262", "reserves": [ - "939946480841236743032583", - "1862659700276900683026281" + "2780860591739349902849390", + "1487036795203236557631175" ], - "LPTokenSupply": "2786940977756473348368802" + "LPTokenSupply": "4255609794296412827478804" }, { - "type": "redeemMasset", - "inputQty": "5096525213442135654", - "expectedQtys": [ - "1717864389860278548", - "3404232937464419760" - ], - "redemptionFee": "3057915128065281", + "type": "redeem", + "inputIndex": 1, + "inputQty": "157514727355061305344", + "expectedQty": "157375907773425478465", + "swapFee": "94508836413036783", "reserves": [ - "939944762976846882754035", - "1862656296043963218606521" + "2780860591739349902849390", + "1486879419295463132152710" ], - "LPTokenSupply": "2786935881537051419039676" + "LPTokenSupply": "4255452289019941407477138" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "193732420679452800", - "expectedQty": "192295554185975131", + "type": "redeemBassets", + "inputQtys": [ + "10101324407430148096", + "6330458363758877696" + ], + "expectedQty": "16387410296850396742", + "swapFee": "9838349187622811", "reserves": [ - "939944762976846882754035", - "1862656489776383898059321" - ] + "2780850490414942472701294", + "1486873088837099373275014" + ], + "LPTokenSupply": "4255435892755130288219865" }, { "type": "mintMulti", "inputQtys": [ - "72281983537524166885376", - "57479587210029632061440" + "2480829212139777425408", + "3087526981651456327680" ], - "expectedQty": "129186209088637678872530", + "expectedQty": "5557883730522868624948", "reserves": [ - "1012226746514371049639411", - "1920136076986413530120761" + "2783331319627082250126702", + "1489960615818750829602694" ], - "LPTokenSupply": "2916122282921243283887337" + "LPTokenSupply": "4260993776485653156844813" }, { "type": "redeemMasset", - "inputQty": "11987611244818053529", + "inputQty": "744930074123782246", "expectedQtys": [ - "4158570541231137549", - "7888569781827490846" + "486305139742810761", + "260326717260560432" ], - "redemptionFee": "7192566746890832", + "redemptionFee": "446958044474269", "reserves": [ - "1012222587943829818501862", - "1920128188416631702629915" + "2783330833321942507315941", + "1489960355492033569042262" ], - "LPTokenSupply": "2916110296029255140522891" + "LPTokenSupply": "4260993031600274837509993" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "3457667668705681080320", - "expectedQty": "3432558490744476545646", + "inputQty": "217327914249299853312", + "outputIndex": 0, + "expectedQty": "218384194211194307066", + "swapFee": "0", "reserves": [ - "1012222587943829818501862", - "1923585856085337383710235" - ] + "2783112449127731313008875", + "1490177683406282868895574" + ], + "LPTokenSupply": "4260993031600274837509993", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4478085130765497008128", - "expectedQty": "4467884682200091705185", + "type": "redeemMasset", + "inputQty": "892974351009438515", + "expectedQtys": [ + "582905643310448672", + "312108474619865208" + ], + "redemptionFee": "535784610605663", "reserves": [ - "1016700673074595315509990", - "1923585856085337383710235" - ] + "2783111866222088002560203", + "1490177371297808249030366" + ], + "LPTokenSupply": "4260992138679502289132044" }, { - "type": "redeemBassets", - "inputQtys": [ - "121239514575390392320", - "6913670662460595503104" - ], - "expectedQty": "6984554041056811606620", - "swapFee": "4193248373658281933", + "type": "mint", + "inputIndex": 1, + "inputQty": "30744354239865818185728", + "expectedQty": "30750670676179461021618", "reserves": [ - "1016579433560019925117670", - "1916672185422876788207131" - ], - "LPTokenSupply": "2917022411237606604713361" + "2783111866222088002560203", + "1520921725537674067216094" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "887857322227606749184", - "2197334816279353884672" - ], - "expectedQty": "3067229991837413407697", - "swapFee": "1841442860818939408", + "type": "swap", + "inputIndex": 0, + "inputQty": "11302548164004110336", + "outputIndex": 1, + "expectedQty": "11241201932635844374", + "swapFee": "9001417674627591", "reserves": [ - "1015691576237792318368486", - "1914474850606597434322459" + "2783123168770252006670539", + "1520910484335741431371720" ], - "LPTokenSupply": "2913953523947194454260195" + "LPTokenSupply": "4291742810255823517616421", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "18554205082387476381696", - "expectedQty": "18677935851085175773653", - "swapFee": "11132523049432485829", + "inputQty": "44790349012682623942656", + "expectedQty": "44792475563207696256088", "reserves": [ - "1015691576237792318368486", - "1895796914755512258548806" - ], - "LPTokenSupply": "2895400432117111921127081" + "2783123168770252006670539", + "1565700833348424055314376" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "43426544214403205562368", - "expectedQty": "43498000886520071309085", - "swapFee": "26055926528641923337", + "inputQty": "47609026043440256778240", + "expectedQty": "47788912127309113148659", + "swapFee": "28565415626064154066", "reserves": [ - "972193575351272247059401", - "1895796914755512258548806" + "2735334256642942893521880", + "1565700833348424055314376" ], - "LPTokenSupply": "2851976493495361579757046" + "LPTokenSupply": "4288929116317153563509675" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "11438501296921053757440", - "expectedQty": "11455183089867060579105", - "swapFee": "6863100778152632254", + "type": "redeemBassets", + "inputQtys": [ + "24058191579062968320", + "35842914053362290688" + ], + "expectedQty": "59791250652182368257", + "swapFee": "35896288164207945", "reserves": [ - "960738392261405186480296", - "1895796914755512258548806" + "2735310198451363830553560", + "1565664990434370693023688" ], - "LPTokenSupply": "2840538678508518341262831" + "LPTokenSupply": "4288869292759842033354266" }, { - "type": "mintMulti", - "inputQtys": [ - "5235804261869669056512", - "3173476492864707362816" - ], - "expectedQty": "8375144486051333979272", + "type": "swap", + "inputIndex": 0, + "inputQty": "363613736256192380928", + "outputIndex": 1, + "expectedQty": "361801438177067634060", + "swapFee": "289628984778156365", "reserves": [ - "965974196523274855536808", - "1898970391248376965911622" + "2735673812187620022934488", + "1565303188996193625389628" ], - "LPTokenSupply": "2848913822994569675242103" + "LPTokenSupply": "4288869321722740511169902", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "5325419911497251815424", + "inputQty": "2436211918106735", "outputIndex": 0, - "expectedQty": "5296572278440903833276", + "expectedQty": "2446460591891614", "swapFee": "0", "reserves": [ - "960677624244833951703532", - "1904295811159874217727046" + "2735673809741159431042874", + "1565303191432405543496363" ], - "LPTokenSupply": "2848913822994569675242103", + "LPTokenSupply": "4288869321722740511169902", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "31382638141350497746944", - "expectedQty": "31316810533314273079695", - "reserves": [ - "992060262386184449450476", - "1904295811159874217727046" - ] - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "134017155451141425725440", - "155531001806920938946560" + "1385257730913042694144", + "1164826232177609539584" ], - "expectedQty": "288125236996558133838261", - "swapFee": "172978929555668281271", + "expectedQty": "2543896578278653259749", "reserves": [ - "858043106935043023725036", - "1748764809352953278780486" + "2737059067472072473737018", + "1566468017664583153035947" ], - "LPTokenSupply": "2591949715494725713030392" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "62846208038318047232", - "expectedQty": "62368829840785841149", - "reserves": [ - "858043106935043023725036", - "1748827655560991596827718" - ] + "LPTokenSupply": "4291413218301019164429651" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2103543518518182674432", - "expectedQty": "2087560187291052703640", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1928457399788995084288", + "expectedQty": "1935696343221489806847", + "swapFee": "1157074439873397050", "reserves": [ - "858043106935043023725036", - "1750931199079509779502150" - ] + "2735123371128850983930171", + "1566468017664583153035947" + ], + "LPTokenSupply": "4289484876608674156685068" }, { - "type": "mintMulti", - "inputQtys": [ - "47414370558821592465408", - "8609236669737262383104" + "type": "redeemMasset", + "inputQty": "26582350296661048583782", + "expectedQtys": [ + "16939652671965101360477", + "9701728419668296692976" ], - "expectedQty": "55863695483295835103865", + "redemptionFee": "15949410177996629150", "reserves": [ - "905457477493864616190444", - "1759540435749247041885254" + "2718183718456885882569694", + "1556766289244914856342971" ], - "LPTokenSupply": "2649963339995153386679046" + "LPTokenSupply": "4262904121253030907764201" }, { "type": "redeemMasset", - "inputQty": "677725910898463211520", + "inputQty": "407371535102523136", "expectedQtys": [ - "231431051615697896362", - "449730996239468167063" + "259599150296801259", + "148678399901575442" ], - "redemptionFee": "406635546539077926", + "redemptionFee": "244422921061513", "reserves": [ - "905226046442248918294082", - "1759090704753007573718191" + "2718183458857735585768435", + "1556766140566514954767529" ], - "LPTokenSupply": "2649285654747809577375318" + "LPTokenSupply": "4262903713905938097347216" }, { "type": "redeemBassets", "inputQtys": [ - "774877720030479646720", - "1602657467112240971776" + "10936858341582487552", + "58152067825825284096" ], - "expectedQty": "2363949675273539021674", - "swapFee": "1419221337966903555", + "expectedQty": "69032151884122948542", + "swapFee": "41444157625048798", "reserves": [ - "904451168722218438647362", - "1757488047285895332746415" + "2718172521999394003280883", + "1556707988498689129483433" ], - "LPTokenSupply": "2646920427773331868140443" + "LPTokenSupply": "4262834644454312111854754" }, { "type": "mintMulti", "inputQtys": [ - "1917896391093083963392", - "126333390211332947968" + "1523725630317973471232", + "38044346663450817069056" + ], + "expectedQty": "39552778805809454819007", + "reserves": [ + "2719696247629711976752115", + "1594752335162139946552489" + ], + "LPTokenSupply": "4302387423260121566673761" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "11818386708877258752", + "7312923757136335872" ], - "expectedQty": "2039088004111470986308", + "expectedQty": "19078784741262772755", + "swapFee": "11454143330756117", "reserves": [ - "906369065113311522610754", - "1757614380676106665694383" + "2719684429243003099493363", + "1594745022238382810216617" ], - "LPTokenSupply": "2648959515777443339126751" + "LPTokenSupply": "4302368334166651306220499" }, { "type": "redeemBassets", "inputQtys": [ - "1986615938456601231360", - "1881703712068254826496" + "499481850333137141760", + "377916170967440949248" ], - "expectedQty": "3850003721647242085471", - "swapFee": "2311389066428202172", + "expectedQty": "875157601707335611994", + "swapFee": "525409806908546495", "reserves": [ - "904382449174854921379394", - "1755732676964038410867887" + "2719184947392669962351603", + "1594367106067415369267369" ], - "LPTokenSupply": "2645107431805636311659324" + "LPTokenSupply": "4301492703696117752916658" }, { "type": "redeemMasset", - "inputQty": "13833345800245064499", + "inputQty": "27749882059036445900", "expectedQtys": [ - "4726888830175119849", - "9176596900002646987" + "17531539059708986397", + "10279443927614403700" ], - "redemptionFee": "8300007480147038", + "redemptionFee": "16649929235421867", "reserves": [ - "904377722286024746259545", - "1755723500367138408220900" + "2719167415853610253365206", + "1594356826623487754863669" ], - "LPTokenSupply": "2645093599289836814609528" + "LPTokenSupply": "4301464955479051640012944" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "585205647401148743680", - "expectedQty": "589225331014079549479", - "swapFee": "351123388440689246", + "type": "redeemBassets", + "inputQtys": [ + "9727708953850037665792", + "18403075405113559351296" + ], + "expectedQty": "28084152608795739035165", + "swapFee": "16860607930035464699", "reserves": [ - "904377722286024746259545", - "1755134275036124328671421" + "2709439706899760215699414", + "1575953751218374195512373" ], - "LPTokenSupply": "2644508428754774509934772" + "LPTokenSupply": "4273365628323118869059548" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "72637999602521489408", - "outputIndex": 1, - "expectedQty": "72961720954149018574", - "swapFee": "57982835481518415", + "type": "redeemBassets", + "inputQtys": [ + "9179663848392001323008", + "50788949477367013376" + ], + "expectedQty": "9191102790612606256143", + "swapFee": "5517972457842269115", "reserves": [ - "904450360285627267748953", - "1755061313315170179652847" + "2700260043051368214376406", + "1575902962268896828498997" ], - "LPTokenSupply": "2644508434553058058086613", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4264169559357294204761200" }, { - "type": "redeemMasset", - "inputQty": "348661625854042465894", - "expectedQtys": [ - "119174482759724107771", - "231254840962067626206" + "type": "mintMulti", + "inputQtys": [ + "29988386908953531908096", + "5117156934482464342016" ], - "redemptionFee": "209196975512425479", + "expectedQty": "34975482074735886669170", "reserves": [ - "904331185802867543641182", - "1754830058474208112026641" + "2730248429960321746284502", + "1581020119203379292841013" ], - "LPTokenSupply": "2644159793846901566863266" + "LPTokenSupply": "4299145041432030091430370" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "36950275914844831744", - "expectedQty": "36676212563108064257", + "type": "redeem", + "inputIndex": 0, + "inputQty": "80414341611291855028224", + "expectedQty": "80709645452193527641160", + "swapFee": "48248604966775113016", "reserves": [ - "904331185802867543641182", - "1754867008750122956858385" - ] + "2649538784508128218643342", + "1581020119203379292841013" + ], + "LPTokenSupply": "4218735524681234913913447" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "2033895132631595520", - "expectedQty": "2029429249879841568", + "inputQty": "2089214352554305519616", + "expectedQty": "2096798528831348063760", + "swapFee": "1253528611532583311", + "reserves": [ + "2647441985979296870579582", + "1581020119203379292841013" + ], + "LPTokenSupply": "4216646435681541761652162" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "3286194215263239405568", + "expectedQty": "3284803525330055177916", "reserves": [ - "904333219698000175236702", - "1754867008750122956858385" + "2647441985979296870579582", + "1584306313418642532246581" ] }, { "type": "mintMulti", "inputQtys": [ - "1368285185213109633024", - "803022313589437759488" + "1703085842584135532544", + "1704463709169192009728" ], - "expectedQty": "2162343462508851173429", + "expectedQty": "3399652885566869640959", "reserves": [ - "905701504883213284869726", - "1755670031063712394617873" + "2649145071821881006112126", + "1586010777127811724256309" ], - "LPTokenSupply": "2646360842951223405942520" + "LPTokenSupply": "4223330892092438686471037" }, { "type": "mintMulti", "inputQtys": [ - "14725996208031227904", - "5804988937144445952" + "4663466224104540995584", + "15762724135020502450176" ], - "expectedQty": "20455507111355830066", + "expectedQty": "20399484793284516946924", "reserves": [ - "905716230879421316097630", - "1755675836052649539063825" + "2653808538045985547107710", + "1601773501262832226706485" ], - "LPTokenSupply": "2646381298458334761772586" + "LPTokenSupply": "4243730376885723203417961" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "17514435427489944698880", - "expectedQty": "17384280884050818643103", + "inputQty": "11597857189632", + "expectedQty": "11596424531639", + "swapFee": "6958714313", "reserves": [ - "905716230879421316097630", - "1773190271480139483762705" - ] + "2653808538045985547107710", + "1601773501251235802174846" + ], + "LPTokenSupply": "4243730376874126042099760" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1405450340450577920", - "expectedQty": "1402452417500260858", + "type": "mintMulti", + "inputQtys": [ + "353570021100349030400", + "128109028199218331648" + ], + "expectedQty": "480140672631184973665", "reserves": [ - "905717636329761766675550", - "1773190271480139483762705" - ] + "2654162108067085896138110", + "1601901610279435020506494" + ], + "LPTokenSupply": "4244210517546757227073425" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "27424230681763817455616", - "47754552623654317850624" + "1773441288139757584384", + "1536068262999723081728" ], - "expectedQty": "74764513984552840141788", + "expectedQty": "3301368134977198813326", + "swapFee": "1982010087038542413", "reserves": [ - "933141867011525584131166", - "1820944824103793801613329" + "2652388666778946138553726", + "1600365542016435297424766" ], - "LPTokenSupply": "2738531495779355920818335" + "LPTokenSupply": "4240907365602701693571926" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5882894754736786898944", - "expectedQty": "5923384775666821338273", - "swapFee": "3529736852842072139", + "type": "redeemMasset", + "inputQty": "4489588959423127552", + "expectedQtys": [ + "2806236724261431704", + "1693192484381610717" + ], + "redemptionFee": "2693753375653876", "reserves": [ - "933141867011525584131166", - "1815021439328126980275056" + "2652385860542221877122022", + "1600363848823950915814049" ], - "LPTokenSupply": "2732648953998304418126604" + "LPTokenSupply": "4240902876283117608009761" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "75525384605627248", - "expectedQty": "76044836303661110", - "swapFee": "45315230763376", + "type": "redeemMasset", + "inputQty": "1463279074419862719692", + "expectedQtys": [ + "914628825921594826407", + "551857454027441435993" + ], + "redemptionFee": "877967444651917631", "reserves": [ - "933141867011525584131166", - "1815021363283290676613946" + "2651471231716300282295615", + "1599811991369923474378056" ], - "LPTokenSupply": "2732648878477451335575693" + "LPTokenSupply": "4239439685005442210481832" }, { "type": "mint", "inputIndex": 1, - "inputQty": "246643371124229754847232", - "expectedQty": "244751763095062448024922", + "inputQty": "2035601278795643648", + "expectedQty": "2034633874786260543", "reserves": [ - "933141867011525584131166", - "2061664734407520431461178" + "2651471231716300282295615", + "1599814026971202270021704" ] }, { "type": "redeemMasset", - "inputQty": "60991718588902978827059", + "inputQty": "1311838929996256536166", "expectedQtys": [ - "19103837423288682561328", - "42207631336471203045239" + "819970277104363340724", + "494744176485706979742" ], - "redemptionFee": "36595031153341787296", + "redemptionFee": "787103357997753921", "reserves": [ - "914038029588236901569838", - "2019457103071049228415939" + "2650651261439195918954891", + "1599319282794716563041962" ], - "LPTokenSupply": "2916412582486726138952285" + "LPTokenSupply": "4238129959419656539981601" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6102142101481143140352", - "3126355720297920856064" + "3814930814020766138368", + "528669410616283955200" ], - "expectedQty": "9196576622782339752877", - "swapFee": "5521258728906747900", + "expectedQty": "4327396298826181067037", "reserves": [ - "907935887486755758429486", - "2016330747350751307559875" + "2654466192253216685093259", + "1599847952205332846997162" ], - "LPTokenSupply": "2907211036731087783126297" + "LPTokenSupply": "4242457355718482721048638" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "7699316035825743953920", - "outputIndex": 0, - "expectedQty": "7646335100234379556931", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "15715915218737573888", + "1497902675521048832" + ], + "expectedQty": "17147361414945087427", + "swapFee": "10294593605130130", "reserves": [ - "900289552386521378872555", - "2024030063386577051513795" + "2654450476337997947519371", + "1599846454302657325948330" ], - "LPTokenSupply": "2907211036731087783126297", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4242440199091933531344093" }, { - "type": "mintMulti", - "inputQtys": [ - "1093823000266178953216", - "969078894894407221248" + "type": "redeemMasset", + "inputQty": "8239256199018296062771", + "expectedQtys": [ + "5152123329471584746843", + "3105202494550350146016" ], - "expectedQty": "2054020436018912347382", + "redemptionFee": "4943553719410977637", "reserves": [ - "901383375386787557825771", - "2024999142281471458735043" + "2649298353008526362772528", + "1596741251808106975802314" ], - "LPTokenSupply": "2909265057167106695473679" + "LPTokenSupply": "4234201437248287176379085" }, { - "type": "swap", + "type": "redeem", + "inputIndex": 1, + "inputQty": "36287810017188319232", + "expectedQty": "36283101677324482280", + "swapFee": "21772686010312991", + "reserves": [ + "2649298353008526362772528", + "1596704968706429651320034" + ], + "LPTokenSupply": "4234165151615538589091152" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "168647599090239591677952", - "outputIndex": 1, - "expectedQty": "169433587139887785091554", - "swapFee": "134679996819059946181", + "inputQty": "4045205027781627904", + "expectedQty": "4059768025583336796", + "swapFee": "2427123016668976", "reserves": [ - "1070030974477027149503723", - "1855565555141583673643489" + "2649294293240500779435732", + "1596704968706429651320034" ], - "LPTokenSupply": "2909278525166788601468297", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4234161106653223109130145" }, { "type": "redeemMasset", - "inputQty": "3194798773739197772595", + "inputQty": "62341000817969", "expectedQtys": [ - "1174340131197725497812", - "2036450485497353039956" + "38983061284078", + "23494727560651" ], - "redemptionFee": "1916879264243518663", + "redemptionFee": "37404600490", "reserves": [ - "1068856634345829424005911", - "1853529104656086320603533" + "2649294293201517718151654", + "1596704968682934923759383" ], - "LPTokenSupply": "2906083918080975828047568" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1498367279619506176000", - "expectedQty": "1493903259424950582923", - "reserves": [ - "1070355001625448930181911", - "1853529104656086320603533" - ] + "LPTokenSupply": "4234161106590885848772225" }, { "type": "redeemMasset", - "inputQty": "6921012693358412510003", + "inputQty": "278668326692765669785", "expectedQtys": [ - "2546276056303379097202", - "4409375180832544836785" + "174256818383715150604", + "105022959681812061735" ], - "redemptionFee": "4152607616015047506", + "redemptionFee": "167200996015659401", "reserves": [ - "1067808725569145551084709", - "1849119729475253775766748" + "2649120036383134003001050", + "1596599945723253111697648" ], - "LPTokenSupply": "2900657223907803967625238" + "LPTokenSupply": "4233882454984292684668380" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "586159082226529009664", - "outputIndex": 1, - "expectedQty": "588101060439222589558", - "swapFee": "467526923201940172", + "type": "mint", + "inputIndex": 1, + "inputQty": "9425922069626076790784", + "expectedQty": "9421335990640006331445", "reserves": [ - "1068394884651372080094373", - "1848531628414814553177190" - ], - "LPTokenSupply": "2900657270660496287819255", - "hardLimitError": false, - "insufficientLiquidityError": false + "2649120036383134003001050", + "1606025867792879188488432" + ] }, { "type": "redeemMasset", - "inputQty": "257933434808325", + "inputQty": "41899961282867040249446", "expectedQtys": [ - "94947245321975", - "164277261647320" + "26142702386259832735055", + "15848982193976972894343" ], - "redemptionFee": "154760060884", + "redemptionFee": "25139976769720224149", "reserves": [ - "1068394884556424834772398", - "1848531628250537291529870" + "2622977333996874170265995", + "1590176885598902215594089" ], - "LPTokenSupply": "2900657270402578329017018" + "LPTokenSupply": "4201406343689742622772793" }, { "type": "mint", "inputIndex": 1, - "inputQty": "269541791882255990784", - "expectedQty": "267635227694294822842", + "inputQty": "164296818263861007220736", + "expectedQty": "164170367094377368933726", "reserves": [ - "1068394884556424834772398", - "1848801170042419547520654" + "2622977333996874170265995", + "1754473703862763222814825" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "22517777244732363112448", - "expectedQty": "22449102595248095596319", + "inputIndex": 1, + "inputQty": "854230781951138944", + "expectedQty": "853366626320525919", "reserves": [ - "1090912661801157197884846", - "1848801170042419547520654" + "2622977333996874170265995", + "1754474558093545173953769" ] }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "26913002082991", + "expectedQtys": [ + "16160482341709", + "10809531118534" + ], + "redemptionFee": "16147801249", + "reserves": [ + "2622977333980713687924286", + "1754474558082735642835235" + ], + "LPTokenSupply": "4365577564123834924929571" + }, + { + "type": "redeemBassets", "inputQtys": [ - "96025641085459234816", - "122169114307924819968" + "2017685324671323648", + "2311162663696788992" ], - "expectedQty": "217040580028627574838", + "expectedQty": "4318741111069612812", + "swapFee": "2592800346849877", "reserves": [ - "1091008687442242657119662", - "1848923339156727472340622" + "2622975316295389016600638", + "1754472246920071946046243" ], - "LPTokenSupply": "2923591048805549347011017" + "LPTokenSupply": "4365573243049203543151868" }, { "type": "redeemMasset", - "inputQty": "741962509835808276480", + "inputQty": "9993261039672972083", "expectedQtys": [ - "276715121217602377056", - "468946812070085478477" + "6000666655140009252", + "4013763699588022662" ], - "redemptionFee": "445177505901484965", + "redemptionFee": "5995956623803783", "reserves": [ - "1090731972321025054742606", - "1848454392344657386862145" + "2622969315628733876591386", + "1754468233156372358023581" ], - "LPTokenSupply": "2922849130813464128883033" + "LPTokenSupply": "4365563250387759532560163" }, { - "type": "mintMulti", - "inputQtys": [ - "838610230460105728", - "206629577617360800" + "type": "redeemMasset", + "inputQty": "4725807120404626636", + "expectedQtys": [ + "2837711646729601424", + "1898106435854946279" + ], + "redemptionFee": "2835484272242775", + "reserves": [ + "2622966477917087146989962", + "1754466335049936503077302" + ], + "LPTokenSupply": "4365558524864187555157804" + }, + { + "type": "redeemMasset", + "inputQty": "2770080078522952450048", + "expectedQtys": [ + "1663353646375700330569", + "1112594461430616665910" ], - "expectedQty": "1041184824796736790", + "redemptionFee": "1662048047113771470", "reserves": [ - "1090732810931255514848334", - "1848454598974235004222945" + "2621303124270711446659393", + "1753353740588505886411392" ], - "LPTokenSupply": "2922850171998288925619823" + "LPTokenSupply": "4362788610990469314084903" }, { "type": "mintMulti", "inputQtys": [ - "15734478694471832698880", - "29544825778881525972992" + "56594399814742253240320", + "10951373525638788939776" ], - "expectedQty": "45023454742758496010255", + "expectedQty": "67315782521388806251455", "reserves": [ - "1106467289625727347547214", - "1877999424753116530195937" + "2677897524085453699899713", + "1764305114114144675351168" ], - "LPTokenSupply": "2967873626741047421630078" + "LPTokenSupply": "4430104393511858120336358" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5649702995177338880", - "expectedQty": "5686164402172157413", - "swapFee": "3389821797106403", + "type": "redeemBassets", + "inputQtys": [ + "14564703852871041024", + "17174358214386782208" + ], + "expectedQty": "31666146967650736319", + "swapFee": "19011094837492937", "reserves": [ - "1106467289625727347547214", - "1877993738588714358038524" + "2677882959381600828858689", + "1764287939755930288568960" ], - "LPTokenSupply": "2967867977377034424001838" + "LPTokenSupply": "4430072710254905115856394" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "29298737715023970304000", - "expectedQty": "29205716640198436522716", + "inputQty": "440237773078152384", + "expectedQty": "441695949001915764", + "swapFee": "264142663846891", "reserves": [ - "1135766027340751317851214", - "1877993738588714358038524" - ] + "2677882517685651826942925", + "1764287939755930288568960" + ], + "LPTokenSupply": "4430072270043546304088699" }, { - "type": "mintMulti", - "inputQtys": [ - "351767132800788608", - "586375848633285376" + "type": "redeemMasset", + "inputQty": "8023231767078097715", + "expectedQtys": [ + "4846959510422815569", + "3193356001336018066" ], - "expectedQty": "932942285510610489", + "redemptionFee": "4813939060246858", "reserves": [ - "1135766379107884118639822", - "1877994324964562991323900" + "2677877670726141404127356", + "1764284746399928952550894" ], - "LPTokenSupply": "2997074626959518371135043" + "LPTokenSupply": "4430064247293173132015669" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "1548897597088756137984", - "expectedQty": "1553005352596306565815", - "swapFee": "929338558253253682", + "inputQty": "524563127993077793292288", + "outputIndex": 1, + "expectedQty": "521250015942011240704399", + "swapFee": "417886756841964964068", "reserves": [ - "1134213373755287812074007", - "1877994324964562991323900" + "3202440798719219197419644", + "1243034730457917711846495" ], - "LPTokenSupply": "2995525822296285440322427" + "LPTokenSupply": "4430106035968857328512075", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3252356199784438272", - "expectedQty": "3260970201405026382", - "swapFee": "1951413719870662", + "type": "redeemBassets", + "inputQtys": [ + "13218036496984866553856", + "11759581709570272133120" + ], + "expectedQty": "24934160228879403843652", + "swapFee": "14969477824022055539", "reserves": [ - "1134210112785086407047625", - "1877994324964562991323900" + "3189222762222234330865788", + "1231275148748347439713375" ], - "LPTokenSupply": "2995522570135227027871221" + "LPTokenSupply": "4405158403209936304818436" }, { "type": "redeemBassets", "inputQtys": [ - "10619762435150667776", - "9152887204492722176" + "43509084696474718044160", + "37191856120651118018560" ], - "expectedQty": "19674848826749985343", - "swapFee": "11811996493946359", + "expectedQty": "80555734361066009011690", + "swapFee": "48362458091494502108", "reserves": [ - "1134199493022651256379849", - "1877985172077358498601724" + "3145713677525759612821628", + "1194083292627696321694815" ], - "LPTokenSupply": "2995502884655603433334153" + "LPTokenSupply": "4324559142636587950754847" }, { - "type": "swap", + "type": "mint", + "inputIndex": 1, + "inputQty": "39588134493347069952", + "expectedQty": "39716074764358363026", + "reserves": [ + "3145713677525759612821628", + "1194122880762189668764767" + ] + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "51345425187971723689984", - "outputIndex": 1, - "expectedQty": "51478706410425794133894", - "swapFee": "40938325638253765879", + "inputQty": "102329352978306416640", + "expectedQty": "101708137053588068505", "reserves": [ - "1185544918210622980069833", - "1826506465666932704467830" - ], - "LPTokenSupply": "2995506978488167258710740", - "hardLimitError": false, - "insufficientLiquidityError": false + "3145816006878737919238268", + "1194122880762189668764767" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "2198675082483928320", - "expectedQty": "2205358623198056666", - "swapFee": "1319205049490356", + "inputQty": "90590949297930111025152", + "expectedQty": "91083532434030570230386", + "swapFee": "54354569578758066615", "reserves": [ - "1185542712851999782013167", - "1826506465666932704467830" + "3054732474444707349007882", + "1194122880762189668764767" ], - "LPTokenSupply": "2995504779945005279731455" + "LPTokenSupply": "4234115053007433661967887" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "4094234243007106252800", - "outputIndex": 1, - "expectedQty": "4103522507017613804121", - "swapFee": "3263473742753780515", + "type": "redeem", + "inputIndex": 1, + "inputQty": "34856411501830428688384", + "expectedQty": "34729668994024491893935", + "swapFee": "20913846901098257213", "reserves": [ - "1189636947095006888265967", - "1822402943159915090663709" + "3054732474444707349007882", + "1159393211768165176870832" ], - "LPTokenSupply": "2995505106292379555109506", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4199260732890293343105224" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2041721961584366080", + "inputQty": "1398464440278798565376", "outputIndex": 1, - "expectedQty": "2046306026369147236", - "swapFee": "1627402756992648", + "expectedQty": "1384366318391046921664", + "swapFee": "1111960007464184204", "reserves": [ - "1189638988816968472632047", - "1822400896853888721516473" + "3056130938884986147573258", + "1158008845449774129949168" ], - "LPTokenSupply": "2995505106455119830808770", + "LPTokenSupply": "4199260844086294089523644", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "182857222933131329536", - "outputIndex": 1, - "expectedQty": "183267580157343941375", - "swapFee": "145750615458098483", + "inputQty": "1463870815130838630400", + "expectedQty": "1454946720031710027431", "reserves": [ - "1189821846039901603961583", - "1822217629273731377575098" + "3057594809700116986203658", + "1158008845449774129949168" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "343855156318178705408", + "60480288519690354688" ], - "LPTokenSupply": "2995505121030181376618618", - "hardLimitError": false, - "insufficientLiquidityError": false + "expectedQty": "402434953570257520087", + "reserves": [ + "3057938664856435164909066", + "1158069325738293820303856" + ], + "LPTokenSupply": "4201118225759896057071162" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "7975546348888136876032", - "outputIndex": 0, - "expectedQty": "7950968762087554186762", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "29273039873487405056", + "33055686418101317632" + ], + "expectedQty": "62257453069540445636", + "swapFee": "37376897980512574", "reserves": [ - "1181870877277814049774821", - "1830193175622619514451130" + "3057909391816561677504010", + "1158036270051875718986224" ], - "LPTokenSupply": "2995505121030181376618618", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4201055934667618334164208" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "265872313510523535360", - "expectedQty": "264085552181551243191", + "inputQty": "2494835355739076689920", + "expectedQty": "2485244568891555177420", + "swapFee": "1496901213443446013", "reserves": [ - "1181870877277814049774821", - "1830459047936130037986490" - ] + "3057909391816561677504010", + "1155551025482984163808804" + ], + "LPTokenSupply": "4198561249002000601818889" }, { - "type": "redeemMasset", - "inputQty": "46646664101375128371", - "expectedQtys": [ - "18391689020042271982", - "28484696781009271493" + "type": "mintMulti", + "inputQtys": [ + "9789678990951976", + "90585682646800576" ], - "redemptionFee": "27987998460825077", + "expectedQty": "100611731904718232", "reserves": [ - "1181852485588794007502839", - "1830430563239349028714997" + "3057909401606240668455986", + "1155551116068666810609380" ], - "LPTokenSupply": "2995722562717061398815945" + "LPTokenSupply": "4198561349613732506537121" }, { "type": "mintMulti", "inputQtys": [ - "42651583328869737824256", - "127777926469489537318912" + "94597285447464826961920", + "36894763123962997112832" ], - "expectedQty": "169413842921136948354162", + "expectedQty": "131034883509156012304753", "reserves": [ - "1224504068917663745327095", - "1958208489708838566033909" + "3152506687053705495417906", + "1192445879192629807722212" ], - "LPTokenSupply": "3165136405638198347170107" + "LPTokenSupply": "4329596233122888518841874" }, { - "type": "redeemBassets", - "inputQtys": [ - "13040048406156204032", - "33171060175277268992" - ], - "expectedQty": "45939871616954133978", - "swapFee": "27580471252924234", + "type": "redeem", + "inputIndex": 1, + "inputQty": "137754417146373537792", + "expectedQty": "137224618880021692547", + "swapFee": "82652650287824122", "reserves": [ - "1224491028869257589123063", - "1958175318648663288764917" + "3152506687053705495417906", + "1192308654573749786029665" ], - "LPTokenSupply": "3165090440944157265404317" + "LPTokenSupply": "4329458486971007174086494" }, { "type": "mintMulti", "inputQtys": [ - "58086797345974894592", - "149214263310124548096" + "601647834312619720704", + "608797465684693483520" ], - "expectedQty": "206082910649784757477", + "expectedQty": "1208756301919406369007", "reserves": [ - "1224549115666603564017655", - "1958324532911973413313013" + "3153108334888018115138610", + "1192917452039434479513185" ], - "LPTokenSupply": "3165296523854807050161794" + "LPTokenSupply": "4330667243272926580455501" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3931598444913208832", - "expectedQty": "3918075329288141651", + "inputIndex": 1, + "inputQty": "1098587920308552466432", + "expectedQty": "1102158067824635118589", "reserves": [ - "1224553047265048477226487", - "1958324532911973413313013" + "3153108334888018115138610", + "1194016039959743031979617" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "59808156457222086328320", - "expectedQty": "59970548516504562464544", - "swapFee": "35884893874333251796", + "inputIndex": 1, + "inputQty": "911857796952370315264", + "expectedQty": "908359604414248541551", + "swapFee": "547114678171422189", "reserves": [ - "1164582498748543914761943", - "1958324532911973413313013" + "3153108334888018115138610", + "1193107680355328783438066" ], - "LPTokenSupply": "3105495873962301685300304" + "LPTokenSupply": "4330857598255266662401044" }, { - "type": "mintMulti", - "inputQtys": [ - "12382283397055565824", - "10649660779949543424" - ], - "expectedQty": "22918037445390447861", + "type": "redeem", + "inputIndex": 1, + "inputQty": "309320689309369", + "expectedQty": "308132656732350", + "swapFee": "185592413585", "reserves": [ - "1164594881031940970327767", - "1958335182572753362856437" + "3153108334888018115138610", + "1193107680047196126705716" ], - "LPTokenSupply": "3105518791999747075748165" + "LPTokenSupply": "4330857597945964532333033" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "195709083159497120", - "expectedQty": "194338902221828288", + "inputIndex": 0, + "inputQty": "66096591563204841177088", + "expectedQty": "65690118201237583100861", "reserves": [ - "1164594881031940970327767", - "1958335378281836522353557" + "3219204926451222956315698", + "1193107680047196126705716" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6365875545278239473664", - "26968961466743310516224" + "393339056534193307648", + "1676108853720069439488" ], - "expectedQty": "33126022777380143835395", - "swapFee": "19887546194144573045", + "expectedQty": "2072878401808202315223", "reserves": [ - "1158229005486662730854103", - "1931366416815093211837333" + "3219598265507757149623346", + "1194783788900916196145204" ], - "LPTokenSupply": "3072375064769694423625316" + "LPTokenSupply": "4398620594549010317749117" }, { - "type": "redeemMasset", - "inputQty": "5426322787446967500", - "expectedQtys": [ - "2044396715398359117", - "3409066031037971944" + "type": "redeem", + "inputIndex": 0, + "inputQty": "5955591195055094759424", + "expectedQty": "5989073207491003867655", + "swapFee": "3573354717033056855", + "reserves": [ + "3213609192300266145755691", + "1194783788900916196145204" + ], + "LPTokenSupply": "4392665360689426926295378" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "3287929799142128128", + "1040084295467540480" ], - "redemptionFee": "3255793672468180", + "expectedQty": "4311290350461920283", + "swapFee": "2588327206601112", "reserves": [ - "1158226961089947332494986", - "1931363007749062173865389" + "3213605904370467003627563", + "1194782748816620728604724" ], - "LPTokenSupply": "3072369638772486343904634" + "LPTokenSupply": "4392661047069581978434093" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1491966524437909733376", + "expectedQty": "1497129635720396619182", + "reserves": [ + "3213605904370467003627563", + "1196274715341058638338100" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "4006860580990395392", - "expectedQty": "3978897029950464830", + "inputQty": "976666924398774321152", + "expectedQty": "980034251587016341681", "reserves": [ - "1158226961089947332494986", - "1931367014609643164260781" + "3213605904370467003627563", + "1197251382265457412659252" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "308819809884449114423296", - "expectedQty": "307633049263130958978715", + "inputQty": "13562062548033245020160", + "expectedQty": "13478197800509128519985", "reserves": [ - "1467046770974396446918282", - "1931367014609643164260781" + "3227167966918500248647723", + "1197251382265457412659252" ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "3358751200559999483904", - "expectedQty": "3377746602801702413553", - "swapFee": "2015250720335999690", + "inputQty": "10262967750103924736000", + "outputIndex": 0, + "expectedQty": "10361984424351885866639", + "swapFee": "0", "reserves": [ - "1467046770974396446918282", - "1927989268006841461847228" + "3216805982494148362781084", + "1207514350015561337395252" ], - "LPTokenSupply": "3376648117257159287464244" + "LPTokenSupply": "4408616408757398519914941", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "5134557019009338834944", - "expectedQtys": [ - "2229464087617031642657", - "2929956235463006097000" + "type": "mintMulti", + "inputQtys": [ + "26838110134826608623616", + "25617777390878873092096" ], - "redemptionFee": "3080734211405603300", + "expectedQty": "52375734335354377207571", "reserves": [ - "1464817306886779415275625", - "1925059311771378455750228" + "3243644092628974971404700", + "1233132127406440210487348" ], - "LPTokenSupply": "3371513868311571089189630" + "LPTokenSupply": "4460992143092752897122512" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "8389192057103067381760", - "outputIndex": 1, - "expectedQty": "8397829585150173563866", - "swapFee": "6681993982893001876", + "inputQty": "4254480588450286272512", + "expectedQty": "4277930282696369735574", + "swapFee": "2552688353070171763", "reserves": [ - "1473206498943882482657385", - "1916661482186228282186362" + "3239366162346278601669126", + "1233132127406440210487348" ], - "LPTokenSupply": "3371514536510969378489817", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4456737917773137917867176" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9705172689907311706112", - "expectedQty": "9759677795374027738664", - "swapFee": "5823103613944387023", + "type": "redeemMasset", + "inputQty": "8387293834061912893030", + "expectedQtys": [ + "6092620798258503118209", + "2319282868904066145806" + ], + "redemptionFee": "5032376300437147735", "reserves": [ - "1473206498943882482657385", - "1906901804390854254447698" + "3233273541548020098550917", + "1230812844537536144341542" ], - "LPTokenSupply": "3361809946131423461222407" + "LPTokenSupply": "4448351127176706048688919" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "11773829108279378", - "10210139097404690" + "1407801633886463066112", + "8767604506363511701504" ], - "expectedQty": "21868786889940384", + "expectedQty": "10195053471549484642934", + "swapFee": "6120704505633070628", "reserves": [ - "1473206510717711590936763", - "1906901814600993351852388" + "3231865739914133635484805", + "1222045240031172632640038" ], - "LPTokenSupply": "3361809968000210351162791" + "LPTokenSupply": "4438150565071101494282418" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3875412194708686897152", - "expectedQty": "3897139264178153698570", - "swapFee": "2325247316825212138", - "reserves": [ - "1473206510717711590936763", - "1903004675336815198153818" + "type": "redeemBassets", + "inputQtys": [ + "129134483319800538857472", + "117432757232787985006592" ], - "LPTokenSupply": "3357934788330233346786852" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "13282310709402178420736", - "expectedQty": "13356594928456084894720", - "swapFee": "7969386425641307052", + "expectedQty": "246186691057028753583915", + "swapFee": "147800695051248000950", "reserves": [ - "1473206510717711590936763", - "1889648080408359113259098" + "3102731256594333096627333", + "1104612482798384647633446" ], - "LPTokenSupply": "3344653274559473732496821" + "LPTokenSupply": "4191830853388526617497647" }, { "type": "redeemMasset", - "inputQty": "5019741142341565336780", + "inputQty": "681136776849735339212", "expectedQtys": [ - "2209699379015236975370", - "2834330529669906119643" + "503864876899721533182", + "179382417179765872249" ], - "redemptionFee": "3011844685404939202", + "redemptionFee": "408682066109841203", "reserves": [ - "1470996811338696353961393", - "1886813749878689207139455" + "3102227391717433375094151", + "1104433100381204881761197" ], - "LPTokenSupply": "3339633834601600707653961" + "LPTokenSupply": "4191149757479883493142555" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "218695213182814093312", - "157315352084951760896" + "1103488534379309301760", + "278220776823545430016" ], - "expectedQty": "374065927468938467437", - "swapFee": "224574301062000280", + "expectedQty": "1375733829298568675421", "reserves": [ - "1470778116125513539868081", - "1886656434526604255378559" + "3103330880251812684395911", + "1104711321158028427191213" ], - "LPTokenSupply": "3339259566557260813386271" + "LPTokenSupply": "4192525491309182061817976" }, { - "type": "mintMulti", - "inputQtys": [ - "174936655727849897984", - "246109538585841729536" + "type": "redeemMasset", + "inputQty": "407028658246466771353", + "expectedQtys": [ + "301104124503951819688", + "107185842574382961353" ], - "expectedQty": "418750919678131461474", + "redemptionFee": "244217194947880062", "reserves": [ - "1470953052781241389766065", - "1886902544065190097108095" + "3103029776127308732576223", + "1104604135315454044229860" ], - "LPTokenSupply": "3339678317476938944847745" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "21928049114226683281408", - "expectedQty": "21792784755674353632948", - "reserves": [ - "1470953052781241389766065", - "1908830593179416780389503" - ] + "LPTokenSupply": "4192118487072655089834629" }, { "type": "mint", "inputIndex": 0, - "inputQty": "22589040789926748160", - "expectedQty": "22489166549029960376", + "inputQty": "44920490997883451998208", + "expectedQty": "44630400038406942833912", "reserves": [ - "1470975641822031316514225", - "1908830593179416780389503" + "3147950267125192184574431", + "1104604135315454044229860" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4551716189859166552064", - "expectedQty": "4569158462034039907059", - "swapFee": "2731029713915499931", + "type": "mintMulti", + "inputQtys": [ + "1375395977285460033536", + "509216875068607954944" + ], + "expectedQty": "1877818681442266845282", "reserves": [ - "1466406483359997276607166", - "1908830593179416780389503" + "3149325663102477644607967", + "1105113352190522652184804" ], - "LPTokenSupply": "3356942148312274553438998" + "LPTokenSupply": "4238626705792504299513823" }, { - "type": "redeemMasset", - "inputQty": "14536484853458826035", - "expectedQtys": [ - "6346134325760224662", - "8260803185813030231" - ], - "redemptionFee": "8721890912075295", + "type": "mint", + "inputIndex": 1, + "inputQty": "135476140057008160768", + "expectedQty": "136044193889098726531", "reserves": [ - "1466400137225671516382504", - "1908822332376230967359272" - ], - "LPTokenSupply": "3356927612699610185820492" + "3149325663102477644607967", + "1105248828330579660345572" + ] }, { "type": "mintMulti", "inputQtys": [ - "1388374826536661504", - "32272206745816297472" + "5023880634804096466944", + "24803960756893026091008" ], - "expectedQty": "33454472179315095069", + "expectedQty": "29895949310018714432520", "reserves": [ - "1466401525600498053044008", - "1908854604582976783656744" + "3154349543737281741074911", + "1130052789087472686436580" ], - "LPTokenSupply": "3356961067171789500915561" + "LPTokenSupply": "4268658699296412112672874" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1888636984139008704512", - "expectedQty": "1899270478972584337547", - "swapFee": "1133182190483405222", - "reserves": [ - "1466401525600498053044008", - "1906955334104004199319197" - ], - "LPTokenSupply": "3355072543505869540551571" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "31905656922274093072384", - "25346274938638712176640" - ], - "expectedQty": "56954325633407753870322", - "swapFee": "34193111246792727958", + "inputIndex": 0, + "inputQty": "113624569318841685901312", + "expectedQty": "114277002043051754568459", + "swapFee": "68174741591305011540", "reserves": [ - "1434495868678223959971624", - "1881609059165365487142557" + "3040072541694229986506452", + "1130052789087472686436580" ], - "LPTokenSupply": "3298087444072339673226085" + "LPTokenSupply": "4155040947451729557272716" }, { "type": "redeemMasset", - "inputQty": "770690265784892207923", + "inputQty": "4108128099265195435622", "expectedQtys": [ - "335008907384608583477", - "439426706482462100768" + "3003944891453859061735", + "1116623454307666581917" ], - "redemptionFee": "462414159470935324", + "redemptionFee": "2464876859559117261", "reserves": [ - "1434160859770839351388147", - "1881169632458883025041789" + "3037068596802776127444717", + "1128936165633165019854663" ], - "LPTokenSupply": "3297316800047970728111694" + "LPTokenSupply": "4150933065840150317748820" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1776096830482905038848", - "expectedQty": "1782850092798696539455", - "swapFee": "1065658098289743023", + "inputQty": "779887298031698051072", + "expectedQty": "784308338661520730796", + "swapFee": "467932378819018830", "reserves": [ - "1432378009678040654848692", - "1881169632458883025041789" + "3036284288464114606713921", + "1128936165633165019854663" ], - "LPTokenSupply": "3295540809783297652047148" + "LPTokenSupply": "4150153225335356501599631" }, { - "type": "mintMulti", - "inputQtys": [ - "298000205006607286272", - "114251612049076322304" + "type": "redeemMasset", + "inputQty": "4331187879347619679436", + "expectedQtys": [ + "3166829407066602563824", + "1177474804191206402185" ], - "expectedQty": "410233203198266024936", + "redemptionFee": "2598712727608571807", "reserves": [ - "1432676009883047262134964", - "1881283884070932101364093" + "3033117459057048004150097", + "1127758690828973813452478" ], - "LPTokenSupply": "3295951042986495918072084" + "LPTokenSupply": "4145822297327281642777375" }, { - "type": "redeemBassets", - "inputQtys": [ - "153632400248425676800", - "291930378349876641792" + "type": "redeemMasset", + "inputQty": "4881122165267717790105", + "expectedQtys": [ + "3568926207639684120713", + "1326980442374369300177" ], - "expectedQty": "443069353676975123825", - "swapFee": "266001212933945441", + "redemptionFee": "2928673299160630674", "reserves": [ - "1432522377482798836458164", - "1880991953692582224722301" + "3029548532849408320029384", + "1126431710386599444152301" ], - "LPTokenSupply": "3295507734231727302397361" + "LPTokenSupply": "4140941468029343841050337" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "461586193819949400064", - "999730563209725083648" + "35473654299319706058752", + "76050313085076293812224" ], - "expectedQty": "1453060877681354513173", - "swapFee": "872359942574357322", + "expectedQty": "111542080185163245896766", "reserves": [ - "1432060791288978887058100", - "1879992223129372499638653" + "3065022187148728026088136", + "1202482023471675737964525" ], - "LPTokenSupply": "3294053888230097630962597" + "LPTokenSupply": "4252483548214507086947103" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "94767186075728347136", + "expectedQty": "95030497509073415624", + "reserves": [ + "3065022187148728026088136", + "1202576790657751466311661" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "17284483049079854596096", + "expectedQty": "17180723251910879836982", + "reserves": [ + "3082306670197807880684232", + "1202576790657751466311661" + ] + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "658032367276187582464", - "expectedQty": "661762323028219489613", - "swapFee": "394819420365712549", + "inputQty": "84252864975580667314176", + "outputIndex": 0, + "expectedQty": "84941812490165681773380", + "swapFee": "0", + "reserves": [ + "2997364857707642198910852", + "1286829655633332133625837" + ], + "LPTokenSupply": "4269759301963927040199709", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "7230621779870041", + "5942809078962056" + ], + "expectedQty": "13143829725594853", + "swapFee": "7891032454829", "reserves": [ - "1432060791288978887058100", - "1879330460806344280149040" + "2997364850477020419040811", + "1286829649690523054663781" ], - "LPTokenSupply": "3293395895344763479951387" + "LPTokenSupply": "4269759288812995385395508" }, { "type": "mintMulti", "inputQtys": [ - "744430501287807025152", - "513627758582155640832" + "114950548168372830339072", + "194426096828444496101376" ], - "expectedQty": "1251591126066586306717", + "expectedQty": "309021057519303609245815", "reserves": [ - "1432805221790266694083252", - "1879844088564926435789872" + "3112315398645393249379883", + "1481255746518967550765157" ], - "LPTokenSupply": "3294647486470830066258104" + "LPTokenSupply": "4578780346332298994641323" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "10289602045778394", - "expectedQty": "10244452359499694", + "inputIndex": 1, + "inputQty": "51083215032302272512", + "expectedQty": "51130862950495145738", "reserves": [ - "1432805232079868739861646", - "1879844088564926435789872" + "3112315398645393249379883", + "1481306829733999853037669" ] }, { "type": "redeemBassets", "inputQtys": [ - "15409121206267724", - "6557396060131027" + "3865044495381169700864", + "7441700175407058255872" ], - "expectedQty": "21858039242873462", - "swapFee": "13122697164022", + "expectedQty": "11293686853560856813783", + "swapFee": "6780280280304696906", "reserves": [ - "1432805216670747533593922", - "1879844082007530375658845" + "3108450354150012079679019", + "1473865129558592794781797" ], - "LPTokenSupply": "3294647474845432755436715" + "LPTokenSupply": "4567531688089436358746061" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "889490549840615", - "2955263547870061" + "58459917662107937538048", + "25261768095415427661824" ], - "expectedQty": "3822434474374048", + "expectedQty": "83441303956093014946717", + "swapFee": "50094839277222142253", "reserves": [ - "1432805217560238083434537", - "1879844084962793923528906" + "3049990436487904142140971", + "1448603361463177367119973" ], - "LPTokenSupply": "3294647478667867229810763" + "LPTokenSupply": "4484045298777993843871315" }, { "type": "redeemBassets", "inputQtys": [ - "3223051190166708813824", - "1698369730570921181184" + "103843053848383602032640", + "108963304987300013801472" ], - "expectedQty": "4896699914158435929003", - "swapFee": "2939783818786333357", + "expectedQty": "212377638461700963865263", + "swapFee": "127503084927977364738", "reserves": [ - "1429582166370071374620713", - "1878145715232223002347722" + "2946147382639520540108331", + "1339640056475877353318501" ], - "LPTokenSupply": "3289748132948271886181737" + "LPTokenSupply": "4271552907539857700377786" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "336928639128607", + "expectedQty": "337358532929211", + "reserves": [ + "2946147382639520540108331", + "1339640056812805992447108" + ] }, { "type": "mintMulti", "inputQtys": [ - "7727066958946094809088", - "7276239662391556571136" + "3191790149402227638272", + "1063801202146094612480" ], - "expectedQty": "14924050165828052550909", + "expectedQty": "4239675028559940248478", "reserves": [ - "1437309233329017469429801", - "1885421954894614558918858" + "2949339172788922767746603", + "1340703858014952087059588" ], - "LPTokenSupply": "3304672183114099938732646" + "LPTokenSupply": "4275792582905776173555475" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "651341211963975601750016", - "expectedQty": "652862384249834380125549", - "swapFee": "390804727178385361050", + "inputIndex": 1, + "inputQty": "20916953653840965632", + "expectedQty": "20877711338986123120", + "swapFee": "12550172192304579", "reserves": [ - "784446849079183089304252", - "1885421954894614558918858" + "2949339172788922767746603", + "1340682980303613100936468" ], - "LPTokenSupply": "2653370051622842175518735" + "LPTokenSupply": "4275771667207139551820300" }, { "type": "redeemBassets", "inputQtys": [ - "6307528178166207488", - "1817607690055755008" + "67716964037220171776", + "206748827955065913344" ], - "expectedQty": "8105756072850046328", - "swapFee": "4866373467790702", + "expectedQty": "274363685361328186735", + "swapFee": "164717041441661909", "reserves": [ - "784440541551004923096764", - "1885420137286924503163850" + "2949271455824885547574827", + "1340476231475658035023124" ], - "LPTokenSupply": "2653361941487033204460774" + "LPTokenSupply": "4275497155276440926137845" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "766715055351206379520", - "expectedQty": "766231413936093645735", + "inputQty": "4781297173837696204800", + "expectedQty": "4804421693657735988672", + "swapFee": "2868778304302617722", "reserves": [ - "785207256606356129476284", - "1885420137286924503163850" - ] + "2944467034131227811586155", + "1340476231475658035023124" + ], + "LPTokenSupply": "4270716144980433660194817" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1139840543155968802816", - "102788268312107401216" + "1167313009019079229440", + "2109307233450052812800" ], - "expectedQty": "1241039650950088412379", - "swapFee": "745070833069894984", + "expectedQty": "3272967836411333203036", "reserves": [ - "784067416063200160673468", - "1885317349018612395762634" + "2945634347140246890815595", + "1342585538709108087835924" ], - "LPTokenSupply": "2652886462686269446788643" + "LPTokenSupply": "4273989112816844993397853" }, { "type": "redeemBassets", "inputQtys": [ - "485882292561127997440", - "650638882625247379456" + "6092073020207766962176", + "3876360191433159737344" ], - "expectedQty": "1130693895418154368422", - "swapFee": "678823631429750471", + "expectedQty": "9940385230034057208284", + "swapFee": "5967811825115503627", "reserves": [ - "783581533770639032676028", - "1884666710135987148383178" + "2939542274120039123853419", + "1338709178517674928098580" ], - "LPTokenSupply": "2651755157849583005644796" + "LPTokenSupply": "4264043356556168332236303" }, { "type": "redeemBassets", "inputQtys": [ - "1008830221436330704896", - "23526797015486723784704" + "295477167846671515648", + "489093379808358825984" ], - "expectedQty": "24335671727603294780286", - "swapFee": "14610169138044803750", + "expectedQty": "783589692079007889350", + "swapFee": "470436076893540858", "reserves": [ - "782572703549202701971132", - "1861139913120500424598474" + "2939246796952192452337771", + "1338220085137866569272596" ], - "LPTokenSupply": "2627406336969755470541134" + "LPTokenSupply": "4263259343471620120160179" }, { - "type": "redeemBassets", - "inputQtys": [ - "51606717850610466816", - "28508409906402504704" - ], - "expectedQty": "79836143045093754007", - "swapFee": "47930444093512359", + "type": "redeem", + "inputIndex": 0, + "inputQty": "13872878672266009772032", + "expectedQty": "13939820182345104291003", + "swapFee": "8323727203359605863", "reserves": [ - "782521096831352091504316", - "1861111404710594022093770" + "2925306976769847348046768", + "1338220085137866569272596" ], - "LPTokenSupply": "2627326457689310692626002" + "LPTokenSupply": "4249387297172074446348733" }, { - "type": "redeemBassets", - "inputQtys": [ - "13943666650125273399296", - "15346157680918980984832" + "type": "redeem", + "inputIndex": 0, + "inputQty": "578602258191955132416", + "expectedQty": "581389536416903914842", + "swapFee": "347161354915173079", + "reserves": [ + "2924725587233430444131926", + "1338220085137866569272596" ], - "expectedQty": "29150211247018089715497", - "swapFee": "17500627124485545156", + "LPTokenSupply": "4248808729630017982733624" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "23184744009596866560", + "expectedQty": "23059755339155688053", + "reserves": [ + "2924748771977440040998486", + "1338220085137866569272596" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "71601511707194097664", + "expectedQty": "71946410657825022893", + "swapFee": "42960907024316458", "reserves": [ - "768577430181226818105020", - "1845765247029675041108938" + "2924676825566782215975593", + "1338220085137866569272596" ], - "LPTokenSupply": "2598160495877880565919863" + "LPTokenSupply": "4248760192169740646755658" }, { "type": "redeemMasset", - "inputQty": "2882279975552405094", + "inputQty": "368127419272408544051", "expectedQtys": [ - "852112941823026081", - "2046378663748039230" + "253252170302656489907", + "115878492263189654432" ], - "redemptionFee": "1729367985331443", + "redemptionFee": "220876451563445126", "reserves": [ - "768576578068284995078939", - "1845763200651011293069708" + "2924423573396479559485686", + "1338104206645603379618164" ], - "LPTokenSupply": "2598157613770841812047913" + "LPTokenSupply": "4248392086838113394556119" }, { - "type": "redeemMasset", - "inputQty": "733001217177061687296", - "expectedQtys": [ - "216703383849122607795", - "520420661751839501883" + "type": "mintMulti", + "inputQtys": [ + "549680838072310784", + "717576484295636352" + ], + "expectedQty": "1265167995844287096", + "reserves": [ + "2924424123077317631796470", + "1338104924222087675254516" ], - "redemptionFee": "439800730306237012", + "LPTokenSupply": "4248393352006109238843215" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "7976962029660322816", + "expectedQty": "7962477656624070790", + "swapFee": "4786177217796193", "reserves": [ - "768359874684435872471144", - "1845242779989259453567825" + "2924424123077317631796470", + "1338096961744431051183726" ], - "LPTokenSupply": "2597424656533737780984318" + "LPTokenSupply": "4248385375522697300300018" }, { "type": "mintMulti", "inputQtys": [ - "10353035186730593943552", - "10894387890393234538496" + "10578569521322270916608", + "7675041000911808757760" ], - "expectedQty": "21147930444754517337392", + "expectedQty": "18205904228658403193146", "reserves": [ - "778712909871166466414696", - "1856137167879652688106321" + "2935002692598639902713078", + "1345772002745342859941486" ], - "LPTokenSupply": "2618572586978492298321710" + "LPTokenSupply": "4266591279751355703493164" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "58651394510946161393664", - "3039693600123004649472" + "21940864247860738129920", + "20383427612994388885504" ], - "expectedQty": "61645744424116169426759", - "swapFee": "37009652445937264014", + "expectedQty": "42230314929653749088382", "reserves": [ - "720061515360220305021032", - "1853097474279529683456849" + "2956943556846500640842998", + "1366155430358337248826990" ], - "LPTokenSupply": "2556893533867174785357337" + "LPTokenSupply": "4308821594681009452581546" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "13301235354666771939328", - "14760511098983133741056" + "3386453067018476032", + "3454131175502047232" + ], + "expectedQty": "6826378319674955454", + "swapFee": "4098285963383003", + "reserves": [ + "2956940170393433622366966", + "1366151976227161746779758" + ], + "LPTokenSupply": "4308814764614232410581388" + }, + { + "type": "redeemMasset", + "inputQty": "1697192101441801551872", + "expectedQtys": [ + "1164005574227967388716", + "537788532718058266145" + ], + "redemptionFee": "1018315260865080931", + "reserves": [ + "2955776164819205654978250", + "1365614187694443688513613" + ], + "LPTokenSupply": "4307117674344316695537609" + }, + { + "type": "redeemMasset", + "inputQty": "183496432325906739", + "expectedQtys": [ + "125849581402995689", + "58144448123273201" ], - "expectedQty": "27932391816373507145555", + "redemptionFee": "110097859395544", "reserves": [ - "733362750714887076960360", - "1867857985378512817197905" + "2955776038969624251982561", + "1365614129549995565240412" ], - "LPTokenSupply": "2584825925683548292502892" + "LPTokenSupply": "4307117490858894155570424" }, { "type": "swap", "inputIndex": 0, - "inputQty": "96434439174493214605312", + "inputQty": "190873684317547515609088", "outputIndex": 1, - "expectedQty": "97081076242650077693103", - "swapFee": "77094294534226221073", + "expectedQty": "189213702110919042262482", + "swapFee": "151862368849874259742", "reserves": [ - "829797189889380291565672", - "1770776909135862739504802" + "3146649723287171767591649", + "1176400427439076522977930" ], - "LPTokenSupply": "2584833635113001715124999", + "LPTokenSupply": "4307132677095779142996398", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "161435646637992587558912", - "expectedQty": "160105991037477976053727", + "type": "swap", + "inputIndex": 0, + "inputQty": "167617866915122241339392", + "outputIndex": 1, + "expectedQty": "165574943633765487740628", + "swapFee": "133235425532022871995", "reserves": [ - "829797189889380291565672", - "1932212555773855327063714" - ] + "3314267590202294008931041", + "1010825483805311035237302" + ], + "LPTokenSupply": "4307146000638332345283597", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "7647220919927673856", + "expectedQty": "7699115110285087349", + "swapFee": "4588332551956604", + "reserves": [ + "3314259891087183723843692", + "1010825483805311035237302" + ], + "LPTokenSupply": "4307138353876245672805401" }, { "type": "redeemMasset", - "inputQty": "3008998570015300812", + "inputQty": "164962476947459097", "expectedQtys": [ - "909076621894486373", - "2116817560227180313" + "126859283096186422", + "38691171007966168" ], - "redemptionFee": "1805399142009180", + "redemptionFee": "98977486168475", "reserves": [ - "829796280812758397079299", - "1932210438956295099883401" + "3314259764227900627657270", + "1010825445114140027271134" ], - "LPTokenSupply": "2744936617332449590078832" + "LPTokenSupply": "4307138188923666473963151" }, { - "type": "mintMulti", - "inputQtys": [ - "43917946432331339268096", - "82881064346095410216960" + "type": "redeemMasset", + "inputQty": "6621382447809285324", + "expectedQtys": [ + "5091969070758237045", + "1553014026845813665" ], - "expectedQty": "126058180121569761778127", + "redemptionFee": "3972829468685571", "reserves": [ - "873714227245089736347395", - "2015091503302390510100361" + "3314254672258829869420225", + "1010823892100113181457469" ], - "LPTokenSupply": "2870994797454019351856959" + "LPTokenSupply": "4307131567938501611546384" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "353345401125988204544", - "expectedQty": "353514721598435614635", - "swapFee": "212007240675592922", + "inputQty": "67460693259101248", + "outputIndex": 1, + "expectedQty": "66493374065676896", + "swapFee": "53572628817041", "reserves": [ - "873360712523491300732760", - "2015091503302390510100361" + "3314254739719523128521473", + "1010823825606739115780573" ], - "LPTokenSupply": "2870641473253617431211707" + "LPTokenSupply": "4307131567943858874428088", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "40984848861533", - "expectedQty": "40641725116015", + "inputQty": "559382887636093", + "expectedQty": "562906420271637", "reserves": [ - "873360712523491300732760", - "2015091503343375358961894" + "3314254739719523128521473", + "1010823826166122003416666" ] }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "5510394026447244099584", - "expectedQty": "5504297363571900035093", + "inputQty": "60507101663841145061376", + "outputIndex": 1, + "expectedQty": "59582211125753576019391", + "swapFee": "48048134446758086318", "reserves": [ - "878871106549938544832344", - "2015091503343375358961894" - ] + "3374761841383364273582849", + "951241615040368427397275" + ], + "LPTokenSupply": "4307136373320209970508356", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "420427898716421", + "inputQty": "32465473283934707", "expectedQtys": [ - "128394129107496", - "294384371855543" + "25422343981280941", + "7165777226209417" ], - "redemptionFee": "252256739229", + "redemptionFee": "19479283970360", "reserves": [ - "878871106421544415724848", - "2015091503048990987106351" + "3374761815961020292301908", + "951241607874591201187858" ], - "LPTokenSupply": "2876145770237428383320316" + "LPTokenSupply": "4307136340856684614970685" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "31561803301788537847808", - "64601655152659836960768" + "57714909031690264576", + "10683947525686474752" ], - "expectedQty": "95588486971790096586051", - "swapFee": "57387524697892793627", + "expectedQty": "68032498081910477928", "reserves": [ - "847309303119755877877040", - "1950489847896331150145583" + "3374819530870051982566484", + "951252291822116887662610" ], - "LPTokenSupply": "2780505634493410183219999" + "LPTokenSupply": "4307204373354766525448613" }, { - "type": "mintMulti", - "inputQtys": [ - "2447202307636573696", - "7266207822671296512" - ], - "expectedQty": "9649778475795692131", + "type": "mint", + "inputIndex": 0, + "inputQty": "28138368156382372298752", + "expectedQty": "27918300451315767431269", + "reserves": [ + "3402957899026434354865236", + "951252291822116887662610" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "801002653230363904", + "expectedQty": "807411153586723567", + "reserves": [ + "3402957899026434354865236", + "951253092824770118026514" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "2219977933962703273984", + "outputIndex": 1, + "expectedQty": "2183243391712159940316", + "swapFee": "1762045325874676953", "reserves": [ - "847311750322063514450736", - "1950497114104153821442095" + "3405177876960397058139220", + "949069849433057958086198" ], - "LPTokenSupply": "2780515284271885978912130" + "LPTokenSupply": "4335123657421768467071144", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "832115263146707386368", - "1044705375694763589632" + "24048580003879768064", + "27707936039375097856" ], - "expectedQty": "1867134680386419805478", + "expectedQty": "51790831773046912273", + "swapFee": "31093154956802228", "reserves": [ - "848143865585210221837104", - "1951541819479848585031727" + "3405153828380393178371156", + "949042141497018582988342" ], - "LPTokenSupply": "2782382418952272398717608" + "LPTokenSupply": "4335071838606155959036864" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2077968049610688299008", + "expectedQty": "2061623817555326626041", + "reserves": [ + "3407231796430003866670164", + "949042141497018582988342" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "9855394441911032872960", + "expectedQty": "9933907391975108600038", + "reserves": [ + "3407231796430003866670164", + "958897535938929615861302" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "160826530031026503680", + "expectedQty": "162089898244158491355", + "reserves": [ + "3407231796430003866670164", + "959058362468960642364982" + ] }, { "type": "redeemBassets", "inputQtys": [ - "8878844212064808861696", - "335885745797303762944" + "739640620027698816", + "333916306975609088" ], - "expectedQty": "9202386204318915718022", - "swapFee": "5524746570533669632", + "expectedQty": "1070406639215837175", + "swapFee": "642629561266262", "reserves": [ - "839265021373145412975408", - "1951205933734051281268783" + "3407231056789383838971348", + "959058028552653666755894" ], - "LPTokenSupply": "2773175060476040002696916" + "LPTokenSupply": "4347228388728924731777486" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "8797810444043320", - "outputIndex": 0, - "expectedQty": "8732654955205000", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "12817288184288033898496", + "expectedQty": "12910214967158937856814", + "swapFee": "7690372910572820339", "reserves": [ - "839265012640490457770408", - "1951205942531861725312103" + "3394320841822224901114534", + "959058028552653666755894" ], - "LPTokenSupply": "2773175060476040002696916", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4334411869581927755161023" }, { "type": "redeemMasset", - "inputQty": "1436487359959360392396", + "inputQty": "904198404061510762496", "expectedQtys": [ - "434473194042781499380", - "1010106063423159395840" + "707661868933421001567", + "199948333857804173529" ], - "redemptionFee": "861892415975616235", + "redemptionFee": "542519042436906457", "reserves": [ - "838830539446447676271028", - "1950195836468438565916263" + "3393613179953291480112967", + "958858080218795862582365" ], - "LPTokenSupply": "2771738659305322239866143" + "LPTokenSupply": "4333507725429770488089172" }, { - "type": "redeemBassets", - "inputQtys": [ - "156980994297232388784128", - "71726819621331997294592" + "type": "mint", + "inputIndex": 1, + "inputQty": "7015274314917195284480", + "expectedQty": "7069267515027445532998", + "reserves": [ + "3393613179953291480112967", + "965873354533713057866845" + ] + }, + { + "type": "redeemMasset", + "inputQty": "5257203546817731", + "expectedQtys": [ + "4107797356437053", + "1169140913243736" ], - "expectedQty": "228052715592207778380392", - "swapFee": "136913777621897805711", + "redemptionFee": "3154322128090", "reserves": [ - "681849545149215287486900", - "1878469016847106568621671" + "3393613175845494123675914", + "965873353364572144623109" ], - "LPTokenSupply": "2543562721313254753460610" + "LPTokenSupply": "4340576987687909819017248" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "534106099532796163784704", - "expectedQty": "532963729140367895913230", + "type": "mintMulti", + "inputQtys": [ + "35188134296768093356032", + "5818936879804656386048" + ], + "expectedQty": "40778833366130018077372", "reserves": [ - "1215955644682011451271604", - "1878469016847106568621671" - ] + "3428801310142262217031946", + "971692290244376801009157" + ], + "LPTokenSupply": "4381355821054039837094620" }, { "type": "redeemBassets", "inputQtys": [ - "44010849059261544136704", - "23418984753730569633792" + "265142870811852708773888", + "182886180793325197459456" ], - "expectedQty": "67095791194224286006757", - "swapFee": "40281643702756225339", + "hardLimitError": true + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "140134204091439038464", + "expectedQty": "138978350643969519026", + "swapFee": "84080522454863423", "reserves": [ - "1171944795622749907134900", - "1855050032093375998987879" + "3428801310142262217031946", + "971553311893732831490131" ], - "LPTokenSupply": "3009394405780065882764276" + "LPTokenSupply": "4381215695258000643542498" }, { - "type": "redeemMasset", - "inputQty": "366138981710843238", - "expectedQtys": [ - "142499506366638093", - "225559868388045400" + "type": "mintMulti", + "inputQtys": [ + "49616695536807978205184", + "12418745615181263405056" ], - "redemptionFee": "219683389026505", + "expectedQty": "61745810500025802716320", "reserves": [ - "1171944653123243540496807", - "1855049806533507610942479" + "3478418005679070195237130", + "983972057508914094895187" ], - "LPTokenSupply": "3009394039663052510823688" + "LPTokenSupply": "4442961505758026446258818" }, { "type": "mintMulti", "inputQtys": [ - "3768819258357518958592", - "1094175196153867796480" + "69899147061010534236160", + "66457708830445034012672" ], - "expectedQty": "4840916821206093685118", + "expectedQty": "136306496364997010320813", "reserves": [ - "1175713472381601059455399", - "1856143981729661478738959" + "3548317152740080729473290", + "1050429766339359128907859" ], - "LPTokenSupply": "3014234956484258604508806" + "LPTokenSupply": "4579268002123023456579631" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "326736072835723274747904", - "outputIndex": 0, - "expectedQty": "324872947527727394327506", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "348087462341790016", + "59113218976900800" + ], + "expectedQty": "404989290934748886", "reserves": [ - "850840524853873665127893", - "2182880054565384753486863" + "3548317500827543071263306", + "1050429825452578105808659" ], - "LPTokenSupply": "3014234956484258604508806", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4579268407112314391328517" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "7488927550200021516288", - "expectedQty": "7484484448181514444716", - "swapFee": "4493356530120012909", + "inputQty": "56843159863414497280", + "expectedQty": "57239182927928343185", + "swapFee": "34105895918048698", "reserves": [ - "843356040405692150683177", - "2182880054565384753486863" + "3548260261644615142920121", + "1050429825452578105808659" ], - "LPTokenSupply": "3006746478269711594993808" + "LPTokenSupply": "4579211567363040568636106" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "1434916599758605254656", - "outputIndex": 0, - "expectedQty": "1421993445027534381928", - "swapFee": "0", + "inputQty": "10965109691373070581760", + "expectedQty": "10883001507317914189611", + "swapFee": "6579065814823842349", "reserves": [ - "841934046960664616301249", - "2184314971165143358741519" + "3548260261644615142920121", + "1039546823945260191619048" ], - "LPTokenSupply": "3006746478269711594993808", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "467928955044156409905152", - "outputIndex": 0, - "hardLimitError": true + "LPTokenSupply": "4568247115578248980438580" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "27687534675549843619840", - "outputIndex": 0, - "expectedQty": "27427320572304709721090", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "178866061700652564480", + "outputIndex": 1, + "expectedQty": "176128737986361357196", + "swapFee": "142008896650772370", "reserves": [ - "814506726388359906580159", - "2212002505840693202361359" + "3548439127706315795484601", + "1039370695207273830261852" ], - "LPTokenSupply": "3006746478269711594993808", + "LPTokenSupply": "4568247129779138645515817", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "200355789439327130353664", - "expectedQty": "200227650897518110631482", + "type": "redeemMasset", + "inputQty": "5262304448431964710502", + "expectedQtys": [ + "4085103694339144973591", + "1196564718731309154986" + ], + "redemptionFee": "3157382669059178826", "reserves": [ - "1014862515827687036933823", - "2212002505840693202361359" - ] + "3544354024011976650511010", + "1038174130488542521106866" + ], + "LPTokenSupply": "4562985141068973586723197" }, { "type": "redeemMasset", - "inputQty": "2074725063914798501068", + "inputQty": "1132484346789207264460", "expectedQtys": [ - "656162874049425195761", - "1430177880255258026447" + "879143142566122202507", + "257509171325788700331" + ], + "redemptionFee": "679490608073524358", + "reserves": [ + "3543474880869410528308503", + "1037916621317216732406535" + ], + "LPTokenSupply": "4561852724671245186811172" + }, + { + "type": "mintMulti", + "inputQtys": [ + "696929295942363774976", + "197424655922262933504" ], - "redemptionFee": "1244835038348879100", + "expectedQty": "890463794772118719066", "reserves": [ - "1014206352953637611738062", - "2210572327960437944334912" + "3544171810165352892083479", + "1038114045973138995340039" ], - "LPTokenSupply": "3204899528586818742012132" + "LPTokenSupply": "4562743188466017305530238" }, { "type": "redeemBassets", "inputQtys": [ - "54441332087346381717504", - "61258349480919517102080" + "1610739783863922176", + "2217465736191053824" ], - "expectedQty": "115107890281762247127534", - "swapFee": "69106197887790022289", + "expectedQty": "3831619348345179761", + "swapFee": "2300351820099167", "reserves": [ - "959765020866291230020558", - "2149313978479518427232832" + "3544170199425569028161303", + "1038111828507402804286215" ], - "LPTokenSupply": "3089729442726957483864536" + "LPTokenSupply": "4562739354776352322261225" }, { "type": "mint", "inputIndex": 1, - "inputQty": "900066383039723864064", - "expectedQty": "892546929288577041248", + "inputQty": "138700830576445554688", + "expectedQty": "139677581982080325748", "reserves": [ - "959765020866291230020558", - "2150214044862558151096896" + "3544170199425569028161303", + "1038250529337979249840903" ] }, { - "type": "redeemMasset", - "inputQty": "465765389291054799257", - "expectedQtys": [ - "144552492951191653429", - "323848852381597331113" + "type": "redeemBassets", + "inputQtys": [ + "3681725513110515613696", + "3018916225807666380800" ], - "redemptionFee": "279459233574632879", + "expectedQty": "6694038879503392141554", + "swapFee": "4018834628479122758", "reserves": [ - "959620468373340038367129", - "2149890196010176553765783" + "3540488473912458512547607", + "1035231613112171583460103" ], - "LPTokenSupply": "3090156252212878363569814" + "LPTokenSupply": "4556181376527665379234935" }, { "type": "redeemMasset", - "inputQty": "28343234066406792442675", + "inputQty": "61012460303042432", "expectedQtys": [ - "8796457551952264694459", - "19707184740044926847982" + "47382728271676283", + "13854613165323352" ], - "redemptionFee": "17005940439844075465", + "redemptionFee": "36607476181825", "reserves": [ - "950824010821387773672670", - "2130183011270131626917801" + "3540488426529730240871324", + "1035231599257558418136751" ], - "LPTokenSupply": "3061814718740515555534685" - }, - { - "type": "mintMulti", - "inputQtys": [ - "142806380415751360", - "663732623585298304" - ], - "expectedQty": "800782266225200311", - "reserves": [ - "950824153627768189424030", - "2130183675002755212216105" - ], - "LPTokenSupply": "3061815519522781780734996" + "LPTokenSupply": "4556181315518865823810685" }, { "type": "redeemBassets", "inputQtys": [ - "166948378694555041792", - "609025310267943026688" + "106175597434551125671936", + "27880225498046536876032" ], - "expectedQty": "770639238580881100248", - "swapFee": "462661139832428117", + "expectedQty": "133447574834897714800321", + "swapFee": "80116614869860545207", "reserves": [ - "950657205249073634382238", - "2129574649692487269189417" + "3434312829095179115199388", + "1007351373759511881260719" ], - "LPTokenSupply": "3061044463889175050449441" + "LPTokenSupply": "4422661635730585234519676" }, { - "type": "redeemMasset", - "inputQty": "16588298299293545214771", - "expectedQtys": [ - "5148675106090957440979", - "11533587422357323723074" + "type": "mintMulti", + "inputQtys": [ + "5606423391932593995776", + "11543272841745753178112" ], - "redemptionFee": "9952978979576127128", + "expectedQty": "17187019504984761204225", "reserves": [ - "945508530142982676941259", - "2118041062270129945466343" + "3439919252487111709195164", + "1018894646601257634438831" ], - "LPTokenSupply": "3044457160887779462847382" + "LPTokenSupply": "4439848655235569995723901" }, { - "type": "redeemMasset", - "inputQty": "114086345718091", - "expectedQtys": [ - "35410217843245", - "79322706273822" + "type": "mintMulti", + "inputQtys": [ + "5309279793159707033600", + "4533798524887633494016" ], - "redemptionFee": "68451807430", + "expectedQty": "9833892905701517380345", "reserves": [ - "945508530107572459098014", - "2118041062190807239192521" + "3445228532280271416228764", + "1023428445126145267932847" ], - "LPTokenSupply": "3044457160773699962310034" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1711237703384231837696", - "expectedQty": "1696924171930606382078", - "reserves": [ - "945508530107572459098014", - "2119752299894191471030217" - ] + "LPTokenSupply": "4449682548141271513104246" }, { "type": "mintMulti", "inputQtys": [ - "26278796088787886669824", - "17471577633783348723712" + "4271723300509632512", + "5296341519506356224" ], - "expectedQty": "43564473106305944167647", + "expectedQty": "9571745682575981344", "reserves": [ - "971787326196360345767838", - "2137223877527974819753929" + "3445232804003571925861276", + "1023433741467664774289071" ], - "LPTokenSupply": "3089718558051936512859759" + "LPTokenSupply": "4449692119886954089085590" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "39784946440278433792", - "expectedQty": "40093441887212357493", - "swapFee": "23870967864167060", + "type": "redeemMasset", + "inputQty": "1539674539488723127500", + "expectedQtys": [ + "1191398048620892719822", + "353914243780691364583" + ], + "redemptionFee": "923804723693233876", "reserves": [ - "971787326196360345767838", - "2137183784086087607396436" + "3444041405954951033141454", + "1023079827223884082924488" ], - "LPTokenSupply": "3089678775492593020842673" + "LPTokenSupply": "4448152537727937735281477" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "14019189933149284352", - "expectedQty": "14033530461670135861", - "swapFee": "8411513959889570", + "type": "mintMulti", + "inputQtys": [ + "41379596650134185705472", + "103357377551165718265856" + ], + "expectedQty": "145054176923620868483400", "reserves": [ - "971773292665898675631977", - "2137183784086087607396436" + "3485421002605085218846926", + "1126437204775049801190344" ], - "LPTokenSupply": "3089664757143811267547278" + "LPTokenSupply": "4593206714651558603764877" }, { "type": "redeemMasset", - "inputQty": "338182624679527343718", + "inputQty": "987739342201280921", "expectedQtys": [ - "106302685377819532061", - "233787424607057861620" + "749067492426070230", + "242087682298815349" ], - "redemptionFee": "202909574807716406", + "redemptionFee": "592643605320768", "reserves": [ - "971666989980520856099916", - "2136949996661480549534816" + "3485420253537592792776696", + "1126436962687367502374995" ], - "LPTokenSupply": "3089326594810089220975200" + "LPTokenSupply": "4593205726971480763016032" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2765999982225205493760", - "expectedQty": "2787440775611852107087", - "swapFee": "1659599989335123296", + "type": "mintMulti", + "inputQtys": [ + "24719511782430078926848", + "42272534722560567279616" + ], + "expectedQty": "67032524027070296196527", "reserves": [ - "971666989980520856099916", - "2134162555885868697427729" + "3510139765320022871703544", + "1168709497409928069654611" ], - "LPTokenSupply": "3086560760787862948993769" + "LPTokenSupply": "4660238250998551059212559" }, { "type": "redeemMasset", - "inputQty": "4090415673568629725593", + "inputQty": "42151161557969587", "expectedQtys": [ - "1286913649210158519762", - "2826568105249537481443" + "31729642669314306", + "10564461023297760" ], - "redemptionFee": "2454249404141177835", + "redemptionFee": "25290696934781", "reserves": [ - "970380076331310697580154", - "2131335987780619159946286" + "3510139733590380202389238", + "1168709486845467046356851" ], - "LPTokenSupply": "3082470590539234733385959" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "61755218418217791782912", - "expectedQty": "61240005817369898717074", - "reserves": [ - "970380076331310697580154", - "2193091206198836951729198" - ] + "LPTokenSupply": "4660238208849918570936450" }, { "type": "redeemMasset", - "inputQty": "72281552218803264", + "inputQty": "6888395473298581094", "expectedQtys": [ - "22298011112655453", - "50394245800850992" + "5185297838902117291", + "1726457416624142259" ], - "redemptionFee": "43368931331281", + "redemptionFee": "4133037283979148", "reserves": [ - "970380054033299584924701", - "2193091155804591150878206" + "3510134548292541300271947", + "1168707760388050422214592" ], - "LPTokenSupply": "3143710524079389306432897" + "LPTokenSupply": "4660231320867749000753270" }, { "type": "mint", "inputIndex": 1, - "inputQty": "97791815110890536960", - "expectedQty": "96970397741109744544", + "inputQty": "4288222448666900692992", + "expectedQty": "4308721409963831064865", "reserves": [ - "970380054033299584924701", - "2193188947619702041415166" + "3510134548292541300271947", + "1172995982836717322907584" ] }, { "type": "redeemBassets", "inputQtys": [ - "26083376726723", - "36858711408884" + "5250820245529883049984", + "5143881990632136245248" ], - "expectedQty": "62596485098436", - "swapFee": "37580439322", + "expectedQty": "10383074269362067661959", + "swapFee": "6233584712444707421", "reserves": [ - "970380054007216208197978", - "2193188947582843330006282" + "3504883728047011417221963", + "1167852100846085186662336" ], - "LPTokenSupply": "3143807494414500108683614" + "LPTokenSupply": "4654151357782109563919496" }, { "type": "redeemBassets", "inputQtys": [ - "1020381124710010454016", - "429644668413479223296" + "560361098840148017152", + "940110355291525480448" ], - "expectedQty": "1445011826458620456675", - "swapFee": "867527612442637856", + "expectedQty": "1501116677054509759389", + "swapFee": "901210732672309241", "reserves": [ - "969359672882506197743962", - "2192759302914429850782986" + "3504323366948171269204811", + "1166911990490793661181888" ], - "LPTokenSupply": "3142361701813190289852867" + "LPTokenSupply": "4652649430015395649081789" }, { "type": "redeemMasset", - "inputQty": "118111744111126878617", + "inputQty": "22079951858056810620518", "expectedQtys": [ - "36413397576777594814", - "82369649285873223255" + "16620393869279964971455", + "5534459826300987530353" ], - "redemptionFee": "70867046466676127", + "redemptionFee": "13247971114834086372", "reserves": [ - "969323259484929420149148", - "2192676933265143977559731" + "3487702973078891304233356", + "1161377530664492673651535" ], - "LPTokenSupply": "3142243597155783809641862" + "LPTokenSupply": "4630570802954450321869908" }, { - "type": "redeemBassets", - "inputQtys": [ - "11600645687879995392", - "26394675854762344448" - ], - "expectedQty": "37757591540585905537", - "swapFee": "22668155817842248", + "type": "mint", + "inputIndex": 1, + "inputQty": "119253589640546271232", + "expectedQty": "119826206717016609695", + "reserves": [ + "3487702973078891304233356", + "1161496784254133219922767" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "3201164561579431690240", + "expectedQty": "3221483176001693662085", + "swapFee": "1920698736947659014", "reserves": [ - "969311658839241540153756", - "2192650538589289215215283" + "3484481489902889610571271", + "1161496784254133219922767" ], - "LPTokenSupply": "3142205819162902987678300" + "LPTokenSupply": "4627489656669461601555264" }, { - "type": "mintMulti", - "inputQtys": [ - "44901726129387678466048", - "22817814735316553039872" + "type": "redeemMasset", + "inputQty": "8926628518147472438067", + "expectedQtys": [ + "6717683094292293987775", + "2239233393625031850816" ], - "expectedQty": "67460703511027650208071", + "redemptionFee": "5355977110888483462", "reserves": [ - "1014213384968629218619804", - "2215468353324605768255155" + "3477763806808597316583496", + "1159257550860508188071951" ], - "LPTokenSupply": "3209666522673930637886371" + "LPTokenSupply": "4618563563749025217965543" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "234934393422531067379712", - "expectedQty": "232944312036920078764077", + "type": "redeemBassets", + "inputQtys": [ + "8660475192793737216", + "11492380317283741696" + ], + "expectedQty": "20148072171489369311", + "swapFee": "12096100963471704", "reserves": [ - "1014213384968629218619804", - "2450402746747136835634867" - ] + "3477755146333404522846280", + "1159246058480190904330255" + ], + "LPTokenSupply": "4618543404790362861471697" }, { "type": "mintMulti", "inputQtys": [ - "186312319424784531456", - "84590509051828502528" + "1846153316805731680256", + "50561292081854717952" ], - "expectedQty": "270031545155023241807", + "expectedQty": "1884211330052421744557", "reserves": [ - "1014399697288054003151260", - "2450487337256188664137395" + "3479601299650210254526536", + "1159296619772272759048207" ], - "LPTokenSupply": "3442880866256005739892255" + "LPTokenSupply": "4620427616120415283216254" }, { - "type": "redeemMasset", - "inputQty": "273655394133959665254", - "expectedQtys": [ - "80580595779674085151", - "194658703186283191624" + "type": "mintMulti", + "inputQtys": [ + "2215171859396032200704", + "24831577432837878448128" ], - "redemptionFee": "164193236480375799", + "expectedQty": "27146720800026828356671", "reserves": [ - "1014319116692274329066109", - "2450292678553002380945771" + "3481816471509606286727240", + "1184128197205110637496335" ], - "LPTokenSupply": "3442607227281195428264580" + "LPTokenSupply": "4647574336920442111572925" }, { - "type": "redeemMasset", - "inputQty": "1065897626193192026112", - "expectedQtys": [ - "313864339190037529531", - "758202699446453960912" - ], - "redemptionFee": "639538575715915215", + "type": "redeem", + "inputIndex": 1, + "inputQty": "12863064389613313327104", + "expectedQty": "12796927556837880037692", + "swapFee": "7717838633767987996", "reserves": [ - "1014005252353084291536578", - "2449534475853555926984859" + "3481816471509606286727240", + "1171331269648272757458643" ], - "LPTokenSupply": "3441541393608859807829989" + "LPTokenSupply": "4634712044314692175044620" }, { "type": "redeemMasset", - "inputQty": "724608791223289040076", + "inputQty": "706460883123327180", "expectedQtys": [ - "213368424768384627763", - "515434521976945427433" + "530408632844398205", + "178436808035624051" ], - "redemptionFee": "434765274733973424", + "redemptionFee": "423876529873996", "reserves": [ - "1013791883928315906908815", - "2449019041331578981557426" + "3481815941100973442329035", + "1171331091211464721834592" ], - "LPTokenSupply": "3440816828294163992187255" + "LPTokenSupply": "4634711337896196704704839" }, { "type": "redeemMasset", - "inputQty": "8438850892473488179", + "inputQty": "50969829901035", "expectedQtys": [ - "2484905715130150291", - "6002791607175370754" + "38267989696500", + "12873881585910" ], - "redemptionFee": "5063310535484092", + "redemptionFee": "30581897940", "reserves": [ - "1013789399022600776758524", - "2449013038539971806186672" + "3481815941062705452632535", + "1171331091198590840248682" ], - "LPTokenSupply": "3440808389949602572247485" + "LPTokenSupply": "4634711337845229932993598" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "41092928947392088", - "outputIndex": 1, - "expectedQty": "41388756748513287", - "swapFee": "32850051083936", + "inputQty": "5411947839347580993536", + "expectedQty": "5374814810381413226862", "reserves": [ - "1013789440115529724150612", - "2449012997151215057673385" - ], - "LPTokenSupply": "3440808389952887577355878", - "hardLimitError": false, - "insufficientLiquidityError": false + "3487227888902053033626071", + "1171331091198590840248682" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "5628791821441171456000", - "5667815740083317768192" + "type": "redeemMasset", + "inputQty": "14728908385859790071398", + "expectedQtys": [ + "11062777838902277878567", + "3715895849241114641186" ], - "expectedQty": "11243226512492493016101", + "redemptionFee": "8837345031515874042", "reserves": [ - "1019418231936970895606612", - "2454680812891298375441577" + "3476165111063150755747504", + "1167615195349349725607496" ], - "LPTokenSupply": "3452051616465380070371979" + "LPTokenSupply": "4625358128004254707736466" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4209453648928319209472", - "outputIndex": 0, - "expectedQty": "4176041994811177210447", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "11687306447848953", + "expectedQtys": [ + "8778267452705403", + "2948547649246932" + ], + "redemptionFee": "7012383868709", "reserves": [ - "1015242189942159718396165", - "2458890266540226694651049" + "3476165102284883303042101", + "1167615192400802076360564" ], - "LPTokenSupply": "3452051616465380070371979", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4625358116317649498274383" }, { - "type": "redeemMasset", - "inputQty": "1402795578157882982", - "expectedQtys": [ - "412312128146759214", - "998609286257412838" + "type": "mintMulti", + "inputQtys": [ + "1805212745049996544", + "651424009270869120" ], - "redemptionFee": "841677346894729", + "expectedQty": "2447280203730334617", "reserves": [ - "1015241777630031571636951", - "2458889267930940437238211" + "3476166907497628353038645", + "1167615843824811347229684" ], - "LPTokenSupply": "3452050213753969647178469" + "LPTokenSupply": "4625360563597853228609000" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "7471005789938887680", - "expectedQty": "7471845598446357985", - "swapFee": "4482603473963332", + "inputIndex": 1, + "inputQty": "1662415674914536947712", + "expectedQty": "1653684025524080531699", + "swapFee": "997449404948722168", "reserves": [ - "1015234305784433125278966", - "2458889267930940437238211" + "3476166907497628353038645", + "1165962159799287266697985" ], - "LPTokenSupply": "3452042743196440055687122" + "LPTokenSupply": "4623698247667879186533504" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "462880819502053767249920", - "expectedQty": "461783342743719763581712", + "type": "mintMulti", + "inputQtys": [ + "9199599027655634059264", + "7593084353791479775232" + ], + "expectedQty": "16764904145371770671433", "reserves": [ - "1478115125286486892528886", - "2458889267930940437238211" - ] + "3485366506525283987097909", + "1173555244153078746473217" + ], + "LPTokenSupply": "4640463151813250957204937" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1754555025191294205952", - "expectedQty": "1741768845813012124832", + "inputIndex": 0, + "inputQty": "97264226715982135296", + "expectedQty": "96597487627182690511", "reserves": [ - "1478115125286486892528886", - "2460643822956131731444163" + "3485463770751999969233205", + "1173555244153078746473217" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "7430564448624136192", - "outputIndex": 0, - "expectedQty": "7402731101746307179", - "swapFee": "0", - "reserves": [ - "1478107722555385146221707", - "2460651253520580355580355" + "type": "redeemBassets", + "inputQtys": [ + "79559430443693309952", + "89876786685627727872" ], - "LPTokenSupply": "3915567854785972831393666", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "76940223271538393088", - "expectedQty": "77168468793889754961", - "swapFee": "46164133962923035", + "expectedQty": "169306993627264682380", + "swapFee": "101645183286330607", "reserves": [ - "1478030554086591256466746", - "2460651253520580355580355" + "3485384211321556275923253", + "1173465367366393118745345" ], - "LPTokenSupply": "3915490919179114689292881" + "LPTokenSupply": "4640390350826585917515520" }, { "type": "mintMulti", "inputQtys": [ - "476871956320992624640", - "1266017918711876288512" + "6176764371979616649216", + "10509060201643937628160" ], - "expectedQty": "1731966267309640307055", + "expectedQty": "16691696783430396800499", "reserves": [ - "1478507426042912249091386", - "2461917271439292231868867" + "3491560975693535892572469", + "1183974427568037056373505" ], - "LPTokenSupply": "3917222885446424329599936" + "LPTokenSupply": "4657082047610016314316019" }, { "type": "redeemMasset", - "inputQty": "44821235200852577484", + "inputQty": "3210797887596986777", "expectedQtys": [ - "16907071644424813808", - "28152588859342580203" - ], - "redemptionFee": "26892741120511546", - "reserves": [ - "1478490518971267824277578", - "2461889118850432889288664" - ], - "LPTokenSupply": "3917178066900497589073606" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4405186939930607616", - "expectedQty": "4434871639779894939", - "swapFee": "2643112163958364", - "reserves": [ - "1478490518971267824277578", - "2461884683978793109393725" - ], - "LPTokenSupply": "3917173661977868874861826" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "23159342414489012", - "expectedQty": "23228017812154672", - "swapFee": "13895605448693", - "reserves": [ - "1478490495743250012122906", - "2461884683978793109393725" + "2405791882700365727", + "815794450389689364" ], - "LPTokenSupply": "3917173638819916020917683" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "69492550977191197802496", - "expectedQty": "69689118776651053703554", - "swapFee": "41695530586314718681", + "redemptionFee": "1926478732558192", "reserves": [ - "1408801376966598958419352", - "2461884683978793109393725" + "3491558569901653192206742", + "1183973611773586666684141" ], - "LPTokenSupply": "3847685257395783454587055" + "LPTokenSupply": "4657078837004776590585061" }, { "type": "mintMulti", "inputQtys": [ - "342047049867261", - "35775601918108" + "17214098936036809768960", + "22329385129646732869632" ], - "expectedQty": "376431309291465", + "expectedQty": "39525456380687008014596", "reserves": [ - "1408801377308646008286613", - "2461884684014568711311833" + "3508772668837690001975702", + "1206302996903233399553773" ], - "LPTokenSupply": "3847685257772214763878520" + "LPTokenSupply": "4696604293385463598599657" }, { "type": "mintMulti", "inputQtys": [ - "12289853047942458376192", - "2091251066074972028928" + "27534025479103432359936", + "14167604420982754770944" ], - "expectedQty": "14324841940281418812740", + "expectedQty": "41576878433167310636845", "reserves": [ - "1421091230356588466662805", - "2463975935080643683340761" + "3536306694316793434335638", + "1220470601324216154324717" ], - "LPTokenSupply": "3862010099712496182691260" + "LPTokenSupply": "4738181171818630909236502" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "193233821896275", - "185390479573151" + "57022985497368240128", + "99974659594407673856" ], - "expectedQty": "376601751953697", + "expectedQty": "157040534018841279828", + "swapFee": "94280888944671570", "reserves": [ - "1421091230549822288559080", - "2463975935266034162913912" + "3536249671331296066095510", + "1220370626664621746650861" ], - "LPTokenSupply": "3862010100089097934644957" + "LPTokenSupply": "4738024046431812017752260" }, { "type": "redeemMasset", - "inputQty": "165815588023396859904", + "inputQty": "8647115301199108505", "expectedQtys": [ - "60978011056020101244", - "105727449858576913478" + "6449948613000117688", + "2225897083742459123" ], - "redemptionFee": "99489352814038115", + "redemptionFee": "5188269180719465", "reserves": [ - "1421030252538766268457836", - "2463870207816175586000434" + "3536243221382683065977822", + "1220368400767538004191738" ], - "LPTokenSupply": "3861844294450009819188864" + "LPTokenSupply": "4738015399835337736715701" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7403324163784175616", - "9703289890247507968" + "2217287848969796583424", + "3209691269801222078464" ], - "expectedQty": "17009789694138601437", + "expectedQty": "5425789943101427984198", + "swapFee": "3257428422914605553", "reserves": [ - "1421037655862930052633452", - "2463879911106065833508402" + "3534025933533713269394398", + "1217158709497736782113274" ], - "LPTokenSupply": "3861861304239703957790301" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "48377499602538148659200", - "expectedQty": "48211514533126371171317", - "reserves": [ - "1469415155465468201292652", - "2463879911106065833508402" - ] + "LPTokenSupply": "4732586678206655685586504" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "48715464030808688", - "36220173060187320" + "14181643535166853120", + "109643461447233978368" ], - "expectedQty": "84498660858157632", + "expectedQty": "124200715378221159445", + "swapFee": "74565168327929453", "reserves": [ - "1469415204180932232101340", - "2463879947326238893695722" + "3534011751890178102541278", + "1217049066036289548134906" ], - "LPTokenSupply": "3910072903271491187119250" + "LPTokenSupply": "4732462410382625969290550" }, { "type": "mintMulti", "inputQtys": [ - "584841271700343291904", - "2255667813456260104192" + "205467979919370485760", + "259413060414831525888" ], - "expectedQty": "2821929128582123639693", + "expectedQty": "464610440232234269189", "reserves": [ - "1470000045452632575393244", - "2466135615139695153799914" + "3534217219870097473027038", + "1217308479096704379660794" ], - "LPTokenSupply": "3912894832400073310758943" + "LPTokenSupply": "4732927020822858203559739" }, { "type": "mintMulti", "inputQtys": [ - "7051144713764177182720", - "4066143241011145474048" - ], - "expectedQty": "11062626334929790447983", - "reserves": [ - "1477051190166396752575964", - "2470201758380706299273962" - ], - "LPTokenSupply": "3923957458735003101206926" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "36032878136529313071104", - "expectedQty": "36136680928265390319277", - "swapFee": "21619726881917587842", - "reserves": [ - "1440914509238131362256687", - "2470201758380706299273962" + "38726796124078841856", + "50645295397747548160" ], - "LPTokenSupply": "3887926742571161979894606" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "319323188982528", - "expectedQty": "320221862385637", - "swapFee": "191593913389", + "expectedQty": "89328563029567145065", "reserves": [ - "1440914508917909499871050", - "2470201758380706299273962" + "3534255946666221551868894", + "1217359124392102127208954" ], - "LPTokenSupply": "3887926742251857950303416" + "LPTokenSupply": "4733016349385887770704804" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4888051839824226304", - "expectedQty": "4901808268677669482", - "swapFee": "2932831103894535", + "type": "mint", + "inputIndex": 1, + "inputQty": "584227081614782720", + "expectedQty": "586736811420099399", "reserves": [ - "1440909607109640822201568", - "2470201758380706299273962" - ], - "LPTokenSupply": "3887921854493301236466565" + "3534255946666221551868894", + "1217359708619183741991674" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "766052421972496220160", + "inputQty": "494505902101849438158848", "outputIndex": 0, - "expectedQty": "762977122864112716738", + "expectedQty": "498077893589807481685598", "swapFee": "0", "reserves": [ - "1440146629986776709484830", - "2470967810802678795494122" + "3036178053076414070183296", + "1711865610721033180150522" ], - "LPTokenSupply": "3887921854493301236466565", + "LPTokenSupply": "4733016936122699190804203", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "32112883242407008", - "expectedQty": "32003704369303314", + "type": "redeemMasset", + "inputQty": "16482677803134464819", + "expectedQtys": [ + "10567111563310274445", + "5957975643607012618" + ], + "redemptionFee": "9889606681880678", "reserves": [ - "1440146662099659951891838", - "2470967810802678795494122" - ] + "3036167485964850759908851", + "1711859652745389573137904" + ], + "LPTokenSupply": "4733000454433856724527451" + }, + { + "type": "redeemMasset", + "inputQty": "2879933775369572293017", + "expectedQtys": [ + "1846337222627645298120", + "1041006535834709386162" + ], + "redemptionFee": "1727960265221743375", + "reserves": [ + "3034321148742223114610731", + "1710818646209554863751742" + ], + "LPTokenSupply": "4730120693454513674408771" }, { "type": "mintMulti", "inputQtys": [ - "677251053598031216640", - "400240721562077954048" + "1082789235750366085120", + "1366735852937932701696" ], - "expectedQty": "1072225242491294785065", + "expectedQty": "2443863143695222858183", "reserves": [ - "1440823913153257983108478", - "2471368051524240873448170" + "3035403937977973480695851", + "1712185382062492796453438" ], - "LPTokenSupply": "3888994111739496900554944" + "LPTokenSupply": "4732564556598208897266954" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "1775207915481481871360", - "expectedQty": "1780191974704660545643", - "swapFee": "1065124749288889122", + "inputQty": "35666809107907767959552", + "outputIndex": 1, + "expectedQty": "35478577996945770287856", + "swapFee": "28398093421470308183", "reserves": [ - "1439043721178553322562835", - "2471368051524240873448170" + "3071070747085881248655403", + "1676706804065547026165582" ], - "LPTokenSupply": "3887219010336490347572496" + "LPTokenSupply": "4732567396407551044297772", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "128673322084499697172480", + "inputQty": "165901513840489398272", "outputIndex": 1, - "expectedQty": "129010915820501507364462", - "swapFee": "102564347328134003142", + "expectedQty": "164999399928744782839", + "swapFee": "132078540717160296", "reserves": [ - "1567717043263053019735315", - "2342357135703739366083708" + "3071236648599721738053675", + "1676541804665618281382743" ], - "LPTokenSupply": "3887229266771223160972810", + "LPTokenSupply": "4732567409615405116013801", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "1946680752282104391270", + "inputQty": "37857543289003501158", "expectedQtys": [ - "784624028343531551108", - "1172322326616883789300" + "24553208149644920800", + "13403226325885538046" + ], + "redemptionFee": "22714525973402100", + "reserves": [ + "3071212095391572093132875", + "1676528401439292395844697" + ], + "LPTokenSupply": "4732529554343568709852853" + }, + { + "type": "mintMulti", + "inputQtys": [ + "2673706750249298944", + "22020291614698319872" ], - "redemptionFee": "1168008451369262634", + "expectedQty": "24676611377325966627", "reserves": [ - "1566932419234709488184207", - "2341184813377122482294408" + "3071214769098322342431819", + "1676550421730907094164569" ], - "LPTokenSupply": "3885282702819786193507803" + "LPTokenSupply": "4732554230954946035819480" }, { "type": "redeemMasset", - "inputQty": "191545713476276584448", + "inputQty": "927220511573212240281", "expectedQtys": [ - "77203932800255468622", - "115351927617416799740" + "601363359925548927583", + "328279221903031017583" + ], + "redemptionFee": "556332306943927344", + "reserves": [ + "3070613405738396793504236", + "1676222142509004063146986" + ], + "LPTokenSupply": "4731627066076603517971933" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1629648730555143421952", + "expectedQty": "1636595097780315247883", + "swapFee": "977789238333086053", + "reserves": [ + "3068976810640616478256353", + "1676222142509004063146986" + ], + "LPTokenSupply": "4729997515124972207858586" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "60065504035087228862464", + "60968558455760978182144" ], - "redemptionFee": "114927428085765950", + "expectedQty": "120732330687710738999787", + "swapFee": "72482888145513751650", "reserves": [ - "1566855215301909232715585", - "2341069461449505065494668" + "3008911306605529249393889", + "1615253584053243084964842" ], - "LPTokenSupply": "3885091168599052725499950" + "LPTokenSupply": "4609199949837930506482313" }, { "type": "mintMulti", "inputQtys": [ - "136826518662309429248", - "427049385257379430400" + "810125280166395641856", + "672011275301937872896" ], - "expectedQty": "560329063497228361584", + "expectedQty": "1478081857465091107145", "reserves": [ - "1566992041820571542144833", - "2341496510834762444925068" + "3009721431885695645035745", + "1615925595328545022837738" ], - "LPTokenSupply": "3885651497662549953861534" + "LPTokenSupply": "4610678031695395597589458" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "17597382235191035035648", - "expectedQty": "17474414642816069762166", + "inputQty": "134321278417751", + "outputIndex": 0, + "expectedQty": "134970214538997", + "swapFee": "0", "reserves": [ - "1566992041820571542144833", - "2359093893069953479960716" - ] + "3009721431750725430496748", + "1615925595462866301255489" + ], + "LPTokenSupply": "4610678031695395597589458", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7631122565906545664", - "12038830342034421760" + "46554267586762360", + "49093026903476848" ], - "expectedQty": "19554287941908600475", + "expectedQty": "95413150632212549", + "swapFee": "57282259735168", "reserves": [ - "1566999672943137448690497", - "2359105931900295514382476" + "3009721385196457843734388", + "1615925546369839397778641" ], - "LPTokenSupply": "3903145466593307932224175" + "LPTokenSupply": "4610677936230690931615256" }, { "type": "mintMulti", "inputQtys": [ - "6838381757882234880", - "5643667837562151936" + "7810372934533348589568", + "17165636953386464051200" ], - "expectedQty": "12414410870032922398", + "expectedQty": "24935422945063427268167", "reserves": [ - "1567006511324895330925377", - "2359111575568133076534412" + "3017531758130991192323956", + "1633091183323225861829841" ], - "LPTokenSupply": "3903157881004177965146573" + "LPTokenSupply": "4635613359175754358883423" }, { "type": "mint", "inputIndex": 0, - "inputQty": "138297344830009996476416", - "expectedQty": "137700806987458473585544", + "inputQty": "83276364721782660268032", + "expectedQty": "82865329586064842341269", "reserves": [ - "1705303856154905327401793", - "2359111575568133076534412" + "3100808122852773852591988", + "1633091183323225861829841" ] }, { - "type": "redeemMasset", - "inputQty": "31331076140115243827", - "expectedQtys": [ - "13214257582163798140", - "18280559157892287410" + "type": "mintMulti", + "inputQtys": [ + "2336734951408640983040", + "3142676984647353106432" ], - "redemptionFee": "18798645684069146", + "expectedQty": "5467823247544348735622", "reserves": [ - "1705290641897323163603653", - "2359093295008975184247002" + "3103144857804182493575028", + "1636233860307873214936273" ], - "LPTokenSupply": "4040827358795360891895204" + "LPTokenSupply": "4723946512009363549960314" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "75560599148705284096", - "expectedQty": "76027089453455112348", - "swapFee": "45336359489223170", + "inputQty": "8028158194141548773376", + "outputIndex": 0, + "expectedQty": "8068127784177177354673", + "swapFee": "0", "reserves": [ - "1705290641897323163603653", - "2359017267919521729134654" + "3095076730020005316220355", + "1644262018502014763709649" ], - "LPTokenSupply": "4040751802729848135533425" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "139966908876637280927744", - "expectedQty": "139011821387991829831422", - "reserves": [ - "1705290641897323163603653", - "2498984176796159010062398" - ] + "LPTokenSupply": "4723946512009363549960314", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "913213921256959954124", + "inputQty": "77876465867018926555136", "expectedQtys": [ - "372356170549225398216", - "545661927341388096221" + "50993172028180088708807", + "27090163922473716326432" ], - "redemptionFee": "547928352754175972", + "redemptionFee": "46725879520211355933", "reserves": [ - "1704918285726773938205437", - "2498438514868817621966177" + "3044083557991825227511548", + "1617171854579541047383217" ], - "LPTokenSupply": "4178850464989418280828320" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "21969842276532433715200", - "expectedQty": "21875994747494799215075", - "reserves": [ - "1726888128003306371920637", - "2498438514868817621966177" - ] + "LPTokenSupply": "4646074718730296644540771" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "485799505718991808", - "expectedQty": "483710056065470776", + "inputIndex": 1, + "inputQty": "2507586820377332416512", + "expectedQty": "2507456505365376013401", "reserves": [ - "1726888613802812090912445", - "2498438514868817621966177" + "3044083557991825227511548", + "1619679441399918379799729" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "15606161762086834667520", - "expectedQty": "15704585397846696407714", - "swapFee": "9363697057252100800", + "inputQty": "85654247680535871619072", + "expectedQty": "85591895585568539318114", + "swapFee": "51392548608321522971", "reserves": [ - "1726888613802812090912445", - "2482733929470970925558463" + "3044083557991825227511548", + "1534087545814349840481615" ], - "LPTokenSupply": "4185121718054588036056731" + "LPTokenSupply": "4562933066809986981087397" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "20877399167717953503232", - "outputIndex": 1, - "expectedQty": "20912055776209707060616", - "swapFee": "16629115308217334107", + "type": "mintMulti", + "inputQtys": [ + "14518634504788074496", + "7235813436022603776" + ], + "expectedQty": "21681745467466563993", "reserves": [ - "1747766012970530044415677", - "2461821873694761218497847" + "3044098076626330015586044", + "1534094781627785863085391" ], - "LPTokenSupply": "4185123380966118857790141", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4562954748555454447651390" }, { "type": "redeemMasset", - "inputQty": "1126796656319790894284", + "inputQty": "454048486424676966", "expectedQtys": [ - "470283691576746025254", - "662419723334599237090" + "302729020879119840", + "152562433761215105" ], - "redemptionFee": "676077993791874536", + "redemptionFee": "272429091854806", "reserves": [ - "1747295729278953298390423", - "2461159453971426619260757" + "3044097773897309136466204", + "1534094629065352101870286" ], - "LPTokenSupply": "4183996651917598446083310" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "539429612564631846912", - "expectedQty": "535764210708200753603", - "reserves": [ - "1747295729278953298390423", - "2461698883583991251107669" - ] + "LPTokenSupply": "4562954294534210932159904" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "52276546406286203289600", - "expectedQty": "52041759039286026117243", - "reserves": [ - "1799572275685239501680023", - "2461698883583991251107669" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "734149084865943699456", - "1600996211769831063552" - ], - "expectedQty": "2321069978973262739975", + "inputQty": "3855242094347677696", + "expectedQty": "3872925147407931482", + "swapFee": "2313145256608606", "reserves": [ - "1800306424770105445379479", - "2463299879795761082171221" + "3044093900972161728534722", + "1534094629065352101870286" ], - "LPTokenSupply": "4238895245146565935694131" + "LPTokenSupply": "4562950439523431110143068" }, { "type": "redeemBassets", "inputQtys": [ - "17299516608120107302912", - "5619183770727788576768" + "95967718114387066880", + "83049576678727204864" ], - "expectedQty": "22802463054588147757999", - "swapFee": "13689691647741533574", + "expectedQty": "178547728888764341584", + "swapFee": "107192953105121677", "reserves": [ - "1783006908161985338076567", - "2457680696025033293594453" + "3043997933254047341467842", + "1534011579488673374665422" ], - "LPTokenSupply": "4216080461369494820555914" + "LPTokenSupply": "4562771795320884551191973" }, { - "type": "redeemBassets", - "inputQtys": [ - "560310458294273792", - "5581550333031057408" + "type": "redeemMasset", + "inputQty": "5741336213743375011020", + "expectedQtys": [ + "3827964751014216634933", + "1929088778208511644551" ], - "expectedQty": "6101763947689066218", - "swapFee": "3663256322406883", + "redemptionFee": "3444801728246025006", "reserves": [ - "1783006347851527043802775", - "2457675114474700262537045" + "3040169968503033124832909", + "1532082490710464863020871" ], - "LPTokenSupply": "4216074356308616441323500" + "LPTokenSupply": "4557030803587314000783453" }, { "type": "redeemMasset", - "inputQty": "622517953609034240", + "inputQty": "21715247376783475", "expectedQtys": [ - "263109090853398794", - "362666496258771234" + "14478381856846957", + "7296327365412944" ], - "redemptionFee": "373510772165420", + "redemptionFee": "13029148426070", "reserves": [ - "1783006084742436190403981", - "2457674751808204003765811" + "3040169954024651267985952", + "1532082483414137497607927" ], - "LPTokenSupply": "4216073733828013909505802" + "LPTokenSupply": "4557030781873369538842585" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "102589473213998379827200", - "expectedQty": "101892457447996298664285", + "inputIndex": 0, + "inputQty": "2260696890225296932864", + "expectedQty": "2249019890936803411881", "reserves": [ - "1783006084742436190403981", - "2560264225022202383593011" + "3042430650914876564918816", + "1532082483414137497607927" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "14936401234582237609984", - "expectedQty": "14992278292617674870140", - "swapFee": "8961840740749342565", + "type": "redeemBassets", + "inputQtys": [ + "65600188201794764800", + "77678603885805797376" + ], + "expectedQty": "142964491051959974666", + "swapFee": "85830192746824079", "reserves": [ - "1768013806449818515533841", - "2560264225022202383593011" + "3042365050726674770154016", + "1532004804810251691810551" ], - "LPTokenSupply": "4303030686225502045494359" + "LPTokenSupply": "4559136760026080910138127" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "214609075652403101696", - "expectedQty": "215967591313414312372", - "swapFee": "128765445391441861", + "inputQty": "74718943943851201527808", + "expectedQty": "74729868450274900920878", "reserves": [ - "1768013806449818515533841", - "2560048257430888969280639" - ], - "LPTokenSupply": "4302816090026394181536849" + "3042365050726674770154016", + "1606723748754102893338359" + ] }, { "type": "redeemMasset", - "inputQty": "2120317171347492962304", + "inputQty": "904458941883778867", "expectedQtys": [ - "870709020462042210012", - "1260769063245703036276" + "593466208358246632", + "313419407320791948" ], - "redemptionFee": "1272190302808495777", + "redemptionFee": "542675365130267", "reserves": [ - "1767143097429356473323829", - "2558787488367643266244363" + "3042364457260466411907384", + "1606723435334695572546411" ], - "LPTokenSupply": "4300695900074076969424122" + "LPTokenSupply": "4633865724071681463793164" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "8033473921007548891136", - "outputIndex": 1, - "expectedQty": "8047649522142456404246", - "swapFee": "6399025498108016722", + "type": "redeemMasset", + "inputQty": "13541218779326958", + "expectedQtys": [ + "8885152652287354", + "4692397374971734" + ], + "redemptionFee": "8124731267596", "reserves": [ - "1775176571350364022214965", - "2550739838845500809840117" + "3042364448375313759620030", + "1606723430642298197574677" ], - "LPTokenSupply": "4300696539976626780225794", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4633865710531275157592965" }, { "type": "redeemMasset", - "inputQty": "9504414812710505545728", + "inputQty": "10478888321739587", "expectedQtys": [ - "3920734963390543296603", - "5633678942183873894635" + "6875785989605146", + "3631217311745875" ], - "redemptionFee": "5702648887626303327", + "redemptionFee": "6287332993043", "reserves": [ - "1771255836386973478918362", - "2545106159903316935945482" + "3042364441499527770014884", + "1606723427011080885828802" ], - "LPTokenSupply": "4291192695428805037310398" + "LPTokenSupply": "4633865700053015569152682" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "14885920466801809948672", - "expectedQty": "14941631886944970174858", - "swapFee": "8931552280081085969", + "type": "mint", + "inputIndex": 1, + "inputQty": "3480755873651316228096", + "expectedQty": "3480668500584767892479", + "reserves": [ + "3042364441499527770014884", + "1610204182884732202056898" + ] + }, + { + "type": "redeemMasset", + "inputQty": "12831470109108014", + "expectedQtys": [ + "8413127354825505", + "4452738361353245" + ], + "redemptionFee": "7698882065464", "reserves": [ - "1756314204500028508743504", - "2545106159903316935945482" + "3042364433086400415189379", + "1610204178431993840703653" ], - "LPTokenSupply": "4276307668117231235470322" + "LPTokenSupply": "4637346355722900116143693" }, { "type": "redeemBassets", "inputQtys": [ - "1358510054073575669760", - "761116755050738483200" + "2883559389816023552", + "13437805803527677952" ], - "expectedQty": "2108527248242250856920", - "swapFee": "1265875874470032533", + "expectedQty": "16306551824557296413", + "swapFee": "9789804977721010", "reserves": [ - "1754955694445954933073744", - "2544345043148266197462282" + "3042361549527010599165827", + "1610190740626190313025701" ], - "LPTokenSupply": "4274198001580701961584121" + "LPTokenSupply": "4637330040360251078898370" }, { "type": "swap", "inputIndex": 0, - "inputQty": "4273944783988626817024", + "inputQty": "65027866204984861261824", "outputIndex": 1, - "expectedQty": "4281587773558717942385", - "swapFee": "3404410662346259475", + "expectedQty": "64632717060960442299369", + "swapFee": "51760915161877658480", "reserves": [ - "1759229639229943559890768", - "2540063455374707479519897" + "3107389415731995460427651", + "1545558023565229870726332" ], - "LPTokenSupply": "4274198342021768196210068", + "LPTokenSupply": "4637335216451767266664218", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "23735643244750254080", + "expectedQty": "23745095522960387076", + "reserves": [ + "3107389415731995460427651", + "1545581759208474620980412" + ] + }, { "type": "mintMulti", "inputQtys": [ - "78561878030007733846016", - "93342746507068886220800" + "5993884333772960169984", + "1157016071472926818304" ], - "expectedQty": "170922000619231738964277", + "expectedQty": "7120051394622310289383", "reserves": [ - "1837791517259951293736784", - "2633406201881776365740697" + "3113383300065768420597635", + "1546738775279947547798716" ], - "LPTokenSupply": "4445120342640999935174345" + "LPTokenSupply": "4644479012941912537340677" }, { "type": "mintMulti", "inputQtys": [ - "74437481685269512192", - "37492940228229021696" + "37884139780725704491008", + "50008615224266989764608" ], - "expectedQty": "111348628183591737876", + "expectedQty": "87712818028898461534778", "reserves": [ - "1837865954741636563248976", - "2633443694822004594762393" + "3151267439846494125088643", + "1596747390504214537563324" ], - "LPTokenSupply": "4445231691269183526912221" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "32987589374345801105408", - "expectedQty": "32842404022435381290233", - "reserves": [ - "1870853544115982364354384", - "2633443694822004594762393" - ] + "LPTokenSupply": "4732191830970810998875455" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "201503947214286263156736", - "expectedQty": "202737170036037484970209", - "swapFee": "120902368328571757894", + "inputQty": "7003629245973593587712", + "expectedQty": "6997483198444611403332", + "swapFee": "4202177547584156152", "reserves": [ - "1870853544115982364354384", - "2430706524785967109792184" + "3151267439846494125088643", + "1589749907305769926159992" ], - "LPTokenSupply": "4276582238314165502221507" + "LPTokenSupply": "4725188621942592163703358" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "42921542208768876478464", - "expectedQty": "42713355053337781945816", + "type": "redeemBassets", + "inputQtys": [ + "2300783190217746022400", + "1470512748433966104576" + ], + "expectedQty": "3759830159782546146089", + "swapFee": "2257252447337930445", "reserves": [ - "1913775086324751240832848", - "2430706524785967109792184" - ] + "3148966656656276379066243", + "1588279394557335960055416" + ], + "LPTokenSupply": "4721426760255607013419867" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "511653360895780978688", - "expectedQty": "513861644434345707438", - "swapFee": "306992016537468587", + "inputIndex": 1, + "inputQty": "187055767409328870391808", + "expectedQty": "186799100003565427104492", + "swapFee": "112233460445597322235", "reserves": [ - "1913261224680316895125410", - "2430706524785967109792184" + "3148966656656276379066243", + "1401480294553770532950924" ], - "LPTokenSupply": "4318783970705809156935493" + "LPTokenSupply": "4534382216192322702760282" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "10443739690683288518656", + "37823096665033767124992" + ], + "expectedQty": "48259893795225942024700", + "swapFee": "28973320269297143500", + "reserves": [ + "3138522916965593090547587", + "1363657197888736765825932" + ], + "LPTokenSupply": "4486096246408854393306431" }, { "type": "redeemMasset", - "inputQty": "14776541714139694969651", + "inputQty": "17522018879602370150", "expectedQtys": [ - "6542216896609261164516", - "8311572456505619710428" + "12251244474402158740", + "5323044678216146651" ], - "redemptionFee": "8865925028483816981", + "redemptionFee": "10513211327761422", "reserves": [ - "1906719007783707633960894", - "2422394952329461490081756" + "3138510665721118688388847", + "1363651874844058549679281" ], - "LPTokenSupply": "4304008315584172310347540" + "LPTokenSupply": "4486078725441295923712423" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "24370691420321830928384", - "outputIndex": 0, - "expectedQty": "24329186385957157985365", - "swapFee": "0", + "inputQty": "58718713128135658831872", + "expectedQty": "58795517921973825246122", "reserves": [ - "1882389821397750475975529", - "2446765643749783321010140" - ], - "LPTokenSupply": "4304008315584172310347540", - "hardLimitError": false, - "insufficientLiquidityError": false + "3138510665721118688388847", + "1422370587972194208511153" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "88462918604916493647872", - "63395782502003310067712" + "type": "redeemMasset", + "inputQty": "69034996365461292266291", + "expectedQtys": [ + "47644238445932860888000", + "21592331736192558023075" ], - "expectedQty": "151018194917884127537192", - "swapFee": "90665316140414725357", + "redemptionFee": "41420997819276775359", "reserves": [ - "1793926902792833982327657", - "2383369861247780010942428" + "3090866427275185827500847", + "1400778256236001650488078" ], - "LPTokenSupply": "4152908521881761809557525" + "LPTokenSupply": "4475843389097590384369789" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "7409905495336611840", - "expectedQty": "7360490293958984035", + "type": "mintMulti", + "inputQtys": [ + "43244846096632407654400", + "6859047832401623384064" + ], + "expectedQty": "49868142889086028804204", "reserves": [ - "1793926902792833982327657", - "2383377271153275347554268" - ] + "3134111273371818235155247", + "1407637304068403273872142" + ], + "LPTokenSupply": "4525711531986676413173993" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "123411094344070480", - "expectedQty": "124165080765260233", - "swapFee": "74046656606442", + "type": "redeemMasset", + "inputQty": "351234853988870599475", + "expectedQtys": [ + "243088544694626843239", + "109179436802740851407" + ], + "redemptionFee": "210740912393322359", "reserves": [ - "1793926902792833982327657", - "2383377146988194582294035" + "3133868184827123608312008", + "1407528124631600533020735" ], - "LPTokenSupply": "4152915758968366090131724" + "LPTokenSupply": "4525360318206778781906753" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1494908803403517696", + "inputQty": "1031622828773618", "outputIndex": 1, - "expectedQty": "1496621013636252094", - "swapFee": "1190264484364534", + "expectedQty": "1023751482173594", + "swapFee": "820633552725", "reserves": [ - "1793928397701637385845353", - "2383375650367180946041941" + "3133868185858746437085626", + "1407528123607849050847141" ], - "LPTokenSupply": "4152915759087392538568177", + "LPTokenSupply": "4525360318206860845262025", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "11247950448621438", - "14958589870893938" + "75558099512274228084736", + "35614597871450875494400" ], - "expectedQty": "26053526793802659", + "expectedQty": "110788058609649721969506", "reserves": [ - "1793928408949587834466791", - "2383375665325770816935879" + "3209426285371020665170362", + "1443142721479299926341541" ], - "LPTokenSupply": "4152915785140919332370836" + "LPTokenSupply": "4636148376816510567231531" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "600376375855185133568", - "expectedQty": "596372348037561056039", - "reserves": [ - "1793928408949587834466791", - "2383976041701626002069447" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "24628156162978398208", - "57951711259789066240" - ], - "expectedQty": "82076767405083007267", + "inputQty": "62607112627762667454464", + "expectedQty": "62483264985242767029312", + "swapFee": "37564267576657600472", "reserves": [ - "1793953037105750812864999", - "2384033993412885791135687" + "3209426285371020665170362", + "1380659456494057159312229" ], - "LPTokenSupply": "4153594234256361976434142" + "LPTokenSupply": "4573545020615505565537114" }, { - "type": "redeemBassets", - "inputQtys": [ - "2261705508431037464576", - "6775594892817834442752" + "type": "redeemMasset", + "inputQty": "1220409343892661049753", + "expectedQtys": [ + "855892687458093516478", + "368195505243243555547" ], - "expectedQty": "8981412622389530248699", - "swapFee": "5392082823127594706", + "redemptionFee": "732245606335596629", "reserves": [ - "1791691331597319775400423", - "2377258398520067956692935" + "3208570392683562571653884", + "1380291260988813915756682" ], - "LPTokenSupply": "4144607968759431631350206" + "LPTokenSupply": "4572324684496173538047023" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2041251685848967020544", - "expectedQty": "2053713909430134976255", - "swapFee": "1224751011509380212", + "type": "redeemMasset", + "inputQty": "4225635589156695231692", + "expectedQtys": [ + "2963506580807536211486", + "1274867537486156167504" + ], + "redemptionFee": "2535381353494017139", "reserves": [ - "1791691331597319775400423", - "2375204684610637821716680" + "3205606886102755035442398", + "1379016393451327759589178" ], - "LPTokenSupply": "4142566839548683815267683" + "LPTokenSupply": "4568099302445152192217044" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "76961352288804323328", - "14352745797952782336" + "5072607591068926476288", + "25977991896083048955904" ], - "expectedQty": "90853246335617238380", + "expectedQty": "31064069399297271010014", + "swapFee": "18649631418429420258", "reserves": [ - "1791768292949608579723751", - "2375219037356435774499016" + "3200534278511686108966110", + "1353038401555244710633274" ], - "LPTokenSupply": "4142657692795019432506063" + "LPTokenSupply": "4537018448377578334728796" }, { - "type": "redeemMasset", - "inputQty": "5470086395709105766", - "expectedQtys": [ - "2364483723611662356", - "3134426909964190126" + "type": "redeemBassets", + "inputQtys": [ + "145615722675038453760", + "93343470534382583808" ], - "redemptionFee": "3282051837425463", + "expectedQty": "238261538488574783855", + "swapFee": "143042748742390304", "reserves": [ - "1791765928465884968061395", - "2375215902929525810308890" + "3200388662789011070512350", + "1352945058084710328049466" ], - "LPTokenSupply": "4142652223036828907142843" + "LPTokenSupply": "4536780058100615891793666" }, { - "type": "mintMulti", - "inputQtys": [ - "608316931100656402432", - "2560449871424655982592" - ], - "expectedQty": "3148816965434006167083", + "type": "swap", + "inputIndex": 1, + "inputQty": "7802438831390582636544", + "outputIndex": 0, + "expectedQty": "7862090693726581600420", + "swapFee": "0", "reserves": [ - "1792374245396985624463827", - "2377776352800950466291482" + "3192526572095284488911930", + "1360747496916100910686010" ], - "LPTokenSupply": "4145801040002262913309926" + "LPTokenSupply": "4536780058100615891793666", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "367633962402408143257", + "inputQty": "9515829539204580874649", "expectedQtys": [ - "158845607158078824303", - "210725706094451352306" + "6692259829090184988454", + "2852435400457756833951" ], - "redemptionFee": "220580377441444885", + "redemptionFee": "5709497723522748524", "reserves": [ - "1792215399789827545639524", - "2377565627094856014939176" + "3185834312266194303923476", + "1357895061515643153852059" ], - "LPTokenSupply": "4145433428097898249311157" + "LPTokenSupply": "4527264799511183663193869" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1282201560425580462080", - "1164604928734677172224" + "221679319527990784", + "91479458149489600" ], - "expectedQty": "2432962612961594980295", + "expectedQty": "312008119428832466", + "swapFee": "187317262014508", "reserves": [ - "1793497601350253126101604", - "2378730232023590692111400" + "3185834090586874775932692", + "1357894970036185004362459" ], - "LPTokenSupply": "4147866390710859844291452" + "LPTokenSupply": "4527264487334478698548344" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "444182679532431212544", - "expectedQty": "446894567666158500609", - "swapFee": "266509607719458727", + "inputQty": "158877390019982725742592", + "expectedQty": "159060265687192382810014", + "reserves": [ + "3185834090586874775932692", + "1516772360056167730105051" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "4484755401019932672", + "outputIndex": 1, + "expectedQty": "4453745339561695955", + "swapFee": "3568296075106249", "reserves": [ - "1793497601350253126101604", - "2378283337455924533610791" + "3185838575342275795865364", + "1516767906310828168409096" ], - "LPTokenSupply": "4147422234682288185024780" + "LPTokenSupply": "4686324753378500688868982", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "147221161847300019", - "expectedQtys": [ - "63625635691023370", - "84371336256641320" + "type": "redeemBassets", + "inputQtys": [ + "925247173870153891840", + "8429280596729114132480" ], - "redemptionFee": "88332697108380", + "expectedQty": "9355451474967640658577", + "swapFee": "5616640869502285766", "reserves": [ - "1793497537724617435078234", - "2378283253084588276969471" + "3184913328168405641973524", + "1508338625714099054276616" ], - "LPTokenSupply": "4147422087469959607435599" + "LPTokenSupply": "4676964246926750496153214" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "79595294556022259712", - "expectedQty": "79217666086105313252", + "type": "mintMulti", + "inputQtys": [ + "94416995733095251968", + "259120395965480009728" + ], + "expectedQty": "353210464193079033861", "reserves": [ - "1793577133019173457337946", - "2378283253084588276969471" - ] + "3185007745164138737225492", + "1508597746110064534286344" + ], + "LPTokenSupply": "4677317457390943575187075" }, { "type": "mintMulti", "inputQtys": [ - "5291085888459906220032", - "6955328791201981661184" + "73732304298017441185792", + "336326476106364857876480" ], - "expectedQty": "12174959130948935271707", + "expectedQty": "409697416610700716267499", "reserves": [ - "1798868218907633363557978", - "2385238581875790258630655" + "3258740049462156178411284", + "1844924222216429392162824" ], - "LPTokenSupply": "4159676264266994648020558" + "LPTokenSupply": "5087014874001644291454574" }, { "type": "redeemMasset", - "inputQty": "10362233396000132300", + "inputQty": "18463474669086691242803", "expectedQtys": [ - "4478499521128223763", - "5938339303806331046" + "11820599162209087279689", + "6692190657880222953261" ], - "redemptionFee": "6217340037600079", + "redemptionFee": "11078084801452014745", "reserves": [ - "1798863740408112235334215", - "2385232643536486452299609" + "3246919450299947091131595", + "1838232031558549169209563" ], - "LPTokenSupply": "4159665902655332651648265" + "LPTokenSupply": "5068552507141037745413245" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "51150426569443704307712", - "49475441584319586369536" + "38014913506830347927552", + "28493192113948872146944" ], - "expectedQty": "100053693618270871692472", - "swapFee": "60068257125237665614", + "expectedQty": "66310012026331378794016", "reserves": [ - "1747713313838668531026503", - "2335757201952166865930073" + "3284934363806777439059147", + "1866725223672498041356507" ], - "LPTokenSupply": "4059558147605649066056739" + "LPTokenSupply": "5134862519167369124207261" }, { - "type": "redeemMasset", - "inputQty": "10557373466447293644", - "expectedQtys": [ - "4542413420054908291", - "6070775324606145621" + "type": "redeemBassets", + "inputQtys": [ + "72921595894936485888", + "901138089207973543936" ], - "redemptionFee": "6334424079868376", + "expectedQty": "973215476755257132064", + "swapFee": "584279853965533599", "reserves": [ - "1747708771425248476118212", - "2335751131176842259784452" + "3284861442210882502573259", + "1865824085583290067812571" ], - "LPTokenSupply": "4059547590865625026749932" + "LPTokenSupply": "5133888777838745298094956" }, { - "type": "mintMulti", - "inputQtys": [ - "2474575853045268", - "1910457418584251" + "type": "redeem", + "inputIndex": 1, + "inputQty": "66201382884826991820800", + "expectedQty": "66190559209494982541126", + "swapFee": "39720829730896195092", + "reserves": [ + "3284861442210882502573259", + "1799633526373795085271445" ], - "expectedQty": "4360536781962232", + "LPTokenSupply": "5067691367036891395893665" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1468026907243199744", + "expectedQty": "1474422045787097860", + "swapFee": "880816144345919", "reserves": [ - "1747708773899824329163480", - "2335751133087299678368703" + "3284859967788836715475399", + "1799633526373795085271445" ], - "LPTokenSupply": "4059547595226161808712164" + "LPTokenSupply": "5067689899098065767128512" }, { "type": "redeemBassets", "inputQtys": [ - "233734273902950187008", - "431687893120076939264" + "96090131346883608576", + "69601122338638290944" ], - "expectedQty": "661424582951648657588", - "swapFee": "397093005574333794", + "expectedQty": "165194115632250195011", + "swapFee": "99175974964328714", "reserves": [ - "1747475039625921378976472", - "2335319445194179601429439" + "3284763877657489831866823", + "1799563925251456446980501" ], - "LPTokenSupply": "4058885813259505143154160" + "LPTokenSupply": "5067524615724056049037657" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "216673291144726944", - "expectedQty": "215221158106724739", + "inputIndex": 0, + "inputQty": "32003887698538867458048", + "expectedQty": "31845409334613901618487", "reserves": [ - "1747475039625921378976472", - "2335319661867470746156383" + "3316767765356028699324871", + "1799563925251456446980501" ] }, { - "type": "mintMulti", - "inputQtys": [ - "15475441635243100160", - "28019046026381709312" + "type": "redeemMasset", + "inputQty": "365165033827743983206", + "expectedQtys": [ + "237370676518642615917", + "128789151546047298971" ], - "expectedQty": "43233578109385178237", + "redemptionFee": "219099020296646389", "reserves": [ - "1747490515067556622076632", - "2335347680913497127865695" + "3316530394679510056708954", + "1799435136099910399681530" ], - "LPTokenSupply": "4058929262058772635057136" + "LPTokenSupply": "5099004881934744236337576" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "783598470982520537088", + "expectedQty": "779704542292705808659", + "reserves": [ + "3317313993150492577246042", + "1799435136099910399681530" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "7553925336007058653184", + "inputQty": "197354846785209387450368", "outputIndex": 1, - "expectedQty": "7562692809534125091318", - "swapFee": "6014529939826020280", + "expectedQty": "196087475742179156623425", + "swapFee": "157082853732207550874", "reserves": [ - "1755044440403563680729816", - "2327784988103963002774377" + "3514668839935701964696410", + "1603347660357731243058105" ], - "LPTokenSupply": "4058929863511766617659164", + "LPTokenSupply": "5099800294762410162901322", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "77314550657316054630", - "expectedQtys": [ - "33410052050694434224", - "44313075968318716907" - ], - "redemptionFee": "46388730394389632", - "reserves": [ - "1755011030351512986295592", - "2327740675027994684057470" - ], - "LPTokenSupply": "4058852553599982341043497" - }, { "type": "redeemBassets", "inputQtys": [ - "203657385750556993126400", - "60565965622692001349632" - ], - "expectedQty": "262882097767322114284109", - "swapFee": "157823953032212596128", - "reserves": [ - "1551353644600955993169192", - "2267174709405302682707838" + "4977787315854045184", + "2735871058647962624" ], - "LPTokenSupply": "3795828414274931235422871" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "233940691587909810126848", - "expectedQty": "234732984812006772303371", - "swapFee": "140364414952745886076", + "expectedQty": "7688325948586139085", + "swapFee": "4615765028168584", "reserves": [ - "1316620659788949220865821", - "2267174709405302682707838" + "3514663862148386110651226", + "1603344924486672595095481" ], - "LPTokenSupply": "3561901759128516699884630" + "LPTokenSupply": "5099792602282273051410510" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "6839600638400151945216", - "expectedQty": "6859780031246625184102", - "swapFee": "4103760383040091167", + "inputQty": "2773096010142004736", + "outputIndex": 1, + "expectedQty": "2752483167974303132", + "swapFee": "2205962418697840", "reserves": [ - "1309760879757702595681719", - "2267174709405302682707838" + "3514666635244396252655962", + "1603342172003504620792349" ], - "LPTokenSupply": "3555062568866154851948530" + "LPTokenSupply": "5099792602502869293280294", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "113232252892879448440832", - "114862821493941228011520" + "13480737228497260380160", + "37453924986823953612800" ], - "expectedQty": "226826998880474904223944", - "swapFee": "136177906071928099394", + "expectedQty": "50898925618726098753756", + "swapFee": "30557689985226795329", "reserves": [ - "1196528626864823147240887", - "2152311887911361454696318" + "3501185898015898992275802", + "1565888247016680667179549" ], - "LPTokenSupply": "3328113009870215212435130" + "LPTokenSupply": "5048866174963156490410740" }, { "type": "redeemMasset", - "inputQty": "1446024579555582069964", + "inputQty": "599627131185455746252", "expectedQtys": [ - "519565193122183803667", - "934592216679303711059" + "415567840269819308099", + "185860681458068729676" ], - "redemptionFee": "867614747733349241", + "redemptionFee": "359776278711273447", "reserves": [ - "1196009061671700963437220", - "2151377295694682150985259" + "3500770330175629172967703", + "1565702386335222598449873" ], - "LPTokenSupply": "3326667072052134403700090" + "LPTokenSupply": "5048266583809598905791832" }, { - "type": "redeemMasset", - "inputQty": "17944082791890049433", - "expectedQtys": [ - "6447416704636835167", - "11597592659415645967" + "type": "redeemBassets", + "inputQtys": [ + "407758406520376786944", + "254101968576850722816" + ], + "expectedQty": "659823915148020650776", + "swapFee": "396132028305795867", + "reserves": [ + "3500362571769108796180759", + "1565448284366645747727057" ], - "redemptionFee": "10766449675134029", + "LPTokenSupply": "5047606403375625409924774" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "5437819930068274", + "outputIndex": 0, + "expectedQty": "5475547482043665", + "swapFee": "0", "reserves": [ - "1196002614254996326602053", - "2151365698102022735339292" + "3500362566293561314137094", + "1565448289804465677795331" ], - "LPTokenSupply": "3326649129045987481164059" + "LPTokenSupply": "5047606403375625409924774", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "3023510727099246", - "1994298162719347" + "56789764852120293474304", + "10337767501960021278720" ], - "expectedQty": "4992225156641095", + "expectedQty": "66813876109729909385532", "reserves": [ - "1196002617278507053701299", - "2151365700096320898058639" + "3557152331145681607611398", + "1575786057306425699074051" ], - "LPTokenSupply": "3326649134038212637805154" + "LPTokenSupply": "5114420279485355319310306" }, { - "type": "redeemBassets", - "inputQtys": [ - "59046914369441", - "50346788843986" + "type": "redeemMasset", + "inputQty": "34789822851041650278", + "expectedQtys": [ + "24182300451753363689", + "10712538665217823692" ], - "expectedQty": "108805391629401", - "swapFee": "65322428434", + "redemptionFee": "20873893710624990", "reserves": [ - "1196002617219460139331858", - "2151365700045974109214653" + "3557128148845229854247709", + "1575775344767760481250359" ], - "LPTokenSupply": "3326649133929348455990161" + "LPTokenSupply": "5114385491749893648722527" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "113281355862052052140032", - "expectedQty": "114090371214876601892863", - "swapFee": "67968813517231231284", + "inputQty": "94486983337082437632", + "expectedQty": "94311553260660041247", + "swapFee": "56692190002249462", "reserves": [ - "1196002617219460139331858", - "2037275328831097507321790" + "3557128148845229854247709", + "1575681033214499821209112" ], - "LPTokenSupply": "3213374574948648126973257" + "LPTokenSupply": "5114291010435775566509841" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "23648348497926569984", - "outputIndex": 0, - "expectedQty": "23554881900322046382", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "6818556811311508881408", + "outputIndex": 1, + "expectedQty": "6765036771193676887439", + "swapFee": "5423384084297707414", "reserves": [ - "1195979062337559817285476", - "2037298977179595433891774" + "3563946705656541363129117", + "1568915996443306144321673" ], - "LPTokenSupply": "3213374574948648126973257", + "LPTokenSupply": "5114291552774183996280582", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "96470790934286", - "expectedQtys": [ - "35883715753473", - "61126368934143" + "type": "redeem", + "inputIndex": 0, + "inputQty": "2450485332761525092352", + "expectedQty": "2463273435671599627204", + "swapFee": "1470291199656915055", + "reserves": [ + "3561483432220869763501913", + "1568915996443306144321673" ], - "redemptionFee": "57882474560", + "LPTokenSupply": "5111841214470542436879735" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "30037758345992709603328", + "expectedQty": "30193957676306145873206", + "swapFee": "18022655007595625761", "reserves": [ - "1195979062301676101532003", - "2037298977118469064957631" + "3531289474544563617628707", + "1568915996443306144321673" ], - "LPTokenSupply": "3213374574852183124286427" + "LPTokenSupply": "5081805258390050486838983" }, { - "type": "redeemMasset", - "inputQty": "4772879652233778351308", - "expectedQtys": [ - "1775342102076959174369", - "3024219037443656359456" + "type": "redeemBassets", + "inputQtys": [ + "1263301795062460710912", + "1171416210274718318592" ], - "redemptionFee": "2863727791340267010", + "expectedQty": "2428885596619639093791", + "swapFee": "1458206281740827953", "reserves": [ - "1194203720199599142357634", - "2034274758081025408598175" + "3530026172749501156917795", + "1567744580233031426003081" ], - "LPTokenSupply": "3208601981572728479961820" + "LPTokenSupply": "5079375060407777281000033" }, { - "type": "redeemMasset", - "inputQty": "178399810701406633984", - "expectedQtys": [ - "66358461228521308975", - "113038789260945230148" + "type": "mintMulti", + "inputQtys": [ + "326326041259702631792640", + "143943145012135611858944" ], - "redemptionFee": "107039886420843980", + "expectedQty": "468567420519639121761150", "reserves": [ - "1194137361738370621048659", - "2034161719291764463368027" + "3856352214009203788710435", + "1711687725245167037862025" ], - "LPTokenSupply": "3208423592466015715412234" + "LPTokenSupply": "5547942480927416402761183" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "30552352268440379392", - "expectedQty": "30440060423837243436", + "type": "mintMulti", + "inputQtys": [ + "61671589345829542952960", + "58744881830711527473152" + ], + "expectedQty": "120131327805826607411500", "reserves": [ - "1194167914090639061428051", - "2034161719291764463368027" - ] + "3918023803355033331663395", + "1770432607075878565335177" + ], + "LPTokenSupply": "5668073808733243010172683" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "65244531833308654338048", + "expectedQty": "65124377794775622875243", + "swapFee": "39146719099985192602", + "reserves": [ + "3918023803355033331663395", + "1705308229281102942459934" + ], + "LPTokenSupply": "5602833191571844354353895" }, { "type": "redeemMasset", - "inputQty": "1038267383699224920064", + "inputQty": "16160382632845776414310", "expectedQtys": [ - "386205214081626785818", - "657867166757670432145" + "11294067055879354413767", + "4915709158262717372981" + ], + "redemptionFee": "9696229579707465848", + "reserves": [ + "3906729736299153977249628", + "1700392520122840225086953" ], - "redemptionFee": "622960430219534952", + "LPTokenSupply": "5586673778561956548686169" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "28835908220213985280", + "outputIndex": 0, + "expectedQty": "29046381143333495252", + "swapFee": "0", "reserves": [ - "1193781708876557434642233", - "2033503852125006792935882" + "3906700689918010643754376", + "1700421356031060439072233" ], - "LPTokenSupply": "3207415827438783349689101" + "LPTokenSupply": "5586673778561956548686169", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "2290311568888137", - "expectedQty": "2281893211365235", + "inputQty": "1543982197700697522176", + "expectedQty": "1534952758440407899255", "reserves": [ - "1193781711166869003530370", - "2033503852125006792935882" + "3908244672115711341276552", + "1700421356031060439072233" ] }, { "type": "redeemMasset", - "inputQty": "54458299330638547", + "inputQty": "16681134636003724623872", "expectedQtys": [ - "20256904130440787", - "34505883442555387" + "11659342434274434928378", + "5072813126048940930146" ], - "redemptionFee": "32674979598383", + "redemptionFee": "10008680781602234774", "reserves": [ - "1193781690909964873089583", - "2033503817619123350380495" + "3896585329681436906348174", + "1695348542905011498142087" ], - "LPTokenSupply": "3207415775265644728375627" + "LPTokenSupply": "5571528597552471392185029" }, { - "type": "mint", + "type": "mintMulti", + "inputQtys": [ + "30604076713207771693056", + "1039737478280126660608" + ], + "expectedQty": "31465813505713308648327", + "reserves": [ + "3927189406394644678041230", + "1696388280383291624802695" + ], + "LPTokenSupply": "5602994411058184700833356" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "3329679532451671552", - "expectedQty": "3317440807318432524", + "inputQty": "398308796863879616", + "expectedQty": "400424339447277989", + "swapFee": "238985278118327", "reserves": [ - "1193785020589497324761135", - "2033503817619123350380495" - ] + "3927189005970305230763241", + "1696388280383291624802695" + ], + "LPTokenSupply": "5602994012773286364765572" }, { "type": "mintMulti", "inputQtys": [ - "4025645072845545930752", - "5141574115975331053568" + "6526800585768568881152", + "7399884948160454328320" ], - "expectedQty": "9113275208679413921376", + "expectedQty": "13899193139744284389516", "reserves": [ - "1197810665662342870691887", - "2038645391735098681434063" + "3933715806556073799644393", + "1703788165331452079131015" ], - "LPTokenSupply": "3216532367915131460729527" + "LPTokenSupply": "5616893205913030649155088" }, { "type": "mintMulti", "inputQtys": [ - "239733206722964324352", - "787723670177996210176" + "65742936585078434693120", + "163515902760182041542656" ], - "expectedQty": "1020579428092845617218", + "expectedQty": "229064183070671020818183", "reserves": [ - "1198050398869065835016239", - "2039433115405276677644239" + "3999458743141152234337513", + "1867304068091634120673671" ], - "LPTokenSupply": "3217552947343224306346745" + "LPTokenSupply": "5845957388983701669973271" }, { - "type": "redeemMasset", - "inputQty": "65332925440118266265", - "expectedQtys": [ - "24312008343166035641", - "41386167863945638843" + "type": "redeemBassets", + "inputQtys": [ + "8400518321018580992", + "6698708062445690880" ], - "redemptionFee": "39199755264070959", + "expectedQty": "15057714338464611369", + "swapFee": "9040052634659562", "reserves": [ - "1198026086860722668980598", - "2039391729237412732005396" + "3999450342622831215756521", + "1867297369383571674982791" ], - "LPTokenSupply": "3217487618337759714487575" + "LPTokenSupply": "5845942323133315834168295" }, { - "type": "redeemMasset", - "inputQty": "319004915072499502284", - "expectedQtys": [ - "118709673408133132784", - "202078676569891853231" + "type": "redeemBassets", + "inputQtys": [ + "4850494267103900598272", + "159173609416044216320" ], - "redemptionFee": "191402949043499701", + "expectedQty": "4982786048757251650656", + "swapFee": "2991466509159846898", "reserves": [ - "1197907377187314535847814", - "2039189650560842840152165" + "3994599848355727315158249", + "1867138195774155630766471" ], - "LPTokenSupply": "3217168632562982119335261" + "LPTokenSupply": "5840956844764700338655429" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "8735214566250759847936", - "expectedQty": "8796864537221563504536", - "swapFee": "5241128739750455908", + "inputIndex": 0, + "inputQty": "2184070816103417249792", + "expectedQty": "2194975398242576794022", + "swapFee": "1310442489662050349", "reserves": [ - "1197907377187314535847814", - "2030392786023621276647629" + "3992404872957484738364227", + "1867138195774155630766471" ], - "LPTokenSupply": "3208433942109605334532915" + "LPTokenSupply": "5838772904992845887610671" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1800593924757145344", - "expectedQty": "1813291259524424568", - "swapFee": "1080356354854287", + "inputQty": "379042940034442264576", + "expectedQty": "378522436491026906966", + "swapFee": "227425764020665358", "reserves": [ - "1197907377187314535847814", - "2030390972732361752223061" + "3992404872957484738364227", + "1866759673337664603859505" ], - "LPTokenSupply": "3208432141623716212872999" + "LPTokenSupply": "5838393884795387847412630" }, { "type": "redeemBassets", "inputQtys": [ - "38317095878221160", - "47311305022081608" + "405167639738060032", + "54522669395115720" ], - "expectedQty": "85126934088038552", - "swapFee": "51106824547551", + "expectedQty": "457477830359985334", + "swapFee": "274651489109456", "reserves": [ - "1197907338870218657626654", - "2030390925421056730141453" + "3992404467789845000304195", + "1866759618814995208743785" ], - "LPTokenSupply": "3208432056450785982741650" + "LPTokenSupply": "5838393427070371147228784" }, { - "type": "redeemBassets", - "inputQtys": [ - "4601787652030753931264", - "38230997779426754691072" + "type": "redeemMasset", + "inputQty": "7208344766580703232", + "expectedQtys": [ + "4926245727360572681", + "2303403042048868164" ], - "expectedQty": "42526017451509524380375", - "swapFee": "25530929028322708253", + "redemptionFee": "4325006859948421", "reserves": [ - "1193305551218187903695390", - "1992159927641629975450381" + "3992399541544117639731514", + "1866757315411953159875621" ], - "LPTokenSupply": "3165883061163150967923846" + "LPTokenSupply": "5838386219158105252520394" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "59665960615768345280512", - "expectedQty": "59431377047146720124614", + "type": "redeem", + "inputIndex": 1, + "inputQty": "21374773258484753367040", + "expectedQty": "21344383930565006169595", + "swapFee": "12824863955090852020", "reserves": [ - "1252971511833956248975902", - "1992159927641629975450381" - ] + "3992399541544117639731514", + "1845412931481388153706026" + ], + "LPTokenSupply": "5817012728386016008238556" }, { "type": "mintMulti", "inputQtys": [ - "42117589482593847345152", - "22743866077320308588544" + "4504799504054634496", + "1360916839370383872" ], - "expectedQty": "64520735479676418954973", + "expectedQty": "5841620043463822236", "reserves": [ - "1295089101316550096321054", - "2014903793718950284038925" + "3992404046343621694366010", + "1845414292398227524089898" ], - "LPTokenSupply": "3289835173689974107003433" + "LPTokenSupply": "5817018570006059472060792" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2757273352542926405632", - "expectedQty": "2775942253003302959418", - "swapFee": "1654364011525755843", + "type": "redeemMasset", + "inputQty": "98382535655225819136", + "expectedQtys": [ + "67482535772444096718", + "31192543278728198248" + ], + "redemptionFee": "59029521393135491", "reserves": [ - "1295089101316550096321054", - "2012127851465946981079507" + "3992336563807849250269292", + "1845383099854948795891650" ], - "LPTokenSupply": "3287078065773832333173385" + "LPTokenSupply": "5816920193373356385555205" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "486982699375787369299968", - "expectedQty": "490071402542941277016598", - "swapFee": "292189619625472421579", + "type": "mint", + "inputIndex": 0, + "inputQty": "6183156249883475705856", + "expectedQty": "6148439881150183909944", "reserves": [ - "1295089101316550096321054", - "1522056448923005704062909" - ], - "LPTokenSupply": "2800124585360007511115574" + "3998519720057732725975148", + "1845383099854948795891650" + ] }, { - "type": "redeemMasset", - "inputQty": "1316389754489989916262", - "expectedQtys": [ - "608479754014667501977", - "715117232239558792315" + "type": "mintMulti", + "inputQtys": [ + "24007606805558905012224", + "7692602942034081218560" ], - "redemptionFee": "789833852693993949", + "expectedQty": "31572103741794517079384", "reserves": [ - "1294480621562535428819077", - "1521341331690766145270594" + "4022527326863291630987372", + "1853075702796982877110210" ], - "LPTokenSupply": "2798808274588902790598706" + "LPTokenSupply": "5854640736996301086544533" }, { - "type": "mintMulti", - "inputQtys": [ - "1937464784018106", - "2120433163372758" - ], - "expectedQty": "4033456775778900", + "type": "redeem", + "inputIndex": 0, + "inputQty": "273393624115080981381120", + "expectedQty": "274737976304309627616974", + "swapFee": "164036174469048588828", "reserves": [ - "1294480623500000212837183", - "1521341333811199308643352" + "3747789350558982003370398", + "1853075702796982877110210" ], - "LPTokenSupply": "2798808278622359566377606" + "LPTokenSupply": "5581263516498667010022295" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2873566865493987950592", - "expectedQty": "2857860777702415879517", + "inputQty": "1707247126178014167040", + "expectedQty": "1698058872098147767630", "reserves": [ - "1297354190365494200787775", - "1521341333811199308643352" + "3749496597685160017537438", + "1853075702796982877110210" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "12193965128032203046912", - "10709836630454192570368" - ], - "expectedQty": "22767190139666801404328", - "swapFee": "13668515192915830340", + "type": "redeem", + "inputIndex": 0, + "inputQty": "603680468836251467776", + "expectedQty": "606583169733161015410", + "swapFee": "362208281301750880", "reserves": [ - "1285160225237461997740863", - "1510631497180745116072984" + "3748890014515426856522028", + "1853075702796982877110210" ], - "LPTokenSupply": "2778886647596721556605488" + "LPTokenSupply": "5582357931122757036497237" }, { "type": "swap", "inputIndex": 0, - "inputQty": "207640502672881952", + "inputQty": "13931892916980807630848", "outputIndex": 1, - "expectedQty": "207699015789485239", - "swapFee": "165204522964770", + "expectedQty": "13840689621759790490944", + "swapFee": "11085449625527046372", "reserves": [ - "1285160432877964670622815", - "1510631289481729326587745" + "3762821907432407664152876", + "1839235013175223086619266" ], - "LPTokenSupply": "2778886647613242008901965", + "LPTokenSupply": "5582359039667719589201874", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "1070794284941760135168", + "inputQty": "225045251669428011008", "outputIndex": 1, - "expectedQty": "1071090386096860888155", - "swapFee": "851952218310124097", + "expectedQty": "223557507732027360868", + "swapFee": "179059320607909502", "reserves": [ - "1286231227162906430757983", - "1509560199095632465699590" + "3763046952684077092163884", + "1839011455667491059258398" ], - "LPTokenSupply": "2778886732808463839914374", + "LPTokenSupply": "5582359057573651649992824", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1421091438640829458022", - "expectedQtys": [ - "657369532969944205245", - "771508934096052807192" + "type": "mintMulti", + "inputQtys": [ + "341648491659182669824", + "245051209798876364800" + ], + "expectedQty": "584941803446673845456", + "reserves": [ + "3763388601175736274833708", + "1839256506877289935623198" + ], + "LPTokenSupply": "5582943999377098323838280" + }, + { + "type": "mintMulti", + "inputQtys": [ + "797349442628354048000", + "1680649372829003808768" + ], + "expectedQty": "2474327171451661092773", + "reserves": [ + "3764185950618364628881708", + "1840937156250118939431966" + ], + "LPTokenSupply": "5585418326548549984931053" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "2140034794899418", + "1398183284215927" + ], + "expectedQty": "3527151292498034", + "swapFee": "2117561312286", + "reserves": [ + "3764185948478329833982290", + "1840937154851935655216039" ], - "redemptionFee": "852654863184497674", + "LPTokenSupply": "5585418323019492887251960" + }, + { + "type": "mintMulti", + "inputQtys": [ + "52219382309639448", + "115877359648385376" + ], + "expectedQty": "167858299322894248", "reserves": [ - "1285573857629936486552738", - "1508788690161536412892398" + "3764186000697712143621738", + "1840937270729295303601415" ], - "LPTokenSupply": "2777465726635309328906119" + "LPTokenSupply": "5585418490877792210146208" }, { "type": "mintMulti", "inputQtys": [ - "11557406284572194816", - "8647727031205284864" + "1413711529951452416", + "1511609503925854976" ], - "expectedQty": "20085366922887541659", + "expectedQty": "2918237537268543045", "reserves": [ - "1285585415036221058747554", - "1508797337888567618177262" + "3764187414409242095074154", + "1840938782338799229456391" ], - "LPTokenSupply": "2777485812002232216447778" + "LPTokenSupply": "5585421409115329478689253" }, { "type": "mintMulti", "inputQtys": [ - "1101355611424655540224", - "42641838074441392128" + "4314787302488239767552", + "4755927240867757162496" + ], + "expectedQty": "9049135468627338240095", + "reserves": [ + "3768502201711730334841706", + "1845694709579666986618887" + ], + "LPTokenSupply": "5594470544583956816929348" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "3003818979341228310528", + "expectedQty": "3000871160961441153680", + "swapFee": "1802291387604736986", + "reserves": [ + "3768502201711730334841706", + "1842693838418705545465207" ], - "expectedQty": "1137690835070245311848", + "LPTokenSupply": "5591466905833754349092518" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1513394373220872224768", + "expectedQty": "1520734926014417053460", + "swapFee": "908036623932523334", "reserves": [ - "1286686770647645714287778", - "1508839979726642059569390" + "3766981466785715917788246", + "1842693838418705545465207" ], - "LPTokenSupply": "2778623502837302461759626" + "LPTokenSupply": "5589953602264195870120083" }, { "type": "redeemMasset", - "inputQty": "1724865190131476201472", + "inputQty": "63611571700479257", "expectedQtys": [ - "798247622355155676611", - "936069254621272026417" + "42841113637296403", + "20956582034315679" ], - "redemptionFee": "1034919114078885720", + "redemptionFee": "38166943020287", "reserves": [ - "1285888523025290558611167", - "1507903910472020787542973" + "3766981423944602280491843", + "1842693817462123511149528" ], - "LPTokenSupply": "2776898741139082393446726" + "LPTokenSupply": "5589953538656440863942854" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "170719650597026356264960", - "expectedQty": "171510346228162782354568", - "swapFee": "102431790358215813758", + "inputQty": "22189290505349107810304", + "expectedQty": "22296654357165650525878", + "swapFee": "13313574303209464686", "reserves": [ - "1114378176797127776256599", - "1507903910472020787542973" + "3744684769587436629965965", + "1842693817462123511149528" ], - "LPTokenSupply": "2606189333721091858763141" + "LPTokenSupply": "5567765579508522077079018" }, { "type": "redeemMasset", - "inputQty": "417370477834547180339", + "inputQty": "15080134147562768066150", "expectedQtys": [ - "178355993170782706758", - "241339704202862723602" + "10136286388245543193389", + "4987889077163459209691" ], - "redemptionFee": "250422286700728308", + "redemptionFee": "9048080488537660839", "reserves": [ - "1114199820803956993549841", - "1507662570767817924819371" + "3734548483199191086772576", + "1837705928384960051939837" ], - "LPTokenSupply": "2605771988285485981655632" + "LPTokenSupply": "5552686350169008162778951" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "31408124953797931008", - "22270116552405880832" + "180044188463804768", + "312795715164300672" ], - "expectedQty": "53366587272053120377", + "expectedQty": "491971738435876205", + "swapFee": "295360259217055", "reserves": [ - "1114231228928910791480849", - "1507684840884370330700203" + "3734548303155002622967808", + "1837705615589244887639165" ], - "LPTokenSupply": "2605825354872758034776009" + "LPTokenSupply": "5552685857931445493607395" }, { "type": "swap", "inputIndex": 1, - "inputQty": "9624131321404401385472", + "inputQty": "1325244966492785868800", "outputIndex": 0, - "expectedQty": "9603604625423919819060", + "expectedQty": "1332885510385475011266", "swapFee": "0", "reserves": [ - "1104627624303486871661789", - "1517308972205774732085675" + "3733215417644617147956542", + "1839030860555737673507965" ], - "LPTokenSupply": "2605825354872758034776009", + "LPTokenSupply": "5552685857931445493607395", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1243549680580723", - "790801386670705" + "type": "redeemMasset", + "inputQty": "6559617490727852415385", + "expectedQtys": [ + "4407555676175716944670", + "2171219713117655734290" ], - "expectedQty": "2022692133573193", - "swapFee": "1214343886475", + "redemptionFee": "3935770494436711449", "reserves": [ - "1104627623059937191081066", - "1517308971414973345414970" + "3728807861968441431011872", + "1836859640842620017773675" ], - "LPTokenSupply": "2605825352848972991704987" + "LPTokenSupply": "5546126634017767084863154" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "196736329159317364146176", - "expectedQty": "197495157250994867750433", - "swapFee": "118041797495590418487", + "type": "redeemBassets", + "inputQtys": [ + "1204697887051677958144", + "70093025336932040704" + ], + "expectedQty": "1268307269171286971901", + "swapFee": "761441226238515292", "reserves": [ - "907132465808942323330633", - "1517308971414973345414970" + "3727603164081389753053728", + "1836789547817283085732971" ], - "LPTokenSupply": "2409100827869405186600659" + "LPTokenSupply": "5544857641451492183227489" }, { "type": "mint", "inputIndex": 1, - "inputQty": "8472003522947592192", - "expectedQty": "8406436983309925654", + "inputQty": "184115075552151582277632", + "expectedQty": "184110540474560219523922", "reserves": [ - "907132465808942323330633", - "1517317443418496293007162" + "3727603164081389753053728", + "2020904623369434668010603" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "10085139450154958454784", + "inputQty": "4786686796233839", "outputIndex": 0, - "expectedQty": "10046132691512387638308", + "expectedQty": "4809340821984712", "swapFee": "0", "reserves": [ - "897086333117429935692325", - "1527402582868651251461946" + "3727603159272048931069016", + "2020904628156121464244442" ], - "LPTokenSupply": "2409109234306388496526313", + "LPTokenSupply": "5728968181926052402751411", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7126381969427849216", - "expectedQty": "7098832243656398856", - "reserves": [ - "897093459499399363541541", - "1527402582868651251461946" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "290992041831211335680", - "expectedQty": "291945808324288650159", - "swapFee": "174595225098726801", - "reserves": [ - "896801513691075074891382", - "1527402582868651251461946" - ], - "LPTokenSupply": "2408825358556323451462169" - }, { "type": "redeemBassets", "inputQtys": [ - "20553867460206110179328", - "23537186142670318206976" + "361262025465393", + "1097609899173543" ], - "expectedQty": "43828194407887122928101", - "swapFee": "26312704267292649346", + "expectedQty": "1456666527009428", + "swapFee": "874524630984", "reserves": [ - "876247646230868964712054", - "1503865396725980933254970" + "3727603158910786905603623", + "2020904627058511565070899" ], - "LPTokenSupply": "2364973482714595765149655" + "LPTokenSupply": "5728968180468598803574096" }, { "type": "mint", "inputIndex": 0, - "inputQty": "54475589117101343768576", - "expectedQty": "54257619890246566982935", + "inputQty": "657067852624064310935552", + "expectedQty": "653547309825220609507784", "reserves": [ - "930723235347970308480630", - "1503865396725980933254970" + "4384671011534851216539175", + "2020904627058511565070899" ] }, { "type": "redeemBassets", "inputQtys": [ - "57036268276174701985792", - "59217087911682950299648" + "1804921152018494464", + "2927350127270461440" ], - "expectedQty": "115564987065401040761178", - "swapFee": "69380620611607589010", + "expectedQty": "4724581792703292680", + "swapFee": "2836450946189689", "reserves": [ - "873686967071795606494838", - "1444648308814297982955322" + "4384669206613699198044711", + "2020901699708384294609459" ], - "LPTokenSupply": "2303603672980890844541302" + "LPTokenSupply": "6382510763159220858218478" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10397322182065272832", - "expectedQty": "10472115277177736957", - "swapFee": "6238393309239163", - "reserves": [ - "873686967071795606494838", - "1444637836699020805218365" - ], - "LPTokenSupply": "2303593276282548110192386" - }, - { - "type": "redeemMasset", - "inputQty": "67799362529944076", - "expectedQtys": [ - "25698928181485056", - "42493072934362837" + "type": "redeemBassets", + "inputQtys": [ + "90382599026812272640", + "50504607176164532224" ], - "redemptionFee": "40679617517966", + "expectedQty": "140419472888843970521", + "swapFee": "84302265092361799", "reserves": [ - "873686941372867425009782", - "1444637794205947870855528" + "4384578824014672385772071", + "2020851195101208130077235" ], - "LPTokenSupply": "2303593208487253542000106" + "LPTokenSupply": "6382370267814293431122336" }, { - "type": "redeemMasset", - "inputQty": "809666740761080836915", - "expectedQtys": [ - "306899160193386559902", - "507456509683847729419" + "type": "mintMulti", + "inputQtys": [ + "5811999719693300531200", + "41575533991592772763648" ], - "redemptionFee": "485800044456648502", + "expectedQty": "47387318532347314601508", "reserves": [ - "873380042212674038449880", - "1444130337696264023126109" + "4390390823734365686303271", + "2062426729092800902840883" ], - "LPTokenSupply": "2302783590326496906828041" + "LPTokenSupply": "6429757586346640745723844" }, { - "type": "redeemBassets", - "inputQtys": [ - "33127926580392952332288", - "93082957743174377799680" - ], - "expectedQty": "125357633555860794538229", - "swapFee": "75259735975101537645", + "type": "redeem", + "inputIndex": 1, + "inputQty": "208973395653633031274496", + "expectedQty": "208606208984153055973742", + "swapFee": "125384037392179818764", "reserves": [ - "840252115632281086117592", - "1351047379953089645326429" + "4390390823734365686303271", + "1853820520108647846867141" ], - "LPTokenSupply": "2177358223008258520905930" + "LPTokenSupply": "6220796729096746932431224" }, { "type": "mint", "inputIndex": 1, - "inputQty": "128647007015796654080", - "expectedQty": "127659394372223159634", + "inputQty": "136858011557453642072064", + "expectedQty": "137036410789810461403411", "reserves": [ - "840252115632281086117592", - "1351176026960105441980509" + "4390390823734365686303271", + "1990678531666101488939205" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "25965066395216768", - "48820778602201400" + "type": "redeem", + "inputIndex": 0, + "inputQty": "15100769362940577792", + "expectedQty": "15178809904535864845", + "swapFee": "9060461617764346", + "reserves": [ + "4390375644924461150438426", + "1990678531666101488939205" ], - "expectedQty": "74300751122112108", - "swapFee": "44607215002268", + "LPTokenSupply": "6357818040023240615033277" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "28346907186470959710208", + "outputIndex": 1, + "expectedQty": "28130309073782310200140", + "swapFee": "22547105126420549687", "reserves": [ - "840252089667214690900824", - "1351175978139326839779109" + "4418722552110932110148634", + "1962548222592319178739065" ], - "LPTokenSupply": "2177485808061733128451413" + "LPTokenSupply": "6357820294733753257088245", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "39795401185597286724403", + "inputQty": "22792513492716405076787", "expectedQtys": [ - "15347106272847240682187", - "24679071417763925466876" + "15831426565626139487505", + "7031429944074568044634" ], - "redemptionFee": "23877240711358372034", + "redemptionFee": "13675508095629843046", "reserves": [ - "824904983394367450218637", - "1326496906721562914312233" + "4402891125545305970661129", + "1955516792648244610694431" ], - "LPTokenSupply": "2137692794600206977564213" + "LPTokenSupply": "6335029148791846414995762" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1444076352729019842560", - "expectedQty": "1437921174532448938191", + "inputQty": "1657575246951310163968", + "expectedQty": "1647917173520950375163", "reserves": [ - "826349059747096470061197", - "1326496906721562914312233" + "4404548700792257280825097", + "1955516792648244610694431" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "2167418645133082755072", - "outputIndex": 0, - "expectedQty": "2159947171247130405940", - "swapFee": "0", + "inputQty": "285407327784638688", + "expectedQty": "285739884383484140", "reserves": [ - "824189112575849339655257", - "1328664325366695997067305" - ], - "LPTokenSupply": "2139130715774739426502404", - "hardLimitError": false, - "insufficientLiquidityError": false + "4404548700792257280825097", + "1955517078055572395333119" + ] }, { - "type": "redeemMasset", - "inputQty": "146728839322829088358", - "expectedQtys": [ - "56499470365405914657", - "91082046014917686170" + "type": "redeemBassets", + "inputQtys": [ + "103102485527904256", + "64561890745639344" ], - "redemptionFee": "88037303593697453", + "expectedQty": "167138786024273973", + "swapFee": "100343477701185", "reserves": [ - "824132613105483933740600", - "1328573243320681079381135" + "4404548597689771752920841", + "1955517013493681649693775" ], - "LPTokenSupply": "2138983995739146956783791" + "LPTokenSupply": "6336677184476156594650024" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "41503492433250437038080", - "87529808430224784752640" + "49650837541088753876992", + "29714572080580485185536" ], - "expectedQty": "128183070283989842767845", + "expectedQty": "79110836853872328524437", + "swapFee": "47494999111790471397", "reserves": [ - "865636105538734370778680", - "1416103051750905864133775" + "4354897760148682999043849", + "1925802441413101164508239" ], - "LPTokenSupply": "2267167066023136799551636" + "LPTokenSupply": "6257523602123083654701328" }, { "type": "redeemMasset", - "inputQty": "886206276780444876", + "inputQty": "2026925325103404364595", "expectedQtys": [ - "338162935734132744", - "553204241618503998" + "1409783947719094282248", + "623428038478161285494" ], - "redemptionFee": "531723766068266", + "redemptionFee": "1216155195062042618", "reserves": [ - "865635767375798636645936", - "1416102498546664245629777" + "4353487976200963904761601", + "1925179013374623003222745" ], - "LPTokenSupply": "2267166179870032395713586" + "LPTokenSupply": "6255496798413499756540994" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3322315133747804504064", - "2397523050504284274688" + "1163146385237435875328", + "2143655957201271652352" ], - "expectedQty": "5687442089876989766432", - "swapFee": "3414513962303576005", + "expectedQty": "3302551433122422892350", "reserves": [ - "862313452242050832141872", - "1413704975496159961355089" + "4354651122586201340636929", + "1927322669331824274875097" ], - "LPTokenSupply": "2261475664717589332728748" + "LPTokenSupply": "6258799349846622179433344" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "516453958574248581660672", - "expectedQty": "519823853118170210818467", - "swapFee": "309872375144549148996", + "type": "mint", + "inputIndex": 0, + "inputQty": "31050079549866746314752", + "expectedQty": "30868085538786145519144", "reserves": [ - "862313452242050832141872", - "893881122377989750536622" - ], - "LPTokenSupply": "1745052693380855205982975" + "4385701202136068086951681", + "1927322669331824274875097" + ] }, { "type": "redeemBassets", "inputQtys": [ - "3510211256017461182464", - "3920172821769719644160" - ], - "expectedQty": "7383210684207831314021", - "swapFee": "4432585962101959964", - "reserves": [ - "858803240986033370959408", - "889960949556220030892462" - ], - "LPTokenSupply": "1737665493369281482904985" - }, - { - "type": "mintMulti", - "inputQtys": [ - "83272476981279522816", - "35126680440009969664" + "9625283543541888319488", + "2150048732028399517696" ], - "expectedQty": "117653617100721454067", + "expectedQty": "11721478997900407064238", + "swapFee": "7037109664538967619", "reserves": [ - "858886513463014650482224", - "889996076236660040862126" + "4376075918592526198632193", + "1925172620599795875357401" ], - "LPTokenSupply": "1737783146986382204359052" + "LPTokenSupply": "6277939622988809832817391" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "33517320642614284288", - "outputIndex": 1, - "expectedQty": "33498394716372219564", - "swapFee": "26646874725431411", - "reserves": [ - "858920030783657264766512", - "889962577841943668642562" + "type": "redeemMasset", + "inputQty": "17798723060659501662208", + "expectedQtys": [ + "12399263915247722073986", + "5454823876296795167347" ], - "LPTokenSupply": "1737783149651069676902193", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "160367390803523136", - "expectedQty": "161313481614667394", - "swapFee": "96220434482113", + "redemptionFee": "10679233836395700997", "reserves": [ - "858920030783657264766512", - "889962416528462053975168" + "4363676654677278476558207", + "1919717796723499080190054" ], - "LPTokenSupply": "1737782989293300916827268" + "LPTokenSupply": "6260141967851533970725282" }, { "type": "mint", "inputIndex": 0, - "inputQty": "129133641488743176077312", - "expectedQty": "128299126083456605840256", + "inputQty": "100844205189927452672", + "expectedQty": "100251860944245047512", "reserves": [ - "988053672272400440843824", - "889962416528462053975168" + "4363777498882468404010879", + "1919717796723499080190054" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "49007671276699717206016", - "expectedQty": "48676432661278015318215", - "reserves": [ - "1037061343549100158049840", - "889962416528462053975168" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4911543370466354790400", - "expectedQty": "4937270748009624056423", - "swapFee": "2946926022279812874", + "type": "mintMulti", + "inputQtys": [ + "105521145934401142784", + "188338328911064039424" + ], + "expectedQty": "293473034853673664620", "reserves": [ - "1037061343549100158049840", - "885025145780452429918745" + "4363883020028402805153663", + "1919906135052410144229478" ], - "LPTokenSupply": "1909847299360171411176626" + "LPTokenSupply": "6260535692747331889437414" }, { - "type": "redeemMasset", - "inputQty": "791598690076909568", - "expectedQtys": [ - "429586092834269691", - "366607526932570519" + "type": "redeemBassets", + "inputQtys": [ + "6550999776022", + "10992949525097" ], - "redemptionFee": "474959214046145", + "expectedQty": "17519088667952", + "swapFee": "10517763859", "reserves": [ - "1037060913963007323780149", - "885024779172925497348226" + "4363883020021851805377641", + "1919906135041417194704381" ], - "LPTokenSupply": "1909846507808977255671672" + "LPTokenSupply": "6260535692729803334781987" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "835094552020901429248", - "expectedQty": "840351370732101631000", - "swapFee": "501056731212540857", + "inputQty": "8945067421407818809344", + "expectedQty": "8992481127239441300547", + "swapFee": "5367040452844691285", "reserves": [ - "1036220562592275222149149", - "885024779172925497348226" + "4354890538894612364077094", + "1919906135041417194704381" ], - "LPTokenSupply": "1909011463362629475496509" + "LPTokenSupply": "6251591162012440800441771" }, { - "type": "redeemBassets", - "inputQtys": [ - "129207551359982772420608", - "66712706959130734100480" + "type": "redeemMasset", + "inputQty": "2387390561610372428595", + "expectedQtys": [ + "1662070696145274666436", + "732743957144750209843" ], - "expectedQty": "194652369550369162555612", - "swapFee": "116861538653413545660", + "redemptionFee": "1432434336966223457", "reserves": [ - "907013011232292449728541", - "818312072213794763247746" + "4353228468198467089410658", + "1919173391084272444494538" ], - "LPTokenSupply": "1714253918427472240749802" + "LPTokenSupply": "6249203914694264124635521" }, { - "type": "mintMulti", - "inputQtys": [ - "2093195155758921023488", - "3138879800504914280448" + "type": "redeemMasset", + "inputQty": "55679031754256331571", + "expectedQtys": [ + "38763035947201562201", + "17089152956472106861" ], - "expectedQty": "5198945224052045846092", + "redemptionFee": "33407419052553798", "reserves": [ - "909106206388051370752029", - "821450952014299677528194" + "4353189705162519887848457", + "1919156301931315972387677" ], - "LPTokenSupply": "1719452863651524286595894" + "LPTokenSupply": "6249148239003251773559329" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "435052827355992896", - "566681071081290176" + "13409931624908664832", + "20360106640517124096" ], - "expectedQty": "995367264182991377", - "swapFee": "597578905853306", + "expectedQty": "33716186880268970300", "reserves": [ - "909105771335224014759133", - "821450385333228596238018" + "4353203115094144796513289", + "1919176662037956489511773" ], - "LPTokenSupply": "1719451867746439088336540" + "LPTokenSupply": "6249181955190132042529629" }, { - "type": "mintMulti", - "inputQtys": [ - "298101010930944573440", - "772918342889492054016" - ], - "expectedQty": "1064323745052310893225", + "type": "mint", + "inputIndex": 0, + "inputQty": "13803095206838063104", + "expectedQty": "13722123318500416525", "reserves": [ - "909403872346154959332573", - "822223303676118088292034" - ], - "LPTokenSupply": "1720516191491491399229765" + "4353216918189351634576393", + "1919176662037956489511773" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "64150076738330008", - "27706590875261784" - ], - "expectedQty": "91256675102687045", + "type": "redeem", + "inputIndex": 1, + "inputQty": "13838811018006720512", + "expectedQty": "13813671693982051300", + "swapFee": "8303286610804032", "reserves": [ - "909403936496231697662581", - "822223331382708963553818" + "4353216918189351634576393", + "1919162848366262507460473" ], - "LPTokenSupply": "1720516282748166501916810" + "LPTokenSupply": "6249181839332761197306045" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6679311690666879221760", - "2726759468269928710144" + "1905654484959396", + "320929578057299" ], - "expectedQty": "9344535530561058596758", + "expectedQty": "2215796176768568", + "swapFee": "1330275871584", "reserves": [ - "916083248186898576884341", - "824950090850978892263962" + "4353216916283697149616997", + "1919162848045332929403174" ], - "LPTokenSupply": "1729860818278727560513568" + "LPTokenSupply": "6249181837115767772253050" }, { "type": "mintMulti", "inputQtys": [ - "3277548524184450105344", - "2081786070429648027648" + "4032251590219819646976", + "2130248704869447499776" ], - "expectedQty": "5324624230688732067300", + "expectedQty": "6141442210956520594433", "reserves": [ - "919360796711083026989685", - "827031876921408540291610" + "4357249167873916969263973", + "1921293096750202376902950" ], - "LPTokenSupply": "1735185442509416292580868" + "LPTokenSupply": "6255323279326724292847483" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "15171946757112274616320", - "2673054767683760291840" + "122631876884058402193408", + "120638633255960387256320" ], - "expectedQty": "17726187867632623336606", + "expectedQty": "242709289957603989957181", + "swapFee": "145713001775627770636", "reserves": [ - "934532743468195301606005", - "829704931689092300583450" + "4234617290989858567070565", + "1800654463494241989646630" ], - "LPTokenSupply": "1752911630377048915917474" + "LPTokenSupply": "6012482847667522237896728" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "39150866865191648", - "outputIndex": 1, - "expectedQty": "39088554792300575", - "swapFee": "31108021793241", + "type": "redeem", + "inputIndex": 1, + "inputQty": "95694509458978993340416", + "expectedQty": "95464182430743675799646", + "swapFee": "57416705675387396004", "reserves": [ - "934532782619062166797653", - "829704892600537508282875" + "4234617290989858567070565", + "1705190281063498313846984" ], - "LPTokenSupply": "1752911630380159718096798", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5916794079879110783295912" }, { "type": "redeemMasset", - "inputQty": "60985223243396638310", + "inputQty": "7278972845283800678", "expectedQtys": [ - "32493648724161647516", - "28848789284120520428" + "5206395500137307017", + "2096504688888101219" ], - "redemptionFee": "36591133946037982", + "redemptionFee": "4367383707170280", "reserves": [ - "934500288970338005150137", - "829676043811253387762447" + "4234612084594358429763548", + "1705188184558809425745765" ], - "LPTokenSupply": "1752850648816029716062286" + "LPTokenSupply": "5916786801343003870212262" }, { "type": "mintMulti", "inputQtys": [ - "30872176389594892206080", - "51511004543149389381632" + "2633745915440345907200", + "6664838536718050131968" ], - "expectedQty": "81863167110707342834408", + "expectedQty": "9295879920977386709215", "reserves": [ - "965372465359932897356217", - "881187048354402777144079" + "4237245830509798775670748", + "1711853023095527475877733" ], - "LPTokenSupply": "1834713815926737058896694" + "LPTokenSupply": "5926082681263981256921477" }, { - "type": "redeemMasset", - "inputQty": "51996479677151097651", - "expectedQtys": [ - "27342603385130131400", - "24958188508395719631" + "type": "mint", + "inputIndex": 0, + "inputQty": "14010901300237365248", + "expectedQty": "13923170165142095326", + "reserves": [ + "4237259841411099013035996", + "1711853023095527475877733" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "105354824280928445005824", + "26992332758499475849216" ], - "redemptionFee": "31197887806290658", + "expectedQty": "131742155922010025008638", "reserves": [ - "965345122756547767224817", - "881162090165894381424448" + "4342614665692027458041820", + "1738845355854026951726949" ], - "LPTokenSupply": "1834661822566848688428108" + "LPTokenSupply": "6057838760356156424025441" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "66541681488676618240", - "expectedQty": "66950486297132406215", - "swapFee": "39925008893205970", + "inputQty": "1767885671117331103744", + "expectedQty": "1778025522826836421532", + "swapFee": "1060731402670398662", "reserves": [ - "965278172270250634818602", - "881162090165894381424448" + "4340836640169200621620288", + "1738845355854026951726949" ], - "LPTokenSupply": "1834595284877860901130465" + "LPTokenSupply": "6056070980758179359961563" }, { "type": "redeemMasset", - "inputQty": "33477386560053513814016", + "inputQty": "2342153790127", "expectedQtys": [ - "17603665387658815970595", - "16069650213977508750941" + "1677788598776", + "672085856926" ], - "redemptionFee": "20086431936032108288", + "redemptionFee": "1405292274", "reserves": [ - "947674506882591818848007", - "865092439951916872673507" + "4340836640167522833021512", + "1738845355853354865870023" ], - "LPTokenSupply": "1801119906961000990527277" + "LPTokenSupply": "6056070980755837346700663" }, { "type": "redeemMasset", - "inputQty": "646685759250651852", + "inputQty": "24393104859086573482803", "expectedQtys": [ - "340055038575682279", - "310422028769236781" + "17473862473877440654969", + "6999651710078958558820" ], - "redemptionFee": "388011455550391", + "redemptionFee": "14635862915451944089", "reserves": [ - "947674166827553243165728", - "865092129529888103436726" + "4323362777693645392366543", + "1731845704143275907311203" ], - "LPTokenSupply": "1801119260314042885430464" + "LPTokenSupply": "6031679339483042318412268" }, { - "type": "mintMulti", - "inputQtys": [ - "72444705214118338560", - "428484019622906036224" - ], - "expectedQty": "497824026445826757444", + "type": "mint", + "inputIndex": 0, + "inputQty": "16246791038414323712", + "expectedQty": "16144421744863791169", "reserves": [ - "947746611532767361504288", - "865520613549511009472950" - ], - "LPTokenSupply": "1801617084340488712187908" + "4323379024484683806690255", + "1731845704143275907311203" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "252144082583340023808", - "656966510818506440704" + "2669884906608182272", + "2874138257384411648" ], - "expectedQty": "903403612680430703500", - "swapFee": "542367588161155115", + "expectedQty": "5533360737236808728", "reserves": [ - "947494467450184021480480", - "864863647038692503032246" + "4323381694369590414872527", + "1731848578281533291722851" ], - "LPTokenSupply": "1800713192596978936444803" + "LPTokenSupply": "6031701017265524419012165" }, { "type": "mintMulti", "inputQtys": [ - "4326347835957284175872", - "4456378892680783462400" + "6266284689756033908736", + "11345767814189662863360" ], - "expectedQty": "8726454469004646155836", + "expectedQty": "17596643495662028980339", "reserves": [ - "951820815286141305656352", - "869320025931373286494646" + "4329647979059346448781263", + "1743194346095722954586211" ], - "LPTokenSupply": "1809439647065983582600639" + "LPTokenSupply": "6049297660761186447992504" }, { "type": "mintMulti", "inputQtys": [ - "384168417761336688640", - "74766397406815535104" + "21326517163779629776896", + "21203494866285366345728" ], - "expectedQty": "455899532079297817266", + "expectedQty": "42439900650787836822997", "reserves": [ - "952204983703902642344992", - "869394792328780102029750" + "4350974496223126078558159", + "1764397840962008320931939" ], - "LPTokenSupply": "1809895546598062880417905" + "LPTokenSupply": "6091737561411974284815501" }, { "type": "redeemMasset", - "inputQty": "142021343602586547", + "inputQty": "21782692714714265", "expectedQtys": [ - "74674083466331187", - "68179919658707529" + "15548777986843561", + "6305307083137060" ], - "redemptionFee": "85212806161551", + "redemptionFee": "13069615628828", "reserves": [ - "952204909029819176013805", - "869394724148860443322221" + "4350974480674348091714598", + "1764397834656701237794879" ], - "LPTokenSupply": "1809895404585240558447513" + "LPTokenSupply": "6091737539630588531664118" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "466148048358196772864", - "2976263511575795073024" + "17826111619896489017344", + "62100663489041008689152" ], - "expectedQty": "3421107186400394688332", - "swapFee": "2053896649830134893", + "expectedQty": "79931534457310475975192", "reserves": [ - "951738760981460979240941", - "866418460637284648249197" + "4368800592294244580731942", + "1826498498145742246484031" ], - "LPTokenSupply": "1806472448891855316637776" + "LPTokenSupply": "6171669074087899007639310" }, { "type": "redeemMasset", - "inputQty": "348632124955887822438", + "inputQty": "137024546716313241", "expectedQtys": [ - "183566388085953020897", - "167110255366888294206" - ], - "redemptionFee": "209179274973532693", - "reserves": [ - "951555194593375026220044", - "866251350381917759954991" + "96938726610027406", + "40527928621341532" ], - "LPTokenSupply": "1806123837684826926168607" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "66582169967126195994624", - "outputIndex": 0, - "expectedQty": "66591277095118834392550", - "swapFee": "0", + "redemptionFee": "82214728029787", "reserves": [ - "884963917498256191827494", - "932833520349043955949615" + "4368800495355517970704536", + "1826498457617813625142499" ], - "LPTokenSupply": "1806123837684826926168607", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6171668937071573764129047" }, { "type": "redeemMasset", - "inputQty": "161197464526612198", + "inputQty": "1071344882602008064819", "expectedQtys": [ - "78936086418741176", - "83205909213485853" + "757928496533306406269", + "316873071080811274490" ], - "redemptionFee": "96718478715967", + "redemptionFee": "642806929561204838", "reserves": [ - "884963838562169773086318", - "932833437143134742463762" + "4368042566858984664298267", + "1826181584546732813868009" ], - "LPTokenSupply": "1806123676497034247428005" + "LPTokenSupply": "6170597656469664712184711" }, { - "type": "redeemBassets", - "inputQtys": [ - "1754929012155381", - "888487177366355" - ], - "expectedQty": "2626603019587484", - "swapFee": "1576907956526", + "type": "mint", + "inputIndex": 0, + "inputQty": "7290802721647245656064", + "expectedQty": "7246172724478496066355", "reserves": [ - "884963836807240760930937", - "932833436254647565097407" - ], - "LPTokenSupply": "1806123673869012010679646" + "4375333369580631909954331", + "1826181584546732813868009" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "406703647928156474572800", - "expectedQty": "408762539361951123877865", - "swapFee": "244022188756893884743", + "inputQty": "32383542543364040687616", + "expectedQty": "32305852382762980794375", + "swapFee": "19430125526018424412", "reserves": [ - "884963836807240760930937", - "524070896892696441219542" + "4375333369580631909954331", + "1793875732163969833073634" ], - "LPTokenSupply": "1399444428159731225495320" + "LPTokenSupply": "6145462229663331769405891" }, { - "type": "mintMulti", - "inputQtys": [ - "8994757307878575439872", - "535077510678488481792" + "type": "redeemMasset", + "inputQty": "587916362695924567244", + "expectedQtys": [ + "418322753619567680928", + "171511282122504026255" ], - "expectedQty": "9453243148091583796050", + "redemptionFee": "352749817617554740", "reserves": [ - "893958594115119336370809", - "524605974403374929701334" + "4374915046827012342273403", + "1793704220881847329047379" ], - "LPTokenSupply": "1408897671307822809291370" + "LPTokenSupply": "6144874348575617606594121" }, { - "type": "mintMulti", - "inputQtys": [ - "15889424168328706", - "54011241053031648" - ], - "expectedQty": "69535236404878299", - "reserves": [ - "893958610004543504699515", - "524606028414615982732982" + "type": "redeemMasset", + "inputQty": "21639832465020", + "expectedQtys": [ + "15397487375272", + "6312931291324" ], - "LPTokenSupply": "1408897740843059214169669" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "626029141361599184896", - "expectedQty": "623314708839020505533", - "reserves": [ - "893958610004543504699515", - "525232057555977581917878" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "50431170142618819493888", - "expectedQty": "50605339940854761960423", - "swapFee": "30258702085571291696", + "redemptionFee": "12983899479", "reserves": [ - "893958610004543504699515", - "474626717615122819957455" + "4374915046811614854898131", + "1793704220875534397756055" ], - "LPTokenSupply": "1359092911279487972310483" + "LPTokenSupply": "6144874348553979072519048" }, { "type": "swap", "inputIndex": 0, - "inputQty": "77014973895608423677952", + "inputQty": "233425689390052352", "outputIndex": 1, - "expectedQty": "76462140206516324465445", - "swapFee": "61070551918207635869", + "expectedQty": "231354119991668327", + "swapFee": "185582093183068", "reserves": [ - "970973583900151928377467", - "398164577408606495492010" + "4374915280237304244950483", + "1793703989521414406087728" ], - "LPTokenSupply": "1359099018334679793074069", + "LPTokenSupply": "6144874348572537281837354", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 1, + "inputQty": "214548976015474360320", + "expectedQty": "214954947461942849681", + "reserves": [ + "4374915280237304244950483", + "1793918538497429880448048" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "19314322627719579303936", - "54407032604827276279808" + "65693999735386138476544", + "64540638755294055235584" ], - "expectedQty": "73479082308852580835892", - "swapFee": "44113917735953120373", + "expectedQty": "129945247312275411030160", "reserves": [ - "951659261272432349073531", - "343757544803779219212202" + "4440609279972690383427027", + "1858459177252723935683632" ], - "LPTokenSupply": "1285580233499864854429840" + "LPTokenSupply": "6275034550832274635717195" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1625323773247436881920", - "expectedQty": "1641209847011668030783", - "swapFee": "975194263948462129", + "inputIndex": 1, + "inputQty": "54959895529129811968", + "expectedQty": "54834660729805833086", + "swapFee": "32975937317477887", "reserves": [ - "950018051425420681042748", - "343757544803779219212202" + "4440609279972690383427027", + "1858404342591994129850546" ], - "LPTokenSupply": "1283955007246043812394132" + "LPTokenSupply": "6274979594234339237653015" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3351323439481936674816", - "expectedQty": "3349717802864163823627", - "swapFee": "2010794063689162004", + "inputQty": "21259056398779396653056", + "expectedQty": "21209383807037459053964", + "swapFee": "12755433839267637991", "reserves": [ - "950018051425420681042748", - "340407827000915055388575" + "4440609279972690383427027", + "1837194958784956670796582" ], - "LPTokenSupply": "1280603884885968244635516" + "LPTokenSupply": "6253721813378943767763758" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1030219638958470725632", - "expectedQty": "1019587063841826176927", + "inputQty": "159777277242379206656", + "expectedQty": "158791944381814693604", "reserves": [ - "951048271064379151768380", - "340407827000915055388575" + "4440769057249932762633683", + "1837194958784956670796582" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "203691944241524834304", - "378838824919193944064" - ], - "expectedQty": "580413476143467405229", - "swapFee": "348457159982069684", - "reserves": [ - "950844579120137626934076", - "340028988175995861444511" + "type": "redeem", + "inputIndex": 0, + "inputQty": "288545713511762919424", + "expectedQty": "290161972171906219145", + "swapFee": "173127428107057751", + "reserves": [ + "4440478895277760856414538", + "1837194958784956670796582" ], - "LPTokenSupply": "1281042744862222619544497" + "LPTokenSupply": "6253592076922556630243713" }, { - "type": "redeemMasset", - "inputQty": "3618998240926712217", - "expectedQtys": [ - "2684563188939344802", - "960019465719892121" - ], - "redemptionFee": "2171398944556027", + "type": "mint", + "inputIndex": 1, + "inputQty": "34421934614447685632", + "expectedQty": "34483788574735524800", "reserves": [ - "950841894556948687589274", - "340028028156530141552390" - ], - "LPTokenSupply": "1281039126081121587287882" + "4440478895277760856414538", + "1837229380719571118482214" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "83781034139638939648", - "expectedQty": "84604526190683196373", - "swapFee": "50268620483783363", + "inputQty": "491319085530066496", + "expectedQty": "488289288114629114", + "reserves": [ + "4440479386596846386481034", + "1837229380719571118482214" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "37037578725169384", + "8385640005754179" + ], + "expectedQty": "45209888241601310", + "swapFee": "27142218275926", "reserves": [ - "950757290030758004392901", - "340028028156530141552390" + "4440479349559267661311650", + "1837229372333931112728035" ], - "LPTokenSupply": "1280955350073843996726570" + "LPTokenSupply": "6253627003766103242347982" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "107770562986665817669632", - "outputIndex": 1, - "hardLimitError": true + "type": "mint", + "inputIndex": 1, + "inputQty": "298993080811611", + "expectedQty": "299530323372759", + "reserves": [ + "4440479349559267661311650", + "1837229372632924193539646" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "150446741827729883136", - "579757085302477488128" + "27204184645322960896", + "29259228220189863936" ], - "expectedQty": "728625748726965768466", + "expectedQty": "56348228961098863978", + "swapFee": "33829234917609884", "reserves": [ - "950907736772585734276037", - "340607785241832619040518" + "4440452145374622338350754", + "1837200113404704003675710" ], - "LPTokenSupply": "1281683975822570962495036" + "LPTokenSupply": "6253570625390361041007866" }, { "type": "redeemMasset", - "inputQty": "3079939590014424737382", + "inputQty": "11681382471168378470", "expectedQtys": [ - "2283699568005783275088", - "818003494909207390647" + "8289583757582041926", + "3429746278286410897" ], - "redemptionFee": "1847963754008654842", + "redemptionFee": "7008829482701027", "reserves": [ - "948624037204579951000949", - "339789781746923411649871" + "4440443855790864756308828", + "1837196683658425717264813" ], - "LPTokenSupply": "1278604221028931938623138" + "LPTokenSupply": "6253558944708772820899498" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1865592417954780938240", - "1673925495117893074944" + "594606007678413184", + "79350182895511056" ], - "expectedQty": "3520191094634619329901", - "swapFee": "2113382686392607162", + "expectedQty": "670432016532102576", "reserves": [ - "946758444786625170062709", - "338115856251805518574927" + "4440444450396872434722012", + "1837196763008608612775869" ], - "LPTokenSupply": "1275082127889879565946790" + "LPTokenSupply": "6253559615140789353002074" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "93647329517706100736", - "expectedQty": "94568672280935418219", - "swapFee": "56188397710623660", + "type": "mintMulti", + "inputQtys": [ + "3550565436848607330304", + "8782184981444901732352" + ], + "expectedQty": "12326487486114778120732", "reserves": [ - "946663876114344234644490", - "338115856251805518574927" + "4443995015833721042052316", + "1845978947990053514508221" ], - "LPTokenSupply": "1274988486179201630908420" + "LPTokenSupply": "6265886102626904131122806" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1313682812122247987200", - "1107641095199941197824" + "109101963389120160", + "29809938936864544" ], - "expectedQty": "2407717219071264016784", + "expectedQty": "138293294667042181", + "swapFee": "83025792275590", "reserves": [ - "947977558926466482631690", - "339223497347005459772751" + "4443994906731757652932156", + "1845978918180114577643677" ], - "LPTokenSupply": "1277396203398272894925204" + "LPTokenSupply": "6265885964258886251032593" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "191389911951310880768", - "outputIndex": 1, - "expectedQty": "189268616706712383777", - "swapFee": "151530585113228491", + "inputIndex": 1, + "inputQty": "257970189879421534208", + "outputIndex": 0, + "expectedQty": "260022013707517585611", + "swapFee": "0", "reserves": [ - "948168948838417793512458", - "339034228730298747388974" + "4443734884718050135346545", + "1846236888369993999177885" ], - "LPTokenSupply": "1277396218551331406248053", + "LPTokenSupply": "6265885964258886251032593", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "28799355619226685538304", - "expectedQty": "29080383267974529699429", - "swapFee": "17279613371536011322", + "type": "mintMulti", + "inputQtys": [ + "1370979269862045184", + "728806627819438976" + ], + "expectedQty": "2092634255527098817", "reserves": [ - "919088565570443263813029", - "339034228730298747388974" + "4443736255697319997391729", + "1846237617176621818616861" ], - "LPTokenSupply": "1248598590893441874310881" + "LPTokenSupply": "6265888056893141778131410" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "64900435985621286125568", - "outputIndex": 1, - "expectedQty": "64041112136613164729431", - "swapFee": "51382432377757333103", + "type": "mintMulti", + "inputQtys": [ + "2477782901007214592", + "927685542789610112" + ], + "expectedQty": "3391859915620744406", "reserves": [ - "983989001556064549938597", - "274993116593685582659543" + "4443738733480221004606321", + "1846238544862164608226973" ], - "LPTokenSupply": "1248603729136679650044191", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6265891448753057398875816" }, { "type": "redeemBassets", "inputQtys": [ - "3497051051328400261120", - "10703278727973595774976" + "4822538423596130304", + "10918961781942294528" ], - "expectedQty": "14207108947968765036937", - "swapFee": "8529382998580407266", + "expectedQty": "15731001959095773540", + "swapFee": "9444267736099123", "reserves": [ - "980491950504736149677477", - "264289837865711986884567" + "4443733910941797408476017", + "1846227625900382665932445" ], - "LPTokenSupply": "1234388943744012162640713" + "LPTokenSupply": "6265875709251257340613064" }, { - "type": "redeemMasset", - "inputQty": "3760619712490054451", - "expectedQtys": [ - "2985319190736315766", - "804687406654327542" - ], - "redemptionFee": "2256371827494032", + "type": "redeem", + "inputIndex": 1, + "inputQty": "39920164320693733818368", + "expectedQty": "39821886690385960867833", + "swapFee": "23952098592416240291", "reserves": [ - "980488965185545413361711", - "264289033178305332557025" + "4443733910941797408476017", + "1806405739209996705064612" ], - "LPTokenSupply": "1234385183349936855335665" + "LPTokenSupply": "6225957940140422848418725" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5171407387251657670656", - "expectedQty": "5142010388994396960932", - "swapFee": "3102844432350994602", + "type": "redeemBassets", + "inputQtys": [ + "621333078911501440", + "61160377807650360" + ], + "expectedQty": "678733820969253033", + "swapFee": "407484783451622", "reserves": [ - "980488965185545413361711", - "259147022789310935596093" + "4443733289608718496974577", + "1806405678049618897414252" ], - "LPTokenSupply": "1229214086247128432764469" + "LPTokenSupply": "6225957261039865574059231" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "10794774221732907008", - "expectedQty": "10919782958012758307", - "swapFee": "6476864533039744", + "type": "mintMulti", + "inputQtys": [ + "18384969145079748608", + "77465059419634876416" + ], + "expectedQty": "95888364631921587575", "reserves": [ - "980478045402587400603404", - "259147022789310935596093" + "4443751674577863576723185", + "1806483143109038532290668" ], - "LPTokenSupply": "1229203292120593153161435" + "LPTokenSupply": "6226053149404497495646806" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2205664912629457747968", - "expectedQty": "2179090957949839721737", + "inputQty": "81287273132929633484800", + "expectedQty": "80776406362114359763097", "reserves": [ - "982683710315216858351372", - "259147022789310935596093" + "4525038947710793210207985", + "1806483143109038532290668" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "23945830864858642382848", - "16738238126495033720832" + "type": "redeemMasset", + "inputQty": "33657092543666", + "expectedQtys": [ + "24133881134435", + "9634712529757" ], - "expectedQty": "40491013835009735647924", - "swapFee": "24309193817296219120", + "redemptionFee": "20194255526", "reserves": [ - "958737879450358215968524", - "242408784662815901875261" + "4525038947686659329073550", + "1806483143099403819760911" ], - "LPTokenSupply": "1190869490969097690638039" + "LPTokenSupply": "6306829555732956782291789" }, { - "type": "redeemBassets", - "inputQtys": [ - "27667885245853450240", - "16921838394961238016" - ], - "expectedQty": "44356849926906349567", - "swapFee": "26630088008949179", + "type": "redeem", + "inputIndex": 0, + "inputQty": "280666616446762176", + "expectedQty": "282283370764732909", + "swapFee": "168399969868057", "reserves": [ - "958710211565112362518284", - "242391862824420940637245" + "4525038665403288564340641", + "1806483143099403819760911" ], - "LPTokenSupply": "1190825110152091576234209" + "LPTokenSupply": "6306829275083180332516418" }, { "type": "redeemBassets", "inputQtys": [ - "176426391517410164736", - "66822681161105260544" + "15922699362982226", + "14192751617982736" ], - "expectedQty": "241500491856551576166", - "swapFee": "144987287486422799", + "expectedQty": "30045583104044665", + "swapFee": "18038172766086", "reserves": [ - "958533785173594952353548", - "242325040143259835376701" + "4525038649480589201358415", + "1806483128906652201778175" ], - "LPTokenSupply": "1190583479171676286877522" + "LPTokenSupply": "6306829245021362872982274" }, { - "type": "mintMulti", - "inputQtys": [ - "98722750085849151438848", - "166591901705215640862720" - ], - "expectedQty": "264526808348958683390357", + "type": "redeem", + "inputIndex": 1, + "inputQty": "353043316791370", + "expectedQty": "352066794486774", + "swapFee": "211825990074", "reserves": [ - "1057256535259444103792396", - "408916941848475476239421" + "4525038649480589201358415", + "1806483128554585407291401" ], - "LPTokenSupply": "1455110287520634970267879" + "LPTokenSupply": "6306829244668340738789911" }, { - "type": "redeemBassets", - "inputQtys": [ - "19263169498631225999360", - "12276438863168151748608" + "type": "redeemMasset", + "inputQty": "15236453237373750476", + "expectedQtys": [ + "10925327099112746161", + "4361602321507872652" ], - "expectedQty": "31333143413332728107160", - "swapFee": "18811172751650627240", + "redemptionFee": "9141871942424250", "reserves": [ - "1037993365760812877793036", - "396640502985307324490813" + "4525027724153490088612254", + "1806478766952263899418749" ], - "LPTokenSupply": "1423760214051825756596202" + "LPTokenSupply": "6306814009129290559281860" }, { - "type": "redeemMasset", - "inputQty": "1366664556426541452492", - "expectedQtys": [ - "995769916558374123759", - "380505977773622058823" + "type": "mintMulti", + "inputQtys": [ + "203029067738830421884928", + "196017676692761308299264" ], - "redemptionFee": "819998733855924871", + "expectedQty": "398152305173952545816926", "reserves": [ - "1036997595844254503669277", - "396259997007533702431990" + "4728056791892320510497182", + "2002496443645025207718013" ], - "LPTokenSupply": "1422393631495272600736197" + "LPTokenSupply": "6704966314303243105098786" }, { - "type": "redeemMasset", - "inputQty": "2385359248858875084", - "expectedQtys": [ - "1738005278193592349", - "664130726142499228" - ], - "redemptionFee": "1431215549315325", + "type": "swap", + "inputIndex": 0, + "inputQty": "9055294796286874615808", + "outputIndex": 1, + "expectedQty": "8978715363233163096494", + "swapFee": "7200221643433931411", "reserves": [ - "1036995857838976310076928", - "396259332876807559932762" + "4737112086688607385112990", + "1993517728281792044621519" ], - "LPTokenSupply": "1422391246279145296792645" + "LPTokenSupply": "6704967034325407448491927", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2837207987215222702080", - "2923704075300241408000" + "985013667735313580032", + "3420474367228158935040" ], - "expectedQty": "5729380676302908460437", + "expectedQty": "4405046628437313254164", + "swapFee": "2644614745909933912", "reserves": [ - "1039833065826191532779008", - "399183036952107801340762" + "4736127073020872071532958", + "1990097253914563885686479" ], - "LPTokenSupply": "1428120626955448205253082" + "LPTokenSupply": "6700559607543698816297241" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "30635388854753980055552", - "expectedQty": "30927004843952753704924", - "swapFee": "18381233312852388033", + "inputIndex": 1, + "inputQty": "65267872215998029824", + "expectedQty": "65122191006073413430", + "swapFee": "39160723329598817", "reserves": [ - "1008906060982238779074084", - "399183036952107801340762" + "4736127073020872071532958", + "1990032131723557812273049" ], - "LPTokenSupply": "1397487076224025510436333" + "LPTokenSupply": "6700494343587555151227298" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1469696499631509760", - "expectedQty": "1467689668671166307", + "type": "redeemBassets", + "inputQtys": [ + "236105597893259952128", + "89463657330089459712" + ], + "expectedQty": "324273870759572858038", + "swapFee": "194681131134424369", "reserves": [ - "1008906060982238779074084", - "399184506648607432850522" - ] + "4735890967422978811580830", + "1989942668066227722813337" + ], + "LPTokenSupply": "6700169894503777557387326" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "5974023462158669447168", + "4557111736646789758976" + ], + "expectedQty": "10502120892040665470324", + "swapFee": "6305055568565538605", + "reserves": [ + "4729916943960820142133662", + "1985385556329580933054361" + ], + "LPTokenSupply": "6689662099061725182932256" }, { "type": "redeemMasset", - "inputQty": "4865771701237241505382", + "inputQty": "2008741572318745395", "expectedQtys": [ - "3510698615859755740124", - "1389045570406774196590" + "1419425966492593890", + "595804925444140140" ], - "redemptionFee": "2919463020742344903", + "redemptionFee": "1205244943391247", "reserves": [ - "1005395362366379023333960", - "397795461078200658653932" + "4729915524534853649539772", + "1985384960524655488914221" ], - "LPTokenSupply": "1392623064158759014331748" + "LPTokenSupply": "6689660090440677358525985" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "31382633730554489470976", - "expectedQty": "31067605244724097317686", + "type": "swap", + "inputIndex": 1, + "inputQty": "280222576914708758528", + "outputIndex": 0, + "expectedQty": "282409145764679760622", + "swapFee": "0", "reserves": [ - "1036777996096933512804936", - "397795461078200658653932" - ] + "4729633115389088969779150", + "1985665183101570197672749" + ], + "LPTokenSupply": "6689660090440677358525985", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "273345580158901037301760", - "expectedQty": "272390181894606737266077", + "type": "swap", + "inputIndex": 0, + "inputQty": "16158667653932694634496", + "outputIndex": 1, + "expectedQty": "16019438334635992371378", + "swapFee": "12847849626106988997", "reserves": [ - "1036777996096933512804936", - "671141041237101695955692" - ] + "4745791783043021664413646", + "1969645744766934205301371" + ], + "LPTokenSupply": "6689661375225639969224884", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "17500867862171974893568", - "25923786634806289235968" + "type": "redeemMasset", + "inputQty": "542265245913702413107", + "expectedQtys": [ + "384463983639430436759", + "159564069392440021900" ], - "expectedQty": "43151870196095560420746", - "swapFee": "25906666117327732892", + "redemptionFee": "325359147548221447", "reserves": [ - "1019277128234761537911368", - "645217254602295406719724" + "4745407319059382233976887", + "1969486180697541765279471" ], - "LPTokenSupply": "1652905665102488693535161" + "LPTokenSupply": "6689119142515641021633921" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "12808633313248837369856", - "outputIndex": 0, - "expectedQty": "12849217156132356179458", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "3027857039985011200", + "outputIndex": 1, + "expectedQty": "3001519539458554202", + "swapFee": "2407362118577071", "reserves": [ - "1006427911078629181731910", - "658025887915544244089580" + "4745410346916422218988087", + "1969483179178002306725269" ], - "LPTokenSupply": "1652905665102488693535161", + "LPTokenSupply": "6689119142756377233491628", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "10130890743075427057664", - "77492858138966727065600" + "18286011913189405491200", + "12010563719637514584064" ], - "expectedQty": "87165530925089007928317", - "swapFee": "52330716985244551487", + "expectedQty": "30205078678477090264451", + "swapFee": "18133927563624428815", "reserves": [ - "996297020335553754674246", - "580533029776577517023980" + "4727124335003232813496887", + "1957472615458364792141205" ], - "LPTokenSupply": "1565693036532112965510504" + "LPTokenSupply": "6658897743543092881241242" }, { - "type": "mintMulti", - "inputQtys": [ - "790759228566107455488", - "164252945282443444224" + "type": "redeemMasset", + "inputQty": "183552689516994688", + "expectedQtys": [ + "130225123276702552", + "53925408894213185" ], - "expectedQty": "947516752932072603803", + "redemptionFee": "110131613710196", "reserves": [ - "997087779564119862129734", - "580697282721859960468204" + "4727124204778109536794335", + "1957472561532955897928020" ], - "LPTokenSupply": "1566640553285045038114307" + "LPTokenSupply": "6658897560001416525617573" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "16961619223997104128", - "32942507176724692992" + "5931708381597848829952", + "9115401073590588669952" ], - "expectedQty": "49610034340141608447", + "expectedQty": "15026819967988502388344", + "swapFee": "9021504883723335434", "reserves": [ - "997104741183343859233862", - "580730225229036685161196" + "4721192496396511687964383", + "1948357160459365309258068" ], - "LPTokenSupply": "1566690163319385179722754" + "LPTokenSupply": "6643862620679032672227337" }, { - "type": "mintMulti", - "inputQtys": [ - "108493169069285296", - "24593663720772868" + "type": "mint", + "inputIndex": 1, + "inputQty": "3234213450145056423936", + "expectedQty": "3240046671150876937794", + "reserves": [ + "4721192496396511687964383", + "1951591373909510365682004" + ] + }, + { + "type": "redeemMasset", + "inputQty": "13606174865833311023923", + "expectedQtys": [ + "9658167094990075365224", + "3992380231211881572324" ], - "expectedQty": "132049075343087682", + "redemptionFee": "8163704919499986614", "reserves": [ - "997104849676512928519158", - "580730249822700405934064" + "4711534329301521612599159", + "1947598993678298484109680" ], - "LPTokenSupply": "1566690295368460522810436" + "LPTokenSupply": "6633497308854842188139869" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "560739414440720", - "expectedQty": "565228886235765", - "swapFee": "336443648664", + "inputQty": "527269915349742321664", + "expectedQty": "524009846391293548155", "reserves": [ - "997104849111284042283393", - "580730249822700405934064" - ], - "LPTokenSupply": "1566690294807754752734582" + "4712061599216871354920823", + "1947598993678298484109680" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "57854237493126250889216", - "outputIndex": 1, - "expectedQty": "57530191914057378263146", - "swapFee": "45883736887574340024", + "inputIndex": 1, + "inputQty": "2574664627198893228032", + "outputIndex": 0, + "expectedQty": "2595298525029980492715", + "swapFee": "0", "reserves": [ - "1054959086604410293172609", - "523200057908643027670918" + "4709466300691841374428108", + "1950173658305497377337712" ], - "LPTokenSupply": "1566694883181443510168584", + "LPTokenSupply": "6634021318701233481688024", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1240331869952150601728", - "1271953511229028827136" - ], - "expectedQty": "2496510741604982922645", - "swapFee": "1498805728400029771", + "type": "mint", + "inputIndex": 0, + "inputQty": "79119506726846774378496", + "expectedQty": "78628111202358704427894", + "reserves": [ + "4788585807418688148806604", + "1950173658305497377337712" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "67963959988902502072320", + "expectedQty": "67778226218933539786832", + "swapFee": "40778375993341501243", "reserves": [ - "1053718754734458142570881", - "521928104397413998843782" + "4788585807418688148806604", + "1882395432086563837550880" ], - "LPTokenSupply": "1564197023514682967219144" + "LPTokenSupply": "6644689547752289018193722" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "11283181320926557896704", - "expectedQty": "11179867475576928733920", + "type": "redeemBassets", + "inputQtys": [ + "10100052422559174492160", + "20423523106468145397760" + ], + "expectedQty": "30507259024638145997281", + "swapFee": "18315344621555821091", "reserves": [ - "1065001936055384700467585", - "521928104397413998843782" - ] + "4778485754996128974314444", + "1861971908980095692153120" + ], + "LPTokenSupply": "6614165804917491471957458" }, { - "type": "redeemMasset", - "inputQty": "1193208675543798094233", - "expectedQtys": [ - "806160795620262200781", - "395077193433114386296" + "type": "redeemBassets", + "inputQtys": [ + "158343468267967520", + "1615579787237542912" ], - "redemptionFee": "715925205326278856", + "expectedQty": "1776822251558188385", + "swapFee": "1066733390969494", "reserves": [ - "1064195775259764438266804", - "521533027203980884457486" + "4778485596652660706346924", + "1861970293400308454610208" ], - "LPTokenSupply": "1574183753907236630486716" + "LPTokenSupply": "6614164027135179861896527" }, { "type": "redeemBassets", "inputQtys": [ - "157059237359927918592", - "122911904859985854464" + "3711886659136873984", + "62781490898068398080" ], - "expectedQty": "278110546045758145550", - "swapFee": "166966507531974071", + "expectedQty": "66621785230911501393", + "swapFee": "39997069380175005", "reserves": [ - "1064038716022404510348212", - "521410115299120898603022" + "4778481884766001569472940", + "1861907511909410386212128" ], - "LPTokenSupply": "1573905493091334093564501" + "LPTokenSupply": "6614097369352586508237628" }, { "type": "mintMulti", "inputQtys": [ - "13728167491879896612864", - "5002565082819246161920" + "123039845165990789120", + "295030517381661130752" ], - "expectedQty": "18587662438388185061131", + "expectedQty": "417992800018279862056", "reserves": [ - "1077766883514284406961076", - "526412680381940144764942" + "4778604924611167560262060", + "1862202542426792047342880" ], - "LPTokenSupply": "1592493155529722278625632" + "LPTokenSupply": "6614515362152604788099684" }, { "type": "redeemMasset", - "inputQty": "236142229456979558", + "inputQty": "1955134789483781475532", "expectedQtys": [ - "159720354250773340", - "78012064648475761" + "1411624364302203945727", + "550104166723736141821" ], - "redemptionFee": "141685337674187", + "redemptionFee": "1173080873690268885", "reserves": [ - "1077766723793930156187736", - "526412602369875496289181" + "4777193300246865356316333", + "1861652438260068311201059" ], - "LPTokenSupply": "1592492919401661355413492" + "LPTokenSupply": "6612560344671208375651040" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "4755740012178045927424", - "outputIndex": 0, - "expectedQty": "4783227909120413454469", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "1909052323761292032", + "outputIndex": 1, + "expectedQty": "1890641835666843714", + "swapFee": "1517395286320306", "reserves": [ - "1072983495884809742733267", - "531168342382053542216605" + "4777195209299189117608365", + "1861650547618232644357345" ], - "LPTokenSupply": "1592492919401661355413492", + "LPTokenSupply": "6612560344822947904283070", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "14227860223334204781363", - "expectedQtys": [ - "9580638795935868421739", - "4742786862720553341547" + "type": "redeemBassets", + "inputQtys": [ + "595354158848735444992", + "773679922506505519104" ], - "redemptionFee": "8536716134000522868", + "expectedQty": "1367072764470518607761", + "swapFee": "820736100342516674", "reserves": [ - "1063402857088873874311528", - "526425555519332988875058" + "4776599855140340382163373", + "1860876867695726138838241" ], - "LPTokenSupply": "1578265912849940550684415" + "LPTokenSupply": "6611192533395987077410301" }, { "type": "redeemMasset", - "inputQty": "1228380035105178832076", + "inputQty": "2536501337714797733478", "expectedQtys": [ - "827160411049534291712", - "409476404908661211177" - ], - "redemptionFee": "737028021063107299", - "reserves": [ - "1062575696677824340019816", - "526016079114424327663881" + "1831527723625160089136", + "713530058367707759204" ], - "LPTokenSupply": "1577037606517637478163068" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4473554693543343685632", - "expectedQty": "4486398011645717334245", - "swapFee": "2684132816126006211", + "redemptionFee": "1521900802628878640", "reserves": [ - "1062575696677824340019816", - "521529681102778610329636" + "4774768327416715222074237", + "1860163337637358431079037" ], - "LPTokenSupply": "1572564320237375747078057" + "LPTokenSupply": "6608656184248352542564687" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "98554792184970969088", - "expectedQty": "98834600474829676293", - "swapFee": "59132875310982581", + "inputQty": "199825593604267514527744", + "expectedQty": "199086769993628024043730", + "swapFee": "119895356162560508716", "reserves": [ - "1062575696677824340019816", - "521430846502303780653343" + "4774768327416715222074237", + "1661076567643730407035307" ], - "LPTokenSupply": "1572465771358478307207227" + "LPTokenSupply": "6408842580179701284087814" }, { "type": "redeemBassets", "inputQtys": [ - "20644313101998149861376", - "29576476374591952912384" + "564133511118064451584", + "453600788249966804992" ], - "expectedQty": "49932805270923944577563", - "swapFee": "29977669764413014555", + "expectedQty": "1015535023489167512673", + "swapFee": "609686826189214036", "reserves": [ - "1041931383575826190158440", - "491854370127711827740959" + "4774204193905597157622653", + "1660622966855480440230315" ], - "LPTokenSupply": "1522505986184766390916563" + "LPTokenSupply": "6407826496438068546282507" }, { - "type": "mintMulti", - "inputQtys": [ - "1372691720163032563712", - "1747946498392672698368" - ], - "expectedQty": "3102311953514649646853", + "type": "mint", + "inputIndex": 0, + "inputQty": "1920943590421880320", + "expectedQty": "1907505911905791904", "reserves": [ - "1043304075295989222722152", - "493602316626104500439327" - ], - "LPTokenSupply": "1525608298138281040563416" + "4774206114849187579502973", + "1660622966855480440230315" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "96428575445942048", - "outputIndex": 1, - "expectedQty": "95754639543786781", - "swapFee": "76422794772603", + "inputIndex": 1, + "inputQty": "1462838951608987942912", + "outputIndex": 0, + "expectedQty": "1478801858308702895992", + "swapFee": "0", "reserves": [ - "1043304171724564668664200", - "493602220871464956652546" + "4772727312990878876606981", + "1662085805807089428173227" ], - "LPTokenSupply": "1525608298145923320040676", + "LPTokenSupply": "6407828403943980452074411", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1001753728064074678272", - "1762360461591129096192" + "type": "redeemMasset", + "inputQty": "219682670856657069670", + "expectedQtys": [ + "163527536326249019614", + "56947899840549955802" ], - "expectedQty": "2749181317997220772590", + "redemptionFee": "131809602513994241", "reserves": [ - "1044305925452628743342472", - "495364581333056085748738" + "4772563785454552627587367", + "1662028857907248878217425" ], - "LPTokenSupply": "1528357479463920540813266" + "LPTokenSupply": "6407608734454084046404165" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "300282485873828288", - "650226250981465856" + "46758122110060176", + "14876608136261002" ], - "expectedQty": "945640562895302059", + "expectedQty": "61364966379073355", + "swapFee": "36841084478130", "reserves": [ - "1044306225735114617170760", - "495365231559307067214594" + "4772563738696430517527191", + "1662028843030640741956423" ], - "LPTokenSupply": "1528358425104483436115325" + "LPTokenSupply": "6407608673055960691300492" }, { - "type": "redeemMasset", - "inputQty": "15719743597384321046937", - "expectedQtys": [ - "10734639270839323305173", - "5091961473620227871189" - ], - "redemptionFee": "9431846158430592628", + "type": "mint", + "inputIndex": 1, + "inputQty": "11807315482579658752", + "expectedQty": "11852597675410888563", "reserves": [ - "1033571586464275293865587", - "490273270085686839343405" - ], - "LPTokenSupply": "1512639624691714958127650" + "4772563738696430517527191", + "1662040650346123321615175" + ] }, { "type": "mintMulti", "inputQtys": [ - "6256270753735255040", - "29931805092914745344" + "401136157921901871104", + "2611712548658188648448" ], - "expectedQty": "36034324105389532345", + "expectedQty": "3020035194709500255381", "reserves": [ - "1033577842735029029120627", - "490303201890779754088749" + "4772964874854352419398295", + "1664652362894781510263623" ], - "LPTokenSupply": "1512675659015820347659995" + "LPTokenSupply": "6410640560848345602444436" }, { "type": "redeemMasset", - "inputQty": "4120717114149660", + "inputQty": "3177638883318010426163", "expectedQtys": [ - "2813905565843698", - "1334845670743685" + "2364453064543267651400", + "824643064436099605349" ], - "redemptionFee": "2472430268489", + "redemptionFee": "1906583329990806255", "reserves": [ - "1033577839921123463276929", - "490303200555934083345064" + "4770600421789809151746895", + "1663827719830345410658274" ], - "LPTokenSupply": "1512675654895350476537183" + "LPTokenSupply": "6407463112623360591098898" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "27975438282346576478208", - "expectedQty": "28041211111422337907908", - "swapFee": "16785262969407945886", + "type": "mint", + "inputIndex": 0, + "inputQty": "2289728837024734248960", + "expectedQty": "2273738115658687573266", "reserves": [ - "1033577839921123463276929", - "462261989444511745437156" - ], - "LPTokenSupply": "1484701895139300840853563" + "4772890150626833885995855", + "1663827719830345410658274" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "46812890961555928", - "13765033448880068" - ], - "expectedQty": "60092815644329674", - "swapFee": "36077335788070", + "type": "redeem", + "inputIndex": 0, + "inputQty": "47298186951312908746752", + "expectedQty": "47601133029172355193089", + "swapFee": "28378912170787745248", "reserves": [ - "1033577793108232501721001", - "462261975679478296557088" + "4725289017597661530802766", + "1663827719830345410658274" ], - "LPTokenSupply": "1484701835014015594314625" + "LPTokenSupply": "6362441501678923448699936" }, { "type": "redeemMasset", - "inputQty": "52106565276567332454", + "inputQty": "1746660520442874088652", "expectedQtys": [ - "36252312593962289801", - "16213647153001667841" + "1296440004529499109232", + "456491192094278612125" ], - "redemptionFee": "31263939165940399", + "redemptionFee": "1047996312265724453", "reserves": [ - "1033541540795638539431200", - "462245762032325294889247" + "4723992577593132031693534", + "1663371228638251132046149" ], - "LPTokenSupply": "1484649731575132943576210" + "LPTokenSupply": "6360694945958111801183729" }, { "type": "redeemMasset", - "inputQty": "14937402855004218982", + "inputQty": "3709784865670357739110", "expectedQtys": [ - "10392460240476638455", - "4647970607501331569" + "2753548365547966186303", + "969555530133783766154" ], - "redemptionFee": "8962441713002531", + "redemptionFee": "2225870919402214643", "reserves": [ - "1033531148335398062792745", - "462241114061717793557678" + "4721239029227584065507231", + "1662401673108117348279995" ], - "LPTokenSupply": "1484634795068522110657481" + "LPTokenSupply": "6356985383679533383666083" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "120400276978575461056512", - "outputIndex": 1, - "expectedQty": "119097337428019635708372", - "swapFee": "95376353378214949156", - "reserves": [ - "1153931425313973523849257", - "343143776633698157849306" + "type": "redeemBassets", + "inputQtys": [ + "335826305756946366464", + "107878608967255984" ], - "LPTokenSupply": "1484644332703859932152396", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "239726355389386562994176", - "expectedQty": "239407979594372259232347", + "expectedQty": "333603845101337078732", + "swapFee": "200282476546730285", "reserves": [ - "1153931425313973523849257", - "582870132023084720843482" - ] + "4720903202921827119140767", + "1662401565229508381024011" + ], + "LPTokenSupply": "6356651599580203154530093" }, { "type": "mint", "inputIndex": 0, - "inputQty": "69980113471439200256", - "expectedQty": "69338927710225680828", + "inputQty": "1049109828029825548288", + "expectedQty": "1041828275326235385883", "reserves": [ - "1154001405427444963049513", - "582870132023084720843482" + "4721952312749856944689055", + "1662401565229508381024011" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "57535619944335294464", - "expectedQty": "58032819552427885969", - "swapFee": "34521371966601176", - "reserves": [ - "1153943372607892535163544", - "582870132023084720843482" - ], - "LPTokenSupply": "1724064119058135278431224" - }, - { - "type": "mint", "inputIndex": 1, - "inputQty": "2195539066824272904192", - "expectedQty": "2187310603713000384018", + "inputQty": "2807509106617874382848", + "expectedQty": "2795507903388766304075", + "swapFee": "1684505463970724629", "reserves": [ - "1153943372607892535163544", - "585065671089908993747674" - ] + "4721952312749856944689055", + "1659606057326119614719936" + ], + "LPTokenSupply": "6354886087199457912605590" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1688578080035486302208", - "expectedQty": "1682209218869714225646", + "inputQty": "5981039468426684", + "expectedQty": "6003180303081707", "reserves": [ - "1153943372607892535163544", - "586754249169944480049882" + "4721952312749856944689055", + "1659606063307159083146620" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "113242909628021040218112", - "33815406987750026510336" - ], - "expectedQty": "145899280608015970705550", - "swapFee": "87592123638992978210", - "reserves": [ - "1040700462979871494945432", - "552938842182194453539546" - ], - "LPTokenSupply": "1581955525361426928654948" - }, { "type": "redeemMasset", - "inputQty": "13627064826829811", + "inputQty": "302241151605718541926", "expectedQtys": [ - "8959280732937025", - "4760192285367760" + "224443362623844015414", + "78884228558136071073" ], - "redemptionFee": "8176238896097", + "redemptionFee": "181344690963431125", "reserves": [ - "1040700454020590762008407", - "552938837422002168171786" + "4721727869387233100673641", + "1659527179078600947075547" ], - "LPTokenSupply": "1581955511735179725714746" + "LPTokenSupply": "6354583870185501593488483" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "161069209837768160", - "expectedQty": "160403099069846180", + "inputQty": "272631468109372686336", + "outputIndex": 0, + "expectedQty": "275555146469500724318", + "swapFee": "0", "reserves": [ - "1040700454020590762008407", - "552938998491212005939946" - ] + "4721452314240763599949323", + "1659799810546710319761883" + ], + "LPTokenSupply": "6354583870185501593488483", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1245664020611567190016", - "1803659936765515661312" - ], - "expectedQty": "3030624909541039558263", - "swapFee": "1819466625700043761", + "type": "swap", + "inputIndex": 1, + "inputQty": "222618997281113210880", + "outputIndex": 0, + "expectedQty": "225005497135516228144", + "swapFee": "0", "reserves": [ - "1039454789999979194818391", - "551135338554446490278634" + "4721227308743628083721179", + "1660022429543991432972763" ], - "LPTokenSupply": "1578923409708774625963277" + "LPTokenSupply": "6354583870185501593488483", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1236880020823380590592", - "423620967083956174848" - ], - "expectedQty": "1647575991207202453392", - "swapFee": "989139078171224206", + "type": "redeem", + "inputIndex": 0, + "inputQty": "109997329466491469824", + "expectedQty": "110700438503839572951", + "swapFee": "65998397679894881", "reserves": [ - "1038217909979155814227799", - "550711717587362534103786" + "4721116608305124244148228", + "1660022429543991432972763" ], - "LPTokenSupply": "1577274943492397069408098" + "LPTokenSupply": "6354473879455874870008147" }, { "type": "redeemBassets", "inputQtys": [ - "518894968553670574080", - "241111367215874736128" + "46363504106905001787392", + "36393083579117927923712" ], - "expectedQty": "754322232154825340165", - "swapFee": "452865058327891939", + "expectedQty": "82570693143804422516503", + "swapFee": "49572159181791728547", "reserves": [ - "1037699015010602143653719", - "550470606220146659367658" + "4674753104198219242360836", + "1623629345964873505049051" ], - "LPTokenSupply": "1576520213681689748965186" + "LPTokenSupply": "6271858571368806834935950" }, { "type": "redeemMasset", - "inputQty": "1773385849959749989171", + "inputQty": "12581258210037374491033", "expectedQtys": [ - "1166579780789581531233", - "618838285327702400499" + "9371861089932075012277", + "3255022961160186508134" ], - "redemptionFee": "1064031509975849993", + "redemptionFee": "7548754926022424694", "reserves": [ - "1036532435229812562122486", - "549851767934818956967159" + "4665381243108287167348559", + "1620374323003713318540917" ], - "LPTokenSupply": "1574746934234880996561014" + "LPTokenSupply": "6259278068034262062687386" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "10910495162572937887744", - "expectedQty": "10811686569308540537798", + "type": "redeemBassets", + "inputQtys": [ + "6425570722625087488", + "41505349962309976064" + ], + "expectedQty": "48046034862747266480", + "swapFee": "28844927874372983", "reserves": [ - "1047442930392385500010230", - "549851767934818956967159" - ] + "4665374817537564542261071", + "1620332817653751008564853" + ], + "LPTokenSupply": "6259229996038964228485220" }, { "type": "mint", "inputIndex": 1, - "inputQty": "361970819962184007680", - "expectedQty": "360501579014766115761", + "inputQty": "539871057949872076357632", + "expectedQty": "540987629375315245854623", "reserves": [ - "1047442930392385500010230", - "550213738754781140974839" + "4665374817537564542261071", + "2160203875603623084922485" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6884417314443697", - "expectedQty": "6821957976819107", + "inputIndex": 1, + "inputQty": "126187948434468710121472", + "expectedQty": "126246669557238983753297", "reserves": [ - "1047442937276802814453927", - "550213738754781140974839" + "4665374817537564542261071", + "2286391824038091795043957" ] }, { "type": "redeemMasset", - "inputQty": "511006099741720602214", + "inputQty": "56541884835912185", "expectedQtys": [ - "337298775448834258550", - "177180458917991090551" + "38061383264413130", + "18652999793329841" ], - "redemptionFee": "306603659845032361", + "redemptionFee": "33925130901547", "reserves": [ - "1047105638501353980195377", - "550036558295863149884288" + "4665374779476181277847941", + "2286391805385092001714116" ], - "LPTokenSupply": "1585408153765786543934702" + "LPTokenSupply": "6926464238433026135271109" }, { - "type": "redeemBassets", - "inputQtys": [ - "27110591945582145536", - "28269322450327252992" - ], - "expectedQty": "55019134843697467923", - "swapFee": "33031299686030098", + "type": "redeem", + "inputIndex": 0, + "inputQty": "151195557217750089728", + "expectedQty": "151947026184296938088", + "swapFee": "90717334330650053", "reserves": [ - "1047078527909408398049841", - "550008288973412822631296" + "4665222832449996980909853", + "2286391805385092001714116" ], - "LPTokenSupply": "1585353104902773129039689" + "LPTokenSupply": "6926313051947541818246386" }, { "type": "redeemMasset", - "inputQty": "23197771601723781441126", + "inputQty": "200864443276728677171", "expectedQtys": [ - "15312244654717896874099", - "8043199491158244054415" + "135211205954143418771", + "66266029382231652266" ], - "redemptionFee": "13918662961034268864", + "redemptionFee": "120518665966037206", "reserves": [ - "1031766283254690501175742", - "541965089482254578576881" + "4665087621244042837491082", + "2286325539355709770061850" ], - "LPTokenSupply": "1562156725167345451025449" + "LPTokenSupply": "6926112199556131686172935" }, { "type": "mint", "inputIndex": 0, - "inputQty": "571883137380620369920", - "expectedQty": "566689417839624343696", + "inputQty": "14744944046034674253824", + "expectedQty": "14663131465523091050616", "reserves": [ - "1032338166392071121545662", - "541965089482254578576881" + "4679832565290077511744906", + "2286325539355709770061850" ] }, { - "type": "redeemMasset", - "inputQty": "888962826146412", - "expectedQtys": [ - "586898243938959", - "308114501283054" - ], - "redemptionFee": "533377695687", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1784742156965321637888", + "expectedQty": "1783189377801184646696", + "swapFee": "1070845294179192982", "reserves": [ - "1032338165805172877606703", - "541965089174140077293827" + "4679832565290077511744906", + "2284542349977908585415154" ], - "LPTokenSupply": "1562723413696275586992301" + "LPTokenSupply": "6938990695949218873504961" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "110999198448509081616384", - "expectedQty": "109969972949189266965331", + "inputQty": "262410599889791824691200", + "expectedQty": "263690521667673202400981", + "swapFee": "157446359933875094814", "reserves": [ - "1143337364253681959223087", - "541965089174140077293827" - ] + "4416142043622404309343925", + "2284542349977908585415154" + ], + "LPTokenSupply": "6676595840695420436323242" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "37410793358280699674624", - "expectedQty": "37277201546249806787640", + "type": "mintMulti", + "inputQtys": [ + "9760392169038553284608", + "11964528839097090834432" + ], + "expectedQty": "21670407553399642251723", "reserves": [ - "1143337364253681959223087", - "579375882532420776968451" - ] + "4425902435791442862628533", + "2296506878817005676249586" + ], + "LPTokenSupply": "6698266248248820078574965" }, { - "type": "redeemMasset", - "inputQty": "50628160373119750", - "expectedQtys": [ - "33831187973080328", - "17143648936740774" + "type": "mintMulti", + "inputQtys": [ + "8805804928697910689792", + "12282986172146107023360" ], - "redemptionFee": "30376896223871", + "expectedQty": "21039164200615719492167", "reserves": [ - "1143337330422493986142759", - "579375865388771840227677" + "4434708240720140773318325", + "2308789864989151783272946" ], - "LPTokenSupply": "1709970537566591977247909" + "LPTokenSupply": "6719305412449435798067132" }, { - "type": "redeemMasset", - "inputQty": "64679997398030643258982", - "expectedQtys": [ - "43221028257386545870968", - "21901865690296742787234" - ], - "redemptionFee": "38807998438818385955", + "type": "redeem", + "inputIndex": 0, + "inputQty": "36898202140498993348608", + "expectedQty": "37073545217288557729710", + "swapFee": "22138921284299396009", "reserves": [ - "1100116302165107440271791", - "557473999698475097440443" + "4397634695502852215588615", + "2308789864989151783272946" ], - "LPTokenSupply": "1645294420968405215827522" + "LPTokenSupply": "6682409424201065234658124" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "49918374050206293426176", - "expectedQty": "49711802649541349342052", + "type": "redeemBassets", + "inputQtys": [ + "16584726552658475008", + "2926721372254175756288" + ], + "expectedQty": "2942415061729560752503", + "swapFee": "1766508942403178358", "reserves": [ - "1100116302165107440271791", - "607392373748681390866619" - ] + "4397618110776299557113607", + "2305863143616897607516658" + ], + "LPTokenSupply": "6679465419281287511045097" }, { "type": "mintMulti", "inputQtys": [ - "848323697254314278912", - "1068699063050761273344" + "7407713848790770", + "9965608859259746" ], - "expectedQty": "1904728951628534105787", + "expectedQty": "17331225037474876", "reserves": [ - "1100964625862361754550703", - "608461072811732152139963" + "4397618118184013405904377", + "2305863153582506466776404" ], - "LPTokenSupply": "1696910952569575099275361" + "LPTokenSupply": "6679465436612512548519973" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "656282348895863", - "outputIndex": 1, - "expectedQty": "652792709355466", - "swapFee": "520341021572", + "type": "mintMulti", + "inputQtys": [ + "40764033124040467021824", + "32488320210343078920192" + ], + "expectedQty": "73026552646734815012953", "reserves": [ - "1100964626518644103446566", - "608461072158939442784497" + "4438382151308053872926201", + "2338351473792849545696596" ], - "LPTokenSupply": "1696910952569627133377518", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6752491989259247363532926" }, { "type": "mint", "inputIndex": 0, - "inputQty": "121271373491682458730496", - "expectedQty": "120166447165670784321504", + "inputQty": "145608237886698717970432", + "expectedQty": "144827664643915274938443", "reserves": [ - "1222236000010326562177062", - "608461072158939442784497" + "4583990389194752590896633", + "2338351473792849545696596" ] }, { "type": "redeemMasset", - "inputQty": "1419615404166558515200", + "inputQty": "336287218163298336768", "expectedQtys": [ - "954314874183291117897", - "475082923034408035013" + "223363934245403733492", + "113940767865933389445" ], - "redemptionFee": "851769242499935109", + "redemptionFee": "201772330897979002", "reserves": [ - "1221281685136143271059165", - "607985989235905034749484" + "4583767025260507187163141", + "2338237533024983612307151" ], - "LPTokenSupply": "1815657869508055609177332" + "LPTokenSupply": "6896983386862232429932501" }, { "type": "mint", "inputIndex": 0, - "inputQty": "909505612117027061760", - "expectedQty": "901048534995618566654", + "inputQty": "2861718416902292", + "expectedQty": "2846210746812137", "reserves": [ - "1222191190748260298120925", - "607985989235905034749484" + "4583767028122225604065433", + "2338237533024983612307151" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4842808169459515392", - "outputIndex": 0, - "expectedQty": "4870162169301494913", - "swapFee": "0", - "reserves": [ - "1222186320586090996626012", - "607990832044074494264876" + "type": "redeemMasset", + "inputQty": "3089823887511140486348", + "expectedQtys": [ + "2052279125346913662194", + "1046893537496313026328" ], - "LPTokenSupply": "1816558918043051227743986", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "134480640946231328768", - "expectedQty": "133982401473443086461", + "redemptionFee": "1853894332506684291", "reserves": [ - "1222186320586090996626012", - "608125312685020725593644" - ] + "4581714748996878690403239", + "2337190639487487299280823" + ], + "LPTokenSupply": "6893893751210365286926719" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "83839324351733665103872", - "expectedQty": "84051219496710912218620", - "swapFee": "50303594611040199062", + "type": "redeemBassets", + "inputQtys": [ + "986854372537366400", + "922815277716984704" + ], + "expectedQty": "1904249705782806591", + "swapFee": "1143235764928641", "reserves": [ - "1222186320586090996626012", - "524074093188309813375024" + "4581713762142506153036839", + "2337189716672209582296119" ], - "LPTokenSupply": "1732858606452252109746481" + "LPTokenSupply": "6893891845931747315684350" }, { "type": "mintMulti", "inputQtys": [ - "5564093149822", - "7041128303451" + "13830218986292569440256", + "19859592219332437868544" ], - "expectedQty": "12532688232769", + "expectedQty": "33613064665296495388149", "reserves": [ - "1222186320591655089775834", - "524074093195350941678475" + "4595543981128798722477095", + "2357049308891542020164663" ], - "LPTokenSupply": "1732858606464784797979250" + "LPTokenSupply": "6927504910597043811072499" }, { "type": "redeemMasset", - "inputQty": "67377413479760544346931", + "inputQty": "3300812639509202495078", "expectedQtys": [ - "47492821464450225140702", - "20364945117550839096695" + "2188367736462395250874", + "1122411336288040573648" ], - "redemptionFee": "40426448087856326608", + "redemptionFee": "1980487583705521497", "reserves": [ - "1174693499127204864635132", - "503709148077800102581780" + "4593355613392336327226221", + "2355926897555253979591015" ], - "LPTokenSupply": "1665485235629833039264979" + "LPTokenSupply": "6924204296006292979129570" }, { - "type": "mintMulti", - "inputQtys": [ - "6160874139832413061120", - "8150318127269891014656" - ], - "expectedQty": "14229408097109939893117", + "type": "mint", + "inputIndex": 0, + "inputQty": "59005571283246313897984", + "expectedQty": "58685585116047323745802", "reserves": [ - "1180854373267037277696252", - "511859466205069993596436" - ], - "LPTokenSupply": "1679714643726942979158096" + "4652361184675582641124205", + "2355926897555253979591015" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "903834879174209536", - "expectedQty": "912307628879812959", - "swapFee": "542300927504525", + "inputIndex": 1, + "inputQty": "6958120128718669824", + "expectedQty": "6954122776277711277", + "swapFee": "4174872077231201", "reserves": [ - "1180853460959408397883293", - "511859466205069993596436" + "4652361184675582641124205", + "2355919943432477701879738" ], - "LPTokenSupply": "1679713739946293897699012" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "155058233982139798388736", - "expectedQty": "153484883980161029066242", - "reserves": [ - "1335911694941548196272029", - "511859466205069993596436" - ] + "LPTokenSupply": "6982882923419698791928668" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "47431503257834405888", - "74281146660176216064" + "65830674872553577644032", + "65569444698896772104192" ], - "expectedQty": "121122298700754163074", - "swapFee": "72717009426108162", + "expectedQty": "131038357570843441552073", "reserves": [ - "1335864263438290361866141", - "511785185058409817380372" + "4718191859548136218768237", + "2421489388131374473983930" ], - "LPTokenSupply": "1833077436182445689104833" + "LPTokenSupply": "7113921280990542233480741" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6613669326039", - "12393842538765" + "121666656423348292026368", + "29207109819586580578304" ], - "expectedQty": "18922553423807", + "expectedQty": "150215178245715343669682", + "swapFee": "90183216877555739645", "reserves": [ - "1335864263444904031192180", - "511785185070803659919137" + "4596525203124787926741869", + "2392282278311787893405626" ], - "LPTokenSupply": "1833077436201368242528640" + "LPTokenSupply": "6963624937849637089645377" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "662545795534657028096", - "outputIndex": 1, - "expectedQty": "655966926019689481085", - "swapFee": "524518153721900477", + "type": "redeem", + "inputIndex": 1, + "inputQty": "42382935975257008242688", + "expectedQty": "42364660504509490687025", + "swapFee": "25429761585154204945", "reserves": [ - "1336526809240438688220276", - "511129218144783970438052" + "4596525203124787926741869", + "2349917617807278402718601" ], - "LPTokenSupply": "1833077488653183614718687", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6921244544850538596823183" }, { - "type": "mintMulti", - "inputQtys": [ - "2827998403894339174400", - "1499206470489353224192" - ], - "expectedQty": "4295821468967073754605", + "type": "mint", + "inputIndex": 1, + "inputQty": "43019522520322662203392", + "expectedQty": "43012074000377239744923", "reserves": [ - "1339354807644333027394676", - "512628424615273323662244" - ], - "LPTokenSupply": "1837373310122150688473292" + "4596525203124787926741869", + "2392937140327601064921993" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "2695015653613085130752", - "2211905828351642173440" - ], - "expectedQty": "4876018778938286039550", - "swapFee": "2927367687975757077", + "type": "mint", + "inputIndex": 1, + "inputQty": "63942730691114933682176", + "expectedQty": "63921837416536423632867", "reserves": [ - "1336659791990719942263924", - "510416518786921681488804" - ], - "LPTokenSupply": "1832494656712293224252371" + "4596525203124787926741869", + "2456879871018715998604169" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "25683879409101926563840", - "expectedQty": "25937781098060597239840", - "swapFee": "15410327645461155938", + "inputQty": "49291037278606551154688", + "expectedQty": "49521310388612671887458", + "swapFee": "29574622367163930692", "reserves": [ - "1310722010892659345024084", - "510416518786921681488804" + "4547003892736175254854411", + "2456879871018715998604169" ], - "LPTokenSupply": "1806812318335955843804124" + "LPTokenSupply": "6978890376451082425439354" }, { - "type": "redeemMasset", - "inputQty": "2842655613285389932953", - "expectedQtys": [ - "2060920044192061747235", - "802555862885290188989" + "type": "mintMulti", + "inputQtys": [ + "455688734540798", + "458674126646206" ], - "redemptionFee": "1705593367971233959", + "expectedQty": "911753953597575", "reserves": [ - "1308661090848467283276849", - "509613962924036391299815" + "4547003893191863989395209", + "2456879871477390125250375" ], - "LPTokenSupply": "1803969833282007250994566" + "LPTokenSupply": "6978890377362836379036929" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "33161017860913625038848", - "expectedQty": "33485712397029445145211", - "swapFee": "19896610716548175023", + "type": "mint", + "inputIndex": 1, + "inputQty": "632513740564187185152", + "expectedQty": "632203174547781851472", "reserves": [ - "1275175378451437838131638", - "509613962924036391299815" - ], - "LPTokenSupply": "1770810805082165280773220" + "4547003893191863989395209", + "2457512385217954312435527" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "104383837303129436585984", - "outputIndex": 0, - "expectedQty": "105079091638186354485474", - "swapFee": "0", + "inputQty": "4058141377292071", + "expectedQty": "4056145412902489", "reserves": [ - "1170096286813251483646164", - "613997800227165827885799" + "4547003893191863989395209", + "2457512389276095689727598" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "207151270007542", + "330982082520396" ], - "LPTokenSupply": "1770810805082165280773220", - "hardLimitError": false, - "insufficientLiquidityError": false + "expectedQty": "536886970987484", + "swapFee": "322325577939", + "reserves": [ + "4547003892984712719387667", + "2457512388945113607207202" + ], + "LPTokenSupply": "6979522584056352509783259" }, { "type": "swap", "inputIndex": 1, - "inputQty": "70097835121602333769728", + "inputQty": "3137834522330584317952", "outputIndex": 0, - "expectedQty": "70394191421884756848253", + "expectedQty": "3152751914689743595543", "swapFee": "0", "reserves": [ - "1099702095391366726797911", - "684095635348768161655527" + "4543851141070022975792124", + "2460650223467444191525154" ], - "LPTokenSupply": "1770810805082165280773220", + "LPTokenSupply": "6979522584056352509783259", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "19163741296985892716544", - "21624055716556073598976" + "5192898288405144666112", + "5232988633722085441536" ], - "expectedQty": "40511691827997906190907", - "swapFee": "24321608061635725149", + "expectedQty": "10396110711193675622772", "reserves": [ - "1080538354094380834081367", - "662471579632212088056551" + "4549044039358428120458236", + "2465883212101166276966690" ], - "LPTokenSupply": "1730277223806911902429677" + "LPTokenSupply": "6989918694767546185406031" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "17653486585053811048448", - "expectedQty": "17732120474450591796016", - "swapFee": "10592091951032286629", - "reserves": [ - "1080538354094380834081367", - "644739459157761496260535" - ], - "LPTokenSupply": "1712624796431053194609891" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "26998208585371886813184", - "outputIndex": 1, - "expectedQty": "26865659371196625507912", - "swapFee": "21408706081673664814", - "reserves": [ - "1107536562679752720894551", - "617873799786564870752623" - ], - "LPTokenSupply": "1712626937301661361976372", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "55327061643554042413056", - "expectedQty": "54825054138051648702719", - "reserves": [ - "1162863624323306763307607", - "617873799786564870752623" - ] - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "285415852875725949370368", - "outputIndex": 1, - "hardLimitError": true - }, - { - "type": "redeemMasset", - "inputQty": "3118403214045838573568", - "expectedQtys": [ - "2050466951601076514657", - "1089491304244539378713" - ], - "redemptionFee": "1871041928427503144", + "inputQty": "22965873332542278467584", + "expectedQty": "22963129492952300478401", + "swapFee": "13779523999525367080", "reserves": [ - "1160813157371705686792950", - "616784308482320331373910" + "4549044039358428120458236", + "2442920082608213976488289" ], - "LPTokenSupply": "1764333775329860014855837" + "LPTokenSupply": "6966954199387403859475155" }, { "type": "redeemBassets", "inputQtys": [ - "23031017208478961664", - "33754697426413621248" + "491875493022822720", + "621262726788029952" ], - "expectedQty": "56430757972034027017", - "swapFee": "33878782052451887", + "expectedQty": "1110272672647680901", + "swapFee": "666563541713636", "reserves": [ - "1160790126354497207831286", - "616750553784893917752662" + "4549043547482935097635516", + "2442919461345487188458337" ], - "LPTokenSupply": "1764277314080984133622120" + "LPTokenSupply": "6966953088514824024251980" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "23619052137480628207616", - "expectedQty": "23515367405808999263900", - "reserves": [ - "1160790126354497207831286", - "640369605922374545960278" - ] - }, - { - "type": "redeemMasset", - "inputQty": "78972948920655754035", - "expectedQtys": [ - "51245324859698123594", - "28270354597888084814" - ], - "redemptionFee": "47383769352393452", + "inputQty": "27483020457386800", + "expectedQty": "27478941653029209", + "swapFee": "16489812274432", "reserves": [ - "1160738881029637509707692", - "640341335567776657875464" + "4549043547482935097635516", + "2442919433866545535429128" ], - "LPTokenSupply": "1787713713276249412371330" + "LPTokenSupply": "6966953061033452548092623" }, { "type": "mintMulti", "inputQtys": [ - "172128289135031", - "96373397628685" + "60300368817614451900416", + "189432094500903584792576" ], - "expectedQty": "266513156033498", + "expectedQty": "249298884999939724542238", "reserves": [ - "1160738881201765798842723", - "640341335664150055504149" + "4609343916300549549535932", + "2632351528367449120221704" ], - "LPTokenSupply": "1787713713542762568404828" + "LPTokenSupply": "7216251946033392272634861" }, { "type": "swap", "inputIndex": 1, - "inputQty": "46119699420059063549952", + "inputQty": "4910149157129994371072", "outputIndex": 0, - "expectedQty": "46305822938418391873596", + "expectedQty": "4930825758095837567020", "swapFee": "0", "reserves": [ - "1114433058263347406969127", - "686461035084209119054101" + "4604413090542453711968912", + "2637261677524579114592776" ], - "LPTokenSupply": "1787713713542762568404828", + "LPTokenSupply": "7216251946033392272634861", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "19947987048444276506624", - "expectedQtys": [ - "12427805205364274766578", - "7655196480256695681666" - ], - "redemptionFee": "11968792229066565903", - "reserves": [ - "1102005253057983132202549", - "678805838603952423372435" - ], - "LPTokenSupply": "1767766923373541198554794" - }, - { - "type": "redeemMasset", - "inputQty": "2121309465386508353536", - "expectedQtys": [ - "1321606104754200781751", - "814074105139111972024" - ], - "redemptionFee": "1272785679231905012", + "type": "mint", + "inputIndex": 0, + "inputQty": "128722104866617115541504", + "expectedQty": "128068332544042925236311", "reserves": [ - "1100683646953228931420798", - "677991764498813311400411" - ], - "LPTokenSupply": "1765645741186722613391759" + "4733135195409070827510416", + "2637261677524579114592776" + ] }, { - "type": "redeemMasset", - "inputQty": "599191710344887979212", - "expectedQtys": [ - "373305238577113657814", - "229946068609396342245" - ], - "redemptionFee": "359515026206932787", + "type": "mint", + "inputIndex": 1, + "inputQty": "70050992628450134589440", + "expectedQty": "69997168749602764932107", "reserves": [ - "1100310341714651817762984", - "677761818430203915058166" - ], - "LPTokenSupply": "1765046585427880346105825" + "4733135195409070827510416", + "2707312670153029249182216" + ] }, { - "type": "redeemMasset", - "inputQty": "39195605981227522457", - "expectedQtys": [ - "24419442845528156898", - "15041725375630183523" + "type": "redeemBassets", + "inputQtys": [ + "169583420004362713300992", + "13870768703971153412096" ], - "redemptionFee": "23517363588736513", + "expectedQty": "182596099501083440034521", + "swapFee": "109623433760906607985", "reserves": [ - "1100285922271806289606086", - "677746776704828284874643" + "4563551775404708114209424", + "2693441901449058095770120" ], - "LPTokenSupply": "1765007392173635477457019" + "LPTokenSupply": "7231622686735569706821570" }, { "type": "redeemBassets", "inputQtys": [ - "258337510903600288", - "168231597478572864" + "10190230711901951623168", + "4370201545910390358016" ], - "expectedQty": "423463956073692001", - "swapFee": "254230912191530", + "expectedQty": "14505498871095765561078", + "swapFee": "8708524437319851247", "reserves": [ - "1100285663934295386005798", - "677746608473230806301779" + "4553361544692806162586256", + "2689071699903147705412104" ], - "LPTokenSupply": "1765006968480871582792640" + "LPTokenSupply": "7217109350192480353394368" }, { "type": "redeemMasset", - "inputQty": "66744425919130009", + "inputQty": "1800427971950797414", "expectedQtys": [ - "41582766264385408", - "25613874405897228" + "1135230227813664437", + "670431163553536924" ], - "redemptionFee": "40046655551478", + "redemptionFee": "1080256783170478", "reserves": [ - "1100285622351529121620390", - "677746582859356400404551" + "4553360409462578348921819", + "2689071029471984151875180" ], - "LPTokenSupply": "1765006901740450329217778" + "LPTokenSupply": "7217107549872534080914001" }, { - "type": "redeemMasset", - "inputQty": "16397381883671068672", - "expectedQtys": [ - "10215811865048295922", - "6292667505618368660" + "type": "redeemBassets", + "inputQtys": [ + "38504136773114716160", + "46391249871901335552" ], - "redemptionFee": "9838429130202641", + "expectedQty": "84656447310029039485", + "swapFee": "50824363003819715", "reserves": [ - "1100275406539664073324468", - "677740290191850782035891" + "4553321905325805234205659", + "2689024638222112250539628" ], - "LPTokenSupply": "1764990505342409571169370" + "LPTokenSupply": "7217022847683297348436771" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "539715174258248646656", - "226961471149103054848" + "951666392300418498560", + "252911053491545079808" ], - "expectedQty": "760831275777693031015", - "swapFee": "456772829164114287", + "expectedQty": "1199608615889609698863", "reserves": [ - "1099735691365405824677812", - "677513328720701678981043" + "4554273571718105652704219", + "2689277549275603795619436" ], - "LPTokenSupply": "1764229262971085630435495" + "LPTokenSupply": "7218222456299186958135634" }, { "type": "redeemMasset", - "inputQty": "6041481700408849491558", + "inputQty": "25503981602036345", "expectedQtys": [ - "3763709612012368387732", - "2318705710466326720126" + "16081856554144580", + "9496262159195711" ], - "redemptionFee": "3624889020245309694", + "redemptionFee": "15302388961221", "reserves": [ - "1095971981753393456290080", - "675194623010235352260917" + "4554273555636249098559639", + "2689277539779341636423725" ], - "LPTokenSupply": "1758188143759578805474906" + "LPTokenSupply": "7218222430796735594995411" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "18989058956554904", - "expectedQty": "18891114231011430", + "type": "redeemMasset", + "inputQty": "269090927307190", + "expectedQtys": [ + "169678670589955", + "100194472778751" + ], + "redemptionFee": "161454556384", "reserves": [ - "1095971981753393456290080", - "675194641999294308815821" - ] + "4554273555466570427969684", + "2689277539679147163644974" + ], + "LPTokenSupply": "7218222430527660813143859" }, { "type": "mintMulti", "inputQtys": [ - "21100321704579572957184", - "33317478725698967306240" + "191043144405493988982784", + "12947120980555879940096" ], - "expectedQty": "54061568378374654267908", + "expectedQty": "203021959872728125415948", "reserves": [ - "1117072303457973029247264", - "708512120724993276122061" + "4745316699872064416952468", + "2702224660659703043585070" ], - "LPTokenSupply": "1812249731029067690754244" + "LPTokenSupply": "7421244390400388938559807" }, { "type": "redeemMasset", - "inputQty": "3362566755233190169804", + "inputQty": "716645310052540455321", "expectedQtys": [ - "2071445446182190696740", - "1313830986138929183070" + "457964776998718842260", + "260788434658707546672" ], - "redemptionFee": "2017540053139914101", + "redemptionFee": "429987186031524273", "reserves": [ - "1115000858011790838550524", - "707198289738854346938991" + "4744858735095065698110208", + "2701963872225044336038398" ], - "LPTokenSupply": "1808887366027839814575850" + "LPTokenSupply": "7420527788089055001256913" }, { "type": "redeemMasset", - "inputQty": "36979082486063859708723", + "inputQty": "311378940655881", "expectedQtys": [ - "22780284969161270655490", - "14448579527267251733461" + "198983503493361", + "113311326558819" ], - "redemptionFee": "22187449491638315825", + "redemptionFee": "186827364393", "reserves": [ - "1092220573042629567895034", - "692749710211587095205530" + "4744858734896082194616847", + "2701963872111733009479579" ], - "LPTokenSupply": "1771910502286725118698709" + "LPTokenSupply": "7420527787777694743337471" }, { - "type": "redeemMasset", - "inputQty": "42017520355925030", - "expectedQtys": [ - "25884413835626382", - "16417398304149234" + "type": "swap", + "inputIndex": 1, + "inputQty": "24906836467808104448", + "outputIndex": 0, + "expectedQty": "25012741688533325111", + "swapFee": "0", + "reserves": [ + "4744833722154393661291736", + "2701988778948200817584027" + ], + "LPTokenSupply": "7420527787777694743337471", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "531882699244256034816", + "930320255050517184512" ], - "redemptionFee": "25210512213555", + "expectedQty": "1458730718937891984275", "reserves": [ - "1092220547158215732268652", - "692749693794188791056296" + "4745365604853637917326552", + "2702919099203251334768539" ], - "LPTokenSupply": "1771910460271725813995034" + "LPTokenSupply": "7421986518496632635321746" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "17142093655884899024896", - "expectedQty": "17049795520597645726909", + "inputQty": "703080213263624044544", + "expectedQty": "703246371603698616159", + "swapFee": "421848127958174426", "reserves": [ - "1092220547158215732268652", - "709891787450073690081192" - ] + "4745365604853637917326552", + "2702215852831647636152380" + ], + "LPTokenSupply": "7421283480468181807094644" }, { "type": "redeemBassets", "inputQtys": [ - "217954337327018", - "126662770346065" + "10727469749338181206016", + "22953705231440718856192" ], - "expectedQty": "342074253107926", - "swapFee": "205367772528", + "expectedQty": "33607970931573260390079", + "swapFee": "20176888692159251785", "reserves": [ - "1092220546940261394941634", - "709891787323410919735127" + "4734638135104299736120536", + "2679262147600206917296188" ], - "LPTokenSupply": "1788960255450064375618740" + "LPTokenSupply": "7387657350336785603377957" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "48443663459697653972992", - "expectedQty": "48826191877352743823423", - "swapFee": "29066198075818592383", + "type": "mintMulti", + "inputQtys": [ + "31334133897196715638784", + "48365949471085427687424" + ], + "expectedQty": "79500852533593381802667", "reserves": [ - "1043394355062908651118211", - "709891787323410919735127" + "4765972269001496451759320", + "2727628097071292344983612" ], - "LPTokenSupply": "1740519498610174303504986" + "LPTokenSupply": "7467158202870378985180624" }, { "type": "redeemBassets", "inputQtys": [ - "20731805667886317568", - "125579658821744443392" + "288955693952883232866304", + "98664937280841919234048" ], - "expectedQty": "145424674605227255765", - "swapFee": "87307189076582302", + "expectedQty": "386080442426608685347435", + "swapFee": "231787337858680419460", "reserves": [ - "1043373623257240764800643", - "709766207664589175291735" + "4477016575048613218893016", + "2628963159790450425749564" ], - "LPTokenSupply": "1740373995359098907325148" + "LPTokenSupply": "7080869151839697487455674" }, { "type": "mintMulti", "inputQtys": [ - "1898232258347224006656", - "865653629092143562752" + "489989569100176687104", + "2333946234029113606144" ], - "expectedQty": "2743077425948763861449", + "expectedQty": "2819038968537214600119", "reserves": [ - "1045271855515587988807299", - "710631861293681318854487" + "4477506564617713395580120", + "2631297106024479539355708" ], - "LPTokenSupply": "1743117072785047671186597" + "LPTokenSupply": "7083688190808234702055793" }, { "type": "mint", "inputIndex": 0, - "inputQty": "753772016977642258432", - "expectedQty": "747459286096155711677", + "inputQty": "61399992321969905205248", + "expectedQty": "61092137625072052290917", "reserves": [ - "1046025627532565631065731", - "710631861293681318854487" + "4538906556939683300785368", + "2631297106024479539355708" ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "1948268195651655936", - "expectedQty": "1963545885510971310", - "swapFee": "1168960917390993", - "reserves": [ - "1046023663986680120094421", - "710631861293681318854487" - ], - "LPTokenSupply": "1743862583919844266981437" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "86463614194924240896", - "expectedQty": "86904726627688775333", - "swapFee": "51878168516954544", - "reserves": [ - "1046023663986680120094421", - "710544956567053630079154" - ], - "LPTokenSupply": "1743776125493466194435995" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1733838494088148", - "10792025598797794" - ], - "expectedQty": "12450122862547723", + "inputQty": "10448368419004814983168", + "outputIndex": 1, + "expectedQty": "10397242839827875152358", + "swapFee": "8316560072793438042", "reserves": [ - "1046023665720518614182569", - "710544967359079228876948" + "4549354925358688115768536", + "2620899863184651664203350" ], - "LPTokenSupply": "1743776137943589056983718" + "LPTokenSupply": "7144781160089314033690514", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "106297677547156471808", + "inputQty": "6721390369024308", "expectedQtys": [ - "63725595261731828240", - "43287644906193954939" + "4277197985720925", + "2464109263733867" ], - "redemptionFee": "63778606528293883", + "redemptionFee": "4032834221414", "reserves": [ - "1045959940125256882354329", - "710501679714173034922009" + "4549354921081490130047611", + "2620899860720542400469483" ], - "LPTokenSupply": "1743669846643902553341298" + "LPTokenSupply": "7144781153368326948088347" }, { - "type": "mintMulti", - "inputQtys": [ - "19979415189951315968", - "24047708683663753216" - ], - "expectedQty": "43723355439489440509", + "type": "mint", + "inputIndex": 1, + "inputQty": "34338649805264101834752", + "expectedQty": "34305138508116513056382", "reserves": [ - "1045979919540446833670297", - "710525727422856698675225" - ], - "LPTokenSupply": "1743713569999342042781807" + "4549354921081490130047611", + "2655238510525806502304235" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "11000764158464194560", - "expectedQty": "10908617248041135507", + "inputQty": "32777076524511712509952", + "expectedQty": "32612298418328167914214", "reserves": [ - "1045990920304605297864857", - "710525727422856698675225" + "4582131997606001842557563", + "2655238510525806502304235" ] }, { - "type": "redeemMasset", - "inputQty": "9908003197921626842726", - "expectedQtys": [ - "5939850762869509207660", - "4034850305241685598043" + "type": "redeemBassets", + "inputQtys": [ + "1701169388744812544", + "20682527025529769984" ], - "redemptionFee": "5944801918752976105", + "expectedQty": "22355021374928067557", + "swapFee": "13421065464235381", "reserves": [ - "1040051069541735788657197", - "706490877117615013077182" + "4582130296436613097745019", + "2655217827998780972534251" ], - "LPTokenSupply": "1733817069898860332372198" + "LPTokenSupply": "7211676223194437783179542" }, { "type": "redeemBassets", "inputQtys": [ - "24291748654119850606592", - "20694233580086436560896" + "5639674879673960448", + "90685743344138878976" ], - "expectedQty": "44665036792139718583386", - "swapFee": "26815111141969012557", + "expectedQty": "96208866743086357684", + "swapFee": "57759976031470697", "reserves": [ - "1015759320887615938050605", - "685796643537528576516286" + "4582124656761733423784571", + "2655127142255436833655275" ], - "LPTokenSupply": "1689127899506692841677509" + "LPTokenSupply": "7211579962343716268498229" }, { "type": "redeemBassets", "inputQtys": [ - "37053716833939328", - "38988726010151848" + "102101001221958256295936", + "98863615396450609922048" ], - "expectedQty": "75509984487703878", - "swapFee": "45333190606986", + "expectedQty": "200355806846091850652798", + "swapFee": "120285655500955683801", "reserves": [ - "1015759283833899104111277", - "685796604548802566364438" + "4480023655539775167488635", + "2556263526858986223733227" ], - "LPTokenSupply": "1689127823955908482427342" + "LPTokenSupply": "7011115898407673557730009" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "362898066076352536117248", - "expectedQty": "365518515659523325507557", - "swapFee": "217738839645811521670", + "type": "mintMulti", + "inputQtys": [ + "5123159482430395392", + "4705794528212381696" + ], + "expectedQty": "9798572285607897397", "reserves": [ - "650240768174375778603720", - "685796604548802566364438" + "4480028778699257597884027", + "2556268232653514436114923" ], - "LPTokenSupply": "1326251531763520527462261" + "LPTokenSupply": "7011125696979959165627406" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "160996005665158683688960", - "expectedQty": "162043718562328323889002", - "swapFee": "96597603399095210213", + "type": "redeemBassets", + "inputQtys": [ + "92077138746569677340672", + "78855193176663457267712" + ], + "expectedQty": "170392250806574208180163", + "swapFee": "102296728521057159203", "reserves": [ - "650240768174375778603720", - "523752885986474242475436" + "4387951639952687920543355", + "2477413039476850978847211" ], - "LPTokenSupply": "1165265185858701753294322" + "LPTokenSupply": "6840641379117716006003959" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "107514387859767195336704", - "expectedQty": "106619248903045015961035", + "inputIndex": 1, + "inputQty": "9675812752015153152", + "expectedQty": "9667631940019936045", "reserves": [ - "757755156034142973940424", - "523752885986474242475436" + "4387951639952687920543355", + "2477422715289602994000363" ] }, { "type": "redeemMasset", - "inputQty": "3679480561512893906944", + "inputQty": "10233752826307064627", "expectedQtys": [ - "2190822061845234455013", - "1514274589142587985684" + "6560526046843197303", + "3704050907195888188" ], - "redemptionFee": "2207688336907736344", + "redemptionFee": "6140251695784238", "reserves": [ - "755564333972297739485411", - "522238611397331654489752" + "4387945079426641077346052", + "2477419011238695798112175" ], - "LPTokenSupply": "1268205174969067566122047" + "LPTokenSupply": "6840640813610854888453800" }, { - "type": "mintMulti", - "inputQtys": [ - "4978310570326371598336", - "8050901394861460553728" - ], - "expectedQty": "12938255637887279569805", + "type": "redeem", + "inputIndex": 0, + "inputQty": "129163372112925744", + "expectedQty": "129755020055927517", + "swapFee": "77498023267755", "reserves": [ - "760542644542624111083747", - "530289512792193115043480" + "4387944949671621021418535", + "2477419011238695798112175" ], - "LPTokenSupply": "1281143430606954845691852" + "LPTokenSupply": "6840640684455232577854831" }, { - "type": "mintMulti", - "inputQtys": [ - "59656818196649953198080", - "41433855115190440296448" - ], - "expectedQty": "100331668315724900265615", + "type": "redeem", + "inputIndex": 0, + "inputQty": "322611275969821248", + "expectedQty": "324089034622592122", + "swapFee": "193566765581892", "reserves": [ - "820199462739274064281827", - "571723367907383555339928" + "4387944625582586398826413", + "2477419011238695798112175" ], - "LPTokenSupply": "1381475098922679745957467" + "LPTokenSupply": "6840640361863313284591772" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "303692775671100736", - "257532127753812704" + "30623937892211093504", + "33623165168925528064" ], - "expectedQty": "557079974908526403", + "expectedQty": "64060747377369132552", + "swapFee": "38459524140906023", "reserves": [ - "820199766432049735382563", - "571723625439511309152632" + "4387914001644694187732909", + "2477385388073526872584111" ], - "LPTokenSupply": "1381475656002654654483870" + "LPTokenSupply": "6840576266502364188643798" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "40419054293743239692288", - "expectedQty": "40071016022491104313499", - "reserves": [ - "860618820725792975074851", - "571723625439511309152632" - ] - }, - { - "type": "redeemMasset", - "inputQty": "20279292946130009063424", - "expectedQtys": [ - "12269923934959268786224", - "8151117808515881241405" - ], - "redemptionFee": "12167575767678005438", + "inputQty": "5939696430615080468480", + "expectedQty": "5966890043809484240261", + "swapFee": "3563817858369048281", "reserves": [ - "848348896790833706288627", - "563572507630995427911227" + "4381947111600884703492648", + "2477385388073526872584111" ], - "LPTokenSupply": "1401268595836592517534488" + "LPTokenSupply": "6834636926453534945080146" }, { "type": "redeemBassets", "inputQtys": [ - "30693949365399660265472", - "75366578621975344709632" + "93878048798656125992960", + "114802573336253109895168" ], - "expectedQty": "105369971915391764712902", - "swapFee": "63259939112702680436", + "expectedQty": "208103701445530377693214", + "swapFee": "124937183177224561352", "reserves": [ - "817654947425434046023155", - "488205929009020083201595" + "4288069062802228577499688", + "2362582814737273762688943" ], - "LPTokenSupply": "1295841689975999320409192" + "LPTokenSupply": "6626420781543145065281714" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "656965023450613888", - "outputIndex": 0, - "expectedQty": "659470747676881949", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "1671017986220634368", + "expectedQty": "1662230206204363878", "reserves": [ - "817654287954686369141206", - "488206585974043533815483" - ], - "LPTokenSupply": "1295841689975999320409192", - "hardLimitError": false, - "insufficientLiquidityError": false + "4288070733820214798134056", + "2362582814737273762688943" + ] }, { - "type": "redeemMasset", - "inputQty": "1945370465491090826854", - "expectedQtys": [ - "1226759511416071346184", - "732475915191209782920" + "type": "redeemBassets", + "inputQtys": [ + "196227895219643940864", + "554989121781029928960" ], - "redemptionFee": "1167222279294654496", + "expectedQty": "749790593971422270752", + "swapFee": "450144443048682571", "reserves": [ - "816427528443270297795022", - "487474110058852324032563" + "4287874505924995154193192", + "2362027825615492732759983" ], - "LPTokenSupply": "1293896436232736159047787" + "LPTokenSupply": "6625672248049381103560525" }, { "type": "redeemMasset", - "inputQty": "27603733374408169881", + "inputQty": "3561477976722440", "expectedQtys": [ - "17407054626074431533", - "10393437466239330190" - ], - "redemptionFee": "16562240024644901", - "reserves": [ - "816410121388644223363489", - "487463716621386084702373" - ], - "LPTokenSupply": "1293868834155585753342396" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "123718689240607480610816", - "expectedQty": "124745169833368821964253", - "swapFee": "74231213544364488366", - "reserves": [ - "691664951555275401399236", - "487463716621386084702373" + "2303465572406299", + "1268892027938974" ], - "LPTokenSupply": "1170157568036332709180416" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "49405261529626214400", - "outputIndex": 0, - "expectedQty": "49525753629970443163", - "swapFee": "0", + "redemptionFee": "2136886786033", "reserves": [ - "691615425801645430956073", - "487513121882915710916773" + "4287874503621529581786893", + "2362027824346600704821009" ], - "LPTokenSupply": "1170157568036332709180416", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6625672244488116815516688" }, { "type": "swap", "inputIndex": 0, - "inputQty": "30337679341921731870720", + "inputQty": "12746037196945161715712", "outputIndex": 1, - "expectedQty": "30226956185062036859752", - "swapFee": "24059582083339381110", + "expectedQty": "12677334833140684168759", + "swapFee": "10143145115066082893", "reserves": [ - "721953105143567162826793", - "457286165697853674057021" + "4300620540818474743502605", + "2349350489513460020652250" ], - "LPTokenSupply": "1170159973994541043118527", + "LPTokenSupply": "6625673258802628322124977", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "15102123025350856278016", - "expectedQty": "15229098228652984645981", - "swapFee": "9061273815210513766", + "type": "mint", + "inputIndex": 1, + "inputQty": "207590783291164800", + "expectedQty": "207454121192590477", "reserves": [ - "706724006914914178180812", - "457286165697853674057021" - ], - "LPTokenSupply": "1155058757096571707891887" + "4300620540818474743502605", + "2349350697104243311817050" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3008374304601276416000", - "expectedQty": "3033562494353623256813", - "swapFee": "1805024582760765849", - "reserves": [ - "703690444420560554923999", - "457286165697853674057021" + "type": "mintMulti", + "inputQtys": [ + "25753620185973444", + "39984229670244056" ], - "LPTokenSupply": "1152050563294428707552471" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "156453853637034541056", - "expectedQty": "157762855831153914331", - "swapFee": "93872312182220724", + "expectedQty": "65575285485833330", "reserves": [ - "703532681564729401009668", - "457286165697853674057021" + "4300620566572094929476049", + "2349350737088472982061106" ], - "LPTokenSupply": "1151894118828022891233487" + "LPTokenSupply": "6625673531832035000548784" }, { - "type": "redeemMasset", - "inputQty": "142804847980355859251", - "expectedQtys": [ - "87167383939452204068", - "56657550985308932519" + "type": "mintMulti", + "inputQtys": [ + "88274851050457382912", + "49585361353498353664" ], - "redemptionFee": "85682908788213515", + "expectedQty": "137360577653819234019", "reserves": [ - "703445514180789948805600", - "457229508146868365124502" + "4300708841423145386858961", + "2349400322449826480414770" ], - "LPTokenSupply": "1151751322548333414195587" + "LPTokenSupply": "6625810892409688819782803" }, { "type": "mintMulti", "inputQtys": [ - "46503253819764328366080", - "56564409788528934780928" + "6501098813435421917184", + "7179104604865203011584" ], - "expectedQty": "102320636330718991082568", + "expectedQty": "13641067217540282488802", "reserves": [ - "749948768000554277171680", - "513793917935397299905430" + "4307209940236580808776145", + "2356579427054691683426354" ], - "LPTokenSupply": "1254071958879052405278155" + "LPTokenSupply": "6639451959627229102271605" }, { "type": "mintMulti", "inputQtys": [ - "6317375504664901976064", - "21786866738604613304320" + "7612048233785234292736", + "4220003522360439209984" ], - "expectedQty": "27915162741702510761545", + "expectedQty": "11789003796787142281465", "reserves": [ - "756266143505219179147744", - "535580784674001913209750" + "4314821988470366043068881", + "2360799430577052122636338" ], - "LPTokenSupply": "1281987121620754916039700" + "LPTokenSupply": "6651240963424016244553070" }, { - "type": "mintMulti", - "inputQtys": [ - "4484667562536163328", - "88132083830868295680" + "type": "redeemMasset", + "inputQty": "794537842374852", + "expectedQtys": [ + "515126785840463", + "281845004483781" ], - "expectedQty": "92028291413767533449", + "redemptionFee": "476722705424", "reserves": [ - "756270628172781715311072", - "535668916757832781505430" + "4314821987955239257228418", + "2360799430295207118152557" ], - "LPTokenSupply": "1282079149912168683573149" + "LPTokenSupply": "6651240962629526074448760" }, { "type": "mintMulti", "inputQtys": [ - "10369498520040", - "3401407417209" + "365471680193104248832", + "97271322997066317824" ], - "expectedQty": "13660308099823", + "expectedQty": "460746562156632216972", "reserves": [ - "756270628183151213831112", - "535668916761234188922639" + "4315187459635432361477250", + "2360896701618204184470381" ], - "LPTokenSupply": "1282079149925828991672972" + "LPTokenSupply": "6651701709191682706665732" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "29245653018965490794496", - "5968315819440706945024" + "4498616443384998400", + "1577152913764632576" ], - "expectedQty": "34923774582700684658724", + "expectedQty": "6050941097505636170", + "swapFee": "3632744305086433", "reserves": [ - "785516281202116704625608", - "541637232580674895867663" + "4315182961018988976478850", + "2360895124465290419837805" ], - "LPTokenSupply": "1317002924508529676331696" + "LPTokenSupply": "6651695654981115326451771" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "131639001686450032", - "expectedQty": "132715152604356289", - "swapFee": "78983401011870", + "inputQty": "502440071659132682240", + "outputIndex": 1, + "expectedQty": "499717943643157312949", + "swapFee": "399827709668554407", "reserves": [ - "785516148486964100269319", - "541637232580674895867663" + "4315685401090648109161090", + "2360395406521647262524856" ], - "LPTokenSupply": "1317002792877426329982851" + "LPTokenSupply": "6651695694963886293307211", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "23886796970386731008", - "47088841557813116928" + "292261106261026475606016", + "106932354538689632665600" ], - "expectedQty": "70479660551285209102", - "swapFee": "42313184241315915", + "expectedQty": "397573707872424190729618", "reserves": [ - "785492261689993713538311", - "541590143739117082750735" + "4607946507351674584767106", + "2467327761060336895190456" ], - "LPTokenSupply": "1316932275135009227589424" + "LPTokenSupply": "7049269402836310484036829" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7817630781425819", - "10446519702454142" + "1412320779175476068352", + "547096916132540973056" ], - "expectedQty": "18132199206124798", - "swapFee": "10885851034295", + "expectedQty": "1951557642090687395436", "reserves": [ - "785492253872362932112492", - "541590133292597380296593" + "4609358828130850060835458", + "2467874857976469436163512" ], - "LPTokenSupply": "1316932256993012755533759" + "LPTokenSupply": "7051220960478401171432265" }, { - "type": "redeemMasset", - "inputQty": "235561768590945024", - "expectedQtys": [ - "140417948142734675", - "96816963981995082" + "type": "redeemBassets", + "inputQtys": [ + "6498136834187878400", + "35258009137689059328" ], - "redemptionFee": "141337061154567", + "expectedQty": "41702715176097502693", + "swapFee": "25036651096316291", "reserves": [ - "785492113454414789377817", - "541590036475633398301511" + "4609352329994015872957058", + "2467839599967331747104184" ], - "LPTokenSupply": "1316932021445377870704191" + "LPTokenSupply": "7051179235230239087244909" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "32810741511133245472768", - "expectedQty": "32988028891926984215813", - "swapFee": "19686444906679947283", + "inputQty": "6038932803130545405952", + "expectedQty": "6035699573907129097977", "reserves": [ - "785492113454414789377817", - "508602007583706414085698" - ], - "LPTokenSupply": "1284123248578735293226151" + "4609352329994015872957058", + "2473878532770462292510136" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1059502871028903182336", + "expectedQty": "1058925578983930388421", + "reserves": [ + "4609352329994015872957058", + "2474938035641491195692472" + ] }, { "type": "mintMulti", "inputQtys": [ - "87665600990372192", - "185703656375355648" + "55165841780042792960", + "24740977570534420480" ], - "expectedQty": "271504573940350385", + "expectedQty": "79598113177722309288", "reserves": [ - "785492201120015779750009", - "508602193287362789441346" + "4609407495835795915750018", + "2474962776619061730112952" ], - "LPTokenSupply": "1284123520083309233576536" + "LPTokenSupply": "7058353458496307869040595" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "741867377497004572672", - "1076959907600480075776" + "17144697915960743936", + "17638920923801704448" ], - "expectedQty": "1805929535524919897022", + "expectedQty": "34682242517372435465", + "swapFee": "20821838613591616", "reserves": [ - "786234068497512784322681", - "509679153194963269517122" + "4609390351137879955006082", + "2474945137698137928408504" ], - "LPTokenSupply": "1285929449618834153473558" + "LPTokenSupply": "7058318757514135744372674" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "243337817074138081132544", - "expectedQty": "244117798653591680239982", - "swapFee": "146002690244482848679", + "type": "mintMulti", + "inputQtys": [ + "319601264576230064128", + "735517978391129358336" + ], + "expectedQty": "1053006861593533604729", "reserves": [ - "786234068497512784322681", - "265561354541371589277140" + "4609709952402456185070210", + "2475680655676529057766840" ], - "LPTokenSupply": "1042606232813720520625881" + "LPTokenSupply": "7059371764375729277977403" }, { - "type": "redeemMasset", - "inputQty": "756324657689543", - "expectedQtys": [ - "570005631166014", - "192527230215202" + "type": "mintMulti", + "inputQtys": [ + "88123189593677297090560", + "71820428085005538820096" ], - "redemptionFee": "453794794613", + "expectedQty": "159432026560427454263860", "reserves": [ - "786234067927507153156667", - "265561354348844359061938" + "4697833141996133482160770", + "2547501083761534596586936" ], - "LPTokenSupply": "1042606232057441242415799" + "LPTokenSupply": "7218803790936156732241263" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "268944509253060464214016", + "expectedQty": "267487904629720299456767", + "reserves": [ + "4966777651249193946374786", + "2547501083761534596586936" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "84945600930174107648", - "46031676943188230144" + "403765144460873957376", + "3650884834386233524224" ], - "expectedQty": "129980322642932225463", - "swapFee": "78035014594516044", + "expectedQty": "4051554768126851744787", "reserves": [ - "786149122326576979049019", - "265515322671901170831794" + "4967181416393654820332162", + "2551151968595920830111160" ], - "LPTokenSupply": "1042476181503285175125895" + "LPTokenSupply": "7490343250334003883442817" }, { "type": "redeemBassets", "inputQtys": [ - "551717818129622695936", - "1104633106860625362944" + "609657378585064505344", + "876325726926663712768" ], - "expectedQty": "1649707126602781394919", - "swapFee": "990418527077915586", + "expectedQty": "1482411311470299411750", + "swapFee": "889980775347388079", "reserves": [ - "785597404508447356353083", - "264410689565040545468850" + "4966571759015069755826818", + "2550275642868994166398392" ], - "LPTokenSupply": "1040825583000008023606947" + "LPTokenSupply": "7488860038039835771381794" }, { "type": "mint", "inputIndex": 0, - "inputQty": "203608299949621936128", - "expectedQty": "201241155861910523416", + "inputQty": "72089323217263106457600", + "expectedQty": "71690128855623911837599", "reserves": [ - "785801012808396978289211", - "264410689565040545468850" + "5038661082232332862284418", + "2550275642868994166398392" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "202232164762694156288", - "67586479785645957120" - ], - "expectedQty": "267454927794590661821", - "swapFee": "160569298255707821", + "type": "mint", + "inputIndex": 1, + "inputQty": "474280377501259988992", + "expectedQty": "474214494091978360173", "reserves": [ - "785598780643634284132923", - "264343103085254899511730" - ], - "LPTokenSupply": "1040759224715706913331502" + "5038661082232332862284418", + "2550749923246495426387384" + ] }, { - "type": "redeemMasset", - "inputQty": "52666714734399976374272", - "expectedQtys": [ - "39730689817349828152407", - "13368826547097435250466" - ], - "redemptionFee": "31600028840639985824", + "type": "redeem", + "inputIndex": 1, + "inputQty": "407470052539440562176", + "expectedQty": "407282185804583744815", + "swapFee": "244482031523664337", "reserves": [ - "745868090826284455980516", - "250974276538157464261264" + "5038661082232332862284418", + "2550342641060690842642569" ], - "LPTokenSupply": "988095669984191000955812" + "LPTokenSupply": "7560616935785215373383823" }, { - "type": "mintMulti", - "inputQtys": [ - "48911832797823803392", - "1421802016159090081792" - ], - "expectedQty": "1469782522723662551210", + "type": "redeem", + "inputIndex": 1, + "inputQty": "29805144097560681512960", + "expectedQty": "29790111675374691693107", + "swapFee": "17883086458536408907", "reserves": [ - "745917002659082279783908", - "252396078554316554343056" + "5038661082232332862284418", + "2520552529385316150949462" ], - "LPTokenSupply": "989565452506914663507022" + "LPTokenSupply": "7530813579996300545511753" }, { "type": "swap", "inputIndex": 0, - "inputQty": "16998870310626967552", + "inputQty": "652502379808076899287040", "outputIndex": 1, - "expectedQty": "16792733639656861366", - "swapFee": "13440975702508285", + "expectedQty": "646566697648680974265560", + "swapFee": "518950661560549700276", "reserves": [ - "745934001529392906751460", - "252379285820676897481690" + "5691163462040409761571458", + "1873985831736635176683902" ], - "LPTokenSupply": "989565453851012233757850", + "LPTokenSupply": "7530865475062456600481780", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "133649480288003178496", - "125529124679216021504" + "2750116020737081868288", + "1576966378895361441792" + ], + "expectedQty": "4313502076062139168712", + "swapFee": "2589655038660479789", + "reserves": [ + "5688413346019672679703170", + "1872408865357739815242110" + ], + "LPTokenSupply": "7526549642296859666881256" + }, + { + "type": "redeemMasset", + "inputQty": "3917710151598913126", + "expectedQtys": [ + "2959149203534376325", + "974039132808633820" ], - "expectedQty": "257587780355003797072", - "swapFee": "154645455486294054", + "redemptionFee": "2350626090959347", "reserves": [ - "745800352049104903572964", - "252253756695997681460186" + "5688410386870469145326845", + "1872407891318607006608290" ], - "LPTokenSupply": "989307726889747292296128" + "LPTokenSupply": "7526545724821770677064064" }, { "type": "mintMulti", "inputQtys": [ - "812677514282598924288", - "3107445753504298172416" + "151464444943041691648", + "140470058549153660928" ], - "expectedQty": "3909538765329073419650", + "expectedQty": "291425184174478223393", "reserves": [ - "746613029563387502497252", - "255361202449501979632602" + "5688561851315412187018493", + "1872548361377156160269218" ], - "LPTokenSupply": "993217265655076365715778" + "LPTokenSupply": "7526837150005945155287457" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "170449227599654944768", - "expectedQty": "170423366014488901165", - "swapFee": "102269536559792966", + "type": "mint", + "inputIndex": 0, + "inputQty": "825840964906715776", + "expectedQty": "819655666450479425", "reserves": [ - "746613029563387502497252", - "255190779083487490731437" - ], - "LPTokenSupply": "993046826654430366750306" + "5688562677156377093734269", + "1872548361377156160269218" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "8494166592949818368", - "outputIndex": 0, - "expectedQty": "8589842256980264955", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "1692291705302107029504", + "outputIndex": 1, + "expectedQty": "1670817668765619673614", + "swapFee": "1343692526916823265", "reserves": [ - "746604439721130522232297", - "255199273250080440549805" + "5690254968861679200763773", + "1870877543708390540595604" ], - "LPTokenSupply": "993046826654430366750306", + "LPTokenSupply": "7526838104030864297449208", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "315635480982678601728", - "410047173493509652480" - ], - "expectedQty": "721843760145912103078", - "reserves": [ - "746920075202113200834025", - "255609320423573950202285" + "728411762180614127616", + "1804696383602586550272" ], - "LPTokenSupply": "993768670414576278853384" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "11900614099023916171264", - "expectedQty": "12032221616435249190334", - "swapFee": "7140368459414349702", + "expectedQty": "2535701652538746319573", "reserves": [ - "734887853585677951643691", - "255609320423573950202285" + "5690983380623859814891389", + "1872682240091993127145876" ], - "LPTokenSupply": "981868770352398304117090" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "5811765505947499233280", - "expectedQty": "5806794743936818330083", - "reserves": [ - "734887853585677951643691", - "261421085929521449435565" - ] + "LPTokenSupply": "7529373805683403043768781" }, { "type": "redeemMasset", - "inputQty": "1158365332558238554521", + "inputQty": "23360066735155236044", "expectedQtys": [ - "861373797033296397722", - "306415832447047602301" - ], - "redemptionFee": "695019199534943132", - "reserves": [ - "734026479788644655245969", - "261114670097074401833264" - ], - "LPTokenSupply": "986517269265696837386965" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "342412220391853654016", - "expectedQty": "342549276785635020188", - "swapFee": "205447332235112192", - "reserves": [ - "734026479788644655245969", - "260772120820288766813076" + "17645821543460676829", + "5806556513375200661" ], - "LPTokenSupply": "986174877590038207244168" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3259505031960223285248", - "expectedQty": "3260502964620594667125", - "swapFee": "1955703019176133971", + "redemptionFee": "14016040041093141", "reserves": [ - "734026479788644655245969", - "257511617855668172145951" + "5690965734802316354214560", + "1872676433535479751945215" ], - "LPTokenSupply": "982915568128379901572317" + "LPTokenSupply": "7529350447018271892642051" }, { "type": "mintMulti", "inputQtys": [ - "55557856213645344768", - "35538413154167349248" + "913930374507403018240", + "1846031454395834302464" ], - "expectedQty": "90430450173162678842", + "expectedQty": "2761329456116380832859", "reserves": [ - "734082037644858300590737", - "257547156268822339495199" + "5691879665176823757232800", + "1874522464989875586247679" ], - "LPTokenSupply": "983005998578553064251159" + "LPTokenSupply": "7532111776474388273474910" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4091273380354863398912", - "expectedQty": "4136156126755544222238", - "swapFee": "2454764028212918039", + "inputIndex": 1, + "inputQty": "12196482567920762880", + "expectedQty": "12135255271933159059", + "swapFee": "7317889540752457", "reserves": [ - "729945881518102756368499", - "257547156268822339495199" + "5691879665176823757232800", + "1874510329734603653088620" ], - "LPTokenSupply": "978914970674601022144050" + "LPTokenSupply": "7532099580723609306787275" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "82523041957532368896", - "expectedQty": "83427362573092127898", - "swapFee": "49513825174519421", + "inputQty": "39719799247050322739200", + "expectedQty": "39421686270486435642594", "reserves": [ - "729862454155529664240601", - "257547156268822339495199" - ], - "LPTokenSupply": "978832452584026007227096" + "5731599464423874079972000", + "1874510329734603653088620" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "2716767361898887168", - "2209446364100771584" - ], - "expectedQty": "4893156689944189987", + "type": "mint", + "inputIndex": 0, + "inputQty": "217603957742788149248", + "expectedQty": "215966831686466875904", "reserves": [ - "729865170922891563127769", - "257549365715186440266783" - ], - "LPTokenSupply": "978837345740715951417083" + "5731817068381616868121248", + "1874510329734603653088620" + ] }, { "type": "mintMulti", "inputQtys": [ - "1305927599169710848", - "969053197401771904" + "255637150678915481600", + "266103546881909325824" ], - "expectedQty": "2259174577854740029", + "expectedQty": "521028640127248926441", "reserves": [ - "729866476850490732838617", - "257550334768383842038687" + "5732072705532295783602848", + "1874776433281485562414444" ], - "LPTokenSupply": "978839604915293806157112" + "LPTokenSupply": "7572258262465909458232214" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "33021818014145456373760", - "outputIndex": 0, - "expectedQty": "33325459797500525554236", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "599626325423048726937600", + "expectedQty": "594953764761376956588811", "reserves": [ - "696541017052990207284381", - "290572152782529298412447" - ], - "LPTokenSupply": "978839604915293806157112", - "hardLimitError": false, - "insufficientLiquidityError": false + "6331699030955344510540448", + "1874776433281485562414444" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "290231273701959050199040", - "642974012357406961434624" + "9171213213847809687552", + "7986185729332309131264" ], - "insufficientLiquidityError": true + "expectedQty": "17133493414613318268735", + "reserves": [ + "6340870244169192320228000", + "1882762619010817871545708" + ], + "LPTokenSupply": "8184345520641899733089760" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "32609808890471880065024", - "expectedQty": "32663385600920092881171", - "swapFee": "19565885334283128039", + "type": "mint", + "inputIndex": 0, + "inputQty": "159609358022134235136", + "expectedQty": "158325267650887476460", "reserves": [ - "696541017052990207284381", - "257908767181609205531276" - ], - "LPTokenSupply": "946231752613355354404891" + "6341029853527214454463136", + "1882762619010817871545708" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "67518718957459529728", - "113273214049959559168" + "type": "redeemMasset", + "inputQty": "64862396558522713", + "expectedQtys": [ + "50222667623105498", + "14911988022764178" ], - "expectedQty": "179858597337385628813", - "swapFee": "107979946370253529", + "redemptionFee": "38917437935113", "reserves": [ - "696473498334032747754653", - "257795493967559245972108" + "6341029803304546831357638", + "1882762604098829848781530" ], - "LPTokenSupply": "946051796834066235547900" + "LPTokenSupply": "8184503781051045805837018" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "248902048652598345728", - "expectedQty": "249136582631294643827", - "swapFee": "149341229191559007", - "reserves": [ - "696473498334032747754653", - "257546357384927951328281" - ], - "LPTokenSupply": "945802909719536556358072" - }, - { - "type": "mintMulti", - "inputQtys": [ - "214947739826345773891584", - "304944712799267999186944" - ], - "expectedQty": "516425262467762542841884", + "inputQty": "1368075128161020672", + "expectedQty": "1358791089676448605", + "swapFee": "820845076896612", "reserves": [ - "911421238160378521646237", - "562491070184195950515225" + "6341029803304546831357638", + "1882761245307740172332925" ], - "LPTokenSupply": "1462228172187299099199956" + "LPTokenSupply": "8184502413058002152506007" }, { - "type": "mintMulti", - "inputQtys": [ - "4238871778995266387968", - "20834831360410253262848" - ], - "expectedQty": "24912721894543618086187", + "type": "redeem", + "inputIndex": 0, + "inputQty": "141067890470236176384", + "expectedQty": "142126690116205877382", + "swapFee": "84640734282141705", "reserves": [ - "915660109939373788034205", - "583325901544606203778073" + "6340887676614430625480256", + "1882761245307740172332925" ], - "LPTokenSupply": "1487140894081842717286143" + "LPTokenSupply": "8184361353631605344543793" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2895013362835995492352", - "expectedQty": "2910512451682949719204", - "swapFee": "1737008017701597295", + "inputQty": "3526378765498881933312", + "expectedQty": "3502387940152982892895", + "swapFee": "2115827259299329159", "reserves": [ - "915660109939373788034205", - "580415389092923254058869" + "6340887676614430625480256", + "1879258857367587189440030" ], - "LPTokenSupply": "1484246054419808491953520" + "LPTokenSupply": "8180835186448832392543396" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "308271130606404501504", - "expectedQty": "306448744569250763024", + "inputIndex": 0, + "inputQty": "93174003557798233767936", + "expectedQty": "92419538393064291068036", "reserves": [ - "915660109939373788034205", - "580723660223529658560373" + "6434061680172228859248192", + "1879258857367587189440030" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "117879760237802651648", - "outputIndex": 1, - "expectedQty": "117399272895620480199", - "swapFee": "93438935112311774", + "inputIndex": 1, + "inputQty": "252159323673413709463552", + "outputIndex": 0, + "expectedQty": "255394987715730587245834", + "swapFee": "0", "reserves": [ - "915777989699611590685853", - "580606260950634038080174" + "6178666692456498272002358", + "2131418181041000898903582" ], - "LPTokenSupply": "1484552512508271253947721", + "LPTokenSupply": "8273254724841896683611432", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "104769443985276924854272", - "expectedQty": "103789454393957307458033", - "reserves": [ - "1020547433684888515540125", - "580606260950634038080174" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "133421099161041010688", - "2994748645652044447744" - ], - "expectedQty": "3111035439303208888232", - "swapFee": "1867741908727161629", + "type": "swap", + "inputIndex": 1, + "inputQty": "7362365639611509637120", + "outputIndex": 0, + "expectedQty": "7443634576501444156037", + "swapFee": "0", "reserves": [ - "1020414012585727474529437", - "577611512304981993632430" + "6171223057879996827846321", + "2138780546680612408540702" ], - "LPTokenSupply": "1585229250495207498072054" + "LPTokenSupply": "8273254724841896683611432", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "4030665711819726572748", - "expectedQtys": [ - "2592987735018246658841", - "1467776361887553566316" - ], - "redemptionFee": "2418399427091835943", + "type": "redeem", + "inputIndex": 0, + "inputQty": "664672471042874277888", + "expectedQty": "669111981223121375768", + "swapFee": "398803482625724566", "reserves": [ - "1017821024850709227870596", - "576143735943094440066114" + "6170553945898773706470553", + "2138780546680612408540702" ], - "LPTokenSupply": "1581198826623330480682900" + "LPTokenSupply": "8272590092251202071906000" }, { "type": "redeemMasset", - "inputQty": "507430893028779124326", + "inputQty": "72931137594887", "expectedQtys": [ - "326438357146259048246", - "184782402848239587681" + "54366951406787", + "18844171701707" ], - "redemptionFee": "304458535817267474", + "redemptionFee": "43758682556", "reserves": [ - "1017494586493562968822350", - "575958953540246200478433" + "6170553945844406755063766", + "2138780546661768236838995" ], - "LPTokenSupply": "1580691426176155283285321" + "LPTokenSupply": "8272590092178275310179368" }, { "type": "redeemBassets", "inputQtys": [ - "33436966866708575813632", - "13339868950450480873472" + "126154293220105294708736", + "101656177033760613597184" ], - "expectedQty": "46387136646076805992910", - "swapFee": "27848991382475568937", + "expectedQty": "227284160259887626839871", + "swapFee": "136452367576478463181", "reserves": [ - "984057619626854393008718", - "562619084589795719604961" + "6044399652624301460355030", + "2037124369628007623241811" ], - "LPTokenSupply": "1534279225437834249280366" + "LPTokenSupply": "8045183124787568852722633" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2876639499864274432", - "expectedQty": "2890405679751362886", - "swapFee": "1725983699918564", - "reserves": [ - "984057619626854393008718", - "562616194184115968242075" + "type": "mintMulti", + "inputQtys": [ + "338277693419700248117248", + "156918686525969345282048" ], - "LPTokenSupply": "1534276348970932754997790" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3297931519053170688", - "expectedQty": "3313713689145412609", - "swapFee": "1978758911431902", + "expectedQty": "493331085956042642192946", "reserves": [ - "984057619626854393008718", - "562612880470426822829466" + "6382677346044001708472278", + "2194043056153976968523859" ], - "LPTokenSupply": "1534273051237289592970292" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "285393476869696119635968", - "expectedQty": "283555025983116721283622", - "reserves": [ - "984057619626854393008718", - "848006357340122942465434" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "6318880063308628492288", - "expectedQty": "6273043817066392919072", - "reserves": [ - "984057619626854393008718", - "854325237403431570957722" - ] + "LPTokenSupply": "8538514210743611494915579" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1709045047577887899648", - "outputIndex": 1, - "expectedQty": "1706044914720920234612", - "swapFee": "1356015612421841200", + "type": "redeemBassets", + "inputQtys": [ + "3590631429070270", + "8470381690116036" + ], + "expectedQty": "12066903323259809", + "swapFee": "7244488687168", "reserves": [ - "985766664674432280908366", - "852619192488710650723110" + "6382677342453370279402008", + "2194043047683595278407823" ], - "LPTokenSupply": "1824101256639033949357106", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8538514198670188131837317" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "309542544777237168128", - "expectedQty": "311919482501112501092", - "swapFee": "185725526866342300", + "inputQty": "51776900820474347520", + "expectedQty": "52125661008290275094", + "swapFee": "31066140492284608", "reserves": [ - "985454745191931168407274", - "852619192488710650723110" + "6382625216792361989126914", + "2194043047683595278407823" ], - "LPTokenSupply": "1823791732666809398823208" + "LPTokenSupply": "8538462424875981706718257" }, { "type": "redeemMasset", - "inputQty": "31616432159723032779161", + "inputQty": "396706021343698721177", "expectedQtys": [ - "17073149637786931229341", - "14771753983054448675777" + "296365611751828514225", + "101876404763019690880" ], - "redemptionFee": "18969859295833819667", + "redemptionFee": "238023612806219232", "reserves": [ - "968381595554144237177933", - "837847438505656202047333" + "6382328851180610160612689", + "2193941171278832258716943" ], - "LPTokenSupply": "1792177197493015949426013" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "85256442916537565184", - "expectedQty": "84637028753045867016", - "reserves": [ - "968381595554144237177933", - "837932694948572739612517" - ] + "LPTokenSupply": "8538065742656999288619003" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "9687596653457195401216", - "expectedQty": "9752433691165776300977", - "swapFee": "5812557992074317240", + "inputQty": "1331464420307199232", + "expectedQty": "1325649103481687290", + "swapFee": "798878652184319", "reserves": [ - "968381595554144237177933", - "828180261257406963311540" + "6382328851180610160612689", + "2193939845629728777029653" ], - "LPTokenSupply": "1782574819124111007323537" + "LPTokenSupply": "8538064411272466846638202" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1381185134730773", - "expectedQty": "1371204856972860", + "type": "mintMulti", + "inputQtys": [ + "3144039996145017552896", + "6024980358945818279936" + ], + "expectedQty": "9168829869574027607319", "reserves": [ - "968381595554144237177933", - "828180262638592098042313" - ] + "6385472891176755178165585", + "2199964825988674595309589" + ], + "LPTokenSupply": "8547233241142040874245521" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "42977551348657592", - "expectedQty": "43309676029546916", - "swapFee": "25786530809194", + "inputQty": "4965317761863255064576", + "expectedQty": "4998697566718372490504", + "swapFee": "2979190657117953038", "reserves": [ - "968381552244468207631017", - "828180262638592098042313" + "6380474193610036805675081", + "2199964825988674595309589" ], - "LPTokenSupply": "1782574777520343168719724" + "LPTokenSupply": "8542268221299243330976248" }, { - "type": "redeemMasset", - "inputQty": "178658848745601603993", - "expectedQtys": [ - "96997965802609821672", - "82954699630146186584" + "type": "mintMulti", + "inputQtys": [ + "4772536494282615291904", + "4120881281726440538112" ], - "redemptionFee": "107195309247360962", + "expectedQty": "8874104860127311709840", "reserves": [ - "968284554278665597809345", - "828097307938961951855729" + "6385246730104319420966985", + "2204085707270401035847701" ], - "LPTokenSupply": "1782396129391128491851827" + "LPTokenSupply": "8551142326159370642686088" }, { "type": "swap", "inputIndex": 0, - "inputQty": "24330268789767629963264", + "inputQty": "59723445154573686145024", "outputIndex": 1, - "expectedQty": "24280829931156356039788", - "swapFee": "19302605542256115847", + "expectedQty": "59001221301303187576268", + "swapFee": "47430468857360454643", "reserves": [ - "992614823068433227772609", - "803816478007805595815941" + "6444970175258893107112009", + "2145084485969097848271433" ], - "LPTokenSupply": "1782398059651682717463411", + "LPTokenSupply": "8551147069206256378731552", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "11513195473679352332288", - "3222751735087646638080" - ], - "expectedQty": "14615986093942897859435", - "reserves": [ - "1004128018542112580104897", - "807039229742893242454021" - ], - "LPTokenSupply": "1797014045745625615322846" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1380061344954304167936", - "6649421704767256657920" + "type": "redeemMasset", + "inputQty": "34369319061167042828697", + "expectedQtys": [ + "25888495304753481733116", + "8616488227748823694219" ], - "expectedQty": "7971162208836489223681", + "redemptionFee": "20621591436700225697", "reserves": [ - "1005508079887066884272833", - "813688651447660499111941" + "6419081679954139625378893", + "2136467997741349024577214" ], - "LPTokenSupply": "1804985207954462104546527" + "LPTokenSupply": "8516779812304233005925424" }, { "type": "swap", "inputIndex": 1, - "inputQty": "135146177464643616768", + "inputQty": "125093012783715648", "outputIndex": 0, - "expectedQty": "135339147424532902282", + "expectedQty": "126569132881588480", "swapFee": "0", "reserves": [ - "1005372740739642351370551", - "813823797625125142728709" + "6419081553385006743790413", + "2136468122834361808292862" ], - "LPTokenSupply": "1804985207954462104546527", + "LPTokenSupply": "8516779812304233005925424", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "2904648796862419968", - "expectedQty": "2927629146940043688", - "swapFee": "1742789278117451", + "inputQty": "26578804810549659959296", + "expectedQty": "26380345610017253958711", "reserves": [ - "1005369813110495411326863", - "813823797625125142728709" - ], - "LPTokenSupply": "1804982303479944169938304" + "6445660358195556403749709", + "2136468122834361808292862" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "46608074727431260340224", - "140244472793490983485440" - ], - "expectedQty": "185451024216425663194309", - "reserves": [ - "1051977887837926671667087", - "954068270418616126214149" + "type": "redeemMasset", + "inputQty": "2249593218701243187", + "expectedQtys": [ + "1696259170574535155", + "562239312127280279" ], - "LPTokenSupply": "1990433327696369833132613" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "15833300703383268622336", - "expectedQty": "15952461505778469132742", - "swapFee": "9499980422029961173", + "redemptionFee": "1349755931220745", "reserves": [ - "1036025426332148202534345", - "954068270418616126214149" + "6445658661936385829214554", + "2136467560595049681012583" ], - "LPTokenSupply": "1974600976991028767506394" + "LPTokenSupply": "8543157908456007151763022" }, { "type": "swap", "inputIndex": 0, - "inputQty": "21642900013951278383104", + "inputQty": "230203534568270845706240", "outputIndex": 1, - "expectedQty": "21610597715677088430456", - "swapFee": "17174452403609174347", + "expectedQty": "226950009333778574346312", + "swapFee": "182768993633818077408", "reserves": [ - "1057668326346099480917449", - "932457672702939037783693" + "6675862196504656674920794", + "1909517551261271106666271" ], - "LPTokenSupply": "1974602694436269128423828", + "LPTokenSupply": "8543176185355370533570762", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "162647020733239794860032", - "expectedQty": "161404316063795573261326", + "inputQty": "122110689929830263160832", + "outputIndex": 0, + "expectedQty": "123859163547873455893937", + "swapFee": "0", "reserves": [ - "1057668326346099480917449", - "1095104693436178832643725" - ] + "6552003032956783219026857", + "2031628241191101369827103" + ], + "LPTokenSupply": "8543176185355370533570762", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1844435719597359890432", - "expectedQty": "1830280246235531248384", + "inputIndex": 1, + "inputQty": "77469323408025157632", + "expectedQty": "77887280233324859359", "reserves": [ - "1059512762065696840807881", - "1095104693436178832643725" + "6552003032956783219026857", + "2031705710514509394984735" ] }, { "type": "redeemMasset", - "inputQty": "95794744471641292", + "inputQty": "13751409479806868887961", "expectedQtys": [ - "47447416738872757", - "49041305232470632" + "10539920302917402967899", + "3268315988269835006150" ], - "redemptionFee": "57476846682984", + "redemptionFee": "8250845687884121332", "reserves": [ - "1059512714618280101935124", - "1095104644394873600173093" + "6541463112653865816058958", + "2028437394526239559978585" ], - "LPTokenSupply": "2137837194957303445960544" + "LPTokenSupply": "8529503488240365777954293" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "295440592927742039687168", - "expectedQty": "293050330385421596222383", + "inputIndex": 1, + "inputQty": "70825708676961152270336", + "expectedQty": "71186822001433342250458", "reserves": [ - "1354953307546022141622292", - "1095104644394873600173093" + "6541463112653865816058958", + "2099263103203200712248921" ] }, { "type": "redeemMasset", - "inputQty": "14900575683050681139", + "inputQty": "275850085245627190476", "expectedQtys": [ - "8300454194260148411", - "6708619321490863899" + "209678573964563613660", + "67289303061971235061" ], - "redemptionFee": "8940345409830408", + "redemptionFee": "165510051147376314", "reserves": [ - "1354945007091827881473881", - "1095097935775552109309194" + "6541253434079901252445298", + "2099195813900138741013860" ], - "LPTokenSupply": "2430872625661076532484828" + "LPTokenSupply": "8600414476707558607751906" }, { - "type": "redeemBassets", + "type": "swap", + "inputIndex": 0, + "inputQty": "133975375538756960387072", + "outputIndex": 1, + "expectedQty": "132079172464043786723280", + "swapFee": "106353007593473034316", + "reserves": [ + "6675228809618658212832370", + "1967116641436094954290580" + ], + "LPTokenSupply": "8600425112008317955055337", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", "inputQtys": [ - "5412366040041059778560", - "5939395062131762135040" + "129736027055544", + "300331039485092" ], - "expectedQty": "11264177505748667211085", - "swapFee": "6762564041874324921", + "expectedQty": "430908237204752", "reserves": [ - "1349532641051786821695321", - "1089158540713420347174154" + "6675228809748394239887914", + "1967116641736425993775672" ], - "LPTokenSupply": "2419602361847690178381313" + "LPTokenSupply": "8600425112439226192260089" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "34415674201135290253312", - "expectedQty": "34687381389259898157950", - "swapFee": "20649404520681174151", + "inputQty": "5849125049672317009920", + "expectedQty": "5893585164366180307041", + "swapFee": "3509475029803390205", "reserves": [ - "1314845259662526923537371", - "1089158540713420347174154" + "6669335224584028059580873", + "1967116641736425993775672" ], - "LPTokenSupply": "2385188752587006956245416" + "LPTokenSupply": "8594576338337056855589189" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "21502673102265110528", + "expectedQty": "21327702496331061395", + "reserves": [ + "6669356727257130324691401", + "1967116641736425993775672" + ] }, { "type": "redeemBassets", "inputQtys": [ - "165668793482417019027456", - "4116829245049050497024" + "13216671573981", + "23962233786055" ], - "expectedQty": "168397576278179789691746", - "swapFee": "101099205290081922968", + "expectedQty": "37222334829754", + "swapFee": "22346808983", "reserves": [ - "1149176466180109904509915", - "1085041711468371296677130" + "6669356727243913653117420", + "1967116641712463759989617" ], - "LPTokenSupply": "2216700187024066092822997" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "212651905810827992629248", - "expectedQty": "210886994255520355515753", - "reserves": [ - "1361828371990937897139163", - "1085041711468371296677130" - ] + "LPTokenSupply": "8594597666002310739692744" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "172079546705864261632", - "142666000380416147456" + "61809930699238446989312", + "76203593478874901512192" ], - "expectedQty": "312269870729830607466", + "expectedQty": "138007766931363432598343", + "swapFee": "82854372782487552090", "reserves": [ - "1362000451537643761400795", - "1085184377468751712824586" + "6607546796544675206128108", + "1890913048233588858477425" ], - "LPTokenSupply": "2427899451150316278946216" + "LPTokenSupply": "8456515330135443068297519" }, { "type": "mint", "inputIndex": 0, - "inputQty": "57747998367992164384768", - "expectedQty": "57250108576230049855409", + "inputQty": "67589938427655383678976", + "expectedQty": "67025604325627855332437", "reserves": [ - "1419748449905635925785563", - "1085184377468751712824586" + "6675136734972330589807084", + "1890913048233588858477425" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "7502090739848962899968", - "expectedQty": "7549321244546215703462", - "swapFee": "4501254443909377739", + "inputQty": "8765071989438609883136", + "expectedQty": "8697652081772684539347", + "swapFee": "5259043193663165929", "reserves": [ - "1419748449905635925785563", - "1077635056224205497121124" + "6675136734972330589807084", + "1882215396151816173938078" ], - "LPTokenSupply": "2477647919112141756839430" + "LPTokenSupply": "8514776388375951680063412" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "347011806457885294592", - "expectedQty": "349850344361731303677", - "swapFee": "208207083874731176", + "inputQty": "6254249707977326985216", + "outputIndex": 1, + "expectedQty": "6152098183585759157101", + "swapFee": "4961322729738113569", "reserves": [ - "1419398599561274194481886", - "1077635056224205497121124" + "6681390984680307916792300", + "1876063297968230414780977" ], - "LPTokenSupply": "2477300928126392259017955" + "LPTokenSupply": "8514776884508224653874768", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5855241146154074767360", - "outputIndex": 0, - "expectedQty": "5866068518144183860749", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "4290510903604648345600", + "34057131145625910378496" + ], + "expectedQty": "38565672979573329171553", + "swapFee": "23153295765203119374", "reserves": [ - "1413532531043130010621137", - "1083490297370359571888484" + "6677100473776703268446700", + "1842006166822604504402481" ], - "LPTokenSupply": "2477300928126392259017955", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8476190373562462641895777" }, { "type": "redeemMasset", - "inputQty": "2455114144299103027", + "inputQty": "1049742271008772710", "expectedQtys": [ - "1400032366188057887", - "1073142252799657957" + "826436024393220839", + "227988220245490080" ], - "redemptionFee": "1473068486579461", + "redemptionFee": "629845362605263", "reserves": [ - "1413531131010763822563250", - "1083489224228106772230527" + "6677099647340678875225861", + "1842005938834384258912401" ], - "LPTokenSupply": "2477298473159554808572874" + "LPTokenSupply": "8476189323883176169383593" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 0, + "inputQty": "49827071923524273700864", + "expectedQty": "50224984808188689748402", + "swapFee": "29896243154114564220", + "reserves": [ + "6626874662532490185477459", + "1842005938834384258912401" + ], + "LPTokenSupply": "8426365241583967307139151" + }, + { + "type": "mintMulti", "inputQtys": [ - "12136125074501191860224", - "6663149532639454560256" + "821137302627391242240", + "235509093345522745344" ], - "expectedQty": "18648120311469075104837", - "swapFee": "11195589540605808548", + "expectedQty": "1051432751428327281096", "reserves": [ - "1401395005936262630703026", - "1076826074695467317670271" + "6627695799835117576719699", + "1842241447927729781657745" ], - "LPTokenSupply": "2458640276817499188240342" + "LPTokenSupply": "8427416674335395634420247" }, { - "type": "redeemMasset", - "inputQty": "18927811796702259996262", - "expectedQtys": [ - "10782148966891205134551", - "8284958273447212552701" + "type": "mintMulti", + "inputQtys": [ + "204908117333859301851136", + "2752681201247840108544" ], - "redemptionFee": "11356687078021355997", + "expectedQty": "205922912422675129021035", "reserves": [ - "1390612856969371425568475", - "1068541116422020105117570" + "6832603917168976878570835", + "1844994129128977621766289" ], - "LPTokenSupply": "2439713600689504730379679" + "LPTokenSupply": "8633339586758070763441282" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "163812081955081289728", - "expectedQty": "165147124410379352061", - "swapFee": "98287249173048773", + "type": "redeemBassets", + "inputQtys": [ + "1064199386276401643520", + "219962672857486917632" + ], + "expectedQty": "1276720436476126251550", + "swapFee": "766492157179983741", "reserves": [ - "1390447709844961046216414", - "1068541116422020105117570" + "6831539717782700476927315", + "1844774166456120134848657" ], - "LPTokenSupply": "2439549798436274566394828" + "LPTokenSupply": "8632062176478653175204364" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "154558390799015505559552", - "148971245685902321647616" + "105277416650902387818496", + "48741452853945145753600" ], - "expectedQty": "301162527650796579686104", - "swapFee": "180806000190592303193", + "expectedQty": "153499656418546065795025", "reserves": [ - "1235889319045945540656862", - "919569870736117783469954" + "6936817134433602864745811", + "1893515619310065280602257" ], - "LPTokenSupply": "2138224545385306453635849" + "LPTokenSupply": "8785561832897199240999389" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "112097924647974059638784", - "expectedQty": "111089868956031158921188", + "type": "mintMulti", + "inputQtys": [ + "1755974085994404118528", + "2930065668054745350144" + ], + "expectedQty": "4694008261002770176813", "reserves": [ - "1347987243693919600295646", - "919569870736117783469954" - ] + "6938573108519597268864339", + "1896445684978120025952401" + ], + "LPTokenSupply": "8790255841158202011176202" }, { "type": "mint", "inputIndex": 1, - "inputQty": "221985465775482142720", - "expectedQty": "220551590987030136728", + "inputQty": "83541813762877231726592", + "expectedQty": "84159317077238573369234", "reserves": [ - "1347987243693919600295646", - "919791856201893265612674" + "6938573108519597268864339", + "1979987498740997257678993" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "349077403037424418816", - "68932856748258410496" - ], - "expectedQty": "414379183258401655632", - "swapFee": "248776776020653385", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4418644739594004201472", + "expectedQty": "4453137638245181708043", + "swapFee": "2651186843756402520", "reserves": [ - "1347638166290882175876830", - "919722923345145007202178" + "6934119970881352087156296", + "1979987498740997257678993" ], - "LPTokenSupply": "2249120362849967822450085" + "LPTokenSupply": "8869996778614530955984216" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "204820294300583", - "expectedQty": "206028517722982", - "swapFee": "122892176580", + "type": "swap", + "inputIndex": 0, + "inputQty": "878176843990697639936", + "outputIndex": 1, + "expectedQty": "864163688578681905561", + "swapFee": "696682374020182027", "reserves": [ - "1347638166290882175876830", - "919722923139116489479196" + "6934998147725342784796232", + "1979123335052418575773432" ], - "LPTokenSupply": "2249120362645159817367160" + "LPTokenSupply": "8869996848282768358002418", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "270106104731716655513", + "inputQty": "42056462072503861248", "expectedQtys": [ - "161746298041323153010", - "110387032485830370914" - ], - "redemptionFee": "162063662839029993", - "reserves": [ - "1347476419992840852723820", - "919612536106630659108282" + "32862073647431293525", + "9378242850025087127" ], - "LPTokenSupply": "2248850272746794384614646" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "17964183459927399858176", - "expectedQty": "18069312526236368587515", - "swapFee": "10778510075956439914", + "redemptionFee": "25233877243502316", "reserves": [ - "1347476419992840852723820", - "901543223580394290520767" + "6934965285651695353502707", + "1979113956809568550686305" ], - "LPTokenSupply": "2230887167137874580400461" + "LPTokenSupply": "8869954794344083578491401" }, { "type": "redeemMasset", - "inputQty": "139928237764536015257", + "inputQty": "5963840535950942168678", "expectedQtys": [ - "84467235122470370514", - "56513689077868708366" + "4660025065301043986071", + "1329887067337069735599" ], - "redemptionFee": "83956942658721609", + "redemptionFee": "3578304321570565301", "reserves": [ - "1347391952757718382353306", - "901486709891316421812401" + "6930305260586394309516636", + "1977784069742231480950706" ], - "LPTokenSupply": "2230747247295804310257364" + "LPTokenSupply": "8863991311638564793379253" }, { "type": "mintMulti", "inputQtys": [ - "52116358104660368", - "175469424577350912" + "82635637682827886592", + "34470902473592918016" ], - "expectedQty": "225988567877403773", + "expectedQty": "116656271835629555876", "reserves": [ - "1347392004874076487013674", - "901486885360740999163313" + "6930387896224077137403228", + "1977818540644705073868722" ], - "LPTokenSupply": "2230747473284372187661137" + "LPTokenSupply": "8864107967910400422935129" }, { - "type": "mintMulti", - "inputQtys": [ - "372842385535246204928", - "1844967488232670101504" - ], - "expectedQty": "2202619377516221805154", + "type": "redeem", + "inputIndex": 0, + "inputQty": "219604566776549419778048", + "expectedQty": "221298467869279768347429", + "swapFee": "131762740065929651866", "reserves": [ - "1347764847259611733218602", - "903331852848973669264817" + "6709089428354797369055799", + "1977818540644705073868722" ], - "LPTokenSupply": "2232950092661888409466291" + "LPTokenSupply": "8644516577407857596122267" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "152485088435754300866560", - "expectedQty": "151457810670912261552389", + "inputQty": "148726275101471767789568", + "outputIndex": 0, + "expectedQty": "150722319736618003524411", + "swapFee": "0", "reserves": [ - "1347764847259611733218602", - "1055816941284727970131377" - ] + "6558367108618179365531388", + "2126544815746176841658290" + ], + "LPTokenSupply": "8644516577407857596122267", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "513212963185802018816", - "expectedQty": "508748060219970208937", + "type": "redeem", + "inputIndex": 1, + "inputQty": "21766820758355871531008", + "expectedQty": "21652294889996853243787", + "swapFee": "13060092455013522918", "reserves": [ - "1348278060222797535237418", - "1055816941284727970131377" - ] + "6558367108618179365531388", + "2104892520856179988414503" + ], + "LPTokenSupply": "8622751062658747225943550" }, { "type": "redeemBassets", "inputQtys": [ - "913230740881335779328", - "1427004535846945161216" + "305180521130184474624", + "202020978085116280832" ], - "expectedQty": "2322224671319147284217", - "swapFee": "1394171305574833270", + "expectedQty": "505812802001473010268", + "swapFee": "303669883130762263", "reserves": [ - "1347364829481916199458090", - "1054389936748881024970161" + "6558061928097049181056764", + "2104690499878094872133671" ], - "LPTokenSupply": "2382593171967526476593456" + "LPTokenSupply": "8622244976553850935247244" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "132462326387118526431232", - "expectedQty": "131289876950365175835044", + "type": "swap", + "inputIndex": 1, + "inputQty": "279436518706105679872", + "outputIndex": 0, + "expectedQty": "282949376623435736371", + "swapFee": "0", "reserves": [ - "1479827155869034725889322", - "1054389936748881024970161" - ] + "6557778978720425745320393", + "2104969936396800977813543" + ], + "LPTokenSupply": "8622244976553850935247244", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "149918469667544530944", - "expectedQty": "151188468250722930088", - "swapFee": "89951081800526718", - "reserves": [ - "1479675967400784002959234", - "1054389936748881024970161" + "type": "redeemBassets", + "inputQtys": [ + "64408078186719682560", + "43728632270422974464" ], - "LPTokenSupply": "2513733139443332287950227" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "183641569506458112", - "expectedQty": "184762064609039957", - "swapFee": "110184941703874", + "expectedQty": "107848777372262391030", + "swapFee": "64748115292532954", "reserves": [ - "1479675967400784002959234", - "1054389751986816415930204" + "6557714570642239025637833", + "2104926207764530554839079" ], - "LPTokenSupply": "2513732955812781275662502" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "6935670466569546235904", - "expectedQty": "6873233660663778396969", - "reserves": [ - "1486611637867353549195138", - "1054389751986816415930204" - ] + "LPTokenSupply": "8622137069503174909576554" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "10774032428569068568576", - "expectedQty": "10676840357842907426210", + "inputQty": "17879635266748748398592", + "expectedQty": "18007550853391137505810", + "swapFee": "10727781160049249039", "reserves": [ - "1497385670295922617763714", - "1054389751986816415930204" - ] + "6539707019788847888132023", + "2104926207764530554839079" + ], + "LPTokenSupply": "8604258507014542166102865" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "8880937287386195968", - "expectedQty": "8934650162802956539", - "swapFee": "5328562372431717", + "inputQty": "349256559092434468864", + "expectedQty": "347406699768009167012", + "swapFee": "209553935455460681", "reserves": [ - "1497385670295922617763714", - "1054380817336653612973665" + "6539707019788847888132023", + "2104578801064762545672067" ], - "LPTokenSupply": "2531274149426856812532884" + "LPTokenSupply": "8603909271410843277180069" }, { - "type": "redeemMasset", - "inputQty": "42832226234070", - "expectedQtys": [ - "25322377659965", - "17830696382144" + "type": "redeemBassets", + "inputQtys": [ + "27677178969881279725568", + "22231426481525337620480" + ], + "expectedQty": "49801349594235394502121", + "swapFee": "29898749005944803583", + "reserves": [ + "6512029840818966608406455", + "2082347374583237208051587" ], - "redemptionFee": "25699335740", + "LPTokenSupply": "8554081012942502532354722" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "2027775618294833217536", + "expectedQty": "2042345887063551980635", + "swapFee": "1216665370976899930", "reserves": [ - "1497385670270600240103749", - "1054380817318822916591521" + "6509987494931903056425820", + "2082347374583237208051587" ], - "LPTokenSupply": "2531274149384027156232388" + "LPTokenSupply": "8552053358990744796827179" }, { "type": "redeemBassets", "inputQtys": [ - "21109968132192759447552", - "4045018543516165865472" + "468858623928821088256", + "1268261234039586553856" ], - "expectedQty": "24937834259788738124785", - "swapFee": "14971683566012850585", + "expectedQty": "1739612722782085247432", + "swapFee": "1044394270231389982", "reserves": [ - "1476275702138407480656197", - "1050335798775306750726049" + "6509518636307974235337564", + "2081079113349197621497731" ], - "LPTokenSupply": "2506322840609029006542075" + "LPTokenSupply": "8550312806313119503328762" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "425645354638346207363072", - "expectedQty": "427661181596695231490438", - "swapFee": "255387212783007724417", + "inputQty": "872754205400674729984", + "expectedQty": "868036886616214061284", + "swapFee": "523652523240404837", "reserves": [ - "1476275702138407480656197", - "622674617178611519235611" + "6509518636307974235337564", + "2080211076462581407436447" ], - "LPTokenSupply": "2080703024691961099951444" + "LPTokenSupply": "8549440104472971152639261" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "1004398866610873171968", - "expectedQty": "1001063727503392589521", + "inputQty": "91836542496975972466688", + "expectedQty": "91305459518969796563474", + "swapFee": "55101925498185583480", "reserves": [ - "1476275702138407480656197", - "623679016045222392407579" - ] + "6509518636307974235337564", + "1988905616943611610872973" + ], + "LPTokenSupply": "8457609072168544998730921" }, { "type": "mint", "inputIndex": 0, - "inputQty": "290428258359434094313472", - "expectedQty": "287128957009607076388263", + "inputQty": "22947372523770900480", + "expectedQty": "22764210554601661892", "reserves": [ - "1766703960497841574969669", - "623679016045222392407579" + "6509541583680498006238044", + "1988905616943611610872973" ] }, { - "type": "mintMulti", - "inputQtys": [ - "18883972922133348089856", - "20920620986054821806080" - ], - "expectedQty": "39554401798739387573711", + "type": "swap", + "inputIndex": 1, + "inputQty": "130221291894235390279680", + "outputIndex": 0, + "expectedQty": "131879782068019803392297", + "swapFee": "0", "reserves": [ - "1785587933419974923059525", - "644599637031277214213659" + "6377661801612478202845747", + "2119126908837847001152653" ], - "LPTokenSupply": "2408387447227810956502939" + "LPTokenSupply": "8457631836379099600392813", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "19626660278948995072", - "255839622878458576896" + "type": "mint", + "inputIndex": 0, + "inputQty": "234679922286548680704", + "expectedQty": "232910926949681127990", + "reserves": [ + "6377896481534764751526451", + "2119126908837847001152653" + ] + }, + { + "type": "redeemMasset", + "inputQty": "66222498661524530790", + "expectedQtys": [ + "49907019995974511019", + "16582161425725801080" ], - "expectedQty": "274842879942110491199", + "redemptionFee": "39733499196914718", "reserves": [ - "1785607560080253872054597", - "644855476654155672790555" + "6377846574514768777015432", + "2119110326676421275351573" ], - "LPTokenSupply": "2408662290107753066994138" + "LPTokenSupply": "8457798528780737676681484" }, { "type": "redeemBassets", "inputQtys": [ - "143757641884728115200", - "139557191990409674752" + "94753848666242852847616", + "10518071587904923107328" ], - "expectedQty": "281424319083316845299", - "swapFee": "168955965029007511", + "expectedQty": "104603528675968670957712", + "swapFee": "62799797083831501475", "reserves": [ - "1785463802438369143939397", - "644715919462165263115803" + "6283092725848525924167816", + "2108592255088516352244245" ], - "LPTokenSupply": "2408380713728301224042078" + "LPTokenSupply": "8353138480287393557372443" }, { - "type": "mintMulti", - "inputQtys": [ - "27247668732943918956544", - "36141049274149434818560" - ], - "expectedQty": "63008787536169065250821", + "type": "mint", + "inputIndex": 1, + "inputQty": "1632824302645838086144", + "expectedQty": "1639427063515277173125", "reserves": [ - "1812711471171313062895941", - "680856968736314697934363" - ], - "LPTokenSupply": "2471389501264470289292899" + "6283092725848525924167816", + "2110225079391162190330389" + ] }, { "type": "redeemBassets", "inputQtys": [ - "3498232609876224770048", - "7808983781436457746432" + "1207049518392978688", + "2535819170931537408" ], - "expectedQty": "11251541480190615181748", - "swapFee": "6754977874839272672", + "expectedQty": "3744067303766382630", + "swapFee": "2247789055693245", "reserves": [ - "1809213238561436838125893", - "673047984954878240187931" + "6283091518799007531189128", + "2110222543571991258792981" ], - "LPTokenSupply": "2460131880304192318765745" + "LPTokenSupply": "8354774161260594918039016" }, { "type": "redeemMasset", - "inputQty": "760338935153120981811", + "inputQty": "10110819347616432128", "expectedQtys": [ - "558827723472441479264", - "207890294633877413977" + "7599138617478035201", + "2552226650582968037" ], - "redemptionFee": "456203361091872589", + "redemptionFee": "6066491608569859", "reserves": [ - "1808654410837964396646629", - "672840094660244362773954" + "6283083919660390053153927", + "2110219991345340675824944" ], - "LPTokenSupply": "2459371586989375306971192" + "LPTokenSupply": "8354764051047896462463873" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "22850804873142332293120", + "expectedQty": "22679440518526140862830", + "reserves": [ + "6305934724533532385447047", + "2110219991345340675824944" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "176393952944794411991040", - "191814103166437210193920" + "156172164604922101760", + "35072175613292388352" ], - "expectedQty": "366010089462485397579724", - "swapFee": "219737896415340442813", + "expectedQty": "190215269272306527635", "reserves": [ - "1632260457893169984655589", - "481025991493807152580034" + "6306090896698137307548807", + "2110255063520953968213296" ], - "LPTokenSupply": "2093163733420116102992935" + "LPTokenSupply": "8377633706835694909854338" }, { - "type": "mintMulti", - "inputQtys": [ - "86858443599835807744", - "41873408481571454976" + "type": "redeemMasset", + "inputQty": "489972006136464277504", + "expectedQtys": [ + "368595027043251801785", + "123345751742008002556" ], - "expectedQty": "127686977255798692319", + "redemptionFee": "293983203681878566", "reserves": [ - "1632347316336769820463333", - "481067864902288724035010" + "6305722301671094055747022", + "2110131717769211960210740" ], - "LPTokenSupply": "2093291420397371901685254" + "LPTokenSupply": "8377143764227878813764690" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "775375391358276599808", - "expectedQty": "776598308248900517407", + "inputIndex": 0, + "inputQty": "586829265020174848", + "expectedQty": "582423042721407659", "reserves": [ - "1632347316336769820463333", - "481843240293647000634818" + "6305722888500359075921870", + "2110131717769211960210740" ] }, { - "type": "mintMulti", - "inputQtys": [ - "243598938681976905793536", - "299697995668683799658496" - ], - "expectedQty": "540007689870367872009221", + "type": "redeem", + "inputIndex": 0, + "inputQty": "243411237830515088162816", + "expectedQty": "245081215779338652108900", + "swapFee": "146046742698309052897", "reserves": [ - "1875946255018746726256869", - "781541235962330800293314" + "6060641672721020423812970", + "2110131717769211960210740" ], - "LPTokenSupply": "2634075708575988674211882" + "LPTokenSupply": "8133747713494676277914822" }, { "type": "redeemBassets", "inputQtys": [ - "4873769672830781227008", - "3773106771713814167552" + "1592814287992361320448", + "1679748956165610143744" ], - "expectedQty": "8580344686072281426067", - "swapFee": "5151297590197487348", - "reserves": [ - "1871072485345915945029861", - "777768129190616986125762" - ], - "LPTokenSupply": "2625490727722085215047200" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "4656073137227156480", - "outputIndex": 1, - "expectedQty": "4615676838144869500", - "swapFee": "3683430534452516", + "expectedQty": "3266772607507223717486", + "swapFee": "1961240308689547959", "reserves": [ - "1871077141419053172186341", - "777763513513778841256262" + "6059048858433028062492522", + "2108451968813046350066996" ], - "LPTokenSupply": "2625490728090428268492451", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8130479175770891233604171" }, { - "type": "mintMulti", - "inputQtys": [ - "15697305605638270746624", - "3514026373190539280384" + "type": "redeemMasset", + "inputQty": "1619820517200103219", + "expectedQtys": [ + "1206408958262205721", + "419810997183388938" ], - "expectedQty": "19025212266623663531791", + "redemptionFee": "971892310320061", "reserves": [ - "1886774447024691442932965", - "781277539886969380536646" + "6059047652024069800286801", + "2108451549002049166678058" ], - "LPTokenSupply": "2644515940357051932024242" + "LPTokenSupply": "8130477556047563264532958" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "77561673450821681152", - "1191877073869526794240" + "453274042226707529728", + "464566718741858484224" ], - "expectedQty": "1264738258637654157109", - "swapFee": "759298534303174398", + "expectedQty": "916146444989549621730", "reserves": [ - "1886696885351240621251813", - "780085662813099853742406" + "6059500926066296507816529", + "2108916115720791025162282" ], - "LPTokenSupply": "2643250518729733405010173" + "LPTokenSupply": "8131393702492552814154688" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "870773731946613964800", - "outputIndex": 0, - "expectedQty": "877749701475794715568", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "8226990686779453997056", + "outputIndex": 1, + "expectedQty": "8131268632712994659307", + "swapFee": "6533332595066193618", "reserves": [ - "1885819135649764826536245", - "780956436545046467707206" + "6067727916753075961813585", + "2100784847088078030502975" ], - "LPTokenSupply": "2643250518729733405010173", + "LPTokenSupply": "8131394355825812320774049", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8349044401733526528", - "7076827100389873664" + "278803643909727584256", + "1035746747119865167872" ], - "expectedQty": "15310037971219901848", + "expectedQty": "1316206854141755204251", + "swapFee": "790198231423907467", "reserves": [ - "1885827484694166560062773", - "780963513372146857580870" + "6067449113109166234229329", + "2099749100340958165335103" ], - "LPTokenSupply": "2643265828767704624912021" + "LPTokenSupply": "8130077437793262284053076" }, { "type": "mintMulti", "inputQtys": [ - "87942034012284903227392", - "41073814601858585460736" + "161788134191955050496", + "153749524150133948416" ], - "expectedQty": "127903637436946876828668", + "expectedQty": "314898043709694686360", "reserves": [ - "1973769518706451463290165", - "822037327974005443041606" + "6067610901243358189279825", + "2099902849865108299283519" ], - "LPTokenSupply": "2771169466204651501740689" + "LPTokenSupply": "8130392335836971978739436" }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "199121956937684929740", + "expectedQtys": [ + "148513083991751933325", + "51397997233578369046" + ], + "redemptionFee": "119473174162610957", + "reserves": [ + "6067462388159366437346500", + "2099851451867874720914473" + ], + "LPTokenSupply": "8130193225827351710070791" + }, + { + "type": "redeemBassets", "inputQtys": [ - "13737939881435303247872", - "19553043940908321472512" + "101325929896717408272384", + "9694207191413237481472" ], - "expectedQty": "33072914751502119398303", + "expectedQty": "110311531946014463056823", + "swapFee": "66226655160705100894", "reserves": [ - "1987507458587886766538037", - "841590371914913764514118" + "5966136458262649029074116", + "2090157244676461483433001" ], - "LPTokenSupply": "2804242380956153621138992" + "LPTokenSupply": "8019822089891692612423162" }, { "type": "mint", "inputIndex": 1, - "inputQty": "625334635713724153856", - "expectedQty": "623175024276377507807", + "inputQty": "77779189121388118016", + "expectedQty": "78043838611060781620", "reserves": [ - "1987507458587886766538037", - "842215706550627488667974" + "5966136458262649029074116", + "2090235023865582871551017" ] }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "65427752754714186350592", - "expectedQty": "64700850537431819077547", + "inputQty": "1082625334769907400704", + "outputIndex": 1, + "expectedQty": "1070208741625806016066", + "swapFee": "859772970253528235", "reserves": [ - "2052935211342600952888629", - "842215706550627488667974" - ] + "5967219083597418936474820", + "2089164815123957065534951" + ], + "LPTokenSupply": "8019900219707600698557605", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2513596160259018194944", - "3673546258410141908992" + "10900904047572085112832", + "12343371690733719257088" ], - "expectedQty": "6147500919120998739922", + "expectedQty": "23206479246559232393110", "reserves": [ - "2055448807502859971083573", - "845889252809037630576966" + "5978119987644991021587652", + "2101508186814690784792039" ], - "LPTokenSupply": "2875713907436982816464268" + "LPTokenSupply": "8043106698954159930950715" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "762875636810050830336", - "expectedQty": "764833793173882115592", - "swapFee": "457725382086030498", - "reserves": [ - "2055448807502859971083573", - "845124419015863748461374" - ], - "LPTokenSupply": "2874951077572710974236981" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "6875934147232123584512", - "4289581318365718249472" - ], - "expectedQty": "11075203962852082785653", - "swapFee": "6649111844818140555", + "inputQty": "21968750511304850014208", + "outputIndex": 0, + "expectedQty": "22201402823842332469247", + "swapFee": "0", "reserves": [ - "2048572873355627847499061", - "840834837697498030211902" + "5955918584821148689118405", + "2123476937325995634806247" ], - "LPTokenSupply": "2863869889409198555124827" + "LPTokenSupply": "8043106698954159930950715", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "414267789906943483576320", - "expectedQty": "412236164091516530094598", + "inputQty": "18743955696017547264", + "expectedQty": "18803242216064920075", "reserves": [ - "2048572873355627847499061", - "1255102627604441513788222" + "5955918584821148689118405", + "2123495681281691652353511" ] }, { - "type": "mintMulti", - "inputQtys": [ - "45064309233573216256", - "255067293508167204864" - ], - "expectedQty": "298127648088003027473", + "type": "redeem", + "inputIndex": 0, + "inputQty": "91972244234553503252480", + "expectedQty": "92582103331946209710434", + "swapFee": "55183346540732101951", "reserves": [ - "2048617937664861420715317", - "1255357694897949680993086" + "5863336481489202479407971", + "2123495681281691652353511" ], - "LPTokenSupply": "3276404181148803088246898" + "LPTokenSupply": "7951158776296476565828505" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1072003388723191349248", - "outputIndex": 1, - "expectedQty": "1067314443986271213443", - "swapFee": "849288914284607949", + "type": "mintMulti", + "inputQtys": [ + "4134827698138672", + "10302239677727354" + ], + "expectedQty": "14437874914872337", "reserves": [ - "2049689941053584612064565", - "1254290380453963409779643" + "5863336485624030177546643", + "2123495691583931330080865" ], - "LPTokenSupply": "3276404266077694516707692", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7951158790734351480700842" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "10109029833421", - "expectedQty": "10165351924668", - "swapFee": "6065417900", + "inputQty": "104412875523159725441024", + "expectedQty": "104008601238575930328162", + "swapFee": "62647725313895835264", "reserves": [ - "2049689941053584612064565", - "1254290380443798057854975" + "5863336485624030177546643", + "2019487090345355399752703" ], - "LPTokenSupply": "3276404266067586093416061" + "LPTokenSupply": "7846752179983723144843344" }, { - "type": "redeemMasset", - "inputQty": "922410063290605292748", - "expectedQtys": [ - "576705461852009666539", - "352910017589564257877" - ], - "redemptionFee": "553446037974363175", + "type": "redeem", + "inputIndex": 0, + "inputQty": "428466272619118264320", + "expectedQty": "431402411487829740965", + "swapFee": "257079763571470958", "reserves": [ - "2049113235591732602398026", - "1253937470426208493597098" + "5862905083212542347805678", + "2019487090345355399752703" ], - "LPTokenSupply": "3275481911348899285559630" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "23067844396612543578112", - "expectedQty": "22925142863296960676686", - "reserves": [ - "2049113235591732602398026", - "1277005314822821037175210" - ] + "LPTokenSupply": "7846323739419080383726119" }, { - "type": "redeemMasset", - "inputQty": "485044850528296345", - "expectedQtys": [ - "301150058089646212", - "187676414392309194" + "type": "redeemBassets", + "inputQtys": [ + "14117231072771745775616", + "16663588058037139537920" ], - "redemptionFee": "291026910316977", + "expectedQty": "30737287726143899963771", + "swapFee": "18453444702507844685", "reserves": [ - "2049112934441674512751814", - "1277005127146406644866016" + "5848787852139770602030062", + "2002823502287318260214783" ], - "LPTokenSupply": "3298406569196448408971668" + "LPTokenSupply": "7815569843592704226702130" }, { "type": "redeemMasset", - "inputQty": "3119412213983909773312", + "inputQty": "31322127879154309529", "expectedQtys": [ - "1936751144761614895713", - "1206981372425499385434" + "23425875120831658004", + "8021814851172037727" ], - "redemptionFee": "1871647328390345863", + "redemptionFee": "18793276727492585", "reserves": [ - "2047176183296912897856101", - "1275798145773981145480582" + "5848764426264649770372058", + "2002815480472467088177056" ], - "LPTokenSupply": "3295287344147197338232942" + "LPTokenSupply": "7815538523344152745141859" }, { "type": "redeemMasset", - "inputQty": "23561491293891697049", + "inputQty": "4774678092131063142809", "expectedQtys": [ - "14628643293016410556", - "9116555839548128976" + "3570990240574762145238", + "1222828278451783186860" ], - "redemptionFee": "14136894776335018", + "redemptionFee": "2864806855278637885", "reserves": [ - "2047161554653619881445545", - "1275789029218141597351606" + "5845193436024075008226820", + "2001592652194015304990196" ], - "LPTokenSupply": "3295263784069592924169394" + "LPTokenSupply": "7810764131732707209862838" }, { - "type": "mintMulti", - "inputQtys": [ - "4282416616987845722112", - "3421631623583614107648" + "type": "redeemMasset", + "inputQty": "14821242904773427200", + "expectedQtys": [ + "11084837598654874914", + "3795824677330689855" ], - "expectedQty": "7641435909482073766981", + "redemptionFee": "8892745742864056", "reserves": [ - "2051443971270607727167657", - "1279210660841725211459254" + "5845182351186476353351906", + "2001588856369337974300341" ], - "LPTokenSupply": "3302905219979074997936375" + "LPTokenSupply": "7810749311379077010722043" }, { - "type": "mintMulti", - "inputQtys": [ - "4234560476468277149696", - "2902127749183726682112" - ], - "expectedQty": "7077776350335780018236", + "type": "redeem", + "inputIndex": 0, + "inputQty": "85345581888028354281472", + "expectedQty": "85929982297209417302376", + "swapFee": "51207349132817012568", "reserves": [ - "2055678531747076004317353", - "1282112788590908938141366" + "5759252368889266936049530", + "2001588856369337974300341" ], - "LPTokenSupply": "3309982996329410777954611" + "LPTokenSupply": "7725408850225961938141827" }, { "type": "swap", "inputIndex": 0, - "inputQty": "14429127496983212195840", + "inputQty": "627365883791457648640", "outputIndex": 1, - "expectedQty": "14367161852544926663104", - "swapFee": "11431933724919662258", + "expectedQty": "620078062597629001656", + "swapFee": "498195541040544445", "reserves": [ - "2070107659244059216513193", - "1267745626738364011478262" + "5759879734773058393698170", + "2000968778306740345298685" ], - "LPTokenSupply": "3309984139522783269920836", + "LPTokenSupply": "7725408900045516042196271", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "3408049970329795585638", - "expectedQtys": [ - "2130160457347311365716", - "1304522299598267742442" - ], - "redemptionFee": "2044829982197877351", - "reserves": [ - "2067977498786711905147477", - "1266441104438765743735820" - ], - "LPTokenSupply": "3306576294035451694122933" - }, { "type": "mintMulti", "inputQtys": [ - "2646767642778761953280", - "2843317375062689447936" + "3032060734055338999808", + "3824760979681239891968" ], - "expectedQty": "5446934399796337851056", + "expectedQty": "6847835381779856560548", "reserves": [ - "2070624266429490667100757", - "1269284421813828433183756" + "5762911795507113732697978", + "2004793539286421585190653" ], - "LPTokenSupply": "3312023228435248031973989" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "259553949854047724896256", - "expectedQty": "257834692071209812382251", - "reserves": [ - "2070624266429490667100757", - "1528838371667876158080012" - ] + "LPTokenSupply": "7732256735427295898756819" }, { "type": "redeemMasset", - "inputQty": "63011034564703276236", + "inputQty": "2474262406127007091916", "expectedQtys": [ - "36526353938945962995", - "26969108970830384278" + "1842980790660254022724", + "641133529932767376473" ], - "redemptionFee": "37806620738821965", + "redemptionFee": "1484557443676204255", "reserves": [ - "2070587740075551721137762", - "1528811402558905327695734" + "5761068814716453478675254", + "2004152405756488817814180" ], - "LPTokenSupply": "3569794913252555214962200" + "LPTokenSupply": "7729782621476913259285328" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2185633991104391806976", - "expectedQty": "2165732903734588710831", + "type": "mintMulti", + "inputQtys": [ + "8980911323105821982720", + "9120992223292664315904" + ], + "expectedQty": "18067395588759210585196", "reserves": [ - "2072773374066656112944738", - "1528811402558905327695734" - ] + "5770049726039559300657974", + "2013273397979781482130084" + ], + "LPTokenSupply": "7747850017065672469870524" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "1971922498291818561536", - "expectedQty": "1958054857444497625127", + "inputQty": "264876176677129280", + "outputIndex": 0, + "expectedQty": "267753810032679005", + "swapFee": "0", "reserves": [ - "2072773374066656112944738", - "1530783325057197146257270" - ] + "5770049458285749267978969", + "2013273662855958159259364" + ], + "LPTokenSupply": "7747850017065672469870524", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "41829954053014183936", - "29630127220323704832" + "243781326735329329152", + "172445670219467063296" ], - "expectedQty": "70870845879159034002", + "expectedQty": "415028664804330015046", + "swapFee": "249166698901939172", "reserves": [ - "2072815204020709127128674", - "1530812955184417469962102" + "5769805676959013938649817", + "2013101217185738692196068" ], - "LPTokenSupply": "3573989571859613460332160" + "LPTokenSupply": "7747434764150839128110222" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "517558600925109485568", - "expectedQty": "521999642496942317137", - "swapFee": "310535160555065691", + "type": "redeemMasset", + "inputQty": "1312773806547951366963", + "expectedQtys": [ + "977085360789897108663", + "340907794686285580362" + ], + "redemptionFee": "787664283928770820", "reserves": [ - "2072293204378212184811537", - "1530812955184417469962102" + "5768828591598224041541154", + "2012760309391052406615706" ], - "LPTokenSupply": "3573472044312204406353161" + "LPTokenSupply": "7746122069110719569620341" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "15922038832169442", - "expectedQty": "16058656780910164", - "swapFee": "9553223299301", + "type": "redeemBassets", + "inputQtys": [ + "34740453748999823818752", + "1509436367063876108288" + ], + "expectedQty": "36000218532964002552706", + "swapFee": "21613098979165901072", "reserves": [ - "2072293188319555403901373", - "1530812955184417469962102" + "5734088137849224217722402", + "2011250873023988530507418" ], - "LPTokenSupply": "3573472028391120896513649" + "LPTokenSupply": "7710102398788674317756669" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "750813859170741120", - "2293105973288530944" + "10903395064704278", + "17170742416516504" ], - "expectedQty": "3020950449205646897", + "expectedQty": "28051997220298158", + "swapFee": "16841303114047", "reserves": [ - "2072293939133414574642493", - "1530815248290390758493046" + "5734088126945829153018124", + "2011250855853246113990914" ], - "LPTokenSupply": "3573475049341570102160546" + "LPTokenSupply": "7710102370721519924655867" }, { "type": "redeemMasset", - "inputQty": "5375738630708708", + "inputQty": "8502162206279969996", "expectedQtys": [ - "3115574157565401", - "2301492243699291" + "6319357867024241641", + "2216536201940992856" ], - "redemptionFee": "3225443178425", + "redemptionFee": "5101297323767981", "reserves": [ - "2072293936017840417077092", - "1530815245988898514793755" + "5734081807587962128776483", + "2011248639317044172998058" ], - "LPTokenSupply": "3573475043966154015769680" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "16262366931296325632", - "expectedQty": "16147937873068423441", - "reserves": [ - "2072293936017840417077092", - "1530831508355829811119387" - ] + "LPTokenSupply": "7710093869069443377062669" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "172780661213350173081600", - "expectedQty": "174239538912526533615824", - "swapFee": "103668396728010103848", - "reserves": [ - "1898054397105313883461268", - "1530831508355829811119387" - ], - "LPTokenSupply": "3400720897530349712121905" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "44437771956489862250496", - "28068610797159510441984" - ], - "expectedQty": "71904697047965545001281", - "swapFee": "43168719460455600360", + "inputQty": "427380718863763111936", + "expectedQty": "430275607694439470191", + "swapFee": "256428431318257867", "reserves": [ - "1853616625148824021210772", - "1502762897558670300677403" + "5733651531980267689306292", + "2011248639317044172998058" ], - "LPTokenSupply": "3328777348634869757080299" + "LPTokenSupply": "7709666513993422745776519" }, { - "type": "redeemBassets", - "inputQtys": [ - "2525517250061914112", - "2547843650069537792" - ], - "expectedQty": "5032026460379458641", - "swapFee": "3021028493323669", + "type": "redeem", + "inputIndex": 1, + "inputQty": "142258513236465", + "expectedQty": "141697010281138", + "swapFee": "85355107941", "reserves": [ - "1853614099631573959296660", - "1502760349715020231139611" + "5733651531980267689306292", + "2011248639175347162716920" ], - "LPTokenSupply": "3328772313889483733630354" + "LPTokenSupply": "7709666513851172768050848" }, { "type": "mint", "inputIndex": 0, - "inputQty": "159959518670758587924480", - "expectedQty": "158522700033037555485179", + "inputQty": "34249816180972081152", + "expectedQty": "33998976957062151889", "reserves": [ - "2013573618302332547221140", - "1502760349715020231139611" + "5733685781796448661387444", + "2011248639175347162716920" ] }, { "type": "redeemMasset", - "inputQty": "9567910386031517696", + "inputQty": "7330622514688001638", "expectedQtys": [ - "5521222736695132760", - "4120571771120968178" + "5448495323863619296", + "1911210209751074936" ], - "redemptionFee": "5740746231618910", + "redemptionFee": "4398373508812800", "reserves": [ - "2013568097079595852088380", - "1502756229143249110171433" + "5733680333301124797768148", + "2011246727965137411641984" ], - "LPTokenSupply": "3487285446586209880759728" + "LPTokenSupply": "7709693182645452493082379" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "17426001261812162560", - "expectedQty": "17301958590617852544", + "type": "redeemBassets", + "inputQtys": [ + "19338264692362991108096", + "17750953738147175858176" + ], + "expectedQty": "37007656955387915628131", + "swapFee": "22217924928189663174", "reserves": [ - "2013568097079595852088380", - "1502773655144510922333993" - ] + "5714342068608761806660052", + "1993495774226990235783808" + ], + "LPTokenSupply": "7672665529557629206757390" }, { "type": "mintMulti", "inputQtys": [ - "18551804658279029669888", - "10186163607741900259328" + "65709914168928650657792", + "12965219160039039696896" ], - "expectedQty": "28496451169484202349585", + "expectedQty": "78236137415176794328439", "reserves": [ - "2032119901737874881758268", - "1512959818752252822593321" + "5780051982777690457317844", + "2006460993387029275480704" ], - "LPTokenSupply": "3515799199714284700961857" + "LPTokenSupply": "7750901666972806001085829" }, { "type": "redeemMasset", - "inputQty": "377510113959973632", + "inputQty": "45251836037767168000", "expectedQtys": [ - "218068633799760199", - "162357093391526883" + "33725241406365468634", + "11707227128070633265" ], - "redemptionFee": "226506068375984", + "redemptionFee": "27151101622660300", "reserves": [ - "2032119683669241081998069", - "1512959656395159431066438" + "5780018257536284091849210", + "2006449286159901204847439" ], - "LPTokenSupply": "3515798822226821347825823" + "LPTokenSupply": "7750856417851878396183859" }, { "type": "redeemMasset", - "inputQty": "854238346137253917491", + "inputQty": "3442727197095140966", "expectedQtys": [ - "493450591663008592021", - "367385269484929390898" + "2565792161171953378", + "890677437481402040" ], - "redemptionFee": "512543007682352350", + "redemptionFee": "2065636318257084", "reserves": [ - "2031626233077578073406048", - "1512592271125674501675540" + "5780015691744122919895832", + "2006448395482463723445399" ], - "LPTokenSupply": "3514944635134984862143567" + "LPTokenSupply": "7750852975331244932868601" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "21967991308407340531712", - "27688828379535390015488" + "6530924511979328", + "14893382220731294" ], - "expectedQty": "49259901855910815130846", - "swapFee": "29573685324741333878", + "expectedQty": "21428310712319251", "reserves": [ - "2009658241769170732874336", - "1484903442746139111660052" + "5780015698275047431875160", + "2006448410375845944176693" ], - "LPTokenSupply": "3465658116962281779812229" + "LPTokenSupply": "7750852996759555645187852" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3108444367326256562176", - "10133831137644320391168" + "268450970021935136", + "3439103225108184432640" ], - "expectedQty": "13142138713161024644667", - "swapFee": "7890017238239558521", + "expectedQty": "3451378457490055840178", "reserves": [ - "2006549797401844476312160", - "1474769611608494791268884" + "5780015966726017453810296", + "2009887513600954128609333" ], - "LPTokenSupply": "3452508877233606339564892" + "LPTokenSupply": "7754304375217045701028030" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "256632138861554335744", - "expectedQty": "254279636789307215425", + "inputIndex": 1, + "inputQty": "80359897759295293358080", + "expectedQty": "80617721353731583157413", "reserves": [ - "2006806429540706030647904", - "1474769611608494791268884" + "5780015966726017453810296", + "2090247411360249421967413" ] }, { "type": "redeemBassets", "inputQtys": [ - "11353733230350890434560", - "8819988418836702429184" + "136993308463876063232", + "95711724513996587008" ], - "expectedQty": "20007345594919473627023", - "swapFee": "12011614325547012383", + "expectedQty": "232003469088302520158", + "swapFee": "139285652844688325", "reserves": [ - "1995452696310355140213344", - "1465949623189658088839700" + "5779878973417553577747064", + "2090151699635735425380405" ], - "LPTokenSupply": "3432745000822583180842148" + "LPTokenSupply": "7834689967744601421445791" }, { - "type": "redeemMasset", - "inputQty": "157406426323555424665", - "expectedQtys": [ - "91445365007304697896", - "67179892874819339849" + "type": "swap", + "inputIndex": 0, + "inputQty": "23581346404958", + "outputIndex": 1, + "expectedQty": "23324555732680", + "swapFee": "18729621796", + "reserves": [ + "5779878973441134924152022", + "2090151699612410869647725" ], - "redemptionFee": "94443855794133254", + "LPTokenSupply": "7834689967744603294407970", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "8666698720845703", + "expectedQty": "8636046633200578", + "swapFee": "5200019232507", "reserves": [ - "1995361250945347835515448", - "1465882443296783269499851" + "5779878973441134924152022", + "2090151690976364236447147" ], - "LPTokenSupply": "3432587603840645204830808" + "LPTokenSupply": "7834689959078424575485517" }, { - "type": "redeemMasset", - "inputQty": "9039721948005520323379", - "expectedQtys": [ - "5251632432531112228587", - "3858086237691597266737" + "type": "redeemBassets", + "inputQtys": [ + "1101889413723088128", + "330207522098638720" ], - "redemptionFee": "5423833168803312194", + "expectedQty": "1425158316154233429", + "swapFee": "855608354705363", "reserves": [ - "1990109618512816723286861", - "1462024357059091672233114" + "5779877871551721201063894", + "2090151360768842137808427" ], - "LPTokenSupply": "3423548424275956564838648" + "LPTokenSupply": "7834688533150060902017260" }, { "type": "mint", "inputIndex": 0, - "inputQty": "368397216302594785280", - "expectedQty": "365017951225054329834", + "inputQty": "1697988034894021888", + "expectedQty": "1685796113064268837", "reserves": [ - "1990478015729119318072141", - "1462024357059091672233114" + "5779879569539756095085782", + "2090151360768842137808427" ] }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "35711113153123058712576", + "outputIndex": 0, + "expectedQty": "36068002358331512541488", + "swapFee": "0", + "reserves": [ + "5743811567181424582544294", + "2125862473921965196521003" + ], + "LPTokenSupply": "7834690218946173966286097", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "mint", - "inputIndex": 0, - "inputQty": "9999524340825063424000", - "expectedQty": "9907718754699060261988", + "inputIndex": 1, + "inputQty": "17123664179617593344", + "expectedQty": "17169034067062678971", "reserves": [ - "2000477540069944381496141", - "1462024357059091672233114" + "5743811567181424582544294", + "2125879597586144814114347" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "35664206205903368192", - "expectedQty": "35973358906440079549", - "swapFee": "21398523723542020", + "inputQty": "34081538140483706945536", + "expectedQty": "33840067292310157202837", "reserves": [ - "2000441566711037941416592", - "1462024357059091672233114" - ], - "LPTokenSupply": "3433785498915527148416480" + "5777893105321908289489830", + "2125879597586144814114347" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "805198713345338507264", - "2512048012384799817728" - ], - "expectedQty": "3292147077067529093147", + "type": "swap", + "inputIndex": 1, + "inputQty": "15234428563581898326016", + "outputIndex": 0, + "expectedQty": "15383842999568891019434", + "swapFee": "0", "reserves": [ - "2001246765424383279923856", - "1464536405071476472050842" + "5762509262322339398470396", + "2141114026149726712440363" ], - "LPTokenSupply": "3437077645992594677509627" + "LPTokenSupply": "7868547455272551186167905", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "15812808143693271040", - "expectedQty": "15949813789759022310", - "swapFee": "9487684886215962", + "inputQty": "1496318666165990912", + "expectedQty": "1485764736894837460", "reserves": [ - "2001230815610593520901546", - "1464536405071476472050842" - ], - "LPTokenSupply": "3437061834133219472860183" + "5762510758641005564461308", + "2141114026149726712440363" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "1206966066946693136384", - "expectedQty": "1195879392157013059356", + "inputQty": "28084175903125514747904", + "expectedQty": "27885773931631781022709", "reserves": [ - "2002437781677540214037930", - "1464536405071476472050842" + "5790594934544131079209212", + "2141114026149726712440363" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2583333095442681344", - "expectedQty": "2600106861545592218", - "swapFee": "1549999857265608", + "inputQty": "79407517348737348272128", + "expectedQty": "79130193513987345682508", + "swapFee": "47644510409242408963", "reserves": [ - "2002437781677540214037930", - "1464533804964614926458624" + "5790594934544131079209212", + "2061983832635739366757855" ], - "LPTokenSupply": "3438255130347281028964755" + "LPTokenSupply": "7817031962071223437996842" }, { - "type": "redeem", + "type": "redeemMasset", + "inputQty": "11643684907735279520972", + "expectedQtys": [ + "8620075861964117998145", + "3069539013587194401752" + ], + "redemptionFee": "6986210944641167712", + "reserves": [ + "5781974858682166961211067", + "2058914293622152172356103" + ], + "LPTokenSupply": "7805388975784582622592641" + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "5614525965802550591488", - "expectedQty": "5650934487525695206284", - "swapFee": "3368715579481530354", + "inputQty": "92450203738302103552", + "outputIndex": 0, + "expectedQty": "93419212201488818489", + "swapFee": "0", "reserves": [ - "2002437781677540214037930", - "1458882870477089231252340" + "5781881439469965472392578", + "2059006743825890474459655" ], - "LPTokenSupply": "3432640941253036426526302" + "LPTokenSupply": "7805388975784582622592641", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "247209213544310177792", - "expectedQty": "249354769330113795110", - "swapFee": "148325528126586106", + "inputQty": "8603946006647956480", + "outputIndex": 1, + "expectedQty": "8507892498103252812", + "swapFee": "6833186970867081", "reserves": [ - "2002188426908210100242820", - "1458882870477089231252340" + "5781890043415972120349058", + "2058998235933392371206843" ], - "LPTokenSupply": "3432393746872044929007120" + "LPTokenSupply": "7805388976467901319679349", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2448726421752165376", - "expectedQty": "2426200308554862763", + "type": "redeem", + "inputIndex": 1, + "inputQty": "93641280447559974912", + "expectedQty": "93291654656769187027", + "swapFee": "56184768268535984", "reserves": [ - "2002190875634631852408196", - "1458882870477089231252340" - ] + "5781890043415972120349058", + "2058904944278735602019816" + ], + "LPTokenSupply": "7805295340805930586558035" }, { "type": "mintMulti", "inputQtys": [ - "57458448154917208", - "4353196943861743" + "11513952254481286", + "686396011555753" + ], + "expectedQty": "12118916472537608", + "reserves": [ + "5781890054929924374830344", + "2058904944965131613575569" ], - "expectedQty": "61252465534715007", + "LPTokenSupply": "7805295352924847059095643" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "20376877616199534379008", + "expectedQty": "20513403527193638714333", + "swapFee": "12226126569719720627", "reserves": [ - "2002190933093080007325404", - "1458882874830286175114083" + "5761376651402730736116011", + "2058904944965131613575569" ], - "LPTokenSupply": "3432396234324819018584890" + "LPTokenSupply": "7784919697921304496688697" }, { "type": "swap", "inputIndex": 1, - "inputQty": "12844472299218528108544", + "inputQty": "32160447865901891452928", "outputIndex": 0, - "expectedQty": "12871834516089066124960", + "expectedQty": "32489254238676956786473", "swapFee": "0", "reserves": [ - "1989319098576990941200444", - "1471727347129504703222627" + "5728887397164053779329538", + "2091065392831033505028497" ], - "LPTokenSupply": "3432396234324819018584890", + "LPTokenSupply": "7784919697921304496688697", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 1, + "inputQty": "68009818737524774797312", + "expectedQty": "67763419540597273691656", + "swapFee": "40805891242514864878", + "reserves": [ + "5728887397164053779329538", + "2023301973290436231336841" + ], + "LPTokenSupply": "7716913959772903973377872" + }, + { + "type": "redeemBassets", "inputQtys": [ - "25600791480988109635584", - "79660043223275996708864" + "587711023909952768", + "505170098487890560" ], - "expectedQty": "104456145810689877492306", + "expectedQty": "1090229946599585325", + "swapFee": "654530686371574", "reserves": [ - "2014919890057979050836028", - "1551387390352780699931491" + "5728886809453029869376770", + "2023301468120337743446281" ], - "LPTokenSupply": "3536852380135508896077196" + "LPTokenSupply": "7716912868953879756058129" }, { - "type": "redeemMasset", - "inputQty": "1503975302592194622259", - "expectedQtys": [ - "856290054543394953710", - "659300451426330467844" + "type": "mintMulti", + "inputQtys": [ + "1532439889989031168", + "1014945163296324480" ], - "redemptionFee": "902385181555316773", + "expectedQty": "2539489381034370681", "reserves": [ - "2014063600003435655882318", - "1550728089901354369463647" + "5728888341892919858407938", + "2023302483065501039770761" ], - "LPTokenSupply": "3535348495071434856986614" + "LPTokenSupply": "7716915408443260790428810" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3148488344331379802112", - "2625136473113348800512" + "2256194175407167897600", + "3507242622494000021504" ], - "expectedQty": "5726138474541824321100", - "swapFee": "3437745732164393228", + "expectedQty": "5758332173957489978809", "reserves": [ - "2010915111659104276080206", - "1548102953428241020663135" + "5731144536068327026305538", + "2026809725687995039792265" ], - "LPTokenSupply": "3529619262625734084711607" + "LPTokenSupply": "7722673740617218280407619" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "480980832069316247552", - "expectedQty": "485071789413388271497", - "swapFee": "288588499241589748", + "inputIndex": 1, + "inputQty": "18533501074955170742272", + "expectedQty": "18461534663825660314220", + "swapFee": "11120100644973102445", "reserves": [ - "2010430039869690887808709", - "1548102953428241020663135" + "5731144536068327026305538", + "2008348191024169379478045" ], - "LPTokenSupply": "3529138310652514692623029" + "LPTokenSupply": "7704141351552327606975591" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "448921723098597359616", - "3564929010464284672" + "37571752706984596471808", + "33047400461673863053312" ], - "expectedQty": "448407583785281741336", + "expectedQty": "70455546690454535683201", + "swapFee": "42298707238615890944", "reserves": [ - "2010878961592789485168325", - "1548106518357251484947807" + "5693572783361342429833730", + "1975300790562495516424733" ], - "LPTokenSupply": "3529586718236299974364365" + "LPTokenSupply": "7633647736025358316990539" }, { "type": "mintMulti", "inputQtys": [ - "9850717181414284984320", - "3261191359414107897856" + "4817174497175303880704", + "5868346117287650000896" ], - "expectedQty": "12999258771749438297447", + "expectedQty": "10670315594353344392439", "reserves": [ - "2020729678774203770152645", - "1551367709716665592845663" + "5698389957858517733714434", + "1981169136679783166425629" ], - "LPTokenSupply": "3542585977008049412661812" + "LPTokenSupply": "7644318051619711661382978" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3735470673545807790080", - "14139042405388644253696" + "2240284951474374912", + "6332406533460897792" ], - "expectedQty": "17738399970442459099384", - "swapFee": "10649429640049505162", + "expectedQty": "8578070071939951619", "reserves": [ - "2016994208100657962362565", - "1537228667311276948591967" + "5698392198143469208089346", + "1981175469086316627323421" ], - "LPTokenSupply": "3524837992550930909007781" + "LPTokenSupply": "7644326629689783601334597" }, { - "type": "mintMulti", - "inputQtys": [ - "143911611084370572476416", - "325483970062384485105664" + "type": "redeemMasset", + "inputQty": "51088519786749507508633", + "expectedQtys": [ + "38060611903206727027479", + "13232636157548901277909" ], - "expectedQty": "465687040387671601677344", + "redemptionFee": "30653111872049704505", "reserves": [ - "2160905819185028534838981", - "1862712637373661433697631" + "5660331586240262481061867", + "1967942832928767726045512" ], - "LPTokenSupply": "3990525032938602510685125" + "LPTokenSupply": "7593241175214221298796414" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "16135022298585462996992", - "expectedQty": "16010592093010874855181", + "type": "mintMulti", + "inputQtys": [ + "2282277982249484812288", + "2191500251009798635520" + ], + "expectedQty": "4464482220327111691664", "reserves": [ - "2160905819185028534838981", - "1878847659672246896694623" - ] + "5662613864222511965874155", + "1970134333179777524681032" + ], + "LPTokenSupply": "7597705657434548410488078" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "29773775447005746692096", - "expectedQty": "29986759502042825403371", - "swapFee": "17864265268203448015", + "inputIndex": 0, + "inputQty": "15933374162343229915136", + "expectedQty": "16042232297832329569056", + "swapFee": "9560024497405937949", "reserves": [ - "2160905819185028534838981", - "1848860900170204071291252" + "5646571631924679636305099", + "1970134333179777524681032" ], - "LPTokenSupply": "3976763636011134459193011" + "LPTokenSupply": "7581773239274654921166736" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "170271066618616381440", - "expectedQty": "171484688436807136154", - "swapFee": "102162639971169828", + "inputIndex": 0, + "inputQty": "301073971640261570199552", + "expectedQty": "303089014261048429967858", + "swapFee": "180644382984156942119", "reserves": [ - "2160905819185028534838981", - "1848689415481767264155098" + "5343482617663631206337241", + "1970134333179777524681032" ], - "LPTokenSupply": "3976593375160779839928553" + "LPTokenSupply": "7280717332072691766661395" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "14222914472070503989248", - "expectedQty": "14324082470268992950825", - "swapFee": "8533748683242302393", + "inputQty": "5141868737573924372480", + "expectedQty": "5125107976482935236165", + "swapFee": "3085121242544354623", "reserves": [ - "2160905819185028534838981", - "1834365333011498271204273" + "5343482617663631206337241", + "1965009225203294589444867" ], - "LPTokenSupply": "3962371314063577660169544" + "LPTokenSupply": "7275575771847242096724377" }, { - "type": "redeemMasset", - "inputQty": "1036148463767178654515", - "expectedQtys": [ - "564731484251625406113", - "479393339577382609846" + "type": "mintMulti", + "inputQtys": [ + "81066296692547469312", + "109526519248734011392" ], - "redemptionFee": "621689078260307192", + "expectedQty": "190307419655255519304", "reserves": [ - "2160341087700776909432868", - "1833885939671920888594427" + "5343563683960323753806553", + "1965118751722543323456259" ], - "LPTokenSupply": "3961335227768718307545748" + "LPTokenSupply": "7275766079266897352243681" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "93250956054604787220480", + "expectedQty": "92580689215950001202113", + "reserves": [ + "5436814640014928541027033", + "1965118751722543323456259" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "74036670955666767872", + "expectedQty": "73501497196834823487", + "reserves": [ + "5436888676685884207794905", + "1965118751722543323456259" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "536396473904179183616", - "expectedQty": "540797966310147118272", - "swapFee": "321837884342507510", + "inputQty": "18778101434182646366208", + "expectedQty": "18903321954626603246686", + "swapFee": "11266860860509587819", + "reserves": [ + "5417985354731257604548219", + "1965118751722543323456259" + ], + "LPTokenSupply": "7349643295231947592861854" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "52420029403219783319552", + "expectedQty": "52561094042614950127683", + "reserves": [ + "5417985354731257604548219", + "2017538781125763106775811" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "5643203040770006188032", + "outputIndex": 1, + "expectedQty": "5584421371349982002460", + "swapFee": "4482541702884325185", + "reserves": [ + "5423628557772027610736251", + "2011954359754413124773351" + ], + "LPTokenSupply": "7402204837528732831422055", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "4258818356827581841408", + "3154015713824174243840" + ], + "expectedQty": "7390681946346603364691", + "swapFee": "4437071410654354631", "reserves": [ - "2159800289734466762314596", - "1833885939671920888594427" + "5419369739415200028894843", + "2008800344040588950529511" ], - "LPTokenSupply": "3960798863478602562612883" + "LPTokenSupply": "7394810162218116639138195" }, { "type": "redeemMasset", - "inputQty": "417321632252843", + "inputQty": "5346925816338096062464", "expectedQtys": [ - "227426490077224", - "193107781512907" + "3916203547068910926743", + "1451621020700815107023" ], - "redemptionFee": "250392979351", + "redemptionFee": "3208155489802857637", "reserves": [ - "2159800289507040272237372", - "1833885939478813107081520" + "5415453535868131117968100", + "2007348723019888135422488" ], - "LPTokenSupply": "3960798863061305969657975" + "LPTokenSupply": "7389463557217327523361494" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 1, + "inputQty": "52327885992080403595264", + "expectedQty": "52454638306761896740776", + "reserves": [ + "5415453535868131117968100", + "2059676609011968539017752" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "20853184442313584640", - "8759332554459968512" + "4019232823299514826752", + "6918293737699019849728" ], - "expectedQty": "29363406344396857789", - "swapFee": "17628620979225650", + "expectedQty": "10925010922685455217214", "reserves": [ - "2159779436322597958652732", - "1833877180146258647113008" + "5419472768691430632794852", + "2066594902749667558867480" ], - "LPTokenSupply": "3960769483789202691497100" + "LPTokenSupply": "7452843206446774875319484" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "13513514032926861312", - "outputIndex": 0, - "expectedQty": "13528322589328823745", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "29483717256313004032", + "outputIndex": 1, + "expectedQty": "29189142796989014016", + "swapFee": "23422262868134732", "reserves": [ - "2159765908000008629828987", - "1833890693660291573974320" + "5419502252408686945798884", + "2066565713606870569853464" ], - "LPTokenSupply": "3960769483789202691497100", + "LPTokenSupply": "7452843208789001162132957", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "19945326660603957248", - "expectedQty": "20086972453436963395", - "swapFee": "11967195996362374", + "inputQty": "14173614053468753887232", + "expectedQty": "14132931045121614475599", + "swapFee": "8504168432081252332", "reserves": [ - "2159765908000008629828987", - "1833870606687838137010925" + "5419502252408686945798884", + "2052432782561748955377865" ], - "LPTokenSupply": "3960749539659261687176089" + "LPTokenSupply": "7438670445152375616370958" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "185820303011983616", - "expectedQty": "187345019820362611", - "swapFee": "111492181807190", + "type": "redeemMasset", + "inputQty": "1127757846707691724", + "expectedQtys": [ + "821143926690590381", + "310977399002316496" + ], + "redemptionFee": "676654708024615", "reserves": [ - "2159765720654988809466376", - "1833870606687838137010925" + "5419501431264760255208503", + "2052432471584349953061369" ], - "LPTokenSupply": "3960749353850107893373192" + "LPTokenSupply": "7438669317462194379481695" }, { - "type": "redeemMasset", - "inputQty": "38924475483080261789286", - "expectedQtys": [ - "21212477662202042202058", - "18011647702204128815919" + "type": "redeemBassets", + "inputQtys": [ + "33248980947048046002176", + "14210570848542012735488" ], - "redemptionFee": "23354685289848157073", + "expectedQty": "47259229917438209238468", + "swapFee": "28372561487355338746", "reserves": [ - "2138553242992786767264318", - "1815858958985634008195006" + "5386252450317712209206327", + "2038221900735807940325881" ], - "LPTokenSupply": "3921827213835556616399613" + "LPTokenSupply": "7391384552239417550438354" }, { "type": "redeemMasset", - "inputQty": "64561833817421185024", + "inputQty": "1130297152392471039180", "expectedQtys": [ - "35184129796836826804", - "29875065077308922857" + "823176351355396261384", + "311499708373564216848" + ], + "redemptionFee": "678178291435482623", + "reserves": [ + "5385429273966356812944943", + "2037910401027434376109033" + ], + "LPTokenSupply": "7390254322904854222947436" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "14220097078401592983552", + "12191246944201070346240" ], - "redemptionFee": "38737100290452711", + "expectedQty": "26339941141592295431321", + "swapFee": "15813452756609342864", "reserves": [ - "2138518058862989930437514", - "1815829083920556699272149" + "5371209176887955219961391", + "2025719154083233305762793" ], - "LPTokenSupply": "3921762655875449224259860" + "LPTokenSupply": "7363900149655780979107536" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1482615234126468096", - "expectedQty": "1469658675388228182", + "inputQty": "371255197952258888171520", + "expectedQty": "368583163258373483348915", "reserves": [ - "2138519541478224056905610", - "1815829083920556699272149" + "5742464374840214108132911", + "2025719154083233305762793" ] }, { "type": "redeemBassets", "inputQtys": [ - "240137200892278571008", - "144269697164593446912" + "2681242433563102720", + "1448815541043578112" ], - "expectedQty": "381204292015037584440", - "swapFee": "228859891143708775", + "expectedQty": "4115010717030851043", + "swapFee": "2470488723452582", "reserves": [ - "2138279404277331778334602", - "1815684814223392105825237" + "5742461693597780545030191", + "2025717705267692262184681" ], - "LPTokenSupply": "3921382715268207545565703" + "LPTokenSupply": "7732479195679997580498083" }, { "type": "mintMulti", "inputQtys": [ - "50629534050490670645248", - "59387101291788873236480" + "71442041095537952", + "36922756901575824" ], - "expectedQty": "109119440846603591444747", + "expectedQty": "107958441640352245", "reserves": [ - "2188908938327822448979850", - "1875071915515180979061717" + "5742461765039821640568143", + "2025717742190449163760505" ], - "LPTokenSupply": "4030502156114811137010450" + "LPTokenSupply": "7732479303638439220850328" }, { - "type": "mintMulti", - "inputQtys": [ - "659718722680009785344", - "386865639467472715776" + "type": "redeemMasset", + "inputQty": "1093607823675793971609", + "expectedQtys": [ + "811671504867190069705", + "286326219575357757290" ], - "expectedQty": "1037864100678236584607", + "redemptionFee": "656164694205476382", "reserves": [ - "2189568657050502458765194", - "1875458781154648451777493" + "5741650093534954450498438", + "2025431415970873806003215" ], - "LPTokenSupply": "4031540020215489373595057" + "LPTokenSupply": "7731385761431232847426357" }, { "type": "mintMulti", "inputQtys": [ - "1175691755697855004672", - "736405176203352866816" + "2138791706202577920", + "5817520173434193920" ], - "expectedQty": "1896195404111297829425", + "expectedQty": "7959338906777966002", "reserves": [ - "2190744348806200313769866", - "1876195186330851804644309" + "5741652232326660653076358", + "2025437233491047240197135" ], - "LPTokenSupply": "4033436215619600671424482" + "LPTokenSupply": "7731393720770139625392359" }, { "type": "redeemBassets", "inputQtys": [ - "955370499789383", - "5132605714779523" + "67406423426020712448", + "3217274631731329536" ], - "expectedQty": "6040213186588295", - "swapFee": "3626303694169", + "expectedQty": "70138343641897257303", + "swapFee": "42108271147827050", "reserves": [ - "2190744347850829813980483", - "1876195181198246089864786" + "5741584825903234632363910", + "2025434016216415508867599" ], - "LPTokenSupply": "4033436209576123811511433" + "LPTokenSupply": "7731323544529053695090710" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1491436704471680768", - "expectedQty": "1478442866759140375", + "inputQty": "9706083436047439495168", + "expectedQty": "9772086190552566389741", + "swapFee": "5823650061628463697", "reserves": [ - "2190745839287534285661251", - "1876195181198246089864786" - ] + "5731812739712682065974169", + "2025434016216415508867599" + ], + "LPTokenSupply": "7721618043458012418441911" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "12529171729021986144256", - "10972955864458191699968" + "121014101078465740800", + "376848879664381100032" ], - "expectedQty": "23308652304489003377935", - "swapFee": "13993587535214530745", + "expectedQty": "498179444575964248358", "reserves": [ - "2178216667558512299516995", - "1865222225333787898164818" + "5731933753813760531714969", + "2025810865096079889967631" ], - "LPTokenSupply": "4010116441485719874196201" + "LPTokenSupply": "7722116222902588382690269" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "8577006784929779712", - "expectedQty": "8647228178885760004", - "swapFee": "5146204070957867", - "reserves": [ - "2178208020330333413756991", - "1865222225333787898164818" - ], - "LPTokenSupply": "4010107864993555351512275" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "86893603563042158673920", - "141150106001924734058496" + "type": "redeemMasset", + "inputQty": "1219170752228954524876", + "expectedQtys": [ + "904416983787209698314", + "319643916176544990151" ], - "expectedQty": "226206013053328851964585", - "swapFee": "135805090886529228715", + "redemptionFee": "731502451337372714", "reserves": [ - "2091314416767291255083071", - "1724072119331863164106322" + "5731029336829973322016655", + "2025491221179903344977480" ], - "LPTokenSupply": "3783779627358428623241845" + "LPTokenSupply": "7720897125300604561902664" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "34403369213835268096", - "expectedQty": "34645271395255838105", - "swapFee": "20642021528301160", + "inputQty": "48897898692271105114112", + "expectedQty": "48704627598387140982992", + "swapFee": "29338739215362663068", "reserves": [ - "2091314416767291255083071", - "1724037474060467908268217" + "5731029336829973322016655", + "1976786593581516203994488" ], - "LPTokenSupply": "3783745226053416940803865" + "LPTokenSupply": "7672002160482254993054858" }, { "type": "redeemBassets", "inputQtys": [ - "3836017918298067304448", - "2334713781377632567296" + "1724419530594189312", + "221908016108520064" ], - "expectedQty": "6119029303883294085532", - "swapFee": "3673621755383206375", + "expectedQty": "1934233463649382660", + "swapFee": "1161236820281798", "reserves": [ - "2087478398848993187778623", - "1721702760279090275700921" + "5731027612410442727827343", + "1976786371673500095474424" ], - "LPTokenSupply": "3777622890489953801832594" + "LPTokenSupply": "7672000225203678205418578" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "332926290715896488919040", - "outputIndex": 1, - "expectedQty": "331782439689162398487150", - "swapFee": "263917081125757564930", + "inputIndex": 1, + "inputQty": "10642346917201340006400", + "outputIndex": 0, + "expectedQty": "10759576872237453138294", + "swapFee": "0", "reserves": [ - "2420404689564889676697663", - "1389920320589927877213771" + "5720268035538205274689049", + "1987428718590701435480824" ], - "LPTokenSupply": "3777649282198066377589087", + "LPTokenSupply": "7672000225203678205418578", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "193778066928754873073664", - "expectedQty": "191798337087055088067927", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1266056211276225839104", + "expectedQty": "1260963825092018328612", + "swapFee": "759633726765735503", "reserves": [ - "2614182756493644549771327", - "1389920320589927877213771" - ] + "5720268035538205274689049", + "1986167754765609417152212" + ], + "LPTokenSupply": "7670734244955774656153024" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "823277058485522048", - "expectedQty": "814756897616069831", + "type": "redeemBassets", + "inputQtys": [ + "365237620175613248", + "301219729820670400" + ], + "expectedQty": "664777843387166000", + "swapFee": "399106169734140", "reserves": [ - "2614183579770703035293375", - "1389920320589927877213771" - ] + "5720267670300585099075801", + "1986167453545879596481812" + ], + "LPTokenSupply": "7670733579818735716226297" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "49749301231396618240", - "outputIndex": 1, - "expectedQty": "49465552941284341454", - "swapFee": "39387551988459119", + "type": "redeem", + "inputIndex": 1, + "inputQty": "90993360254424429101056", + "expectedQty": "90596540630955341902139", + "swapFee": "54596016152654657460", "reserves": [ - "2614233329071934431911615", - "1389870855036986592872317" + "5720267670300585099075801", + "1895570912914924254579673" ], - "LPTokenSupply": "3969448437980774280572756", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7579745679165926552590987" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "7109678137335085006848", - "outputIndex": 0, - "expectedQty": "7144456059114837675379", - "swapFee": "0", + "inputQty": "13792968312873348497408", + "expectedQty": "13727318400316461997896", + "swapFee": "8275780987724009098", "reserves": [ - "2607088873012819594236236", - "1396980533174321677879165" + "5720267670300585099075801", + "1881843594514607792581777" ], - "LPTokenSupply": "3969448437980774280572756", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7565953538431151976494488" }, { - "type": "redeemBassets", + "type": "redeemMasset", + "inputQty": "11561893754129156040294", + "expectedQtys": [ + "8736168473309377043789", + "2874009334817338567480" + ], + "redemptionFee": "6937136252477493624", + "reserves": [ + "5711531501827275722032012", + "1878969585179790454014297" + ], + "LPTokenSupply": "7554392338390648068203556" + }, + { + "type": "mintMulti", "inputQtys": [ - "21853386066860198330368", - "26765560110248278097920" + "16105678477840971988992", + "129145460287745311113216" ], - "expectedQty": "48246175553422496497255", - "swapFee": "28965084382683107763", + "expectedQty": "145613871489331744833568", "reserves": [ - "2585235486945959395905868", - "1370214973064073399781245" + "5727637180305116694021004", + "2008115045467535765127513" ], - "LPTokenSupply": "3921176193851407369278513" + "LPTokenSupply": "7700006209879979813037124" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "72928122546081408", - "65513746982508112" + "2519858399588246880256", + "3542783513075264258048" ], - "expectedQty": "137328503030131614", - "swapFee": "82446569759934", + "expectedQty": "6055656984756872706079", "reserves": [ - "2585235414017836849824460", - "1370214907550326417273133" + "5730157038704704940901260", + "2011657828980611029385561" ], - "LPTokenSupply": "3921176056448702426362957" + "LPTokenSupply": "7706061866864736685743203" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "39307169202024152", - "expectedQty": "39499026279722986", - "swapFee": "23584301521214", + "type": "swap", + "inputIndex": 0, + "inputQty": "301936339997609995272192", + "outputIndex": 1, + "expectedQty": "297836245309505750474845", + "swapFee": "239733116325136491432", "reserves": [ - "2585235414017836849824460", - "1370214868051300137550147" + "6032093378702314936173452", + "1713821583671105278910716" ], - "LPTokenSupply": "3921176017143891654490926" + "LPTokenSupply": "7706085840176369199392346", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "27779457073896304410624", - "expectedQty": "27626086529503531361971", + "inputQty": "9501886600716482560", + "expectedQty": "9566954187531215078", "reserves": [ - "2585235414017836849824460", - "1397994325125196441960771" + "6032093378702314936173452", + "1713831085557705995393276" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "10423299454008568", - "expectedQty": "10475567437083777", - "swapFee": "6253979672405", + "inputIndex": 0, + "inputQty": "459065416238302887936", + "expectedQty": "462745629589022740205", + "swapFee": "275439249742981732", "reserves": [ - "2585235414017836849824460", - "1397994314649629004876994" + "6031630633072725913433247", + "1713831085557705995393276" ], - "LPTokenSupply": "3948802093250721129811569" + "LPTokenSupply": "7705636369258243402017661" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "12913069501965985792", - "expectedQty": "12780115781030792960", + "type": "redeemMasset", + "inputQty": "498516710946424832", + "expectedQtys": [ + "389982656803396999", + "110809902117224926" + ], + "redemptionFee": "299110026567854", "reserves": [ - "2585248327087338815810252", - "1397994314649629004876994" - ] + "6031630243090069110036248", + "1713830974747803878168350" + ], + "LPTokenSupply": "7705635870771443458249614" }, { "type": "mintMulti", "inputQtys": [ - "281484192811863113728", - "450503020309795897344" + "1992082308482709061632", + "2721961867856037019648" ], - "expectedQty": "726572097362176292343", + "expectedQty": "4715622897721548807431", "reserves": [ - "2585529811280150678923980", - "1398444817669938800774338" + "6033622325398551819097880", + "1716552936615659915187998" ], - "LPTokenSupply": "3949541445463864336896872" + "LPTokenSupply": "7710351493669165007057045" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1932198404613354815488", - "6918287113283606413312" + "6497052236560944128", + "43672339814868811776" ], - "expectedQty": "8791854874269233884289", + "expectedQty": "50411770424116692202", + "swapFee": "30265221387302396", "reserves": [ - "2587462009684764033739468", - "1405363104783222407187650" + "6033615828346315258153752", + "1716509264275845046376222" ], - "LPTokenSupply": "3958333300338133570781161" + "LPTokenSupply": "7710301054660041641792685" }, { "type": "redeem", + "inputIndex": 0, + "inputQty": "1069229698039884808192", + "expectedQty": "1077792815679030426312", + "swapFee": "641537818823930884", + "reserves": [ + "6032538035530636227727440", + "1716509264275845046376222" + ], + "LPTokenSupply": "7709231889115783639377581" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "33776229733467326251008", + "expectedQty": "33999767548186689578048", + "reserves": [ + "6032538035530636227727440", + "1750285494009312372627230" + ] + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "6788549574180719", - "expectedQty": "6822785789471222", - "swapFee": "4073129744508", + "inputQty": "52899713671079092224", + "outputIndex": 0, + "expectedQty": "53691911583937277643", + "swapFee": "0", "reserves": [ - "2587462009684764033739468", - "1405363097960436617716428" + "6032484343619052290449797", + "1750338393722983451719454" ], - "LPTokenSupply": "3958333293549991309574892" + "LPTokenSupply": "7743231656663970328955629", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "185486001596646215909376", - "294573509766057493004288" + "109217407955958679732224", + "12568869306981014306816" ], - "expectedQty": "476426176640026487789587", + "expectedQty": "120944628789608259279920", "reserves": [ - "2772948011281410249648844", - "1699936607726494110720716" + "6141701751575010970182021", + "1762907263029964466026270" ], - "LPTokenSupply": "4434759470190017797364479" + "LPTokenSupply": "7864176285453578588235549" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "195961193231922262704128", - "expectedQty": "194004424832215893715001", + "inputIndex": 1, + "inputQty": "98551682406621462528", + "expectedQty": "99205869050012353856", "reserves": [ - "2968909204513332512352972", - "1699936607726494110720716" + "6141701751575010970182021", + "1763005814712371087488798" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "191568721372019392512", - "99053704278130212864" - ], - "expectedQty": "288099322568361545984", - "swapFee": "172963371563955300", - "reserves": [ - "2968717635791960492960460", - "1699837554022215980507852" - ], - "LPTokenSupply": "4628475640032630921973725" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "91560566584740282368", - "71256700516926029824" - ], - "expectedQty": "161469268011951977751", - "swapFee": "96939724641956360", + "type": "redeem", + "inputIndex": 0, + "inputQty": "695763688927287181312", + "expectedQty": "701298984068652608485", + "swapFee": "417458213356372308", "reserves": [ - "2968626075225375752678092", - "1699766297321699054478028" + "6141000452590942317573536", + "1763005814712371087488798" ], - "LPTokenSupply": "4628314083518866792235249" + "LPTokenSupply": "7863579769379522649045323" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2619254146610765312", - "expectedQty": "2603693039658424042", + "inputQty": "158358549813503039897600", + "expectedQty": "159276813188040520566411", "reserves": [ - "2968626075225375752678092", - "1699768916575845665243340" + "6141000452590942317573536", + "1921364364525874127386398" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4418634181913730560", - "expectedQty": "4461034585083077994", - "swapFee": "2651180509148238", + "type": "mintMulti", + "inputQtys": [ + "7830385076755554631680", + "11249312540046747762688" + ], + "expectedQty": "19073228604001982916657", "reserves": [ - "2968621614190790669600098", - "1699768916575845665243340" + "6148830837667697872205216", + "1932613677065920875149086" ], - "LPTokenSupply": "4628312268842842587843554" + "LPTokenSupply": "8041929811171565152528391" }, { "type": "mintMulti", "inputQtys": [ - "597254608033849671680", - "723671753073278976000" + "23035482784993640448", + "342993893600675889152" ], - "expectedQty": "1310595111467223709398", + "expectedQty": "367543135971354019777", "reserves": [ - "2969218868798824519271778", - "1700492588328918944219340" + "6148853873150482865845664", + "1932956670959521551038238" ], - "LPTokenSupply": "4629622863954309811552952" + "LPTokenSupply": "8042297354307536506548168" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "275140452465661920", - "expectedQty": "272362044269861398", + "inputQty": "20517213561070160", + "expectedQty": "20669880943283695", + "swapFee": "12310328136642", "reserves": [ - "2969219143939276984933698", - "1700492588328918944219340" - ] + "6148853852480601922561969", + "1932956670959521551038238" + ], + "LPTokenSupply": "8042297333791553978291672" }, { "type": "redeemBassets", "inputQtys": [ - "555150236966134808576", - "527039356814776270848" + "32143817083928121966592", + "55377780151124221755392" ], - "expectedQty": "1073451809005068246768", - "swapFee": "644457760059076393", + "expectedQty": "87548336354269622638310", + "swapFee": "52560538135443039406", "reserves": [ - "2968663993702310850125122", - "1699965548972104167948492" + "6116710035396673800595377", + "1877578890808397329282846" ], - "LPTokenSupply": "4628549104495364959998827" + "LPTokenSupply": "7954701692952962456917895" }, { - "type": "mintMulti", - "inputQtys": [ - "13455568707608817696768", - "355506346079967707136" - ], - "expectedQty": "13672984995906536644875", + "type": "redeem", + "inputIndex": 1, + "inputQty": "12411036280486281347072", + "expectedQty": "12336773092108293754554", + "swapFee": "7446621768291768808", "reserves": [ - "2982119562409919667821890", - "1700321055318184135655628" + "6116710035396673800595377", + "1865242117716289035528292" ], - "LPTokenSupply": "4642222089491271496643702" + "LPTokenSupply": "7942291401334653004747703" }, { - "type": "redeemMasset", - "inputQty": "986463618510270287052", - "expectedQtys": [ - "633314681248849793351", - "361098294227789378552" - ], - "redemptionFee": "591878171106162172", + "type": "redeem", + "inputIndex": 1, + "inputQty": "819990329747876610048", + "expectedQty": "815033224640431780501", + "swapFee": "491994197848725966", "reserves": [ - "2981486247728670818028539", - "1699959957023956346277076" + "6116710035396673800595377", + "1864427084491648603747791" ], - "LPTokenSupply": "4641235685060578336972867" + "LPTokenSupply": "7941471460204324913010251" }, { - "type": "redeemMasset", - "inputQty": "47118505082224948019", - "expectedQtys": [ - "30250324383043034298", - "17247887753074228043" - ], - "redemptionFee": "28271103049334968", + "type": "mint", + "inputIndex": 0, + "inputQty": "31083945520973555433472", + "expectedQty": "30829994337274219182793", "reserves": [ - "2981455997404287774994241", - "1699942709136203272049033" - ], - "LPTokenSupply": "4641188569382606416958344" + "6147793980917647356028849", + "1864427084491648603747791" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2035085443144687550464", - "expectedQty": "2054641538255906629596", - "swapFee": "1221051265886812530", + "inputIndex": 1, + "inputQty": "1309411753660808691712", + "expectedQty": "1301363605872758780275", + "swapFee": "785647052196485215", "reserves": [ - "2979401355866031868364645", - "1699942709136203272049033" + "6147793980917647356028849", + "1863125720885775844967516" ], - "LPTokenSupply": "4639153606044588318089133" + "LPTokenSupply": "7970992121352643543149853" }, { "type": "redeemBassets", "inputQtys": [ - "47351260987733676392448", - "59277799363713884487680" + "42708444917345730691072", + "22291107351393984315392" ], - "expectedQty": "105801200865420522702067", - "swapFee": "63518831818343319613", + "expectedQty": "64774837804851178853138", + "swapFee": "38888235624285278478", "reserves": [ - "2932050094878298191972197", - "1640664909772489387561353" + "6105085536000301625337777", + "1840834613534381860652124" ], - "LPTokenSupply": "4533295238230531286399413" + "LPTokenSupply": "7906182284135730507546083" }, { "type": "redeemBassets", "inputQtys": [ - "11335558277076019576832", - "684866278928172974080" + "704050720044727926784", + "1189142716568646189056" ], - "expectedQty": "11900987579718458816398", - "swapFee": "7144879475516385120", + "expectedQty": "1894159654586072551860", + "swapFee": "1137178099611410377", "reserves": [ - "2920714536601222172395365", - "1639980043493561214587273" + "6104381485280256897410993", + "1839645470817813214463068" ], - "LPTokenSupply": "4521387820259284862836406" + "LPTokenSupply": "7904287101020854784724882" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "640118942197787131904", - "expectedQty": "643490701850742415724", - "swapFee": "384071365318672279", + "inputIndex": 0, + "inputQty": "17091958398385727209472", + "expectedQty": "17223200435405410738708", + "swapFee": "10255175039031436325", "reserves": [ - "2920714536601222172395365", - "1639336552791710472171549" + "6087158284844851486672285", + "1839645470817813214463068" ], - "LPTokenSupply": "4520747739724223607571729" + "LPTokenSupply": "7887196168139972960659042" }, { "type": "redeemMasset", - "inputQty": "27772104246194047077580", + "inputQty": "12010063620376118886", "expectedQtys": [ - "17931927331043329784021", - "10064819265080288887781" + "9263531984719950435", + "2799601039107915828" ], - "redemptionFee": "16663262547716428246", + "redemptionFee": "7206038172225671", "reserves": [ - "2902782609270178842611344", - "1629271733526630183283768" + "6087149021312866766721850", + "1839642671216774106547240" ], - "LPTokenSupply": "4492977301804284332136973" + "LPTokenSupply": "7887184158796956401762723" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1358821988559368704", - "3938155041161070592" + "36638211989142455189504", + "24878975471195476983808" ], - "expectedQty": "5260143533043384604", + "expectedQty": "61357511636643199356760", + "swapFee": "36836608947354332213", "reserves": [ - "2902783968092167401980048", - "1629275671681671344354360" + "6050510809323724311532346", + "1814763695745578629563432" ], - "LPTokenSupply": "4492982561947817375521577" + "LPTokenSupply": "7825793494212260583506970" }, { - "type": "redeemMasset", - "inputQty": "3583932712645781", - "expectedQtys": [ - "2314084296607916", - "1298850099810168" + "type": "redeemBassets", + "inputQtys": [ + "1364363039215524773888", + "16265666273942020554752" ], - "redemptionFee": "2150359627587", + "expectedQty": "17713884549336833128341", + "swapFee": "10634711556536021489", "reserves": [ - "2902783965778083105372132", - "1629275670382821244544192" + "6049146446284508786758458", + "1798498029471636609008680" ], - "LPTokenSupply": "4492982558364099698838554" + "LPTokenSupply": "7808070038422522867959287" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4678011742314120609792", - "expectedQty": "4702621272372878352274", - "swapFee": "2806807045388472365", + "type": "swap", + "inputIndex": 0, + "inputQty": "314557949961860022272", + "outputIndex": 1, + "expectedQty": "309857046001636091646", + "swapFee": "249556238588960945", "reserves": [ - "2902783965778083105372132", - "1624573049110448366191918" + "6049461004234470646780730", + "1798188172425634972917034" ], - "LPTokenSupply": "4488304827302490117075998" + "LPTokenSupply": "7808070063378146726855381", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "20714694795246337785856", - "7316882515278243561472" - ], - "expectedQty": "27777825286709057469284", - "swapFee": "16676701192741079129", + "type": "mint", + "inputIndex": 1, + "inputQty": "13573353870152953757696", + "expectedQty": "13652956669272922360557", "reserves": [ - "2882069270982836767586276", - "1617256166595170122630446" - ], - "LPTokenSupply": "4460511992984707592635496" + "6049461004234470646780730", + "1811761526295787926674730" + ] }, { "type": "mintMulti", "inputQtys": [ - "7613873763665747902464", - "4362458076528432381952" + "63387343551033720832", + "1324222813103154003968" ], - "expectedQty": "11873268570090124760984", + "expectedQty": "1394750279533417845251", "reserves": [ - "2889683144746502515488740", - "1621618624671698555012398" + "6049524391578021680501562", + "1813085749108891080678698" ], - "LPTokenSupply": "4472385261554797717396480" + "LPTokenSupply": "7823117770326953067061189" }, { - "type": "mintMulti", - "inputQtys": [ - "155889438147358523392", - "474753543638640099328" + "type": "redeemMasset", + "inputQty": "7924182212681337405440", + "expectedQtys": [ + "6123999723038150568733", + "1835406538875191710156" ], - "expectedQty": "626280977932374445764", + "redemptionFee": "4754509327608802443", "reserves": [ - "2889839034184649874012132", - "1622093378215337195111726" + "6043400391854983529932829", + "1811250342570015888968542" ], - "LPTokenSupply": "4473011542532730091842244" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "112177077925973639168", - "expectedQty": "111034164866876858120", - "reserves": [ - "2889951211262575847651300", - "1622093378215337195111726" - ] + "LPTokenSupply": "7815194063565204490535993" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "25879502319995129430016", - "66603505429232230596608" + "3334013166182487556096", + "1480505757682318442496" ], - "expectedQty": "91835483999026340183857", - "swapFee": "55134371022029021523", + "expectedQty": "4795532217006749687886", "reserves": [ - "2864071708942580718221284", - "1555489872786104964515118" + "6046734405021166017488925", + "1812730848327698207411038" ], - "LPTokenSupply": "4381237471764650802397135" + "LPTokenSupply": "7819989595782211240223879" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "276587932424152645632", - "expectedQty": "275025744443751748049", + "type": "redeemMasset", + "inputQty": "91674948442168", + "expectedQtys": [ + "70844271286972", + "21238173762443" + ], + "redemptionFee": "55004969065", "reserves": [ - "2864071708942580718221284", - "1555766460718529117160750" - ] + "6046734404950321746201953", + "1812730848306460033648595" + ], + "LPTokenSupply": "7819989595690541792278617" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "323741374030119291584512", - "expectedQty": "320339533704421220641324", + "inputIndex": 1, + "inputQty": "26403813653410863906816", + "expectedQty": "26552767314455424200182", "reserves": [ - "3187813082972700009805796", - "1555766460718529117160750" + "6046734404950321746201953", + "1839134661959870897555411" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "14505965870088185708544", - "16118955142370100772864" - ], - "expectedQty": "30390581218081830421351", - "reserves": [ - "3202319048842788195514340", - "1571885415860899217933614" + "16799548612736580583424", + "10249491662435596107776" ], - "LPTokenSupply": "4732242612431597605207859" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9468377776039160", - "expectedQty": "9564835060143935", - "swapFee": "5681026665623", + "expectedQty": "26968227788007716389880", + "swapFee": "16190651063442695451", "reserves": [ - "3202319039277953135370405", - "1571885415860899217933614" + "6029934856337585165618529", + "1828885170297435301447635" ], - "LPTokenSupply": "4732242602963787931835261" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "327922924494686934532096", - "expectedQty": "326083240753891158173273", - "reserves": [ - "3202319039277953135370405", - "1899808340355586152465710" - ] + "LPTokenSupply": "7819559563631032401663012" }, { "type": "swap", "inputIndex": 0, - "inputQty": "30706912117198143488", + "inputQty": "4614027373041330176", "outputIndex": 1, - "expectedQty": "30563996544951319513", - "swapFee": "24319571471245140", + "expectedQty": "4547269742201153656", + "swapFee": "3660965568784577", "reserves": [ - "3202349746190070333513893", - "1899777776359041201146197" + "6029939470364958206948705", + "1828880623027693100293979" ], - "LPTokenSupply": "5058325846149636237133048", + "LPTokenSupply": "7819559563997128958541469", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "3329074650956870189056", - "1033524879573490991104" + "38977712060714582016", + "65307687820263636992" ], - "expectedQty": "4322882797669990058168", - "swapFee": "2595286850712421487", + "expectedQty": "104328937594917684993", + "swapFee": "62634943523064449", "reserves": [ - "3199020671539113463324837", - "1898744251479467710155093" + "6029900492652897492366689", + "1828815315339872836656987" ], - "LPTokenSupply": "5054000627593800605895540" + "LPTokenSupply": "7819455178688084870098470" }, { - "type": "redeemMasset", - "inputQty": "469260207489889337344", - "expectedQtys": [ - "296848479210164167793", - "176191216416723941220" + "type": "redeemBassets", + "inputQtys": [ + "6866357836041283436544", + "4844827896460179668992" ], - "redemptionFee": "281556124493933602", + "expectedQty": "11681873108881175425744", + "swapFee": "7013331864447373679", "reserves": [ - "3198723823059903299157044", - "1898568060263050986213873" + "6023034134816856208930145", + "1823970487443412656987995" ], - "LPTokenSupply": "5053531395541923165951556" + "LPTokenSupply": "7807766993580525692036413" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2890178860619258", - "3607735225817845" + "3464268391473709318144", + "12504972357998827536384" ], - "expectedQty": "6446676187852064", + "expectedQty": "16011326282095067868287", + "swapFee": "9612563307241385552", "reserves": [ - "3198723825950082159776302", - "1898568063870786212031718" + "6019569866425382499612001", + "1811465515085413829451611" ], - "LPTokenSupply": "5053531401988599353803620" + "LPTokenSupply": "7791747015991454106921128" }, { - "type": "redeemMasset", - "inputQty": "1706441974202173594009", - "expectedQtys": [ - "1079475144128886875302", - "640710841542154927614" - ], - "redemptionFee": "1023865184521304156", + "type": "swap", + "inputIndex": 1, + "inputQty": "402842519781964775424", + "outputIndex": 0, + "expectedQty": "408504637606025715487", + "swapFee": "0", "reserves": [ - "3197644350805953272901000", - "1897927353029244057104104" + "6019161361787776473896514", + "1811868357605195794227035" ], - "LPTokenSupply": "5051825062400915632340026" + "LPTokenSupply": "7791747015991454106921128", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "40203164255812975591424", - "136697631110670275575808" - ], - "expectedQty": "175673294972248874155460", - "swapFee": "105467257337751975678", + "type": "mint", + "inputIndex": 0, + "inputQty": "6671831130733340", + "expectedQty": "6616850670490942", "reserves": [ - "3157441186550140297309576", - "1761229721918573781528296" - ], - "LPTokenSupply": "4876056846897062781406454" + "6019161368459607604629854", + "1811868357605195794227035" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "12649004175713548369920", - "21897480386329079447552" - ], - "expectedQty": "34288771635525078082620", + "type": "mint", + "inputIndex": 1, + "inputQty": "258955606469328704", + "expectedQty": "260430461272438464", "reserves": [ - "3170090190725853845679496", - "1783127202304902860975848" - ], - "LPTokenSupply": "4910345618532587859489074" + "6019161368459607604629854", + "1811868616560802263555739" + ] }, { "type": "redeemMasset", - "inputQty": "6234840784129249352089", + "inputQty": "35352129271165159368294", "expectedQtys": [ - "4022761357446437691536", - "2262741680293114942027" + "27293300074327924680481", + "8215741499501756041260" ], - "redemptionFee": "3740904470477549611", + "redemptionFee": "21211277562699095620", "reserves": [ - "3166067429368407407987960", - "1780864460624609746033821" + "5991868068385279679949373", + "1803652875061300507514479" ], - "LPTokenSupply": "4904111151838905657891946" + "LPTokenSupply": "7756397274895357160391802" }, { - "type": "redeemMasset", - "inputQty": "11930524002436892262", - "expectedQtys": [ - "7697659898916144309", - "4329815851928860192" - ], - "redemptionFee": "7158314401462135", + "type": "mint", + "inputIndex": 1, + "inputQty": "80339231015034093568", + "expectedQty": "80796562719934533106", "reserves": [ - "3166059731708508491843651", - "1780860130808757817173629" - ], - "LPTokenSupply": "4904099222030734661145897" + "5991868068385279679949373", + "1803733214292315541608047" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "32195735725170098176", - "expectedQty": "32006170682620996280", + "inputQty": "10400757730214980616192", + "expectedQty": "10459408371206470592907", "reserves": [ - "3166059731708508491843651", - "1780892326544482987271805" + "5991868068385279679949373", + "1814133972022530522224239" ] }, + { + "type": "redeemMasset", + "inputQty": "83566748250296448", + "expectedQtys": [ + "64429577186771698", + "19507085844276415" + ], + "redemptionFee": "50140048950177", + "reserves": [ + "5991868003955702493177675", + "1814133952515444677947824" + ], + "LPTokenSupply": "7766937396267549320116384" + }, { "type": "redeem", "inputIndex": 0, - "inputQty": "667883805648740024320", - "expectedQty": "674370184776736936242", - "swapFee": "400730283389244014", + "inputQty": "5683747558762650533888", + "expectedQty": "5727349138543568780172", + "swapFee": "3410248535257590320", "reserves": [ - "3165385361523731754907409", - "1780892326544482987271805" + "5986140654817158924397503", + "1814133952515444677947824" ], - "LPTokenSupply": "4903463384468796881042258" + "LPTokenSupply": "7761253989733640195341528" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "13732533286533442043904", - "expectedQty": "13592189652884546159904", + "inputQty": "151980755135103041536", + "expectedQty": "153146281912316807872", + "swapFee": "91188453081061824", "reserves": [ - "3179117894810265196951313", - "1780892326544482987271805" - ] + "5985987508535246607589631", + "1814133952515444677947824" + ], + "LPTokenSupply": "7761102018097350400406174" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "31833972135946850304", - "36664580695014260736" + "11683024036398517714944", + "464336193783098179584" ], - "expectedQty": "67958020062055088941", + "expectedQty": "12054123339939310383952", + "swapFee": "7236816093619758085", "reserves": [ - "3179149728782401143801617", - "1780928991125178001532541" + "5974304484498848089874687", + "1813669616321661579768240" ], - "LPTokenSupply": "4917123532141743482291103" + "LPTokenSupply": "7749041381622926832239944" }, { "type": "redeemBassets", "inputQtys": [ - "75474193590962831360", - "25283892282672234496" + "14632957454706316148736", + "111685127287732602667008" ], - "expectedQty": "99837960641182300155", - "swapFee": "59938739628486471", + "expectedQty": "126877812638151187954431", + "swapFee": "76172391017501213500", "reserves": [ - "3179074254588810180970257", - "1780903707232895329298045" + "5959671527044141773725951", + "1701984489033928977101232" ], - "LPTokenSupply": "4917023640236236634353123" + "LPTokenSupply": "7622095013832859893193362" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "12358577109692489662464", - "9701633203898540883968" + "3751836328302803419136", + "10507029491788449579008" ], - "expectedQty": "21876923362212290223823", + "expectedQty": "14297778710513887863094", + "swapFee": "8583817516818423772", "reserves": [ - "3191432831698502670632721", - "1790605340436793870182013" + "5955919690715838970306815", + "1691477459542140527522224" ], - "LPTokenSupply": "4938900563598448924576946" + "LPTokenSupply": "7607789509686580868748872" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "544516198289018", - "outputIndex": 1, - "expectedQty": "541700224845017", - "swapFee": "431160198684", + "type": "mintMulti", + "inputQtys": [ + "8929802586382797824", + "9794523297363673088" + ], + "expectedQty": "18714443021897124294", "reserves": [ - "3191432832243018868921739", - "1790605339895093645336996" + "5955928620518425353104639", + "1691487254065437891195312" ], - "LPTokenSupply": "4938900563598492040596814", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7607808224129602765873166" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "70214967505371365376", - "expectedQty": "70587354527363471347", - "swapFee": "42128980503222819", + "inputQty": "113230130459206775472128", + "expectedQty": "112313847423520444354421", + "swapFee": "67938078275524065283", "reserves": [ - "3191432832243018868921739", - "1790534752540566281865649" + "5955928620518425353104639", + "1579173406641917446840891" ], - "LPTokenSupply": "4938830352843884719553719" + "LPTokenSupply": "7494584887478223542807566" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "138291424727005104", - "expectedQty": "139635802723547858", - "swapFee": "82974854836203", + "type": "redeemBassets", + "inputQtys": [ + "205411107758647672832", + "122418540779367940096" + ], + "expectedQty": "326998334679703992407", + "swapFee": "196316790882351806", "reserves": [ - "3191432692607216145373881", - "1790534752540566281865649" + "5955723209410666705431807", + "1579050988101138078900795" ], - "LPTokenSupply": "4938830214560757478032235" + "LPTokenSupply": "7494257712458432044698532" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1247310639274081910784", - "2069143697058783559680" + "3204213453573498863616", + "11781404852316354379776" ], - "expectedQty": "3291557001093630623704", - "swapFee": "1976119872579726209", + "expectedQty": "15054001135229293500192", "reserves": [ - "3190185381967942063463097", - "1788465608843507498305969" + "5958927422864240204295423", + "1590832392953454433280571" ], - "LPTokenSupply": "4935536879051778525654941" + "LPTokenSupply": "7509311713593661338198724" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "11838676889931668783104", - "expectedQty": "11901165098414048230350", - "swapFee": "7103206133959001269", + "type": "mint", + "inputIndex": 0, + "inputQty": "78704846591059230720", + "expectedQty": "77998969116407556345", "reserves": [ - "3190185381967942063463097", - "1776564443745093450075619" - ], - "LPTokenSupply": "4923698912482460252771963" + "5959006127710831263526143", + "1590832392953454433280571" + ] }, { "type": "redeemMasset", - "inputQty": "68597247531920495371878", + "inputQty": "302070244534277216665", "expectedQtys": [ - "44419172952130958723671", - "24736344079991973745761" + "239561200573517409757", + "63953906037276126080" ], - "redemptionFee": "41158348519152297223", + "redemptionFee": "181242146720566329", "reserves": [ - "3145766209015811104739426", - "1751828099665101476329858" + "5958766566510257746116386", + "1590768439047417157154491" ], - "LPTokenSupply": "4855105780785391672629807" + "LPTokenSupply": "7509087660442458140595036" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "95191647322215792640", - "expectedQty": "94215284396993777059", + "type": "swap", + "inputIndex": 1, + "inputQty": "663317621511066266632192", + "outputIndex": 0, + "expectedQty": "671040780240048871828493", + "swapFee": "0", "reserves": [ - "3145861400663133320532066", - "1751828099665101476329858" - ] + "5287725786270208874287893", + "2254086060558483423786683" + ], + "LPTokenSupply": "7509087660442458140595036", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4964719633755591933952", + "expectedQty": "4957006085944612911643", + "swapFee": "2978831780253355160", + "reserves": [ + "5287725786270208874287893", + "2249129054472538810875040" + ], + "LPTokenSupply": "7504123238691880573996600" + }, + { + "type": "mintMulti", "inputQtys": [ - "6012544338990139392", - "57267869285880233984" + "1464108781135921414144", + "5913027365877106868224" ], - "expectedQty": "62884561101592044821", - "swapFee": "37753388694171729", + "expectedQty": "7373120504147251278097", "reserves": [ - "3145855388118794330392674", - "1751770831795815596095874" + "5289189895051344795702037", + "2255042081838415917743264" ], - "LPTokenSupply": "4855137077530637249607487" + "LPTokenSupply": "7511496359196027825274697" }, { "type": "redeemMasset", - "inputQty": "41430869918579018956", + "inputQty": "4022298876241757798", "expectedQtys": [ - "26828763425736260193", - "14939607650070538771" + "2830586175219465989", + "1206818259136823803" ], - "redemptionFee": "24858521951147411", + "redemptionFee": "2413379325745054", "reserves": [ - "3145828559355368594132481", - "1751755892188165525557103" + "5289187064465169576236048", + "2255040875020156780919461" ], - "LPTokenSupply": "4855095649146570865703272" + "LPTokenSupply": "7511492337138489516091404" }, { - "type": "redeemMasset", - "inputQty": "114954267387575690854", - "expectedQtys": [ - "74439201126906137057", - "41451498936915587910" + "type": "redeem", + "inputIndex": 0, + "inputQty": "1947368707548163866624", + "expectedQty": "1959111396543936931751", + "swapFee": "1168421224528898319", + "reserves": [ + "5287227953068625639304297", + "2255040875020156780919461" ], - "redemptionFee": "68972560432545414", + "LPTokenSupply": "7509545085273063805114611" + }, + { + "type": "mintMulti", + "inputQtys": [ + "1457857470679478784", + "67473777452710789120" + ], + "expectedQty": "68985370749137258205", "reserves": [ - "3145754120154241687995424", - "1751714440689228609969193" + "5287229410926096318783081", + "2255108348797609491708581" ], - "LPTokenSupply": "4854980701776439333266959" + "LPTokenSupply": "7509614070643812942372816" }, { - "type": "redeemMasset", - "inputQty": "1524126539050296698470", - "expectedQtys": [ - "986955647773577432818", - "549586647426849221306" + "type": "redeemBassets", + "inputQtys": [ + "5892740631742266736640", + "7156554681726668898304" ], - "redemptionFee": "914475923430178019", + "expectedQty": "13017228789343705049639", + "swapFee": "7815026289379850940", "reserves": [ - "3144767164506468110562606", - "1751164854041801760747887" + "5281336670294354052046441", + "2247951794115882822810277" ], - "LPTokenSupply": "4853456666684981379586290" + "LPTokenSupply": "7496589808330808795457330" }, { "type": "redeemBassets", "inputQtys": [ - "5018037307770665959424", - "3412976103147319066624" + "30861653314575032909824", + "2670765308389420433408" + ], + "expectedQty": "33331557621435185163984", + "swapFee": "20010941137543637280", + "reserves": [ + "5250475016979779019136617", + "2245281028807493402376869" + ], + "LPTokenSupply": "7463240240862349821019793" + }, + { + "type": "mintMulti", + "inputQtys": [ + "11253828696999368589312", + "235078536018610225152" ], - "expectedQty": "8359626762400840872991", - "swapFee": "5018787329838407568", + "expectedQty": "11415002544374764365438", "reserves": [ - "3139749127198697444603182", - "1747751877938654441681263" + "5261728845676778387725929", + "2245516107343512012602021" ], - "LPTokenSupply": "4845092523013983684146486" + "LPTokenSupply": "7474655243406724585385231" }, { "type": "mint", "inputIndex": 0, - "inputQty": "116619219381504475136", - "expectedQty": "115422779663334661064", + "inputQty": "6773615227731524452352", + "expectedQty": "6728955680548429306418", "reserves": [ - "3139865746418078949078318", - "1747751877938654441681263" + "5268502460904509912178281", + "2245516107343512012602021" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "28684437701298839617536", + "inputQty": "7919265896070891175936", "outputIndex": 0, - "expectedQty": "28809157590408552962091", + "expectedQty": "7979079585385957050357", "swapFee": "0", "reserves": [ - "3111056588827670396116227", - "1776436315639953281298799" + "5260523381319123955127924", + "2253435373239582903777957" ], - "LPTokenSupply": "4845207945793647018807550", + "LPTokenSupply": "7481384199087273014691649", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "334624947334516531", + "expectedQtys": [ + "235149824042571790", + "100730458378025314" + ], + "redemptionFee": "200774968400709", + "reserves": [ + "5260523146169299912556134", + "2253435272509124525752643" + ], + "LPTokenSupply": "7481383864482403177015188" + }, + { + "type": "redeemBassets", "inputQtys": [ - "6107439598597104992256", - "9205138489416425144320" + "455095963746627813376", + "7538692192569557778432" ], - "expectedQty": "15195269322569244188599", + "expectedQty": "7997647115069659924949", + "swapFee": "4801469150532115224", "reserves": [ - "3117164028426267501108483", - "1785641454129369706443119" + "5260068050205553284742758", + "2245896580316554967974211" ], - "LPTokenSupply": "4860403215116216262996149" + "LPTokenSupply": "7473381896045098038186536" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "73856781250779464859648", - "expectedQty": "74567121174043177661344", - "swapFee": "44314068750467678915", + "type": "redeemBassets", + "inputQtys": [ + "66588542120468488192", + "7073286504099340288" + ], + "expectedQty": "73229612263292320923", + "swapFee": "43964145845482682", "reserves": [ - "3042596907252224323447139", - "1785641454129369706443119" + "5260001461663432816254566", + "2245889507030050868633923" ], - "LPTokenSupply": "4786550865272311844904392" + "LPTokenSupply": "7473308626865103484931198" }, { - "type": "redeemMasset", - "inputQty": "240992816232897550745", - "expectedQtys": [ - "153096472087761594521", - "89849367291887830417" + "type": "redeemBassets", + "inputQtys": [ + "70073283101730214510592", + "599119114221671378059264" ], - "redemptionFee": "144595689739738530", + "expectedQty": "670219076083970589830589", + "swapFee": "402372869372005557232", "reserves": [ - "3042443810780136561852618", - "1785551604762077818612702" + "5189928178561702601743974", + "1646770392808379490574659" ], - "LPTokenSupply": "4786309886915647921327500" + "LPTokenSupply": "6802727415198698090099099" }, { "type": "redeemBassets", "inputQtys": [ - "602107080909908344832", - "1975417155569197252608" + "2158738903826621696", + "4866988643298019328" ], - "expectedQty": "2559291532399187214884", - "swapFee": "1536496817530030347", + "expectedQty": "7031203525288696756", + "swapFee": "4221254868094074", "reserves": [ - "3041841703699226653507786", - "1783576187606508621360094" + "5189926019822798775122278", + "1646765525819736192555331" ], - "LPTokenSupply": "4783749212536112957085302" + "LPTokenSupply": "6802720380196043420117675" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "620487126166831104000", - "expectedQty": "626436072908225561001", - "swapFee": "372292275700098662", + "inputQty": "27164909631628380209152", + "expectedQty": "26946311702993863339705", "reserves": [ - "3041215267626318427946785", - "1783576187606508621360094" - ], - "LPTokenSupply": "4783128762639173695991168" + "5217090929454427155331430", + "1646765525819736192555331" + ] }, { - "type": "redeemMasset", - "inputQty": "7199334972360006985318", - "expectedQtys": [ - "4574744207003741508655", - "2682942216836608306189" - ], - "redemptionFee": "4319600983416004191", + "type": "mint", + "inputIndex": 1, + "inputQty": "7892794207357968384", + "expectedQty": "7930490113234323634", "reserves": [ - "3036640523419314686438130", - "1780893245389672013053905" - ], - "LPTokenSupply": "4775929859626912030606269" + "5217090929454427155331430", + "1646773418613943550523715" + ] }, { "type": "redeemBassets", "inputQtys": [ - "14383234933776257024", - "228801697238852796416" + "600017053382812672", + "724528628910256256" ], - "expectedQty": "241631746415786148395", - "swapFee": "145066087501972872", + "expectedQty": "1323169297244960512", + "swapFee": "794378205270138", "reserves": [ - "3036626140184380910181106", - "1780664443692433160257489" + "5217090329437373772518758", + "1646772694085314640267459" ], - "LPTokenSupply": "4775688097321017492682288" + "LPTokenSupply": "6829673298504912888077376" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "37777322240312824", - "outputIndex": 0, - "expectedQty": "37927611064308191", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "6493927257349779619840", + "outputIndex": 1, + "expectedQty": "6405466443437041138801", + "swapFee": "5153246847121971689", "reserves": [ - "3036626102256769845872915", - "1780664481469755400570313" + "5223584256694723552138598", + "1640367227641877599128658" ], - "LPTokenSupply": "4775688097321017492682288", + "LPTokenSupply": "6829673813829597600274544", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "37606921294967494", + "inputQty": "943242928410942873", "expectedQtys": [ - "23898051465827265", - "14013714559691463" + "720993824883455382", + "226414389727743998" ], - "redemptionFee": "22564152776980", + "redemptionFee": "565945757046565", "reserves": [ - "3036626078358718380045650", - "1780664467456040840878850" + "5223583535700898668683216", + "1640367001227487871384660" ], - "LPTokenSupply": "4775688059716352612992492" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "34607613130121135783936", - "expectedQty": "34257700640955930946131", - "reserves": [ - "3071233691488839515829586", - "1780664467456040840878850" - ] + "LPTokenSupply": "6829672870643263765036327" }, { - "type": "redeemBassets", - "inputQtys": [ - "10269030943645623123968", - "7646171397574330679296" - ], - "expectedQty": "17764631079642069241717", - "swapFee": "10665177754437904287", + "type": "redeem", + "inputIndex": 1, + "inputQty": "95630216931598439284736", + "expectedQty": "95060804102036904829136", + "swapFee": "57378130158959063570", "reserves": [ - "3060964660545193892705618", - "1773018296058466510199554" + "5223583535700898668683216", + "1545306197125450966555524" ], - "LPTokenSupply": "4792171530617687480583046" + "LPTokenSupply": "6734048391524681221657948" }, { "type": "redeemMasset", - "inputQty": "9518110931318833414144", + "inputQty": "1329595926889222478233", "expectedQtys": [ - "6075976256101427205365", - "3519418962049005646014" + "1030745227244537266832", + "304928020473351349260" ], - "redemptionFee": "5710866558791300048", + "redemptionFee": "797757556133533486", "reserves": [ - "3054888684289092465500253", - "1769498877096417504553540" + "5222552790473654131416384", + "1545001269104977615206264" ], - "LPTokenSupply": "4782653990773024526298906" + "LPTokenSupply": "6732718875373547612533063" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1614039511949735886848", - "expectedQty": "1597677897279983407726", + "inputQty": "68739349221543577124864", + "expectedQty": "69279215802645607594196", + "swapFee": "41243609532926146274", "reserves": [ - "3056502723801042201387101", - "1769498877096417504553540" - ] + "5153273574671008523822188", + "1545001269104977615206264" + ], + "LPTokenSupply": "6663983650512957328022826" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "225617337923442531368960", - "46326541986078268588032" + "67912829092169202532352", + "68758239156001300283392" ], - "expectedQty": "269363466017372706679079", + "expectedQty": "136508623523102425979040", + "swapFee": "81954346721894592342", "reserves": [ - "3282120061724484732756061", - "1815825419082495773141572" + "5085360745578839321289836", + "1476243029948976314922872" ], - "LPTokenSupply": "5053615134687677216385711" + "LPTokenSupply": "6527401268077805196910677" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "92692544127530336256", + "expectedQty": "93275010781735156497", + "reserves": [ + "5085360745578839321289836", + "1476335722493103845259128" + ] + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "52940686260864643235840", - "expectedQty": "53457652161563994573279", - "swapFee": "31764411756518785941", + "inputQty": "10155548029989603508224", + "expectedQty": "10068663251206900180464", "reserves": [ - "3228662409562920738182782", - "1815825419082495773141572" - ], - "LPTokenSupply": "5000677624867988225028465" + "5095516293608828924798060", + "1476335722493103845259128" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "4915511998733891928064", - "3680463997107276611584" + "type": "redeemMasset", + "inputQty": "3962238274726116556", + "expectedQtys": [ + "3086400125148695363", + "894229847597461562" ], - "expectedQty": "8523859659182470602662", - "swapFee": "5117386227245829859", + "redemptionFee": "2377342964835669", "reserves": [ - "3223746897564186846254718", - "1812144955085388496529988" + "5095513207208703776102697", + "1476334828263256247797566" ], - "LPTokenSupply": "4992149159561201233178928" + "LPTokenSupply": "6537559244339253402614648" }, { "type": "redeemBassets", "inputQtys": [ - "240751569085412474880", - "22474424961670737920" + "13361116039984927735808", + "138393091138382163083264" ], - "expectedQty": "260626670082323728780", - "swapFee": "156469883979782106", + "expectedQty": "152649002500083575636756", + "swapFee": "91644388132929903324", "reserves": [ - "3223506145995101433779838", - "1812122480660426825792068" + "5082152091168718848366889", + "1337941737124874084714302" ], - "LPTokenSupply": "4991888392068223327646251" + "LPTokenSupply": "6384827761889850190064899" }, { - "type": "mintMulti", - "inputQtys": [ - "4252126524406554624", - "4761563924475232256" + "type": "redeemMasset", + "inputQty": "20193117557397325558579", + "expectedQtys": [ + "16063537459374156284171", + "4228932315920343151945" ], - "expectedQty": "8941969604953615368", + "redemptionFee": "12115870534438395335", "reserves": [ - "3223510398121625840334462", - "1812127242224351301024324" + "5066088553709344692082718", + "1333712804808953741562357" ], - "LPTokenSupply": "4991897334037828281261619" + "LPTokenSupply": "6364635855919506308345853" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "260874541558764719308800", - "outputIndex": 0, - "expectedQty": "261759203026225521576350", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "36471777465014484992", + "expectedQtys": [ + "29013190538558646863", + "7638094620613239443" + ], + "redemptionFee": "21883066479008690", "reserves": [ - "2961751195095400318758112", - "2073001783783116020333124" + "5066059540518806133435855", + "1333705166714333128322914" ], - "LPTokenSupply": "4991897334037828281261619", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6364599386330347941761730" }, { "type": "redeemBassets", "inputQtys": [ - "228976524674628608", - "336103092168935744" + "317305210982705408", + "787995393188805248" ], - "expectedQty": "560525054343898740", - "swapFee": "336516942772002", + "expectedQty": "1109015491538925248", + "swapFee": "665808780191470", "reserves": [ - "2961750966118875644129504", - "2073001447680023851397380" + "5066059223213595150730447", + "1333704378718939939517666" ], - "LPTokenSupply": "4991896773209908688868076" + "LPTokenSupply": "6364598276715628500664158" }, { - "type": "mintMulti", - "inputQtys": [ - "108111398635471175680", - "2101964322174625382400" - ], - "expectedQty": "2194202063876447006387", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4050202403045093933056", + "expectedQty": "4013910893787965668369", + "swapFee": "2430121441827056359", "reserves": [ - "2961859077517511115305184", - "2075103412002198476779780" + "5066059223213595150730447", + "1329690467825151973849297" ], - "LPTokenSupply": "4994090975273785135874463" + "LPTokenSupply": "6360548317324727589436737" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "440538890361013", - "expectedQty": "436342570355322", + "type": "redeemMasset", + "inputQty": "2519229801512519807795", + "expectedQtys": [ + "2005316081977192517679", + "526336065508946596490" + ], + "redemptionFee": "1511537880907511884", "reserves": [ - "2961859077958050005666197", - "2075103412002198476779780" - ] + "5064053907131617958212768", + "1329164131759643027252807" + ], + "LPTokenSupply": "6358029238677003160380130" }, { "type": "redeemBassets", "inputQtys": [ - "5383306117635068919808", - "2348553233427037421568" + "249769113992111030272", + "25814367322334023680" ], - "expectedQty": "7663993066968164055908", - "swapFee": "4601156534101359249", + "expectedQty": "273511229740500767498", + "swapFee": "164205261000901001", "reserves": [ - "2956475771840414936746389", - "2072754858768771439358212" + "5063804138017625847182496", + "1329138317392320693229127" ], - "LPTokenSupply": "4986422841602278850950551" + "LPTokenSupply": "6357755579662527758801730" }, { "type": "redeemMasset", - "inputQty": "104100542886407425228", + "inputQty": "12159356570980607590", "expectedQtys": [ - "61684714716358478074", - "43246521198618188181" + "9678833322333836859", + "2540482981911640213" ], - "redemptionFee": "62460325731844455", + "redemptionFee": "7295613942588364", "reserves": [ - "2956414087125698578268315", - "2072711612247572821170031" + "5063794459184303513345637", + "1329135776909338781588914" ], - "LPTokenSupply": "4986318747305425016709768" + "LPTokenSupply": "6357743421035518172452976" }, { "type": "redeemMasset", - "inputQty": "15448156530343384868454", + "inputQty": "11896638341917251626598", "expectedQtys": [ - "9153796058975124509513", - "6417632587466804751649" + "9469709935246620831673", + "2485592646648930299221" ], - "redemptionFee": "9268893918206030921", + "redemptionFee": "7137983005150350975", "reserves": [ - "2947260291066723453758802", - "2066293979660106016418382" + "5054324749249056892513964", + "1326650184262689851289693" ], - "LPTokenSupply": "4970871517664473452444406" + "LPTokenSupply": "6345847496491901435861475" }, { - "type": "mintMulti", - "inputQtys": [ - "143679122279203086532608", - "25530691436018470486016" + "type": "redeemMasset", + "inputQty": "1527889017263481446", + "expectedQtys": [ + "1216199067179402536", + "319225771318589348" ], - "expectedQty": "167654660139968306034649", + "redemptionFee": "916733410358088", "reserves": [ - "3090939413345926540291410", - "2091824671096124486904398" + "5054323533049989713111428", + "1326649865036918532700345" ], - "LPTokenSupply": "5138526177804441758479055" + "LPTokenSupply": "6345845968694557513415837" }, { - "type": "redeemMasset", - "inputQty": "6932401679491353542656", - "expectedQtys": [ - "4167493997138129748012", - "2820393930148799170049" - ], - "redemptionFee": "4159441007694812125", + "type": "swap", + "inputIndex": 1, + "inputQty": "766166782843016183808", + "outputIndex": 0, + "expectedQty": "779800793684330466293", + "swapFee": "0", "reserves": [ - "3086771919348788410543398", - "2089004277165975687734349" + "5053543732256305382645135", + "1327416031819761548884153" ], - "LPTokenSupply": "5131594192069051174417611" + "LPTokenSupply": "6345845968694557513415837", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1574722300581921161216", - "expectedQty": "1563840777945541092351", + "inputIndex": 0, + "inputQty": "11391311467967751913472", + "expectedQty": "11286789075565215685261", "reserves": [ - "3086771919348788410543398", - "2090578999466557608895565" + "5064935043724273134558607", + "1327416031819761548884153" ] }, { - "type": "redeemMasset", - "inputQty": "12747841110825338470", - "expectedQtys": [ - "7661183995268586311", - "5188692520870392748" + "type": "redeemBassets", + "inputQtys": [ + "173725635505467392", + "281079530480971552" + ], + "expectedQty": "455600884356458587", + "swapFee": "273524645401115", + "reserves": [ + "5064934869998637629091215", + "1327415750740231067912601" + ], + "LPTokenSupply": "6357132301923066191781506" + }, + { + "type": "mintMulti", + "inputQtys": [ + "7251330400101944262656", + "5413544641757305634816" ], - "redemptionFee": "7648704666495203", + "expectedQty": "12644226517440665017631", "reserves": [ - "3086764258164793141957087", - "2090573810774036738502817" + "5072186200398739573353871", + "1332829295381988373547417" ], - "LPTokenSupply": "5133145285770756356821012" + "LPTokenSupply": "6369776528440506856799137" }, { "type": "swap", "inputIndex": 1, - "inputQty": "50316231815600694886400", + "inputQty": "42812880596142865252352", "outputIndex": 0, - "expectedQty": "50446652855574971786971", + "expectedQty": "43547816046384872441414", "swapFee": "0", "reserves": [ - "3036317605309218170170116", - "2140890042589637433389217" + "5028638384352354700912457", + "1375642175978131238799769" ], - "LPTokenSupply": "5133145285770756356821012", + "LPTokenSupply": "6369776528440506856799137", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "1224695776098706784256", - "expectedQty": "1216004046885247040392", + "inputQty": "70806294264190676762624", + "expectedQty": "71299800235608487755810", "reserves": [ - "3036317605309218170170116", - "2142114738365736140173473" + "5028638384352354700912457", + "1446448470242321915562393" ] }, { - "type": "redeemMasset", - "inputQty": "3434316988379987286425", - "expectedQtys": [ - "2029740397976631448252", - "1431976949301811834541" - ], - "redemptionFee": "2060590193027992371", + "type": "redeem", + "inputIndex": 0, + "inputQty": "35869079224034363703296", + "expectedQty": "36158456711069389175725", + "swapFee": "21521447534420618221", "reserves": [ - "3034287864911241538721864", - "2140682761416434328338932" + "4992479927641285311736732", + "1446448470242321915562393" ], - "LPTokenSupply": "5130927178888280919374216" + "LPTokenSupply": "6405209401596834422913473" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "41536132972415411027968", - "67098511698924064997376" + "196106690069201248", + "170052289221910944" ], - "expectedQty": "107764969566807182436904", - "swapFee": "64697800420336511368", + "expectedQty": "365548310629741622", "reserves": [ - "2992751731938826127693896", - "2073584249717510263341556" + "4992480123747975380937980", + "1446448640294611137473337" ], - "LPTokenSupply": "5023103981301095434077079" + "LPTokenSupply": "6405209767145145052655095" }, { - "type": "redeemMasset", - "inputQty": "2178054654218461826252", - "expectedQtys": [ - "1296900449765152902993", - "898581836035688216070" + "type": "mintMulti", + "inputQtys": [ + "97218879298118891864064", + "108351634183585840234496" ], - "redemptionFee": "1306832792531077095", + "expectedQty": "205378187350656698721001", "reserves": [ - "2991454831489060974790903", - "2072685667881474575125486" + "5089699003046094272802044", + "1554800274478196977707833" ], - "LPTokenSupply": "5020926057330156225358536" + "LPTokenSupply": "6610587954495801751376096" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "5033274614310007808", - "expectedQty": "5065863207531947656", - "swapFee": "3019964768586004", + "inputIndex": 0, + "inputQty": "16678503971929047695360", + "expectedQty": "16807551832931819108309", + "swapFee": "10007102383157428617", "reserves": [ - "2991454831489060974790903", - "2072680602018267043177830" + "5072891451213162453693735", + "1554800274478196977707833" ], - "LPTokenSupply": "5020921024357538392209328" + "LPTokenSupply": "6593910451234111019423597" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "71342094646442173923328", - "outputIndex": 0, - "expectedQty": "71509633374158003674331", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "340167034101581348864", + "31014940341574787072" + ], + "expectedQty": "368532807730340479196", "reserves": [ - "2919945198114902971116572", - "2144022696664709217101158" + "5073231618247264035042599", + "1554831289418538552494905" ], - "LPTokenSupply": "5020921024357538392209328", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6594278984041841359902793" }, { "type": "mintMulti", "inputQtys": [ - "886134680766746880", - "1013221788238878080" + "39361138090680983552", + "504303487040771522560" ], - "expectedQty": "1883651792114670551", + "expectedQty": "545981595581994187046", "reserves": [ - "2919946084249583737863452", - "2144023709886497455979238" + "5073270979385354716026151", + "1555335592905579324017465" ], - "LPTokenSupply": "5020922908009330506879879" + "LPTokenSupply": "6594824965637423354089839" }, { - "type": "redeemMasset", - "inputQty": "45453117603458161049", - "expectedQtys": [ - "26417657231882178697", - "19397647021748416125" + "type": "redeem", + "inputIndex": 0, + "inputQty": "368520261715125216477184", + "expectedQty": "371292988181209208468952", + "swapFee": "221112157029075129886", + "reserves": [ + "4701977991204145507557199", + "1555335592905579324017465" + ], + "LPTokenSupply": "6226326815138001045125643" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "6569833430020028", + "179216965886064" + ], + "expectedQty": "6697897353194214", + "swapFee": "4021151102578", + "reserves": [ + "4701977984634312077537171", + "1555335592726362358131401" + ], + "LPTokenSupply": "6226326808436484655939107" + }, + { + "type": "mintMulti", + "inputQtys": [ + "2636883944171861180416", + "4196466252064016564224" + ], + "expectedQty": "6829016297523866429937", + "reserves": [ + "4704614868578483938717587", + "1559532058978426374695625" ], - "redemptionFee": "27271870562074896", + "LPTokenSupply": "6233155824734008522369044" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "32595064213902636", + "expectedQty": "32834327880470022", + "swapFee": "19557038528341", "reserves": [ - "2919919666592351855684755", - "2144004312239475707563113" + "4704614835744156058247565", + "1559532058978426374695625" ], - "LPTokenSupply": "5020877457618914104926319" + "LPTokenSupply": "6233155792140900012319242" }, { "type": "redeemBassets", "inputQtys": [ - "21998718054255140864", - "7552875210879988736" + "364478782486712811520", + "1034142569969724162048" + ], + "expectedQty": "1399793167190442883269", + "swapFee": "840380128391300510", + "reserves": [ + "4704250356961669345436045", + "1558497916408456650533577" + ], + "LPTokenSupply": "6231755242631594017265513" + }, + { + "type": "redeemMasset", + "inputQty": "1561042066002035290931", + "expectedQtys": [ + "1177698142956156855569", + "390166331015752635556" ], - "expectedQty": "29289924876483893612", - "swapFee": "17584505629267896", + "redemptionFee": "936625239601221174", "reserves": [ - "2919897667874297600543891", - "2143996759364264827574377" + "4703072658818713188580476", + "1558107750077440897898021" ], - "LPTokenSupply": "5020848151867982554691599" + "LPTokenSupply": "6230194294228115942096699" }, { "type": "redeemMasset", - "inputQty": "1061891935867991018700", + "inputQty": "6784738755261238136012", "expectedQtys": [ - "617177680717220604294", - "453175795154831836172" + "5118616267720356547498", + "1695775560994788014717" ], - "redemptionFee": "637135161520794611", + "redemptionFee": "4070843253156742881", "reserves": [ - "2919280490193580379939597", - "2143543583569109995738205" + "4697954042550992832032978", + "1556411974516446109883304" ], - "LPTokenSupply": "5019786323645630715752360" + "LPTokenSupply": "6223409962557180019634975" }, { "type": "mint", "inputIndex": 1, - "inputQty": "515369475951803712", - "expectedQty": "511615356864793205", + "inputQty": "394205395741492314112", + "expectedQty": "395748144157442976152", "reserves": [ - "2919280490193580379939597", - "2143544098938585947541917" + "4697954042550992832032978", + "1556806179912187602197416" ] }, { "type": "redeemBassets", "inputQtys": [ - "4384227026397312319488", - "526070946752106921984" + "3004558284092828811264", + "1106072364357641043968" ], - "expectedQty": "4865288023306827403749", - "swapFee": "2920925369205619814", + "expectedQty": "4091265802972963560972", + "swapFee": "2456233221716808221", "reserves": [ - "2914896263167183067620109", - "2143018027991833840619933" + "4694949484266900003221714", + "1555700107547829961153448" ], - "LPTokenSupply": "5014918918404848468083982" + "LPTokenSupply": "6219712234288464953922755" }, { "type": "redeemMasset", - "inputQty": "1426583682267133824204", + "inputQty": "183684161543518694", "expectedQtys": [ - "828697035004291611549", - "609254163929647786840" + "138570788217444751", + "45916274680967645" ], - "redemptionFee": "855950209360280294", + "redemptionFee": "110210496926111", "reserves": [ - "2914067566132178776008560", - "2142408773827904192833093" + "4694949345696111785776963", + "1555700061631555280185803" ], - "LPTokenSupply": "5013492420317602270287807" + "LPTokenSupply": "6219712050615324460096672" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5849190038041076432896", - "137983246199047837450240" + "22707712095656395931648", + "11850007002980921901056" ], - "expectedQty": "142754652515711633424902", + "expectedQty": "34425103651069913350108", + "swapFee": "20667462668242893746", "reserves": [ - "2919916756170219852441456", - "2280392020026952030283333" + "4672241633600455389845315", + "1543850054628574358284747" ], - "LPTokenSupply": "5156247072833313903712709" + "LPTokenSupply": "6185268346247853128142191" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1251456565781298688", - "118269138842278112" + "1582018070852662", + "158501247904192" ], - "expectedQty": "1357317114664479919", - "swapFee": "814879196316477", + "expectedQty": "1728642842156536", "reserves": [ - "2919915504713654071142768", - "2280391901757813188005221" + "4672241635182473460697977", + "1543850054787075606188939" ], - "LPTokenSupply": "5156245714782807962547959" + "LPTokenSupply": "6185268347976495970298727" }, { "type": "redeemMasset", - "inputQty": "97592842130942675281510", + "inputQty": "21357271303720828456140", "expectedQtys": [ - "55232409572528518938594", - "43135337067267767810822" + "16123222920867814489450", + "5327600867705093084940" ], - "redemptionFee": "58555705278565605168", + "redemptionFee": "12814362782232497073", "reserves": [ - "2864683095141125552204174", - "2237256564690545420194399" + "4656118412261605646208527", + "1538522453919370513103999" ], - "LPTokenSupply": "5058658728222393143826965" + "LPTokenSupply": "6163912358109053365092294" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "281506557325055852544", - "expectedQty": "283477407715332882521", - "swapFee": "168903934395033511", + "type": "redeemMasset", + "inputQty": "852348509745444044", + "expectedQtys": [ + "643463790220457419", + "212619912528679612" + ], + "redemptionFee": "511409105847266", "reserves": [ - "2864683095141125552204174", - "2236973087282830087311878" + "4656117768797815425751108", + "1538522241299457984424387" ], - "LPTokenSupply": "5058377238555461527477772" + "LPTokenSupply": "6163911505811684530232976" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "775843113475153330176", - "1665748278165162426368" + "3370861266355473", + "195045559227126" ], - "expectedQty": "2421870937162920311170", - "swapFee": "1453994959273316176", + "expectedQty": "3540030627591667", "reserves": [ - "2863907252027650398873998", - "2235307339004664924885510" + "4656117772168676692106581", + "1538522241494503543651513" ], - "LPTokenSupply": "5055954059022835261182042" + "LPTokenSupply": "6163911509351715157824643" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "252187071485931314741248", - "expectedQty": "253889448491877331424136", - "swapFee": "151312242891558788844", + "type": "redeemMasset", + "inputQty": "1331423141155432510259", + "expectedQtys": [ + "1005131787281641135419", + "332125965457624841893" + ], + "redemptionFee": "798853884693259506", "reserves": [ - "2863907252027650398873998", - "1981417890512787593461374" + "4655112640381395050971162", + "1538190115529045918809620" ], - "LPTokenSupply": "4803782118761193102319678" + "LPTokenSupply": "6162580166095948194640334" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "3573023419667175702528", - "outputIndex": 1, - "expectedQty": "3560926339846288478157", - "swapFee": "2830915761909748078", + "type": "redeemBassets", + "inputQtys": [ + "714707266672248750080", + "819957562446783184896" + ], + "expectedQty": "1532255999745757251657", + "swapFee": "919905543173358366", "reserves": [ - "2867480275447317574576526", - "1977856964172941304983217" + "4654397933114722802221082", + "1537370157966599135624724" ], - "LPTokenSupply": "4803782401852769293294485", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6161047082181213581366146" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "6198948981619461980160", - "outputIndex": 1, - "expectedQty": "6177760554096201079360", - "swapFee": "4911385998921386291", + "type": "mint", + "inputIndex": 1, + "inputQty": "14947198970464284180480", + "expectedQty": "15005218511508417366599", + "reserves": [ + "4654397933114722802221082", + "1552317356937063419805204" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "1966302425883809677312", + "3144961004402891554816" + ], + "expectedQty": "5107756945570191345038", "reserves": [ - "2873679224428937036556686", - "1971679203618845103903857" + "4656364235540606611898394", + "1555462317941466311360020" ], - "LPTokenSupply": "4803782892991369185433114", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6181160057638292190077783" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "37460301766307708928", - "outputIndex": 1, - "expectedQty": "37331483389966800909", - "swapFee": "29679121313519567", + "type": "redeemMasset", + "inputQty": "667918824973846288793", + "expectedQtys": [ + "502851771491385946099", + "167978049503714068345" + ], + "redemptionFee": "400751294984307773", "reserves": [ - "2873716684730703344265614", - "1971641872135455137102948" + "4655861383769115225952295", + "1555294339891962597291675" ], - "LPTokenSupply": "4803782895959281316785070", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6180492178888447842219767" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "47250465923886202486784", - "outputIndex": 0, - "expectedQty": "47368184099348825260347", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "234597978782890417192960", + "outputIndex": 1, + "expectedQty": "231150763433842455995233", + "swapFee": "186181206893305798972", "reserves": [ - "2826348500631354519005267", - "2018892338059341339589732" + "4890459362552005643145255", + "1324143576458120141296442" ], - "LPTokenSupply": "4803782895959281316785070", + "LPTokenSupply": "6180510797009137172799664", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "119099591140586907762688", - "expectedQty": "119875664114180787360031", - "swapFee": "71459754684352144657", + "type": "redeemBassets", + "inputQtys": [ + "6035411536294516736", + "13354300602625976320" + ], + "expectedQty": "19437584834928163173", + "swapFee": "11669552632536419", "reserves": [ - "2826348500631354519005267", - "1899016673945160552229701" + "4890453327140469348628519", + "1324130222157517515320122" ], - "LPTokenSupply": "4684690450794162844236847" + "LPTokenSupply": "6180491348921704875353712" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "586993651079249", - "615738912608175" + "111069811118505409380352", + "78701770860387903733760" ], - "expectedQty": "1192748634161744", + "expectedQty": "189391981051203782963883", + "swapFee": "113703410677128546906", "reserves": [ - "2826348501218348170084516", - "1899016674560899464837876" + "4779383516021963939248167", + "1245428451297129611586362" ], - "LPTokenSupply": "4684690451986911478398591" + "LPTokenSupply": "5990997034800891676697612" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "32431196867856", - "15258660834388" + "98913869493731672064", + "5142732094959190540288" ], - "expectedQty": "47268469912471", + "expectedQty": "5284992332593686422054", + "swapFee": "3172899139039635634", "reserves": [ - "2826348501250779366952372", - "1899016674576158125672264" + "4779284602152470207576103", + "1240285719202170421046074" ], - "LPTokenSupply": "4684690452034179948311062" + "LPTokenSupply": "5985709186859072854603486" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "79680876859265850015744", - "outputIndex": 0, - "expectedQty": "79883239109807854918379", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4842657631908049977344", + "expectedQty": "4885325064980602219591", + "swapFee": "2905594579144829986", "reserves": [ - "2746465262140971512033993", - "1978697551435423975688008" + "4774399277087489605356512", + "1240285719202170421046074" ], - "LPTokenSupply": "4684690452034179948311062", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5980866819786622719109140" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "6220683873956453376", - "expectedQty": "6276627371649218942", - "swapFee": "3732410324373872", + "inputQty": "2101913727662545920", + "expectedQty": "2082311846072238885", "reserves": [ - "2746458985513599862815051", - "1978697551435423975688008" - ], - "LPTokenSupply": "4684684231723547024295073" + "4774401379001217267902432", + "1240285719202170421046074" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "255944977770570791780352", + "hardLimitError": true }, { "type": "redeemBassets", "inputQtys": [ - "67239523893898653990912", - "25589236075225690406912" + "54165709161432912", + "300173545232692032" ], - "expectedQty": "92004344953886943520805", - "swapFee": "55235748421384997110", + "expectedQty": "356425326350773751", + "swapFee": "213983585962041", "reserves": [ - "2679219461619701208824139", - "1953108315360198285281096" + "4774401324835508106469520", + "1240285419028625188354042" ], - "LPTokenSupply": "4592630174596080834276868" + "LPTokenSupply": "5980868545480557213208436" }, { "type": "redeemMasset", - "inputQty": "212239688418656858931", + "inputQty": "17265383207859312499097", "expectedQtys": [ - "123740754232862785524", - "90205039006040120892" + "13774322025949167368700", + "3578268688248192180852" ], - "redemptionFee": "127343813051194115", + "redemptionFee": "10359229924715587499", "reserves": [ - "2679095720865468346038615", - "1953018110321192245160204" + "4760627002809558939100820", + "1236707150340376996173190" ], - "LPTokenSupply": "4592417947642043482537348" + "LPTokenSupply": "5963604198195690372268088" }, { "type": "redeemMasset", - "inputQty": "1685085558987884907724", + "inputQty": "5199621304072599961", "expectedQtys": [ - "982444729227437622312", - "716186560124454536454" + "4148264151649415913", + "1077628626401066393" ], - "redemptionFee": "1011051335392730944", + "redemptionFee": "3119772782443559", "reserves": [ - "2678113276136240908416303", - "1952301923761067790623750" + "4760622854545407289684907", + "1236706072711750595106797" ], - "LPTokenSupply": "4590732963188189136902718" + "LPTokenSupply": "5963598998886363577912482" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1210865835810300", - "expectedQty": "1199384641620530", + "type": "redeemMasset", + "inputQty": "144515514493132839321", + "expectedQtys": [ + "115294651928158335582", + "29951038035832074344" + ], + "redemptionFee": "86709308695879703", "reserves": [ - "2678113277347106744226603", - "1952301923761067790623750" - ] + "4760507559893479131349325", + "1236676121673714763032453" + ], + "LPTokenSupply": "5963454492042801314661131" }, { "type": "mintMulti", "inputQtys": [ - "13085319142345988374528", - "30134896860894563663872" + "45792782479117973979136", + "16826184902191714664448" ], - "expectedQty": "42875126962243792858985", + "expectedQty": "62336829744728125543222", "reserves": [ - "2691198596489452732601131", - "1982436820621962354287622" + "4806300342372597105328461", + "1253502306575906477696901" ], - "LPTokenSupply": "4633608091349817571382233" + "LPTokenSupply": "6025791321787529440204353" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "712945679963989213184", - "outputIndex": 1, - "expectedQty": "710876792704234619264", - "swapFee": "564966876098507603", + "inputQty": "167509571382140436480", + "expectedQty": "165951339781357143321", "reserves": [ - "2691911542169416721814315", - "1981725943829258119668358" - ], - "LPTokenSupply": "4633608147846505181232993", - "hardLimitError": false, - "insufficientLiquidityError": false + "4806467851943979245764941", + "1253502306575906477696901" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2634413724234305024", - "expectedQty": "2652356836423726544", - "swapFee": "1580648234540583", + "type": "mintMulti", + "inputQtys": [ + "95209640998531248", + "173221547640359200" + ], + "expectedQty": "269024009028008809", "reserves": [ - "2691911542169416721814315", - "1981723291472421695941814" + "4806467947153620244296189", + "1253502479797454118056101" ], - "LPTokenSupply": "4633605513590845770382027" + "LPTokenSupply": "6025957542151319825356483" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "212008131280598663168", - "expectedQty": "213452078768596678205", - "swapFee": "127204878768359197", + "type": "mint", + "inputIndex": 0, + "inputQty": "119259145588475514847232", + "expectedQty": "118140355903797640647110", "reserves": [ - "2691911542169416721814315", - "1981509839393653099263609" - ], - "LPTokenSupply": "4633393518180053048554778" + "4925727092742095759143421", + "1253502479797454118056101" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "329617817492035076096", - "16050299961454288896" + "type": "redeemMasset", + "inputQty": "371610572405084782592", + "expectedQtys": [ + "297741673951114914478", + "75769509680448078367" ], - "expectedQty": "342434492286910315348", + "redemptionFee": "222966343443050869", "reserves": [ - "2692241159986908756890411", - "1981525889693614553552505" + "4925429351068144644228943", + "1253426710287773669977734" ], - "LPTokenSupply": "4633735952672339958870126" + "LPTokenSupply": "6143726309779346725526087" }, { "type": "redeemBassets", "inputQtys": [ - "4589243682226429", - "657515297557784" + "1943462160496249344", + "3264656598487311872" ], - "expectedQty": "5198542108853246", - "swapFee": "3120997864030", + "expectedQty": "5219593269255042203", + "swapFee": "3133636143238968", "reserves": [ - "2692241155397665074663982", - "1981525889036099255994721" + "4925427407605984147979599", + "1253423445631175182665862" ], - "LPTokenSupply": "4633735947470988951939252" + "LPTokenSupply": "6143721087365804941568811" }, { "type": "redeemBassets", "inputQtys": [ - "303864211854155907072", - "39044078757781520384" + "15289371901731282944", + "87892164633604882432" ], - "expectedQty": "339748836251187522076", - "swapFee": "203971684761569454", + "expectedQty": "103840860140244185026", + "swapFee": "62341921236888644", "reserves": [ - "2691937291185810918756910", - "1981486844957341474474337" + "4925412118234082416696655", + "1253335553466541577783430" ], - "LPTokenSupply": "4633396015060221479004666" + "LPTokenSupply": "6143617190397935584184004" }, { - "type": "mintMulti", - "inputQtys": [ - "203485563647708037120", - "941697591840961462272" - ], - "expectedQty": "1136327894535184108510", + "type": "redeem", + "inputIndex": 0, + "inputQty": "419939149377128609349632", + "expectedQty": "423575805517421049922717", + "swapFee": "251963489626277165609", "reserves": [ - "2692140776749458626794030", - "1982428542549182435936609" + "4501836312716661366773938", + "1253335553466541577783430" ], - "LPTokenSupply": "4634532342954756663113176" + "LPTokenSupply": "5723703237369769602550932" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "6720478871233384448", + "expectedQty": "6660402930860823820", + "reserves": [ + "4501843033195532600158386", + "1253335553466541577783430" + ] }, { "type": "redeemMasset", - "inputQty": "15566104579500168498380", + "inputQty": "195273874619108530585", "expectedQtys": [ - "9036726488781690007016", - "6654430807367205810608" + "153495703365714098386", + "42733969379657730110" ], - "redemptionFee": "9339662747700101099", + "redemptionFee": "117164324771465118", "reserves": [ - "2683104050260676936787014", - "1975774111741815230126001" + "4501689537492166886060000", + "1253292819497161920053320" ], - "LPTokenSupply": "4618967172341531264624905" + "LPTokenSupply": "5723514635614513831990678" }, { "type": "mintMulti", "inputQtys": [ - "1016156244464496", - "951560275080968" - ], - "expectedQty": "1951104275205251", - "reserves": [ - "2683104051276833181251510", - "1975774112693375505206969" + "58480648607903023890432", + "104632092687786043244544" ], - "LPTokenSupply": "4618967174292635539830156" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "361210492998102080", - "expectedQty": "363671818057961016", - "swapFee": "216726295798861", + "expectedQty": "163260662299814052266684", "reserves": [ - "2683104051276833181251510", - "1975773749021557447245953" + "4560170186100069909950432", + "1357924912184947963297864" ], - "LPTokenSupply": "4618966813103815171307962" + "LPTokenSupply": "5886775297914327884257362" }, { "type": "redeemMasset", - "inputQty": "379839447429497592217", + "inputQty": "2161386069982640947", "expectedQtys": [ - "220511926625485044920", - "162379716793118541193" + "1673305680189052465", + "498276023942109789" ], - "redemptionFee": "227903668457698555", + "redemptionFee": "1296831641989584", "reserves": [ - "2682883539350207696206590", - "1975611369304764328704760" + "4560168512794389720897967", + "1357924413908924021188075" ], - "LPTokenSupply": "4618586996446752519485600" + "LPTokenSupply": "5886773136657941065815373" }, { "type": "mint", "inputIndex": 0, - "inputQty": "27443755775801", - "expectedQty": "27184347575172", + "inputQty": "36934895629258236887040", + "expectedQty": "36618287145452083891236", "reserves": [ - "2682883539377651451982391", - "1975611369304764328704760" + "4597103408423647957785007", + "1357924413908924021188075" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "27598074414840295424", - "expectedQty": "27337207096819643315", + "type": "mintMulti", + "inputQtys": [ + "10079348224479655936", + "8957220661966206976" + ], + "expectedQty": "19001883170095230186", "reserves": [ - "2682911137452066292277815", - "1975611369304764328704760" - ] + "4597113487771872437440943", + "1357933371129585987395051" + ], + "LPTokenSupply": "5923410425686563244936795" }, { "type": "redeemBassets", "inputQtys": [ - "327111147940153786368", - "67337962493977223168" + "12626483088713226240", + "43481003233390673920" ], - "expectedQty": "390861288975684419434", - "swapFee": "234657567926166351", + "expectedQty": "56251126811523635861", + "swapFee": "33770938650104244", "reserves": [ - "2682584026304126138491447", - "1975544031342270351481592" + "4597100861288783724214703", + "1357889890126352596721131" ], - "LPTokenSupply": "4618223261200246868734936" + "LPTokenSupply": "5923354144165906936207113" }, { "type": "redeemBassets", "inputQtys": [ - "6541681623010734080", - "7503410357533860864" + "9214470331732247707648", + "4171688285977056903168" ], - "expectedQty": "13928001287798484214", - "swapFee": "8361817863397128", + "expectedQty": "13331169869690682520406", + "swapFee": "8003504024228946880", "reserves": [ - "2682577484622503127757367", - "1975536527931912817620728" + "4587886390957051476507055", + "1353718201840375539817963" ], - "LPTokenSupply": "4618209325673322993193305" + "LPTokenSupply": "5910015771142594447634514" }, { - "type": "mintMulti", - "inputQtys": [ - "12351481122515480", - "9351337616297684" - ], - "expectedQty": "21517204076181579", + "type": "redeem", + "inputIndex": 1, + "inputQty": "8264472611956273971200", + "expectedQty": "8211251607765055755067", + "swapFee": "4958683567173764382", "reserves": [ - "2682577496973984250272847", - "1975536537283250433918412" + "4587886390957051476507055", + "1345506950232610484062896" ], - "LPTokenSupply": "4618209347190527069374884" + "LPTokenSupply": "5901751794398994891039752" }, { - "type": "redeemMasset", - "inputQty": "6269909498657139916", - "expectedQtys": [ - "3639814732199081268", - "2680476892284491239" - ], - "redemptionFee": "3761945699194283", + "type": "swap", + "inputIndex": 0, + "inputQty": "2753034724664415744", + "outputIndex": 1, + "expectedQty": "2710979969445363177", + "swapFee": "2183404164505596", "reserves": [ - "2682573857159252051191579", - "1975533856806358149427173" + "4587889143991776140922799", + "1345504239252641038699719" ], - "LPTokenSupply": "4618203077657222982154396" + "LPTokenSupply": "5901751794617335307490311", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "84620919576983984", - "223331461364793056" + "type": "redeemMasset", + "inputQty": "42972694291042179481", + "expectedQtys": [ + "33385962695191563808", + "9791203084481349836" ], - "expectedQty": "305507841628049109", - "swapFee": "183414753829126", + "redemptionFee": "25783616574625307", "reserves": [ - "2682573772538332474207595", - "1975533633474896784634117" + "4587855758029080949358991", + "1345494448049556557349883" ], - "LPTokenSupply": "4618202771984308075659072" + "LPTokenSupply": "5901708824501405922773360" }, { - "type": "mintMulti", - "inputQtys": [ - "255924226272428720128", - "293170464906909810688" - ], - "expectedQty": "544516634505566027162", + "type": "swap", + "inputIndex": 1, + "inputQty": "394956340548021504", + "outputIndex": 0, + "expectedQty": "400762344280711848", + "swapFee": "0", "reserves": [ - "2682829696764604902927723", - "1975826803939803694444805" + "4587855357266736668647143", + "1345494843005897105371387" ], - "LPTokenSupply": "4618747288618813641686234" + "LPTokenSupply": "5901708824501405922773360", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "82301234732675782148096", - "expectedQty": "83032637493236204894525", - "swapFee": "49380740839605469288", + "type": "swap", + "inputIndex": 1, + "inputQty": "11994875490037913354240", + "outputIndex": 0, + "expectedQty": "12169455074894605919285", + "swapFee": "0", "reserves": [ - "2599797059271368698033198", - "1975826803939803694444805" + "4575685902191842062727858", + "1357489718495935018725627" ], - "LPTokenSupply": "4536450991960221820085066" + "LPTokenSupply": "5901708824501405922773360", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "11327635124678272483328", - "4123211830558211964928" + "1290879644927575982080", + "4832326827032237309952" ], - "expectedQty": "15313852106189538273912", - "swapFee": "9193827560249872888", + "expectedQty": "6139892647182553218867", + "swapFee": "3686147276675537253", "reserves": [ - "2588469424146690425549870", - "1971703592109245482479877" + "4574395022546914486745778", + "1352657391668902781415675" ], - "LPTokenSupply": "4521128865409228056925553" + "LPTokenSupply": "5895565614321674361570964" }, { - "type": "mintMulti", - "inputQtys": [ - "86076996850335121408", - "100035918492057518080" + "type": "redeemMasset", + "inputQty": "4218089304307363164979", + "expectedQtys": [ + "3270870151526542761219", + "967202584351401262880" ], - "expectedQty": "184555467124526508232", + "redemptionFee": "2530853582584417898", "reserves": [ - "2588555501143540760671278", - "1971803628027737539997957" + "4571124152395387943984559", + "1351690189084551380152795" ], - "LPTokenSupply": "4521313420876352583433785" + "LPTokenSupply": "5891347778102725256847774" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1470153481563004416", - "expectedQty": "1480398352128626546", - "swapFee": "882092088937802", + "type": "redeemMasset", + "inputQty": "3192161366487", + "expectedQtys": [ + "2475326769086", + "731958878604" + ], + "redemptionFee": "1915296819", "reserves": [ - "2588555501143540760671278", - "1971802147629385411371411" + "4571124152392912617215473", + "1351690189083819421274191" ], - "LPTokenSupply": "4521311950811080229323149" + "LPTokenSupply": "5891347778099533287010968" }, { - "type": "mintMulti", - "inputQtys": [ - "21199875561015392337920", - "27008952648404037533696" + "type": "redeemMasset", + "inputQty": "3073292905025316", + "expectedQtys": [ + "2383151515121175", + "704702479017822" ], - "expectedQty": "47807302095117283242057", + "redemptionFee": "1843975743015", "reserves": [ - "2609755376704556153009198", - "1998811100277789448905107" + "4571124150009761102094298", + "1351690188379116942256369" ], - "LPTokenSupply": "4569119252906197512565206" + "LPTokenSupply": "5891347775026424779559953" }, { - "type": "mintMulti", - "inputQtys": [ - "5742847755219724402688", - "8723932544135143096320" + "type": "redeemMasset", + "inputQty": "984037412703068364", + "expectedQtys": [ + "763061095538689713", + "225638631138746114" ], - "expectedQty": "14347349575262487168543", + "redemptionFee": "590422447621841", "reserves": [ - "2615498224459775877411886", - "2007535032821924592001427" + "4571123386948665563404585", + "1351689962740485803510255" ], - "LPTokenSupply": "4583466602481459999733749" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "23283553869222633275392", - "expectedQty": "23065881391158699825092", - "reserves": [ - "2638781778328998510687278", - "2007535032821924592001427" - ] + "LPTokenSupply": "5891346791048054321253773" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "148125173300955447296000", - "expectedQty": "146725650525216254292571", + "inputQty": "1027861080263436544", + "expectedQty": "1036146621083506514", + "swapFee": "616716648158061", "reserves": [ - "2786906951629953957983278", - "2007535032821924592001427" - ] + "4571122350802044479898071", + "1351689962740485803510255" + ], + "LPTokenSupply": "5891345763248645722633035" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "680420537961121", - "783702003335629" + "20112678112350007296", + "55141972629942665216" ], - "expectedQty": "1451930041924705", + "expectedQty": "75400357015000079266", + "swapFee": "45267374633780315", "reserves": [ - "2786906952310374495944399", - "2007535033605626595337056" + "4571102238123932129890775", + "1351634820767855860845039" ], - "LPTokenSupply": "4753258135849764995776117" + "LPTokenSupply": "5891270322150993552151484" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "79350820561374523949056", - "expectedQty": "78766429899217418062843", + "type": "redeemMasset", + "inputQty": "2131024675871841373388", + "expectedQtys": [ + "1652493682011415971546", + "488627881274914011086" + ], + "redemptionFee": "1278614805523104824", "reserves": [ - "2786906952310374495944399", - "2086885854167001119286112" - ] + "4569449744441920713919229", + "1351146192886580946833953" + ], + "LPTokenSupply": "5889139425336602263088578" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "132599330515854032", - "expectedQty": "133778865611146988", - "swapFee": "79559598309512", + "inputIndex": 1, + "inputQty": "3098123737160753348608", + "expectedQty": "3078415677941599716211", + "swapFee": "1858874242296452009", "reserves": [ - "2786906818531508884797411", - "2086885854167001119286112" + "4569449744441920713919229", + "1348067777208639347117742" ], - "LPTokenSupply": "4832024433157607857815879" + "LPTokenSupply": "5886041487486865739385170" }, { "type": "mintMulti", "inputQtys": [ - "5944281768947434389504", - "6521582709272173608960" + "34584118279577979060224", + "17970096175322337640448" ], - "expectedQty": "12361355651912791164197", + "expectedQty": "52360765332298965431659", "reserves": [ - "2792851100300456319186915", - "2093407436876273292895072" + "4604033862721498692979453", + "1366037873383961684758190" ], - "LPTokenSupply": "4844385788809520648980076" + "LPTokenSupply": "5938402252819164704816829" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "102963478264311757930496", - "outputIndex": 1, - "expectedQty": "102644969580569681088071", - "swapFee": "81591110163516420790", + "inputIndex": 1, + "inputQty": "11875071396730026065920", + "outputIndex": 0, + "expectedQty": "12044499454591509315574", + "swapFee": "0", "reserves": [ - "2895814578564768077117411", - "1990762467295703611807001" + "4591989363266907183663879", + "1377912944780691710824110" ], - "LPTokenSupply": "4844393947920537000622155", + "LPTokenSupply": "5938402252819164704816829", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "31140691216908", - "36976255738133" + "type": "redeemMasset", + "inputQty": "10667038650088027271987", + "expectedQtys": [ + "8243553767128189563531", + "2473633658123379587518" ], - "expectedQty": "67552981958779", + "redemptionFee": "6400223190052816363", "reserves": [ - "2895814578595908768334319", - "1990762467332679867545134" + "4583745809499778994100348", + "1375439311122568331236592" ], - "LPTokenSupply": "4844393947988089982580934" + "LPTokenSupply": "5927735854191395682826478" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "9540290691266626191360", - "expectedQty": "9472568380128095768064", + "type": "redeem", + "inputIndex": 0, + "inputQty": "74660514668152848384", + "expectedQty": "75256203152689745509", + "swapFee": "44796308800891709", "reserves": [ - "2895814578595908768334319", - "2000302758023946493736494" - ] + "4583670553296626304354839", + "1375439311122568331236592" + ], + "LPTokenSupply": "5927661198156358410067264" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "49311130132162000453632", - "expectedQty": "48832509742951815001035", + "type": "redeem", + "inputIndex": 1, + "inputQty": "399594172591108249354240", + "hardLimitError": true + }, + { + "type": "mintMulti", + "inputQtys": [ + "14210926257749639561216", + "24443494946422487252992" + ], + "expectedQty": "38665148612493581013587", "reserves": [ - "2945125708728070768787951", - "2000302758023946493736494" - ] + "4597881479554375943916055", + "1399882806068990818489584" + ], + "LPTokenSupply": "5966326346768851991080851" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "40305081035748053876736", - "expectedQty": "39911929322356074026488", + "inputQty": "58893245237426051350528", + "expectedQty": "59356180433531294938702", + "swapFee": "35335947142455630810", "reserves": [ - "2985430789763818822664687", - "2000302758023946493736494" - ] + "4538525299120844648977353", + "1399882806068990818489584" + ], + "LPTokenSupply": "5907436635126140185293404" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "30500271708681773056", - "37912871081861251072" + "1214861868912202743808", + "1584638153620213465088" ], - "expectedQty": "67850814803880912982", - "swapFee": "40734929840232687", + "expectedQty": "2797242174587029975486", "reserves": [ - "2985400289492110140891631", - "2000264845152864632485422" + "4539740160989756851721161", + "1401467444222611031954672" ], - "LPTokenSupply": "4942543067957285230254119" + "LPTokenSupply": "5910233877300727215268890" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "142444952432175742976000", - "expectedQty": "143332321942346113085867", - "swapFee": "85466971459305445785", + "inputQty": "429587480425162407936", + "expectedQty": "427201854514412979996", + "swapFee": "257752488255097444", "reserves": [ - "2985400289492110140891631", - "1856932523210518519399555" + "4539740160989756851721161", + "1401040242368096618974676" ], - "LPTokenSupply": "4800106662222255417822697" + "LPTokenSupply": "5909804315595550878370698" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "83051093714285979762688", - "outputIndex": 0, - "expectedQty": "83312705934718361578939", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "54014918470211985408", + "4816780429465182208" + ], + "expectedQty": "58404067537190651630", + "swapFee": "35063478609480079", "reserves": [ - "2902087583557391779312692", - "1939983616924804499162243" + "4539686146071286639735753", + "1401035425587667153792468" ], - "LPTokenSupply": "4800106662222255417822697", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5909745879970882939186995" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "162114512544094781440", - "outputIndex": 1, - "expectedQty": "161523639191787983272", - "swapFee": "128420729916865107", + "inputQty": "9463093509040522657792", + "expectedQty": "9537103720998110275569", + "swapFee": "5677856105424313594", "reserves": [ - "2902249698069935874094132", - "1939822093285612711178971" + "4530149042350288529460184", + "1401035425587667153792468" ], - "LPTokenSupply": "4800106675064328409509207", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5900283354247452958960562" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "623569997481789882368", - "expectedQty": "619222080644708756385", + "inputQty": "563714393175847862272", + "expectedQty": "560601700091807830208", + "swapFee": "338228635905508717", "reserves": [ - "2902249698069935874094132", - "1940445663283094501061339" - ] + "4530149042350288529460184", + "1400474823887575345962260" + ], + "LPTokenSupply": "5899719673677140701649161" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "15916849536769074397184", - "expectedQty": "15760747872734678033492", - "reserves": [ - "2918166547606704948491316", - "1940445663283094501061339" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "190276338172508793470976", - "170305520760613112905728" - ], - "expectedQty": "357528757814655517462956", + "inputQty": "8992064254209431699456", + "expectedQty": "9062316843181719180920", + "swapFee": "5395238552525659019", "reserves": [ - "3108442885779213741962292", - "2110751184043707613967067" + "4521086725507106810279264", + "1400474823887575345962260" ], - "LPTokenSupply": "5174015402832363313762040" + "LPTokenSupply": "5890728148946786522515606" }, { "type": "mintMulti", "inputQtys": [ - "259609437149059936", - "9868318069369757696" + "62702031521702494208", + "13530952408855508992" ], - "expectedQty": "10055860033987447188", + "expectedQty": "75776393271126063308", "reserves": [ - "3108443145388650891022228", - "2110761052361776983724763" + "4521149427538628512773472", + "1400488354839984201471252" ], - "LPTokenSupply": "5174025458692397301209228" + "LPTokenSupply": "5890803925340057648578914" }, { "type": "redeemMasset", - "inputQty": "18370473247046966129459", + "inputQty": "523127114270139", "expectedQtys": [ - "11029963024914482413964", - "7489799643438247463549" + "401255380701538", + "124294385088554" ], - "redemptionFee": "11022283948228179677", + "redemptionFee": "313876268562", "reserves": [ - "3097413182363736408608264", - "2103271252718338736261214" + "4521149427137373132071934", + "1400488354715689816382698" ], - "LPTokenSupply": "5155656087673745157897736" + "LPTokenSupply": "5890803924816961921935631" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "77500798095844524032", - "288566636241155358720" + "20542897895714648064", + "58369183861890719744" ], - "expectedQty": "363277844207026951943", - "swapFee": "218097565063254123", + "expectedQty": "79027658709173958638", "reserves": [ - "3097335681565640564084232", - "2102982686082097580902494" + "4521169970035268846719998", + "1400546723899551707102442" ], - "LPTokenSupply": "5155292613541729574017081" + "LPTokenSupply": "5890882952475671095894269" }, { - "type": "redeemBassets", - "inputQtys": [ - "293731241086305446133760", - "175634002850376637743104" - ], - "expectedQty": "465263715269310198796090", - "swapFee": "279325824656379947246", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4099792641963744768", + "expectedQty": "4077288659339471134", + "swapFee": "2459875585178246", "reserves": [ - "2803604440479335117950472", - "1927348683231720943159390" + "4521169970035268846719998", + "1400542646610892367631308" ], - "LPTokenSupply": "4689777505030228633268468" + "LPTokenSupply": "5890878852929016690667325" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3941185113149142466560", - "2846044742277052497920" + "61750211877523480576", + "169478031143455358976" ], - "expectedQty": "6728368671631704835754", - "swapFee": "4039444869900963479", + "expectedQty": "231546100861141600228", "reserves": [ - "2799663255366185975483912", - "1924502638489443890661470" + "4521231720247146370200574", + "1400712124642035822990284" ], - "LPTokenSupply": "4683045500858214017565581" + "LPTokenSupply": "5891110399029877832267553" }, { "type": "redeemBassets", "inputQtys": [ - "37958421598626153234432", - "520995609286303350784" + "17322204690968121180160", + "36803961805265174528000" ], - "expectedQty": "38105752771449796154800", - "swapFee": "22877177969651668694", + "expectedQty": "54168861031915962381717", + "swapFee": "32520829116619549158", "reserves": [ - "2761704833767559822249480", - "1923981642880157587310686" + "4503909515556178249020414", + "1363908162836770648462284" ], - "LPTokenSupply": "4644919158626591534908955" + "LPTokenSupply": "5836912269251756912291592" }, { "type": "redeemBassets", "inputQtys": [ - "166167475804675506176", - "571427840268741509120" + "187371283860156960", + "30482738525766788" ], - "expectedQty": "731850716599089334312", - "swapFee": "439374054392088853", + "expectedQty": "216428686576166866", + "swapFee": "129935173049529", "reserves": [ - "2761538666291755146743304", - "1923410215039888845801566" + "4503909328184894388863454", + "1363908132354032122695496" ], - "LPTokenSupply": "4644186912473343492694674" + "LPTokenSupply": "5836912052706128680380148" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "145370860070717509074944", - "expectedQty": "146698487475553916320697", - "swapFee": "87222516042430505444", + "inputIndex": 1, + "inputQty": "1148324964300129304576", + "expectedQty": "1141557774859072923576", + "swapFee": "688994978580077582", "reserves": [ - "2614840178816201230422607", - "1923410215039888845801566" + "4503909328184894388863454", + "1362766574579173049771920" ], - "LPTokenSupply": "4498824774654230226670274" + "LPTokenSupply": "5835763796641326409083330" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "12495420821724200960", - "outputIndex": 0, - "expectedQty": "12521865718017828771", - "swapFee": "0", + "inputQty": "514756377217474363392", + "expectedQty": "511717272189873824145", + "swapFee": "308853826330484618", "reserves": [ - "2614827656950483212593836", - "1923422710460710570002526" + "4503909328184894388863454", + "1362254857306983175947775" ], - "LPTokenSupply": "4498824774654230226670274", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5835249071149491567768399" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "51342966444981798043648", + "expectedQty": "50906015603437902091596", + "reserves": [ + "4555252294629876186907102", + "1362254857306983175947775" + ] }, { "type": "mintMulti", "inputQtys": [ - "25068309667326197760000", - "53362967598490542145536" + "30293603934519653564416", + "15426213480688181575680" ], - "expectedQty": "77790776240924177337043", + "expectedQty": "45546371094516245574055", "reserves": [ - "2639895966617809410353836", - "1976785678059201112148062" + "4585545898564395840471518", + "1377681070787671357523455" ], - "LPTokenSupply": "4576615550895154404007317" + "LPTokenSupply": "5931701457847445715434050" }, { - "type": "redeemMasset", - "inputQty": "2886951112526091059", - "expectedQtys": [ - "1664259923674818515", - "1246217738611581090" + "type": "mintMulti", + "inputQtys": [ + "78651085800047712", + "33768780361328728" ], - "redemptionFee": "1732170667515654", + "expectedQty": "111934525039994995", "reserves": [ - "2639894302357885735535321", - "1976784431841462500566972" + "4585545977215481640519230", + "1377681104556451718852183" ], - "LPTokenSupply": "4576612664117258944667823" + "LPTokenSupply": "5931701569781970755429045" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1598810969804027723776", - "expectedQty": "1583588349658422435987", + "type": "swap", + "inputIndex": 1, + "inputQty": "58160369490214910951424", + "outputIndex": 0, + "expectedQty": "58942768263247438153419", + "swapFee": "0", "reserves": [ - "2641493113327689763259097", - "1976784431841462500566972" - ] + "4526603208952234202365811", + "1435841474046666629803607" + ], + "LPTokenSupply": "5931701569781970755429045", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "2558888797776069001216", - "22008402352857432457216" + "type": "redeemMasset", + "inputQty": "1726453725178116230348", + "expectedQtys": [ + "1316701775710267197298", + "417658657329786575232" ], - "expectedQty": "24376297561784518146902", + "redemptionFee": "1035872235106869738", "reserves": [ - "2644052002125465832260313", - "1998792834194319933024188" + "4525286507176523935168513", + "1435423815389336843228375" ], - "LPTokenSupply": "4602572550028701885250712" + "LPTokenSupply": "5929975219644016149885670" }, { "type": "redeemBassets", "inputQtys": [ - "53907068772961272", - "18927011602220416" + "14157750475584390037504", + "21703099339592553201664" ], - "expectedQty": "72178735710059671", - "swapFee": "43333241370858", + "expectedQty": "35843988403785100995766", + "swapFee": "21519304625046088250", "reserves": [ - "2644051948218397059299041", - "1998792815267308330803772" + "4511128756700939545131009", + "1413720716049744290026711" ], - "LPTokenSupply": "4602572477810966257957267" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2143841011563847483392", - "expectedQty": "2123491656794334439220", - "reserves": [ - "2646195789229960906782433", - "1998792815267308330803772" - ] + "LPTokenSupply": "5894111863866068507410478" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "111334207531852337512448", - "expectedQty": "112104857710751602969545", - "swapFee": "66800524519111402507", + "type": "mintMulti", + "inputQtys": [ + "261523072695550083072", + "1392662384252124659712" + ], + "expectedQty": "1658562225245103763020", "reserves": [ - "2646195789229960906782433", - "1886687957556556727834227" + "4511390279773635095214081", + "1415113378433996414686423" ], - "LPTokenSupply": "4493368441988360166024289" + "LPTokenSupply": "5895770426091313611173498" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "95975485314154544", - "expectedQty": "95045816841406425", + "inputIndex": 1, + "inputQty": "185188527205631496552448", + "expectedQty": "185873169384525662904198", "reserves": [ - "2646195885205446220936977", - "1886687957556556727834227" + "4511390279773635095214081", + "1600301905639627911238871" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "23134603287715", - "expectedQty": "23346872477850", - "swapFee": "13880761972", + "type": "mintMulti", + "inputQtys": [ + "3186859996140454", + "2538835165335251" + ], + "expectedQty": "5708431514171991", "reserves": [ - "2646195885182099348459127", - "1886687957556556727834227" + "4511390282960495091354535", + "1600301908178463076574122" ], - "LPTokenSupply": "4493368537011043792219196" + "LPTokenSupply": "6081643601184270788249687" }, { "type": "mint", "inputIndex": 1, - "inputQty": "8448298125785742442496", - "expectedQty": "8386049898279668485237", + "inputQty": "1617594471653251584", + "expectedQty": "1622145907879385800", "reserves": [ - "2646195885182099348459127", - "1895136255682342470276723" + "4511390282960495091354535", + "1600303525772934729825706" ] }, { "type": "redeemMasset", - "inputQty": "3030728856536643993", + "inputQty": "303241117687299755212", "expectedQtys": [ - "1780436968118937209", - "1275102371723002473" + "224810583008797657108", + "79745964338062183336" + ], + "redemptionFee": "181944670612379853", + "reserves": [ + "4511165472377486293697427", + "1600223779808596667642370" + ], + "LPTokenSupply": "6081342000406958429118260" + }, + { + "type": "mintMulti", + "inputQtys": [ + "25056963766408596", + "36547992523157824" ], - "redemptionFee": "1818437313921986", + "expectedQty": "61515886081266697", "reserves": [ - "2646194104745131229521918", - "1895134980579970747274250" + "4511165497434450060106023", + "1600223816356589190800194" ], - "LPTokenSupply": "4501751556362310655452638" + "LPTokenSupply": "6081342061922844510384957" }, { "type": "mintMulti", "inputQtys": [ - "81576676171254627041280", - "1679932600858278100992" + "21634405838227700", + "12511162215663118" ], - "expectedQty": "82451481022144564400486", + "expectedQty": "34015078490024105", "reserves": [ - "2727770780916385856563198", - "1896814913180829025375242" + "4511165519068855898333723", + "1600223828867751406463312" ], - "LPTokenSupply": "4584203037384455219853124" + "LPTokenSupply": "6081342095937923000409062" }, { "type": "redeemMasset", - "inputQty": "5235754828202536389836", + "inputQty": "9364630546865428889", "expectedQtys": [ - "3113598973821779115680", - "2165108963160607309863" + "6942554869752572526", + "2462698761293299252" ], - "redemptionFee": "3141452896921521833", + "redemptionFee": "5618778328119257", "reserves": [ - "2724657181942564077447518", - "1894649804217668418065379" + "4511158576513986145761197", + "1600221366168990113164060" ], - "LPTokenSupply": "4578967596701542375615471" + "LPTokenSupply": "6081332731869253967792098" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "6051959530838578176", - "outputIndex": 1, - "expectedQty": "6031778082262377320", - "swapFee": "4794286353881760", + "inputQty": "5165792849450583982080", + "expectedQty": "5202523607817463230566", + "swapFee": "3099475709670350389", "reserves": [ - "2724663233902094916025694", - "1894643772439586155688059" + "4505956052906168682530631", + "1600221366168990113164060" ], - "LPTokenSupply": "4578967597180971011003647", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6076167248967374350845056" + }, + { + "type": "mintMulti", + "inputQtys": [ + "293588656715095424", + "495781401063752320" + ], + "expectedQty": "788510020068480483", + "reserves": [ + "4505956346494825397626055", + "1600221861950391176916380" + ], + "LPTokenSupply": "6076168037477394419325539" }, { "type": "redeemMasset", - "inputQty": "285899531786596856627", + "inputQty": "71772139627966142873", "expectedQtys": [ - "170019232143582683878", - "118225942702823641240" + "53192749902205837900", + "18890596078895471703" ], - "redemptionFee": "171539719071958113", + "redemptionFee": "43063283776779685", "reserves": [ - "2724493214669951333341816", - "1894525546496883332046819" + "4505903153744923191788155", + "1600202971354312281444677" ], - "LPTokenSupply": "4578681714803156321342831" + "LPTokenSupply": "6076096269644094830860634" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "734406812641095", - "2039020477791663" + "286987849314382", + "162053824281719" ], - "expectedQty": "2751477705578388", + "expectedQty": "447298529471948", + "swapFee": "268540241828", "reserves": [ - "2724493215404358145982911", - "1894525548535903809838482" + "4505903153457935342473773", + "1600202971192258457162958" ], - "LPTokenSupply": "4578681717554634026921219" + "LPTokenSupply": "6076096269196554615171039" }, { "type": "redeemMasset", - "inputQty": "941984493742362009", + "inputQty": "11664055945307522859008", "expectedQtys": [ - "560181000169999063", - "389531972634752284" + "8644624751664243718691", + "3070006997784534386040" ], - "redemptionFee": "565190696245417", + "redemptionFee": "6998433567184513715", "reserves": [ - "2724492655223357975983848", - "1894525159003931175086198" + "4497258528706271098755082", + "1597132964194473922776918" ], - "LPTokenSupply": "4578680775626659354183751" + "LPTokenSupply": "6064432913094603810763402" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "675646434241520467968", - "expectedQty": "680169943515674363324", - "swapFee": "405387860544912280", + "type": "redeemBassets", + "inputQtys": [ + "72796209473700978688", + "65667154083661570048" + ], + "expectedQty": "138089779103820225486", + "swapFee": "82903609628068976", + "reserves": [ + "4497185732496797397776394", + "1597067297040390261206870" + ], + "LPTokenSupply": "6064294748702251325275836" + }, + { + "type": "mintMulti", + "inputQtys": [ + "4079456617959946977280", + "3785773588832527581184" + ], + "expectedQty": "7844567900729156893795", "reserves": [ - "2724492655223357975983848", - "1893844989060415500722874" + "4501265189114757344753674", + "1600853070629222788788054" ], - "LPTokenSupply": "4578005169731203888207011" + "LPTokenSupply": "6072139316602980482169631" }, { "type": "redeemMasset", - "inputQty": "4773968788671566643", + "inputQty": "7982663216352052694220", "expectedQtys": [ - "2839411148158195825", - "1973726948579654927" + "5913982359326191760523", + "2103279060844735971835" ], - "redemptionFee": "2864381273202939", + "redemptionFee": "4789597929811231616", "reserves": [ - "2724489815812209817788023", - "1893843015333466921067947" + "4495351206755431152993151", + "1598749791568378052816219" ], - "LPTokenSupply": "4578000396048853343960661" + "LPTokenSupply": "6064157132346421410598572" }, { "type": "redeemMasset", - "inputQty": "4518502683233730586214", + "inputQty": "354807078193893317017", "expectedQtys": [ - "2687467695521194629099", - "1868108258125327931434" + "262860180381116149812", + "93484944616652998134" + ], + "redemptionFee": "212884246916335990", + "reserves": [ + "4495088346575050036843339", + "1598656306623761399818085" ], - "redemptionFee": "2711101609940238351", + "LPTokenSupply": "6063802346556652208915154" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "6369418546354606571520", + "expectedQty": "6414637284273200923750", + "swapFee": "3821651127812763942", "reserves": [ - "2721802348116688623158924", - "1891974907075341593136513" + "4488673709290776835919589", + "1598656306623761399818085" ], - "LPTokenSupply": "4573482164475780607398282" + "LPTokenSupply": "6057433310175410383620028" }, { "type": "redeemMasset", - "inputQty": "33834961559704663438131", + "inputQty": "30638099266871374643", "expectedQtys": [ - "20124014758347366109099", - "13988573041959457326447" + "22689794337902075910", + "8081046911296774119" ], - "redemptionFee": "20300976935822798062", + "redemptionFee": "18382859560122824", "reserves": [ - "2701678333358341257049825", - "1877986334033382135810066" + "4488651019496438933843679", + "1598648225576850103043966" ], - "LPTokenSupply": "4539649233013769526239957" + "LPTokenSupply": "6057402673914429468257667" }, { "type": "mintMulti", "inputQtys": [ - "1550527250775292510208", - "7309165401283298852864" + "479852087154598464", + "3851291791272364544" ], - "expectedQty": "8791500946113976296937", + "expectedQty": "4338092736544764535", "reserves": [ - "2703228860609116549560033", - "1885295499434665434662930" + "4488651499348526088442143", + "1598652076868641375408510" ], - "LPTokenSupply": "4548440733959883502536894" + "LPTokenSupply": "6057407012007166013022202" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "665384405334343680000", - "expectedQty": "671539839991192265277", - "swapFee": "399230643200606208", + "type": "redeemBassets", + "inputQtys": [ + "2066754417892651171840", + "697056620755184123904" + ], + "expectedQty": "2749937897560866498399", + "swapFee": "1650953310522833599", "reserves": [ - "2702557320769125357294756", - "1885295499434665434662930" + "4486584744930633437270303", + "1597955020247886191284606" ], - "LPTokenSupply": "4547775389477613478917514" + "LPTokenSupply": "6054655588251625675973562" }, { "type": "redeemBassets", "inputQtys": [ - "160210829747945504768", - "258733029940076281856" + "799682919686418595840", + "1394757715930864943104" ], - "expectedQty": "415500081974925380062", - "swapFee": "249449719016365047", + "expectedQty": "2192178184226582783939", + "swapFee": "1316096568477035891", "reserves": [ - "2702397109939377411789988", - "1885036766404725358381074" + "4485785062010947018674463", + "1596560262531955326341502" ], - "LPTokenSupply": "4547359664890891438808908" + "LPTokenSupply": "6052462225580487463857320" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "736732363078843904", - "expectedQty": "741679536551101463", - "swapFee": "442039417847306", - "reserves": [ - "2702397109939377411789988", - "1885036024725188807279611" + "type": "redeemMasset", + "inputQty": "6773754648762390885171", + "expectedQtys": [ + "5017359038499862903295", + "1785755659931989707978" ], - "LPTokenSupply": "4547358928202732301749734" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "50347184019934663409664", - "expectedQty": "49978374532889971762811", + "redemptionFee": "4064252789257434531", "reserves": [ - "2702397109939377411789988", - "1935383208745123470689275" - ] + "4480767702972447155771168", + "1594774506872023336633524" + ], + "LPTokenSupply": "6045688877357003998715602" }, { "type": "swap", "inputIndex": 1, - "inputQty": "21137131981321824894976", + "inputQty": "29965428608921", "outputIndex": 0, - "expectedQty": "21184612909400380557103", + "expectedQty": "30279799806074", "swapFee": "0", "reserves": [ - "2681212497029977031232885", - "1956520340726445295584251" + "4480767702942167355965094", + "1594774506901988765242445" ], - "LPTokenSupply": "4597337302735622273512545", + "LPTokenSupply": "6045688877357003998715602", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "367738692999916945408", + "expectedQty": "364926721618725959564", + "reserves": [ + "4481135441635167272910502", + "1594774506901988765242445" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "41989543000698736", + "expectedQty": "41668455124367534", + "reserves": [ + "4481135483624710273609238", + "1594774506901988765242445" + ] + }, { "type": "redeem", "inputIndex": 1, - "inputQty": "18618052810256444030976", - "expectedQty": "18746423600204092317591", - "swapFee": "11170831686153866418", + "inputQty": "148448033291983", + "expectedQty": "147949800746636", + "swapFee": "89068819975", "reserves": [ - "2681212497029977031232885", - "1937773917126241203266660" + "4481135483624710273609238", + "1594774506754038964495809" ], - "LPTokenSupply": "4578720367008534444868210" + "LPTokenSupply": "6046053845598638722632714" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "278349274819257991168", - "expectedQty": "280893288256853529219", - "swapFee": "167009564891554794", + "type": "redeemMasset", + "inputQty": "9840754021480975564", + "expectedQtys": [ + "7289265776576714991", + "2594149468570896054" + ], + "redemptionFee": "5904452412888585", "reserves": [ - "2680931603741720177703666", - "1937773917126241203266660" + "4481128194358933696894247", + "1594771912604570393599755" ], - "LPTokenSupply": "4578442034434671676032521" + "LPTokenSupply": "6046044005435062482946008" }, { "type": "redeemMasset", - "inputQty": "321505649969322086", + "inputQty": "61074331853711", "expectedQtys": [ - "188146424157136395", - "135991993538151238" + "45239118509419", + "16099980277428" ], - "redemptionFee": "192903389981593", + "redemptionFee": "36644599112", "reserves": [ - "2680931415595296020567271", - "1937773781134247665115422" + "4481128194313694578384828", + "1594771912588470413322327" ], - "LPTokenSupply": "4578441712948312045708594" + "LPTokenSupply": "6046044005373991815552208" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "11281524942412940574720", - "expectedQty": "11172569434547442489754", + "inputIndex": 1, + "inputQty": "319478505060322836480", + "expectedQty": "320361609358010683734", "reserves": [ - "2692212940537708961141991", - "1937773781134247665115422" + "4481128194313694578384828", + "1595091391093530736158807" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "41061898733315296329728", - "expectedQty": "41341545601137162545851", - "swapFee": "24637139239989177797", + "type": "mintMulti", + "inputQtys": [ + "163567500532625899520", + "203701353286190071808" + ], + "expectedQty": "366580942076050908796", "reserves": [ - "2692212940537708961141991", - "1896432235533110502569571" + "4481291761814227204284348", + "1595295092446816926230615" ], - "LPTokenSupply": "4548554847363468190786399" + "LPTokenSupply": "6046730947925425877144738" }, { - "type": "mintMulti", - "inputQtys": [ - "94556223846844579840", - "69395899055288401920" + "type": "redeemMasset", + "inputQty": "22101008008385366", + "expectedQtys": [ + "16369446785234882", + "5827359500462959" ], - "expectedQty": "162523656454758300660", + "redemptionFee": "13260604805031", "reserves": [ - "2692307496761555805721831", - "1896501631432165790971491" + "4481291745444780419049466", + "1595295086619457425767656" ], - "LPTokenSupply": "4548717371019922949087059" + "LPTokenSupply": "6046730925825743929239875" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "111767175061089237860352", - "expectedQty": "112790835620475907386781", - "swapFee": "67060305036653542716", + "inputIndex": 1, + "inputQty": "52805916096287948800", + "expectedQty": "52628879622182872128", + "swapFee": "31683549657772769", "reserves": [ - "2579516661141079898335050", - "1896501631432165790971491" + "4481291745444780419049466", + "1595242457739835242895528" ], - "LPTokenSupply": "4436956901989337376580978" + "LPTokenSupply": "6046678123078002607068351" }, { - "type": "redeemBassets", - "inputQtys": [ - "77165483805327474688", - "87404945734646579200" - ], - "expectedQty": "163171367996711400919", - "swapFee": "97961597756680849", + "type": "mint", + "inputIndex": 1, + "inputQty": "7745646612535772708864", + "expectedQty": "7766788155981383886634", "reserves": [ - "2579439495657274570860362", - "1896414226486431144392291" - ], - "LPTokenSupply": "4436793642455902684167293" + "4481291745444780419049466", + "1602988104352371015604392" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "94008163236367104", - "expectedQty": "94663318492729485", - "swapFee": "56404897941820", + "inputQty": "2362637442725255839744", + "expectedQty": "2368986316200038834247", "reserves": [ - "2579439495657274570860362", - "1896414131823112651662806" - ], - "LPTokenSupply": "4436793548453379937594371" + "4481291745444780419049466", + "1605350741795096271444136" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "28122327168295999897600", - "outputIndex": 0, - "expectedQty": "28179278401170485590786", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "2215489604923366834176", + "expectedQty": "2198615206331962644062", "reserves": [ - "2551260217256104085269576", - "1924536458991408651560406" - ], - "LPTokenSupply": "4436793548453379937594371", - "hardLimitError": false, - "insufficientLiquidityError": false + "4483507235049703785883642", + "1605350741795096271444136" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "3648894847021600997376", - "expectedQty": "3681808914854696931946", - "swapFee": "2189336908212960598", + "inputIndex": 1, + "inputQty": "54829861536126042374144", + "expectedQty": "54637498036874864331326", + "swapFee": "32897916921675625424", "reserves": [ - "2547578408341249388337630", - "1924536458991408651560406" + "4483507235049703785883642", + "1550713243758221407112810" ], - "LPTokenSupply": "4433144872540049157893054" + "LPTokenSupply": "6004185941012082117621692" }, { "type": "mintMulti", "inputQtys": [ - "2657943333652786688", - "4939744447375989760" + "61315883804023811211264", + "51393049081061092360192" ], - "expectedQty": "7534658049939040313", + "expectedQty": "112389406146029729614861", "reserves": [ - "2547581066284583041124318", - "1924541398735856027550166" + "4544823118853727597094906", + "1602106292839282499473002" ], - "LPTokenSupply": "4433152407198099096933367" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "11183192859165048438784", - "expectedQty": "11097725854028738074956", - "reserves": [ - "2547581066284583041124318", - "1935724591595021075988950" - ] + "LPTokenSupply": "6116575347158111847236553" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "10788541550091649024", - "expectedQty": "10865234112447000624", - "swapFee": "6473124930054989", + "inputQty": "85037577946967459233792", + "outputIndex": 0, + "expectedQty": "85890208273869112711744", + "swapFee": "0", "reserves": [ - "2547581066284583041124318", - "1935713726360908628988326" + "4458932910579858484383162", + "1687143870786249958706794" ], - "LPTokenSupply": "4444239345157890236364797" + "LPTokenSupply": "6116575347158111847236553", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "3560552649337686458368", - "expectedQty": "3585849835235651866928", - "swapFee": "2136331589602611875", + "inputQty": "1174210801175826944", + "outputIndex": 0, + "expectedQty": "1185264056498141449", + "swapFee": "0", "reserves": [ - "2547581066284583041124318", - "1932127876525672977121398" + "4458931725315801986241713", + "1687145044997051134533738" ], - "LPTokenSupply": "4440679006141711510167616" + "LPTokenSupply": "6116575347158111847236553", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "159193677571013373591552", - "expectedQty": "157950865953304238427108", + "inputQty": "33008931350905307136", + "expectedQty": "33074251041040245258", "reserves": [ - "2547581066284583041124318", - "2091321554096686350712950" + "4458931725315801986241713", + "1687178053928402039840874" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "17540824995634949914624", - "expectedQty": "17400950349133067145634", + "inputIndex": 0, + "inputQty": "13842499041368314216448", + "expectedQty": "13740451708905768498716", "reserves": [ - "2547581066284583041124318", - "2108862379092321300627574" + "4472774224357170300458161", + "1687178053928402039840874" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "7059756496233385951232", - "expectedQty": "7112302293626171233733", - "swapFee": "4235853897740031570", + "type": "redeemBassets", + "inputQtys": [ + "81443211714747967733760", + "54983182909484384124928" + ], + "expectedQty": "135938456628159982978639", + "swapFee": "81612041201616959963", "reserves": [ - "2547581066284583041124318", - "2101750076798695129393841" + "4391331012642422332724401", + "1632194871018917655715946" ], - "LPTokenSupply": "4608971489533305203792283" + "LPTokenSupply": "5994336965652817217737920" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "38437468046689673216", - "expectedQty": "38773465056890879931", - "swapFee": "23062480828013803", + "inputIndex": 1, + "inputQty": "876007553510515933184", + "expectedQty": "873570133033677196610", + "swapFee": "525604532106309559", "reserves": [ - "2547542292819526150244387", - "2101750076798695129393841" + "4391331012642422332724401", + "1631321300885883978519336" ], - "LPTokenSupply": "4608933054371506596920447" + "LPTokenSupply": "5993461010659759912435691" }, { - "type": "mintMulti", - "inputQtys": [ - "80780784682389136", - "129732664993500800" - ], - "expectedQty": "208730363915911543", + "type": "mint", + "inputIndex": 0, + "inputQty": "428356245962685284352", + "expectedQty": "425159885210611253979", "reserves": [ - "2547542373600310832633523", - "2101750206531360122894641" - ], - "LPTokenSupply": "4608933263101870512831990" + "4391759368888385018008753", + "1631321300885883978519336" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3404563198796264112128", - "expectedQty": "3429873824439523967586", - "swapFee": "2042737919277758467", + "type": "redeemBassets", + "inputQtys": [ + "24235727620895186944", + "938936056035545600" + ], + "expectedQty": "24995872420318376071", + "swapFee": "15006527368612192", "reserves": [ - "2547542373600310832633523", - "2098320332706920598927055" + "4391735133160764122821809", + "1631320361949827942973736" ], - "LPTokenSupply": "4605528904176866176495708" + "LPTokenSupply": "5993861161166675573562625" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3558559833395549437952", - "expectedQty": "3584993977851741796677", - "swapFee": "2135135900037329662", + "inputQty": "256731497225961", + "expectedQty": "256016036326370", + "swapFee": "154038898335", "reserves": [ - "2547542373600310832633523", - "2094735338729068857130378" + "4391735133160764122821809", + "1631320361693811906647366" ], - "LPTokenSupply": "4601970557857060630790722" + "LPTokenSupply": "5993861160909959480226497" }, { - "type": "redeemBassets", - "inputQtys": [ - "47163409937084392144896", - "11666488198514434113536" + "type": "redeemMasset", + "inputQty": "50989217471056196403", + "expectedQtys": [ + "37337664835627987052", + "13869163566934378237" ], - "expectedQty": "58300347678235301806134", - "swapFee": "35001209332540705506", + "redemptionFee": "30593530482633717", "reserves": [ - "2500378963663226440488627", - "2083068850530554423016842" + "4391697795495928494834757", + "1631306492530244972269129" ], - "LPTokenSupply": "4543638709090426042349631" + "LPTokenSupply": "5993810174751841472293465" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "28380476667672525799424", - "expectedQty": "28627390497167848333352", - "swapFee": "17028286000603515479", + "type": "mint", + "inputIndex": 1, + "inputQty": "165345778949383258112000", + "expectedQty": "165613008817553523503200", "reserves": [ - "2471751573166058592155275", - "2083068850530554423016842" - ], - "LPTokenSupply": "4515259935251353576901754" + "4391697795495928494834757", + "1796652271479628230381129" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "21889783229222995623936", - "expectedQty": "22054158800741347650989", - "swapFee": "13133869937533797374", + "inputQty": "13525814002946316173312", + "expectedQty": "13502453522713026296395", + "swapFee": "8115488401767789703", "reserves": [ - "2471751573166058592155275", - "2061014691729813075365853" + "4391697795495928494834757", + "1783149817956915204084734" ], - "LPTokenSupply": "4493371465409124334657555" + "LPTokenSupply": "6145898181115288856402323" }, { - "type": "redeemMasset", - "inputQty": "62946231088431038464", - "expectedQtys": [ - "34605216694701920325", - "28854784919553432126" + "type": "redeemBassets", + "inputQtys": [ + "10412106550960086581248", + "21987951108698197196800" ], - "redemptionFee": "37767738653058623", + "expectedQty": "32353110542327414274925", + "swapFee": "19423520437659043991", "reserves": [ - "2471716967949363890234950", - "2060985836944893521933727" + "4381285688944968408253509", + "1761161866848217006887934" ], - "LPTokenSupply": "4493308522954809768924953" + "LPTokenSupply": "6113527589404567548987805" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "909673032738106245120", - "outputIndex": 1, - "expectedQty": "907834537086181644593", - "swapFee": "721012941162013659", + "type": "redeemMasset", + "inputQty": "21993741252009528524", + "expectedQtys": [ + "15752451570254741796", + "6332072132366813226" + ], + "redemptionFee": "13196244751205717", "reserves": [ - "2472626640982101996480070", - "2060078002407807340289134" + "4381269936493398153511713", + "1761155534776084640074708" ], - "LPTokenSupply": "4493308595056103885126318", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6113505596982940014579852" }, { "type": "mintMulti", "inputQtys": [ - "7639796114276391845888", - "6853521267125576007680" + "3713246368634116767744", + "15339916474107287306240" ], - "expectedQty": "14367672051486311659086", + "expectedQty": "19045686151931962221361", "reserves": [ - "2480266437096378388325958", - "2066931523674932916296814" + "4384983182862032270279457", + "1776495451250191927380948" ], - "LPTokenSupply": "4507676267107590196785404" + "LPTokenSupply": "6132551283134871976801213" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "107022780515562131816448", - "outputIndex": 1, - "expectedQty": "106770765384221945015990", - "swapFee": "84821203060996512145", + "type": "mint", + "inputIndex": 1, + "inputQty": "779451352724401029120", + "expectedQty": "780375772282331046035", + "reserves": [ + "4384983182862032270279457", + "1777274902602916328410068" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "17318332675433275392", + "expectedQty": "17287478383936242810", + "swapFee": "10390999605259965", "reserves": [ - "2587289217611940520142406", - "1960160758290710971280824" + "4384983182862032270279457", + "1777257615124532392167258" ], - "LPTokenSupply": "4507684749227896296436618", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6133314341613578835097852" }, { - "type": "redeemMasset", - "inputQty": "3048337028462015833702", - "expectedQtys": [ - "1748613269599626546860", - "1324769990600135892535" + "type": "mintMulti", + "inputQtys": [ + "11004740663184801660928", + "20743327471144955543552" ], - "redemptionFee": "1829002217077209500", + "expectedQty": "31693963533583418081802", "reserves": [ - "2585540604342340893595546", - "1958835988300110835388289" + "4395987923525217071940385", + "1798000942595677347710810" ], - "LPTokenSupply": "4504636595099655988323866" + "LPTokenSupply": "6165008305147162253179654" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "54235647327378719375360", - "outputIndex": 1, - "expectedQty": "54079847993000339946460", - "swapFee": "42972504126765911778", + "type": "redeemBassets", + "inputQtys": [ + "111588303508408197185536", + "77359602715336296628224" + ], + "expectedQty": "188249818675665768952858", + "swapFee": "113017701826495358586", "reserves": [ - "2639776251669719612970906", - "1904756140307110495441829" + "4284399620016808874754849", + "1720641339880341051082586" ], - "LPTokenSupply": "4504640892350068664915043", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5976656770539852638404067" }, { "type": "mintMulti", "inputQtys": [ - "5951085618811868160", - "68238121676736028672" + "3333806075532633178112", + "859608991113126084608" ], - "expectedQty": "73621118388373028733", + "expectedQty": "4170721550069072960576", "reserves": [ - "2639782202755338424839066", - "1904824378428787231470501" + "4287733426092341507932961", + "1721500948871454177167194" ], - "LPTokenSupply": "4504714513468457037943776" + "LPTokenSupply": "5980827492089921711364643" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2842988922649116672000", - "outputIndex": 0, - "expectedQty": "2849386916820674344651", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "2295489262132062846976", + "expectedQty": "2279109953139125023022", + "reserves": [ + "4290028915354473570779937", + "1721500948871454177167194" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "158681099008606266720256", + "expectedQty": "159712744272424551160307", + "swapFee": "95208659405163760032", "reserves": [ - "2636932815838517750494415", - "1907667367351436348142501" + "4130316171082049019619630", + "1721500948871454177167194" ], - "LPTokenSupply": "4504714513468457037943776", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5824435023900395086043412" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9161868485138317312000", - "9228330974448195731456" + "1316849939130062209024", + "3190513545762590687232" ], - "expectedQty": "18232138260777362294921", + "expectedQty": "4500930976417945203505", + "swapFee": "2702179893787039345", "reserves": [ - "2646094684323656067806415", - "1916895698325884543873957" + "4128999321142918957410606", + "1718310435325691586479962" ], - "LPTokenSupply": "4522946651729234400238697" + "LPTokenSupply": "5819931660962072732504495" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "167928907166916800", - "expectedQty": "169095487768585688", - "swapFee": "100757344300150", + "type": "redeemBassets", + "inputQtys": [ + "2376010040695765598208", + "529999770923430772736" + ], + "expectedQty": "2889853439183457186692", + "swapFee": "1734953035331273075", "reserves": [ - "2646094684323656067806415", - "1916895529230396775288269" + "4126623311102223191812398", + "1717780435554768155707226" ], - "LPTokenSupply": "4522946483810402967751912" + "LPTokenSupply": "5817040246065157477172034" }, { "type": "redeemMasset", - "inputQty": "165931574274936934", + "inputQty": "6858226836985445403852", "expectedQtys": [ - "97017998295371968", - "70282204294898737" + "4862324610220891774180", + "2024029201861649893894" ], - "redemptionFee": "99558944564962", + "redemptionFee": "4114936102191267242", "reserves": [ - "2646094587305657772434447", - "1916895458948192480389532" + "4121760986492002300038218", + "1715756406352906505813332" ], - "LPTokenSupply": "4522946317888784587271474" + "LPTokenSupply": "5810182430721782250894906" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5157287980746971136", - "expectedQty": "5204698543696110204", - "swapFee": "3094372788448182", + "type": "mintMulti", + "inputQtys": [ + "176022613747371671552", + "131030871778831712256" + ], + "expectedQty": "305936569966876419350", "reserves": [ - "2646089382607114076324243", - "1916895458948192480389532" + "4121937009105749671709770", + "1715887437224685337525588" ], - "LPTokenSupply": "4522941160910241119145156" + "LPTokenSupply": "5810488367291749127314256" }, { "type": "mint", "inputIndex": 1, - "inputQty": "76136160059670429696", - "expectedQty": "75565527078523012330", - "reserves": [ - "2646089382607114076324243", - "1916971595108252150819228" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1237117472962586345472", - "expectedQty": "1225112085061155454008", + "inputQty": "16350882780857375916032", + "expectedQty": "16364376968094699561534", "reserves": [ - "2647326500080076662669715", - "1916971595108252150819228" + "4121937009105749671709770", + "1732238320005542713441620" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "76926826050749480960", - "101853728106226089984" + "37639059406913364033536", + "111182782760649263939584" ], - "expectedQty": "177270785820502719622", + "expectedQty": "148674374121545960101419", + "swapFee": "89258179380555909606", "reserves": [ - "2647403426906127412150675", - "1917073448836358376909212" + "4084297949698836307676234", + "1621055537244893449502036" ], - "LPTokenSupply": "4524419109308201300331116" + "LPTokenSupply": "5678098037776855366455724" }, { - "type": "redeemMasset", - "inputQty": "13122109413453656070553", - "expectedQtys": [ - "7673620166515766142971", - "5556725253194376345059" + "type": "redeemBassets", + "inputQtys": [ + "125671567780974759510016", + "139789698238344775860224" ], - "redemptionFee": "7873265648072193642", + "expectedQty": "264775270146583328456712", + "swapFee": "158960538410996595031", "reserves": [ - "2639729806739611646007704", - "1911516723583164000564153" + "3958626381917861548166218", + "1481265839006548673641812" ], - "LPTokenSupply": "4511297787221312451479927" + "LPTokenSupply": "5413179703145702141063483" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1406675025943127392256", - "482563428351157862400" + "114154006029693696", + "338033411405168512" ], - "expectedQty": "1871968204306155280531", - "swapFee": "1123855235725128245", + "expectedQty": "452014912437436209", "reserves": [ - "2638323131713668518615448", - "1911034160154812842701753" + "3958626496071867577859914", + "1481266177039960078810324" ], - "LPTokenSupply": "4509424807547294143583974" + "LPTokenSupply": "5413180155160614578499692" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3353392324485503488", - "expectedQty": "3320844696682598525", + "type": "mintMulti", + "inputQtys": [ + "864996691976069888", + "2110445750230984704" + ], + "expectedQty": "2973222369190365334", "reserves": [ - "2638326485105993004118936", - "1911034160154812842701753" - ] + "3958627361068559553929802", + "1481268287485710309795028" + ], + "LPTokenSupply": "5413183128382983768865026" }, { "type": "mint", "inputIndex": 0, - "inputQty": "38950686234300336", - "expectedQty": "38572635419522412", + "inputQty": "16583264537530253443072", + "expectedQty": "16458641243974755740196", "reserves": [ - "2638326524056679238419272", - "1911034160154812842701753" + "3975210625606089807372874", + "1481268287485710309795028" ] }, { - "type": "redeemMasset", - "inputQty": "497408088526161510", - "expectedQtys": [ - "290843430631644779", - "210668287691349203" + "type": "mintMulti", + "inputQtys": [ + "163053697676801784938496", + "141861717202768049995776" ], - "redemptionFee": "298444853115696", + "expectedQty": "303957794309070867805921", "reserves": [ - "2638326233213248606774493", - "1911033949486525151352550" + "4138264323282891592311370", + "1623130004688478359790804" ], - "LPTokenSupply": "4509427669586382204854970" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "347007825760677189910528", - "expectedQty": "343570821536785198405534", - "reserves": [ - "2985334058973925796685021", - "1911033949486525151352550" - ] + "LPTokenSupply": "5733599563936029392411143" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "21857446751532274941952", - "expectedQty": "22066891667645505564832", - "swapFee": "13114468050919364965", + "type": "mintMulti", + "inputQtys": [ + "263202039249599201280", + "668318383835531182080" + ], + "expectedQty": "930581888741109087453", "reserves": [ - "2963267167306280291120189", - "1911033949486525151352550" + "4138527525322141191512650", + "1623798323072313890972884" ], - "LPTokenSupply": "4831142355818440220255048" + "LPTokenSupply": "5734530145824770501498596" }, { - "type": "redeemMasset", - "inputQty": "40637709563822787788", - "expectedQtys": [ - "24910907070614232937", - "16065236928239233858" + "type": "redeemBassets", + "inputQtys": [ + "2142702628199288012800", + "1003379821175349444608" ], - "redemptionFee": "24382625738293672", + "expectedQty": "3131929846231117410058", + "swapFee": "1880286079386302227", "reserves": [ - "2963242256399209676887252", - "1911017884249596912118692" + "4136384822693941903499850", + "1622794943251138541528276" ], - "LPTokenSupply": "4831101720547138971296627" + "LPTokenSupply": "5731396523721067936416532" }, { "type": "redeemMasset", - "inputQty": "51432270399166290329", + "inputQty": "788118940854371588505", "expectedQtys": [ - "31527970643912668726", - "20332632482039094593" + "568449109044919608461", + "223015115661535769642" ], - "redemptionFee": "30859362239499774", + "redemptionFee": "472871364512622953", "reserves": [ - "2963210728428565764218526", - "1910997551617114873024099" + "4135816373584896983891389", + "1622571928135477005758634" ], - "LPTokenSupply": "4831050291362676028956275" + "LPTokenSupply": "5730608452067350016090322" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4796755536374730326016", - "expectedQty": "4827445411555562229686", - "swapFee": "2878053321824838195", + "inputIndex": 0, + "inputQty": "511841435251407978496", + "expectedQty": "515291779972312171870", + "swapFee": "307104861150844787", "reserves": [ - "2963210728428565764218526", - "1906170106205559310794413" + "4135301081804924671719519", + "1622571928135477005758634" ], - "LPTokenSupply": "4826253823631633481114078" + "LPTokenSupply": "5730096641342584723196304" }, { "type": "redeemMasset", - "inputQty": "120143923047712502579", + "inputQty": "6564113103618425067929", "expectedQtys": [ - "73721392963478731855", - "47423395881581049425" - ], - "redemptionFee": "72086353828627501", - "reserves": [ - "2963137007035602285486671", - "1906122682809677729744988" + "4734352484099778737367", + "1857622283513609349760" ], - "LPTokenSupply": "4826133686917221151474249" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1659156217038283735040", - "expectedQty": "1669758151253297316466", - "swapFee": "995493730222970241", + "redemptionFee": "3938467862171055040", "reserves": [ - "2963137007035602285486671", - "1904452924658424432428522" + "4130566729320824892982152", + "1620714305851963396408874" ], - "LPTokenSupply": "4824474630249555890036233" + "LPTokenSupply": "5723532922085752515233879" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "4332777633746274222080", - "expectedQty": "4360429770771545529451", - "swapFee": "2599666580247764533", + "inputQty": "847285645641854877696", + "expectedQty": "848523777525535067270", "reserves": [ - "2963137007035602285486671", - "1900092494887652886899071" - ], - "LPTokenSupply": "4820142112582467640590606" + "4130566729320824892982152", + "1621561591497605251286570" + ] }, { "type": "redeemBassets", "inputQtys": [ - "26088573046726435274752", - "11582820681930005020672" + "11963024034511462400", + "12762720051981694976" ], - "expectedQty": "37327748345742391745421", - "swapFee": "22410095064484125522", + "expectedQty": "24657146798302989129", + "swapFee": "14803169980970375", "reserves": [ - "2937048433988875850211919", - "1888509674205722881878399" + "4130554766296790381519752", + "1621548828777553269591594" ], - "LPTokenSupply": "4782794195151167213132214" + "LPTokenSupply": "5724356775393626764438681" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1700852950747236352", - "expectedQty": "1683689512834483100", - "reserves": [ - "2937050134841826597448271", - "1888509674205722881878399" - ] - }, - { - "type": "redeemMasset", - "inputQty": "3531858022374902962585", - "expectedQtys": [ - "2167564829658334046192", - "1393734176246295271796" - ], - "redemptionFee": "2119114813424941777", + "inputQty": "7551291572019281264640", + "expectedQty": "7602149416442122096868", + "swapFee": "4530774943211568758", "reserves": [ - "2934882570012168263402079", - "1887115940029476586606603" + "4122952616880348259422884", + "1621548828777553269591594" ], - "LPTokenSupply": "4779264232729786487146906" + "LPTokenSupply": "5716805936899101804330916" }, { "type": "redeemBassets", "inputQtys": [ - "4604831322685635072", - "5216384697807702016" + "3170357112910576615424", + "4610776039185447387136" ], - "expectedQty": "9738488383744145065", - "swapFee": "5846600990840991", + "expectedQty": "7764709674963814169965", + "swapFee": "4661622778645475787", "reserves": [ - "2934877965180845577767007", - "1887110723644778778904587" + "4119782259767437682807460", + "1616938052738367822204458" ], - "LPTokenSupply": "4779254488979461851244948" + "LPTokenSupply": "5709037031763637209232741" }, { "type": "mintMulti", "inputQtys": [ - "184359283207915896832", - "230967784333250756608" + "107054140206175517409280", + "165569683798651048034304" ], - "expectedQty": "411861180445795424360", + "expectedQty": "272036317100039046839706", "reserves": [ - "2935062324464053493663839", - "1887341691429112029661195" + "4226836399973613200216740", + "1782507736537018870238762" ], - "LPTokenSupply": "4779666350159907646669308" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "209055872465614503936", - "expectedQty": "207602644740595959395", - "reserves": [ - "2935062324464053493663839", - "1887550747301577644165131" - ] + "LPTokenSupply": "5981073348863676256072447" }, { "type": "redeemBassets", "inputQtys": [ - "62745574222565826560", - "1350784357434828521472" + "40671208881087", + "84442728269628" ], - "expectedQty": "1403508856555010512409", - "swapFee": "842610880461283077", + "expectedQty": "124889028074893", + "swapFee": "74978403887", "reserves": [ - "2934999578889830927837279", - "1886199962944142815643659" + "4226836399932941991335653", + "1782507736452576141969134" ], - "LPTokenSupply": "4778469685598300816961523" + "LPTokenSupply": "5981073348738719747434054" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "500019220983759699968", - "expectedQty": "504814324766839511626", - "swapFee": "300011532590255819", - "reserves": [ - "2934494764565064088325653", - "1886199962944142815643659" - ], - "LPTokenSupply": "4777969696378470316287136" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1860353416831913426944", - "1075190182143378063360" - ], - "expectedQty": "2909295584542050058923", + "inputQty": "102706083187153792", + "expectedQty": "101988816698295904", "reserves": [ - "2936355117981896001752597", - "1887275153126286193707019" - ], - "LPTokenSupply": "4780878991963012366346059" + "4226836502639025178489445", + "1782507736452576141969134" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1449224778461143629824", - "expectedQty": "1458487345912514952078", - "swapFee": "869534867076686177", + "inputQty": "48170888553624862720", + "expectedQty": "48108294799245036091", + "swapFee": "28902533132174917", "reserves": [ - "2936355117981896001752597", - "1885816665780373678754941" + "4226836502639025178489445", + "1782459628157776896933043" ], - "LPTokenSupply": "4779429854138037930384852" + "LPTokenSupply": "5981025282729236134084729" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "122969260948032285835264", - "expectedQty": "121719564303267786551160", + "type": "swap", + "inputIndex": 1, + "inputQty": "6854899472748870893568", + "outputIndex": 0, + "expectedQty": "6907678576371826179226", + "swapFee": "0", "reserves": [ - "3059324378929928287587861", - "1885816665780373678754941" - ] + "4219928824062653352310219", + "1789314527630525767826611" + ], + "LPTokenSupply": "5981025282729236134084729", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1372545049077754363904", - "473096232827975237632" + "type": "redeemMasset", + "inputQty": "4910063896244759665049", + "expectedQtys": [ + "3462230489386117841873", + "1468038815569356615098" ], - "expectedQty": "1828415751191861824479", + "redemptionFee": "2946038337746855799", "reserves": [ - "3060696923979006041951765", - "1886289762013201653992573" + "4216466593573267234468346", + "1787846488814956411211513" ], - "LPTokenSupply": "4902977834192497578760491" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "420175979262167875584", - "expectedQty": "417347068834659418294", - "reserves": [ - "3060696923979006041951765", - "1886709937992463821868157" - ] + "LPTokenSupply": "5976115513436825149105259" }, { "type": "redeemMasset", - "inputQty": "308935746607954578636", + "inputQty": "61695930526616440012", "expectedQtys": [ - "192721842560816785135", - "118799810846676987093" + "43503634784556908400", + "18446208211113808444" ], - "redemptionFee": "185361447964772747", + "redemptionFee": "37017558315969864", "reserves": [ - "3060504202136445225166630", - "1886591138181617144881064" + "4216423089938482677559946", + "1787828042606745297403069" ], - "LPTokenSupply": "4903086264050869080077423" + "LPTokenSupply": "5976053821208054364262233" }, { "type": "mint", "inputIndex": 0, - "inputQty": "167137398342010241024", - "expectedQty": "165427724944141742361", + "inputQty": "1080836310694428800", + "expectedQty": "1073312150651775511", "reserves": [ - "3060671339534787235407654", - "1886591138181617144881064" + "4216424170774793371988746", + "1787828042606745297403069" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6725661072814377009152", - "13428709596668786376704" + "17268593060330107568128", + "12557069972960817709056" ], - "expectedQty": "19995035808337906402784", + "expectedQty": "29713637045805130449911", + "swapFee": "17838885558818369291", "reserves": [ - "3067397000607601612416806", - "1900019847778285931257768" + "4199155577714463264420618", + "1775270972633784479694013" ], - "LPTokenSupply": "4923246727584151128222568" + "LPTokenSupply": "5946325202477396949055470" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "255350996895917473792", - "expectedQty": "253624993803554078877", + "inputIndex": 0, + "inputQty": "478587816664347967488", + "expectedQty": "475248897776469445019", "reserves": [ - "3067397000607601612416806", - "1900275198775181848731560" + "4199634165531127612388106", + "1775270972633784479694013" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "234861132331920512", - "expectedQty": "236317649761195007", - "swapFee": "140916679399152", + "inputIndex": 0, + "inputQty": "10757722307384576049152", + "expectedQty": "10826745987772203016132", + "swapFee": "6454633384430745629", "reserves": [ - "3067397000607601612416806", - "1900274962457532087536553" + "4188807419543355409371974", + "1775270972633784479694013" ], - "LPTokenSupply": "4923500117730914018320848" + "LPTokenSupply": "5936043374531127285525899" }, { - "type": "redeemMasset", - "inputQty": "544611118509943", - "expectedQtys": [ - "339095389130920", - "210072083177574" - ], - "redemptionFee": "326766671105", + "type": "redeem", + "inputIndex": 1, + "inputQty": "59450157864506672283648", + "expectedQty": "59366017034672479236203", + "swapFee": "35670094718704003370", "reserves": [ - "3067397000268506223285886", - "1900274962247460004358979" + "4188807419543355409371974", + "1715904955599112000457810" ], - "LPTokenSupply": "4923500117186335576478015" + "LPTokenSupply": "5876596783676092483642588" }, { - "type": "redeemMasset", - "inputQty": "3826851353069436108", - "expectedQtys": [ - "2382741748397961042", - "1476126007030075743" - ], - "redemptionFee": "2296110811841661", + "type": "mint", + "inputIndex": 1, + "inputQty": "38374109781250073952256", + "expectedQty": "38407555983379696619470", "reserves": [ - "3067394617526757825324844", - "1900273486121452974283236" - ], - "LPTokenSupply": "4923496290564593588226073" + "4188807419543355409371974", + "1754279065380362074410066" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "1273471215889266769920", - "expectedQty": "1281366490691970024032", - "swapFee": "764082729533560061", + "inputQty": "50596773712441643106304", + "expectedQty": "50628080199315530699745", "reserves": [ - "3067394617526757825324844", - "1898992119630761004259204" - ], - "LPTokenSupply": "4922222895756977274812159" + "4188807419543355409371974", + "1804875839092803717516370" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "14482075879784969142272", - "expectedQty": "14571538382102644725558", - "swapFee": "8689245527870981485", + "type": "mintMulti", + "inputQtys": [ + "1465493272776258879488", + "3663778842336323698688" + ], + "expectedQty": "5120894177469918789083", "reserves": [ - "3067394617526757825324844", - "1884420581248658359533646" + "4190272912816131668251462", + "1808539617935140041215058" ], - "LPTokenSupply": "4907741688801745092768035" + "LPTokenSupply": "5970753314036257629750886" }, { "type": "redeemMasset", - "inputQty": "219919612158956221235", + "inputQty": "11026581430906624409", "expectedQtys": [ - "137369798419195835956", - "84391644265136326429" + "7733808521454253966", + "3337944663650634415" ], - "redemptionFee": "131951767295373732", + "redemptionFee": "6615948858543974", "reserves": [ - "3067257247728338629488888", - "1884336189604393223207217" + "4190265179007610213997496", + "1808536279990476390580643" ], - "LPTokenSupply": "4907521782384762866084173" + "LPTokenSupply": "5970742288116421608980874" }, { - "type": "redeemBassets", - "inputQtys": [ - "136194729070013956096", - "536078260417874427904" - ], - "expectedQty": "667277583490792763316", - "swapFee": "400606914243021470", + "type": "mint", + "inputIndex": 0, + "inputQty": "61458827947640581259264", + "expectedQty": "61033086142380726728924", "reserves": [ - "3067121052999268615532792", - "1883800111343975348779313" - ], - "LPTokenSupply": "4906854144255049254601533" + "4251724006955250795256760", + "1808536279990476390580643" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "72845267168674344599552", - "expectedQty": "72348755192765555379548", + "inputIndex": 0, + "inputQty": "5910152366688297984", + "expectedQty": "5869033680159212119", "reserves": [ - "3067121052999268615532792", - "1956645378512649693378865" + "4251729917107617483554744", + "1808536279990476390580643" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "38970607595915835342848", - "28263197623120738385920" + "type": "mint", + "inputIndex": 0, + "inputQty": "934566200123118190592", + "expectedQty": "928063716390063320445", + "reserves": [ + "4252664483307740601745336", + "1808536279990476390580643" + ] + }, + { + "type": "redeemMasset", + "inputQty": "20735992760852859269939", + "expectedQtys": [ + "14608744682235960111322", + "6212680277657771535135" ], - "expectedQty": "66644079235930498211885", - "swapFee": "40010453813846606891", + "redemptionFee": "12441595656511715561", "reserves": [ - "3028150445403352780189944", - "1928382180889528954992945" + "4238055738625504641634014", + "1802323599712818619045508" ], - "LPTokenSupply": "4912522810803451849822993" + "LPTokenSupply": "6011974558407585350143979" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "639898733360019537920", - "outputIndex": 0, - "expectedQty": "641979193345151328305", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "108701264343867817984", + "76634812930833514496" + ], + "expectedQty": "184625953979169212168", "reserves": [ - "3027508466210007628861639", - "1929022079622888974530865" + "4238164439889848509451998", + "1802400234525749452560004" ], - "LPTokenSupply": "4912522810803451849822993", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6012159184361564519356147" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3349637047338703781888", - "expectedQty": "3326461747118333537930", + "inputIndex": 0, + "inputQty": "6122351231318295052288", + "expectedQty": "6079721365651221981820", "reserves": [ - "3027508466210007628861639", - "1932371716670227678312753" + "4244286791121166804504286", + "1802400234525749452560004" ] }, { - "type": "mintMulti", - "inputQtys": [ - "11386878946670180", - "7225135718454080" - ], - "expectedQty": "18446704495776631", + "type": "redeem", + "inputIndex": 1, + "inputQty": "131898625133018316800", + "expectedQty": "131737758817325512953", + "swapFee": "79139175079810990", "reserves": [ - "3027508477596886575531819", - "1932371723895363396766833" + "4244286791121166804504286", + "1802268496766932127047051" ], - "LPTokenSupply": "4915849290997274679137554" + "LPTokenSupply": "6018107015016000231002266" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "62178594148260058759168", - "outputIndex": 1, - "expectedQty": "61914626182992877239543", - "swapFee": "49237595350948646203", + "inputQty": "82550216549403885305856", + "expectedQty": "83076035630322869105859", + "swapFee": "49530129929642331183", "reserves": [ - "3089687071745146634290987", - "1870457097712370519527290" + "4161210755490843935398427", + "1802268496766932127047051" ], - "LPTokenSupply": "4915854214756809774002174", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5935561751479589309929528" }, { - "type": "redeemMasset", - "inputQty": "1571448704079394294988", - "expectedQtys": [ - "987086142524646871385", - "597569345524659937186" + "type": "mint", + "inputIndex": 1, + "inputQty": "168615976001186464", + "expectedQty": "168687320169651741", + "reserves": [ + "4161210755490843935398427", + "1802268665382908128233515" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "21843646487096274944", + "22489463469845278720" ], - "redemptionFee": "942869222447636576", + "expectedQty": "44192073475369314955", "reserves": [ - "3088699985602621987419602", - "1869859528366845859590104" + "4161232599137331031673371", + "1802291154846377973512235" ], - "LPTokenSupply": "4914282860339652624470843" + "LPTokenSupply": "5935606112240384848896224" }, { "type": "redeemBassets", "inputQtys": [ - "26765562818966837002240", - "35043668214580145815552" + "36157029605742997405696", + "3120712675176900722688" ], - "expectedQty": "61300708214202662053114", - "swapFee": "36802506432381025847", + "expectedQty": "39030273718297211209783", + "swapFee": "23432223565117397164", "reserves": [ - "3061934422783655150417362", - "1834815860152265713774552" + "4125075569531588034267675", + "1799170442171201072789547" ], - "LPTokenSupply": "4852949029869660819494465" + "LPTokenSupply": "5896554749520879032028992" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1375278594302345984", - "expectedQty": "1361048135380816528", + "type": "mintMulti", + "inputQtys": [ + "93017415053680640", + "562380859405934400" + ], + "expectedQty": "654958466274936794", "reserves": [ - "3061935798062249452763346", - "1834815860152265713774552" - ] + "4125075662549003087948315", + "1799171004552060478723947" + ], + "LPTokenSupply": "5896555404479345306965786" }, { "type": "mintMulti", "inputQtys": [ - "49078957064087633920", - "120502636674594242560" + "2855295502427119157248", + "2956557948941066829824" ], - "expectedQty": "168277861190149060186", + "expectedQty": "5793283924321075384813", "reserves": [ - "3061984877019313540397266", - "1834936362788940308017112" + "4127930958051430207105563", + "1802127562501001545553771" ], - "LPTokenSupply": "4853118668778986349371179" + "LPTokenSupply": "5902348688403666382350599" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "684129868298417733632", - "1753798776790994124800" + "116423218426217824256", + "271946783617487568896" ], - "expectedQty": "2419263317751810618572", + "expectedQty": "387664876547895912558", + "swapFee": "232738569070179655", "reserves": [ - "3062669006887611958130898", - "1836690161565731302141912" + "4127814534833003989281307", + "1801855615717384057984875" ], - "LPTokenSupply": "4855537932096738159989751" + "LPTokenSupply": "5901960814062406323276350" }, { "type": "redeemBassets", "inputQtys": [ - "241159442894424381587456", - "63261555940938890608640" + "672362151665679204352", + "1214212239372006719488" ], - "expectedQty": "301518589944433971981561", - "swapFee": "181019765826156076835", + "expectedQty": "1882381726989075939722", + "swapFee": "1130107100453717794", "reserves": [ - "2821509563993187576543442", - "1773428605624792411533272" + "4127142172681338310076955", + "1800641403478012051265387" ], - "LPTokenSupply": "4553856424363060647539037" + "LPTokenSupply": "5900077415239026838990612" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "89276784744865636286464", - "expectedQty": "88359286580255524325857", + "inputQty": "33875122663055687680000", + "expectedQty": "34088278975014551552470", + "swapFee": "20325073597833412608", "reserves": [ - "2910786348738053212829906", - "1773428605624792411533272" - ] + "4093053893706323758524485", + "1800641403478012051265387" + ], + "LPTokenSupply": "5866204325083330934651872" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "67972689483113021440", - "56430569087669100544" + "97682083733952643072", + "91913552027439497216" ], - "expectedQty": "123321408701657454407", - "swapFee": "74037267581543398", + "expectedQty": "188952796763006029119", "reserves": [ - "2910718376048570099808466", - "1773372175055704742432728" + "4093151575790057711167557", + "1800733317030039490762603" ], - "LPTokenSupply": "4642092322901073691021427" + "LPTokenSupply": "5866393277880093940680991" }, { "type": "redeemBassets", "inputQtys": [ - "1916261312117295808512", - "162471776200882585600" + "35090881879123012091904", + "63589901223983163899904" ], - "expectedQty": "2057850094814632439011", - "swapFee": "1235451327685390697", + "expectedQty": "98464239802983127944381", + "swapFee": "59114012289163374791", "reserves": [ - "2908802114736452803999954", - "1773209703279503859847128" + "4058060693910934699075653", + "1737143415806056326862699" ], - "LPTokenSupply": "4640033360900064141730787" + "LPTokenSupply": "5767875835466050565699297" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4390833559825017208832", - "expectedQty": "4345481777727423529402", + "inputQty": "4564638213669236244480", + "expectedQty": "4532874309094606650424", "reserves": [ - "2913192948296277821208786", - "1773209703279503859847128" + "4062625332124603935320133", + "1737143415806056326862699" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4182224027305088000", - "expectedQty": "4223347035923880985", - "swapFee": "2509334416383052", + "type": "mint", + "inputIndex": 1, + "inputQty": "108702271930505103409152", + "expectedQty": "108728752300211250495536", "reserves": [ - "2913188724949241897327801", - "1773209703279503859847128" - ], - "LPTokenSupply": "4644374660704697701810494" + "4062625332124603935320133", + "1845845687736561430271851" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "741117077717985263616", - "expectedQty": "748404018434993219812", - "swapFee": "444670246630791158", + "type": "mint", + "inputIndex": 1, + "inputQty": "53062957753494265856", + "expectedQty": "53061524624813087682", "reserves": [ - "2912440320930806904107989", - "1773209703279503859847128" - ], - "LPTokenSupply": "4643633588094004379625993" + "4062625332124603935320133", + "1845898750694314924537707" + ] }, { "type": "mintMulti", "inputQtys": [ - "1648551894825672960", - "100861742644450288" + "13116609288907794677760", + "7670639943145518792704" ], - "expectedQty": "1731704771151828281", + "expectedQty": "20698946700499578117032", "reserves": [ - "2912441969482701729780949", - "1773209804141246504297416" + "4075741941413511729997893", + "1853569390637460443330411" ], - "LPTokenSupply": "4643635319798775531454274" + "LPTokenSupply": "5901889470300480814049971" }, { "type": "redeemBassets", "inputQtys": [ - "12203548401008", - "30749645360028" + "1955768950861329072128", + "2028094509237607071744" ], - "expectedQty": "42620251778230", - "swapFee": "25587503569", + "expectedQty": "3970667928575297631864", + "swapFee": "2383831055778645766", "reserves": [ - "2912441969470498181379941", - "1773209804110496858937388" + "4073786172462650400925765", + "1851541296128222836258667" ], - "LPTokenSupply": "4643635319756132250922830" + "LPTokenSupply": "5897916656923955315636916" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "708652008520609955840", - "expectedQty": "703883660012133092972", + "inputIndex": 0, + "inputQty": "1988632493520019783680", + "expectedQty": "1975277173815405802414", "reserves": [ - "2912441969470498181379941", - "1773918456119017468893228" + "4075774804956170420709445", + "1851541296128222836258667" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1820407765771804475392", - "outputIndex": 0, - "expectedQty": "1827015102961359212153", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "301814459739526463488", + "302768834565895421952" + ], + "expectedQty": "602548150971268004803", "reserves": [ - "2910614954367536822167788", - "1775738863884789273368620" + "4076076619415909947172933", + "1851844064962788731680619" ], - "LPTokenSupply": "4644339203416144384015802", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5900494482248741989444133" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "60340423772762775552", - "outputIndex": 0, - "expectedQty": "60558981472370875589", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "494600646229029394841", + "expectedQtys": [ + "341466383542189413492", + "155135085718168763390" + ], + "redemptionFee": "296760387737417636", "reserves": [ - "2910554395386064451292199", - "1775799204308562036144172" + "4075735153032367757759441", + "1851688929877070562917229" ], - "LPTokenSupply": "4644339203416144384015802", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5899999911278551733791055" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "14811552725112314", + "expectedQty": "14811156353415244", + "reserves": [ + "4075735153032367757759441", + "1851688944688623288029543" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "249102386515359823822848", - "expectedQty": "246496187149696481843420", + "inputQty": "215152111183001321472", + "expectedQty": "213707022590800558440", "reserves": [ - "3159656781901424275115047", - "1775799204308562036144172" + "4075950305143550759080913", + "1851688944688623288029543" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2273797742849373", - "outputIndex": 0, - "expectedQty": "2283751958198983", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "11843826160401473601536", + "2797270831599432237056" + ], + "expectedQty": "14561487745438029702070", + "swapFee": "8742137930020830319", "reserves": [ - "3159656779617672316916064", - "1775799206582359778993545" + "4064106478983149285479377", + "1848891673857023855792487" ], - "LPTokenSupply": "4890835390565840865859222", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5885644277442723839315380" }, { - "type": "redeemMasset", - "inputQty": "5792544167038976157286", - "expectedQtys": [ - "3739947987829154159949", - "2101936106569756372761" - ], - "redemptionFee": "3475526500223385694", + "type": "swap", + "inputIndex": 0, + "inputQty": "77053420232607015108608", + "outputIndex": 1, + "expectedQty": "76447761453347701541244", + "swapFee": "61226657607316659017", "reserves": [ - "3155916831629843162756115", - "1773697270475790022620784" + "4141159899215756300587985", + "1772443912403676154251243" ], - "LPTokenSupply": "4885043193951451912040505" + "LPTokenSupply": "5885650400108484570981281", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "2167787830133009152", - "expectedQty": "2180153494566754208", - "swapFee": "1300672698079805", + "inputQty": "23393270778221125632", + "expectedQty": "23405178474318424154", "reserves": [ - "3155916831629843162756115", - "1773695090322295455866576" - ], - "LPTokenSupply": "4885041026293689048839333" + "4141159899215756300587985", + "1772467305674454375376875" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "190430788005004032", - "314611204928454400" + "6801009384234831", + "4670203934969177" ], - "expectedQty": "501051296669708962", - "swapFee": "300811264760681", + "expectedQty": "11426200974242843", "reserves": [ - "3155916641199055157752083", - "1773694775711090527412176" + "4141159906016765684822816", + "1772467310344658310346052" ], - "LPTokenSupply": "4885040524971662240845757" + "LPTokenSupply": "5885673816713159863648278" }, { - "type": "redeemMasset", - "inputQty": "26793516555101391971942", - "expectedQtys": [ - "17299215733755574713829", - "9722540884097464514601" - ], - "redemptionFee": "16076109933060835183", + "type": "mint", + "inputIndex": 1, + "inputQty": "27495508744260447895552", + "expectedQty": "27507474104583170167822", "reserves": [ - "3138617425465299583038254", - "1763972234826993062897575" - ], - "LPTokenSupply": "4858248616027554154957333" + "4141159906016765684822816", + "1799962819088918758241604" + ] }, { "type": "mintMulti", "inputQtys": [ - "1156320799314079252480", - "709005019432428896256" + "2889180737252236984320", + "952474209397061582848" ], - "expectedQty": "1848618992195797290544", + "expectedQty": "3822050756677432788042", "reserves": [ - "3139773746264613662290734", - "1764681239846425491793831" + "4144049086754017921807136", + "1800915293298315819824452" ], - "LPTokenSupply": "4860097235019749952247877" + "LPTokenSupply": "5917003341574420466604142" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "110241881533611451088896", - "expectedQty": "110848503304508568665749", - "swapFee": "66145128920166870653", + "type": "swap", + "inputIndex": 0, + "inputQty": "379861712099548352", + "outputIndex": 1, + "expectedQty": "376799638157981777", + "swapFee": "301790871609751", "reserves": [ - "3139773746264613662290734", - "1653832736541916923128082" + "4144049466615730021355488", + "1800914916498677661842675" ], - "LPTokenSupply": "4749861967999030517846046" + "LPTokenSupply": "5917003341604599553765117", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "403846088918568402944", + "inputQty": "33758277754480756", "outputIndex": 0, - "expectedQty": "405876036478032202107", + "expectedQty": "34005389415785692", "swapFee": "0", "reserves": [ - "3139367870228135630088627", - "1654236582630835491531026" + "4144049432610340605569796", + "1800914950256955416323431" ], - "LPTokenSupply": "4749861967999030517846046", + "LPTokenSupply": "5917003341604599553765117", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "57732487304477451223040", - "16070633511437434093568" + "41395207300177715200", + "2285383990434192687104" ], - "expectedQty": "73082528127248029716807", + "expectedQty": "2327338681440662317955", + "swapFee": "1397241553796675396", "reserves": [ - "3197100357532613081311667", - "1670307216142272925624594" + "4144008037403040427854596", + "1798629566266521223636327" ], - "LPTokenSupply": "4822944496126278547562853" + "LPTokenSupply": "5914674745405760474439304" }, { - "type": "mintMulti", - "inputQtys": [ - "53991827068216590336", - "25504825972744323072" + "type": "mint", + "inputIndex": 1, + "inputQty": "6010925124468202274816", + "expectedQty": "6013088859062735521214", + "reserves": [ + "4144008037403040427854596", + "1804640491390989425911143" + ] + }, + { + "type": "redeemMasset", + "inputQty": "199093034330731699", + "expectedQtys": [ + "139265594075898774", + "60647645433739918" ], - "expectedQty": "78761481163926832254", + "redemptionFee": "119455820598439", "reserves": [ - "3197154349359681297902003", - "1670332720968245669947666" + "4144007898137446351955822", + "1804640430743343992171225" ], - "LPTokenSupply": "4823023257607442474395107" + "LPTokenSupply": "5920687635183734461288662" }, { "type": "redeemMasset", - "inputQty": "470020065891976059289", + "inputQty": "11481649882226345574", "expectedQtys": [ - "311386651425581972538", - "162681952734953596320" + "8031415047864090221", + "3497535880173002250" ], - "redemptionFee": "282012039535185635", + "redemptionFee": "6888989929335807", "reserves": [ - "3196842962708255715929465", - "1670170039015510716351346" + "4143999866722398487865601", + "1804636933207463819168975" ], - "LPTokenSupply": "4822553265742754451854381" + "LPTokenSupply": "5920676154222751227876668" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3012420623574787162112", - "expectedQty": "3043695690401368556240", - "swapFee": "1807452374144872297", + "inputQty": "79600650037744943104", + "expectedQty": "80105390237291473499", + "swapFee": "47760390022646965", "reserves": [ - "3193799267017854347373225", - "1670170039015510716351346" + "4143919761332161196392102", + "1804636933207463819168975" ], - "LPTokenSupply": "4819541025864417079179498" + "LPTokenSupply": "5920596558348752485198260" }, { "type": "redeemBassets", "inputQtys": [ - "30883394723262898176", - "11758673547739625472" - ], - "expectedQty": "42238009897546070397", - "swapFee": "25358020750978229", - "reserves": [ - "3193768383623131084475049", - "1670158280341962976725874" - ], - "LPTokenSupply": "4819498765032300857228693" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "138571462293216690176", - "expectedQty": "139298855286145803707", - "swapFee": "83142877375930014", - "reserves": [ - "3193768383623131084475049", - "1670018981486676830922167" + "214792888424576352256", + "362117659254577496064" ], - "LPTokenSupply": "4819360201884295378131518" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3553818829814101966848", - "expectedQty": "3572446342034063861402", - "swapFee": "2132291297888461180", + "expectedQty": "575553898852276604852", + "swapFee": "345539663109231501", "reserves": [ - "3193768383623131084475049", - "1666446535144642767060765" + "4143704968443736620039846", + "1804274815548209241672911" ], - "LPTokenSupply": "4815806596283611065010788" + "LPTokenSupply": "5920020693464203410285056" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "157527374027244001296384", - "expectedQty": "158295342299580314369662", - "swapFee": "94516424416346400777", - "reserves": [ - "3193768383623131084475049", - "1508151192845062452691103" - ], - "LPTokenSupply": "4658288673898808698354481" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1240595808493888077824", - "expectedQty": "1253974305165978636841", - "swapFee": "744357485096332846", + "inputQty": "450775649954407251968", + "outputIndex": 0, + "expectedQty": "454062325322948541850", + "swapFee": "0", "reserves": [ - "3192514409317965105838208", - "1508151192845062452691103" + "4143250906118413671497996", + "1804725591198163648924879" ], - "LPTokenSupply": "4657048152526063319909941" + "LPTokenSupply": "5920020693464203410285056", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10440334065444256", - "expectedQty": "10487362146428931", - "swapFee": "6264200439266", - "reserves": [ - "3192514409317965105838208", - "1508151182357700306262172" + "type": "redeemMasset", + "inputQty": "117347263105232456908", + "expectedQtys": [ + "82078671656537452786", + "35751993443447759125" ], - "LPTokenSupply": "4657048142086355674509611" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "26215109625043948142592", - "expectedQty": "26497369793938975047132", - "swapFee": "15729065775026368885", + "redemptionFee": "70408357863139474", "reserves": [ - "3166017039524026130791076", - "1508151182357700306262172" + "4143168827446757134045210", + "1804689839204720201165754" ], - "LPTokenSupply": "4630834605367889229003907" + "LPTokenSupply": "5919903353241933964142095" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "536079402035977856", - "547196218011862848" + "84589853126835273728", + "147157649457346035712" ], - "expectedQty": "1074434854166558287", - "swapFee": "645047941264693", + "expectedQty": "231214454505111084563", "reserves": [ - "3166016503444624094813220", - "1508150635161482294399324" + "4143253417299883969318938", + "1804836996854177547201466" ], - "LPTokenSupply": "4630833530352491915307395" + "LPTokenSupply": "5920134567696439075226658" }, { - "type": "redeemBassets", - "inputQtys": [ - "97113801065181701210112", - "65985274559115422597120" + "type": "redeemMasset", + "inputQty": "2809524350014081676083", + "expectedQtys": [ + "1965088274317938338932", + "856009435668231672491" ], - "expectedQty": "161669330793175628234776", - "swapFee": "97059834376531295718", + "redemptionFee": "1685714610008449005", "reserves": [ - "3068902702379442393603108", - "1442165360602366871802204" + "4141288329025566030980006", + "1803980987418509315528975" ], - "LPTokenSupply": "4469076845708377408906471" + "LPTokenSupply": "5917325211917885994395475" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1946319085873523589120", - "expectedQty": "1955035672916791274494", - "swapFee": "1167791451524114153", + "type": "redeemMasset", + "inputQty": "25466798429985171046", + "expectedQtys": [ + "17812452776870868860", + "7759258374633857751" + ], + "redemptionFee": "15280079057991102", "reserves": [ - "3068902702379442393603108", - "1440210324929450080527710" + "4141270516572789160111146", + "1803973228160134681671224" ], - "LPTokenSupply": "4467130643401649037728766" + "LPTokenSupply": "5917299746647463915023539" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "176616226698688626688", - "expectedQty": "177406165105333200614", - "swapFee": "105969736019213176", + "type": "swap", + "inputIndex": 0, + "inputQty": "3001152149422564864", + "outputIndex": 1, + "expectedQty": "2977054728269254856", + "swapFee": "2384364115496422", "reserves": [ - "3068902702379442393603108", - "1440032918764344747327096" + "4141273517724938582676010", + "1803970251105406412416368" ], - "LPTokenSupply": "4466954037771923951023395" + "LPTokenSupply": "5917299746885900326573181", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "9819166639220719825715", + "inputQty": "2201019360087887577088", "expectedQtys": [ - "6741951302686692393318", - "3163551521215548915230" + "1539478235628200012335", + "670608431780953064412" ], - "redemptionFee": "5891499983532431895", + "redemptionFee": "1320611616052732546", "reserves": [ - "3062160751076755701209790", - "1436869367243129198411866" + "4139734039489310382663675", + "1803299642673625459351956" ], - "LPTokenSupply": "4457135460282701584440869" + "LPTokenSupply": "5915098859586974044269347" }, { "type": "swap", "inputIndex": 1, - "inputQty": "25750652938682", + "inputQty": "59289725097297125376", "outputIndex": 0, - "expectedQty": "25913714130145", + "expectedQty": "59721805078668350579", "swapFee": "0", "reserves": [ - "3062160751050841987079645", - "1436869367268879851350548" + "4139674317684231714313096", + "1803358932398722756477332" ], - "LPTokenSupply": "4457135460282701584440869", + "LPTokenSupply": "5915098859586974044269347", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "92673925570501132943360", - "62954766483082203627520" + "27003729022751644581888", + "29382161819164974514176" ], - "expectedQty": "154261414238961337245262", + "expectedQty": "56208879748004568746045", "reserves": [ - "3154834676621343120023005", - "1499824133751962054978068" + "4166678046706983358894984", + "1832741094217887730991508" ], - "LPTokenSupply": "4611396874521662921686131" + "LPTokenSupply": "5971307739334978613015392" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "21267059478894051590144", - "outputIndex": 1, - "expectedQty": "21116994946178797436804", - "swapFee": "16821830627088572212", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1411322441859550674944", + "expectedQty": "1410116617272172326595", + "swapFee": "846793465115730404", "reserves": [ - "3176101736100237171613149", - "1478707138805783257541264" + "4166678046706983358894984", + "1831330977600615558664913" ], - "LPTokenSupply": "4611398556704725630543352", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5969896501572465573913488" }, { "type": "redeemMasset", - "inputQty": "136268498543458805350", + "inputQty": "19873123289765087962726", "expectedQtys": [ - "93798644361780047342", - "43670114043126362524" - ], - "redemptionFee": "81761099126075283", - "reserves": [ - "3176007937455875391565807", - "1478663468691740131178740" - ], - "LPTokenSupply": "4611262296382292084345530" - }, - { - "type": "mintMulti", - "inputQtys": [ - "182352225049740869632", - "2028043250071157504" + "13862086815952206607336", + "6092639919781064767612" ], - "expectedQty": "182301372047688596852", + "redemptionFee": "11923873973859052777", "reserves": [ - "3176190289680925132435439", - "1478665496734990202336244" + "4152815959891031152287648", + "1825238337680834493897301" ], - "LPTokenSupply": "4611444597754339772942382" + "LPTokenSupply": "5950024570670097871856039" }, { - "type": "redeemMasset", - "inputQty": "48337783168356758323", - "expectedQtys": [ - "33273278312883310997", - "15490271084943003839" - ], - "redemptionFee": "29002669901014054", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2824455445606285824", + "expectedQty": "2842264917115569576", + "swapFee": "1694673267363771", "reserves": [ - "3176157016402612249124442", - "1478650006463905259332405" + "4152813117626114036718072", + "1825238337680834493897301" ], - "LPTokenSupply": "4611396262871438406285464" + "LPTokenSupply": "5950021746384119592306592" }, { "type": "mint", "inputIndex": 0, - "inputQty": "18824722765581127778304", - "expectedQty": "18610939690270837317315", + "inputQty": "18278603022203791343616", + "expectedQty": "18153009158372384619183", "reserves": [ - "3194981739168193376902746", - "1478650006463905259332405" + "4171091720648317828061688", + "1825238337680834493897301" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3383865785954876260352", - "expectedQty": "3367117884703507411006", + "inputIndex": 0, + "inputQty": "59419583122581191917568", + "expectedQty": "59009060516769573048798", "reserves": [ - "3194981739168193376902746", - "1482033872249860135592757" + "4230511303770899019979256", + "1825238337680834493897301" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "388658400724915191808", - "outputIndex": 0, - "expectedQty": "391173543641801080926", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "3321687359726842880", + "4644965726588621824" + ], + "expectedQty": "7945604158165141747", + "swapFee": "4770224629676891", "reserves": [ - "3194590565624551575821820", - "1482422530650585050784565" + "4230507982083539293136376", + "1825233692715107905275477" ], - "LPTokenSupply": "4633374320446412751013785", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6027175866161901218123623" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "3940999080660729593856", - "outputIndex": 1, - "expectedQty": "3912442825048165258873", - "swapFee": "3116983535755802056", + "inputIndex": 1, + "inputQty": "1476875218942049280", + "outputIndex": 0, + "expectedQty": "1487832068544010242", + "swapFee": "0", "reserves": [ - "3198531564705212305415676", - "1478510087825536885525692" + "4230506494251470749126134", + "1825235169590326847324757" ], - "LPTokenSupply": "4633374632144766326593990", + "LPTokenSupply": "6027175866161901218123623", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "9953215850795065409536", - "expectedQty": "9839955745721125556302", - "reserves": [ - "3208484780556007370825212", - "1478510087825536885525692" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "92569709150617", - "370915525092696" + "type": "redeemMasset", + "inputQty": "314097061176993644544", + "expectedQtys": [ + "220334102211282649255", + "95062270430883663258" ], - "expectedQty": "460612291869795", - "swapFee": "276533295098", + "redemptionFee": "188458236706196186", "reserves": [ - "3208484780463437661674595", - "1478510087454621360432996" + "4230286160149259466476879", + "1825140107319895963661499" ], - "LPTokenSupply": "4643214587429626280314907" + "LPTokenSupply": "6026861787946547895098697" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "385482237938368470056960", - "outputIndex": 0, - "expectedQty": "387251914833930021028280", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "27760383877480726921216", + "outputIndex": 1, + "expectedQty": "27529782337034836445275", + "swapFee": "22053932125585087916", "reserves": [ - "2821232865629507640646315", - "1863992325392989830489956" + "4258046544026740193398095", + "1797610324982861127216224" ], - "LPTokenSupply": "4643214587429626280314907", + "LPTokenSupply": "6026863993339760453607488", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "6280604738048433", - "1625584880284498" + "16055480062656573440", + "4015715592675016704" ], - "expectedQty": "7830860953907384", + "expectedQty": "19960868284487638868", "reserves": [ - "2821232871910112378694748", - "1863992327018574710774454" + "4258062599506802849971535", + "1797614340698453802232928" ], - "LPTokenSupply": "4643214595260487234222291" + "LPTokenSupply": "6026883954208044941246356" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1881913995089213", - "expectedQty": "1862853883793014", + "type": "redeemBassets", + "inputQtys": [ + "356085220414437076238336", + "240208628335870600019968" + ], + "expectedQty": "593968819926978217740003", + "swapFee": "356595249105650320836", "reserves": [ - "2821232873792026373783961", - "1863992327018574710774454" - ] + "3901977379092365773733199", + "1557405712362583202212960" + ], + "LPTokenSupply": "5432594198556871638217599" }, { "type": "redeemMasset", - "inputQty": "1704984462931235386163", + "inputQty": "22135219552093305", "expectedQtys": [ - "1035332746450027803159", - "684045728100424364655" + "15889149850518394", + "6341874987378459" ], - "redemptionFee": "1022990677758741231", + "redemptionFee": "13281131731255", "reserves": [ - "2820197541045576345980802", - "1863308281290474286409799" + "3901977363203215923214805", + "1557405706020708214834501" ], - "LPTokenSupply": "4641509714959477658503265" + "LPTokenSupply": "5432594176422980199297419" }, { "type": "redeemBassets", "inputQtys": [ - "21751863789908799488", - "15780482839260450816" + "334483860765539904", + "194294135590457952" ], - "expectedQty": "37198278051435331252", - "swapFee": "22332366250611565", + "expectedQty": "526552225435374170", + "swapFee": "316121007865944", "reserves": [ - "2820175789181786437181314", - "1863292500807635025958983" + "3901977028719355157674901", + "1557405511726572624376549" ], - "LPTokenSupply": "4641472496582296597621603" + "LPTokenSupply": "5432593649586245856843898" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "15859491912284209414144", - "expectedQty": "15698720734422451737792", + "type": "mintMulti", + "inputQtys": [ + "2609300550966907904", + "2229902817542411776" + ], + "expectedQty": "4822669839227805642", "reserves": [ - "2836035281094070646595458", - "1863292500807635025958983" - ] + "3901979638019906124582805", + "1557407741629390166788325" + ], + "LPTokenSupply": "5432598472256085084649540" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "335305680840610", - "94658376240565" + "272716603028095533056", + "694353031607040344064" ], - "expectedQty": "425882175165276", + "expectedQty": "965878647243796762028", + "swapFee": "579875113414326653", "reserves": [ - "2836035281429376327436068", - "1863292500902293402199548" + "3901706921416878029049749", + "1556713388597783126444261" ], - "LPTokenSupply": "4657171217742601224524671" + "LPTokenSupply": "5431632071721239214993523" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "63026364614677282816", - "expectedQty": "63634190601677268589", - "swapFee": "37815818768806369", + "inputIndex": 1, + "inputQty": "5142336237112104321024", + "expectedQty": "5133174516752453628666", + "swapFee": "3085401742267262592", "reserves": [ - "2835971647238774650167479", - "1863292500902293402199548" + "3901706921416878029049749", + "1551580214081030672815595" ], - "LPTokenSupply": "4657108195159568424122491" + "LPTokenSupply": "5426490044024301337398758" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "3535498462123410325504", + "expectedQty": "3509520426337857224425", + "reserves": [ + "3905242419879001439375253", + "1551580214081030672815595" + ] }, { "type": "redeemMasset", - "inputQty": "642669810215054", + "inputQty": "310198706818060", "expectedQtys": [ - "391122500908016", - "256975637815569" + "222960295557759", + "88583689799158" ], - "redemptionFee": "385601886129", + "redemptionFee": "186119224090", "reserves": [ - "2835971646847652149259463", - "1863292500645317764383979" + "3905242419656041143817494", + "1551580213992446983016437" ], - "LPTokenSupply": "4657108194516937174096049" + "LPTokenSupply": "5429999564140459099727532" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "3094390633072224632832", - "outputIndex": 1, - "expectedQty": "3082649005416257251328", - "swapFee": "2450391343688280320", - "reserves": [ - "2839066037480724373892295", - "1860209851639901507132651" + "type": "mintMulti", + "inputQtys": [ + "94809790186782752", + "48429733417789760" ], - "LPTokenSupply": "4657108439556071542924081", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "304536636701122129559552", - "expectedQty": "307421134184749915186781", - "swapFee": "182721982020673277735", + "expectedQty": "142601360178967035", "reserves": [ - "2531644903295974458705514", - "1860209851639901507132651" + "3905242514465831330600246", + "1551580262422180400806197" ], - "LPTokenSupply": "4352590075053151480692302" + "LPTokenSupply": "5429999706741819278694567" }, { "type": "redeemBassets", "inputQtys": [ - "38061379570525347840", - "1258417323728731904" + "615341065036288699138048", + "68284016369868543623168" ], - "expectedQty": "38935879729320995813", - "swapFee": "23375553169494294", + "expectedQty": "679301530257002924018753", + "swapFee": "407825613522315143497", "reserves": [ - "2531606841916403933357674", - "1860208593222577778400747" + "3289901449429542631462198", + "1483296246052311857183029" ], - "LPTokenSupply": "4352551118135424307151623" + "LPTokenSupply": "4750331133432646271046665" }, { - "type": "redeemBassets", - "inputQtys": [ - "80561644814128121905152", - "39928280223095239737344" + "type": "redeemMasset", + "inputQty": "77716370202519680", + "expectedQtys": [ + "53791153558939838", + "24252463902416867" ], - "expectedQty": "119389775965337479205678", - "swapFee": "71676871702223821816", + "redemptionFee": "46629822121511", "reserves": [ - "2451045197102275811452522", - "1820280312999482538663403" + "3289901395638389072522360", + "1483296221799847954766162" ], - "LPTokenSupply": "4233096832985554826506309" + "LPTokenSupply": "4750331055720939050739136" }, { "type": "mintMulti", "inputQtys": [ - "340771328426595319808", - "233849782356413513728" + "185156401906233779421184", + "114928014606603252662272" ], - "expectedQty": "569455864279735493241", + "expectedQty": "298791180209742035467653", "reserves": [ - "2451385968430702406772330", - "1820514162781838952177131" + "3475057797544622851943544", + "1598224236406451207428434" ], - "LPTokenSupply": "4233666288849834561999550" + "LPTokenSupply": "5049122235930681086206789" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "24568314144150022782976", - "outputIndex": 1, - "expectedQty": "24496413696017514448799", - "swapFee": "19461469639052314273", + "type": "mintMulti", + "inputQtys": [ + "21117118514548409630720", + "20663892125027405922304" + ], + "expectedQty": "41630753853519738693089", "reserves": [ - "2475954282574852429555306", - "1796017749085821437728332" + "3496174916059171261574264", + "1618888128531478613350738" ], - "LPTokenSupply": "4233668234996798467230977", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5090752989784200824899878" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "212356038271287656448", - "outputIndex": 1, - "expectedQty": "211715851834049056878", - "swapFee": "168204535019482856", + "inputQty": "22705040592968253177856", + "expectedQty": "22550484443341829187177", "reserves": [ - "2476166638613123717211754", - "1795806033233987388671454" - ], - "LPTokenSupply": "4233668251817251969179262", - "hardLimitError": false, - "insufficientLiquidityError": false + "3518879956652139514752120", + "1618888128531478613350738" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "62719197595212750848", - "187395567987593576448" - ], - "expectedQty": "248053075090972204877", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6790922961629863936", + "expectedQty": "6788805374215218197", + "swapFee": "4074553776977918", "reserves": [ - "2476229357810718929962602", - "1795993428801974982247902" + "3518879956652139514752120", + "1618881339726104398132541" ], - "LPTokenSupply": "4233916304892342941384139" + "LPTokenSupply": "5113296683712036401920910" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "94234630150366324326400", - "expectedQty": "95113093636757884906106", - "swapFee": "56540778090219794595", + "type": "redeemMasset", + "inputQty": "17543830551441986027520", + "expectedQtys": [ + "12066108564889021861993", + "5551083935637411500126" + ], + "redemptionFee": "10526298330865191616", "reserves": [ - "2381116264173961045056496", - "1795993428801974982247902" + "3506813848087250492890127", + "1613330255790466986632415" ], - "LPTokenSupply": "4139687328819785639037198" + "LPTokenSupply": "5095753905790427502412551" }, { "type": "mint", "inputIndex": 1, - "inputQty": "56760545692907", - "expectedQty": "56313919083803", + "inputQty": "16759838189429827584", + "expectedQty": "16754975332775735021", "reserves": [ - "2381116264173961045056496", - "1795993428858735527940809" + "3506813848087250492890127", + "1613347015628656416459999" ] }, { "type": "redeemMasset", - "inputQty": "40972476248796574515", + "inputQty": "34153613469684622950", "expectedQtys": [ - "23552912501779278834", - "17765145163272843289" + "23489774251519223968", + "10806720524144714970" ], - "redemptionFee": "24583485749277944", + "redemptionFee": "20492168081810773", "reserves": [ - "2381092711261459265777662", - "1795975663713572255097520" + "3506790358312998973666159", + "1613336208908132271745029" ], - "LPTokenSupply": "4139646358858199336474280" + "LPTokenSupply": "5095736509201507401705699" }, { - "type": "redeemMasset", - "inputQty": "56138330517632263913472", - "expectedQtys": [ - "32270961259839881512163", - "24340867028487478264905" - ], - "redemptionFee": "33682998310579358348", + "type": "redeem", + "inputIndex": 1, + "inputQty": "77872559988305120", + "expectedQty": "77848427829872887", + "swapFee": "46723535992983", "reserves": [ - "2348821750001619384265499", - "1771634796685084776832615" + "3506790358312998973666159", + "1613336131059704441872142" ], - "LPTokenSupply": "4083511396640398130496642" + "LPTokenSupply": "5095736431333619766999877" }, { - "type": "redeemBassets", - "inputQtys": [ - "2322760134910678401024", - "8240000239482165002240" - ], - "expectedQty": "10475174716354532452252", - "swapFee": "6288878156706743517", + "type": "mint", + "inputIndex": 0, + "inputQty": "56648844991429873762304", + "expectedQty": "56260622448136461863923", "reserves": [ - "2346498989866708705864475", - "1763394796445602611830375" - ], - "LPTokenSupply": "4073030561933702561975223" + "3563439203304428847428463", + "1613336131059704441872142" + ] }, { "type": "redeemMasset", - "inputQty": "21584299190609271324672", + "inputQty": "17484758322505092300", "expectedQtys": [ - "12427392074850021822070", - "9339189410614100443757" + "12086282094639519344", + "5472027016871784644" ], - "redemptionFee": "12950579514365562794", + "redemptionFee": "10490854993503055", "reserves": [ - "2334071597791858684042405", - "1754055607034988511386618" + "3563427117022334207909119", + "1613330659032687570087498" ], - "LPTokenSupply": "4051447557801044727206830" + "LPTokenSupply": "5151979570072519223121805" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "56736656740293384", - "expectedQty": "56180394466039279", + "type": "mintMulti", + "inputQtys": [ + "12632687798745757696", + "9065335901657842688" + ], + "expectedQty": "21609673947319588784", "reserves": [ - "2334071654528515424335789", - "1754055607034988511386618" - ] + "3563439749710132953666815", + "1613339724368589227930186" + ], + "LPTokenSupply": "5152001179746466542710589" }, { "type": "redeemBassets", "inputQtys": [ - "213468465081885982720", - "298127607663709454336" + "174077219770628992", + "162705946006463200" ], - "expectedQty": "507158399146593798317", - "swapFee": "304477726123630457", + "expectedQty": "335559969537553589", + "swapFee": "201456855836033", "reserves": [ - "2333858186063433538353069", - "1753757479427324801932282" + "3563439575632913183037823", + "1613339561662643221466986" ], - "LPTokenSupply": "4050940181552339088180379" + "LPTokenSupply": "5152000844005185834904569" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "2569930789030741934080", - "expectedQty": "2549711019892607462214", + "inputQty": "31803109730448887808", + "expectedQty": "31788858042014756053", + "swapFee": "19081865838269332", "reserves": [ - "2333858186063433538353069", - "1756327410216355543866362" - ] + "3563439575632913183037823", + "1613307772804601206710933" + ], + "LPTokenSupply": "5151969042803641969843694" }, { - "type": "redeemBassets", - "inputQtys": [ - "4903466422167341629440", - "4581798714868709720064" + "type": "redeemMasset", + "inputQty": "6890780902855507148", + "expectedQtys": [ + "4763256192640201752", + "2156511448094697618" ], - "expectedQty": "9401149234134457249923", - "swapFee": "5644075986072317740", + "redemptionFee": "4134468541713304", "reserves": [ - "2328954719641266196723629", - "1751745611501486834146298" + "3563434812376720542836071", + "1613305616293153112013315" ], - "LPTokenSupply": "4044083663669709773306703" + "LPTokenSupply": "5151962152436185968507876" }, { "type": "redeemMasset", - "inputQty": "779897472928788684", + "inputQty": "150264398762108723", "expectedQtys": [ - "448867096687692852", - "337619688411630057" + "103870350624167972", + "47026150007369208" ], - "redemptionFee": "467938483757273", + "redemptionFee": "90158639257265", "reserves": [ - "2328954270774169509030777", - "1751745273881798422516241" + "3563434708506369918668099", + "1613305569267003104644107" ], - "LPTokenSupply": "4044082883819030692893746" + "LPTokenSupply": "5151962002180803070324879" }, { - "type": "mintMulti", - "inputQtys": [ - "2443421543042092367872", - "13492720589491408994304" - ], - "expectedQty": "15805842677257841621800", + "type": "redeem", + "inputIndex": 0, + "inputQty": "227237430634866582487040", + "expectedQty": "228646039749005782826088", + "swapFee": "136342458380919949492", "reserves": [ - "2331397692317211601398649", - "1765237994471289831510545" + "3334788668757364135842011", + "1613305569267003104644107" ], - "LPTokenSupply": "4059888726496288534515546" + "LPTokenSupply": "4924738205791774579832788" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "3487321886616315756544", - "expectedQty": "3512957889886153039862", - "swapFee": "2092393131969789453", + "inputQty": "1310072496227647225856", + "expectedQty": "1309118830117915295247", "reserves": [ - "2331397692317211601398649", - "1761725036581403678470683" - ], - "LPTokenSupply": "4056401613848985415737947" + "3334788668757364135842011", + "1614615641763230751869963" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "63536756826935270572032", - "outputIndex": 1, - "expectedQty": "63349541747792436471380", - "swapFee": "50329705540475763570", + "type": "redeem", + "inputIndex": 1, + "inputQty": "204798740615413952", + "expectedQty": "204825612145566991", + "swapFee": "122879244369248", "reserves": [ - "2394934449144146871970681", - "1698375494833611241999303" + "3334788668757364135842011", + "1614615436937618606302972" ], - "LPTokenSupply": "4056406646819539463314304", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4926047119835439804151007" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "30302374259839817744384", - "expectedQty": "29998809843867614749033", + "inputQty": "61175140225333680144384", + "expectedQty": "61545568535604361700067", + "swapFee": "36705084135200208086", "reserves": [ - "2425236823403986689715065", - "1698375494833611241999303" - ] + "3273243100221759774141944", + "1614615436937618606302972" + ], + "LPTokenSupply": "4864875650118519644027431" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "10726953702027685789696", - "expectedQty": "10645556794053756455096", + "inputQty": "153017156779877302272", + "expectedQty": "153060117421819653279", + "swapFee": "91810294067926381", "reserves": [ - "2425236823403986689715065", - "1709102448535638927788999" - ] + "3273243100221759774141944", + "1614462376820196786649693" + ], + "LPTokenSupply": "4864722642142769173517797" }, { "type": "swap", "inputIndex": 1, - "inputQty": "2114137827530506502144", + "inputQty": "35641143594418065408", "outputIndex": 0, - "expectedQty": "2119279394438062047709", + "expectedQty": "35845894402502132355", "swapFee": "0", "reserves": [ - "2423117544009548627667356", - "1711216586363169434291143" + "3273207254327357272009589", + "1614498017963791204715101" ], - "LPTokenSupply": "4097051013457460834518433", + "LPTokenSupply": "4864722642142769173517797", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3508747732211099238400", - "outputIndex": 0, - "expectedQty": "3517205533204603983018", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "5762811005740770918", + "expectedQtys": [ + "3875155574364066161", + "1911406919265738849" + ], + "redemptionFee": "3457686603444462", "reserves": [ - "2419600338476344023684338", - "1714725334095380533529543" + "3273203379171782907943428", + "1614496106556871938976252" ], - "LPTokenSupply": "4097051013457460834518433", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4864716879677532093091325" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "102020317021233397760", - "expectedQty": "102742713426646057014", - "swapFee": "61212190212740038", - "reserves": [ - "2419600338476344023684338", - "1714622591381953887472529" - ], - "LPTokenSupply": "4096948999261658622394676" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1194051540591416442880", - "1513845930245573050368" - ], - "expectedQty": "2684411326309080906778", - "swapFee": "1611613764043874868", + "inputQty": "5261136973152686", + "expectedQty": "5262613594905696", + "swapFee": "3156682183891", "reserves": [ - "2418406286935752607241458", - "1713108745451708314422161" + "3273203379171782907943428", + "1614496101294258344070556" ], - "LPTokenSupply": "4094263137482961902000515" + "LPTokenSupply": "4864716874416710788157028" }, { - "type": "redeemMasset", - "inputQty": "4386453546820574799462", - "expectedQtys": [ - "2589443214292095175362", - "1834264920752836679047" - ], - "redemptionFee": "2631872128092344879", + "type": "redeem", + "inputIndex": 0, + "inputQty": "134637439033950768", + "expectedQty": "135448882461331355", + "swapFee": "80782463420370", "reserves": [ - "2415816843721460512066096", - "1711274480530955477743114" + "3273203243722900446612073", + "1614496101294258344070556" ], - "LPTokenSupply": "4089876947123354136435540" + "LPTokenSupply": "4864716739787350000548297" }, { "type": "redeemBassets", "inputQtys": [ - "21136641241959301644288", - "65057672299410484101120" + "99223958726296464", + "100518859800829360" ], - "expectedQty": "85490112331438590751793", - "swapFee": "51324862316252906194", + "expectedQty": "199000713941800742", + "swapFee": "119472111632059", "reserves": [ - "2394680202479501210421808", - "1646216808231544993641994" + "3273203144498941720315609", + "1614496000775398543241196" ], - "LPTokenSupply": "4004340642415830918068171" + "LPTokenSupply": "4864716540679111158278700" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "4091796997402136674304", - "expectedQty": "4050425104634664606136", - "reserves": [ - "2398771999476903347096112", - "1646216808231544993641994" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "12038305301158351077376", - "5992315070663081590784" - ], - "expectedQty": "17863953278206736830344", + "inputQty": "218225946108302052032512", + "expectedQty": "219513329941019847935613", + "swapFee": "130935567664981231219", "reserves": [ - "2410810304778061698173488", - "1652209123302208075232778" + "3053689814557921872379996", + "1614496000775398543241196" ], - "LPTokenSupply": "4026255020798672319504651" + "LPTokenSupply": "4646503688127575604369309" }, { "type": "mintMulti", "inputQtys": [ - "606284184668238512128", - "890585033338318720" + "34932493530443550818304", + "49077639396821362016256" ], - "expectedQty": "601033497005615033862", + "expectedQty": "83717301236643178860144", "reserves": [ - "2411416588962729936685616", - "1652210013887241413551498" + "3088622308088365423198300", + "1663573640172219905257452" ], - "LPTokenSupply": "4026856054295677934538513" + "LPTokenSupply": "4730220989364218783229453" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "5585145957071386", - "expectedQty": "5543330294538742", + "inputQty": "33930731892885204992", + "expectedQty": "33962158803610100800", + "swapFee": "20358439135731122", "reserves": [ - "2411416588962729936685616", - "1652210019472387370622884" - ] + "3088622308088365423198300", + "1663539678013416295156652" + ], + "LPTokenSupply": "4730187060668169811597573" }, { - "type": "redeemMasset", - "inputQty": "2822617198222222", - "expectedQtys": [ - "1689263765935272", - "1157418644453494" + "type": "mintMulti", + "inputQtys": [ + "1251687376906266083328", + "1846525319287074455552" ], - "redemptionFee": "1693570318933", + "expectedQty": "3087516949520389302157", "reserves": [ - "2411416587273466170750344", - "1652210018314968726169390" + "3089873995465271689281628", + "1665386203332703369612204" ], - "LPTokenSupply": "4026856057016560387886926" + "LPTokenSupply": "4733274577617690200899730" }, { "type": "redeemBassets", "inputQtys": [ - "431570878748599162765312", - "31706431423266647179264" + "21180844830344997765120", + "2078640443605743566848" ], - "expectedQty": "458776897015915192675139", - "swapFee": "275431397047777782274", + "expectedQty": "23123227286616375142532", + "swapFee": "13882265731408670287", "reserves": [ - "1979845708524867007985032", - "1620503586891702078990126" + "3068693150634926691516508", + "1663307562889097626045356" ], - "LPTokenSupply": "3567831271743302195207739" + "LPTokenSupply": "4710138856291915557953938" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5881569849901928415232", - "expectedQty": "5824883223895014676751", + "type": "redeemBassets", + "inputQtys": [ + "73548995786957937180672", + "165672699608309948219392" + ], + "expectedQty": "238534257456615621385084", + "swapFee": "143206478360985964409", "reserves": [ - "1985727278374768936400264", - "1620503586891702078990126" - ] + "2995144154847968754335836", + "1497634863280787677825964" + ], + "LPTokenSupply": "4471475713004775049200884" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1460464915423662440448", - "expectedQty": "1446380558936300860405", + "type": "redeemBassets", + "inputQtys": [ + "57569588356870086656", + "75028763327239405568" + ], + "expectedQty": "132140834743829081334", + "swapFee": "79332100106361265", "reserves": [ - "1987187743290192598840712", - "1620503586891702078990126" - ] + "2995086585259611884249180", + "1497559834517460438420396" + ], + "LPTokenSupply": "4471343500771141124394410" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "5514722894386674270208", - "outputIndex": 1, - "expectedQty": "5502625404111300540894", - "swapFee": "4369208234870342521", + "inputIndex": 1, + "inputQty": "47995665036865028096", + "outputIndex": 0, + "expectedQty": "48264001285741044943", + "swapFee": "0", "reserves": [ - "1992702466184579273110920", - "1615000961487590778449232" + "2995038321258326143204237", + "1497607830182497303448492" ], - "LPTokenSupply": "3575102972446956997779147", + "LPTokenSupply": "4471343500771141124394410", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "574743051693390626816", - "expectedQty": "579182152839578563832", - "swapFee": "344845831016034376", - "reserves": [ - "1992702466184579273110920", - "1614421779334751199885400" - ], - "LPTokenSupply": "3574528263879846708755768" - }, - { - "type": "redeemMasset", - "inputQty": "2006401017175526395084", - "expectedQtys": [ - "1117842989046843302836", - "905639501139012130045" + "type": "mintMulti", + "inputQtys": [ + "43853042937988464", + "149120938494101504" ], - "redemptionFee": "1203840610305315837", + "expectedQty": "192529882555337990", "reserves": [ - "1991584623195532429808084", - "1613516139833612187755355" + "2995038365111369081192701", + "1497607979303435797549996" ], - "LPTokenSupply": "3572521983246732212892267" + "LPTokenSupply": "4471343693301023679732400" }, { - "type": "redeemMasset", - "inputQty": "15346275057760079760588", - "expectedQtys": [ - "8550001239557810422923", - "6926928856022543386137" + "type": "mintMulti", + "inputQtys": [ + "167204925171950048", + "89481830722623360" ], - "redemptionFee": "9207765034656047856", + "expectedQty": "255491381173430456", "reserves": [ - "1983034621955974619385161", - "1606589210977589644369218" + "2995038532316294253142749", + "1497608068785266520173356" ], - "LPTokenSupply": "3557176628965475598736464" + "LPTokenSupply": "4471343948792404853162856" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "34254991546440480", - "expectedQty": "33971982203843890", - "reserves": [ - "1983034621955974619385161", - "1606589245232581190809698" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "893670794999390011392", - "1861747179312945823744" - ], - "expectedQty": "2731397217941646756351", - "swapFee": "1639822224099447722", + "inputQty": "819290587684408393728", + "expectedQty": "819649190618046715428", + "swapFee": "491574352610645036", "reserves": [ - "1982140951160975229373769", - "1604727498053268244985954" + "2995038532316294253142749", + "1496788419594648473457928" ], - "LPTokenSupply": "3554443789879514466321052" + "LPTokenSupply": "4470524707362155705833631" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "387911046196219600699392", - "expectedQty": "384550318519908753874770", + "inputQty": "28318274790910456", + "expectedQty": "28330615099412462", + "swapFee": "16990964874546", "reserves": [ - "1982140951160975229373769", - "1992638544249487845685346" - ] + "2995038532316294253142749", + "1496788391264033374045466" + ], + "LPTokenSupply": "4470524679045580011410629" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "20180191091253772288", - "outputIndex": 1, - "expectedQty": "20164750959172426498", - "swapFee": "15999085546300920", + "inputIndex": 1, + "inputQty": "1962535192763856384", + "outputIndex": 0, + "expectedQty": "1973518878943417554", + "swapFee": "0", "reserves": [ - "1982161131352066483146057", - "1992618379498528673258848" + "2995036558797415309725195", + "1496790353799226137901850" ], - "LPTokenSupply": "3938994109999331774825914", + "LPTokenSupply": "4470524679045580011410629", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "2420647367222009", - "expectedQty": "2441130498945880", - "swapFee": "1452388420333", + "inputQty": "31652128090326093004800", + "expectedQty": "31442762019105920514825", "reserves": [ - "1982161128910935984200177", - "1992618379498528673258848" - ], - "LPTokenSupply": "3938994107578829646445938" + "3026688686887741402729995", + "1496790353799226137901850" + ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "7904578973168050372608", - "expectedQty": "7833225792408261970644", + "inputQty": "31783192051319610277888", + "expectedQty": "31791955539363820581074", + "swapFee": "19069915230791766166", "reserves": [ - "1982161128910935984200177", - "2000522958471696723631456" - ] + "3026688686887741402729995", + "1464998398259862317320776" + ], + "LPTokenSupply": "4470186156004889400824182" }, { - "type": "redeemMasset", - "inputQty": "9971997240745117286", - "expectedQtys": [ - "5005094972866164682", - "5051459872009194117" - ], - "redemptionFee": "5983198344447070", + "type": "swap", + "inputIndex": 1, + "inputQty": "58350402022703152234496", + "outputIndex": 0, + "expectedQty": "58678773673902954866801", + "swapFee": "0", "reserves": [ - "1982156123815963118035495", - "2000517907011824714437339" + "2968009913213838447863194", + "1523348800282565469555272" ], - "LPTokenSupply": "3946817361972316997744003" + "LPTokenSupply": "4470186156004889400824182", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "13452214726842252", - "9917917294797624" + "10990224196654944223232", + "6499553526976343965696" ], - "expectedQty": "23159837086530056", + "expectedQty": "17410321769266794910186", + "swapFee": "10452464540284247494", "reserves": [ - "1982156137268177844877747", - "2000517916929742009234963" + "2957019689017183503639962", + "1516849246755589125589576" ], - "LPTokenSupply": "3946817385132154084274059" + "LPTokenSupply": "4452766427017536350091250" }, { - "type": "redeemBassets", - "inputQtys": [ - "88352577758302256", - "27960451375668172" - ], - "expectedQty": "115267687447668488", - "swapFee": "69202133748850", + "type": "redeem", + "inputIndex": 1, + "inputQty": "49163231201055656", + "expectedQty": "49194245262508771", + "swapFee": "29497938720633", "reserves": [ - "1982156048915600086575491", - "2000517888969290633566791" + "2957019689017183503639962", + "1516849197561343863080805" ], - "LPTokenSupply": "3946817269802184716231605" + "LPTokenSupply": "4452766377857254942907657" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "14322828987365897273344", - "43365918141171426656256" + "37168603491730440192", + "36293193536152379392" ], - "expectedQty": "57169187463770850231567", - "swapFee": "34322105741707534659", + "expectedQty": "73175355630501321255", "reserves": [ - "1967833219928234189302147", - "1957151970828119206910535" + "2957056857620675234080154", + "1516885490754880015460197" ], - "LPTokenSupply": "3889617192443246329218843" + "LPTokenSupply": "4452839553212885444228912" }, { - "type": "redeemBassets", - "inputQtys": [ - "1603845252914032934912", - "11791225233752069242880" - ], - "expectedQty": "13274637946202208995371", - "swapFee": "7969564506425180505", + "type": "redeem", + "inputIndex": 0, + "inputQty": "215069404740913507336192", + "expectedQty": "216318575526827504771799", + "swapFee": "129041642844548104401", "reserves": [ - "1966229374675320156367235", - "1945360745594367137667655" + "2740738282093847729308355", + "1516885490754880015460197" ], - "LPTokenSupply": "3876335381888988337561016" + "LPTokenSupply": "4237783052636256391703160" }, { "type": "mintMulti", "inputQtys": [ - "98728183757037010944", - "24707393977802264576" + "57188434436169605840896", + "67082037515810714419200" ], - "expectedQty": "122320492925559876517", + "expectedQty": "123791480404285530419870", "reserves": [ - "1966328102859077193378179", - "1945385452988344939932231" + "2797926716530017335149251", + "1583967528270690729879397" ], - "LPTokenSupply": "3876457702381913897437533" + "LPTokenSupply": "4361574533040541922123030" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "297520617568406667264", - "expectedQty": "294828624389389312548", + "type": "redeemMasset", + "inputQty": "4466619342742134784", + "expectedQtys": [ + "2863593212235241409", + "1621142768164535820" + ], + "redemptionFee": "2679971605645280", "reserves": [ - "1966625623476645600045443", - "1945385452988344939932231" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "22065730997678931705856", - "30398492227795582713856" - ], - "expectedQty": "51991614295882105203535", - "reserves": [ - "1988691354474324531751299", - "1975783945216140522646087" - ], - "LPTokenSupply": "3928744145302185391953616" - }, - { - "type": "mintMulti", - "inputQtys": [ - "7505250012413117333504", - "5636876402119637204992" - ], - "expectedQty": "13023636864154576793931", - "reserves": [ - "1996196604486737649084803", - "1981420821618260159851079" - ], - "LPTokenSupply": "3941767782166339968747547" - }, - { - "type": "redeemMasset", - "inputQty": "11905767969219041689", - "expectedQtys": [ - "6025721238391135028", - "5981119044176235378" - ], - "redemptionFee": "7143460781531425", - "reserves": [ - "1996190578765499257949775", - "1981414840499215983615701" + "2797923852936805099907842", + "1583965907127922565343577" ], - "LPTokenSupply": "3941755877112716827859000" + "LPTokenSupply": "4361570066689196340552774" }, { "type": "swap", "inputIndex": 1, - "inputQty": "7163704637791050661888", + "inputQty": "5394771866304449085440", "outputIndex": 0, - "expectedQty": "7163886221131953192818", + "expectedQty": "5417875093447742219291", "swapFee": "0", "reserves": [ - "1989026692544367304756957", - "1988578545137007034277589" + "2792505977843357357688551", + "1589360678994227014429017" ], - "LPTokenSupply": "3941755877112716827859000", + "LPTokenSupply": "4361570066689196340552774", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "108821863694689684684", - "expectedQtys": [ - "54879025644947138589", - "54866660857107222628" + "type": "redeemBassets", + "inputQtys": [ + "16088779155151289057280", + "15425789690052807229440" ], - "redemptionFee": "65293118216813810", + "expectedQty": "31385572344065372221386", + "swapFee": "18842648995836725368", "reserves": [ - "1988971813518722357618368", - "1988523678476149927054961" + "2776417198688206068631271", + "1573934889304174207199577" ], - "LPTokenSupply": "3941647061778333959855697" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "54202860277358183579648", - "expectedQty": "53711908748586107622290", - "reserves": [ - "2043174673796080541198016", - "1988523678476149927054961" - ] + "LPTokenSupply": "4330167535961034715278555" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "8688008611317625651200", - "expectedQty": "8762483969190470443025", - "swapFee": "5212805166790575390", - "reserves": [ - "2034412189826890070754991", - "1988523678476149927054961" - ], - "LPTokenSupply": "3986671483196119120884326" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7815119955098970619904", - "expectedQty": "7744044121454005981033", - "reserves": [ - "2042227309781989041374895", - "1988523678476149927054961" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "25818927694448607363072", - "expectedQty": "25583427313251137668365", - "reserves": [ - "2068046237476437648737967", - "1988523678476149927054961" - ] - }, - { - "type": "redeemMasset", - "inputQty": "1181274030467272042086", - "expectedQtys": [ - "607329400853587564397", - "583975770148055974106" - ], - "redemptionFee": "708764418280363225", + "inputIndex": 1, + "inputQty": "1658721697966634827776", + "expectedQty": "1660902834260306422837", + "swapFee": "995233018779980896", "reserves": [ - "2067438908075584061173570", - "1987939702706001871080855" + "2776417198688206068631271", + "1572273986469913900776740" ], - "LPTokenSupply": "4018817751476798820527960" + "LPTokenSupply": "4328508913786369958448868" }, { "type": "mintMulti", "inputQtys": [ - "8104282682456953323520", - "13144549963729815470080" + "15475610993542033309696", + "44672770200461279232" ], - "expectedQty": "21057944480201815070951", + "expectedQty": "15424291164995709487318", "reserves": [ - "2075543190758041014497090", - "2001084252669731686550935" + "2791892809681748101940967", + "1572318659240114362055972" ], - "LPTokenSupply": "4039875695957000635598911" + "LPTokenSupply": "4343933204951365667936186" }, { - "type": "redeemBassets", - "inputQtys": [ - "52625650622838177792", - "12992544036899729408" - ], - "expectedQty": "65022022351373234226", - "swapFee": "39036635392059176", + "type": "redeem", + "inputIndex": 1, + "inputQty": "20591863594646622961664", + "expectedQty": "20617347886253739393110", + "swapFee": "12355118156787973776", "reserves": [ - "2075490565107418176319298", - "2001071260125694786821527" + "2791892809681748101940967", + "1551701311353860622662862" ], - "LPTokenSupply": "4039810638801677409511425" + "LPTokenSupply": "4323342576868534723771899" }, { "type": "mint", "inputIndex": 1, - "inputQty": "55929858434660958208", - "expectedQty": "55432462310244275530", + "inputQty": "1370976272483588767744", + "expectedQty": "1368508942492067625038", "reserves": [ - "2075490565107418176319298", - "2001127189984129447779735" + "2791892809681748101940967", + "1553072287626344211430606" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "89450597056879706243072", - "expectedQty": "90192056487505431882260", - "swapFee": "53670358234127823745", + "type": "redeemBassets", + "inputQtys": [ + "674819135558395776", + "391497829083920768" + ], + "expectedQty": "1061392397744274155", + "swapFee": "637217769308149", "reserves": [ - "2075490565107418176319298", - "1910935133496624015897475" + "2791892134862612543545191", + "1553071896128515127509838" ], - "LPTokenSupply": "3950420841242931360326257" + "LPTokenSupply": "4324710023845133054745446" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "14347146540107798937600", - "expectedQty": "14472866291153413238574", - "swapFee": "8608287924064679362", + "inputQty": "64889223276270446444544", + "expectedQty": "65255612490213508050608", + "swapFee": "38933533965762267866", "reserves": [ - "2061017698816264763080724", - "1910935133496624015897475" + "2726636522372399035494583", + "1553071896128515127509838" ], - "LPTokenSupply": "3936074555531615967856593" + "LPTokenSupply": "4259824693922259184527688" }, { - "type": "redeemMasset", - "inputQty": "760803395052326774374", - "expectedQtys": [ - "398134848020728070186", - "369142812014237171610" - ], - "redemptionFee": "456482037031396064", + "type": "redeem", + "inputIndex": 0, + "inputQty": "12899174116757329920", + "expectedQty": "12971582303027534328", + "swapFee": "7739504470054397", "reserves": [ - "2060619563968244035010538", - "1910565990684609778725865" + "2726623550790096007960255", + "1553071896128515127509838" ], - "LPTokenSupply": "3935313797784767344221825" + "LPTokenSupply": "4259811795522092874203207" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "17680378703611703590912", - "expectedQty": "17524955460852234853039", - "reserves": [ - "2060619563968244035010538", - "1928246369388221482316777" - ] - }, - { - "type": "redeemMasset", - "inputQty": "597467328409197189529", - "expectedQtys": [ - "311273555750814507364", - "291277494525583385054" - ], - "redemptionFee": "358480397045518313", + "inputQty": "56883857572294922600448", + "expectedQty": "56954618406081700238150", + "swapFee": "34130314543376953560", "reserves": [ - "2060308290412493220503174", - "1927955091893695898931723" + "2726623550790096007960255", + "1496117277722433427271688" ], - "LPTokenSupply": "3952241321765250086437166" + "LPTokenSupply": "4202931350981252289298115" }, { "type": "mint", "inputIndex": 1, - "inputQty": "16515780977329160192", - "expectedQty": "16370334388815313821", + "inputQty": "32263679447289223446528", + "expectedQty": "32205635736420746573479", "reserves": [ - "2060308290412493220503174", - "1927971607674673228091915" + "2726623550790096007960255", + "1528380957169722650718216" ] }, { - "type": "redeemMasset", - "inputQty": "83092931002972", - "expectedQtys": [ - "43290278548721", - "40509679215800" - ], - "redemptionFee": "49855758601", - "reserves": [ - "2060308290369202941954453", - "1927971607634163548876115" - ], - "LPTokenSupply": "3952257692016550956323875" - }, - { - "type": "mintMulti", - "inputQtys": [ - "18687863306425479168", - "18555548602745126912" - ], - "expectedQty": "36907269652639505994", - "reserves": [ - "2060326978232509367433621", - "1927990163182766294003027" - ], - "LPTokenSupply": "3952294599286203595829869" - }, - { - "type": "mintMulti", - "inputQtys": [ - "56310426018346860544", - "397681775640583340032" - ], - "expectedQty": "449969418772339769959", + "type": "mint", + "inputIndex": 1, + "inputQty": "54271785937675083776", + "expectedQty": "54170554490806617448", "reserves": [ - "2060383288658527714294165", - "1928387844958406877343059" - ], - "LPTokenSupply": "3952744568704975935599828" + "2726623550790096007960255", + "1528435228955660325801992" + ] }, { "type": "redeemMasset", - "inputQty": "4379643246034165327462", + "inputQty": "5959671546982376983756", "expectedQtys": [ - "2281536120386594614657", - "2135372843783650096352" + "3834544964661953568864", + "2149491303742888503236" ], - "redemptionFee": "2627785947620499196", + "redemptionFee": "3575802928189426190", "reserves": [ - "2058101752538141119679508", - "1926252472114623227246707" + "2722789005825434054391391", + "1526285737651917437298756" ], - "LPTokenSupply": "3948365188237536532322285" + "LPTokenSupply": "4229231843305474284447905" }, { "type": "swap", "inputIndex": 1, - "inputQty": "10706480715925676032", + "inputQty": "122170621217475582230528", "outputIndex": 0, - "expectedQty": "10711184240026321903", + "expectedQty": "122638732580572872355570", "swapFee": "0", "reserves": [ - "2058091041353901093357605", - "1926263178595339152922739" + "2600150273244861182035821", + "1648456358869393019529284" ], - "LPTokenSupply": "3948365188237536532322285", + "LPTokenSupply": "4229231843305474284447905", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "26571092188610399567872", - "expectedQty": "26802323312853701793865", - "swapFee": "15942655313166239740", + "type": "swap", + "inputIndex": 1, + "inputQty": "7943910090007304192", + "outputIndex": 0, + "expectedQty": "7970054264552274914", + "swapFee": "0", "reserves": [ - "2031288718041047391563740", - "1926263178595339152922739" + "2600142303190596629760907", + "1648464302779483026833476" ], - "LPTokenSupply": "3921795690314457449378387" + "LPTokenSupply": "4229231843305474284447905", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "116618748229924651008", - "1782438893013625208832" + "98795833712198243319808", + "191633556088143319400448" ], - "expectedQty": "1882201557803246267371", - "swapFee": "1129998934042373184", + "expectedQty": "289339675180382677425683", "reserves": [ - "2031172099292817466912732", - "1924480739702325527713907" + "2698938136902794873080715", + "1840097858867626346233924" ], - "LPTokenSupply": "3919912471757613564975149" + "LPTokenSupply": "4518571518485856961873588" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "250963584669934329790464", - "outputIndex": 1, - "expectedQty": "250455466915772176469190", - "swapFee": "198884486972986938017", + "inputQty": "486068406969729941504", + "expectedQty": "483348210798972328646", "reserves": [ - "2282135683962751796703196", - "1674025272786553351244717" - ], - "LPTokenSupply": "3919932360206310863668950", - "hardLimitError": false, - "insufficientLiquidityError": false + "2699424205309764603022219", + "1840097858867626346233924" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "69559831181513818374144", - "expectedQty": "68857290392672670020764", + "inputQty": "130570476780525027590144", + "expectedQty": "129829796310801783190573", "reserves": [ - "2351695515144265615077340", - "1674025272786553351244717" + "2829994682090289630612363", + "1840097858867626346233924" ] }, { - "type": "redeemMasset", - "inputQty": "1418730203392780697", - "expectedQtys": [ - "835947717409436244", - "595059010258724573" + "type": "mintMulti", + "inputQtys": [ + "50324439297808155017216", + "156537667003135939313664" ], - "redemptionFee": "851238122035668", + "expectedQty": "206133152978596534321454", "reserves": [ - "2351694679196548205641096", - "1674024677727543092520144" + "2880319121388097785629579", + "1996635525870762285547588" ], - "LPTokenSupply": "3988788231953903953112583" + "LPTokenSupply": "4855017815986054251714261" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9994734377384763392", - "expectedQty": "10091127215668080414", - "swapFee": "5996840626430858", + "type": "mintMulti", + "inputQtys": [ + "766026078108985088", + "1275836821071797504" + ], + "expectedQty": "2033801636750051009", "reserves": [ - "2351684588069332537560682", - "1674024677727543092520144" + "2880319887414175894614667", + "1996636801707583357345092" ], - "LPTokenSupply": "3988778237819210630992276" + "LPTokenSupply": "4855019849787691001765270" }, { "type": "mintMulti", "inputQtys": [ - "28679834931046322798592", - "6357821397807732359168" + "322910577952653967360", + "254793432192344489984" ], - "expectedQty": "34696760585290002853976", + "expectedQty": "575152135978358494590", "reserves": [ - "2380364423000378860359274", - "1680382499125350824879312" + "2880642797992128548582027", + "1996891595139775701835076" ], - "LPTokenSupply": "4023474998404500633846252" + "LPTokenSupply": "4855595001923669360259860" }, { "type": "mintMulti", "inputQtys": [ - "10888759286409428", - "19841666608898504" + "21132695639005712384", + "87052579258599129088" + ], + "expectedQty": "107807820127894158310", + "reserves": [ + "2880663930687767554294411", + "1996978647719034300964164" + ], + "LPTokenSupply": "4855702809743797254418170" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "826207065675463262208", + "2073364565526577938432" + ], + "expectedQty": "2888794283795878795318", + "swapFee": "1734317160573871600", + "reserves": [ + "2879837723622092091032203", + "1994905283153507723025732" ], - "expectedQty": "30465479382312962", + "LPTokenSupply": "4852812454574556859138411" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "18800300092940139626496", + "expectedQty": "18893605391835359461820", + "swapFee": "11280180055764083775", "reserves": [ - "2380364433889138146768702", - "1680382518967017433777816" + "2860944118230256731570383", + "1994905283153507723025732" ], - "LPTokenSupply": "4023475028869980016159214" + "LPTokenSupply": "4834013282499622295920292" }, { "type": "redeemBassets", "inputQtys": [ - "19789375503487077449728", - "16609881322284239552512" + "963023036025472942080", + "1904895596821300903936" ], - "expectedQty": "36068889559993171085975", - "swapFee": "21654326331794979639", + "expectedQty": "2856846128988051565646", + "swapFee": "1715136759448500039", "reserves": [ - "2360575058385651069318974", - "1663772637644733194225304" + "2859981095194231258628303", + "1993000387556686422121796" ], - "LPTokenSupply": "3987386650416288229591562" + "LPTokenSupply": "4831154892747550740704609" }, { "type": "mint", "inputIndex": 0, - "inputQty": "10754068619513264", - "expectedQty": "10644566028981595", + "inputQty": "7696348011138160525312", + "expectedQty": "7653758820748462566606", "reserves": [ - "2360575069139719688832238", - "1663772637644733194225304" + "2867677443205369419153615", + "1993000387556686422121796" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2720435716721472962560", - "expectedQty": "2740079087242420723414", - "swapFee": "1632261430032883777", + "inputQty": "37341671716353793327104", + "expectedQty": "37430106058500119376111", + "swapFee": "22405003029812275996", "reserves": [ - "2360575069139719688832238", - "1661032558557490773501890" + "2867677443205369419153615", + "1955570281498186302745685" ], - "LPTokenSupply": "3984666388570275788898974" + "LPTokenSupply": "4801469220352248391171710" }, { - "type": "mintMulti", - "inputQtys": [ - "11206795653225625157632", - "1351113963699548979200" + "type": "redeemMasset", + "inputQty": "122967483568196531", + "expectedQtys": [ + "73398262918170687", + "50052861425002886" ], - "expectedQty": "12433191429713982228206", + "redemptionFee": "73780490140917", "reserves": [ - "2371781864792945313989870", - "1662383672521190322481090" + "2867677369807106500982928", + "1955570231445324877742799" ], - "LPTokenSupply": "3997099579999989771127180" + "LPTokenSupply": "4801469097392142871989270" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "49077975275315144", - "expectedQty": "49431311955829583", - "swapFee": "29446785165189", + "inputIndex": 0, + "inputQty": "5269310659785635", + "expectedQty": "5295817530332042", + "swapFee": "3161586395871", "reserves": [ - "2371781864792945313989870", - "1662383623089878366651507" + "2867677364511288970650886", + "1955570231445324877742799" ], - "LPTokenSupply": "3997099530924959174328554" + "LPTokenSupply": "4801469092123148370843222" }, { - "type": "redeemMasset", - "inputQty": "257242042641491404", - "expectedQtys": [ - "152549600948095744", - "106922125550171231" + "type": "redeemBassets", + "inputQtys": [ + "89361975071664991371264", + "82120629423299933241344" ], - "redemptionFee": "154345225584894", + "expectedQty": "170742623362938082968973", + "swapFee": "102507078264721682791", "reserves": [ - "2371781712243344365894126", - "1662383516167752816480276" + "2778315389439623979279622", + "1873449602022024944501455" ], - "LPTokenSupply": "3997099273698351055395639" + "LPTokenSupply": "4630634212389772038359736" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "6945034148750677770240", - "outputIndex": 0, - "expectedQty": "6962080735299272042398", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "180503023159138615296", + "282757912191770984448" + ], + "expectedQty": "461422893958400639920", "reserves": [ - "2364819631508045093851728", - "1669328550316503494250516" + "2778495892462783117894918", + "1873732359934216715485903" ], - "LPTokenSupply": "3997099273698351055395639", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4631095635283730438999656" }, { - "type": "redeemMasset", - "inputQty": "162636643753638912", - "expectedQtys": [ - "96163627129222639", - "67882000863817633" + "type": "mintMulti", + "inputQtys": [ + "1666290228488470528", + "1762367450808694784" ], - "redemptionFee": "97581986252183", + "expectedQty": "3414139177466887064", "reserves": [ - "2364819535344417964629089", - "1669328482434502630432883" + "2778497558753011606365446", + "1873734122301667524180687" ], - "LPTokenSupply": "3997099111071465500381945" + "LPTokenSupply": "4631099049422907905886720" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "13083842937029371904", - "expectedQty": "13210448110914574501", - "swapFee": "7850305762217623", + "type": "redeemBassets", + "inputQtys": [ + "133288385446208624", + "2787266147521516544" + ], + "expectedQty": "2911748269698612371", + "swapFee": "1748097820511474", "reserves": [ - "2364806324896307050054588", - "1669328482434502630432883" + "2778497425464626160156822", + "1873731335035520002664143" ], - "LPTokenSupply": "3997086028013559047231803" + "LPTokenSupply": "4631096136101350168814021" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "195741846824747296", - "outputIndex": 0, - "expectedQty": "196216941867538920", - "swapFee": "0", + "inputQty": "540072958044375023616", + "expectedQty": "538512367111951971656", "reserves": [ - "2364806128679365182515668", - "1669328678176349455180179" - ], - "LPTokenSupply": "3997086028013559047231803", - "hardLimitError": false, - "insufficientLiquidityError": false + "2778497425464626160156822", + "1874271407993564377687759" + ] }, { "type": "mintMulti", "inputQtys": [ - "54427716280152801280", - "20025139019658121216" + "210139146333033955328", + "277497526709558181888" ], - "expectedQty": "73743186190059636510", + "expectedQty": "485645919314407666484", "reserves": [ - "2364860556395645335316948", - "1669348703315369113301395" + "2778707564610959194112150", + "1874548905520273935869647" ], - "LPTokenSupply": "3997159771199749106868313" + "LPTokenSupply": "4632120294387776528452161" }, { "type": "redeemMasset", - "inputQty": "1558943029991253737472", + "inputQty": "47501762708500104871936", "expectedQtys": [ - "921772228899311067693", - "650676536045089925654" + "28478170445156095225004", + "19211709759987395337689" ], - "redemptionFee": "935365817994752242", + "redemptionFee": "28501057625100062923", "reserves": [ - "2363938784166746024249255", - "1668698026779324023375741" + "2750229394165803098887146", + "1855337195760286540531958" ], - "LPTokenSupply": "3995600921706339652606065" + "LPTokenSupply": "4584621381785038933586517" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "13041052106886953828352", - "expectedQty": "13167129923833876483237", - "swapFee": "7824631264132172297", + "type": "redeemBassets", + "inputQtys": [ + "1402155952749134741504", + "2345804718563509927936" + ], + "expectedQty": "3733230259882713542405", + "swapFee": "2241282925685039148", "reserves": [ - "2350771654242912147766018", - "1668698026779324023375741" + "2748827238213053964145642", + "1852991391041723030604022" ], - "LPTokenSupply": "3982560652062579111994942" + "LPTokenSupply": "4580886134370523103508877" }, { - "type": "redeemBassets", - "inputQtys": [ - "33048830711707435008", - "7097927344679853056" + "type": "redeemMasset", + "inputQty": "202030778300939029708", + "expectedQtys": [ + "121158763053048482674", + "81673428495458606836" ], - "expectedQty": "39755522617150385464", - "swapFee": "23867634150780699", + "redemptionFee": "121218466980563417", "reserves": [ - "2350738605412200440331010", - "1668690928851979343522685" + "2748706079450000915662968", + "1852909717613227571997186" ], - "LPTokenSupply": "3982520875059091225906847" + "LPTokenSupply": "4580684115714068862535510" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "939131480904529739776", - "expectedQty": "948203432885612681964", - "swapFee": "563478888542717843", + "type": "redeemMasset", + "inputQty": "42894097519109184", + "expectedQtys": [ + "25723783104601632", + "17340467227339405" + ], + "redemptionFee": "25736458511465", "reserves": [ - "2349790401979314827649046", - "1668690928851979343522685" + "2748706053726217811061336", + "1852909700272760344657781" ], - "LPTokenSupply": "3981581799926075550438855" + "LPTokenSupply": "4580684072822544989277472" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10668994161563651801088", - "155208650044486832881664" + "3172713484698125312", + "131208968628698768" ], - "expectedQty": "164530979665432268006463", + "expectedQty": "3285569860898443365", + "swapFee": "1972525431798144", "reserves": [ - "2360459396140878479450134", - "1823899578896466176404349" + "2748702881012733112936024", + "1852909569063791715959013" ], - "LPTokenSupply": "4146112779591507818445318" + "LPTokenSupply": "4580680785477411202215776" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "124098891984562387156992", - "expectedQty": "122860553440726033637420", + "inputQty": "92030769269033893888", + "outputIndex": 1, + "expectedQty": "91701490652600703931", + "swapFee": "73207538084624617", "reserves": [ - "2484558288125440866607126", - "1823899578896466176404349" - ] + "2748794911782002146829912", + "1852817867573139115255082" + ], + "LPTokenSupply": "4580680792798165010678237", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "86763704481581001552691", - "expectedQtys": [ - "50466499221841097932953", - "37047159295482621709992" + "type": "redeemBassets", + "inputQtys": [ + "900529467595933614080", + "1355301662280905392128" ], - "redemptionFee": "52058222688948600931", + "expectedQty": "2246809717900146214605", + "swapFee": "1348895167840792204", "reserves": [ - "2434091788903599768674173", - "1786852419600983554694357" + "2747894382314406213215832", + "1851462565910858209862954" ], - "LPTokenSupply": "4182214834372921745390140" + "LPTokenSupply": "4578432769074613807750647" }, { "type": "mint", "inputIndex": 0, - "inputQty": "17819766940052592640", - "expectedQty": "17640344461506680580", + "inputQty": "28792647838546196955136", + "expectedQty": "28629008662155771244012", "reserves": [ - "2434109608670539821266813", - "1786852419600983554694357" + "2776687030152952410170968", + "1851462565910858209862954" ] }, { "type": "mintMulti", "inputQtys": [ - "21123241747688277934080", - "10210779016758751657984" + "142693355497158625722368", + "8392901378375460847616" ], - "expectedQty": "31040038029415408602184", + "expectedQty": "150239447669790582187008", "reserves": [ - "2455232850418228099200893", - "1797063198617742306352341" + "2919380385650111035893336", + "1859855467289233670710570" ], - "LPTokenSupply": "4213272512746798660672904" + "LPTokenSupply": "4757301225406560161181667" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "135800189279867812970496", - "expectedQty": "136782134236577589558971", - "swapFee": "81480113567920687782", + "inputQty": "1384671675744062799872", + "expectedQty": "1387467595299111166732", + "swapFee": "830803005446437679", "reserves": [ - "2455232850418228099200893", - "1660281064381164716793370" + "2919380385650111035893336", + "1858467999693934559543838" ], - "LPTokenSupply": "4077480471478287639771186" + "LPTokenSupply": "4755916636811116643025562" }, { - "type": "mintMulti", - "inputQtys": [ - "241195389221205213184", - "564018695221587476480" - ], - "expectedQty": "798426402627782762057", + "type": "mint", + "inputIndex": 0, + "inputQty": "4764285768967365066752", + "expectedQty": "4736404110658392915426", "reserves": [ - "2455474045807449304414077", - "1660845083076386304269850" - ], - "LPTokenSupply": "4078278897880915422533243" + "2924144671419078400960088", + "1858467999693934559543838" + ] }, { "type": "redeemMasset", - "inputQty": "522642766559841668300", + "inputQty": "6226093672028230451", "expectedQtys": [ - "314487012581215879250", - "212714204586568169289" - ], - "redemptionFee": "313585659935905000", - "reserves": [ - "2455159558794868088534827", - "1660632368871799736100561" + "3821970405999910017", + "2429089697494686195" ], - "LPTokenSupply": "4077756286472921574455443" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1503200549838668693504", - "expectedQty": "1491755552011512168595", - "reserves": [ - "2455159558794868088534827", - "1662135569421638404794065" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2468540896468370", - "expectedQty": "2485992775490936", - "swapFee": "1481124537881", + "redemptionFee": "3735656203216938", "reserves": [ - "2455159558794868088534827", - "1662135566935645629303129" + "2924140849448672401050071", + "1858465570604237064857643" ], - "LPTokenSupply": "4079248039556540302609456" + "LPTokenSupply": "4760646815201668628032230" }, { "type": "redeemMasset", - "inputQty": "344910193307723", + "inputQty": "7540424745651415076044", "expectedQtys": [ - "207465068091918", - "140453221191688" + "4628790019073671805337", + "2941871587897991930737" ], - "redemptionFee": "206946115984", + "redemptionFee": "4524254847390849045", "reserves": [ - "2455159558587403020442909", - "1662135566795192408111441" + "2919512059429598729244734", + "1855523699016339072926906" ], - "LPTokenSupply": "4079248039211650803913331" + "LPTokenSupply": "4753106842881501952041090" }, { "type": "mintMulti", "inputQtys": [ - "141030679123408846848", - "285800123619474669568" + "37226694814679056384", + "259831996752585129984" ], - "expectedQty": "423195755233829315304", + "expectedQty": "296163844875492024592", "reserves": [ - "2455300589266526429289757", - "1662421366918811882781009" + "2919549286124413408301118", + "1855783531013091658056890" ], - "LPTokenSupply": "4079671234966884633228635" + "LPTokenSupply": "4753403006726377444065682" }, { - "type": "redeemBassets", - "inputQtys": [ - "10910606793519050784768", - "21037617206548546715648" - ], - "expectedQty": "31675437028217907726535", - "swapFee": "19016672220262902377", + "type": "redeem", + "inputIndex": 1, + "inputQty": "13209259637711082356736", + "expectedQty": "13235574282765736581736", + "swapFee": "7925555782626649414", "reserves": [ - "2444389982473007378504989", - "1641383749712263336065361" + "2919549286124413408301118", + "1842547956730325921475154" ], - "LPTokenSupply": "4047978682933668488889959" + "LPTokenSupply": "4740194539644244624373887" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "37213306643201", - "483841359717900" + "167867835008213123072", + "79376383590718111744" ], - "expectedQty": "517000429056941", + "expectedQty": "246053136788510738331", + "swapFee": "147720514381735484", "reserves": [ - "2444389982510220685148190", - "1641383750196104695783261" + "2919381418289405195178046", + "1842468580346735203363410" ], - "LPTokenSupply": "4047978683450668917946900" + "LPTokenSupply": "4739948353558993170073619" }, { - "type": "redeemMasset", - "inputQty": "9849514993961286185779", - "expectedQtys": [ - "5944104955078901900886", - "3991407816484070998391" - ], - "redemptionFee": "5909708996376771711", + "type": "redeem", + "inputIndex": 1, + "inputQty": "156478493832428239454208", + "expectedQty": "156750460983466359060462", + "swapFee": "93887096299456943672", "reserves": [ - "2438445877555141783247304", - "1637392342379620624784870" + "2919381418289405195178046", + "1685718119363268844302948" ], - "LPTokenSupply": "4038129759427607269438292" + "LPTokenSupply": "4583479248436194876313778" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "67456900042199322853376", - "72193157352155506540544" + "1855571458939525791744", + "7074916102070197026816" ], - "expectedQty": "138401935343519664063299", + "expectedQty": "8904210633153941756644", + "swapFee": "5345733820184475739", "reserves": [ - "2505902777597341106100680", - "1709585499731776131325414" + "2917525846830465669386302", + "1678643203261198647276132" ], - "LPTokenSupply": "4176531694771126933501591" + "LPTokenSupply": "4574570226642602768528967" }, { "type": "redeemMasset", - "inputQty": "4175812528275784499", + "inputQty": "699060024622366012211", "expectedQtys": [ - "2503967997728113844", - "1708265547641386071" + "445572343175823298319", + "256366875462586122403" ], - "redemptionFee": "2505487516965470", + "redemptionFee": "419436014773419607", "reserves": [ - "2505900273629343377986836", - "1709583791466228489939343" + "2917080274487289846087983", + "1678386836385736061153729" ], - "LPTokenSupply": "4176527519209147409413639" + "LPTokenSupply": "4573871208561581879858716" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "75509101536478299684864", + "expectedQty": "75610491464022532751752", + "swapFee": "45305460921886979810", + "reserves": [ + "2917080274487289846087983", + "1602776344921713528401977" + ], + "LPTokenSupply": "4498366637571195768871833" }, { "type": "mint", "inputIndex": 0, - "inputQty": "186659473599777308672", - "expectedQty": "184732753199095749890", + "inputQty": "59413698704603120", + "expectedQty": "59034933832031500", "reserves": [ - "2506086933102943155295508", - "1709583791466228489939343" + "2917080333900988550691103", + "1602776344921713528401977" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4004626128994111062016", - "expectedQty": "4033082036769989949933", - "swapFee": "2402775677396466637", + "inputIndex": 0, + "inputQty": "5114173515232510476288", + "expectedQty": "5143881661286280368099", + "swapFee": "3068504109139506285", "reserves": [ - "2506086933102943155295508", - "1705550709429458499989410" + "2911936452239702270323004", + "1602776344921713528401977" ], - "LPTokenSupply": "4172707866110920133748176" + "LPTokenSupply": "4493252829941308004377673" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "52757708602137152", - "expectedQty": "53276411032724338", - "swapFee": "31654625161282", + "inputQty": "16197372910793274", + "expectedQty": "16291422759429672", + "swapFee": "9718423746475", "reserves": [ - "2506086879826532122571170", - "1705550709429458499989410" + "2911936435948279510893332", + "1602776344921713528401977" ], - "LPTokenSupply": "4172707813356376994127152" + "LPTokenSupply": "4493252813744906935959046" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "136185449848874704", - "expectedQty": "134778624160155446", + "inputIndex": 1, + "inputQty": "7107751609836269207552", + "expectedQty": "7094736881321929287647", "reserves": [ - "2506087016011981971445874", - "1705550709429458499989410" + "2911936435948279510893332", + "1609884096531549797609529" ] }, { - "type": "redeemMasset", - "inputQty": "1773570202214917052825", - "expectedQtys": [ - "1064549563069344144272", - "724493304069318525955" - ], - "redemptionFee": "1064142121328950231", - "reserves": [ - "2505022466448912627301602", - "1704826216125389181463455" - ], - "LPTokenSupply": "4170934484346998370124796" - }, - { - "type": "mintMulti", - "inputQtys": [ - "136336594939854323712", - "211811104004792614912" - ], - "expectedQty": "345119617982090018156", + "type": "redeem", + "inputIndex": 1, + "inputQty": "61357932522093972291584", + "expectedQty": "61426835891662932154674", + "swapFee": "36814759513256383374", "reserves": [ - "2505158803043852481625314", - "1705038027229393974078367" + "2911936435948279510893332", + "1548457260639886865454855" ], - "LPTokenSupply": "4171279603964980460142952" + "LPTokenSupply": "4438993299580086218593446" }, { "type": "mint", "inputIndex": 0, - "inputQty": "225040962893844834156544", - "expectedQty": "222684876998337059196790", + "inputQty": "2125856032984353734656", + "expectedQty": "2112039037798747798386", "reserves": [ - "2730199765937697315781858", - "1705038027229393974078367" + "2914062291981263864627988", + "1548457260639886865454855" ] }, { - "type": "redeemMasset", - "inputQty": "408340656649693560832", - "expectedQtys": [ - "253571156320418125932", - "158357813054148548825" + "type": "redeemBassets", + "inputQtys": [ + "423847882698816159744", + "189013984977205624832" + ], + "expectedQty": "609804959256739132744", + "swapFee": "366102637136325274", + "reserves": [ + "2913638444098565048468244", + "1548268246654909659830023" + ], + "LPTokenSupply": "4440495204166254804566340" + }, + { + "type": "mintMulti", + "inputQtys": [ + "113984284134701529038848", + "13009220705153747779584" ], - "redemptionFee": "245004393989816136", + "expectedQty": "126226932144082959387491", "reserves": [ - "2729946194781376897655926", - "1704879669416339825529542" + "3027622728233266577507092", + "1561277467360063407609607" ], - "LPTokenSupply": "4393556164807107224760523" + "LPTokenSupply": "4566722136310337763953831" }, { "type": "redeemMasset", - "inputQty": "72096732152304896", + "inputQty": "502742557876719452160", "expectedQtys": [ - "44770591315346393", - "27959697911699849" + "333105777053018922433", + "171775214629804395061" ], - "redemptionFee": "43258039291382", + "redemptionFee": "301645534726031671", "reserves": [ - "2729946150010785582309533", - "1704879641456641913829693" + "3027289622456213558584659", + "1561105692145433603214546" ], - "LPTokenSupply": "4393556092714700876384765" + "LPTokenSupply": "4566219423917014517104838" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1459021545938003689472", - "expectedQty": "1443545323583896709100", + "inputQty": "1230092567366775603200", + "expectedQty": "1221962603818201270845", "reserves": [ - "2731405171556723585999005", - "1704879641456641913829693" + "3028519715023580334187859", + "1561105692145433603214546" ] }, { "type": "mintMulti", "inputQtys": [ - "28636736576728391680", - "70815046902471802880" + "307666113380121053233152", + "86001073354771919798272" ], - "expectedQty": "98636677484228925913", + "expectedQty": "391503041265015423484312", "reserves": [ - "2731433808293300314390685", - "1704950456503544385632573" + "3336185828403701387421011", + "1647106765500205523012818" ], - "LPTokenSupply": "4395098274715769002019778" + "LPTokenSupply": "4958944427785848141859995" }, { - "type": "redeemMasset", - "inputQty": "4323853176674240921", - "expectedQtys": [ - "2685544627185475740", - "1676306606507689724" - ], - "redemptionFee": "2594311906004544", + "type": "redeem", + "inputIndex": 0, + "inputQty": "81214519529321439166464", + "expectedQty": "81715129366008570792164", + "swapFee": "48728711717592863499", "reserves": [ - "2731431122748673128914945", - "1704948780196937877942849" + "3254470699037692816628847", + "1647106765500205523012818" ], - "LPTokenSupply": "4395093951122023518379311" + "LPTokenSupply": "4877734781127698461979880" }, { - "type": "redeemBassets", - "inputQtys": [ - "2655662965147176534016", - "1963807455879527923712" - ], - "expectedQty": "4577119235038771481883", - "swapFee": "2747920293199182398", + "type": "redeem", + "inputIndex": 0, + "inputQty": "581742893526019787980800", + "expectedQty": "585107985330723585004272", + "swapFee": "349045736115611872788", "reserves": [ - "2728775459783525952380929", - "1702984972741058350019137" + "2669362713706969231624575", + "1647106765500205523012818" ], - "LPTokenSupply": "4390514358758720867633268" + "LPTokenSupply": "4296026792175290235186358" }, { "type": "redeemMasset", - "inputQty": "15776287593466755", + "inputQty": "146621788099955418726", "expectedQtys": [ - "9799333961373072", - "6115607064427836" - ], - "redemptionFee": "9465772556080", - "reserves": [ - "2728775449984191991007857", - "1702984966625451285591301" + "91049688713068539007", + "56181408957990627385" ], - "LPTokenSupply": "4390514342983379851422121" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "31485470714546192384", - "expectedQty": "31803992947029850980", - "swapFee": "18891282428727715", + "redemptionFee": "87973072859973251", "reserves": [ - "2728743645991244961156877", - "1702984966625451285591301" + "2669271664018256163085568", + "1647050584091247532385433" ], - "LPTokenSupply": "4390482859401793548102508" + "LPTokenSupply": "4295880179184497565764957" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "332282554566881572814848", - "47932317199315805143040" + "303394176273793220608", + "55933754347112087552" ], - "expectedQty": "376306247586075302133077", + "expectedQty": "357341897328557261293", + "swapFee": "214533858712361773", "reserves": [ - "3061026200558126533971725", - "1750917283824767090734341" + "2668968269841982369864960", + "1646994650336900420297881" ], - "LPTokenSupply": "4766789106987868850235585" + "LPTokenSupply": "4295522644206696167378067" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "782050651430413664256", - "489433671472333455360" + "97668849484294843793408", + "46606966693240059723776" ], - "expectedQty": "1259664462976452286081", - "swapFee": "756252429243417422", + "expectedQty": "143562653267856175413736", "reserves": [ - "3060244149906696120307469", - "1750427850153294757278981" + "2766637119326277213658368", + "1693601617030140480021657" ], - "LPTokenSupply": "4765528761897706078873823" + "LPTokenSupply": "4439085297474552342791803" }, { - "type": "redeemMasset", - "inputQty": "519450773749584258662", - "expectedQtys": [ - "333371695606787508613", - "190685145321081424542" - ], - "redemptionFee": "311670464249750555", + "type": "redeem", + "inputIndex": 0, + "inputQty": "195465101900290294022144", + "expectedQty": "196522940736744842327928", + "swapFee": "117279061140174176413", "reserves": [ - "3059910778211089332798856", - "1750237165007973675854439" + "2570114178589532371330440", + "1693601617030140480021657" ], - "LPTokenSupply": "4765009342291002919590216" + "LPTokenSupply": "4243631923480376066187300" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "6636793873799075332096", - "expectedQty": "6677710995038585965607", - "swapFee": "3982076324279445199", + "inputQty": "231236033012422", + "expectedQty": "231776461969347", + "swapFee": "138741619807", "reserves": [ - "3059910778211089332798856", - "1743559454012935089888832" + "2570114178589532371330440", + "1693601616798364018052310" ], - "LPTokenSupply": "4758372946624836272202639" + "LPTokenSupply": "4243631923249153907336858" }, { "type": "mintMulti", "inputQtys": [ - "20220870943696252928", - "2627316300992389632" + "63990818664467611648", + "7963178135096713216" ], - "expectedQty": "22609880622018674451", + "expectedQty": "71554173915353300454", "reserves": [ - "3059930999082033029051784", - "1743562081329236082278464" + "2570178169408196838942088", + "1693609579976499114765526" ], - "LPTokenSupply": "4758395556505458290877090" + "LPTokenSupply": "4243703477423069260637312" }, { - "type": "mintMulti", - "inputQtys": [ - "20659496398105396379648", - "65617796328589159825408" - ], - "expectedQty": "85606532658031355061306", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1140320051674431225856", + "expectedQty": "1142983130240825665386", + "swapFee": "684192031004658735", "reserves": [ - "3080590495480138425431432", - "1809179877657825242103872" + "2570178169408196838942088", + "1692466596846258289100140" ], - "LPTokenSupply": "4844002089163489645938396" + "LPTokenSupply": "4242563225790597929877329" }, { - "type": "redeemMasset", - "inputQty": "236081753353216956825", - "expectedQtys": [ - "150048416461026297017", - "88120954776041958391" - ], - "redemptionFee": "141649052011930174", + "type": "mint", + "inputIndex": 0, + "inputQty": "10300367261836800688128", + "expectedQty": "10239674827952971201039", "reserves": [ - "3080440447063677399134415", - "1809091756703049200145481" - ], - "LPTokenSupply": "4843766021575041630174588" + "2580478536670033639630216", + "1692466596846258289100140" + ] }, { - "type": "redeemMasset", - "inputQty": "1210069428759315244646", - "expectedQtys": [ - "769093772784428553324", - "451676060091414604784" - ], - "redemptionFee": "726041657255589146", + "type": "redeem", + "inputIndex": 0, + "inputQty": "406246833215779", + "expectedQty": "408412179644119", + "swapFee": "243748099929", "reserves": [ - "3079671353290892970581091", - "1808640080642957785540697" + "2580478536261621459986097", + "1692466596846258289100140" ], - "LPTokenSupply": "4842556024750448040488856" + "LPTokenSupply": "4252802900212328442672581" }, { - "type": "redeemBassets", - "inputQtys": [ - "128862521450979440", - "334307316787740288" + "type": "mint", + "inputIndex": 1, + "inputQty": "116449718166786253258752", + "expectedQty": "116092480766682335511472", + "reserves": [ + "2580478536261621459986097", + "1808916315013044542358892" + ] + }, + { + "type": "redeemMasset", + "inputQty": "398347415490046", + "expectedQtys": [ + "235141863077470", + "164834524483049" ], - "expectedQty": "459473458643521116", - "swapFee": "275849584937074", + "redemptionFee": "239008449294", "reserves": [ - "3079671224428371519601651", - "1808639746335640997800409" + "2580478536026479596908627", + "1808916314848210017875843" ], - "LPTokenSupply": "4842555565028724770524372" + "LPTokenSupply": "4368895380580687263538936" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "54681644268863264653312", - "expectedQty": "54088853335337304299969", + "inputIndex": 1, + "inputQty": "2399808380040833024", + "expectedQty": "2392080748763254918", "reserves": [ - "3134352868697234784254963", - "1808639746335640997800409" + "2580478536026479596908627", + "1808918714656590058708867" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "82598701443962224", - "outputIndex": 0, - "expectedQty": "82939617667322016", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "5813034127566538", + "expectedQtys": [ + "3431393987588132", + "2405411521487106" + ], + "redemptionFee": "3487820476539", "reserves": [ - "3134352785757617116932947", - "1808639828934342441762633" + "2580478532595085609320495", + "1808918712251178537221761" ], - "LPTokenSupply": "4896644418364062074824341", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4368897766848750681274969" }, { - "type": "redeemBassets", - "inputQtys": [ - "31539649408959762432", - "51812419579330084864" + "type": "redeemMasset", + "inputQty": "10739633057111538348851", + "expectedQtys": [ + "6339531386258828566941", + "4444019512913613664016" ], - "expectedQty": "82657530687761519717", - "swapFee": "49624292988449981", + "redemptionFee": "6443779834266923009", "reserves": [ - "3134321246108208157170515", - "1808588016514763111677769" + "2574139001208826780753554", + "1804474692738264923557745" ], - "LPTokenSupply": "4896561716171510623699640" + "LPTokenSupply": "4358158778169622569618418" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "88919979692186172129280", - "expectedQty": "88304112509717174025660", + "inputQty": "422679940303926", + "expectedQty": "423791548361502", + "swapFee": "253607964182", "reserves": [ - "3134321246108208157170515", - "1897507996206949283807049" - ] + "2574139001208826780753554", + "1804474692314473375196243" + ], + "LPTokenSupply": "4358158777746967990110910" }, { "type": "mintMulti", "inputQtys": [ - "109811162783972605952", - "211247095356519383040" + "4170101977786018168832", + "9476064327697988321280" ], - "expectedQty": "318390936294834607589", + "expectedQty": "13591866550007048649148", "reserves": [ - "3134431057270992129776467", - "1897719243302305803190089" + "2578309103186612798922386", + "1813950756642171363517523" ], - "LPTokenSupply": "4985184219617522632332889" + "LPTokenSupply": "4371750644296975038760058" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "13064992203840204", + "expectedQty": "13131697443990237", + "swapFee": "7838995322304", + "reserves": [ + "2578309090054915354932149", + "1813950756642171363517523" + ], + "LPTokenSupply": "4371750631232766734452084" }, { "type": "mintMulti", "inputQtys": [ - "9812913416543752192", - "29691696088143949824" + "885249177390265270272", + "722471414668711297024" ], - "expectedQty": "39189906238869845515", + "expectedQty": "1600356174870561015960", "reserves": [ - "3134440870184408673528659", - "1897748934998393947139913" + "2579194339232305620202421", + "1814673228056840074814547" ], - "LPTokenSupply": "4985223409523761502178404" + "LPTokenSupply": "4373350987407637295468044" }, { "type": "redeemBassets", "inputQtys": [ - "38619555873920452132864", - "11576078755459076456448" + "3341413738060008", + "3665792634892775" ], - "expectedQty": "49700507984159242367755", - "swapFee": "29838207715124620192", + "expectedQty": "6976369244187697", + "swapFee": "4188334547240", "reserves": [ - "3095821314310488221395795", - "1886172856242934870683465" + "2579194335890891882142413", + "1814673224391047439921772" ], - "LPTokenSupply": "4935496047152658647652475" + "LPTokenSupply": "4373350980427498550187830" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "401516402012670080", + "expectedQty": "399237197733249284", + "reserves": [ + "2579194737407293894812493", + "1814673224391047439921772" + ] }, { "type": "mintMulti", "inputQtys": [ - "82501670127155", - "11117286760221" + "787370954416460791808", + "480450382835827343360" ], - "expectedQty": "92657725484738", + "expectedQty": "1261796155990799032369", "reserves": [ - "3095821314392989891522950", - "1886172856254052157443686" + "2579982108361710355604301", + "1815153674773883267265132" ], - "LPTokenSupply": "4935496047245316373137213" + "LPTokenSupply": "4374613175820687082469483" }, { "type": "swap", "inputIndex": 0, - "inputQty": "27324044355788176", + "inputQty": "6629525424840880", "outputIndex": 1, - "expectedQty": "27203321467919385", - "swapFee": "21625463204629", + "expectedQty": "6608013781365854", + "swapFee": "5273513707215", "reserves": [ - "3095821341717034247311126", - "1886172829050730689524301" + "2579982114991235780445181", + "1815153668165869485899278" ], - "LPTokenSupply": "4935496047247478919457675", + "LPTokenSupply": "4374613175821214433840204", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "10548621445831818477568", - "44163210753105217978368" + "59826472526125727744", + "58066912598421749760" ], - "expectedQty": "54283501662268536538093", + "expectedQty": "117365765998125348310", "reserves": [ - "3106369963162866065788694", - "1930336039803835907502669" + "2580041941463761906172925", + "1815211735078467907649038" ], - "LPTokenSupply": "4989779548909747455995768" + "LPTokenSupply": "4374730541587212559188514" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "37133564755062562816", - "expectedQty": "37380584062124350174", - "swapFee": "22280138853037537", - "reserves": [ - "3106369963162866065788694", - "1930298659219773783152495" - ], - "LPTokenSupply": "4989742417573006278736705" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "61076749460416894074880", - "expectedQty": "61693884438777388674401", - "swapFee": "36646049676250136444", - "reserves": [ - "3044676078724088677114293", - "1930298659219773783152495" - ], - "LPTokenSupply": "4928669332717557009675469" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "239293556886197010432", - "16740240932820459520" - ], - "expectedQty": "253381773917287488197", - "swapFee": "152120336552303875", + "inputQty": "128919912820072", + "outputIndex": 0, + "expectedQty": "129236116654288", + "swapFee": "0", "reserves": [ - "3044436785167202480103861", - "1930281918978840962692975" + "2580041941334525789518637", + "1815211735207387820469110" ], - "LPTokenSupply": "4928415814035336825113783" + "LPTokenSupply": "4374730541587212559188514", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "27345845801542767083520", - "expectedQty": "27529810231063231454013", - "swapFee": "16407507480925660250", + "inputQty": "119698030126773488", + "expectedQty": "120014795099208006", + "swapFee": "71818818076064", "reserves": [ - "3044436785167202480103861", - "1902752108747777731238962" + "2580041941334525789518637", + "1815211615192592721261104" ], - "LPTokenSupply": "4901071608984542150596288" + "LPTokenSupply": "4374730421896364314222632" }, { "type": "redeemMasset", - "inputQty": "5325715622035821363", + "inputQty": "15542241717794044379136", "expectedQtys": [ - "3306231281059487155", - "2066371873015685980" + "9160696053952330943595", + "6445089753766592908427" ], - "redemptionFee": "3195429373221492", + "redemptionFee": "9325345030676426627", "reserves": [ - "3044433478935921420616706", - "1902750042375904715552982" + "2570881245280573458575042", + "1808766525438826128352677" ], - "LPTokenSupply": "4901066283588463052097074" + "LPTokenSupply": "4359189112713073337486158" }, { - "type": "redeemMasset", - "inputQty": "49489325970247", - "expectedQtys": [ - "30723224691227", - "19201804699503" - ], - "redemptionFee": "29693595582", + "type": "mint", + "inputIndex": 0, + "inputQty": "7308935430847872368640", + "expectedQty": "7267398847032462633303", "reserves": [ - "3044433478905198195925479", - "1902750042356702910853479" - ], - "LPTokenSupply": "4901066283538976695486385" + "2578190180711421330943682", + "1808766525438826128352677" + ] }, { - "type": "redeemMasset", - "inputQty": "29133664346343368294", - "expectedQtys": [ - "18086326662231524130", - "11303830108652481155" - ], - "redemptionFee": "17480198607806020", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2165208110198317121536", + "expectedQty": "2170908568700471984815", + "swapFee": "1299124866118990272", "reserves": [ - "3044415392578535964401349", - "1902738738526594258372324" + "2578190180711421330943682", + "1806595616870125656367862" ], - "LPTokenSupply": "4901037151622650212898693" + "LPTokenSupply": "4364291433362394094896952" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "421410770241413312", + "expectedQty": "420053057573352596", + "reserves": [ + "2578190180711421330943682", + "1806596038280895897781174" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "24764084898838549102592", - "30187308257527843520512" + "14294823156744089239552", + "2607608455592482439168" ], - "expectedQty": "54469413399250832136486", + "expectedQty": "16812739685750125519624", + "swapFee": "10093700031468956685", "reserves": [ - "3069179477477374513503941", - "1932926046784122101892836" + "2563895357554677241704130", + "1803988429825303415342006" ], - "LPTokenSupply": "4955506565021901045035179" + "LPTokenSupply": "4347470029399673220668906" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "25600018718577947312128", - "outputIndex": 1, - "expectedQty": "25491848501897001264511", - "swapFee": "20262737674583025065", + "inputQty": "25721983040633458688", + "expectedQty": "25853412611549814348", + "swapFee": "15433189824380075", "reserves": [ - "3094779496195952460816069", - "1907434198282225100628325" + "2563869504142065691889782", + "1803988429825303415342006" ], - "LPTokenSupply": "4955508591295668503337685", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4347444308959951569648225" }, { "type": "mint", "inputIndex": 0, - "inputQty": "8056192502461954523136", - "expectedQty": "7970200363985904780320", + "inputQty": "17750718261451173888", + "expectedQty": "17649883656034003032", "reserves": [ - "3102835688698414415339205", - "1907434198282225100628325" + "2563887254860327143063670", + "1803988429825303415342006" ] }, { - "type": "redeemMasset", - "inputQty": "609890926933205504", - "expectedQtys": [ - "381034346853477877", - "234236684383804398" + "type": "redeemBassets", + "inputQtys": [ + "733120036255518294016", + "9113149266491642880" ], - "redemptionFee": "365934556159923", + "expectedQty": "738039391366317540081", + "swapFee": "443089488512898263", "reserves": [ - "3102835307664067561861328", - "1907433964045540716823927" + "2563154134824071624769654", + "1803979316676036923699126" ], - "LPTokenSupply": "4963478181805320930528493" + "LPTokenSupply": "4346723520671701624502738" }, { - "type": "redeemMasset", - "inputQty": "1356446772365881874841", - "expectedQtys": [ - "847451219815968403456", - "520961339957721440056" + "type": "redeemBassets", + "inputQtys": [ + "1316123994452232765440", + "2153118883089271750656" ], - "redemptionFee": "813868063419529124", + "expectedQty": "3454785180551632023019", + "swapFee": "2074115577677585765", "reserves": [ - "3101987856444251593457872", - "1906913002705582995383871" + "2561838010829619392004214", + "1801826197792947651948470" ], - "LPTokenSupply": "4962121816419761390606564" + "LPTokenSupply": "4343266868787130082652529" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "59330086522807853056", - "109141657271169515520" + "209100527507543031808", + "365780286479794110464" ], - "expectedQty": "167056664520545279859", + "expectedQty": "572507134369919985505", + "swapFee": "343710506926107655", "reserves": [ - "3102047186530774401310928", - "1907022144362854164899391" + "2561628910302111848972406", + "1801460417506467857838006" ], - "LPTokenSupply": "4962288873084281935886423" + "LPTokenSupply": "4342694052313303929170133" }, { "type": "mintMulti", "inputQtys": [ - "1175493954917700468736", - "493434082199864410112" + "125613208353393606656", + "938889410415201746944" ], - "expectedQty": "1652842277949117969120", + "expectedQty": "1060745239526990373443", "reserves": [ - "3103222680485692101779664", - "1907515578445054029309503" + "2561754523510465242579062", + "1802399306916883059584950" ], - "LPTokenSupply": "4963941715362231053855543" + "LPTokenSupply": "4343754797552830919543576" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "76884330111058766200832", - "outputIndex": 0, - "expectedQty": "77136497583101269633144", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "17387811088414674124", + "expectedQtys": [ + "10248409452703337040", + "7210576159826762218" + ], + "redemptionFee": "10432686653048804", "reserves": [ - "3026086182902590832146520", - "1984399908556112795510335" + "2561744275101012539242022", + "1802392096340723232822732" ], - "LPTokenSupply": "4963941715362231053855543", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4343737410785011170174332" }, { "type": "mintMulti", "inputQtys": [ - "1416823018323199918080", - "1965598302641904156672" + "755345491102073728", + "1128108783102239232" ], - "expectedQty": "3352864063203963714561", + "expectedQty": "1875504662196761301", "reserves": [ - "3027503005920914032064600", - "1986365506858754699667007" + "2561745030446503641315750", + "1802393224449506335061964" ], - "LPTokenSupply": "4967294579425435017570104" + "LPTokenSupply": "4343739286289673366935633" }, { - "type": "redeemBassets", - "inputQtys": [ - "571220611793482088448", - "1269942618137258622976" - ], - "expectedQty": "1825669432497532807655", - "swapFee": "1096059295075565023", - "reserves": [ - "3026931785309120549976152", - "1985095564240617441044031" + "type": "redeemMasset", + "inputQty": "25368739559047579880652", + "expectedQtys": [ + "14952382099355584564596", + "10520200825981999811878" ], - "LPTokenSupply": "4965467923539571916753927" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "48332931781855800", - "expectedQty": "48814981591732227", - "swapFee": "28999759069113", + "redemptionFee": "15221243735428547928", "reserves": [ - "3026931736494138958243925", - "1985095564240617441044031" + "2546792648347148056751154", + "1791873023623524335250086" ], - "LPTokenSupply": "4965467875209540110805038" + "LPTokenSupply": "4318372068854999329909773" }, { "type": "redeemMasset", - "inputQty": "3782731385954661171", + "inputQty": "29782865964836", "expectedQtys": [ - "2304556172460598059", - "1511353619356300501" + "17554132068013", + "12350740735100" ], - "redemptionFee": "2269638831572796", + "redemptionFee": "17869719578", "reserves": [ - "3026929431937966497645866", - "1985094052886998084743530" + "2546792648329593924683141", + "1791873023611173594514986" ], - "LPTokenSupply": "4965464092705118039301146" + "LPTokenSupply": "4318372068825218250916894" }, { "type": "redeemBassets", "inputQtys": [ - "175418551214494527258624", - "104269999906347961810944" + "120072709097404563456", + "109594552634441826304" ], - "expectedQty": "277071149907143034328352", - "swapFee": "166342495441550751047", + "expectedQty": "228628969055577857349", + "swapFee": "137259737275712141", "reserves": [ - "2851510880723471970387242", - "1880824052980650122932586" + "2546672575620496520119685", + "1791763429058539152688682" ], - "LPTokenSupply": "4688243234552077609296850" + "LPTokenSupply": "4318143316322399124918617" }, { - "type": "mintMulti", - "inputQtys": [ - "666458373524784152576", - "328176632437835825152" + "type": "redeemMasset", + "inputQty": "553854030271170560", + "expectedQtys": [ + "326445528924023219", + "229677409614866698" ], - "expectedQty": "985171043710741652066", + "redemptionFee": "332312418162702", "reserves": [ - "2852177339096996754539818", - "1881152229613087958757738" + "2546672249174967596096466", + "1791763199381129537821984" ], - "LPTokenSupply": "4689228405595788350948916" + "LPTokenSupply": "4318142762501600095564327" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "15674523578156931072", - "23513796612352528384" + "702754746119922", + "10407032651661302" ], - "expectedQty": "38846476758771798004", + "expectedQty": "11072012061628865", + "swapFee": "6647195554309", "reserves": [ - "2852193013620574911470890", - "1881175743409700311286122" + "2546672248472212849976544", + "1791763188974096886160682" ], - "LPTokenSupply": "4689267252072547122746920" + "LPTokenSupply": "4318142751423605557936582" }, { - "type": "redeemBassets", - "inputQtys": [ - "880285005892256", - "175067004466615" - ], - "expectedQty": "1044802614752787", - "swapFee": "627257923605", + "type": "swap", + "inputIndex": 1, + "inputQty": "77564561941056871989248", + "outputIndex": 0, + "expectedQty": "77733281287368858254288", + "swapFee": "0", "reserves": [ - "2852193012740289905578634", - "1881175743234633306819507" + "2468938967184843991722256", + "1869327750915153758149930" ], - "LPTokenSupply": "4689267251027179975862887" + "LPTokenSupply": "4318142751423605557936582", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "412454400546652096", - "3601395222093724160" - ], - "expectedQty": "3982334598905915432", - "swapFee": "2390835260499849", + "type": "mint", + "inputIndex": 1, + "inputQty": "6403009485664535183360", + "expectedQty": "6380162482409934393564", "reserves": [ - "2852192600285889358926538", - "1881172141839411213095347" - ], - "LPTokenSupply": "4689263266540829335497589" + "2468938967184843991722256", + "1875730760400818293333290" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "319332016205253574656", - "115182744383148638208" - ], - "expectedQty": "430297687745039638265", + "type": "mint", + "inputIndex": 1, + "inputQty": "3937808226989821440", + "expectedQty": "3923729803625414617", "reserves": [ - "2852511932302094612501194", - "1881287324583794361733555" - ], - "LPTokenSupply": "4689693564228574375135854" + "2468938967184843991722256", + "1875734698209045283154730" + ] }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "39697200850281491857408", + "expectedQty": "39553576199488176372662", + "reserves": [ + "2468938967184843991722256", + "1915431899059326775012138" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "1142071834342304776192", - "542829201704039809024" + "2111149533248639744", + "1395655961340993792" ], - "expectedQty": "1668830645541204545848", + "expectedQty": "3490341954763521514", + "swapFee": "2095462450328309", "reserves": [ - "2853654004136436917277386", - "1881830153785498401542579" + "2468936856035310743082512", + "1915430503403365434018346" ], - "LPTokenSupply": "4691362394874115579681702" + "LPTokenSupply": "4364076921607436325300431" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "309571456591123919667200", - "expectedQty": "311593855595540223594038", - "swapFee": "185742873954674351800", + "inputQty": "1082480891694003781632", + "expectedQty": "1078517566071485168556", + "reserves": [ + "2468936856035310743082512", + "1916512984295059437799978" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "39056392179059", + "expectedQty": "39243969329695", + "swapFee": "23433835307", "reserves": [ - "2853654004136436917277386", - "1570236298189958177948541" + "2468936855996066773752817", + "1916512984295059437799978" ], - "LPTokenSupply": "4381809512570387127449682" + "LPTokenSupply": "4365155439134453761673458" }, { "type": "redeemBassets", "inputQtys": [ - "1489523859472089350144", - "1745085366334396563456" + "758443750418919194624", + "277284124483486744576" ], - "expectedQty": "3206549208238741126900", - "swapFee": "1925084575688657870", + "expectedQty": "1030634354101374960477", + "swapFee": "618751863578972359", "reserves": [ - "2852164480276964827927242", - "1568491212823623781385085" + "2468178412245647854558193", + "1916235700170575951055402" ], - "LPTokenSupply": "4378601230786030266530698" + "LPTokenSupply": "4364124247903675165637856" }, { - "type": "redeemMasset", - "inputQty": "1756435078265655263232", - "expectedQtys": [ - "1143432729588333595777", - "628808121416642240091" - ], - "redemptionFee": "1053861046959393157", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4769246795786143924224", + "expectedQty": "4783885814481841624731", + "swapFee": "2861548077471686354", "reserves": [ - "2851021047547376494331465", - "1567862404702207139144994" + "2468178412245647854558193", + "1911451814356094109430671" ], - "LPTokenSupply": "4376844901093869307206781" + "LPTokenSupply": "4359355287262696768882267" }, { "type": "redeemBassets", "inputQtys": [ - "9431527019954067996672", - "3408525500412730015744" + "498100134781847666688", + "329164081232917889024" ], - "expectedQty": "12712698816410285938635", - "swapFee": "7632198609011578510", + "expectedQty": "823379303562138412046", + "swapFee": "494324176643269008", "reserves": [ - "2841589520527422426334793", - "1564453879201794409129250" + "2467680312110866006891505", + "1911122650274861191541647" ], - "LPTokenSupply": "4364125333298710910847486" + "LPTokenSupply": "4358531463067375651528112" }, { "type": "redeemBassets", "inputQtys": [ - "12048698755132845719552", - "14129218139587312877568" + "44602168850091293540352", + "55833181617371557658624" ], - "expectedQty": "25950870462360458059460", - "swapFee": "15579870199535996433", + "expectedQty": "99991646096726687345464", + "swapFee": "60031006261793088260", "reserves": [ - "2829540821772289580615241", - "1550324661062207096251682" + "2423078143260774713351153", + "1855289468657489633883023" ], - "LPTokenSupply": "4338160440953170870391235" + "LPTokenSupply": "4258485789065013350403213" }, { - "type": "redeemBassets", - "inputQtys": [ - "1140266536067807313920", - "6571788901947704320" - ], - "expectedQty": "1134091657291875648953", - "swapFee": "680863512482614958", + "type": "redeem", + "inputIndex": 0, + "inputQty": "743332805364806189056", + "expectedQty": "746944649812019299133", + "swapFee": "445999683218883713", "reserves": [ - "2828400555236221773301321", - "1550318089273305148547362" + "2422331198610962694052020", + "1855289468657489633883023" ], - "LPTokenSupply": "4337025736518717760388818" + "LPTokenSupply": "4257742500859616866102528" }, { - "type": "mintMulti", - "inputQtys": [ - "43222649537859272704", - "256629016386492039168" + "type": "redeemMasset", + "inputQty": "24480532107519401", + "expectedQtys": [ + "13919201712331560", + "10660866013622076" ], - "expectedQty": "297684292971009857528", + "redemptionFee": "14688319264511", "reserves": [ - "2828443777885759632574025", - "1550574718289691640586530" + "2422331184691760981720460", + "1855289457996623620260947" ], - "LPTokenSupply": "4337323420811688770246346" + "LPTokenSupply": "4257742476380553590509578" }, { - "type": "redeemBassets", - "inputQtys": [ - "1190198329614281998336", - "896002620909516881920" + "type": "redeemMasset", + "inputQty": "1542131358345821", + "expectedQtys": [ + "876828875676307", + "671572648608034" ], - "expectedQty": "2067056028238077414401", - "swapFee": "1240978203865165547", + "redemptionFee": "925278815007", "reserves": [ - "2827253579556145350575689", - "1549678715668782123704610" + "2422331183814932106044153", + "1855289457325050971652913" ], - "LPTokenSupply": "4335255247903067214182951" + "LPTokenSupply": "4257742474838514760045257" }, { "type": "redeemMasset", - "inputQty": "1702558289696627517030", + "inputQty": "1656792337943837120921", "expectedQtys": [ - "1109663815726490526196", - "608230690452999257765" + "942023100072989420022", + "721505604931190221683" ], - "redemptionFee": "1021534973817976510", + "redemptionFee": "994075402766302272", "reserves": [ - "2826143915740418860049493", - "1549070484978329124446845" + "2421389160714859116624131", + "1854567951720119781431230" ], - "LPTokenSupply": "4333552791766867968463572" + "LPTokenSupply": "4256085781908111199554563" }, { "type": "redeemMasset", - "inputQty": "112437613673346013593", + "inputQty": "723983048559755578572", "expectedQtys": [ - "73282646852710388521", - "40167800609291586218" + "411644165384898439605", + "315282685254123558568" ], - "redemptionFee": "67462568204007608", + "redemptionFee": "434389829135853347", "reserves": [ - "2826070633093566149660972", - "1549030317177719832860627" + "2420977516549474218184526", + "1854252669034865657872662" ], - "LPTokenSupply": "4333440360899451442850739" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7586741876470890627072", - "expectedQty": "7502184343450271489653", - "reserves": [ - "2833657374970037040288044", - "1549030317177719832860627" - ] + "LPTokenSupply": "4255361842298534357561325" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "39622540614165206138880", - "29226995137717804728320" + "58327013965544000", + "7175272963361435648" ], - "expectedQty": "68216358581309365491972", - "swapFee": "40954387781454491990", + "expectedQty": "7207293175141730440", "reserves": [ - "2794034834355871834149164", - "1519803322040002028132307" + "2420977574876488183728526", + "1854259844307829019308310" ], - "LPTokenSupply": "4272689327712589039805628" + "LPTokenSupply": "4255369049591709499291765" }, { "type": "redeemBassets", "inputQtys": [ - "153440452152391630848", - "162917592986095910912" + "176743286821376004980736", + "338777993487254179282944" ], - "expectedQty": "313579519816087320421", - "swapFee": "188260668290626768", + "expectedQty": "513387507160093853474937", + "swapFee": "308217434756910458359", "reserves": [ - "2793881393903719442518316", - "1519640404447015932221395" + "2244234288055112178747790", + "1515481850820574840025366" ], - "LPTokenSupply": "4272375578758171490921114" + "LPTokenSupply": "3741704146740334426404303" }, { - "type": "redeemMasset", - "inputQty": "9851789402250662851379", - "expectedQtys": [ - "6438623141118383389157", - "3502078468900186368578" + "type": "mintMulti", + "inputQtys": [ + "151050042340324442898432", + "80179559844727551426560" ], - "redemptionFee": "5911073641350397710", + "expectedQty": "230085213664540396839800", "reserves": [ - "2787442770762601059129159", - "1516138325978115745852817" + "2395284330395436621646222", + "1595661410665302391451926" ], - "LPTokenSupply": "4262524380463284963109506" + "LPTokenSupply": "3971789360404874823244103" }, { - "type": "mintMulti", - "inputQtys": [ - "13887046590203711488", - "8816289502382029824" - ], - "expectedQty": "22490544788740597465", + "type": "redeem", + "inputIndex": 1, + "inputQty": "13823945469934943862784", + "expectedQty": "13858045966089779826745", + "swapFee": "8294367281960966317", "reserves": [ - "2787456657809191262840647", - "1516147142267618127882641" + "2395284330395436621646222", + "1581803364699212611625181" ], - "LPTokenSupply": "4262546871008073703706971" + "LPTokenSupply": "3957966244371668075477950" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "4167332992731248066560", - "expectedQty": "4140083614241716372050", + "inputQty": "34793637430753100", + "expectedQty": "34878791440759302", + "swapFee": "20876182458451", "reserves": [ - "2787456657809191262840647", - "1520314475260349375949201" - ] + "2395284330395436621646222", + "1581803329820421170865879" + ], + "LPTokenSupply": "3957966209580118262970695" }, { "type": "mintMulti", "inputQtys": [ - "29228804533928136704", - "62628828050706587648" + "1707532332811602", + "1386169447613002" ], - "expectedQty": "91121138835376503808", + "expectedQty": "3079284656105610", "reserves": [ - "2787485886613725190977351", - "1520377104088400082536849" + "2395284332102968954457824", + "1581803331206590618478881" ], - "LPTokenSupply": "4266778075761150796582829" + "LPTokenSupply": "3957966212659402919076305" }, { - "type": "mintMulti", - "inputQtys": [ - "230691902016314016", - "70699091739240224" + "type": "redeemMasset", + "inputQty": "13664115862896794769817", + "expectedQtys": [ + "8264296160041037146097", + "5457594750162121832017" ], - "expectedQty": "298351772386974801", + "redemptionFee": "8198469517738076861", "reserves": [ - "2787486117305627207291367", - "1520377174787491821777073" + "2387020035942927917311727", + "1576345736456428496646864" ], - "LPTokenSupply": "4266778374112923183557630" + "LPTokenSupply": "3944302916643457898114174" }, { "type": "mintMulti", "inputQtys": [ - "8972368355425225728", - "7674503878947222061056" + "14693890361994074128384", + "64678196661681221795840" ], - "expectedQty": "7633002065589439926864", + "expectedQty": "79083008186311337776691", "reserves": [ - "2787495089673982632517095", - "1528051678666439043838129" + "2401713926304921991440111", + "1641023933118109718442704" ], - "LPTokenSupply": "4274411376178512623484494" + "LPTokenSupply": "4023385924829769235890865" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "90965135966682249953280", - "expectedQty": "91494264765599905263366", - "swapFee": "54579081580009349971", - "reserves": [ - "2787495089673982632517095", - "1436557413900839138574763" + "type": "redeemBassets", + "inputQtys": [ + "100043235457295253504", + "93006862604046073856" + ], + "expectedQty": "192165021975603648483", + "swapFee": "115368234125837691", + "reserves": [ + "2401613883069464696186607", + "1640930926255505672368848" + ], + "LPTokenSupply": "4023193655976382918988459" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "12653373789569183383552", + "expectedQty": "12686195547972234938857", + "swapFee": "7592024273741510030", + "reserves": [ + "2401613883069464696186607", + "1628244730707533437429991" ], - "LPTokenSupply": "4183451698119988374466211" + "LPTokenSupply": "4010541041389241109755910" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "4790599193585762304", + "expectedQty": "4762358825475804054", + "reserves": [ + "2401618673668658281948911", + "1628244730707533437429991" + ] }, { "type": "redeemBassets", "inputQtys": [ - "212529859787945664", - "5252829079041367040" + "36457696049171491979264", + "3854625869993163096064" ], - "expectedQty": "5430476153959725400", - "swapFee": "3260241837478322", + "expectedQty": "40085820485501334811190", + "swapFee": "24065931850411047515", "reserves": [ - "2787494877144122844571431", - "1436552161071760097207723" + "2365160977619486789969647", + "1624390104837540274333927" ], - "LPTokenSupply": "4183446264709616761010320" + "LPTokenSupply": "3970438323923899880806009" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1333018013781135720448", - "expectedQty": "1324775235546025261916", + "inputIndex": 0, + "inputQty": "537386591334885970935808", + "expectedQty": "534053074848923723470207", "reserves": [ - "2787494877144122844571431", - "1437885179085541232928171" + "2902547568954372760905455", + "1624390104837540274333927" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "269765243117659360", - "expectedQty": "272705939740510515", - "swapFee": "161859145870595", + "inputQty": "33100930188224394952704", + "expectedQty": "33297965613529720631300", + "swapFee": "19860558112934636971", "reserves": [ - "2787494604438183104060916", - "1437885179085541232928171" + "2869249603340843040274155", + "1624390104837540274333927" ], - "LPTokenSupply": "4184770770196105583199935" + "LPTokenSupply": "4471392454640410502787209" }, { - "type": "redeemBassets", - "inputQtys": [ - "7988438249695393873920", - "8578689579108211359744" - ], - "expectedQty": "16423217958703354001935", - "swapFee": "9859846683231951572", + "type": "redeem", + "inputIndex": 0, + "inputQty": "26149476896930", + "expectedQty": "26304712630866", + "swapFee": "15689686138", "reserves": [ - "2779506166188487710186996", - "1429306489506433021568427" + "2869249603314538327643289", + "1624390104837540274333927" ], - "LPTokenSupply": "4168338678375387320441584" + "LPTokenSupply": "4471392454614262594858892" }, { - "type": "redeemBassets", - "inputQtys": [ - "2528204963572876836864", - "4600293956762973241344" - ], - "expectedQty": "7071358365007512871770", - "swapFee": "4245362236346315512", + "type": "redeem", + "inputIndex": 0, + "inputQty": "69079790725839503360", + "expectedQty": "69489878319903443261", + "swapFee": "41447874435503702", "reserves": [ - "2776977961224914833350132", - "1424706195549670048327083" + "2869180113436218424200028", + "1624390104837540274333927" ], - "LPTokenSupply": "4161263499184367095885852" + "LPTokenSupply": "4471323378968324198905902" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "3482314827949426606080", - "expectedQty": "3501736816145321403209", - "swapFee": "2089388896769655963", + "inputQty": "7775467005222682886144", + "outputIndex": 0, + "expectedQty": "7808681727124930451210", + "swapFee": "0", "reserves": [ - "2776977961224914833350132", - "1421204458733524726923874" + "2861371431709093493748818", + "1632165571842762957220071" ], - "LPTokenSupply": "4157781393295307346245368" + "LPTokenSupply": "4471323378968324198905902", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "39558262714738476580864", - "expectedQty": "39311777979655910913755", + "type": "mintMulti", + "inputQtys": [ + "191015321364541024", + "120111819756728064" + ], + "expectedQty": "309618988896478704", "reserves": [ - "2776977961224914833350132", - "1460762721448263203504738" - ] + "2861371622724414858289842", + "1632165691954582713948135" + ], + "LPTokenSupply": "4471323688587313095384606" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "2249574266528168148992", - "expectedQty": "2224127604899400763300", + "inputQty": "183616055111573223505920", + "expectedQty": "184680587605061131658675", + "swapFee": "110169633066943934103", "reserves": [ - "2779227535491443001499124", - "1460762721448263203504738" - ] + "2676691035119353726631167", + "1632165691954582713948135" + ], + "LPTokenSupply": "4287718650439046566272096" }, { "type": "mintMulti", "inputQtys": [ - "1562398033214255661056", - "1350219894627915005952" + "43688781463634996887552", + "6523969458857807183872" ], - "expectedQty": "2886409119558444587281", + "expectedQty": "49920713522060594841017", "reserves": [ - "2780789933524657257160180", - "1462112941342891118510690" + "2720379816582988723518719", + "1638689661413440521132007" ], - "LPTokenSupply": "4202203707999421102509704" + "LPTokenSupply": "4337639363961107161113113" }, { - "type": "redeemMasset", - "inputQty": "5166444969875777126", - "expectedQtys": [ - "3416821049895431753", - "1796532062733971163" + "type": "redeemBassets", + "inputQtys": [ + "59891835467120173056", + "145583712658256756736" ], - "redemptionFee": "3099866981925466", + "expectedQty": "204719046422966710393", + "swapFee": "122905170956353838", "reserves": [ - "2780786516703607361728427", - "1462111144810828384539527" + "2720319924747521603345663", + "1638544077700782264375271" ], - "LPTokenSupply": "4202198541864437924925124" + "LPTokenSupply": "4337434534300030333684264" }, { "type": "mintMulti", "inputQtys": [ - "166248959804514680963072", - "217899013486259287883776" + "2172964854476509", + "172784136270968" ], - "expectedQty": "380855187992107079336257", + "expectedQty": "2331584734362910", "reserves": [ - "2947035476508122042691499", - "1680010158297087672423303" + "2720319926920486457822172", + "1638544077873566400646239" ], - "LPTokenSupply": "4583053729856545004261381" + "LPTokenSupply": "4337434536631615068047174" }, { - "type": "redeemMasset", - "inputQty": "41296854059347910", - "expectedQtys": [ - "26539132895676364", - "15129106253570346" + "type": "mintMulti", + "inputQtys": [ + "1292102014225301372928", + "430823150543100837888" ], - "redemptionFee": "24778112435608", + "expectedQty": "1713649622867547790541", "reserves": [ - "2947035449968989147015135", - "1680010143167981418852957" + "2721612028934711759195100", + "1638974901024109501484127" ], - "LPTokenSupply": "4583053688562168756157031" + "LPTokenSupply": "4339148186254482615837715" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "22378238351999129092096", - "expectedQty": "22613964248033618038481", - "swapFee": "13426943011199477455", + "type": "redeemBassets", + "inputQtys": [ + "10439282821345721712640", + "6456361585360995614720" + ], + "expectedQty": "16812970812231525377833", + "swapFee": "10093838790613283196", "reserves": [ - "2924421485720955528976654", - "1680010143167981418852957" + "2711172746113366037482460", + "1632518539438748505869407" ], - "LPTokenSupply": "4560676792904470747012680" + "LPTokenSupply": "4322326130987339538505004" }, { "type": "redeemMasset", - "inputQty": "248872946996443611136", + "inputQty": "12581390325772951381606", "expectedQtys": [ - "159487887610605636171", - "91621973852444575432" + "7886923691740782166591", + "4749069997241385963557" ], - "redemptionFee": "149323768197866166", + "redemptionFee": "7548834195463770828", "reserves": [ - "2924261997833344923340483", - "1679918521194128974277525" + "2703285822421625255315869", + "1627769469441507119905850" ], - "LPTokenSupply": "4560427934889851123188160" + "LPTokenSupply": "4309745495544986133500480" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "241255241107740557312", + "expectedQty": "239731342165713770992", + "reserves": [ + "2703527077662732995873181", + "1627769469441507119905850" + ] }, { "type": "redeemMasset", - "inputQty": "1564076511140026043596", + "inputQty": "53483838498594757017", "expectedQtys": [ - "1002323752680680620467", - "575811003804947261839" + "33528710885930870679", + "20187336898076335875" ], - "redemptionFee": "938445906684015626", + "redemptionFee": "32090303099156854", "reserves": [ - "2923259674080664242720016", - "1679342710190324027015686" + "2703493548951847065002502", + "1627749282104609043569975" ], - "LPTokenSupply": "4558863952223301765546126" + "LPTokenSupply": "4309931746257683562430140" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "37983259746579846791168", - "expectedQty": "38220975838744837051189", - "swapFee": "22789955847947908074", + "type": "mintMulti", + "inputQtys": [ + "738777071173580226560", + "453597155832747393024" + ], + "expectedQty": "1186527745371289017082", "reserves": [ - "2923259674080664242720016", - "1641121734351579189964497" + "2704232326023020645229062", + "1628202879260441790962999" ], - "LPTokenSupply": "4520882971472306713545765" + "LPTokenSupply": "4311118274003054851447222" }, { "type": "redeemMasset", - "inputQty": "2425849459047722598", + "inputQty": "15427890451678353817", "expectedQtys": [ - "1567643557908143400", - "880077106187420354" + "9671636237204263169", + "5823237085452084707" + ], + "redemptionFee": "9256734271007012", + "reserves": [ + "2704222654386783440965893", + "1628197056023356338878292" + ], + "LPTokenSupply": "4311102847038276600194106" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "2416032423778487107584", + "265368481678594277376" ], - "redemptionFee": "1455509675428633", + "expectedQty": "2665451741273371196768", + "swapFee": "1600231183474107182", "reserves": [ - "2923258106437106334576616", - "1641120854274473002544143" + "2701806621963004953858309", + "1627931687541677744600916" ], - "LPTokenSupply": "4520880545768398633366030" + "LPTokenSupply": "4308435955088938102300873" }, { "type": "redeemMasset", - "inputQty": "24951228934520792678", + "inputQty": "272359189614390411264", "expectedQtys": [ - "16124097547166491771", - "9052089065533265043" + "170693112907193022136", + "102848488521675462811" ], - "redemptionFee": "14970737360712475", + "redemptionFee": "163415513768634246", "reserves": [ - "2923241982339559168084845", - "1641111802185407469279100" + "2701635928850097760836173", + "1627828839053156069138105" ], - "LPTokenSupply": "4520855596036537848644599" + "LPTokenSupply": "4308163612240875088753033" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1428597642889645", - "expectedQty": "1443752204381603", - "swapFee": "857158585733", + "inputQty": "109162821512474675642368", + "expectedQty": "109783087326597251331899", + "swapFee": "65497692907484805385", "reserves": [ - "2923241980895806963703242", - "1641111802185407469279100" + "2591852841523500509504274", + "1627828839053156069138105" ], - "LPTokenSupply": "4520855594608025921613527" + "LPTokenSupply": "4199007340497691161591203" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5961650911527097597952", - "1151701568723026968576" + "20986168894541914963968", + "2154301766255179202560" ], - "expectedQty": "7039470029793043404017", - "swapFee": "4226217748524941007", + "expectedQty": "23004211521315866365435", "reserves": [ - "2917280329984279866105290", - "1639960100616684442310524" + "2612839010418042424468242", + "1629983140819411248340665" ], - "LPTokenSupply": "4513812320982259205762602" + "LPTokenSupply": "4222011552019007027956638" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "50354136287182107705344", - "expectedQty": "50886557714595559240049", - "swapFee": "30212481772309264623", + "type": "redeemMasset", + "inputQty": "28852542643709945262899", + "expectedQtys": [ + "17845004877787397679371", + "11132357172660178119009" + ], + "redemptionFee": "17311525586225967157", "reserves": [ - "2866393772269684306865241", - "1639960100616684442310524" + "2594994005540255026788871", + "1618850783646751070221656" ], - "LPTokenSupply": "4463461205943254328983720" + "LPTokenSupply": "4193160740527855705290454" }, { - "type": "redeem", + "type": "redeemMasset", + "inputQty": "1112336788970907317043", + "expectedQtys": [ + "687971574106299962232", + "429181462265769330181" + ], + "redemptionFee": "667402073382544390", + "reserves": [ + "2594306033966148726826639", + "1618421602184485300891475" + ], + "LPTokenSupply": "4192048470479092136227850" + }, + { + "type": "swap", "inputIndex": 0, - "inputQty": "6624409669568266502144", - "expectedQty": "6694263679254340855396", - "swapFee": "3974645801740959901", + "inputQty": "262757749105901558562816", + "outputIndex": 1, + "expectedQty": "261316265823250055754466", + "swapFee": "208864953107507436560", "reserves": [ - "2859699508590429966009845", - "1639960100616684442310524" + "2857063783072050285389455", + "1357105336361235245137009" ], - "LPTokenSupply": "4456837193738266236577566" + "LPTokenSupply": "4192069356974402886971506", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", + "inputIndex": 1, + "inputQty": "319394625579766396223488", + "expectedQty": "319162650575450362713608", + "swapFee": "191636775347859837734", + "reserves": [ + "2857063783072050285389455", + "1037942685785784882423401" + ], + "LPTokenSupply": "3872693895072171276731791" + }, + { + "type": "swap", "inputIndex": 0, - "inputQty": "82063562055730847547392", - "expectedQty": "82924509832549603040947", - "swapFee": "49238137233438508528", + "inputQty": "61007379562813833216", + "outputIndex": 1, + "expectedQty": "60347918600148388891", + "swapFee": "48395826499839686", "reserves": [ - "2776774998757880362968898", - "1639960100616684442310524" + "2857124790451613099222671", + "1037882337867184734034510" ], - "LPTokenSupply": "4374778555496258732881026" + "LPTokenSupply": "3872693899911753926715759", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "152199269741979150319616", - "133418082964321073102848" + "634790482864238624768", + "620436164362953687040" ], - "expectedQty": "283007023361222173445453", + "expectedQty": "1250906328448893200544", + "swapFee": "750994393705559255", "reserves": [ - "2928974268499859513288514", - "1773378183581005515413372" + "2856489999968748860597903", + "1037261901702821780347470" ], - "LPTokenSupply": "4657785578857480906326479" + "LPTokenSupply": "3871442317688350698511884" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10744994142396266577920", - "expectedQty": "10667406599304226814688", + "type": "redeem", + "inputIndex": 0, + "inputQty": "49813451289584828416", + "expectedQty": "50205512587297180808", + "swapFee": "29888070773750897", "reserves": [ - "2928974268499859513288514", - "1784123177723401781991292" - ] + "2856439794456161563417095", + "1037261901702821780347470" + ], + "LPTokenSupply": "3871392507225868191058557" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "559955486043333394432", - "expectedQty": "563698615474204244431", - "swapFee": "335973291626000036", + "type": "redeemMasset", + "inputQty": "27166751573029", + "expectedQtys": [ + "20032489606874", + "7274418423169" + ], + "redemptionFee": "16300050943", "reserves": [ - "2928974268499859513288514", - "1783559479107927577746861" + "2856439794436129073810221", + "1037261901695547361924301" ], - "LPTokenSupply": "4667893063568070962346738" + "LPTokenSupply": "3871392507198703069490622" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "57243719126105540526080", - "7690371040828659335168" + "208635189496825413632", + "83553396093979246592" ], - "expectedQty": "64257094109279614633715", + "expectedQty": "290571867260891202383", + "swapFee": "174447789029952693", "reserves": [ - "2986217987625965053814594", - "1791249850148756237082029" + "2856231159246632248396589", + "1037178348299453382677709" ], - "LPTokenSupply": "4732150157677350576980453" + "LPTokenSupply": "3871101778328432051330814" }, { "type": "mintMulti", "inputQtys": [ - "1040850856822319218688", - "756586180142904377344" + "2832309239767865753600", + "12860340511380495925248" ], - "expectedQty": "1780695501018195110886", + "expectedQty": "15689026313587977914847", "reserves": [ - "2987258838482787373033282", - "1792006436328899141459373" + "2859063468486400114150189", + "1050038688810833878602957" ], - "LPTokenSupply": "4733930853178368772091339" + "LPTokenSupply": "3886790804642020029245661" }, { "type": "redeemBassets", "inputQtys": [ - "130733921449651617792", - "131832924811108990976" - ], - "expectedQty": "260200783747647495238", - "swapFee": "156214198767849206", - "reserves": [ - "2987128104561337721415490", - "1791874603404088032468397" + "439546343323245019136", + "458193644288105316352" ], - "LPTokenSupply": "4733670511801842233531814" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "502991430166403219456", - "expectedQty": "508221343348957000103", - "swapFee": "301794858099841931", + "expectedQty": "894752874272452294136", + "swapFee": "537174028980859892", "reserves": [ - "2986619883217988764415387", - "1791874603404088032468397" + "2858623922143076869131053", + "1049580495166545773286605" ], - "LPTokenSupply": "4733167550551161640296551" + "LPTokenSupply": "3885895568311121494177621" }, { "type": "mintMulti", "inputQtys": [ - "21795587209273957941248", - "36828883453986207694848" + "1866771166103", + "22655622881400" ], - "expectedQty": "58122896980759979722851", + "expectedQty": "24540658019308", "reserves": [ - "3008415470427262722356635", - "1828703486858074240163245" + "2858623922144943640297156", + "1049580495189201396168005" ], - "LPTokenSupply": "4791290447531921620019402" + "LPTokenSupply": "3885895568335662152196929" }, { - "type": "redeemBassets", - "inputQtys": [ - "599287455692441", - "383030830098337" - ], - "expectedQty": "973053615519409", - "swapFee": "584182678918", + "type": "mint", + "inputIndex": 0, + "inputQty": "1282742036057215729664", + "expectedQty": "1272026279488299893168", "reserves": [ - "3008415469827975266664194", - "1828703486475043410064908" - ], - "LPTokenSupply": "4791290446558342240088965" + "2859906664181000856026820", + "1049580495189201396168005" + ] }, { "type": "redeemMasset", - "inputQty": "2720053489804743226163", + "inputQty": "689048891499937792000", "expectedQtys": [ - "1706876520659304269701", - "1037546534252645910356" + "506649919125017596870", + "185939590149208304123" ], - "redemptionFee": "1632032093882845935", + "redemptionFee": "413429334899962675", "reserves": [ - "3006708593307315962394493", - "1827665939940790764154552" + "2859400014261875838429950", + "1049394555599052187863882" ], - "LPTokenSupply": "4788570556271746885147395" + "LPTokenSupply": "3886478587066584004294364" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "44016524251352130387968", - "expectedQty": "44307322935706397544159", - "swapFee": "26409914550811278232", + "type": "redeemBassets", + "inputQtys": [ + "257815341394487345152", + "373451048993895022592" + ], + "expectedQty": "629673015964174564374", + "swapFee": "378030627955277905", "reserves": [ - "3006708593307315962394493", - "1783358617005084366610393" + "2859142198920481351084798", + "1049021104550058292841290" ], - "LPTokenSupply": "4744556673011849835887250" + "LPTokenSupply": "3885848573823054669979874" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4189285459160316510208", - "expectedQty": "4143496837958412425469", + "inputIndex": 1, + "inputQty": "4138303765778624", + "expectedQty": "4144524944297593", "reserves": [ - "3010897878766476278904701", - "1783358617005084366610393" + "2859142198920481351084798", + "1049021108688362058619914" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "210575056225702003081216", - "expectedQty": "208248708234853704435144", + "inputQty": "449530130093705134080", + "expectedQty": "453046015186906655825", + "swapFee": "269718078056223080", "reserves": [ - "3221472934992178281985917", - "1783358617005084366610393" - ] + "2858689152905294444428973", + "1049021108688362058619914" + ], + "LPTokenSupply": "3885399074809293714765695" }, { - "type": "redeemMasset", - "inputQty": "1808399467135254937", - "expectedQtys": [ - "1174556094134413314", - "650216461196352351" + "type": "redeemBassets", + "inputQtys": [ + "58079787456882509086720", + "72968837262683829960704" ], - "redemptionFee": "1085039680281152", + "expectedQty": "130690243934009331249792", + "swapFee": "78461223094262156043", "reserves": [ - "3221471760436084147572603", - "1783357966788623170258042" + "2800609365448411935342253", + "976052271425678228659210" ], - "LPTokenSupply": "4956947069793698785521041" + "LPTokenSupply": "3754638215774499547575463" }, { "type": "redeemBassets", "inputQtys": [ - "2581432086274010251264", - "5110713461491481182208" + "1422434512297911040", + "461440274948179520" ], - "expectedQty": "7629180014173239656682", - "swapFee": "4580256162201264552", + "expectedQty": "1872614567140797431", + "swapFee": "1124243286256232", "reserves": [ - "3218890328349810137321339", - "1778247253327131689075834" + "2800607943013899637431213", + "976051809985403280479690" ], - "LPTokenSupply": "4949313767548979564726261" + "LPTokenSupply": "3754636342148113449147422" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "979701916321340032", - "1154828126114606848" + "929401020754570772480", + "396915938404273356800" ], - "expectedQty": "2115878557691183518", - "swapFee": "1270289308199629", + "expectedQty": "1319166846769665380546", "reserves": [ - "3218889348647893815981307", - "1778246098499005574468986" + "2801537344034654208203693", + "976448725923807553836490" ], - "LPTokenSupply": "4949311650527161496163075" + "LPTokenSupply": "3755955508994883114527968" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1547834560240758030336", - "expectedQty": "1557296637725871280269", - "swapFee": "928700736144454818", + "type": "mint", + "inputIndex": 0, + "inputQty": "58341926891017789440", + "expectedQty": "57838999512759561813", + "reserves": [ + "2801595685961545225993133", + "976448725923807553836490" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "255405234529518452736", + "358833443894438920192" + ], + "expectedQty": "612815461424413726772", "reserves": [ - "3218889348647893815981307", - "1776688801861279703188717" + "2801851091196074744445869", + "976807559367701992756682" ], - "LPTokenSupply": "4947763908836994352578220" + "LPTokenSupply": "3756626163455820287816553" + }, + { + "type": "mintMulti", + "inputQtys": [ + "2241247021393427824640", + "36239441429570728755200" + ], + "expectedQty": "38531197187787075218954", + "reserves": [ + "2804092338217468172270509", + "1013047000797272721511882" + ], + "LPTokenSupply": "3795157360643607363035507" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "2160001449923354558464", + "4067796234243645374464" + ], + "expectedQty": "6216471654032575028126", + "swapFee": "3732122265779012424", + "reserves": [ + "2801932336767544817712045", + "1008979204563029076137418" + ], + "LPTokenSupply": "3788937530079535586896198" }, { "type": "redeemMasset", - "inputQty": "23100723257182", + "inputQty": "31754383174475146330112", "expectedQtys": [ - "15019725719460", - "8290244119140" + "23468386101623634111759", + "8450994062373297975962" ], - "redemptionFee": "13860433954", + "redemptionFee": "19052629904685087798", "reserves": [ - "3218889348632874090261847", - "1776688801852989459069577" + "2778463950665921183600286", + "1000528210500655778161456" ], - "LPTokenSupply": "4947763908813895015364433" + "LPTokenSupply": "3757185052168050909074865" }, { "type": "mint", "inputIndex": 1, - "inputQty": "255420589305593152", - "expectedQty": "253717000274553913", + "inputQty": "982692732357177472", + "expectedQty": "984384401306565254", "reserves": [ - "3218889348632874090261847", - "1776689057273578764662729" + "2778463950665921183600286", + "1000529193193388135338928" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3872893606002844", - "expectedQty": "3896558908053836", - "swapFee": "2323736163601", + "inputQty": "7443285020640241778688", + "expectedQty": "7425670045766985980563", + "swapFee": "4465971012384145067", "reserves": [ - "3218889348632874090261847", - "1776689053377019856608893" + "2778463950665921183600286", + "993103523147621149358365" ], - "LPTokenSupply": "4947764158658234057531862" + "LPTokenSupply": "3749743198128913212275937" }, { "type": "redeemBassets", "inputQtys": [ - "424094148227750625280", - "1016928697715509428224" + "3534894824119401447424", + "1143523211518114004992" + ], + "expectedQty": "4650434015959006001664", + "swapFee": "2791935570917954373", + "reserves": [ + "2774929055841801782152862", + "991959999936103035353373" + ], + "LPTokenSupply": "3745090251370940380115336" + }, + { + "type": "mintMulti", + "inputQtys": [ + "50245455942863688", + "191492303671141152" ], - "expectedQty": "1429502934012747738117", - "swapFee": "858216690421901783", + "expectedQty": "241658360979606404", "reserves": [ - "3218465254484646339636567", - "1775672124679304347180669" + "2774929106087257725016550", + "991960191428406706494525" ], - "LPTokenSupply": "4946333883329199930082139" + "LPTokenSupply": "3745090493029301359721740" }, { "type": "redeemMasset", - "inputQty": "134497516373407354060", + "inputQty": "1291001699067767239475", "expectedQtys": [ - "87461919902009484885", - "48253959841427640680" + "955995251516820301195", + "341741787427650871271" ], - "redemptionFee": "80698509824044412", + "redemptionFee": "774601019440660343", "reserves": [ - "3218377792564744330151682", - "1775623870719462919539989" + "2773973110835740904715355", + "991618449640979055623254" ], - "LPTokenSupply": "4946199393882677505132520" + "LPTokenSupply": "3743799568790335536548299" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2053663115625379659776", - "expectedQty": "2066199018459069703129", - "swapFee": "1232197869375227795", + "inputQty": "43012955292735676416", + "expectedQty": "42909175919802862450", + "swapFee": "25807773175641405", + "reserves": [ + "2773973110835740904715355", + "991575540465059252760804" + ], + "LPTokenSupply": "3743756558415820118436023" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "253442722121635040591872", + "outputIndex": 0, + "expectedQty": "255426094976041439855466", + "swapFee": "0", + "reserves": [ + "2518547015859699464859889", + "1245018262586694293352676" + ], + "LPTokenSupply": "3743756558415820118436023", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "296127302810984710144", + "expectedQty": "298078380039613088531", + "swapFee": "177676381686590826", "reserves": [ - "3218377792564744330151682", - "1773557671701003849836860" + "2518248937479659851771358", + "1245018262586694293352676" ], - "LPTokenSupply": "4944145853986839062995523" + "LPTokenSupply": "3743460448880647302384961" }, { "type": "redeemBassets", "inputQtys": [ - "12180962653645", - "13555673491765" + "2855421042036470972416", + "2348872483919365931008" ], - "expectedQty": "25510185989871", - "swapFee": "15315300774", + "expectedQty": "5180465336741239654318", + "swapFee": "3110145289218274757", "reserves": [ - "3218377792552563367498037", - "1773557671687448176345095" + "2515393516437623380798942", + "1242669390102774927421668" ], - "LPTokenSupply": "4944145853961315093234954" + "LPTokenSupply": "3738277184413145766283360" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "452481148692638568808448", - "outputIndex": 0, - "expectedQty": "453796839534684862150715", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "4124711186190339584", + "12578439888169961472" + ], + "expectedQty": "16655325059048412077", "reserves": [ - "2764580953017878505347322", - "2226038820380086745153543" + "2515397641148809571138526", + "1242681968542663097383140" ], - "LPTokenSupply": "4944145853961315093234954", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3738293839738204814695437" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "14182040862033158144", - "expectedQty": "14040805547006595758", + "inputIndex": 1, + "inputQty": "29701717562693", + "expectedQty": "29658374161510", "reserves": [ - "2764595135058740538505466", - "2226038820380086745153543" + "2515397641148809571138526", + "1242681968572364814945833" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "35745090153140543488", - "42580888433047060480" + "944628658783272704", + "90622809668120976" ], - "expectedQty": "77607666252296895344", + "expectedQty": "1028369919354843532", + "swapFee": "617392387045133", "reserves": [ - "2764630880148893679048954", - "2226081401268519792214023" + "2515396696520150787865822", + "1242681877949555146824857" ], - "LPTokenSupply": "4944237502433114396726056" + "LPTokenSupply": "3738292810842290685672794" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "71453399027555224", - "expectedQty": "72128838817180587", - "swapFee": "42872039416533", + "inputQty": "38409718887491200", + "expectedQty": "38662916809585004", + "swapFee": "23045831332494", "reserves": [ - "2764630808020054861868367", - "2226081401268519792214023" + "2515396657857233978280818", + "1242681877949555146824857" ], - "LPTokenSupply": "4944237430984002573112485" + "LPTokenSupply": "3738292772434876381314843" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "9573482044467160547328", + "expectedQty": "9505012439217062263308", + "reserves": [ + "2524970139901701138828146", + "1242681877949555146824857" + ] }, { "type": "redeemMasset", - "inputQty": "570967153928582246", + "inputQty": "36051912270390035", "expectedQtys": [ - "319071706832260460", - "256916616204164168" + "24274357686820988", + "11946796486651632" ], - "redemptionFee": "342580292357149", + "redemptionFee": "21631147362234", "reserves": [ - "2764630488948348029607907", - "2226081144351903588049855" + "2524970115627343452007158", + "1242681866002758660173225" ], - "LPTokenSupply": "4944236860051106673765953" + "LPTokenSupply": "3747797748824344287924339" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "90347379245595194556416", - "17956922299334002737152" + "4250252839488472481792", + "1253383988948465876992" ], - "expectedQty": "107249200594349167552504", + "expectedQty": "5471417991043845209947", + "swapFee": "3284821687638890460", "reserves": [ - "2854977868193943224164323", - "2244038066651237590787007" + "2520719862787854979525366", + "1241428482013810194296233" ], - "LPTokenSupply": "5051486060645455841318457" + "LPTokenSupply": "3742323374493781567712977" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2040102652231410515968", - "expectedQty": "2059540643845782274367", - "swapFee": "1224061591338846309", + "type": "redeemMasset", + "inputQty": "29168962250296918016", + "expectedQtys": [ + "19635573706042898709", + "9670317126157636296" + ], + "redemptionFee": "17501377350178150", "reserves": [ - "2852918327550097441889956", - "2244038066651237590787007" + "2520700227214148936626657", + "1241418811696684036659937" ], - "LPTokenSupply": "5049446080399383564687119" + "LPTokenSupply": "3742294207281669005812776" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "19623533503323582464", + "expectedQty": "19483080708161817093", + "reserves": [ + "2520719850747652260209121", + "1241418811696684036659937" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "2239242397852217", + "inputQty": "168700970950482755584", "outputIndex": 0, - "expectedQty": "2242890851364003", + "expectedQty": "169672861248475984605", "swapFee": "0", "reserves": [ - "2852918325307206590525953", - "2244038068890479988639224" + "2520550177886403784224516", + "1241587512667634519415521" ], - "LPTokenSupply": "5049446080399383564687119", + "LPTokenSupply": "3742313690362377167629869", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "72778490187695416934400", - "expectedQty": "73347468168686064552831", - "swapFee": "43667094112617250160", + "type": "mint", + "inputIndex": 0, + "inputQty": "405256872038102532096", + "expectedQty": "402356480324597822557", "reserves": [ - "2852918325307206590525953", - "2170690600721793924086393" - ], - "LPTokenSupply": "4976671956921099409477735" + "2520955434758441886756612", + "1241587512667634519415521" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1334936521987839492096", - "expectedQty": "1345290524594586952810", - "swapFee": "800961913192703695", + "type": "redeemMasset", + "inputQty": "8669737134954192", + "expectedQtys": [ + "5836111279173107", + "2874324070490512" + ], + "redemptionFee": "5201842280972", "reserves": [ - "2852918325307206590525953", - "2169345310197199337133583" + "2520955428922330607583505", + "1241587509793310448925009" ], - "LPTokenSupply": "4975337100495302889256008" + "LPTokenSupply": "3742716038173484814726331" }, { "type": "redeemMasset", - "inputQty": "187061908542197255372", + "inputQty": "489762526455927616307", "expectedQtys": [ - "107199197293741358643", - "81513751670770510979" + "329688035551314875242", + "162373575658095023813" ], - "redemptionFee": "112237145125318353", + "redemptionFee": "293857515873556569", "reserves": [ - "2852811126109912849167310", - "2169263796445528566622604" + "2520625740886779292708263", + "1241425136217652353901196" ], - "LPTokenSupply": "4975150049810475204532471" + "LPTokenSupply": "3742226305032780474465680" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "429591511765895151616", - "958441213368205312" + "25465949589487216492544", + "22960243715290725089280" ], - "expectedQty": "426183963949496209398", + "expectedQty": "48211272981312456107947", + "swapFee": "28944130266947642250", "reserves": [ - "2853240717621678744318926", - "2169264754886741934827916" + "2495159791297292076215719", + "1218464892502361628811916" ], - "LPTokenSupply": "4975576233774424700741869" + "LPTokenSupply": "3693988982334227765479707" }, { "type": "swap", "inputIndex": 1, - "inputQty": "39120148766293303296", + "inputQty": "576895723369625681920", "outputIndex": 0, - "expectedQty": "39193444205776668251", + "expectedQty": "580273606357454282433", "swapFee": "0", "reserves": [ - "2853201524177472967650675", - "2169303875035508228131212" + "2494579517690934621933286", + "1219041788225731254493836" ], - "LPTokenSupply": "4975576233774424700741869", + "LPTokenSupply": "3693988982334227765479707", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "14574555416950222848", - "expectedQty": "14715091571450776137", - "swapFee": "8744733250170133", + "type": "swap", + "inputIndex": 1, + "inputQty": "14618574449263769550848", + "outputIndex": 0, + "expectedQty": "14702619159080814158750", + "swapFee": "0", "reserves": [ - "2853186809085901516874538", - "2169303875035508228131212" + "2479876898531853807774536", + "1233660362674995024044684" ], - "LPTokenSupply": "4975561660093481075536034" + "LPTokenSupply": "3693988982334227765479707", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "106581147666171412480", - "25194974787297595392" + "type": "redeemMasset", + "inputQty": "3238475151165748", + "expectedQtys": [ + "2172773427425149", + "1080886094013295" + ], + "redemptionFee": "1943085090699", + "reserves": [ + "2479876896359080380349387", + "1233660361594108930031389" ], - "expectedQty": "130486013313833621589", - "swapFee": "78338611154993168", + "LPTokenSupply": "3693988979095946922823028" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "188155589994062577664", + "expectedQty": "189392477417276549192", + "swapFee": "112893353996437546", "reserves": [ - "2853080227938235345462058", - "2169278680060720930535820" + "2479687503881663103800195", + "1233660361594108930031389" ], - "LPTokenSupply": "4975431103575417202420592" + "LPTokenSupply": "3693800834795288259889118" }, { "type": "swap", "inputIndex": 0, - "inputQty": "11942649014311781924864", + "inputQty": "106161420315513339904", "outputIndex": 1, - "expectedQty": "11910363949498173628377", - "swapFee": "9457133800901589622", + "expectedQty": "105480734000824200829", + "swapFee": "84323857961939652", "reserves": [ - "2865022876952547127386922", - "2157368316111222756907443" + "2479793665301978617140099", + "1233554880860108105830560" ], - "LPTokenSupply": "4975432049288797292579554", + "LPTokenSupply": "3693800843227674056083083", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "4864901575198858280960", - "335793191807281659904" - ], - "expectedQty": "5148426935767563153079", - "swapFee": "3090910707885269053", + "type": "mint", + "inputIndex": 1, + "inputQty": "373978476714199303061504", + "expectedQty": "373075489015517731597190", "reserves": [ - "2860157975377348269105962", - "2157032522919415475247539" - ], - "LPTokenSupply": "4970280840533392632684326" + "2479793665301978617140099", + "1607533357574307408892064" + ] }, { "type": "redeemBassets", "inputQtys": [ - "46064256168356011311104", - "134466395171818588602368" + "890077731317346", + "3042907095742818" ], - "expectedQty": "178961458180306698354623", - "swapFee": "107441339712011225748", + "expectedQty": "3917922913566261", + "swapFee": "2352165047168", "reserves": [ - "2814093719208992257794858", - "2022566127747596886645171" + "2479793664411900885822753", + "1607533354531400313149246" ], - "LPTokenSupply": "4791222685147345124226528" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "351130157744306023038976", - "expectedQty": "347432335068528699055117", - "reserves": [ - "3165223876953298280833834", - "2022566127747596886645171" - ] + "LPTokenSupply": "4066876328323151925571559" }, { - "type": "redeemBassets", - "inputQtys": [ - "7768775730103350984704", - "8504808596928596017152" + "type": "redeemMasset", + "inputQty": "98959916478514305433", + "expectedQtys": [ + "60304989385040990155", + "39092882312087816400" ], - "expectedQty": "16126360183836005766676", - "swapFee": "9681625085352815149", + "redemptionFee": "59375949887108583", "reserves": [ - "3157455101223194929849130", - "2014061319150668290628019" + "2479733359422515844832598", + "1607494261649088225332846" ], - "LPTokenSupply": "5122519946569460999981333" + "LPTokenSupply": "4066777374344268399976984" }, { "type": "redeemBassets", "inputQtys": [ - "1627289864983656792064", - "1045263076631653253120" + "30814202557822914265088", + "42366340618673440423936" ], - "expectedQty": "2647246583242042660877", - "swapFee": "1589301530863743842", + "expectedQty": "72857102061333252205157", + "swapFee": "43740505540124025738", "reserves": [ - "3155827811358211273057066", - "2013016056074036637374899" + "2448919156864692930567510", + "1565127921030414784908910" ], - "LPTokenSupply": "5119871269614841179950997" + "LPTokenSupply": "3993880905827949036148661" }, { "type": "mint", "inputIndex": 1, - "inputQty": "10664714158399658393600", - "expectedQty": "10584395935481465235348", + "inputQty": "20271600523298619392", + "expectedQty": "20209371933074488644", "reserves": [ - "3155827811358211273057066", - "2023680770232436295768499" + "2448919156864692930567510", + "1565148192630938083528302" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15127554376037662982144", - "expectedQty": "15233114262792636446812", - "swapFee": "9076532625622597789", + "type": "redeemBassets", + "inputQtys": [ + "8768131368975", + "1755031946791" + ], + "expectedQty": "10462775023859", + "swapFee": "6281433874", + "reserves": [ + "2448919156855924799198535", + "1565148192629183051581511" + ], + "LPTokenSupply": "3993901115189413682322958" + }, + { + "type": "mintMulti", + "inputQtys": [ + "3109208402499881926656", + "1059465975573128151040" + ], + "expectedQty": "4145917217115761664600", "reserves": [ - "3155827811358211273057066", - "2008447655969643659321687" + "2452028365258424681125191", + "1566207658604756179732551" ], - "LPTokenSupply": "5115329018827547544463979" + "LPTokenSupply": "3998047032406529443987558" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "24366166759956413415424", - "expectedQty": "24615399752494052354791", - "swapFee": "14619700055973848049", + "inputQty": "4981426970716285173760", + "expectedQty": "5009856956639171413940", + "swapFee": "2988856182429771104", "reserves": [ - "3131212411605717220702275", - "2008447655969643659321687" + "2447018508301785509711251", + "1566207658604756179732551" ], - "LPTokenSupply": "5090964314037596728433359" + "LPTokenSupply": "3993065904321431401790908" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "172556824216679972864", - "expectedQty": "173765189339391803987", - "swapFee": "103534094530007983", + "inputQty": "15995281151768242683904", + "expectedQty": "16034616297878597749045", + "swapFee": "9597168691060945610", "reserves": [ - "3131212411605717220702275", - "2008273890780304267517700" + "2447018508301785509711251", + "1550173042306877581983506" ], - "LPTokenSupply": "5090791767566789501461293" + "LPTokenSupply": "3977071582886532265201565" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "322787243660673280", - "expectedQty": "326085689234598471", - "swapFee": "193672346196403", + "type": "mintMulti", + "inputQtys": [ + "73474789243625744105472", + "59391826281904648224768" + ], + "expectedQty": "132223333768690323486530", "reserves": [ - "3131212085520027986103804", - "2008273890780304267517700" + "2520493297545411253816723", + "1609564868588782230208274" ], - "LPTokenSupply": "5090791444798913075407653" + "LPTokenSupply": "4109294916655222588688095" }, { - "type": "redeemMasset", - "inputQty": "327302699901146680524", - "expectedQtys": [ - "201194503479120751139", - "129040658144534639771" + "type": "redeemBassets", + "inputQtys": [ + "9220348874396733014016", + "4727006799705697943552" ], - "redemptionFee": "196381619940688008", + "expectedQty": "13874965198325054261900", + "swapFee": "8329977105258187469", "reserves": [ - "3131010891016548865352665", - "2008144850122159732877929" + "2511272948671014520802707", + "1604837861789076532264722" ], - "LPTokenSupply": "5090464161737173922795929" + "LPTokenSupply": "4095412454477502802057471" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "33977357333458583552", - "expectedQty": "34324560177575595863", - "swapFee": "20386414400075150", + "inputQty": "191425066019397280", + "outputIndex": 1, + "expectedQty": "190657229900411590", + "swapFee": "152178674123346", "reserves": [ - "3130976566456371289756802", - "2008144850122159732877929" + "2511273140096080540199987", + "1604837671131846631853132" ], - "LPTokenSupply": "5090430186418481904219892" + "LPTokenSupply": "4095412454492720669469805", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "5192520610365363", - "expectedQtys": [ - "3191853175598941", - "2047189872193631" - ], - "redemptionFee": "3115512366219", + "type": "redeem", + "inputIndex": 1, + "inputQty": "11304544599074297348096", + "expectedQty": "11332392475228512615252", + "swapFee": "6782726759444578408", "reserves": [ - "3130976563264518114157861", - "2008144848074969860684298" + "2511273140096080540199987", + "1593505278656618119237880" ], - "LPTokenSupply": "5090430181226272845091150" + "LPTokenSupply": "4084108588166322316579549" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2481285951725787152384", - "expectedQty": "2454710178728170442980", + "type": "redeemBassets", + "inputQtys": [ + "5722095955041088", + "2977373989423967" + ], + "expectedQty": "8654358659931536", + "swapFee": "5195732635540", "reserves": [ - "3133457849216243901310245", - "2008144848074969860684298" - ] + "2511273134373984585158899", + "1593505275679244129813913" + ], + "LPTokenSupply": "4084108579507287497276026" }, { - "type": "redeemMasset", - "inputQty": "132965307602080969523", - "expectedQtys": [ - "81759397855201350676", - "52397294454016999818" + "type": "mintMulti", + "inputQtys": [ + "11359426895130556104704", + "4231710036343652876288" ], - "redemptionFee": "79779184561248581", + "expectedQty": "15506671117819467346073", "reserves": [ - "3133376089818388699959569", - "2008092450780515843684480" + "2522632561269115141263603", + "1597736985715587782690201" ], - "LPTokenSupply": "5092751934075317390689465" + "LPTokenSupply": "4099615250625106964622099" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5044304082421323776", - "6285809720702901248" + "226492205689340887040", + "518167521034166665216" ], - "expectedQty": "11228649122871916869", + "expectedQty": "741661270107764204524", + "swapFee": "445263920416908667", "reserves": [ - "3133381134122471121283345", - "2008098736590236546585728" + "2522406069063425800376563", + "1597218818194553616024985" ], - "LPTokenSupply": "5092763162724440262606334" + "LPTokenSupply": "4098873188617470825199773" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "225282994191552512", - "expectedQty": "227585669897149565", - "swapFee": "135169796514931", + "type": "redeemBassets", + "inputQtys": [ + "10985053925959427686400", + "29136003281996788793344" + ], + "expectedQty": "39964313593650406482850", + "swapFee": "23992983946558178796", "reserves": [ - "3133380906536801224133780", - "2008098736590236546585728" + "2511421015137466372690163", + "1568082814912556827231641" ], - "LPTokenSupply": "5092762937454963050705315" + "LPTokenSupply": "4058887281338268516356005" }, { "type": "mintMulti", "inputQtys": [ - "346709473269323661312", - "84364913794646491136" + "5964719691454939660288", + "7412609807913606709248" ], - "expectedQty": "426723892800992682437", + "expectedQty": "13317420715162919283316", "reserves": [ - "3133727616010070547795092", - "2008183101504031193076864" + "2517385734828921312350451", + "1575495424720470433940889" ], - "LPTokenSupply": "5093189661347764043387752" + "LPTokenSupply": "4072204702053431435639321" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2585915728606315675648", - "expectedQty": "2558211977265521270302", + "inputQty": "256487002770324819279872", + "expectedQty": "254815668551707796351962", "reserves": [ - "3136313531738676863470740", - "2008183101504031193076864" + "2773872737599246131630323", + "1575495424720470433940889" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3085105291848728", - "expectedQty": "3061839690054951", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1306432099215531573248", + "expectedQty": "1314423614737888064482", + "swapFee": "783859259529318943", "reserves": [ - "3136313531738676863470740", - "2008183104589136484925592" - ] + "2772558313984508243565841", + "1575495424720470433940889" + ], + "LPTokenSupply": "4325714016891849653349929" }, { - "type": "mintMulti", - "inputQtys": [ - "54892278245171280", - "67232292924963288" - ], - "expectedQty": "121029402726669872", + "type": "swap", + "inputIndex": 1, + "inputQty": "177134699501287342080", + "outputIndex": 0, + "expectedQty": "177891316649091337661", + "swapFee": "0", "reserves": [ - "3136313586630955108642020", - "2008183171821429409888880" + "2772380422667859152228180", + "1575672559419971721282969" ], - "LPTokenSupply": "5095747997416271981382877" + "LPTokenSupply": "4325714016891849653349929", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "35980930743945912320", - "155284415151142993920" - ], - "expectedQty": "189708803412427041426", - "swapFee": "113893618218387257", + "type": "swap", + "inputIndex": 1, + "inputQty": "28099530240153035472896", + "outputIndex": 0, + "expectedQty": "28215834678212072655966", + "swapFee": "0", "reserves": [ - "3136277605700211162729700", - "2008027887406278266894960" + "2744164587989647079572214", + "1603772089660124756755865" ], - "LPTokenSupply": "5095558186108603157792918" + "LPTokenSupply": "4325714016891849653349929", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "11926461725637435457536", - "expectedQty": "12048327544814249778988", - "swapFee": "7155877035382461274", + "type": "mintMulti", + "inputQtys": [ + "467695841452046876672", + "388455290132837171200" + ], + "expectedQty": "852064626915581567583", "reserves": [ - "3124229278155396912950712", - "2008027887406278266894960" + "2744632283831099126448886", + "1604160544950257593927065" ], - "LPTokenSupply": "5083632439970669260581509" + "LPTokenSupply": "4326566081518765234917512" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "102770690133762653552640", - "200003513143100576890880" + "1227058965463118336", + "1160039857958182656" ], - "expectedQty": "300141175991391167766261", + "expectedQty": "2376011329207134554", + "swapFee": "1426462675129358", "reserves": [ - "3226999968289159566503352", - "2208031400549378843785840" + "2744631056772133663330550", + "1604159384910399635744409" ], - "LPTokenSupply": "5383773615962060428347770" + "LPTokenSupply": "4326563704223619620166534" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "56331363738235288", - "expectedQty": "56743726118166600", - "swapFee": "33798818242941", + "type": "redeemBassets", + "inputQtys": [ + "2174835681865200041984", + "194577861497207947264" + ], + "expectedQty": "2354599893906965281019", + "swapFee": "1413608101204902109", "reserves": [ - "3226999968289159566503352", - "2208031343805652725619240" + "2742456221090268463288566", + "1603964807048902427797145" ], - "LPTokenSupply": "5383773559634076571936776" + "LPTokenSupply": "4324207832082421570473615" }, { - "type": "redeemMasset", - "inputQty": "12213461153111844454", - "expectedQtys": [ - "7316279300056172236", - "5006065749397912146" + "type": "redeemBassets", + "inputQtys": [ + "1161080629465868271616", + "3366562060715008983040" ], - "redemptionFee": "7328076691867106", + "expectedQty": "4511258525322094271634", + "swapFee": "2708380143279224097", "reserves": [ - "3226992652009859510331116", - "2208026337739903327707094" + "2741295140460802595016950", + "1600598244988187418814105" ], - "LPTokenSupply": "5383761346905731129279032" + "LPTokenSupply": "4319694136014970524900292" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "211947541578250528", - "78314908360327200" + "76987377770612592", + "82296909934490176" ], - "expectedQty": "287420371825032323", - "swapFee": "172555756548948", + "expectedQty": "158564007336587788", "reserves": [ - "3226992440062317932080588", - "2208026259424994967379894" + "2741295217448180365629542", + "1600598327285097353304281" ], - "LPTokenSupply": "5383761059330059123352654" + "LPTokenSupply": "4319694294578977861488080" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3831064476452151885824", - "expectedQty": "3800926472337646996666", + "inputQty": "681682665453631832064", + "expectedQty": "679914339289491408183", "reserves": [ - "3226992440062317932080588", - "2211857323901447119265718" + "2741295217448180365629542", + "1601280009950550985136345" ] }, { - "type": "redeemMasset", - "inputQty": "1474382109225145860096", - "expectedQtys": [ - "882581999206893549754", - "604942681195636737805" + "type": "redeem", + "inputIndex": 1, + "inputQty": "48132789881361240424448", + "expectedQty": "48224764914710437149444", + "swapFee": "28879673928816744254", + "reserves": [ + "2741295217448180365629542", + "1553055245035840547986901" ], - "redemptionFee": "884629265535087516", + "LPTokenSupply": "4272244307004298994146240" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "126588826287075712", + "expectedQty": "127365297693995195", + "swapFee": "75953295772245", "reserves": [ - "3226109858063111038530834", - "2211252381220251482527913" + "2741295090082882671634347", + "1553055245035840547986901" ], - "LPTokenSupply": "5386087692156098177997975" + "LPTokenSupply": "4272244180423068036647752" }, { "type": "mint", "inputIndex": 0, - "inputQty": "89080595120822073425920", - "expectedQty": "88141502922495225221705", + "inputQty": "265787234702429024944128", + "expectedQty": "263964842348821013836709", "reserves": [ - "3315190453183933111956754", - "2211252381220251482527913" + "3007082324785311696578475", + "1553055245035840547986901" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "315236618298888064", - "expectedQty": "317505966098644613", - "swapFee": "189141970979332", + "type": "redeemMasset", + "inputQty": "77107180978395925708", + "expectedQtys": [ + "51084180487771352890", + "26383233272655750979" + ], + "redemptionFee": "46264308587037555", "reserves": [ - "3315190453183933111956754", - "2211252063714285383883300" + "3007031240604823925225585", + "1553028861802567892235922" ], - "LPTokenSupply": "5474228879860889301429549" + "LPTokenSupply": "4536131920217341513262508" }, { - "type": "redeemMasset", - "inputQty": "17266404658329639321", - "expectedQtys": [ - "10450252681730817525", - "6970381682482159168" + "type": "mintMulti", + "inputQtys": [ + "16276359511782476218368", + "16879555627570543198208" ], - "redemptionFee": "10359842794997783", + "expectedQty": "33010830005509287373827", "reserves": [ - "3315180002931251381139229", - "2211245093332602901724132" + "3023307600116606401443953", + "1569908417430138435434130" ], - "LPTokenSupply": "5474211614492215251290006" + "LPTokenSupply": "4569142750222850800636335" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "19238189879542676", - "expectedQty": "19376683156324260", - "swapFee": "11542913927725", + "type": "redeemMasset", + "inputQty": "29459159900289977286656", + "expectedQtys": [ + "19480823520789316947287", + "10115778104278443128605" + ], + "redemptionFee": "17675495940173986371", "reserves": [ - "3315180002931251381139229", - "2211245073955919745399872" + "3003826776595817084496666", + "1559792639325859992305525" ], - "LPTokenSupply": "5474211595255179663140102" + "LPTokenSupply": "4539685357872154840748316" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "7750087662813872914432", - "outputIndex": 1, - "expectedQty": "7721526810573267101546", - "swapFee": "6134418687132693609", + "type": "mintMulti", + "inputQtys": [ + "898496604804684578816", + "1270552889360087777280" + ], + "expectedQty": "2160393914230254905909", "reserves": [ - "3322930090594065254053661", - "2203523547145346478298326" + "3004725273200621769075482", + "1561063192215220080082805" ], - "LPTokenSupply": "5474212208697048376409462", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4541845751786385095654225" }, { "type": "redeemMasset", - "inputQty": "5230432275177001779", + "inputQty": "40934243764944475521024", "expectedQtys": [ - "3173046991113624377", - "2104132067330844905" + "27064406367712565997901", + "14060935612521929868829" ], - "redemptionFee": "3138259365106201", + "redemptionFee": "24560546258966685312", "reserves": [ - "3322926917547074140429284", - "2203521443013279147453421" + "2977660866832909203077581", + "1547002256602698150213976" ], - "LPTokenSupply": "5474206978578599135918303" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "19469846778980952178688", - "expectedQty": "19263193389711193478227", - "reserves": [ - "3342396764326055092607972", - "2203521443013279147453421" - ] + "LPTokenSupply": "4500913964076066516801732" }, { - "type": "redeemBassets", - "inputQtys": [ - "72010028997063234027520", - "36845869821096754151424" - ], - "expectedQty": "107807768114848672689732", - "swapFee": "64723494965888736855", + "type": "swap", + "inputIndex": 1, + "inputQty": "2476142578434673999872", + "outputIndex": 0, + "expectedQty": "2488920899672650156742", + "swapFee": "0", "reserves": [ - "3270386735328991858580452", - "2166675573192182393301997" + "2975171945933236552920839", + "1549478399181132824213848" ], - "LPTokenSupply": "5385604152707992356843627" + "LPTokenSupply": "4500913964076066516801732", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "3456260691356320111001", + "inputQty": "15438299108933277161881", "expectedQtys": [ - "2097541299558617548710", - "1389649562976917908438" + "10198825352265161936390", + "5311578580174739075680" ], - "redemptionFee": "2073756414813792066", + "redemptionFee": "9262979465359966297", "reserves": [ - "3268289194029433241031742", - "2165285923629205475393559" + "2964973120580971390984449", + "1544166820600958085138168" ], - "LPTokenSupply": "5382148099392277518111832" + "LPTokenSupply": "4485476591265079775636480" }, { "type": "mintMulti", "inputQtys": [ - "234071539203422755487744", - "372787699350660341301248" + "29112881504685", + "462006924891307" ], - "expectedQty": "601448811086417783896063", + "expectedQty": "490044385833887", "reserves": [ - "3502360733232855996519486", - "2538073622979865816694807" + "2964973120610084272489134", + "1544166821062965010029475" ], - "LPTokenSupply": "5983596910478695302007895" + "LPTokenSupply": "4485476591755124161470367" }, { - "type": "redeemBassets", - "inputQtys": [ - "35036385884582752256", - "19532524718852100096" - ], - "expectedQty": "54047956101723162249", - "swapFee": "32448242606597856", + "type": "mint", + "inputIndex": 0, + "inputQty": "2305187117717267415040", + "expectedQty": "2289051374448165307658", "reserves": [ - "3502325696846971413767230", - "2538054090455146964594711" - ], - "LPTokenSupply": "5983542833319175232907574" + "2967278307727801539904174", + "1544166821062965010029475" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4943819629384239677440", - "expectedQty": "4992443947491647306912", - "swapFee": "2966291777630543806", + "inputIndex": 1, + "inputQty": "2807846214302489600", + "expectedQty": "2811450812338103461", + "swapFee": "1684707728581493", "reserves": [ - "3497333252899479766460318", - "2538054090455146964594711" + "2967278307727801539904174", + "1544164009612152671926014" ], - "LPTokenSupply": "5978599310318968756284514" + "LPTokenSupply": "4487762835451828797146574" }, { "type": "mintMulti", "inputQtys": [ - "20931187293115991982080", - "4548336192303401009152" + "38094810502112935936", + "60472555449000951808" ], - "expectedQty": "25226155087972688082691", + "expectedQty": "98186885110043070461", "reserves": [ - "3518264440192595758442398", - "2542602426647450365603863" + "2967316402538303652840110", + "1544224482167601672877822" ], - "LPTokenSupply": "6003825465406941444367205" + "LPTokenSupply": "4487861022336938840217035" }, { "type": "redeemBassets", "inputQtys": [ - "78869192509146007601152", - "9617005330471757807616" + "1234182169994154737664", + "4182529532090651770880" ], - "expectedQty": "87594135201995204912865", - "swapFee": "52588033941562060183", + "expectedQty": "5400229730755037720877", + "swapFee": "3242083088306006236", "reserves": [ - "3439395247683449750841246", - "2532985421316978607796247" + "2966082220368309498102446", + "1540041952635511021106942" ], - "LPTokenSupply": "5916184000974398833600174" + "LPTokenSupply": "4482457874731404327090544" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "9279702678467465216", - "outputIndex": 1, - "expectedQty": "9252778937768586034", - "swapFee": "7347341694960970", + "type": "redeemMasset", + "inputQty": "191541294966314", + "expectedQtys": [ + "126668530747151", + "65768524584287" + ], + "redemptionFee": "114924776979", "reserves": [ - "3439404527386128218306462", - "2532976168538040839210213" + "2966082220241640967355295", + "1540041952569742496522655" ], - "LPTokenSupply": "5916184001709133003096271", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4482457874539874524601927" }, { - "type": "redeemBassets", - "inputQtys": [ - "1965698933239542972416", - "6514781076062635819008" + "type": "redeemMasset", + "inputQty": "7846051166683896007884", + "expectedQtys": [ + "5188686719621647369989", + "2694057222158804232059" ], - "expectedQty": "8406791545451680024991", - "swapFee": "5047103189184518726", + "redemptionFee": "4707630700010337604", "reserves": [ - "3437438828452888675334046", - "2526461387461978203391205" + "2960893533522019319985306", + "1537347895347583692290596" ], - "LPTokenSupply": "5907772667770811057004425" + "LPTokenSupply": "4474612294136260629627803" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "11203143697190592512", + "expectedQty": "11124599276360818044", + "reserves": [ + "2960904736665716510577818", + "1537347895347583692290596" + ] }, { "type": "redeemBassets", "inputQtys": [ - "4093996191422788665344", - "3927255431436225216512" + "37867568799159934976", + "39499581240814182400" ], - "expectedQty": "7946874300994594597019", - "swapFee": "4770987172900497056", + "expectedQty": "77027911052731109787", + "swapFee": "46244493327635247", "reserves": [ - "3433344832261465886668702", - "2522534132030541978174693" + "2960866869096917350642842", + "1537308395766342878108196" ], - "LPTokenSupply": "5899821499581360851960054" + "LPTokenSupply": "4474546349204440264464336" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8008186176294167248896", - "expectedQty": "8069493910083121496747", - "swapFee": "4804911705776500349", + "type": "redeemMasset", + "inputQty": "9333881368911985980211", + "expectedQtys": [ + "6172647710340516510847", + "3204893556091784942763" + ], + "redemptionFee": "5600328821347191588", "reserves": [ - "3433344832261465886668702", - "2514464638120458856677946" + "2954694221386576834131995", + "1534103502210251093165433" ], - "LPTokenSupply": "5891813793896237262361192" + "LPTokenSupply": "4465213027868410413203283" }, { "type": "mintMulti", "inputQtys": [ - "1540875688261721784320", - "28642733464830781423616" + "97262543912271471443968", + "209655218012100122116096" ], - "expectedQty": "29932588747499989388972", + "expectedQty": "305793011088265314107897", "reserves": [ - "3434885707949727608453022", - "2543107371585289638101562" + "3051956765298848305575963", + "1743758720222351215281529" ], - "LPTokenSupply": "5921746382643737251750164" + "LPTokenSupply": "4771006038956675727311180" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1950561228267725824", - "expectedQty": "1969638256720090930", - "swapFee": "1170336736960635", + "inputIndex": 1, + "inputQty": "1332533565895209385984", + "expectedQty": "1335047891765998399728", + "swapFee": "799520139537125631", "reserves": [ - "3434883738311470888362092", - "2543107371585289638101562" + "3051956765298848305575963", + "1742423672330585216881801" ], - "LPTokenSupply": "5921744432199542657720403" + "LPTokenSupply": "4769673585342794471637759" }, { - "type": "mintMulti", - "inputQtys": [ - "374511486345315745792", - "245007868223805358080" + "type": "redeemMasset", + "inputQty": "124077897606616711168", + "expectedQtys": [ + "79345717065449382050", + "45300070199174675550" ], - "expectedQty": "613652365448808296619", + "redemptionFee": "74446738563970026", "reserves": [ - "3435258249797816204107884", - "2543352379453513443459642" + "3051877419581782856193913", + "1742378372260386042206251" ], - "LPTokenSupply": "5922358084564991466017022" + "LPTokenSupply": "4769549514889861711323593" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "12412968388115614924800", - "expectedQty": "12310648296098607398879", + "inputQty": "112041617561251584", + "outputIndex": 0, + "expectedQty": "112515294193342643", + "swapFee": "0", "reserves": [ - "3435258249797816204107884", - "2555765347841629058384442" - ] + "3051877307066488662851270", + "1742378484302003603457835" + ], + "LPTokenSupply": "4769549514889861711323593", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "327788353813724423782", + "inputQty": "5931807716773871799500", "expectedQtys": [ - "189625078449110355212", - "141077371580582124662" + "3793290627260722475296", + "2165666345216394335924" ], - "redemptionFee": "196673012288234654", + "redemptionFee": "3559084630064323079", "reserves": [ - "3435068624719367093752672", - "2555624270470048476259780" + "3048084016439227940375974", + "1740212817956787209121911" ], - "LPTokenSupply": "5934340964174577577815584" + "LPTokenSupply": "4763618063081550845956400" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "57912065991930724352", - "expectedQty": "58358965044927136893", - "swapFee": "34747239595158434", + "type": "redeemBassets", + "inputQtys": [ + "11538360445367081762816", + "2710012487766713040896" + ], + "expectedQty": "14164597623313303878582", + "swapFee": "8503860890522295704", "reserves": [ - "3435068624719367093752672", - "2555565911505003549122887" + "3036545655993860858613158", + "1737502805469020496081015" ], - "LPTokenSupply": "5934283055583309606607075" + "LPTokenSupply": "4749445811983436072011683" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "186118543276391301120", - "expectedQty": "187935969497139924351", - "swapFee": "111671125965834780", + "type": "swap", + "inputIndex": 1, + "inputQty": "152396909024872247590912", + "outputIndex": 0, + "expectedQty": "152944505933560084699190", + "swapFee": "0", "reserves": [ - "3434880688749869953828321", - "2555565911505003549122887" + "2883601150060300773913968", + "1889899714493892743671927" ], - "LPTokenSupply": "5934096948207145811889433" + "LPTokenSupply": "4749445811983436072011683", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "526076321684118", + "inputQty": "8436363592306471311769", "expectedQtys": [ - "304330247430160", - "226423004653316" + "5119020714186078831826", + "3354984022678131190042" ], - "redemptionFee": "315645793010", + "redemptionFee": "5061818155383882787", "reserves": [ - "3434880688445539706398161", - "2555565911278580544469571" + "2878482129346114695082142", + "1886544730471214612481885" ], - "LPTokenSupply": "5934096947681101054784616" + "LPTokenSupply": "4741009954572945139088192" }, { - "type": "mintMulti", - "inputQtys": [ - "177121556011296703381504", - "3113082243856059072512" - ], - "expectedQty": "178377533825675101605995", + "type": "redeem", + "inputIndex": 0, + "inputQty": "10403496057842608111616", + "expectedQty": "10462336112047381249466", + "swapFee": "6242097634705564866", "reserves": [ - "3612002244456836409779665", - "2558678993522436603542083" + "2868019793234067313832676", + "1886544730471214612481885" ], - "LPTokenSupply": "6112474481506776156390611" + "LPTokenSupply": "4730607082724866001533062" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4636901744520549892096", - "expectedQty": "4588586476344966301507", + "inputIndex": 1, + "inputQty": "19748091883810625421312", + "expectedQty": "19683423154334791153472", "reserves": [ - "3616639146201356959671761", - "2558678993522436603542083" + "2868019793234067313832676", + "1906292822355025237903197" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "14981528014041517129728", - "5718291574104820547584" - ], - "expectedQty": "20497750340399911615324", - "swapFee": "12306033824534667769", + "type": "mint", + "inputIndex": 1, + "inputQty": "15993498497415927808", + "expectedQty": "15940722296200285400", "reserves": [ - "3601657618187315442542033", - "2552960701948331782994499" - ], - "LPTokenSupply": "6096554242212279129875800" + "2868019793234067313832676", + "1906308815853522653831005" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "10566767325010938822656", - "11075073741792145833984" - ], - "expectedQty": "21442651442253864131494", - "swapFee": "12873314854264877405", + "type": "redeem", + "inputIndex": 1, + "inputQty": "35272645413796589862912", + "expectedQty": "35366583854540185369512", + "swapFee": "21163587248277953917", "reserves": [ - "3591090850862304503719377", - "2541885628206539637160515" + "2868019793234067313832676", + "1870942231998982468461493" ], - "LPTokenSupply": "6075100004786656427354640" + "LPTokenSupply": "4715035917546425230904413" }, { "type": "redeemBassets", "inputQtys": [ - "2100523209235703040", - "1905426298872190464" + "743643311028911744", + "123329926876598160" ], - "expectedQty": "3968729300878563117", - "swapFee": "2382667180835639", + "expectedQty": "861931738615926687", + "swapFee": "517469524884486", "reserves": [ - "3591088750339095268016337", - "2541883722780240764970051" + "2868019049590756284920932", + "1870942108669055591863333" ], - "LPTokenSupply": "6075096033912955086039446" + "LPTokenSupply": "4715035055148964042581687" }, { "type": "redeemMasset", - "inputQty": "14249395305574885543116", + "inputQty": "257512307924507596", "expectedQtys": [ - "8417997080144402421215", - "5958518779133527369058" + "156543284593982767", + "102120459422345314" ], - "redemptionFee": "8549637183344931325", + "redemptionFee": "154507384754704", "reserves": [ - "3582670753258950865595122", - "2535925204001107237600993" + "2868018893047471690938165", + "1870942006548596169518019" ], - "LPTokenSupply": "6060847493571098534989462" + "LPTokenSupply": "4715034797652106856549561" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "337814167675383", - "expectedQty": "341168192658179", - "swapFee": "202688500605", + "inputQty": "22526724681392575217664", + "expectedQty": "22654434655585829186236", + "swapFee": "13516034808835545130", "reserves": [ - "3582670752917782672936943", - "2535925204001107237600993" + "2845364458391885861751929", + "1870942006548596169518019" ], - "LPTokenSupply": "6060847493233304636164139" + "LPTokenSupply": "4692509424574195164886410" }, { - "type": "redeemBassets", - "inputQtys": [ - "14693468527320702648320", - "13385328834220597968896" + "type": "redeem", + "inputIndex": 0, + "inputQty": "31309951463400947712", + "expectedQty": "31487132430829995008", + "swapFee": "18785970878040568", + "reserves": [ + "2845332971259455031756921", + "1870942006548596169518019" + ], + "LPTokenSupply": "4692478116501328851742754" + }, + { + "type": "redeemMasset", + "inputQty": "206438426773641442099", + "expectedQtys": [ + "125100984175568080832", + "82259858061898087771" ], - "expectedQty": "27817953888061191876654", - "swapFee": "16700792808521828222", + "redemptionFee": "123863056064184865", "reserves": [ - "3567977284390461970288623", - "2522539875166886639632097" + "2845207870275279463676089", + "1870859746690534271430248" ], - "LPTokenSupply": "6033014508631715774642084" + "LPTokenSupply": "4692271690460860816719141" }, { "type": "redeemBassets", "inputQtys": [ - "2118788932996010868736", - "20174439792475440676864" + "13556202385452201984", + "337637322630119882752" ], - "expectedQty": "22109210143173294213390", - "swapFee": "13273490180011983718", + "expectedQty": "350010559391126366314", + "swapFee": "210132415083726055", "reserves": [ - "3565858495457465959419887", - "2502365435374411198955233" + "2845194314072894011474105", + "1870522109367904151547496" ], - "LPTokenSupply": "6010893352347380469643346" + "LPTokenSupply": "4691921490782296114999376" }, { - "type": "mintMulti", - "inputQtys": [ - "1443985097196669501440", - "10390574134581142749184" - ], - "expectedQty": "11736153432557373446860", + "type": "swap", + "inputIndex": 1, + "inputQty": "20273923966675353600", + "outputIndex": 0, + "expectedQty": "20334532662233854388", + "swapFee": "0", "reserves": [ - "3567302480554662628921327", - "2512756009508992341704417" + "2845173979540231777619717", + "1870542383291870826901096" ], - "LPTokenSupply": "6022629505779937843090206" + "LPTokenSupply": "4691921490782296114999376", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "138782446495363734962176", - "129057638873970872680448" + "6489452461238941384704", + "6266372523884221038592" ], - "expectedQty": "265355533680845770211730", - "swapFee": "159308905551838565266", + "expectedQty": "12695050712445520837938", + "swapFee": "7621603389501013110", "reserves": [ - "3428520034059298893959151", - "2383698370635021469023969" + "2838684527078992836235013", + "1864276010767986605862504" ], - "LPTokenSupply": "5757130594084095418169735" + "LPTokenSupply": "4679219580626800043249638" }, { "type": "swap", "inputIndex": 0, - "inputQty": "14417575254303841452032", + "inputQty": "602699330494090368", "outputIndex": 1, - "expectedQty": "14368907206168683758327", - "swapFee": "11412755309150578086", + "expectedQty": "600417017327943107", + "swapFee": "479156009339506", "reserves": [ - "3442937609313602735411183", - "2369329463428852785265642" + "2838685129778323330325381", + "1864275410350969277919397" ], - "LPTokenSupply": "5757131735359626333227543", + "LPTokenSupply": "4679219580674715644183588", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1070948409164718694", - "expectedQtys": [ - "640075023432526355", - "440481003118131727" - ], - "redemptionFee": "642569045498831", + "type": "mint", + "inputIndex": 0, + "inputQty": "56351876033651212288", + "expectedQty": "56000848529045167612", "reserves": [ - "3442936969238579302884828", - "2369329022947849667133915" - ], - "LPTokenSupply": "5757130664475474073058732" + "2838741481654356981537669", + "1864275410350969277919397" + ] }, { "type": "redeemBassets", "inputQtys": [ - "440965288349923966713856", - "190285073678928269279232" - ], - "expectedQty": "625101884214518489268165", - "swapFee": "375286302310097151852", - "reserves": [ - "3001971680888655336170972", - "2179043949268921397854683" - ], - "LPTokenSupply": "5131691022588876496353899" - }, - { - "type": "mintMulti", - "inputQtys": [ - "11021415081059452928", - "3610454915985266688" - ], - "expectedQty": "14486994418738369769", - "reserves": [ - "3001982702303736395623900", - "2179047559723837383121371" + "6023685569172623851520", + "1819770634431353847808" ], - "LPTokenSupply": "5131705509583295234723668" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "51719561516781475463168", - "expectedQty": "52232536217728005796614", - "swapFee": "31031736910068885277", + "expectedQty": "7800025733770204964610", + "swapFee": "4682825135343328976", "reserves": [ - "2949750166086008389827286", - "2179047559723837383121371" + "2832717796085184357686149", + "1862455639716537924071589" ], - "LPTokenSupply": "5079989051240204766149027" + "LPTokenSupply": "4671471341246852675390510" }, { "type": "mintMulti", "inputQtys": [ - "589723425577658155008", - "690214485181255254016" + "9933877056674572795904", + "2335900685975977984000" ], - "expectedQty": "1268059260206060252628", + "expectedQty": "12200296020208164404534", "reserves": [ - "2950339889511586047982294", - "2179737774209018638375387" + "2842651673141858930482053", + "1864791540402513902055589" ], - "LPTokenSupply": "5081257110500410826401655" + "LPTokenSupply": "4683671637267060839795044" }, { - "type": "redeemMasset", - "inputQty": "22604395989891157904588", - "expectedQtys": [ - "13116958132045275448881", - "9690927213091519283023" - ], - "redemptionFee": "13562637593934694742", + "type": "mint", + "inputIndex": 1, + "inputQty": "240986357768969", + "expectedQty": "240204334563458", "reserves": [ - "2937222931379540772533413", - "2170046846995927119092364" - ], - "LPTokenSupply": "5058654070774279061966541" + "2842651673141858930482053", + "1864791540643500259824558" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "9819665110138450083840", - "expectedQty": "9916807721918180876242", - "swapFee": "5891799066083070050", + "inputIndex": 1, + "inputQty": "374447520292993600", + "expectedQty": "375441193281800821", + "swapFee": "224668512175796", "reserves": [ - "2927306123657622591657171", - "2170046846995927119092364" + "2842651673141858930482053", + "1864791165202306978023737" ], - "LPTokenSupply": "5048834994844047220189706" + "LPTokenSupply": "4683671263082211732582481" }, { "type": "redeemBassets", "inputQtys": [ - "13682132014561421688832", - "10386789764878336786432" + "32060370375044321280", + "25360013921485033472" ], - "expectedQty": "23840112938886535488658", - "swapFee": "14312655356545848802", + "expectedQty": "57138234928330466251", + "swapFee": "34303523070840784", "reserves": [ - "2913623991643061169968339", - "2159660057231048782305932" + "2842619612771483886160773", + "1864765805188385492990265" ], - "LPTokenSupply": "5024982000515339793437125" + "LPTokenSupply": "4683614093974112638359523" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "102481570224555878776832", - "outputIndex": 1, - "expectedQty": "102157240813609446539948", - "swapFee": "81129108001864826038", + "type": "mintMulti", + "inputQtys": [ + "5401471373328797138944", + "640498095390789468160" + ], + "expectedQty": "6006208858141663094695", "reserves": [ - "3016105561867617048745171", - "2057502816417439335765984" + "2848021084144812683299717", + "1865406303283776282458425" ], - "LPTokenSupply": "5024990113426139979919728", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4689620302832254301454218" }, { "type": "mintMulti", "inputQtys": [ - "77820081115400945664", - "309290129522447417344" + "10760352680422858752", + "9151594994251018240" ], - "expectedQty": "383806431035068836561", + "expectedQty": "19815189298519811291", "reserves": [ - "3016183381948732449690835", - "2057812106546961783183328" + "2848031844497493106158469", + "1865415454878770533476665" ], - "LPTokenSupply": "5025373919857175048756289" + "LPTokenSupply": "4689640118021552821265509" }, { - "type": "redeemBassets", - "inputQtys": [ - "308320552821889024", - "152881355038961792" - ], - "expectedQty": "456691445086163577", - "swapFee": "274179374676504", + "type": "redeem", + "inputIndex": 0, + "inputQty": "114308037788179857408", + "expectedQty": "114956623344306280998", + "swapFee": "68584822672907914", "reserves": [ - "3016183073628179627801811", - "2057811953665606744221536" + "2847916887874148799877471", + "1865415454878770533476665" ], - "LPTokenSupply": "5025373462918968525383857" + "LPTokenSupply": "4689525816842246908698892" }, { "type": "mint", "inputIndex": 1, - "inputQty": "330083876080421200461824", - "expectedQty": "327333578813685503153954", + "inputQty": "180543790232517413437440", + "expectedQty": "179919288137398931837440", "reserves": [ - "3016183073628179627801811", - "2387895829746027944683360" + "2847916887874148799877471", + "2045959245111287946914105" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "170009420036818599936000", - "outputIndex": 1, - "expectedQty": "169525923717304168657368", - "swapFee": "134608788178270276367", - "reserves": [ - "3186192493664998227737811", - "2218369906028723776025992" - ], - "LPTokenSupply": "5352720502611471855565447", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "2137239597408154112", - "outputIndex": 1, - "expectedQty": "2130133269140559109", - "swapFee": "1691631848268423", + "inputIndex": 1, + "inputQty": "42142691326365630726144", + "outputIndex": 0, + "expectedQty": "42233757825953567266440", + "swapFee": "0", "reserves": [ - "3186194630904595635891923", - "2218367775895454635466883" + "2805683130048195232611031", + "2088101936437653577640249" ], - "LPTokenSupply": "5352720502780635040392289", + "LPTokenSupply": "4869445104979645840536332", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "415446944014368636928", - "expectedQty": "412075600560785160460", + "inputQty": "9752194472257802731520", + "expectedQty": "9783588226722920124421", + "swapFee": "5851316683354681638", "reserves": [ - "3186194630904595635891923", - "2218783222839469004103811" - ] + "2805683130048195232611031", + "2078318348210930657515828" + ], + "LPTokenSupply": "4859693495639056373272975" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2498064908368960", - "expectedQty": "2523365453334023", - "swapFee": "1498838945021", + "inputIndex": 1, + "inputQty": "15512038689493353496576", + "expectedQty": "15561588409362505155262", + "swapFee": "9307223213696012097", "reserves": [ - "3186194628381230182557900", - "2218783222839469004103811" + "2805683130048195232611031", + "2062756759801568152360566" ], - "LPTokenSupply": "5353132575883280801078291" + "LPTokenSupply": "4844182387671884389377608" }, { "type": "redeemMasset", - "inputQty": "71139819889709760", + "inputQty": "2932444152096041730048", "expectedQtys": [ - "42317149743302508", - "29468564491469239" - ], - "redemptionFee": "42683891933825", - "reserves": [ - "3186194586064080439255392", - "2218783193370904512634572" - ], - "LPTokenSupply": "5353132504747729300561913" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "280544085963706105856", - "184331055860458127360" + "1697411848657439313171", + "1247948397125396029634" ], - "expectedQty": "460399704849725128672", - "swapFee": "276405666309620849", + "redemptionFee": "1759466491257625038", "reserves": [ - "3185914041978116733149536", - "2218598862315044054507212" + "2803985718199537793297860", + "2061508811404442756330932" ], - "LPTokenSupply": "5352671856277779896774475" + "LPTokenSupply": "4841250119466437473410063" }, { - "type": "redeemBassets", - "inputQtys": [ - "17975634158309661999104", - "20278676832633114066944" + "type": "redeemMasset", + "inputQty": "6014790772692684", + "expectedQtys": [ + "3481594170142058", + "2559691018715608" ], - "expectedQty": "37898891179777435612821", - "swapFee": "22752986499766321160", + "redemptionFee": "3608874463615", "reserves": [ - "3167938407819807071150432", - "2198320185482410940440268" + "2803985714717943623155802", + "2061508808844751737615324" ], - "LPTokenSupply": "5314752487410152671472609" + "LPTokenSupply": "4841250113452007588163740" }, { "type": "swap", "inputIndex": 1, - "inputQty": "898569017761419624448", + "inputQty": "39255664147901806804992", "outputIndex": 0, - "expectedQty": "900866314131661686402", + "expectedQty": "39334110648609337246848", "swapFee": "0", "reserves": [ - "3167037541505675409464030", - "2199218754500172360064716" + "2764651604069334285908954", + "2100764472992653544420316" ], - "LPTokenSupply": "5314752487410152671472609", + "LPTokenSupply": "4841250113452007588163740", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "72156384823916038717440", - "expectedQty": "71386554897618822320935", - "reserves": [ - "3239193926329591448181470", - "2199218754500172360064716" - ] - }, { "type": "redeem", "inputIndex": 0, - "inputQty": "52889063868356418863104", - "expectedQty": "53427841067262209303696", - "swapFee": "31733438321013851317", + "inputQty": "25687367407076642816", + "expectedQty": "25821017819740977479", + "swapFee": "15412420444245985", "reserves": [ - "3185766085262329238877774", - "2199218754500172360064716" + "2764625783051514544931475", + "2100764472992653544420316" ], - "LPTokenSupply": "5333253151783247176315571" + "LPTokenSupply": "4841224427625842555945522" }, { - "type": "mintMulti", - "inputQtys": [ - "66160740360702456", - "4558638455046167" - ], - "expectedQty": "69977439431717145", + "type": "mint", + "inputIndex": 1, + "inputQty": "48720549080364115558400", + "expectedQty": "48527958644720396972586", "reserves": [ - "3185766151423069599580230", - "2199218759058810815110883" - ], - "LPTokenSupply": "5333253221760686608032716" + "2764625783051514544931475", + "2149485022073017659978716" + ] }, { - "type": "redeemMasset", - "inputQty": "18003927850267498145382", - "expectedQtys": [ - "10748015849275311866945", - "7419640034730426717927" - ], - "redemptionFee": "10802356710160498887", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1382262110171982200832", + "expectedQty": "1386977555331759640209", + "swapFee": "829357266103189320", "reserves": [ - "3175018135573794287713285", - "2191799119024080388392956" + "2764625783051514544931475", + "2148098044517685900338507" ], - "LPTokenSupply": "5315250374146090125937222" + "LPTokenSupply": "4888370207096117581036208" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "542404223048588", - "outputIndex": 0, - "expectedQty": "543814402293718", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1116932830744914690048", + "expectedQty": "1122665264997823770686", + "swapFee": "670159698446948814", "reserves": [ - "3175018135029979885419567", - "2191799119566484611441544" + "2763503117786516721160789", + "2148098044517685900338507" ], - "LPTokenSupply": "5315250374146090125937222", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4887253341281342511041041" }, { "type": "mintMulti", "inputQtys": [ - "3386490918300270198784", - "3410633191326741430272" - ], - "expectedQty": "6733445522249453475623", - "reserves": [ - "3178404625948280155618351", - "2195209752757811352871816" + "12109721066314945003520", + "7096754924196028481536" ], - "LPTokenSupply": "5321983819668339579412845" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2255888013042224384", - "expectedQty": "2272920139800626383", - "swapFee": "1353532807825334", + "expectedQty": "19109039631975812535242", "reserves": [ - "3178404625948280155618351", - "2195207479837671552245433" + "2775612838852831666164309", + "2155194799441881928820043" ], - "LPTokenSupply": "5321981563915679817970994" + "LPTokenSupply": "4906362380913318323576283" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "237213676019443107364864", - "expectedQty": "235240631578477950895590", - "reserves": [ - "3178404625948280155618351", - "2432421155857114659610297" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "34430085836555604197376", - "107309795620709310922752" + "type": "redeemMasset", + "inputQty": "4736694139472892762521", + "expectedQtys": [ + "2678020845120228766119", + "2079417027262891588801" ], - "expectedQty": "140463353902092494341214", + "redemptionFee": "2842016483683735657", "reserves": [ - "3212834711784835759815727", - "2539730951477823970533049" + "2772934818007711437398190", + "2153115382414619037231242" ], - "LPTokenSupply": "5697685549396250263207798" + "LPTokenSupply": "4901625970975493799187327" }, { "type": "redeemBassets", "inputQtys": [ - "39785756688218048", - "53883576631374224" + "61495267735918362624", + "82566988517662556160" ], - "expectedQty": "92795484523981458", - "swapFee": "55710717144675", + "expectedQty": "143381521040745763996", + "swapFee": "86080560961024072", "reserves": [ - "3212834671999079071597679", - "2539730897594247339158825" + "2772873322739975519035566", + "2153032815426101374675082" ], - "LPTokenSupply": "5697685456550626093796131" + "LPTokenSupply": "4901482511981948188501665" }, { - "type": "redeemBassets", - "inputQtys": [ - "31166001955189028814848", - "17374917331476151271424" + "type": "redeemMasset", + "inputQty": "998024803393167215820", + "expectedQtys": [ + "564265180624243620066", + "438130887741335749574" ], - "expectedQty": "48071475897122292880028", - "swapFee": "28860201659268937090", + "redemptionFee": "598814882035900329", "reserves": [ - "3181668670043890042782831", - "2522355980262771187887401" + "2772309057559351275415500", + "2152594684538360038925508" ], - "LPTokenSupply": "5649588006472010458872721" + "LPTokenSupply": "4900484547060043224875877" }, { "type": "mintMulti", "inputQtys": [ - "25729113432866496184320", - "4407986771039826214912" + "446093565914172109094912", + "6687791882019885023232" ], - "expectedQty": "29835397105415211579679", + "expectedQty": "450106526596153467029310", "reserves": [ - "3207397783476756538967151", - "2526763967033811014102313" + "3218402623473523384510412", + "2159282476420379923948740" ], - "LPTokenSupply": "5679423403577425670452400" + "LPTokenSupply": "5350591073656196691905187" }, { "type": "redeemMasset", - "inputQty": "20705421845770494227251", + "inputQty": "1210097939010620", "expectedQtys": [ - "11686164792325338018172", - "9206273154575436832259" - ], - "redemptionFee": "12423253107462296536", - "reserves": [ - "3195711618684431200948979", - "2517557693879235577270054" + "727442179482997", + "488053650997655" ], - "LPTokenSupply": "5658719224056965922454802" - }, - { - "type": "mintMulti", - "inputQtys": [ - "14211862633261834240", - "36738645670634119168" - ], - "expectedQty": "50486918722955252676", + "redemptionFee": "726058763406", "reserves": [ - "3195725830547064462783219", - "2517594432524906211389222" + "3218402622746081205027415", + "2159282475932326272951085" ], - "LPTokenSupply": "5658769710975688877707478" + "LPTokenSupply": "5350591072446171358770907" }, { - "type": "redeemBassets", - "inputQtys": [ - "733067918943072288768", - "91834791429764317184" - ], - "expectedQty": "816591643721157852959", - "swapFee": "490249135714123185", + "type": "redeem", + "inputIndex": 0, + "inputQty": "26445354695034297909248", + "expectedQty": "26593101651581401009281", + "swapFee": "15867212817020578745", "reserves": [ - "3194992762628121390494451", - "2517502597733476447072038" + "3191809521094499804018134", + "2159282475932326272951085" ], - "LPTokenSupply": "5657952678107745577143651" + "LPTokenSupply": "5324147304472418762919533" }, { "type": "mintMulti", "inputQtys": [ - "417489894754654617600", - "1352660795724512624640" + "7178014148130827665408", + "11941774141123492577280" ], - "expectedQty": "1754164810332376488604", + "expectedQty": "19035048996597615268246", "reserves": [ - "3195410252522876045112051", - "2518855258529200959696678" + "3198987535242630631683542", + "2171224250073449765528365" ], - "LPTokenSupply": "5659706842918077953632255" + "LPTokenSupply": "5343182353469016378187779" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2560473601281656094720", - "6422896221772644876288" + "69679372109152503463936", + "100118134414132012646400" ], - "expectedQty": "8901548131357245182719", - "swapFee": "5344135360030365328", + "expectedQty": "169025464588972736218621", "reserves": [ - "3192849778921594389017331", - "2512432362307428314820390" + "3268666907351783135147478", + "2271342384487581778174765" ], - "LPTokenSupply": "5650800485064896681120739" + "LPTokenSupply": "5512207818057989114406400" }, { "type": "redeemMasset", - "inputQty": "588226162810844672", + "inputQty": "39155798482635155046", "expectedQtys": [ - "332163718783395512", - "261377432212816969" + "23204943390278466105", + "16124730033956327230" ], - "redemptionFee": "352935697686506", + "redemptionFee": "23493479089581093", "reserves": [ - "3192849446757875605621819", - "2512432100929996102003421" + "3268643702408392856681373", + "2271326259757547821847535" ], - "LPTokenSupply": "5650799896874027440044717" + "LPTokenSupply": "5512168664608854388209463" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "39027522348608852590592", - "26959853511271614775296" + "1047195422873525157888", + "10236670073421846020096" ], - "expectedQty": "65353872501907243838287", - "swapFee": "39235865020156440167", + "expectedQty": "11241361420464675790089", "reserves": [ - "3153821924409266753031227", - "2485472247418724487228125" + "3269690897831266381839261", + "2281562929830969667867631" ], - "LPTokenSupply": "5585410712093602055410278" + "LPTokenSupply": "5523410026029319063999552" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "172399825814618460127232", - "expectedQty": "174067114890682849323339", - "swapFee": "103439895488771076076", + "inputQty": "1195657953115967848448", + "expectedQty": "1188431082666944745037", "reserves": [ - "2979754809518583903707888", - "2485472247418724487228125" - ], - "LPTokenSupply": "5413021230268532472390653" + "3270886555784382349687709", + "2281562929830969667867631" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "10554019427012040458240", - "outputIndex": 1, - "expectedQty": "10532461109251974046729", - "swapFee": "8357885681769206043", - "reserves": [ - "2990308828945595944166128", - "2474939786309472513181396" + "type": "redeemMasset", + "inputQty": "37618071595544307302", + "expectedQtys": [ + "22258743132962815456", + "15526286934955795995" ], - "LPTokenSupply": "5413022066057100649311257", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5915881000770298", - "expectedQty": "5972814379758601", - "swapFee": "3549528600462", + "redemptionFee": "22570842957326584", "reserves": [ - "2990308822972781564407527", - "2474939786309472513181396" + "3270864297041249386872253", + "2281547403544034712071636" ], - "LPTokenSupply": "5413022060141574601401005" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "712721576626207099715584", - "expectedQty": "706071811636835823836172", - "reserves": [ - "2990308822972781564407527", - "3187661362935679612896980" - ] + "LPTokenSupply": "5524560841297474760169945" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "648736926072953634816", - "expectedQty": "654720054776644479522", - "swapFee": "389242155643772180", + "type": "mintMulti", + "inputQtys": [ + "7868540448328938160128", + "26527058887040873529344" + ], + "expectedQty": "34253667149226277301892", "reserves": [ - "2990308822972781564407527", - "3187006642880902968417458" + "3278732837489578325032381", + "2308074462431075585600980" ], - "LPTokenSupply": "6118445173776553035979579" + "LPTokenSupply": "5558814508446701037471837" }, { - "type": "redeemMasset", - "inputQty": "91090208771818284646", - "expectedQtys": [ - "44492418340293277361", - "47419059770349835600" + "type": "redeemBassets", + "inputQtys": [ + "515208566140612224", + "316216690558391616" ], - "redemptionFee": "54654125263090970", + "expectedQty": "827193021207680785", + "swapFee": "496613780993204", "reserves": [ - "2990264330554441271130166", - "3186959223821132618581858" + "3278732322281012184420157", + "2308074146214385027209364" ], - "LPTokenSupply": "6118354089033193744004030" + "LPTokenSupply": "5558813680806727426897167" }, { - "type": "redeemMasset", - "inputQty": "1195525183229780819968", - "expectedQtys": [ - "583946482651043239759", - "622357565545915644251" + "type": "mintMulti", + "inputQtys": [ + "138127659708779855872", + "250538057481765879808" ], - "redemptionFee": "717315109937868491", + "expectedQty": "386937233524866057321", "reserves": [ - "2989680384071790227890407", - "3186336866255586702937607" + "3278870449940720964276029", + "2308324684271866793089172" ], - "LPTokenSupply": "6117158635581474956970911" + "LPTokenSupply": "5559200618040252292954488" }, { "type": "mintMulti", "inputQtys": [ - "1688085192408519147520", - "1167691833359355084800" + "9042057326071841792", + "53377962312563859456" ], - "expectedQty": "2828688672322898212834", + "expectedQty": "62174393177031328062", "reserves": [ - "2991368469264198747037927", - "3187504558088946058022407" + "3278879491998047036117821", + "2308378062234179356948628" ], - "LPTokenSupply": "6119987324253797855183745" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1054611930722257469440", - "expectedQty": "1044347701309621094920", - "reserves": [ - "2991368469264198747037927", - "3188559170019668315491847" - ] + "LPTokenSupply": "5559262792433429324282550" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "818104270653159552", - "outputIndex": 0, - "expectedQty": "817757891233467012", - "swapFee": "0", + "inputQty": "5438836811452231680", + "expectedQty": "5455117260081442709", + "swapFee": "3263302086871339", "reserves": [ - "2991367651506307513570915", - "3188559988123938968651399" + "3278879491998047036117821", + "2308372607116919275505919" ], - "LPTokenSupply": "6121031671955107476278665", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5559257353922948080738003" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1688137191107666176", - "expectedQty": "1672414241192132491", + "inputIndex": 1, + "inputQty": "606307876428625", + "expectedQty": "604135693197880", "reserves": [ - "2991369339643498621237091", - "3188559988123938968651399" + "3278879491998047036117821", + "2308372607723227151934544" ] }, { "type": "redeemMasset", - "inputQty": "67629210989449733734", + "inputQty": "1913081009235177137766", "expectedQtys": [ - "33030789815117585986", - "35208174859867827988" + "1127668325222337922015", + "793892754794149915263" ], - "redemptionFee": "40577526593669840", + "redemptionFee": "1147848605541106282", "reserves": [ - "2991336308853683503651105", - "3188524779949079100823411" + "3277751823672824698195806", + "2307578714968433002019281" ], - "LPTokenSupply": "6120965719216111878044406" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "4027313711059915243520", - "expectedQty": "3989794927269107237852", - "reserves": [ - "2995363622564743418894625", - "3188524779949079100823411" - ] + "LPTokenSupply": "5557344388302709150908745" }, { - "type": "mintMulti", - "inputQtys": [ - "731409975100173451264", - "797254670028749799424" + "type": "redeemMasset", + "inputQty": "6733538136714390732", + "expectedQtys": [ + "3969094381422416061", + "2794292614261509098" ], - "expectedQty": "1514092649407447947724", + "redemptionFee": "4040122882028634", "reserves": [ - "2996095032539843592345889", - "3189322034619107850622835" + "3277747854578443275779745", + "2307575920675818740510183" ], - "LPTokenSupply": "6126469606792788433229982" + "LPTokenSupply": "5557337655168584724720876" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "351748178488163", - "expectedQty": "348326032655172", - "reserves": [ - "2996095032539843592345889", - "3189322034970856029110998" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "6796281509688415092736", - "5504742954855347257344" - ], - "expectedQty": "12184137398620982030330", + "inputQty": "8754533825502777442304", + "expectedQty": "8780665675600015015581", + "swapFee": "5252720295301666465", "reserves": [ - "3002891314049532007438625", - "3194826777925711376368342" + "3277747854578443275779745", + "2298795255000218725494602" ], - "LPTokenSupply": "6138653744539735447915484" + "LPTokenSupply": "5548583646615111477445218" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "755918276823402752", - "491704686988106816" + "1543805709261057556480", + "1203491814270304780288" ], - "expectedQty": "1235794735621359866", + "expectedQty": "2733698017074129740213", + "swapFee": "1641203532363896181", "reserves": [ - "3002892069967808830841377", - "3194827269630398364475158" + "3276204048869182218223265", + "2297591763185948420714314" ], - "LPTokenSupply": "6138654980334471069275350" + "LPTokenSupply": "5545848471514858220198441" }, { "type": "redeemBassets", "inputQtys": [ - "908343379988983296", - "674819018106225664" + "1572526221696555", + "371745174899730" ], - "expectedQty": "1568132342863014913", - "swapFee": "941444272281177", - "reserves": [ - "3002891161624428841858081", - "3194826594811380258249494" - ], - "LPTokenSupply": "6138653411354828361207376" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "27572296118135308", - "outputIndex": 0, - "expectedQty": "27560967245045662", - "swapFee": "0", + "expectedQty": "1933464514959710", + "swapFee": "1160775174080", "reserves": [ - "3002891134063461596812419", - "3194826622383676376384802" + "3276204047296655996526710", + "2297591762814203245814584" ], - "LPTokenSupply": "6138653411354828361207376", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5545848469580349007582058" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "2193079413555490193408", - "expectedQty": "2212380598379403094968", - "swapFee": "1315847648133294116", + "inputQty": "1183220287709904633856", + "expectedQty": "1189682464888638224661", + "swapFee": "709932172625942780", "reserves": [ - "3000678753465082193717451", - "3194826622383676376384802" + "3275014364831767358302049", + "2297591762814203245814584" ], - "LPTokenSupply": "6136460463526037684343379" + "LPTokenSupply": "5544665320285856365542480" }, { - "type": "redeemBassets", - "inputQtys": [ - "41573855726557104", - "319196215500404032" + "type": "redeemMasset", + "inputQty": "34111655569705636829593", + "expectedQtys": [ + "20136315873439236495324", + "14126665818949909989550" ], - "expectedQty": "357276981887948627", - "swapFee": "214494886064407", + "redemptionFee": "20466993341823382097", "reserves": [ - "3000678711891226467160347", - "3194826303187460875980770" + "3254878048958328121806725", + "2283465096995253335825034" ], - "LPTokenSupply": "6136460106056010398936784" + "LPTokenSupply": "5510555711415484911051096" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "84424524098582108700672", - "expectedQty": "85163236422214586110361", - "swapFee": "50654714459149265220", - "reserves": [ - "2915515475469011881049986", - "3194826303187460875980770" - ], - "LPTokenSupply": "6052040647428874205162634" - }, - { - "type": "mintMulti", - "inputQtys": [ - "205185326912403168", - "293121175259969792" - ], - "expectedQty": "493532349330469981", + "inputIndex": 1, + "inputQty": "3374658448111498752", + "expectedQty": "3384722753301607886", + "swapFee": "2024795068866899", "reserves": [ - "2915515680654338793453154", - "3194826596308636135950562" + "3254878048958328121806725", + "2283461712272500034217148" ], - "LPTokenSupply": "6052041140961223535632615" + "LPTokenSupply": "5510552336959516306439033" }, { - "type": "redeemBassets", - "inputQtys": [ - "41300383634781716348928", - "47400280160427409670144" - ], - "expectedQty": "87853722999606320906547", - "swapFee": "52743880127840496842", + "type": "redeem", + "inputIndex": 0, + "inputQty": "730201136220073885696", + "expectedQty": "734190998118749569695", + "swapFee": "438120681732044331", "reserves": [ - "2874215297019557077104226", - "3147426316148208726280418" + "3254143857960209372237030", + "2283461712272500034217148" ], - "LPTokenSupply": "5964139948469502158278909" + "LPTokenSupply": "5509822179635364405757770" }, { "type": "redeemBassets", "inputQtys": [ - "1174713211197620224", - "321969609491880576" + "5026569403895157760", + "1777910005640544256" ], - "expectedQty": "1482665861614219452", - "swapFee": "890133597126807", + "expectedQty": "6767813052599358025", + "swapFee": "4063125706983805", "reserves": [ - "2874214122306345879484002", - "3147425994178599234399842" + "3254138831390805477079270", + "2283459934362494393672892" ], - "LPTokenSupply": "5964138465002520306645329" + "LPTokenSupply": "5509815408165498670114319" }, { "type": "redeemMasset", - "inputQty": "14892517505212147302", + "inputQty": "327970850564856768102", "expectedQtys": [ - "7172637223418159083", - "7854440860406137603" + "193585854291672646434", + "135841021246607904706" ], - "redemptionFee": "8935510503127288", + "redemptionFee": "196782510338914060", "reserves": [ - "2874206949669122461324919", - "3147418139737738828262239" + "3253945245536513804432836", + "2283324093341247785768186" ], - "LPTokenSupply": "5964123573378566144810755" + "LPTokenSupply": "5509487456993184847237623" }, { - "type": "redeemMasset", - "inputQty": "25607480064274455330816", - "expectedQtys": [ - "12333251573505525026290", - "13505603599235956452685" - ], - "redemptionFee": "15364488038564673198", + "type": "redeem", + "inputIndex": 0, + "inputQty": "125786362743491993272320", + "expectedQty": "126465751337425287711997", + "swapFee": "75471817646095195963", "reserves": [ - "2861873698095616936298629", - "3133912536138502871809554" + "3127479494199088516720839", + "2283324093341247785768186" ], - "LPTokenSupply": "5938517629763095545947258" + "LPTokenSupply": "5383708641431457463484899" }, { "type": "redeemBassets", "inputQtys": [ - "21303881575542531555328", - "3758705385782121594880" - ], - "expectedQty": "24828979262635329402272", - "swapFee": "14906331356395034662", - "reserves": [ - "2840569816520074404743301", - "3130153830752720750214674" - ], - "LPTokenSupply": "5913675234802239461013789" - }, - { - "type": "redeemMasset", - "inputQty": "892072345251949209190", - "expectedQtys": [ - "428240185883796823957", - "471897451888224264314" + "4206052296012299501568", + "1124200592119906172928" ], - "redemptionFee": "535243407151169525", + "expectedQty": "5301135279654636456320", + "swapFee": "3182590722226117544", "reserves": [ - "2840141576334190607919344", - "3129681933300832525950360" + "3123273441903076217219271", + "2282199892749127879595258" ], - "LPTokenSupply": "5912783215981328226921551" + "LPTokenSupply": "5378404641820152823522788" }, { "type": "redeemMasset", - "inputQty": "1851032970256318254284", + "inputQty": "1147681990815192920883", "expectedQtys": [ - "888590227081333271758", - "979178222303133785520" + "666066279022509871276", + "486699745899531615048" ], - "redemptionFee": "1110619782153790952", + "redemptionFee": "688609194489115752", "reserves": [ - "2839252986107109274647586", - "3128702755078529392164840" + "3122607375624053707347995", + "2281713193003228347980210" ], - "LPTokenSupply": "5910932294073050124046362" + "LPTokenSupply": "5377257028690257079513480" }, { "type": "redeemMasset", - "inputQty": "1768571713896659602636", + "inputQty": "2147685178536174498611", "expectedQtys": [ - "849004762133000944691", - "935557187527108480160" + "1246426145655270936351", + "910773157985455618479" ], - "redemptionFee": "1061143028337995761", + "redemptionFee": "1288611107121704699", "reserves": [ - "2838403981344976273702895", - "3127767197891002283684680" + "3121360949478398436411644", + "2280802419845242892361731" ], - "LPTokenSupply": "5909163828473456298243302" + "LPTokenSupply": "5375109472372831617185338" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "29040649715409208999936", - "expectedQty": "29311781185282952322004", - "swapFee": "17424389829245525399", + "inputIndex": 0, + "inputQty": "1731437725207180083200", + "expectedQty": "1740697038106299912437", + "swapFee": "1038862635124308049", "reserves": [ - "2838403981344976273702895", - "3098455416705719331362676" + "3119620252440292136499207", + "2280802419845242892361731" ], - "LPTokenSupply": "5880124921197030013795905" + "LPTokenSupply": "5373378138533887949532942" }, { "type": "mintMulti", "inputQtys": [ - "2687211814086058496", - "4967628062240000000" - ], - "expectedQty": "7581126844833530641", - "reserves": [ - "2838406668556790359761391", - "3098460384333781571362676" + "10942696314113683456", + "146636533940042891264" ], - "LPTokenSupply": "5880132502323874847326546" - }, - { - "type": "redeemMasset", - "inputQty": "575602764984616275148", - "expectedQtys": [ - "277683274839609040846", - "303124508553973465636" - ], - "redemptionFee": "345361658990769765", + "expectedQty": "156962173541538438022", "reserves": [ - "2838128985281950750720545", - "3098157259825227597897040" + "3119631195136606250182663", + "2280949056379182935252995" ], - "LPTokenSupply": "5879556934095056130128374" + "LPTokenSupply": "5373535100707429487970964" }, { "type": "redeemBassets", "inputQtys": [ - "1946706387388162637824", - "836436513177042288640" - ], - "expectedQty": "2756902403173634096395", - "swapFee": "1655134522617751108", - "reserves": [ - "2836182278894562588082721", - "3097320823312050555608400" - ], - "LPTokenSupply": "5876798542070812140055980" - }, - { - "type": "redeemMasset", - "inputQty": "52507439442216249", - "expectedQtys": [ - "25325237165973299", - "27657032135486891" - ], - "redemptionFee": "31504463665329", - "reserves": [ - "2836182253569325422109422", - "3097320795655018420121509" - ], - "LPTokenSupply": "5876798489566523144206263" - }, - { - "type": "redeemMasset", - "inputQty": "67645591231430566", - "expectedQtys": [ - "32626626995628252", - "35630689867853617" + "202895478519477632", + "1385047160887643136" ], - "redemptionFee": "40587354738858", + "expectedQty": "1581525312354562683", + "swapFee": "949484878339741", "reserves": [ - "2836182220942698426481170", - "3097320760024328552267892" + "3119630992241127730705031", + "2280947671332022047609859" ], - "LPTokenSupply": "5876798421924990648249582" + "LPTokenSupply": "5373533518327580742902513" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "63542480923524507631616", - "expectedQty": "64132898900397646516179", - "swapFee": "38125488554114704578", - "reserves": [ - "2836182220942698426481170", - "3033187861123930905751713" - ], - "LPTokenSupply": "5813259753550321552088423" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "73062225030294076915712", - "outputIndex": 1, - "expectedQty": "73024221968548682627786", - "swapFee": "57901807878685009488", + "inputQty": "175862718526118887424", + "expectedQty": "176421711403581845519", + "swapFee": "105517631115671332", "reserves": [ - "2909244445972992503396882", - "2960163639155382223123927" + "3119630992241127730705031", + "2280771249620618465764340" ], - "LPTokenSupply": "5813265543731109420589371", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5373357666160817735582222" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "114046666309258100736", - "expectedQty": "115085549615468059385", - "swapFee": "68427999785554860", + "inputQty": "219124690101111544086528", + "expectedQty": "219772163786675959266254", + "swapFee": "131474814060666926451", "reserves": [ - "2909244445972992503396882", - "2960048553605766755064542" + "3119630992241127730705031", + "2060999085833942506498086" ], - "LPTokenSupply": "5813151503907600141044121" + "LPTokenSupply": "5154246123541112258188339" }, { "type": "redeemMasset", - "inputQty": "481094110394347369267", + "inputQty": "2725439098465783539302", "expectedQtys": [ - "240623454505463949774", - "244825459565089329424" + "1648594703629382421845", + "1089151949554747791751" ], - "redemptionFee": "288656466236608421", + "redemptionFee": "1635263459079470123", "reserves": [ - "2909003822518487039447108", - "2959803728146201665735118" + "3117982397537498348283186", + "2059909933884387758706335" ], - "LPTokenSupply": "5812670438662852417335696" + "LPTokenSupply": "5151520847968992382596049" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1524103548574081220608", - "expectedQty": "1509610960194006600175", + "inputIndex": 1, + "inputQty": "26687674605015152984064", + "expectedQty": "26598028272036650064116", "reserves": [ - "2910527926067061120667716", - "2959803728146201665735118" + "3117982397537498348283186", + "2086597608489402911690399" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "3269900099951845888", - "1512780446045987072" + "type": "redeemMasset", + "inputQty": "212416573498617241", + "expectedQtys": [ + "127828998571032412", + "85544961037806416" ], - "expectedQty": "4737031642439164002", - "swapFee": "2843925340667899", + "redemptionFee": "127449944099170", "reserves": [ - "2910524656166961168821828", - "2959802215365755619748046" + "3117982269708499777250774", + "2086597522944441873883983" ], - "LPTokenSupply": "5814175310031871178170758" + "LPTokenSupply": "5178118663837200528452841" }, { "type": "mintMulti", "inputQtys": [ - "1622510395855632", - "280984646830486" - ], - "expectedQty": "1885362255986418", - "reserves": [ - "2910524657789471564677460", - "2959802215646740266578532" + "176071393628435251200", + "225091670811736702976" ], - "LPTokenSupply": "5814175311917233434157176" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5435971603946399596544", - "expectedQty": "5485463222603314251406", - "swapFee": "3261582962367839757", + "expectedQty": "399305189656049021293", "reserves": [ - "2910524657789471564677460", - "2954316752424136952327126" + "3118158341102128212501974", + "2086822614615253610586959" ], - "LPTokenSupply": "5808739666471583271344607" + "LPTokenSupply": "5178517969026856577474134" }, { "type": "swap", "inputIndex": 1, - "inputQty": "4634001604663064920064", + "inputQty": "42714526357475580444672", "outputIndex": 0, - "expectedQty": "4633494770778052982419", + "expectedQty": "42830273562336283063115", "swapFee": "0", "reserves": [ - "2905891163018693511695041", - "2958950754028800017247190" + "3075328067539791929438859", + "2129537140972729191031631" ], - "LPTokenSupply": "5808739666471583271344607", + "LPTokenSupply": "5178517969026856577474134", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "375803939049775", - "1385326574847552" - ], - "expectedQty": "1744224817407449", - "swapFee": "1047163188357", - "reserves": [ - "2905891162642889572645266", - "2958950752643473442399638" - ], - "LPTokenSupply": "5808739664726416007067635" - }, - { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "1410401652911055306752", - "expectedQty": "1396993282632679464621", - "reserves": [ - "2907301564295800627952018", - "2958950752643473442399638" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4675183831641115648", - "expectedQty": "4630194081242712226", + "inputQty": "13143772462803714", + "outputIndex": 1, + "expectedQty": "13099515581566368", + "swapFee": "10450776697662", "reserves": [ - "2907301564295800627952018", - "2958955427827305083515286" - ] + "3075328080683564392242573", + "2129537127873213609465263" + ], + "LPTokenSupply": "5178517969027901655143900", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "12004546596339279986688", - "11714612825125285789696" + "1043891975599453952", + "1317270794950847232" ], - "expectedQty": "23492294297093615197621", + "expectedQty": "2350109608141813949", + "swapFee": "1410912312272451", "reserves": [ - "2919306110892139907938706", - "2970670040652430369304982" + "3075327036791588792788621", + "2129535810602418658618031" ], - "LPTokenSupply": "5833633582500223544442103" + "LPTokenSupply": "5178515617648472432284744" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "26940436325688951177216", - "21732021910334045421568" + "1198824540604056207360", + "3126435023729841930240" ], - "expectedQty": "48207170008728064331993", + "expectedQty": "4306844055334091659666", + "swapFee": "2585657827897193311", "reserves": [ - "2946246547217828859115922", - "2992402062562764414726550" + "3074128212250984736581261", + "2126409375578688816687791" ], - "LPTokenSupply": "5881840752508951608774096" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "20544968640815353856", - "expectedQty": "20732008226959246096", - "swapFee": "12326981184489212", - "reserves": [ - "2946246547217828859115922", - "2992381330554537455480454" - ], - "LPTokenSupply": "5881820208773008911869161" + "LPTokenSupply": "5174206446501093233151097" }, { "type": "mintMulti", "inputQtys": [ - "5595302264344877727744", - "33811794154422397829120" - ], - "expectedQty": "39028286459090394774027", - "reserves": [ - "2951841849482173736843666", - "3026193124708959853309574" + "43024909697560543756288", + "26330163695283427344384" ], - "LPTokenSupply": "5920848495232099306643188" - }, - { - "type": "redeemMasset", - "inputQty": "488776116321117850828", - "expectedQtys": [ - "243533358853562128129", - "249667500421546634754" - ], - "redemptionFee": "293265669792670710", + "expectedQty": "68998696656771649891339", "reserves": [ - "2951598316123320174715537", - "3025943457208538306674820" + "3117153121948545280337549", + "2152739539273972244032175" ], - "LPTokenSupply": "5920359748442345168059431" + "LPTokenSupply": "5243205143157864883042436" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "157568323327512555814912", - "expectedQty": "158993651220389937461032", - "swapFee": "94540993996507533488", + "inputQty": "2572400798595887923200", + "expectedQty": "2563293579125495088218", "reserves": [ - "2951598316123320174715537", - "2866949805988148369213788" - ], - "LPTokenSupply": "5762800879214232262997867" + "3117153121948545280337549", + "2155311940072568131955375" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "13714720641443136798720", - "expectedQty": "13837617699385312175092", - "swapFee": "8228832384865882079", + "inputQty": "3171554417081225052160", + "expectedQty": "3180910987446253566597", + "swapFee": "1902932650248735031", "reserves": [ - "2951598316123320174715537", - "2853112188288763057038696" + "3117153121948545280337549", + "2152131029085121878388778" ], - "LPTokenSupply": "5749086981456027612787354" + "LPTokenSupply": "5242597072613174177951997" }, { "type": "redeemMasset", - "inputQty": "11327949378387347", + "inputQty": "16856720898924497338368", "expectedQtys": [ - "5812313343731874", - "5618373595271412" + "10016686855855756116815", + "6915676499600620672756" ], - "redemptionFee": "6796769627032", + "redemptionFee": "10114032539354698403", "reserves": [ - "2951598310311006830983663", - "2853112182670389461767284" + "3107136435092689524220734", + "2145215352585521257716022" ], - "LPTokenSupply": "5749086970128757911362710" + "LPTokenSupply": "5225741363117503616083469" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "867373239292252258304", - "expectedQty": "875336100764720938371", - "swapFee": "520423943575351354", + "inputQty": "257452534801787359592448", + "expectedQty": "258847631789546098318420", + "swapFee": "154471520881072415755", "reserves": [ - "2950722974210242110045292", - "2853112182670389461767284" + "2848288803303143425902314", + "2145215352585521257716022" ], - "LPTokenSupply": "5748219648931860016639541" + "LPTokenSupply": "4968304275467804363732596" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "500246808838812205056", - "expectedQty": "504726429223644532701", - "swapFee": "300148085303287323", + "inputIndex": 0, + "inputQty": "94245683990756491264", + "expectedQty": "94745862321497379053", + "swapFee": "56547410394453894", "reserves": [ - "2950722974210242110045292", - "2852607456241165817234583" + "2848194057440821928523261", + "2145215352585521257716022" ], - "LPTokenSupply": "5747719432137829734763217" + "LPTokenSupply": "4968210035438554646686721" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "83555577620017149116416", - "expectedQty": "84318690073855325475988", - "swapFee": "50133346572010289469", + "inputQty": "136441661548249632", + "outputIndex": 1, + "expectedQty": "136068256459172483", + "swapFee": "108511949909127", "reserves": [ - "2866404284136386784569304", - "2852607456241165817234583" + "2848194193882483476772893", + "2145215216517264798543539" ], - "LPTokenSupply": "5664168867852469786675747" + "LPTokenSupply": "4968210035449405841677633", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1806436886679924768768", - "1664256333762262466560" - ], - "expectedQty": "3437408652300504018986", - "swapFee": "2063683401421155104", + "type": "swap", + "inputIndex": 1, + "inputQty": "86873477593982373462016", + "outputIndex": 0, + "expectedQty": "87020033240545626599747", + "swapFee": "0", "reserves": [ - "2864597847249706859800536", - "2850943199907403554768023" + "2761174160641937850173146", + "2232088694111247172005555" ], - "LPTokenSupply": "5660729601885108003617166" + "LPTokenSupply": "4968210035449405841677633", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "357526085143340358041", - "expectedQtys": [ - "180816612830979775309", - "179954716252998579129" + "type": "mintMulti", + "inputQtys": [ + "12946219792154", + "8097344999705" ], - "redemptionFee": "214515651086004214", + "expectedQty": "20936112190607", "reserves": [ - "2864417030636875880025227", - "2850763245191150556188894" + "2761174160654884069965300", + "2232088694119344517005260" ], - "LPTokenSupply": "5660372097251529771859546" + "LPTokenSupply": "4968210035470341953868240" }, { "type": "redeemMasset", - "inputQty": "21215829432328137998336", + "inputQty": "3286829919909569363968", "expectedQtys": [ - "10729775271249612773305", - "10678629768388977248294" - ], - "redemptionFee": "12729497659396882799", - "reserves": [ - "2853687255365626267251922", - "2840084615422761578940600" - ], - "LPTokenSupply": "5639157540768967573549489" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "50312343924281", - "551517677202157" + "1825620188087681412697", + "1475801939498110376687" ], - "expectedQty": "596065178770635", - "swapFee": "357853819554", + "redemptionFee": "1972097951945741618", "reserves": [ - "2853687255315313923327641", - "2840084614871243901738443" + "2759348540466796388552603", + "2230612892179846406628573" ], - "LPTokenSupply": "5639157540172580326341254" + "LPTokenSupply": "4964923402760227579078433" }, { "type": "mint", "inputIndex": 1, - "inputQty": "159177378303982370816", - "expectedQty": "157653043693859338203", - "reserves": [ - "2853687255315313923327641", - "2840243792249547884109259" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "7165344400876544983040", - "expectedQty": "7230481247685135068941", - "swapFee": "4299206640525926989", - "reserves": [ - "2846456774067628788258700", - "2840243792249547884109259" - ], - "LPTokenSupply": "5632150278736061693289115" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "6153937176863919046656", - "expectedQty": "6094839051726142755730", + "inputQty": "1385103216788182663168", + "expectedQty": "1379245411449402429027", "reserves": [ - "2852610711244492707305356", - "2840243792249547884109259" + "2759348540466796388552603", + "2231997995396634589291741" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "11195560161523491930112", - "2841708437806749057024" + "12255023932519034880", + "7994467210614624256" ], - "expectedQty": "13902456017238638995190", + "expectedQty": "20146380061866045620", + "swapFee": "12095085088172530", "reserves": [ - "2863806271406016199235468", - "2843085500687354633166283" + "2759336285442863869517723", + "2231990000929423974667485" ], - "LPTokenSupply": "5652147573805026475040035" + "LPTokenSupply": "4966282490906038536106562" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "45837284337658831568896", - "expectedQty": "46253340978572571615414", - "swapFee": "27502370602595298941", + "inputQty": "2090878337906310119424", + "expectedQty": "2101503536187796999492", + "swapFee": "1254527002743786071", "reserves": [ - "2817552930427443627620054", - "2843085500687354633166283" + "2757234781906676072518231", + "2231990000929423974667485" ], - "LPTokenSupply": "5606313039704427903001033" + "LPTokenSupply": "4964191738020832500365745" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4482821655910443646976", - "expectedQty": "4523667265623475031052", - "swapFee": "2689692993546266188", + "type": "mintMulti", + "inputQtys": [ + "162281838515274514432", + "1151191857705094348800" + ], + "expectedQty": "1307682006353546024389", "reserves": [ - "2817552930427443627620054", - "2838561833421731158135231" + "2757397063745191347032663", + "2233141192787129069016285" ], - "LPTokenSupply": "5601830487017816813980675" + "LPTokenSupply": "4965499420027186046390134" }, { "type": "mintMulti", "inputQtys": [ - "616853393315333406720", - "100294890208859963392" + "133934039328699727872", + "86056646160061792256" ], - "expectedQty": "710277982499305888740", + "expectedQty": "218869407312869669556", "reserves": [ - "2818169783820758961026774", - "2838662128311940018098623" + "2757530997784520046760535", + "2233227249433289130808541" ], - "LPTokenSupply": "5602540765000316119869415" + "LPTokenSupply": "4965718289434498916059690" }, { "type": "mintMulti", "inputQtys": [ - "1350102735578833092608", - "2464837244686863171584" + "93964851018280192", + "5503474300957281" ], - "expectedQty": "3778299433145412711050", + "expectedQty": "98914057780895504", "reserves": [ - "2819519886556337794119382", - "2841126965556626881270207" + "2757531091749371065040727", + "2233227254936763431765822" ], - "LPTokenSupply": "5606319064433461532580465" + "LPTokenSupply": "4965718388348556696955194" }, { - "type": "mintMulti", - "inputQtys": [ - "294373484118711533568", - "214870246043841396736" + "type": "redeem", + "inputIndex": 0, + "inputQty": "12347182589409167933440", + "expectedQty": "12409810254928240175636", + "swapFee": "7408309553645500760", + "reserves": [ + "2745121281494442824865091", + "2233227254936763431765822" ], - "expectedQty": "504358323119401291196", + "LPTokenSupply": "4953371946590102893571830" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "5937842074865422565376", + "expectedQty": "5959600213442790711847", + "swapFee": "3562705244919253539", "reserves": [ - "2819814260040456505652950", - "2841341835802670722666943" + "2745121281494442824865091", + "2227267654723320641053975" ], - "LPTokenSupply": "5606823422756580933871661" + "LPTokenSupply": "4947434460785761962931807" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "3493542567581349576704", + "expectedQty": "3473808056454843633692", + "reserves": [ + "2748614824062024174441795", + "2227267654723320641053975" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "236809143913800320", - "205402955410359328" + "4677609057552090112", + "8980023834204820480" ], - "expectedQty": "437968815276405660", + "expectedQty": "13593130744386354210", + "swapFee": "8160774911578759", "reserves": [ - "2819814496849600419453270", - "2841342041205626133026271" + "2748610146452966622351683", + "2227258674699486436233495" ], - "LPTokenSupply": "5606823860725396210277321" + "LPTokenSupply": "4950894668366774999790404" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "124331709336543363072", - "111844850693593186304" + "263503014672046227456", + "2003088813663923994624" ], - "expectedQty": "233910200613495725698", + "expectedQty": "2256613727933333410027", + "swapFee": "1354781105423253998", "reserves": [ - "2819938828558936962816342", - "2841453886056319726212575" + "2748346643438294576124227", + "2225255585885822512238871" ], - "LPTokenSupply": "5607057770926009706003019" + "LPTokenSupply": "4948636835335846785451777" }, { "type": "mint", "inputIndex": 0, - "inputQty": "308411534746548999028736", - "expectedQty": "305406532369035409915744", + "inputQty": "243782110067584204800", + "expectedQty": "242403832385765117611", "reserves": [ - "3128350363305485961845078", - "2841453886056319726212575" + "2748590425548362160329027", + "2225255585885822512238871" ] }, { "type": "redeemBassets", "inputQtys": [ - "25435814442685", - "17397852653204" + "2178888657809768972288", + "5423579411825828036608" ], - "expectedQty": "42420356428748", - "swapFee": "25467494353", + "expectedQty": "7567185192716575989680", + "swapFee": "4543036937792621166", "reserves": [ - "3128350363280050147402393", - "2841453886038921873559371" + "2746411536890552391356739", + "2219832006473996684202263" ], - "LPTokenSupply": "5912464303252601838745096" + "LPTokenSupply": "4941307965242271961220657" }, { - "type": "mintMulti", - "inputQtys": [ - "18910967560659320832", - "5113387766438581248" - ], - "expectedQty": "23789597845517376446", + "type": "redeem", + "inputIndex": 1, + "inputQty": "194330995681864651374592", + "expectedQty": "195004334501318385362197", + "swapFee": "116598597409118790824", "reserves": [ - "3128369274247610806723225", - "2841458999426688312140619" + "2746411536890552391356739", + "2024827671972678298840066" ], - "LPTokenSupply": "5912488092850447356121542" + "LPTokenSupply": "4746988629420148221725147" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "208378075355097", - "expectedQty": "206445764241541", + "inputQty": "55468740026571646042112", + "outputIndex": 0, + "expectedQty": "55575517984351391970353", + "swapFee": "0", "reserves": [ - "3128369274247610806723225", - "2841458999635066387495716" - ] + "2690836018906200999386386", + "2080296411999249944882178" + ], + "LPTokenSupply": "4746988629420148221725147", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "196441344232404396539904", - "expectedQty": "194596987827081756634222", + "inputQty": "16037392393903996", + "expectedQty": "15971998886000318", "reserves": [ - "3128369274247610806723225", - "3037900343867470784035620" + "2690836018906200999386386", + "2080296428036642338786174" ] }, { "type": "mintMulti", "inputQtys": [ - "14314974203930940014592", - "5379114449078119825408" + "26722630037541228544", + "15523971695689572352" ], - "expectedQty": "19504190469585661430243", + "expectedQty": "42027770117375765335", "reserves": [ - "3142684248451541746737817", - "3043279458316548903861028" + "2690862741536238540614930", + "2080311952008338028358526" ], - "LPTokenSupply": "6126589271353560538427548" + "LPTokenSupply": "4747030673162264483490800" }, { - "type": "redeemBassets", - "inputQtys": [ - "14865673392795283456", - "15306156601315395584" + "type": "redeemMasset", + "inputQty": "508131429468661927116", + "expectedQtys": [ + "287862379303240950388", + "222547043724796025991" ], - "expectedQty": "29882330760309511967", - "swapFee": "17940162553717937", + "redemptionFee": "304878857681197156", "reserves": [ - "3142669382778148951454361", - "3043264152159947588465444" + "2690574879156935299664542", + "2080089404964613232332535" ], - "LPTokenSupply": "6126559372876653930569436" + "LPTokenSupply": "4746522572220681589683399" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "13813699803930333020160", - "expectedQty": "13940563000074654452892", - "swapFee": "8288219882358199812", + "inputQty": "368782171325384000", + "outputIndex": 1, + "expectedQty": "367842363502977584", + "swapFee": "293308603050079", "reserves": [ - "3128728819778074297001469", - "3043264152159947588465444" + "2690575247939106625048542", + "2080089037122249729354951" ], - "LPTokenSupply": "6112746501894711833369257" + "LPTokenSupply": "4746522572250012449988406", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "19050396805375801163776", - "expectedQty": "19221505206623725165851", - "swapFee": "11430238083225480698", + "inputIndex": 0, + "inputQty": "12418433240541398302720", + "expectedQty": "12483549715092141700311", + "swapFee": "7451059944324838981", "reserves": [ - "3128728819778074297001469", - "3024042646953323863299593" + "2678091698224014483348231", + "2080089037122249729354951" ], - "LPTokenSupply": "6093697248113144354753550" + "LPTokenSupply": "4734104884115465484169584" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10013849957116887957504", - "expectedQty": "9918786508126034142759", + "type": "redeemBassets", + "inputQtys": [ + "9813142082507352064", + "272467702889196126208" + ], + "expectedQty": "281107433191468367628", + "swapFee": "168765719346488913", "reserves": [ - "3128728819778074297001469", - "3034056496910440751257097" - ] + "2678081885081931975996167", + "2079816569419360533228743" + ], + "LPTokenSupply": "4733823624793126603961933" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "4936840715932667904", + "8241532857242742784" + ], + "expectedQty": "13115934743216538206", + "swapFee": "7874285417180231", + "reserves": [ + "2678076948241216043328263", + "2079808327886503290485959" + ], + "LPTokenSupply": "4733810501771526511961518" }, { "type": "mint", "inputIndex": 1, - "inputQty": "576778846939138926575616", - "expectedQty": "571132698156122739916468", + "inputQty": "29445401146659516", + "expectedQty": "29324756866112776", "reserves": [ - "3128728819778074297001469", - "3610835343849579677832713" + "2678076948241216043328263", + "2079808357331904437145475" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15964166918875404828672", - "expectedQty": "16116564058963778255543", - "swapFee": "9578500151325242897", + "type": "swap", + "inputIndex": 0, + "inputQty": "1650596010165124352", + "outputIndex": 1, + "expectedQty": "1646442943263805688", + "swapFee": "1312807935366472", "reserves": [ - "3128728819778074297001469", - "3594718779790615899577170" + "2678078598837226208452615", + "2079806710888961173339787" ], - "LPTokenSupply": "6658785523708532856508394" + "LPTokenSupply": "4733810531227564171610941", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "591682904178714521", - "expectedQtys": [ - "277844153212920180", - "319226002936345828" - ], - "redemptionFee": "355009742507228", + "type": "redeem", + "inputIndex": 0, + "inputQty": "57376870849983610880", + "expectedQty": "57677413482236166347", + "swapFee": "34426122509990166", "reserves": [ - "3128728541933921084081289", - "3594718460564612963231342" + "2678020921423743972286268", + "2079806710888961173339787" ], - "LPTokenSupply": "6658784932061129652044595" + "LPTokenSupply": "4733753157799326438999077" }, { "type": "redeemMasset", - "inputQty": "23886378606929989599232", + "inputQty": "724183317799536322150", "expectedQtys": [ - "11216634097103383892406", - "12887229145591882976686" + "409445609975292093206", + "317983971132648552028" ], - "redemptionFee": "14331827164157993759", + "redemptionFee": "434509990679721793", "reserves": [ - "3117511907836817700188883", - "3581831231419021080254656" + "2677611475813768680193062", + "2079488726917828524787759" ], - "LPTokenSupply": "6634899986636916078244738" + "LPTokenSupply": "4733029017932525970649106" }, { - "type": "redeemMasset", - "inputQty": "1168386689221882019840", - "expectedQtys": [ - "548655435393000150692", - "630371665570335454157" - ], - "redemptionFee": "701032013533129211", + "type": "swap", + "inputIndex": 0, + "inputQty": "652880937443315154944", + "outputIndex": 1, + "expectedQty": "651237021648958726738", + "swapFee": "519271173143533120", "reserves": [ - "3116963252401424700038191", - "3581200859753450744800499" + "2678264356751211995348006", + "2078837489896179566061021" ], - "LPTokenSupply": "6633731670050895549537819" + "LPTokenSupply": "4733029069859643285002418", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "637471596664308736", + "inputQty": "2736102239479919017984", "outputIndex": 1, - "expectedQty": "637552227272574157", - "swapFee": "505321871797410", + "expectedQty": "2729184635874545915068", + "swapFee": "2176161978051399978", "reserves": [ - "3116963889873021364346927", - "3581200222201223472226342" + "2681000458990691914365990", + "2076108305260305020145953" ], - "LPTokenSupply": "6633731670101427736717560", + "LPTokenSupply": "4733029287475841090142415", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "383808427912991464226816", - "expectedQty": "380225516945178564992484", + "type": "redeemBassets", + "inputQtys": [ + "35836408366588061810688", + "19054907088210822692864" + ], + "expectedQty": "54605058298101268127632", + "swapFee": "32782704601621733916", "reserves": [ - "3500772317786012828573743", - "3581200222201223472226342" - ] + "2645164050624103852555302", + "2057053398172094197453089" + ], + "LPTokenSupply": "4678394724743598362454257" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "19224582778903769088", - "expectedQty": "19397883680786955995", - "swapFee": "11534749667342261", + "inputIndex": 1, + "inputQty": "17875988495499813453824", + "expectedQty": "17938668107334698636627", + "swapFee": "10725593097299888072", "reserves": [ - "3500752919902332041617748", - "3581200222201223472226342" + "2645164050624103852555302", + "2039114730064759498816462" ], - "LPTokenSupply": "7013937963617302364675182" + "LPTokenSupply": "4660519808807408278989240" }, { "type": "redeemMasset", - "inputQty": "5493734623831361945", + "inputQty": "210461693682525195468", "expectedQtys": [ - "2740353322303718495", - "2803326641806452546" + "119379748518041709004", + "92027941940739176142" ], - "redemptionFee": "3296240774298817", + "redemptionFee": "126277016209515117", "reserves": [ - "3500750179549009737899253", - "3581197418874581665773796" + "2645044670875585810846298", + "2039022702122818759640320" ], - "LPTokenSupply": "7013932470212302610743118" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "55332593165370089472", - "expectedQty": "54797099927322571655", - "reserves": [ - "3500750179549009737899253", - "3581252751467747035863268" - ] + "LPTokenSupply": "4660309359741427374745283" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "159574766367155286966272", - "112339522940281886343168" + "15127092770097", + "21347274374827" ], - "expectedQty": "269307794518029371452181", - "swapFee": "161681685722250973455", + "expectedQty": "36299009811530", "reserves": [ - "3341175413181854450932981", - "3468913228527465149520100" + "2645044670890712903616395", + "2039022702144166034015147" ], - "LPTokenSupply": "6744533959277050535986481" + "LPTokenSupply": "4660309359777726384556813" }, { "type": "redeemMasset", - "inputQty": "4143289602996286416486", + "inputQty": "15663248500048789504", "expectedQtys": [ - "2051313161198088294881", - "2129737736204644676960" + "8884632066717881504", + "6849020995223982288" ], - "redemptionFee": "2485973761797771849", + "redemptionFee": "9397949100029273", "reserves": [ - "3339124100020656362638100", - "3466783490791260504843140" + "2645035786258646185734891", + "2039015853123170810032859" ], - "LPTokenSupply": "6740390918271430429347179" + "LPTokenSupply": "4660293697469021245770236" }, { - "type": "mintMulti", - "inputQtys": [ - "24927855020180484096", - "4738983488240386048" + "type": "redeemMasset", + "inputQty": "493364441501599164006", + "expectedQtys": [ + "279850092749620327790", + "215731968005467023212" ], - "expectedQty": "29383806165840658100", + "redemptionFee": "296018664900959498", "reserves": [ - "3339149027875676543122196", - "3466788229774748745229188" + "2644755936165896565407101", + "2038800121155165343009647" ], - "LPTokenSupply": "6740420302077596270005279" + "LPTokenSupply": "4659800362629386136702179" }, { - "type": "redeemBassets", - "inputQtys": [ - "43051821336830890999808", - "4286326577613139607552" - ], - "expectedQty": "46888095835972059996093", - "swapFee": "28149747349993231936", + "type": "redeem", + "inputIndex": 0, + "inputQty": "350473819272387952640", + "expectedQty": "352320904531714545708", + "swapFee": "210284291563432771", "reserves": [ - "3296097206538845652122388", - "3462501903197135605621636" + "2644403615261364850861393", + "2038800121155165343009647" ], - "LPTokenSupply": "6693506871469009216100442" + "LPTokenSupply": "4659449909838542905092816" }, { "type": "mintMulti", "inputQtys": [ - "163002097295913156608", - "865525910834326274048" - ], - "expectedQty": "1018512516765296255835", - "reserves": [ - "3296260208636141565278996", - "3463367429107969931895684" + "87121027488550037225472", + "91417805669119633129472" ], - "LPTokenSupply": "6694525383985774512356277" - }, - { - "type": "redeemMasset", - "inputQty": "2947768500853", - "expectedQtys": [ - "1450555713725", - "1524093091880" - ], - "redemptionFee": "1768661100", + "expectedQty": "177656830077837873394237", "reserves": [ - "3296260208634691009565271", - "3463367429106445838803804" + "2731524642749914888086865", + "2130217926824284976139119" ], - "LPTokenSupply": "6694525383982826920721534" + "LPTokenSupply": "4837106739916380778487053" }, { "type": "mintMulti", "inputQtys": [ - "31565472977845798043648", - "9588540576273656709120" + "9937385332085801091072", + "19549523850896080896000" ], - "expectedQty": "40761134593418397473190", + "expectedQty": "29348503047734836625117", "reserves": [ - "3327825681612536807608919", - "3472955969682719495512924" + "2741462028082000689177937", + "2149767450675181057035119" ], - "LPTokenSupply": "6735286518576245318194724" + "LPTokenSupply": "4866455242964115615112170" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "642503525619257216", - "outputIndex": 1, - "expectedQty": "642171171419072575", - "swapFee": "509126244993323", + "inputQty": "560492934027245060096", + "expectedQty": "557249440357156725164", "reserves": [ - "3327826324116062426866135", - "3472955327511548076440349" - ], - "LPTokenSupply": "6735286518627157942694056", - "hardLimitError": false, - "insufficientLiquidityError": false + "2742022521016027934238033", + "2149767450675181057035119" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "11869787299154317312", - "outputIndex": 1, - "expectedQty": "11863647006151614137", - "swapFee": "9405738572347920", + "type": "redeemMasset", + "inputQty": "4923222406499975089356", + "expectedQtys": [ + "2772026368048141057183", + "2173290705225538886281" + ], + "redemptionFee": "2953933443899985053", "reserves": [ - "3327838193903361581183447", - "3472943463864541924826212" + "2739250494647979793180850", + "2147594159969955518148838" ], - "LPTokenSupply": "6735286519567731799928848", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4862089565391317186746483" }, { - "type": "redeemBassets", - "inputQtys": [ - "6736127723715292037120", - "4784774425567529271296" + "type": "redeemMasset", + "inputQty": "31202905450744787", + "expectedQtys": [ + "17568843497644940", + "13774112943189288" ], - "expectedQty": "11410259835501930309537", - "swapFee": "6850266060937720818", + "redemptionFee": "18721743270446", "reserves": [ - "3321102066179646289146327", - "3468158689438974395554916" + "2739250477079136295535910", + "2147594146195842574959550" ], - "LPTokenSupply": "6723870094492775025670573" + "LPTokenSupply": "4862089534190283910328740" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "30661671965579200692224", - "expectedQty": "30945182149108939078291", - "swapFee": "18397003179347520415", + "inputQty": "28245098426891027611648", + "expectedQty": "28127300972823193254914", "reserves": [ - "3321102066179646289146327", - "3437213507289865456476625" - ], - "LPTokenSupply": "6693210262227513759730390" + "2739250477079136295535910", + "2175839244622733602571198" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "10495731475243767808", - "4608440928853112320" + "type": "redeemMasset", + "inputQty": "1174595091817609927065", + "expectedQtys": [ + "657553594845772623451", + "522307444711583213243" ], - "expectedQty": "14959361442205284054", + "redemptionFee": "704757055090565956", "reserves": [ - "3321112561911121532914135", - "3437218115730794309588945" + "2738592923484290522912459", + "2175316937178022019357955" ], - "LPTokenSupply": "6693225221588955965014444" + "LPTokenSupply": "4889042310546995002713184" }, { - "type": "redeemBassets", + "type": "redeemMasset", + "inputQty": "2715396543669838233", + "expectedQtys": [ + "1520114465661283359", + "1207456104646316175" + ], + "redemptionFee": "1629237926201902", + "reserves": [ + "2738591403369824861629100", + "2175315729721917373041780" + ], + "LPTokenSupply": "4889039595313375125495141" + }, + { + "type": "redeemMasset", + "inputQty": "25204814535691699", + "expectedQtys": [ + "14109984518034524", + "11207831599283046" + ], + "redemptionFee": "15122888721415", + "reserves": [ + "2738591389259840343594576", + "2175315718514085773758734" + ], + "LPTokenSupply": "4889039570110072878675583" + }, + { + "type": "mintMulti", "inputQtys": [ - "17382387212526265827328", - "125285809984478264688640" + "1370512444442960640", + "993518397637207040" ], - "expectedQty": "141287450969190506672511", - "swapFee": "84823364600274468684", + "expectedQty": "2351985119929182656", "reserves": [ - "3303730174698595267086807", - "3311932305746316044900305" + "2738592759772284786555216", + "2175316712032483410965774" ], - "LPTokenSupply": "6551861429591625211320116" + "LPTokenSupply": "4889041922095192807858239" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "143162761410474793762816", - "expectedQty": "141771020499084536202444", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8637700616533457240064", + "expectedQty": "8682374397682522375040", + "swapFee": "5182620369920074344", "reserves": [ - "3303730174698595267086807", - "3455095067156790838663121" - ] + "2729910385374602264180176", + "2175316712032483410965774" + ], + "LPTokenSupply": "4880404739740696342625609" }, { "type": "swap", "inputIndex": 1, - "inputQty": "6456054323881826", + "inputQty": "2536597495110909296640", "outputIndex": 0, - "expectedQty": "6454137678127258", + "expectedQty": "2540478461532413508134", "swapFee": "0", "reserves": [ - "3303730168244457588959549", - "3455095073612845162544947" + "2727369906913069850672042", + "2177853309527594320262414" ], - "LPTokenSupply": "6693632450090709747522560", + "LPTokenSupply": "4880404739740696342625609", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "1571003468224126361", + "inputQty": "185405091508632577638", + "expectedQtys": [ + "103549785962149074512", + "82686343164131833978" + ], + "redemptionFee": "111243054905179546", + "reserves": [ + "2727266357127107701597530", + "2177770623184430188428436" + ], + "LPTokenSupply": "4880219345773493200565925" + }, + { + "type": "redeemMasset", + "inputQty": "242033967389351713177", "expectedQtys": [ - "774924151891099570", - "810428359240152967" + "135177334284447801329", + "107941502213651122486" ], - "redemptionFee": "942602080934475", + "redemptionFee": "145220380433611027", "reserves": [ - "3303729393320305697859979", - "3455094263184485922391980" + "2727131179792823253796201", + "2177662681682216537305950" ], - "LPTokenSupply": "6693630879181501731489646" + "LPTokenSupply": "4879977326328141892213850" }, { "type": "swap", "inputIndex": 0, - "inputQty": "97266610210387236225024", + "inputQty": "757155380228392279343104", "outputIndex": 1, - "expectedQty": "97199109159347744567045", - "swapFee": "77070639490227764853", + "expectedQty": "753287432671294590264665", + "swapFee": "602010053612553871099", "reserves": [ - "3400996003530692934085003", - "3357895154025138177824935" + "3484286560021215533139305", + "1424375249010921947041285" ], - "LPTokenSupply": "6693638586245450754266131", + "LPTokenSupply": "4880037527333503147600959", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeemBassets", + "inputQtys": [ + "113299183664445159112704", + "75442156602166284910592" + ], + "expectedQty": "187811944018815431810191", + "swapFee": "112754819302870981675", + "reserves": [ + "3370987376356770374026601", + "1348933092408755662130693" + ], + "LPTokenSupply": "4692124103977315131907259" + }, + { + "type": "redeemMasset", + "inputQty": "1421232150121811856588", + "expectedQtys": [ + "1020450643982797590117", + "408343161559361646276" + ], + "redemptionFee": "852739290073087113", + "reserves": [ + "3369966925712787576436484", + "1348524749247196300484417" + ], + "LPTokenSupply": "4690702957101122327359382" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "81924367832192777191424", - "expectedQty": "81133632594407098170919", + "inputQty": "13936989523069355687936", + "expectedQty": "13925877335274100944195", + "swapFee": "8362193713841613412", "reserves": [ - "3400996003530692934085003", - "3439819521857330955016359" - ] + "3369966925712787576436484", + "1334598871911922199540222" + ], + "LPTokenSupply": "4676766803797424355832787" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "2816162008684188672", + "expectedQty": "2838168956130954420", + "swapFee": "1689697205210513", + "reserves": [ + "3369964087543831445482064", + "1334598871911922199540222" + ], + "LPTokenSupply": "4676763987804385392165166" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "84258063981356695552", + "117400687190415687680" + ], + "expectedQty": "200984999738486257528", + "swapFee": "120663397881820847", + "reserves": [ + "3369879829479850088786512", + "1334481471224731783852542" + ], + "LPTokenSupply": "4676562894207588812268874" }, { "type": "mintMulti", "inputQtys": [ - "114218584099695443968", - "3070276873951943065600" + "56915679609397266350080", + "6452686058535601045504" ], - "expectedQty": "3153637872953480395649", + "expectedQty": "62893713569317087762778", "reserves": [ - "3401110222114792629528971", - "3442889798731282898081959" + "3426795509089247355136592", + "1340934157283267384898046" ], - "LPTokenSupply": "6777925856712811332832699" + "LPTokenSupply": "4739456607776905900031652" }, { - "type": "redeemMasset", - "inputQty": "3095750441497", - "expectedQtys": [ - "1552491322722", - "1571562280712" + "type": "redeemBassets", + "inputQtys": [ + "160926855049763487744", + "110032701323509547008" ], - "redemptionFee": "1857450264", + "expectedQty": "269650052387321920161", + "swapFee": "161887163730631531", "reserves": [ - "3401110222113240138206249", - "3442889798729711335801247" + "3426634582234197591648848", + "1340824124581943875351038" ], - "LPTokenSupply": "6777925856709715768136228" + "LPTokenSupply": "4739186812026071220543112" }, { "type": "redeemBassets", "inputQtys": [ - "58836474942017914273792", - "35043327470068379418624" + "31614466229053700440064", + "19458123396439781408768" ], - "expectedQty": "92974720942875924791379", - "swapFee": "55818323559861471757", + "expectedQty": "50814713140510869357904", + "swapFee": "30507132163604684425", "reserves": [ - "3342273747171222223932457", - "3407846471259642956382623" + "3395020116005143891208784", + "1321366001185504093942270" ], - "LPTokenSupply": "6684900899275635968020266" + "LPTokenSupply": "4688344642466613106969224" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "15195866216976537600", - "expectedQty": "15333917490264189203", - "swapFee": "9117519730185922", + "inputQty": "1239441267299603447808", + "expectedQty": "1249229939191689626570", + "swapFee": "743664760379762068", "reserves": [ - "3342258413253731959743254", - "3407846471259642956382623" + "3393770886065952201582214", + "1321366001185504093942270" ], - "LPTokenSupply": "6684885704321170964501258" + "LPTokenSupply": "4687105275565789541497622" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "14204080487099290091520", - "expectedQty": "14065848831845720259896", + "type": "redeemBassets", + "inputQtys": [ + "49610950731025361141760", + "15277200438479191801856" + ], + "expectedQty": "64476679425916905580913", + "swapFee": "38709233195467423802", "reserves": [ - "3342258413253731959743254", - "3422050551746742246474143" - ] + "3344159935334926840440454", + "1306088800747024902140414" + ], + "LPTokenSupply": "4622593757829996715235286" }, { - "type": "redeemMasset", - "inputQty": "7139777589639975744307", - "expectedQtys": [ - "3560059173361105076797", - "3645051026019080827585" + "type": "redeemBassets", + "inputQtys": [ + "18048360061238213869568", + "7136653286804374421504" ], - "redemptionFee": "4283866553783985446", + "expectedQty": "25035794745528078732916", + "swapFee": "15030495144403489333", "reserves": [ - "3338698354080370854666457", - "3418405500720723165646558" + "3326111575273688626570886", + "1298952147460220527718910" ], - "LPTokenSupply": "6691812203950032087415391" + "LPTokenSupply": "4597544435638838673361969" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "905224501823179", - "expectedQty": "896548496199836", + "type": "mintMulti", + "inputQtys": [ + "619950391372103155712", + "13902506814337749876736" + ], + "expectedQty": "14521892951135960387102", "reserves": [ - "3338698354985595356489636", - "3418405500720723165646558" - ] + "3326731525665060729726598", + "1312854654274558277595646" + ], + "LPTokenSupply": "4612066328589974633749071" + }, + { + "type": "redeemMasset", + "inputQty": "17742628497089671987", + "expectedQtys": [ + "12790264144038111867", + "5047524178418492696" + ], + "redemptionFee": "10645577098253803", + "reserves": [ + "3326718735400916691614731", + "1312849606750379859102950" + ], + "LPTokenSupply": "4612048587026035253902464" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "189638598463438060519424", - "outputIndex": 0, - "expectedQty": "189538048788413130000900", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "46651713628618629120", + "outputIndex": 1, + "expectedQty": "46210958061923661021", + "swapFee": "37008575304576913", "reserves": [ - "3149160306197182226488736", - "3608044099184161226165982" + "3326765387114545310243851", + "1312803395792317935441929" ], - "LPTokenSupply": "6691812204846580583615227", + "LPTokenSupply": "4612048590726892784360155", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "5647281432822275899392", + "inputQty": "971514313358239072256", "expectedQtys": [ - "2656010579104415106374", - "3043034449040321253946" - ], - "redemptionFee": "3388368859693365539", - "reserves": [ - "3146504295618077811382362", - "3605001064735120904912036" + "700352766696025330975", + "276372206447821234821" ], - "LPTokenSupply": "6686165262250644277052388" - }, - { - "type": "mintMulti", - "inputQtys": [ - "128163433816328471838720", - "111412235263424847675392" - ], - "expectedQty": "237271408074094498346893", + "redemptionFee": "582908588014943443", "reserves": [ - "3274667729434406283221082", - "3716413299998545752587428" + "3326065034347849284912876", + "1312527023585870114207108" ], - "LPTokenSupply": "6923436670324738775399281" + "LPTokenSupply": "4611077134704393346782243" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2475452462716308946944", - "expectedQty": "2450529167797381318681", + "inputQty": "586057748751335751680", + "expectedQty": "586218064708167947457", "reserves": [ - "3274667729434406283221082", - "3718888752461262061534372" + "3326065034347849284912876", + "1313113081334621449958788" ] }, { "type": "redeemMasset", - "inputQty": "274628064015510824550", + "inputQty": "37259348856324266393", "expectedQtys": [ - "129770532430732668952", - "147374394391126575912" + "26856396867902429959", + "10602765033327569034" ], - "redemptionFee": "164776838409306494", + "redemptionFee": "22355609313794559", "reserves": [ - "3274537958901975550552130", - "3718741378066870934958460" + "3326038177950981382482917", + "1313102478569588122389754" ], - "LPTokenSupply": "6925612587906204486824061" + "LPTokenSupply": "4611626095655806121842762" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "553872366130030968832", - "outputIndex": 1, - "expectedQty": "553898223985858071970", - "swapFee": "439008255903653245", + "inputQty": "186158385674052628905984", + "expectedQty": "184575638877680213698238", + "reserves": [ + "3512196563625034011388901", + "1313102478569588122389754" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "207083428183064313856", + "outputIndex": 0, + "expectedQty": "209074397238822411602", + "swapFee": "0", "reserves": [ - "3275091831268105581520962", - "3718187479842885076886490" + "3511987489227795188977299", + "1313309561997771186703610" ], - "LPTokenSupply": "6925612631807030077189385", + "LPTokenSupply": "4796201734533486335541000", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "31557442233102644543488", - "34907031094434363080704" + "4394850517227", + "17906969156763" ], - "expectedQty": "65821726415343213741144", + "expectedQty": "22280147466989", "reserves": [ - "3306649273501208226064450", - "3753094510937319439967194" + "3511987489232190039494526", + "1313309562015678155860373" ], - "LPTokenSupply": "6991434358222373290930529" + "LPTokenSupply": "4796201734555766483007989" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "34068362477004390400", - "expectedQty": "33753862981964248323", + "inputIndex": 1, + "inputQty": "1034821702979369172992", + "expectedQty": "1035754400739358672818", "reserves": [ - "3306683341863685230454850", - "3753094510937319439967194" + "3511987489232190039494526", + "1314344383718657525033365" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1327688610245790662656", - "747214605698879324160" - ], - "expectedQty": "2055123910275783034966", + "type": "redeem", + "inputIndex": 0, + "inputQty": "70027691358843543552", + "expectedQty": "70594179800609129925", + "swapFee": "42016614815306126", "reserves": [ - "3308011030473931021117506", - "3753841725543018319291354" + "3511916895052389430364601", + "1314344383718657525033365" ], - "LPTokenSupply": "6993523235995631038213818" + "LPTokenSupply": "4797167465466808479667867" }, { - "type": "redeemMasset", - "inputQty": "2880562957240858836992", - "expectedQtys": [ - "1361719458811475724523", - "1545242526666556104825" + "type": "mintMulti", + "inputQtys": [ + "3517449251596391936", + "4740856367462345728" ], - "redemptionFee": "1728337774344515302", + "expectedQty": "8232234970555763765", "reserves": [ - "3306649311015119545392983", - "3752296483016351763186529" + "3511920412501641026756537", + "1314349124575024987379093" ], - "LPTokenSupply": "6990642845872167613828356" + "LPTokenSupply": "4797175697701779035431632" }, { "type": "mintMulti", "inputQtys": [ - "770717837732664049664", - "3580578626646558375936" + "585041175916050120704", + "1903826856604880338944" ], - "expectedQty": "4308131847971057761279", + "expectedQty": "2485518088084893435517", "reserves": [ - "3307420028852852209442647", - "3755877061642998321562465" + "3512505453677557076877241", + "1316252951431629867718037" ], - "LPTokenSupply": "6994950977720138671589635" + "LPTokenSupply": "4799661215789863928867149" }, { - "type": "redeemMasset", - "inputQty": "123357617090471264256", - "expectedQtys": [ - "58292139216306217238", - "66196040009034300730" - ], - "redemptionFee": "74014570254282758", + "type": "redeem", + "inputIndex": 0, + "inputQty": "299641949775793330585600", + "expectedQty": "302003660632737709257957", + "swapFee": "179785169865475998351", "reserves": [ - "3307361736713635903225409", - "3755810865602989287261735" + "3210501793044819367619284", + "1316252951431629867718037" ], - "LPTokenSupply": "6994827627504505225753654" + "LPTokenSupply": "4500037244531057145881384" }, { - "type": "redeemMasset", - "inputQty": "1985899590846831080243", - "expectedQtys": [ - "938428767124899836840", - "1065671444716023257725" - ], - "redemptionFee": "1191539754508098648", + "type": "redeem", + "inputIndex": 0, + "inputQty": "7634949195018547200", + "expectedQty": "7693855036418412488", + "swapFee": "4580969517011128", "reserves": [ - "3306423307946511003388569", - "3754745194158273264004010" + "3210494099189782949206796", + "1316252951431629867718037" ], - "LPTokenSupply": "6992841847067633845483275" + "LPTokenSupply": "4500029610039959079035296" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "83052652254306238464", - "174089875603318472704" + "56764430116654006927360", + "48534765671601179459584" ], - "expectedQty": "254622951630694642277", + "expectedQty": "104825092131126355398104", + "swapFee": "62932814967656407083", "reserves": [ - "3306506360598765309627033", - "3754919284033876582476714" + "3153729669073128942279436", + "1267718185760028688258453" ], - "LPTokenSupply": "6993096470019264540125552" + "LPTokenSupply": "4395147878375361832870816" }, { "type": "redeemMasset", - "inputQty": "2299228432529362622873", + "inputQty": "2202005435448259772416", "expectedQtys": [ - "1086478932635825541043", - "1233822122487021189731" + "1579096619127862437520", + "634756212864911134473" ], - "redemptionFee": "1379537059517617573", + "redemptionFee": "1321203261268955863", "reserves": [ - "3305419881666129484085990", - "3753685461911389561286983" + "3152150572454001079841916", + "1267083429547163777123980" ], - "LPTokenSupply": "6990797379540441129264436" + "LPTokenSupply": "4392946005060239699993986" }, { - "type": "redeemBassets", - "inputQtys": [ - "1633639970432874971136", - "7297596910487876927488" - ], - "expectedQty": "8842685653877002045903", - "swapFee": "5308796670328398266", + "type": "mint", + "inputIndex": 1, + "inputQty": "23868116157080080384", + "expectedQty": "23868696423849502626", "reserves": [ - "3303786241695696609114854", - "3746387865000901684359495" - ], - "LPTokenSupply": "6981949915969560831660092" + "3152150572454001079841916", + "1267107297663320857204364" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "70210004288917452357632", - "expectedQty": "69501232623905477865896", + "inputQty": "214734873350959269937152", + "expectedQty": "214570481315428593281241", "reserves": [ - "3303786241695696609114854", - "3816597869289819136717127" + "3152150572454001079841916", + "1481842171014280127141516" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "13312237540567408443392", - "expectedQty": "13190075140082192665127", + "inputIndex": 1, + "inputQty": "6012460000338440", + "expectedQty": "6003745543124903", "reserves": [ - "3317098479236264017558246", - "3816597869289819136717127" + "3152150572454001079841916", + "1481842177026740127479956" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1192952966616605261824", - "1417114572647040548864" - ], - "expectedQty": "2584782538233377989704", + "type": "redeem", + "inputIndex": 0, + "inputQty": "862975801825245003776", + "expectedQty": "869159193274149654315", + "swapFee": "517785481095147002", "reserves": [ - "3318291432202880622820070", - "3818014983862466177265991" + "3151281413260726930187601", + "1481842177026740127479956" ], - "LPTokenSupply": "7067226006271781880180819" + "LPTokenSupply": "4606677437052560550413680" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6791109322086890340352", - "expectedQty": "6728715579382908032205", + "inputIndex": 1, + "inputQty": "276559194243958365487104", + "expectedQty": "275976483250687367773496", "reserves": [ - "3325082541524967513160422", - "3818014983862466177265991" + "3151281413260726930187601", + "1758401371270698492967060" ] }, { - "type": "redeemMasset", - "inputQty": "7460266313942156902", - "expectedQtys": [ - "3504562673870634514", - "4024102449675299322" - ], - "redemptionFee": "4476159788365294", + "type": "swap", + "inputIndex": 1, + "inputQty": "47706417607355662336000", + "outputIndex": 0, + "expectedQty": "47908964187877485342928", + "swapFee": "0", "reserves": [ - "3325079036962293642525908", - "3818010959760016501966669" + "3103372449072849444844673", + "1806107788878054155303060" ], - "LPTokenSupply": "7073947262032466824892651" + "LPTokenSupply": "4882653920303247918187176", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "9010062828908296601", - "expectedQtys": [ - "4232600897690756513", - "4860069921957962837" - ], - "redemptionFee": "5406037697344977", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2137282114964823474176", + "expectedQty": "2142254519323432561209", + "swapFee": "1282369268978894084", "reserves": [ - "3325074804361395951769395", - "3818006099690094544003832" + "3103372449072849444844673", + "1803965534358730722741851" ], - "LPTokenSupply": "7073938252510241686330547" + "LPTokenSupply": "4880516766425209992602408" }, { - "type": "redeemBassets", - "inputQtys": [ - "11552263660314527006720", - "19854943792124036907008" + "type": "swap", + "inputIndex": 0, + "inputQty": "335264306229597184", + "outputIndex": 1, + "expectedQty": "333641854727898673", + "swapFee": "266348109078431", + "reserves": [ + "3103372784337155674441857", + "1803965200716875994843178" ], - "expectedQty": "31100410707610166218222", - "swapFee": "18671449294142585282", + "LPTokenSupply": "4880516766451844803510251", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "360282356400461316096", + "expectedQty": "361119180663432636760", + "swapFee": "216169413840276789", "reserves": [ - "3313522540701081424762675", - "3798151155897970507096824" + "3103372784337155674441857", + "1803604081536212562206418" ], - "LPTokenSupply": "7042821037498266791785570" + "LPTokenSupply": "4880156505712385726221833" }, { - "type": "redeemMasset", - "inputQty": "11883395104095580979", - "expectedQtys": [ - "5587572336345168607", - "6404798539098708079" + "type": "mintMulti", + "inputQtys": [ + "11784266263432865513472", + "13302056241178355957760" ], - "redemptionFee": "7130037062457348", + "expectedQty": "24965598439165823674386", "reserves": [ - "3313516953128745079594068", - "3798144751099431408388745" + "3115157050600588539955329", + "1816906137777390918164178" ], - "LPTokenSupply": "7042809154816166402450325" + "LPTokenSupply": "4905122104151551549896219" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1169661318184621441024", - "expectedQty": "1158899909333451049834", + "inputQty": "460097591862006120448", + "expectedQty": "456906257881923461804", "reserves": [ - "3314686614446929701035092", - "3798144751099431408388745" + "3115617148192450546075777", + "1816906137777390918164178" ] }, { - "type": "redeemMasset", - "inputQty": "27823052347957", - "expectedQtys": [ - "13084864050381", - "14993335265903" - ], - "redemptionFee": "16693831408", - "reserves": [ - "3314686614433844836984711", - "3798144751084438073122842" - ], - "LPTokenSupply": "7043968054697678470535342" - }, - { - "type": "redeemMasset", - "inputQty": "601452076385259172659", - "expectedQtys": [ - "282856048786422817085", - "324111550193752778057" - ], - "redemptionFee": "360871245831155503", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3030344063592981594112", + "expectedQty": "3037426491511426108103", + "swapFee": "1818206438155788956", "reserves": [ - "3314403758385058414167626", - "3797820639534244320344785" + "3115617148192450546075777", + "1813868711285879492056075" ], - "LPTokenSupply": "7043366638708417794478233" + "LPTokenSupply": "4902548848166484307342806" }, { "type": "redeemMasset", - "inputQty": "9174498927610607697920", + "inputQty": "2617467054006480352051", "expectedQtys": [ - "4314662360996849069199", - "4943970307105736905635" + "1662427540359231181521", + "967842054017123206944" ], - "redemptionFee": "5504699356566364618", + "redemptionFee": "1570480232403888211", "reserves": [ - "3310089096024061565098427", - "3792876669227138583439150" + "3113954720652091314894256", + "1812900869231862368849131" ], - "LPTokenSupply": "7034192690250742843416774" + "LPTokenSupply": "4899931538160501067379576" }, { - "type": "redeemMasset", - "inputQty": "76487091346417988403", - "expectedQtys": [ - "35971033314289779186", - "41217528914747405058" + "type": "mintMulti", + "inputQtys": [ + "50241731382965637742592", + "37541285351573164130304" ], - "redemptionFee": "45892254807850793", + "expectedQty": "87324245013834811911309", "reserves": [ - "3310053124990747275319241", - "3792835451698223836034092" + "3164196452035056952636848", + "1850442154583435532979435" ], - "LPTokenSupply": "7034116207748621906213450" + "LPTokenSupply": "4987255783174335879290885" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1153747070645161295872", - "expectedQty": "1163762837314986819639", - "swapFee": "692248242387096777", + "inputQty": "23433357870153657745408", + "expectedQty": "23582369866996280028453", + "swapFee": "14060014722092194647", "reserves": [ - "3308889362153432288499602", - "3792835451698223836034092" + "3140614082168060672608395", + "1850442154583435532979435" ], - "LPTokenSupply": "7032962529902800983627255" + "LPTokenSupply": "4963823831305654430764941" }, { - "type": "redeemMasset", - "inputQty": "611406973277159974502", - "expectedQtys": [ - "287483997591164717410", - "329530358533981024395" + "type": "redeemBassets", + "inputQtys": [ + "2269782589622805594112", + "1648162782873140854784" ], - "redemptionFee": "366844183966295984", + "expectedQty": "3897332479918022143635", + "swapFee": "2339803369972796964", "reserves": [ - "3308601878155841123782192", - "3792505921339689855009697" + "3138344299578437867014283", + "1848793991800562392124651" ], - "LPTokenSupply": "7032351159613942220282351" + "LPTokenSupply": "4959924393002703433104037" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6978353833044898480128", - "expectedQty": "6914121719621891603871", + "inputIndex": 1, + "inputQty": "12219811161169735974912", + "expectedQty": "12182960016924634927588", "reserves": [ - "3315580231988886022262320", - "3792505921339689855009697" + "3138344299578437867014283", + "1861013802961732128099563" ] }, { "type": "redeemBassets", "inputQtys": [ - "956617805921755070464", - "600453586526910283776" - ], - "expectedQty": "1542200373194371988266", - "swapFee": "925875749366242938", - "reserves": [ - "3314623614182964267191856", - "3791905467753162944725921" - ], - "LPTokenSupply": "7037722247672195310279310" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "51475262271034757218304", - "26578052777708164743168" + "313011133678002362122240", + "3963621591198089084928" ], - "expectedQty": "77311418520083432198590", - "swapFee": "46414699932009264878", + "expectedQty": "314859129870915987833066", + "swapFee": "189028895259705415949", "reserves": [ - "3263148351911929509973552", - "3765327414975454779982753" + "2825333165900435504892043", + "1857050181370534039014635" ], - "LPTokenSupply": "6960369055922173069742328" + "LPTokenSupply": "4657078097142978345324203" }, { "type": "redeemMasset", - "inputQty": "224251752281088179", + "inputQty": "1348480025690682635059", "expectedQtys": [ - "105070244113798730", - "121239927822480878" + "817598356203210396536", + "537395445606335216573" ], - "redemptionFee": "134551051368652", + "redemptionFee": "809088015414409581", "reserves": [ - "3263148246841685396174822", - "3765327293735526957501875" + "2824515567544232294495507", + "1856512785924927703798062" ], - "LPTokenSupply": "6960368831683875893791014" + "LPTokenSupply": "4655729698026089204130102" }, { "type": "redeemMasset", - "inputQty": "293182232302239", + "inputQty": "2083550236531183206", "expectedQtys": [ - "137366724696751", - "158506644082857" - ], - "redemptionFee": "175909339381", - "reserves": [ - "3263148246704318671478071", - "3765327293577020313419018" - ], - "LPTokenSupply": "6960368831390711252422713" - }, - { - "type": "mintMulti", - "inputQtys": [ - "22556790000956557230080", - "2551093110550278176768" - ], - "expectedQty": "24874677022922422489720", - "reserves": [ - "3285705036705275228708151", - "3767878386687570591595786" - ], - "LPTokenSupply": "6985243508413633674912433" - }, - { - "type": "mintMulti", - "inputQtys": [ - "17954876202621336", - "9282085474256636" + "1263279753824430623", + "830335312052912911" ], - "expectedQty": "26977838595932283", + "redemptionFee": "1250130141918709", "reserves": [ - "3285705054660151431329487", - "3767878395969656065852422" + "2824514304264478470064884", + "1856511955589615650885151" ], - "LPTokenSupply": "6985243535391472270844716" + "LPTokenSupply": "4655727614600865687138766" }, { - "type": "mintMulti", - "inputQtys": [ - "3456347694738253021184", - "1954998275247638052864" - ], - "expectedQty": "5359762276817647851635", + "type": "redeem", + "inputIndex": 0, + "inputQty": "878946930932267", + "expectedQty": "884240600296977", + "swapFee": "527368158559", "reserves": [ - "3289161402354889684350671", - "3769833394244903703905286" + "2824514303380237869767907", + "1856511955589615650885151" ], - "LPTokenSupply": "6990603297668289918696351" + "LPTokenSupply": "4655727613721971493022354" }, { - "type": "redeemMasset", - "inputQty": "6262245546180516773888", - "expectedQtys": [ - "2944692602944069306368", - "3375024558666136235543" - ], - "redemptionFee": "3757347327708310064", + "type": "mint", + "inputIndex": 0, + "inputQty": "4386524736532370", + "expectedQty": "4357647839127254", "reserves": [ - "3286216709751945615044303", - "3766458369686237567669743" - ], - "LPTokenSupply": "6984341427856842172753469" + "2824514307766762606300277", + "1856511955589615650885151" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "5347351471761142054912", - "expectedQty": "5293282810404308746661", + "inputQty": "13040854226197716926464", + "expectedQty": "12993535884828561967202", "reserves": [ - "3286216709751945615044303", - "3771805721157998709724655" + "2824514307766762606300277", + "1869552809815813367811615" ] }, { "type": "mintMulti", "inputQtys": [ - "2131649929178944897024", - "3226712737126159482880" + "12782671518991353118720", + "7881735917330819448832" ], - "expectedQty": "5306112435467081945093", + "expectedQty": "20551812108796632562308", "reserves": [ - "3288348359681124559941327", - "3775032433895124869207535" + "2837296979285753959418997", + "1877434545733144187260447" ], - "LPTokenSupply": "6994940823102713563445223" + "LPTokenSupply": "4689272966073244526679118" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "73964703102173903323136", - "outputIndex": 1, - "expectedQty": "73963150652480460002926", - "swapFee": "58624920014948486331", + "type": "redeem", + "inputIndex": 1, + "inputQty": "188179035862909201678336", + "expectedQty": "188703857303068162839196", + "swapFee": "112907421517745521007", "reserves": [ - "3362313062783298463264463", - "3701069283242644409204609" + "2837296979285753959418997", + "1688730688430076024421251" ], - "LPTokenSupply": "6994946685594715058293856", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4501105220952487099552882" }, { "type": "redeemBassets", "inputQtys": [ - "37933743473596882944", - "18517752560045531136" + "45524190279945353691136", + "206966890990371640180736" ], - "expectedQty": "55911539859896678861", - "swapFee": "33567064154430665", + "expectedQty": "251591169241544468364548", + "swapFee": "151045328742171984209", "reserves": [ - "3362275129039824866381519", - "3701050765490084363673473" + "2791772789005808605727861", + "1481763797439704384240515" ], - "LPTokenSupply": "6994890743844497422627395" + "LPTokenSupply": "4249378110915074676402544" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "77523651287342612480", - "expectedQty": "76749215016098389017", + "type": "redeemMasset", + "inputQty": "69324686150504795340", + "expectedQtys": [ + "45517872048400528353", + "24159106071748524320" + ], + "redemptionFee": "41594811690302877", "reserves": [ - "3362275129039824866381519", - "3701128289141371706285953" - ] + "2791727271133760205199508", + "1481739638333632635716195" + ], + "LPTokenSupply": "4249308790388405340637491" }, { "type": "mint", "inputIndex": 1, - "inputQty": "10836581496830925209600", - "expectedQty": "10728277153155800166539", + "inputQty": "28889072298219601395712", + "expectedQty": "28816625515175564464101", "reserves": [ - "3362275129039824866381519", - "3711964870638202631495553" + "2791727271133760205199508", + "1510628710631852237111907" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "75717281925393530880", - "252248784848993681408" - ], - "expectedQty": "324736099260860409431", - "swapFee": "194958634737358660", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2135098908335868477440", + "expectedQty": "2139307932707872251360", + "swapFee": "1281059345001521086", "reserves": [ - "3362199411757899472850639", - "3711712621853353637814145" + "2791727271133760205199508", + "1508489402699144364860547" ], - "LPTokenSupply": "7005370858650637197150725" + "LPTokenSupply": "4275990445101179536776260" }, { "type": "mintMulti", "inputQtys": [ - "1285790908465730289664", - "740363198596296474624" + "283056180173530955776", + "8396281517444229496832" ], - "expectedQty": "2006732119153679185596", + "expectedQty": "8655616478354764251150", "reserves": [ - "3363485202666365203140303", - "3712452985051949934288769" + "2792010327313933736155284", + "1516885684216588594357379" ], - "LPTokenSupply": "7007377590769790876336321" + "LPTokenSupply": "4284646061579534301027410" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "927863079397994790912", - "842339162292482211840" + "2196179954380483067904", + "2739648745225388556288" ], - "expectedQty": "1753106478583438731943", - "swapFee": "1052495384380691654", + "expectedQty": "4912732141813590748409", "reserves": [ - "3362557339586967208349391", - "3711610645889657452076929" + "2794206507268314219223188", + "1519625332961813982913667" ], - "LPTokenSupply": "7005623537045361494981888" + "LPTokenSupply": "4289558793721347891775819" }, { "type": "mintMulti", "inputQtys": [ - "5494716896057151", - "5945992863165468" + "1332853727664599203840", + "428728118091364958208" ], - "expectedQty": "11329892957700497", + "expectedQty": "1750774371367208040106", "reserves": [ - "3362557345081684104406542", - "3711610651835650315242397" + "2795539360995978818427028", + "1520054061079905347871875" ], - "LPTokenSupply": "7005623548375254452682385" + "LPTokenSupply": "4291309568092715099815925" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "6454146531322584104960", + "expectedQty": "6407189018448996211781", + "reserves": [ + "2801993507527301402531988", + "1520054061079905347871875" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "43277418050329379864576", + "inputQty": "163360232150825487564800", "outputIndex": 1, - "expectedQty": "43267653600710166852388", - "swapFee": "34297512043627684164", + "expectedQty": "162314656305389245803507", + "swapFee": "129723564720628350746", "reserves": [ - "3405834763132013484271118", - "3668342998234940148390009" + "2965353739678126890096788", + "1357739404774516102068368" ], - "LPTokenSupply": "7005626978126458815450801", + "LPTokenSupply": "4297729729467636158862780", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "144634792660716404736", - "333630976032424984576" + "541411177286667993088", + "716982211585929773056" ], - "expectedQty": "473589433755909551730", + "expectedQty": "1253128127501671454010", "reserves": [ - "3405979397924674200675854", - "3668676629210972573374585" + "2965895150855413558089876", + "1358456386986102031841424" ], - "LPTokenSupply": "7006100567560214725002531" + "LPTokenSupply": "4298982857595137830316790" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "665180233211208898969600", + "hardLimitError": true }, { "type": "redeem", "inputIndex": 1, - "inputQty": "10715625820861243588608", - "expectedQty": "10816503991539761495050", - "swapFee": "6429375492516746153", + "inputQty": "162612565001739857559552", + "expectedQty": "162641573305515693055096", + "swapFee": "97567539001043914535", "reserves": [ - "3405979397924674200675854", - "3657860125219432811879535" + "2965895150855413558089876", + "1195814813680586338786328" ], - "LPTokenSupply": "6995385584676902733088538" + "LPTokenSupply": "4136380049347298077148691" }, { "type": "redeemMasset", - "inputQty": "5676511718981901484032", + "inputQty": "33511650847453544448", "expectedQtys": [ - "2762175334562723365258", - "2966445135081548681963" + "24014332903391941891", + "9682302834694218994" ], - "redemptionFee": "3405907031389140890", + "redemptionFee": "20106990508472126", "reserves": [ - "3403217222590111477310596", - "3654893680084351263197572" + "2965871136522510166147985", + "1195805131377751644567334" ], - "LPTokenSupply": "6989709413548623970518595" + "LPTokenSupply": "4136346539707149674451455" }, { - "type": "redeemBassets", - "inputQtys": [ - "519668026052798784", - "827437365315265792" + "type": "redeemMasset", + "inputQty": "1608613900911887830220", + "expectedQtys": [ + "1152727153740342017911", + "464766330723792536375" ], - "expectedQty": "1333989443617934167", - "swapFee": "800874190685171", + "redemptionFee": "965168340547132698", "reserves": [ - "3403216702922085424511812", - "3654892852646985947931780" + "2964718409368769824130074", + "1195340365047027852030959" ], - "LPTokenSupply": "6989708078838393580967773" + "LPTokenSupply": "4134738022323071841334504" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "36748542448736416", + "expectedQty": "36436938298573958", + "reserves": [ + "2964718446117312272866490", + "1195340365047027852030959" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2070005578947129245696", - "4935188194696842182656" + "1546951709887031672832", + "23221478235343087992832" ], - "expectedQty": "6936695144578863185176", - "swapFee": "4164515796225052942", + "expectedQty": "24754113045600795019326", + "swapFee": "14861384658155370233", "reserves": [ - "3401146697343138295266116", - "3649957664452289105749124" + "2963171494407425241193658", + "1172118886811684764038127" ], - "LPTokenSupply": "6982767635629598115234948" + "LPTokenSupply": "4109970570468217005055925" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "10946062192053351088128", - "expectedQty": "11048996974850622966217", - "swapFee": "6567637315232010652", + "inputQty": "103512457048942499069952", + "outputIndex": 0, + "expectedQty": "104319607219431622933472", + "swapFee": "0", "reserves": [ - "3401146697343138295266116", - "3638908667477438482782907" + "2858851887187993618260186", + "1275631343860627263108079" ], - "LPTokenSupply": "6971822230201276287347885" + "LPTokenSupply": "4109970570468217005055925", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "63175394337319404175360", + "expectedQty": "63089357078237630821427", + "reserves": [ + "2858851887187993618260186", + "1338806738197946667283439" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "1326815884838578683904", - "outputIndex": 1, - "expectedQty": "1326345613878952942993", - "swapFee": "1051407860992413572", + "inputIndex": 1, + "inputQty": "74346940258589568", + "outputIndex": 0, + "expectedQty": "74819531209323646", + "swapFee": "0", "reserves": [ - "3402473513227976873950020", - "3637582321863559529839914" + "2858851812368462408936540", + "1338806812544886925873007" ], - "LPTokenSupply": "6971822335342062386589242", + "LPTokenSupply": "4173059927546454635877352", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "49002953407507204145152", - "44992188127635417595904" + "type": "redeemMasset", + "inputQty": "43499359871319110", + "expectedQtys": [ + "29782368580500591", + "13947151012442188" ], - "expectedQty": "93085717291902510144576", - "swapFee": "55884961351952677693", + "redemptionFee": "26099615922791", "reserves": [ - "3353470559820469669804868", - "3592590133735924112244010" + "2858851782586093828435949", + "1338806798597735913430819" ], - "LPTokenSupply": "6878686321584943119034741" + "LPTokenSupply": "4173059884049704726150521" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5713799738026765582336", - "expectedQty": "5767560317923571548014", - "swapFee": "3428279842816059349", + "type": "redeemMasset", + "inputQty": "5548465593199158067", + "expectedQtys": [ + "3798824806678753378", + "1778998305838223029" + ], + "redemptionFee": "3329079355919494", "reserves": [ - "3353470559820469669804868", - "3586822573418000540695996" + "2858847983761287149682571", + "1338805019599430075207790" ], - "LPTokenSupply": "6872972864674900635058339" + "LPTokenSupply": "4173054335917019462584403" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "38604265237514528", - "expectedQty": "38221562203180072", + "type": "swap", + "inputIndex": 0, + "inputQty": "318750376283639149232128", + "outputIndex": 1, + "expectedQty": "315638789255373512719085", + "swapFee": "252938743116520418316", "reserves": [ - "3353470559820469669804868", - "3586822612022265778210524" - ] + "3177598360044926298914699", + "1023166230344056562488705" + ], + "LPTokenSupply": "4173079629791331114626234", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10580242160881313792", - "expectedQty": "10679767746074617941", - "swapFee": "6348145296528788", + "type": "redeemMasset", + "inputQty": "5974609777719941", + "expectedQtys": [ + "4546646833672103", + "1463991031720023" + ], + "redemptionFee": "3584765866631", "reserves": [ - "3353470559820469669804868", - "3586811932254519703592583" + "3177598355498279465242596", + "1023166228880065530768682" ], - "LPTokenSupply": "6872962323289116486577497" + "LPTokenSupply": "4173079623817079813492956" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "62804416069391400960", - "expectedQty": "63395198816341903718", - "swapFee": "37682649641634840", + "inputIndex": 0, + "inputQty": "60413830354763464704", + "expectedQty": "60963194906234399673", + "swapFee": "36248298212858078", "reserves": [ - "3353470559820469669804868", - "3586748537055703361688865" + "3177537392303373230842923", + "1023166228880065530768682" ], - "LPTokenSupply": "6872899522641312059340021" + "LPTokenSupply": "4173019213611554871314059" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "47508556179393369604096", - "expectedQty": "47932873121163570921782", - "swapFee": "28505133707636021762", + "type": "redeemBassets", + "inputQtys": [ + "283860679929305340313600", + "60155148704551522009088" + ], + "expectedQty": "341464229114937496247598", + "swapFee": "205001538391997696366", "reserves": [ - "3305537686699306098883086", - "3586748537055703361688865" + "2893676712374067890529323", + "963011080175514008759594" ], - "LPTokenSupply": "6825393816975289453338101" + "LPTokenSupply": "3831370483112064577139730" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "3699707892535985152", - "expectedQty": "3732672144847213371", - "swapFee": "2219824735521591", + "inputIndex": 1, + "inputQty": "157172100727185193566208", + "expectedQty": "156502150987559672365744", + "swapFee": "94303260436311116139", "reserves": [ - "3305533954027161251669715", - "3586748537055703361688865" + "2893676712374067890529323", + "806508929187954336393850" ], - "LPTokenSupply": "6825390117489379390905108" + "LPTokenSupply": "3674207812710923014685135" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "16801245233453681606656", + "expectedQty": "16624827290915654965986", + "reserves": [ + "2910477957607521572135979", + "806508929187954336393850" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "126948128888421194137600", + "hardLimitError": true + }, + { + "type": "redeemBassets", "inputQtys": [ - "12120228292135620", - "23738414684279720" + "2032379955814391349248", + "1656474529207925080064" ], - "expectedQty": "35507894042633831", + "expectedQty": "3676648886659255836141", + "swapFee": "2207313720227690115", "reserves": [ - "3305533966147389543805335", - "3586748560794118045968585" + "2908445577651707180786731", + "804852454658746411313786" ], - "LPTokenSupply": "6825390152997273433538939" + "LPTokenSupply": "3687154004532831208893875" }, { "type": "redeemBassets", "inputQtys": [ - "2139472155936912128", - "2007485002440469504" + "1008298035893808768", + "758110314062529664" ], - "expectedQty": "4106790132666715583", - "swapFee": "2465553411647017", + "expectedQty": "1760006119168944715", + "swapFee": "1056637654093823", "reserves": [ - "3305531826675233606893207", - "3586746553309115605499081" + "2908444569353671286977963", + "804851696548432348784122" ], - "LPTokenSupply": "6825386043988142696341039" + "LPTokenSupply": "3687152243575738151264718" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4102946100047928885248", - "outputIndex": 0, - "expectedQty": "4100689413657075280470", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "10040321172600103370752", + "9547527241029927305216" + ], + "expectedQty": "19535823327828832668091", + "swapFee": "11728531115366519512", "reserves": [ - "3301431137261576531612737", - "3590849499409163534384329" + "2898404248181071183607211", + "795304169307402421478906" ], - "LPTokenSupply": "6825386043988142696341039", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3667605864569905488729065" }, { - "type": "redeemBassets", - "inputQtys": [ - "4326791162083265024", - "3577555516057510912" + "type": "redeemMasset", + "inputQty": "416625594435385446", + "expectedQtys": [ + "329049769179142763", + "90289218110979619" ], - "expectedQty": "7827928037222054113", - "swapFee": "4699576568274196", + "redemptionFee": "249975356661231", "reserves": [ - "3301426810470414448347713", - "3590845921853647476873417" + "2898403919131302004464448", + "795304079018184310499287" ], - "LPTokenSupply": "6825378211830486562840148" + "LPTokenSupply": "3667605447969308589009742" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "33362009358594083913728", - "expectedQty": "33677268279783855407579", - "swapFee": "20017205615156450348", + "inputQty": "19630332885912903680", + "expectedQty": "19506630508987818600", + "swapFee": "11778199731547742", "reserves": [ - "3301426810470414448347713", - "3557168653573863621465838" + "2898403919131302004464448", + "795284572387675322680687" ], - "LPTokenSupply": "6792018204192453994571454" + "LPTokenSupply": "3667585818814242649260836" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "6251823181218985279488", - "outputIndex": 1, - "expectedQty": "6249840116149691343312", - "swapFee": "4954164737234299013", + "type": "redeemBassets", + "inputQtys": [ + "69331043065088547225600", + "58662143722775606460416" + ], + "expectedQty": "127619719321553910611291", + "swapFee": "76617802274296924521", "reserves": [ - "3307678633651633433627201", - "3550918813457713930122526" + "2829072876066213457238848", + "736622428664899716220271" ], - "LPTokenSupply": "6792018699608927718001355", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3539897143470641871417475" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "7987559152723464028160", - "expectedQty": "7908196211332798292962", + "type": "redeemMasset", + "inputQty": "2504266232323", + "expectedQtys": [ + "2000199591778", + "520803791790" + ], + "redemptionFee": "1502559739", "reserves": [ - "3307678633651633433627201", - "3558906372610437394150686" - ] + "2829072876064213257647070", + "736622428664378912428481" + ], + "LPTokenSupply": "3539897143468137755441125" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5918296919133597466624", - "expectedQty": "5971204436852333904297", - "swapFee": "3550978151480158479", + "type": "mint", + "inputIndex": 1, + "inputQty": "1150160017375143919616", + "expectedQty": "1158113108368673291961", "reserves": [ - "3301707429214781099722904", - "3558906372610437394150686" - ], - "LPTokenSupply": "6794008953998942066843540" + "2829072876064213257647070", + "737772588681754056348097" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "97465864386799164456960", + "inputQty": "6539715950184455208960", "outputIndex": 1, - "expectedQty": "97417973889879940443773", - "swapFee": "77231774903206489688", + "expectedQty": "6417811921085218620625", + "swapFee": "5174632582906138724", "reserves": [ - "3399173293601580264179864", - "3461488398720557453706913" + "2835612592014397712856030", + "731354776760668837727472" ], - "LPTokenSupply": "6794016677176432387492508", + "LPTokenSupply": "3541055774039764719346958", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "30456473783628931792896", - "16194583497103569321984" - ], - "expectedQty": "46198657693922123482050", - "reserves": [ - "3429629767385209195972760", - "3477682982217661023028897" + "31084935171931815936", + "3836961928256248832" ], - "LPTokenSupply": "6840215334870354510974558" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "195132867058202717454336", - "expectedQty": "196918881584362258038944", - "swapFee": "117079720234921630472", + "expectedQty": "34607889283988192954", "reserves": [ - "3429629767385209195972760", - "3280764100633298764989953" + "2835643676949569644671966", + "731358613722597093976304" ], - "LPTokenSupply": "6645094175784175285683269" + "LPTokenSupply": "3541090381929048707539912" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "891541313203251840", - "472250132854005568" + "966011920767125291008", + "1869676208976483844096" ], - "expectedQty": "1350463563755024843", + "expectedQty": "2838518091793124291829", + "swapFee": "1704133335076920727", "reserves": [ - "3429630658926522399224600", - "3280764572883431618995521" + "2834677665028802519380958", + "729488937513620610132208" ], - "LPTokenSupply": "6645095526247739040708112" + "LPTokenSupply": "3538250330117254014019427" }, { - "type": "redeemMasset", - "inputQty": "1843917796243181977", - "expectedQtys": [ - "951101847575802433", - "909818448995128787" + "type": "mintMulti", + "inputQtys": [ + "9735608979000433573888", + "26279833223517708484608" ], - "redemptionFee": "1106350677745909", + "expectedQty": "36088771315011321490917", "reserves": [ - "3429629707824674823422167", - "3280763663064982623866734" + "2844413274007802952954846", + "755768770737138318616816" ], - "LPTokenSupply": "6645093682440577865300725" + "LPTokenSupply": "3574339101432265335510344" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "614050446330955", - "outputIndex": 0, - "expectedQty": "614231077495850", - "swapFee": "0", + "inputQty": "38818718343658456", + "expectedQty": "39069014404160601", "reserves": [ - "3429629707210443745926317", - "3280763663679033070197689" - ], - "LPTokenSupply": "6645093682440577865300725", - "hardLimitError": false, - "insufficientLiquidityError": false + "2844413274007802952954846", + "755768809555856662275272" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8491350042656593936384", - "7228722923544299700224" + "245203422602052576", + "667951730826935808" ], - "expectedQty": "15566966265030091789559", - "swapFee": "9345787231356869195", + "expectedQty": "914814097679005899", "reserves": [ - "3421138357167787151989933", - "3273534940755488770497465" + "2844413519211225555007422", + "755769477507587489211080" ], - "LPTokenSupply": "6629518304967039552328889" + "LPTokenSupply": "3574340055315377418676844" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1503896669818323730432", + "expectedQty": "1487654052052435734809", + "reserves": [ + "2845917415881043878737854", + "755769477507587489211080" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "138158949087251072548864", + "inputQty": "70915696422092544147456", "outputIndex": 1, - "expectedQty": "137970066923745357235279", - "swapFee": "109428780924482049255", - "reserves": [ - "3559297306255038224538797", - "3135564873831743413262186" - ], - "LPTokenSupply": "6629529247845132000533814", - "hardLimitError": false, - "insufficientLiquidityError": false + "hardLimitError": true }, { "type": "mintMulti", "inputQtys": [ - "65942370814766687977472", - "80436685893808439689216" + "149873729075000147968", + "76212905345999093760" ], - "expectedQty": "144960255917935221150756", + "expectedQty": "224960028038977256464", "reserves": [ - "3625239677069804912516269", - "3216001559725551852951402" + "2846067289610118878885822", + "755845690412933488304840" ], - "LPTokenSupply": "6774489503763067221684570" + "LPTokenSupply": "3576052669395468831668117" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "28281502788608897024", - "672852200012716544" + "8822313294786790948864", + "2848146367778402074624" ], - "expectedQty": "28661616516020522892", - "swapFee": "17207294286184024", + "expectedQty": "11593556092122777682928", "reserves": [ - "3625211395567016303619245", - "3216000886873351840234858" + "2854889602904905669834686", + "758693836780711890379464" ], - "LPTokenSupply": "6774460826659986343596055" + "LPTokenSupply": "3587646225487591609351045" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "34333600146919438417920", - "6578917260964743086080" + "13939524602113631977472", + "12881461225604373282816" ], - "expectedQty": "40503640441548872389471", - "swapFee": "24316774329527039657", + "expectedQty": "26752194702825510251582", "reserves": [ - "3590877795420096865201325", - "3209421969612387097148778" + "2868829127507019301812158", + "771575298006316263662280" ], - "LPTokenSupply": "6733935301121540896870891" + "LPTokenSupply": "3614398420190417119602627" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "1070043078224847306752", - "outputIndex": 0, - "expectedQty": "1070841093963081439465", - "swapFee": "0", + "inputQty": "676794390633598943232", + "expectedQty": "680960871498592753468", "reserves": [ - "3589806954326133783761860", - "3210492012690611944455530" - ], - "LPTokenSupply": "6733935301121540896870891", - "hardLimitError": false, - "insufficientLiquidityError": false + "2868829127507019301812158", + "772252092396949862605512" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "65584679831667975651328", - "15209113557273529024512" + "7655537347858914304", + "2871378394222865408" ], - "expectedQty": "79989493536716184641962", - "swapFee": "48022509627806394621", + "expectedQty": "10462511341313330173", "reserves": [ - "3524222274494465808110532", - "3195282899133338415431018" + "2868836783044367160726462", + "772254963775344085470920" ], - "LPTokenSupply": "6653902587326159686473769" + "LPTokenSupply": "3615089843573257025686268" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "136055726432731051065344", - "outputIndex": 1, - "expectedQty": "135821067369732049527920", - "swapFee": "107742015337652667448", - "reserves": [ - "3660278000927196859175876", - "3059461831763606365903098" + "type": "redeemBassets", + "inputQtys": [ + "26914189977653044314112", + "86297093881725515202560" ], - "LPTokenSupply": "6653913361527693451740513", - "hardLimitError": false, - "insufficientLiquidityError": false + "hardLimitError": true }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "22655340085495096", - "expectedQty": "22850761749662843", - "swapFee": "13593204051297", + "inputIndex": 0, + "inputQty": "4296343560263907672064", + "expectedQty": "4340264659349006171000", + "swapFee": "2577806136158344603", "reserves": [ - "3660278000927196859175876", - "3059461808912844616240255" + "2864496518385018154555462", + "772254963775344085470920" ], - "LPTokenSupply": "6653913338873712686650546" + "LPTokenSupply": "3610793757793606733848664" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "836282186455146954752", - "expectedQty": "844511076199702213556", - "swapFee": "501769311873088172", + "type": "redeemBassets", + "inputQtys": [ + "6248151632865035", + "89915681451135888" + ], + "expectedQty": "96646388301067188", + "swapFee": "58022646568581", "reserves": [ - "3659433489850997156962320", - "3059461808912844616240255" + "2864496512136866521690427", + "772254873859662634335032" ], - "LPTokenSupply": "6653077106864188727004611" + "LPTokenSupply": "3610793661094998050869752" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "28302948324307760", - "307022476275768768" + "23327377867722599694336", + "5640582500645859229696" ], - "expectedQty": "332224229187123287", - "swapFee": "199454210038296", + "expectedQty": "28752602154005989676755", "reserves": [ - "3659433461548048832654560", - "3059461501890368340471487" + "2887823890004589121384763", + "777895456360308493564728" ], - "LPTokenSupply": "6653076774460450750846856" + "LPTokenSupply": "3639546263249004040546507" }, { - "type": "redeemBassets", - "inputQtys": [ - "5609150306316795", - "2141081869857723" + "type": "redeemMasset", + "inputQty": "168086966617309210214", + "expectedQtys": [ + "133289778278057344004", + "35904375353584661316" ], - "expectedQty": "7672659367627608", - "swapFee": "4606359436238", + "redemptionFee": "100852179970385526", "reserves": [ - "3659433455938898526337765", - "3059461499749286470613764" + "2887690600226311064040759", + "777859551984954908903412" ], - "LPTokenSupply": "6653076766783645659726632" + "LPTokenSupply": "3639378186367604728374845" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 1, + "inputQty": "34229357099711889408", + "expectedQty": "34000382874108194841", + "swapFee": "20537614259827133", + "reserves": [ + "2887690600226311064040759", + "777825551602080800708571" + ], + "LPTokenSupply": "3639343959064266442468150" + }, + { + "type": "mintMulti", "inputQtys": [ - "7586883224904669331456", - "8087231088635825618944" + "348664863733515485184", + "148815581347653058560" ], - "expectedQty": "15521703236890845152062", - "swapFee": "9318613110000507395", + "expectedQty": "494656908457694827977", "reserves": [ - "3651846572713993857006309", - "3051374268660650644994820" + "2888039265090044579525943", + "777974367183428453767131" ], - "LPTokenSupply": "6637546676794955814117913" + "LPTokenSupply": "3639838615972724137296127" }, { "type": "redeemMasset", - "inputQty": "7728777221978899821363", + "inputQty": "12179311976457251", "expectedQtys": [ - "4249668649834398068446", - "3550896597170406178994" + "9657908033834522", + "2601628371802589" ], - "redemptionFee": "4637266333187339892", + "redemptionFee": "7307587185874", "reserves": [ - "3647596904064159458937863", - "3047823372063480238815826" + "2888039255432136545691421", + "777974364581800081964542" ], - "LPTokenSupply": "6629818363299610233030539" + "LPTokenSupply": "3639838603794142919557463" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "459031384856347648", - "outputIndex": 0, - "expectedQty": "459585125319917876", - "swapFee": "0", + "inputQty": "19135011167269195776", + "expectedQty": "19007025060694012438", + "swapFee": "11481006700361517", "reserves": [ - "3647596444479034139019987", - "3047823831094865095163474" + "2888039255432136545691421", + "777955357556739387952104" ], - "LPTokenSupply": "6629818363299610233030539", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3639819469931076320397838" }, { "type": "redeemMasset", - "inputQty": "4967505945021329388339", + "inputQty": "985568977782748427059", "expectedQtys": [ - "2731384836878391823254", - "2282264478662223613790" + "781537134776770532355", + "210523800874776237342" ], - "redemptionFee": "2980503567012797633", + "redemptionFee": "591341386669649056", "reserves": [ - "3644865059642155747196733", - "3045541566616202871549684" + "2887257718297359775159066", + "777744833755864611714762" ], - "LPTokenSupply": "6624851155404945604921963" + "LPTokenSupply": "3638833960087432238935684" }, { - "type": "redeemBassets", - "inputQtys": [ - "23723774842719753469952", - "140279942249365500854272" - ], - "expectedQty": "162484228275981457510955", - "swapFee": "97549066405432133786", + "type": "mint", + "inputIndex": 1, + "inputQty": "119017793453644120064", + "expectedQty": "119747130095414236387", "reserves": [ - "3621141284799435993726781", - "2905261624366837370695412" - ], - "LPTokenSupply": "6462279132969199258490599" + "2887257718297359775159066", + "777863851549318255834826" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "21087630877065670656", + "inputQty": "14952052528691085312", "outputIndex": 1, - "expectedQty": "21039426760176640065", - "swapFee": "16693284148490974", + "expectedQty": "14690027742653763724", + "swapFee": "11833488338892386", "reserves": [ - "3621162372430313059397437", - "2905240584940077194055347" + "2887272670349888466244378", + "777849161521575602071102" ], - "LPTokenSupply": "6462279134638527673339696", + "LPTokenSupply": "3638953708400876487061309", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "77270722583964", - "expectedQty": "78042347695013", - "swapFee": "46362433550", + "inputIndex": 1, + "inputQty": "1707396418318151", + "expectedQty": "1695981106425782", + "swapFee": "1024437850990", + "reserves": [ + "2887272670349888466244378", + "777849159825594495645320" + ], + "LPTokenSupply": "3638953706693582512528257" + }, + { + "type": "mintMulti", + "inputQtys": [ + "23142342020504338432", + "17602550559891275776" + ], + "expectedQty": "40604793639865016277", "reserves": [ - "3621162372352270711702424", - "2905240584940077194055347" + "2887295812691908970582810", + "777866762376154386921096" ], - "LPTokenSupply": "6462279134561261586999087" + "LPTokenSupply": "3638994311487222377544534" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2429876582782490640384", + "expectedQty": "2403837167702832910659", + "reserves": [ + "2889725689274691461223194", + "777866762376154386921096" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1151677092936562900992", - "50533506779259969536" + "111385304903543824", + "459086497919669888" ], - "expectedQty": "1189684814501027995069", - "swapFee": "714239432360032816", + "expectedQty": "572099257037096225", + "swapFee": "343465633602419", "reserves": [ - "3620010695259334148801432", - "2905190051433297934085811" + "2889725577889386557679370", + "777866303289656467251208" ], - "LPTokenSupply": "6461088806931271434974482" + "LPTokenSupply": "3641397576246549103116789" }, { "type": "redeemMasset", - "inputQty": "329985641840260415488", + "inputQty": "588951559225154312601", "expectedQtys": [ - "184773009238226317995", - "148287050343599069152" + "467097372419600748908", + "125734882627064022974" ], - "redemptionFee": "197991385104156249", + "redemptionFee": "353370935535092587", "reserves": [ - "3619825922250095922483437", - "2905041764382954335016659" + "2889258480516966956930462", + "777740568407029403228234" ], - "LPTokenSupply": "6460758841088569684974618" + "LPTokenSupply": "3640808660024417502313446" }, { - "type": "redeemBassets", - "inputQtys": [ - "95704441259656347648", - "90321450371944382464" - ], - "expectedQty": "184209163932788297158", - "swapFee": "110591853471756031", + "type": "redeem", + "inputIndex": 0, + "inputQty": "126723627297224918040576", + "expectedQty": "128002180607892157147574", + "swapFee": "76034176378334950824", "reserves": [ - "3619730217808836266135789", - "2904951442932582390634195" + "2761256299909074799782888", + "777740568407029403228234" ], - "LPTokenSupply": "6460574532391968772097031" + "LPTokenSupply": "3514092636144830417767952" }, { "type": "mint", "inputIndex": 1, - "inputQty": "13174561724257300480", - "expectedQty": "13055873591774430306", + "inputQty": "16613999890604820004864", + "expectedQty": "16695648077830177607147", "reserves": [ - "3619730217808836266135789", - "2904964617494306647934675" + "2761256299909074799782888", + "794354568297634223233098" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "86373784574921296314368", - "expectedQty": "85590790637830591198413", + "inputQty": "4587688970345487269888", + "expectedQty": "4563225869490831430550", + "swapFee": "2752613382207292361", "reserves": [ - "3619730217808836266135789", - "2991338402069227944249043" - ] + "2761256299909074799782888", + "789791342428143391802548" + ], + "LPTokenSupply": "3526200870513653328834447" }, { "type": "mintMulti", "inputQtys": [ - "1040707988517293", - "588110235225284" + "3155607827117570523136", + "3517247891517140369408" ], - "expectedQty": "1612641744670758", + "expectedQty": "6656963541691979752481", "reserves": [ - "3619730218849544254653082", - "2991338402657338179474327" + "2764411907736192370306024", + "793308590319660532171956" ], - "LPTokenSupply": "6546178380516032882396508" + "LPTokenSupply": "3532857834055345308586928" + }, + { + "type": "redeemMasset", + "inputQty": "3426245580347249419878", + "expectedQtys": [ + "2679380714798234343885", + "768907025699700909740" + ], + "redemptionFee": "2055747348208349651", + "reserves": [ + "2761732527021394135962139", + "792539683293960831262216" + ], + "LPTokenSupply": "3529431794049732880002015" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "257164310301607450378240", + "expectedQty": "257742565007638407833526", + "reserves": [ + "2761732527021394135962139", + "1049703993595568281640456" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "7542891475552180371456", - "expectedQty": "7464498510734567532517", + "inputQty": "3810259899881179578368", + "expectedQty": "3776281810908572281480", "reserves": [ - "3627273110325096435024538", - "2991338402657338179474327" + "2765542786921275315540507", + "1049703993595568281640456" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4236547052760962433024", - "expectedQty": "4278477142475044197224", - "swapFee": "2541928231656577459", + "inputIndex": 1, + "inputQty": "61850354688283774025728", + "expectedQty": "61768196130962420984459", + "swapFee": "37110212812970264415", "reserves": [ - "3622994633182621390827314", - "2991338402657338179474327" + "2765542786921275315540507", + "987935797464605860655997" ], - "LPTokenSupply": "6549406586166829653153746" + "LPTokenSupply": "3729103997201277383117734" }, { "type": "mint", "inputIndex": 1, - "inputQty": "51051853339817033728", - "expectedQty": "50586393191150131998", + "inputQty": "12228691570109", + "expectedQty": "12242328066580", "reserves": [ - "3622994633182621390827314", - "2991389454510677996508055" + "2765542786921275315540507", + "987935797476834552226106" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "13569169406942683136", - "expectedQty": "13428147411481013264", + "inputQty": "17860714152708001497088", + "expectedQty": "18015678142895152262876", + "swapFee": "10716428491624800898", "reserves": [ - "3623008202352028333510450", - "2991389454510677996508055" - ] + "2747527108778380163277631", + "987935797476834552226106" + ], + "LPTokenSupply": "3711244354703660872167315" }, { - "type": "redeemMasset", - "inputQty": "2632434410442317004", - "expectedQtys": [ - "1455325116091060051", - "1201610364098293686" + "type": "redeemBassets", + "inputQtys": [ + "637327178087102808064", + "695154411516372844544" ], - "redemptionFee": "1579460646265390", + "expectedQty": "1327343139898830559627", + "swapFee": "796884014347907080", "reserves": [ - "3623006747026912242450399", - "2991388252900313898214369" + "2746889781600293060469567", + "987240643065318179381562" ], - "LPTokenSupply": "6549467968430967906608543" + "LPTokenSupply": "3709916294368149128491315" }, { "type": "redeemMasset", - "inputQty": "11397007782914640209510", + "inputQty": "978996969692541327769", "expectedQtys": [ - "6300765410361725030235", - "5202318667582841223163" + "724432316244608722774", + "260363204427506381959" ], - "redemptionFee": "6838204669748784125", + "redemptionFee": "587398181815524796", "reserves": [ - "3616705981616550517420164", - "2986185934232731056991206" + "2746165349284048451746793", + "986980279860890672999603" ], - "LPTokenSupply": "6538071644468520241277445" + "LPTokenSupply": "3708937356138274768716025" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "9264173292398784282624", - "expectedQty": "9167846907427597415166", - "reserves": [ - "3625970154908949301702788", - "2986185934232731056991206" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "208545016265922056290304", - "expectedQty": "210591005965244455646412", - "swapFee": "125127009759553233774", - "reserves": [ - "3415379148943704846056376", - "2986185934232731056991206" + "type": "redeemMasset", + "inputQty": "48453344701304883", + "expectedQtys": [ + "35854221025812387", + "12886117404211066" ], - "LPTokenSupply": "6338706987811001737725684" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "46736218350836170752", - "expectedQty": "46257963707045615206", + "redemptionFee": "29072006820782", "reserves": [ - "3415425885162055682227128", - "2986185934232731056991206" - ] + "2746165313429827425934406", + "986980266974773268788537" + ], + "LPTokenSupply": "3708937307687837268093220" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1156548117151975866368", - "expectedQty": "1144712450846138107074", + "type": "mintMulti", + "inputQtys": [ + "92243668430743152885760", + "39149035391616439812096" + ], + "expectedQty": "130585501729366778789971", "reserves": [ - "3416582433279207658093496", - "2986185934232731056991206" - ] + "2838408981860570578820166", + "1026129302366389708600633" + ], + "LPTokenSupply": "3839522809417204046883191" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "43096534176779001856", - "expectedQty": "43476948413072398121", - "swapFee": "25857920506067401", + "inputIndex": 0, + "inputQty": "7765137376373180989440", + "expectedQty": "7832155927647967204035", + "swapFee": "4659082425823908593", "reserves": [ - "3416582433279207658093496", - "2986142457284317984593085" + "2830576825932922611616131", + "1026129302366389708600633" ], - "LPTokenSupply": "6339854864277170193052848" + "LPTokenSupply": "3831758137949073448284610" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2199932416088176128", - "5151911272138351616" + "27854559716887878434816", + "90687705800558981939200" ], - "expectedQty": "7281187017112036019", + "expectedQty": "118415695642297959495387", + "swapFee": "71092072628956149386", "reserves": [ - "3416584633211623746269624", - "2986147609195590122944701" + "2802722266216034733181315", + "935441596565830726661433" ], - "LPTokenSupply": "6339862145464187305088867" + "LPTokenSupply": "3713278459441409428254774" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "50344212537062834831360", - "outputIndex": 1, - "expectedQty": "50253365467283670090026", - "swapFee": "39862261672971023105", - "reserves": [ - "3466928845748686581100984", - "2935894243728306452854675" + "type": "redeemMasset", + "inputQty": "6758703346400034501427", + "expectedQtys": [ + "5098298688199171944726", + "1701617289071376501602" ], - "LPTokenSupply": "6339866131690354602191177", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "20890759649736978857984", - "expectedQty": "21096123853173770579191", - "swapFee": "12534455789842187314", + "redemptionFee": "4055222007840020700", "reserves": [ - "3445832721895512810521793", - "2935894243728306452854675" + "2797623967527835561236589", + "933739979276759350159831" ], - "LPTokenSupply": "6318976625486196607551924" + "LPTokenSupply": "3706520161617210177755417" }, { "type": "mint", "inputIndex": 0, - "inputQty": "248633879185575411712", - "expectedQty": "246067674474535895768", + "inputQty": "777271844408751030272", + "expectedQty": "769833971981101833462", "reserves": [ - "3446081355774698385933505", - "2935894243728306452854675" + "2798401239372244312266861", + "933739979276759350159831" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1468343909063478", - "2364436449807100" + "30922169428839873118208", + "13931267160831491571712" ], - "expectedQty": "3795731719439772", + "expectedQty": "44586405769741249855088", + "swapFee": "26767904204367370335", "reserves": [ - "3446081357243042294996983", - "2935894246092742902661775" + "2767479069943404439148653", + "919808712115927858588119" ], - "LPTokenSupply": "6319222696956402862887464" + "LPTokenSupply": "3662679498705666099100488" }, { - "type": "redeemMasset", - "inputQty": "777543383136477170892", - "expectedQtys": [ - "423765738104122474114", - "361027864178597320493" - ], - "redemptionFee": "466526029881886302", + "type": "mint", + "inputIndex": 1, + "inputQty": "151164868939646468096", + "expectedQty": "151485045424046552848", "reserves": [ - "3445657591504938172522869", - "2935533218228564305341282" - ], - "LPTokenSupply": "6318445200225869373905202" + "2767479069943404439148653", + "919959876984867505056215" + ] }, { - "type": "swap", + "type": "mint", + "inputIndex": 0, + "inputQty": "5181992876160285933568", + "expectedQty": "5132244402617655784517", + "reserves": [ + "2772661062819564725082221", + "919959876984867505056215" + ] + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "18275512109055573229568", - "outputIndex": 0, - "expectedQty": "18294401106367248896520", - "swapFee": "0", + "inputQty": "296633205466824320", + "expectedQty": "295820548263773791", + "swapFee": "177979923280094", "reserves": [ - "3427363190398570923626349", - "2953808730337619878570850" + "2772661062819564725082221", + "919959581164319241282424" ], - "LPTokenSupply": "6318445200225869373905202", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3667962931538300326941542" }, { "type": "mintMulti", "inputQtys": [ - "22424353867975274528768", - "26725137749898208215040" + "13731018690032371236864", + "275692521857901756416" ], - "expectedQty": "48670230998900058668283", + "expectedQty": "13875263155098560336231", "reserves": [ - "3449787544266546198155117", - "2980533868087518086785890" + "2786392081509597096319085", + "920235273686177143038840" ], - "LPTokenSupply": "6367115431224769432573485" + "LPTokenSupply": "3681838194693398887277773" }, { "type": "mint", "inputIndex": 1, - "inputQty": "5300451298020070260736", - "expectedQty": "5251084806624132656785", + "inputQty": "110607267324518603948032", + "expectedQty": "110760139262254016028423", "reserves": [ - "3449787544266546198155117", - "2985834319385538157046626" + "2786392081509597096319085", + "1030842541010695746986872" ] }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "21393275997367077699584", + "expectedQty": "21198734538681469529955", + "reserves": [ + "2807785357506964174018669", + "1030842541010695746986872" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "38721366872571173142528", - "290907172733440158072832" + "1095480469341531", + "643835483108150" ], - "expectedQty": "326563257895117337275399", - "swapFee": "196055588089924356979", + "expectedQty": "1729804268439010", "reserves": [ - "3411066177393975025012589", - "2694927146652097998973794" + "2807785358602444643360200", + "1030842541654531230095022" ], - "LPTokenSupply": "6045626808106995296033588" + "LPTokenSupply": "3813797070224138641275161" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "213879090557288022016", - "expectedQty": "216037335579293665342", - "swapFee": "128327454334372813", + "inputQty": "305875741639805071523840", + "expectedQty": "303011405896996920152000", "reserves": [ - "3410850140058395731347247", - "2694927146652097998973794" - ], - "LPTokenSupply": "6045412941849183441448853" + "3113661100242249714884040", + "1030842541654531230095022" + ] }, { - "type": "redeemMasset", - "inputQty": "22134755505741517291520", - "expectedQtys": [ - "12481039036100471822480", - "9861321821730882899046" - ], - "redemptionFee": "13280853303444910374", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7970660219278079", + "expectedQty": "7948556528234697", + "swapFee": "4782396131566", "reserves": [ - "3398369101022295259524767", - "2685065824830367116074748" + "3113661100242249714884040", + "1030842533705974701860325" ], - "LPTokenSupply": "6023279514428772268648370" + "LPTokenSupply": "4116808468150953581762238" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6049094855461267570688", - "2536685124158522130432" + "16260540461233643454464", + "40367156666805050671104" ], - "expectedQty": "8498896447559462798178", + "expectedQty": "56568812275733209691522", + "swapFee": "33961664364058360831", "reserves": [ - "3404418195877756527095455", - "2687602509954525638205180" + "3097400559781016071429576", + "990475377039169651189221" ], - "LPTokenSupply": "6031778410876331731446548" + "LPTokenSupply": "4060209090377292719545967" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "944862895416224", - "expectedQty": "952873890918133", - "swapFee": "566917737249", + "type": "mint", + "inputIndex": 0, + "inputQty": "2084362110585025331200", + "expectedQty": "2063924238005272553580", + "reserves": [ + "3099484921891601096760776", + "990475377039169651189221" + ] + }, + { + "type": "redeemMasset", + "inputQty": "6516542010420219904", + "expectedQtys": [ + "4969091165789055028", + "1587929146296086135" + ], + "redemptionFee": "3909925206252131", "reserves": [ - "3404418195877756527095455", - "2687602509001651747287047" + "3099479952800435307705748", + "990473789110023355103086" ], - "LPTokenSupply": "6031778409931525527804048" + "LPTokenSupply": "4062266498464280092504856" }, { "type": "mintMulti", "inputQtys": [ - "20251479683350831038464", - "2388493996625775558656" + "296597677488447040", + "870323194796538112" ], - "expectedQty": "22403902243727714130328", + "expectedQty": "1166393092252633289", "reserves": [ - "3424669675561107358133919", - "2689991002998277522845703" + "3099480249398112796152788", + "990474659433218151641198" ], - "LPTokenSupply": "6054182312175253241934376" + "LPTokenSupply": "4062267664857372345138145" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "69102676465053786112", - "outputIndex": 1, - "expectedQty": "68934378914102695093", - "swapFee": "54695914539417206", + "inputQty": "95738964286362194280448", + "expectedQty": "94792263447228111180496", "reserves": [ - "3424738778237572411920031", - "2689922068619363420150610" - ], - "LPTokenSupply": "6054182317644844695876096", - "hardLimitError": false, - "insufficientLiquidityError": false + "3195219213684474990433236", + "990474659433218151641198" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "27108955971778762506240", - "expectedQty": "27337690269112936055751", - "swapFee": "16265373583067257503", + "inputIndex": 0, + "inputQty": "21795240252611613425664", + "expectedQty": "22001093365119179458290", + "swapFee": "13077144151566968055", "reserves": [ - "3424738778237572411920031", - "2662584378350250484094859" + "3173218120319355810974946", + "990474659433218151641198" ], - "LPTokenSupply": "6027074988210424240095606" + "LPTokenSupply": "4135265995766403999589782" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "21323894314427772928", - "expectedQty": "21097041429873744776", + "inputIndex": 1, + "inputQty": "1278878284171761", + "expectedQty": "1282880058761359", "reserves": [ - "3424760102131886839692959", - "2662584378350250484094859" + "3173218120319355810974946", + "990474660712096435812959" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1678897266163616841728", - "outputIndex": 0, - "expectedQty": "1681765839084295033873", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "418375997572854710272", + "expectedQty": "422320600549754974548", + "swapFee": "251025598543712826", "reserves": [ - "3423078336292802544659086", - "2664263275616414100936587" + "3172795799718806056000398", + "990474660712096435812959" ], - "LPTokenSupply": "6027096085251854113840382", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4134847646154271058012151" }, { - "type": "redeemMasset", - "inputQty": "377825261903161747046", - "expectedQtys": [ - "214456424015928170045", - "166916534941018018266" - ], - "redemptionFee": "226695157141897048", + "type": "mint", + "inputIndex": 1, + "inputQty": "38964132411141", + "expectedQty": "39085964707692", "reserves": [ - "3422863879868786616489041", - "2664096359081473082918321" - ], - "LPTokenSupply": "6026718282659466666283040" + "3172795799718806056000398", + "990474660751060568224100" + ] }, { - "type": "redeemMasset", - "inputQty": "3199921366708259704012", - "expectedQtys": [ - "1816299188708213741522", - "1413668853178490378641" + "type": "redeemBassets", + "inputQtys": [ + "62423285886523310866432", + "8694911601434707361792" ], - "redemptionFee": "1919952820024955822", + "expectedQty": "70526269106621375993224", + "swapFee": "42341166163671028212", "reserves": [ - "3421047580680078402747519", - "2662682690228294592539680" + "3110372513832282745133966", + "981779749149625860862308" ], - "LPTokenSupply": "6023518553288040409074610" + "LPTokenSupply": "4064283270037188342801227" }, { - "type": "redeemBassets", - "inputQtys": [ - "9848921620777216000", - "768121433039712896" - ], - "expectedQty": "10505423175532029640", - "swapFee": "6307038128196135", + "type": "swap", + "inputIndex": 1, + "inputQty": "34338568207554777710592", + "outputIndex": 0, + "expectedQty": "34765715075373681922322", + "swapFee": "0", "reserves": [ - "3421037731758457625531519", - "2662681922106861552826784" + "3075606798756909063211644", + "1016118317357180638572900" ], - "LPTokenSupply": "6023508042188530561668447" + "LPTokenSupply": "4064283270037188342801227", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "2962468046082775552", - "27663921377549094912" - ], - "expectedQty": "30347322290252438365", + "type": "redeem", + "inputIndex": 0, + "inputQty": "38965106046962424086528", + "expectedQty": "39319738074973081323944", + "swapFee": "23379063628177454451", "reserves": [ - "3421040694226503708307071", - "2662709586028239101921696" + "3036287060681935981887700", + "1016118317357180638572900" ], - "LPTokenSupply": "6023538389510820814106812" + "LPTokenSupply": "4025320501896588736460144" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "83702860233375648", - "expectedQty": "84407995244901608", - "swapFee": "50221716140025", + "inputQty": "6626807718571363328", + "expectedQty": "6609680700690637693", + "swapFee": "3976084631142817", "reserves": [ - "3421040694226503708307071", - "2662709501620243857020088" + "3036287060681935981887700", + "1016111707676479947935207" ], - "LPTokenSupply": "6023538305812982752345166" + "LPTokenSupply": "4025313875486478628211097" }, { - "type": "redeemBassets", - "inputQtys": [ - "3904945901497784832", - "2779910505744499712" - ], - "expectedQty": "6618449245882132963", - "swapFee": "3973453619701100", + "type": "redeem", + "inputIndex": 0, + "inputQty": "368142364272108765184", + "expectedQty": "371482492760491065429", + "swapFee": "220885418563265259", "reserves": [ - "3421036789280602210522239", - "2662706721709738112520376" + "3035915578189175490822271", + "1016111707676479947935207" ], - "LPTokenSupply": "6023531683787628612481212" + "LPTokenSupply": "4024945755210748375772438" }, { - "type": "mintMulti", - "inputQtys": [ - "315878074637532004352", - "110628831434065100800" - ], - "expectedQty": "422157445376880556459", + "type": "redeem", + "inputIndex": 1, + "inputQty": "8815843999948359073792", + "expectedQty": "8792497344721059656681", + "swapFee": "5289506399969015444", "reserves": [ - "3421352667355239742526591", - "2662817350541172177621176" + "3035915578189175490822271", + "1007319210331758888278526" ], - "LPTokenSupply": "6023953841233005493037671" + "LPTokenSupply": "4016130440161440013600190" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "11063655143302240403456", - "outputIndex": 0, - "expectedQty": "11082224914072224765208", - "swapFee": "0", + "inputQty": "985150739181284", + "expectedQty": "987238239595500", "reserves": [ - "3410270442441167517761383", - "2673881005684474418024632" - ], - "LPTokenSupply": "6023953841233005493037671", - "hardLimitError": false, - "insufficientLiquidityError": false + "3035915578189175490822271", + "1007319211316909627459810" + ] }, { "type": "redeemMasset", - "inputQty": "6168911787989960294", + "inputQty": "48426059215128454758", "expectedQtys": [ - "3490238386983723491", - "2736581243564408673" + "36584772147729073374", + "12138856591012531110" ], - "redemptionFee": "3701347072793976", + "redemptionFee": "29055635529077072", "reserves": [ - "3410266952202780534037892", - "2673878269103230853615959" + "3035878993417027761748897", + "1007307072460318614928700" ], - "LPTokenSupply": "6023947672691352210356774" + "LPTokenSupply": "4016082017995026677648639" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2533546579012195713024", - "expectedQty": "2554960000041843084348", - "swapFee": "1520127947407317427", + "type": "mint", + "inputIndex": 0, + "inputQty": "1761603532657934848", + "expectedQty": "1744637561457995952", "reserves": [ - "3410266952202780534037892", - "2671323309103189010531611" - ], - "LPTokenSupply": "6021414278125134755375492" + "3035880755020560419683745", + "1007307072460318614928700" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1046963454213977669632", - "3390308958035494043648" + "type": "mint", + "inputIndex": 0, + "inputQty": "419533556601638720", + "expectedQty": "415493035871927529", + "reserves": [ + "3035881174554117021322465", + "1007307072460318614928700" + ] + }, + { + "type": "redeemMasset", + "inputQty": "16237144057707091", + "expectedQtys": [ + "12266790576168846", + "4070127977119942" ], - "expectedQty": "4395736975346527276748", - "swapFee": "2639025600568257320", + "redemptionFee": "9742286434624", "reserves": [ - "3409219988748566556368260", - "2667933000145153516487963" + "3035881162287326445153619", + "1007307068390190637808758" ], - "LPTokenSupply": "6017016166026747716667155" + "LPTokenSupply": "4016084161889454178508491" }, { "type": "swap", "inputIndex": 0, - "inputQty": "15250373566686977589248", + "inputQty": "7865146225705766912", "outputIndex": 1, - "expectedQty": "15212279572772896805863", - "swapFee": "12070658530860684268", + "expectedQty": "7766707371955376353", + "swapFee": "6231517662467169", "reserves": [ - "3424470362315253533957508", - "2652720720572380619682100" + "3035889027433552150920531", + "1007299301682818682432405" ], - "LPTokenSupply": "6017017373092600802735581", + "LPTokenSupply": "4016084162512605944755207", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10831055176384259293184", - "expectedQty": "10922025085466374447654", - "swapFee": "6498633105830555575", + "type": "mint", + "inputIndex": 0, + "inputQty": "563939216348220948480", + "expectedQty": "558507629687695623035", "reserves": [ - "3424470362315253533957508", - "2641798695486914245234446" - ], - "LPTokenSupply": "6006186967779527126497954" + "3036452966649900371869011", + "1007299301682818682432405" + ] }, { "type": "redeemMasset", - "inputQty": "3381900128032734681497", + "inputQty": "94904531441191144652", "expectedQtys": [ - "1927057563941134742780", - "1486623512520625308767" + "71701733464205572758", + "23786011784541940184" ], - "redemptionFee": "2029140076819640808", + "redemptionFee": "56942718864714686", "reserves": [ - "3422543304751312399214728", - "2640312071974393619925679" + "3036381264916436166296253", + "1007275515671034140492221" ], - "LPTokenSupply": "6002805270565502073780537" + "LPTokenSupply": "4016547771305124335705058" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "27938983500746323918848", - "57049735079141832654848" + "57797541992199176192", + "981754556274412224512" ], - "expectedQty": "84181052984247552170365", + "expectedQty": "1041085713835665587348", + "swapFee": "625026444167900092", "reserves": [ - "3450482288252058723133576", - "2697361807053535452580527" + "3036323467374443967120061", + "1006293761114759728267709" ], - "LPTokenSupply": "6086986323549749625950902" + "LPTokenSupply": "4015506123067488919007626" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "507739261627432828928", - "expectedQty": "503184719796410482542", + "inputIndex": 0, + "inputQty": "1097400787438379", + "expectedQty": "1086825126039032", "reserves": [ - "3450482288252058723133576", - "2697869546315162885409455" + "3036323468471844754558440", + "1006293761114759728267709" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "54972077263665078730752", - "expectedQty": "55434083828437311183284", - "swapFee": "32983246358199047238", - "reserves": [ - "3450482288252058723133576", - "2642435462486725574226171" - ], - "LPTokenSupply": "6032520729330516777607415" - }, - { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "22479109219022", - "expectedQty": "22667186522754", - "swapFee": "13487465531", + "inputQty": "183786493535966887936", + "expectedQty": "184178899726401372823", "reserves": [ - "3450482288252058723133576", - "2642435462464058387703417" - ], - "LPTokenSupply": "6032520729308039017134946" + "3036323468471844754558440", + "1006477547608295695155645" + ] }, { "type": "mintMulti", "inputQtys": [ - "75079299372150853468160", - "47909026594743287545856" + "993587689554237456384", + "1320663130633750446080" ], - "expectedQty": "121759332879265785864521", + "expectedQty": "2307486951014124167629", "reserves": [ - "3525561587624209576601736", - "2690344489058801675249273" + "3037317056161398992014824", + "1007798210738929445601725" ], - "LPTokenSupply": "6154280062187304802999467" + "LPTokenSupply": "4017997790005054570587110" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "146720141521573330944", - "expectedQty": "148218789594232295505", - "swapFee": "88032084912943998", + "inputQty": "1170653828596763852800", + "outputIndex": 1, + "expectedQty": "1155984438837313125539", + "swapFee": "927502431612262466", "reserves": [ - "3525413368834615344306231", - "2690344489058801675249273" + "3038487709989995755867624", + "1006642226300092132476186" ], - "LPTokenSupply": "6154133350848991720962922" + "LPTokenSupply": "4017997882755297731813356", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "451508910625446035456", + "expectedQty": "452474463885568230646", + "reserves": [ + "3038487709989995755867624", + "1007093735210717578511642" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "26387166281772261376", - "expectedQty": "26104693097747439397", + "inputQty": "6356324874044115517440", + "expectedQty": "6295036367506923586893", "reserves": [ - "3525439756000897116567607", - "2690344489058801675249273" + "3044844034864039871385064", + "1007093735210717578511642" ] }, { "type": "mintMulti", "inputQtys": [ - "1728975928747346886656", - "2169437369020746825728" + "733597298432439615488", + "1692249408270966980608" ], - "expectedQty": "3860643689448134263571", + "expectedQty": "2422420822946880564389", "reserves": [ - "3527168731929644463454263", - "2692513926427822422075001" + "3045577632162472311000552", + "1008785984618988545492250" ], - "LPTokenSupply": "6158020099231537602665890" + "LPTokenSupply": "4027167814409637104195284" }, { "type": "redeemBassets", "inputQtys": [ - "895441642781060628480", - "433389174103606820864" + "607736254611377356800", + "486552491987683573760" ], - "expectedQty": "1315397854266442807855", - "swapFee": "789712540083916034", + "expectedQty": "1089474414419744276056", + "swapFee": "654077094908791840", "reserves": [ - "3526273290286863402825783", - "2692080537253718815254137" + "3044969895907860933643752", + "1008299432127000861918490" ], - "LPTokenSupply": "6156703990635985084333603" + "LPTokenSupply": "4026077751325831942006571" }, { - "type": "mintMulti", - "inputQtys": [ - "216063769658561664", - "30367023039288064" - ], - "expectedQty": "243848433445678982", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1048403292099694952448", + "expectedQty": "1045518756340659278485", + "swapFee": "629041975259816971", "reserves": [ - "3526273506350633061387447", - "2692080567620741854542201" + "3044969895907860933643752", + "1007253913370660202640005" ], - "LPTokenSupply": "6156704234484418530012585" + "LPTokenSupply": "4025029410937929773035820" }, { - "type": "redeemMasset", - "inputQty": "473397418654387037798", - "expectedQtys": [ - "270977314252977007566", - "206873562318044927647" - ], - "redemptionFee": "284038451192632222", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3292914255232064028672", + "expectedQty": "3322986577471853764330", + "swapFee": "1975748553139238417", "reserves": [ - "3526002529036380084379881", - "2691873694058423809614554" + "3041646909330389079879422", + "1007253913370660202640005" ], - "LPTokenSupply": "6156230865469609262238009" + "LPTokenSupply": "4021736694257553022930989" }, { "type": "redeemMasset", - "inputQty": "218967494559765862809", + "inputQty": "4998913022686", "expectedQtys": [ - "125339141512503545710", - "95688285840674537135" + "3778418763752", + "1251238950341" ], - "redemptionFee": "131380496735859517", + "redemptionFee": "2999347813", "reserves": [ - "3525877189894867580834171", - "2691778005772583135077419" + "3041646909326610661115670", + "1007253913369408963689664" ], - "LPTokenSupply": "6156011911113099169961151" + "LPTokenSupply": "4021736694252554409843084" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "501741342414937194496", - "expectedQty": "505932746589743745545", - "swapFee": "301044805448962316", + "inputQty": "1415116826694922534912", + "outputIndex": 0, + "expectedQty": "1431935787174316523572", + "swapFee": "0", + "reserves": [ + "3040214973539436344592098", + "1008669030196103886224576" + ], + "LPTokenSupply": "4021736694252554409843084", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "173218752558083712", + "497656240465045504" + ], + "expectedQty": "670261021181738348", "reserves": [ - "3525877189894867580834171", - "2691272073025993391331874" + "3040215146758188902675810", + "1008669527852344351270080" ], - "LPTokenSupply": "6155510199875164777662886" + "LPTokenSupply": "4021737364513575591581432" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "12549198182530945122304", + "expectedQty": "12428186776183105989185", + "reserves": [ + "3052764344940719847798114", + "1008669527852344351270080" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "166630383359681003520", + "inputQty": "49533596205737549234176", "outputIndex": 0, - "expectedQty": "166937757382488184089", + "expectedQty": "50093259857506889778996", "swapFee": "0", "reserves": [ - "3525710252137485092650082", - "2691438703409353072335394" + "3002671085083212958019118", + "1058203124058081900504256" ], - "LPTokenSupply": "6155510199875164777662886", + "LPTokenSupply": "4034165551289758697570617", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "13130793150855124090880", - "9697781971349795766272" + "type": "redeemMasset", + "inputQty": "1630067695110815539", + "expectedQtys": [ + "1212548255237737403", + "427326975018374697" ], - "expectedQty": "22601908346391404652606", - "swapFee": "13569286579782712419", + "redemptionFee": "978040617066489", "reserves": [ - "3512579458986629968559202", - "2681740921438003276569122" + "3002669872534957720281715", + "1058202696731106882129559" ], - "LPTokenSupply": "6132896079170851568569101" + "LPTokenSupply": "4034163921319867648461726" }, { - "type": "mintMulti", - "inputQtys": [ - "442744362948072960", - "2321188443941865472" - ], - "expectedQty": "2738575842608140800", + "type": "mint", + "inputIndex": 0, + "inputQty": "22272914319313104", + "expectedQty": "22065044562046218", "reserves": [ - "3512579901730992916632162", - "2681743242626447218434594" - ], - "LPTokenSupply": "6132898817746694176709901" + "3002669894807872039594819", + "1058202696731106882129559" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "104452940681955033088", - "49996705845187870720" + "type": "redeemMasset", + "inputQty": "10048118085970", + "expectedQtys": [ + "7474430734688", + "2634143291492" ], - "expectedQty": "152887323079327956274", + "redemptionFee": "6028870851", "reserves": [ - "3512684354671674871665250", - "2681793239332292406305314" + "3002669894800397608860131", + "1058202696728472738838067" ], - "LPTokenSupply": "6133051705069773504666175" + "LPTokenSupply": "4034163943374864695309059" }, { - "type": "redeemBassets", - "inputQtys": [ - "10475414762745998868480", - "23117814791083172823040" - ], - "expectedQty": "33275922380991292864929", - "swapFee": "19977539952566315508", + "type": "swap", + "inputIndex": 1, + "inputQty": "122604853685282", + "outputIndex": 0, + "expectedQty": "123913657885819", + "swapFee": "0", "reserves": [ - "3502208939908928872796770", - "2658675424541209233482274" + "3002669894676483950974312", + "1058202696851077592523349" ], - "LPTokenSupply": "6099757802902824902117287" + "LPTokenSupply": "4034163943374864695309059", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "8860466381066319849062", + "inputQty": "14890806531063798169", "expectedQtys": [ - "5084232333623381478121", - "3859656516785029382451" + "11076731089666078160", + "3903668109558116630" ], - "redemptionFee": "5316279828639791909", + "redemptionFee": "8934483918638278", "reserves": [ - "3497124707575305491318649", - "2654815768024424204099823" + "3002658817945394284896152", + "1058198793182968034406719" ], - "LPTokenSupply": "6090897868149741446247415" + "LPTokenSupply": "4034149053461782023374717" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "464371446246408585216", - "expectedQty": "460255710617180232010", + "type": "mintMulti", + "inputQtys": [ + "16005139724308228079616", + "14527486602253114015744" + ], + "expectedQty": "30400797957388873899745", "reserves": [ - "3497124707575305491318649", - "2655280139470670612685039" - ] + "3018663957669702512975768", + "1072726279785221148422463" + ], + "LPTokenSupply": "4064549851419170897274462" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "223891015502003011584", - "expectedQty": "221906545337817773994", + "type": "redeemBassets", + "inputQtys": [ + "2427930123612233728", + "2180541912119958016" + ], + "expectedQty": "4588372231126023879", + "swapFee": "2754676144362231", "reserves": [ - "3497124707575305491318649", - "2655504030486172615696623" - ] + "3018661529739578900742040", + "1072724099243309028464447" + ], + "LPTokenSupply": "4064545260567731241324574" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "21059914235850579968", - "expectedQty": "20873244575411027397", + "type": "swap", + "inputIndex": 0, + "inputQty": "224207223037796220928", + "outputIndex": 1, + "expectedQty": "221695087812001165243", + "swapFee": "177698938974789045", "reserves": [ - "3497124707575305491318649", - "2655525090400408466276591" - ] + "3018885736962616696962968", + "1072502404155497027299204" + ], + "LPTokenSupply": "4064545278337625138803478", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "242419211371495989182464", + "75437908261736999288832" + ], + "expectedQty": "315688835677647475553415", + "reserves": [ + "3261304948334112686145432", + "1147940312417234026588036" + ], + "LPTokenSupply": "4380234114015272614356893" }, { "type": "mint", "inputIndex": 0, - "inputQty": "12574258463201363968", - "expectedQty": "12439384018013061225", + "inputQty": "913200224566874079232", + "expectedQty": "904671382785079585501", "reserves": [ - "3497137281833768692682617", - "2655525090400408466276591" + "3262218148558679560224664", + "1147940312417234026588036" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "54878672036086677504", - "outputIndex": 0, - "expectedQty": "54981984309520394148", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "63418312423329865728", + "133446346623501713408" + ], + "expectedQty": "196440812412360385234", "reserves": [ - "3497082299849459172288469", - "2655579969072444552954095" + "3262281566871102890090392", + "1148073758763857528301444" ], - "LPTokenSupply": "6091613343034289868342041", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4381335226210470054327628" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "39705851792481023164416", - "expectedQty": "40111553838270020849491", - "swapFee": "23823511075488613898", + "inputQty": "22443309082072", + "expectedQty": "22641306515632", + "swapFee": "13465985449", + "reserves": [ + "3262281566848461583574760", + "1148073758763857528301444" + ], + "LPTokenSupply": "4381335226188028091844100" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "287611351616415563776", + "1630463756328191393792" + ], + "expectedQty": "1917460317778595018016", + "swapFee": "1151166890801637993", "reserves": [ - "3456970746011189151438978", - "2655579969072444552954095" + "3261993955496845168010984", + "1146443295007529336907652" ], - "LPTokenSupply": "6051909873592916394039014" + "LPTokenSupply": "4379416729820047775351889" }, { "type": "swap", "inputIndex": 0, - "inputQty": "22620723435599147565056", + "inputQty": "81424286873552609607680", "outputIndex": 1, - "expectedQty": "22560813738877911627692", - "swapFee": "17902873266318847548", + "expectedQty": "80419252486215050638549", + "swapFee": "64526674694884655008", "reserves": [ - "3479591469446788299004034", - "2633019155333566641326403" + "3343418242370397777618664", + "1066024042521314286269103" ], - "LPTokenSupply": "6051911663880243025923768", + "LPTokenSupply": "4379423182487517263817389", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1887602581860105322496", - "outputIndex": 0, - "expectedQty": "1891195520062517641277", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "2862886288907690311680", + "1214571975322359562240" + ], + "expectedQty": "4052579612845088639559", "reserves": [ - "3477700273926725781362757", - "2634906757915426746648899" + "3346281128659305467930344", + "1067238614496636645831343" ], - "LPTokenSupply": "6051911663880243025923768", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4383475762100362352456948" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "210990413937304399773696", - "expectedQty": "212711312097424004005838", - "swapFee": "126594248362382639864", + "inputIndex": 0, + "inputQty": "1112394999608105", + "expectedQty": "1122787621514507", + "swapFee": "667436999764", "reserves": [ - "3477700273926725781362757", - "2422195445818002742643061" + "3346281127536517846415837", + "1067238614496636645831343" ], - "LPTokenSupply": "5840933909367774864414058" + "LPTokenSupply": "4383475760988034096548819" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2713196628533485502464", - "expectedQty": "2734858485224161851343", - "swapFee": "1627917977120091301", + "inputQty": "314458444500842756177920", + "hardLimitError": true + }, + { + "type": "redeemBassets", + "inputQtys": [ + "41583357189867692032", + "87883585293180583936" + ], + "expectedQty": "129297710902545498553", + "swapFee": "77625201662524814", "reserves": [ - "3477700273926725781362757", - "2419460587332778580791718" + "3346239544179327978723805", + "1067150730911343465247407" ], - "LPTokenSupply": "5838220875531039090920724" + "LPTokenSupply": "4383346393414450054777932" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2229202991636855914496", + "expectedQty": "2207239374173226749329", + "reserves": [ + "3348468747170964834638301", + "1067150730911343465247407" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "66879198536893259776", - "expectedQty": "67584185325524632775", - "swapFee": "40127519122135955", + "inputQty": "268118539882495997902848", + "expectedQty": "270566051328559727646683", + "swapFee": "160871123929497598741", "reserves": [ - "3477632689741400256729982", - "2419460587332778580791718" + "3077902695842405106991618", + "1067150730911343465247407" ], - "LPTokenSupply": "5838154000345254109874543" + "LPTokenSupply": "4117451180018520233384287" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "2114656381550879488", - "outputIndex": 0, - "expectedQty": "2120026040407916415", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "5198213175503168208896", + "outputIndex": 1, + "expectedQty": "5137294629349663067657", + "swapFee": "4119210784267363892", "reserves": [ - "3477630569715359848813567", - "2419462701989160131671206" + "3083100909017908275200514", + "1062013436281993802179750" ], - "LPTokenSupply": "5838154000345254109874543", + "LPTokenSupply": "4117451591939598660120676", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", + "inputQtys": [ + "3170611574532517376", + "3003880952200164352" + ], + "expectedQty": "6148936750658865675", + "reserves": [ + "3083104079629482807717890", + "1062016440162946002344102" + ], + "LPTokenSupply": "4117457740876349318986351" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "865407481609891456", + "expectedQty": "863581771021090178", + "swapFee": "519244488965934", + "reserves": [ + "3083104079629482807717890", + "1062015576581174981253924" + ], + "LPTokenSupply": "4117456875520792157991488" + }, + { + "type": "mintMulti", "inputQtys": [ - "518781136724700692480", - "277075731157450588160" + "140474998660492976", + "101199042280221392" ], - "expectedQty": "787778399876863029060", - "swapFee": "472950810412365236", + "expectedQty": "240493540467289064", "reserves": [ - "3477111788578635148121087", - "2419185626258002681083046" + "3083104220104481468210866", + "1062015677780217261475316" ], - "LPTokenSupply": "5837365796289647875716769" + "LPTokenSupply": "4117457116014332625280552" }, { "type": "redeemMasset", - "inputQty": "2036989950929822924", + "inputQty": "1824230658375845", "expectedQtys": [ - "1212634656377136382", - "843685365608870828" + "1365143219944153", + "470241483418593" ], - "redemptionFee": "1222193970557893", + "redemptionFee": "1094538395025", "reserves": [ - "3477110575943978770984705", - "2419184782572637072212218" + "3083104218739338248266713", + "1062015677309975778056723" ], - "LPTokenSupply": "5837363759421916342949634" + "LPTokenSupply": "4117457114190211420744209" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "63068632416171249893376", - "expectedQty": "63568153439808925743796", - "swapFee": "37841179449702749936", + "inputIndex": 0, + "inputQty": "20439442035972931321856", + "expectedQty": "20622619069116535644047", + "swapFee": "12263665221583758793", "reserves": [ - "3477110575943978770984705", - "2355616629132828146468422" + "3062481599670221712622666", + "1062015677309975778056723" ], - "LPTokenSupply": "5774298911123690063331251" + "LPTokenSupply": "4097018898520760647798232" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "2899164028113380704256", - "expectedQty": "2929986817022757179632", - "swapFee": "1739498416868028422", + "inputQty": "38060436963000418304", + "expectedQty": "38400994886568905260", + "swapFee": "22836262177800250", "reserves": [ - "3474180589126956013805073", - "2355616629132828146468422" + "3062443198675335143717406", + "1062015677309975778056723" ], - "LPTokenSupply": "5771399921045418369429837" + "LPTokenSupply": "4096980840367423865159953" }, { - "type": "redeemBassets", - "inputQtys": [ - "220137636882559648", - "363406629318302464" + "type": "mint", + "inputIndex": 0, + "inputQty": "2402712404669094400", + "expectedQty": "2379975245884897367", + "reserves": [ + "3062445601387739812811806", + "1062015677309975778056723" + ] + }, + { + "type": "redeemMasset", + "inputQty": "138054565694752870", + "expectedQtys": [ + "103132208256779817", + "35764887368012393" ], - "expectedQty": "578044829996935467", - "swapFee": "347035119069603", + "redemptionFee": "82832739416851", "reserves": [ - "3474180368989319131245425", - "2355616265726198828165958" + "3062445498255531556031989", + "1062015641545088410044330" ], - "LPTokenSupply": "5771399342688256765331726" + "LPTokenSupply": "4096983082296387329246135" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "11270141874147063496704", - "outputIndex": 0, - "expectedQty": "11300678406738300691466", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "4267205676350556", + "expectedQtys": [ + "3187771025762119", + "1105476878838193" + ], + "redemptionFee": "2560323405810", "reserves": [ - "3462879690582580830553959", - "2366886407600345891662662" + "3062445495067760530269870", + "1062015640439611531206137" ], - "LPTokenSupply": "5771399342688256765331726", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4096983078029437685236160" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "296908890901962948608", - "expectedQty": "300057437635501591104", - "swapFee": "178145334541177769", + "inputQty": "79857340888111562752", + "expectedQty": "80571882941189036412", + "swapFee": "47914404532866937", "reserves": [ - "3462579633144945328962855", - "2366886407600345891662662" + "3062364923184819341233458", + "1062015640439611531206137" ], - "LPTokenSupply": "5771102451611888256500894" + "LPTokenSupply": "4096903225479990026960101" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "99074549562454769664", - "162738919683151134720" + "33071788179371237310464", + "8916403187050089545728" ], - "expectedQty": "259341661614460827257", - "swapFee": "155698416018287468", + "expectedQty": "41687798896692263289266", "reserves": [ - "3462480558595382874193191", - "2366723668680662740527942" + "3095436711364190578543922", + "1070932043626661620751865" ], - "LPTokenSupply": "5770842969821699379214914" + "LPTokenSupply": "4138591024376682290249367" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "218382867174277709824", - "expectedQty": "216539857384449513730", + "inputQty": "12047355149155418767360", + "expectedQty": "12021752558227322360431", + "swapFee": "7228413089493251260", "reserves": [ - "3462480558595382874193191", - "2366942051547837018237766" - ] + "3095436711364190578543922", + "1058910291068434298391434" + ], + "LPTokenSupply": "4126544392068835820807133" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1031206774051613", - "expectedQty": "1019774196231704", + "inputIndex": 1, + "inputQty": "3461061802378119168", + "expectedQty": "3466627986917731893", "reserves": [ - "3462480559626589648244804", - "2366942051547837018237766" + "3095436711364190578543922", + "1058913752130236676510602" ] }, { "type": "mintMulti", "inputQtys": [ - "233972348868989171007488", - "28009252837604066328576" + "97338375356308078592", + "224213663477369536512" ], - "expectedQty": "259134675214711739561491", + "expectedQty": "320984546435817180407", "reserves": [ - "3696452908495578819252292", - "2394951304385441084566342" + "3095534049739546886622514", + "1059137965793714046047114" ], - "LPTokenSupply": "6030194185913569764521839" + "LPTokenSupply": "4126868843243258555719433" }, { "type": "redeemBassets", "inputQtys": [ - "3177457303266988654592", - "16500881755417694175232" + "54275769901309583425536", + "146973787822478778695680" ], - "expectedQty": "19507761427463469893785", - "swapFee": "11711683866798160832", + "expectedQty": "201098511388847711599701", + "swapFee": "120731545760765086011", "reserves": [ - "3693275451192311830597700", - "2378450422630023390391110" + "3041258279838237303196978", + "912164177971235267351434" ], - "LPTokenSupply": "6010675883970626176283304" + "LPTokenSupply": "3925661673463226155542321" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1887044129787749859328", - "expectedQty": "1907423365574824314433", - "swapFee": "1132226477872649915", + "type": "mintMulti", + "inputQtys": [ + "7243914020476153757696", + "2665490252537437618176" + ], + "expectedQty": "9845124159922858166338", "reserves": [ - "3691368027826737006283267", - "2378450422630023390391110" + "3048502193858713456954674", + "914829668223772704969610" ], - "LPTokenSupply": "6008788953063486213688967" + "LPTokenSupply": "3935506797623149013708659" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "87984891355683880960000", - "outputIndex": 0, - "expectedQty": "88240747681324208676656", - "swapFee": "0", - "reserves": [ - "3603127280145412797606611", - "2466435313985707271351110" - ], - "LPTokenSupply": "6008788953063486213688967", - "hardLimitError": false, - "insufficientLiquidityError": false + "inputIndex": 0, + "inputQty": "161724067175306583080960", + "outputIndex": 1, + "hardLimitError": true }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "37207091744026675642368", - "expectedQty": "37500229066287769806260", - "swapFee": "22324255046416005385", - "reserves": [ - "3603127280145412797606611", - "2428935084919419501544850" + "type": "redeemMasset", + "inputQty": "11941274888621536051", + "expectedQtys": [ + "9244339487810788342", + "2774147922090625914" ], - "LPTokenSupply": "5971584093744964179647137" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "315674541583804777103360", - "outputIndex": 0, - "expectedQty": "316298273924675072907427", - "swapFee": "0", + "redemptionFee": "7164764933172921", "reserves": [ - "3286829006220737724699184", - "2744609626503224278648210" + "3048492949519225646166332", + "914826894075850614343696" ], - "LPTokenSupply": "5971584093744964179647137", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3935494857064736885489900" }, { "type": "redeemMasset", - "inputQty": "36736339815376", + "inputQty": "61586086787998233", "expectedQtys": [ - "20207974593137", - "16874319137225" + "47676877070249536", + "14307426683171816" ], - "redemptionFee": "22041803889", + "redemptionFee": "36951652072798", "reserves": [ - "3286829006200529750106047", - "2744609626486349959510985" + "3048492901842348575916796", + "914826879768423931171880" ], - "LPTokenSupply": "5971584093708230044012149" + "LPTokenSupply": "3935494795482345262698946" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5108029146116980736", - "expectedQty": "5158973346370929477", - "swapFee": "3064817487670188", + "type": "redeemMasset", + "inputQty": "243143280358737", + "expectedQtys": [ + "188229402009638", + "56486048045932" + ], + "redemptionFee": "145885968215", "reserves": [ - "3286823847227183379176570", - "2744609626486349959510985" + "3048492901654119173907158", + "914826879711937883125948" ], - "LPTokenSupply": "5971578985985565675798431" + "LPTokenSupply": "3935494795239216570937030" }, { "type": "mintMulti", "inputQtys": [ - "5868732905048874", - "1741865507650401" + "6962846248419408740352", + "7052287578572503121920" ], - "expectedQty": "7533010368484678", + "expectedQty": "13969864665670407414934", "reserves": [ - "3286823853095916284225444", - "2744609628228215467161386" + "3055455747902538582647510", + "921879167290510386247868" ], - "LPTokenSupply": "5971578993518576044283109" + "LPTokenSupply": "3949464659904886978351964" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3854377937571392", - "3216657956612161" + "59684798005689933824", + "252032672012940541952" ], - "expectedQty": "7000863416814155", - "swapFee": "4203039874012", + "expectedQty": "312023068149150028391", "reserves": [ - "3286823849241538346654052", - "2744609625011557510549225" + "3055515432700544272581334", + "922131199962523326789820" ], - "LPTokenSupply": "5971578986513929891582342" + "LPTokenSupply": "3949776682973036128380355" }, { - "type": "mintMulti", - "inputQtys": [ - "3936319121366255104", - "30509270381505138688" + "type": "redeemMasset", + "inputQty": "1350158165611112929689", + "expectedQtys": [ + "1043844800623274145458", + "315024381245766910333" ], - "expectedQty": "34121532513207524028", + "redemptionFee": "810094899366667757", "reserves": [ - "3286827785560659712909156", - "2744640134281939015687913" + "3054471587899920998435876", + "921816175581277559879487" ], - "LPTokenSupply": "5971613108046443099106370" + "LPTokenSupply": "3948426605816914952117441" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "45481682668968", - "expectedQty": "45879740309587", - "swapFee": "27289009601", - "reserves": [ - "3286827785560659712909156", - "2744640134236059275378326" + "type": "redeemMasset", + "inputQty": "84072639833278368972", + "expectedQtys": [ + "64998906353883980941", + "19616173059019496893" ], - "LPTokenSupply": "5971613108000964145338362" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "56980520141626370162688", - "outputIndex": 0, - "expectedQty": "57042060927660544221766", - "swapFee": "0", + "redemptionFee": "50443583899967021", "reserves": [ - "3229785724632999168687390", - "2801620654377685645541014" + "3054406588993567114454935", + "921796559408218540382594" ], - "LPTokenSupply": "5971613108000964145338362", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3948342538221440063745171" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "373283830414534770688", - "165624006347237883904" + "2227338674323907584", + "45944310963492831232" ], - "expectedQty": "533485659102674807934", - "swapFee": "320283565600965464", + "expectedQty": "48315632962309917390", "reserves": [ - "3229412440802584633916702", - "2801455030371338407657110" + "3054408816332241438362519", + "921842503719182033213826" ], - "LPTokenSupply": "5971079334086652429661509" + "LPTokenSupply": "3948390853854402373662561" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3092799216723281920", - "3250653098535774720" + "321780941001901342720", + "2201485259775750438912" ], - "expectedQty": "6280851054581759687", - "swapFee": "3770773096607020", + "expectedQty": "2527923248932583910895", "reserves": [ - "3229409348003367910634782", - "2801451779718239871882390" + "3054730597273243339705239", + "924043988978957783652738" ], - "LPTokenSupply": "5971073049841902060955503" + "LPTokenSupply": "3950918777103334957573456" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "35960586129948727574528", - "expectedQty": "35587760113665889224498", + "inputQty": "25451426697139305054208", + "expectedQty": "25697776354052241716772", + "swapFee": "15270856018283583032", "reserves": [ - "3265369934133316638209310", - "2801451779718239871882390" - ] + "3029032820919191097988467", + "924043988978957783652738" + ], + "LPTokenSupply": "3925468877491797480877551" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2871554871927464001536", - "expectedQty": "2899943442406107537369", - "swapFee": "1722932923156478400", + "type": "mintMulti", + "inputQtys": [ + "203971797566452640", + "355065625015770112" + ], + "expectedQty": "558182828734771510", "reserves": [ - "3262469990690910530671941", - "2801451779718239871882390" + "3029033024890988664441107", + "924044344044582799422850" ], - "LPTokenSupply": "6003789427376932801826305" + "LPTokenSupply": "3925469435674626215649061" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1145976893409472413696", - "expectedQty": "1134078332601580192042", + "inputQty": "6717136318330244096", + "expectedQty": "6648884453058633777", "reserves": [ - "3263615967584320003085637", - "2801451779718239871882390" + "3029039742027306994685203", + "924044344044582799422850" ] }, { "type": "mintMulti", "inputQtys": [ - "64857617625202712576", - "324146480913058299904" + "66098451365776310272", + "43835126462278090752" ], - "expectedQty": "385292536720119934560", + "expectedQty": "109412318336223212726", "reserves": [ - "3263680825201945205798213", - "2801775926199152930182294" + "3029105840478672770995475", + "924088179171045077513602" ], - "LPTokenSupply": "6005308798246254501952907" + "LPTokenSupply": "3925585496877415497495564" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "300419715549154115584", - "expectedQty": "303080134491269885720", - "swapFee": "180251829329492469", + "type": "redeemBassets", + "inputQtys": [ + "2054690601703422296064", + "1798042077793896628224" + ], + "expectedQty": "3838035736165815948371", + "swapFee": "2304203964077936330", "reserves": [ - "3263680825201945205798213", - "2801472846064661660296574" + "3027051149876969348699411", + "922290137093251180885378" ], - "LPTokenSupply": "6005008396555888280786569" + "LPTokenSupply": "3921745387357682011404495" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "123118704137153344", - "outputIndex": 0, - "expectedQty": "123244484080872354", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "7356143919909223320780", + "expectedQtys": [ + "5674530409040335974789", + "1728931283208196104698" + ], + "redemptionFee": "4413686351945533992", "reserves": [ - "3263680701957461124925859", - "2801472969183365797449918" + "3021376619467929012724622", + "920561205810042984780680" ], - "LPTokenSupply": "6005008396555888280786569", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3914389684806407982637114" }, { "type": "mintMulti", "inputQtys": [ - "6155694759264135413760", - "7305215002033667440640" + "14144151743309153304576", + "63312603073671963082752" ], - "expectedQty": "13328521253053550386989", + "expectedQty": "77499436123733172418055", "reserves": [ - "3269836396716725260339619", - "2808778184185399464890558" + "3035520771211238166029198", + "983873808883714947863432" ], - "LPTokenSupply": "6018336917808941831173558" + "LPTokenSupply": "3991889120930141155055169" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "18856379503348161708032", + "expectedQty": "18670554834879389091577", + "reserves": [ + "3054377150714586327737230", + "983873808883714947863432" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "47768838889708060672", - "expectedQty": "48240978912638855715", - "swapFee": "28661303333824836", + "inputQty": "58358873678050387558400", + "expectedQty": "58902304029543824013731", + "swapFee": "35015324206830232535", "reserves": [ - "3269788155737812621483904", - "2808778184185399464890558" + "2995474846685042503723499", + "983873808883714947863432" ], - "LPTokenSupply": "6018289151836182456495369" + "LPTokenSupply": "3952204303619390839611599" }, { "type": "mintMulti", "inputQtys": [ - "1518831926698752344064", - "377522295650255962112" + "6997410617532414976", + "4510587927177783808" ], - "expectedQty": "1877046995142987327187", + "expectedQty": "11449412287659657760", "reserves": [ - "3271306987664511373827968", - "2809155706481049720852670" + "2995481844095660036138475", + "983878319471642125647240" ], - "LPTokenSupply": "6020166198831325443822556" + "LPTokenSupply": "3952215753031678499269359" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "73356184152325505417216", - "expectedQty": "74002269362631597983229", - "swapFee": "44013710491395303250", + "inputQty": "542044608771716032", + "expectedQty": "543226264684933603", "reserves": [ - "3271306987664511373827968", - "2735153437118418122869441" - ], - "LPTokenSupply": "5946814416050049077935665" + "2995481844095660036138475", + "983878861516250897363272" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "167089145824189546496", - "156060045309089120256" - ], - "expectedQty": "319950814592301218175", - "swapFee": "192085740199500431", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4019042208475029962752", + "expectedQty": "4056278192955289641252", + "swapFee": "2411425325085017977", "reserves": [ - "3271139898518687184281472", - "2734997377073109033749185" + "2991425565902704746497223", + "983878861516250897363272" ], - "LPTokenSupply": "5946494292358290597167101" + "LPTokenSupply": "3948197495192000662742007" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "3113028961668568186880", - "expectedQty": "3144081082342317969164", - "swapFee": "1867817377001140912", + "inputIndex": 1, + "inputQty": "10930252056832914751488", + "expectedQty": "10899218100808794717058", + "swapFee": "6558151234099748850", "reserves": [ - "3267995817436344866312308", - "2734997377073109033749185" + "2991425565902704746497223", + "972979643415442102646214" ], - "LPTokenSupply": "5943381450178359729094312" + "LPTokenSupply": "3937267898950291157965404" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "10158082747871484968960", - "expectedQty": "10247075116109650500321", - "swapFee": "6094849648722890981", + "inputIndex": 0, + "inputQty": "58901891594657128775680", + "expectedQty": "59447879085516690432977", + "swapFee": "35341134956794277265", "reserves": [ - "3267995817436344866312308", - "2724750301956999383248864" + "2931977686817188056064246", + "972979643415442102646214" ], - "LPTokenSupply": "5933223976915453116414450" + "LPTokenSupply": "3878369541469129708617450" }, { "type": "mintMulti", "inputQtys": [ - "5524889360807410", - "3452657086860082" + "67012966121966516830208", + "38364286438819347038208" ], - "expectedQty": "8887617829724231", - "reserves": [ - "3267995822961234227119718", - "2724750305409656470108946" - ], - "LPTokenSupply": "5933223985803070946138681" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "18628522551184245915648", - "expectedQty": "18791362555795837135648", - "swapFee": "11177113530710547549", + "expectedQty": "104800008085839180983577", "reserves": [ - "3267995822961234227119718", - "2705958942853860632973298" + "2998990652939154572894454", + "1011343929854261449684422" ], - "LPTokenSupply": "5914596580963239771277787" + "LPTokenSupply": "3983169549554968889601027" }, { "type": "mint", "inputIndex": 1, - "inputQty": "796985066846379776", - "expectedQty": "789613579039197749", + "inputQty": "152570024158005329920", + "expectedQty": "152839484204714132871", "reserves": [ - "3267995822961234227119718", - "2705959739838927479353074" + "2998990652939154572894454", + "1011496499878419455014342" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "68853575149345744", - "expectedQty": "68216733452175748", + "inputIndex": 0, + "inputQty": "262189373571847454720", + "expectedQty": "259658330684949203440", "reserves": [ - "3267995822961234227119718", - "2705959808692502628698818" + "2999252842312726420349174", + "1011496499878419455014342" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "16129851634285778944", - "9784549159117524992" + "37290080525198085324800", + "3063133526333162782720" ], - "expectedQty": "25654457833319972522", + "expectedQty": "39999305254137657253207", + "swapFee": "24013991547411040976", "reserves": [ - "3268011952812868512898662", - "2705969593241661746223810" + "2961962761787528335024374", + "1008433366352086292231622" ], - "LPTokenSupply": "5914623093251385582623806" + "LPTokenSupply": "3943561129523328225747251" }, { "type": "mintMulti", "inputQtys": [ - "265763104353578450944", - "311936125433276465152" + "822533090490279936", + "373327761001137600" ], - "expectedQty": "572022227181749725449", + "expectedQty": "1188560021278018465", "reserves": [ - "3268277715917222091349606", - "2706281529367095022688962" + "2961963584320618825304310", + "1008433739679847293369222" ], - "LPTokenSupply": "5915195115478567332349255" + "LPTokenSupply": "3943562318083349503765716" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "405079358369020444672", - "expectedQty": "409134129588944021644", - "swapFee": "243047615021412266", + "type": "redeemBassets", + "inputQtys": [ + "1167600025340013056", + "6954474943801352192" + ], + "expectedQty": "8122125401657312019", + "swapFee": "4876200961571330", "reserves": [ - "3267868581787633147327962", - "2706281529367095022688962" + "2961962416720593485291254", + "1008426785204903492017030" ], - "LPTokenSupply": "5914790060424959814045809" + "LPTokenSupply": "3943554191569366981039499" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "36414399759360258048", - "expectedQty": "36778894817121573890", - "swapFee": "21848639855616154", + "type": "redeemMasset", + "inputQty": "13630113597323768627", + "expectedQtys": [ + "10231293680871704780", + "3483336093950838218" + ], + "redemptionFee": "8178068158394261", "reserves": [ - "3267831802892816025754072", - "2706281529367095022688962" + "2961952185426912613586474", + "1008423301868809541178812" ], - "LPTokenSupply": "5914753648210064439349376" + "LPTokenSupply": "3943540562273576473110298" }, { "type": "mintMulti", "inputQtys": [ - "13043813057177606684672", - "34718308229171011125248" + "84557423039284068220928", + "47295683412875957764096" ], - "expectedQty": "47303570112722524158282", + "expectedQty": "131114652628462551671627", "reserves": [ - "3280875615949993632438744", - "2740999837596266033814210" + "3046509608466196681807402", + "1055718985281685498942908" ], - "LPTokenSupply": "5962057218322786963507658" + "LPTokenSupply": "4074655214902039024781925" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "67911775635504209920", - "outputIndex": 1, - "expectedQty": "67775607618297743478", - "swapFee": "53760194238575132", + "type": "redeemBassets", + "inputQtys": [ + "6326461221650200576", + "1457482591416066816" + ], + "expectedQty": "7725680017107130248", + "swapFee": "4638190924819169", "reserves": [ - "3280943527725629136648664", - "2740932061988647736070732" + "3046503282004975031606826", + "1055717527799094082876092" ], - "LPTokenSupply": "5962057223698806387365171", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4074647485047650085314423" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "7354686328382237442048", - "expectedQty": "7428074504215679230947", - "swapFee": "4412811797029342465", + "inputIndex": 1, + "inputQty": "76920781313647", + "expectedQty": "76769720838925", + "swapFee": "46152468788", "reserves": [ - "3273515453221413457417717", - "2740932061988647736070732" + "3046503282004975031606826", + "1055717527722324362037167" ], - "LPTokenSupply": "5954702978651603852857369" + "LPTokenSupply": "4074647484970733919247654" }, { "type": "mintMulti", "inputQtys": [ - "5023282329432453283840", - "21764685923086992670720" + "2015478698742138368", + "401169215616847296" ], - "expectedQty": "26532934968036040153466", + "expectedQty": "2397999979017930903", "reserves": [ - "3278538735550845910701557", - "2762696747911734728741452" + "3046505297483673773745194", + "1055717928891539978884463" ], - "LPTokenSupply": "5981235913619639893010835" + "LPTokenSupply": "4074649882970712937178557" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "22429573131016477868032", - "expectedQty": "22194918435719287699490", + "inputQty": "32015218044927079350272", + "outputIndex": 1, + "expectedQty": "31629113535986606575844", + "swapFee": "25367575108672971124", "reserves": [ - "3300968308681862388569589", - "2762696747911734728741452" - ] + "3078520515528600853095466", + "1024088815355553372308619" + ], + "LPTokenSupply": "4074652419728223804475669", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "289704352988708241408", - "expectedQty": "292245394260196786609", - "swapFee": "173822611793224944", + "inputQty": "5419496951436128813056", + "expectedQty": "5405420439149661429140", + "swapFee": "3251698170861677287", "reserves": [ - "3300968308681862388569589", - "2762404502517474531954843" + "3078520515528600853095466", + "1018683394916403710879479" ], - "LPTokenSupply": "6003141145084631651791411" + "LPTokenSupply": "4069233247946604761830341" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6126945817308952526848", - "expectedQty": "6062762031982464650321", + "inputIndex": 1, + "inputQty": "348106880927717981683712", + "expectedQty": "348124768483079370984106", "reserves": [ - "3307095254499171341096437", - "2762404502517474531954843" + "3078520515528600853095466", + "1366790275844121692563191" ] }, { - "type": "redeemMasset", - "inputQty": "66466624922069984870", - "expectedQtys": [ - "36557184010060503510", - "30536081345514284118" - ], - "redemptionFee": "39879974953241990", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1770752967508765184", + "expectedQty": "1772274911602760531", + "swapFee": "1062451780505259", "reserves": [ - "3307058697315161280592927", - "2762373966436129017670725" + "3078520515528600853095466", + "1366788503569210089802660" ], - "LPTokenSupply": "6009137444479689541781061" + "LPTokenSupply": "4417356245782961802099788" + }, + { + "type": "mintMulti", + "inputQtys": [ + "1233984193416522891264", + "2983997367267349233664" + ], + "expectedQty": "4203205039286958413159", + "reserves": [ + "3079754499722017375986730", + "1369772500936477439036324" + ], + "LPTokenSupply": "4421559450822248760512947" }, { "type": "mint", "inputIndex": 1, - "inputQty": "119864506849952968736768", - "expectedQty": "118742436271762754343090", + "inputQty": "781331435406269087744", + "expectedQty": "780177525126337367013", "reserves": [ - "3307058697315161280592927", - "2882238473286081986407493" + "3079754499722017375986730", + "1370553832371883708124068" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "244689983542658231959552", - "477262522580510040915968" - ], - "expectedQty": "714966545931230833031831", - "swapFee": "429237470040762957593", + "type": "mint", + "inputIndex": 0, + "inputQty": "5654240415614555136", + "expectedQty": "5606614156050976146", "reserves": [ - "3062368713772503048633375", - "2404975950705571945491525" - ], - "LPTokenSupply": "5412527021097184776430485" + "3079760153962432990541866", + "1370553832371883708124068" + ] }, { - "type": "redeemMasset", - "inputQty": "226923421208981667840", - "expectedQtys": [ - "128314598507168420882", - "100769552061556850665" - ], - "redemptionFee": "136154052725389000", + "type": "mint", + "inputIndex": 0, + "inputQty": "34250189322899304", + "expectedQty": "33961696262318044", "reserves": [ - "3062240399173995880212493", - "2404875181153510388640860" - ], - "LPTokenSupply": "5412300111291381067301545" + "3079760188212622313441170", + "1370553832371883708124068" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "70753581670507159552", - "expectedQty": "69993663723849468750", + "inputIndex": 1, + "inputQty": "15878509731281471488", + "expectedQty": "15855018235951215429", "reserves": [ - "3062311152755666387372045", - "2404875181153510388640860" + "3079760188212622313441170", + "1370569710881614989595556" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "12136823485353783459840", - "21175406540711467679744" + "type": "redeem", + "inputIndex": 1, + "inputQty": "4341942646320592384", + "expectedQty": "4345766999527474505", + "swapFee": "2605165587792355", + "reserves": [ + "3079760188212622313441170", + "1370565365114615462121051" ], - "expectedQty": "32988926478193221442837", - "swapFee": "19805239030334133345", + "LPTokenSupply": "4422356782259333600576430" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "10578089387929934757888", + "expectedQty": "10587035357928065491640", + "swapFee": "6346853632757960854", "reserves": [ - "3050174329270312603912205", - "2383699774612798920961116" + "3079760188212622313441170", + "1359978329756687396629411" ], - "LPTokenSupply": "5379363353761784394607446" + "LPTokenSupply": "4411779327556766941614627" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "35926606397886926848", - "expectedQty": "35540080408706217056", + "inputQty": "25559062699509575680", + "expectedQty": "25761553437979858295", + "swapFee": "15335437619705745", "reserves": [ - "3050210255876710490839053", - "2383699774612798920961116" - ] + "3079734426659184333582875", + "1359978329756687396629411" + ], + "LPTokenSupply": "4411753770027611194009521" }, { "type": "redeemBassets", "inputQtys": [ - "2074189426913705472", - "1347570759154250240" + "28901596130885292", + "12142722272968778" ], - "expectedQty": "3387179887596019076", - "swapFee": "2033528049387243", + "expectedQty": "40782813322561188", + "swapFee": "24484378620709", "reserves": [ - "3050208181687283577133581", - "2383698427042039766710876" + "3079734397757588202697583", + "1359978317613965123660633" ], - "LPTokenSupply": "5379395504832130260356906" + "LPTokenSupply": "4411753729222761930689693" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "164290453130947328", - "expectedQty": "165699950908046537", - "swapFee": "98574271878568", + "inputQty": "178440043865247547392", + "expectedQty": "178584787928446553806", + "swapFee": "107064026319148528", "reserves": [ - "3050208181687283577133581", - "2383698261342088858664339" + "3079734397757588202697583", + "1359799732826036677106827" ], - "LPTokenSupply": "5379395340551534556597434" + "LPTokenSupply": "4411575299885299315057153" }, { - "type": "mintMulti", - "inputQtys": [ - "107710793375204214046720", - "39727405967285113847808" - ], - "expectedQty": "145916188437077562668269", + "type": "mint", + "inputIndex": 1, + "inputQty": "1458746335011915431936", + "expectedQty": "1456683186493170493792", "reserves": [ - "3157918975062487791180301", - "2423425667309373972512147" - ], - "LPTokenSupply": "5525311528988612119265703" + "3079734397757588202697583", + "1361258479161048592538763" + ] }, { "type": "mintMulti", "inputQtys": [ - "662036803255967023104", - "110301835175425949696" + "48107398748488400896", + "33297073978325778432" ], - "expectedQty": "764182660065672360707", + "expectedQty": "80950627515441632991", "reserves": [ - "3158581011865743758203405", - "2423535969144549398461843" + "3079782505156336691098479", + "1361291776235026918317195" ], - "LPTokenSupply": "5526075711648677791626410" + "LPTokenSupply": "4413112933699307927183936" }, { - "type": "mintMulti", - "inputQtys": [ - "40941798161785946112", - "116832679920457646080" - ], - "expectedQty": "156276913146499929615", + "type": "mint", + "inputIndex": 1, + "inputQty": "319120543412559772909568", + "expectedQty": "318386429889774970683094", "reserves": [ - "3158621953663905544149517", - "2423652801824469856107923" - ], - "LPTokenSupply": "5526231988561824291556025" + "3079782505156336691098479", + "1680412319647586691226763" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "2353424493579723341824", - "outputIndex": 0, - "expectedQty": "2357662604069504771680", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "124989028933671206912", + "outputIndex": 1, + "expectedQty": "124308633176024696135", + "swapFee": "99224921306074257", "reserves": [ - "3156264291059836039377837", - "2426006226318049579449747" + "3079907494185270362305391", + "1680288011014410666530628" ], - "LPTokenSupply": "5526231988561824291556025", + "LPTokenSupply": "4731499373511575028474455", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6330757038564040507392", - "expectedQty": "6384609158580646551420", - "swapFee": "3798454223138424304", + "type": "mint", + "inputIndex": 0, + "inputQty": "99780280182378250240", + "expectedQty": "99015554540811009071", "reserves": [ - "3156264291059836039377837", - "2419621617159468932898327" - ], - "LPTokenSupply": "5519901611368682564891063" + "3080007274465452740555631", + "1680288011014410666530628" + ] }, { - "type": "redeemMasset", - "inputQty": "1431774301583053527449", - "expectedQtys": [ - "818193327355940886790", - "627234629081490059510" + "type": "redeemBassets", + "inputQtys": [ + "59979002096501601075200", + "66427315991406163525632" ], - "redemptionFee": "859064580949832116", + "expectedQty": "125747604973506429274611", + "swapFee": "75493859299683667765", "reserves": [ - "3155446097732480098491047", - "2418994382530387442838817" + "3020028272368951139480431", + "1613860695023004503004996" ], - "LPTokenSupply": "5518469922973557606346825" + "LPTokenSupply": "4605782839619239694907925" }, { "type": "redeemMasset", - "inputQty": "647429067634445385728", + "inputQty": "513552397318882957721", "expectedQtys": [ - "369976061663579399718", - "283627096491378789543" + "336536099847571479170", + "179840165394975055123" ], - "redemptionFee": "388457440580667231", + "redemptionFee": "308131438391329774", "reserves": [ - "3155076121670816519091329", - "2418710755433896064049274" + "3019691736269103568001261", + "1613680854857609527949873" ], - "LPTokenSupply": "5517822532751667219027820" + "LPTokenSupply": "4605269318035064651083181" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "10697070450576908615680", - "expectedQty": "10787916758303416222717", - "swapFee": "6418242270346145169", - "reserves": [ - "3155076121670816519091329", - "2407922838675592647826557" - ], - "LPTokenSupply": "5507126104125317345026656" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "5119848176573422", - "12563400841848910" - ], - "expectedQty": "17514608879024752", - "swapFee": "10515074372038", - "reserves": [ - "3155076116550968342517907", - "2407922826112191805977647" - ], - "LPTokenSupply": "5507126086601244899067068" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "92201045764379721728", - "60414292280075960320" - ], - "expectedQty": "151072214743426919629", - "swapFee": "90697747494552883", + "inputQty": "9724141286525960192", + "outputIndex": 0, + "expectedQty": "9771587438454731021", + "swapFee": "0", "reserves": [ - "3154983915505203962796179", - "2407862411819911730017327" + "3019681964681665113270240", + "1613690578998896053910065" ], - "LPTokenSupply": "5506974932758528727049843" + "LPTokenSupply": "4605269318035064651083181", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "9882695592104523988992", - "9312158188114720849920" + "type": "redeemMasset", + "inputQty": "1401243295498190028", + "expectedQtys": [ + "918246041664019641", + "490702333546063999" ], - "expectedQty": "19003897131573218086117", + "redemptionFee": "840745977298914", "reserves": [ - "3164866611097308486785171", - "2417174570008026450867247" + "3019681046435623449250599", + "1613690088296562507846066" ], - "LPTokenSupply": "5525978829890101945135960" + "LPTokenSupply": "4605267916875843750623044" }, { - "type": "mintMulti", - "inputQtys": [ - "44340795368316133376", - "32840082200204304384" + "type": "redeemMasset", + "inputQty": "719401233102785331", + "expectedQtys": [ + "471429434771014615", + "251927602459604787" ], - "expectedQty": "76404665152168561854", + "redemptionFee": "431640739861671", "reserves": [ - "3164910951892676802918547", - "2417207410090226655171631" + "3019680575006188678235984", + "1613689836368960048241279" ], - "LPTokenSupply": "5526055234555254113697814" + "LPTokenSupply": "4605267197517774721823880" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "6160831416743728128", - "expectedQty": "6224557872988846857", - "swapFee": "3696498850046236", + "inputQty": "222914214124508053504", + "expectedQty": "224520812575756084226", + "swapFee": "133748528474704832", "reserves": [ - "3164904727334803814071690", - "2417207410090226655171631" + "3019456054193612922151758", + "1613689836368960048241279" ], - "LPTokenSupply": "5526049074093487254974309" + "LPTokenSupply": "4605044296678503061240859" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3115259675825978368", - "expectedQty": "3087187924430728554", + "inputQty": "136304746259279689809920", + "expectedQty": "135872460094377552685329", "reserves": [ - "3164904727334803814071690", - "2417210525349902481149999" + "3019456054193612922151758", + "1749994582628239738051199" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "70465432102532875812864", - "expectedQty": "69826377173360812019229", + "type": "redeemBassets", + "inputQtys": [ + "21917524310233429573632", + "139310568505869110083584" + ], + "expectedQty": "160617324748787910783812", + "swapFee": "96428251800352958245", "reserves": [ - "3164904727334803814071690", - "2487675957452435356962863" - ] + "2997538529883379492578126", + "1610684014122370627967615" + ], + "LPTokenSupply": "4580212646597472385479954" }, { "type": "swap", "inputIndex": 1, - "inputQty": "167823404824783942057984", + "inputQty": "194684640761963660443648", "outputIndex": 0, - "expectedQty": "168027441224306590911898", + "expectedQty": "195454554953410717373758", "swapFee": "0", "reserves": [ - "2996877286110497223159792", - "2655499362277219299020847" + "2802083974929968775204368", + "1805368654884334288411263" ], - "LPTokenSupply": "5595878538454772497722092", + "LPTokenSupply": "4580212646597472385479954", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3277128939714479915008", - "expectedQty": "3245751440465302287206", - "reserves": [ - "2996877286110497223159792", - "2658776491216933778935855" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "30176582738036899446784", - "expectedQty": "29886983883780096637922", - "reserves": [ - "2996877286110497223159792", - "2688953073954970678382639" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1693479072311286431744", - "expectedQty": "1677191673047385819284", + "type": "redeemMasset", + "inputQty": "704290291247265559347", + "expectedQtys": [ + "430612419697284642431", + "277441422841299662607" + ], + "redemptionFee": "422574174748359335", "reserves": [ - "2996877286110497223159792", - "2690646553027281964814383" - ] + "2801653362510271490561937", + "1805091213461492988748656" + ], + "LPTokenSupply": "4579508398563642594756540" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "11232452956247523328", - "expectedQty": "11334740208659641226", - "swapFee": "6739471773748513", + "inputIndex": 0, + "inputQty": "13429515251563884", + "expectedQty": "13517975796814522", + "swapFee": "8057709150938", "reserves": [ - "2996877286110497223159792", - "2690635218287073305173157" + "2801653348992295693747415", + "1805091213461492988748656" ], - "LPTokenSupply": "5630677233673056212318027" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1263135924289166901248", - "expectedQty": "1250985027674787199250", - "reserves": [ - "2996877286110497223159792", - "2691898354211362472074405" - ] + "LPTokenSupply": "4579508385134933114107749" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "20939820769226757505024", - "expectedQty": "21130247474465817044463", - "swapFee": "12563892461536054503", + "type": "redeemMasset", + "inputQty": "1675223878168508620", + "expectedQtys": [ + "1024254167948490024", + "659921827795054575" + ], + "redemptionFee": "1005134326901105", "reserves": [ - "2996877286110497223159792", - "2670768106736896655029942" + "2801652324738127745257391", + "1805090553539665193694081" ], - "LPTokenSupply": "5610989654320750395617703" + "LPTokenSupply": "4579506710011568378289239" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "526106011293385687040", - "815114400736640237568" + "1249931095062682271744", + "4605053628540482748416" ], - "expectedQty": "1327952084410685189856", + "expectedQty": "5827629432849633089944", + "swapFee": "3498676865829277420", "reserves": [ - "2997403392121790608846832", - "2671583221137633295267510" + "2800402393643065062985647", + "1800485499911124710945665" ], - "LPTokenSupply": "5612317606405161080807559" + "LPTokenSupply": "4573675931769539498849616" }, { - "type": "redeemBassets", - "inputQtys": [ - "98529541494897262592", - "364975976031808323584" - ], - "expectedQty": "458983388392575073325", - "swapFee": "275555366255298222", + "type": "swap", + "inputIndex": 1, + "inputQty": "104467355070914560000", + "outputIndex": 0, + "expectedQty": "104798832229911518960", + "swapFee": "0", "reserves": [ - "2997304862580295711584240", - "2671218245161601486943926" + "2800297594810835151466687", + "1800589967266195625505665" ], - "LPTokenSupply": "5611858375016938875965833" + "LPTokenSupply": "4573675931769539498849616", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "537298652744337", - "497378147097899" + "27963728479955673088", + "39573941060929855488" ], - "expectedQty": "1024341214686628", + "expectedQty": "67179621827099989074", + "swapFee": "40331972279627770", "reserves": [ - "2997304863117594364328577", - "2671218245658979634041825" + "2800269631082355195793599", + "1800550393325134695650177" ], - "LPTokenSupply": "5611858376041280090652461" + "LPTokenSupply": "4573608715848937347195548" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1871297874604689152", - "1406194685101789952" + "8114992836457106767872", + "6175487769576177926144" ], - "expectedQty": "3244624487990912416", + "expectedQty": "14207797591772901636027", + "swapFee": "8529796432923495078", "reserves": [ - "2997306734415468969017729", - "2671219651853664735831777" + "2792154638245898089025727", + "1794374905555558517724033" ], - "LPTokenSupply": "5611861620665768081564877" + "LPTokenSupply": "4559393241440374814413949" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "196716737354464025903104", - "expectedQty": "198634124280170476301454", - "swapFee": "118030042412678415541", + "inputQty": "464349204740401922048", + "expectedQty": "461028690627600811406", "reserves": [ - "2798672610135298492716275", - "2671219651853664735831777" - ], - "LPTokenSupply": "5415156686315545323503327" + "2792618987450638490947775", + "1794374905555558517724033" + ] }, { "type": "redeemBassets", "inputQtys": [ - "83839941076443280", - "44994377974709512" + "2466164460413216358400", + "21989062809679386640384" ], - "expectedQty": "127539630954856850", - "swapFee": "76569720405157", + "expectedQty": "24350327572187118675370", + "swapFee": "14618967924066711231", "reserves": [ - "2798672526295357416272995", - "2671219606859286761122265" + "2790152822990225274589375", + "1772385842745879131083649" ], - "LPTokenSupply": "5415156558707001620281834" + "LPTokenSupply": "4535490785487683636509876" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "169770262921169792", - "expectedQty": "171409244783068965", - "swapFee": "101862157752701", + "inputIndex": 1, + "inputQty": "34677627170167369760768", + "expectedQty": "34792131663669590422914", + "swapFee": "20806576302100421856", "reserves": [ - "2798672354886112633204030", - "2671219606859286761122265" + "2790152822990225274589375", + "1737593711082209540660735" ], - "LPTokenSupply": "5415156388946924914887312" + "LPTokenSupply": "4500815238975146476791293" }, { - "type": "redeemMasset", - "inputQty": "4970788302135242208051", - "expectedQtys": [ - "2567471710858384651527", - "2450547940035860708476" - ], - "redemptionFee": "2982472981281145324", + "type": "redeem", + "inputIndex": 1, + "inputQty": "45219510215458016", + "expectedQty": "45366652452903210", + "swapFee": "27131706129274", "reserves": [ - "2796104883175254248552503", - "2668769058919250900413789" + "2790152822990225274589375", + "1737593665715557087757525" ], - "LPTokenSupply": "5410185898892087800793793" + "LPTokenSupply": "4500815193758349431946204" }, { "type": "redeemBassets", "inputQtys": [ - "2066885477436750561280", - "94690289545090154496" + "632176608560555", + "1881885481676454" ], - "expectedQty": "2139652779816829466581", - "swapFee": "1284562405333297658", + "expectedQty": "2502243333308302", + "swapFee": "1502247348394", "reserves": [ - "2794037997697817497991223", - "2668674368629705810259293" + "2790152822358048666028820", + "1737593663833671606081071" ], - "LPTokenSupply": "5408045090006106171359318" + "LPTokenSupply": "4500815191254754076024346" }, { "type": "mint", "inputIndex": 0, - "inputQty": "43077687673490237292544", - "expectedQty": "42639195980772982689100", + "inputQty": "334138070239427100672", + "expectedQty": "331712174532705908353", "reserves": [ - "2837115685371307735283767", - "2668674368629705810259293" + "2790486960428288093129492", + "1737593663833671606081071" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "36649644345910691364864", - "expectedQty": "36989332234793389916161", - "swapFee": "21989786607546414818", + "inputQty": "337460483204980286685184", + "expectedQty": "336014517307864653259194", "reserves": [ - "2837115685371307735283767", - "2631685036394912420343132" - ], - "LPTokenSupply": "5414036840619629217325035" + "2790486960428288093129492", + "2075054147038651892766255" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "843382100326370508800", - "460883616743709802496" + "57338805446362640941056", + "37085060496446149623808" ], - "expectedQty": "1291122531357034183076", + "expectedQty": "93866702463295658856770", + "swapFee": "56353833778244341919", "reserves": [ - "2837959067471634105792567", - "2632145920011656130145628" + "2733148154981925452188436", + "2037969086542205743142447" ], - "LPTokenSupply": "5415327963150986251508111" + "LPTokenSupply": "4743243999823455356427394" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "46614131550274772271104", + "expectedQty": "46300705866417615475966", + "reserves": [ + "2779762286532200224459540", + "2037969086542205743142447" + ] }, { "type": "redeemBassets", "inputQtys": [ - "529105114186345611264", - "1853880306888461516800" + "65102594630125346619392", + "153411691916097717534720" ], - "expectedQty": "2359473573611369300514", - "swapFee": "1416534064605584931", + "expectedQty": "217377964827539052832784", + "swapFee": "130505081945690846207", "reserves": [ - "2837429962357447760181303", - "2630292039704767668628828" + "2714659691902074877840148", + "1884557394626108025607727" ], - "LPTokenSupply": "5412967214696716737181158" + "LPTokenSupply": "4572049286288582797308988" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "201650651668502661824512", - "expectedQty": "203593275892230559625651", - "swapFee": "120990391001101597094", + "inputIndex": 1, + "inputQty": "10281342760724673331200", + "expectedQty": "10320546124748827106544", + "swapFee": "6168805656434803998", "reserves": [ - "2633836686465217200555652", - "2630292039704767668628828" + "2714659691902074877840148", + "1874236848501359198501183" ], - "LPTokenSupply": "5211328662067314185516355" + "LPTokenSupply": "4561768560408423767458187" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "1952200071978174", - "expectedQty": "1932627812922555", + "inputQty": "280753260506398962221056", + "expectedQty": "281710175301649274249004", + "swapFee": "168451956303839377332", "reserves": [ - "2633836686465217200555652", - "2630292041656967740607002" - ] + "2714659691902074877840148", + "1592526673199709924252179" + ], + "LPTokenSupply": "4281032145097655189174864" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4851443503006350311424", - "expectedQty": "4802746712401266263516", + "inputIndex": 1, + "inputQty": "4992473501168108044288", + "expectedQty": "4974525063271810027696", "reserves": [ - "2638688129968223550867076", - "2630292041656967740607002" + "2714659691902074877840148", + "1597519146700878032296467" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "162964577566996037632", - "110484161418597679104" - ], - "expectedQty": "270705456551895342506", - "reserves": [ - "2638851094545790546904708", - "2630402525818386338286106" - ], - "LPTokenSupply": "5216402116168895160044932" - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "45954209824384912", - "expectedQty": "46391463066413289", - "swapFee": "27572525894630", + "inputQty": "97083070527749033558016", + "expectedQty": "97357862121016652951601", + "swapFee": "58249842316649420134", "reserves": [ - "2638851094545790546904708", - "2630402479426923271872817" + "2714659691902074877840148", + "1500161284579861379344866" ], - "LPTokenSupply": "5216402070217442588249483" + "LPTokenSupply": "4188929424617409630586557" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "649777968342951296", - "expectedQty": "643267426647471905", + "inputQty": "11573999219075775987712", + "expectedQty": "11604370216410771402215", + "swapFee": "6944399531445465592", "reserves": [ - "2638851094545790546904708", - "2630403129204891614824113" - ] + "2714659691902074877840148", + "1488556914363450607942651" + ], + "LPTokenSupply": "4177356119838286999145404" }, { - "type": "mintMulti", - "inputQtys": [ - "60632674729063308328960", - "312717251321379170549760" - ], - "expectedQty": "369570662533704960717169", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1902210947406454063104", + "expectedQty": "1915965143221370083854", + "swapFee": "1141326568443872437", "reserves": [ - "2699483769274853855233668", - "2943120380526270785373873" + "2712743726758853507756294", + "1488556914363450607942651" ], - "LPTokenSupply": "5585973376018574196438557" + "LPTokenSupply": "4175454023023537389469543" }, { - "type": "mintMulti", - "inputQtys": [ - "341105465035108515840", - "171704938511498149888" + "type": "redeemMasset", + "inputQty": "72683811673041203", + "expectedQtys": [ + "47193490703983704", + "25896363230851916" ], - "expectedQty": "507718094657955853945", + "redemptionFee": "43610287003824", "reserves": [ - "2699824874739888963749508", - "2943292085464782283523761" + "2712743679565362803772590", + "1488556888467087377090735" ], - "LPTokenSupply": "5586481094113232152292502" + "LPTokenSupply": "4175453950344086745128722" }, { - "type": "redeemBassets", - "inputQtys": [ - "17668195224812284542976", - "40725725128805492719616" - ], - "expectedQty": "57802282282375027413956", - "swapFee": "34702190683835317638", + "type": "mint", + "inputIndex": 0, + "inputQty": "9652565671419146403840", + "expectedQty": "9577472265883605854364", "reserves": [ - "2682156679515076679206532", - "2902566360335976790804145" - ], - "LPTokenSupply": "5528647579859241673092670" + "2722396245236781950176430", + "1488556888467087377090735" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "334534277185192578777088", - "expectedQty": "337553014749447290540028", - "swapFee": "200720566311115547266", + "inputQty": "192890487421937680384", + "expectedQty": "194287416529917038052", + "swapFee": "115734292453162608", "reserves": [ - "2344603664765629388666504", - "2902566360335976790804145" + "2722201957820252033138378", + "1488556888467087377090735" ], - "LPTokenSupply": "5194133374730680205870308" + "LPTokenSupply": "4184838543695977658618962" }, { "type": "redeemBassets", "inputQtys": [ - "2270239699341876658176", - "4257406124908447531008" - ], - "expectedQty": "6460745665600055463022", - "swapFee": "3878774664158528394", - "reserves": [ - "2342333425066287512008328", - "2898308954211068343273137" + "97543282161363", + "631474065326487" ], - "LPTokenSupply": "5187669138167882407731730" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "5317441484621188431872", - "outputIndex": 1, - "expectedQty": "5320751960876664498950", - "swapFee": "4214282014114916923", + "expectedQty": "726252916315923", + "swapFee": "436013357804", "reserves": [ - "2347650866550908700440200", - "2892988202250191678774187" + "2722201957722708750977015", + "1488556887835613311764248" ], - "LPTokenSupply": "5187669559596083819223422", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4184838542969332330281014" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8915746319214068105216", - "6133392073993914155008" + "164686648096668778496", + "9944943047352496128" ], - "expectedQty": "14900073882578814737068", - "swapFee": "8945411576493184753", + "expectedQty": "173317816845942247579", "reserves": [ - "2338735120231694632334984", - "2886854810176197764619179" + "2722366644370805419755511", + "1488566832778660664260376" ], - "LPTokenSupply": "5172761434843086160620075" + "LPTokenSupply": "4185011860786178272528593" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "241171638451684480", - "expectedQty": "238920804073060614", - "reserves": [ - "2338735361403333084019464", - "2886854810176197764619179" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "191829931723063111450624", - "expectedQty": "193775092009497412159679", - "swapFee": "115097959033837866870", + "type": "mintMulti", + "inputQtys": [ + "365096414953064366080", + "470859303709235150848" + ], + "expectedQty": "831618130633608720290", "reserves": [ - "2338735361403333084019464", - "2693079718166700352459500" + "2722731740785758484121591", + "1489037692082369899411224" ], - "LPTokenSupply": "4980943251836730506016752" + "LPTokenSupply": "4185843478916811881248883" }, { "type": "mintMulti", "inputQtys": [ - "1499522791415781785600", - "1189591405148086468608" + "363659912743235026944", + "278551507590082756608" ], - "expectedQty": "2662159783094457448090", + "expectedQty": "638495599971252666207", "reserves": [ - "2340234884194748865805064", - "2694269309571848438928108" + "2723095400698501719148535", + "1489316243589959982167832" ], - "LPTokenSupply": "4983605411619824963464842" + "LPTokenSupply": "4186481974516783133915090" }, { "type": "redeemBassets", "inputQtys": [ - "5189796477930599088128", - "3040625765039031713792" + "3078418566860607", + "36590925871021072" ], - "expectedQty": "8148487808559030143875", - "swapFee": "4892027901876544012", + "expectedQty": "39529156452264314", + "swapFee": "23731732911105", "reserves": [ - "2335045087716818266716936", - "2691228683806809407214316" + "2723095397620083152287928", + "1489316206999034111146760" ], - "LPTokenSupply": "4975452520986154244431355" + "LPTokenSupply": "4186481934966268122030780" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "274877727571215319040", - "outputIndex": 1, - "expectedQty": "274918124676359601176", - "swapFee": "217789175909370974", + "type": "redeemMasset", + "inputQty": "2026661781663686380748", + "expectedQtys": [ + "1317450350876345951507", + "720540367844450961504" + ], + "redemptionFee": "1215997068998211828", "reserves": [ - "2335319965444389482035976", - "2690953765682133047613140" + "2721777947269206806336421", + "1488595666631189660185256" ], - "LPTokenSupply": "4975452542765071835368452", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4184455394784311335471214" }, { "type": "mintMulti", "inputQtys": [ - "91459224801313161216", - "29695941761570566144" + "833912381286343245824", + "11324545093361266065408" ], - "expectedQty": "119963102275715513098", + "expectedQty": "12115740956681351477110", "reserves": [ - "2335411424669190795197192", - "2690983461623894618179284" + "2722611859650493149582245", + "1499920211724550926250664" ], - "LPTokenSupply": "4975572505867347550881550" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "561344034475673664", - "expectedQty": "555423895611152198", - "reserves": [ - "2335411424669190795197192", - "2690984022967929093852948" - ] + "LPTokenSupply": "4196571135740992686948324" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "76318069650648886935552", - "expectedQty": "77081723630143863161646", - "swapFee": "45790841790389332161", + "inputQty": "14987025304864115654656", + "expectedQty": "15025977990786330231604", + "swapFee": "8992215182918469392", "reserves": [ - "2335411424669190795197192", - "2613902299337785230691302" + "2722611859650493149582245", + "1484894233733764596019060" ], - "LPTokenSupply": "4899259570724773314031412" + "LPTokenSupply": "4181585009657646863140607" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "726847575791985280", - "expectedQty": "733542422563225697", - "swapFee": "436108545475191", + "inputQty": "1407770317925067520", + "expectedQty": "1396794055593512463", "reserves": [ - "2335410691126768231971495", - "2613902299337785230691302" - ], - "LPTokenSupply": "4899258843920808376593651" + "2722613267420811074649765", + "1484894233733764596019060" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "924338788260281450496", - "expectedQty": "914666296561893242260", + "inputQty": "2013040568910485", + "expectedQty": "2006678210568070", "reserves": [ - "2335410691126768231971495", - "2614826638126045512141798" + "2722613267420811074649765", + "1484894235746805164929545" ] }, + { + "type": "mintMulti", + "inputQtys": [ + "10597886465837042237440", + "37650723181266538070016" + ], + "expectedQty": "48044836240583178994648", + "reserves": [ + "2733211153886648116887205", + "1522544958928071702999561" + ], + "LPTokenSupply": "4229631244698963846215788" + }, { "type": "redeemMasset", - "inputQty": "408288868349898391552", + "inputQty": "18042957192055259083571", "expectedQtys": [ - "194472720794983086465", - "217740054310630970399" + "11652463268774795759007", + "6491045956599135784479" ], - "redemptionFee": "244973321009939034", + "redemptionFee": "10825774315233155450", "reserves": [ - "2335216218405973248885030", - "2614608898071734881171399" + "2721558690617873321128198", + "1516053912971472567215082" ], - "LPTokenSupply": "4899765245846352472438262" + "LPTokenSupply": "4211589370084340110447762" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "896967543822742323200", - "expectedQty": "887580449590434220226", + "inputIndex": 0, + "inputQty": "3717245438780763537408", + "expectedQty": "3688518389440496705734", "reserves": [ - "2335216218405973248885030", - "2615505865615557623494599" + "2725275936056654084665606", + "1516053912971472567215082" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2954550693238151839744", - "expectedQty": "2923623404760570863841", + "inputIndex": 0, + "inputQty": "39019461201934128", + "expectedQty": "38717824923051556", "reserves": [ - "2335216218405973248885030", - "2618460416308795775334343" + "2725275975076115286599734", + "1516053912971472567215082" ] }, { "type": "redeemMasset", - "inputQty": "29758778549429174272", + "inputQty": "23329841320630240778649", "expectedQtys": [ - "14163435017604897336", - "15881353366873923910" + "15074239231042581272694", + "8385704633326871327273" ], - "redemptionFee": "17855267129657504", + "redemptionFee": "13997904792378144467", "reserves": [ - "2335202054970955643987694", - "2618444534955428901410433" + "2710201735845072705327040", + "1507668208338145695887809" ], - "LPTokenSupply": "4903546692707680761313807" + "LPTokenSupply": "4191949485661454527240849" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "4053683245716960444416", + "expectedQty": "4040309639467907077663", + "reserves": [ + "2710201735845072705327040", + "1511721891583862656332225" + ] }, { "type": "redeemBassets", "inputQtys": [ - "26012434510015", - "374367194500022" + "128216534455438744223744", + "40244908038500676272128" ], - "expectedQty": "396207500768186", - "swapFee": "237867220793", + "expectedQty": "167340039665135273321775", + "swapFee": "100464302380509469674", "reserves": [ - "2335202054944943209477679", - "2618444534581061706910411" + "2581985201389633961103296", + "1471476983545361980060097" ], - "LPTokenSupply": "4903546692311259180046906" + "LPTokenSupply": "4028559337763644702474029" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "52406548210214838272", - "expectedQty": "52929242934408077687", - "swapFee": "31443928926128902", + "inputQty": "32651588685217660928000", + "expectedQty": "32743084981440355054540", + "swapFee": "19590953211130596556", "reserves": [ - "2335202054944943209477679", - "2618391605338127298832724" + "2581985201389633961103296", + "1438733898563921625005557" ], - "LPTokenSupply": "4903494288907441857821524" + "LPTokenSupply": "3995909708173748154605684" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "14687863889799354", - "14724080849453302" + "74774919907692865650688", + "91485909452175446114304" ], - "expectedQty": "29115100509460911", - "swapFee": "17479548034497", + "expectedQty": "165371495785514279228353", "reserves": [ - "2335202040257079319678325", - "2618391590614046449379422" + "2656760121297326826753984", + "1530219808016097071119861" ], - "LPTokenSupply": "4903494259776609755129564" + "LPTokenSupply": "4161281203959262433834037" }, { - "type": "redeemMasset", - "inputQty": "436950680733918219468", - "expectedQtys": [ - "207965146127312475459", - "233185043680686944856" + "type": "redeemBassets", + "inputQtys": [ + "115096945783659294621696", + "86442126788995036741632" ], - "redemptionFee": "262170408440350931", + "expectedQty": "200355485301210040069375", + "swapFee": "120285462458200944608", "reserves": [ - "2334994075110952007202866", - "2618158405570365762434566" + "2541663175513667532132288", + "1443777681227102034378229" ], - "LPTokenSupply": "4903057335312916680945189" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "437728910885112747393024", - "expectedQty": "433038052464644468768164", - "reserves": [ - "2334994075110952007202866", - "3055887316455478509827590" - ] + "LPTokenSupply": "3960817461741840012914513" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2082375726549940830208", - "expectedQty": "2104164341511889190645", - "swapFee": "1249425435929964498", + "inputIndex": 0, + "inputQty": "5815788236145358274560", + "expectedQty": "5857467762894409944107", + "swapFee": "3489472941687214964", "reserves": [ - "2334994075110952007202866", - "3053783152113966620636945" + "2535805707750773122188181", + "1443777681227102034378229" ], - "LPTokenSupply": "5334013136993554801879594" + "LPTokenSupply": "3955002022452988823361449" }, { - "type": "redeemBassets", - "inputQtys": [ - "37715966356964400693248", - "25103288998315748753408" + "type": "redeemMasset", + "inputQty": "10766745472205827276", + "expectedQtys": [ + "6899109796313706807", + "3928053601980441778" ], - "expectedQty": "62200171477687273770270", - "swapFee": "37342508391647352673", + "redemptionFee": "6460047283323496", "reserves": [ - "2297278108753987606509618", - "3028679863115650871883537" + "2535798808640976808481374", + "1443773753173500053936451" ], - "LPTokenSupply": "5271779357258315045491917" + "LPTokenSupply": "3954991256353521345866522" }, { "type": "redeemMasset", - "inputQty": "9334929267306196159692", + "inputQty": "5244669730425121177", "expectedQtys": [ - "4065432227517205929125", - "5359774541629664668875" + "3360676860264306946", + "1913423504740709120" ], - "redemptionFee": "5600957560383717695", + "redemptionFee": "3146801838255072", "reserves": [ - "2293212676526470400580493", - "3023320088574021207214662" + "2535795447964116544174428", + "1443771839749995313227331" ], - "LPTokenSupply": "5262444988086764887703994" + "LPTokenSupply": "3954986011998471104570852" }, { "type": "mintMulti", "inputQtys": [ - "20501642913495392", - "24159650118578904" + "1060585333511650672640", + "7082252323999173312512" ], - "expectedQty": "44209245354952830", + "expectedQty": "8109877758147080637284", "reserves": [ - "2293212697028113314075885", - "3023320112733671325793566" + "2536856033297628194847068", + "1450854092073994486539843" ], - "LPTokenSupply": "5262445032296010242656824" + "LPTokenSupply": "3963095889756618185208136" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "402560283381010923520", - "expectedQty": "406785193465063428901", - "swapFee": "241536170028606554", - "reserves": [ - "2293212697028113314075885", - "3022913327540206262364665" - ], - "LPTokenSupply": "5262042496166246234593959" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "42321405544410202112", - "2243771230510055168" - ], - "expectedQty": "44154963131773873384", - "swapFee": "26508883208989717", - "reserves": [ - "2293170375622568903873773", - "3022911083768975752309497" + "type": "redeemMasset", + "inputQty": "634304380086888857", + "expectedQtys": [ + "405787156044098347", + "232073853671686424" ], - "LPTokenSupply": "5261998317345119572629828" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "110738808255831015424", - "expectedQty": "111689923762393897402", - "swapFee": "66443284953498609", + "redemptionFee": "380582628052133", "reserves": [ - "2293058685698806509976371", - "3022911083768975752309497" + "2536855627510472150748721", + "1450853860000140814853419" ], - "LPTokenSupply": "5261887585181192236964264" + "LPTokenSupply": "3963095255490296361124492" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "80420685958830480", - "expectedQty": "81264713457218878", - "swapFee": "48252411575298", + "inputQty": "1562626350935063658496", + "outputIndex": 0, + "expectedQty": "1569194519994920260330", + "swapFee": "0", "reserves": [ - "2293058685698806509976371", - "3022911002504262295090619" + "2535286432990477230488391", + "1452416486351075878511915" ], - "LPTokenSupply": "5261887504765331519291313" + "LPTokenSupply": "3963095255490296361124492", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "35447165958439720452096", - "expectedQty": "35818521569747605445270", - "swapFee": "21268299575063832271", + "inputQty": "747867821066691840", + "expectedQty": "745232239721484191", "reserves": [ - "2293058685698806509976371", - "2987092480934514689645349" - ], - "LPTokenSupply": "5226442465636849305222444" + "2535286432990477230488391", + "1452417234218896945203755" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "73953285915349", - "153294660888522" + "type": "redeemMasset", + "inputQty": "1198145227700616298496", + "expectedQtys": [ + "766022007840298365357", + "438839395620428230106" ], - "expectedQty": "224892293596049", - "swapFee": "135016385989", + "redemptionFee": "718887136620369779", "reserves": [ - "2293058685624853224061022", - "2987092480781220028756827" + "2534520410982636932123034", + "1451978394823276516973649" ], - "LPTokenSupply": "5226442465411835496879003" + "LPTokenSupply": "3961897927383549128347164" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6772340325609073803264", - "4799668745816072257536" + "171616648259021895106560", + "66891330093868436684800" ], - "expectedQty": "11457425694146063924564", - "swapFee": "6878582566027254707", + "expectedQty": "236951035724255923119906", "reserves": [ - "2286286345299244150257758", - "2982292812035403956499291" + "2706137059241658827229594", + "1518869724917144953658449" ], - "LPTokenSupply": "5214978848993380008425201" + "LPTokenSupply": "4198848963107805051467070" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "167026392747259541323776", - "74305893805704116961280" + "40540904200940533317632", + "180476235042521272549376" ], - "expectedQty": "238978695914162947284778", + "expectedQty": "220144946265791114122037", + "swapFee": "132166267519986660469", "reserves": [ - "2453312738046503691581534", - "3056598705841108073460571" + "2665596155040718293911962", + "1338393489874623681109073" ], - "LPTokenSupply": "5453957544907542955709979" + "LPTokenSupply": "3978585067201245949350609" }, { "type": "redeemMasset", - "inputQty": "2016779890482063029043", + "inputQty": "18980798491433737859891", "expectedQtys": [ - "906648627049848175011", - "1129599572494720741168" + "12709238470010005188649", + "6381297481000334837932" ], - "redemptionFee": "1210067934289237817", + "redemptionFee": "11388479094860242715", "reserves": [ - "2452406089419453843406523", - "3055469106268613352719403" + "2652886916570708288723313", + "1332012192393623346271141" ], - "LPTokenSupply": "5451940886023854321604717" + "LPTokenSupply": "3959605407557721697514989" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "353773742241602263318528", + "expectedQty": "350792340247023784255605", + "reserves": [ + "3006660658812310552041841", + "1332012192393623346271141" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "20798656060810837622784", - "outputIndex": 0, - "expectedQty": "20766668584265479582284", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "22366272664615031668736", + "outputIndex": 1, + "expectedQty": "22188098101239589155699", + "swapFee": "17737684526080050839", "reserves": [ - "2431639420835188363824239", - "3076267762329424190342187" + "3029026931476925583710577", + "1309824094292383757115442" ], - "LPTokenSupply": "5451940886023854321604717", + "LPTokenSupply": "4310399521573198089775677", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "432206650125272547328", + "expectedQty": "428416894915814562024", + "reserves": [ + "3029459138127050856257905", + "1309824094292383757115442" + ] + }, + { + "type": "redeemMasset", + "inputQty": "65365531817928412364", + "expectedQtys": [ + "45908441994108820120", + "19849082200357501080" + ], + "redemptionFee": "39219319090757047", + "reserves": [ + "3029413229685056747437785", + "1309804245210183399614362" + ], + "LPTokenSupply": "4310762576858227885001041" + }, + { + "type": "mintMulti", "inputQtys": [ - "20345520257280114688", - "10056683738619613184" + "706592973508757632", + "107893185418484384" ], - "expectedQty": "30104203923094768199", - "swapFee": "18073366373681069", + "expectedQty": "808134504302175124", "reserves": [ - "2431619075314931083709551", - "3076257705645685570729003" + "3029413936278030256195417", + "1309804353103368818098746" ], - "LPTokenSupply": "5451910765553901490523554" + "LPTokenSupply": "4310763384992732187176165" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "17451106673992679424", - "expectedQty": "17604004855233708100", - "swapFee": "10470664004395607", + "inputQty": "45762578424092973596672", + "expectedQty": "45359888522761796183910", "reserves": [ - "2431601471310075850001451", - "3076257705645685570729003" - ], - "LPTokenSupply": "5451893315494293898283690" + "3075176514702123229792089", + "1309804353103368818098746" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "16097419755695250604032", - "expectedQty": "15922513676390521573449", + "inputIndex": 0, + "inputQty": "1793281585146256640", + "expectedQty": "1777446246544284622", "reserves": [ - "2431601471310075850001451", - "3092355125401380821333035" + "3075178307983708376048729", + "1309804353103368818098746" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "215520878722103652646912", + "inputQty": "73494947189673584230400", "outputIndex": 0, - "expectedQty": "215043722303414909765616", + "expectedQty": "74014012631484877443818", "swapFee": "0", "reserves": [ - "2216557749006660940235835", - "3307876004123484473979947" + "3001164295352223498604911", + "1383299300293042402329146" ], - "LPTokenSupply": "5467815829170684419857139", + "LPTokenSupply": "4356125050961740527644697", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemMasset", + "inputQty": "3369260052378579763", + "expectedQtys": [ + "2319868192705228151", + "1069275698338468646" + ], + "redemptionFee": "2021556031427147", + "reserves": [ + "3001161975484030793376760", + "1383298231017344063860500" + ], + "LPTokenSupply": "4356121681903843752207648" + }, { "type": "redeemBassets", "inputQtys": [ - "5815195494275015680", - "4233285949738512384" + "376914639677622779904", + "536808922608208314368" ], - "expectedQty": "9950497471682395052", - "swapFee": "5973882812697055", + "expectedQty": "909432918696026839126", + "swapFee": "545987343623790377", "reserves": [ - "2216551933811166665220155", - "3307871770837534735467563" + "3000785060844353170596856", + "1382761422094735855546132" ], - "LPTokenSupply": "5467805873296718206034736" + "LPTokenSupply": "4355211757596538463957181" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9092391862477934034944", - "expectedQty": "9191433092373873746980", - "swapFee": "5455435117486760420", + "type": "redeemBassets", + "inputQtys": [ + "38375100597712502784", + "88622691173223530496" + ], + "expectedQty": "126492578183285171960", + "swapFee": "75941111576917253", "reserves": [ - "2216551933811166665220155", - "3298680337745160861720583" + "3000746685743755458094072", + "1382672799403562632015636" ], - "LPTokenSupply": "5458714026977752020675834" + "LPTokenSupply": "4355085196671354759559692" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "910257146608086679552", - "expectedQty": "920168660091425387862", - "swapFee": "546154287964852007", + "type": "mint", + "inputIndex": 0, + "inputQty": "38240522716170659299328", + "expectedQty": "37913970960068872210123", "reserves": [ - "2216551933811166665220155", - "3297760169085069436332721" - ], - "LPTokenSupply": "5457803824446572730481482" + "3038987208459926117393400", + "1382672799403562632015636" + ] }, { - "type": "redeemMasset", - "inputQty": "3848821947264322974515", - "expectedQtys": [ - "1562165907040471222950", - "2324172254733913417375" + "type": "redeemBassets", + "inputQtys": [ + "564747816690038800384", + "490623402648406196224" ], - "redemptionFee": "2309293168358593784", + "expectedQty": "1049600023107698167637", + "swapFee": "630138096722652492", "reserves": [ - "2214989767904126193997205", - "3295435996830335522915346" + "3038422460643236078593016", + "1382182176000914225819412" ], - "LPTokenSupply": "5453955233428625243366345" + "LPTokenSupply": "4391949000484028883214934" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "31379302154998", - "expectedQty": "31720982579090", - "swapFee": "18827581292", + "inputIndex": 0, + "inputQty": "12585137698797577568256", + "expectedQty": "12686139218621673864560", + "swapFee": "7551082619278546540", "reserves": [ - "2214989767904126193997205", - "3295435996798614540336256" + "3025736321424614404728456", + "1382182176000914225819412" ], - "LPTokenSupply": "5453955233397247823969476" + "LPTokenSupply": "4379364617893493233501332" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "683657298316168265728", - "expectedQty": "689163788612127293467", - "swapFee": "410194378989700959", + "inputQty": "530035859535717", + "expectedQty": "534286036672345", + "swapFee": "318021515721", "reserves": [ - "2214300604115514066703738", - "3295435996798614540336256" + "3025736320890328368056111", + "1382182176000914225819412" ], - "LPTokenSupply": "5453271617118369554673843" + "LPTokenSupply": "4379364617363489176117187" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "330785323012578242199552", - "256621008095123462946816" + "5291691939846162432", + "45807842187754651648" ], - "expectedQty": "581626261156277400695589", + "expectedQty": "50965358671851879889", + "swapFee": "30597573747359543", "reserves": [ - "2545085927128092308903290", - "3552057004893738003283072" + "3025731029198388521893679", + "1382136368158726471167764" ], - "LPTokenSupply": "6034897878274646955369432" + "LPTokenSupply": "4379313624467000951613708" }, { - "type": "redeemMasset", - "inputQty": "6953013491940879564", - "expectedQtys": [ - "2930521698314634991", - "4089991624855539252" + "type": "mintMulti", + "inputQtys": [ + "9857022748258024", + "47138132144540928" ], - "redemptionFee": "4171808095164527", + "expectedQty": "56819367908621015", "reserves": [ - "2545082996606393994268299", - "3552052914902113147743820" + "3025731039055411270151703", + "1382136415296858615708692" ], - "LPTokenSupply": "6034890925678335824006320" + "LPTokenSupply": "4379313681286368860234723" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "420745256709617216", - "355650688298555392" + "634298581276308736", + "1120770051369452800" ], - "expectedQty": "768690927733358741", - "swapFee": "461491451510921", + "expectedQty": "1747469530785897949", "reserves": [ - "2545082575861137284651083", - "3552052559251424849188428" + "3025731673353992546460439", + "1382137536066909985161492" ], - "LPTokenSupply": "6034890156572065784287749" + "LPTokenSupply": "4379315428755899646132672" }, { "type": "mintMulti", "inputQtys": [ - "1267547569514283270144", - "1464376725014179217408" + "62272562314327343104", + "32654319571147022336" ], - "expectedQty": "2704325283314679697910", + "expectedQty": "94331046762646153348", "reserves": [ - "2546350123430651567921227", - "3553516935976439028405836" + "3025793945916306873803543", + "1382170190386481132183828" ], - "LPTokenSupply": "6037594481855380463985659" + "LPTokenSupply": "4379409759802662292286020" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "362687243811565010944", - "expectedQty": "358638314695321269496", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8613840215779381248", + "expectedQty": "8682912626607980683", + "swapFee": "5168304129467628", "reserves": [ - "2546350123430651567921227", - "3553879623220250593416780" - ] + "3025785263003680265822860", + "1382170190386481132183828" + ], + "LPTokenSupply": "4379401146479276925851534" }, { - "type": "redeemBassets", - "inputQtys": [ - "1321140368850124800", - "484031500793605440" - ], - "expectedQty": "1788041650649275614", - "swapFee": "1073469071832664", + "type": "swap", + "inputIndex": 0, + "inputQty": "15770601820958729699328", + "outputIndex": 1, + "expectedQty": "15651996566508894286849", + "swapFee": "12508478942045390794", "reserves": [ - "2546348802290282717796427", - "3553879139188749799811340" + "3041555864824638995522188", + "1366518193819972237896979" ], - "LPTokenSupply": "6037951331162302971330142" + "LPTokenSupply": "4379402397327171130390613", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "154725765032986227507200", - "expectedQty": "156367710413708572947055", - "swapFee": "92835459019791736504", + "type": "redeemBassets", + "inputQtys": [ + "6666891020476523479040", + "5710428687113716236288" + ], + "expectedQty": "12309612099732569420060", + "swapFee": "7390201380667942417", "reserves": [ - "2546348802290282717796427", - "3397511428775041226864285" + "3034888973804162472043148", + "1360807765132858521660691" ], - "LPTokenSupply": "5883234849675218722996592" + "LPTokenSupply": "4367086134046195959822376" }, { "type": "redeemBassets", "inputQtys": [ - "1151395626713559", - "3010313391978404" + "27026569420228094066688", + "42981558988628798996480" ], - "expectedQty": "4118025573184561", - "swapFee": "2472298723144", + "expectedQty": "69701511732959544312354", + "swapFee": "41846014648564865506", "reserves": [ - "2546348801138887091082868", - "3397511425764727834885881" + "3007862404383934377976460", + "1317826206144229722664211" ], - "LPTokenSupply": "5883234845554968080961200" + "LPTokenSupply": "4297346960900052707131065" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "364829074379401216", + "expectedQty": "361644361413760696", + "reserves": [ + "3007862769213008757377676", + "1317826206144229722664211" + ] }, { "type": "redeemMasset", - "inputQty": "23040463745576120143052", + "inputQty": "2637833689505825449574", "expectedQtys": [ - "9966261307109022877703", - "13297662381491208255137" + "1845203704944606031038", + "808433756665919007803" ], - "redemptionFee": "13824278247345672085", + "redemptionFee": "1582700213703495269", "reserves": [ - "2536382539831778068205165", - "3384213763383236626630744" + "3006017565508064151346638", + "1317017772387563803656408" ], - "LPTokenSupply": "5860195764237216695385356" + "LPTokenSupply": "4294709647124929665791713" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "48855671786134543794176", - "outputIndex": 0, - "expectedQty": "48753152796800816802208", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "6562655780430232576", + "184812652914243174400" + ], + "expectedQty": "191025436065684525787", "reserves": [ - "2487629387034977251402957", - "3433069435169371170424920" + "3006024128163844581579214", + "1317202585040478046830808" ], - "LPTokenSupply": "5860195764237216695385356", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4294900672560995350317500" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4194883583121795584", - "expectedQty": "4230188917547343023", - "swapFee": "2516930149873077", + "type": "redeemBassets", + "inputQtys": [ + "1840648765687813898240", + "2712749817744885022720" + ], + "expectedQty": "4533047748289639443977", + "swapFee": "2721461525889317256", "reserves": [ - "2487625156846059704059934", - "3433069435169371170424920" + "3004183479398156767680974", + "1314489835222733161808088" ], - "LPTokenSupply": "5860191569605326588577079" + "LPTokenSupply": "4290365175497332410487991" }, { "type": "mint", "inputIndex": 1, - "inputQty": "5364381880563672", - "expectedQty": "5304596579462328", + "inputQty": "1921124708528543488", + "expectedQty": "1918106716956239581", "reserves": [ - "2487625156846059704059934", - "3433069440533753050988592" + "3004183479398156767680974", + "1314491756347441690351576" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "33049137951657", - "73234441462626" - ], - "expectedQty": "105171898227263", - "swapFee": "63141023550", - "reserves": [ - "2487625156813010566108277", - "3433069440460518609525966" - ], - "LPTokenSupply": "5860191574804694442890948" - }, - { - "type": "mintMulti", - "inputQtys": [ - "188680385366295419289600", - "245807942746818245296128" + "type": "redeemMasset", + "inputQty": "342476860234488191385", + "expectedQtys": [ + "239663876112168520466", + "104865828470248049840" ], - "expectedQty": "430061745188912860310083", + "redemptionFee": "205486116140692914", "reserves": [ - "2676305542179305985397877", - "3678877383207336854822094" + "3003943815522044599160508", + "1314386890518971442301736" ], - "LPTokenSupply": "6290253319993607303201031" + "LPTokenSupply": "4290024637292426492605478" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "66201288801879972642816", - "expectedQty": "66904477841235674240730", - "swapFee": "39720773281127983585", + "inputIndex": 0, + "inputQty": "792917501221817856", + "expectedQty": "799425186356790435", + "swapFee": "475750500733090", "reserves": [ - "2676305542179305985397877", - "3611972905366101180581364" + "3003943016096858242370073", + "1314386890518971442301736" ], - "LPTokenSupply": "6224056003269055443356573" + "LPTokenSupply": "4290023844422500320860931" }, { "type": "redeemBassets", "inputQtys": [ - "11615969639236083122176", - "17870484334129883119616" + "111753473162923737088", + "293479728093211623424" ], - "expectedQty": "29183405713704566181491", - "swapFee": "17520555761679747557", + "expectedQty": "403796124271635961565", + "swapFee": "242423128440045604", "reserves": [ - "2664689572540069902275701", - "3594102421031971297461748" + "3003831262623695318632985", + "1314093410790878230678312" ], - "LPTokenSupply": "6194856829055165365402279" + "LPTokenSupply": "4289619830117413088858321" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1536431023751036160", - "expectedQty": "1519404759272092220", + "inputQty": "498660665587251281920", + "expectedQty": "497877226375407848416", "reserves": [ - "2664689572540069902275701", - "3594103957462995048497908" + "3003831262623695318632985", + "1314592071456465481960232" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "6441314958986974208", + "13505500104096423936" + ], + "expectedQty": "19869309581656110665", + "swapFee": "11928742994790540", + "reserves": [ + "3003824821308736331658777", + "1314578565956361385536296" + ], + "LPTokenSupply": "4290097827298338145284585" + }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "47715419332625235968", - "expectedQty": "48221161451993661332", - "swapFee": "28629251599575141", + "inputIndex": 0, + "inputQty": "28625780815138160640", + "expectedQty": "28860699333089033237", + "swapFee": "17175468489082896", "reserves": [ - "2664689572540069902275701", - "3594055736301543054836576" + "3003795960609403242625540", + "1314578565956361385536296" ], - "LPTokenSupply": "6194810635903517172216045" + "LPTokenSupply": "4290069203235069856032234" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7235527018161499013120", - "9172761448878510702592" + "26954652859131822080", + "189154420887542398976" ], - "expectedQty": "16241181464987773411648", + "expectedQty": "215576225926188571698", + "swapFee": "129423389589466823", "reserves": [ - "2671925099558231401288821", - "3603228497750421565539168" + "3003769005956544110803460", + "1314389411535473843137320" ], - "LPTokenSupply": "6211051817368504945627693" + "LPTokenSupply": "4289853510528093036940394" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1099995405496894080", - "expectedQty": "1109372288383967857", - "swapFee": "659997243298136", + "inputIndex": 1, + "inputQty": "48331740795976187641856", + "expectedQty": "48370229076100381915683", + "swapFee": "28999044477585712585", "reserves": [ - "2671923990185943017320964", - "3603228497750421565539168" + "3003769005956544110803460", + "1266019182459373461221637" ], - "LPTokenSupply": "6211050717439099173063426" + "LPTokenSupply": "4241524669636564607869796" }, { "type": "redeemMasset", - "inputQty": "330849494474578329", + "inputQty": "5081002116927259777433", "expectedQtys": [ - "142242325622311036", - "191821175733722233" + "3596112382231135416193", + "1515678219315828818849" ], - "redemptionFee": "198509696684746", + "redemptionFee": "3048601270156355866", "reserves": [ - "2671923847943617395009928", - "3603228305929245831816935" + "3000172893574312975387267", + "1264503504240057632402788" ], - "LPTokenSupply": "6211050386609455668153571" + "LPTokenSupply": "4236443972379764363727949" }, { - "type": "redeemMasset", - "inputQty": "11089438681828466412748", - "expectedQtys": [ - "4767689158781144926230", - "6429476852049387685370" - ], - "redemptionFee": "6653663209097079847", + "type": "redeem", + "inputIndex": 0, + "inputQty": "25731860869506087780352", + "expectedQty": "25946784333255120867667", + "swapFee": "15439116521703652668", "reserves": [ - "2667156158784836250083698", - "3596798829077196444131565" + "2974226109241057854519600", + "1264503504240057632402788" ], - "LPTokenSupply": "6199961613293948111448807" + "LPTokenSupply": "4210713655421910446312863" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "30813273166120765882368", - "23309362059741627416576" + "18745872974487180279808", + "61666153825322988994560" ], - "expectedQty": "53585655607333009183058", - "swapFee": "32170695781868926865", + "expectedQty": "80154586144408806421592", "reserves": [ - "2636342885618715484201330", - "3573489467017454816714989" + "2992971982215545034799408", + "1326169658065380621397348" ], - "LPTokenSupply": "6146347004060411420231569" + "LPTokenSupply": "4290868241566319252734455" }, { - "type": "redeemMasset", - "inputQty": "21181010603184432742", - "expectedQtys": [ - "9079686248284427023", - "12307262211247964184" + "type": "redeem", + "inputIndex": 0, + "inputQty": "1438849092006409142272", + "expectedQty": "1450597173088276675787", + "swapFee": "863309455203845485", + "reserves": [ + "2991521385042456758123621", + "1326169658065380621397348" + ], + "LPTokenSupply": "4289429478805258363976731" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "117909975927633324539904", + "outputIndex": 1, + "expectedQty": "116884290674682195249629", + "swapFee": "93500537310277395985", + "reserves": [ + "3109431360970090082663525", + "1209285367390698426147719" ], - "redemptionFee": "12708606361910659", + "LPTokenSupply": "4289438828858989391716329", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "18203072537811310592", + "outputIndex": 0, + "expectedQty": "18366211561973955238", + "swapFee": "0", "reserves": [ - "2636333805932467199774307", - "3573477159755243568750805" + "3109412994758528108708287", + "1209303570463236237458311" ], - "LPTokenSupply": "6146325824320668871989892" + "LPTokenSupply": "4289438828858989391716329", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "50966878138993598464", - "622403482506176102400" + "772213182118168100864", + "552161101446426460160" ], - "expectedQty": "665999570382966501759", + "expectedQty": "1317005602863647663452", "reserves": [ - "2636384772810606193372771", - "3574099563237749744853205" + "3110185207940646276809151", + "1209855731564682663918471" ], - "LPTokenSupply": "6146991823891051838491651" + "LPTokenSupply": "4290755834461853039379781" }, { "type": "redeemMasset", - "inputQty": "8616372100426912563", + "inputQty": "3018733757065962", "expectedQtys": [ - "3693260575177326626", - "5006887137567592421" + "2186837971512709", + "850675531181558" ], - "redemptionFee": "5169823260256147", + "redemptionFee": "1811240254239", "reserves": [ - "2636381079550031016046145", - "3574094556350612177260784" + "3110185205753808305296442", + "1209855730714007132736913" ], - "LPTokenSupply": "6146983208035933737604702" + "LPTokenSupply": "4290755831443300406339242" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4364317911494971359232", - "5049851466625552744448" + "29207856747442", + "688880622536" ], - "expectedQty": "9318687034481726814014", - "swapFee": "5594568962066275853", + "expectedQty": "29625870889853", "reserves": [ - "2632016761638536044686913", - "3569044704883986624516336" + "3110185205783016162043884", + "1209855730714696013359449" ], - "LPTokenSupply": "6137659485889386151142419" + "LPTokenSupply": "4290755831472926277229095" }, { "type": "redeemMasset", - "inputQty": "5845223412133199976857", + "inputQty": "437356731384840899788", "expectedQtys": [ - "2505107231185996190147", - "3396953936214651292771" + "316830957699757626335", + "123246599311237199146" + ], + "redemptionFee": "262414038830904539", + "reserves": [ + "3109868374825316404417549", + "1209732484115384776160303" ], - "redemptionFee": "3507134047279919986", + "LPTokenSupply": "4290318500982945319419760" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "32523799295542796288", + "outputIndex": 0, + "expectedQty": "32815159019849105397", + "swapFee": "0", "reserves": [ - "2629511654407350048496766", - "3565647750947771973223565" + "3109835559666296555312152", + "1209765007914680318956591" ], - "LPTokenSupply": "6131814613190657679157560" + "LPTokenSupply": "4290318500982945319419760", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "3246090357539106816", - "2094579535223994368" + "1068739450934277701632", + "146784601233092345856" ], - "expectedQty": "5288093286373164792", + "expectedQty": "1205565247747922079657", "reserves": [ - "2629514900497707587603582", - "3565649845527307197217933" + "3110904299117230833013784", + "1209911792515913411302447" ], - "LPTokenSupply": "6131819901283944052322352" + "LPTokenSupply": "4291524066230693241499417" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "242281020125467443200", + "expectedQty": "240036133584841426910", + "reserves": [ + "3111146580137356300456984", + "1209911792515913411302447" + ] }, { "type": "redeemMasset", - "inputQty": "12578977110975353651", + "inputQty": "303686146251802332364", "expectedQtys": [ - "5391019683203633079", - "7310279358755991596" + "220013310507212493347", + "85562249169690101936" ], - "redemptionFee": "7547386266585212", + "redemptionFee": "182211687751081399", "reserves": [ - "2629509509478024383970503", - "3565642535247948441226337" + "3110926566826849087963637", + "1209826230266743721200511" ], - "LPTokenSupply": "6131807323061571703627222" + "LPTokenSupply": "4291460434439195055702102" }, { - "type": "redeemBassets", - "inputQtys": [ - "2502822544042986831872", - "3133167908214587523072" - ], - "expectedQty": "5578592620905872237485", - "swapFee": "3349165071586475227", + "type": "redeem", + "inputIndex": 1, + "inputQty": "893250660121820416", + "expectedQty": "893059438208819478", + "swapFee": "535950396073092", "reserves": [ - "2627006686933981397138631", - "3562509367339733853703265" + "3110926566826849087963637", + "1209825337207305512381033" ], - "LPTokenSupply": "6126225716192101403562031" + "LPTokenSupply": "4291459541242129973488995" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "6643433897664736919552", - "expectedQty": "6699920638897886695329", - "swapFee": "3986060338598842151", + "inputQty": "21396806657738895523840", + "outputIndex": 1, + "expectedQty": "21185583029338040017321", + "swapFee": "16958575957306496467", "reserves": [ - "2620306766295083510443302", - "3562509367339733853703265" + "3132323373484587983487477", + "1188639754177967472363712" ], - "LPTokenSupply": "6119582680900470526526694" + "LPTokenSupply": "4291461237099725704138641", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "24736597726149080409702", + "inputQty": "27576364665234862899", "expectedQtys": [ - "10585457749347370709112", - "14391747132321154101548" + "20115820689559126585", + "7633459674671510846" ], - "redemptionFee": "14841958635689448245", + "redemptionFee": "16545818799140917", "reserves": [ - "2609721308545736139734190", - "3548117620207412699601717" + "3132303257663898424360892", + "1188632120718292800852866" ], - "LPTokenSupply": "6094847567370185015061816" + "LPTokenSupply": "4291433662389642349189833" }, { - "type": "redeemBassets", - "inputQtys": [ - "526416279038599823360", - "861785381055640895488" + "type": "redeemMasset", + "inputQty": "71259476788423281868", + "expectedQtys": [ + "51980849538477376514", + "19725455149492620480" ], - "expectedQty": "1373871514630112469030", - "swapFee": "824817799457742126", + "redemptionFee": "42755686073053969", "reserves": [ - "2609194892266697539910830", - "3547255834826357058706229" + "3132251276814359946984378", + "1188612395263143308232386" ], - "LPTokenSupply": "6093472953519535390624871" + "LPTokenSupply": "4291362407188422533213361" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5554830518750421188608", - "expectedQty": "5504681267830068700177", + "type": "mintMulti", + "inputQtys": [ + "6111621831491784278016", + "124234138903448989466624" + ], + "expectedQty": "130207570634495169926466", "reserves": [ - "2614749722785447961099438", - "3547255834826357058706229" - ] + "3138362898645851731262394", + "1312846534166592297699010" + ], + "LPTokenSupply": "4421569977822917703139827" }, { "type": "redeemBassets", "inputQtys": [ - "16333762632788658176", - "4706485468950162432" + "594529092922859847680", + "478574834058372972544" ], - "expectedQty": "20840423800516199473", - "swapFee": "12511761337111986", + "expectedQty": "1067220014567931318033", + "swapFee": "640716438603921143", "reserves": [ - "2614733389022815172441262", - "3547251128340888108543797" + "3137768369552928871414714", + "1312367959332533924726466" ], - "LPTokenSupply": "6098956783102979739724786" + "LPTokenSupply": "4420502181163555028292764" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "33605968206243720855552", - "expectedQty": "33890989826122533825817", - "swapFee": "20163580923746232513", - "reserves": [ - "2580842399196692638615445", - "3547251128340888108543797" - ], - "LPTokenSupply": "6065352831254828393492485" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "31287887413517131710464", - "expectedQty": "31006116531013459980191", - "reserves": [ - "2612130286610209770325909", - "3547251128340888108543797" - ] - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "1794877105139501056", - "outputIndex": 0, - "expectedQty": "1791100982246592255", - "swapFee": "0", - "reserves": [ - "2612128495509227523733654", - "3547252923217993248044853" + "type": "redeemBassets", + "inputQtys": [ + "11132937561247055872000", + "49274576081176655560704" ], - "LPTokenSupply": "6096358947785841853472676", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "22977740606412695797760", - "outputIndex": 1, - "expectedQty": "23006465720650426322299", - "swapFee": "18215838492640334779", + "expectedQty": "60258070603402492713555", + "swapFee": "36176548291016105291", "reserves": [ - "2635106236115640219531414", - "3524246457497342821722554" + "3126635431991681815542714", + "1263093383251357269165762" ], - "LPTokenSupply": "6096360769369691117506153", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4360211551666690621084446" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1026758192747372032", - "575751266379449728" + "91143664681210626441216", + "2923284484246187016192" ], - "expectedQty": "1586793813457645952", + "expectedQty": "93239095300500858969613", + "swapFee": "55977043406344321974", "reserves": [ - "2635107262873832966903446", - "3524247033248609201172282" + "3035491767310471189101498", + "1260170098767111082149570" ], - "LPTokenSupply": "6096362356163504575152105" + "LPTokenSupply": "4266922077027124052225055" }, { "type": "redeemBassets", "inputQtys": [ - "97401573769159786496", - "173076291797505638400" - ], - "expectedQty": "267675536298902483002", - "swapFee": "160701742825036511", - "reserves": [ - "2635009861300063807116950", - "3524073956956811695533882" + "968228414331345024", + "525448626357609344" ], - "LPTokenSupply": "6096094535995637130136242" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "52962289787687164444672", - "expectedQty": "53414190992237234653965", - "swapFee": "31777373872612298666", + "expectedQty": "1484372403267510719", + "swapFee": "891158136842611", "reserves": [ - "2581595670307826572462985", - "3524073956956811695533882" + "3035490799082056857756474", + "1260169573318484724540226" ], - "LPTokenSupply": "6043135423945337226921436" + "LPTokenSupply": "4266920591852678461555985" }, { "type": "redeemBassets", "inputQtys": [ - "4444786900848453615616", - "116933434155244666880" + "103402539321129254912", + "9049848015735872512" ], - "expectedQty": "4520356525676512180626", - "swapFee": "2713842220738350318", + "expectedQty": "111511112865607128118", + "swapFee": "66946835820856790", "reserves": [ - "2577150883406978118847369", - "3523957023522656450867002" + "3035387396542735728501562", + "1260160523470468988667714" ], - "LPTokenSupply": "6038612624961662050225522" + "LPTokenSupply": "4266809020487660615656755" }, { - "type": "redeemMasset", - "inputQty": "1432057907499029338521", - "expectedQtys": [ - "610805023089827422697", - "835205522881449901922" + "type": "mintMulti", + "inputQtys": [ + "136297606999665618714624", + "136177390878738387828736" ], - "redemptionFee": "859234744499417603", + "expectedQty": "271072715108017916676126", "reserves": [ - "2576540078383888291424672", - "3523121817999775000965080" + "3171685003542401347216186", + "1396337914349207376496450" ], - "LPTokenSupply": "6037180652977637470828761" + "LPTokenSupply": "4537881735595678532332881" }, { - "type": "redeemMasset", - "inputQty": "23334836857073490198528", - "expectedQtys": [ - "9952835926771970806844", - "13609356865341905435538" + "type": "mintMulti", + "inputQtys": [ + "12677942523555452289024", + "29886291708219456749568" ], - "redemptionFee": "14000902114244094119", + "expectedQty": "42401005846585772287796", "reserves": [ - "2566587242457116320617828", - "3509512461134433095529542" + "3184362946065956799505210", + "1426224206057426833246018" ], - "LPTokenSupply": "6013847216210775405039644" + "LPTokenSupply": "4580282741442264304620677" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "22534380762332292710400", - "expectedQty": "22282953373408485088572", + "inputIndex": 0, + "inputQty": "7918719534014956306432", + "expectedQty": "7849831652715659448848", "reserves": [ - "2566587242457116320617828", - "3532046841896765388239942" + "3192281665599971755811642", + "1426224206057426833246018" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "10064106538507696128", - "expectedQty": "9973683903278517705", + "inputQty": "30111877710299201536", + "expectedQty": "30358056289343478632", + "swapFee": "18067126626179520", "reserves": [ - "2566597306563654828313956", - "3532046841896765388239942" - ] + "3192251307543682412333010", + "1426224206057426833246018" + ], + "LPTokenSupply": "4588102463023982327485941" }, { "type": "redeemBassets", "inputQtys": [ - "29455663912214333489152", - "8983579843847178420224" + "52632302396072177696768", + "54697227212097253801984" ], - "expectedQty": "38074713853662074491769", - "swapFee": "22858543438260200815", + "expectedQty": "106775357038072891779586", + "swapFee": "64103676428700955641", "reserves": [ - "2537141642651440494824804", - "3523063262052918209819718" + "3139619005147610234636242", + "1371526978845329579444034" ], - "LPTokenSupply": "5998044856725330659973417" + "LPTokenSupply": "4481269412677123604846277" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "48319054084885976", - "expectedQty": "48836983689345903", - "swapFee": "28991432450931", + "inputIndex": 0, + "inputQty": "2389543622050437398528", + "expectedQty": "2409326311756231304538", + "swapFee": "1433726173230262439", "reserves": [ - "2537141642651440494824804", - "3523063213215934520473815" + "3137209678835854003331704", + "1371526978845329579444034" ], - "LPTokenSupply": "5998044808409175718332534" + "LPTokenSupply": "4478880012427690490473992" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3929071182858726408192", - "expectedQty": "3971179637259359532760", - "swapFee": "2357442709715235844", + "type": "mint", + "inputIndex": 0, + "inputQty": "29196436338491023360", + "expectedQty": "28939370450766183490", "reserves": [ - "2537141642651440494824804", - "3519092033578675160941055" - ], - "LPTokenSupply": "5994115972970587963447926" + "3137238875272192494355064", + "1371526978845329579444034" + ] }, { "type": "redeemMasset", - "inputQty": "17323231567299516", + "inputQty": "8560065353785456302489", "expectedQtys": [ - "7328039947415995", - "10164212579691892" + "5992275598750389797143", + "2619681820578502418768" + ], + "redemptionFee": "5136039212271273781", + "reserves": [ + "3131246599673442104557921", + "1368907297024751077025266" + ], + "LPTokenSupply": "4470349400048277027482371" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "2038526447301311070208", + "1935996360576713883648" ], - "redemptionFee": "10393938940379", + "expectedQty": "3953419783532307826362", + "swapFee": "2373475955692800376", "reserves": [ - "2537141635323400547408809", - "3519092023414462581249163" + "3129208073226140793487713", + "1366971300664174363141618" ], - "LPTokenSupply": "5994115955648395790042447" + "LPTokenSupply": "4466393844136384596135669" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "174979378647899242496", - "expectedQty": "176454427653658591695", - "swapFee": "104987627188739545", + "inputQty": "1223432710259077545984", + "expectedQty": "1233564526422901499051", + "swapFee": "734059626155446527", "reserves": [ - "2536965180895746888817114", - "3519092023414462581249163" + "3127974508699717891988662", + "1366971300664174363141618" ], - "LPTokenSupply": "5993940986768510609673905" + "LPTokenSupply": "4465170484832088134134337" }, { - "type": "redeemMasset", - "inputQty": "309910671510737413734", - "expectedQtys": [ - "131092522431505948770", - "181841932042248111794" + "type": "redeemBassets", + "inputQtys": [ + "77163186495456102318080", + "37657385302204253995008" ], - "redemptionFee": "185946402906442448", + "expectedQty": "114079701020115395664507", + "swapFee": "68488913960445504701", "reserves": [ - "2536834088373315382868344", - "3518910181482420333137369" + "3050811322204261789670582", + "1329313915361970109146610" ], - "LPTokenSupply": "5993631094691640162904415" + "LPTokenSupply": "4351029143789408337515598" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "169561686926301272735744", - "expectedQty": "167650682194290284835929", + "type": "redeemBassets", + "inputQtys": [ + "21373617671886224752640", + "64121402104620253184000" + ], + "expectedQty": "85213756948348883639597", + "swapFee": "51158949538732569725", "reserves": [ - "2536834088373315382868344", - "3688471868408721605873113" - ] + "3029437704532375564917942", + "1265192513257349855962610" + ], + "LPTokenSupply": "4265769343786474594563247" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "580564688444339388416", - "expectedQty": "585334547752430725805", - "swapFee": "348338813066603633", + "type": "mintMulti", + "inputQtys": [ + "885797893033429958656", + "903644969864631549952" + ], + "expectedQty": "1780355073582584738628", "reserves": [ - "2536248753825562952142539", - "3688471868408721605873113" + "3030323502425408994876598", + "1266096158227214487512562" ], - "LPTokenSupply": "6160701247031367415012291" + "LPTokenSupply": "4267549698860057179301875" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1650646236171754496", - "expectedQty": "1636213680682581468", + "inputIndex": 1, + "inputQty": "356213789043510870016", + "expectedQty": "355779391446333740684", "reserves": [ - "2536250404471799123897035", - "3688471868408721605873113" + "3030323502425408994876598", + "1266452372016257998382578" ] }, { "type": "redeemMasset", - "inputQty": "11538797674275800717721", + "inputQty": "949924194195579548467", "expectedQtys": [ - "4747464965382878893879", - "6904243737209994351573" + "674066114933095751462", + "281710064773460845516" ], - "redemptionFee": "6923278604565480430", + "redemptionFee": "569954516517347729", "reserves": [ - "2531502939506416245003156", - "3681567624671511611521540" + "3029649436310475899125136", + "1266170661951484537537062" ], - "LPTokenSupply": "6149164777898632753424081" + "LPTokenSupply": "4266955611052759585228864" }, { - "type": "mintMulti", - "inputQtys": [ - "154181173483914299179008", - "99134842936791421419520" - ], - "expectedQty": "250836672361697675434704", + "type": "redeem", + "inputIndex": 1, + "inputQty": "745074882085342281728", + "expectedQty": "745535944356958216122", + "swapFee": "447044929251205369", "reserves": [ - "2685684112990330544182164", - "3780702467608303032941060" + "3029649436310475899125136", + "1265425126007127579320940" ], - "LPTokenSupply": "6400001450260330428858785" + "LPTokenSupply": "4266210580875167168067672" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1207938528972925184", - "expectedQty": "1197198842673030831", + "inputQty": "37165883132922839040", + "expectedQty": "36830660531576926471", "reserves": [ - "2685685320928859517107348", - "3780702467608303032941060" + "3029686602193608821964176", + "1265425126007127579320940" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "249132539363146924032", - "1254097236136698576896" - ], - "expectedQty": "1486915119637121563778", - "swapFee": "892684682591828035", + "type": "mint", + "inputIndex": 0, + "inputQty": "1383409232483995615232", + "expectedQty": "1370930027466950235582", "reserves": [ - "2685436188389496370183316", - "3779448370372166334364164" - ], - "LPTokenSupply": "6398514928923321647680605" + "3031070011426092817579408", + "1265425126007127579320940" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "65853305465850494976", - "expectedQty": "65267727749126082175", + "inputQty": "506103365356941213696", + "expectedQty": "501537337769990511753", "reserves": [ - "2685502041694962220678292", - "3779448370372166334364164" + "3031576114791449758793104", + "1265425126007127579320940" ] }, + { + "type": "mintMulti", + "inputQtys": [ + "384725092844539", + "235781562993175" + ], + "expectedQty": "616750547506875", + "reserves": [ + "3031576115176174851637643", + "1265425126242909142314115" + ], + "LPTokenSupply": "4268119879517686233248353" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "817965809749416345600", + "expectedQty": "818461716479955920964", + "swapFee": "490779485849649807", + "reserves": [ + "3031576115176174851637643", + "1264606664526429186393151" + ], + "LPTokenSupply": "4267301962785885401867733" + }, { "type": "swap", "inputIndex": 1, - "inputQty": "1623600598072607744", + "inputQty": "73218353088007529037824", "outputIndex": 0, - "expectedQty": "1619750538473349247", + "expectedQty": "73754980941600446515411", "swapFee": "0", "reserves": [ - "2685500421944423747329045", - "3779449993972764406971908" + "2957821134234574405122232", + "1337825017614436715430975" ], - "LPTokenSupply": "6398580196651070773762780", + "LPTokenSupply": "4267301962785885401867733", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "107959010486196098826240", - "expectedQty": "106989728349687855582607", + "inputQty": "259228559777846", + "expectedQty": "261345481438382", + "swapFee": "155537135866", "reserves": [ - "2793459432430619846155285", - "3779449993972764406971908" - ] + "2957821133973228923683850", + "1337825017614436715430975" + ], + "LPTokenSupply": "4267301962526672395803473" + }, + { + "type": "mintMulti", + "inputQtys": [ + "57621452712384286162944", + "125923005899649560084480" + ], + "expectedQty": "182766352170883153637530", + "reserves": [ + "3015442586685613209846794", + "1463748023514086275515455" + ], + "LPTokenSupply": "4450068314697555549441003" }, { "type": "redeemMasset", - "inputQty": "42899906342694984089", + "inputQty": "1708175361658928391782", "expectedQtys": [ - "18409954226195405539", - "24908004956668084816" + "1156794418466057608279", + "561528032773106035147" + ], + "redemptionFee": "1024905216995357035", + "reserves": [ + "3014285792267147152238515", + "1463186495481313169480308" ], - "redemptionFee": "25739943805616990", + "LPTokenSupply": "4448360241826418320584924" + }, + { + "type": "mintMulti", + "inputQtys": [ + "283291523927233822720", + "309555928949765046272" + ], + "expectedQty": "589673619645898986509", "reserves": [ - "2793441022476393650749746", - "3779425085967807738887092" + "3014569083791074386061235", + "1463496051410262934526580" ], - "LPTokenSupply": "6505527027668410314922997" + "LPTokenSupply": "4448949915446064219571433" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4953437117938680201216", - "expectedQty": "4898347328616407094856", + "inputQty": "3709807870104937", + "expectedQty": "3700365763298990", "reserves": [ - "2793441022476393650749746", - "3784378523085746419088308" + "3014569083791074386061235", + "1463496055120070804631517" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "92991659827429516509184", + "inputQty": "22071093906992242098176", "outputIndex": 0, - "expectedQty": "92777491279701472174326", + "expectedQty": "22199071973757111691221", "swapFee": "0", "reserves": [ - "2700663531196692178575420", - "3877370182913175935597492" + "2992370011817317274370014", + "1485567149027063046729693" ], - "LPTokenSupply": "6510425374997026722017853", + "LPTokenSupply": "4448949919146429982870423", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2696694632289525563392", - "expectedQty": "2725889816222202175788", - "swapFee": "1618016779373715338", + "type": "redeemBassets", + "inputQtys": [ + "371314025827245", + "991364659732847" + ], + "expectedQty": "1356890527750374", + "swapFee": "814623090504", "reserves": [ - "2700663531196692178575420", - "3874644293096953733421704" + "2992370011446003248542769", + "1485567148035698386996846" ], - "LPTokenSupply": "6507728842166415133825994" + "LPTokenSupply": "4448949917788806294338594" }, { "type": "redeemMasset", - "inputQty": "1544387727406206969446", + "inputQty": "2064993356776662", "expectedQtys": [ - "640525933326683612664", - "918963107945964146574" + "1388084103946539", + "689116698685628" ], - "redemptionFee": "926632636443724181", + "redemptionFee": "1238996014065", "reserves": [ - "2700023005263365494962756", - "3873725329989007769275130" + "2992370010057919144596230", + "1485567147346581688311218" ], - "LPTokenSupply": "6506184547102272571228966" + "LPTokenSupply": "4448949915723936837163338" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3832765763337058254848", - "expectedQty": "3864487292170549875741", - "swapFee": "2299659458002234952", + "type": "mintMulti", + "inputQtys": [ + "26909160736572292726784", + "41534673747204116578304" + ], + "expectedQty": "68104718508714767026519", "reserves": [ - "2696158517971194945087015", - "3873725329989007769275130" + "3019279170794491437323014", + "1527101821093785804889522" ], - "LPTokenSupply": "6502352011304881313197613" + "LPTokenSupply": "4517054634232651604189857" }, { - "type": "mintMulti", - "inputQtys": [ - "35371345842767390572544", - "31893534572119729373184" - ], - "expectedQty": "66592795739558696796464", + "type": "redeem", + "inputIndex": 0, + "inputQty": "81172280269966112", + "expectedQty": "81800106602992184", + "swapFee": "48703368161979", "reserves": [ - "2731529863813962335659559", - "3905618864561127498648314" + "3019279088994384834330830", + "1527101821093785804889522" ], - "LPTokenSupply": "6568944807044440009994077" + "LPTokenSupply": "4517054553065241671039942" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "33079934917196238848", - "outputIndex": 0, - "expectedQty": "32997485217343790247", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "90741076354370640", + "outputIndex": 1, + "expectedQty": "90175791599970825", + "swapFee": "71992480121342", "reserves": [ - "2731496866328744991869312", - "3905651944496044694887162" + "3019279179735461188701470", + "1527101730917994204918697" ], - "LPTokenSupply": "6568944807044440009994077", + "LPTokenSupply": "4517054553072440919052076", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "62094289002697565667328", - "32037669901926045581312" + "type": "mint", + "inputIndex": 1, + "inputQty": "1169598603517543680", + "expectedQty": "1166262871949079374", + "reserves": [ + "3019279179735461188701470", + "1527102900516597722462377" + ] + }, + { + "type": "redeemMasset", + "inputQty": "534587198748800409", + "expectedQtys": [ + "357113052918763485", + "180622044686958200" ], - "expectedQty": "93221076805207420782826", + "redemptionFee": "320752319249280", "reserves": [ - "2793591155331442557536640", - "3937689614397970740468474" + "3019278822622408269937985", + "1527102719894553035504177" ], - "LPTokenSupply": "6662165883849647430776903" + "LPTokenSupply": "4517055184780189351255969" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 0, + "inputQty": "3795935078473295986688", + "expectedQty": "3764531985792105352942", + "reserves": [ + "3023074757700881565924673", + "1527102719894553035504177" + ] + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "9266513670831679209472", - "expectedQty": "9366270336703492597146", - "swapFee": "5559908202499007525", + "inputQty": "250809333421869849640960", + "expectedQty": "249965552438070211396237", + "reserves": [ + "3023074757700881565924673", + "1777912053316422885145137" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "21375886983427", + "12206905250920" + ], + "expectedQty": "33370633116244", "reserves": [ - "2793591155331442557536640", - "3928323344061267247871328" + "3023074757722257452908100", + "1777912053328629790396057" ], - "LPTokenSupply": "6652899926169636001468183" + "LPTokenSupply": "4770785269237422301121392" }, { "type": "redeemMasset", - "inputQty": "13382006671003584613580", + "inputQty": "8500159643274970346291", "expectedQtys": [ - "5615810485357255717238", - "7896903375911344913775" + "5383013200983250445498", + "3165824473512584921337" ], - "redemptionFee": "8029204002602150768", + "redemptionFee": "5100095785964982207", "reserves": [ - "2787975344846085301819402", - "3920426440685355902957553" + "3017691744521274202462602", + "1774746228855117205474720" ], - "LPTokenSupply": "6639518722419032677069679" + "LPTokenSupply": "4762285619603725927273321" }, { "type": "swap", "inputIndex": 1, - "inputQty": "178193175567944351744", + "inputQty": "325991856442066337792", "outputIndex": 0, - "expectedQty": "177771667901405188193", + "expectedQty": "327279563029990550997", "swapFee": "0", "reserves": [ - "2787797573178183896631209", - "3920604633860923847309297" + "3017364464958244211911605", + "1775072220711559271812512" ], - "LPTokenSupply": "6639518722419032677069679", + "LPTokenSupply": "4762285619603725927273321", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "20244629835981107200", - "18833634975605170176" + "type": "redeemMasset", + "inputQty": "395060126173127350681", + "expectedQtys": [ + "250158276332889094758", + "147164524622895469836" ], - "expectedQty": "38686390646325719572", + "redemptionFee": "237036075703876410", "reserves": [ - "2787817817808019877738409", - "3920623467495899452479473" + "3017114306681911322816847", + "1774925056186936376342676" ], - "LPTokenSupply": "6639557408809679002789251" + "LPTokenSupply": "4761890583181160370310281" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "2074959734846650368", - "expectedQty": "2051631659445252344", + "inputQty": "1315948620867529867264", + "outputIndex": 0, + "expectedQty": "1321137918487636019880", + "swapFee": "0", "reserves": [ - "2787817817808019877738409", - "3920625542455634299129841" - ] + "3015793168763423686796967", + "1776241004807803906209940" + ], + "LPTokenSupply": "4761890583181160370310281", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "25301953388870241353728", - "24239325070500967743488" + "35811920767121226727424", + "152129089834456086216704" ], - "expectedQty": "49043579598317615446277", + "expectedQty": "187110767527877983432451", + "swapFee": "112333860833226726095", "reserves": [ - "2813119771196890119092137", - "3944864867526135266873329" + "2979981247996302460069543", + "1624111914973347819993236" ], - "LPTokenSupply": "6688603040039656063487872" + "LPTokenSupply": "4574678715178532482824343" }, { - "type": "mintMulti", - "inputQtys": [ - "213662606759793655808", - "80416779996055322624" + "type": "redeem", + "inputIndex": 1, + "inputQty": "1527055424296431124480", + "expectedQty": "1531316617930443370314", + "swapFee": "916233254577858674", + "reserves": [ + "2979981247996302460069543", + "1622580598355417376622922" ], - "expectedQty": "291272154883820840627", + "LPTokenSupply": "4573151751377561509485730" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "701507458283985829888", + "expectedQty": "706761430733169837250", + "swapFee": "420904474970391497", "reserves": [ - "2813333433803649912747945", - "3944945284306131322195953" + "2979274486565569290232293", + "1622580598355417376622922" ], - "LPTokenSupply": "6688894312194539884328499" + "LPTokenSupply": "4572450286009725020694991" }, { "type": "redeemMasset", - "inputQty": "254652095110519298457", + "inputQty": "2515344223726161258086", "expectedQtys": [ - "107041816927103730432", - "150097427427654751664" + "1637941161016068412827", + "892059983427756441952" ], - "redemptionFee": "152791257066311579", + "redemptionFee": "1509206534235696754", "reserves": [ - "2813226391986722809017513", - "3944795186878703667444289" + "2977636545404553221819466", + "1621688538371989620180970" ], - "LPTokenSupply": "6688639675378555071661199" + "LPTokenSupply": "4569935092706652283006580" }, { - "type": "redeemBassets", - "inputQtys": [ - "13174881822654509056", - "13278189726800046080" + "type": "redeemMasset", + "inputQty": "8504652072704212677427", + "expectedQtys": [ + "5538058647777088048479", + "3016152608615901087030" ], - "expectedQty": "26186512656907608516", - "swapFee": "15721340398383595", + "redemptionFee": "5102791243622527606", "reserves": [ - "2813213217104900154508457", - "3944781908688976867398209" + "2972098486756776133770987", + "1618672385763373719093940" ], - "LPTokenSupply": "6688613474716691805507446" + "LPTokenSupply": "4561430950913072432581913" }, { - "type": "redeemMasset", - "inputQty": "995679805510344140390", - "expectedQtys": [ - "418529036502799192646", - "586875449546029680003" + "type": "redeemBassets", + "inputQtys": [ + "451782110766847", + "373042613157271" ], - "redemptionFee": "597407883306206484", + "expectedQty": "819935457204022", + "swapFee": "492256628299", "reserves": [ - "2812794688068397355315811", - "3944195033239430837718206" + "2972098486304994023004140", + "1618672385390331105936669" ], - "LPTokenSupply": "6687617854651969791987704" + "LPTokenSupply": "4561430950092693944412420" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "855767221930926800896", - "121412740054406529024" + "20323343612547530752", + "3480716211346083840" ], - "expectedQty": "968190931779475649668", - "swapFee": "581263317057920141", + "expectedQty": "23629087134619803608", "reserves": [ - "2811938920846466428514915", - "3944073620499376431189182" + "2972118809648606570534892", + "1618675866106542452020509" ], - "LPTokenSupply": "6686649140583204964209908" + "LPTokenSupply": "4561454579179828564216028" }, { "type": "redeemMasset", - "inputQty": "34333168346367533672038", + "inputQty": "104165674827979961139", "expectedQtys": [ - "14429476507167230513138", - "20239030523608277875923" + "67830776443843687384", + "36942009334377557282" ], - "redemptionFee": "20599901007820520203", + "redemptionFee": "62499404896787976", "reserves": [ - "2797509444339299198001777", - "3923834589975768153313259" + "2972050978872162726847508", + "1618638924097208074463227" ], - "LPTokenSupply": "6652318032226938212589890" + "LPTokenSupply": "4561350419754941073933686" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "15543981289122953216", - "expectedQty": "15405445985966230852", + "inputQty": "1037174292254948327424", + "expectedQty": "1044942651397624457735", + "swapFee": "622304575352968996", + "reserves": [ + "2971006036220765102389773", + "1618638924097208074463227" + ], + "LPTokenSupply": "4560313307693143660903161" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "645454283298549006336", + "expectedQty": "643269596133704234609", "reserves": [ - "2797524988320588320954993", - "3923834589975768153313259" + "2971006036220765102389773", + "1619284378380506623469563" ] }, { - "type": "redeemMasset", - "inputQty": "40871168196213109633843", - "expectedQtys": [ - "17177357769687269069109", - "24093121906857457981486" - ], - "redemptionFee": "24522700917727865780", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6691558547195430961152", + "expectedQty": "6710174795857991656634", + "swapFee": "4014935128317258576", "reserves": [ - "2780347630550901051885884", - "3899741468068910695331773" + "2971006036220765102389773", + "1612574203584648631812929" ], - "LPTokenSupply": "6611464721746802841973477" + "LPTokenSupply": "4554265420235594765902475" }, { - "type": "redeemBassets", - "inputQtys": [ - "5342360835319299833856", - "3947892202467433644032" - ], - "expectedQty": "9198250088994486285777", - "swapFee": "5522263411443557906", + "type": "redeem", + "inputIndex": 0, + "inputQty": "273613733556328660992", + "expectedQty": "275666769210687291842", + "swapFee": "164168240133797196", "reserves": [ - "2775005269715581752052028", - "3895793575866443261687741" + "2970730369451554415097931", + "1612574203584648631812929" ], - "LPTokenSupply": "6602261501620738056485583" + "LPTokenSupply": "4553991822918862450621202" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "16228997190638202880", - "expectedQty": "16046515367595344309", + "inputQty": "104519253757702848512", + "expectedQty": "104808751107459533265", + "swapFee": "62711552254621709", "reserves": [ - "2775005269715581752052028", - "3895809804863633899890621" - ] + "2970730369451554415097931", + "1612469394833541172279664" + ], + "LPTokenSupply": "4553887309936259973234860" }, { - "type": "mintMulti", - "inputQtys": [ - "10193279789366382", - "19532041649753908" + "type": "redeemMasset", + "inputQty": "166964845680287180390", + "expectedQtys": [ + "108854238024072612354", + "59084502961521629648" ], - "expectedQty": "29414851601669414", + "redemptionFee": "100178907408172308", "reserves": [ - "2775005279908861541418410", - "3895809824395675549644529" + "2970621515213530342485577", + "1612410310330579650650016" ], - "LPTokenSupply": "6602277577550957253499306" + "LPTokenSupply": "4553720355108470426871700" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "45984413461655226155008", - "outputIndex": 0, - "expectedQty": "45871246973432680321909", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "879748732215389454336", + "expectedQty": "886349494763126699212", + "swapFee": "527849239329233672", "reserves": [ - "2729134032935428861096501", - "3941794237857330775799537" + "2969735165718767215786365", + "1612410310330579650650016" ], - "LPTokenSupply": "6602277577550957253499306", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4552840659161178970340731" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2095019725933379321856", - "1901283506085507891200" + "23995414544832765952", + "17723291744264984576" ], - "expectedQty": "3956348874550296933569", + "expectedQty": "41466137518541930493", + "swapFee": "24894619282694775", "reserves": [ - "2731229052661362240418357", - "3943695521363416283690737" + "2969711170304222383020413", + "1612392587038835385665440" ], - "LPTokenSupply": "6606233926425507550432875" + "LPTokenSupply": "4552799170618503073984939" }, { "type": "redeemMasset", - "inputQty": "1886087828564523417", + "inputQty": "221680721705829059788", "expectedQtys": [ - "779301358059548468", - "1125254314564778083" + "144511693620833879722", + "78462035589403799269" ], - "redemptionFee": "1131652697138714", + "redemptionFee": "133008433023497435", "reserves": [ - "2731228273360004180869889", - "3943694396109101718912654" + "2969566658610601549140691", + "1612314125003245981866171" ], - "LPTokenSupply": "6606232040450844255623329" + "LPTokenSupply": "4552577503197640547274894" }, { "type": "mintMulti", "inputQtys": [ - "55877977970464368", - "43453426847829976" + "1534734419698425344", + "871576459429913472" ], - "expectedQty": "98347978436528493", + "expectedQty": "2391037554610639856", "reserves": [ - "2731228329237982151334257", - "3943694439562528566742630" + "2969568193345021247566035", + "1612314996579705411779643" ], - "LPTokenSupply": "6606232138798822692151822" + "LPTokenSupply": "4552579894235195157914750" }, { "type": "mint", "inputIndex": 1, - "inputQty": "148739588793214959616", - "expectedQty": "147053999409147931555", + "inputQty": "54860108314916272734208", + "expectedQty": "54669795284423653556783", "reserves": [ - "2731228329237982151334257", - "3943843179151321781702246" + "2969568193345021247566035", + "1667175104894621684513851" ] }, { "type": "redeemMasset", - "inputQty": "840750663480039178240", + "inputQty": "4127110196552055", "expectedQtys": [ - "347377011480977006982", - "501605978034598913890" + "2658501829599325", + "1492536213365160" ], - "redemptionFee": "504450398088023506", + "redemptionFee": "2476266117931", "reserves": [ - "2730880952226501174327275", - "3943341573173287182788356" + "2969568190686519417966710", + "1667175103402085471148691" ], - "LPTokenSupply": "6605538492579791609707487" + "LPTokenSupply": "4607249685392756241531271" }, { "type": "mintMulti", "inputQtys": [ - "624693046468046720", - "913078218156016256" + "103465483959282204672", + "22633582335630209024" ], - "expectedQty": "1521934657882698333", + "expectedQty": "125198118547374869888", "reserves": [ - "2730881576919547642373995", - "3943342486251505338804612" + "2969671656170478700171382", + "1667197736984421101357715" ], - "LPTokenSupply": "6605540014514449492405820" + "LPTokenSupply": "4607374883511303616401159" }, { - "type": "mintMulti", - "inputQtys": [ - "32413976691048752087040", - "16055611355556657233920" + "type": "redeemMasset", + "inputQty": "312672171897094039142", + "expectedQtys": [ + "201411126684120526007", + "113073838959108013312" ], - "expectedQty": "48002447586223658204132", + "redemptionFee": "187603303138256423", "reserves": [ - "2763295553610596394461035", - "3959398097607061996038532" + "2969470245043794579645375", + "1667084663145461993344403" ], - "LPTokenSupply": "6653542462100673150609952" + "LPTokenSupply": "4607062230099736836187659" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5658954742631989510144", - "expectedQty": "5594948991155810199359", + "type": "redeemBassets", + "inputQtys": [ + "44621249944222990336", + "367775975307912806400" + ], + "expectedQty": "410729820538648473243", + "swapFee": "246585843829486776", "reserves": [ - "2763295553610596394461035", - "3965057052349693985548676" - ] + "2969425623793850356655039", + "1666716887170154080538003" + ], + "LPTokenSupply": "4606651278351938741176316" }, { "type": "redeemMasset", - "inputQty": "20016818199852377702400", + "inputQty": "166596279198954736844", "expectedQtys": [ - "8301254935236835245155", - "11911483511528817966257" + "107322741239227429367", + "60239469804356820937" ], - "redemptionFee": "12010090919911426621", + "redemptionFee": "99957767519372842", "reserves": [ - "2754994298675359559215880", - "3953145568838165167582419" + "2969318301052611129225672", + "1666656647700349723717066" ], - "LPTokenSupply": "6639121793901068574249573" + "LPTokenSupply": "4606484692068516538376756" }, { - "type": "redeemBassets", - "inputQtys": [ - "324840361373464064", - "521643003950513472" - ], - "expectedQty": "837717192795009041", - "swapFee": "502932074921958", + "type": "swap", + "inputIndex": 0, + "inputQty": "2052870795450587807744", + "outputIndex": 1, + "expectedQty": "2042243425438313566298", + "swapFee": "1629276173133180228", "reserves": [ - "2754993973834998185751816", - "3953145047195161217068947" + "2971371171848061717033416", + "1664614404274911410150768" ], - "LPTokenSupply": "6639120955731236911810768" + "LPTokenSupply": "4606484854996133851694778", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "181210822053712337305", + "inputQty": "22839677088871513220710", "expectedQtys": [ - "75150789576639013003", - "107833982371349122758" + "14723686523745812716080", + "8248468216850875271501" ], - "redemptionFee": "108726493232227402", + "redemptionFee": "13703806253322907932", "reserves": [ - "2754918823045421546738813", - "3953037213212789867946189" + "2956647485324315904317336", + "1656365936058060534879267" ], - "LPTokenSupply": "6638939755781832522696203" + "LPTokenSupply": "4583646548287887670764861" }, { - "type": "redeemMasset", - "inputQty": "177848633967688915353", - "expectedQtys": [ - "73756441879809472802", - "105833230738445622007" + "type": "mintMulti", + "inputQtys": [ + "70626567932415876005888", + "10145736844554771890176" ], - "redemptionFee": "106709180380613349", + "expectedQty": "80174031685941283434235", "reserves": [ - "2754845066603541737266011", - "3952931379982051422324182" + "3027274053256731780323224", + "1666511672902615306769443" ], - "LPTokenSupply": "6638761917818782871842184" + "LPTokenSupply": "4663820579973828954199096" }, { "type": "mintMulti", "inputQtys": [ - "2200656960413331", - "1575485381915579" + "391717657220624771186688", + "537149905295121890410496" ], - "expectedQty": "3738913480443727", + "expectedQty": "923727977162519415731649", "reserves": [ - "2754845068804198697679342", - "3952931381557536804239761" + "3418991710477356551509912", + "2203661578197737197179939" ], - "LPTokenSupply": "6638761921557696352285911" + "LPTokenSupply": "5587548557136348369930745" }, { - "type": "redeemMasset", - "inputQty": "28105573391352158617", - "expectedQtys": [ - "11655794450415681789", - "16724917194719777541" + "type": "mintMulti", + "inputQtys": [ + "19086039160650276", + "15293446954584904" ], - "redemptionFee": "16863344034811295", + "expectedQty": "34170532457703800", "reserves": [ - "2754833413009748281997553", - "3952914656640342084462220" + "3418991729563395712160188", + "2203661593491184151764843" ], - "LPTokenSupply": "6638733817670639403608423" + "LPTokenSupply": "5587548591306880827634545" }, { "type": "mint", "inputIndex": 1, - "inputQty": "325893794602722131968", - "expectedQty": "322206456264971817783", + "inputQty": "3903669166071773696", + "expectedQty": "3886724669806476594", "reserves": [ - "2754833413009748281997553", - "3953240550434944806594188" + "3418991729563395712160188", + "2203665497160350223538539" ] }, { - "type": "mintMulti", - "inputQtys": [ - "161414516488672882196480", - "89470461644255333974016" - ], - "expectedQty": "248441859595551080635964", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1940106628250656768", + "expectedQty": "1947395548404222377", + "swapFee": "1164063976950394", "reserves": [ - "2916247929498421164194033", - "4042711012079200140568204" + "3418991729563395712160188", + "2203663549764801819316162" ], - "LPTokenSupply": "6887497883722455456062170" + "LPTokenSupply": "5587550538041328781149410" }, { - "type": "redeemMasset", - "inputQty": "2598035384098155082547", - "expectedQtys": [ - "1099378835142626198779", - "1524037403789026740743" - ], - "redemptionFee": "1558821230458893049", + "type": "redeem", + "inputIndex": 0, + "inputQty": "279327418638854389760", + "expectedQty": "281260763294414331369", + "swapFee": "167596451183312633", "reserves": [ - "2915148550663278537995254", - "4041186974675411113827461" + "3418710468800101297828819", + "2203663549764801819316162" ], - "LPTokenSupply": "6884900004220480346868927" + "LPTokenSupply": "5587271227382335045090913" }, { - "type": "redeemMasset", - "inputQty": "102445369459695891251", - "expectedQtys": [ - "43350561959862136410", - "60095642912329142769" + "type": "mintMulti", + "inputQtys": [ + "618768368427802165248", + "70049488314806091776" ], - "redemptionFee": "61467221675817534", + "expectedQty": "683891676974343617296", "reserves": [ - "2915105200101318675858844", - "4041126879032498784684692" + "3419329237168529099994067", + "2203733599253116625407938" ], - "LPTokenSupply": "6884797564997742818559429" + "LPTokenSupply": "5587955119059309388708209" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "47751274226816704512", - "expectedQty": "48263493988005455591", - "swapFee": "28650764536090022", + "inputIndex": 0, + "inputQty": "1137709760290245050368", + "expectedQty": "1145584145775626870125", + "swapFee": "682625856174147030", "reserves": [ - "2915105200101318675858844", - "4041078615538510779229101" + "3418183653022753473123942", + "2203733599253116625407938" ], - "LPTokenSupply": "6884749816588592455463919" + "LPTokenSupply": "5586817477561604761072544" }, { "type": "redeemBassets", "inputQtys": [ - "140268257346375417856", - "3486662483391916015616" + "7232365824190545133568", + "4057962833306298351616" ], - "expectedQty": "3586603140643004024339", - "swapFee": "2153253836687815103", + "expectedQty": "11218689357254962953959", + "swapFee": "6735254767213305755", "reserves": [ - "2914964931843972300440988", - "4037591953055118863213485" + "3410951287198562927990374", + "2199675636419810327056322" ], - "LPTokenSupply": "6881161275519496432405986" + "LPTokenSupply": "5575592726475059306143404" }, { - "type": "mintMulti", - "inputQtys": [ - "19183305929926322946048", - "8475276368347363540992" - ], - "expectedQty": "27391357599489189256338", + "type": "swap", + "inputIndex": 1, + "inputQty": "248619840120385699840", + "outputIndex": 0, + "expectedQty": "249402361657479440681", + "swapFee": "0", "reserves": [ - "2934148237773898623387036", - "4046067229423466226754477" + "3410701884836905448549693", + "2199924256259930712756162" ], - "LPTokenSupply": "6908552633118985621662324" + "LPTokenSupply": "5575592726475059306143404", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5315461566539786878976", - "1524729028772805476352" + "9520806100360466432", + "13991750200193679360" ], - "expectedQty": "6775341358504056819778", - "swapFee": "4067645402343840396", + "expectedQty": "23380646409051768841", "reserves": [ - "2928832776207358836508060", - "4044542500394693421278125" + "3410711405643005809016125", + "2199938248010130906435522" ], - "LPTokenSupply": "6901773630879619455386188" + "LPTokenSupply": "5575616107121468357912245" }, { "type": "swap", "inputIndex": 1, - "inputQty": "9625377363697189519360", + "inputQty": "717994536641329079779328", "outputIndex": 0, - "expectedQty": "9603723123117413617131", + "expectedQty": "718871458409983192172096", "swapFee": "0", "reserves": [ - "2919229053084241422890929", - "4054167877758390610797485" + "2691839947233022616844029", + "2917932784651459986214850" ], - "LPTokenSupply": "6901773630879619455386188", + "LPTokenSupply": "5575616107121468357912245", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "430370315825116479488", - "30864892683012296704" + "1694068169256835584", + "1083070307852511872" ], - "expectedQty": "457032052196807027500", - "swapFee": "274383861635065255", + "expectedQty": "2760421517623651262", "reserves": [ - "2918798682768416306411441", - "4054137012865707598500781" + "2691841641301191873679613", + "2917933867721767838726722" ], - "LPTokenSupply": "6901316351881947176799957" + "LPTokenSupply": "5575618867542985981563507" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "669806299899716435968", - "expectedQty": "662295214021764866302", - "reserves": [ - "2918798682768416306411441", - "4054806819165607314936749" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "71093209881185827684352", - "31876222423869102751744" - ], - "expectedQty": "101973200155857646246910", + "inputQty": "1435729856542091776", + "expectedQty": "1444029613669608923", + "swapFee": "861437913925255", "reserves": [ - "2989891892649602134095793", - "4086683041589476417688493" + "2691841641301191873679613", + "2917932423692154169117799" ], - "LPTokenSupply": "7003951847251826587913169" + "LPTokenSupply": "5575617431899273230864256" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "802166696392459681792", - "158808415966514216960" + "22335086236991737856", + "2488238959161339904" ], - "expectedQty": "951958261802695972000", - "swapFee": "571517867802298962", + "expectedQty": "24677729720195889202", "reserves": [ - "2989089725953209674414001", - "4086524233173509903471533" + "2691863976387428865417469", + "2917934911931113330457703" ], - "LPTokenSupply": "7002999374623942869872102" + "LPTokenSupply": "5575642109628993426753458" }, { "type": "redeemMasset", - "inputQty": "2099748788570774359244", + "inputQty": "3319685601809698", "expectedQtys": [ - "895697884996289000488", - "1224550431142491465813" + "1601749219837773", + "1736268997884305" ], - "redemptionFee": "1259849273142464615", + "redemptionFee": "1991811361085", "reserves": [ - "2988194028068213385413513", - "4085299682742367412005720" + "2691863974785679645579696", + "2917934910194844332573398" ], - "LPTokenSupply": "7000899751820299409759319" + "LPTokenSupply": "5575642106309507006079868" }, { "type": "mint", "inputIndex": 0, - "inputQty": "18007661861592635539456", - "expectedQty": "17844818748668850104845", + "inputQty": "6670188129328738336768", + "expectedQty": "6631392985363019261148", "reserves": [ - "3006201689929806020952969", - "4085299682742367412005720" + "2698534162915008383916464", + "2917934910194844332573398" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "348877799429874048", - "181981632208831552" + "14259193526114240692224", + "28395724222948595204096" ], - "expectedQty": "525671783429094460", + "expectedQty": "42392091988319816756751", + "swapFee": "25450525508296868174", + "reserves": [ + "2684274969388894143224240", + "2889539185971895737369302" + ], + "LPTokenSupply": "5539858501833592741402907" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "107093680771513472", + "expectedQty": "107658147173915415", + "swapFee": "64256208462908", "reserves": [ - "3006202038807605450827017", - "4085299864723999620837272" + "2684274861730746969308825", + "2889539185971895737369302" ], - "LPTokenSupply": "7018745096240751688958624" + "LPTokenSupply": "5539858394746337590735725" }, { "type": "mint", "inputIndex": 1, - "inputQty": "17876439786991346778112", - "expectedQty": "17677072860763648495876", + "inputQty": "13863897395537211392", + "expectedQty": "13776192896587737354", "reserves": [ - "3006202038807605450827017", - "4103176304510990967615384" + "2684274861730746969308825", + "2889553049869291274580694" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "2975476087637421850624", + "175699275608744460812288" + ], + "expectedQty": "177562796013788348910631", + "swapFee": "106601638591427866066", + "reserves": [ + "2681299385643109547458201", + "2713853774260546813768406" + ], + "LPTokenSupply": "5362213433450713544482987" + }, { "type": "mint", "inputIndex": 0, - "inputQty": "395126173188106747904", - "expectedQty": "391555228201497446591", + "inputQty": "17878638440478418", + "expectedQty": "17770196086700086", "reserves": [ - "3006597164980793557574921", - "4103176304510990967615384" + "2681299403521747987936619", + "2713853774260546813768406" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2239245185390287257600", - "expectedQty": "2263153953234086867142", - "swapFee": "1343547111234172354", + "type": "mintMulti", + "inputQtys": [ + "1034665846125381287936", + "631410131562841767936" + ], + "expectedQty": "1655920180612077089369", "reserves": [ - "3006597164980793557574921", - "4100913150557756880748242" + "2682334069367873369224555", + "2714485184392109655536342" ], - "LPTokenSupply": "7034574613499037671060726" + "LPTokenSupply": "5363869371401521708272442" }, { - "type": "redeemMasset", - "inputQty": "1125170948845841730764", - "expectedQtys": [ - "480612717783943447241", - "655542098436744925068" + "type": "redeemBassets", + "inputQtys": [ + "6888449265287888371712", + "6350343235640536072192" ], - "redemptionFee": "675102569307505038", + "expectedQty": "13157988456071873792903", + "swapFee": "7899532793319115745", "reserves": [ - "3006116552263009614127680", - "4100257608459320135823174" + "2675445620102585480852843", + "2708134841156469119464150" ], - "LPTokenSupply": "7033449510060448760080465" + "LPTokenSupply": "5350704273365935847275367" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "72640714696875136", - "outputIndex": 0, - "expectedQty": "72485527229975871", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "1899734573372317892608", + "1970453765587428966400" + ], + "expectedQty": "3846552174668066819899", + "swapFee": "2309316894937802773", "reserves": [ - "3006116479777482384151809", - "4100257681100034832698310" + "2673545885529213162960235", + "2706164387390881690497750" ], - "LPTokenSupply": "7033449510060448760080465", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5346855642806062336432971" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "62872584301274710016", + "39286332708636008448" + ], + "expectedQty": "101535984907538407111", + "swapFee": "60958165844029461", + "reserves": [ + "2673483012944911888250219", + "2706125101058173054489302" + ], + "LPTokenSupply": "5346754051958805538399344" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "510083384382231281664", - "expectedQty": "514427758918395360372", - "swapFee": "306050030629338768", + "inputQty": "2196717655344111419392", + "expectedQty": "2208797296005875302718", + "swapFee": "1318030593206466851", "reserves": [ - "3005602052018563988791437", - "4100257681100034832698310" + "2671274215648906012947501", + "2706125101058173054489302" ], - "LPTokenSupply": "7032939457281069591732677" + "LPTokenSupply": "5344557466106520747626637" }, { "type": "redeemMasset", - "inputQty": "85899415884856819712", + "inputQty": "1207852099739418047283", "expectedQtys": [ - "36688009976710847696", - "50049970723920119358" + "603336812878946687298", + "611208270629580021703" ], - "redemptionFee": "51539649530914091", + "redemptionFee": "724711259843650828", "reserves": [ - "3005565364008587277943741", - "4100207631129310912578952" + "2670670878836027066260203", + "2705513892787543474467599" ], - "LPTokenSupply": "7032853563019149688004374" + "LPTokenSupply": "5343349686477907313944436" }, { - "type": "mintMulti", - "inputQtys": [ - "552479118655281233920", - "853503845961134768128" + "type": "redeemMasset", + "inputQty": "82745956717993472", + "expectedQtys": [ + "41332616724843228", + "41871864354571405" ], - "expectedQty": "1391465337308902339965", + "redemptionFee": "49647574030796", "reserves": [ - "3006117843127242559177661", - "4101061134975272047347080" + "2670670837503410341416975", + "2705513850915679119896194" ], - "LPTokenSupply": "7034245028356458590344339" + "LPTokenSupply": "5343349603736915353354043" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 1, + "inputQty": "14104984883935166464", + "expectedQty": "14018240626545581875", + "reserves": [ + "2670670837503410341416975", + "2705527955900563055062658" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "19773523314964549632", - "27310734163741827072" + "3854544467822130176", + "2656259471365427712" ], - "expectedQty": "46600778182375198189", - "swapFee": "27977253261381948", + "expectedQty": "6471092101341136356", "reserves": [ - "3006098069603927594628029", - "4101033824241108305520008" + "2670674692047878163547151", + "2705530612160034420490370" ], - "LPTokenSupply": "7034198402398748279902395" + "LPTokenSupply": "5343370093069643240072274" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "36369594356656609689600", - "expectedQty": "36039902116922447345005", + "type": "mintMulti", + "inputQtys": [ + "14126444834871364812800", + "9259933331679056232448" + ], + "expectedQty": "23243744509923459052414", "reserves": [ - "3042467663960584204317629", - "4101033824241108305520008" - ] + "2684801136882749528359951", + "2714790545491713476722818" + ], + "LPTokenSupply": "5366613837579566699124688" }, { - "type": "redeemMasset", - "inputQty": "2519810394038158540", - "expectedQtys": [ - "1083675181541398877", - "1460718424927021909" - ], - "redemptionFee": "1511886236422895", + "type": "redeem", + "inputIndex": 1, + "inputQty": "125513748143440297984", + "expectedQty": "126213866351091614113", + "swapFee": "75308248886064178", "reserves": [ - "3042466580285402662918752", - "4101032363522683378498099" + "2684801136882749528359951", + "2714664331625362385108705" ], - "LPTokenSupply": "7070235784856465312731149" + "LPTokenSupply": "5366488331362248147433121" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2166101045301773", - "expectedQty": "2142012564388286", + "inputQty": "444512356787015351533568", + "expectedQty": "441670532198862173728964", "reserves": [ - "3042466580285402662918752", - "4101032365688784423799872" + "2684801136882749528359951", + "3159176688412377736642273" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "657697047330661072896", - "expectedQty": "650382855840164920758", + "inputIndex": 0, + "inputQty": "85326093146779200", + "expectedQty": "84853052717261636", "reserves": [ - "3042466580285402662918752", - "4101690062736115084872768" + "2684801222208842675139151", + "3159176688412377736642273" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "11984304988509635084288", - "expectedQty": "11850971217920112031159", + "inputQty": "2391164621796739645440", + "expectedQty": "2375316460590451300297", "reserves": [ - "3042466580285402662918752", - "4113674367724624719957056" + "2684801222208842675139151", + "3161567853034174476287713" ] }, - { - "type": "redeemMasset", - "inputQty": "17173600608425331602227", - "expectedQtys": [ - "7372680195618452429215", - "9968492583836883251365" - ], - "redemptionFee": "10304160365055198961", - "reserves": [ - "3035093900089784210489537", - "4103705875140787836705691" - ], - "LPTokenSupply": "7065564570879849327989021" - }, { "type": "mint", "inputIndex": 1, - "inputQty": "6936844308103846428672", - "expectedQty": "6859608394580171047637", + "inputQty": "51920539319388078080", + "expectedQty": "51576357683508151537", "reserves": [ - "3035093900089784210489537", - "4110642719448891683134363" + "2684801222208842675139151", + "3161619773573493864365793" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2164094480913686855680", - "3315788514528601309184" - ], - "expectedQty": "5423323961160370021575", - "reserves": [ - "3037257994570697897345217", - "4113958507963420284443547" - ], - "LPTokenSupply": "7077847503235589869058233" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "30931110295818955915264", - "expectedQty": "31194846124657239824439", - "swapFee": "18558666177491373549", - "reserves": [ - "3006063148446040657520778", - "4113958507963420284443547" - ], - "LPTokenSupply": "7046918248806388662280323" - }, - { - "type": "redeemMasset", - "inputQty": "272640928310150037504", - "expectedQtys": [ - "116232950762780183001", - "159071021825813192182" + "8929572354200458756096", + "9301362218346853957632" ], - "redemptionFee": "163584556986090022", + "expectedQty": "18119796876322558770768", + "swapFee": "10878405168894872185", "reserves": [ - "3005946915495277877337777", - "4113799436941594471251365" + "2675871649854642216383055", + "3152318411355147010408161" ], - "LPTokenSupply": "7046645624236534210851821" + "LPTokenSupply": "5792456253791462433719819" }, { "type": "mintMulti", "inputQtys": [ - "17219970372171053662208", - "11098371474351038922752" + "10444409059488858112", + "7504006200892585984" ], - "expectedQty": "28038803986431498018487", + "expectedQty": "17840773355343260947", "reserves": [ - "3023166885867448930999985", - "4124897808415945510174117" + "2675882094263701705241167", + "3152325915361347902994145" ], - "LPTokenSupply": "7074684428222965708870308" + "LPTokenSupply": "5792474094564817776980766" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1851298748738747648", - "1091220569672431616" + "146431906827247156199424", + "166127893942596427317248" ], - "expectedQty": "2913598275926015781", - "swapFee": "1749208490649999", + "expectedQty": "310646607393174242040484", "reserves": [ - "3023165034568700192252337", - "4124896717195375837742501" + "2822314001090948861440591", + "3318453809303944330311393" ], - "LPTokenSupply": "7074681513050402141269526" + "LPTokenSupply": "6103120701957992019021250" }, { - "type": "redeemMasset", - "inputQty": "3262286092588215", - "expectedQtys": [ - "1393209259263724", - "1900936347897067" - ], - "redemptionFee": "1957371655552", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1418335536000283904", + "expectedQty": "1426939310670108715", + "swapFee": "851001321600170", "reserves": [ - "3023165033175490932988613", - "4124896715294439489845434" + "2822314001090948861440591", + "3318452382364633660202678" ], - "LPTokenSupply": "7074681509788311785846866" + "LPTokenSupply": "6103119283707556150897363" }, { - "type": "mintMulti", - "inputQtys": [ - "59264636691908298539008", - "108986278137352698200064" - ], - "expectedQty": "166498189478842200011246", + "type": "mint", + "inputIndex": 1, + "inputQty": "21002850261596484141056", + "expectedQty": "20863480058073516560420", "reserves": [ - "3082429669867399231527621", - "4233882993431792188045498" - ], - "LPTokenSupply": "7241179699267153985858112" + "2822314001090948861440591", + "3339455232626230144343734" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "256177697133929696", + "inputQty": "301576769871337553920", "outputIndex": 1, - "expectedQty": "256534161629513615", - "swapFee": "203094761684350", + "expectedQty": "301675196297073530394", + "swapFee": "239928360439259136", "reserves": [ - "3082429926045096365457317", - "4233882736897630558531883" + "2822615577860820198994511", + "3339153557429933070813340" ], - "LPTokenSupply": "7241179699287463462026547", + "LPTokenSupply": "6123982787758465711383696", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "104885698897891737731072", - "expectedQty": "103932776942909763205803", + "inputQty": "734083108283931295744", + "expectedQty": "730026269090987032883", "reserves": [ - "3187315624942988103188389", - "4233882736897630558531883" + "2823349660969104130290255", + "3339153557429933070813340" ] }, { "type": "mintMulti", "inputQtys": [ - "391660648490226717556736", - "352080457028168516108288" + "6352834810893336313856", + "9335732703064959746048" ], - "expectedQty": "736245545906722637607479", + "expectedQty": "15591425900422250021145", "reserves": [ - "3578976273433214820745125", - "4585963193925799074640171" + "2829702495779997466604111", + "3348489290132998030559388" ], - "LPTokenSupply": "8081358022137095862839829" + "LPTokenSupply": "6140304239927978948437724" }, { "type": "redeemMasset", - "inputQty": "1658710039289411928064", + "inputQty": "15413445004872289484", "expectedQtys": [ - "734149132923609836532", - "940710595773397575362" + "7098881882290381231", + "8400363639010841377" ], - "redemptionFee": "995226023573647156", + "redemptionFee": "9248067002923373", "reserves": [ - "3578242124300291210908593", - "4585022483330025677064809" + "2829695396898115176222880", + "3348480889769359019718011" ], - "LPTokenSupply": "8079699411620408808276480" + "LPTokenSupply": "6140288827407780776440577" }, { - "type": "redeemBassets", - "inputQtys": [ - "855938651742248763392", - "756066764336701374464" - ], - "expectedQty": "1595752710863366291607", - "swapFee": "958026442383449844", + "type": "redeem", + "inputIndex": 0, + "inputQty": "21192861834296483119104", + "expectedQty": "21297514768900527776508", + "swapFee": "12715717100577889871", "reserves": [ - "3577386185648548962145201", - "4584266416565688975690345" + "2808397882129214648446372", + "3348480889769359019718011" ], - "LPTokenSupply": "8078102796685747296880012" + "LPTokenSupply": "6119097237145194351110460" }, { - "type": "mintMulti", - "inputQtys": [ - "1149290740971951", - "6279805930298803" - ], - "expectedQty": "7349532739129211", + "type": "swap", + "inputIndex": 0, + "inputQty": "2955377798538039656448", + "outputIndex": 1, + "expectedQty": "2956479828992371596324", + "swapFee": "2351296941963416908", "reserves": [ - "3577386186797839703117152", - "4584266422845494905989148" + "2811353259927752688102820", + "3345524409940366648121687" ], - "LPTokenSupply": "8078102804035280036009223" + "LPTokenSupply": "6119097472274888547452150", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "92590295561088729088", - "388768567445287469056" + "16505809437543939178496", + "365298674805647630925824" ], - "expectedQty": "476233813636145426650", + "expectedQty": "379225196049540909886278", "reserves": [ - "3577478777093400791846240", - "4584655191412940193458204" + "2827859069365296627281316", + "3710823084746014279047511" ], - "LPTokenSupply": "8078579037848916181435873" + "LPTokenSupply": "6498322668324429457338428" }, { - "type": "redeemBassets", - "inputQtys": [ - "6461939521259219976192", - "14896791734632782495744" + "type": "redeemMasset", + "inputQty": "565880844118983075430", + "expectedQtys": [ + "246105221313670078859", + "322948532485485659447" ], - "expectedQty": "21135262879052025948048", - "swapFee": "12688770990025230707", + "redemptionFee": "339528506471389845", "reserves": [ - "3571016837572141571870048", - "4569758399678307410962460" + "2827612964143982957202457", + "3710500136213528793388064" ], - "LPTokenSupply": "8057432355075973132780187" + "LPTokenSupply": "6497756821433161121401982" }, { - "type": "mintMulti", - "inputQtys": [ - "2181025275883343314944", - "3163531675432500330496" - ], - "expectedQty": "5289570025382744449864", + "type": "redeem", + "inputIndex": 1, + "inputQty": "40953301408523638276096", + "expectedQty": "41215280413567929680237", + "swapFee": "24571980845114182965", "reserves": [ - "3573197862848024915184992", - "4572921931353739911292956" + "2827612964143982957202457", + "3669284855799960863707827" ], - "LPTokenSupply": "8062721925101355877230051" + "LPTokenSupply": "6456805977222721994544182" }, { - "type": "redeemBassets", - "inputQtys": [ - "28033004701186084", - "29873685708284636" + "type": "redeemMasset", + "inputQty": "77867156490642089574", + "expectedQtys": [ + "34079709850583478195", + "44223931927918269045" ], - "expectedQty": "57318222521264864", - "swapFee": "34411580461035", + "redemptionFee": "46720293894385253", "reserves": [ - "3573197834815020213998908", - "4572921901480054203008320" + "2827578884434132373724262", + "3669240631868032945438782" ], - "LPTokenSupply": "8062721867752162933550254" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "8021626556998939049984", - "expectedQty": "7933647027887105525658", - "reserves": [ - "3573197834815020213998908", - "4580943528037053142058304" - ] + "LPTokenSupply": "6456728114738260741893133" }, { - "type": "mintMulti", - "inputQtys": [ - "8713545103629942784", - "49486527259476246528" - ], - "expectedQty": "57576144119136557076", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3230533182296920424448", + "expectedQty": "3245381614624255340093", + "swapFee": "1938319909378152254", "reserves": [ - "3573206548360123843941692", - "4580993014564312618304832" + "2824333502819508118384169", + "3669240631868032945438782" ], - "LPTokenSupply": "8070713090924169175632988" + "LPTokenSupply": "6453497775387954759283910" }, { "type": "redeemBassets", "inputQtys": [ - "2566797918828237422592", - "23937577725461859926016" - ], - "expectedQty": "26218041077930872571226", - "swapFee": "15740268808043349552", - "reserves": [ - "3570639750441295606519100", - "4557055436838850758378816" + "13779932532063640485888", + "7350827651644246720512" ], - "LPTokenSupply": "8044480883604311064047164" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "49283202796271222784", - "expectedQty": "49716972366028474160", - "swapFee": "29569921677762733", + "expectedQty": "21008526799122968333405", + "swapFee": "12612683689687593556", "reserves": [ - "3570590033468929578044940", - "4557055436838850758378816" + "2810553570287444477898281", + "3661889804216388698718270" ], - "LPTokenSupply": "8044431603358506960600653" + "LPTokenSupply": "6432477897173511072116303" }, { "type": "mintMulti", "inputQtys": [ - "73722810897224737751040", - "19519373117027656925184" - ], - "expectedQty": "92339362773197857587977", - "reserves": [ - "3644312844366154315795980", - "4576574809955878415304000" + "7171782932696514166784", + "3692166600802143567872" ], - "LPTokenSupply": "8136770966131704818188630" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "53388930643417947439104", - "outputIndex": 0, - "expectedQty": "53301745938189861291881", - "swapFee": "0", + "expectedQty": "10801253739138059037249", "reserves": [ - "3591011098427964454504099", - "4629963740599296362743104" + "2817725353220140992065065", + "3665581970817190842286142" ], - "LPTokenSupply": "8136770966131704818188630", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6443279150912649131153552" }, { "type": "redeemBassets", "inputQtys": [ - "19886270994743", - "9218344079190" + "435169232761140412416", + "329206254281680224256" ], - "expectedQty": "28818779964207", - "swapFee": "17301648967", + "expectedQty": "759839661193868796720", + "swapFee": "456177503218252229", "reserves": [ - "3591011098408078183509356", - "4629963740590078018663914" + "2817290183987379851652649", + "3665252764562909162061886" ], - "LPTokenSupply": "8136770966102870466740351" + "LPTokenSupply": "6442518900691702365929824" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2423867473778775162880", - "7082297826775896424448" + "2227690338567229952", + "988777243933339520" ], - "expectedQty": "9405835587184266486957", + "expectedQty": "3198087459416549920", + "swapFee": "1920004478336932", "reserves": [ - "3593434965881856958672236", - "4637046038416853915088362" + "2817287956297041284422697", + "3665251775785665228722366" ], - "LPTokenSupply": "8146176801690054733227308" + "LPTokenSupply": "6442515700876238918876664" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1483068113982033664", - "expectedQty": "1469311590761176448", + "inputIndex": 1, + "inputQty": "37035824771532374016", + "expectedQty": "36778477609277757501", "reserves": [ - "3593436448949970940705900", - "4637046038416853915088362" + "2817287956297041284422697", + "3665288811610436761096382" ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "539104963578724928", - "expectedQty": "543825876954653097", - "swapFee": "323462978147234", + "inputQty": "19846980515516192391168", + "outputIndex": 1, + "expectedQty": "19865801967340841741742", + "swapFee": "15795327136573943754", "reserves": [ - "3593435905124093986052803", - "4637046038416853915088362" + "2837134936812557476813865", + "3645423009643095919354640" ], - "LPTokenSupply": "8146177731929028213493551" + "LPTokenSupply": "6442554058886561854028540", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "303361823539973980160", - "897427897317668814848" - ], - "expectedQty": "1188110802646908402346", + "type": "mint", + "inputIndex": 1, + "inputQty": "161563044047866745061376", + "expectedQty": "160435329205570419835204", "reserves": [ - "3593739266947633960032963", - "4637943466314171583903210" - ], - "LPTokenSupply": "8147365842731675121895897" + "2837134936812557476813865", + "3806986053690962664416016" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "54939785455386083983360", - "expectedQty": "54428542163613437003189", + "inputQty": "79588633378464383107072", + "expectedQty": "79182803583897933503024", "reserves": [ - "3648679052403020044016323", - "4637943466314171583903210" + "2916723570191021859920937", + "3806986053690962664416016" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "14027189635690503602176", - "expectedQty": "14150768842880802718447", - "swapFee": "8416313781414302161", - "reserves": [ - "3634528283560139241297876", - "4637943466314171583903210" + "type": "redeemBassets", + "inputQtys": [ + "46914970007359299584", + "45836504559627444224" ], - "LPTokenSupply": "8187768036890976196727126" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "130470312410824094777344", - "outputIndex": 0, - "expectedQty": "130224506008326537274029", - "swapFee": "0", + "expectedQty": "92190537788263049506", + "swapFee": "55347531191672833", "reserves": [ - "3504303777551812704023847", - "4768413778724995678680554" + "2916676655221014500621353", + "3806940217186403036971792" ], - "LPTokenSupply": "8187768036890976196727126", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6682079951325463871811711" }, { "type": "redeemMasset", - "inputQty": "3202589196278416998", + "inputQty": "714226420975046177587", "expectedQtys": [ - "1369861928266464998", - "1864013198724471531" - ], - "redemptionFee": "1921553517767050", - "reserves": [ - "3504302407689884437558849", - "4768411914711796954209023" - ], - "LPTokenSupply": "8187764834493935270086833" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "87147168657544711241728", - "44118886781146093322240" + "311567302882965764501", + "406667668691434036550" ], - "expectedQty": "129986205823074004976731", - "swapFee": "78038546621817493482", + "redemptionFee": "428535852585027706", "reserves": [ - "3417155239032339726317121", - "4724293027930650860886783" + "2916365087918131534856852", + "3806533549517711602935242" ], - "LPTokenSupply": "8057708393978901629365967" + "LPTokenSupply": "6681365767758074084136894" }, { "type": "mint", "inputIndex": 1, - "inputQty": "15272617732749561856", - "expectedQty": "15101318118313640806", + "inputQty": "27227910616545402880", + "expectedQty": "27038377394327666401", "reserves": [ - "3417155239032339726317121", - "4724308300548383610448639" + "2916365087918131534856852", + "3806560777428328148338122" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "155204050213044846592", - "expectedQty": "153463253196288378789", + "inputIndex": 0, + "inputQty": "85248104667474431049728", + "expectedQty": "84803639148791161025401", "reserves": [ - "3417155239032339726317121", - "4724463504598596655295231" + "3001613192585605965906580", + "3806560777428328148338122" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "9093428187176454", - "63168873182112888" + "type": "redeemMasset", + "inputQty": "2151984009223282150604", + "expectedQtys": [ + "954088163175000550340", + "1209947567235386532228" ], - "expectedQty": "71471952427401872", - "swapFee": "42908916806525", + "redemptionFee": "1291190405533969290", "reserves": [ - "3417155229938911539140667", - "4724463441429723473182343" + "3000659104422430965356240", + "3805350829861092761805894" ], - "LPTokenSupply": "8057876887039645778857816" + "LPTokenSupply": "6764044590394076844075021" }, { - "type": "mintMulti", - "inputQtys": [ - "35000640939229821534208", - "13304261121393119199232" + "type": "redeemMasset", + "inputQty": "73062039342436148838", + "expectedQtys": [ + "32392266202322817448", + "41078953917964797546" ], - "expectedQty": "47840303213114302347085", + "redemptionFee": "43837223605461689", "reserves": [ - "3452155870878141360674875", - "4737767702551116592381575" + "3000626712156228642538792", + "3805309750907174797008348" ], - "LPTokenSupply": "8105717190252760081204901" + "LPTokenSupply": "6763971532738456768472351" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6735569504456065155072", - "570684916671186862080" + "79446795359686288", + "51406895180208680" ], - "expectedQty": "7239064319442532157268", - "swapFee": "4346046219397157588", + "expectedQty": "130081676708153223", "reserves": [ - "3445420301373685295519803", - "4737197017634445405519495" + "3000626791603024002225080", + "3805309802314069977217028" ], - "LPTokenSupply": "8098474214491720091605802" + "LPTokenSupply": "6763971662820133476625574" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "19750109865538981888", - "expectedQty": "19571897326326533034", - "reserves": [ - "3445440051483550834501691", - "4737197017634445405519495" - ] + "type": "redeemMasset", + "inputQty": "145382523572177382", + "expectedQtys": [ + "64455762646202873", + "81740970286475425" + ], + "redemptionFee": "87229514143306", + "reserves": [ + "3000626727147261356022207", + "3805309720573099690741603" + ], + "LPTokenSupply": "6763971517446332855862522" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "5049948391975522664448", + "1186660288746819682304" + ], + "expectedQty": "6201847119260856939208", + "swapFee": "3723342276922667764", + "reserves": [ + "2995576778755285833357759", + "3804123060284352871059299" + ], + "LPTokenSupply": "6757766319319022768522325" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "7301954747944933376", - "expectedQty": "7380227674970981650", - "swapFee": "4381172848766960", + "inputQty": "407863060505459949568", + "expectedQty": "410440605998473317132", + "swapFee": "244717836303275969", "reserves": [ - "3445440051483550834501691", - "4737189637406770434537845" + "2995576778755285833357759", + "3803712619678354397742167" ], - "LPTokenSupply": "8098486484872415758082156" + "LPTokenSupply": "6757358480730300938900353" }, { - "type": "redeemBassets", - "inputQtys": [ - "229409004724856455168", - "77744596102616055808" + "type": "redeemMasset", + "inputQty": "16882583372624339927040", + "expectedQtys": [ + "7479658066940575898543", + "9497493097780834854157" ], - "expectedQty": "304212880286554675191", - "swapFee": "182637310558267765", + "redemptionFee": "10129550023574603956", "reserves": [ - "3445210642478825978046523", - "4737111892810667818482037" + "2988097120688345257459216", + "3794215126580573562888010" ], - "LPTokenSupply": "8098182107618549700965975" + "LPTokenSupply": "6740476910312678956433708" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "250588766635122556928", - "expectedQty": "252718703546518982410", - "swapFee": "150353259981073534", + "inputQty": "3411395747231208833024", + "expectedQty": "3393417115890990915817", "reserves": [ - "3444957923775279459064113", - "4737111892810667818482037" - ], - "LPTokenSupply": "8097931533887240576516400" + "2991508516435576466292240", + "3794215126580573562888010" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "24554870364483588096", - "expectedQty": "24763576238404238661", - "swapFee": "14732922218690152", + "inputIndex": 1, + "inputQty": "24439471700839543865344", + "expectedQty": "24593612318699057592949", + "swapFee": "14663683020503726319", "reserves": [ - "3444933160199041054825452", - "4737111892810667818482037" + "2991508516435576466292240", + "3769621514261874505295061" ], - "LPTokenSupply": "8097906980490168314797319" + "LPTokenSupply": "6719432322096032453856812" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "48699017706917505007616", - "42939799716231353729024" + "9557306421164652544", + "19069809661753470976" ], - "expectedQty": "90718686109758995446894", - "swapFee": "54463889999855310454", + "expectedQty": "28445728468352438460", "reserves": [ - "3396234142492123549817836", - "4694172093094436464753013" + "2991518073741997630944784", + "3769640584071536258766037" ], - "LPTokenSupply": "8007139276879409449571015" + "LPTokenSupply": "6719460767824500806295272" }, { - "type": "redeemMasset", - "inputQty": "70185565141868557107", - "expectedQtys": [ - "29751398650601968653", - "41121483212492357519" - ], - "redemptionFee": "42111339085121134", + "type": "mint", + "inputIndex": 0, + "inputQty": "932116130129250816", + "expectedQty": "927175991061920353", "reserves": [ - "3396204391093472947849183", - "4694130971611223972395494" - ], - "LPTokenSupply": "8007069095525401489526021" + "2991519005858127760195600", + "3769640584071536258766037" + ] }, { - "type": "redeemMasset", - "inputQty": "7758243370597500518", - "expectedQtys": [ - "3288690373483749432", - "4545528348851624766" - ], - "redemptionFee": "4654946022358500", + "type": "mint", + "inputIndex": 1, + "inputQty": "575332671594095443968", + "expectedQty": "571388293685549887142", "reserves": [ - "3396201102403099464099751", - "4694126426082875120770728" - ], - "LPTokenSupply": "8007061337747525494261353" + "2991519005858127760195600", + "3770215916743130354210005" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "6992783171759127920640", - "expectedQty": "7052073048542769486812", - "swapFee": "4195669903055476752", + "inputQty": "181257178978565324800", + "outputIndex": 1, + "expectedQty": "181395994018783666460", + "swapFee": "144237294016307870", "reserves": [ - "3389149029354556694612939", - "4694126426082875120770728" + "2991700263037106325520400", + "3770034520749111570543545" ], - "LPTokenSupply": "8000068974142756671888388" + "LPTokenSupply": "6720033097717906819733554", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "64552839534890568384512", - "44086369616400482304000" - ], - "expectedQty": "107562627470936534624169", + "type": "mint", + "inputIndex": 0, + "inputQty": "735888048613841174528", + "expectedQty": "731987659822190233233", "reserves": [ - "3453701868889447262997451", - "4738212795699275603074728" - ], - "LPTokenSupply": "8107631601613693206512557" + "2992436151085720166694928", + "3770034520749111570543545" + ] }, { - "type": "redeemMasset", - "inputQty": "86771327542103347", - "expectedQtys": [ - "36940811008348066", - "50679945764845713" - ], - "redemptionFee": "52062796525262", + "type": "redeem", + "inputIndex": 1, + "inputQty": "12922785252004664", + "expectedQty": "13004174877167954", + "swapFee": "7753671151202", "reserves": [ - "3453701831948636254649385", - "4738212745019329838229015" + "2992436151085720166694928", + "3770034507744936693375591" ], - "LPTokenSupply": "8107631514847571944061736" + "LPTokenSupply": "6720765072455719125077243" }, { - "type": "redeemMasset", - "inputQty": "2179991927221372164505", - "expectedQtys": [ - "928079263793669077117", - "1273253225109537640007" + "type": "mintMulti", + "inputQtys": [ + "282211487346963939328", + "711146299516519841792" ], - "redemptionFee": "1307995156332823298", + "expectedQty": "986986917860503898859", "reserves": [ - "3452773752684842585572268", - "4736939491794220300589008" + "2992718362573067130634256", + "3770745654044453213217383" ], - "LPTokenSupply": "8105451653719866205179560" + "LPTokenSupply": "6721752059373579628976102" }, { "type": "mintMulti", "inputQtys": [ - "83037090400386815098880", - "128455773132035664642048" + "641914368078610", + "879297018399760" ], - "expectedQty": "209303571000239436182006", + "expectedQty": "1511781192389761", "reserves": [ - "3535810843085229400671148", - "4865395264926255965231056" + "2992718363214981498712866", + "3770745654923750231617143" ], - "LPTokenSupply": "8314755224720105641361566" + "LPTokenSupply": "6721752060885360821365863" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "343120536231567818752", - "expectedQty": "346801800476897995038", - "swapFee": "205872321738940691", + "inputQty": "39440263839485437935616", + "expectedQty": "39688020215199542762289", + "swapFee": "23664158303691262761", "reserves": [ - "3535810843085229400671148", - "4865048463125779067236018" + "2992718363214981498712866", + "3731057634708550688854854" ], - "LPTokenSupply": "8314412124771106247436883" + "LPTokenSupply": "6682314163461705752556523" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "13262993988945817600", - "outputIndex": 1, - "expectedQty": "13281620823064524844", - "swapFee": "10514615566110118", - "reserves": [ - "3535824106079218346488748", - "4865035181504956002711174" + "type": "redeemBassets", + "inputQtys": [ + "128522548111828128", + "131692822525268672" ], - "LPTokenSupply": "8314412125822567804047894", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "10069042350774417408", - "expectedQty": "10154666857963956238", - "swapFee": "6041425410464650", + "expectedQty": "258629574385463376", + "swapFee": "155270907175583", "reserves": [ - "3535813951412360382532510", - "4865035181504956002711174" + "2992718234692433386884738", + "3731057503015728163586182" ], - "LPTokenSupply": "8314402057384359570676951" + "LPTokenSupply": "6682313904692387550635121" }, { - "type": "redeemMasset", - "inputQty": "7395985975865759917670", - "expectedQtys": [ - "3143357720651226069693", - "4325042581189805989400" - ], - "redemptionFee": "4437591585519455950", - "reserves": [ - "3532670593691709156462817", - "4860710138923766196721774" + "type": "mintMulti", + "inputQtys": [ + "5073349496502216", + "9054580637463032" ], - "LPTokenSupply": "8307006515167652362704876" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "249993729200814686208", - "expectedQty": "252675932149569764660", - "swapFee": "149996237520488811", + "expectedQty": "14039011901611972", "reserves": [ - "3532670593691709156462817", - "4860457462991616626957114" + "2992718239765782883386954", + "3731057512070308801049214" ], - "LPTokenSupply": "8306756536438075300067549" + "LPTokenSupply": "6682313918731399452247093" }, { "type": "redeemBassets", "inputQtys": [ - "3521833375057444352", - "21842317781722767360" + "75867884284859729838080", + "75780214282198167060480" ], - "expectedQty": "25087532042003875578", - "swapFee": "15061556158897663", + "expectedQty": "150725513267405797652382", + "swapFee": "90489601721476364410", "reserves": [ - "3532667071858334099018465", - "4860435620673834904189754" + "2916850355480923153548874", + "3655277297788110633988734" ], - "LPTokenSupply": "8306731435350632753184073" + "LPTokenSupply": "6531506964822444325866741" }, { "type": "redeemMasset", - "inputQty": "8290381414659530752", + "inputQty": "3635711898421422899", "expectedQtys": [ - "3523598345516574487", - "4847958373413043742" + "1622667587111554299", + "2033460503683445762" ], - "redemptionFee": "4974228848795718", + "redemptionFee": "2181427139052853", "reserves": [ - "3532663548259988582443978", - "4860430772715461491146012" + "2916848732813336041994575", + "3655275264327606950542972" ], - "LPTokenSupply": "8306723145466640978532892" + "LPTokenSupply": "6531503329328688618349127" }, { "type": "mint", "inputIndex": 0, - "inputQty": "6067203034931337887744", - "expectedQty": "6012407809508646837639", + "inputQty": "73880179553136277454848", + "expectedQty": "73482287708385740620708", "reserves": [ - "3538730751294919920331722", - "4860430772715461491146012" + "2990728912366472319449423", + "3655275264327606950542972" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1759006003110402588672", - "expectedQty": "1777867746598822414757", - "swapFee": "1055403601866241553", + "type": "redeemBassets", + "inputQtys": [ + "336942585762386018304", + "5861287305878669623296" + ], + "expectedQty": "6156694655526797472429", + "swapFee": "3696234534036500383", "reserves": [ - "3538730751294919920331722", - "4858652904968862668731255" + "2990391969780709933431119", + "3649413977021728280919676" ], - "LPTokenSupply": "8310976652813399409406014" + "LPTokenSupply": "6598825595770466928647060" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "53154976795863310925824", - "22344540502786180120576" + "81565856967699801833472", + "80515261957882478592" ], - "expectedQty": "74768045573983348351017", + "expectedQty": "81206439370476760288442", + "swapFee": "48753115491581004775", "reserves": [ - "3591885728090783231257546", - "4880997445471648848851831" + "2908826112813010131597647", + "3649333461759770398441084" ], - "LPTokenSupply": "8385744698387382757757031" + "LPTokenSupply": "6517575278596047745454319" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "123030236758481769070592", - "expectedQty": "121651169758393638809653", + "type": "redeemBassets", + "inputQtys": [ + "38989397697785780764672", + "60810273127017901719552" + ], + "expectedQty": "99174090435206851832406", + "swapFee": "59540178368144998098", "reserves": [ - "3591885728090783231257546", - "5004027682230130617922423" - ] + "2869836715115224350832975", + "3588523188632752496721532" + ], + "LPTokenSupply": "6418347602000309563123623" }, { "type": "mint", "inputIndex": 1, - "inputQty": "475130228205298253824", - "expectedQty": "469785969429027689164", + "inputQty": "74310044967844790272", + "expectedQty": "73800078200523437377", "reserves": [ - "3591885728090783231257546", - "5004502812458335916176247" + "2869836715115224350832975", + "3588597498677720341511804" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "40900601983158949249024", - "10135681266986145284096" + "type": "redeemMasset", + "inputQty": "3158586767960012174131", + "expectedQtys": [ + "1411435761240349530175", + "1764934853489752971541" ], - "expectedQty": "50555947993436873037376", - "swapFee": "30351779863980512129", + "redemptionFee": "1895152060776007304", "reserves": [ - "3550985126107624282008522", - "4994367131191349770892151" + "2868425279353984001302800", + "3586832563824230588540263" ], - "LPTokenSupply": "8457282389519890968757554" + "LPTokenSupply": "6415263004825756151987599" }, { - "type": "mintMulti", - "inputQtys": [ - "30362652305724710846464", - "14233307427016340930560" + "type": "redeemMasset", + "inputQty": "2577575821371092710195", + "expectedQtys": [ + "1151807414556009034260", + "1440281666571469239675" ], - "expectedQty": "44163842505956658000350", + "redemptionFee": "1546545492822655626", "reserves": [ - "3581347778413348992854986", - "5008600438618366111822711" + "2867273471939427992268540", + "3585392282157659119300588" ], - "LPTokenSupply": "8501446232025847626757904" + "LPTokenSupply": "6412685583658934341542966" + }, + { + "type": "redeemMasset", + "inputQty": "1693088851069015859", + "expectedQtys": [ + "756568516538647406", + "946053784777750027" + ], + "redemptionFee": "1015853310641409", + "reserves": [ + "2867272715370911453621134", + "3585391336103874341550561" + ], + "LPTokenSupply": "6412683890671668603591247" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "176711082769036706054144", - "expectedQty": "178181486091150334401492", - "swapFee": "106026649661422023632", + "inputQty": "240119814747638300672", + "expectedQty": "241269269861011655223", + "swapFee": "144071888848582980", "reserves": [ - "3403166292322198658453494", - "5008600438618366111822711" + "2867031446101050441965911", + "3585391336103874341550561" ], - "LPTokenSupply": "8324745751921777062906123" + "LPTokenSupply": "6412443785264109850148873" }, { - "type": "mintMulti", - "inputQtys": [ - "216666836046401273856", - "4596773291066215366656" - ], - "expectedQty": "4758976991951062709636", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7995281261506206892032", + "expectedQty": "8045677382082520884608", + "swapFee": "4797168756903724135", "reserves": [ - "3403382959158245059727350", - "5013197211909432327189367" + "2867031446101050441965911", + "3577345658721791820665953" ], - "LPTokenSupply": "8329504728913728125615759" + "LPTokenSupply": "6404448983719479333629254" }, { "type": "mintMulti", "inputQtys": [ - "208892386339467329536", - "381961610736887201792" + "7365365737075666583552", + "24188935814666562568192" ], - "expectedQty": "584660112459515401382", + "expectedQty": "31348780196219935032133", "reserves": [ - "3403591851544584527056886", - "5013579173520169214391159" + "2874396811838126108549463", + "3601534594536458383234145" ], - "LPTokenSupply": "8330089389026187641017141" + "LPTokenSupply": "6435797763915699268661387" }, { "type": "redeemBassets", "inputQtys": [ - "51405285662663775354880", - "88301589378548212170752" + "31043317405593161728", + "36327376195882569728" ], - "expectedQty": "138247822411833998963715", - "swapFee": "82998492542625974963", + "expectedQty": "66954901915754673544", + "swapFee": "40197059385083854", "reserves": [ - "3352186565881920751702006", - "4925277584141621002220407" + "2874365768520720515387735", + "3601498267160262500664417" ], - "LPTokenSupply": "8191766867971065278675958" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2674475211937297727488", - "expectedQty": "2643880832668034162688", - "reserves": [ - "3352186565881920751702006", - "4927952059353558299947895" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "14073687880887152148480", - "expectedQty": "13912617802592365389517", - "reserves": [ - "3352186565881920751702006", - "4942025747234445452096375" - ] + "LPTokenSupply": "6435730772836430067412373" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "92565747351055679488", - "expectedQty": "91505933711969164810", + "type": "redeem", + "inputIndex": 0, + "inputQty": "15579324205577692", + "expectedQty": "15653792889335277", + "swapFee": "9347594523346", "reserves": [ - "3352186565881920751702006", - "4942118312981796507775863" - ] + "2874365752866927626052458", + "3601498267160262500664417" + ], + "LPTokenSupply": "6435730757258040621287015" }, { "type": "redeemMasset", - "inputQty": "20022482748066414592", + "inputQty": "548463104517039718400", "expectedQtys": [ - "8171958565284295004", - "12047893303275820237" + "244810998722935107085", + "306741195619596850678" ], - "redemptionFee": "12013489648839848", + "redemptionFee": "329077862710223831", "reserves": [ - "3352178393923355467407002", - "4942106265088493231955626" + "2874120941868204690945373", + "3601191525964642903813739" ], - "LPTokenSupply": "8208394851258638545862365" + "LPTokenSupply": "6435182327061309852590998" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "13977736599423276", - "expectedQty": "13817700772338727", + "type": "mintMulti", + "inputQtys": [ + "4710538136255956254720", + "13484902074003346161664" + ], + "expectedQty": "18077549345576783289606", "reserves": [ - "3352178393923355467407002", - "4942106279066229831378902" - ] + "2878831480004460647200093", + "3614676428038646249975403" + ], + "LPTokenSupply": "6453259876406886635880604" }, { "type": "redeemBassets", "inputQtys": [ - "3146345682372916", - "112982854293206528" + "2811566817459670016", + "1611492587987886336" ], - "expectedQty": "114808114622391418", - "swapFee": "68926224508139", + "expectedQty": "4396946326453993647", + "swapFee": "2639751646860512", "reserves": [ - "3352178390777009785034086", - "4942106166083375538172374" + "2878828668437643187530077", + "3614674816546058262089067" ], - "LPTokenSupply": "8208394750206191093752347" + "LPTokenSupply": "6453255477084783699712495" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "1786362390927469445120", - "outputIndex": 1, - "expectedQty": "1789814694445138561239", - "swapFee": "1416594512009388626", + "inputQty": "117764932694689169408", + "expectedQty": "118326867158375303222", + "swapFee": "70658959616813501", "reserves": [ - "3353964753167937254479206", - "4940316351388930399611135" + "2878710341570484812226855", + "3614674816546058262089067" ], - "LPTokenSupply": "8208394891865642294691209", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6453137719217984972224437" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "44277207118654898176", - "outputIndex": 0, - "expectedQty": "44156601422637114633", - "swapFee": "0", + "inputQty": "8378439357400162304", + "expectedQty": "8431393791289034524", + "swapFee": "5027063614440097", "reserves": [ - "3353920596566514617364573", - "4940360628596049054509311" + "2878710341570484812226855", + "3614666385152266973054543" ], - "LPTokenSupply": "8208394891865642294691209", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6453129341281333933506142" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "16885424460487345569792", - "6380976453680112861184" + "4146407560139252432896", + "1224416798671811903488" ], - "expectedQty": "23045560673323396910236", + "expectedQty": "5340243972655504321677", + "swapFee": "3206070025608667793", "reserves": [ - "3370806021027001962934365", - "4946741605049729167370495" + "2874563934010345559793959", + "3613441968353595161151055" ], - "LPTokenSupply": "8231440452538965691601445" + "LPTokenSupply": "6447786211845655381383450" }, { "type": "redeemMasset", - "inputQty": "151528933570066", + "inputQty": "170242808101430656", "expectedQtys": [ - "62014440825522", - "91007733056096" + "75852423734642340", + "95349533917554027" ], - "redemptionFee": "90917360142", + "redemptionFee": "102145684860858", "reserves": [ - "3370806020964987522108843", - "4946741604958721434314399" + "2874563858157921825151619", + "3613441873004061243597028" ], - "LPTokenSupply": "8231440452387445849767393" + "LPTokenSupply": "6447786041613061848438879" }, { - "type": "mintMulti", - "inputQtys": [ - "38599319518321672", - "2409491027660868" - ], - "expectedQty": "40642976052307475", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1282051745877943808", + "expectedQty": "1288164184315536554", + "swapFee": "769231047526766", "reserves": [ - "3370806059564307040430515", - "4946741607368212461975267" + "2874562569993737509615065", + "3613441873004061243597028" ], - "LPTokenSupply": "8231440493030421902074868" + "LPTokenSupply": "6447784759638239075247747" }, { "type": "redeemMasset", - "inputQty": "285144458532068157030", + "inputQty": "107552710214812499968", "expectedQtys": [ - "116697675149715232544", - "171256736503212287353" + "47920565962745937341", + "60238097244902408107" ], - "redemptionFee": "171086675119240894", + "redemptionFee": "64531626128887499", "reserves": [ - "3370689361889157325197971", - "4946570350631709249687914" + "2874514649427774763677724", + "3613381634906816341188921" ], - "LPTokenSupply": "8231155365680557345841927" + "LPTokenSupply": "6447677213381186875636528" }, { - "type": "redeemBassets", - "inputQtys": [ - "9257693013437079093248", - "12425524476013321388032" + "type": "redeemMasset", + "inputQty": "1578911919915967", + "expectedQtys": [ + "703490905418568", + "884316633581760" ], - "expectedQty": "21459998680867194229018", - "swapFee": "12883729446188029355", + "redemptionFee": "947347151949", "reserves": [ - "3361431668875720246104723", - "4934144826155695928299882" + "2874514648724283858259156", + "3613381634022499707607161" ], - "LPTokenSupply": "8209683771643188582386488" + "LPTokenSupply": "6447677211802369690435755" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "397172354430651662336", - "expectedQty": "400443534669807816752", - "swapFee": "238303412658390997", + "type": "mintMulti", + "inputQtys": [ + "159929576728401356521472", + "274768067174982215532544" + ], + "expectedQty": "431950454543618293260964", "reserves": [ - "3361031225341050438287971", - "4934144826155695928299882" + "3034444225452685214780628", + "3888149701197481923139705" ], - "LPTokenSupply": "8209286623119099196563251" + "LPTokenSupply": "6879627666345987983696719" }, { - "type": "redeemMasset", - "inputQty": "38137801181213065216", - "expectedQtys": [ - "15604940735136740506", - "22908754018769394120" + "type": "mintMulti", + "inputQtys": [ + "4224338645376147390464", + "5375570019584003014656" ], - "redemptionFee": "22882680708727839", + "expectedQty": "9540352509455943208382", "reserves": [ - "3361015620400315301547465", - "4934121917401677158905762" + "3038668564098061362171092", + "3893525271217065926154361" ], - "LPTokenSupply": "8209248487606186054370818" + "LPTokenSupply": "6889168018855443926905101" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "71866946929465917440", + "expectedQty": "71488438049580453196", + "reserves": [ + "3038740431044990828088532", + "3893525271217065926154361" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "7097006599058796576768", + "inputQty": "1791129450805108408320", "outputIndex": 0, - "expectedQty": "7077764261747353201542", + "expectedQty": "1788109808656651329623", "swapFee": "0", "reserves": [ - "3353937856138567948345923", - "4941218924000735955482530" + "3036952321236334176758909", + "3895316400667871034562681" ], - "LPTokenSupply": "8209248487606186054370818", + "LPTokenSupply": "6889239507293493507358297", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "3798281944509588701184", - "expectedQtys": [ - "1550879852186037538463", - "2284847603973168603453" - ], - "redemptionFee": "2278969166705753220", + "type": "mint", + "inputIndex": 1, + "inputQty": "3931676415265779220480", + "expectedQty": "3904371046824432010804", "reserves": [ - "3352386976286381910807460", - "4938934076396762786879077" - ], - "LPTokenSupply": "8205450433558593136244956" + "3036952321236334176758909", + "3899248077083136813783161" + ] }, { - "type": "redeemMasset", - "inputQty": "746166498102301286", - "expectedQtys": [ - "304667977378172417", - "448854820790053655" + "type": "redeem", + "inputIndex": 0, + "inputQty": "1691219374181188", + "expectedQty": "1699139814295718", + "swapFee": "1014731624508", + "reserves": [ + "3036952319537194362463191", + "3899248077083136813783161" ], - "redemptionFee": "447699898861380", + "LPTokenSupply": "6893143876649200038350363" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1061423657200662740992", + "expectedQty": "1068206684570954617544", + "swapFee": "636854194320397644", "reserves": [ - "3352386671618404532635043", - "4938933627541941996825422" + "3036952319537194362463191", + "3898179870398565859165617" ], - "LPTokenSupply": "8205449687436865023829808" + "LPTokenSupply": "6892082516677418807649135" }, { "type": "redeemBassets", "inputQtys": [ - "72168741247639126016", - "65199442004554227712" + "13048975567858194972672", + "14707711391585903050752" ], - "expectedQty": "135990422562879014224", - "swapFee": "81643239481416258", + "expectedQty": "27585897022771741534363", + "swapFee": "16561475098722278287", "reserves": [ - "3352314502877156893509027", - "4938868428099937442597710" + "3023903343969336167490519", + "3883472159006979956114865" ], - "LPTokenSupply": "8205313623535386611540950" + "LPTokenSupply": "6864481714327058216064312" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "256264327625789964288", - "expectedQty": "253330339495064653062", + "inputIndex": 0, + "inputQty": "44327071270026568794112", + "expectedQty": "44092631653165637890212", "reserves": [ - "3352314502877156893509027", - "4939124692427563232561998" + "3068230415239362736284631", + "3883472159006979956114865" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "62286855691706933706752", - "expectedQty": "62969152674715626656085", - "swapFee": "37372113415024160224", + "type": "redeemBassets", + "inputQtys": [ + "4119475578350256783360", + "4338972419882585948160" + ], + "expectedQty": "8406585102969711894465", + "swapFee": "5046979249331425992", "reserves": [ - "3352314502877156893509027", - "4876155539752847605905913" + "3064110939661012479501271", + "3879133186587097370166705" ], - "LPTokenSupply": "8143283835394516244903282" + "LPTokenSupply": "6900163218595929743776665" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2811365189070172454912", - "expectedQty": "2842111922772452316291", - "swapFee": "1686819113442103472", + "inputQty": "1411321158202030030848", + "expectedQty": "1420281565106490331090", + "swapFee": "846792694921218018", "reserves": [ - "3352314502877156893509027", - "4873313427830075153589622" + "3064110939661012479501271", + "3877712905021990879835615" ], - "LPTokenSupply": "8140472638887357416658717" + "LPTokenSupply": "6898751982116997205867618" }, { "type": "redeemBassets", "inputQtys": [ - "4631657127107233792", - "396700540402055552" + "20062267597495689216", + "30611096396040368128" ], - "expectedQty": "4983009699813167183", - "swapFee": "2991600780356113", + "expectedQty": "50355296475672492237", + "swapFee": "30231316675408740", "reserves": [ - "3352309871220029786275235", - "4873313031129534751534070" + "3064090877393414983812055", + "3877682293925594839467487" ], - "LPTokenSupply": "8140467653185216901171031" + "LPTokenSupply": "6898701599612336525507514" }, { - "type": "mintMulti", - "inputQtys": [ - "1373749975761871962112", - "288509502337619329024" - ], - "expectedQty": "1646858769776275471740", + "type": "mint", + "inputIndex": 1, + "inputQty": "63377231765462111485952", + "expectedQty": "62938033038201799099312", "reserves": [ - "3353683621195791658237347", - "4873601540631872370863094" - ], - "LPTokenSupply": "8142114511954993176642771" + "3064090877393414983812055", + "3941059525691056950953439" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "1025376466688587904", - "expectedQty": "1033874975284141866", - "swapFee": "615225880013152", + "inputQty": "1704852252062055424", + "expectedQty": "1695893957205935489", "reserves": [ - "3353682587320816374095481", - "4873601540631872370863094" - ], - "LPTokenSupply": "8142113486640049076056182" + "3064092582245667045867479", + "3941059525691056950953439" + ] }, { "type": "redeemMasset", - "inputQty": "18403210938485004697", + "inputQty": "4266391341610834906316", "expectedQtys": [ - "7575612531015913492", - "11008947907584857929" + "1876680207350001930487", + "2413800565527298993563" ], - "redemptionFee": "11041926563091002", + "redemptionFee": "2559834804966500943", "reserves": [ - "3353675011708285358181989", - "4873590531683964786005165" + "3062215902038317043936992", + "3938645725125529651959876" ], - "LPTokenSupply": "8142095084533303247360585" + "LPTokenSupply": "6957375193186365192286093" }, { "type": "redeemBassets", "inputQtys": [ - "428431990665072279552", - "1248920056961287585792" + "1951576414659634003968", + "2553462779325001498624" ], - "expectedQty": "1659325384377902146240", - "swapFee": "996192946394578034", + "expectedQty": "4477023540851650187765", + "swapFee": "2687826820603352123", "reserves": [ - "3353246579717620285902437", - "4872341611627003498419373" + "3060264325623657409933024", + "3936092262346204650461252" ], - "LPTokenSupply": "8140434862575273590094113" + "LPTokenSupply": "6952895750601374999081416" }, { - "type": "mintMulti", - "inputQtys": [ - "10319312936773569478656", - "43312790175519747342336" - ], - "expectedQty": "53046687853248944723665", + "type": "mint", + "inputIndex": 1, + "inputQty": "319076489707353600", + "expectedQty": "316857095058230614", "reserves": [ - "3363565892654393855381093", - "4915654401802523245761709" - ], - "LPTokenSupply": "8193481550428522534817778" + "3060264325623657409933024", + "3936092581422694357814852" + ] }, { - "type": "redeemMasset", - "inputQty": "24930399018482835", - "expectedQtys": [ - "10228219382583843", - "14947943116084587" - ], - "redemptionFee": "14958239411089", + "type": "swap", + "inputIndex": 1, + "inputQty": "1738992979491859988480", + "outputIndex": 0, + "expectedQty": "1736014153061495716398", + "swapFee": "0", "reserves": [ - "3363565882426174472797250", - "4915654386854580129677122" + "3058528311470595914216626", + "3937831574402186217803332" ], - "LPTokenSupply": "8193481525499619340276051" + "LPTokenSupply": "6952896067458470057312030", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "84115838564049024", - "164709441431565600" + "39679966005551008055296", + "13447641882552262721536" ], - "expectedQty": "246203684805977173", + "expectedQty": "52825104114184329292337", + "reserves": [ + "3098208277476146922271922", + "3951279216284738480524868" + ], + "LPTokenSupply": "7005721171572654386604367" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "77889217451678849040384", + "outputIndex": 1, + "expectedQty": "77943135892916958315272", + "swapFee": "61978753022660454349", "reserves": [ - "3363565966542013036846274", - "4915654551564021561242722" + "3176097494927825771312306", + "3873336080391821522209596" ], - "LPTokenSupply": "8193481771703304146253224" + "LPTokenSupply": "7005727369447956652649801", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "262826988622695658160128", - "expectedQty": "264946711827090065438610", - "swapFee": "157696193173617394896", + "inputQty": "427319555963813128830976", + "expectedQty": "429290430620521127640072", + "swapFee": "256391733578287877298", "reserves": [ - "3098619254714922971407664", - "4915654551564021561242722" + "2746807064307304643672234", + "3873336080391821522209596" ], - "LPTokenSupply": "7930670552699925849832585" + "LPTokenSupply": "6578433452657501352606554" }, { - "type": "redeemMasset", - "inputQty": "13365263113901708083", - "expectedQtys": [ - "5218854198652723231", - "8279198664540820672" + "type": "mintMulti", + "inputQtys": [ + "886257003595086036992", + "392623270465357742080" ], - "redemptionFee": "8019157868341024", + "expectedQty": "1271666941548763450244", "reserves": [ - "3098614035860724318684433", - "4915646272365357020422050" + "2747693321310899729709226", + "3873728703662286879951676" ], - "LPTokenSupply": "7930657188238727734958604" + "LPTokenSupply": "6579705119599050116056798" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6429933374274241822720", - "expectedQty": "6502188816432630939962", - "swapFee": "3857960024564545093", + "type": "mint", + "inputIndex": 0, + "inputQty": "2866827336336643981312", + "expectedQty": "2852738558483531881295", "reserves": [ - "3098614035860724318684433", - "4909144083548924389482088" - ], - "LPTokenSupply": "7924227640660455949590393" + "2750560148647236373690538", + "3873728703662286879951676" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1655848890092260425728", - "1305762006031470428160" + "1785387021033026355200", + "747621656300042715136" ], - "expectedQty": "2932395516734156898514", - "swapFee": "1760493606204216669", + "expectedQty": "2518787749298240211055", + "swapFee": "1512179957553476212", "reserves": [ - "3096958186970632058258705", - "4907838321542892919053928" + "2748774761626203347335338", + "3872981082005986837236540" ], - "LPTokenSupply": "7921293660699476208896875" + "LPTokenSupply": "6580037709446273609598446" }, { - "type": "redeemBassets", - "inputQtys": [ - "38840278649848800", - "24381486709001668" + "type": "redeemMasset", + "inputQty": "34182234217362", + "expectedQtys": [ + "14270873709468", + "20107440111888" ], - "expectedQty": "62609599281226346", - "swapFee": "37588312556269", + "redemptionFee": "20509340530", "reserves": [ - "3096958148130353408409905", - "4907838297161406210052260" + "2748774761611932473625870", + "3872981081985879397124652" ], - "LPTokenSupply": "7921293598056047446369885" + "LPTokenSupply": "6580037709412093426315137" }, { "type": "mint", "inputIndex": 1, - "inputQty": "12538294105999716", - "expectedQty": "12391531280182929", + "inputQty": "66195384108941951631360", + "expectedQty": "65711491632013464343154", "reserves": [ - "3096958148130353408409905", - "4907838309699700316051976" + "2748774761611932473625870", + "3939176466094821348756012" ] }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "6788561969832112685056", - "expectedQty": "6842014154787201741597", - "swapFee": "4073137181899267611", - "reserves": [ - "3090116133975566206668308", - "4907838309699700316051976" - ], - "LPTokenSupply": "7914505455791464803794519" - }, { "type": "mintMulti", "inputQtys": [ - "18402135853101960", - "44496390141054760" + "3011114154629708800", + "1848541326128457472" ], - "expectedQty": "62222726161769681", + "expectedQty": "4831522316248395635", "reserves": [ - "3090116152377702059770268", - "4907838354196090457106736" + "2748777772726087103334670", + "3939178314636147477213484" ], - "LPTokenSupply": "7914505518014190965564200" + "LPTokenSupply": "6645754032566423139053926" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "1286774627579383250944", - "outputIndex": 1, - "expectedQty": "1290048239540210240238", - "swapFee": "1020768979523168622", + "inputQty": "33262964346159814934528", + "expectedQty": "33101100582468612258526", "reserves": [ - "3091402927005281443021212", - "4906548305956550246866498" - ], - "LPTokenSupply": "7914505620091088917881062", - "hardLimitError": false, - "insufficientLiquidityError": false + "2782040737072246918269198", + "3939178314636147477213484" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "91975206812349603250176", - "expectedQty": "92691859591403384426845", - "swapFee": "55185124087409761950", + "inputQty": "6643933522816093126656", + "outputIndex": 1, + "expectedQty": "6654602869543987274010", + "swapFee": "5289111257078311310", "reserves": [ - "2998711067413878058594367", - "4906548305956550246866498" + "2788684670595063011395854", + "3932523711766603489939474" ], - "LPTokenSupply": "7822535931791148055607081" + "LPTokenSupply": "6678855662060017459143583", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "312195081634656446054", + "inputQty": "1984719772915", "expectedQtys": [ - "119605859907874863840", - "195701391738140196111" + "828201271515", + "1167905849195" ], - "redemptionFee": "187317048980793867", + "redemptionFee": "1190831863", "reserves": [ - "2998591461553970183730527", - "4906352604564812106670387" + "2788684670594234810124339", + "3932523711765435584090279" ], - "LPTokenSupply": "7822223755441218297240413" + "LPTokenSupply": "6678855662058032858453854" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "141515032549242", - "outputIndex": 0, - "expectedQty": "141006442361365", - "swapFee": "0", + "inputQty": "1782957479470343651328", + "expectedQty": "1794965747417328511789", + "swapFee": "1069774487682206190", "reserves": [ - "2998591461412963741369162", - "4906352604706327139219629" + "2788684670594234810124339", + "3930728746018018255578490" ], - "LPTokenSupply": "7822223755441218297240413", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6677072811556011283023145" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "120633488315783449673728", - "expectedQty": "121997673913233907469900", - "swapFee": "72380092989470069804", + "type": "redeemBassets", + "inputQtys": [ + "10265594221765379227648", + "5424090653564331884544" + ], + "expectedQty": "15599755448978632516220", + "swapFee": "9365472552918930868", "reserves": [ - "2998591461412963741369162", - "4784354930793093231749729" + "2778419076372469430896691", + "3925304655364453923693946" ], - "LPTokenSupply": "7701597505134733794573665" + "LPTokenSupply": "6661464627181735023469142" }, { "type": "redeemBassets", "inputQtys": [ - "363595648651475", - "454979920122389" + "37909210761877479424", + "53669256579138363392" ], - "expectedQty": "810181131571796", - "swapFee": "486400519254", + "expectedQty": "91001062025257510309", + "swapFee": "54633417265513814", "reserves": [ - "2998591461049368092717687", - "4784354930338113311627340" + "2778381167161707553417267", + "3925250986107874785330554" ], - "LPTokenSupply": "7701597504324114902534539" + "LPTokenSupply": "6661373576949634226996399" }, { - "type": "redeemMasset", - "inputQty": "21025795452257302", - "expectedQtys": [ - "8181411974218214", - "13053721797193417" + "type": "mint", + "inputIndex": 1, + "inputQty": "26396777574145110048768", + "expectedQty": "26203963438621681791718", + "reserves": [ + "2778381167161707553417267", + "3951647763682019895379322" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "25835400839985360", + "446319996038891328" ], - "redemptionFee": "12615477271354", + "expectedQty": "468764615614628049", "reserves": [ - "2998591452867956118499473", - "4784354917284391514433923" + "2778381192997108393402627", + "3951648210002015934270650" ], - "LPTokenSupply": "7701597483299580998004372" + "LPTokenSupply": "6687578009152871523416166" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "148945122283708976463872", - "expectedQty": "150095274907291972111281", - "swapFee": "89367073370225385878", + "type": "redeemBassets", + "inputQtys": [ + "3910820951366108184576", + "3699723532348134785024" + ], + "expectedQty": "7564416457598127845801", + "swapFee": "4541374699378503809", "reserves": [ - "2848496177960664146388192", - "4784354917284391514433923" + "2774470372045742285218051", + "3947948486469667799485626" ], - "LPTokenSupply": "7552661297723209044079087" + "LPTokenSupply": "6680009505458043954916935" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "175686947056286368", - "outputIndex": 1, - "expectedQty": "176220470603210099", - "swapFee": "139407212065602", + "type": "mintMulti", + "inputQtys": [ + "2944263642450037760", + "3730574051551671808" + ], + "expectedQty": "6633191372568124340", "reserves": [ - "2848496353647611202674560", - "4784354741063920911223824" + "2774473316309384735255811", + "3947952217043719351157434" ], - "LPTokenSupply": "7552661297737149765285647", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6680016138649416523041275" }, { - "type": "redeemMasset", - "inputQty": "22901575561040130867", - "expectedQtys": [ - "8632177569680549391", - "14498666859208463207" - ], - "redemptionFee": "13740945336624078", + "type": "redeem", + "inputIndex": 1, + "inputQty": "151710248536520416", + "expectedQty": "152736811356321064", + "swapFee": "91026149121912", "reserves": [ - "2848487721470041522125169", - "4784340242397061702760617" + "2774473316309384735255811", + "3947952064306907994836370" ], - "LPTokenSupply": "7552638397535683258817187" + "LPTokenSupply": "6680015986948270601433050" }, { "type": "redeemBassets", "inputQtys": [ - "83250205724133648", - "263025344305058752" + "174040717209663438848", + "120823339494151651328" ], - "expectedQty": "342463184340659830", - "swapFee": "205601271367216", + "expectedQty": "293131770462950397042", + "swapFee": "175984653069612005", "reserves": [ - "2848487638219835797991521", - "4784339979371717397701865" + "2774299275592175071816963", + "3947831240967413843185042" ], - "LPTokenSupply": "7552638054887457773926861" + "LPTokenSupply": "6679722696791619888385202" }, { - "type": "mintMulti", - "inputQtys": [ - "8914169005590887530496", - "10220667150306025406464" - ], - "expectedQty": "18940527941332281355687", + "type": "mint", + "inputIndex": 0, + "inputQty": "1106121360130070", + "expectedQty": "1100730620204530", "reserves": [ - "2857401807225426685522017", - "4794560646522023423108329" - ], - "LPTokenSupply": "7571578582828790055282548" + "2774299276698296431947033", + "3947831240967413843185042" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "190157397263990887809024", - "expectedQty": "192322584047639641874460", - "swapFee": "114094438358394532685", + "inputQty": "33377893779955112738816", + "outputIndex": 0, + "expectedQty": "33293297636763379777310", + "swapFee": "0", "reserves": [ - "2857401807225426685522017", - "4602238062474383781233869" + "2741005979061533052169723", + "3981209134747368955923858" ], - "LPTokenSupply": "7381432595008635006926792" + "LPTokenSupply": "6679722697892350508589732", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "7256456608318968", + "inputQty": "15527763188154137732710", "expectedQtys": [ - "2807337355263523", - "4521602386451024" + "6367952181392105708103", + "9249213459531659605855" ], - "redemptionFee": "4353873964991", + "redemptionFee": "9316657912892482639", "reserves": [ - "2857401804418089330258494", - "4602238057952781394782845" + "2734638026880140946461620", + "3971959921287837296318003" ], - "LPTokenSupply": "7381432587752613786004323" + "LPTokenSupply": "6664195866369987660105285" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "141882502333188864", - "expectedQty": "142994045525189624", - "swapFee": "85129501399913", + "inputIndex": 1, + "inputQty": "192275176067561521152", + "expectedQty": "193589097652489299309", + "swapFee": "115365105640536912", "reserves": [ - "2857401661424043805068870", - "4602238057952781394782845" + "2734638026880140946461620", + "3971766332190184807018694" ], - "LPTokenSupply": "7381432445878624402955450" + "LPTokenSupply": "6664003602730430662637824" }, { - "type": "mintMulti", - "inputQtys": [ - "211074767841072896", - "154125461381827520" - ], - "expectedQty": "361615526255289009", + "type": "mint", + "inputIndex": 1, + "inputQty": "497460391052410290176", + "expectedQty": "493787525817542440838", "reserves": [ - "2857401872498811646141766", - "4602238212078242776610365" - ], - "LPTokenSupply": "7381432807494150658244459" + "2734638026880140946461620", + "3972263792581237217308870" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "55365338307803258880", - "41293518325630844928" - ], - "expectedQty": "95708364877418797685", - "swapFee": "57459494623225213", + "type": "mint", + "inputIndex": 1, + "inputQty": "2816386002981872128", + "expectedQty": "2795591411648581453", "reserves": [ - "2857346507160503842882886", - "4602196918559917145765437" - ], - "LPTokenSupply": "7381337047415728078544081" + "2734638026880140946461620", + "3972266608967240199180998" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "392104307934695680", - "403142970480864832" - ], - "expectedQty": "787209831843365361", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5795873218273305690112", + "expectedQty": "5820196048238136677136", + "swapFee": "3477523930963983414", "reserves": [ - "2857346899264811777578566", - "4602197321702887626630269" + "2728817830831902809784484", + "3972266608967240199180998" ], - "LPTokenSupply": "7381337834625559921909442" + "LPTokenSupply": "6658704660381779644368344" }, { - "type": "redeemMasset", - "inputQty": "8410791274038945644544", - "expectedQtys": [ - "3253899140823807605724", - "5240905790908239651534" + "type": "redeemBassets", + "inputQtys": [ + "119475436389465620480", + "54351207137054810112" ], - "redemptionFee": "5046474764423367386", + "expectedQty": "172854811100492477339", + "swapFee": "103775151751346294", "reserves": [ - "2854093000123987969972842", - "4596956415911979386978735" + "2728698355395513344164004", + "3972212257760103144370886" ], - "LPTokenSupply": "7372927547998997418601636" + "LPTokenSupply": "6658531712173042575679339" }, { "type": "mintMulti", "inputQtys": [ - "23071928867803583479808", - "24504971002774728736768" + "6576562753173011300352", + "8093916729718248308736" ], - "expectedQty": "47094637113500560253654", + "expectedQty": "14579275327371256890504", "reserves": [ - "2877164928991791553452650", - "4621461386914754115715503" + "2735274918148686355464356", + "3980306174489821392679622" ], - "LPTokenSupply": "7420022185112497978855290" + "LPTokenSupply": "6673110987500413832569843" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "35193442465771486707712", - "expectedQty": "34778105266458797918258", + "type": "redeemBassets", + "inputQtys": [ + "49294092455069974528", + "47857763851836784640" + ], + "expectedQty": "96562893700044743682", + "swapFee": "57972519731865965", "reserves": [ - "2877164928991791553452650", - "4656654829380525602423215" - ] + "2735225624056231285489828", + "3980258316725969555894982" + ], + "LPTokenSupply": "6673014372431446029146791" }, { "type": "mint", "inputIndex": 1, - "inputQty": "264807860152017027072", - "expectedQty": "261679414491718325630", + "inputQty": "198546788415370380181504", + "expectedQty": "197064107008458870172759", "reserves": [ - "2877164928991791553452650", - "4656919637240677619450287" + "2735225624056231285489828", + "4178805105141339936076486" ] }, { - "type": "mintMulti", - "inputQtys": [ - "516805619574644352", - "1480238680302012416" - ], - "expectedQty": "1975244696836074986", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1283922951346492416", + "expectedQty": "1289007461961504142", + "swapFee": "770353770807895", "reserves": [ - "2877165445797411128097002", - "4656921117479357921462703" + "2735224335048769323985686", + "4178805105141339936076486" ], - "LPTokenSupply": "7455063945038145331174164" + "LPTokenSupply": "6870077195593988929907923" }, { - "type": "mintMulti", - "inputQtys": [ - "85610663044193410088960", - "94359610249934616395776" + "type": "redeemMasset", + "inputQty": "3243560326424412569", + "expectedQtys": [ + "1290602967844229338", + "1971749885971188259" ], - "expectedQty": "178140550049480660608361", + "redemptionFee": "1946136195854647", "reserves": [ - "2962776108841604538185962", - "4751280727729292537858479" + "2735223044445801479756348", + "4178803133391453964888227" ], - "LPTokenSupply": "7633204495087625991782525" + "LPTokenSupply": "6870073952228276125080818" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "6970588968031215616", - "outputIndex": 1, - "expectedQty": "6988918120535321112", - "swapFee": "5529673025402811", + "inputQty": "11953790327818438049792", + "expectedQty": "12000998681858520950242", + "swapFee": "7172274196691062829", "reserves": [ - "2962783079430572569401578", - "4751273738811172002537367" + "2723222045763942958806106", + "4178803133391453964888227" ], - "LPTokenSupply": "7633204495640593294322806", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6858120879127877356137308" }, { - "type": "mintMulti", - "inputQtys": [ - "29637807799693080", - "39093511327818264" + "type": "mint", + "inputIndex": 1, + "inputQty": "2535765962820226646016", + "expectedQty": "2516593292887665765513", + "reserves": [ + "2723222045763942958806106", + "4181338899354274191534243" + ] + }, + { + "type": "redeemMasset", + "inputQty": "419325335469570496921", + "expectedQtys": [ + "166344724216520231631", + "255412028244569665658" ], - "expectedQty": "68021923235349119", + "redemptionFee": "251595201281742298", "reserves": [ - "2962783109068380369094658", - "4751273777904683330355631" + "2723055701039726438574475", + "4181083487326029621868585" ], - "LPTokenSupply": "7633204563662516529671925" + "LPTokenSupply": "6860218172244815579580129" }, { "type": "redeemBassets", "inputQtys": [ - "61529497904800923648", - "30949387312766222336" + "409033908406018816", + "537658517426550976" ], - "expectedQty": "91597822363325794862", - "swapFee": "54991688431054109", + "expectedQty": "940778493829121331", + "swapFee": "564805979885404", "reserves": [ - "2962721579570475568171010", - "4751242828517370564133295" + "2723055292005818032555659", + "4181082949667512195317609" ], - "LPTokenSupply": "7633112916347633615928363" + "LPTokenSupply": "6860217230957996368561933" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "49200271132965683200", - "expectedQty": "49757083735615866902", - "swapFee": "29520162679779409", + "type": "mintMulti", + "inputQtys": [ + "32170041452596690944", + "2433937444226816512" + ], + "expectedQty": "34440213434614741612", "reserves": [ - "2962721579570475568171010", - "4751193071433634948266393" + "2723087462047270629246603", + "4181085383604956422134121" ], - "LPTokenSupply": "7633063719028516918223103" + "LPTokenSupply": "6860251671171430983303545" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9227512100637195108352", - "expectedQty": "9331911962047816254155", - "swapFee": "5536507260382317065", + "type": "redeemBassets", + "inputQtys": [ + "15873760218719193137152", + "15918509777664794951680" + ], + "expectedQty": "31600197921044714188510", + "swapFee": "18971501653618999913", "reserves": [ - "2962721579570475568171010", - "4741861159471587132012238" + "2707213701828551436109451", + "4165166873827291627182441" ], - "LPTokenSupply": "7623836760578605761346457" + "LPTokenSupply": "6828634398898898012015112" }, { "type": "mintMulti", "inputQtys": [ - "1257036868294474203136", - "4851297967732922777600" + "333951931697002432", + "597627346868611584" ], - "expectedQty": "6040629970537347078820", + "expectedQty": "925548260460043403", "reserves": [ - "2963978616438770042374146", - "4746712457439320054789838" + "2707214035780483133111883", + "4165167471454638495794025" ], - "LPTokenSupply": "7629877390549143108425277" + "LPTokenSupply": "6828635324447158472058515" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9878427050384679763968", - "4509632366481315463168" + "53390677189801000", + "197122796055884992" ], - "expectedQty": "14251914372645466241807", + "expectedQty": "248780233932964622", + "swapFee": "149357755012786", "reserves": [ - "2973857043489154722138114", - "4751222089805801370253006" + "2707213982389805943310883", + "4165167274331842439909033" ], - "LPTokenSupply": "7644129304921788574667084" + "LPTokenSupply": "6828635075532502559582384" }, { "type": "redeemBassets", "inputQtys": [ - "18211258673699782656", - "154290833424327180288" + "7028795654305051836416", + "962108687996185870336" ], - "expectedQty": "170532535212537385412", - "swapFee": "102380949697340835", + "expectedQty": "7951951306562608890996", + "swapFee": "4774035205060601695", "reserves": [ - "2973838832230481022355458", - "4751067798972377043072718" + "2700185186735500891474467", + "4164205165643846254038697" ], - "LPTokenSupply": "7643958680243721309674919" + "LPTokenSupply": "6820678827594255396149861" }, { "type": "redeemBassets", "inputQtys": [ - "10914222902189967360", - "4501151028392905216" + "1772160634525592584192", + "1226171200312115986432" ], - "expectedQty": "15270570498832739837", - "swapFee": "9167843005102705", + "expectedQty": "2981064952225592799721", + "swapFee": "1789712799014764538", "reserves": [ - "2973827918007578832388098", - "4751063297821348650167502" + "2698413026100975298890275", + "4162978994443534138052265" ], - "LPTokenSupply": "7643943401422163772342646" + "LPTokenSupply": "6817696151900510690062054" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "589086490944789544960", - "expectedQty": "593727390910359397689", - "swapFee": "353451894566873726", + "type": "mint", + "inputIndex": 1, + "inputQty": "694682081530336256", + "expectedQty": "689416005757917553", "reserves": [ - "2973234190616668472990409", - "4751063297821348650167502" - ], - "LPTokenSupply": "7643354350276408439485058" + "2698413026100975298890275", + "4162979689125615668388521" + ] }, { - "type": "redeemMasset", - "inputQty": "4942077800296379", - "expectedQtys": [ - "1921294976358727", - "3070122789275889" - ], - "redemptionFee": "2965246680177", + "type": "swap", + "inputIndex": 1, + "inputQty": "4697965208599438295040", + "outputIndex": 0, + "expectedQty": "4683363922849999950393", + "swapFee": "0", "reserves": [ - "2973234188695373496631682", - "4751063294751225860891613" + "2693729662178125298939882", + "4167677654334215106683561" ], - "LPTokenSupply": "7643354345334627163856696" + "LPTokenSupply": "6817696841316516447979607", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "1712421054865906335744", - "1149758509419878154240" + "3693911551235388928", + "10326149955645030400" ], - "expectedQty": "2834238801236307501275", + "expectedQty": "13925124667566602074", "reserves": [ - "2974946609750239402967426", - "4752213053260645739045853" + "2693733356089676534328810", + "4167687980484170751713961" ], - "LPTokenSupply": "7646188584135863471357971" + "LPTokenSupply": "6817710766441184014581681" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "9379327534672932503552", - "outputIndex": 1, - "expectedQty": "9403471343766797256988", - "swapFee": "7440273207777026923", + "type": "redeemMasset", + "inputQty": "4061018899611475194675", + "expectedQtys": [ + "1603579099038123435968", + "2481024085664673731749" + ], + "redemptionFee": "2436611339766885116", "reserves": [ - "2984325937284912335470978", - "4742809581916878941788865" + "2692129776990638410892842", + "4165206956398506077982212" ], - "LPTokenSupply": "7646189328163184249060663", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6813649991202706516075517" }, { "type": "redeemMasset", - "inputQty": "39105995111687955205324", + "inputQty": "2297497281189521", "expectedQtys": [ - "15254005294406836999342", - "24242272457258285726531" + "907215626678862", + "1403625067221033" ], - "redemptionFee": "23463597067012773123", + "redemptionFee": "1378498368713", "reserves": [ - "2969071931990505498471636", - "4718567309459620656062334" + "2692129776083422784213980", + "4165206954994881010761179" ], - "LPTokenSupply": "7607085679411202995132651" + "LPTokenSupply": "6813649988905347084722867" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "61871781545352349351936", - "outputIndex": 1, - "expectedQty": "62020870831879023515360", - "swapFee": "49076886419978702233", + "type": "redeemMasset", + "inputQty": "1591305279585721548", + "expectedQtys": [ + "628360707225541978", + "972186560704727008" + ], + "redemptionFee": "954783167751432", "reserves": [ - "3030943713535857847823572", - "4656546438627741632546974" + "2692129147722715558672002", + "4165205982808320306034171" ], - "LPTokenSupply": "7607090587099844993002874", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6813648397695545815776462" }, { "type": "swap", "inputIndex": 1, - "inputQty": "103491867854330325368832", + "inputQty": "371015744769034485760", "outputIndex": 0, - "expectedQty": "103150599251180886373469", + "expectedQty": "369857900576099695866", "swapFee": "0", "reserves": [ - "2927793114284676961450103", - "4760038306482071957915806" + "2691759289822139458976136", + "4165576998553089340519931" ], - "LPTokenSupply": "7607090587099844993002874", + "LPTokenSupply": "6813648397695545815776462", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "38177027527910740721664", + "expectedQty": "37886667869845811169931", + "reserves": [ + "2691759289822139458976136", + "4203754026081000081241595" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "31164618156298077208576", - "14625445998743903010816" + "4423512842482435072", + "1736976693903775744" ], - "expectedQty": "45356879609673224468951", + "expectedQty": "6127624645556977930", + "swapFee": "3678782056568127", "reserves": [ - "2958957732440975038658679", - "4774663752480815860926622" + "2691754866309296976541064", + "4203752289104306177465851" ], - "LPTokenSupply": "7652447466709518217471825" + "LPTokenSupply": "6851528934629842219057147" }, { - "type": "redeemMasset", - "inputQty": "77330916182429020979", - "expectedQtys": [ - "29883461734581161180", - "48220858303726510520" + "type": "redeemBassets", + "inputQtys": [ + "170344224305396842496", + "38302815755077959680" ], - "redemptionFee": "46398549709457412", + "expectedQty": "207599308423407798801", + "swapFee": "124634365673448748", "reserves": [ - "2958927848979240457497499", - "4774615531622512134416102" + "2691584522084991579698568", + "4203713986288551099506171" ], - "LPTokenSupply": "7652370140433190759396587" + "LPTokenSupply": "6851321223150489705154471" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "883997097444864", - "expectedQty": "873553408283040", + "type": "mintMulti", + "inputQtys": [ + "76476897039773176168448", + "45250704420415337398272" + ], + "expectedQty": "121041365253462855467022", "reserves": [ - "2958927848979240457497499", - "4774615532506509231860966" - ] + "2768061419124764755867016", + "4248964690708966436904443" + ], + "LPTokenSupply": "6972362588403952560621493" }, { "type": "redeemMasset", - "inputQty": "1423194089402579864780", + "inputQty": "148939128701785210880", "expectedQtys": [ - "549973651397616274756", - "887454129487562927953" + "59094071362432115314", + "90709194859051157911" ], - "redemptionFee": "853916453641547918", + "redemptionFee": "89363477221071126", "reserves": [ - "2958377875327842841222743", - "4773728078377021668933013" + "2768002325053402323751702", + "4248873981514107385746532" ], - "LPTokenSupply": "7650947032608986951969638" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1898057676749926400", - "expectedQty": "1875633517119325660", - "reserves": [ - "2958377875327842841222743", - "4773729976434698418859413" - ] + "LPTokenSupply": "6972213658211598497517725" }, { "type": "mintMulti", "inputQtys": [ - "1265559605975715584", - "21265570052258082816" + "57077830999857426333696", + "16787698696464696868864" ], - "expectedQty": "22269300010576719441", + "expectedQty": "73478471142741225019329", "reserves": [ - "2958379140887448816938327", - "4773751242004750676942229" + "2825080156053259750085398", + "4265661680210572082615396" ], - "LPTokenSupply": "7650971177542514648014739" + "LPTokenSupply": "7045692129354339722537054" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "626685167401717161000960", - "expectedQty": "631159474766267145238679", - "swapFee": "376011100441030296600", + "inputIndex": 1, + "inputQty": "580516758047399424", + "expectedQty": "584559552373592339", + "swapFee": "348310054828439", "reserves": [ - "2327219666121181671699648", - "4773751242004750676942229" + "2825080156053259750085398", + "4265661095651019709023057" ], - "LPTokenSupply": "7024323611250841590043439" + "LPTokenSupply": "7045691548872412680620473" }, { - "type": "redeemMasset", - "inputQty": "5745744886965472", - "expectedQtys": [ - "1902473216034404", - "3902482438652657" + "type": "redeemBassets", + "inputQtys": [ + "171886489225811853312", + "279555873578170843136" ], - "redemptionFee": "3447446932179", + "expectedQty": "448551014760578023883", + "swapFee": "269292184166846922", "reserves": [ - "2327219664218708455665244", - "4773751238102268238289572" + "2824908269564033938232086", + "4265381539777441538179921" ], - "LPTokenSupply": "7024323605505441447771184" + "LPTokenSupply": "7045242755494686352434359" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4272401502241502003200", - "expectedQty": "4218151195218471143457", + "inputQty": "771068306729257", + "expectedQty": "765276168110436", "reserves": [ - "2327219664218708455665244", - "4778023639604509740292772" + "2824908269564033938232086", + "4265381540548509844909178" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "339374396914261312", - "3240144301304659968" + "type": "redeemMasset", + "inputQty": "8963516150804216020992", + "expectedQtys": [ + "3591915723521816729680", + "5423500361900375652287" ], - "expectedQty": "3536033828253942201", - "swapFee": "2122894033372388", + "redemptionFee": "5378109690482529612", "reserves": [ - "2327219324844311541403932", - "4778020399460208435632804" + "2821316353840512121502406", + "4259958040186609469256891" ], - "LPTokenSupply": "7028538218756227034937289" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "25080268691594850304", - "expectedQty": "24761761138554942865", - "reserves": [ - "2327219324844311541403932", - "4778045479728900030483108" - ] + "LPTokenSupply": "7036279777920127352776764" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "107926605274116", - "expectedQty": "106555987362524", + "type": "mintMulti", + "inputQtys": [ + "60080513935929862258688", + "62561156377601707606016" + ], + "expectedQty": "121894727563221362695814", "reserves": [ - "2327219324844311541403932", - "4778045479836826635757224" - ] + "2881396867776441983761094", + "4322519196564211176862907" + ], + "LPTokenSupply": "7158174505483348715472578" }, { "type": "mintMulti", "inputQtys": [ - "1441709977597303296", - "22938657814425828" + "5381289653181775609856", + "13038833915656262385664" ], - "expectedQty": "1454431177079410487", + "expectedQty": "18297482778243873072512", "reserves": [ - "2327220766554289138707228", - "4778045502775484450183052" + "2886778157429623759370950", + "4335558030479867439248571" ], - "LPTokenSupply": "7028564435055098656653165" + "LPTokenSupply": "7176471988261592588545090" }, { "type": "redeemMasset", - "inputQty": "4140590503684292476928", + "inputQty": "269815965732849844224", "expectedQtys": [ - "1370164085999802342600", - "2813100692148329918733" + "108469941549941687299", + "162907470025776075522" ], - "redemptionFee": "2484354302210575486", + "redemptionFee": "161889579439709906", "reserves": [ - "2325850602468289336364628", - "4775232402083336120264319" + "2886669687488073817683651", + "4335395123009841663173049" ], - "LPTokenSupply": "7024424092986844585233785" + "LPTokenSupply": "7176202188484817682671856" }, { "type": "redeemBassets", "inputQtys": [ - "5048825601965881819136", - "9112490920970215751680" + "56269998049315454976", + "202454363785119793152" ], - "expectedQty": "14010827196759463382579", - "swapFee": "8411543244002079277", + "expectedQty": "256946320291715529621", + "swapFee": "154260348384059753", "reserves": [ - "2320801776866323454545492", - "4766119911162365904512639" + "2886613417490024502228675", + "4335192668646056543379897" ], - "LPTokenSupply": "7010405695401165519979855" + "LPTokenSupply": "7175945103330212421488456" }, { - "type": "redeemBassets", - "inputQtys": [ - "2215828340038950191104", - "1012895857001233776640" + "type": "redeemMasset", + "inputQty": "1245975201540615228620", + "expectedQtys": [ + "500908339407177182409", + "752277443007890903363" ], - "expectedQty": "3200608857539571817958", - "swapFee": "1921518225459018501", + "redemptionFee": "747585120924369137", "reserves": [ - "2318585948526284504354388", - "4765107015305364670735999" + "2886112509150617325046266", + "4334440391203048652476534" ], - "LPTokenSupply": "7007203357177223035045245" + "LPTokenSupply": "7174699202887183898696749" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "20145048760619223744512", - "outputIndex": 1, - "expectedQty": "20246214735655757975309", - "swapFee": "16004644608782467780", + "inputIndex": 1, + "inputQty": "223484104001628667904", + "outputIndex": 0, + "expectedQty": "222840806420947594060", + "swapFee": "0", "reserves": [ - "2338730997286903728098900", - "4744860800569708912760690" + "2885889668344196377452206", + "4334663875307050281144438" ], - "LPTokenSupply": "7007204957641683913292023", + "LPTokenSupply": "7174699202887183898696749", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "189235764281333623291904", - "expectedQty": "190388089878985083159604", - "swapFee": "113541458568800173975", + "type": "redeemMasset", + "inputQty": "1215022440332377718784", + "expectedQtys": [ + "488427006602167536283", + "733627111412584319136" + ], + "redemptionFee": "729013464199426631", "reserves": [ - "2148342907407918644939296", - "4744860800569708912760690" + "2885401241337594209915923", + "4333930248195637696825302" ], - "LPTokenSupply": "6817980547506207170017516" + "LPTokenSupply": "7173484253348197940920628" }, { "type": "mintMulti", "inputQtys": [ - "2525878920688404267008", - "4578524580128200589312" + "1246518048907082334208", + "461245671225895747584" ], - "expectedQty": "7028960686313792800909", + "expectedQty": "1698533766778187891081", "reserves": [ - "2150868786328607049206304", - "4749439325149837113350002" + "2886647759386501292250131", + "4334391493866863592572886" ], - "LPTokenSupply": "6825009508192520962818425" + "LPTokenSupply": "7175182787114976128811709" }, { - "type": "redeemBassets", - "inputQtys": [ - "21076628873699859103744", - "42161531077973338226688" + "type": "redeemMasset", + "inputQty": "1164999330494406459392", + "expectedQtys": [ + "468409661628368146217", + "703331692065729483640" + ], + "redemptionFee": "698999598296643875", + "reserves": [ + "2886179349724872924103914", + "4333688162174797863089246" ], - "expectedQty": "62557219019865203624744", - "swapFee": "37556865531237864893", + "LPTokenSupply": "7174017857684441552016704" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "74554780388492627148800", + "expectedQty": "74852004838725719055610", + "swapFee": "44732868233095576289", "reserves": [ - "2129792157454907190102560", - "4707277794071863775123314" + "2811327344886147205048304", + "4333688162174797863089246" ], - "LPTokenSupply": "6762418487993677645115276" + "LPTokenSupply": "7099467550582772234425532" }, { "type": "mint", "inputIndex": 1, - "inputQty": "412061876818214", - "expectedQty": "406702771415907", + "inputQty": "177522638441569962688512", + "expectedQty": "176164516831183747890818", "reserves": [ - "2129792157454907190102560", - "4707277794483925651941528" + "2811327344886147205048304", + "4511210800616367825777758" ] }, { - "type": "redeemMasset", - "inputQty": "3230893103096751", - "expectedQtys": [ - "1016944178457934", - "2247655355818958" + "type": "redeemBassets", + "inputQtys": [ + "12024686597507521708032", + "5813047096981896298496" ], - "redemptionFee": "1938535861858", + "expectedQty": "17741193181270260373975", + "swapFee": "10651106572705779692", "reserves": [ - "2129792156437963011644626", - "4707277792236270296122570" + "2799302658288639683340272", + "4505397753519385929479262" ], - "LPTokenSupply": "6762418485169681167020617" + "LPTokenSupply": "7257881288236770286740651" }, { - "type": "mintMulti", - "inputQtys": [ - "111465555771021936558080", - "187352064190004655554560" - ], - "expectedQty": "295676705202244689179314", + "type": "mint", + "inputIndex": 1, + "inputQty": "1369673534252466569216", + "expectedQty": "1359090142650783786834", "reserves": [ - "2241257712208984948202706", - "4894629856426274951677130" - ], - "LPTokenSupply": "7058095190371925856199931" + "2799302658288639683340272", + "4506767427053638396048478" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2096486348018399488", - "3926575911760418816" + "18516094510065020928", + "49194459646307729408" ], - "expectedQty": "5958742398724344603", - "swapFee": "3577391874359222", + "expectedQty": "67251006538723752678", + "swapFee": "40374828820526567", "reserves": [ - "2241255615722636929803218", - "4894625929850363191258314" + "2799284142194129618319344", + "4506718232593992088319070" ], - "LPTokenSupply": "7058089228409874444932027" + "LPTokenSupply": "7259173091035536408300895" }, { - "type": "redeemBassets", - "inputQtys": [ - "255900709639666106368", - "207716274911577702400" + "type": "redeemMasset", + "inputQty": "2613749223877459968", + "expectedQtys": [ + "1007309880384301194", + "1621722402300230337" ], - "expectedQty": "459285192288078982625", - "swapFee": "275736557307231728", + "redemptionFee": "1568249534326475", "reserves": [ - "2240999715012997263696850", - "4894418213575451613555914" + "2799283134884249234018150", + "4506716610871589788088733" ], - "LPTokenSupply": "7057629695054684789440845" + "LPTokenSupply": "7259170477443137484273574" }, { "type": "mint", "inputIndex": 1, - "inputQty": "312862069888870973440", - "expectedQty": "308807670846307891309", + "inputQty": "79834200203088816504832", + "expectedQty": "79214977501887732219080", "reserves": [ - "2240999715012997263696850", - "4894731075645340484529354" + "2799283134884249234018150", + "4586550811074678604593565" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5742424834193782472704", - "3322849893866807492608" + "143345382604323488", + "318374061854043136" ], - "expectedQty": "8985449218617253496694", - "swapFee": "5394506234911298877", + "expectedQty": "458639593882683720", "reserves": [ - "2235257290178803481224146", - "4891408225751473677036746" + "2799283278229631838341638", + "4586551129448740458636701" ], - "LPTokenSupply": "7048948198451302423666469" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4154757106351010816", - "expectedQty": "4206814997961807581", - "swapFee": "2492854263810606", - "reserves": [ - "2235257290178803481224146", - "4891404018936475715229165" - ], - "LPTokenSupply": "7048944043943481499036713" - }, - { - "type": "redeemMasset", - "inputQty": "10517640752749882428620", - "expectedQtys": [ - "3333198170065286572763", - "7294023375566242950479" - ], - "redemptionFee": "6310584451649929457", - "reserves": [ - "2231924092008738194651383", - "4884109995560909472278686" - ], - "LPTokenSupply": "7038427034249176781601038" + "LPTokenSupply": "7338385913584619099176374" }, { "type": "redeemBassets", "inputQtys": [ - "204463235939774560", - "528244649271882944" + "35038854082431552", + "132888758543694400" ], - "expectedQty": "724550360803357119", - "swapFee": "434991211208739", + "expectedQty": "166746081576508528", + "swapFee": "100107713574049", "reserves": [ - "2231923887545502254876823", - "4884109467316260200395742" + "2799283243190777755910086", + "4586550996559981914942301" ], - "LPTokenSupply": "7038426309307323888156052" + "LPTokenSupply": "7338385746748440580451200" }, { "type": "redeemMasset", - "inputQty": "867429651221056166297", + "inputQty": "99571326145484800", "expectedQtys": [ - "274901697072731208433", - "601566204271766650783" - ], - "redemptionFee": "520457790732633699", - "reserves": [ - "2231648985848429523668390", - "4883507901111988433744959" - ], - "LPTokenSupply": "7037558931701881905253124" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "451955387151641920", - "5967753255541352448" + "37959452853496831", + "62195551928366262" ], - "expectedQty": "6339428673026384107", - "swapFee": "3805940768276796", + "redemptionFee": "59742795687290", "reserves": [ - "2231648533893042372026470", - "4883501933358732892392511" + "2799283205231324902413255", + "4586550934364429986576039" ], - "LPTokenSupply": "7037552588847862187419899" + "LPTokenSupply": "7338385647183088714535129" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "16069252472721104", - "expectedQty": "15966512665121149", + "inputIndex": 1, + "inputQty": "270265412768153370624", + "expectedQty": "268161319818390876648", "reserves": [ - "2231648549962294844747574", - "4883501933358732892392511" + "2799283205231324902413255", + "4586821199777198139946663" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "21524965299139723132928", - "expectedQty": "21649562285722690702322", - "swapFee": "12914979179483833879", + "inputQty": "53814670591269920768", + "expectedQty": "54008897140288343222", + "swapFee": "32288802354761952", "reserves": [ - "2209998987676572154045252", - "4883501933358732892392511" + "2799229196334184614070033", + "4586821199777198139946663" ], - "LPTokenSupply": "7016028931013153077791507" + "LPTokenSupply": "7338599997061196070967204" }, { - "type": "redeemMasset", - "inputQty": "710216250337564569", - "expectedQtys": [ - "223578816932612418", - "494048907188124074" + "type": "mintMulti", + "inputQtys": [ + "91384462491470840987648", + "171396889033316985995264" ], - "redemptionFee": "426129750202538", + "expectedQty": "261063521081854762504283", "reserves": [ - "2209998764097755221432834", - "4883501439309825704268437" + "2890613658825655455057681", + "4758218088810515125941927" ], - "LPTokenSupply": "7016028220839515715247191" + "LPTokenSupply": "7599663518143050833471487" }, { "type": "redeemMasset", - "inputQty": "10361299740425937590681", + "inputQty": "738954922664627535872", "expectedQtys": [ - "3261777151500244144206", - "7207648109505802625535" + "280900801423484639189", + "462388763165811244485" ], - "redemptionFee": "6216779844255562554", + "redemptionFee": "443372953598776521", "reserves": [ - "2206736986946254977288628", - "4876293791200319901642902" + "2890332758024231970418492", + "4757755700047349314697442" ], - "LPTokenSupply": "7005667542777074203212765" + "LPTokenSupply": "7598924607557681565813267" }, { - "type": "redeemBassets", - "inputQtys": [ - "713546735532361856", - "1684419630309202944" - ], - "expectedQty": "2371550322773095903", - "swapFee": "1423784464342463", + "type": "mint", + "inputIndex": 0, + "inputQty": "181814452331767171907584", + "expectedQty": "181026777011389611142095", "reserves": [ - "2206736273399519444926772", - "4876292106780689592439958" - ], - "LPTokenSupply": "7005665169945345412208644" + "3072147210355999142326076", + "4757755700047349314697442" + ] }, { - "type": "redeemMasset", - "inputQty": "54369454801093604147", - "expectedQtys": [ - "17115728162415111034", - "37821143897551042005" + "type": "mintMulti", + "inputQtys": [ + "7244025753399593984", + "45129368480536248320" ], - "redemptionFee": "32621672880656162", + "expectedQty": "51997844329531309701", "reserves": [ - "2206719157671357029815738", - "4876254285636792041397953" + "3072154454381752541920060", + "4757800829415829850945762" ], - "LPTokenSupply": "7005610803752711606670113" + "LPTokenSupply": "7780003382413400708265063" }, { "type": "mint", "inputIndex": 0, - "inputQty": "11924124257195883757568", - "expectedQty": "11848581030669406921110", + "inputQty": "44068363633490848120832", + "expectedQty": "43869043260126992904058", "reserves": [ - "2218643281928552913573306", - "4876254285636792041397953" + "3116222818015243390040892", + "4757800829415829850945762" ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "24997476625885732", - "outputIndex": 0, - "expectedQty": "24830708282036902", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "4959969103505495040", + "outputIndex": 1, + "expectedQty": "4970969284433676210", + "swapFee": "3949889039747572", "reserves": [ - "2218643257097844631536404", - "4876254310634268667283685" + "3116227777984346895535932", + "4757795858446545417269552" ], - "LPTokenSupply": "7017459384783381013591223", + "LPTokenSupply": "7823872426068516605143878", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "50487265464747", - "35335955521758" + "type": "redeemMasset", + "inputQty": "9655473356567620812", + "expectedQtys": [ + "3843442154112962103", + "5868092599715403124" ], - "expectedQty": "85043264567021", + "redemptionFee": "5793284013940572", "reserves": [ - "2218643257148331897001151", - "4876254310669604622805443" + "3116223934542192782573829", + "4757789990353945701866428" ], - "LPTokenSupply": "7017459384868424278158244" + "LPTokenSupply": "7823862771174488438917123" }, { - "type": "mintMulti", - "inputQtys": [ - "1429943714636767166464", - "1418147406400133791744" + "type": "redeemMasset", + "inputQty": "57383608158473886105", + "expectedQtys": [ + "22842026543249681089", + "34874761098591712477" ], - "expectedQty": "2820579196787510608104", + "redemptionFee": "34430164895084331", "reserves": [ - "2220073200862968664167615", - "4877672458076004756597187" + "3116201092515649532892740", + "4757755115592847110153951" ], - "LPTokenSupply": "7020279964065211788766348" + "LPTokenSupply": "7823805391009346454539451" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1334712933114498048", - "expectedQty": "1342452295712649222", - "swapFee": "800827759868698", - "reserves": [ - "2220071858410672951518393", - "4877672458076004756597187" + "type": "mintMulti", + "inputQtys": [ + "51176443014769344512", + "32848266345611579392" ], - "LPTokenSupply": "7020278629432361450255169" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "91516300546481319837696", - "expectedQty": "90324493151453010936051", + "expectedQty": "83543259683235443298", "reserves": [ - "2220071858410672951518393", - "4969188758622486076434883" - ] + "3116252268958664302237252", + "4757787963859192721733343" + ], + "LPTokenSupply": "7823888934269029689982749" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "562436709571936583680", - "expectedQty": "565604778547470483028", - "swapFee": "337462025743161950", + "type": "redeemBassets", + "inputQtys": [ + "171315506204809330688", + "2905846865359977578496" + ], + "expectedQty": "3054428976473679234663", + "swapFee": "1833757640468488633", "reserves": [ - "2219506253632125481035365", - "4969188758622486076434883" + "3116080953452459492906564", + "4754882116993832744154847" ], - "LPTokenSupply": "7110040719620445098923735" + "LPTokenSupply": "7820832854910679589108315" }, { - "type": "redeemMasset", - "inputQty": "7513276056794698455449", - "expectedQtys": [ - "2343975005574092491592", - "5247858269887719310020" + "type": "mintMulti", + "inputQtys": [ + "1686711329990222", + "1369014115123545" ], - "redemptionFee": "4507965634076819073", + "expectedQty": "3037690957978540", "reserves": [ - "2217162278626551388543773", - "4963940900352598357124863" + "3116080955139170822896786", + "4754882118362846859278392" ], - "LPTokenSupply": "7102527894360213808150193" + "LPTokenSupply": "7820832857948370547086855" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "17696965789448692301824", - "7806136863925956771840" + "37432478254450392170496", + "24130665156423180091392" ], - "expectedQty": "25291069528651032888659", + "expectedQty": "61210504282893676981139", + "swapFee": "36748351580684616958", "reserves": [ - "2234859244416000080845597", - "4971747037216524313896703" + "3078648476884720430726290", + "4730751453206423679187000" ], - "LPTokenSupply": "7127818963888864841038852" + "LPTokenSupply": "7759589280149054253950452" }, { "type": "swap", "inputIndex": 0, - "inputQty": "19843612473585320329216", + "inputQty": "403102821798150144000", "outputIndex": 1, - "expectedQty": "19962344910488253834384", - "swapFee": "15774997204579892002", + "expectedQty": "404017736863584266239", + "swapFee": "321021038788498308", "reserves": [ - "2254702856889585401174813", - "4951784692306036060062319" + "3079051579706518580870290", + "4730347435469560094920761" ], - "LPTokenSupply": "7127820541388585299028052", + "LPTokenSupply": "7759589312251158132800282", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 1, + "inputQty": "12903320847843642572800", + "expectedQty": "12805458192306114346405", + "reserves": [ + "3079051579706518580870290", + "4743250756317403737493561" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "22612440945143840768", - "18732460254424690688" + "80615556080623927296", + "44764194988925042688" ], - "expectedQty": "40957631105835748821", - "swapFee": "24589332262859164", + "expectedQty": "124675790517228798240", "reserves": [ - "2254680244448640257334045", - "4951765959845781635371631" + "3079132195262599204797586", + "4743295520512392662536249" ], - "LPTokenSupply": "7127779561627080426705982" + "LPTokenSupply": "7772519446233981475944927" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "2043017104049613568", - "expectedQty": "2068657427239921075", - "swapFee": "1225810262429768", + "inputQty": "505976064093940", + "expectedQty": "502136398174474", + "reserves": [ + "3079132195262599204797586", + "4743295521018368726630189" + ] + }, + { + "type": "redeemMasset", + "inputQty": "5716558211645138848972", + "expectedQtys": [ + "2263291501946014385820", + "3486521449276038258195" + ], + "redemptionFee": "3429934926987083309", "reserves": [ - "2254680244448640257334045", - "4951763891188354395450556" + "3076868903760653190411766", + "4739808999569092688371994" ], - "LPTokenSupply": "7127777518732557403335390" + "LPTokenSupply": "7766803231517965433978759" }, { "type": "mint", "inputIndex": 1, - "inputQty": "55318842176213", - "expectedQty": "54600403588641", + "inputQty": "795097767389348495360", + "expectedQty": "789063534892873511505", "reserves": [ - "2254680244448640257334045", - "4951763891243673237626769" + "3076868903760653190411766", + "4740604097336482036867354" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "932926150413208256512", - "1031485177833682108416" + "5906424554992606117888", + "2078739706040786616320" ], - "expectedQty": "1945074276616670116564", + "expectedQty": "7942718542968649762047", + "swapFee": "4768492221113858172", "reserves": [ - "2255613170599053465590557", - "4952795376421506919735185" + "3070962479205660584293878", + "4738525357630441250251034" ], - "LPTokenSupply": "7129722593063774477040595" + "LPTokenSupply": "7759645284866890655255861" }, { - "type": "redeemBassets", - "inputQtys": [ - "2787216889675310956544", - "985097398988570099712" - ], - "expectedQty": "3741779009427937869733", - "swapFee": "2246415254809648510", + "type": "swap", + "inputIndex": 1, + "inputQty": "23394060379363136", + "outputIndex": 0, + "expectedQty": "23321595011978450", + "swapFee": "0", "reserves": [ - "2252825953709378154634013", - "4951810279022518349635473" + "3070962455884065572315428", + "4738525381024501629614170" ], - "LPTokenSupply": "7125978792280617210487202" + "LPTokenSupply": "7759645284866890655255861", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "3078236778533722521", + "inputQty": "212699285362366822", "expectedQtys": [ - "972578093388014820", - "2137769316826761417" + "84127505944436109", + "129809572043511019" ], - "redemptionFee": "1846942067120233", + "redemptionFee": "127619571217420", "reserves": [ - "2252824981131284766619193", - "4951808141253201522874056" + "3070962371756559627879319", + "4738525251214929586103151" ], - "LPTokenSupply": "7125975714228532883476704" + "LPTokenSupply": "7759645072180367250010781" }, { - "type": "redeemBassets", - "inputQtys": [ - "762816996417342668800", - "928996415554946465792" + "type": "redeemMasset", + "inputQty": "624350181037618862489", + "expectedQtys": [ + "246944993152867631496", + "381038561878126890110" ], - "expectedQty": "1674893184714808045943", - "swapFee": "1005539234369506531", + "redemptionFee": "374610108622571317", "reserves": [ - "2252062164134867423950393", - "4950879144837646576408264" + "3070715426763406760247823", + "4738144212653051459213041" ], - "LPTokenSupply": "7124299916058507142874882" + "LPTokenSupply": "7759020759460340493405423" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "16501443604704638976", - "expectedQty": "16708612396312573327", - "swapFee": "9900866162822783", + "inputIndex": 0, + "inputQty": "17862288247261169664", + "expectedQty": "17932469645803349874", + "swapFee": "10717372948356701", + "reserves": [ + "3070697494293760956897949", + "4738144212653051459213041" + ], + "LPTokenSupply": "7759002898243830527071429" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "9988379834789471977472", + "8974696750444882952192" + ], + "expectedQty": "18849867821618310119617", + "swapFee": "11316710719402627648", "reserves": [ - "2252062164134867423950393", - "4950862436225250263834937" + "3060709114458971484920477", + "4729169515902606576260849" ], - "LPTokenSupply": "7124283415604989054518184" + "LPTokenSupply": "7740142845382564754586927" }, { "type": "redeemBassets", "inputQtys": [ - "57197879273654312", - "99374609585437776" + "1405570207992855920640", + "1185592242790971473920" + ], + "expectedQty": "2575818263287164973713", + "swapFee": "1546418809257853696", + "reserves": [ + "3059303544250978628999837", + "4727983923659815604786929" ], - "expectedQty": "154917711443320630", - "swapFee": "93006430724427", + "LPTokenSupply": "7737565635342349257544886" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "3468482435620161536", + "expectedQty": "3492953054962894268", + "swapFee": "2081089461372096", "reserves": [ - "2252062106936988150296081", - "4950862336850640678397161" + "3059303544250978628999837", + "4727980430706760641892661" ], - "LPTokenSupply": "7124283260603571823545568" + "LPTokenSupply": "7737562167068022583520559" }, { "type": "swap", "inputIndex": 0, - "inputQty": "10152465054362001408", + "inputQty": "13548685830541805617152", "outputIndex": 1, - "expectedQty": "10212504448020598786", - "swapFee": "8070319570970555", + "expectedQty": "13579680256893054614195", + "swapFee": "10790000411853876047", "reserves": [ - "2252072259402042512297489", - "4950852124346192657798375" + "3072852230081520434616989", + "4714400750449867587278466" ], - "LPTokenSupply": "7124283261410603780642623", + "LPTokenSupply": "7737563246068063768908163", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "2986215454205063200768", - "5729924797725819273216" + "838972666273424343040", + "2006954134627784589312" ], - "expectedQty": "8622709236553571923997", - "swapFee": "5176731580880671557", + "expectedQty": "2826904825849376443331", + "swapFee": "1697161192224960842", "reserves": [ - "2249086043947837449096721", - "4945122199548466838525159" + "3072013257415247010273949", + "4712393796315239802689154" ], - "LPTokenSupply": "7115655893115627416114223" + "LPTokenSupply": "7734734813797141390000073" }, { "type": "redeemBassets", "inputQtys": [ - "83023198114485633024", - "73411207306123812864" + "738760452894628642816", + "899842740200966586368" ], - "expectedQty": "154952665367506083195", - "swapFee": "93027415669905593", + "expectedQty": "1628426899043966285362", + "swapFee": "977642725061416621", "reserves": [ - "2249003020749722963463697", - "4945048788341160714712295" + "3071274496962352381631133", + "4711493953575038836102786" ], - "LPTokenSupply": "7115500856725585807115993" + "LPTokenSupply": "7733105507019644868439751" }, { - "type": "redeemBassets", - "inputQtys": [ - "2469875396256642105344", - "7100911620466834145280" + "type": "redeemMasset", + "inputQty": "896793026334644764672", + "expectedQtys": [ + "355955957125645855317", + "546054851624372366382" ], - "expectedQty": "9462821898089728953782", - "swapFee": "5681101799933797650", + "redemptionFee": "538075815800786858", "reserves": [ - "2246533145353466321358353", - "4937947876720693880567015" + "3070918541005226735775816", + "4710947898723414463736404" ], - "LPTokenSupply": "7106032921835876137744325" + "LPTokenSupply": "7732208767800891803753764" }, { "type": "mint", "inputIndex": 0, - "inputQty": "52567072491863785078784", - "expectedQty": "52227437025166651608834", - "reserves": [ - "2299100217845330106437137", - "4937947876720693880567015" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "78186154772969964961792", - "expectedQty": "77662756757802267790713", - "reserves": [ - "2377286372618300071398929", - "4937947876720693880567015" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2561691553159254", - "expectedQty": "2528966161069325", + "inputQty": "8513460394974727168", + "expectedQty": "8474781292513656421", "reserves": [ - "2377286372618300071398929", - "4937947879282385433726269" + "3070927054465621710502984", + "4710947898723414463736404" ] }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "64498003791496683192320", - "expectedQty": "63672463120977026117898", + "inputQty": "63534480338225794646016", + "outputIndex": 0, + "expectedQty": "63331732355267556820959", + "swapFee": "0", "reserves": [ - "2377286372618300071398929", - "5002445883073882116918589" - ] + "3007595322110354153682025", + "4774482379061640258382420" + ], + "LPTokenSupply": "7732217242582184317410185", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "16737596106422685696", - "1018806296445685120" + "1136583300734663168", + "162006307669638432" ], - "expectedQty": "17630790295752891897", + "expectedQty": "1292376532286411697", "reserves": [ - "2377303110214406494084625", - "5002446901880178562603709" + "3007596458693654888345193", + "4774482541067947928020852" ], - "LPTokenSupply": "7299613212059083997222992" + "LPTokenSupply": "7732218534958716603821882" }, { - "type": "redeemBassets", - "inputQtys": [ - "101086397430871097344", - "279840004349349232640" - ], - "expectedQty": "376658013265412941695", - "swapFee": "226130486250998364", + "type": "redeem", + "inputIndex": 1, + "inputQty": "388245838566118850560", + "expectedQty": "391019825734315342721", + "swapFee": "232947503139671310", "reserves": [ - "2377202023816975622987281", - "5002167061875829213371069" + "3007596458693654888345193", + "4774091521242213612678131" ], - "LPTokenSupply": "7299236350528380958382768" + "LPTokenSupply": "7731830312414900798938453" }, { - "type": "redeemMasset", - "inputQty": "545398817290327859", - "expectedQtys": [ - "177517920522303026", - "373537581590802979" - ], - "redemptionFee": "327239290374196", + "type": "mint", + "inputIndex": 1, + "inputQty": "1222461446379673485312", + "expectedQty": "1213060362493840681000", "reserves": [ - "2377201846299055100684255", - "5002166688338247622568090" - ], - "LPTokenSupply": "7299235805162287597092328" + "3007596458693654888345193", + "4775313982688593286163443" + ] }, { "type": "mintMulti", "inputQtys": [ - "151676947282897731584", - "61493642254075518976" + "15205537847254534", + "14263072310333000" ], - "expectedQty": "211362041837231623653", + "expectedQty": "29292477291042349", "reserves": [ - "2377353523246337998415839", - "5002228181980501698087066" + "3007596473899192735599727", + "4775313996951665596496443" ], - "LPTokenSupply": "7299447167204124828715981" + "LPTokenSupply": "7733043402069871930661802" }, { - "type": "mintMulti", - "inputQtys": [ - "10010491061386071769088", - "3809959680810775740416" + "type": "redeem", + "inputIndex": 0, + "inputQty": "16834099556665958334464", + "expectedQty": "16897585450989221386655", + "swapFee": "10100459733999575000", + "reserves": [ + "2990698888448203514213072", + "4775313996951665596496443" ], - "expectedQty": "13704161821078996887512", + "LPTokenSupply": "7716210312559179372284838" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "270937369321428643479552", + "outputIndex": 1, + "expectedQty": "271478251614301932044895", + "swapFee": "215761113331873171915", "reserves": [ - "2387364014307724070184927", - "5006038141661312473827482" + "3261636257769632157692624", + "4503835745337363664451548" ], - "LPTokenSupply": "7313151329025203825603493" + "LPTokenSupply": "7716231888670512559602029", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "3455612062130986549248", - "1827296462216699314176" + "5085352266138937982976", + "610519855158940401664" ], - "expectedQty": "5236177716854187223323", - "swapFee": "3143592785783982723", + "expectedQty": "5665739117456825653319", + "swapFee": "3401484361090749841", "reserves": [ - "2383908402245593083635679", - "5004210845199095774513306" + "3256550905503493219709648", + "4503225225482204724049884" ], - "LPTokenSupply": "7307912322074842432795718" + "LPTokenSupply": "7710563088217130752273852" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1807814898722744832", - "expectedQty": "1830184374329028806", - "swapFee": "1084688939233646", + "inputQty": "36868385961538158592", + "expectedQty": "37116354006228397334", + "swapFee": "22121031576922895", "reserves": [ - "2383908402245593083635679", - "5004209015014721445484500" + "3256550905503493219709648", + "4503188109128198495652550" ], - "LPTokenSupply": "7307910514368412603974250" + "LPTokenSupply": "7710526222043272371807549" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "24429539649929017819136", - "outputIndex": 1, - "expectedQty": "24557929898996259965102", - "swapFee": "19411039929350729587", + "type": "redeemMasset", + "inputQty": "2099526455058202676428", + "expectedQtys": [ + "886205720946314404143", + "1225453303389961307253" + ], + "redemptionFee": "1259715873034921605", "reserves": [ - "2408337941895522101454815", - "4979651085115725185519398" + "3255664699782546905305505", + "4501962655824808534345297" ], - "LPTokenSupply": "7307912455472405539047208", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7708426821559801472623281" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "20302576244808814592", - "expectedQty": "20163194757233697280", + "type": "redeemBassets", + "inputQtys": [ + "65558239551973100617728", + "115220538476890855309312" + ], + "expectedQty": "179609491995958781541499", + "swapFee": "107830393433635450195", "reserves": [ - "2408358244471766910269407", - "4979651085115725185519398" - ] + "3190106460230573804687777", + "4386742117347917679035985" + ], + "LPTokenSupply": "7528720282209752419176605" }, { - "type": "redeemMasset", - "inputQty": "12719813679221206679552", - "expectedQtys": [ - "4189350041817349871464", - "8662125549449141987046" + "type": "mintMulti", + "inputQtys": [ + "2266667013526613393408", + "579417214440301658112" ], - "redemptionFee": "7631888207532724007", + "expectedQty": "2830338675379188794714", "reserves": [ - "2404168894429949560397943", - "4970988959566276043532352" + "3192373127244100418081185", + "4387321534562357980694097" ], - "LPTokenSupply": "7295213568176762319337336" + "LPTokenSupply": "7531550620885131607971319" }, { - "type": "redeemMasset", - "inputQty": "1883848686968869434163", - "expectedQtys": [ - "620457909624363093114", - "1282892156937914489383" + "type": "mintMulti", + "inputQtys": [ + "24665128293696077824", + "6629357262904804352" ], - "redemptionFee": "1130309212181321660", + "expectedQty": "31120764359085903384", "reserves": [ - "2403548436520325197304829", - "4969706067409338129042969" + "3192397792372394114159009", + "4387328163919620885498449" ], - "LPTokenSupply": "7293329832520714668035339" + "LPTokenSupply": "7531581741649490693874703" }, { "type": "redeemBassets", "inputQtys": [ - "700496414592183", - "188470622691563" + "63103044026480877109248", + "87473160729195903451136" ], - "expectedQty": "881752029093699", - "swapFee": "529368838759", + "expectedQty": "149619099349639548050328", + "swapFee": "89825354822677335231", "reserves": [ - "2403548435819828782712646", - "4969706067220867506351406" + "3129294748345913237049761", + "4299855003190424982047313" ], - "LPTokenSupply": "7293329831638486206986755" + "LPTokenSupply": "7381881799480510736222666" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "56159577493304655872", - "43120455788246663168" + "16790169559867250966528", + "21159306965905496342528" ], - "expectedQty": "98344141994907010029", - "swapFee": "59041910343150096", + "expectedQty": "37709776977724506057174", "reserves": [ - "2403492276242335478056774", - "4969662946765079259688238" + "3146084917905780488016289", + "4321014310156330478389841" ], - "LPTokenSupply": "7293231434358771991141638" + "LPTokenSupply": "7419591576458235242279840" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "231153328894680992", - "expectedQty": "234000864756489018", - "swapFee": "138691997336808", + "type": "mintMulti", + "inputQtys": [ + "1548028497331690143744", + "6236723152569245892608" + ], + "expectedQty": "7731447014256834912916", "reserves": [ - "2403492276242335478056774", - "4969662712764214503199220" + "3147632946403112178160033", + "4327251033308899724282449" ], - "LPTokenSupply": "7293231203219312296194326" + "LPTokenSupply": "7427323023472492077192756" }, { - "type": "redeemMasset", - "inputQty": "1086261129325196607488", - "expectedQtys": [ - "357763749628977109347", - "739742409028891670498" + "type": "mintMulti", + "inputQtys": [ + "415558947469301955690496", + "216962148216850054381568" ], - "redemptionFee": "651756677595117964", + "expectedQty": "628781373512306098945842", "reserves": [ - "2403134512492706500947427", - "4968922970355185611528722" + "3563191893872414133850529", + "4544213181525749778664017" ], - "LPTokenSupply": "7292145007265654859098634" + "LPTokenSupply": "8056104396984798176138598" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "133716483750432702726144", - "expectedQty": "135356692549849250245495", - "swapFee": "80229890250259621635", + "inputQty": "1633512761581356187648", + "expectedQty": "1621998190820824145322", "reserves": [ - "2403134512492706500947427", - "4833566277805336361283227" - ], - "LPTokenSupply": "7158436546504247182334653" + "3563191893872414133850529", + "4545846694287331134851665" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "2504616973786528874496", - "4120410426168955109376" - ], - "expectedQty": "6555079313632162056728", - "swapFee": "3935408833479384864", + "type": "mint", + "inputIndex": 0, + "inputQty": "5762580229040946282496", + "expectedQty": "5731403547865207883872", "reserves": [ - "2400629895518919972072931", - "4829445867379167406173851" - ], - "LPTokenSupply": "7151877925322664888831546" + "3568954474101455080133025", + "4545846694287331134851665" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "63998489070397904912384", - "68980848939100633300992" - ], - "expectedQty": "131653318864934444616412", - "swapFee": "79039414967941431628", + "type": "swap", + "inputIndex": 0, + "inputQty": "38173929953822014177280", + "outputIndex": 1, + "expectedQty": "38203464634143324734650", + "swapFee": "30373181605613395097", "reserves": [ - "2336631406448522067160547", - "4760465018440066772872859" + "3607128404055277094310305", + "4507643229653187810117015" ], - "LPTokenSupply": "7020153470984259296926667" + "LPTokenSupply": "8063460836041644769507301", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "4565442518020334080", - "298317125132556107776" + "8671405231478239395840", + "3158091836641225211904" ], - "expectedQty": "299053994172444641609", - "swapFee": "179540120575812272", + "expectedQty": "11759827229751673679789", + "swapFee": "7060132417301385038", "reserves": [ - "2336626841006004046826467", - "4760166701314934216765083" + "3598456998823798854914465", + "4504485137816546584905111" ], - "LPTokenSupply": "7019854255403978334054012" + "LPTokenSupply": "8051694654692717524580976" }, { - "type": "redeemBassets", - "inputQtys": [ - "72538397660770", - "136125660963855" - ], - "expectedQty": "206423806818109", - "swapFee": "123928641275", + "type": "mint", + "inputIndex": 1, + "inputQty": "285870455964478439424", + "expectedQty": "283870861527629773195", "reserves": [ - "2336626840933465649165697", - "4760166701178808555801228" - ], - "LPTokenSupply": "7019854255197442991458754" + "3598456998823798854914465", + "4504771008272511063344535" + ] }, { "type": "mintMulti", "inputQtys": [ - "161458077281083040202752", - "122938068562168732712960" + "2274876718189978320896", + "7505292599242005676032" ], - "expectedQty": "281685658780741466021745", + "expectedQty": "9715184615416470575651", "reserves": [ - "2498084918214548689368449", - "4883104769740977288514188" + "3600731875541988833235361", + "4512276300871753069020567" ], - "LPTokenSupply": "7301539913978184457480499" + "LPTokenSupply": "8061693710169661624929822" }, { - "type": "redeemMasset", - "inputQty": "43547726729085944279859", - "expectedQtys": [ - "14890098403037277116309", - "29106260561290945937323" + "type": "mintMulti", + "inputQtys": [ + "3385389222832166666240", + "25841563270850956754944" ], - "redemptionFee": "26128636037451566567", + "expectedQty": "29027394425283354637141", "reserves": [ - "2483194819811511412252140", - "4853998509179686342576865" + "3604117264764820999901601", + "4538117864142604025775511" ], - "LPTokenSupply": "7257994800112702258357296" + "LPTokenSupply": "8090721104594944979566963" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "397033284211377984", - "559038537648323776" + "40863387253712640540672", + "51736245798025302114304" ], - "expectedQty": "946139162974096298", - "swapFee": "568024312371880", + "expectedQty": "92013582424594359188940", "reserves": [ - "2483194422778227200874156", - "4853997950141148694253089" + "3644980652018533640442273", + "4589854109940629327889815" ], - "LPTokenSupply": "7257993853462317403126305" + "LPTokenSupply": "8182734687019539338755903" }, { - "type": "redeemMasset", - "inputQty": "59335602223225923174", - "expectedQtys": [ - "20288448073119985194", - "39658628601577183580" - ], - "redemptionFee": "35601361333935553", + "type": "mint", + "inputIndex": 0, + "inputQty": "6984896144997521293312", + "expectedQty": "6946714347325544686185", "reserves": [ - "2483174134330154080888962", - "4853958291512547117069509" - ], - "LPTokenSupply": "7257934521420230310596686" + "3651965548163531161735585", + "4589854109940629327889815" + ] }, { "type": "mintMulti", "inputQtys": [ - "13956484933557491335168", - "3230247854793158557696" + "263282627545428958117888", + "362886995148690126012416" ], - "expectedQty": "17043916496957028552400", + "expectedQty": "622186326129483710517333", "reserves": [ - "2497130619263711572224130", - "4857188539367340275627205" + "3915248175708960119853473", + "4952741105089319453902231" ], - "LPTokenSupply": "7274978437917187339149086" + "LPTokenSupply": "8811867727496348593959421" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2427029279250432655360", - "expectedQty": "2396542231894101184093", + "type": "redeem", + "inputIndex": 0, + "inputQty": "73078482956438003712", + "expectedQty": "73434460778351847717", + "swapFee": "43847089773862802", "reserves": [ - "2497130619263711572224130", - "4859615568646590708282565" - ] + "3915174741248181768005756", + "4952741105089319453902231" + ], + "LPTokenSupply": "8811794653398101133341989" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1637928053209440", - "1171532630634657" + "656923009254759202816", + "628442963089010458624" + ], + "expectedQty": "1277372986644065179920", + "reserves": [ + "3915831664257436527208572", + "4953369548052408464360855" ], - "expectedQty": "2782725008998661", - "swapFee": "1670637387831", + "LPTokenSupply": "8813072026384745198521909" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "511291543309025542144", + "expectedQty": "513782065161029956041", + "swapFee": "306774925985415325", "reserves": [ - "2497130617625783519014690", - "4859615567475058077647908" + "3915317882192275497252531", + "4953369548052408464360855" ], - "LPTokenSupply": "7277374977364852857685469" + "LPTokenSupply": "8812560765518928771521297" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "123801666289125652692992", - "outputIndex": 0, - "expectedQty": "123098592116268342492156", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "2543069873029803147264", + "outputIndex": 1, + "expectedQty": "2545076761682438856970", + "swapFee": "2023377127262627531", "reserves": [ - "2374032025509515176522534", - "4983417233764183730340900" + "3917860952065305300399795", + "4950824471290726025503885" ], - "LPTokenSupply": "7277374977364852857685469", + "LPTokenSupply": "8812560967856641497784050", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "126631945803378180096", - "expectedQty": "127418745315959055770", - "swapFee": "75979167482026908", + "inputQty": "1706886456068370333696", + "expectedQty": "1715207132364801209062", + "swapFee": "1024131873641022200", "reserves": [ - "2373904606764199217466764", - "4983417233764183730340900" + "3916145744932940499190733", + "4950824471290726025503885" ], - "LPTokenSupply": "7277248353016966227708063" + "LPTokenSupply": "8810854183813760491552574" }, { "type": "mintMulti", "inputQtys": [ - "649624254400031705006080", - "220907403941829800886272" + "5020989510810926579712", + "13915105435339351654400" ], - "expectedQty": "862897123074478699983043", + "expectedQty": "18810962033825760499924", "reserves": [ - "3023528861164230922472844", - "5204324637706013531227172" + "3921166734443751425770445", + "4964739576726065377158285" ], - "LPTokenSupply": "8140145476091444927691106" + "LPTokenSupply": "8829665145847586252052498" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "257399034106870661120", - "expectedQty": "254275410077784840869", + "type": "swap", + "inputIndex": 0, + "inputQty": "75165476220605627891712", + "outputIndex": 1, + "expectedQty": "75216450237366694252436", + "swapFee": "59802934008473060363", "reserves": [ - "3023528861164230922472844", - "5204582036740120401888292" - ] + "3996332210664357053662157", + "4889523126488698682905849" + ], + "LPTokenSupply": "8829671126140987099358534", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "35154394036339965952", - "expectedQtys": [ - "13049303967049089200", - "22462551587059659991" - ], - "redemptionFee": "21092636421803979", + "type": "mint", + "inputIndex": 0, + "inputQty": "62547912569906913280", + "expectedQty": "62198889924223285874", "reserves": [ - "3023515811860263873383644", - "5204559574188533342228301" - ], - "LPTokenSupply": "8140364599216750014746420" + "3996394758576926960575437", + "4889523126488698682905849" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "46785435221995000", - "28005861106775008" + "1932886295816395816960", + "27434082421687359373312" ], - "expectedQty": "74071530857169882", - "swapFee": "44469600274466", + "expectedQty": "29165866324291549694239", "reserves": [ - "3023515765074828651388644", - "5204559546182672235453293" + "3998327644872743356392397", + "4916957208910386042279161" ], - "LPTokenSupply": "8140364525105196517329517" + "LPTokenSupply": "8858899191355202872338647" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8043536253800102756352", - "expectedQty": "8137439997494110123692", - "swapFee": "4826121752280061653", + "type": "mintMulti", + "inputQtys": [ + "6091113949641238904832", + "22320268884023193894912" + ], + "expectedQty": "28222409619761493900409", "reserves": [ - "3023515765074828651388644", - "5196422106185178125329601" + "4004418758822384595297229", + "4939277477794409236174073" ], - "LPTokenSupply": "8132321471463571642579330" + "LPTokenSupply": "8887121600974964366239056" }, { "type": "mint", "inputIndex": 1, - "inputQty": "202604814791039638306816", - "expectedQty": "200133885006796467973343", + "inputQty": "48294829508947296256", + "expectedQty": "47958927964479554971", "reserves": [ - "3023515765074828651388644", - "5399026920976217763636417" + "4004418758822384595297229", + "4939325772623918183470329" ] }, { - "type": "redeemMasset", - "inputQty": "1619515919702951526", - "expectedQtys": [ - "587305149143397067", - "1048738143746598843" - ], - "redemptionFee": "971709551821770", + "type": "mint", + "inputIndex": 0, + "inputQty": "9141224471453258", + "expectedQty": "9090499267890391", "reserves": [ - "3023515177769679507991577", - "5399025872238074017037574" - ], - "LPTokenSupply": "8332453737051619362783324" + "4004418767963609066750487", + "4939325772623918183470329" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "14261105719037296", - "expectedQty": "14148411855594989", + "inputQty": "31524219867634416", + "expectedQty": "31349290077806833", "reserves": [ - "3023515192030785227028873", - "5399025872238074017037574" + "4004418799487828934384903", + "4939325772623918183470329" ] }, { "type": "mintMulti", "inputQtys": [ - "505118345680154752", - "3671846261648145920" + "359662317010206326784", + "32484007315375390720" ], - "expectedQty": "4127954269307765952", + "expectedQty": "389924549147180861130", "reserves": [ - "3023515697149130907183625", - "5399029544084335665183494" + "4004778461804839140711687", + "4939358256631233558861049" ], - "LPTokenSupply": "8332457879154300526144265" + "LPTokenSupply": "8887559524891865372352381" }, { "type": "redeemBassets", "inputQtys": [ - "4066414457149409", - "4036595253333431" + "22738988525308920987648", + "22672130011828758511616" ], - "expectedQty": "8021385350236082", - "swapFee": "4815720642527", + "expectedQty": "45127256094173219712859", + "swapFee": "27092609222037154120", "reserves": [ - "3023515693082716450034216", - "5399029540047740411850063" + "3982039473279530219724039", + "4916686126619404800349433" ], - "LPTokenSupply": "8332457871128581027329907" + "LPTokenSupply": "8842407885449392319200813" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2108522673399611785216", - "expectedQty": "2091856249135809723048", + "type": "redeemBassets", + "inputQtys": [ + "129139875993652674560", + "13166621313573595381760" + ], + "expectedQty": "13203443812717330006556", + "swapFee": "7926822381059033423", "reserves": [ - "3025624215756116061819432", - "5399029540047740411850063" - ] + "3981910333403536567049479", + "4903519505305831204967673" + ], + "LPTokenSupply": "8829197307496532036064175" }, { - "type": "redeemBassets", - "inputQtys": [ - "46358045206912608239616", - "19973070420781981237248" + "type": "redeemMasset", + "inputQty": "7469387162673283806003", + "expectedQtys": [ + "3366623650379420699136", + "4145825333678204775824" ], - "expectedQty": "65721022602963653925522", - "swapFee": "39456287334178699575", + "redemptionFee": "4481632297603970283", "reserves": [ - "2979266170549203453579816", - "5379056469626958430612815" + "3978543709753157146350343", + "4899373679972153000191849" ], - "LPTokenSupply": "8268793194116152422297814" + "LPTokenSupply": "8821728368497088512655200" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "22003546010935697408", + "expectedQty": "21850530076459877953", + "reserves": [ + "3978543709753157146350343", + "4899395683518163935889257" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "705205338695696908288", - "272811150900015988736" + "295547467614936320", + "427143878667091776" ], - "expectedQty": "969132250000030108259", + "expectedQty": "718077877083812407", + "swapFee": "431105389483977", "reserves": [ - "2979971375887899150488104", - "5379329280777858446601551" + "3978543414205689531414023", + "4899395256374285268797481" ], - "LPTokenSupply": "8269762326366152452406073" + "LPTokenSupply": "8821749500561293038185165" }, { "type": "mint", "inputIndex": 0, - "inputQty": "5911466265908412940288", - "expectedQty": "5865087266186634885439", + "inputQty": "65513305011767074816", + "expectedQty": "65149093258233561349", "reserves": [ - "2985882842153807563428392", - "5379329280777858446601551" + "3978608927510701298488839", + "4899395256374285268797481" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "26023329530483702759424", - "expectedQty": "25703149013345546839542", + "inputQty": "786643674800676274176", + "expectedQty": "791676893652978512851", + "swapFee": "471986204880405764", "reserves": [ - "2985882842153807563428392", - "5405352610308342149360975" - ] + "3978608927510701298488839", + "4898603579480632290284630" + ], + "LPTokenSupply": "8821028053178371083512914" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6595716571752748285952", - "10139907659399929266176" + "364610969070222835712", + "62156269122770033442816" ], - "expectedQty": "16559193948350779245315", - "swapFee": "9941481257765126623", + "expectedQty": "62085436689926119353890", "reserves": [ - "2979287125582054815142440", - "5395212702648942220094799" + "3978973538479771521324551", + "4960759848603402323727446" ], - "LPTokenSupply": "8284762421364201866271777" + "LPTokenSupply": "8883113489868297202866804" }, { - "type": "mintMulti", - "inputQtys": [ - "1190191229325944291328", - "1738640044706855387136" + "type": "redeem", + "inputIndex": 0, + "inputQty": "2214763645235106816", + "expectedQty": "2225702504298981901", + "swapFee": "1328858187141064", + "reserves": [ + "3978971312777267222342650", + "4960759848603402323727446" ], - "expectedQty": "2898113275629005025233", + "LPTokenSupply": "8883111275237537786474094" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1860745499564009", + "expectedQty": "1872724197533060", + "swapFee": "1116447299738", "reserves": [ - "2980477316811380759433768", - "5396951342693649075481935" + "3978971312777267222342650", + "4960759846730678126194386" ], - "LPTokenSupply": "8287660534639830871297010" + "LPTokenSupply": "8883111273376903931640058" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "39594619110470721732608", - "55293001432548042080256" + "1782685141420855263232", + "827410027458899738624" ], - "expectedQty": "93896989129500581184014", + "expectedQty": "2594484186126931091123", + "swapFee": "1557625086728195572", "reserves": [ - "3020071935921851481166376", - "5452244344126197117562191" + "3977188627635846367079418", + "4959932436703219226455762" ], - "LPTokenSupply": "8381557523769331452481024" + "LPTokenSupply": "8880515387328198945172919" }, { - "type": "mintMulti", - "inputQtys": [ - "1004924669269949022208", - "446975114958065238016" + "type": "redeemMasset", + "inputQty": "489902502468888245043", + "expectedQtys": [ + "219273940277308506322", + "273455455783005608959" ], - "expectedQty": "1438521322743648791354", + "redemptionFee": "293941501481332947", "reserves": [ - "3021076860591121430188584", - "5452691319241155182800207" + "3976969353695569058573096", + "4959658981247436220846803" ], - "LPTokenSupply": "8382996045092075101272378" + "LPTokenSupply": "8880025514219880205061170" }, { - "type": "mintMulti", - "inputQtys": [ - "2353184163507200512", - "3751719272306484736" + "type": "redeemMasset", + "inputQty": "3344481591395842457", + "expectedQtys": [ + "1496946177825510565", + "1866834238588562515" ], - "expectedQty": "6040294995083539085", + "redemptionFee": "2006688954837505", "reserves": [ - "3021079213775284937389096", - "5452695070960427489284943" + "3976967856749391233062531", + "4959657114413197632284288" ], - "LPTokenSupply": "8383002085387070184811463" + "LPTokenSupply": "8880022169938957704702463" }, { "type": "mintMulti", "inputQtys": [ - "2327919398900953600", - "61745594414733320192" + "12995605361685819392", + "9359534827784708096" ], - "expectedQty": "63295625013332999240", + "expectedQty": "22218065140635664250", "reserves": [ - "3021081541694683838342696", - "5452756816554842222605135" + "3976980852354752918881923", + "4959666473948025416992384" ], - "LPTokenSupply": "8383065381012083517810703" + "LPTokenSupply": "8880044388004098340366713" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3608286682988300206080", - "outputIndex": 0, - "expectedQty": "3592029417208083744439", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "65667482475271435583488", + "60823320970302517673984" + ], + "expectedQty": "125703401470662749526303", "reserves": [ - "3017489512277475754598257", - "5456365103237830522811215" + "4042648334830024354465411", + "5020489794918327934666368" ], - "LPTokenSupply": "8383065381012083517810703", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9005747789474761089893016" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "51355572356400654843904", - "outputIndex": 0, - "expectedQty": "51117043906958672988766", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "56899140998277927796736", + "outputIndex": 1, + "expectedQty": "56931789098230955620088", + "swapFee": "45266495745103323484", "reserves": [ - "2966372468370517081609491", - "5507720675594231177655119" + "4099547475828302282262147", + "4963558005820096979046280" ], - "LPTokenSupply": "8383065381012083517810703", + "LPTokenSupply": "9005752316124335600225364", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "12153605541038577942528", - "28690054816597750579200" + "21423418932249", + "38294836965177" ], - "expectedQty": "40394749122643119603380", + "expectedQty": "59333205427501", "reserves": [ - "2978526073911555659552019", - "5536410730410828928234319" + "4099547475849725701194396", + "4963558005858391816011457" ], - "LPTokenSupply": "8423460130134726637414083" + "LPTokenSupply": "9005752316183668805652865" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "1742436499462932", - "expectedQty": "1720821628357717", + "inputQty": "32091104700340975435776", + "expectedQty": "32294553187603542266060", + "swapFee": "19254662820204585261", "reserves": [ - "2978526073911555659552019", - "5536410732153265427697251" - ] + "4099547475849725701194396", + "4931263452670788273745397" + ], + "LPTokenSupply": "8973663136949609850675615" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "111095736684524234342400", - "48505924143005294395392" + "1582581482772567949312", + "7900285484218353451008" ], - "expectedQty": "158157799996674243388988", - "swapFee": "94951650988597704656", + "expectedQty": "9419491169827884663938", "reserves": [ - "2867430337227031425209619", - "5487904808010260133301859" + "4101130057332498269143708", + "4939163738155006627196405" ], - "LPTokenSupply": "8265216875372984284448620" + "LPTokenSupply": "8983082628119437735339553" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "449010327617371136", - "483253762520245696" + "1139014526482107136", + "2136543991290020096" ], - "expectedQty": "922860665037151258", + "expectedQty": "3254398648559230966", + "swapFee": "1953811476021151", "reserves": [ - "2867430786237359042580755", - "5487905291264022653547555" + "4101128918317971787036572", + "4939161601611015337176309" ], - "LPTokenSupply": "8265217798233649321599878" + "LPTokenSupply": "8983079371962358847689550" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "53834169495292837888", - "expectedQty": "54483927521851923321", - "swapFee": "32300501697175702", + "type": "redeemMasset", + "inputQty": "5178361815478171389132", + "expectedQtys": [ + "2362707289393572333457", + "2845507505871188595013" + ], + "redemptionFee": "3107017089286902833", "reserves": [ - "2867430786237359042580755", - "5487850807336500801624234" + "4098766211028578214703115", + "4936316094105144148581296" ], - "LPTokenSupply": "8265163967294204198479560" + "LPTokenSupply": "8977901320848589604990701" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "103479218482635984", - "expectedQty": "102183812542978002", + "type": "redeemBassets", + "inputQtys": [ + "43861347326766374912", + "71120344332407185408" + ], + "expectedQty": "114243696850722324603", + "swapFee": "68587370532753046", "reserves": [ - "2867430786237359042580755", - "5487850910815719284260218" - ] + "4098722349681251448328203", + "4936244973760811741395888" + ], + "LPTokenSupply": "8977787015423105403188355" }, { - "type": "swap", + "type": "mintMulti", + "inputQtys": [ + "17505156848957936", + "167288262559114560" + ], + "expectedQty": "183541581518525163", + "reserves": [ + "4098722367186408297286139", + "4936245141049074300510448" + ], + "LPTokenSupply": "8977787198964686921713518" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "11941813641310451531776", - "outputIndex": 1, - "expectedQty": "11992873180421649729512", - "swapFee": "9481957256402369720", + "inputQty": "2726963437595933696", + "expectedQty": "2740814715734037832", + "swapFee": "1636178062557560", "reserves": [ - "2879372599878669494112531", - "5475858037635297634530706" + "4098719626371692563248307", + "4936245141049074300510448" ], - "LPTokenSupply": "8265165017673742381694534", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8977784472164867132035578" }, { "type": "redeemBassets", "inputQtys": [ - "5968063587567615868928", - "1439658459346654461952" + "495704212120802686926848", + "362772752096948167639040" ], - "expectedQty": "7344921565317478680553", - "swapFee": "4409598698409532928", + "expectedQty": "853195052951306878773331", + "swapFee": "512224366390618498363", "reserves": [ - "2873404536291101878243603", - "5474418379175950980068754" + "3603015414250889876321459", + "4573472388952126132871408" ], - "LPTokenSupply": "8257816127469596334434344" + "LPTokenSupply": "8124128417283808696613719" }, { - "type": "mintMulti", - "inputQtys": [ - "525501541673578790912", - "852655455696156360704" + "type": "redeemMasset", + "inputQty": "20674906219112157518233", + "expectedQtys": [ + "9163728927990744243343", + "11631940586832360070547" ], - "expectedQty": "1363553348165097272328", + "redemptionFee": "12404943731467294510", "reserves": [ - "2873930037832775457034515", - "5475271034631647136429458" + "3593851685322899132078116", + "4561840448365293772800861" ], - "LPTokenSupply": "8259179680817761431706672" + "LPTokenSupply": "8103454751559069685824937" }, { - "type": "redeemMasset", - "inputQty": "34069499474967613407232", - "expectedQtys": [ - "11847981722392986107700", - "22572195665689379885872" + "type": "redeem", + "inputIndex": 0, + "inputQty": "102971337069501808640", + "expectedQty": "103479339360000523168", + "swapFee": "61782802241701085", + "reserves": [ + "3593748205983539131554948", + "4561840448365293772800861" + ], + "LPTokenSupply": "8103351786400280408186405" + }, + { + "type": "mintMulti", + "inputQtys": [ + "58507160895457222197248", + "57882993956514078654464" ], - "redemptionFee": "20441699684980568044", + "expectedQty": "115656183040331937404627", "reserves": [ - "2862082056110382470926815", - "5452698838965957756543586" + "3652255366878996353752196", + "4619723442321807851455325" ], - "LPTokenSupply": "8225112225512762316356244" + "LPTokenSupply": "8219007969440612345591032" }, { "type": "mint", "inputIndex": 1, - "inputQty": "214243476371938819964928", - "expectedQty": "211549245689225599211898", + "inputQty": "90952786587219728", + "expectedQty": "90306829465905960", "reserves": [ - "2862082056110382470926815", - "5666942315337896576508514" + "3652255366878996353752196", + "4619723533274594438675053" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "13714086337619525894144", - "expectedQty": "13805490920232106687195", - "swapFee": "8228451802571715536", + "type": "redeemMasset", + "inputQty": "3211849682230199", + "expectedQtys": [ + "1426383434249894", + "1804226828834334" + ], + "redemptionFee": "1927109809338", "reserves": [ - "2848276565190150364239620", - "5666942315337896576508514" + "3652255365452612919502302", + "4619723531470367609840719" ], - "LPTokenSupply": "8422948207709548646845551" + "LPTokenSupply": "8219008056535784840247726" }, { "type": "mintMulti", "inputQtys": [ - "826621873646187184128", - "1908837807056523362304" + "1502903107657231237120", + "1646094430981803474944" ], - "expectedQty": "2705335524081024108374", + "expectedQty": "3129010499718641629156", "reserves": [ - "2849103187063796551423748", - "5668851153144953099870818" + "3653758268560270150739422", + "4621369625901349413315663" ], - "LPTokenSupply": "8425653543233629670953925" + "LPTokenSupply": "8222137067035503481876882" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "21143793967935432687616", - "expectedQty": "20875894970564693503565", + "type": "mintMulti", + "inputQtys": [ + "65228701297229869088768", + "30867480148009755344896" + ], + "expectedQty": "95515991426261110822443", "reserves": [ - "2849103187063796551423748", - "5689994947112888532558434" - ] + "3718986969857500019828190", + "4652237106049359168660559" + ], + "LPTokenSupply": "8317653058461764592699325" }, { "type": "mint", "inputIndex": 1, - "inputQty": "64696574355437699072", - "expectedQty": "63876404541979379468", + "inputQty": "189887027653934263042048", + "expectedQty": "188533091268823824796478", "reserves": [ - "2849103187063796551423748", - "5690059643687243970257506" + "3718986969857500019828190", + "4842124133703293431702607" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "63021001777155883008", - "expectedQty": "62222070896922402362", + "type": "mintMulti", + "inputQtys": [ + "2328650579033001820160", + "1418766513424153444352" + ], + "expectedQty": "3724626565594643800547", "reserves": [ - "2849103187063796551423748", - "5690122664689021126140514" - ] + "3721315620436533021648350", + "4843542900216717585146959" + ], + "LPTokenSupply": "8509910776296183061296350" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "45116286834172378480640", - "outputIndex": 0, - "expectedQty": "44860172111221571926225", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "13292848388690273107968", + "outputIndex": 1, + "expectedQty": "13305789244736375853949", + "swapFee": "10576711288993667385", "reserves": [ - "2804243014952574979497523", - "5735238951523193504621154" + "3734608468825223294756318", + "4830237110971981209293010" ], - "LPTokenSupply": "8446655536679633266239320", + "LPTokenSupply": "8509911833967311960663088", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "14235889730131240524185", + "inputQty": "6414113131204319589171", "expectedQtys": [ - "4723401070104089898395", - "9660301784289351534486" + "2813170002950091706573", + "3638474624890754894140" ], - "redemptionFee": "8541533838078744314", + "redemptionFee": "3848467878722591753", "reserves": [ - "2799519613882470889599128", - "5725578649738904153086668" + "3731795298822273203049745", + "4826598636347090454398870" ], - "LPTokenSupply": "8432420501102885833589566" + "LPTokenSupply": "8503498105682895513333092" }, { "type": "mintMulti", "inputQtys": [ - "1374672575383226286080", - "776093263812250435584" + "309485628673129709568", + "313792939329311932416" ], - "expectedQty": "2131239879765174710386", + "expectedQty": "619346295229156058337", "reserves": [ - "2800894286457854115885208", - "5726354743002716403522252" + "3732104784450946332759313", + "4826912429286419766331286" ], - "LPTokenSupply": "8434551740982651008299952" + "LPTokenSupply": "8504117451978124669391429" }, { "type": "redeemBassets", "inputQtys": [ - "59089830686181335040", - "4051304600783150907392" + "984909632324949245952", + "589864117796267163648" ], - "expectedQty": "4058272321276997563661", - "swapFee": "2436425247914947506", + "expectedQty": "1565191686787932384925", + "swapFee": "939678819364378057", "reserves": [ - "2800835196627167934550168", - "5722303438401933252614860" + "3731119874818621383513361", + "4826322565168623499167638" ], - "LPTokenSupply": "8430491275878650887283534" + "LPTokenSupply": "8502551414580399309066251" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "1881369053154075738112", + "expectedQty": "1871146092113620113373", + "reserves": [ + "3733001243871775459251473", + "4826322565168623499167638" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "751361821484057100288", - "42716017529974972416" + "70306577708471377985536", + "25132275710030736523264" + ], + "expectedQty": "94877922671909470428837", + "swapFee": "56960930161242427713", + "reserves": [ + "3662694666163304081265937", + "4801190289458592762644374" ], - "expectedQty": "788269385728111489252", + "LPTokenSupply": "8409493373163458340565844" + }, + { + "type": "redeemMasset", + "inputQty": "3523569484291353", + "expectedQtys": [ + "1533744677370998", + "2010487010978741" + ], + "redemptionFee": "2114141690574", "reserves": [ - "2801586558448651991650456", - "5722346154419463227587276" + "3662694664629559403894939", + "4801190287448105751665633" ], - "LPTokenSupply": "8431279545264378998772786" + "LPTokenSupply": "8409493369640100270443548" }, { "type": "redeemBassets", "inputQtys": [ - "85543186980204", - "532344173930748" + "5414010335413728706560", + "3869778442392119541760" ], - "expectedQty": "610494583443410", - "swapFee": "366516660062", + "expectedQty": "9226695144834854118408", + "swapFee": "5539340691315701892", "reserves": [ - "2801586558363108804670252", - "5722346153887119053656528" + "3657280654294145675188379", + "4797320509005713632123873" ], - "LPTokenSupply": "8431279544653554550335319" + "LPTokenSupply": "8400261689088643232193436" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2093464039581933633536", - "27436136368213277540352" + "1084294030298881064960", + "609391526308537040896" ], - "expectedQty": "29164635618297194312547", + "expectedQty": "1683447303187897984184", + "swapFee": "1010674786784809676", "reserves": [ - "2803680022402690738303788", - "5749782290255332331196880" + "3656196360263846794123419", + "4796711117479405095082977" ], - "LPTokenSupply": "8460444180271851744647866" + "LPTokenSupply": "8398577332178147227880542" }, { "type": "redeemMasset", - "inputQty": "2008329492005996462080", + "inputQty": "3434084202994", "expectedQtys": [ - "665134681734104300084", - "1364057090363672258489" + "1494080753896", + "1960144657578" ], - "redemptionFee": "1204997695203597877", + "redemptionFee": "2060450521", "reserves": [ - "2803014887720956634003704", - "5748418233164968658938391" + "3656196360262352713369523", + "4796711117477444950425399" ], - "LPTokenSupply": "8458435971279615268545573" + "LPTokenSupply": "8398577332174713349722600" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "153192461756634398720", - "outputIndex": 0, - "expectedQty": "152297445350437613055", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9826748803312139632640", + "expectedQty": "9873942524832826336206", + "swapFee": "5896049281987283779", "reserves": [ - "2802862590275606196390649", - "5748571425626725293337111" + "3646322417737519887033317", + "4796711117477444950425399" ], - "LPTokenSupply": "8458435971279615268545573", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8388751172976329408818337" }, { "type": "redeemMasset", - "inputQty": "104398165044482329804", + "inputQty": "29679496188616", "expectedQtys": [ - "34573548119627036727", - "70909116805285695474" + "12892989368993", + "16960635500287" ], - "redemptionFee": "62638899026689397", + "redemptionFee": "17807697713", "reserves": [ - "2802828016727486569353922", - "5748500516509920007641637" + "3646322417724626897664324", + "4796711117460484314925112" ], - "LPTokenSupply": "8458331579378460688884708" + "LPTokenSupply": "8388751172946651693399492" }, { - "type": "redeemBassets", - "inputQtys": [ - "2433627025008833", - "6708519151650840" + "type": "redeemMasset", + "inputQty": "1207292034235849", + "expectedQtys": [ + "524456455182189", + "689918723853867" ], - "expectedQty": "9039458256389397", - "swapFee": "5426931112501", + "redemptionFee": "724375220541", "reserves": [ - "2802828014293859544345089", - "5748500509801400855990797" + "3646322417200170442482135", + "4796711116770565591071245" ], - "LPTokenSupply": "8458331570334118194494059" + "LPTokenSupply": "8388751171739432096685697" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "16219228247403800821760", - "expectedQty": "16419195345881345498269", - "swapFee": "9731536948442280493", + "inputQty": "25571427756158666932224", + "expectedQty": "25742063239311388856603", + "swapFee": "15342856653695200159", "reserves": [ - "2802828014293859544345089", - "5732081314455519510492528" + "3646322417200170442482135", + "4770969053531254202214642" ], - "LPTokenSupply": "8442113315240409237900348" + "LPTokenSupply": "8363181278268938799273488" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "800709377362193983471616", - "expectedQty": "790280926894647753255983", + "type": "redeem", + "inputIndex": 0, + "inputQty": "15270075715263704072192", + "expectedQty": "15343567504086767742960", + "swapFee": "9162045429158222443", "reserves": [ - "2802828014293859544345089", - "6532790691817713493964144" - ] + "3630978849696083674739175", + "4770969053531254202214642" + ], + "LPTokenSupply": "8347912118758218011023540" }, { "type": "mint", "inputIndex": 1, - "inputQty": "965819086416655360", - "expectedQty": "952995203027612063", - "reserves": [ - "2802828014293859544345089", - "6532791657636799910619504" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1488843834786199109632", - "expectedQty": "1480083952712960063643", + "inputQty": "150805838446874132480", + "expectedQty": "149715195888441612088", "reserves": [ - "2804316858128645743454721", - "6532791657636799910619504" + "3630978849696083674739175", + "4771119859369701076347122" ] }, { - "type": "mintMulti", - "inputQtys": [ - "3983351356508741828608", - "3265509047980674514944" - ], - "expectedQty": "7182050786358799957677", + "type": "redeem", + "inputIndex": 1, + "inputQty": "23474800487151463038976", + "expectedQty": "23631439231377354420911", + "swapFee": "14084880292290877823", "reserves": [ - "2808300209485154485283329", - "6536057166684780585134448" + "3630978849696083674739175", + "4747488420138323721926211" ], - "LPTokenSupply": "9241057329869331778789714" + "LPTokenSupply": "8324588441954984218684434" }, { "type": "redeemBassets", "inputQtys": [ - "20115811650210862465024", - "40084349852479697977344" + "70044091629947064418304", + "97092388178035380060160" ], - "expectedQty": "59549602449854158053676", - "swapFee": "35751212197230833332", + "expectedQty": "166057357398779126239184", + "swapFee": "99694230977854188256", "reserves": [ - "2788184397834943622818305", - "6495972816832300887157104" + "3560934758066136610320871", + "4650396031960288341866051" ], - "LPTokenSupply": "9181475551328500112986038" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "272958927731101120", - "expectedQty": "271351587633400990", - "reserves": [ - "2788184670793871353919425", - "6495972816832300887157104" - ] + "LPTokenSupply": "8158441359748325023675818" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "16991870590245077516288", - "expectedQty": "17081760751527593088231", - "swapFee": "10195122354147046509", + "inputIndex": 1, + "inputQty": "12169158071988493746176", + "expectedQty": "12250320332929857107445", + "swapFee": "7301494843193096247", "reserves": [ - "2771102910042343760831194", - "6495972816832300887157104" + "3560934758066136610320871", + "4638145711627358484758606" ], - "LPTokenSupply": "9164484971602078083575390" + "LPTokenSupply": "8146272931825820849239266" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "235757236415601312", - "4573012414997426176" + "65070590155639398334464", + "23472844690191355478016" ], - "expectedQty": "4746547890785640036", + "expectedQty": "88022072529741039767539", + "swapFee": "52844950488137506364", "reserves": [ - "2771103145799580176432506", - "6495977389844715884583280" + "3495864167910497211986407", + "4614672866937167129280590" ], - "LPTokenSupply": "9164489718149968869215426" + "LPTokenSupply": "8058203298840640485715998" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "7260760851884072239104", - "expectedQty": "7218334574501021856288", + "type": "redeem", + "inputIndex": 1, + "inputQty": "60732933716166", + "expectedQty": "61140711677771", + "swapFee": "36439760229", "reserves": [ - "2778363906651464248671610", - "6495977389844715884583280" - ] + "3495864167910497211986407", + "4614672866876026417602819" + ], + "LPTokenSupply": "8058203298779911195975854" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1502211789988309504", - "outputIndex": 1, - "expectedQty": "1512326704830014825", - "swapFee": "1194732106005742", + "type": "mintMulti", + "inputQtys": [ + "5974167773647202156544", + "1250748506869756329984" + ], + "expectedQty": "7183676378005794996691", "reserves": [ - "2778365408863254236981114", - "6495975877518011054568455" + "3501838335684144414142951", + "4615923615382896173932803" ], - "LPTokenSupply": "9171708052843943101672288", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8065386975157916990972545" }, { "type": "redeemMasset", - "inputQty": "42020909185810560", + "inputQty": "4904829472727270195", "expectedQtys": [ - "12721664295707933", - "29743972525418184" + "2128306351392042640", + "2805412074010158754" ], - "redemptionFee": "25212545511486", + "redemptionFee": "2942897683636362", "reserves": [ - "2778365396141589941273181", - "6495975847774038529150271" + "3501836207377793022100311", + "4615920809970822163774049" ], - "LPTokenSupply": "9171708010825555170412876" + "LPTokenSupply": "8065382070622734032065986" }, { "type": "redeemMasset", - "inputQty": "2038299496111451144192", + "inputQty": "734880808912279306240", "expectedQtys": [ - "617087122247721264173", - "1442784684714414393227" + "318879892223465339398", + "420329291042923165490" ], - "redemptionFee": "1222979697666870686", + "redemptionFee": "440928485347367583", "reserves": [ - "2777748309019342220009008", - "6494533063089324114757044" + "3501517327485569556760913", + "4615500480679779240608559" ], - "LPTokenSupply": "9169669833627413485955752" + "LPTokenSupply": "8064647233906670287496504" }, { - "type": "mintMulti", - "inputQtys": [ - "777124702087062618112", - "122854015531035181056" + "type": "redeemMasset", + "inputQty": "9329817772112266854", + "expectedQtys": [ + "4048399952686256692", + "5336369973363902904" ], - "expectedQty": "893793672094013816779", + "redemptionFee": "5597890663267360", "reserves": [ - "2778525433721429282627120", - "6494655917104855149938100" + "3501513279085616870504221", + "4615495144309805876705655" ], - "LPTokenSupply": "9170563627299507499772531" + "LPTokenSupply": "8064637904648687241556386" }, { "type": "mint", "inputIndex": 0, - "inputQty": "108575559921137024", - "expectedQty": "107939477457054346", + "inputQty": "2585019146841815515136", + "expectedQty": "2571093865322069550603", "reserves": [ - "2778525542296989203764144", - "6494655917104855149938100" + "3504098298232458686019357", + "4615495144309805876705655" ] }, { - "type": "redeemMasset", - "inputQty": "11367230213174614", - "expectedQtys": [ - "3442011845737162", - "8045519920677567" - ], - "redemptionFee": "6820338127904", + "type": "mint", + "inputIndex": 0, + "inputQty": "10198297728340060160", + "expectedQty": "10143344861358884785", "reserves": [ - "2778525538854977358026982", - "6494655909059335229260533" - ], - "LPTokenSupply": "9170563723872436777465053" + "3504108496530187026079517", + "4615495144309805876705655" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "8065005574471342358528", - "outputIndex": 0, - "expectedQty": "8004455846922722596754", - "swapFee": "0", + "inputQty": "32963910638243019751424", + "expectedQty": "32724267585176884241340", "reserves": [ - "2770521083008054635430228", - "6502720914633806571619061" - ], - "LPTokenSupply": "9170563723872436777465053", - "hardLimitError": false, - "insufficientLiquidityError": false + "3504108496530187026079517", + "4648459054948048896457079" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1490836942051520806912", - "200129194920248639488" - ], - "expectedQty": "1679630944752022746356", - "swapFee": "1008383597009419299", + "type": "redeem", + "inputIndex": 0, + "inputQty": "172381992021541027840", + "expectedQty": "173206786307360113543", + "swapFee": "103429195212924616", "reserves": [ - "2769030246066003114623316", - "6502520785438886322979573" + "3503935289743879665965974", + "4648459054948048896457079" ], - "LPTokenSupply": "9168883185382447446241326" + "LPTokenSupply": "8099771037794945534497735" }, { - "type": "redeemBassets", - "inputQtys": [ - "481039518881267122176", - "16420463056938047488" + "type": "redeemMasset", + "inputQty": "1425624071352378", + "expectedQtys": [ + "616350424416800", + "817674835430757" ], - "expectedQty": "494445056470581168729", - "swapFee": "296845140966928858", + "redemptionFee": "855374442811", "reserves": [ - "2768549206547121847501140", - "6502504364975829384932085" + "3503935289127529241549174", + "4648459054130374061026322" ], - "LPTokenSupply": "9168388473165349994836623" + "LPTokenSupply": "8099771036369407000589638" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1562803904970601005056", - "expectedQty": "1541996146184439198287", + "type": "redeem", + "inputIndex": 0, + "inputQty": "152819742047019837947904", + "expectedQty": "153536501228198215410132", + "swapFee": "91691845228211902768", "reserves": [ - "2768549206547121847501140", - "6504067168880799985937141" - ] + "3350398787899331026139042", + "4648459054130374061026322" + ], + "LPTokenSupply": "7946960463506909983832010" }, { - "type": "redeemMasset", - "inputQty": "12297214992063930145177", - "expectedQtys": [ - "3710498967904072350412", - "8716960659481856637789" + "type": "mintMulti", + "inputQtys": [ + "2702480595186675712", + "4344104407212214784" ], - "redemptionFee": "7378328995238358087", + "expectedQty": "7000305218386435573", "reserves": [ - "2764838707579217775150728", - "6495350208221318129299352" + "3350401490379926212814754", + "4648463398234781273241106" ], - "LPTokenSupply": "9157633992152370027725541" + "LPTokenSupply": "7946967463812128370267583" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "179317971578497302528", - "expectedQty": "176930237404698442074", + "type": "redeem", + "inputIndex": 0, + "inputQty": "6459228984718843183104", + "expectedQty": "6488934895456370324337", + "swapFee": "3875537390831305909", "reserves": [ - "2764838707579217775150728", - "6495529526192896626601880" - ] + "3343912555484469842490417", + "4648463398234781273241106" + ], + "LPTokenSupply": "7940508622381148610215069" }, { - "type": "redeemMasset", - "inputQty": "21453626342839599104", - "expectedQtys": [ - "6473187483678278793", - "15207679317260802816" - ], - "redemptionFee": "12872175805703759", + "type": "swap", + "inputIndex": 1, + "inputQty": "3887379291234787917824", + "outputIndex": 0, + "expectedQty": "3878493707214684571076", + "swapFee": "0", "reserves": [ - "2764832234391734096871935", - "6495514318513579365799064" + "3340034061777255157919341", + "4652350777526016061158930" ], - "LPTokenSupply": "9157789470050649467138886" + "LPTokenSupply": "7940508622381148610215069", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "346491118864942432256", - "663149180195703488512" + "46692428687534989312", + "161776129835696390144" ], - "expectedQty": "998796761287665976275", - "swapFee": "599637839476285356", + "expectedQty": "207023222302757365897", + "swapFee": "124288506485545746", "reserves": [ - "2764485743272869154439679", - "6494851169333383662310552" + "3339987369348567622930029", + "4652189001396180364768786" ], - "LPTokenSupply": "9156790133615306272505789" + "LPTokenSupply": "7940301487299190015857999" }, { - "type": "redeemBassets", - "inputQtys": [ - "2196774884917346041856", - "84619316762693287936" + "type": "redeemMasset", + "inputQty": "142876609083742381670", + "expectedQtys": [ + "60063178562687369561", + "83660573468793754124" ], - "expectedQty": "2267511852356469316205", - "swapFee": "1361323905757335991", + "redemptionFee": "85725965450245429", "reserves": [ - "2762288968387951808397823", - "6494766550016620969022616" + "3339927306170004935560468", + "4652105340822711571014662" ], - "LPTokenSupply": "9154521396571434621587191" + "LPTokenSupply": "7940158619262702818500871" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1695010412520442112", - "2110597644757492224" + "14774416942542639595520", + "134837069966100360331264" ], - "expectedQty": "3767660787743940303", + "expectedQty": "148535921942823067296173", + "swapFee": "89175058200614208903", "reserves": [ - "2762290663398364328839935", - "6494768660614265726514840" + "3325152889227462295964948", + "4517268270856611210683398" ], - "LPTokenSupply": "9154525164232222365527494" + "LPTokenSupply": "7791542439767499198416684" }, { - "type": "redeemMasset", - "inputQty": "11768567746649789235", - "expectedQtys": [ - "3548922451182287847", - "8344317497178973033" + "type": "redeemBassets", + "inputQtys": [ + "15443026606313569255424", + "110519498084251863089152" ], - "redemptionFee": "7061140647989873", + "expectedQty": "125068570737977358750771", + "swapFee": "75086194159281984441", "reserves": [ - "2762287114475913146552088", - "6494760316296768547541807" + "3309709862621148726709524", + "4406748772772359347594246" ], - "LPTokenSupply": "9154513396370589780537246" + "LPTokenSupply": "7666406291454778485879915" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "55943110757807521792", - "expectedQty": "55618479482036913696", + "type": "swap", + "inputIndex": 1, + "inputQty": "179072678008875454038016", + "outputIndex": 0, + "expectedQty": "178658351393955425162435", + "swapFee": "0", "reserves": [ - "2762343057586670954073880", - "6494760316296768547541807" - ] + "3131051511227193301547089", + "4585821450781234801632262" + ], + "LPTokenSupply": "7666406291454778485879915", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "128001247074593584185344", - "expectedQty": "129645872206854433899437", - "swapFee": "76800748244756150511", + "type": "mintMulti", + "inputQtys": [ + "21860141554814304", + "211836191293808480" + ], + "expectedQty": "231973512319633364", "reserves": [ - "2762343057586670954073880", - "6365114444089914113642370" + "3131051533087334856361393", + "4585821662617426095440742" ], - "LPTokenSupply": "9026575447850302708880649" + "LPTokenSupply": "7666406523428290805513279" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "13460780780227747905536", - "expectedQty": "13533630177960457977118", - "swapFee": "8076468468136648743", + "inputIndex": 1, + "inputQty": "6050239702944476823552", + "expectedQty": "6093034225018229746363", + "swapFee": "3630143821766686094", "reserves": [ - "2748809427408710496096762", - "6365114444089914113642370" + "3131051533087334856361393", + "4579728628392407865694379" ], - "LPTokenSupply": "9013115474716921774639987" + "LPTokenSupply": "7660356646739728505358336" }, { - "type": "redeemMasset", - "inputQty": "199943347083661593804", - "expectedQtys": [ - "60941901305666505291", - "141116431129484809623" - ], - "redemptionFee": "119966008250196956", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2165073928998357041152", + "expectedQty": "2180382556689797518667", + "swapFee": "1299044357399014224", "reserves": [ - "2748748485507404829591471", - "6364973327658784628832747" + "3131051533087334856361393", + "4577548245835718068175712" ], - "LPTokenSupply": "9012915543366438938065878" + "LPTokenSupply": "7658191702715165888218606" }, { - "type": "redeemMasset", - "inputQty": "74998760079605628928", - "expectedQtys": [ - "22859310680934713596", - "52932781423963812766" + "type": "mintMulti", + "inputQtys": [ + "53969328124672826408960", + "37791778790491576860672" ], - "redemptionFee": "44999256047763377", + "expectedQty": "91204764518824136205614", "reserves": [ - "2748725626196723894877875", - "6364920394877360665019981" + "3185020861212007682770353", + "4615340024626209645036384" ], - "LPTokenSupply": "9012840549106284937213287" + "LPTokenSupply": "7749396467233990024424220" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "16067535650123610587136", - "36243777426810514440192" + "708064233570765952", + "1892663364761183744" ], - "expectedQty": "51734820969308199278936", + "expectedQty": "2582821567731451887", + "swapFee": "1550623314627647", "reserves": [ - "2764793161846847505465011", - "6401164172304171179460173" + "3185020153147774112004401", + "4615338131962844883852640" ], - "LPTokenSupply": "9064575370075593136492223" + "LPTokenSupply": "7749393883016861309807449" }, { "type": "redeemBassets", "inputQtys": [ - "2360285272900574720", - "12914653131775641600" + "14375725574086000115712", + "2657806527075434102784" ], - "expectedQty": "15089569562320699265", - "swapFee": "9059177243738662", + "expectedQty": "16941521053193522595734", + "swapFee": "10171015241060750007", "reserves": [ - "2764790801561574604890291", - "6401151257651039403818573" + "3170644427573688111888689", + "4612680325435769449749856" ], - "LPTokenSupply": "9064560272352771296428161" + "LPTokenSupply": "7732443208049950832536707" }, { - "type": "redeemMasset", - "inputQty": "21880781532910300273049", - "expectedQtys": [ - "6669875231285563060331", - "15442354698592280604625" + "type": "mintMulti", + "inputQtys": [ + "277740539898935200", + "180181668684572096" ], - "redemptionFee": "13128468919746180163", + "expectedQty": "455166994947207201", "reserves": [ - "2758120926330289041829960", - "6385708902952447123213948" + "3170644705314228010823889", + "4612680505617438134321952" ], - "LPTokenSupply": "9042680803666752970773128" + "LPTokenSupply": "7732443663216945779743908" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "2421411511083607261184", - "expectedQty": "2452490609775765383786", - "swapFee": "1452846906650164356", + "inputQty": "61570693718463469322240", + "expectedQty": "61101346071570078384882", "reserves": [ - "2758120926330289041829960", - "6383256412342671357830162" - ], - "LPTokenSupply": "9040259537440360028528379" + "3170644705314228010823889", + "4674251199335901603644192" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "4581053823300594565120", - "598497695849426583552" + "type": "redeemMasset", + "inputQty": "2868041770071023733964", + "expectedQtys": [ + "1166104169180087293518", + "1719102680349177730858" ], - "expectedQty": "5144260542973604535671", + "redemptionFee": "1720825062042614240", "reserves": [ - "2762701980153589636395080", - "6383854910038520784413714" + "3169478601145047923530371", + "4672532096655552425913334" ], - "LPTokenSupply": "9045403797983333633064050" + "LPTokenSupply": "7790677139600951038656250" }, { "type": "mintMulti", "inputQtys": [ - "61814533482931728", - "40317122643179824" + "6869904155371675582464", + "30355966396983622500352" ], - "expectedQty": "101227577166381711", + "expectedQty": "36959839329006830385636", "reserves": [ - "2762702041968123119326808", - "6383854950355643427593538" + "3176348505300419599112835", + "4702888063052536048413686" ], - "LPTokenSupply": "9045403899210910799445761" + "LPTokenSupply": "7827636978929957869041886" }, { - "type": "redeemMasset", - "inputQty": "20356162951958875340", - "expectedQtys": [ - "6213572193403469462", - "14357879714742179354" + "type": "redeemBassets", + "inputQtys": [ + "422623868238061830144", + "903629983184596762624" ], - "redemptionFee": "12213697771175325", + "expectedQty": "1317260313945820114873", + "swapFee": "790830686779559804", "reserves": [ - "2762695828395929715857346", - "6383840592475928685414184" + "3175925881432181537282691", + "4701984433069351451651062" ], - "LPTokenSupply": "9045383544269328617687953" + "LPTokenSupply": "7826319006868393947323188" }, { - "type": "mintMulti", - "inputQtys": [ - "111362009118534778880", - "54283635355512061952" - ], - "expectedQty": "164260164647242920318", + "type": "swap", + "inputIndex": 0, + "inputQty": "1226455245724685959168", + "outputIndex": 1, + "expectedQty": "1228867610714494666582", + "swapFee": "976348538336620159", "reserves": [ - "2762807190405048250636226", - "6383894876111284197476136" + "3177152336677906223241859", + "4700755565458636956984480" ], - "LPTokenSupply": "9045547804433975860608271" + "LPTokenSupply": "7826319104503247780985203", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1086073168696461334937", - "expectedQtys": [ - "331523359133069135086", - "766036182702463413262" + "type": "redeemBassets", + "inputQtys": [ + "9335012731286224633856", + "6827549108553801269248" ], - "redemptionFee": "651643901217876800", + "expectedQty": "16064470077150105017129", + "swapFee": "9644468727526578957", "reserves": [ - "2762475667045915181501140", - "6383128839928581734062874" + "3167817323946619998608003", + "4693928016350083155715232" ], - "LPTokenSupply": "9044461796429669521061014" + "LPTokenSupply": "7810245954404242902047011" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "57592753354249963831296", - "expectedQty": "56828144813156856826103", + "type": "swap", + "inputIndex": 0, + "inputQty": "523855059269445120", + "outputIndex": 1, + "expectedQty": "524890307766559025", + "swapFee": "417028670851823", "reserves": [ - "2762475667045915181501140", - "6440721593282831697894170" - ] + "3167817847801679268053123", + "4693927491459775389156207" + ], + "LPTokenSupply": "7810245954445945769132193", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "14724784727638476", - "expectedQty": "14803196741056939", - "swapFee": "8834870836583", + "type": "redeemMasset", + "inputQty": "4657505538470866793267", + "expectedQtys": [ + "1887940121156735306746", + "2797463257894458943321" + ], + "redemptionFee": "2794503323082520075", "reserves": [ - "2762475652242718440444201", - "6440721593282831697894170" + "3165929907680522532746377", + "4691130028201880930212886" ], - "LPTokenSupply": "9101289926518925137332299" + "LPTokenSupply": "7805588728357807210590933" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6331735307907777536", - "10911297150036300" + "5390530163501080576", + "8534234210392641536" ], - "expectedQty": "6305183717261091519", - "swapFee": "3785381459232194", + "expectedQty": "13832936468349831490", "reserves": [ - "2762469320507410532666665", - "6440721582371534547857870" + "3165935298210686033826953", + "4691138562436091322854422" ], - "LPTokenSupply": "9101283617928364562931804" + "LPTokenSupply": "7805602561294275560422423" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "118786195339752666824704", - "expectedQty": "120309767162432029568784", - "swapFee": "71271717203851600094", + "inputQty": "255332314699100843933696", + "expectedQty": "257126465036979443705092", + "swapFee": "153199388819460506360", "reserves": [ - "2762469320507410532666665", - "6320411815209102518289086" + "3165935298210686033826953", + "4434012097399111879149330" ], - "LPTokenSupply": "8982504549760332281267109" + "LPTokenSupply": "7550285566534056662539363" }, { - "type": "mintMulti", + "type": "swap", + "inputIndex": 0, + "inputQty": "40464841897428503232512", + "outputIndex": 1, + "expectedQty": "40523735561361776527686", + "swapFee": "32203301288876436765", + "reserves": [ + "3206400140108114537059465", + "4393488361837750102621644" + ], + "LPTokenSupply": "7550288786864185550183039", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", "inputQtys": [ - "2998588676753252679680", - "37849284777713975296" + "469135440630862336", + "328595151988320256" ], - "expectedQty": "3017697094863441649997", + "expectedQty": "792810514107296362", + "swapFee": "475971891599337", "reserves": [ - "2765467909184163785346345", - "6320449664493880232264382" + "3206399670972673906197129", + "4393488033242598114301388" ], - "LPTokenSupply": "8985522246855195722917106" + "LPTokenSupply": "7550287993625296740447272" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "33838479560053557821440", - "expectedQty": "33630583831819693297575", + "type": "redeemBassets", + "inputQtys": [ + "5416504534424695808", + "18979255460993581056" + ], + "expectedQty": "24226017206080305699", + "swapFee": "14544336925803665", "reserves": [ - "2799306388744217343167785", - "6320449664493880232264382" - ] + "3206394254468139481501321", + "4393469053987137120720332" + ], + "LPTokenSupply": "7550263754518187426918273" }, { "type": "mint", "inputIndex": 1, - "inputQty": "643465693283817488384", - "expectedQty": "634990084722322064382", + "inputQty": "57390643819035473477632", + "expectedQty": "56962649708818472054402", "reserves": [ - "2799306388744217343167785", - "6321093130187164049752766" + "3206394254468139481501321", + "4450859697806172594197964" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1332930325332379828224", - "expectedQty": "1349911038702778323801", - "swapFee": "799758195199427896", + "type": "redeemMasset", + "inputQty": "27783699808032643481", + "expectedQtys": [ + "11703614353532683732", + "16246020080723067977" + ], + "redemptionFee": "16670219884819586", "reserves": [ - "2799306388744217343167785", - "6319743219148461271428965" + "3206382550853785948817589", + "4450843451786091871129987" ], - "LPTokenSupply": "9018454970422224878393628" + "LPTokenSupply": "7607198622194219854811152" }, { "type": "redeemMasset", - "inputQty": "314380359273846197452", + "inputQty": "4904944390286673864294", "expectedQtys": [ - "97524345680785300252", - "220171977171288341422" + "2066160305477364964444", + "2868078253334292936604" ], - "redemptionFee": "188628215564307718", + "redemptionFee": "2942966634172004318", "reserves": [ - "2799208864398536557867533", - "6319523047171289983087543" + "3204316390548308583853145", + "4447975373532757578193383" ], - "LPTokenSupply": "9018140608925772588626947" + "LPTokenSupply": "7602293972100596598147289" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "116452732109328596992", - "51402805706897342464" + "200591770190635237376", + "11697608843755665408" ], - "expectedQty": "166456499621791737388", - "swapFee": "99933860089128519", + "expectedQty": "211154256980703086001", "reserves": [ - "2799092411666427229270541", - "6319471644365583085745079" + "3204516982318499219090521", + "4447987071141601333858791" ], - "LPTokenSupply": "9017974062485676716673890" + "LPTokenSupply": "7602505126357577301233290" }, { "type": "redeemMasset", - "inputQty": "1444203714667132723", + "inputQty": "5404604006542358872064", "expectedQtys": [ - "447997982122880931", - "1011438755276056204" + "2276717153990444403639", + "3160166889884588623513" ], - "redemptionFee": "866522228800279", + "redemptionFee": "3242762403925415323", "reserves": [ - "2799091963668445106389610", - "6319470632926827809688875" + "3202240265164508774686882", + "4444826904251716745235278" ], - "LPTokenSupply": "9017972618368614272421194" + "LPTokenSupply": "7597100846627275334902758" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1102792741786796032000", - "expectedQty": "1095953733873149411890", + "type": "redeemBassets", + "inputQtys": [ + "286884146057121726464", + "2535384526966135717888" + ], + "expectedQty": "2801811242933967399140", + "swapFee": "1682096003362397878", "reserves": [ - "2800194756410231902421610", - "6319470632926827809688875" - ] + "3201953381018451652960418", + "4442291519724750609517390" + ], + "LPTokenSupply": "7594297521497938341345526" }, { "type": "mintMulti", "inputQtys": [ - "4869156718795132239872", - "10443327353067273191424" + "974863017761508032512", + "211726952210502090752" ], - "expectedQty": "15144742264245341203182", + "expectedQty": "1179912189159208365413", "reserves": [ - "2805063913129027034661482", - "6329913960279895082880299" + "3202928244036213160992930", + "4442503246676961111608142" ], - "LPTokenSupply": "9034213314366732763036266" + "LPTokenSupply": "7595477433687097549710939" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "908632292642188296192", - "expectedQty": "913754786653637596026", - "swapFee": "545179375585312977", + "type": "redeemBassets", + "inputQtys": [ + "4892442995579909120", + "5766538310839296000" + ], + "expectedQty": "10590297834351220922", + "swapFee": "6357993496708757", "reserves": [ - "2804150158342373397065456", - "6329913960279895082880299" + "3202923351593217581083810", + "4442497480138650272312142" ], - "LPTokenSupply": "9033304736592028133271371" + "LPTokenSupply": "7595466837667069051452134" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "7955148758772924547072", - "expectedQty": "7999881317598427546534", - "swapFee": "4773089255263754728", + "type": "mint", + "inputIndex": 1, + "inputQty": "127128419701944653709312", + "expectedQty": "126172317890185914742370", + "reserves": [ + "3202923351593217581083810", + "4569625899840594926021454" + ] + }, + { + "type": "redeemMasset", + "inputQty": "137927490036383129", + "expectedQtys": [ + "57177771074581025", + "81575796519636932" + ], + "redemptionFee": "82756494021829", "reserves": [ - "2796150277024774969518922", - "6329913960279895082880299" + "3202923294415446506502785", + "4569625818264798406384522" ], - "LPTokenSupply": "9025350065142180735099771" + "LPTokenSupply": "7721639017638040579213557" }, { "type": "mint", "inputIndex": 0, - "inputQty": "12729254634996893745152", - "expectedQty": "12650379223909383614111", + "inputQty": "3556093869013397405696", + "expectedQty": "3537941861750568250141", "reserves": [ - "2808879531659771863264074", - "6329913960279895082880299" + "3206479388284459903908481", + "4569625818264798406384522" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "43014522192160761053184", - "6190660779565932085248" + "type": "redeemMasset", + "inputQty": "3655611264434554326220", + "expectedQtys": [ + "1516419526323164419494", + "2161083537329280534079" ], - "expectedQty": "48858904397573224393691", - "swapFee": "29332942403986326432", + "redemptionFee": "2193366758660732595", "reserves": [ - "2765865009467611102210890", - "6323723299500329150795051" + "3204962968758136739488987", + "4567464734727469125850443" ], - "LPTokenSupply": "8989115140320353306626401" + "LPTokenSupply": "7721521567572032459210737" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "103999249126434224", - "outputIndex": 1, - "expectedQty": "104667683170806247", - "swapFee": "82692875212958", + "type": "redeemBassets", + "inputQtys": [ + "2173743993052260352", + "1221278214047541248" + ], + "expectedQty": "3374685503343073293", + "swapFee": "2026026918156738", "reserves": [ - "2765865113466860228645114", - "6323723194832645979988804" + "3204960795014143687228635", + "4567463513449255078309195" ], - "LPTokenSupply": "8989115140328622594147696", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7721518191063104889796378" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "58128768798377600090112", - "expectedQty": "58443891147516767341709", - "swapFee": "34877261279026560054", + "inputIndex": 1, + "inputQty": "8140507455372015960064", + "expectedQty": "8197587439982203632273", + "swapFee": "4884304473223209576", "reserves": [ - "2707421222319343461303405", - "6323723194832645979988804" + "3204960795014143687228635", + "4559265926009272874676922" ], - "LPTokenSupply": "8930989859256372896713589" + "LPTokenSupply": "7713378172038180196157271" }, { "type": "mint", "inputIndex": 1, - "inputQty": "608091395188701528064", - "expectedQty": "599994010113423213093", - "reserves": [ - "2707421222319343461303405", - "6324331286227834681516868" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "12485494892081562255360", - "expectedQty": "12411682964504870565231", + "inputQty": "205353727897012273152", + "expectedQty": "203801941395690230053", "reserves": [ - "2719906717211425023558765", - "6324331286227834681516868" + "3204960795014143687228635", + "4559471279737169886950074" ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "27735281334965327888384", - "outputIndex": 0, - "expectedQty": "27527066622913411699930", - "swapFee": "0", + "inputQty": "76126002065516181585920", + "expectedQty": "76657567972940914405139", + "swapFee": "45675601239309708951", "reserves": [ - "2692379650588511611858835", - "6352066567562800009405252" + "3204960795014143687228635", + "4482813711764228972544935" ], - "LPTokenSupply": "8944001536230991190491913", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7637460539474183635772299" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "20085985023792336863232", - "expectedQty": "19968888355308433706496", + "inputIndex": 1, + "inputQty": "268490640334445426507776", + "expectedQty": "266449759969565634759954", "reserves": [ - "2712465635612303948722067", - "6352066567562800009405252" + "3204960795014143687228635", + "4751304352098674399052711" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1712113414103028", - "expectedQty": "1721182011061579", - "swapFee": "1027268048461", + "type": "redeemMasset", + "inputQty": "964282502040660377", + "expectedQtys": [ + "390772820638819129", + "579314606990349278" + ], + "redemptionFee": "578569501224396", "reserves": [ - "2712465633891121937660488", - "6352066567562800009405252" + "3204960404241323048409506", + "4751303772784067408703433" ], - "LPTokenSupply": "8963970422874288936900227" + "LPTokenSupply": "7903909335219104179994315" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1140871609418121472", - "outputIndex": 1, - "expectedQty": "1148578938201747010", - "swapFee": "907343715556840", + "type": "mint", + "inputIndex": 1, + "inputQty": "4297050586151653998592", + "expectedQty": "4263989323723693184657", "reserves": [ - "2712466774762731355781960", - "6352065418983861807658242" - ], - "LPTokenSupply": "8963970422965023308455911", - "hardLimitError": false, - "insufficientLiquidityError": false + "3204960404241323048409506", + "4755600823370219062702025" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "70474325181448151040", + "inputQty": "12731660006643521536", "outputIndex": 1, - "expectedQty": "70950406474020093330", - "swapFee": "56048750132747846", + "expectedQty": "12756961751066663345", + "swapFee": "10135141936922076", "reserves": [ - "2712537249087912803933000", - "6351994468577387787564912" + "3204973135901329691931042", + "4755588066408467996038680" ], - "LPTokenSupply": "8963970428569898321730695", + "LPTokenSupply": "7908173325556342066871179", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "27569578186363678962483", - "expectedQtys": [ - "8337671153988120378149", - "19524465910563182735221" + "type": "redeemBassets", + "inputQtys": [ + "2131436323230686", + "294420746682843" ], - "redemptionFee": "16541746911818207377", + "expectedQty": "2413089140768101", + "swapFee": "1448722718091", "reserves": [ - "2704199577933924683554851", - "6332470002666824604829691" + "3204973133769893368700356", + "4755588066114047249355837" ], - "LPTokenSupply": "8936402504558225824588949" + "LPTokenSupply": "7908173323141949075656795" }, { "type": "redeemMasset", - "inputQty": "248951200235460703027", + "inputQty": "18442252263687810816409", "expectedQtys": [ - "75288663645279221410", - "176304740214056923938" + "7469671751458060958785", + "11083612984062405921664" ], - "redemptionFee": "149370720141276421", + "redemptionFee": "11065351358212686489", "reserves": [ - "2704124289270279404333441", - "6332293697926610547905753" + "3197503462018435307741571", + "4744504453129984843434173" ], - "LPTokenSupply": "8936153568295062378013564" + "LPTokenSupply": "7889732177413397086109034" }, { - "type": "redeemMasset", - "inputQty": "683833286507570292326", - "expectedQtys": [ - "206807177563905967541", - "484283874217668893558" - ], - "redemptionFee": "410299971904542175", + "type": "mint", + "inputIndex": 0, + "inputQty": "176581615211096320245760", + "expectedQty": "175689210042202136340873", "reserves": [ - "2703917482092715498365900", - "6331809414052392879012195" - ], - "LPTokenSupply": "8935469776038551998175455" + "3374085077229531627987331", + "4744504453129984843434173" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "673437433208785", - "expectedQty": "677005864660956", - "swapFee": "404062459925", + "inputQty": "2372750099972924899328", + "expectedQty": "2383655901481137624700", + "swapFee": "1423650059983754939", "reserves": [ - "2703917481415709633704944", - "6331809414052392879012195" + "3371701421328050490362631", + "4744504453129984843434173" ], - "LPTokenSupply": "8935469775365154971212662" + "LPTokenSupply": "8063048779720632295926072" }, { "type": "mint", "inputIndex": 0, - "inputQty": "54161808414730805248", - "expectedQty": "53843995821996923274", + "inputQty": "60066049957045427240960", + "expectedQty": "59753107749878667266349", "reserves": [ - "2703971643224124364510192", - "6331809414052392879012195" + "3431767471285095917603591", + "4744504453129984843434173" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "20474621778120367144960", - "19809722785404412755968" - ], - "expectedQty": "39900434577751904794939", - "swapFee": "23954633526767203198", + "type": "redeem", + "inputIndex": 1, + "inputQty": "923795599798086139904", + "expectedQty": "930193006247990388985", + "swapFee": "554277359878851683", "reserves": [ - "2683497021446003997365232", - "6311999691266988466256227" + "3431767471285095917603591", + "4743574260123736853045188" ], - "LPTokenSupply": "8895601625613050972858117" + "LPTokenSupply": "8121878147298448864937685" }, { - "type": "mintMulti", - "inputQtys": [ - "22851894223516880", - "327125948898223552" - ], - "expectedQty": "345477928261954766", + "type": "mint", + "inputIndex": 0, + "inputQty": "108369062272630721085440", + "expectedQty": "107792962808778799871317", "reserves": [ - "2683497044297898220882112", - "6312000018392937364479779" - ], - "LPTokenSupply": "8895601971090979234812883" + "3540136533557726638689031", + "4743574260123736853045188" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "27702219324172003180544", - "39660297232138159259648" - ], - "expectedQty": "66671886536603881417758", - "swapFee": "40027148210888862167", + "type": "redeem", + "inputIndex": 0, + "inputQty": "32367820468255952896", + "expectedQty": "32523422382206354495", + "swapFee": "19420692280953571", "reserves": [ - "2655794824973726217701568", - "6272339721160799205220131" + "3540104010135344432334536", + "4743574260123736853045188" ], - "LPTokenSupply": "8828894060120985553419173" + "LPTokenSupply": "8229638744228828636951463" }, { - "type": "redeemBassets", - "inputQtys": [ - "226737667792092", - "79086930955539" + "type": "redeemMasset", + "inputQty": "1347796759618887475", + "expectedQtys": [ + "579427367026295836", + "776405646830733656" ], - "expectedQty": "303454065497400", - "swapFee": "182181748347", + "redemptionFee": "808678055771332", "reserves": [ - "2655794824746988549909476", - "6272339721081712274264592" + "3540103430707977406038700", + "4743573483718090022311532" ], - "LPTokenSupply": "8828894059817367524348259" + "LPTokenSupply": "8229637396512936823641121" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "376295988874331776", + "expectedQty": "373520417559994212", + "reserves": [ + "3540103430707977406038700", + "4743573860014078896643308" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "439921904034084925997056", + "inputQty": "20805138246819146366976", "outputIndex": 1, - "expectedQty": "442305331418397982857852", - "swapFee": "349651879589508098391", + "expectedQty": "20829484318957681500716", + "swapFee": "16554338244532972220", "reserves": [ - "3095716728781073475906532", - "5830034389663314291406740" + "3560908568954796552405676", + "4722744375695121215142592" ], - "LPTokenSupply": "8828929025005326475158098", + "LPTokenSupply": "8229639425467178836932555", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "22469561618258916147", - "expectedQtys": [ - "7873849926130231058", - "14828493647886845954" + "type": "mint", + "inputIndex": 1, + "inputQty": "117352237828850827264", + "expectedQty": "116490180511563852565", + "reserves": [ + "3560908568954796552405676", + "4722861727932950065969856" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "8567020729597654016", + "18687998728982913024" ], - "redemptionFee": "13481736970955349", + "expectedQty": "27071256272108388622", + "swapFee": "16252505266424888", "reserves": [ - "3095708854931147345675474", - "5830019561169666404560786" + "3560900001934066954751660", + "4722843039934221083056832" ], - "LPTokenSupply": "8828906556791881913337485" + "LPTokenSupply": "8229728829764163552614097" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "17281792777257610117120", - "expectedQty": "17404382659888716651179", - "swapFee": "10369075666354566070", + "inputQty": "773655984484904599552", + "expectedQty": "777409464809327483937", + "swapFee": "464193590690942759", "reserves": [ - "3078304472271258629024295", - "5830019561169666404560786" + "3560122592469257627267723", + "4722843039934221083056832" ], - "LPTokenSupply": "8811625800922190938676972" + "LPTokenSupply": "8228955220199037717108820" }, { "type": "swap", "inputIndex": 0, - "inputQty": "63344889686559463309312", + "inputQty": "337535334533837824", "outputIndex": 1, - "expectedQty": "63600684266962842145175", - "swapFee": "50286241748272883799", + "expectedQty": "337918249264293809", + "swapFee": "268563393336284", "reserves": [ - "3141649361957818092333607", - "5766418876902703562415611" + "3560122930004592161105547", + "4722842702015971818763023" ], - "LPTokenSupply": "8811630829546365765965351", + "LPTokenSupply": "8228955220225894056442448", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "38031031276793153716224", - "expectedQty": "38306721682382469185917", - "swapFee": "22818618766075892229", + "inputQty": "35734981194767237382144", + "outputIndex": 1, + "expectedQty": "35773233562157721473071", + "swapFee": "28432309515304873736", + "reserves": [ + "3595857911199359398487691", + "4687069468453814097289952" + ], + "LPTokenSupply": "8228958063456845586929821", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1529156581114057064448", + "1905588126855977500672" + ], + "expectedQty": "3412433115645587427861", + "swapFee": "2048689082837054689", "reserves": [ - "3103342640275435623147690", - "5766418876902703562415611" + "3594328754618245341423243", + "4685163880326958119789280" ], - "LPTokenSupply": "8773602080131449219838349" + "LPTokenSupply": "8225543786521025446152738" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "6227062894643594133504", - "expectedQty": "6271924894232115176417", - "swapFee": "3736237736786156480", + "inputQty": "5363280939020047360", + "expectedQty": "5389707008182525267", + "swapFee": "3217968563412028", "reserves": [ - "3097070715381203507971273", - "5766418876902703562415611" + "3594323364911237158897976", + "4685163880326958119789280" ], - "LPTokenSupply": "8767375390860579304320493" + "LPTokenSupply": "8225538423561883282446580" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "14554509434231964", - "52161448343006928" + "11663236522847078400", + "7140315222145410048" ], - "expectedQty": "65950752249613077", + "expectedQty": "18687311936178289072", + "swapFee": "11219118632886705", "reserves": [ - "3097070729935712942203237", - "5766418929064151905422539" + "3594311701674714311819576", + "4685156740011735974379232" ], - "LPTokenSupply": "8767375456811331553933570" + "LPTokenSupply": "8225519726152740334559472" }, { - "type": "redeemMasset", - "inputQty": "5524049489016435", - "expectedQtys": [ - "1950196731528795", - "3631060550018538" - ], - "redemptionFee": "3314429693409", + "type": "redeem", + "inputIndex": 0, + "inputQty": "24836366617060189405184", + "expectedQty": "24958385723093214781235", + "swapFee": "14901819970236113643", "reserves": [ - "3097070727985516210674442", - "5766418925433091355404001" + "3569353315951621097038341", + "4685156740011735974379232" ], - "LPTokenSupply": "8767375451287613507886475" + "LPTokenSupply": "8200684849717677168765652" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "296532323643307851776", - "expectedQty": "294236385845463064031", + "inputIndex": 1, + "inputQty": "42384634162844090236928", + "expectedQty": "42073843277312239047664", "reserves": [ - "3097367260309159518526218", - "5766418925433091355404001" + "3569353315951621097038341", + "4727541374174580064616160" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10549619875582440374272", - "expectedQty": "10417617792760339559057", + "type": "redeem", + "inputIndex": 0, + "inputQty": "586601350312174540554240", + "expectedQty": "589224429597858045981175", + "swapFee": "351960810187304724332", "reserves": [ - "3097367260309159518526218", - "5776968545308673795778273" - ] + "2980128886353763051057166", + "4727541374174580064616160" + ], + "LPTokenSupply": "7656192538763833597731509" }, { - "type": "redeemBassets", - "inputQtys": [ - "6607313071347371868160", - "19290535968822349791232" + "type": "redeemMasset", + "inputQty": "315053705660478", + "expectedQtys": [ + "122559262172590", + "194422457821326" ], - "expectedQty": "25605348206026118372069", - "swapFee": "15372432383045498322", + "redemptionFee": "189032223396", "reserves": [ - "3090759947237812146658058", - "5757678009339851445987041" + "2980128886231203788884576", + "4727541373980157606794834" ], - "LPTokenSupply": "8752468122071048451189003" + "LPTokenSupply": "7656192538448798795293370" }, { - "type": "mintMulti", - "inputQtys": [ - "685066041859417", - "144257107771023" + "type": "swap", + "inputIndex": 0, + "inputQty": "106409504473919471616", + "outputIndex": 1, + "expectedQty": "106679423161335206028", + "swapFee": "84732028588487625", + "reserves": [ + "2980235295735677708356192", + "4727434694556996271588806" ], - "expectedQty": "822215331891384", + "LPTokenSupply": "7656192546922001654142132", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "1471611894047679709184", + "outputIndex": 0, + "expectedQty": "1466709501144099659891", + "swapFee": "0", "reserves": [ - "3090759947922878188517475", - "5757678009484108553758064" + "2978768586234533608696301", + "4728906306451043951297990" ], - "LPTokenSupply": "8752468122893263783080387" + "LPTokenSupply": "7656192546922001654142132", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "80777177273328082092032", - "1269030107304626487296" + "type": "redeemMasset", + "inputQty": "24754801186248377", + "expectedQtys": [ + "9625486870393040", + "15280819656287159" ], - "expectedQty": "81412022603485790687326", - "swapFee": "48876539485782944178", + "redemptionFee": "14852880711749", "reserves": [ - "3009982770649550106425443", - "5756408979376803927270768" + "2978768576609046738303261", + "4728906291170224295010831" ], - "LPTokenSupply": "8671012111404240787743299" + "LPTokenSupply": "7656192522168685755964929" }, { "type": "mintMulti", "inputQtys": [ - "2385502453711175155712", - "24627193938796882165760" + "46875972429465746669568", + "53346372746681109184512" ], - "expectedQty": "26683940288847486758175", + "expectedQty": "99579802494142213242201", "reserves": [ - "3012368273103261281581155", - "5781036173315600809436528" + "3025644549038512484972829", + "4782252663916905404195343" ], - "LPTokenSupply": "8697696051693088274501474" + "LPTokenSupply": "7755772324662827969207130" }, { - "type": "redeemBassets", - "inputQtys": [ - "3165543076685788741632", - "4371670476282502578176" + "type": "swap", + "inputIndex": 1, + "inputQty": "8478589881409117093888", + "outputIndex": 0, + "expectedQty": "8450467462813768284568", + "swapFee": "0", + "reserves": [ + "3017194081575698716688261", + "4790731253798314521289231" ], - "expectedQty": "7458141154213008928446", - "swapFee": "4477571235268966737", + "LPTokenSupply": "7755772324662827969207130", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "41412964311653", + "expectedQty": "41581137193402", + "swapFee": "24847778586", "reserves": [ - "3009202730026575492839523", - "5776664502839318306858352" + "3017194081534117579494859", + "4790731253798314521289231" ], - "LPTokenSupply": "8690233880724763523502963" + "LPTokenSupply": "7755772324621417489673335" }, { - "type": "redeemBassets", - "inputQtys": [ - "14605898439136011878400", - "18226700488670938398720" + "type": "redeemMasset", + "inputQty": "48200829917448267366", + "expectedQtys": [ + "18740106582976704849", + "29755730616085938853" + ], + "redemptionFee": "28920497950468960", + "reserves": [ + "3017175341427534602790010", + "4790701498067698435350378" ], - "expectedQty": "32492321581783457428110", - "swapFee": "19507097207394511163", + "LPTokenSupply": "7755724126683549836452865" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "5928834880381453860864", + "outputIndex": 0, + "expectedQty": "5908975183478919576553", + "swapFee": "0", "reserves": [ - "2994596831587439480961123", - "5758437802350647368459632" + "3011266366244055683213457", + "4796630332948079889211242" ], - "LPTokenSupply": "8657724002755493411014805" + "LPTokenSupply": "7755724126683549836452865", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "11264826814433018773504", - "expectedQty": "11179801390723411105688", + "inputQty": "6852407618931415580672", + "expectedQty": "6820671693252738765652", "reserves": [ - "3005861658401872499734627", - "5758437802350647368459632" + "3018118773862987098794129", + "4796630332948079889211242" ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "323933160846227144704", - "outputIndex": 1, - "expectedQty": "325332083600971421525", - "swapFee": "257187095997171823", + "inputQty": "58651071532956418048", + "expectedQty": "58888960415440640017", + "swapFee": "35190642919773850", "reserves": [ - "3006185591562718726879331", - "5758112470267046397038107" + "3018059884902571658154112", + "4796630332948079889211242" ], - "LPTokenSupply": "8668903829864926421837675", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7762486150824333910777854" }, { "type": "redeemBassets", "inputQtys": [ - "17437615505558007185408", - "12912290710791640842240" + "658988134309251383296", + "5247187925021117906944" ], - "expectedQty": "30055235281846066004231", - "swapFee": "18043967549637422055", + "expectedQty": "5861328309757513903091", + "swapFee": "3518908330853020153", "reserves": [ - "2988747976057160719693923", - "5745200179556254756195867" + "3017400896768262406770816", + "4791383145023058771304298" ], - "LPTokenSupply": "8638832355012285682153593" + "LPTokenSupply": "7756621655497078629156624" }, { "type": "redeemMasset", - "inputQty": "3217034575058300", + "inputQty": "96942527595021900185", "expectedQtys": [ - "1112318914973627", - "2138184578032177" + "37688954547783291590", + "59846943694886098562" ], - "redemptionFee": "1930220745034", + "redemptionFee": "58165516557013140", "reserves": [ - "2988747974944841804720296", - "5745200177418070178163690" + "3017363207813714623479226", + "4791323298079363885205736" ], - "LPTokenSupply": "8638832351795444129169796" + "LPTokenSupply": "7756524718786035262957753" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "96906992487263367069696", - "outputIndex": 1, - "expectedQty": "97304347365252871519117", - "swapFee": "76932700089438591176", + "type": "mint", + "inputIndex": 1, + "inputQty": "35474730471348622065664", + "expectedQty": "35191806211339481287360", "reserves": [ - "3085654967432105171789992", - "5647895830052817306644573" - ], - "LPTokenSupply": "8638840045065453073028913", - "hardLimitError": false, - "insufficientLiquidityError": false + "3017363207813714623479226", + "4826798028550712507271400" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "12911125574806663069696", - "outputIndex": 1, - "expectedQty": "12960440507812159874874", - "swapFee": "10247461057790053215", + "type": "redeemMasset", + "inputQty": "24572563769954130093670", + "expectedQtys": [ + "9510082020243434816264", + "15213032699476248763639" + ], + "redemptionFee": "14743538261972478056", "reserves": [ - "3098566093006911834859688", - "5634935389545005146769699" + "3007853125793471188662962", + "4811584995851236258507761" ], - "LPTokenSupply": "8638841069811558852034234", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7767145435581246811399248" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "10296628018518206464", - "outputIndex": 0, - "expectedQty": "10249570398034804991", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "408633544430464589103104", + "outputIndex": 1, + "expectedQty": "409342601966192641690208", + "swapFee": "325296343341464344487", "reserves": [ - "3098555843436513800054697", - "5634945686173023664976163" + "3416486670223935777766066", + "4402242393885043616817553" ], - "LPTokenSupply": "8638841069811558852034234", + "LPTokenSupply": "7767177965215580957833696", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 1, - "inputQty": "516519601043220160", - "outputIndex": 0, - "expectedQty": "514158990947540865", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "155895500216246248407040", + "outputIndex": 1, + "expectedQty": "155995064602917596402126", + "swapFee": "124003312442766328955", "reserves": [ - "3098555329277522852513832", - "5634946202692624708196323" + "3572382170440182026173106", + "4246247329282126020415427" ], - "LPTokenSupply": "8638841069811558852034234", + "LPTokenSupply": "7767190365546825234466591", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "47093007523534585", + "inputQty": "197887855972072", "expectedQtys": [ - "16881053382230516", - "30699412321235187" + "90960418959998", + "108118453640050" ], - "redemptionFee": "28255804514120", + "redemptionFee": "118732713583", "reserves": [ - "3098555312396469470283316", - "5634946171993212386961136" + "3572382170349221607213108", + "4246247329174007566775377" ], - "LPTokenSupply": "8638841022721376908951061" + "LPTokenSupply": "7767190365348949251765877" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "191962650599961713967104", - "expectedQty": "189561941904264820750634", + "inputIndex": 0, + "inputQty": "1529041465628285992960", + "expectedQty": "1519936415822781289883", "reserves": [ - "3098555312396469470283316", - "5826908822593174100928240" + "3573911211814849893206068", + "4246247329174007566775377" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1470336715747766566912", - "1190842896544692174848" - ], - "expectedQty": "2634899718059651506772", + "type": "redeem", + "inputIndex": 0, + "inputQty": "78280907615728752918528", + "expectedQty": "78699380417691775378214", + "swapFee": "46968544569437251751", "reserves": [ - "3100025649112217236850228", - "5828099665489718793103088" + "3495211831397158117827854", + "4246247329174007566775377" ], - "LPTokenSupply": "8831037864343701381208467" + "LPTokenSupply": "7690434091003500223862407" }, { - "type": "mintMulti", - "inputQtys": [ - "4876431706954703831040", - "1865528133242856144896" - ], - "expectedQty": "6680964821585049138893", + "type": "mint", + "inputIndex": 1, + "inputQty": "55095563615210184704", + "expectedQty": "54700063426355846977", "reserves": [ - "3104902080819171940681268", - "5829965193622961649247984" - ], - "LPTokenSupply": "8837718829165286430347360" + "3495211831397158117827854", + "4246302424737622776960081" + ] }, { - "type": "redeemMasset", - "inputQty": "11181592934066043014348", - "expectedQtys": [ - "3926004118014125953352", - "7371719546145578537506" + "type": "redeemBassets", + "inputQtys": [ + "148492729251072195952640", + "73402814352608446119936" ], - "redemptionFee": "6708955760439625808", + "expectedQty": "220500179795226047241311", + "swapFee": "132379535598494725179", "reserves": [ - "3100976076701157814727916", - "5822593474076816070710478" + "3346719102146085921875214", + "4172899610385014330840145" ], - "LPTokenSupply": "8826537907126796431295592" + "LPTokenSupply": "7469869469689661887215410" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "194145120154139", - "expectedQty": "192648753879996", + "inputIndex": 1, + "inputQty": "18325081593949617913856", + "expectedQty": "18191640810692004676391", "reserves": [ - "3100976076895302934882055", - "5822593474076816070710478" + "3346719102146085921875214", + "4191224691978963948754001" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "92753130314677", - "expectedQty": "93876555268087", - "swapFee": "55651878188", + "type": "swap", + "inputIndex": 0, + "inputQty": "19598734137261671055360", + "outputIndex": 1, + "expectedQty": "19612147980179988507128", + "swapFee": "15588230724205788911", "reserves": [ - "3100976076895302934882055", - "5822593473982939515442391" + "3366317836283347592930574", + "4171612543998783960246873" ], - "LPTokenSupply": "8826537907226697620048729" + "LPTokenSupply": "7488062669323426312470692", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "323394451113020293120", - "103110745947072397312" + "771638590665850617856", + "2409823828655940829184" + ], + "expectedQty": "3159480888901705721901", + "reserves": [ + "3367089474874013443548430", + "4174022367827439901076057" ], - "expectedQty": "422717512378658714797", + "LPTokenSupply": "7491222150212328018192593" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "5077279305993777315840", + "expectedQty": "5047723171314252254682", + "reserves": [ + "3372166754180007220864270", + "4174022367827439901076057" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "33203095960412328296448", + "outputIndex": 0, + "expectedQty": "33153263806285787629388", + "swapFee": "0", "reserves": [ - "3101299471346415955175175", - "5822696584728886587839703" + "3339013490373721433234882", + "4207225463787852229372505" ], - "LPTokenSupply": "8826960624739076278763526" + "LPTokenSupply": "7496269873383642270447275", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "253050456216008648556544", - "366529584171016685355008" + "63616389661297270063104", + "92801810565183966281728" ], - "expectedQty": "613022758521337928904223", + "expectedQty": "155373688307221216862483", "reserves": [ - "3354349927562424603731719", - "6189226168899903273194711" + "3402629880035018703297986", + "4300027274353036195654233" ], - "LPTokenSupply": "9439983383260414207667749" + "LPTokenSupply": "7651643561690863487309758" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "87009942771465", - "expectedQty": "87643251843524", - "swapFee": "52205965662", + "inputQty": "10229869863640091328512", + "expectedQty": "10171054110557956845366", "reserves": [ - "3354349927474781351888195", - "6189226168899903273194711" - ], - "LPTokenSupply": "9439983383173409485492850" + "3412859749898658794626498", + "4300027274353036195654233" + ] }, { "type": "redeemBassets", "inputQtys": [ - "979246949379956539392", - "5643342504887101423616" + "3099678143374571864064", + "6000684058801038426112" ], - "expectedQty": "6544400861525352338087", - "swapFee": "3928997915664610168", + "expectedQty": "9038663137174537036724", + "swapFee": "5426453754557456696", "reserves": [ - "3353370680525401395348803", - "6183582826395016171771095" + "3409760071755284222762434", + "4294026590294235157228121" ], - "LPTokenSupply": "9433435446213760035005610" + "LPTokenSupply": "7652771068855867805407372" }, { - "type": "redeemMasset", - "inputQty": "132259779943352185651", - "expectedQtys": [ - "46987119502865564808", - "86643790054896963617" - ], - "redemptionFee": "79355867966011311", + "type": "mint", + "inputIndex": 1, + "inputQty": "11298643945270", + "expectedQty": "11216068167778", "reserves": [ - "3353323693405898529783995", - "6183496182604961274807478" - ], - "LPTokenSupply": "9433303194369403479421090" + "3409760071755284222762434", + "4294026590305533801173391" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5957324724539413757952", - "expectedQty": "6029083900525012111758", - "swapFee": "3574394834723648254", + "inputQty": "48431546731711", + "expectedQty": "48758840226208", + "swapFee": "29058928039", "reserves": [ - "3353323693405898529783995", - "6177467098704436262695720" + "3409760071755284222762434", + "4294026590256774960947183" ], - "LPTokenSupply": "9427346227084347538027963" + "LPTokenSupply": "7652771068818655232736242" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1200171996734460", + "expectedQty": "1193261603887235", + "reserves": [ + "3409760072955456219496894", + "4294026590256774960947183" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "59149888647752335753216", - "expectedQty": "59577593934602235614625", - "swapFee": "35489933188651401451", + "inputQty": "16079833833218949251072", + "expectedQty": "16163100048460884004532", + "swapFee": "9647900299931369550", "reserves": [ - "3293746099471296294169370", - "6177467098704436262695720" + "3393596972906995335492362", + "4294026590256774960947183" ], - "LPTokenSupply": "9368199887429914067414892" + "LPTokenSupply": "7636692200968727880509360" }, { - "type": "mintMulti", - "inputQtys": [ - "2401309901588326776832", - "883973773090760032256" + "type": "redeemMasset", + "inputQty": "14735371252822681190", + "expectedQtys": [ + "6544182535618410070", + "8280563085064252308" ], - "expectedQty": "3255641241815050958211", + "redemptionFee": "8841222751693608", "reserves": [ - "3296147409372884620946202", - "6178351072477527022727976" + "3393590428724459717082292", + "4294018309693689896694875" ], - "LPTokenSupply": "9371455528671729118373103" + "LPTokenSupply": "7636677466481597332997530" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4249418685331163578368", - "expectedQty": "4216582258351279042931", - "reserves": [ - "3300396828058215784524570", - "6178351072477527022727976" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "49678517950765093355520", - "expectedQty": "49054185966942172938192", + "inputQty": "11292872699064086528", + "expectedQty": "11228047777793208811", "reserves": [ - "3300396828058215784524570", - "6228029590428292116083496" + "3393601721597158781168820", + "4294018309693689896694875" ] }, { "type": "mintMulti", "inputQtys": [ - "326005063637659407089664", - "445598484470065530929152" - ], - "expectedQty": "763486564555278899576592", - "reserves": [ - "3626401891695875191614234", - "6673628074898357647012648" - ], - "LPTokenSupply": "10188212861452301469930818" - }, - { - "type": "redeemMasset", - "inputQty": "2327287286024461982105", - "expectedQtys": [ - "827879759075489317785", - "1523538142713284149851" + "347867969650460416", + "206962058005041792" ], - "redemptionFee": "1396372371614677189", + "expectedQty": "551317282810419313", "reserves": [ - "3625574011936799702296449", - "6672104536755644362862797" + "3393602069465128431629236", + "4294018516655747901736667" ], - "LPTokenSupply": "10185885713803514169416431" + "LPTokenSupply": "7636689245846657936625654" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "1500827190525602", - "expectedQty": "1489056528082785", + "inputQty": "384310359697360420864", + "outputIndex": 1, + "expectedQty": "384615384792002981164", + "swapFee": "305683359755256910", "reserves": [ - "3625574013437626892822051", - "6672104536755644362862797" - ] + "3393986379824825792050100", + "4293633901270955898755503" + ], + "LPTokenSupply": "7636689276414993912151345", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "15621351979088160489472", - "expectedQty": "15498621939138246192090", + "inputQty": "10448721918104484970496", + "expectedQty": "10388670850934875549791", "reserves": [ - "3641195365416715053311523", - "6672104536755644362862797" + "3404435101742930277020596", + "4293633901270955898755503" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "4792894638244439785472", - "outputIndex": 1, - "expectedQty": "4811359876483777527486", - "swapFee": "3804122507016626685", + "inputIndex": 1, + "inputQty": "125658231999568958980096", + "outputIndex": 0, + "expectedQty": "125431163094158434757457", + "swapFee": "0", "reserves": [ - "3645988260054959493096995", - "6667293176879160585335311" + "3279003938648771842263139", + "4419292133270524857735599" ], - "LPTokenSupply": "10201384717643959645353974", + "LPTokenSupply": "7647077947265928787701136", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "228460618090671800320", - "expectedQty": "230137804011354033948", - "swapFee": "137076370854403080", + "inputQty": "15087307630992516", + "expectedQty": "15004569831004761", "reserves": [ - "3645758122250948139063047", - "6667293176879160585335311" - ], - "LPTokenSupply": "10201156270733506058993962" + "3279003953736079473255655", + "4419292133270524857735599" + ] }, { - "type": "redeemMasset", - "inputQty": "126248407675292064153", - "expectedQtys": [ - "45092436857233571417", - "82464191673106703895" - ], - "redemptionFee": "75749044605175238", + "type": "swap", + "inputIndex": 1, + "inputQty": "6209336131291291058176", + "outputIndex": 0, + "expectedQty": "6196543957879318775286", + "swapFee": "0", "reserves": [ - "3645713029814090905491630", - "6667210712687487478631416" + "3272807409778200154480369", + "4425501469401816148793775" ], - "LPTokenSupply": "10201030029900735227447332" + "LPTokenSupply": "7647077962270498618705897", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "1542136700491550372659", + "inputQty": "1311216280889442713", "expectedQtys": [ - "550808549092526229238", - "1007308208056301812707" - ], - "redemptionFee": "925282020294930223", - "reserves": [ - "3645162221264998379262392", - "6666203404479431176818709" - ], - "LPTokenSupply": "10199487985728445706567695" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "506775680615325888", - "463777020938302208" + "560839521456565155", + "758369135589572211" ], - "expectedQty": "960773358086245508", - "swapFee": "576810100912294", + "redemptionFee": "786729768533665", "reserves": [ - "3645161714489317763936504", - "6666202940702410238516501" + "3272806848938678697915214", + "4425500711032680559221564" ], - "LPTokenSupply": "10199487024435958529501121" + "LPTokenSupply": "7647076651132890706116550" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "24911716089104628187136", - "expectedQty": "25211038982431001082422", - "swapFee": "14947029653462776912", + "type": "mint", + "inputIndex": 0, + "inputQty": "171546895878063480897536", + "expectedQty": "170590223924598074866161", "reserves": [ - "3645161714489317763936504", - "6640991901719979237434079" - ], - "LPTokenSupply": "10174576803049819247591676" + "3444353744816742178812750", + "4425500711032680559221564" + ] }, { "type": "redeemMasset", - "inputQty": "32182337810638637000294", + "inputQty": "2068876792135234145484", "expectedQtys": [ - "11522782917079899065029", - "20992952859520982000216" + "910971019136337725231", + "1170467144666793076444" ], - "redemptionFee": "19309402686383182200", + "redemptionFee": "1241326075281140487", "reserves": [ - "3633638931572237864871475", - "6619998948860458255433863" + "3443442773797605841087519", + "4424330243888013766145120" ], - "LPTokenSupply": "10142396396179449248909602" + "LPTokenSupply": "7815598122397961074951275" }, { - "type": "redeemBassets", - "inputQtys": [ - "196877097442381088", - "3736921136356589056" - ], - "expectedQty": "3885671413690963249", - "swapFee": "2332802529732417", + "type": "redeem", + "inputIndex": 0, + "inputQty": "384770438121273229312", + "expectedQty": "386736090581871712843", + "swapFee": "230862262872763937", "reserves": [ - "3633638734695140422490387", - "6619995211939321898844807" + "3443056037707023969374676", + "4424330243888013766145120" ], - "LPTokenSupply": "10142392508408513281187176" + "LPTokenSupply": "7815213375046066088998356" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "84741448132447440994304", - "64640894741464192385024" + "43716942946822111232", + "124829356701956800512" ], - "expectedQty": "147908614478350778664924", - "swapFee": "88798447755663865518", + "expectedQty": "167377707724846361421", "reserves": [ - "3548897286562692981496083", - "6555354317197857706459783" + "3443099754649970791485908", + "4424455073244715722945632" ], - "LPTokenSupply": "9994403975327182405043284" + "LPTokenSupply": "7815380752753790935359777" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1207702687564569772032", - "4360095431502216036352" + "138041779066207234686976", + "140175275941293503545344" ], - "expectedQty": "5503763684463125040409", - "swapFee": "3304240755130953596", + "expectedQty": "276399149388346486538521", "reserves": [ - "3547689583875128411724051", - "6550994221766355490423431" + "3581141533716178026172884", + "4564630349186009226490976" ], - "LPTokenSupply": "9988897237826039662144637" + "LPTokenSupply": "8091779902142137421898298" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4845821356426812981248", - "8066840806687571443712" + "6526777370670204452864", + "25618476526447406088192" ], - "expectedQty": "12773734173444766783372", - "swapFee": "7668841809152351480", + "expectedQty": "31919646799241479360215", "reserves": [ - "3542843762518701598742803", - "6542927380959667918979719" + "3587668311086848230625748", + "4590248825712456632579168" ], - "LPTokenSupply": "9976116601694966658244932" + "LPTokenSupply": "8123699548941378901258513" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "50457161121854169088", - "expectedQty": "49825528763407358244", + "type": "mintMulti", + "inputQtys": [ + "5425509823234197946368", + "6231266510458901757952" + ], + "expectedQty": "11580012685000953536597", "reserves": [ - "3542843762518701598742803", - "6542977838120789773148807" - ] + "3593093820910082428572116", + "4596480092222915534337120" + ], + "LPTokenSupply": "8135279561626379854795110" }, { "type": "redeemMasset", - "inputQty": "5824275579704110284", + "inputQty": "2473424541414244352", "expectedQtys": [ - "2067138500559116035", - "3817622877015915366" + "1091777365620793148", + "1396660698646738565" ], - "redemptionFee": "3494565347822466", + "redemptionFee": "1484054724848546", "reserves": [ - "3542841695380201039626768", - "6542974020497912757233441" + "3593092729132716807778968", + "4596478695562216887598555" ], - "LPTokenSupply": "9976160603297606896275138" + "LPTokenSupply": "8135277088350243913035612" }, { "type": "redeemMasset", - "inputQty": "20215937327291", + "inputQty": "288763340432265164", "expectedQtys": [ - "7174994008340", - "13250888250248" + "127461045962007755", + "163055068834769567" ], - "redemptionFee": "12129562396", + "redemptionFee": "173258004259359", "reserves": [ - "3542841695373026045618428", - "6542974020484661868983193" + "3593092601671670845771213", + "4596478532507148052828988" ], - "LPTokenSupply": "9976160603277392171904086" + "LPTokenSupply": "8135276799604229281196383" }, { "type": "redeemBassets", "inputQtys": [ - "8676275853943117", - "30021262823696564" + "61116024732684160", + "70567080824072232" ], - "expectedQty": "38253770621733948", - "swapFee": "22966041998239", + "expectedQty": "130815638081597249", + "swapFee": "78536504751809", "reserves": [ - "3542841686696750191675311", - "6542973990463399045286629" + "3593092540555646113087053", + "4596478461940067228756756" ], - "LPTokenSupply": "9976160565002952112371721" + "LPTokenSupply": "8135276668717908345322504" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "41535060601564626419712", - "expectedQty": "41014655998229014512737", + "type": "redeemBassets", + "inputQtys": [ + "8526622036426050502656", + "6903833919538388271104" + ], + "expectedQty": "15331080524619252575632", + "swapFee": "9204170817261908690", "reserves": [ - "3542841686696750191675311", - "6584509051064963671706341" - ] + "3584565918519220062584397", + "4589574628020528840485652" + ], + "LPTokenSupply": "8119937304439553557029050" }, { "type": "mintMulti", "inputQtys": [ - "933901722421752889344", - "79581019127459725312" + "1143047988255403278336", + "738492181346062041088" ], - "expectedQty": "1005207704814450841805", + "expectedQty": "1869593541538658491744", "reserves": [ - "3543775588419171944564655", - "6584588632084091131431653" + "3585708966507475465862733", + "4590313120201874902526740" ], - "LPTokenSupply": "10018180428705995577726263" + "LPTokenSupply": "8121806897981092215520794" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5843637299104278642688", - "expectedQty": "5798066696499183050782", + "type": "redeem", + "inputIndex": 1, + "inputQty": "125492027611452008300544", + "expectedQty": "126341379664124254232609", + "swapFee": "75295216566871204980", "reserves": [ - "3549619225718276223207343", - "6584588632084091131431653" - ] + "3585708966507475465862733", + "4463971740537750648294131" + ], + "LPTokenSupply": "7996322399891296894340748" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2990777614489842876416", - "expectedQty": "3012483305608705048925", - "swapFee": "1794466568693905725", + "inputIndex": 1, + "inputQty": "152765729741044736", + "expectedQty": "153794230032573247", + "swapFee": "91659437844626", "reserves": [ - "3546606742412667518158418", - "6584588632084091131431653" + "3585708966507475465862733", + "4463971586743520615720884" ], - "LPTokenSupply": "10020987897234661787291201" + "LPTokenSupply": "7996322247134733097080474" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "88536988689903552", - "219425696211844096" + "155511817385729163264", + "90947228793784467456" ], - "expectedQty": "304521341440765576", - "swapFee": "182822498363477", + "expectedQty": "244892583906379995447", "reserves": [ - "3546606653875678828254866", - "6584588412658394919587557" + "3585864478324861195025997", + "4464062533972314400188340" ], - "LPTokenSupply": "10020987592548780097998494" + "LPTokenSupply": "7996567139718639477075921" }, { - "type": "redeemBassets", - "inputQtys": [ - "1010371015540060848128", - "1755663405461396520960" + "type": "redeemMasset", + "inputQty": "35448353478817637990", + "expectedQtys": [ + "15886407447125194583", + "19777076549546482248" ], - "expectedQty": "2736144765154952910935", - "swapFee": "1642672462570514054", + "redemptionFee": "21269012087290582", "reserves": [ - "3545596282860138767406738", - "6582832749252933523066597" + "3585848591917414069831414", + "4464042756895764853706092" ], - "LPTokenSupply": "10018249969378408831624909" + "LPTokenSupply": "7996531693492061868166989" }, { "type": "mintMulti", "inputQtys": [ - "4866306676444649472", - "6222209864453567488" + "1008673799793697226752", + "1835546042149538889728" ], - "expectedQty": "10972559256689865259", + "expectedQty": "2824986791701076146957", "reserves": [ - "3545601149166815212056210", - "6582838971462797976634085" + "3586857265717207767058166", + "4465878302937914392595820" ], - "LPTokenSupply": "10018260941937665521490168" + "LPTokenSupply": "7999356680283762944313946" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "646978043549210509312", - "expectedQty": "654798984549710628633", - "swapFee": "388186826129526305", - "reserves": [ - "3545601149166815212056210", - "6582184172478248266005452" + "type": "redeemMasset", + "inputQty": "16071594433954829880524", + "expectedQtys": [ + "7202070073950894425741", + "8967061161566604489765" ], - "LPTokenSupply": "10017614002712798923933486" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "7801886672755298926592", - "expectedQty": "7896181208724631136963", - "swapFee": "4681132003653179355", + "redemptionFee": "9642956660372897928", "reserves": [ - "3545601149166815212056210", - "6574287991269523634868489" + "3579655195643256872632425", + "4456911241776347788106055" ], - "LPTokenSupply": "10009812584153243990324829" + "LPTokenSupply": "7983286050145474151723214" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "12150174678479502573568", - "1464079912939208048640" + "748092092391134330880", + "11021092352306921472" ], - "expectedQty": "13501164388236034494242", - "swapFee": "8105561970123694913", + "expectedQty": "754683178768827965979", "reserves": [ - "3533450974488335709482642", - "6572823911356584426819849" + "3580403287735648006963305", + "4456922262868700095027527" ], - "LPTokenSupply": "9996304124759234844505164" + "LPTokenSupply": "7984040733324242979689193" }, { - "type": "redeemMasset", - "inputQty": "1165288603383508028620", - "expectedQtys": [ - "411654107932016201692", - "765747135975340866896" - ], - "redemptionFee": "699173162030104817", + "type": "redeem", + "inputIndex": 0, + "inputQty": "47687802417253", + "expectedQty": "47937940213126", + "swapFee": "28612681450", "reserves": [ - "3533039320380403693280950", - "6572058164220609085952953" + "3580403287687710066750179", + "4456922262868700095027527" ], - "LPTokenSupply": "9995138906073167539487025" + "LPTokenSupply": "7984040733276558038540085" }, { - "type": "mintMulti", - "inputQtys": [ - "3631272828380010512384", - "19182814169144454283264" - ], - "expectedQty": "22545120690614336799418", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9560243365515295195136", + "expectedQty": "9610339634022392905419", + "swapFee": "5736146019309177117", "reserves": [ - "3536670593208783703793334", - "6591240978389753540236217" + "3570792948053687673844760", + "4456922262868700095027527" ], - "LPTokenSupply": "10017684026763781876286443" + "LPTokenSupply": "7974481063525644674262660" }, { "type": "redeemMasset", - "inputQty": "207094898632336028467", + "inputQty": "17086522578661383811891", "expectedQtys": [ - "73069481945939120464", - "136178519027641980111" + "7646369260181980127369", + "9543895118420500917692" ], - "redemptionFee": "124256939179401617", + "redemptionFee": "10251913547196830287", "reserves": [ - "3536597523726837764672870", - "6591104799870725898256106" + "3563146578793505693717391", + "4447378367750279594109835" ], - "LPTokenSupply": "10017476944290843458198137" + "LPTokenSupply": "7957395566138338010133797" }, { - "type": "redeemMasset", - "inputQty": "1778427106931465886105", - "expectedQtys": [ - "627484064991375859096", - "1169432824871959286353" - ], - "redemptionFee": "1067056264158879531", + "type": "mint", + "inputIndex": 1, + "inputQty": "5963660133065482567680", + "expectedQty": "5920146311966284752789", "reserves": [ - "3535970039661846388813774", - "6589935367045853938969753" - ], - "LPTokenSupply": "10015698623889538408199985" + "3563146578793505693717391", + "4453342027883345076677515" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "33006753126803732168704", - "18960572805100540526592" + "type": "redeemMasset", + "inputQty": "559289548514357411840", + "expectedQtys": [ + "250101215985353243659", + "312585023305281913238" ], - "expectedQty": "51473200495598589743706", - "swapFee": "30902461774423808131", + "redemptionFee": "335573729108614447", "reserves": [ - "3502963286535042656645070", - "6570974794240753398443161" + "3562896477577520340473732", + "4453029442860039794764277" ], - "LPTokenSupply": "9964197611178342837028960" + "LPTokenSupply": "7962756456459162848336190" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "53735390494140047360", - "4600967740901493760" + "86585702719683166208", + "85895197975418634240" ], - "expectedQty": "57862853374340676387", - "swapFee": "34738555157699025", + "expectedQty": "171351697131100428869", "reserves": [ - "3502909551144548516597710", - "6570970193273012496949401" + "3562983063280240023639940", + "4453115338058015213398517" ], - "LPTokenSupply": "9964139717060268854423449" + "LPTokenSupply": "7962927808156293948765059" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "18689152975418790248448", - "outputIndex": 1, - "expectedQty": "18765000556202582894700", - "swapFee": "14835413736337947513", + "inputIndex": 1, + "inputQty": "4163286384598575480832", + "outputIndex": 0, + "expectedQty": "4156984585983354324636", + "swapFee": "0", "reserves": [ - "3521598704119967306846158", - "6552205192716809914054701" + "3558826078694256669315304", + "4457278624442613788879349" ], - "LPTokenSupply": "9964141200601642488218200", + "LPTokenSupply": "7962927808156293948765059", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "32339732842492", - "15137029150620" - ], - "expectedQty": "47034869161446", - "swapFee": "28237864215", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2198262637357559808", + "expectedQty": "2213110738880207854", + "swapFee": "1318957582414535", "reserves": [ - "3521598704087627574003666", - "6552205192701672884904081" + "3558826078694256669315304", + "4457276411331874908671495" ], - "LPTokenSupply": "9964141200554582204978959" + "LPTokenSupply": "7962925610025552349446704" }, { - "type": "mintMulti", - "inputQtys": [ - "15768408510371668688896", - "30987113566067383861248" + "type": "redeemMasset", + "inputQty": "5046924645705988", + "expectedQtys": [ + "2254240620748161", + "2823339304070025" ], - "expectedQty": "46243800577365635624071", + "redemptionFee": "3028154787423", "reserves": [ - "3537367112597999242692562", - "6583192306267740268765329" + "3558826076440016048567143", + "4457276408508535604601470" ], - "LPTokenSupply": "10010385001131947840603030" + "LPTokenSupply": "7962925604978930519219458" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "12559864880346454556672", - "4937294344183417405440" + "692801473380888064", + "1220090739993528832" ], - "expectedQty": "17337281962024897304320", + "expectedQty": "1899965968218854447", + "swapFee": "1140663979318904", "reserves": [ - "3549926977478345697249234", - "6588129600611923686170769" + "3558825383638542667679079", + "4457275188417795611072638" ], - "LPTokenSupply": "10027722283093972737907350" + "LPTokenSupply": "7962923703986364718977996" }, { - "type": "redeemBassets", - "inputQtys": [ - "2187513451216918528", - "3464981414781515264" - ], - "expectedQty": "5591963678324211253", - "swapFee": "3357192522508031", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2939188579027901952", + "expectedQty": "2954540403465820132", + "swapFee": "1763513147416741", "reserves": [ - "3549924789964894480330706", - "6588126135630508904655505" + "3558822429098139201858947", + "4457275188417795611072638" ], - "LPTokenSupply": "10027716688108821143438868" + "LPTokenSupply": "7962920764974137005817718" }, { - "type": "redeemBassets", - "inputQtys": [ - "1502099004408720640", - "1234047212915376384" + "type": "mint", + "inputIndex": 1, + "inputQty": "3762492337824499499008", + "expectedQty": "3735001906482457806379", + "reserves": [ + "3558822429098139201858947", + "4461037680755620110571646" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "4753137131358536073216", + "expectedQty": "4777935115029077951466", + "swapFee": "2851882278815121643", + "reserves": [ + "3554044493983110123907481", + "4461037680755620110571646" ], - "expectedQty": "2708943879151605875", - "swapFee": "1626342132770625", + "LPTokenSupply": "7961902914937488809063045" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "118945033034553409536", + "expectedQty": "119565306671981186665", + "swapFee": "71367019820732045", "reserves": [ - "3549923287865890071610066", - "6588124901583295989279121" + "3553924928676438142720816", + "4461037680755620110571646" ], - "LPTokenSupply": "10027713977701234072339429" + "LPTokenSupply": "7961783977041156237726713" }, { - "type": "redeemBassets", - "inputQtys": [ - "304693303986262966272", - "300104835787636211712" + "type": "redeemMasset", + "inputQty": "10582002124502818816", + "expectedQtys": [ + "4720685297324283965", + "5925604905277383934" ], - "expectedQty": "598655951923723967818", - "swapFee": "359409216684244927", + "redemptionFee": "6349201274701691", "reserves": [ - "3549618594561903808643794", - "6587824796747508353067409" + "3553920207991140818436851", + "4461031755150714833187712" ], - "LPTokenSupply": "10027114998281015332551175" + "LPTokenSupply": "7961773395673951862378066" }, { - "type": "redeemBassets", - "inputQtys": [ - "807695516156334178304", - "268697812999794032640" + "type": "mint", + "inputIndex": 0, + "inputQty": "185567219897257459712", + "expectedQty": "184493774474706537707", + "reserves": [ + "3554105775211038075896563", + "4461031755150714833187712" + ] + }, + { + "type": "redeemMasset", + "inputQty": "19346457437263054136934", + "expectedQtys": [ + "8630804313227420461427", + "10833186896783640191177" ], - "expectedQty": "1066718850678137499042", - "swapFee": "640415559742728136", + "redemptionFee": "11607874462357832482", "reserves": [ - "3548810899045747474465490", - "6587556098934508559034769" + "3545474970897810655435136", + "4450198568253931192996535" ], - "LPTokenSupply": "10026047703056333426596809" + "LPTokenSupply": "7942612592798609750562087" }, { "type": "redeemBassets", "inputQtys": [ - "164874086512689283072", - "91526648856261804032" + "66588416190039141122048", + "62720322917066405314560" ], - "expectedQty": "253965968753970269911", - "swapFee": "152471063890716591", + "expectedQty": "128464902409195554141380", + "swapFee": "77125216575462610050", "reserves": [ - "3548646024959234785182418", - "6587464572285652297230737" + "3478886554707771514313088", + "4387478245336864787681975" ], - "LPTokenSupply": "10025793599863621954681965" + "LPTokenSupply": "7814078277694496280071661" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "6917398230139028897792", - "outputIndex": 0, - "expectedQty": "6884267893175146030730", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "51040944764240576512", + "expectedQty": "50746116285208594212", "reserves": [ - "3541761757066059639151688", - "6594381970515791326128529" - ], - "LPTokenSupply": "10025793599863621954681965", - "hardLimitError": false, - "insufficientLiquidityError": false + "3478937595652535754889600", + "4387478245336864787681975" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "9856022591251728384", - "expectedQty": "9732304734223881644", + "inputIndex": 0, + "inputQty": "42045097191636107264", + "expectedQty": "41802229341113450429", "reserves": [ - "3541761757066059639151688", - "6594391826538382577856913" + "3478979640749727390996864", + "4387478245336864787681975" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "69820246610274", - "344958753069223" + "5265346525168945152", + "5958860124402042880" ], - "expectedQty": "409905320621341", + "expectedQty": "11150071541785132078", + "swapFee": "6694059360687491", "reserves": [ - "3541761757135879885761962", - "6594391826883341330926136" + "3478974375403202222051712", + "4387472286476740385639095" ], - "LPTokenSupply": "10025803332578261499184950" + "LPTokenSupply": "7814159669943927392365481" }, { - "type": "redeemMasset", - "inputQty": "1184727221148519183155", - "expectedQtys": [ - "418271116284162551164", - "778777292145185082169" + "type": "mint", + "inputIndex": 1, + "inputQty": "1456530387280369408", + "expectedQty": "1445843757625628614", + "reserves": [ + "3478974375403202222051712", + "4387473743007127666008503" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "81435123260323035873280", + "expectedQty": "81855256537670123407093", + "swapFee": "48861073956193821523", + "reserves": [ + "3397119118865532098644619", + "4387473743007127666008503" + ], + "LPTokenSupply": "7732730878634757601502967" + }, + { + "type": "mintMulti", + "inputQtys": [ + "117650674549248016384", + "951072700385278164992" ], - "redemptionFee": "710836332689111509", + "expectedQty": "1061000202559211155569", "reserves": [ - "3541343486019595723210798", - "6593613049591196145843967" + "3397236769540081346661003", + "4388424815707512944173495" ], - "LPTokenSupply": "10024618676440746248912945" + "LPTokenSupply": "7733791878837316812658536" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "498697826095983296512", - "394315735666556272640" + "36554285331437150273536", + "21644900902858471243776" ], - "expectedQty": "884181363285316510074", - "swapFee": "530827314359805789", + "expectedQty": "57830531013720301220513", "reserves": [ - "3540844788193499739914286", - "6593218733855529589571327" + "3433791054871518496934539", + "4410069716610371415417271" ], - "LPTokenSupply": "10023734017332878008577659" + "LPTokenSupply": "7791622409851037113879049" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "17450440844984090361856", - "expectedQty": "17576517063265916107246", - "swapFee": "10470264506990454217", + "inputQty": "5726119660002715648", + "expectedQty": "5693423274646575568", + "reserves": [ + "3433796780991178499650187", + "4410069716610371415417271" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "3244883514246611075072", + "693384867011888807936" + ], + "expectedQty": "3914605163342153153835", "reserves": [ - "3523268271130233823807040", - "6593218733855529589571327" + "3437041664505425110725259", + "4410763101477383304225207" ], - "LPTokenSupply": "10006284623514344617261224" + "LPTokenSupply": "7795542708437653913608452" }, { "type": "mint", "inputIndex": 0, - "inputQty": "59400569913264744431616", - "expectedQty": "58936769829739605923950", + "inputQty": "578737028670267916288", + "expectedQty": "575430401777394133189", "reserves": [ - "3582668841043498568238656", - "6593218733855529589571327" + "3437620401534095378641547", + "4410763101477383304225207" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "339050130184816951296", + "938910215877523537920" + ], + "expectedQty": "1269078697591740428883", + "swapFee": "761904361171747305", + "reserves": [ + "3437281351403910561690251", + "4409824191261505780687287" + ], + "LPTokenSupply": "7794848374427914512740182" + }, { "type": "mint", - "inputIndex": 0, - "inputQty": "214682369327944739848192", - "expectedQty": "212955270227228800108245", + "inputIndex": 1, + "inputQty": "195782718304134350503936", + "expectedQty": "194321385057797923959135", "reserves": [ - "3797351210371443308086848", - "6593218733855529589571327" + "3437281351403910561690251", + "4605606909565640131191223" ] }, { - "type": "redeemMasset", - "inputQty": "710427262549887759155", - "expectedQtys": [ - "262315318025744314868", - "455449647180629043216" + "type": "redeemBassets", + "inputQtys": [ + "4032044378154926080000", + "4540748213809597382656" ], - "redemptionFee": "426256357529932655", + "expectedQty": "8516269495989545902212", + "swapFee": "5112829395230866060", "reserves": [ - "3797088895053417563771980", - "6592763284208348960528111" + "3433249307025755635610251", + "4601066161351830533808567" ], - "LPTokenSupply": "10277466278934398888527529" + "LPTokenSupply": "7980648888443267183017650" }, { "type": "mintMulti", "inputQtys": [ - "275160417376214384640", - "439208769863938801664" + "6661436059731373056", + "5477499157479474176" ], - "expectedQty": "706699602267190252051", + "expectedQty": "12060792674061338987", "reserves": [ - "3797364055470793778156620", - "6593202492978212899329775" + "3433255968461815366983307", + "4601071638850988013282743" ], - "LPTokenSupply": "10278172978536666078779580" + "LPTokenSupply": "7980660949235941244356637" }, { "type": "mintMulti", "inputQtys": [ - "764448817078122971136", - "1030591815825711955968" + "6501204404025679675392", + "2444612920451069902848" ], - "expectedQty": "1776067765931071954431", + "expectedQty": "8891393403367984101523", "reserves": [ - "3798128504287871901127756", - "6594233084794038611285743" + "3439757172865841046658699", + "4603516251771439083185591" ], - "LPTokenSupply": "10279949046302597150734011" + "LPTokenSupply": "7989552342639309228458160" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "11199654528670092", - "outputIndex": 1, - "expectedQty": "11237075788021185", - "swapFee": "8886080408126", + "inputQty": "3798608809402034552832", + "expectedQty": "3777545700306256648245", "reserves": [ - "3798128515487526429797848", - "6594233073556962823264558" - ], - "LPTokenSupply": "10279949046303485758774823", - "hardLimitError": false, - "insufficientLiquidityError": false + "3443555781675243081211531", + "4603516251771439083185591" + ] }, { "type": "redeemBassets", "inputQtys": [ - "538794492322465", - "635310207982256" + "33102695091215851520", + "38769781758307467264" ], - "expectedQty": "1161853621289126", - "swapFee": "697530691188", + "expectedQty": "71397118615869347832", + "swapFee": "42863989563259564", "reserves": [ - "3798128514948731937475383", - "6594233072921652615282302" + "3443522678980151865360011", + "4603477481989680775718327" ], - "LPTokenSupply": "10279949045141004359863626" + "LPTokenSupply": "7993258452643409008824964" }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "2084399684682365534208", + "expectedQtys": [ + "897427628821232124943", + "1199727217193027199178" + ], + "redemptionFee": "1250639810809419320", + "reserves": [ + "3442625251351330633235068", + "4602277754772487748519149" + ], + "LPTokenSupply": "7991174178022707724232688" + }, + { + "type": "redeemBassets", "inputQtys": [ - "116408083165198178844672", - "1527934184765783801856" + "8391377388711189504", + "8919440182360026112" ], - "expectedQty": "116950354970483124568665", + "expectedQty": "17197150275444122487", + "swapFee": "10324484856180181", "reserves": [ - "3914536598113930116320055", - "6595761007106418399084158" + "3442616859973941922045564", + "4602268835332305388493037" ], - "LPTokenSupply": "10396899400111487484432291" + "LPTokenSupply": "7991156971580395909548037" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "10225352892835132604416", - "outputIndex": 1, - "expectedQty": "10256505517799022353375", - "swapFee": "8111580225071395371", + "inputIndex": 1, + "inputQty": "34267273651201641545728", + "outputIndex": 0, + "expectedQty": "34196946417537175572307", + "swapFee": "0", "reserves": [ - "3924761951006765248924471", - "6585504501588619376730783" + "3408419913556404746473257", + "4636536108983507030038765" ], - "LPTokenSupply": "10396900211269509991571828", + "LPTokenSupply": "7991156971580395909548037", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "394549952635642681753", - "expectedQtys": [ - "148850667183791201174", - "249762087749519316982" - ], - "redemptionFee": "236729971581385609", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1145573220297339961344", + "expectedQty": "1153628888056377012427", + "swapFee": "687343932178403976", "reserves": [ - "3924613100339581457723297", - "6585254739500869857413801" + "3408419913556404746473257", + "4635382480095450653026338" ], - "LPTokenSupply": "10396505684989871507028635" + "LPTokenSupply": "7990011467094491787427090" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4135420106198673784832", - "expectedQty": "4100607602027783074629", + "inputQty": "179316599943919403008", + "expectedQty": "178334764617742221839", "reserves": [ - "3928748520445780131508129", - "6585254739500869857413801" + "3408599230156348665876265", + "4635382480095450653026338" ] }, { - "type": "mintMulti", - "inputQtys": [ - "2779232191667210551296", - "44942267621736923136" + "type": "redeemMasset", + "inputQty": "12391029043081460121", + "expectedQtys": [ + "5282816988407062844", + "7184146818131352678" ], - "expectedQty": "2800216899897745036170", + "redemptionFee": "7434617425848876", "reserves": [ - "3931527752637447342059425", - "6585299681768491594336937" + "3408593947339360258813421", + "4635375295948632521673660" ], - "LPTokenSupply": "10403406509491797035139434" + "LPTokenSupply": "7990177411573528190773695" }, { "type": "redeemBassets", "inputQtys": [ - "48727463796158226432", - "69031041158929473536" + "25215884962393529253888", + "27815835254841470353408" ], - "expectedQty": "116506246928791691940", - "swapFee": "69945715586626991", + "expectedQty": "52682869056462827773864", + "swapFee": "31628698653069538387", "reserves": [ - "3931479025173651183832993", - "6585230650727332664863401" + "3383378062376966729559533", + "4607559460693791051320252" ], - "LPTokenSupply": "10403289940293724215483201" + "LPTokenSupply": "7937466076688277600415281" }, { - "type": "redeemBassets", - "inputQtys": [ - "100512304580463014445056", - "17747656412956960227328" - ], - "expectedQty": "117202586540090958718630", - "swapFee": "70363770186166274996", + "type": "redeem", + "inputIndex": 1, + "inputQty": "341207262478114496", + "expectedQty": "343609219616860003", + "swapFee": "204724357486868", "reserves": [ - "3830966720593188169387937", - "6567482994314375704636073" + "3383378062376966729559533", + "4607559117084571434460249" ], - "LPTokenSupply": "10286024026360465707117073" + "LPTokenSupply": "7937465735501487558049471" }, { "type": "redeemMasset", - "inputQty": "165093785515341276774", + "inputQty": "9871582355183306342", "expectedQtys": [ - "61451277499185910385", - "105346835247972764330" + "4205278701874858421", + "5726841596026831074" ], - "redemptionFee": "99056271309204766", + "redemptionFee": "5922949413109983", "reserves": [ - "3830905269315688983477552", - "6567377647479127731871743" + "3383373857098264854701112", + "4607553390242975407629175" ], - "LPTokenSupply": "10285858942480577496760775" + "LPTokenSupply": "7937455864511427316054127" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "106626275133895185793024", - "expectedQty": "105314319799063646244033", + "inputIndex": 0, + "inputQty": "289787782393612075008", + "expectedQty": "288201683019475319392", "reserves": [ - "3830905269315688983477552", - "6674003922613022917664767" + "3383663644880658466776120", + "4607553390242975407629175" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "7808446228853041152", - "expectedQty": "7868328766436900860", - "swapFee": "4685067737311824", - "reserves": [ - "3830897400986922546576692", - "6674003922613022917664767" + "type": "redeemBassets", + "inputQtys": [ + "26277623556742433472512", + "88325659967141860868096" ], - "LPTokenSupply": "10391165454301919063694838" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "77675719128834801664", - "expectedQty": "78271404676681170276", - "swapFee": "46605431477300880", + "expectedQty": "113790368565471494648185", + "swapFee": "68315210265442162086", "reserves": [ - "3830819129582245865406416", - "6674003922613022917664767" + "3357386021323916033303608", + "4519227730275833546761079" ], - "LPTokenSupply": "10391087783243333376623262" + "LPTokenSupply": "7823892213939736398779455" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "25894218955706020659200", - "36232608872865686618112" + "735238590491000569856", + "959142919788822003712" ], - "expectedQty": "61467523098880645899728", + "expectedQty": "1683066675289246641864", + "swapFee": "1010446272937310371", "reserves": [ - "3856713348537951886065616", - "6710236531485888604282879" + "3356650782733425032733752", + "4518268587356044724757367" ], - "LPTokenSupply": "10452555306342214022522990" + "LPTokenSupply": "7822208237862801508558256" }, { "type": "swap", "inputIndex": 0, - "inputQty": "41769600574821304", + "inputQty": "1304249628534703915008", "outputIndex": 1, - "expectedQty": "41909999776451548", - "swapFee": "33141214748591", + "expectedQty": "1305865373196564710522", + "swapFee": "1037628595341035244", "reserves": [ - "3856713390307552460886920", - "6710236489575888827831331" + "3357955032361959736648760", + "4516962721982848160046845" ], - "LPTokenSupply": "10452555306345528143997849", + "LPTokenSupply": "7822208341625661042661780", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "104886066773236882866176", - "expectedQty": "103590375897300323199508", + "inputQty": "4497615965696808448", + "expectedQty": "4463632988706762908", "reserves": [ - "3856713390307552460886920", - "6815122556349125710697507" + "3357955032361959736648760", + "4516967219598813856855293" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "53899209585660911616", - "53844297632344416256" + "296055355001724338176", + "153485334255537487872" ], - "expectedQty": "106639202412900949539", - "swapFee": "64021934608505673", + "expectedQty": "446742833031994666110", "reserves": [ - "3856659491097966799975304", - "6815068712051493366281251" + "3358251087716961460986936", + "4517120704933069394343165" ], - "LPTokenSupply": "10556038985420674418592711" + "LPTokenSupply": "7822659548091681744090798" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "125059064224530186240", - "expectedQty": "124043409638955553981", + "type": "mintMulti", + "inputQtys": [ + "932442309639562723328", + "271808226236153069568" + ], + "expectedQty": "1197036921225334180678", "reserves": [ - "3856784550162191330161544", - "6815068712051493366281251" - ] + "3359183530026601023710264", + "4517392513159305547412733" + ], + "LPTokenSupply": "7823856585012907078271476" }, { "type": "mintMulti", "inputQtys": [ - "2665467648087407722496", - "923964297890403844096" + "39196218118823821312", + "49916971694451417088" ], - "expectedQty": "3556342528758126368683", + "expectedQty": "88519145267249542014", "reserves": [ - "3859450017810278737884040", - "6815992676349383770125347" + "3359222726244719847531576", + "4517442430130999998829821" ], - "LPTokenSupply": "10559719371359071500515375" + "LPTokenSupply": "7823945104158174327813490" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "100608797551788", - "expectedQty": "99363498049007", + "type": "redeemMasset", + "inputQty": "2573219947873550781644", + "expectedQtys": [ + "1104153007486556956095", + "1484851720729026588535" + ], + "redemptionFee": "1543931968724130468", "reserves": [ - "3859450017810278737884040", - "6815992676449992567677135" - ] + "3358118573237233290575481", + "4515957578410270972241286" + ], + "LPTokenSupply": "7821372038603497649444892" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "50840242471006748672", - "113037974744263081984" + "161212443412976238592", + "1303137334935269670912" ], - "expectedQty": "162066004810594263819", + "expectedQty": "1453612613353621855685", + "swapFee": "872691182721806197", "reserves": [ - "3859500858052749744632712", - "6816105714424736830759119" + "3357957360793820314336889", + "4514654441075335702570374" ], - "LPTokenSupply": "10559881437463245592828201" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "321507703795875774464", - "expectedQty": "317528167515966090239", - "reserves": [ - "3859500858052749744632712", - "6816427222128532706533583" - ] + "LPTokenSupply": "7819917640568079577963628" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "544821741406520128", - "expectedQty": "551318971223470036", - "swapFee": "326893044843912", + "type": "mintMulti", + "inputQtys": [ + "8896755247067834613760", + "2439654988691098042368" + ], + "expectedQty": "11268699572009301381637", "reserves": [ - "3859500858052749744632712", - "6816426670809561483063547" + "3366854116040888148950649", + "4517094096064026800612742" ], - "LPTokenSupply": "10560198420841709456882703" + "LPTokenSupply": "7831186340140088879345265" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "5861916802144900481024", - "expectedQty": "5906358841542033152641", - "swapFee": "3517150081286940288", + "inputQty": "533676141293869924352", + "expectedQty": "536329408003607664865", + "swapFee": "320205684776321954", "reserves": [ - "3853594499211207711480071", - "6816426670809561483063547" + "3366317786632884541285784", + "4517094096064026800612742" ], - "LPTokenSupply": "10554336855754572685095707" + "LPTokenSupply": "7830652696019363487053108" }, { "type": "redeemMasset", - "inputQty": "327484176424080402022", + "inputQty": "2480688526850835660", "expectedQtys": [ - "119499125653391911409", - "211375905640548162146" + "1065782861718534622", + "1430120914748930481" ], - "redemptionFee": "196490505854448241", + "redemptionFee": "1488413116110501", "reserves": [ - "3853475000085554319568662", - "6816215294903920934901401" + "3366316720850022822751162", + "4517092665943112051682261" ], - "LPTokenSupply": "10554009391227199190138509" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "961651219149866532864", - "expectedQty": "953846098713222597731", - "reserves": [ - "3854436651304704186101526", - "6816215294903920934901401" - ] + "LPTokenSupply": "7830650215479677947828498" }, { "type": "redeemBassets", "inputQtys": [ - "4319410005566624256", - "3199229400035918848" + "103792931904196280320", + "19179208449146490880" ], - "expectedQty": "7443963768807502664", - "swapFee": "4469059697102763", + "expectedQty": "122251963309070769520", + "swapFee": "73395215114511168", "reserves": [ - "3854432331894698619477270", - "6816212095674520898982553" + "3366212927918118626470842", + "4517073486734662905191381" ], - "LPTokenSupply": "10554955789339989877841088" + "LPTokenSupply": "7830527897460675273998925" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "257946897541673189376", + "expectedQty": "256516871701087491636", + "reserves": [ + "3366470874815660299660218", + "4517073486734662905191381" + ] }, { "type": "redeemMasset", - "inputQty": "1724957792280321091174", + "inputQty": "15286300646119228361932", "expectedQtys": [ - "629537818867836218147", - "1113280225506558665095" + "6567670191910860073443", + "8812388402178757721785" ], - "redemptionFee": "1034974675368192654", + "redemptionFee": "9171780387671537017", "reserves": [ - "3853802794075830783259123", - "6815098815449014340317458" + "3359903204623749439586775", + "4508261098332484147469596" ], - "LPTokenSupply": "10553230935045177093569179" + "LPTokenSupply": "7815499030864295900282330" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "51078874261273042944", - "expectedQty": "51688260604225552535", - "swapFee": "30647324556763825", + "inputQty": "4382260660508443017216", + "expectedQty": "4412939268197352546024", + "swapFee": "2629356396305065810", "reserves": [ - "3853802794075830783259123", - "6815047127188410114764923" + "3359903204623749439586775", + "4503848159064286794923572" ], - "LPTokenSupply": "10553179859235648276202617" + "LPTokenSupply": "7811117033139427087771695" }, { - "type": "redeemMasset", - "inputQty": "16190862927227450189414", - "expectedQtys": [ - "5909020388504212719023", - "10449484463781564567567" + "type": "mintMulti", + "inputQtys": [ + "2522789000250853949440", + "591402775964730261504" ], - "redemptionFee": "9714517756336470113", + "expectedQty": "3095725845440470031757", "reserves": [ - "3847893773687326570540100", - "6804597642724628550197356" + "3362425993624000293536215", + "4504439561840251525185076" ], - "LPTokenSupply": "10536989967760196459660214" + "LPTokenSupply": "7814212758984867557803452" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "33839886510572", - "expectedQty": "34243634595958", - "swapFee": "20303931906", + "type": "redeemBassets", + "inputQtys": [ + "22836457699336863744", + "16366726826759112704" + ], + "expectedQty": "38952913930794803635", + "swapFee": "23385779826372705", "reserves": [ - "3847893773687326570540100", - "6804597642690384915601398" + "3362403157166300956672471", + "4504423195113424766072372" ], - "LPTokenSupply": "10536989967726358603542832" + "LPTokenSupply": "7814173785023734919264381" }, { - "type": "redeemMasset", - "inputQty": "533477216521621812019", - "expectedQtys": [ - "194698107139258620325", - "344303236730602554197" + "type": "mintMulti", + "inputQtys": [ + "8536937897033826566144", + "7126598903863480156160" ], - "redemptionFee": "320086329912973087", + "expectedQty": "15562365092764655018949", "reserves": [ - "3847699075580187311919775", - "6804253339453654313047201" + "3370940095063334783238615", + "4511549794017288246228532" ], - "LPTokenSupply": "10536456522518469973028121" + "LPTokenSupply": "7829736150116499574283330" }, { "type": "mint", "inputIndex": 1, - "inputQty": "152325305005708725452800", - "expectedQty": "150433202779766490159876", + "inputQty": "23686265049294215053312", + "expectedQty": "23507437427156786933041", "reserves": [ - "3847699075580187311919775", - "6956578644459363038500001" + "3370940095063334783238615", + "4535236059066582461281844" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "14199379010356569440256", - "expectedQty": "14022413584521731634392", + "inputQty": "1108434700642028879872", + "expectedQty": "1100056727372022341284", "reserves": [ - "3847699075580187311919775", - "6970778023469719607940257" + "3370940095063334783238615", + "4536344493767224490161716" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "511972431400016478208", - "outputIndex": 0, - "expectedQty": "509651132093107692476", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "3801414297916881974067", + "expectedQtys": [ + "1630518328569869789982", + "2194222570916228747146" + ], + "redemptionFee": "2280848578750129184", "reserves": [ - "3847189424448094204227299", - "6971289995901119624418465" + "3369309576734764913448633", + "4534150271196308261414570" ], - "LPTokenSupply": "10700912138882758194822389", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7850542458057969376596506" }, { - "type": "redeemMasset", - "inputQty": "12546318736414964121", - "expectedQtys": [ - "4507943182184840791", - "8168607193695470446" + "type": "mintMulti", + "inputQtys": [ + "8771504174384025600", + "53807723733154414592" ], - "redemptionFee": "7527791241848978", + "expectedQty": "62123957486743855225", "reserves": [ - "3847184916504912019386508", - "6971281827293925928948019" + "3369318348238939297474233", + "4534204078920041415829162" ], - "LPTokenSupply": "10700899593316800904043165" + "LPTokenSupply": "7850604582015456120451731" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "7586920429802466304", - "expectedQty": "7492333275084082352", + "type": "redeemBassets", + "inputQtys": [ + "570412767411793", + "167426888383143936" + ], + "expectedQty": "166728556354455474", + "swapFee": "100097192127950", "reserves": [ - "3847184916504912019386508", - "6971289414214355731414323" - ] + "3369318347668526530062440", + "4534203911493153032685226" + ], + "LPTokenSupply": "7850604415196812293081101" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "10891593839381991424", - "expectedQty": "10972490045040464235", - "swapFee": "6534956303629194", + "inputQty": "102618737260874004692992", + "expectedQty": "102044491825042134532247", "reserves": [ - "3847173944014866978922273", - "6971289414214355731414323" - ], - "LPTokenSupply": "10700896194709732236497012" + "3471937084929400534755432", + "4534203911493153032685226" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2485808811966173544448", - "expectedQty": "2465996346058006117229", + "inputIndex": 1, + "inputQty": "4453538302719734272", + "expectedQty": "4420289847276585447", "reserves": [ - "3849659752826833152466721", - "6971289414214355731414323" + "3471937084929400534755432", + "4534208365031455752419498" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "238149229197299122176", - "outputIndex": 1, - "expectedQty": "239041159633186083367", - "swapFee": "189000478254325263", + "inputIndex": 1, + "inputQty": "31276930723123367510016", + "outputIndex": 0, + "expectedQty": "31218248848699726370092", + "swapFee": "0", "reserves": [ - "3849897902056030451588897", - "6971050373054722545330956" + "3440718836080700808385340", + "4565485295754579119929514" ], - "LPTokenSupply": "10703362209955838068046767", + "LPTokenSupply": "7952653327311701704198795", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "100418967960638749409280", - "expectedQty": "101622839612064451550750", - "swapFee": "60251380776383249645", - "reserves": [ - "3849897902056030451588897", - "6869427533442658093780206" - ], - "LPTokenSupply": "10602949267133276956962451" - }, - { - "type": "redeemMasset", - "inputQty": "4416895286038171012300", - "expectedQtys": [ - "1602798684556670836260", - "2859896468521732517680" - ], - "redemptionFee": "2650137171622902607", + "inputQty": "3862613055269237161984", + "expectedQty": "3833579935811851298568", "reserves": [ - "3848295103371473780752637", - "6866567636974136361262526" - ], - "LPTokenSupply": "10598532636860955948240411" + "3440718836080700808385340", + "4569347908809848357091498" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "639480513154501967872", - "expectedQty": "634320223011690354447", + "inputQty": "128675148961284121165824", + "expectedQty": "127946343389276404505122", "reserves": [ - "3848934583884628282720509", - "6866567636974136361262526" + "3569393985041984929551164", + "4569347908809848357091498" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "9665972451970495021056", + "inputQty": "383857838434262848", "outputIndex": 0, - "expectedQty": "9623414002707510382841", + "expectedQty": "383214583264047186", "swapFee": "0", "reserves": [ - "3839311169881920772337668", - "6876233609426106856283582" + "3569393601827401665503978", + "4569348292667686791354346" ], - "LPTokenSupply": "10599166957083967638594858", + "LPTokenSupply": "8084433250636789960002485", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "28073918373667102720", - "expectedQty": "27724898087872918306", + "type": "redeemBassets", + "inputQtys": [ + "46712773660791592", + "539606424974481152" + ], + "expectedQty": "582056170789999375", + "swapFee": "349443368495096", "reserves": [ - "3839311169881920772337668", - "6876261683344480523386302" - ] + "3569393555114628004712386", + "4569347753061261816873194" + ], + "LPTokenSupply": "8084432668266120138357522" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "11456350593389334364160", - "3305154413484967460864" + "23981247253821648", + "19413613050285704" ], - "expectedQty": "14628162979937273806442", + "expectedQty": "43113539535931757", + "swapFee": "25883653913907", "reserves": [ - "3850767520475310106701828", - "6879566837757965490847166" + "3569393531133380750890738", + "4569347733647648766587490" ], - "LPTokenSupply": "10613822844961992785319606" + "LPTokenSupply": "8084432625129285313903247" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "98762211502588002304", - "expectedQty": "97966047021257969610", + "type": "redeemBassets", + "inputQtys": [ + "1100052876175035520", + "94201493024342671360" + ], + "expectedQty": "94597809522394337527", + "swapFee": "56792761370258757", "reserves": [ - "3850866282686812694704132", - "6879566837757965490847166" - ] + "3569392431080504575855218", + "4569253532154624423916130" + ], + "LPTokenSupply": "8084337976206277686332837" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "130261289906125008", - "expectedQty": "131820813333785505", - "swapFee": "78156773943675", + "type": "mintMulti", + "inputQtys": [ + "1010981761408113442816", + "960503861231166423040" + ], + "expectedQty": "1958573956059987219815", "reserves": [ - "3850866282686812694704132", - "6879566705937152157061661" + "3570403412841912689298034", + "4570214036015855590339170" ], - "LPTokenSupply": "10613920680755539814558575" + "LPTokenSupply": "8086296550162337673552652" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "45670348659779760", - "333629592434319104" + "266367524971046", + "258510608084728" ], - "expectedQty": "374786911092859289", - "swapFee": "225007150946283", + "expectedQty": "521435939242108", "reserves": [ - "3850866237016464034924372", - "6879566372307559722742557" + "3570403413108280214269080", + "4570214036274366198423898" ], - "LPTokenSupply": "10613920305766122285847630" + "LPTokenSupply": "8086296550683773612794760" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1469420468816438272", - "7278705956310081536" + "105014953669525237661696", + "69675890992799048269824" ], - "expectedQty": "8645853445454396347", - "swapFee": "5190626443138520", + "expectedQty": "173571068014265100432524", "reserves": [ - "3850864767595995218486100", - "6879559093601603412661021" + "3675418366777805451930776", + "4639889927267165246693722" ], - "LPTokenSupply": "10613911655241113032626614" + "LPTokenSupply": "8259867618698038713227284" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 0, + "inputQty": "174705220226019101769728", + "expectedQty": "175600567636934784794879", + "swapFee": "104823132135611461061", + "reserves": [ + "3499817799140870667135897", + "4639889927267165246693722" + ], + "LPTokenSupply": "8085172880785233172603662" + }, + { + "type": "mintMulti", "inputQtys": [ - "2926042715876223877120", - "449632319430022725632" + "286577791752236", + "392567103248811" ], - "expectedQty": "3346506379905886546742", - "swapFee": "2009109293519643714", + "expectedQty": "674584309745081", "reserves": [ - "3847938724880118994608980", - "6879109461282173389935389" + "3499817799427448458888133", + "4639889927659732349942533" ], - "LPTokenSupply": "10610563340662842978400528" + "LPTokenSupply": "8085172881459817482348743" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1317733621873939841024", - "outputIndex": 0, - "expectedQty": "1311926755850110109693", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "19559501469902880899072", + "expectedQty": "19449602515753135397561", "reserves": [ - "3846626798124268884499287", - "6880427194904047329776413" - ], - "LPTokenSupply": "10610563340662842978400528", - "hardLimitError": false, - "insufficientLiquidityError": false + "3519377300897351339787205", + "4639889927659732349942533" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "80822931240085585133568", + "expectedQty": "80364137905597815676354", + "reserves": [ + "3600200232137436924920773", + "4639889927659732349942533" + ] }, { "type": "redeemMasset", - "inputQty": "493216769572527001", + "inputQty": "360211550713247118131", "expectedQtys": [ - "178697628932644702", - "319634861997163326" + "158345476681236901601", + "204073533406656056287" ], - "redemptionFee": "295930061743516", + "redemptionFee": "216126930427948270", "reserves": [ - "3846626619426639951854585", - "6880426875269185332613087" + "3600041886660755688019172", + "4639685854126325693886246" ], - "LPTokenSupply": "10610562847475666412047878" + "LPTokenSupply": "8184626431943148229099354" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1645420314242666496", - "expectedQty": "1665127110517773955", - "swapFee": "987252188545599", + "type": "mintMulti", + "inputQtys": [ + "106041658261604554244096", + "151928757868832158121984" + ], + "expectedQty": "256233792120632442241061", "reserves": [ - "3846626619426639951854585", - "6880425210142074814839132" + "3706083544922360242263268", + "4791614611995157852008230" ], - "LPTokenSupply": "10610561202154077388235941" + "LPTokenSupply": "8440860224063780671340415" }, { "type": "redeemMasset", - "inputQty": "3935566195395869120921", + "inputQty": "12772076801624876646", "expectedQtys": [ - "1425897293202554341136", - "2550489208824367059215" - ], - "redemptionFee": "2361339717237521472", - "reserves": [ - "3845200722133437397513449", - "6877874720933250447779917" + "5604403080141292376", + "7245961771991910382" ], - "LPTokenSupply": "10606625872092653242867167" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "10357279026273195130880", - "outputIndex": 1, - "expectedQty": "10394615969699045730718", - "swapFee": "8219017919449623609", + "redemptionFee": "7663246080974925", "reserves": [ - "3855558001159710592644329", - "6867480104963551402049199" + "3706077940519280100970892", + "4791607366033385860097848" ], - "LPTokenSupply": "10606626693994445187829527", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8440847452753303654561261" }, { "type": "redeemMasset", - "inputQty": "3048758368920342937", + "inputQty": "229599613628542458265", "expectedQtys": [ - "1107572865811456381", - "1972797353449168166" + "100748594207228244861", + "130258379307916762979" ], - "redemptionFee": "1829255021352205", + "redemptionFee": "137759768177125474", "reserves": [ - "3855556893586844781187948", - "6867478132166197952881033" + "3705977191925072872726031", + "4791477107654077943334869" ], - "LPTokenSupply": "10606623645419001769621810" + "LPTokenSupply": "8440617866915651929815543" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "78144644993891811328", - "expectedQty": "78733983650203405911", - "swapFee": "46886786996335086", + "inputQty": "1569968079784324890624", + "expectedQty": "1561003130660552283790", "reserves": [ - "3855478159603194577782037", - "6867478132166197952881033" - ], - "LPTokenSupply": "10606545505462686577443990" + "3707547160004857197616655", + "4791477107654077943334869" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "697641746589393092608", + "expectedQty": "693657163393861862609", + "reserves": [ + "3708244801751446590709263", + "4791477107654077943334869" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "3060295171437710278656", + "expectedQty": "3037510931344722313944", + "reserves": [ + "3708244801751446590709263", + "4794537402825515653613525" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "451486982878961920", + "inputQty": "153540996129167736832", "outputIndex": 0, - "expectedQty": "449514376628122737", + "expectedQty": "153272756403105981430", "swapFee": "0", "reserves": [ - "3855477710088817949659300", - "6867478583653180831842953" + "3708091528995043484727833", + "4794690943821644821350357" ], - "LPTokenSupply": "10606545505462686577443990", + "LPTokenSupply": "8445910038141051066275886", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "69463489905628320628736", - "33325156932310731325440" - ], - "expectedQty": "101815694227573872720922", - "swapFee": "61126092191859439296", + "type": "redeem", + "inputIndex": 1, + "inputQty": "65513027167971306373120", + "expectedQty": "65963488764015094113835", + "swapFee": "39307816300782783823", "reserves": [ - "3786014220183189629030564", - "6834153426720870100517513" + "3708091528995043484727833", + "4728727455057629727236522" ], - "LPTokenSupply": "10504674797752140031227700" + "LPTokenSupply": "8380400941754709838181148" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "33144842635630129152", - "expectedQty": "33543083355852424255", - "swapFee": "19886905581378077", + "type": "redeemMasset", + "inputQty": "2823128216690698649", + "expectedQtys": [ + "1248405278887733928", + "1592023355182718153" + ], + "redemptionFee": "1693876930014419", "reserves": [ - "3786014220183189629030564", - "6834119883637514248093258" + "3708090280589764596993905", + "4728725863034274544518369" ], - "LPTokenSupply": "10504641654898194959236355" + "LPTokenSupply": "8380398118795880840483940" }, { "type": "mintMulti", "inputQtys": [ - "971536413896338440192", - "7719223851401052422144" + "48446431148162465792", + "18128351672830705664" ], - "expectedQty": "8586752213955351929901", + "expectedQty": "66161033777691190376", "reserves": [ - "3786985756597085967470756", - "6841839107488915300515402" + "3708138727020912759459697", + "4728743991385947375224033" ], - "LPTokenSupply": "10513228407112150311166256" + "LPTokenSupply": "8380464279829658531674316" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "131230385091833157910528", + "outputIndex": 1, + "expectedQty": "131312797386796684720483", + "swapFee": "104371511793582117095", + "reserves": [ + "3839369112112745917370225", + "4597431193999150690503550" + ], + "LPTokenSupply": "8380474716980837889886025", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "7011131868198994944", - "419210652266085696" + "1314267938564745723904", + "818101971988397031424" ], - "expectedQty": "7369038036915713279", - "swapFee": "4424077268510534", + "expectedQty": "2118547149930175737019", + "swapFee": "1271891424812993238", "reserves": [ - "3786978745465217768475812", - "6841838688278263034429706" + "3838054844174181171646321", + "4596613092027162293472126" ], - "LPTokenSupply": "10513221034092443853793495" + "LPTokenSupply": "8378355025128625382455090" }, { - "type": "redeemMasset", - "inputQty": "860142495139848047820", - "expectedQtys": [ - "309646960888685084126", - "559431330121113309272" + "type": "mintMulti", + "inputQtys": [ + "3868176142363840741376", + "2612129432083447152640" ], - "redemptionFee": "516085497083908828", + "expectedQty": "6438144914808830240948", "reserves": [ - "3786669098504329083391686", - "6841279256948141921120434" + "3841923020316545012387697", + "4599225221459245740624766" ], - "LPTokenSupply": "10512360943205853714136557" + "LPTokenSupply": "8384793170043434212696038" }, { - "type": "redeemBassets", - "inputQtys": [ - "7460243646116659200000", - "897561323064525586432" + "type": "redeemMasset", + "inputQty": "477033707521654128640", + "expectedQtys": [ + "218446312172476415049", + "261505444842472435657" ], - "expectedQty": "8286983713053585453849", - "swapFee": "4975175333031970454", + "redemptionFee": "286220224512992477", "reserves": [ - "3779208854858212424191686", - "6840381695625077395534002" + "3841704574004372535972648", + "4598963716014403268189109" ], - "LPTokenSupply": "10504069481835000399909298" + "LPTokenSupply": "8384316164957935009866645" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "827377931052623069184", + "expectedQty": "822394539148988369999", + "reserves": [ + "3842531951935425159041832", + "4598963716014403268189109" + ] }, { "type": "redeemBassets", "inputQtys": [ - "758272446773505949696", - "586878641130822696960" + "117062522277010276352", + "84241080708980637696" ], - "expectedQty": "1331773228139321249276", - "swapFee": "799543663081441614", + "expectedQty": "199990126557787409045", + "swapFee": "120066115604034866", "reserves": [ - "3778450582411438918241990", - "6839794816983946572837042" + "3842414889413148148765480", + "4598879474933694287551413" ], - "LPTokenSupply": "10502736989017564305362568" + "LPTokenSupply": "8384938461311022167196218" }, { - "type": "mintMulti", - "inputQtys": [ - "13319064186291472039936", - "4650951127531740200960" - ], - "expectedQty": "17805521028623378010081", + "type": "mint", + "inputIndex": 1, + "inputQty": "7322669869913694273536", + "expectedQty": "7269770463887738796553", "reserves": [ - "3791769646597730390281926", - "6844445768111478313038002" - ], - "LPTokenSupply": "10520542510046187683372649" + "3842414889413148148765480", + "4606202144803607981824949" + ] }, { "type": "redeemBassets", "inputQtys": [ - "11661354679829425815552", - "25914624627238663880704" + "3338123938823908360192", + "4278851270855512031232" ], - "expectedQty": "37159594446095434988834", - "swapFee": "22309142152949030411", + "expectedQty": "7565966640836776395540", + "swapFee": "4542305367722699456", "reserves": [ - "3780108291917900964466374", - "6818531143484239649157298" + "3839076765474324240405288", + "4601923293532752469793717" ], - "LPTokenSupply": "10483362837372154594256444" + "LPTokenSupply": "8384638177059242179167719" }, { - "type": "redeemMasset", - "inputQty": "869119030696605332275", - "expectedQtys": [ - "313200342972214502597", - "564948442686670923581" - ], - "redemptionFee": "521471418417963199", + "type": "mint", + "inputIndex": 1, + "inputQty": "109820935713363408715776", + "expectedQty": "109023231286137738488648", "reserves": [ - "3779795091574928749963777", - "6817966195041552978233717" - ], - "LPTokenSupply": "10482493770488599830720488" + "3839076765474324240405288", + "4711744229246115878509493" + ] }, { - "type": "redeemMasset", - "inputQty": "1421367129309052718284", - "expectedQtys": [ - "512211419376672342902", - "923923138005158581933" + "type": "mint", + "inputIndex": 1, + "inputQty": "12772785261908091469824", + "expectedQty": "12679487350081592053423", + "reserves": [ + "3839076765474324240405288", + "4724517014508023969979317" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "637181956670239277056", + "42665841060358569984" ], - "redemptionFee": "852820277585431630", + "expectedQty": "675764371653760536654", "reserves": [ - "3779282880155552077620875", - "6817042271903547819651784" + "3839713947430994479682344", + "4724559680349084328549301" ], - "LPTokenSupply": "10481072488641318536545367" + "LPTokenSupply": "8507016660067115270246444" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 0, + "inputQty": "204661249185149333012480", + "expectedQty": "203429579993673642426137", + "reserves": [ + "4044375196616143812694824", + "4724559680349084328549301" + ] + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "18827577462145465450496", - "expectedQty": "19053701712431755070065", - "swapFee": "11296546477287279270", + "inputQty": "2641247151767345954816", + "expectedQty": "2622369555918651906376", + "reserves": [ + "4044375196616143812694824", + "4727200927500851674504117" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "541295826671260729344", + "607333855308332138496" + ], + "expectedQty": "1140980295009495456594", + "swapFee": "684999176511604236", "reserves": [ - "3779282880155552077620875", - "6797988570191116064581719" + "4043833900789472551965480", + "4726593593645543342365621" ], - "LPTokenSupply": "10462246040833820799822798" + "LPTokenSupply": "8711927012822439208678549" }, { "type": "swap", "inputIndex": 1, - "inputQty": "248698405186889903505408", + "inputQty": "27220133437401477120", "outputIndex": 0, - "expectedQty": "247458833986844542804427", + "expectedQty": "27191740024031086492", "swapFee": "0", "reserves": [ - "3531824046168707534816448", - "7046686975378005968087127" + "4043806709049448520878988", + "4726620813778980743842741" ], - "LPTokenSupply": "10462246040833820799822798", + "LPTokenSupply": "8711927012822439208678549", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "4503833055006173429760", + "expectedQty": "4528799043711667593594", + "swapFee": "2702299833003704057", + "reserves": [ + "4039277910005736853285394", + "4726620813778980743842741" + ], + "LPTokenSupply": "8707423449997416335619194" + }, + { + "type": "redeemMasset", + "inputQty": "13961728572951182390067", + "expectedQtys": [ + "6472806215614588481430", + "7574249968415374158431" + ], + "redemptionFee": "8377037143770709434", + "reserves": [ + "4032805103790122264803964", + "4719046563810565369684310" + ], + "LPTokenSupply": "8693462559128179530300070" + }, { "type": "mintMulti", "inputQtys": [ - "129700772418764819922944", - "179154397785485733789696" + "42190453377749198307328", + "47313031286870182461440" ], - "expectedQty": "305605078183337384893056", + "expectedQty": "88907339011620538898650", "reserves": [ - "3661524818587472354739392", - "7225841373163491701876823" + "4074995557167871463111292", + "4766359595097435552145750" ], - "LPTokenSupply": "10767851119017158184715854" + "LPTokenSupply": "8782369898139800069198720" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "50940202291740090040320", - "expectedQty": "51568247860892844983289", - "swapFee": "30564121375044054024", + "inputQty": "8943253482615358881792", + "expectedQty": "9002240643933623580401", + "swapFee": "5365952089569215329", "reserves": [ - "3661524818587472354739392", - "7174273125302598856893534" + "4074995557167871463111292", + "4757357354453501928565349" ], - "LPTokenSupply": "10716913973137555599080936" + "LPTokenSupply": "8773427181252393667238460" }, { "type": "swap", "inputIndex": 0, - "inputQty": "4324960930885960466432", + "inputQty": "501955060971793809408", "outputIndex": 1, - "expectedQty": "4344643571609367902334", - "swapFee": "3434126740100970632", + "expectedQty": "502072730387795432699", + "swapFee": "399107378543215374", "reserves": [ - "3665849779518358315205824", - "7169928481730989488991200" + "4075497512228843256920700", + "4756855281723114133132650" ], - "LPTokenSupply": "10716914316550229609177999", + "LPTokenSupply": "8773427221163131521559997", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "116501789212756775272448", - "143271226045091058548736" + "3136335822274448326656", + "5343470699312304881664" ], - "expectedQty": "257076303405447780462568", - "swapFee": "154338385074313256231", + "expectedQty": "8422436401142287883481", + "swapFee": "5056495738128249679", "reserves": [ - "3549347990305601539933376", - "7026657255685898430442464" + "4072361176406568808594044", + "4751511811023801828250986" ], - "LPTokenSupply": "10459699108598214946784822" + "LPTokenSupply": "8765000233915824918251803" }, { - "type": "redeemMasset", - "inputQty": "80926751653963353", - "expectedQtys": [ - "27444848847226556", - "54332668087290901" - ], - "redemptionFee": "48556050992378", + "type": "redeem", + "inputIndex": 0, + "inputQty": "27293077032241618485248", + "expectedQty": "27444327593041056038098", + "swapFee": "16375846219344971091", "reserves": [ - "3549347962860752692706820", - "7026657201353230343151563" + "4044916848813527752555946", + "4751511811023801828250986" ], - "LPTokenSupply": "10459699027676318897920706" + "LPTokenSupply": "8737708794468205234263664" }, { - "type": "redeemMasset", - "inputQty": "25350003415164125184", - "expectedQtys": [ - "8596996639425724889", - "17019505829950156041" - ], - "redemptionFee": "15210002049098475", + "type": "mint", + "inputIndex": 1, + "inputQty": "30403468506712284069888", + "expectedQty": "30185242698267914995505", "reserves": [ - "3549339365864113266981931", - "7026640181847400392995522" - ], - "LPTokenSupply": "10459673679193903938705369" + "4044916848813527752555946", + "4781915279530514112320874" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "12437296543714785280", - "expectedQty": "12591152726768728267", - "swapFee": "7462377926228871", + "inputQty": "108159846301257536", + "outputIndex": 0, + "expectedQty": "108038629330860567", + "swapFee": "0", "reserves": [ - "3549339365864113266981931", - "7026627590694673624267255" + "4044916740774898421695379", + "4781915387690360413578410" ], - "LPTokenSupply": "10459661242643598016542976" + "LPTokenSupply": "8767894037166473149259169", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "18984513842299888", + "expectedQty": "18848060661024230", + "reserves": [ + "4044916740774898421695379", + "4781915406674874255878298" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "20186950710024237744128", - "27446908620890020249600" + "2081381124940061", + "521021260023896" ], - "expectedQty": "47132698475883285009868", + "expectedQty": "2586015824669585", + "swapFee": "1552541019413", "reserves": [ - "3569526316574137504726059", - "7054074499315563644516855" + "4044916738693517296755318", + "4781915406153852995854402" ], - "LPTokenSupply": "10506793941119481301552844" + "LPTokenSupply": "8767894053427120698696341" }, { "type": "redeemMasset", - "inputQty": "136326836259771724595", + "inputQty": "727105245626187644928", "expectedQtys": [ - "46287217496807606476", - "91472495684490682260" + "335236205274291343175", + "396317471597566491763" ], - "redemptionFee": "81796101755863034", + "redemptionFee": "436263147375712586", "reserves": [ - "3569480029356640697119583", - "7053983026819879153834595" + "4044581502488243005412143", + "4781519088682255429362639" ], - "LPTokenSupply": "10506657622462831705414552" + "LPTokenSupply": "8767166991807809248622671" }, { - "type": "mintMulti", - "inputQtys": [ - "2064251969522930810880", - "5143295648073628254208" + "type": "redeem", + "inputIndex": 0, + "inputQty": "7443511473682067226624", + "expectedQty": "7484478535176095583511", + "swapFee": "4466106884209240335", + "reserves": [ + "4037097023953066909828632", + "4781519088682255429362639" ], - "expectedQty": "7126373714970412151155", + "LPTokenSupply": "8759723926944815602320080" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "749423856775440384", + "expectedQty": "754401276948124094", + "swapFee": "449654314065264", "reserves": [ - "3571544281326163627930463", - "7059126322467952782088803" + "4037097023953066909828632", + "4781518334280978481238545" ], - "LPTokenSupply": "10513783996177802117565707" + "LPTokenSupply": "8759723177565924258286222" }, { "type": "swap", "inputIndex": 0, - "inputQty": "116158794372178111365120", + "inputQty": "53445115606733656", "outputIndex": 1, - "expectedQty": "116669088175938855734414", - "swapFee": "92227316849990080519", + "expectedQty": "53462954696667407", + "swapFee": "42496676118530", + "reserves": [ + "4037097077398182516562288", + "4781518280818023784571138" + ], + "LPTokenSupply": "8759723177570173925898075", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "27693076396779024384", + "outputIndex": 0, + "expectedQty": "27661687727211907203", + "swapFee": "0", "reserves": [ - "3687703075698341739295583", - "6942457234292013926354389" + "4037069415710455304655085", + "4781545973894420563595522" ], - "LPTokenSupply": "10513793218909487116573758", + "LPTokenSupply": "8759723177570173925898075", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "1323388709763203727360", - "1106837121372595027968" + "4206797961205697216512", + "15070410308894733631488" ], - "expectedQty": "2405965307099858875226", + "expectedQty": "19143235840401451512799", "reserves": [ - "3689026464408104943022943", - "6943564071413386521382357" + "4041276213671661001871597", + "4796616384203315297227010" ], - "LPTokenSupply": "10516199184216586975448984" + "LPTokenSupply": "8778866413410575377410874" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11478593485569450311680", - "7973074868717238616064" + "131412685317645926400", + "4007957608367142207488" ], - "expectedQty": "19261850539303929090651", - "swapFee": "11564048752834057889", + "expectedQty": "4109709920965790611314", "reserves": [ - "3677547870922535492711263", - "6935590996544669282766293" + "4041407626356978647797997", + "4800624341811682439434498" ], - "LPTokenSupply": "10496926926033405495706231" + "LPTokenSupply": "8782976123331541168022188" }, { - "type": "redeemMasset", - "inputQty": "565262514841083445248", - "expectedQtys": [ - "197918181638368900225", - "373259467124004757050" + "type": "redeemBassets", + "inputQtys": [ + "884457906473426432", + "1183700509877713664" ], - "redemptionFee": "339157508904650067", + "expectedQty": "2054275467833640044", + "swapFee": "1233305263858499", "reserves": [ - "3677349952740897123811038", - "6935217737077545278009243" + "4041406741899072174371565", + "4800623158111172561720834" ], - "LPTokenSupply": "10496361697434315302725989" + "LPTokenSupply": "8782974067946098596909493" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "489438636753317920768", - "outputIndex": 0, - "expectedQty": "487022746328911414660", - "swapFee": "0", + "inputQty": "1461035590581127680", + "expectedQty": "1470752788717533970", + "swapFee": "876621354348676", "reserves": [ - "3676862929994568212396378", - "6935707175714298595930011" + "4041406741899072174371565", + "4800621687358383844186864" ], - "LPTokenSupply": "10496361697434315302725989", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8782972606998170151216680" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4554286011514597408768", - "expectedQty": "4587077319487414739069", - "swapFee": "2732571606908758445", + "type": "mintMulti", + "inputQtys": [ + "35176596958678173614080", + "5291673579873845116928" + ], + "expectedQty": "40216675787111862122281", "reserves": [ - "3672275852675080797657309", - "6935707175714298595930011" + "4076583338857750347985645", + "4805913360938257689303792" ], - "LPTokenSupply": "10491807684679961396193065" + "LPTokenSupply": "8823189282785282013338961" }, { - "type": "redeemMasset", - "inputQty": "1000140560034230886", - "expectedQtys": [ - "349852805445305650", - "660755539756963079" + "type": "redeemBassets", + "inputQtys": [ + "18580104121852606021632", + "8847617499843456401408" ], - "redemptionFee": "600084336020538", + "expectedQty": "27251206416820406761177", + "swapFee": "16360540174196762113", "reserves": [ - "3672275502822275352351659", - "6935706514958758838966932" + "4058003234735897741964013", + "4797065743438414232902384" ], - "LPTokenSupply": "10491806684599409795564232" + "LPTokenSupply": "8795923351882304829491881" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10439093256890825572352", - "12590911567081666248704" + "8282083693629907402752", + "23781236231208727216128" ], - "expectedQty": "22789915042031824196813", - "swapFee": "13682158320211221250", + "expectedQty": "31841957091602716822183", "reserves": [ - "3661836409565384526779307", - "6923115603391677172718228" + "4066285318429527649366765", + "4820846979669622960118512" ], - "LPTokenSupply": "10469004455614889781268293" + "LPTokenSupply": "8827765308973907546314064" }, { - "type": "mint", + "type": "redeemBassets", + "inputQtys": [ + "26421616796338733056", + "16413994247635855360" + ], + "expectedQty": "42557196081271124594", + "swapFee": "25549647437225009", + "reserves": [ + "4066258896812731310633709", + "4820830565675375324263152" + ], + "LPTokenSupply": "8827722728783143581686960" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "199008024689999020032", - "expectedQty": "196489211196711065108", + "inputQty": "16241758353598849024", + "expectedQty": "16349708836206507265", + "swapFee": "9745055012159309", "reserves": [ - "3661836409565384526779307", - "6923314611416367171738260" - ] + "4066258896812731310633709", + "4820814215966539117755887" + ], + "LPTokenSupply": "8827706487999295484053866" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "253988054163973440", - "expectedQty": "257089617549411709", - "swapFee": "152392832498384", + "inputQty": "42517267201476702240768", + "expectedQty": "42799258209088741766732", + "swapFee": "25510360320886021344", "reserves": [ - "3661836409565384526779307", - "6923314354326749622326551" + "4066258896812731310633709", + "4778014957757450375989155" ], - "LPTokenSupply": "10469200690853271611609799" + "LPTokenSupply": "8785191771833850870415232" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "20038815921613901398016", - "expectedQty": "19883460516487899868587", + "inputQty": "7928725596053700608", + "outputIndex": 1, + "expectedQty": "7930941243855249621", + "swapFee": "6304283077980773", "reserves": [ - "3681875225486998428177323", - "6923314354326749622326551" - ] + "4066266825538327364334317", + "4778007026816206520739534" + ], + "LPTokenSupply": "8785191772464279178213309", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "356594153864990", - "1979662616917384" - ], - "expectedQty": "2308467551896825", + "type": "swap", + "inputIndex": 0, + "inputQty": "2745319372454277152768", + "outputIndex": 1, + "expectedQty": "2746074772382938238221", + "swapFee": "2182853790722109137", "reserves": [ - "3681875225843592582042313", - "6923314356306412239243935" + "4069012144910781641487085", + "4775260952043823582501313" ], - "LPTokenSupply": "10489084153678227063375211" + "LPTokenSupply": "8785191990749658250424222", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "89821072321521352704", - "75739787445159493632" + "785437740291522953216", + "1516827205885551443968" ], - "expectedQty": "163905704809141195291", - "swapFee": "98402464364103179", + "expectedQty": "2286594267080017840385", + "swapFee": "1372780228385041729", "reserves": [ - "3681785404771271060689609", - "6923238616518967079750303" + "4068226707170490118533869", + "4773744124837938031057345" ], - "LPTokenSupply": "10488920159411199994487057" + "LPTokenSupply": "8782904160980372686046279" }, { "type": "redeemMasset", - "inputQty": "1757887854987391166054", + "inputQty": "3343263486342891110", "expectedQtys": [ - "616677641730826453015", - "1159602202138649836302" - ], - "redemptionFee": "1054732712992434699", - "reserves": [ - "3681168727129540234236594", - "6922079014316828429914001" - ], - "LPTokenSupply": "10487162377029483902564472" - }, - { - "type": "mintMulti", - "inputQtys": [ - "80592259579906621440", - "224456772371122290688" + "1547664970813963139", + "1816063138423080647" ], - "expectedQty": "301586131463094697799", + "redemptionFee": "2005958091805734", "reserves": [ - "3681249319389120140858034", - "6922303471089199552204689" + "4068225159505519304570730", + "4773742308774799607976698" ], - "LPTokenSupply": "10487463963160946997262271" + "LPTokenSupply": "8782900817917482152335742" }, { - "type": "redeemMasset", - "inputQty": "1841996040609166524416", - "expectedQtys": [ - "646178922436547288820", - "1215089283458112398513" - ], - "redemptionFee": "1105197624365499914", + "type": "mint", + "inputIndex": 1, + "inputQty": "64342230755626155245568", + "expectedQty": "63879584863336529412604", "reserves": [ - "3680603140466683593569214", - "6921088381805741439806176" - ], - "LPTokenSupply": "10485622077640100267287846" + "4068225159505519304570730", + "4838084539530425763222266" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "78975341104411879407616", + "inputQty": "72186160900815936", "outputIndex": 1, - "expectedQty": "79287959576280518369359", - "swapFee": "62684885600548940874", + "expectedQty": "72212277889769122", + "swapFee": "57399150236569", "reserves": [ - "3759578481571095472976830", - "6841800422229460921436817" + "4068225231691680205386666", + "4838084467318147873453144" ], - "LPTokenSupply": "10485628346128660322181933", + "LPTokenSupply": "8846780402786558596772002", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "290367053850348486656", - "226597780975044755456" - ], - "expectedQty": "511806349592033056628", + "type": "swap", + "inputIndex": 0, + "inputQty": "580242517331753006268416", + "outputIndex": 1, + "expectedQty": "579943405919270168054514", + "swapFee": "461269300067488389411", "reserves": [ - "3759868848624945821463486", - "6842027020010435966192273" + "4648467749023433211655082", + "4258141061398877705398630" ], - "LPTokenSupply": "10486140152478252355238561" + "LPTokenSupply": "8846826529716565345610943", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "3029678799061446243123", + "inputQty": "25263550946994305368064", "expectedQtys": [ - "1085657835526571332753", - "1975627487079886232326" - ], - "redemptionFee": "1817807279436867745", - "reserves": [ - "3758783190789419250130733", - "6840051392523356079959947" + "13266490455938879836729", + "12152517948082442485212" ], - "LPTokenSupply": "10483110655459918852682212" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9086922149033080258560", - "expectedQty": "9154531504219138669397", - "swapFee": "5452153289419848155", + "redemptionFee": "15158130568196583220", "reserves": [ - "3749628659285200111461336", - "6840051392523356079959947" + "4635201258567494331818353", + "4245988543450795262913418" ], - "LPTokenSupply": "10474024278526214714408467" + "LPTokenSupply": "8821564494582627859901201" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "186169157357561949716480", - "121501843892601880576000" + "13267119350475401461760", + "12144810001596562800640" ], - "expectedQty": "304675849552218371475657", - "swapFee": "182915258886663020697", + "expectedQty": "25241319742568815858465", "reserves": [ - "3563459501927638161744856", - "6718549548630754199383947" + "4648468377917969733280113", + "4258133353452391825714058" ], - "LPTokenSupply": "10169183805240998346214181" + "LPTokenSupply": "8846805814325196675759666" }, { "type": "redeemMasset", - "inputQty": "55062005427165921280", + "inputQty": "25646457577166", "expectedQtys": [ - "19283110960950676805", - "36356393659815678185" + "13467597176362", + "12336713959365" ], - "redemptionFee": "33037203256299552", + "redemptionFee": "15387874546", "reserves": [ - "3563440218816677211068051", - "6718513192237094383705762" + "4648468377904502136103751", + "4258133353440055111754693" ], - "LPTokenSupply": "10169128746539291505922856" + "LPTokenSupply": "8846805814299551756969954" }, { - "type": "mintMulti", - "inputQtys": [ - "2488758948947924480", - "17913225965921136640" + "type": "redeemMasset", + "inputQty": "4007387329155845324", + "expectedQtys": [ + "2104379449533964784", + "1927673288033387450" ], - "expectedQty": "20155688973754275336", + "redemptionFee": "2404432397493507", "reserves": [ - "3563442707575626158992531", - "6718531105463060304842402" + "4648466273525052602138967", + "4258131425766767078367243" ], - "LPTokenSupply": "10169148902228265260198192" + "LPTokenSupply": "8846801807152665840873980" }, { - "type": "mintMulti", - "inputQtys": [ - "15213221199751562657792", - "37001459237846272442368" - ], - "expectedQty": "51627598053606010559225", + "type": "redeem", + "inputIndex": 1, + "inputQty": "177613578617587519979520", + "expectedQty": "178639061817744062270616", + "swapFee": "106568147170552511987", "reserves": [ - "3578655928775377721650323", - "6755532564700906577284770" + "4648466273525052602138967", + "4079492363949023016096627" ], - "LPTokenSupply": "10220776500281871270757417" + "LPTokenSupply": "8669198885349795376145658" }, { "type": "mintMulti", "inputQtys": [ - "5208834338598196224", - "7620360957782107136" + "234723387458019776", + "694144211109234048" ], - "expectedQty": "12692161138985331367", + "expectedQty": "922838997917424869", "reserves": [ - "3578661137609716319846547", - "6755540185061864359391906" + "4648466508248440060158743", + "4079493058093234125330675" ], - "LPTokenSupply": "10220789192443010256088784" + "LPTokenSupply": "8669199808188793293570527" }, { - "type": "mintMulti", - "inputQtys": [ - "2433149293412743643136", - "39554678695116775424" - ], - "expectedQty": "2453298718086502827042", + "type": "redeem", + "inputIndex": 1, + "inputQty": "38615879422382669037568", + "expectedQty": "38835610171020577851184", + "swapFee": "23169527653429601422", "reserves": [ - "3581094286903129063489683", - "6755579739740559476167330" + "4648466508248440060158743", + "4040657447922213547479491" ], - "LPTokenSupply": "10223242491161096758915826" + "LPTokenSupply": "8630586245719175967493101" }, { - "type": "mintMulti", - "inputQtys": [ - "82134720428670025728", - "40488669013168283648" - ], - "expectedQty": "121472031020975969813", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4968855155059218", + "expectedQty": "5001731423790739", + "swapFee": "2981313093035", "reserves": [ - "3581176421623557733515411", - "6755620228409572644450978" + "4648466503246708636368004", + "4040657447922213547479491" ], - "LPTokenSupply": "10223363963192117734885639" + "LPTokenSupply": "8630586240750618943743186" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "11705846302247678377984", - "outputIndex": 1, - "expectedQty": "11754219228599492402175", - "swapFee": "9291795546410146120", + "type": "redeemBassets", + "inputQtys": [ + "168198208009863", + "2525853244423912" + ], + "expectedQty": "2677084938222882", + "swapFee": "1607215292108", "reserves": [ - "3592882267925805411893395", - "6743866009180973152048803" + "4648466503078510428358141", + "4040657445396360303055579" ], - "LPTokenSupply": "10223364892371672375900251", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8630586238072087511757405" }, { "type": "redeemMasset", - "inputQty": "219794464117523480576", + "inputQty": "8783849425913462", "expectedQtys": [ - "77197852531446438910", - "144900927680310466083" - ], - "redemptionFee": "131876678470514088", - "reserves": [ - "3592805070073273965454485", - "6743721108253292841582720" + "4728176028939717", + "4109944572436384" ], - "LPTokenSupply": "10223145111095222699471083" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "57427619985521335336960", - "expectedQty": "57841537231916654665097", - "swapFee": "34456571991312801202", + "redemptionFee": "5270309655548", "reserves": [ - "3534963532841357310789388", - "6743721108253292841582720" + "4648466498350334399418424", + "4040657441286415730619195" ], - "LPTokenSupply": "10165720936766900495414243" + "LPTokenSupply": "8630586229288765116809497" }, { "type": "redeemMasset", - "inputQty": "219228900033429171", + "inputQty": "9836408097806266191052", "expectedQtys": [ - "76187531812105747", - "145344488477379328" + "5294747977092643525476", + "4602434549322462509480" ], - "redemptionFee": "131537340020057", + "redemptionFee": "5901844858683759714", "reserves": [ - "3534963456653825498683641", - "6743720962908804364203392" + "4643171750373241755892948", + "4036055006737093268109715" ], - "LPTokenSupply": "10165720717551154195987077" + "LPTokenSupply": "8620750411375444718994416" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "67255362110207928", - "expectedQty": "68080635647639828", - "swapFee": "40353217266124", + "type": "mintMulti", + "inputQtys": [ + "1414522131765615104", + "2509445578684250624" + ], + "expectedQty": "3898166235026307039", "reserves": [ - "3534963456653825498683641", - "6743720894828168716563564" + "4643173164895373521508052", + "4036057516182671952360339" ], - "LPTokenSupply": "10165720650299827407505761" + "LPTokenSupply": "8620754309541679745301455" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "834090716625259462656", - "expectedQty": "844325442130247070560", - "swapFee": "500454429975155677", - "reserves": [ - "3534963456653825498683641", - "6742876569386038469493004" - ], - "LPTokenSupply": "10164886609628645145558672" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "6536716599581027074048", - "35761926996487988838400" - ], - "expectedQty": "41793760047159050537603", - "swapFee": "25091310814784300903", + "inputQty": "35419097763330904064", + "expectedQty": "35620128323998994615", + "swapFee": "21251458657998542", "reserves": [ - "3528426740054244471609593", - "6707114642389550480654604" + "4643173164895373521508052", + "4036021896054347953365724" ], - "LPTokenSupply": "10123070267401752789150255" + "LPTokenSupply": "8620718892569062280197245" }, { - "type": "mintMulti", - "inputQtys": [ - "5886975610825692160", - "5910550812264255488" + "type": "redeemMasset", + "inputQty": "29063745100382", + "expectedQtys": [ + "15644522713402", + "13598811412417" ], - "expectedQty": "11676951508350248171", + "redemptionFee": "17438247060", "reserves": [ - "3528432627029855297301753", - "6707120552940362744910092" + "4643173164879728998794650", + "4036021896040749141953307" ], - "LPTokenSupply": "10123081944353261139398426" + "LPTokenSupply": "8620718892540000278921569" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "532282345979295498240", - "expectedQty": "536104956703187272191", - "swapFee": "319369407587577298", + "inputQty": "593338879292717952", + "expectedQty": "597265071962880891", + "swapFee": "356003327575630", "reserves": [ - "3527896522073152110029562", - "6707120552940362744910092" + "4643172567614657035913759", + "4036021896040749141953307" ], - "LPTokenSupply": "10122549693944222602657915" + "LPTokenSupply": "8620718299236721318961180" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "30855516671023782035456", - "27815721517412129964032" + "13359267474141911973888", + "3893154995089285578752" ], - "expectedQty": "58079723695468566535058", - "swapFee": "34868755470563478007", + "expectedQty": "17132319714946332781534", "reserves": [ - "3497041005402128327994106", - "6679304831422950614946060" + "4656531835088798947887647", + "4039915051035838427532059" ], - "LPTokenSupply": "10064438588368830528992649" + "LPTokenSupply": "8637850618951667651742714" }, { "type": "redeemBassets", "inputQtys": [ - "7075777914648171", - "6450639756021063" - ], - "expectedQty": "13389873510042362", - "swapFee": "8038747354438", - "reserves": [ - "3497040998326350413345935", - "6679304824972310858924997" + "31880710921827070771200", + "200556363257483429412864" ], - "LPTokenSupply": "10064438574971722146331291" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "92522300074845609656320", - "expectedQty": "93656152062356704642922", - "swapFee": "55513380044907365793", + "expectedQty": "230971968716086571361542", + "swapFee": "138666381058286914965", "reserves": [ - "3497040998326350413345935", - "6585648672909954154282075" + "4624651124166971877116447", + "3839358687778354998119195" ], - "LPTokenSupply": "9971921826234881027411550" + "LPTokenSupply": "8406753850492628622157702" }, { "type": "redeemMasset", - "inputQty": "3083782853689922813952", + "inputQty": "3195926870370648473", "expectedQtys": [ - "1080799146649272635516", - "2035367463298109793090" + "1757060933201129008", + "1458701851819544161" ], - "redemptionFee": "1850269712213953688", + "redemptionFee": "1917556122222389", "reserves": [ - "3495960199179701140710419", - "6583613305446656044488985" + "4624649367106038675987439", + "3839357229076503178575034" ], - "LPTokenSupply": "9968838228408162325992966" + "LPTokenSupply": "8406750654757513863731467" }, { "type": "mint", "inputIndex": 1, - "inputQty": "72160729975286636544", - "expectedQty": "71245780669507028853", + "inputQty": "22533883598215374176256", + "expectedQty": "22396491699383002195144", "reserves": [ - "3495960199179701140710419", - "6583685466176631331125529" + "4624649367106038675987439", + "3861891112674718552751290" ] }, - { - "type": "redeemMasset", - "inputQty": "1025435681099062077030", - "expectedQtys": [ - "359390503827983759038", - "676813779884960713552" - ], - "redemptionFee": "615261408659437246", - "reserves": [ - "3495600808675873156951381", - "6583008652396746370411977" - ], - "LPTokenSupply": "9967884100033873636888513" - }, - { - "type": "mintMulti", - "inputQtys": [ - "89834234808556519424", - "108655970867209601024" - ], - "expectedQty": "196412034431607418661", - "reserves": [ - "3495690642910681713470805", - "6583117308367613580013001" - ], - "LPTokenSupply": "9968080512068305244307174" - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "68180038637356876562432", - "expectedQty": "69012890054348087239139", - "swapFee": "40908023182414125937", + "inputQty": "14484885009987409018880", + "expectedQty": "14565055436363651339737", + "swapFee": "8690931005992445411", "reserves": [ - "3495690642910681713470805", - "6514104418313265492773862" + "4624649367106038675987439", + "3847326057238354901411553" ], - "LPTokenSupply": "9899904564233266609157335" + "LPTokenSupply": "8414663130540010056152272" }, { - "type": "redeemBassets", - "inputQtys": [ - "503213686653597515776", - "890306217106351587328" - ], - "expectedQty": "1378300501245056449560", - "swapFee": "827476786819125344", + "type": "swap", + "inputIndex": 1, + "inputQty": "16438387239914", + "outputIndex": 0, + "expectedQty": "16458714539358", + "swapFee": "0", "reserves": [ - "3495187429224028115955029", - "6513214112096159141186534" + "4624649367089579961448081", + "3847326057254793288651467" ], - "LPTokenSupply": "9898525519002913415494964" + "LPTokenSupply": "8414663130540010056152272", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "43034252915377881088", - "expectedQty": "42490040852017039925", + "inputIndex": 0, + "inputQty": "75193463945511611400192", + "expectedQty": "74640977049358582058183", "reserves": [ - "3495187429224028115955029", - "6513257146349074519067622" + "4699842831035091572848273", + "3847326057254793288651467" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "60812786498536710144", - "outputIndex": 1, - "expectedQty": "61058011068348153435", - "swapFee": "48267313218392120", + "type": "redeemBassets", + "inputQtys": [ + "10292204945142087417856", + "1807168411550908940288" + ], + "expectedQty": "12012610596139314576826", + "swapFee": "7211893493779856660", "reserves": [ - "3495248242010526652665173", - "6513196088338006170914187" + "4689550626089949485430417", + "3845518888843242379711179" ], - "LPTokenSupply": "9898568013870496754374101", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8477285006289084921762634" }, { "type": "redeemMasset", - "inputQty": "34366280452193530675", + "inputQty": "571668221698640384", "expectedQtys": [ - "12127674423002631714", - "22599230767970080174" + "316051488743710143", + "259168109423807448" ], - "redemptionFee": "20619768271316118", + "redemptionFee": "343000933019184", "reserves": [ - "3495236114336103650033459", - "6513173489107238200834013" + "4689550310038460741720274", + "3845518629675132955903731" ], - "LPTokenSupply": "9898533649652021387975037" + "LPTokenSupply": "8477284434655163316424168" }, { "type": "redeemMasset", - "inputQty": "17603622107365416894464", + "inputQty": "2232741539332711628", "expectedQtys": [ - "6212223003910390251335", - "11576123859425339884883" + "1234389565008422726", + "1012222442385428291" ], - "redemptionFee": "10562173264419250136", + "redemptionFee": "1339644923599626", "reserves": [ - "3489023891332193259782124", - "6501597365247812860949130" + "4689549075648895733297548", + "3845517617452690570475440" ], - "LPTokenSupply": "9880931083761982413005586" + "LPTokenSupply": "8477282202047588476072502" }, { "type": "mintMulti", "inputQtys": [ - "4660131125399018496", - "2222346866853257984" + "30277717693276958490624", + "25803030765232942219264" ], - "expectedQty": "6817688229523200337", + "expectedQty": "55701778089736802510778", "reserves": [ - "3489028551463318658800620", - "6501599587594679714207114" + "4719826793342172691788172", + "3871320648217923512694704" ], - "LPTokenSupply": "9880937901450211936205923" + "LPTokenSupply": "8532983980137325278583280" }, { "type": "redeemBassets", "inputQtys": [ - "36887900440400727375872", - "19275470116897442234368" + "11451671622586988494848", + "12256513435724737937408" ], - "expectedQty": "55629885807695726302724", - "swapFee": "33397970266777502283", + "expectedQty": "23549765128659795857181", + "swapFee": "14138342082445344721", "reserves": [ - "3452140651022917931424748", - "6482324117477782271972746" + "4708375121719585703293324", + "3859064134782198774757296" ], - "LPTokenSupply": "9825277957469276110151143" + "LPTokenSupply": "8509421490500791281915849" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "15277932985821029203968", - "outputIndex": 1, - "expectedQty": "15340204730685554179332", - "swapFee": "12126534392520742636", + "type": "mintMulti", + "inputQtys": [ + "54130048196215987765248", + "25777361779370598858752" + ], + "expectedQty": "79352530397659245462340", "reserves": [ - "3467418584008738960628716", - "6466983912747096717793414" + "4762505169915801691058572", + "3884841496561569373616048" ], - "LPTokenSupply": "9825279170122715362225406", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8588774020898450527378189" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "59168385808700481536", - "40113251713066754048" + "60091823236091412480", + "30002091142667304960" ], - "expectedQty": "98308367489811476590", + "expectedQty": "89469390614233737477", + "swapFee": "53713862686151933", "reserves": [ - "3467477752394547661110252", - "6467024025998809784547462" + "4762445078092565599646092", + "3884811494470426706311088" ], - "LPTokenSupply": "9825377478490205173701996" + "LPTokenSupply": "8588684503165359876103971" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "87988920768031", - "22438327333574" + "14859815480125680517120", + "21457412588205563183104" ], - "expectedQty": "109450807946971", - "swapFee": "65709910714", + "expectedQty": "36078199334790212875863", "reserves": [ - "3467477752306558740342221", - "6467024025976371457213888" + "4777304893572691280163212", + "3906268907058632269494192" ], - "LPTokenSupply": "9825377478380695226835381" + "LPTokenSupply": "8624762702500150088979834" }, { "type": "redeemBassets", "inputQtys": [ - "384480965560711380992", - "1457789118275598942208" + "414848898919406174208", + "121333013323186454528" ], - "expectedQty": "1820797303314381724900", - "swapFee": "1093134262546156728", + "expectedQty": "532389155146935154475", + "swapFee": "319625268249110559", "reserves": [ - "3467093271340998028961229", - "6465566236858095858271680" + "4776890044673771873989004", + "3906147574045309083039664" ], - "LPTokenSupply": "9823555697256544553569424" + "LPTokenSupply": "8624230025682261729625854" }, { "type": "redeemMasset", - "inputQty": "648235627810177", + "inputQty": "600442994922432716", "expectedQtys": [ - "228648867743621", - "426393028303850" + "332380885737495016", + "271793735744489800" ], - "redemptionFee": "388941376686", + "redemptionFee": "360265796953459", "reserves": [ - "3467093271112349161217608", - "6465566236431702829967830" + "4776889712292886136493988", + "3906147302251573338549864" ], - "LPTokenSupply": "9823555696608347819896915" + "LPTokenSupply": "8624229425275293386888483" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10710531297060111515648", - "1851247931812543201280" + "76373161936802277228544", + "169538792509892009656320" ], - "expectedQty": "12453960170177621825027", + "expectedQty": "244331542966082747408316", + "swapFee": "146686937942415097503", "reserves": [ - "3477803802409409272733256", - "6467417484363515373169110" + "4700516550356083859265444", + "3736608509741681328893544" ], - "LPTokenSupply": "9836009656778525441721942" + "LPTokenSupply": "8379765864065062465892413" }, { - "type": "redeemMasset", - "inputQty": "1546966464925700561305", - "expectedQtys": [ - "546646253310725134677", - "1016558074372765504147" - ], - "redemptionFee": "928179878955420336", + "type": "redeem", + "inputIndex": 1, + "inputQty": "27944396361172451328", + "expectedQty": "28094480914536664622", + "swapFee": "16766637816703470", "reserves": [ - "3477257156156098547598579", - "6466400926289142607664963" + "4700516550356083859265444", + "3736580415260766792228922" ], - "LPTokenSupply": "9834462783131587636702670" + "LPTokenSupply": "8379737921345365075111432" }, { - "type": "mintMulti", - "inputQtys": [ - "19209046669673", - "194510642240377" - ], - "expectedQty": "211108745008488", + "type": "redeem", + "inputIndex": 1, + "inputQty": "641993979440685952", + "expectedQty": "645442010245880387", + "swapFee": "385196387664411", "reserves": [ - "3477257156175307594268252", - "6466400926483653249905340" + "4700516550356083859265444", + "3736579769818756546348535" ], - "LPTokenSupply": "9834462783342696381711158" + "LPTokenSupply": "8379737279389905273191921" }, { - "type": "redeemBassets", - "inputQtys": [ - "192637749560674", - "109703971829660" - ], - "expectedQty": "299434791721883", - "swapFee": "179768736274", + "type": "mint", + "inputIndex": 1, + "inputQty": "1821963730799162818560", + "expectedQty": "1811141502928242475541", "reserves": [ - "3477257155982669844707578", - "6466400926373949278075680" - ], - "LPTokenSupply": "9834462783043099798126627" + "4700516550356083859265444", + "3738401733549555709167095" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5478436072190308777984", - "outputIndex": 0, - "expectedQty": "5452115446264530491672", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9081555083362172928000", + "expectedQty": "9144480813073651091348", + "swapFee": "5448933050017303756", "reserves": [ - "3471805040536405314215906", - "6471879362446139586853664" + "4691372069543010208174096", + "3738401733549555709167095" ], - "LPTokenSupply": "9834462783043099798126627", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8372467410702776344469837" }, { - "type": "redeemMasset", - "inputQty": "8544531368129573683", - "expectedQtys": [ - "3014617957146426030", - "5619625386424664712" - ], - "redemptionFee": "5126718820877744", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1380183599425282304", + "expectedQty": "1389743413172558176", + "swapFee": "828110159655169", "reserves": [ - "3471802025918448167789876", - "6471873742820753162188952" + "4691370679799597035615920", + "3738401733549555709167095" ], - "LPTokenSupply": "9834454239024403550640718" + "LPTokenSupply": "8372466030601987935153049" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "256023820882802949226496", - "expectedQty": "252766788150499699627048", + "inputQty": "12227079411876637966336", + "expectedQty": "12292794086618925070708", + "swapFee": "7336247647125982779", "reserves": [ - "3471802025918448167789876", - "6727897563703556111415448" - ] + "4691370679799597035615920", + "3726108939462936784096387" + ], + "LPTokenSupply": "8360239684814876009784990" }, { "type": "mint", "inputIndex": 0, - "inputQty": "484869528122008076288", - "expectedQty": "481178618917273680648", + "inputQty": "12042166574680499027968", + "expectedQty": "11951974311951024867236", "reserves": [ - "3472286895446570175866164", - "6727897563703556111415448" + "4703412846374277534643888", + "3726108939462936784096387" ] }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "11484058866348208422912", + "expectedQty": "11545527223556132489816", + "swapFee": "6890435319808925053", + "reserves": [ + "4703412846374277534643888", + "3714563412239380651606571" + ], + "LPTokenSupply": "8360708289304010807121819" + }, { "type": "redeemMasset", - "inputQty": "48102533601850010317619", + "inputQty": "41797512471683366912", "expectedQtys": [ - "16547433516561496659512", - "32062280852314941877835" + "23499564359025925200", + "18558996376193521866" ], - "redemptionFee": "28861520161110006190", + "redemptionFee": "25078507483010020", "reserves": [ - "3455739461930008679206652", - "6695835282851241169537613" + "4703389346809918508718688", + "3714544853243004458084705" ], - "LPTokenSupply": "10039602558343986624631414" + "LPTokenSupply": "8360666494299389872055909" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "5282736058721814708224", + "expectedQty": "5243084866970370081169", + "reserves": [ + "4708672082868640323426912", + "3714544853243004458084705" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "85291706907625904", - "expectedQty": "84200619325622646", + "inputQty": "67628110046455633281024", + "expectedQty": "67225963490298086329747", "reserves": [ - "3455739461930008679206652", - "6695835368142948077163517" + "4708672082868640323426912", + "3782172963289460091365729" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "20428432487955996606464", - "76080461130758312951808" - ], - "expectedQty": "95380433219301333855420", - "swapFee": "57262617502082049542", + "type": "mint", + "inputIndex": 1, + "inputQty": "163088123041213972480", + "expectedQty": "162112608489608288810", "reserves": [ - "3435311029442052682600188", - "6619754907012189764211709" - ], - "LPTokenSupply": "9944170672969552742554051" + "4708672082868640323426912", + "3782336051412501305338209" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "14637684755584651264", - "outputIndex": 1, - "expectedQty": "14701817796074525559", - "swapFee": "11620465338731650", + "inputQty": "61924305693923017228288", + "expectedQty": "62350458957197677488634", + "swapFee": "37154583416353810336", "reserves": [ - "3435325667126808267251452", - "6619740205194393689686150" + "4646321623911442645938278", + "3782336051412501305338209" ], - "LPTokenSupply": "9944170674131599276427216", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8371377065029566554908380" }, { "type": "mintMulti", "inputQtys": [ - "5440862010461666304", - "41842943708797992960" + "3217603824719141797888", + "8394940860838991364096" ], - "expectedQty": "46707476512534914466", + "expectedQty": "11537994281393086443795", "reserves": [ - "3435331107988818728917756", - "6619782048138102487679110" + "4649539227736161787736166", + "3790730992273340296702305" ], - "LPTokenSupply": "9944217381608111811341682" + "LPTokenSupply": "8382915059310959641352175" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "998904237239021731840", - "outputIndex": 0, - "expectedQty": "993748794956953509490", - "swapFee": "0", - "reserves": [ - "3434337359193861775408266", - "6620780952375341509410950" + "type": "redeemMasset", + "inputQty": "6429320520285197107", + "expectedQtys": [ + "3563848819724373524", + "2905576555224312484" ], - "LPTokenSupply": "9944217381608111811341682", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "91646520809402434322432", - "outputIndex": 1, - "expectedQty": "92029108543550082940701", - "swapFee": "72749330677672504960", + "redemptionFee": "3857592312171118", "reserves": [ - "3525983880003264209730698", - "6528751843831791426470249" + "4649535663887342063362642", + "3790728086696785072389821" ], - "LPTokenSupply": "9944224656541179578592178", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8382908630376198587372179" }, { - "type": "mintMulti", - "inputQtys": [ - "6280504021268631552", - "4962396708485003264" - ], - "expectedQty": "11130344528244795563", + "type": "mint", + "inputIndex": 1, + "inputQty": "38763068066012889088", + "expectedQty": "38528836910479322149", "reserves": [ - "3525990160507285478362250", - "6528756806228499911473513" - ], - "LPTokenSupply": "9944235786885707823387741" + "4649535663887342063362642", + "3790766849764851085278909" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "4168807277875415220224", + "inputQty": "22832202209328621420544", "outputIndex": 0, - "expectedQty": "4148972540649316350825", + "expectedQty": "22862765251479725047921", "swapFee": "0", "reserves": [ - "3521841187966636162011425", - "6532925613506375326693737" + "4626672898635862338314721", + "3813599051974179706699453" ], - "LPTokenSupply": "9944235786885707823387741", + "LPTokenSupply": "8382947159213109066694328", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "25501503265908180", - "expectedQty": "25689668106208999", - "swapFee": "15300901959544", + "inputQty": "688854869028850368512", + "expectedQty": "693556465713683566325", + "swapFee": "413312921417310221", "reserves": [ - "3521841162276968055802426", - "6532925613506375326693737" + "4625979342170148654748396", + "3813599051974179706699453" ], - "LPTokenSupply": "9944235761385734647675515" + "LPTokenSupply": "8382258345675372358056838" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "66272396452003816931328", - "expectedQty": "67079945602763181744538", - "swapFee": "39763437871202290158", + "type": "mint", + "inputIndex": 0, + "inputQty": "108423313212603875328", + "expectedQty": "107623718672216636952", "reserves": [ - "3521841162276968055802426", - "6465845667903612144949199" - ], - "LPTokenSupply": "9877967341277517950973202" + "4626087765483361258623724", + "3813599051974179706699453" + ] }, { "type": "redeemBassets", "inputQtys": [ - "39202586584852513947648", - "51237187591570735497216" + "445052451342966325248", + "173774868232684208128" ], - "expectedQty": "89480196935347758853562", - "swapFee": "53720350371431514220", + "expectedQty": "614487811553220103755", + "swapFee": "368914035353143948", "reserves": [ - "3482638575692115541854778", - "6414608480312041409451983" + "4625642713032018292298476", + "3813425277105947022491325" ], - "LPTokenSupply": "9788438796026835903756841" + "LPTokenSupply": "8381751149559859536760480" }, { - "type": "mintMulti", - "inputQtys": [ - "14568374510226491392", - "6968579558433381376" + "type": "redeemMasset", + "inputQty": "11953314333787689779", + "expectedQtys": [ + "6592725708727480802", + "5435107815797612292" ], - "expectedQty": "21332745266537404957", + "redemptionFee": "7171988600272613", "reserves": [ - "3482653144066625768346170", - "6414615448891599842833359" + "4625636120306309564817674", + "3813419841998131224879033" ], - "LPTokenSupply": "9788460128772102441161798" + "LPTokenSupply": "8381739196962724609097962" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3670641465244243968", - "3405944133146054656" + "20701339867534287962112", + "23342724171180143542272" ], - "expectedQty": "7004286811098794778", + "expectedQty": "43749380242810868470352", + "swapFee": "26265387378113389115", "reserves": [ - "3482656814708091012590138", - "6414618854835732988888015" + "4604934780438775276855562", + "3790077117826951081336761" ], - "LPTokenSupply": "9788467133058913539956576" + "LPTokenSupply": "8337966177871273438577405" }, { - "type": "mintMulti", - "inputQtys": [ - "20074979606185476358144", - "39851880989446193020928" - ], - "expectedQty": "59263320195806556131899", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2109622025847819730944", + "expectedQty": "2121254330220306833386", + "swapFee": "1265773215508691838", "reserves": [ - "3502731794314276488948282", - "6454470735825179181908943" + "4604934780438775276855562", + "3787955863496730774503375" ], - "LPTokenSupply": "9847730453254720096088475" + "LPTokenSupply": "8335856682422747169715644" }, { - "type": "mintMulti", - "inputQtys": [ - "88675749597994778624", - "18677570545554508742656" - ], - "expectedQty": "18529462601084627869074", + "type": "swap", + "inputIndex": 1, + "inputQty": "38425572163026", + "outputIndex": 0, + "expectedQty": "38476091612815", + "swapFee": "0", "reserves": [ - "3502820470063874483726906", - "6473148306370733690651599" + "4604934780400299185242747", + "3787955863535156346666401" ], - "LPTokenSupply": "9866259915855804723957549" + "LPTokenSupply": "8335856682422747169715644", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "324815860323170058240", - "26933281012050321997824" - ], - "expectedQty": "26915139458044897357324", - "swapFee": "16158778942192253766", + "type": "swap", + "inputIndex": 0, + "inputQty": "9489841021313415168", + "outputIndex": 1, + "expectedQty": "9469798721339037954", + "swapFee": "7535810568816272", "reserves": [ - "3502495654203551313668666", - "6446215025358683368653775" + "4604944270241320498657915", + "3787946393736435007628447" ], - "LPTokenSupply": "9839330233496711853571834" + "LPTokenSupply": "8335856683176328226597271", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "9551101938210331033", + "inputQty": "18800201811290982082150", "expectedQtys": [ - "3397855405015369320", - "6253628477602488983" + "10379489543760973918318", + "8537986059938576675952" ], - "redemptionFee": "5730661162926198", + "redemptionFee": "11280121086774589249", "reserves": [ - "3502492256348146298299346", - "6446208771730205766164792" + "4594564780697559524739597", + "3779408407676496430952495" ], - "LPTokenSupply": "9839320682967839759533420" + "LPTokenSupply": "8317057609377145921974045" }, { - "type": "redeemMasset", - "inputQty": "669180799240267576115", - "expectedQtys": [ - "238064635005767639776", - "438149245192903326294" + "type": "mintMulti", + "inputQtys": [ + "70855678796272735617024", + "35181571041005590806528" + ], + "expectedQty": "105299737091425592691727", + "reserves": [ + "4665420459493832260356621", + "3814589978717502021759023" ], - "redemptionFee": "401508479544160545", + "LPTokenSupply": "8422357346468571514665772" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "114925340528396894208", + "87705999661224378368" + ], + "expectedQty": "201249070896645825889", + "swapFee": "120821935699407139", "reserves": [ - "3502254191713140530659570", - "6445770622485012862838498" + "4665305534153303863462413", + "3814502272717840797380655" ], - "LPTokenSupply": "9838651542319447446373359" + "LPTokenSupply": "8422155988657932739373456" }, { "type": "swap", "inputIndex": 1, - "inputQty": "132290515227094564864", + "inputQty": "16856120249850479509504", "outputIndex": 0, - "expectedQty": "131670237119098589140", + "expectedQty": "16878518853634029888927", "swapFee": "0", "reserves": [ - "3502122521476021432070430", - "6445902913000239957403362" + "4648427015299669833573486", + "3831358392967691276890159" ], - "LPTokenSupply": "9838651542319447446373359", + "LPTokenSupply": "8422155988657932739373456", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "3197040831084933", - "3527845585467486" - ], - "expectedQty": "6654808413946121", + "type": "redeem", + "inputIndex": 0, + "inputQty": "374321841396787697418240", + "expectedQty": "376829041656661571016647", + "swapFee": "224593104838072618450", "reserves": [ - "3502122524673062263155363", - "6445902916528085542870848" + "4271597973643008262556839", + "3831358392967691276890159" ], - "LPTokenSupply": "9838651548974255860319480" + "LPTokenSupply": "8047856606571628849217061" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "22653131807429295603712", - "expectedQty": "22929039589053891903585", - "swapFee": "13591879084457577362", + "type": "redeemBassets", + "inputQtys": [ + "26952299844823846748160", + "78560219571071026724864" + ], + "expectedQty": "104817029080956111050982", + "swapFee": "62927974233113534751", "reserves": [ - "3502122524673062263155363", - "6422973876939031650967263" + "4244645673798184415808679", + "3752798173396620250165295" ], - "LPTokenSupply": "9815999776354735010473504" + "LPTokenSupply": "7942982942313862935984802" }, { "type": "mint", "inputIndex": 1, - "inputQty": "5859055545060007936", - "expectedQty": "5785108874518410292", + "inputQty": "25679165836058156", + "expectedQty": "25515406059137537", "reserves": [ - "3502122524673062263155363", - "6422979735994576710975199" + "4244645673798184415808679", + "3752798199075786086223451" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "20295713271811", - "expectedQty": "20133256022274", + "type": "mintMulti", + "inputQtys": [ + "8310035172232856", + "34405828565568848" + ], + "expectedQty": "42436684496634018", "reserves": [ - "3502122524693357976427174", - "6422979735994576710975199" - ] + "4244645682108219588041535", + "3752798233481614651792299" + ], + "LPTokenSupply": "7942983010265953491756357" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "88466475088284624093184", - "outputIndex": 1, - "expectedQty": "88792035730934714834286", - "swapFee": "70201091236841577610", + "type": "redeemBassets", + "inputQtys": [ + "44253226787320125980672", + "78352237788696990973952" + ], + "expectedQty": "121788260022398158501715", + "swapFee": "73116826109104357715", "reserves": [ - "3590588999781642600520358", - "6334187700263641996140913" + "4200392455320899462060863", + "3674445995692917660818347" ], - "LPTokenSupply": "9816012581592866469063831", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7821128945100057139332697" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "525005048555813390516224", - "expectedQty": "528785368262339114572986", - "swapFee": "315003029133488034309", + "type": "mintMulti", + "inputQtys": [ + "50392360638505484288", + "65365373005246193664" + ], + "expectedQty": "114978282871733578290", "reserves": [ - "3061803631519303485947372", - "6334187700263641996140913" + "4200442847681537967545151", + "3674511361065922907012011" ], - "LPTokenSupply": "9291039033339966427351037" + "LPTokenSupply": "7821243923382928872910987" }, { "type": "redeemMasset", - "inputQty": "43495198593048680857", + "inputQty": "2382176789686000392601", "expectedQtys": [ - "14324969712650246275", - "29635162107209854891" + "1278593768157181595877", + "1118502857353447585614" ], - "redemptionFee": "26097119155829208", + "redemptionFee": "1429306073811600235", "reserves": [ - "3061789306549590835701097", - "6334158065101534786286022" + "4199164253913380785949274", + "3673392858208569459426397" ], - "LPTokenSupply": "9290995540751085294253100" + "LPTokenSupply": "7818861889523850253678409" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8142493432241335566336", - "expectedQty": "8245541194011156395815", - "swapFee": "4885496059344801339", + "type": "swap", + "inputIndex": 0, + "inputQty": "3890724823007199744", + "outputIndex": 1, + "expectedQty": "3884144257991178067", + "swapFee": "3090062973751747", "reserves": [ - "3061789306549590835701097", - "6325912523907523629890207" + "4199168144638203793149018", + "3673388974064311468248330" ], - "LPTokenSupply": "9282853535868449893166897" + "LPTokenSupply": "7818861889832856551053583", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "9001665940865030920601", - "expectedQtys": [ - "2967262996203674413488", - "6130613268933684702804" + "type": "redeemBassets", + "inputQtys": [ + "496159770735546728448", + "317652989705468772352" ], - "redemptionFee": "5400999564519018552", + "expectedQty": "808207084415307801071", + "swapFee": "485215379877110947", "reserves": [ - "3058822043553387161287609", - "6319781910638589945187403" + "4198671984867468246420570", + "3673071321074605999475978" ], - "LPTokenSupply": "9273852410027541314148151" + "LPTokenSupply": "7818053246054599353852658" }, { - "type": "redeemMasset", - "inputQty": "33264606406097565961420", - "expectedQtys": [ - "10965180007430094085817", - "22654978050750124629113" + "type": "redeemBassets", + "inputQtys": [ + "943752497141704163328", + "3179482681672279785472" ], - "redemptionFee": "19958763843658539576", + "expectedQty": "4096227554255553567434", + "swapFee": "2459212059789205663", "reserves": [ - "3047856863545957067201792", - "6297126932587839820558290" + "4197728232370326542257242", + "3669891838392933719690506" ], - "LPTokenSupply": "9240589799497828114040688" + "LPTokenSupply": "7813954805209489990000126" }, { - "type": "redeemMasset", - "inputQty": "555640733662141061529", - "expectedQtys": [ - "183159013918742538470", - "378421825935774789764" + "type": "mintMulti", + "inputQtys": [ + "2636401281299225600", + "171487235432395210752" ], - "redemptionFee": "333384440197284636", + "expectedQty": "173016302805153711211", "reserves": [ - "3047673704532038324663322", - "6296748510761904045768526" + "4197730868771607841482842", + "3670063325628366114901258" ], - "LPTokenSupply": "9240034192102609992707622" + "LPTokenSupply": "7814127821512295143711337" }, { "type": "mint", "inputIndex": 0, - "inputQty": "470186752238952120320", - "expectedQty": "466798363239157557787", + "inputQty": "60185538826138697072640", + "expectedQty": "59748674487350764605125", "reserves": [ - "3048143891284277276783642", - "6296748510761904045768526" + "4257916407597746538555482", + "3670063325628366114901258" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "97956439340560683106304", - "6711633533148393897984" + "163105462974179044229120", + "166464729363611692040192" ], - "expectedQty": "103885978466350487031694", - "swapFee": "62369008484901232958", + "expectedQty": "327334481373520059403384", "reserves": [ - "2950187451943716593677338", - "6290036877228755651870542" + "4421021870571925582784602", + "3836528054991977806941450" ], - "LPTokenSupply": "9136558879891862252124051" + "LPTokenSupply": "8201210977373165967719846" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "356590392538468480", - "expectedQty": "354107913816540104", + "inputIndex": 1, + "inputQty": "170068084345705234432", + "expectedQty": "168993377418147344811", "reserves": [ - "2950187808534109132145818", - "6290036877228755651870542" + "4421021870571925582784602", + "3836698123076323512175882" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4144661412247551082496", - "expectedQty": "4171189090403981142700", - "swapFee": "2486796847348530649", - "reserves": [ - "2946016619443705151003118", - "6290036877228755651870542" + "type": "redeemMasset", + "inputQty": "3026930544072412941516", + "expectedQtys": [ + "1630712990748153379021", + "1415182655513585824629" ], - "LPTokenSupply": "9132414821267213252434723" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "3862501958056790196224", - "expectedQty": "3811429930429904544711", + "redemptionFee": "1816158326443447764", "reserves": [ - "2946016619443705151003118", - "6293899379186812442066766" - ] + "4419391157581177429405581", + "3835282940420809926351253" + ], + "LPTokenSupply": "8198353221822344346467917" }, { "type": "mint", "inputIndex": 1, - "inputQty": "13626140265198657732608", - "expectedQty": "13445895617034251534460", + "inputQty": "7257616348955010924544", + "expectedQty": "7211726700696695884067", "reserves": [ - "2946016619443705151003118", - "6307525519452011099799374" + "4419391157581177429405581", + "3842540556769764937275797" ] }, { "type": "redeemBassets", "inputQtys": [ - "9652256903777382039552", - "15865470352558357741568" + "90009238092897222656", + "7381606882637330432" ], - "expectedQty": "25240935516627383353569", - "swapFee": "15153653502077676618", + "expectedQty": "96691238590134441867", + "swapFee": "58049572897819356", "reserves": [ - "2936364362539927768963566", - "6291660049099452742057806" + "4419301148343084532182925", + "3842533175162882299945365" ], - "LPTokenSupply": "9124417573009898155251367" + "LPTokenSupply": "8205468205039835299872695" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "7968341049651125813248", - "expectedQty": "8018983109777810391242", - "swapFee": "4781004629790675487", + "inputQty": "1408947052723109625856", + "expectedQty": "1398726186661180478126", + "reserves": [ + "4420710095395807641808781", + "3842533175162882299945365" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "2236167920182972907520", + "expectedQty": "2249049750176357337141", + "swapFee": "1341700752109783744", "reserves": [ - "2928345379430149958572324", - "6291660049099452742057806" + "4420710095395807641808781", + "3840284125412705942608224" ], - "LPTokenSupply": "9116449710060710008505667" + "LPTokenSupply": "8204630897476388718421675" }, { - "type": "redeemMasset", - "inputQty": "15868478868981317160140", - "expectedQtys": [ - "5094143797146269423211", - "10944959306374562833377" + "type": "redeemBassets", + "inputQtys": [ + "20727325352133778210816", + "11976451326091072634880" ], - "redemptionFee": "9521087321388790296", + "expectedQty": "32477649972902183748596", + "swapFee": "19498288957115579596", "reserves": [ - "2923251235633003689149113", - "6280715089793078179224429" + "4399982770043673863597965", + "3828307674086614869973344" ], - "LPTokenSupply": "9100582183300460830224556" + "LPTokenSupply": "8172135699043425130651441" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4415487834688968192", - "400844030147921472" + "37782668249823723520", + "28619560205345386496" ], - "expectedQty": "4780547548847455699", - "swapFee": "2870050559644259", + "expectedQty": "65946960972773863632", "reserves": [ - "2923246820145169000180921", - "6280714688949048031302957" + "4400020552711923687321485", + "3828336293646820215359840" ], - "LPTokenSupply": "9100577400169866479089022" + "LPTokenSupply": "8172201646004397904515073" }, { "type": "mintMulti", "inputQtys": [ - "9283403151184864", - "60043952100673952" + "6865875376896286720", + "897699728882096668672" ], - "expectedQty": "68467801679049890", + "expectedQty": "898831961387634620114", "reserves": [ - "2923246829428572151365785", - "6280714748993000131976909" + "4400027418587300583608205", + "3829233993375702312028512" ], - "LPTokenSupply": "9100577468637668158138912" + "LPTokenSupply": "8173100477965785539135187" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "63075535203260853911552", - "expectedQty": "63469910236241012945098", - "swapFee": "37845321121956512346", + "inputIndex": 1, + "inputQty": "7556271726199033856", + "expectedQty": "7599860102705198579", + "swapFee": "4533763035719420", "reserves": [ - "2859776919192331138420687", - "6280714748993000131976909" + "4400027418587300583608205", + "3829226393515599606829933" ], - "LPTokenSupply": "9037505717966519499878594" + "LPTokenSupply": "8173092922147435643673273" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "34703612725589282816", - "14862201052024410112" + "1673055400665161662464", + "15501571917055365480448" + ], + "expectedQty": "17064429757239013491399", + "swapFee": "10244804737185719526", + "reserves": [ + "4398354363186635421945741", + "3813724821598544241349485" ], - "expectedQty": "49134380768581722358", + "LPTokenSupply": "8156019272065933163034299" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "87311593035503392", + "expectedQty": "87897858859843309", + "swapFee": "52386955821302", "reserves": [ - "2859811622805056727703503", - "6280729611194052156387021" + "4398354275288776562102432", + "3813724821598544241349485" ], - "LPTokenSupply": "9037554852347288081600952" + "LPTokenSupply": "8156019184759578823113037" }, { "type": "redeemMasset", - "inputQty": "2192667725040500237926", + "inputQty": "31643967113966813184", "expectedQtys": [ - "693423650248238064978", - "1522899766714199319768" + "17054627516804693072", + "14787725638514021951" ], - "redemptionFee": "1315600635024300142", + "redemptionFee": "18986380268380087", "reserves": [ - "2859118199154808489638525", - "6279206711427337957067253" + "4398337220661259757409360", + "3813710033872905727327534" ], - "LPTokenSupply": "9035362316182311083793040" + "LPTokenSupply": "8155987542691102883137861" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "40985028399889154048", - "expectedQty": "40709596522048504999", + "type": "redeemBassets", + "inputQtys": [ + "410952911555512448", + "220943586190327296" + ], + "expectedQty": "627514245955866021", + "swapFee": "376734588326515", "reserves": [ - "2859159184183208378792573", - "6279206711427337957067253" - ] + "4398336809708348201896912", + "3813709812929319537000238" + ], + "LPTokenSupply": "8155986914837795797777975" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "76960976983334480", - "expectedQty": "76443771016967251", + "inputIndex": 1, + "inputQty": "247874310103239655424", + "expectedQty": "246307754921743133720", "reserves": [ - "2859159261144185362127053", - "6279206711427337957067253" + "4398336809708348201896912", + "3813957687239422776655662" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "17391113545982813405184", - "expectedQty": "17615527366500214591621", - "swapFee": "10434668127589688043", + "inputQty": "385870735021257916416", + "expectedQty": "383431932461391913842", "reserves": [ - "2859159261144185362127053", - "6261591184060837742475632" - ], - "LPTokenSupply": "9018013032143434094828910" + "4398336809708348201896912", + "3814343557974444034572078" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "534917596460401885184", - "1127639112463343550464" + "222992969396993720320", + "361984746803219726336" ], - "expectedQty": "1643919884952740118383", - "swapFee": "986944097430102132", + "expectedQty": "581069681489870623346", "reserves": [ - "2858624343547724960241869", - "6260463544948374398925168" + "4398559802677745195617232", + "3814705542721247254298414" ], - "LPTokenSupply": "9016368224008793667618607" + "LPTokenSupply": "8157197724206668803448883" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "325969877922611200000", - "expectedQty": "327986582353609883880", - "swapFee": "195581926753566720", + "inputQty": "8135592807212165103616", + "outputIndex": 1, + "expectedQty": "8121247030396886146119", + "swapFee": "6461170075403137519", "reserves": [ - "2858296356965371350357989", - "6260463544948374398925168" + "4406695395484957360720848", + "3806584295690850368152295" ], - "LPTokenSupply": "9016042273689063731775279" + "LPTokenSupply": "8157198370323676343762634", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "225712774593862828032", + "inputQty": "3246601723335022182", "expectedQtys": [ - "71513297006488161297", - "156633999059324578361" + "1752832301626067107", + "1514128686812750986" ], - "redemptionFee": "135427664756317696", + "redemptionFee": "1947961034001013", "reserves": [ - "2858224843668364862196692", - "6260306910949315074346807" + "4406693642652655734653741", + "3806582781562163555401309" ], - "LPTokenSupply": "9015816574457236344579016" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "24137984069438648877056", - "expectedQty": "23974317275232021423349", - "reserves": [ - "2882362827737803511073748", - "6260306910949315074346807" - ] + "LPTokenSupply": "8157195123916749112140553" }, { - "type": "redeemBassets", - "inputQtys": [ - "8954753763547850752", - "67703718958596775936" + "type": "redeemMasset", + "inputQty": "73892278449569601159168", + "expectedQtys": [ + "39894259774476436561091", + "34461393202109650925694" ], - "expectedQty": "75697298042055489719", - "swapFee": "45445646212961070", + "redemptionFee": "44335367069741760695", "reserves": [ - "2882353872984039963222996", - "6260239207230356477570871" + "4366799382878179298092650", + "3772121388360053904475615" ], - "LPTokenSupply": "9039715153533344718847682" + "LPTokenSupply": "8083307279003886485157454" }, { - "type": "redeemMasset", - "inputQty": "1412205108269223929446", - "expectedQtys": [ - "450017783664302135574", - "977402184947390129749" + "type": "mintMulti", + "inputQtys": [ + "5277966014353828864", + "11911927233907677184" ], - "redemptionFee": "847323064961534357", + "expectedQty": "17076266477729643299", "reserves": [ - "2881903855200375661087422", - "6259261805045409087441122" + "4366804660844193651921514", + "3772133300287287812152799" ], - "LPTokenSupply": "9038303033157381991071671" + "LPTokenSupply": "8083324355270364214800753" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4115233630682234368", - "expectedQty": "4087183266299191089", + "inputIndex": 1, + "inputQty": "13007569954904783978496", + "expectedQty": "12925387334271116553298", "reserves": [ - "2881907970434006343321790", - "6259261805045409087441122" + "4366804660844193651921514", + "3785140870242192596131295" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "22932907002581352448", - "expectedQty": "22628006459239948081", + "type": "redeemBassets", + "inputQtys": [ + "13508342585995397431296", + "13697766347095886790656" + ], + "expectedQty": "27021243167334512304376", + "swapFee": "16222479388033527499", "reserves": [ - "2881907970434006343321790", - "6259284737952411668793570" - ] + "4353296318258198254490218", + "3771443103895096709340639" + ], + "LPTokenSupply": "8069213899205851588874924" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1738528252679499022336", - "expectedQty": "1749404949951473211982", - "swapFee": "1043116951607699413", + "inputIndex": 1, + "inputQty": "58807425549889938915328", + "expectedQty": "59144488692404204182155", + "swapFee": "35284455329933963349", "reserves": [ - "2880158565484054870109808", - "6259284737952411668793570" + "4353296318258198254490218", + "3712298615202692505158484" ], - "LPTokenSupply": "9036591324406123191958446" + "LPTokenSupply": "8010410002101494643355930" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "83556472453930680320000", - "737741050510905966592" + "76027136638855392", + "16239534157386395648" ], - "expectedQty": "83705390760112388485512", + "expectedQty": "16213172505347900067", + "swapFee": "9733743749458415", "reserves": [ - "2963715037937985550429808", - "6260022479002922574760162" + "4353296242231061615634826", + "3712282375668535118762836" ], - "LPTokenSupply": "9120296715166235580443958" + "LPTokenSupply": "8010393780168619920943288" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "112136678963539206995968", - "expectedQty": "111330063489329356292751", + "type": "redeemMasset", + "inputQty": "3461223109264451174", + "expectedQtys": [ + "1879893714417895745", + "1603083253665051568" + ], + "redemptionFee": "2076733865558670", "reserves": [ - "3075851716901524757425776", - "6260022479002922574760162" - ] + "4353294362337347197739081", + "3712280772585281453711268" + ], + "LPTokenSupply": "8010390319153184043047981" }, { - "type": "redeemMasset", - "inputQty": "46900971762474073", - "expectedQtys": [ - "15617385940318569", - "31784752988074052" + "type": "mintMulti", + "inputQtys": [ + "205873758684707552", + "148191648562230720" ], - "redemptionFee": "28140583057484", + "expectedQty": "351627246459645142", "reserves": [ - "3075851701284138817107207", - "6260022447218169586686110" + "4353294568211105882446633", + "3712280920776930015941988" ], - "LPTokenSupply": "9231626731757407232568384" + "LPTokenSupply": "8010390670780430502693123" }, { "type": "mintMulti", "inputQtys": [ - "17807174717654935552", - "27329652977477337088" + "3719746867786310746112", + "5163039953118061133824" ], - "expectedQty": "44649589424218101143", + "expectedQty": "8823146399902466126566", "reserves": [ - "3075869508458856472042759", - "6260049776871147064023198" + "4357014315078892193192745", + "3717443960730048077075812" ], - "LPTokenSupply": "9231671381346831450669527" + "LPTokenSupply": "8019213817180332968819689" }, { - "type": "redeem", + "type": "mintMulti", + "inputQtys": [ + "39976151256482291712", + "27028239695501168640" + ], + "expectedQty": "66541924353229969702", + "reserves": [ + "4357054291230148675484457", + "3717470988969743578244452" + ], + "LPTokenSupply": "8019280359104686198789391" + }, + { + "type": "swap", "inputIndex": 0, - "inputQty": "28475063088986607616", - "expectedQty": "28668274161244136665", - "swapFee": "17085037853391964", + "inputQty": "6823953625646809219072", + "outputIndex": 1, + "expectedQty": "6811175786343234700863", + "swapFee": "5419146782454136832", "reserves": [ - "3075840840184695227906094", - "6260049776871147064023198" + "4363878244855795484703529", + "3710659813183400343543589" ], - "LPTokenSupply": "9231642907992246249401107" + "LPTokenSupply": "8019280901019364444203074", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "13218262535393096", + "inputQty": "4433888680173188939776", "outputIndex": 0, - "expectedQty": "13142186569331560", + "expectedQty": "4438670933525990493104", "swapFee": "0", "reserves": [ - "3075840827042508658574534", - "6260049790089409599416294" + "4359439573922269494210425", + "3715093701863573532483365" ], - "LPTokenSupply": "9231642907992246249401107", + "LPTokenSupply": "8019280901019364444203074", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 1, + "inputQty": "295214526457485256032256", + "expectedQty": "296852518782014846786867", + "swapFee": "177128715874491153619", + "reserves": [ + "4359439573922269494210425", + "3418241183081558685696498" + ], + "LPTokenSupply": "7724084087433466637286179" + }, + { + "type": "mintMulti", "inputQtys": [ - "3878338660963936894976", - "3539172423146895048704" + "454643480181572567040", + "1221266573203558105088" ], - "expectedQty": "7342885991240162151324", - "swapFee": "4408376620716527207", + "expectedQty": "1665155321582660642874", "reserves": [ - "3071962488381544721679558", - "6256510617666262704367590" + "4359894217402451066777465", + "3419462449654762243801586" ], - "LPTokenSupply": "9224296054462047442375295" + "LPTokenSupply": "7725749242755049297929053" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "259960916996210", - "expectedQty": "258055239904061", + "inputQty": "1099777550892003968", + "outputIndex": 1, + "expectedQty": "1097087570032701380", + "swapFee": "873125964087546", "reserves": [ - "3071962488641505638675768", - "6256510617666262704367590" - ] + "4359895317180001958781433", + "3419461352567192211100206" + ], + "LPTokenSupply": "7725749242842361894337807", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "27219881590939142271795", - "expectedQtys": [ - "9059583910118623073905", - "18451196306879856469307" + "type": "redeem", + "inputIndex": 1, + "inputQty": "1058199901773218054144", + "expectedQty": "1063919443101581400446", + "swapFee": "634919941063930832", + "reserves": [ + "4359895317180001958781433", + "3418397433124090629699760" ], - "redemptionFee": "16331928954563485363", + "LPTokenSupply": "7724691106432582782676746" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "974199637307624914944", + "expectedQty": "981082538048783543966", + "swapFee": "584519782384574948", "reserves": [ - "3062902904731387015601863", - "6238059421359382847898283" + "4358914234641953175237467", + "3418397433124090629699760" ], - "LPTokenSupply": "9197077806322058996356097" + "LPTokenSupply": "7723716965247253396219296" }, { "type": "redeemBassets", "inputQtys": [ - "3229001799803375616", - "388133065040888960" + "122124514291240714240", + "174152876785297653760" ], - "expectedQty": "3588392758952633760", - "swapFee": "2154328252322974", + "expectedQty": "294307655739997015218", + "swapFee": "176690607808683419", "reserves": [ - "3062899675729587212226247", - "6238059033226317807009323" + "4358792110127661934523227", + "3418223280247305332046000" ], - "LPTokenSupply": "9197074215990404616631659" + "LPTokenSupply": "7723422498569966371388999" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4445299898482349834240", - "outputIndex": 0, - "expectedQty": "4419626203217227109652", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "15905354951717584896", + "expectedQtys": [ + "8970963171282152628", + "7035149734961718044" + ], + "redemptionFee": "9543212971030550", "reserves": [ - "3058480049526369985116595", - "6242504333124800156843563" + "4358783139164490652370599", + "3418216245097570370327956" ], - "LPTokenSupply": "9197074215990404616631659", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7723406594169335950907158" }, { "type": "redeemMasset", - "inputQty": "224815243877496625561", + "inputQty": "29370257468985776537", "expectedQtys": [ - "74717281423154336060", - "152501551584609940475" + "16565458562740116986", + "12990854960841868878" ], - "redemptionFee": "134889146326497975", + "redemptionFee": "17622154481391465", "reserves": [ - "3058405332244946830780535", - "6242351831573215546903088" + "4358766573705927912253613", + "3418203254242609528459078" ], - "LPTokenSupply": "9196849414235441752655895" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "24171670574139820", - "expectedQty": "23994833555940872", - "reserves": [ - "3058405356416617404920355", - "6242351831573215546903088" - ] + "LPTokenSupply": "7723377225674082413269767" }, { - "type": "redeemBassets", - "inputQtys": [ - "40460308649171910656", - "25900685987675295744" - ], - "expectedQty": "65726697914975302067", - "swapFee": "39459694565724616", + "type": "redeem", + "inputIndex": 1, + "inputQty": "12437811278411785568256", + "expectedQty": "12504950327597815556755", + "swapFee": "7462686767047071340", "reserves": [ - "3058364896107968233009699", - "6242325930887227871607344" + "4358766573705927912253613", + "3405698303915011712902323" ], - "LPTokenSupply": "9196783676018635224142544" + "LPTokenSupply": "7710940160664347332408645" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "195148246054839091200", - "504164991282034638848" + "12129148282272307216384", + "9958902558276836130816" ], - "expectedQty": "691300529209470067551", + "expectedQty": "21936236068706678781752", + "swapFee": "13169643427280375494", "reserves": [ - "3058560044354023072100899", - "6242830095878509906246192" + "4346637425423655605037229", + "3395739401356734876771507" ], - "LPTokenSupply": "9197474976547844694210095" + "LPTokenSupply": "7688992071916556101288947" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3254969961888054784", - "expectedQty": "3296068028511156327", - "swapFee": "1952981977132832", + "type": "mint", + "inputIndex": 0, + "inputQty": "20338479919343043870720", + "expectedQty": "20183242434669503547557", "reserves": [ - "3058560044354023072100899", - "6242826799810481395089865" - ], - "LPTokenSupply": "9197471721773181003868594" + "4366975905342998648907949", + "3395739401356734876771507" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2266040717608166096896", - "expectedQty": "2294650724276805144133", - "swapFee": "1359624430564899658", + "inputIndex": 0, + "inputQty": "73296235579220145733632", + "expectedQty": "73814245651842358262857", + "swapFee": "43977741347532087440", "reserves": [ - "3058560044354023072100899", - "6240532149086204589945732" + "4293161659691156290645092", + "3395739401356734876771507" ], - "LPTokenSupply": "9195205817018015894261663" + "LPTokenSupply": "7635883476546140212311616" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "32067426233102337310720", - "expectedQty": "32283148510171864152118", - "swapFee": "19240455739861402386", + "inputQty": "13733478472713343336448", + "expectedQty": "13830169636677406535039", + "swapFee": "8240087083628006001", "reserves": [ - "3026276895843851207948781", - "6240532149086204589945732" + "4279331490054478884110053", + "3395739401356734876771507" ], - "LPTokenSupply": "9163140314830487543091181" + "LPTokenSupply": "7622150822082135231775768" }, { "type": "redeemMasset", - "inputQty": "3807415239992128254771", + "inputQty": "34015584832729139", "expectedQtys": [ - "1256706653216929804409", - "2591474125233328996577" + "19086033371034925", + "15145168277862883" ], - "redemptionFee": "2284449143995276952", + "redemptionFee": "20409350899637", "reserves": [ - "3025020189190634278144372", - "6237940674960971260949155" + "4279331470968445513075128", + "3395739386211566598908624" ], - "LPTokenSupply": "9159333128035409814364105" + "LPTokenSupply": "7622150788068591334136592" }, { "type": "redeemBassets", "inputQtys": [ - "1519238464505857792", - "4846375440952528896" + "60055174631571603849216", + "49504179270620826042368" ], - "expectedQty": "6291119230473434757", - "swapFee": "3776937700904603", + "expectedQty": "108805540941317697591376", + "swapFee": "65322518075636000154", "reserves": [ - "3025018669952169772286580", - "6237935828585530308420259" + "4219276296336873909225912", + "3346235206940945772866256" ], - "LPTokenSupply": "9159326833516935410115204" + "LPTokenSupply": "7513286456861005564145076" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3002468836828896034816", - "expectedQty": "3022537264366956091839", - "swapFee": "1801481302097337620", + "type": "redeemMasset", + "inputQty": "8926465195094526079795", + "expectedQtys": [ + "5009874878331175581920", + "3973245296781172012988" + ], + "redemptionFee": "5355879117056715647", "reserves": [ - "3021996132687802816194741", - "6237935828585530308420259" + "4214266421458542733643992", + "3342261961644164600853268" ], - "LPTokenSupply": "9156324544828236723814150" + "LPTokenSupply": "7504360527253822743736845" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "2561897974526153064448", - "outputIndex": 0, - "expectedQty": "2546721798097986637334", - "swapFee": "0", + "inputQty": "1576246352401180393472", + "expectedQty": "1566733407385464171381", "reserves": [ - "3019449410889704829557407", - "6240497726560056461484707" - ], - "LPTokenSupply": "9156324544828236723814150", - "hardLimitError": false, - "insufficientLiquidityError": false + "4214266421458542733643992", + "3343838207996565781246740" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "770435395426884096", - "outputIndex": 0, - "expectedQty": "765865915232243308", - "swapFee": "0", + "inputQty": "43638431882173636149248", + "expectedQty": "43875952245918605367622", + "swapFee": "26183059129304181689", "reserves": [ - "3019448645023789597314099", - "6240498496995451888368803" + "4214266421458542733643992", + "3299962255750647175879118" ], - "LPTokenSupply": "9156324544828236723814150", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7462291447084947502177146" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "41643961837529411354624", + "expectedQty": "41393597327294764933338", + "reserves": [ + "4214266421458542733643992", + "3341606217588176587233742" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "10204444427005072506880", + "7792256675655064748032" + ], + "expectedQty": "17872139468894148680830", + "reserves": [ + "4224470865885547806150872", + "3349398474263831651981774" + ], + "LPTokenSupply": "7521557183881136415791314" }, { "type": "swap", "inputIndex": 1, - "inputQty": "1203299301637433065472", + "inputQty": "5136873914259867697152", "outputIndex": 0, - "expectedQty": "1196158395777706545421", + "expectedQty": "5144903589312427178875", "swapFee": "0", "reserves": [ - "3018252486628011890768678", - "6241701796297089321434275" + "4219325962296235378971997", + "3354535348178091519678926" ], - "LPTokenSupply": "9156324544828236723814150", + "LPTokenSupply": "7521557183881136415791314", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "38657001679678974459904", + "inputQty": "538139231813854583324672", "outputIndex": 1, - "expectedQty": "38852549724545681374704", - "swapFee": "30700871795965545851", + "expectedQty": "536282241659124230868166", + "swapFee": "427162347875607580583", "reserves": [ - "3056909488307690865228582", - "6202849246572543640059571" + "4757465194110089962296669", + "2818253106518967288810760" ], - "LPTokenSupply": "9156327614915416320368735", + "LPTokenSupply": "7521599900115923976549372", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "259577256361177175293952", - "expectedQty": "262829348750008564441231", - "swapFee": "155746353816706305176", + "inputQty": "1763382115435338496", + "expectedQty": "1770689811099512930", + "swapFee": "1058029269261203", "reserves": [ - "3056909488307690865228582", - "5940019897822535075618340" + "4757465194110089962296669", + "2818251335829156189297830" ], - "LPTokenSupply": "8896765933189620815705300" + "LPTokenSupply": "7521598136839611468136996" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "9821630517321811361792", - "outputIndex": 0, - "expectedQty": "9769839133279603773436", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "242554646767990368", + "8587644519185283072" + ], + "expectedQty": "8787545971360829582", "reserves": [ - "3047139649174411261455146", - "5949841528339856886980132" + "4757465436664736730287037", + "2818259923473675374580902" ], - "LPTokenSupply": "8896765933189620815705300", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7521606924385582828966578" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "403975668767706513408", - "expectedQty": "409017639687027638501", - "swapFee": "242385401260623908", + "type": "mintMulti", + "inputQtys": [ + "5761892143984914432", + "922381388305942528" + ], + "expectedQty": "6630497636963428588", "reserves": [ - "3047139649174411261455146", - "5949432510700169859341631" + "4757471198556880715201469", + "2818260845855063680523430" ], - "LPTokenSupply": "8896361981759393235254282" + "LPTokenSupply": "7521613554883219792395166" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15380580600264312832", - "expectedQty": "15572542093538249507", - "swapFee": "9228348360158587", + "type": "mint", + "inputIndex": 0, + "inputQty": "160388837728564346880", + "expectedQty": "159013220955727713456", "reserves": [ - "3047139649174411261455146", - "5949416938158076321092124" - ], - "LPTokenSupply": "8896346602101627806957308" + "4757631587394609279548349", + "2818260845855063680523430" + ] }, { "type": "redeemMasset", - "inputQty": "2997409135149306675", + "inputQty": "29827409771347395267788", "expectedQtys": [ - "1026044118360042799", - "2003309647696198820" - ], - "redemptionFee": "1798445481089584", - "reserves": [ - "3047138623130292901412347", - "5949414934848428624893304" + "18854954855133525786156", + "11169040738542633806792" ], - "LPTokenSupply": "8896343604872337205759591" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "13294911444969205006336", - "expectedQty": "13389311485685733959963", - "swapFee": "7976946866981523003", + "redemptionFee": "17896445862808437160", "reserves": [ - "3033749311644607167452384", - "5949414934848428624893304" + "4738776632539475753762193", + "2807091805116521046716638" ], - "LPTokenSupply": "8883049491122054698905555" + "LPTokenSupply": "7491946947977414405684550" }, { "type": "redeemMasset", - "inputQty": "307145917572231725056", + "inputQty": "576171811923866419", "expectedQtys": [ - "104833890063351922632", - "205587293856872396218" + "364219251405431912", + "215751227619683531" ], - "redemptionFee": "184287550543339035", + "redemptionFee": "345703087154319", "reserves": [ - "3033644477754543815529752", - "5949209347554571752497086" + "4738776268320224348330281", + "2807091589365293427033107" ], - "LPTokenSupply": "8882742363633237521514402" + "LPTokenSupply": "7491946371840172790533562" }, { - "type": "mintMulti", - "inputQtys": [ - "240174681223027840", - "305715149106449024" - ], - "expectedQty": "540102153494294527", + "type": "mint", + "inputIndex": 0, + "inputQty": "62336901601297357078528", + "expectedQty": "61800748430798722326792", "reserves": [ - "3033644717929225038557592", - "5949209653269720858946110" - ], - "LPTokenSupply": "8882742903735391015808929" + "4801113169921521705408809", + "2807091589365293427033107" + ] }, { "type": "mintMulti", "inputQtys": [ - "171476061868314016", - "176783032705766272" - ], - "expectedQty": "344663583413383958", - "reserves": [ - "3033644889405286906871608", - "5949209830052753564712382" + "228693655468284672", + "519871965179651392" ], - "LPTokenSupply": "8882743248398974429192887" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "120845851221611673288704", - "expectedQty": "121683980483586801073866", - "swapFee": "72507510732967003973", + "expectedQty": "744175189487346851", "reserves": [ - "2911960908921700105797742", - "5949209830052753564712382" + "4801113398615177173693481", + "2807092109237258606684499" ], - "LPTokenSupply": "8761904647928436052604580" + "LPTokenSupply": "7553747864446161000207205" }, { - "type": "redeemMasset", - "inputQty": "35418679870103375052", - "expectedQtys": [ - "11764100692991063552", - "24034355430406202999" + "type": "redeemBassets", + "inputQtys": [ + "341273175680108593152", + "501047439209252323328" ], - "redemptionFee": "21251207922062025", + "expectedQty": "837047099053557481895", + "swapFee": "502529777298513597", "reserves": [ - "2911949144821007114734190", - "5949185795697323158509383" + "4800772125439497065100329", + "2806591061798049354361171" ], - "LPTokenSupply": "8761869231373686741435730" + "LPTokenSupply": "7552910365070307874063071" }, { "type": "mint", "inputIndex": 0, - "inputQty": "108115111943640058953728", - "expectedQty": "107307008294043580852613", - "reserves": [ - "3020064256764647173687918", - "5949185795697323158509383" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "44673673879389810458624", - "expectedQty": "44094098935099507384673", + "inputQty": "15292916738019228123136", + "expectedQty": "15160960727740129363841", "reserves": [ - "3020064256764647173687918", - "5993859469576712968968007" + "4816065042177516293223465", + "2806591061798049354361171" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "138065944418349953843200", - "expectedQty": "137001156429138373321157", + "inputQty": "62099236627855171584", + "expectedQty": "62602480861270614198", + "swapFee": "37259541976713102", "reserves": [ - "3158130201182997127531118", - "5993859469576712968968007" - ] + "4816002439696655022609267", + "2806591061798049354361171" + ], + "LPTokenSupply": "7568009230287374345926638" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "674828084576241920", - "outputIndex": 1, - "expectedQty": "677676759227206463", - "swapFee": "535616281320080", + "type": "redeemBassets", + "inputQtys": [ + "67456987974048606584832", + "45989414896492869582848" + ], + "expectedQty": "112650956166671917248955", + "swapFee": "67631152391438013157", "reserves": [ - "3158130876011081703773038", - "5993858791899953741761544" + "4748545451722606416024435", + "2760601646901556484778323" ], - "LPTokenSupply": "9050271495085529831126181", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7455297406083550134465840" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "64359571836930048000", - "expectedQty": "63534081289711924282", + "inputQty": "65671181668962545958912", + "expectedQty": "65932203960315430942543", + "swapFee": "39402709001377527575", "reserves": [ - "3158130876011081703773038", - "5993923151471790671809544" - ] + "4748545451722606416024435", + "2694669442941241053835780" + ], + "LPTokenSupply": "7389630164685487726259685" }, { - "type": "redeemMasset", - "inputQty": "2929119264452990566", - "expectedQtys": [ - "1021508224126572069", - "1938754926377411608" + "type": "redeemBassets", + "inputQtys": [ + "368537589053083549696", + "455861691267070754816" ], - "redemptionFee": "1757471558671794", + "expectedQty": "819133006060158647385", + "swapFee": "491774868557229526", "reserves": [ - "3158129854502857577200969", - "5993921212716864294397936" + "4748176914133553332474739", + "2694213581249973983080964" ], - "LPTokenSupply": "9050332100223302245927076" + "LPTokenSupply": "7388810589082045866105725" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5849748707160133468160", - "expectedQty": "5922187916253481979129", - "swapFee": "3509849224296080080", + "type": "mintMulti", + "inputQtys": [ + "145911359195355250688", + "14873484814693046272" + ], + "expectedQty": "159443198938994374081", "reserves": [ - "3158129854502857577200969", - "5987999024800610812418807" + "4748322825492748687725427", + "2694228454734788676127236" ], - "LPTokenSupply": "9044482702501064542066924" + "LPTokenSupply": "7388970032280984860479806" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "54966275995702312960", - "expectedQty": "55646859641896694804", - "swapFee": "32979765597421387", + "inputQty": "579366107465201221632", + "expectedQty": "581628764914763744947", + "swapFee": "347619664479120732", "reserves": [ - "3158129854502857577200969", - "5987943377940968915724003" + "4748322825492748687725427", + "2693646825969873912382289" ], - "LPTokenSupply": "9044427739523045399496102" + "LPTokenSupply": "7388390700935486107170247" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "8667877358428122775552", - "expectedQty": "8731330967910319268459", - "swapFee": "5200726415056873665", + "type": "redeemMasset", + "inputQty": "99709043097516559564", + "expectedQtys": [ + "64041910338190287701", + "36329941086853544346" + ], + "redemptionFee": "59825425858509935", "reserves": [ - "3149398523534947257932510", - "5987943377940968915724003" + "4748258783582410497437726", + "2693610496028787058837943" ], - "LPTokenSupply": "9035760382237258782407916" + "LPTokenSupply": "7388290997874931176461676" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "608856238567782612992", - "expectedQty": "604073789356823126680", + "type": "redeemBassets", + "inputQtys": [ + "32300486419863134273536", + "29282044652774125207552" + ], + "expectedQty": "61169021553730035314724", + "swapFee": "36723447000438284159", "reserves": [ - "3150007379773515040545502", - "5987943377940968915724003" - ] + "4715958297162547363164190", + "2664328451376012933630391" + ], + "LPTokenSupply": "7327088925218900746691207" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "22485717679696019456", - "outputIndex": 0, - "expectedQty": "22372913295954535212", - "swapFee": "0", + "inputQty": "28426204535902126997504", + "expectedQty": "28535681645524334736627", + "swapFee": "17055722721541276198", "reserves": [ - "3149985006860219086010290", - "5987965863658648611743459" + "4715958297162547363164190", + "2635792769730488598893764" ], - "LPTokenSupply": "9036364456026615605534596", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "99959601754584498176", - "expectedQty": "99174369562175451860", - "reserves": [ - "3150084966461973670508466", - "5987965863658648611743459" - ] + "LPTokenSupply": "7298664426255270773821322" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "31837222737824804864", - "expectedQty": "32231738248636770894", - "swapFee": "19102333642694882", + "inputQty": "3490818741647282012160", + "expectedQty": "3504139406274027968768", + "swapFee": "2094491244988369207", "reserves": [ - "3150084966461973670508466", - "5987933631920399974972565" + "4715958297162547363164190", + "2632288630324214570924996" ], - "LPTokenSupply": "9036431795083673320451080" + "LPTokenSupply": "7295173816962747990646082" }, { "type": "redeemMasset", - "inputQty": "1732355186918024019968", + "inputQty": "2982690442232743936", "expectedQtys": [ - "603533774717530573163", - "1147245304843302499990" + "1927000554803007253", + "1075586621299924478" ], - "redemptionFee": "1039413112150814411", + "redemptionFee": "1789614265339646", "reserves": [ - "3149481432687256139935303", - "5986786386615556672472575" + "4715956370161992560156937", + "2632287554737593271000518" ], - "LPTokenSupply": "9034699543838066511512553" + "LPTokenSupply": "7295170834451267184436110" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "48396733000422575308800", - "3694186242081967046656" + "22392093497921556709376", + "15101893670462113710080" ], - "expectedQty": "51661036894913736577693", + "expectedQty": "37230553290532132939251", + "swapFee": "22351743020131358578", "reserves": [ - "3197878165687678715244103", - "5990480572857638639519231" + "4693564276664071003447561", + "2617185661067131157290438" ], - "LPTokenSupply": "9086360580732980248090246" + "LPTokenSupply": "7257920164592016933274137" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2520117437300734976", - "1122059011438106496" + "15078701936786154", + "2919634034387228" ], - "expectedQty": "3607791870389715306", - "swapFee": "2165974707058064", + "expectedQty": "17852717841205726", "reserves": [ - "3197875645570241414509127", - "5990479450798627201412735" + "4693564291742772940233715", + "2617185663986765191677666" ], - "LPTokenSupply": "9086356970991732622022681" + "LPTokenSupply": "7257920182444734774479863" }, { - "type": "redeemMasset", - "inputQty": "4135522846997286905446", - "expectedQtys": [ - "1454593177841316629322", - "2724843460752039880631" - ], - "redemptionFee": "2481313708198372143", - "reserves": [ - "3196421052392400097879805", - "5987754607337875161532104" + "type": "mintMulti", + "inputQtys": [ + "234053270134276653056", + "170430524334857224192" ], - "LPTokenSupply": "9082221696276106154954449" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "10412775003028853882880", - "outputIndex": 1, - "expectedQty": "10455055972340707005843", - "swapFee": "8263874811344153630", + "expectedQty": "401674015054741939455", "reserves": [ - "3206833827395428951762685", - "5977299551365534454526261" + "4693798345012907216886771", + "2617356094511100048901858" ], - "LPTokenSupply": "9082222522663587289369812", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7258321856459789516419318" }, { "type": "redeemMasset", - "inputQty": "3083738421000", + "inputQty": "3317452591627048583168", "expectedQtys": [ - "1088181140312", - "2028288646025" + "2144036999171819606567", + "1195558030864707096536" ], - "redemptionFee": "1850243052", + "redemptionFee": "1990471554976229149", "reserves": [ - "3206833827394340770622373", - "5977299551363506165880236" + "4691654308013735397280204", + "2616160536480235341805322" ], - "LPTokenSupply": "9082222522660503735973117" + "LPTokenSupply": "7255004602915317965459064" }, { - "type": "redeemMasset", - "inputQty": "553621282577961267", - "expectedQtys": [ - "195360356920958655", - "364137163517037605" + "type": "mint", + "inputIndex": 0, + "inputQty": "38461899453936123904", + "expectedQty": "38123164501974196507", + "reserves": [ + "4691692769913189333404108", + "2616160536480235341805322" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "5977941549296639803392", + "19038837010324330119168" ], - "redemptionFee": "332172769546776", + "expectedQty": "24880802029506866357481", + "swapFee": "14937443683914468495", "reserves": [ - "3206833632033983849663718", - "5977299187226342648842631" + "4685714828363892693600716", + "2597121699469911011686154" ], - "LPTokenSupply": "9082221969072438434966527" + "LPTokenSupply": "7230148480350997550276443" }, { "type": "mint", "inputIndex": 0, - "inputQty": "18270233913794561572864", - "expectedQty": "18123964019412638151335", + "inputQty": "54224085096746760", + "expectedQty": "53745301956124343", "reserves": [ - "3225103865947778411236582", - "5977299187226342648842631" + "4685714882587977790347476", + "2597121699469911011686154" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "662923814301361640570880", + "inputQty": "40305479393340284731392", "outputIndex": 0, - "expectedQty": "658506015603696884972964", + "expectedQty": "40482659445572252680453", "swapFee": "0", "reserves": [ - "2566597850344081526263618", - "6640223001527704289413511" + "4645232223142405537667023", + "2637427178863251296417546" ], - "LPTokenSupply": "9100345933091851073117862", + "LPTokenSupply": "7230148534096299506400786", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "62569479063759408332", - "expectedQtys": [ - "17636069796457561093", - "45627497234631415393" - ], - "redemptionFee": "37541687438255644", - "reserves": [ - "2566580214274285068702525", - "6640177374030469657998118" - ], - "LPTokenSupply": "9100283367366956057535094" - }, { "type": "mint", "inputIndex": 0, - "inputQty": "70865595890551185408", - "expectedQty": "70502677382662535698", + "inputQty": "21526947416688912", + "expectedQty": "21338652656553917", "reserves": [ - "2566651079870175619887933", - "6640177374030469657998118" + "4645232244669352954355935", + "2637427178863251296417546" ] }, { "type": "mintMulti", "inputQtys": [ - "5071802188615376699392", - "3761199024523084562432" + "3953471366184407400448", + "2376365506169004883968" ], - "expectedQty": "8754132444093122039408", + "expectedQty": "6284552627970469938313", "reserves": [ - "2571722882058790996587325", - "6643938573054992742560550" + "4649185716035537361756383", + "2639803544369420301301514" ], - "LPTokenSupply": "9109108002488431842110200" + "LPTokenSupply": "7236433108062922632893016" }, { - "type": "redeemMasset", - "inputQty": "478675457653449057894", - "expectedQtys": [ - "135060646422759853012", - "348923534775082522117" + "type": "mintMulti", + "inputQtys": [ + "3836447429076093763584", + "1278413234471480066048" ], - "redemptionFee": "287205274592069434", + "expectedQty": "5075544715051738336705", "reserves": [ - "2571587821412368236734313", - "6643589649520217660038433" + "4653022163464613455519967", + "2641081957603891781367562" ], - "LPTokenSupply": "9108629355751305852259249" + "LPTokenSupply": "7241508652777974371229721" }, { - "type": "redeemMasset", - "inputQty": "3255119551003189732966", - "expectedQtys": [ - "918448097115957669715", - "2372772269651630198084" - ], - "redemptionFee": "1953071730601913839", + "type": "swap", + "inputIndex": 0, + "inputQty": "34628343236840795406336", + "outputIndex": 1, + "expectedQty": "34449693882538030841847", + "swapFee": "27459981861641505117", "reserves": [ - "2570669373315252279064598", - "6641216877250566029840349" + "4687650506701454250926303", + "2606632263721353750525715" ], - "LPTokenSupply": "9105374431507475722717666" + "LPTokenSupply": "7241511398776160535380232", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "24702828714137256722432", - "15600367592823395975168" - ], - "expectedQty": "39957889768710328032923", - "swapFee": "23989127337628774084", + "type": "redeem", + "inputIndex": 0, + "inputQty": "17444176442195861045248", + "expectedQty": "17588761926593373438064", + "swapFee": "10466505865317516627", "reserves": [ - "2545966544601115022342166", - "6625616509657742633865181" + "4670061744774860877488239", + "2606632263721353750525715" ], - "LPTokenSupply": "9065394951524161528788066" + "LPTokenSupply": "7224068268984551206086646" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "464999053962515841024", - "expectedQty": "467080992364833014157", - "swapFee": "278999432377509504", + "type": "mintMulti", + "inputQtys": [ + "140603210849643048992768", + "201676667901184216924160" + ], + "expectedQty": "340135996060330866068212", "reserves": [ - "2545499463608750189328009", - "6625616509657742633865181" + "4810664955624503926481007", + "2808308931622537967449875" ], - "LPTokenSupply": "9064929980370142250697992" + "LPTokenSupply": "7564204265044882072154858" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2826648940500178432", - "expectedQty": "2786835508318098590", + "type": "redeemBassets", + "inputQtys": [ + "631881477515240359854080", + "422313128663484060401664" + ], + "expectedQty": "1046754342777298992924145", + "swapFee": "628429663464458070596", "reserves": [ - "2545499463608750189328009", - "6625619336306683134043613" - ] + "4178783478109263566626927", + "2385995802959053907048211" + ], + "LPTokenSupply": "6516884335570465066967175" }, { "type": "mintMulti", "inputQtys": [ - "14816758370531224322048", - "35964382719078853246976" + "4339968304728354324480", + "1889053977672150155264" ], - "expectedQty": "50199701150413829443106", + "expectedQty": "6182005838026735269399", "reserves": [ - "2560316221979281413650057", - "6661583719025761987290589" + "4183123446413991920951407", + "2387884856936726057203475" ], - "LPTokenSupply": "9115132468356064398239688" + "LPTokenSupply": "6523066341408491802236574" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "54020710689380224729088", - "expectedQty": "54255910833982947440964", - "swapFee": "32412426413628134837", + "inputIndex": 1, + "inputQty": "4982965704549437", + "expectedQty": "5003127893695631", + "swapFee": "2989779422729", "reserves": [ - "2506060311145298466209093", - "6661583719025761987290589" + "4183123446413991920951407", + "2387884851933598163507844" ], - "LPTokenSupply": "9061114998909325536324083" + "LPTokenSupply": "6523066336425825075629409" }, { "type": "mintMulti", "inputQtys": [ - "2774671652966462128128", - "6704246333324691243008" + "14207458245300869120", + "4142422145574093312" ], - "expectedQty": "9370492419309546622341", + "expectedQty": "18205412136785398472", "reserves": [ - "2508834982798264928337221", - "6668287965359086678533597" + "4183137653872237221820527", + "2387888994355743737601156" ], - "LPTokenSupply": "9070485491328635082946424" + "LPTokenSupply": "6523084541837961861027881" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "21571772879497120972800", - "outputIndex": 1, - "expectedQty": "21757329135503055740318", - "swapFee": "17173545657020671188", + "type": "redeemBassets", + "inputQtys": [ + "25987672411818019520512", + "27202139407787657003008" + ], + "expectedQty": "52834935333196573496035", + "swapFee": "31719993195835445364", "reserves": [ - "2530406755677762049310021", - "6646530636223583622793279" + "4157149981460419202300015", + "2360686854947956080598148" ], - "LPTokenSupply": "9070487208683200785013542", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6470221058510889035631017" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "49714478594947456958464", - "expectedQty": "50395919390191377043465", - "swapFee": "29828687156968474175", + "type": "mint", + "inputIndex": 0, + "inputQty": "16922218189230494973952", + "expectedQty": "16772483607702787577278", "reserves": [ - "2530406755677762049310021", - "6596134716833392245749814" + "4174072199649649697273967", + "2360686854947956080598148" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "1463655000112992878592", + "2464538330715721826304" + ], + "expectedQty": "3903950832908793963148", + "reserves": [ + "4175535854649762690152559", + "2363151393278671802424452" ], - "LPTokenSupply": "9020775712956969024902495" + "LPTokenSupply": "6490897492951500617171443" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "63569568522519470080", - "expectedQty": "63853504053331138488", - "swapFee": "38141741113511682", + "inputQty": "13298323135914200530944", + "expectedQty": "13180521021173368635307", "reserves": [ - "2530342902173708718171533", - "6596134716833392245749814" - ], - "LPTokenSupply": "9020712147202620616783583" + "4188834177785676890683503", + "2363151393278671802424452" + ] }, { - "type": "redeemMasset", - "inputQty": "1876063864232152268", - "expectedQtys": [ - "525927061471071736", - "1370994320853258086" + "type": "redeemBassets", + "inputQtys": [ + "45561125956415788154880", + "105068345684770011742208" ], - "redemptionFee": "1125638318539291", + "expectedQty": "149754836709743688571505", + "swapFee": "89906846133526328940", "reserves": [ - "2530342376246647247099797", - "6596133345839071392491728" + "4143273051829261102528623", + "2258083047593901790682244" ], - "LPTokenSupply": "9020710271251320216485244" + "LPTokenSupply": "6354242261101410123539198" }, { "type": "mintMulti", "inputQtys": [ - "40494903783023873884160", - "1042874740037755863040" + "108796324380216347590656", + "174045902337355609538560" ], - "expectedQty": "41315171256621101821369", + "expectedQty": "281087510195223055858047", "reserves": [ - "2570837280029671120983957", - "6597176220579109148354768" + "4252069376209477450119279", + "2432128949931257400220804" ], - "LPTokenSupply": "9062025442507941318306613" + "LPTokenSupply": "6635329771296633179397245" }, { - "type": "redeemBassets", - "inputQtys": [ - "232410168652150308864", - "304927155670944448512" - ], - "expectedQty": "531845050013799167508", - "swapFee": "319298609173783770", + "type": "mint", + "inputIndex": 1, + "inputQty": "1222939790984843264", + "expectedQty": "1217245110093200263", "reserves": [ - "2570604869861018970675093", - "6596871293423438203906256" - ], - "LPTokenSupply": "9061493310089179262733711" + "4252069376209477450119279", + "2432130172871048385064068" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1605113522152429", - "1052780866400040" + "type": "mint", + "inputIndex": 1, + "inputQty": "12962201331804134", + "expectedQty": "12901842167158053", + "reserves": [ + "4252069376209477450119279", + "2432130185833249716868202" + ] + }, + { + "type": "redeemMasset", + "inputQty": "2227408055918404", + "expectedQtys": [ + "1426516766787352", + "815949642899205" ], - "expectedQty": "2634738477838151", - "swapFee": "1581792162000", + "redemptionFee": "1336444833551", "reserves": [ - "2570604868255905448522664", - "6596871292370657337506216" + "4252069374782960683331927", + "2432130185017300073968997" ], - "LPTokenSupply": "9061493307453017171949759" + "LPTokenSupply": "6635330999216311028320512" }, { "type": "redeemMasset", - "inputQty": "162660816668644999168", + "inputQty": "701839099189337190", "expectedQtys": [ - "46116659915962214384", - "118347893002335150161" + "449484430982672055", + "257099439339247073" ], - "redemptionFee": "97596490001186999", + "redemptionFee": "421103459513602", "reserves": [ - "2570558751595989486308280", - "6596752944477655002356055" + "4252068925298529700659872", + "2432129927917860734721924" ], - "LPTokenSupply": "9061330656395997527069290" + "LPTokenSupply": "6635330297419322184934682" }, { "type": "mint", "inputIndex": 1, - "inputQty": "65083248705824702332928", - "expectedQty": "64168719095325145745271", + "inputQty": "9602346268659430719488", + "expectedQty": "9557520057874443284720", "reserves": [ - "2570558751595989486308280", - "6661836193183479704688983" + "4252068925298529700659872", + "2441732274186520165441412" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "68210222525358106738688", - "expectedQty": "67248713171417347820955", + "inputQty": "23657091655414663086080", + "expectedQty": "23545706120005572692489", "reserves": [ - "2570558751595989486308280", - "6730046415708837811427671" + "4252068925298529700659872", + "2465389365841934828527492" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "103511722278941334962176", - "expectedQty": "103942915151455506294084", - "swapFee": "62107033367364800977", + "type": "mint", + "inputIndex": 1, + "inputQty": "117749239315533807616", + "expectedQty": "117191501007842496113", "reserves": [ - "2466615836444533980014196", - "6730046415708837811427671" - ], - "LPTokenSupply": "9089242577087135422153437" + "4252068925298529700659872", + "2465507115081250362335108" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1235100353011495424", - "8348381492878646272" + "80889430341690742276096", + "63577649115542799253504" ], - "expectedQty": "9458433134680332299", - "swapFee": "5678466960984790", + "expectedQty": "143455794851913991746332", + "swapFee": "86125152002349804930", "reserves": [ - "2466614601344180968518772", - "6730038067327344932781399" + "4171179494956838958383776", + "2401929465965707563081604" ], - "LPTokenSupply": "9089233113543380476934826" + "LPTokenSupply": "6525017407609493936837234" }, { - "type": "redeemMasset", - "inputQty": "55561196950184324077977", - "expectedQtys": [ - "15069019478177941670912", - "41115087322587271037439" - ], - "redemptionFee": "33336718170110594446", + "type": "swap", + "inputIndex": 0, + "inputQty": "45022502703918882816", + "outputIndex": 1, + "expectedQty": "44800696867630820358", + "swapFee": "35700381180649016", "reserves": [ - "2451545581866003026847860", - "6688922980004757661743960" + "4171224517459542877266592", + "2401884665268839932261246" ], - "LPTokenSupply": "9033675250265013163916293" + "LPTokenSupply": "6525017411179532054902135", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "11163861784756907671552", - "13905248966594757918720" + "115720166296617968", + "127954682649157408" ], - "expectedQty": "24819716341428625191308", + "expectedQty": "242051971120676273", + "swapFee": "145318373696623", "reserves": [ - "2462709443650759934519412", - "6702828228971352419662680" + "4171224401739376580648624", + "2401884537314157283103838" ], - "LPTokenSupply": "9058494966606441789107601" + "LPTokenSupply": "6525017168996774397898900" }, { - "type": "redeemMasset", - "inputQty": "4182478086787172761", - "expectedQtys": [ - "1136397181118073431", - "3092965402215707258" + "type": "redeemBassets", + "inputQtys": [ + "15428998099599710224384", + "16602002488438502195200" ], - "redemptionFee": "2509486852072303", + "expectedQty": "31816852670862503957250", + "swapFee": "19101572546045129452", "reserves": [ - "2462708307253578816445981", - "6702825136005950203955422" + "4155795403639776870424240", + "2385282534825718780908638" ], - "LPTokenSupply": "9058490784379303687142070" + "LPTokenSupply": "6493183124910620453325142" }, { - "type": "redeemBassets", - "inputQtys": [ - "1260790554310055936", - "977292180306104960" - ], - "expectedQty": "2218391332283475421", - "swapFee": "1331833899709911", + "type": "swap", + "inputIndex": 0, + "inputQty": "325908556605172452687872", + "outputIndex": 1, + "expectedQty": "323928769056113116191169", + "swapFee": "258389775146637720422", "reserves": [ - "2462707046463024506390045", - "6702824158713769897850462" + "4481703960244949323112112", + "2061353765769605664717469" ], - "LPTokenSupply": "9058488564789320893927728" + "LPTokenSupply": "6493208963888135117097184", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "20585489156904436", - "expectedQty": "20871720722985669", - "swapFee": "12351293494142", + "type": "mint", + "inputIndex": 0, + "inputQty": "181836617702977864466432", + "expectedQty": "180063679780925805902512", "reserves": [ - "2462707046463024506390045", - "6702824137842049174864793" - ], - "LPTokenSupply": "9058488544205066866372706" + "4663540577947927187578544", + "2061353765769605664717469" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "170325513239044", - "193922096410982" - ], - "expectedQty": "360701960872224", + "type": "mint", + "inputIndex": 0, + "inputQty": "47381411856959528", + "expectedQty": "46915711022241567", "reserves": [ - "2462707046633350019629089", - "6702824138035971271275775" - ], - "LPTokenSupply": "9058488544565768827244930" + "4663540625329339044538072", + "2061353765769605664717469" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9406488327642809368576", - "93181986756947244744704" + "81057919256299360", + "72141621056987392" ], - "expectedQty": "101211268956167793706608", + "expectedQty": "152200387422513296", + "swapFee": "91375057488000", "reserves": [ - "2472113534960992828997665", - "6796006124792918516020479" + "4663540544271419788238712", + "2061353693627984607730077" ], - "LPTokenSupply": "9159699813521936620951538" + "LPTokenSupply": "6673272538302146970988766" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2419048181529194790912", - "4011712263019654283264" + "35370196776226165620736", + "36615142069099525308416" ], - "expectedQty": "6362537334655598112129", - "swapFee": "3819814289366979054", + "expectedQty": "71533984649581762703886", "reserves": [ - "2469694486779463634206753", - "6791994412529898861737215" + "4698910741047645953859448", + "2097968835697084133038493" ], - "LPTokenSupply": "9153333838354420592558259" + "LPTokenSupply": "6744806522951728733692652" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3299853396111916531712", - "3145929794103439523840" + "2441921866417496391680", + "1202603848556605341696" ], - "expectedQty": "6386126790826449809774", - "swapFee": "3833976460372093141", + "expectedQty": "3617139029626986231950", "reserves": [ - "2466394633383351717675041", - "6788848482735795422213375" + "4701352662914063450251128", + "2099171439545640738380189" ], - "LPTokenSupply": "9146944260984779807864657" + "LPTokenSupply": "6748423661981355719924602" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "33394577153184931840", - "13355535624495808512" + "187656200022736994304", + "119938309052392783872" ], - "expectedQty": "46411856107295233081", + "expectedQty": "305410166171796579750", + "swapFee": "183356113371100608", "reserves": [ - "2466428027960504902606881", - "6788861838271419918021887" + "4701165006714040713256824", + "2099051501236588345596317" ], - "LPTokenSupply": "9146990672840887103097738" + "LPTokenSupply": "6748118086794681889354303" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "84056693330024022016", - "outputIndex": 0, - "expectedQty": "83214737711718444652", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "603497595717270372352", + "outputIndex": 1, + "expectedQty": "598845640028778388235", + "swapFee": "478072125820636386", "reserves": [ - "2466344813222793184162229", - "6788945894964749942043903" + "4701768504309757983629176", + "2098452655596559567208082" ], - "LPTokenSupply": "9146990672840887103097738", + "LPTokenSupply": "6748118134601894471417941", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mintMulti", + "inputQtys": [ + "12767829797076549500928", + "41718309908786387615744" + ], + "expectedQty": "54237711133703730381605", + "reserves": [ + "4714536334106834533130104", + "2140170965505345954823826" + ], + "LPTokenSupply": "6802355845735598201799546" + }, { "type": "mint", - "inputIndex": 1, - "inputQty": "19142764310187248451584", - "expectedQty": "18867766597280725699912", + "inputIndex": 0, + "inputQty": "4250447374939151872", + "expectedQty": "4209120941026845769", "reserves": [ - "2466344813222793184162229", - "6808088659274937190495487" + "4714540584554209472281976", + "2140170965505345954823826" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "421301857792225902592", - "outputIndex": 1, - "expectedQty": "425244625557456907535", - "swapFee": "335575113684411084", + "type": "redeemBassets", + "inputQtys": [ + "1324403501105315315712", + "9347015344016584605696" + ], + "expectedQty": "10630253701296483069217", + "swapFee": "6381981409623664039", "reserves": [ - "2466766115080585410064821", - "6807663414649379733587952" + "4713216181053104156966264", + "2130823950161329370218130" ], - "LPTokenSupply": "9165858472995679197238758", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6791724057371974084278461" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "142521846013868193611776", - "4257634504188594487296" + "13412291750228368818176", + "18287505786034448236544" ], - "expectedQty": "146048441072117480621679", + "expectedQty": "31514459138839890401699", + "swapFee": "18920027499803816530", "reserves": [ - "2609287961094453603676597", - "6811921049153568328075248" + "4699803889302875788148088", + "2112536444375294921981586" ], - "LPTokenSupply": "9311906914067796677860437" + "LPTokenSupply": "6760192570208384370441884" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "13625709409984554467328", - "expectedQty": "13686047834337523668061", - "swapFee": "8175425645990732680", + "inputQty": "20642156938735", + "expectedQty": "20833211766065", + "swapFee": "12385294163", "reserves": [ - "2595601913260116080008536", - "6811921049153568328075248" + "4699803889282042576382023", + "2112536444375294921981586" ], - "LPTokenSupply": "9298282022200376722466377" + "LPTokenSupply": "6760192570187743452032565" }, { - "type": "mintMulti", - "inputQtys": [ - "55629897860177", - "32343059592109" + "type": "redeemMasset", + "inputQty": "79669051565661", + "expectedQtys": [ + "55354083063090", + "24881361131350" ], - "expectedQty": "87238794421228", + "redemptionFee": "47801430939", "reserves": [ - "2595601913315745977868713", - "6811921049185911387667357" + "4699803889226688493318933", + "2112536444350413560850236" ], - "LPTokenSupply": "9298282022287615516887605" + "LPTokenSupply": "6760192570108079180609997" }, { "type": "mintMulti", "inputQtys": [ - "48232393137005021626368", - "59099487261474401812480" + "121865741878916519297024", + "168245315892014477213696" + ], + "expectedQty": "288397963790374373878074", + "reserves": [ + "4821669631105605012615957", + "2280781760242428038063932" ], - "expectedQty": "106254693132730198616844", + "LPTokenSupply": "7048590533898453554488071" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "8453257141784714149888", + "outputIndex": 0, + "expectedQty": "8505683286440795829425", + "swapFee": "0", "reserves": [ - "2643834306452750999495081", - "6871020536447385789479837" + "4813163947819164216786532", + "2289235017384212752213820" ], - "LPTokenSupply": "9404536715420345715504449" + "LPTokenSupply": "7048590533898453554488071", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "484322261456258072576", + "inputQty": "396684543713661", "expectedQtys": [ - "136072575210687172507", - "353636934220114303196" + "270715421847271", + "128757555353897" ], - "redemptionFee": "290593356873754843", + "redemptionFee": "238010726228", "reserves": [ - "2643698233877540312322574", - "6870666899513165675176641" + "4813163947548448794939261", + "2289235017255455196859923" ], - "LPTokenSupply": "9404052422218225144807357" + "LPTokenSupply": "7048590533501792811847032" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "168043999673574429294592", - "expectedQty": "167130092468356458800722", + "inputQty": "53774682321568441303040", + "outputIndex": 1, + "expectedQty": "53391046355652008189894", + "swapFee": "42608184540763551730", "reserves": [ - "2811742233551114741617166", - "6870666899513165675176641" - ] + "4866938629870017236242301", + "2235843970899803188670029" + ], + "LPTokenSupply": "7048594794320246888202205", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "16824543605767696384", - "139482335851800330240" - ], - "expectedQty": "154281021744112594568", - "swapFee": "92624187559002958", - "reserves": [ - "2811725409007508973920782", - "6870527417177313874846401" + "117736244279928640503808", + "70718697717090589081600" ], - "LPTokenSupply": "9571028150303068687910847" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4968909027448340873216", - "expectedQty": "4994687154738772857261", - "swapFee": "2981345416469004523", + "expectedQty": "187092166507363959461628", + "swapFee": "112322693520530694093", "reserves": [ - "2806730721852770201063521", - "6870527417177313874846401" + "4749202385590088595738493", + "2165125273182712599588429" ], - "LPTokenSupply": "9566059539410161993938083" + "LPTokenSupply": "6861401537388714451115892" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "251260597525566717952", - "1382107649015044112384" + "777688896528848125952", + "579916505051621490688" ], - "expectedQty": "1612800318586219567902", + "expectedQty": "1348239333433620716724", + "swapFee": "809429257614741274", "reserves": [ - "2806981982450295767781473", - "6871909524826328918958785" + "4748424696693559747612541", + "2164545356677660978097741" ], - "LPTokenSupply": "9567672339728748213505985" + "LPTokenSupply": "6860052569568948977132020" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "2601659021588349583360", - "outputIndex": 1, - "expectedQty": "2620875073954934126180", - "swapFee": "2069353964021150110", + "inputQty": "1061372347294753619968", + "expectedQty": "1071157285577612592176", + "swapFee": "636823408376852171", "reserves": [ - "2809583641471884117364833", - "6869288649752373984832605" + "4747353539407982135020365", + "2164545356677660978097741" ], - "LPTokenSupply": "9567672546664144615620996", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6858991260903995061197269" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "354338023304775", - "933524503877159" + "314822677406485696", + "1723513517276774912" ], - "expectedQty": "1272909001690269", + "expectedQty": "2029922283994220268", + "swapFee": "1218684581145219", "reserves": [ - "2809583641826222140669608", - "6869288650685898488709764" + "4747353224585304728534669", + "2164543633164143701322829" ], - "LPTokenSupply": "9567672547937053617311265" + "LPTokenSupply": "6858989229884894943946302" }, { "type": "mintMulti", "inputQtys": [ - "8886712199748179197952", - "4357413349217268137984" + "9500484704070713475072", + "16763006761925921996800" ], - "expectedQty": "13132561003212366337795", + "expectedQty": "26118711337946197991363", "reserves": [ - "2818470354025970319867560", - "6873646064035115756847748" + "4756853709289375442009741", + "2181306639926069623319629" ], - "LPTokenSupply": "9580805108940265983649060" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1086897334770881536", - "expectedQty": "1071875679275314691", - "reserves": [ - "2818470354025970319867560", - "6873647150932450527729284" - ] + "LPTokenSupply": "6885107941222841141937665" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "16636012226340286464", - "69426305307125702656" + "145933456049696602587136", + "148533473015440852647936" ], - "expectedQty": "85006512120268164101", + "expectedQty": "292595895362565452846194", + "swapFee": "175662934978526387540", "reserves": [ - "2818486990038196660154024", - "6873716577237757653431940" + "4610920253239678839422605", + "2032773166910628770671693" ], - "LPTokenSupply": "9580891187328065527127852" + "LPTokenSupply": "6592353949218795015342684" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "506431740297394782208", - "expectedQty": "513220868433334570183", - "swapFee": "303859044178436869", + "inputQty": "548054533731209280", + "expectedQty": "549280261271026514", + "swapFee": "328832720238725", "reserves": [ - "2818486990038196660154024", - "6873203356369324318861757" + "4610920253239678839422605", + "2032772617630367499645179" ], - "LPTokenSupply": "9580384785973672550189330" + "LPTokenSupply": "6592353401197144556157276" }, { "type": "mintMulti", "inputQtys": [ - "17517652215702736601088", - "18328834644190500487168" + "15192144238867458048", + "77491085645093814272" ], - "expectedQty": "35491589717787690384536", + "expectedQty": "92313706454639484363", "reserves": [ - "2836004642253899396755112", - "6891532191013514819348925" + "4610935445383917706880653", + "2032850108716012593459451" ], - "LPTokenSupply": "9615876375691460240573866" + "LPTokenSupply": "6592445714903599195641639" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "34396413687548537208832", - "expectedQty": "34574985052531090669481", - "swapFee": "20637848212529122325", + "inputQty": "8769176932443950080", + "expectedQty": "8851424727492587890", + "swapFee": "5261506159466370", "reserves": [ - "2801429657201368306085631", - "6891532191013514819348925" + "4610926593959190214292763", + "2032850108716012593459451" ], - "LPTokenSupply": "9581482025788732956277266" + "LPTokenSupply": "6592436946252817367638196" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "397994997462306228535296", - "expectedQty": "399688156606649721267336", - "swapFee": "238796998477383737121", + "inputQty": "59098285985935468265472", + "expectedQty": "58512490049572145271762", + "reserves": [ + "4670024879945125682558235", + "2032850108716012593459451" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "464721471753092726784", + "expectedQty": "463460224105076760903", + "reserves": [ + "4670024879945125682558235", + "2033314830187765686186235" + ] + }, + { + "type": "redeemMasset", + "inputQty": "81625738327094745", + "expectedQtys": [ + "57275877805311424", + "24937745461204150" + ], + "redemptionFee": "48975442996256", "reserves": [ - "2401741500594718584818295", - "6891532191013514819348925" + "4670024822669247877246811", + "2033314805250020224982085" ], - "LPTokenSupply": "9183510908026274466115682" + "LPTokenSupply": "6651412814905653806875741" }, { "type": "mintMulti", "inputQtys": [ - "417747714581809463296", - "95457284331141644288" + "63371074737677734510592", + "182860600502042402750464" ], - "expectedQty": "510201790506386107186", + "expectedQty": "245054405520983935061645", "reserves": [ - "2402159248309300394281591", - "6891627648297845960993213" + "4733395897406925611757403", + "2216175405752062627732549" ], - "LPTokenSupply": "9184021109816780852222868" + "LPTokenSupply": "6896467220426637741937386" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "271580682981189943296", - "1913962973254053265408" + "655497489758218092544", + "580795070275727785984" ], - "expectedQty": "2156584718641898124120", + "expectedQty": "1228020620698476856500", + "swapFee": "737254725254238657", "reserves": [ - "2402430828992281584224887", - "6893541611271100014258621" + "4732740399917167393664859", + "2215594610681786899946565" ], - "LPTokenSupply": "9186177694535422750346988" + "LPTokenSupply": "6895238536276686536266093" }, { "type": "mint", "inputIndex": 1, - "inputQty": "24928800174358360064", - "expectedQty": "24565250599331494027", + "inputQty": "1440321083792879517696", + "expectedQty": "1435490850374231260669", "reserves": [ - "2402430828992281584224887", - "6893566540071274372618685" + "4732740399917167393664859", + "2217034931765579779464261" ] }, { - "type": "mintMulti", - "inputQtys": [ - "146239247516354035580928", - "141655184927212578013184" - ], - "expectedQty": "285239077189246435679094", + "type": "redeem", + "inputIndex": 1, + "inputQty": "9892136505827857006592", + "expectedQty": "9919309774467651072330", + "swapFee": "5935281903496714203", "reserves": [ - "2548670076508635619805815", - "7035221724998486950631869" + "4732740399917167393664859", + "2207115621991112128391931" ], - "LPTokenSupply": "9471441336975268517520109" + "LPTokenSupply": "6886782484149423260191590" }, { - "type": "redeemBassets", - "inputQtys": [ - "243797062089996773621760", - "12901786536187999027200" - ], - "expectedQty": "255606185135942354876811", - "swapFee": "153455784552296791000", + "type": "redeem", + "inputIndex": 1, + "inputQty": "77211490632094400512", + "expectedQty": "77422195776373076854", + "swapFee": "46326894379256640", "reserves": [ - "2304873014418638846184055", - "7022319938462298951604669" + "4732740399917167393664859", + "2207038199795335755315077" ], - "LPTokenSupply": "9215697041633229095531397" + "LPTokenSupply": "6886705277291480603716742" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "34101503479119402237952", - "expectedQty": "33995784560791115541760", + "inputQty": "38151125792917464", + "expectedQty": "38500378715055682", + "swapFee": "22890675475750", "reserves": [ - "2338974517897758248422007", - "7022319938462298951604669" - ] + "4732740361416788678609177", + "2207038199795335755315077" + ], + "LPTokenSupply": "6886705239142643878346853" }, { - "type": "redeemBassets", - "inputQtys": [ - "481822103288512455376896", - "475926123677424556179456" - ], - "expectedQty": "949570171848444602665455", - "swapFee": "570084153601227498098", + "type": "redeem", + "inputIndex": 1, + "inputQty": "140026398122647928832", + "expectedQty": "140408464333438404442", + "swapFee": "84015838873588757", "reserves": [ - "1857152414609245793045111", - "6546393814784874395425213" + "4732740361416788678609177", + "2206897791331002316910635" ], - "LPTokenSupply": "8299609578607334503659412" + "LPTokenSupply": "6886565221146105117776896" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "100521196658900932231168", - "expectedQty": "100445179944673052001776", - "swapFee": "60312717995340559338", + "type": "mintMulti", + "inputQtys": [ + "93344637935583087296512", + "61966613962826973184000" + ], + "expectedQty": "154202659089206293147156", "reserves": [ - "1756707234664572741043335", - "6546393814784874395425213" + "4826084999352371765905689", + "2268864405293829290094635" ], - "LPTokenSupply": "8199094413220233105484177" + "LPTokenSupply": "7040767880235311410924052" }, { "type": "redeemBassets", "inputQtys": [ - "51236880129318597951488", - "92379255925399990829056" + "1175785601149213343744", + "7977156327639250632704" ], - "expectedQty": "142173483821172024358408", - "swapFee": "85355303474788087467", + "expectedQty": "9114699496296877790195", + "swapFee": "5472102959553858989", "reserves": [ - "1705470354535254143091847", - "6454014558859474404596157" + "4824909213751222552561945", + "2260887248966190039461931" ], - "LPTokenSupply": "8056844109625933771847047" + "LPTokenSupply": "7031648255846350934660765" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1846587249580167135232", - "1307553620493397917696" + "14278410457783007232", + "22555040806070988800" ], - "expectedQty": "3135007512894681023644", + "expectedQty": "36619902848546738998", + "swapFee": "21985132788801324", "reserves": [ - "1707316941784834310227079", - "6455322112479967802513853" + "4824894935340764769554713", + "2260864693925383968473131" ], - "LPTokenSupply": "8059979117138828452870691" + "LPTokenSupply": "7031611616156882878000574" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5746228916890870218752", - "expectedQty": "5653163710864316586752", + "type": "redeemMasset", + "inputQty": "3790714331467100035481", + "expectedQtys": [ + "2599521347025420242892", + "1218092023423520564852" + ], + "redemptionFee": "2274428598880260021", "reserves": [ - "1707316941784834310227079", - "6461068341396858672732605" - ] + "4822295413993739349311821", + "2259646601901960447908279" + ], + "LPTokenSupply": "7027821129268275665991095" }, { "type": "swap", "inputIndex": 1, - "inputQty": "66732517949582472118272", + "inputQty": "748357104298265344", "outputIndex": 0, - "expectedQty": "65528752407783906747567", + "expectedQty": "753108598624284852", "swapFee": "0", "reserves": [ - "1641788189377050403479512", - "6527800859346441144850877" + "4822294660885140725026969", + "2259647350259064746173623" ], - "LPTokenSupply": "8065632280849692769457443", + "LPTokenSupply": "7027821129268275665991095", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "3368937649712114", - "5123599664284629" - ], - "expectedQty": "8415808646737879", - "reserves": [ - "1641788192745988053191626", - "6527800864470040809135506" + "69526133551205596528640", + "76594281814257290969088" ], - "LPTokenSupply": "8065632289265501416195322" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4056903217412530241536", - "expectedQty": "4044878612571934394568", - "swapFee": "2434141930447518144", + "expectedQty": "145188795068429586773602", "reserves": [ - "1637743314133416118797058", - "6527800864470040809135506" + "4891820794436346321555609", + "2336241632073322037142711" ], - "LPTokenSupply": "8061575629462281930705600" + "LPTokenSupply": "7173009924336705252764697" }, { "type": "swap", "inputIndex": 1, - "inputQty": "28352401584600904", + "inputQty": "426619134751425953792", "outputIndex": 0, - "expectedQty": "27816900503498092", + "expectedQty": "429229381315849039432", "swapFee": "0", "reserves": [ - "1637743286316515615298966", - "6527800892822442393736410" + "4891391565055030472516177", + "2336668251208073463096503" ], - "LPTokenSupply": "8061575629462281930705600", + "LPTokenSupply": "7173009924336705252764697", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "316263381769576041676", - "expectedQtys": [ - "64211697446704661382", - "255938265431689136921" + "type": "mint", + "inputIndex": 1, + "inputQty": "2483319068103083556864", + "expectedQty": "2474576326713631648281", + "reserves": [ + "4891391565055030472516177", + "2339151570276176546653367" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "17625200562827227136", + "47759998882050719744" ], - "redemptionFee": "189758029061745625", + "expectedQty": "65048173559386746276", + "swapFee": "39052335536954220", "reserves": [ - "1637679074619068910637584", - "6527544954557010704599489" + "4891373939854467645289041", + "2339103810277294495933623" ], - "LPTokenSupply": "8061259385056315260838486" + "LPTokenSupply": "7175419417342757514407903" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1190704891172689", - "expectedQty": "1209991508422408", - "swapFee": "714422934703", + "type": "redeemBassets", + "inputQtys": [ + "19225280471311768", + "19310915187517200" + ], + "expectedQty": "38284132032440881", + "swapFee": "22984269781333", "reserves": [ - "1637679074619068910637584", - "6527544953347019196177081" + "4891373920629187173977273", + "2339103790966379308416423" ], - "LPTokenSupply": "8061259383865681811959267" + "LPTokenSupply": "7175419379037939639163821" }, { "type": "mintMulti", "inputQtys": [ - "34022363697634938454016", - "624578802925585825792" + "68191547782426133528576", + "195535103819347459571712" ], - "expectedQty": "34709428483687292449849", + "expectedQty": "262342960028812052879195", "reserves": [ - "1671701438316703849091600", - "6528169532149944782002873" + "4959565468411613307505849", + "2534638894785726767988135" ], - "LPTokenSupply": "8095968812349369104409116" + "LPTokenSupply": "7437762339066751692043016" }, { - "type": "redeemMasset", - "inputQty": "286939537457042895667", - "expectedQtys": [ - "59213349537999046825", - "231234343340486843526" + "type": "redeemBassets", + "inputQtys": [ + "13148368015885460307968", + "10291581989304586469376" ], - "redemptionFee": "172163722474225737", + "expectedQty": "23275961118415190677963", + "swapFee": "13973961047677721039", "reserves": [ - "1671642224967165850044775", - "6527938297806604295159347" + "4946417100395727847197881", + "2524347312796422181518759" ], - "LPTokenSupply": "8095681890028284308936022" + "LPTokenSupply": "7414473801383393591416116" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "10848516883368661483520", - "outputIndex": 1, - "expectedQty": "11039852365503958292239", - "swapFee": "8694429945547404269", + "inputQty": "2925892570885737472", + "expectedQty": "2898591412474508174", "reserves": [ - "1682490741850534511528295", - "6516898445441100336867108" - ], - "LPTokenSupply": "8095682759471278863676448", - "hardLimitError": false, - "insufficientLiquidityError": false + "4946420026288298732935353", + "2524347312796422181518759" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "161532099522019098624", - "expectedQty": "158891640130816725037", + "inputQty": "11977431801616060645376", + "expectedQty": "11929136514993029454452", "reserves": [ - "1682490741850534511528295", - "6517059977540622355965732" + "4946420026288298732935353", + "2536324744598038242164135" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2041565245765071929344", - "outputIndex": 0, - "expectedQty": "2004783904267722056487", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "2610200157496866242560", + "915565384838314721280" + ], + "expectedQty": "3497748085533283893119", + "swapFee": "2099908796597929093", "reserves": [ - "1680485957946266789471808", - "6519101542786387427895076" + "4943809826130801866692793", + "2535409179213199927442855" ], - "LPTokenSupply": "8095841651111409680401485", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7422906198486348873349438" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "27604110348620375523328", - "expectedQty": "27152244886487628617920", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8940243422862674944", + "expectedQty": "9018875198106262314", + "swapFee": "5364146053717604", "reserves": [ - "1680485957946266789471808", - "6546705653135007803418404" - ] + "4943800807255603760430479", + "2535409179213199927442855" + ], + "LPTokenSupply": "7422897258779340616046254" }, { "type": "redeemMasset", - "inputQty": "175365032369383", + "inputQty": "16328624531066770895667", "expectedQtys": [ - "36257771346103", - "141250187494400" + "10868671496477867898867", + "5573956264091472776445" ], - "redemptionFee": "105219019421", + "redemptionFee": "9797174718640062537", "reserves": [ - "1680485957910009018125705", - "6546705652993757615924004" + "4932932135759125892531612", + "2529835222949108454666410" ], - "LPTokenSupply": "8122993895822542798551964" + "LPTokenSupply": "7406569613965745709156840" }, { "type": "mint", "inputIndex": 0, - "inputQty": "10583739938036299776", - "expectedQty": "10602991407418273480", + "inputQty": "14995797283946211835904", + "expectedQty": "14856036001093872183783", "reserves": [ - "1680496541649947054425481", - "6546705652993757615924004" + "4947927933043072104367516", + "2529835222949108454666410" ] }, { "type": "redeemBassets", "inputQtys": [ - "21256865888600101748736", - "11692571963501492305920" + "2880250305232038789120", + "2807226536040381546496" ], - "expectedQty": "32799045014986265484900", - "swapFee": "19691241754044185802", + "expectedQty": "5649306125894854174456", + "swapFee": "3391618646724947473", "reserves": [ - "1659239675761346952676745", - "6535013081030256123618084" - ], - "LPTokenSupply": "8090187731681385311573321" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "90322739619069287202816", - "197197347210828701499392" + "4945047682737840065578396", + "2527027996413068073119914" ], - "hardLimitError": true + "LPTokenSupply": "7415773291384162674713440" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "426659284847150366720", - "expectedQty": "419638321226226743941", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8985347871213507051520", + "expectedQty": "9064478660153032212758", + "swapFee": "5391208722728104230", "reserves": [ - "1659239675761346952676745", - "6535439740315103273984804" - ] + "4935983204077687033365638", + "2527027996413068073119914" + ], + "LPTokenSupply": "7406788482633821440472343" }, { "type": "redeemMasset", - "inputQty": "65220197034295322214", + "inputQty": "109921382632693", "expectedQtys": [ - "13367477133807848799", - "52652032472617184681" + "73209132089604", + "37480177450907" ], - "redemptionFee": "39132118220577193", + "redemptionFee": "65952829579", "reserves": [ - "1659226308284213144827946", - "6535387088282630656800123" + "4935983204004477901276034", + "2527027996375587895669007" ], - "LPTokenSupply": "8090542153718789065052767" + "LPTokenSupply": "7406788482523906653122607" }, { "type": "mint", "inputIndex": 0, - "inputQty": "6492675858462268194816", - "expectedQty": "6505949006725604009595", + "inputQty": "570822206981745213440", + "expectedQty": "565500969225495350283", "reserves": [ - "1665718984142675413022762", - "6535387088282630656800123" + "4936554026211459646489474", + "2527027996375587895669007" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "70884153465960652800", - "expectedQty": "72025041447749249891", - "swapFee": "42530492079576391", + "type": "redeemMasset", + "inputQty": "269495301573438", + "expectedQtys": [ + "179494579592212", + "91883493104458" + ], + "redemptionFee": "161697180944", "reserves": [ - "1665718984142675413022762", - "6535315063241182907550232" + "4936554026031965066897262", + "2527027996283704402564549" ], - "LPTokenSupply": "8096977222825097916367201" + "LPTokenSupply": "7407353983223653016617546" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "1527587529208614354944", - "outputIndex": 0, - "expectedQty": "1499470369061692827897", - "swapFee": "0", + "inputQty": "124418572551837104", + "expectedQty": "123915972341690874", "reserves": [ - "1664219513773613720194865", - "6536842650770391521905176" - ], - "LPTokenSupply": "8096977222825097916367201", - "hardLimitError": false, - "insufficientLiquidityError": false + "4936554026031965066897262", + "2527028120702276954401653" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "90122254332613107908608", - "expectedQty": "91569254336597644358753", - "swapFee": "54073352599567864745", + "inputQty": "24548822839455284", + "expectedQty": "24449655617850856", "reserves": [ - "1664219513773613720194865", - "6445273396433793877546423" - ], - "LPTokenSupply": "8006860375827744765245067" + "4936554026031965066897262", + "2527028145251099793856937" + ] }, { - "type": "redeemMasset", - "inputQty": "278918059780988941107", - "expectedQtys": [ - "57938111510623205201", - "224385644843383410355" + "type": "mintMulti", + "inputQtys": [ + "9314654243616530432", + "26122609906346614784" ], - "redemptionFee": "167350835868593364", + "expectedQty": "35244905131423553154", "reserves": [ - "1664161575662103096989664", - "6445049010788950494136068" + "4936563340686208683427694", + "2527054267861006140471721" ], - "LPTokenSupply": "8006581474503047363163296" + "LPTokenSupply": "7407389376494412399712430" }, { - "type": "redeemMasset", - "inputQty": "82117628067441071357952", - "expectedQtys": [ - "17057842669618947070017", - "66062474721110524491171" - ], - "redemptionFee": "49270576840464642814", + "type": "mint", + "inputIndex": 1, + "inputQty": "45047891556872511488", + "expectedQty": "44865910922184493778", "reserves": [ - "1647103732992484149919647", - "6378986536067839969644897" - ], - "LPTokenSupply": "7924468773493290338269625" + "4936563340686208683427694", + "2527099315752563012983209" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "1109599725357453279232", - "outputIndex": 1, - "expectedQty": "1129006492540150287571", - "swapFee": "889145273695911569", + "inputQty": "16671710043091150831616", + "expectedQty": "16818386942546375034683", + "swapFee": "10003026025854690498", "reserves": [ - "1648213332717841603198879", - "6377857529575299819357326" + "4919744953743662308393011", + "2527099315752563012983209" ], - "LPTokenSupply": "7924468862407817707860781", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7390763532664846018843641" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "5748654712474598", - "expectedQty": "5840723419236064", - "swapFee": "3449192827484", + "inputIndex": 0, + "inputQty": "10592796290094749696", + "expectedQty": "10685937462475449928", + "swapFee": "6355677774056849", "reserves": [ - "1648213332717841603198879", - "6377857523734576400121262" + "4919734267806199832943083", + "2527099315752563012983209" ], - "LPTokenSupply": "7924468856659507914668931" + "LPTokenSupply": "7390752940504123701499629" }, { - "type": "mintMulti", - "inputQtys": [ - "51245863943728", - "50936314376076" + "type": "redeemMasset", + "inputQty": "15771944889251994009", + "expectedQtys": [ + "10492465666112420649", + "5389620935200166780" ], - "expectedQty": "101433127108656", + "redemptionFee": "9463166933551196", "reserves": [ - "1648213332769087467142607", - "6377857523785512714497338" + "4919723775340533720522434", + "2527093926131627812816429" ], - "LPTokenSupply": "7924468856760941041777587" + "LPTokenSupply": "7390737169505551142860739" }, { - "type": "mintMulti", - "inputQtys": [ - "2258153970196858011648", - "2733661592819224543232" - ], - "expectedQty": "4950791187757522632900", + "type": "swap", + "inputIndex": 1, + "inputQty": "230989334792674705408", + "outputIndex": 0, + "expectedQty": "232212293165851688937", + "swapFee": "0", "reserves": [ - "1650471486739284325154255", - "6380591185378331939040570" + "4919491563047367868833497", + "2527324915466420487521837" ], - "LPTokenSupply": "7929419647948698564410487" + "LPTokenSupply": "7390737169505551142860739", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "23894788326401490550784", - "36446113595246054998016" + "155831910174094784", + "173929530626364224" ], - "expectedQty": "59785259143582504531064", - "swapFee": "35892691100809988711", + "expectedQty": "327603351889886689", + "swapFee": "196680019145419", "reserves": [ - "1626576698412882834603471", - "6344145071783085884042554" + "4919491407215457694738713", + "2527324741536889861157613" ], - "LPTokenSupply": "7869602085383125330889582" + "LPTokenSupply": "7390736841725187235743171" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "887458658541960822784", - "602909899705050464256" + "104011398431152406528", + "263493397663926419456" ], - "expectedQty": "1482095971744041694728", + "expectedQty": "365465067994714020758", + "swapFee": "219410687209153904", "reserves": [ - "1627464157071424795426255", - "6344747981682790934506810" + "4919387395817026542332185", + "2527061248139225934738157" ], - "LPTokenSupply": "7871084181354869372584310" + "LPTokenSupply": "7390371179187574033483898" }, { - "type": "swap", + "type": "mint", + "inputIndex": 1, + "inputQty": "18319800705543415808", + "expectedQty": "18245320302285425595", + "reserves": [ + "4919387395817026542332185", + "2527079567939931478153965" + ] + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "1841956398444609536000", - "outputIndex": 1, - "expectedQty": "1874542046138877727552", - "swapFee": "1476224751309269975", + "inputQty": "9057097058465261551616", + "expectedQty": "9136702138336692734363", + "swapFee": "5434258235079156930", "reserves": [ - "1629306113469869404962255", - "6342873439636652056779258" + "4910250693678689849597822", + "2527079567939931478153965" ], - "LPTokenSupply": "7871084328977344503511307", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7381332870875234565273570" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3091410935703545577472", - "expectedQty": "3096850933547821242658", + "inputIndex": 1, + "inputQty": "624872337979042816", + "expectedQty": "622323274828163875", "reserves": [ - "1632397524405572950539727", - "6342873439636652056779258" + "4910250693678689849597822", + "2527080192812269457196781" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "171824967227787", - "expectedQty": "172123288131182", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1369541464782752", + "expectedQty": "1374326076575260", + "swapFee": "821724878869", "reserves": [ - "1632397524577397917767514", - "6342873439636652056779258" - ] + "4910250693678689849597822", + "2527080191437943380621521" + ], + "LPTokenSupply": "7381333491829050101142579" }, { - "type": "mintMulti", - "inputQtys": [ - "16814063441538639872", - "30635167367933706240" + "type": "redeemMasset", + "inputQty": "45315098581769899212", + "expectedQtys": [ + "30126668764508501205", + "15504810776120325210" ], - "expectedQty": "46976484937587546158", + "redemptionFee": "27189059149061939", "reserves": [ - "1632414338640839456407386", - "6342904074804019990485498" + "4910220567009925341096617", + "2527064686627167260296311" ], - "LPTokenSupply": "7874228156567953200431305" + "LPTokenSupply": "7381288179449374246149560" }, { - "type": "redeemMasset", - "inputQty": "27234034009350", - "expectedQtys": [ - "5642528054290", - "21924589450469" - ], - "redemptionFee": "16340420405", + "type": "redeem", + "inputIndex": 0, + "inputQty": "276422841099768542789632", + "expectedQty": "278822524385902380015614", + "swapFee": "165853704659861125673", "reserves": [ - "1632414338635196928353096", - "6342904074782095401035029" + "4631398042624022961081003", + "2527064686627167260296311" ], - "LPTokenSupply": "7874228156540720800463995" + "LPTokenSupply": "7104881923720071689472495" }, { "type": "redeemBassets", "inputQtys": [ - "7644190973082911899648", - "9063103885108943257600" + "70234782916258775040", + "227837426217599041536" ], - "expectedQty": "16572288007181737118006", - "swapFee": "9949342409754895207", + "expectedQty": "296408368850852948110", + "swapFee": "177951792385943334", "reserves": [ - "1624770147662114016453448", - "6333840970896986457777429" + "4631327807841106702305963", + "2526836849200949661254775" ], - "LPTokenSupply": "7857646914125370283940301" + "LPTokenSupply": "7104585355194607689175383" }, { - "type": "mintMulti", - "inputQtys": [ - "10424633911251648380928", - "2548285410193506304000" - ], - "expectedQty": "12949315004126028039565", + "type": "swap", + "inputIndex": 0, + "inputQty": "1307153372871436795904", + "outputIndex": 1, + "expectedQty": "1300032561972062478042", + "swapFee": "1036187065768158192", "reserves": [ - "1635194781573365664834376", - "6336389256307179964081429" + "4632634961213978139101867", + "2525536816638977598776733" ], - "LPTokenSupply": "7870596229129496311979866" + "LPTokenSupply": "7104585458813314265991202", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "25000605166394515914752", - "expectedQty": "25401046352587885913924", - "swapFee": "15000363099836709548", + "type": "redeemBassets", + "inputQtys": [ + "46444666852011073863680", + "32722335457418751770624" + ], + "expectedQty": "78596627763506131835280", + "swapFee": "47186288431162376527", "reserves": [ - "1635194781573365664834376", - "6310988209954592078167505" + "4586190294361967065238187", + "2492814481181558847006109" ], - "LPTokenSupply": "7845597123999411779736068" + "LPTokenSupply": "7025946363390220088017046" }, { "type": "mint", "inputIndex": 1, - "inputQty": "153959281318364610560", - "expectedQty": "151442924363222239355", + "inputQty": "39596673408168888", + "expectedQty": "39419527944825721", "reserves": [ - "1635194781573365664834376", - "6311142169235910442778065" + "4586190294361967065238187", + "2492814520778232255174997" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "1041779154615613312", - "expectedQty": "1043412230021162516", + "inputQty": "181172300004545469087744", + "expectedQty": "179504391784276544017822", "reserves": [ - "1635195823352520280447688", - "6311142169235910442778065" + "4767362594366512534325931", + "2492814520778232255174997" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "3928208576735396352", - "expectedQty": "3991083407815615576", - "swapFee": "2356925146041237", + "inputQty": "132435711580873113600", + "expectedQty": "131877264331739294746", "reserves": [ - "1635195823352520280447688", - "6311138178152502627162489" - ], - "LPTokenSupply": "7845745682363120802345710" + "4767362594366512534325931", + "2492946956489813128288597" + ] }, { - "type": "redeemMasset", - "inputQty": "187803088575578741145", - "expectedQtys": [ - "39118087888800661924", - "150978650021974677726" + "type": "redeemBassets", + "inputQtys": [ + "1712994166712428134400", + "1740754299342173765632" ], - "redemptionFee": "112681853145347244", + "expectedQty": "3430521867220305253738", + "swapFee": "2059548849641968333", "reserves": [ - "1635156705264631479785764", - "6310987199502480652484763" + "4765649600199800106191531", + "2491206202190470954522965" ], - "LPTokenSupply": "7845557890542730538139289" + "LPTokenSupply": "7202150296397171333130096" }, { "type": "mintMulti", "inputQtys": [ - "76671904870968311808", - "17355175355681560576" + "134815781854925824", + "4692338440800494592" ], - "expectedQty": "93863568373761957467", + "expectedQty": "4806126122568813326", "reserves": [ - "1635233377169502448097572", - "6311004554677836334045339" + "4765649735015581961117355", + "2491210894528911755017557" ], - "LPTokenSupply": "7845651754111104300096756" + "LPTokenSupply": "7202155102523293901943422" }, { - "type": "redeemBassets", - "inputQtys": [ - "4318205533663510016", - "970289386893339264" - ], - "expectedQty": "5279400857022613119", - "swapFee": "3169542239557302", + "type": "mint", + "inputIndex": 1, + "inputQty": "21971538205911199776768", + "expectedQty": "21878272428403217963432", "reserves": [ - "1635229058963968784587556", - "6311003584388449440706075" - ], - "LPTokenSupply": "7845646471857659261882064" + "4765649735015581961117355", + "2513182432734822954794325" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "27560491454072472", - "expectedQty": "27603665697268104", + "inputIndex": 1, + "inputQty": "252007958640589069615104", + "expectedQty": "250852158304501560220055", "reserves": [ - "1635229086524460238660028", - "6311003584388449440706075" + "4765649735015581961117355", + "2765190391375412024409429" ] }, { - "type": "mintMulti", - "inputQtys": [ - "184474771944557772800", - "384800773028309368832" + "type": "redeemMasset", + "inputQty": "244927887942979584", + "expectedQtys": [ + "156061276760536056", + "90552005908718386" ], - "expectedQty": "563275245727145714160", + "redemptionFee": "146956732765787", "reserves": [ - "1635413561296404796432828", - "6311388385161477750074907" + "4765649578954305200581299", + "2765190300823406115691043" ], - "LPTokenSupply": "7846209774707052104864328" + "LPTokenSupply": "7474885288343006410423903" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1363463017390796439552", + "expectedQty": "1356815870990262421964", + "reserves": [ + "4765649578954305200581299", + "2766553763840796912130595" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "30879056144323819077632", + "expectedQty": "30727477392999611560938", + "reserves": [ + "4765649578954305200581299", + "2797432819985120731208227" + ] }, { "type": "redeemMasset", - "inputQty": "1431364570960638666342", + "inputQty": "23985186582708920883609", "expectedQtys": [ - "298165429406618253233", - "1150680092515478333924" + "15217380342437664333571", + "8932591139752306676863" ], - "redemptionFee": "858818742576383199", + "redemptionFee": "14391111949625352530", "reserves": [ - "1635115395866998178179595", - "6310237705068962271740983" + "4750432198611867536247728", + "2788500228845368424531364" ], - "LPTokenSupply": "7844778496017965723836305" + "LPTokenSupply": "7482985834135482326058449" }, { "type": "mint", "inputIndex": 1, - "inputQty": "172974364232521506357248", - "expectedQty": "170132266619482167252254", + "inputQty": "5912515125033542090752", + "expectedQty": "5883257456132900854932", "reserves": [ - "1635115395866998178179595", - "6483212069301483778098231" + "4750432198611867536247728", + "2794412743970401966622116" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "32735002979098358185984", - "60609012698873426083840" + "73012399969015250944", + "47418794948564074496" ], - "expectedQty": "92414024024165989120045", + "expectedQty": "119548721652042304223", + "swapFee": "71772296369046810", "reserves": [ - "1667850398846096536365579", - "6543821082000357204182071" + "4750359186211898520996784", + "2794365325175453402547620" ], - "LPTokenSupply": "8107324786661613880208604" + "LPTokenSupply": "7488749478274896452467028" }, { - "type": "redeemBassets", - "inputQtys": [ - "10001022582918856", - "1703148477413576" - ], - "expectedQty": "11695918082244529", - "swapFee": "7021763907691", + "type": "redeem", + "inputIndex": 1, + "inputQty": "19180600697422776107008", + "expectedQty": "19264155227818144725408", + "swapFee": "11508360418453665664", "reserves": [ - "1667850388845073953446723", - "6543821080297208726768495" + "4750359186211898520996784", + "2775101169947635257822212" ], - "LPTokenSupply": "8107324774959376210447152" + "LPTokenSupply": "7469570028413515521726586" }, { - "type": "redeemMasset", - "inputQty": "5175336077357274785382", - "expectedQtys": [ - "1064038695464014047281", - "4174762252177126482632" + "type": "redeemBassets", + "inputQtys": [ + "128662396063078378635264", + "153734551113217056178176" ], - "redemptionFee": "3105201646414364871", + "expectedQty": "280503648064379264506483", + "swapFee": "168403230777093814992", "reserves": [ - "1666786350149609939399442", - "6539646318045031600285863" + "4621696790148820142361520", + "2621366618834418201644036" ], - "LPTokenSupply": "8102149749402183577098257" + "LPTokenSupply": "7188914817441436872786609" }, { - "type": "redeemMasset", - "inputQty": "7467247109270629095833", - "expectedQtys": [ - "1535251526610114821165", - "6023568642956348607751" - ], - "redemptionFee": "4480348265562377457", + "type": "swap", + "inputIndex": 1, + "inputQty": "7832896938135926784", + "outputIndex": 0, + "expectedQty": "7866500232287614975", + "swapFee": "0", "reserves": [ - "1665251098622999824578277", - "6533622749402075251678112" + "4621688923648587854746545", + "2621374451731356337570820" ], - "LPTokenSupply": "8094682950327739504240169" + "LPTokenSupply": "7188914817441436872786609", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "1436724212563449651", + "inputQty": "14143632538743793254", "expectedQtys": [ - "295387859427984742", - "1158956051643950923" + "9087358943809525712", + "5154256585103303510" ], - "redemptionFee": "862034527538069", + "redemptionFee": "8486179523246275", "reserves": [ - "1665250803235140396593535", - "6533621590446023607727189" + "4621679836289644045220833", + "2621369297474771234267310" ], - "LPTokenSupply": "8094681513689730393544324" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "12263498808135", - "expectedQty": "12061760334017", - "reserves": [ - "1665250803235140396593535", - "6533621590458287106535324" - ] + "LPTokenSupply": "7188900674657516081317982" }, { "type": "mintMulti", "inputQtys": [ - "541826059519276679168", - "980836013459051511808" + "3888071771636684800", + "6602108464245666816" ], - "expectedQty": "1507596601978689451217", + "expectedQty": "10423683783348692666", "reserves": [ - "1665792629294659673272703", - "6534602426471746158047132" + "4621683724361415681905633", + "2621375899583235479934126" ], - "LPTokenSupply": "8096189110303770843329558" + "LPTokenSupply": "7188911098341299430010648" }, { - "type": "redeemBassets", - "inputQtys": [ - "51412794146518447685632", - "201556562506105380405248" - ], - "expectedQty": "249755239646153453472844", - "swapFee": "149943109653484162581", + "type": "redeem", + "inputIndex": 0, + "inputQty": "25990249209694682873856", + "expectedQty": "26210677926305579167793", + "swapFee": "15594149525816809724", "reserves": [ - "1614379835148141225587071", - "6333045863965640777641884" + "4595473046435110102737840", + "2621375899583235479934126" ], - "LPTokenSupply": "7846298921858929254110390" + "LPTokenSupply": "7162922408546557328817764" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "59080124113891942400", - "expectedQty": "58929495116112115301", - "swapFee": "35448074468335165", + "inputQty": "108667573315791256289280", + "expectedQty": "109583837879667712895805", + "swapFee": "65200543989474753773", "reserves": [ - "1614320905653025113471770", - "6333045863965640777641884" + "4485889208555442389842035", + "2621375899583235479934126" ], - "LPTokenSupply": "7846239845279622809001506" + "LPTokenSupply": "7054261355285165020003861" }, { "type": "redeemBassets", "inputQtys": [ - "13141299769172380", - "111873700446580256" + "381531674933820981248", + "211310301685215920128" ], - "expectedQty": "123198526135430850", - "swapFee": "73963493777525", + "expectedQty": "588391543265788572428", + "swapFee": "353246874083923497", "reserves": [ - "1614320892511725344299390", - "6333045752091940331061628" + "4485507676880508568860787", + "2621164589281550264013998" ], - "LPTokenSupply": "7846239722014529529170882" + "LPTokenSupply": "7053672645819712555900284" }, { - "type": "redeemBassets", - "inputQtys": [ - "3088322001364094287872", - "4913291686045675421696" - ], - "expectedQty": "7926773217228470355453", - "swapFee": "4758919281906225948", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4869091041585073750016", + "expectedQty": "4890346476340151613441", + "swapFee": "2921454624951044250", "reserves": [ - "1611232570510361250011518", - "6328132460405894655639932" + "4485507676880508568860787", + "2616274242805210112400557" ], - "LPTokenSupply": "7838308665769947343212074" + "LPTokenSupply": "7048803846923589977254693" }, { "type": "mint", "inputIndex": 1, - "inputQty": "42762375825798062080", - "expectedQty": "42057892619273281301", + "inputQty": "1105941875390609883136", + "expectedQty": "1100478521156919649933", "reserves": [ - "1611232570510361250011518", - "6328175222781720453702012" + "4485507676880508568860787", + "2617380184680600722283693" ] }, { - "type": "redeemMasset", - "inputQty": "1583371991723734466560", - "expectedQtys": [ - "325278863611911477557", - "1277544708863155281562" - ], - "redemptionFee": "950023195034240679", + "type": "redeem", + "inputIndex": 0, + "inputQty": "27619763964924010496", + "expectedQty": "27851877404941589558", + "swapFee": "16571858378954406", "reserves": [ - "1610907291646749338533961", - "6326897678072857298420450" + "4485479825003103627271229", + "2617380184680600722283693" ], - "LPTokenSupply": "7836767446673162385450882" + "LPTokenSupply": "7049876707337967810789570" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "78980816787642695680", - "expectedQty": "77679644206995249447", - "reserves": [ - "1610907291646749338533961", - "6326976658889644941116130" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "268849328276807385088", - "859343146040925880320" - ], - "expectedQty": "1114568437238539405513", + "inputQty": "658460473977165185024", + "expectedQty": "661332731660514501416", + "swapFee": "395076284386299111", "reserves": [ - "1611176140975026145919049", - "6327836002035685866996450" + "4485479825003103627271229", + "2616718851948940207782277" ], - "LPTokenSupply": "7837959694754607920105842" + "LPTokenSupply": "7049218286371619084234457" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "903676959557194350592", - "expectedQty": "888789026547793091572", + "inputQty": "993148288466012209152", + "outputIndex": 0, + "expectedQty": "997143788851357304214", + "swapFee": "0", "reserves": [ - "1611176140975026145919049", - "6328739678995243061347042" - ] + "4484482681214252269967015", + "2617712000237406219991429" + ], + "LPTokenSupply": "7049218286371619084234457", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "76438617921147158528", - "10935373500201107456" + "54160325097585016832", + "80542803001304776704" ], - "expectedQty": "87345628012686209218", + "expectedQty": "133821453491795903832", + "swapFee": "80341076741122215", "reserves": [ - "1611252579592947293077577", - "6328750614368743262454498" + "4484428520889154684950183", + "2617631457434404915214725" ], - "LPTokenSupply": "7838935829409168399406632" + "LPTokenSupply": "7049084392611158221320630" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4858015657628611", - "expectedQty": "4845481069261780", - "swapFee": "2914809394577", - "reserves": [ - "1611252574747466223815797", - "6328750614368743262454498" + "type": "redeemMasset", + "inputQty": "508642154599135628492", + "expectedQtys": [ + "323389631392318529904", + "188767614022044023810" ], - "LPTokenSupply": "7838935824551444222717478" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "866254433758603116544", - "expectedQty": "880236182219962495317", - "swapFee": "519752660255161869", + "redemptionFee": "305185292759481377", "reserves": [ - "1611252574747466223815797", - "6327870378186523299959181" + "4484105131257762366420279", + "2617442689820382871190915" ], - "LPTokenSupply": "7838069622092951645117120" + "LPTokenSupply": "7048575780975088361640275" }, { "type": "redeemBassets", "inputQtys": [ - "718040386080677691392", - "1489937370080024199168" + "26989989032855", + "21605322847587" ], - "expectedQty": "2184856140809762672319", - "swapFee": "1311700704908802885", + "expectedQty": "48247549019699", + "swapFee": "28965908957", "reserves": [ - "1610534534361385546124405", - "6326380440816443275760013" + "4484105131230772377387424", + "2617442689798777548343328" ], - "LPTokenSupply": "7835883585421507464522203" + "LPTokenSupply": "7048575780926814743302513" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "16525296807750859227136", - "6189004683332833771520" + "33279816880467698778112", + "15158358602133012480000" ], - "expectedQty": "22643428103793389721784", + "expectedQty": "48066147348380154623258", + "swapFee": "28857002610594449443", "reserves": [ - "1627059831169136405351541", - "6332569445499776109531533" + "4450825314350304678609312", + "2602284331196644535863328" ], - "LPTokenSupply": "7858527013525300854243987" + "LPTokenSupply": "7000483662276085053674755" }, { - "type": "redeemMasset", - "inputQty": "94893271552691470336", - "expectedQtys": [ - "19635281765628741798", - "76421151196052032246" - ], - "redemptionFee": "56935962931614882", + "type": "mint", + "inputIndex": 1, + "inputQty": "1232098872902080528384", + "expectedQty": "1225990405283711128329", "reserves": [ - "1627040195887370776609743", - "6332493024348580057499287" - ], - "LPTokenSupply": "7858432125947344455935139" + "4450825314350304678609312", + "2603516430069546616391712" + ] }, { "type": "mintMulti", "inputQtys": [ - "13397969731764420608", - "49199009841914880000" + "6552357388721", + "6566896245237" ], - "expectedQty": "61812824016939667881", + "expectedQty": "13028211714009", "reserves": [ - "1627053593857102541030351", - "6332542223358421972379287" - ], - "LPTokenSupply": "7858493938771361395603020" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "131029500710233460178944", - "66553859935430818922496" + "4450825314356857035998033", + "2603516430076113512636949" ], - "hardLimitError": true + "LPTokenSupply": "7001709652694396976517093" }, { "type": "redeemBassets", "inputQtys": [ - "13526772677034591125504", - "10384371213512652881920" - ], - "expectedQty": "23765320747171799353590", - "swapFee": "14267753100163177518", - "reserves": [ - "1613526821180067949904847", - "6322157852144909319497367" + "47216194323204552", + "294029983420427904" ], - "LPTokenSupply": "7834715777046399449389662" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "231133358479111538868224", - "hardLimitError": true - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4711105540065433485312", - "expectedQty": "4699076698592138401595", - "swapFee": "2826663324039260091", + "expectedQty": "339366667675793639", + "swapFee": "203742245953048", "reserves": [ - "1608827744481475811503252", - "6322157852144909319497367" + "4450825267140662712793481", + "2603516136046130092209045" ], - "LPTokenSupply": "7830004954172666419830359" + "LPTokenSupply": "7001709313144361279365709" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "20493296224688519774208", - "expectedQty": "20530910797348639507356", + "inputIndex": 1, + "inputQty": "959639566629728", + "expectedQty": "954880584943048", "reserves": [ - "1629321040706164331277460", - "6322157852144909319497367" + "4450825267140662712793481", + "2603516137005769658838773" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "152043313010898152456192", - "hardLimitError": true - }, - { - "type": "mintMulti", - "inputQtys": [ - "19231914490794652729344", - "24323772654666618241024" + "type": "redeemMasset", + "inputQty": "235388898112362355097", + "expectedQtys": [ + "149541519568840943179", + "87474510002492326469" ], - "expectedQty": "43187812266987543241496", + "redemptionFee": "141233338867417413", "reserves": [ - "1648552955196958984006804", - "6346481624799575937738391" + "4450675725621093871850302", + "2603428662495767166512304" ], - "LPTokenSupply": "7893723677237002602579211" + "LPTokenSupply": "7001473939324463388695401" }, { - "type": "redeemMasset", - "inputQty": "29390928645097521152", - "expectedQtys": [ - "6134421820734868773", - "23615859740102826839" + "type": "redeemBassets", + "inputQtys": [ + "84426436463731343360", + "166580495747744825344" ], - "redemptionFee": "17634557187058512", + "expectedQty": "249427393268783792961", + "swapFee": "149746283731509181", "reserves": [ - "1648546820775138249138031", - "6346458008939835834911552" + "4450591299184630140506942", + "2603262082000019421686960" ], - "LPTokenSupply": "7893694288071813223763910" + "LPTokenSupply": "7001224377159539246544176" }, { - "type": "mintMulti", - "inputQtys": [ - "3621915878451757187072", - "1806801395246568046592" - ], - "expectedQty": "5404480690287793588439", + "type": "swap", + "inputIndex": 1, + "inputQty": "935095017215046713344", + "outputIndex": 0, + "expectedQty": "938834230320018397544", + "swapFee": "0", "reserves": [ - "1652168736653590006325103", - "6348264810335082402958144" + "4449652464954310122109398", + "2604197177017234468400304" ], - "LPTokenSupply": "7899098768762101017352349" + "LPTokenSupply": "7001224377159539246544176", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "14814291971337048660377", + "inputQty": "245918662758807581491", "expectedQtys": [ - "3096685500554174753948", - "11898651242887402250614" + "156200683403368365565", + "91417786438607077404" ], - "redemptionFee": "8888575182802229196", + "redemptionFee": "147551197655284548", "reserves": [ - "1649072051153035831571155", - "6336366159092195000707530" + "4449496264270906753743833", + "2604105759230795861322900" ], - "LPTokenSupply": "7884285365648282248914891" + "LPTokenSupply": "7000978473251900204491139" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "399538092560967616", - "expectedQty": "393010522084882257", + "inputIndex": 0, + "inputQty": "761488342677886336", + "expectedQty": "754693825249522938", "reserves": [ - "1649072051153035831571155", - "6336366558630287561675146" + "4449497025759249431630169", + "2604105759230795861322900" ] }, { - "type": "redeemMasset", - "inputQty": "12856459678580994369126", - "expectedQtys": [ - "2687435266086626769837", - "10326155813876393551552" + "type": "mint", + "inputIndex": 0, + "inputQty": "1428745779284607762432", + "expectedQty": "1415996764980842881314", + "reserves": [ + "4450925771538534039392601", + "2604105759230795861322900" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "2801143067833961807872", + "4189180795740492922880" ], - "redemptionFee": "7713875807148596621", + "expectedQty": "6944540108133162762460", "reserves": [ - "1646384615886949204801318", - "6326040402816411168123594" + "4453726914606368001200473", + "2608294940026536354245780" ], - "LPTokenSupply": "7871430070367804054287684" + "LPTokenSupply": "7009339764818839459657851" }, { - "type": "redeemMasset", - "inputQty": "1219412851601138778112", - "expectedQtys": [ - "254898788126008579524", - "979418792397653472580" + "type": "mintMulti", + "inputQtys": [ + "107547091493271928832", + "79758835162347995136" ], - "redemptionFee": "731647710960683266", + "expectedQty": "185950474637954368803", "reserves": [ - "1646129717098823196221794", - "6325060984024013514651014" + "4453834461697861273129305", + "2608374698861698702240916" ], - "LPTokenSupply": "7870210730680974011577898" + "LPTokenSupply": "7009525715293477414026654" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "41974316925536710950912", - "expectedQty": "41875751293666767181184", - "swapFee": "25184590155322026570", + "inputQty": "6516125168081423360", + "expectedQty": "6570830238215174287", + "swapFee": "3909675100848854", "reserves": [ - "1604253965805156429040610", - "6325060984024013514651014" + "4453827890867623057955018", + "2608374698861698702240916" ], - "LPTokenSupply": "7828238932214452832829643" + "LPTokenSupply": "7009519199559276842688179" }, { - "type": "redeemMasset", - "inputQty": "1637678828094138351616", - "expectedQtys": [ - "335410866450086729802", - "1322417915255942200836" - ], - "redemptionFee": "982607296856483010", + "type": "mint", + "inputIndex": 1, + "inputQty": "1585891841905121034240", + "expectedQty": "1578013492662591171662", + "reserves": [ + "4453827890867623057955018", + "2609960590703603823275156" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "5970524345254740492288", + "outputIndex": 1, + "expectedQty": "5941973641688291052485", + "swapFee": "4733810688577300020", "reserves": [ - "1603918554938706342310808", - "6323738566108757572450178" + "4459798415212877798447306", + "2604018617061915532222671" ], - "LPTokenSupply": "7826601351647088380126328" + "LPTokenSupply": "7011097686433008291589843", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "67791748847098863616", - "59172926393324003328" + "59847099649302233088", + "42050332003257800" ], - "expectedQty": "126128515650364437858", + "expectedQty": "59354438149280947186", + "swapFee": "35634043315557903", "reserves": [ - "1603986346687553441174424", - "6323797739035150896453506" + "4459738568113228496214218", + "2604018575011583528964871" ], - "LPTokenSupply": "7826727480162738744564186" + "LPTokenSupply": "7011038299924220026640543" }, { "type": "redeemMasset", - "inputQty": "15621048103999248", + "inputQty": "955393525375337653862", "expectedQtys": [ - "3199410529433146", - "12613838711318993" + "607363515568924868015", + "354636455068023285407" ], - "redemptionFee": "9372628862399", + "redemptionFee": "573236115225202592", "reserves": [ - "1603986343488142911741278", - "6323797726421312185134513" + "4459131204597659571346203", + "2603663938556515505679464" ], - "LPTokenSupply": "7826727464542627903451177" + "LPTokenSupply": "7010082963722456211506940" }, { - "type": "mintMulti", - "inputQtys": [ - "1229320064969627664384", - "17931588909672832172032" - ], - "expectedQty": "18867387771631535407461", + "type": "mint", + "inputIndex": 1, + "inputQty": "42940029802811865694208", + "expectedQty": "42725485558342578046662", "reserves": [ - "1605215663553112539405662", - "6341729315330985017306545" - ], - "LPTokenSupply": "7845594852314259438858638" + "4459131204597659571346203", + "2646603968359327371373672" + ] }, { - "type": "redeemMasset", - "inputQty": "2129065907056087452876", - "expectedQtys": [ - "435347407184834938920", - "1719928030347215135684" + "type": "redeemBassets", + "inputQtys": [ + "117791717130978869248", + "97620562638793637888" ], - "redemptionFee": "1277439544233652471", + "expectedQty": "213874453501106683337", + "swapFee": "128401713128541134", "reserves": [ - "1604780316145927704466742", - "6340009387300637802170861" + "4459013412880528592476955", + "2646506347796688577735784" ], - "LPTokenSupply": "7843465914151157774771009" + "LPTokenSupply": "7052594459265755867183243" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5174599165465687040", - "580509857717283584" + "7482856719156032512", + "11802970364058601472" ], - "expectedQty": "5756518673485943628", + "expectedQty": "19159888581720987756", + "swapFee": "11502834849942558", "reserves": [ - "1604785490745093170153782", - "6340009967810495519454445" + "4459005930023809436444443", + "2646494544826324519134312" ], - "LPTokenSupply": "7843471670669831260714637" + "LPTokenSupply": "7052575289024622781247183" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1818932275163209662464", - "expectedQty": "1822772290356222013714", + "inputQty": "2703947003503767040", + "expectedQty": "2679945631404279520", "reserves": [ - "1606604423020256379816246", - "6340009967810495519454445" + "4459008633970812940211483", + "2646494544826324519134312" ] }, { "type": "redeemBassets", "inputQtys": [ - "41336959758595520", - "4666980226190922" + "16183918046211549184", + "392973862230023798784" ], - "expectedQty": "46013546702295204", - "swapFee": "27624702843082", + "expectedQty": "407032678134670144680", + "swapFee": "244366226616772150", "reserves": [ - "1606604381683296621220726", - "6340009963143515293263523" + "4458992450052766728662299", + "2646101570964094495335528" ], - "LPTokenSupply": "7845294396921778547874372" + "LPTokenSupply": "7052170716362515560287087" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "49718680499417", - "expectedQty": "49822923645638", + "inputIndex": 1, + "inputQty": "5472398472601938944", + "expectedQty": "5444807711982000906", "reserves": [ - "1606604381733015301720143", - "6340009963143515293263523" + "4458992450052766728662299", + "2646107043362567097274472" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "48133489603831209984", - "expectedQty": "47338691494035671897", + "inputIndex": 0, + "inputQty": "365488046064616960", + "expectedQty": "362243634224966195", "reserves": [ - "1606604381733015301720143", - "6340058096633119124473507" + "4458992815540812793279259", + "2646107043362567097274472" ] }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1577755321499568832512", + "expectedQty": "1584796236133969953678", + "swapFee": "946653192899741299", + "reserves": [ + "4458992815540812793279259", + "2644522247126433127320794" + ], + "LPTokenSupply": "7050598862757681488395805" + }, { "type": "mintMulti", "inputQtys": [ - "311813153600491665489920", - "39416788968260583292928" + "5171002279038621696", + "1573537635756768755712" ], - "expectedQty": "350623859772490014113405", + "expectedQty": "1570731741274861468052", "reserves": [ - "1918417535333506967210063", - "6379474885601379707766435" + "4458997986543091831900955", + "2646095784762189896076506" ], - "LPTokenSupply": "8195965595435585521305312" + "LPTokenSupply": "7052169594498956349863857" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "23648106971855958016", - "expectedQty": "23609576018986201603", + "type": "mintMulti", + "inputQtys": [ + "31791216955703910400", + "28595450032730955776" + ], + "expectedQty": "59960278715284152475", "reserves": [ - "1918441183440478823168079", - "6379474885601379707766435" - ] + "4459029777760047535811355", + "2646124380212222627032282" + ], + "LPTokenSupply": "7052229554777671634016332" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "116379686592857178636288", - "expectedQty": "116430526926198087838102", - "swapFee": "69827811955714307181", + "type": "mint", + "inputIndex": 1, + "inputQty": "1672559094221863124992", + "expectedQty": "1664123211475943126187", "reserves": [ - "1802010656514280735329977", - "6379474885601379707766435" - ], - "LPTokenSupply": "8079616501199942900301345" + "4459029777760047535811355", + "2647796939306444490157274" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "6654445190222888042496", - "5793799156902643367936" + "type": "redeemMasset", + "inputQty": "60323130563999406489", + "expectedQtys": [ + "38109625430012136041", + "22629709735284757699" ], - "expectedQty": "12353795606360905110482", - "swapFee": "7416727400256697084", + "redemptionFee": "36193878338399643", "reserves": [ - "1795356211324057847287481", - "6373681086444477064398499" + "4458991668134617523675314", + "2647774309596709205399575" ], - "LPTokenSupply": "8067256030538921764163486" + "LPTokenSupply": "7053833358477971411575994" }, { "type": "redeemMasset", - "inputQty": "4304849397543384960204", + "inputQty": "3537434345629175808", "expectedQtys": [ - "957463210860227316904", - "3399083212308964735088" + "2234802757372045608", + "1327038435678670898" ], - "redemptionFee": "2582909638526030976", + "redemptionFee": "2122460607377505", "reserves": [ - "1794398748113197619970577", - "6370282003232168099663411" + "4458989433331860151629706", + "2647772982558273526728677" ], - "LPTokenSupply": "8062951439432342231806379" + "LPTokenSupply": "7053829821255871843137936" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "910572708542915411968", - "expectedQty": "910346612843269409317", - "swapFee": "546343625125749247", + "inputQty": "1073395882120425111552", + "outputIndex": 1, + "expectedQty": "1068405981681764039818", + "swapFee": "851095292515927747", "reserves": [ - "1793488401500354350561260", - "6370282003232168099663411" + "4460062829213980576741258", + "2646704576576591762688859" ], - "LPTokenSupply": "8062040921358161828969335" + "LPTokenSupply": "7053829906365401094730710", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "164750608696118738944", - "18828106852106506240" - ], - "expectedQty": "183222636176184458643", - "reserves": [ - "1793653152109050469300204", - "6370300831339020206169651" + "16076979542285120176128", + "1142136544529745969152" ], - "LPTokenSupply": "8062224143994338013427978" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1517875895093410398208", - "expectedQty": "1541428538574044443533", - "swapFee": "910725537056046238", + "expectedQty": "17070563827363048646518", "reserves": [ - "1793653152109050469300204", - "6368759402800446161726118" + "4476139808756265696917386", + "2647846713121121508658011" ], - "LPTokenSupply": "8060706359171798308634393" + "LPTokenSupply": "7070900470192764143377228" }, { "type": "redeemMasset", - "inputQty": "15825517267682867", + "inputQty": "609895198115851193548", "expectedQtys": [ - "3519351328968612", - "12496229743064829" + "385854418578175610108", + "228250992512981242460" ], - "redemptionFee": "9495310360609", + "redemptionFee": "365937118869510716", "reserves": [ - "1793653148589699140331592", - "6368759390304216418661289" + "4475753954337687521307278", + "2647618462128608527415551" ], - "LPTokenSupply": "8060706343347230571987586" + "LPTokenSupply": "7070290611588360179134751" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3018507453268576698368", - "expectedQty": "3017710273926459512041", - "swapFee": "1811104471961146019", - "reserves": [ - "1790635438315772680819551", - "6368759390304216418661289" + "type": "mintMulti", + "inputQtys": [ + "240367233509114118144", + "158239693816620744704" ], - "LPTokenSupply": "8057688017004409191403819" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "36975675001917521920", - "expectedQty": "36965258675942529488", - "swapFee": "22185405001150513", + "expectedQty": "395675562379455609287", "reserves": [ - "1790598473057096738290063", - "6368759390304216418661289" + "4475994321571196635425422", + "2647776701822425148160255" ], - "LPTokenSupply": "8057651043547947773996950" + "LPTokenSupply": "7070686287150739634744038" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "12027463199455115739136", - "outputIndex": 1, - "expectedQty": "12206472394290788513519", - "swapFee": "9618237600028656691", + "inputQty": "30945447701945778176000", + "expectedQty": "31203850376587133618440", + "swapFee": "18567268621167466905", "reserves": [ - "1802625936256551854029199", - "6356552917909925630147770" + "4444790471194609501806982", + "2647776701822425148160255" ], - "LPTokenSupply": "8057652005371707776862619", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7039742696175655973314728" }, { "type": "redeemBassets", "inputQtys": [ - "3229928614668531200", - "16700993350739666944" + "44037919417922899410944", + "57634359894399850119168" ], - "expectedQty": "19664923732885577483", - "swapFee": "11806037862448815", + "expectedQty": "100990896814564262599351", + "swapFee": "60630916638721790633", "reserves": [ - "1802622706327937185497999", - "6356536216916574890480826" + "4400752551776686602396038", + "2590142341928025298041087" ], - "LPTokenSupply": "8057632329822540815081201" + "LPTokenSupply": "6938697231536116861103806" }, { "type": "mintMulti", "inputQtys": [ - "14379558071441771462656", - "3473579464883728547840" + "57962492110460529147904", + "77051760634745359171584" + ], + "expectedQty": "134109852558184727227893", + "reserves": [ + "4458715043887147131543942", + "2667194102562770657212671" ], - "expectedQty": "17789971904907373826994", + "LPTokenSupply": "7072807084094301588331699" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "1229995900360281292800", + "outputIndex": 1, + "expectedQty": "1224358616808504372081", + "swapFee": "975277384997003196", "reserves": [ - "1817002264399378956960655", - "6360009796381458619028666" + "4459945039787507412836742", + "2665969743945962152840590" ], - "LPTokenSupply": "8075422301727448188908195" + "LPTokenSupply": "7072807181622040088032018", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "5530683869931135565824", - "expectedQty": "5443352789241443597152", + "inputQty": "8575665597371083915264", + "expectedQty": "8531912486662909875938", "reserves": [ - "1817002264399378956960655", - "6365540480251389754594490" + "4459945039787507412836742", + "2674545409543333236755854" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "207078036987107136765952", - "expectedQty": "210254134083140827312407", - "swapFee": "124246822192264282059", + "type": "redeemBassets", + "inputQtys": [ + "9006400627462377570304", + "10978579006528929398784" + ], + "expectedQty": "19849171590901169775576", + "swapFee": "11916652946308486957", "reserves": [ - "1817002264399378956960655", - "6155286346168248927282083" + "4450938639160045035266438", + "2663566830536804307357070" ], - "LPTokenSupply": "7873800042211801722167600" + "LPTokenSupply": "7061479197530150150494117" }, { - "type": "mintMulti", - "inputQtys": [ - "1618145190802102943744", - "3967109165830856245248" + "type": "redeemMasset", + "inputQty": "3286708068401698308096", + "expectedQtys": [ + "2070410202559178350546", + "1238991679782471881929" ], - "expectedQty": "5521192818469982476224", + "redemptionFee": "1972024841041018984", "reserves": [ - "1818620409590181059904399", - "6159253455334079783527331" + "4448868228957485856915892", + "2662327838857021835475141" ], - "LPTokenSupply": "7879321235030271704643824" + "LPTokenSupply": "7058192686664232556287919" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "25157380889849123307520", - "expectedQty": "25171932065549395311755", - "swapFee": "15094428533909473984", + "type": "redeemBassets", + "inputQtys": [ + "58884916604392993456128", + "40091058894583906697216" + ], + "expectedQty": "98249697531519310814616", + "swapFee": "58985209644698405532", "reserves": [ - "1793448477524631664592644", - "6159253455334079783527331" + "4389983312353092863459764", + "2622236779962437928777925" ], - "LPTokenSupply": "7854165363583275972283702" + "LPTokenSupply": "6959889902444033016908323" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "55013127300104306294784", - "expectedQty": "55855276865887406049957", - "swapFee": "33007876380062583776", + "inputIndex": 0, + "inputQty": "61133211421146144768", + "expectedQty": "61643616855116752473", + "swapFee": "36679926852687686", "reserves": [ - "1793448477524631664592644", - "6103398178468192377477374" + "4389921668736237746707291", + "2622236779962437928777925" ], - "LPTokenSupply": "7799155537070809672247295" + "LPTokenSupply": "6959828772900604556032323" }, { "type": "mintMulti", "inputQtys": [ - "408349375970242985984", - "13235617334898150342656" + "26549764647035072413696", + "15115202556097917353984" ], - "expectedQty": "13436314476279148973884", + "expectedQty": "41352274691473890712941", "reserves": [ - "1793856826900601907578628", - "6116633795803090527820030" + "4416471433383272819120987", + "2637351982518535846131909" ], - "LPTokenSupply": "7812591851547088821221179" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "253085128582459097088", - "expectedQty": "252784334698053445635", - "reserves": [ - "1794109912029184366675716", - "6116633795803090527820030" - ] + "LPTokenSupply": "7001181047592078446745264" }, { "type": "mint", "inputIndex": 1, - "inputQty": "41752194652330759553024", - "expectedQty": "41097700555952444856511", + "inputQty": "55098775964609740800", + "expectedQty": "54817941378617171858", "reserves": [ - "1794109912029184366675716", - "6158385990455421287373054" + "4416471433383272819120987", + "2637407081294500455872709" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1631414206335304859648", - "854723165464282136576" + "1062934893875048349696", + "158259764921750683648" ], - "expectedQty": "2471007219606400249990", - "swapFee": "1483494428420892685", + "expectedQty": "1210953349061202416176", "reserves": [ - "1792478497822849061816068", - "6157531267289957005236478" + "4417534368277147867470683", + "2637565341059422206556357" ], - "LPTokenSupply": "7851469994073147340469917" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "36610354687680720", - "expectedQty": "36035588930072785", - "reserves": [ - "1792478497822849061816068", - "6157531303900311692917198" - ] + "LPTokenSupply": "7002446818882518266333298" }, { "type": "redeemMasset", - "inputQty": "1312987696547230646272", + "inputQty": "2699487287951494348", "expectedQtys": [ - "299573214139353746077", - "1029095437470295047001" + "1701965489033468916", + "1016187948143721928" ], - "redemptionFee": "787792617928338387", + "redemptionFee": "1619692372770896", "reserves": [ - "1792178924608709708069991", - "6156502208462841397870197" + "4417532666311658834001767", + "2637564324871474062834429" ], - "LPTokenSupply": "7850157121191450832730268" + "LPTokenSupply": "7002444119557199552116039" }, { - "type": "redeemMasset", - "inputQty": "3775841353314467630284", - "expectedQtys": [ - "861501623686244787109", - "2959434784100414442417" + "type": "redeem", + "inputIndex": 0, + "inputQty": "5742540592025490432", + "expectedQty": "5790493937214876665", + "swapFee": "3445524355215294", + "reserves": [ + "4417526875817721619125102", + "2637564324871474062834429" + ], + "LPTokenSupply": "7002438377361159962147136" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1146248238390010183680", + "1363886258717581115392" ], - "redemptionFee": "2265504811988680578", + "expectedQty": "2493010055765213271277", + "swapFee": "1496704055892663560", "reserves": [ - "1791317422985023463282882", - "6153542773678740983427780" + "4416380627579331608941422", + "2636200438612756481719037" ], - "LPTokenSupply": "7846381506388617563968041" + "LPTokenSupply": "6999944020271744445478654" }, { "type": "mintMulti", "inputQtys": [ - "552732364401621270528", - "51974217023219220480" + "18454147225849348", + "9991768354227940" ], - "expectedQty": "603312381640682435199", + "expectedQty": "28231183966692905", "reserves": [ - "1791870155349425084553410", - "6153594747895764202648260" + "4416380646033478834790770", + "2636200448604524835946977" ], - "LPTokenSupply": "7846984818770258246403240" + "LPTokenSupply": "6999944048502928412171559" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "8975391980673870856192", - "expectedQty": "9113026205092540315333", - "swapFee": "5385235188404322513", + "inputQty": "161148090736200286208", + "outputIndex": 0, + "expectedQty": "161763059202465092495", + "swapFee": "0", + "reserves": [ + "4416218882974276369698275", + "2636361596695261036233185" + ], + "LPTokenSupply": "6999944048502928412171559", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "1867349155281810069913", + "expectedQtys": [ + "1177391500559756077593", + "702870446099948945924" + ], + "redemptionFee": "1120409493169086041", "reserves": [ - "1791870155349425084553410", - "6144481721690671662332927" + "4415041491473716613620682", + "2635658726249161087287261" ], - "LPTokenSupply": "7838009965313103215979299" + "LPTokenSupply": "6998076811388595919010250" }, { "type": "redeemBassets", "inputQtys": [ - "2021529339527263420416", - "1530784406981675581440" + "18514952587381", + "76445978158556" ], - "expectedQty": "3526128150788683729306", - "swapFee": "2116947058708435298", + "expectedQty": "94407043021447", + "swapFee": "56678232752", "reserves": [ - "1789848626009897821132994", - "6142950937283689986751487" + "4415041491455201661033301", + "2635658726172715109128705" ], - "LPTokenSupply": "7834481931909961694658223" + "LPTokenSupply": "6998076811294137865579325" }, { "type": "redeemBassets", "inputQtys": [ - "62654613547701641216", - "47147019113904332800" + "261141691038113088", + "1247133693261550336" ], - "expectedQty": "108995121957314179272", - "swapFee": "65436334975373731", + "expectedQty": "1499602472632073648", + "swapFee": "900301664577990", "reserves": [ - "1789785971396350119491778", - "6142903790264576082418687" + "4415041230313510622920213", + "2635657479039021847578369" ], - "LPTokenSupply": "7834372877895302902642592" + "LPTokenSupply": "6998075310881393735385485" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "13598110281334716891136", - "expectedQty": "13582677870821560796084", + "inputQty": "58704042939202890891264", + "expectedQty": "59192968607879997680682", + "swapFee": "35222425763521734534", "reserves": [ - "1803384081677684836382914", - "6142903790264576082418687" - ] + "4355848261705630625239531", + "2635657479039021847578369" + ], + "LPTokenSupply": "6939374790184767196667674" }, { - "type": "redeemMasset", - "inputQty": "60924761967413964", - "expectedQtys": [ - "13991519534512692", - "47659596895277624" + "type": "redeemBassets", + "inputQtys": [ + "15208483269195907072", + "71123063239230922752" ], - "redemptionFee": "36554857180448", + "expectedQty": "85829123241122780292", + "swapFee": "51528390979261224", "reserves": [ - "1803384067686165301870222", - "6142903742604979187141063" + "4355833053222361429332459", + "2635586355975782616655617" ], - "LPTokenSupply": "7847955494845017981742756" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "19917520811162064650240", - "expectedQty": "19891364251504854651533", - "reserves": [ - "1823301588497327366520462", - "6142903742604979187141063" - ] + "LPTokenSupply": "6939288914685974192552279" }, { - "type": "mintMulti", - "inputQtys": [ - "25671876544909233094656", - "29151087750610683953152" + "type": "redeemMasset", + "inputQty": "1817164252398773248", + "expectedQtys": [ + "1139960455965885617", + "689756514399231918" ], - "expectedQty": "54330605255583841946520", + "redemptionFee": "1090298551439263", "reserves": [ - "1848973465042236599615118", - "6172054830355589871094215" + "4355831913261905463446842", + "2635585666219268217423699" ], - "LPTokenSupply": "7922177464352106678340809" + "LPTokenSupply": "6939287097630751648922957" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "57224440530335888", - "expectedQty": "58092839054727256", - "swapFee": "34334664318201", + "inputQty": "6383488730536321482752", + "expectedQty": "6412798443057053709057", + "swapFee": "3830093238321792889", "reserves": [ - "1848973465042236599615118", - "6172054772262750816366959" + "4355831913261905463446842", + "2629172867776211163714642" ], - "LPTokenSupply": "7922177407131099614436741" + "LPTokenSupply": "6932903991909539159619493" }, { "type": "redeemBassets", "inputQtys": [ - "52959786354442955128832", - "23016621765838136934400" + "5279163808443", + "5801449065684" ], - "expectedQty": "75545461419192754938985", - "swapFee": "45354489545242798642", + "expectedQty": "11003970690513", + "swapFee": "6606346222", "reserves": [ - "1796013678687793644486286", - "6149038150496912679432559" + "4355831913256626299638399", + "2629172867770409714648958" ], - "LPTokenSupply": "7846591126671316140978977" + "LPTokenSupply": "6932903991898529243217379" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5227773062143260229632", - "expectedQty": "5145753394556797266940", + "type": "mintMulti", + "inputQtys": [ + "366196928659317784576", + "761773813343404032000" + ], + "expectedQty": "1120799239856174935586", "reserves": [ - "1796013678687793644486286", - "6154265923559055939662191" - ] + "4356198110185285617422975", + "2629934641583753118680958" + ], + "LPTokenSupply": "6934024791138385418152965" }, { - "type": "redeemBassets", - "inputQtys": [ - "4457812236812399616", - "8067753751250510848" - ], - "expectedQty": "12394074553624012997", - "swapFee": "7440909277741052", + "type": "redeem", + "inputIndex": 0, + "inputQty": "6047346408333794", + "expectedQty": "6097651478827814", + "swapFee": "3628407845000", "reserves": [ - "1796009220875556832086670", - "6154257855805304689151343" + "4356198104087634138595161", + "2629934641583753118680958" ], - "LPTokenSupply": "7851724479294500964265972" + "LPTokenSupply": "6934024785091401850603671" }, { "type": "swap", "inputIndex": 1, - "inputQty": "18185178841893654495232", + "inputQty": "37931737256312973557760", "outputIndex": 0, - "expectedQty": "17916545159532709106574", + "expectedQty": "38068790334070596686980", "swapFee": "0", "reserves": [ - "1778092675716024122980096", - "6172443034647198343646575" + "4318129313753563541908181", + "2667866378840066092238718" ], - "LPTokenSupply": "7851724479294500964265972", + "LPTokenSupply": "6934024785091401850603671", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "35780677317794155462656", - "expectedQty": "35782013428063392544353", - "swapFee": "21468406390676493277", + "inputQty": "19623403649917425549312", + "outputIndex": 1, + "expectedQty": "19538071776809717869009", + "swapFee": "15560946964987641962", "reserves": [ - "1742310662287960730435743", - "6172443034647198343646575" + "4337752717403480967457493", + "2648328307063256374369709" ], - "LPTokenSupply": "7815945948817345876452643" + "LPTokenSupply": "6934026341186098349367867", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "97655481470835916", + "inputQty": "950786025712528384", "expectedQtys": [ - "21756048467975034", - "77074641586165582" + "594430984119783433", + "362917967989243726" ], - "redemptionFee": "58593288882501", + "redemptionFee": "570471615427517", "reserves": [ - "1742310640531912262460709", - "6172442957572556757480993" + "4337752122972496847674060", + "2648327944145288385125983" ], - "LPTokenSupply": "7815945851167723734504977" + "LPTokenSupply": "6934025390457119798382234" }, { - "type": "swap", + "type": "redeemMasset", + "inputQty": "2583039563934522251673", + "expectedQtys": [ + "1614915142419086146357", + "985954194210868895674" + ], + "redemptionFee": "1549823738360713351", + "reserves": [ + "4336137207830077761527703", + "2647341989951077516230309" + ], + "LPTokenSupply": "6931442505875559112201896" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1898318794176009728", + "663355933314560384" + ], + "expectedQty": "2541483685377418090", + "swapFee": "1525805694643236", + "reserves": [ + "4336135309511283585517975", + "2647341326595144201669925" + ], + "LPTokenSupply": "6931439963018648609604892" + }, + { + "type": "mintMulti", + "inputQtys": [ + "2607373804959683837952", + "1323453042335564693504" + ], + "expectedQty": "3900939245883771027390", + "reserves": [ + "4338742683316243269355927", + "2648664779637479766363429" + ], + "LPTokenSupply": "6935340902264532380632282" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "28608232839009759232", + "539046245723724251136" + ], + "expectedQty": "564585963827751882449", + "swapFee": "338954951267411576", + "reserves": [ + "4338714075083404259596695", + "2648125733391756042112293" + ], + "LPTokenSupply": "6934776011241248488079413" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "5364424639879624785920", - "outputIndex": 0, - "expectedQty": "5281203201293473975224", - "swapFee": "0", + "inputQty": "12351397491977255649280", + "expectedQty": "12408656711395976430873", + "swapFee": "7410838495186353389", "reserves": [ - "1737029437330618788485485", - "6177807382212436382266913" + "4338714075083404259596695", + "2635717076680360065681420" ], - "LPTokenSupply": "7815945851167723734504977", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6922425354833120751065471" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1838710335634497863680", - "expectedQty": "1838047453575342860062", + "inputQty": "91524031742774", + "expectedQty": "90716095815020", "reserves": [ - "1738868147666253286349165", - "6177807382212436382266913" + "4338714075174928291339469", + "2635717076680360065681420" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "137518868999237143625728", - "outputIndex": 1, - "expectedQty": "139400516015787408356706", - "swapFee": "109889894509291610934", + "inputIndex": 1, + "inputQty": "44788808472449752498176", + "outputIndex": 0, + "expectedQty": "44947387177151445284149", + "swapFee": "0", "reserves": [ - "1876387016665490429974893", - "6038406866196648973910207" + "4293766687997776846055320", + "2680505885152809818179596" ], - "LPTokenSupply": "7817794887610750006526132", + "LPTokenSupply": "6922425354923836846880491", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4075230922424398118912", - "expectedQty": "4136310344636902518702", - "swapFee": "2445138553454638871", + "inputIndex": 0, + "inputQty": "3735274866922313744384", + "expectedQty": "3765935081434596876314", + "swapFee": "2241164920153388246", "reserves": [ - "1876387016665490429974893", - "6034270555852012071391505" + "4290000752916342249179006", + "2680505885152809818179596" ], - "LPTokenSupply": "7813719901202180953871107" + "LPTokenSupply": "6918690304173406548474931" }, { "type": "redeemMasset", - "inputQty": "156975593017944650547", + "inputQty": "2711320220058930642944", "expectedQtys": [ - "37673507652628248985", - "121154184048826920936" + "1680171583770241320360", + "1049815624228277210100" ], - "redemptionFee": "94185355810766790", + "redemptionFee": "1626792132035358385", "reserves": [ - "1876349343157837801725908", - "6034149401667963244470569" + "4288320581332572007858646", + "2679456069528581540969496" ], - "LPTokenSupply": "7813562935027698590297239" + "LPTokenSupply": "6915979146632560821367825" }, { "type": "mintMulti", "inputQtys": [ - "39935312739571335168", - "23319731262319874048" + "10153732913237760000", + "7511169694599826432" ], - "expectedQty": "62805969940148512961", + "expectedQty": "17536015162894298557", "reserves": [ - "1876389278470577373061076", - "6034172721399225564344617" + "4288330735065485245618646", + "2679463580698276140795928" ], - "LPTokenSupply": "7813625740997638738810200" + "LPTokenSupply": "6915996682647723715666382" }, { "type": "mint", "inputIndex": 0, - "inputQty": "14703945481081104384", - "expectedQty": "14670446948551561898", + "inputQty": "2234493272796842950656", + "expectedQty": "2214971641528557544045", "reserves": [ - "1876403982416058454165460", - "6034172721399225564344617" + "4290565228338282088569302", + "2679463580698276140795928" ] }, - { - "type": "redeemMasset", - "inputQty": "1044660717388670", - "expectedQtys": [ - "250719165959327", - "806267075822207" - ], - "redemptionFee": "626796430433", - "reserves": [ - "1876403982165339288206133", - "6034172720592958488522410" - ], - "LPTokenSupply": "7813640410399989252626471" - }, { "type": "mint", "inputIndex": 1, - "inputQty": "3404782470062378319872", - "expectedQty": "3352493144974347753135", + "inputQty": "165331634866232328192", + "expectedQty": "164447461027379517587", "reserves": [ - "1876403982165339288206133", - "6037577503063020866842282" + "4290565228338282088569302", + "2679628912333142373124120" ] }, { "type": "redeemBassets", "inputQtys": [ - "117202722692816896000", - "81371741821912989696" + "216091385270339970793472", + "263142939484499960922112" ], - "expectedQty": "197058827118947616968", - "swapFee": "118306280039392205", + "expectedQty": "475956607022581432059449", + "swapFee": "285745411460425114304", "reserves": [ - "1876286779442646471310133", - "6037496131321198953852586" + "4074473843067942117775830", + "2416485972848642412202008" ], - "LPTokenSupply": "7816795738242192617309652" + "LPTokenSupply": "6442162323857383838065690" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6531434465419842289664", - "4516432080027925348352" + "6331702844431147204608", + "16654298086574032683008" ], - "expectedQty": "10963564884952015923016", + "expectedQty": "22844486556118575321875", + "swapFee": "13714920886202866913", "reserves": [ - "1882818213908066313599797", - "6042012563401226879200938" + "4068142140223510970571222", + "2399831674762068379519000" ], - "LPTokenSupply": "7827759303127144633232668" + "LPTokenSupply": "6419305493872467680163592" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "13297591812027607678976", - "expectedQty": "13266010157406416885407", + "type": "redeemBassets", + "inputQtys": [ + "20900613694520133943296", + "4751712794065505353728" + ], + "expectedQty": "25440840640120595937124", + "swapFee": "15273668585223491657", "reserves": [ - "1896115805720093921278773", - "6042012563401226879200938" - ] + "4047241526528990836627926", + "2395079961968002874165272" + ], + "LPTokenSupply": "6393850906930620383083975" }, { "type": "redeemBassets", "inputQtys": [ - "31710792439837285679104", - "255273970851291791884288" + "24206044766150533840896", + "11097115401232572219392" ], - "expectedQty": "283010690078067959757564", - "swapFee": "169908359062278142740", + "expectedQty": "35029733053806054749532", + "swapFee": "21030458107147921602", "reserves": [ - "1864405013280256635599669", - "5786738592549935087316650" + "4023035481762840302787030", + "2383982846566770301945880" ], - "LPTokenSupply": "7557861705683327040032044" + "LPTokenSupply": "6358802246464517895205000" + }, + { + "type": "redeemMasset", + "inputQty": "16910372602665952870", + "expectedQtys": [ + "10692298287899041581", + "6336075290481174865" + ], + "redemptionFee": "10146223561599571", + "reserves": [ + "4023024789464552403745449", + "2383976510491479820771015" + ], + "LPTokenSupply": "6358785337106537585412087" }, { "type": "mintMulti", "inputQtys": [ - "1598990831754250813440", - "2363341101597036904448" + "153787036677060362240", + "124337248761759498240" ], - "expectedQty": "3921811186671198125574", + "expectedQty": "276111481231342240367", "reserves": [ - "1866004004112010886413109", - "5789101933651532124221098" + "4023178576501229464107689", + "2384100847740241580269255" ], - "LPTokenSupply": "7561783516869998238157618" + "LPTokenSupply": "6359061448587768927652454" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "2568381922663806", - "expectedQty": "2529377457419502", + "inputQty": "44073805913057763328", + "outputIndex": 0, + "expectedQty": "44244908647396965616", + "swapFee": "0", "reserves": [ - "1866004004112010886413109", - "5789101936219914046884904" - ] + "4023134331592582067142073", + "2384144921546154638032583" + ], + "LPTokenSupply": "6359061448587768927652454", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "127579347455447801004032", + "outputIndex": 1, + "expectedQty": "126933560415360874849512", + "swapFee": "101143911216146276161", + "reserves": [ + "4150713679048029868146105", + "2257211361130793763183071" + ], + "LPTokenSupply": "6359071562978890542280070", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "113655797344029848371", + "inputQty": "20106189941755974831308", "expectedQtys": [ - "28029752913050544222", - "86959672381799589986" + "13115902813199152952920", + "7132596254683239361482" ], - "redemptionFee": "68193478406417909", + "redemptionFee": "12063713965053584898", "reserves": [ - "1865975974359097835868887", - "5789014976547532247294918" + "4137597776234830715193185", + "2250078764876110523821589" ], - "LPTokenSupply": "7561669870421379506370539" + "LPTokenSupply": "6338966579408531072807251" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "871411071186623528960", - "expectedQty": "858177129610626189956", + "inputQty": "878878238040342659072", + "expectedQty": "882416176293052498580", + "swapFee": "527326942824205595", "reserves": [ - "1865975974359097835868887", - "5789886387618718870823878" - ] + "4137597776234830715193185", + "2249196348699817471323009" + ], + "LPTokenSupply": "6338087753903185012568738" }, { - "type": "redeemMasset", - "inputQty": "2507475160174547763", - "expectedQtys": [ - "618322476656347972", - "1918576090981504604" - ], - "redemptionFee": "1504485096104728", + "type": "redeem", + "inputIndex": 1, + "inputQty": "116589515192635244544", + "expectedQty": "117058688826683104203", + "swapFee": "69953709115581146", "reserves": [ - "1865975356036621179520915", - "5789884469042627889319274" + "4137597776234830715193185", + "2249079290010990788218806" ], - "LPTokenSupply": "7562525540226278467623204" + "LPTokenSupply": "6337971171383363288882308" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "121377003656352284803072", - "expectedQty": "121588006513272853756942", - "swapFee": "72826202193811370881", + "inputQty": "7684099309739354095616", + "expectedQty": "7751303650500468647360", + "swapFee": "4610459585843612457", "reserves": [ - "1744387349523348325763973", - "5789884469042627889319274" + "4129846472584330246545825", + "2249079290010990788218806" ], - "LPTokenSupply": "7441155819190145563957220" + "LPTokenSupply": "6330287533119582519147937" }, { "type": "mint", "inputIndex": 0, - "inputQty": "924725108662212493312", - "expectedQty": "923107257642473009050", + "inputQty": "10678498112302712832", + "expectedQty": "10579591264775326910", "reserves": [ - "1745312074632010538257285", - "5789884469042627889319274" + "4129857151082442549258657", + "2249079290010990788218806" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "2964557482874760593408", + "1051128508589451247616" + ], + "expectedQty": "3983373717332407832193", + "swapFee": "2391459105862962476", + "reserves": [ + "4126892593599567788665249", + "2248028161502401336971190" + ], + "LPTokenSupply": "6326312586680319609976424" + }, { "type": "redeem", "inputIndex": 0, - "inputQty": "419127095894308945920", - "expectedQty": "419610861563149340674", - "swapFee": "251476257536585367", + "inputQty": "9695240788915443990528", + "expectedQty": "9779962315128365437143", + "swapFee": "5817144473349266394", "reserves": [ - "1744892463770447388916611", - "5789884469042627889319274" + "4117112631284439423228106", + "2248028161502401336971190" ], - "LPTokenSupply": "7441659824499519481678886" + "LPTokenSupply": "6316617927605851500912535" }, { - "type": "redeemMasset", - "inputQty": "695103867331844710", - "expectedQtys": [ - "162887554568750223", - "540491830860478619" - ], - "redemptionFee": "417062320399106", + "type": "mint", + "inputIndex": 0, + "inputQty": "44249845308816640", + "expectedQty": "43840346291433610", "reserves": [ - "1744892300882892820166388", - "5789883928550797028840655" - ], - "LPTokenSupply": "7441659129437358381874086" + "4117112675534284732044746", + "2248028161502401336971190" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "21359995209377967505408", - "expectedQty": "21684260612733306220997", - "swapFee": "12815997125626780503", + "inputQty": "191510152315723317248", + "expectedQty": "192286654068086643876", + "swapFee": "114906091389433990", "reserves": [ - "1744892300882892820166388", - "5768199667938063722619658" + "4117112675534284732044746", + "2247835874848333250327314" ], - "LPTokenSupply": "7420300415827692977046728" + "LPTokenSupply": "6316426472784491207972296" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "14622950008439747641344", - "expectedQty": "14639695369812876227219", - "swapFee": "8773770005063848584", + "inputIndex": 1, + "inputQty": "27581184897876347584512", + "expectedQty": "27691902319753706942417", + "swapFee": "16548710938725808550", "reserves": [ - "1730252605513079943939169", - "5768199667938063722619658" + "4117112675534284732044746", + "2220143972528579543384897" ], - "LPTokenSupply": "7405678343196253735790242" + "LPTokenSupply": "6288846942757708732968639" }, { - "type": "mintMulti", - "inputQtys": [ - "21316174064980573814784", - "10956335513709456654336" - ], - "expectedQty": "32064526438526148374040", + "type": "mint", + "inputIndex": 1, + "inputQty": "6795640501035737284608", + "expectedQty": "6764598797555530754694", "reserves": [ - "1751568779578060517753953", - "5779156003451773179273994" - ], - "LPTokenSupply": "7437742869634779884164282" + "4117112675534284732044746", + "2226939613029615280669505" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "2092434880621491257344", - "expectedQty": "2088528678392605943715", + "inputQty": "131324965417347", + "expectedQty": "130105011545008", "reserves": [ - "1753661214458682009011297", - "5779156003451773179273994" + "4117112675665609697462093", + "2226939613029615280669505" ] }, { "type": "redeemBassets", "inputQtys": [ - "10267122158312608", - "20508855426885236" + "5500676662430334451712", + "6868877256620129648640" ], - "expectedQty": "30438400233748199", - "swapFee": "18274004542974", + "expectedQty": "12287032691023421911073", + "swapFee": "7376645601975238289", "reserves": [ - "1753661204191559850698689", - "5779155982942917752388758" + "4111611999003179363010381", + "2220070735772995151020865" ], - "LPTokenSupply": "7439831367858325652271120" + "LPTokenSupply": "6283317870013304075642806" }, { - "type": "redeemBassets", - "inputQtys": [ - "2545078810443688", - "2598058823508805" + "type": "redeemMasset", + "inputQty": "60332323652049554636", + "expectedQtys": [ + "39455948771134196502", + "21304295551280145342" ], - "expectedQty": "5098036796403485", - "swapFee": "3060658472925", + "redemptionFee": "36199394191229732", "reserves": [ - "1753661201646481040255001", - "5779155980344858928879953" + "4111572543054408228813879", + "2220049431477443870875523" ], - "LPTokenSupply": "7439831362757534263242001" + "LPTokenSupply": "6283257541309591445211143" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "721447174864538435584", - "expectedQty": "710249991615120713724", + "inputIndex": 0, + "inputQty": "414662416341874752", + "expectedQty": "410807390101847704", "reserves": [ - "1753661201646481040255001", - "5779877427519723467315537" + "4111572957716824570688631", + "2220049431477443870875523" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "413361488735713624064", - "expectedQty": "419626320377113021362", - "swapFee": "248016893241428174", + "type": "redeemMasset", + "inputQty": "2540880580322075443", + "expectedQtys": [ + "1661677389799448381", + "897224975079053512" + ], + "redemptionFee": "1524528348193245", "reserves": [ - "1753661201646481040255001", - "5779457801199346354294175" + "4111571296039434771240250", + "2220048534252468791822011" ], - "LPTokenSupply": "7440128276062102994474478" + "LPTokenSupply": "6283255411388854059802728" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "319667100379218368", - "expectedQty": "324511860920377120", - "swapFee": "191800260227531", + "type": "redeemMasset", + "inputQty": "14620890211724777881", + "expectedQtys": [ + "9561725520287491642", + "5162866747972129509" + ], + "redemptionFee": "8772534127034866", "reserves": [ - "1753661201646481040255001", - "5779457476687485433917055" + "4111561734313914483748608", + "2220043371385720819692502" ], - "LPTokenSupply": "7440127956414182641278863" + "LPTokenSupply": "6283240791375895747728333" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1069956971481637191680", - "1383089557082496303104" + "30476999538285280755712", + "94034326649030714589184" ], - "expectedQty": "2429574582060961395061", - "swapFee": "1458619921189290411", + "expectedQty": "123789990727073885862184", "reserves": [ - "1752591244674999403063321", - "5778074387130402937613951" + "4142038733852199764504320", + "2314077698034751534281686" ], - "LPTokenSupply": "7437697069074192609522431" + "LPTokenSupply": "6407030782102969633590517" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "9360161298339362816", - "outputIndex": 1, - "expectedQty": "9482372650137434819", - "swapFee": "7474124581945641", + "type": "mintMulti", + "inputQtys": [ + "164611760838921191424", + "334113777081339543552" + ], + "expectedQty": "495616419918842707152", "reserves": [ - "1752600604836297742426137", - "5778064904757752800179132" + "4142203345613038685695744", + "2314411811811832873825238" ], - "LPTokenSupply": "7437697069821605067716995", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6407526398522888476297669" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "507081226682408435712", - "expectedQty": "507725245401125827469", - "swapFee": "304248736009445061", - "reserves": [ - "1752092879590896616598668", - "5778064904757752800179132" + "type": "redeemBassets", + "inputQtys": [ + "1227491155097553731584", + "1246195305679203598336" ], - "LPTokenSupply": "7437190019019796260225789" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "6990981825028605952", - "outputIndex": 0, - "expectedQty": "6895312263589501066", - "swapFee": "0", + "expectedQty": "2456459300543483037105", + "swapFee": "1474760436588042647", "reserves": [ - "1752085984278633027097602", - "5778071895739577828785084" + "4140975854457941131964160", + "2313165616506153670226902" ], - "LPTokenSupply": "7437190019019796260225789", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6405068611937952064022180" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1925032067974818560", - "outputIndex": 1, - "expectedQty": "1950179772252721493", - "swapFee": "1537153491835343", + "type": "redeemMasset", + "inputQty": "33128644062852645755289", + "expectedQtys": [ + "21405329515217887438091", + "11957102379933535122616" + ], + "redemptionFee": "19877186437711587453", "reserves": [ - "1752087909310701001916162", - "5778069945559805576063591" + "4119570524942723244526069", + "2301208514126220135104286" ], - "LPTokenSupply": "7437190019173511609409323", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6371941955593743189425636" }, { "type": "redeemBassets", "inputQtys": [ - "2448693838575080833024", - "2320963875535376089088" - ], - "expectedQty": "4729075387609517313435", - "swapFee": "2839148721798789661", - "reserves": [ - "1749639215472125921083138", - "5775748981684270199974503" + "48125174740969993535488", + "24801752711272547221504" ], - "LPTokenSupply": "7432458388552052473185192" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "14743996076807623278592", - "expectedQty": "14967489012438136112293", - "swapFee": "8846397646084573967", + "expectedQty": "72366373839487631531601", + "swapFee": "43445891838795856432", "reserves": [ - "1749639215472125921083138", - "5760781492671832063862210" + "4071445350201753250990581", + "2276406761414947587882782" ], - "LPTokenSupply": "7417715277115009458363996" + "LPTokenSupply": "6299536480451600641623245" }, { - "type": "redeemBassets", - "inputQtys": [ - "100906295418108654911488", - "147784531178765483507712" + "type": "redeemMasset", + "inputQty": "27337829510756861319577", + "expectedQtys": [ + "17658076352769559291745", + "9872897938083371984900" ], - "expectedQty": "246223582955053164168466", - "swapFee": "147822843479119370123", + "redemptionFee": "16402697706454116791", "reserves": [ - "1648732920054017266171650", - "5612996961493066580354498" + "4053787273848983691698836", + "2266533863476864215897882" ], - "LPTokenSupply": "7171358653600825086762418" + "LPTokenSupply": "6272200291210614425715347" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "78175525901129668886528", - "outputIndex": 1, - "expectedQty": "79199849779342678638481", - "swapFee": "62432403276987155781", + "inputQty": "21103172190034922045440", + "expectedQty": "21285871077953077129182", + "swapFee": "12661903314020953227", "reserves": [ - "1726908445955146935058178", - "5533797111713723901716017" + "4032501402771030614569654", + "2266533863476864215897882" ], - "LPTokenSupply": "7171364896841152785477996", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6251098385210910905765229" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "63759823478291106365440", - "expectedQty": "64715906538714156022230", - "swapFee": "38255894086974663819", + "inputIndex": 0, + "inputQty": "119726426585692370894848", + "expectedQty": "120755770071565629266201", + "swapFee": "71835855951415422536", "reserves": [ - "1726908445955146935058178", - "5469081205175009745693787" + "3911745632699464985303453", + "2266533863476864215897882" ], - "LPTokenSupply": "7107608898952270376578937" + "LPTokenSupply": "6131379142210813676412634" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "7845109307497353", - "expectedQty": "7962532671124451", - "swapFee": "4707065584498", + "type": "redeemMasset", + "inputQty": "118747467785433042124", + "expectedQtys": [ + "75713990572648931450", + "43870010906985099422" + ], + "redemptionFee": "71248480671259825", "reserves": [ - "1726908445955146935058178", - "5469081197212477074569336" + "3911669918708892336372003", + "2266489993465957230798460" ], - "LPTokenSupply": "7107608891107631775640033" + "LPTokenSupply": "6131260401867876310496492" }, { "type": "mintMulti", "inputQtys": [ - "87232346302057797386240", - "39515713660159308857344" - ], - "expectedQty": "125889030855363482076377", - "reserves": [ - "1814140792257204732444418", - "5508596910872636383426680" + "3797457552515128623104", + "5035268395095056973824" ], - "LPTokenSupply": "7233497921962995257716410" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "18577166126674018304", - "expectedQty": "18851037750798466618", - "swapFee": "11146299676004410", + "expectedQty": "8772937663833222531217", "reserves": [ - "1814140792257204732444418", - "5508578059834885584960062" + "3915467376261407464995107", + "2271525261861052287772284" ], - "LPTokenSupply": "7233479345911498551298547" + "LPTokenSupply": "6140033339531709533027709" }, { "type": "redeemBassets", "inputQtys": [ - "1797111058698047848448", - "1417978910546622676992" + "92365086822266830848", + "39346219444187783168" ], - "expectedQty": "3187761610441108477514", - "swapFee": "1913805249414313674", + "expectedQty": "130675209618269999774", + "swapFee": "78452197089215529", "reserves": [ - "1812343681198506684595970", - "5507160080924338962283070" + "3915375011174585198164259", + "2271485915641608099989116" ], - "LPTokenSupply": "7230289861876332969938725" + "LPTokenSupply": "6139902593715113882733957" }, { "type": "swap", "inputIndex": 1, - "inputQty": "959060177725694279680", + "inputQty": "62132689625165808533504", "outputIndex": 0, - "expectedQty": "947647994443115242061", + "expectedQty": "62373767748671988783615", "swapFee": "0", "reserves": [ - "1811396033204063569353909", - "5508119141102064656562750" + "3853001243425913209380644", + "2333618605266773908522620" ], - "LPTokenSupply": "7230289861876332969938725", + "LPTokenSupply": "6139902593715113882733957", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "68086951961177559662592", - "44203112677968353165312" - ], - "expectedQty": "111412241600383710261496", - "swapFee": "66887477446698245103", - "reserves": [ - "1743309081242886009691317", - "5463916028424096303397438" - ], - "LPTokenSupply": "7118817421546247231256635" - }, - { - "type": "redeemMasset", - "inputQty": "189529906239323750", - "expectedQtys": [ - "46385648294709832", - "145382875551599586" - ], - "redemptionFee": "113717943743594", - "reserves": [ - "1743309034857237714981485", - "5463915883041220751797852" - ], - "LPTokenSupply": "7118817232027712786307244" - }, - { - "type": "mintMulti", - "inputQtys": [ - "2823657823405466451968", - "2788864483211459166208" - ], - "expectedQty": "5561995630374660310380", + "type": "mint", + "inputIndex": 0, + "inputQty": "11521662681685103214592", + "expectedQty": "11418722647358458600835", "reserves": [ - "1746132692680643181433453", - "5466704747524432210964060" - ], - "LPTokenSupply": "7124379227658087446617624" + "3864522906107598312595236", + "2333618605266773908522620" + ] }, { "type": "redeemBassets", "inputQtys": [ - "252695832401016487936", - "2508585672775162658816" + "1631978629104641024", + "645239784591589120" ], - "expectedQty": "2722228224727195104519", - "swapFee": "1634317525351527979", + "expectedQty": "2259235851373023022", + "swapFee": "1356355324018224", "reserves": [ - "1745879996848242164945517", - "5464196161851657048305244" + "3864521274128969207954212", + "2333617960026989316933500" ], - "LPTokenSupply": "7121655528547587435137922" + "LPTokenSupply": "6151319055905901176695367" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6839756082488889311232", - "8319379927583161319424" - ], - "expectedQty": "15012854252595908297594", - "swapFee": "9013120423811832077", - "reserves": [ - "1739040240765753275634285", - "5455876781924073886985820" - ], - "LPTokenSupply": "7106634562486610096191457" - }, - { - "type": "redeemMasset", - "inputQty": "44230183401321850470", - "expectedQtys": [ - "10816922873149100893", - "33935844020199981205" + "688014911407671607296", + "694513462019835822080" ], - "redemptionFee": "26538110040793110", + "expectedQty": "1372725052653394386873", "reserves": [ - "1739029423842880126533392", - "5455842846080053687004615" + "3865209289040376879561508", + "2334312473489009152755580" ], - "LPTokenSupply": "7106590334957019778420298" + "LPTokenSupply": "6152691780958554571082240" }, { "type": "redeemBassets", "inputQtys": [ - "15366725950449561600", - "12435382214513856512" + "70869303265129528295424", + "30145621767183598092288" ], - "expectedQty": "27569308399964720242", - "swapFee": "16551515949548561", + "expectedQty": "100223043639745598919101", + "swapFee": "60169928140731798430", "reserves": [ - "1739014057116929676971792", - "5455830410697839173148103" + "3794339985775247351266084", + "2304166851721825554663292" ], - "LPTokenSupply": "7106562750752255459106350" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "74959332282509656326144", - "expectedQty": "73809870986816695379878", - "reserves": [ - "1739014057116929676971792", - "5530789742980348829474247" - ] + "LPTokenSupply": "6052414584383482313544551" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2070298031089496358912", - "expectedQty": "2101352553622448355934", - "swapFee": "1242178818653697815", - "reserves": [ - "1739014057116929676971792", - "5528688390426726381118313" - ], - "LPTokenSupply": "7178302447925864523497097" - }, - { - "type": "mintMulti", - "inputQtys": [ - "712202581376429457408", - "780097767211066458112" - ], - "expectedQty": "1478495303191718363589", + "inputQty": "5428606285151678234624", + "expectedQty": "5454216476565480609054", + "swapFee": "3257163771091006940", "reserves": [ - "1739726259698306106429200", - "5529468488193937447576425" + "3794339985775247351266084", + "2298712635245260074054238" ], - "LPTokenSupply": "7179780943229056241860686" + "LPTokenSupply": "6046986303814707744410621" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "69016465147945333817344", - "expectedQty": "67953588865932653088997", + "inputQty": "40124147982441323167744", + "expectedQty": "40311227905917193483948", + "swapFee": "24074488789464793900", "reserves": [ - "1739726259698306106429200", - "5598484953341882781393769" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "15245202048009717678080", - "expectedQty": "15208367689005808631667", - "reserves": [ - "1754971461746315824107280", - "5598484953341882781393769" - ] - }, - { - "type": "redeemMasset", - "inputQty": "9446902973620119142", - "expectedQtys": [ - "2281320109787747541", - "7277574927454382904" - ], - "redemptionFee": "5668141784172071", - "reserves": [ - "1754969180426206036359739", - "5598477675766955327010865" + "3794339985775247351266084", + "2258401407339342880570290" ], - "LPTokenSupply": "7262933453447835261879415" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "45814153214732254838784", - "expectedQty": "45690134627027245760117", - "reserves": [ - "1800783333640938291198523", - "5598477675766955327010865" - ] + "LPTokenSupply": "6006864563281145367722267" }, { "type": "mint", "inputIndex": 1, - "inputQty": "11669388965641835249664", - "expectedQty": "11491355427686351570922", + "inputQty": "11815506104076065570816", + "expectedQty": "11753982770607073329962", "reserves": [ - "1800783333640938291198523", - "5610147064732597162260529" + "3794339985775247351266084", + "2270216913443418946141106" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "73805762081585561600", - "expectedQty": "72679344589981575475", + "inputQty": "849621520014783676416", + "expectedQty": "853567786481082361557", + "swapFee": "509772912008870205", "reserves": [ - "1800783333640938291198523", - "5610220870494678747822129" - ] + "3794339985775247351266084", + "2269363345656937863779549" + ], + "LPTokenSupply": "6017768975509028858262833" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "26535485526657921024", - "expectedQty": "26596267611128985101", - "swapFee": "15921291315994752", + "inputQty": "524398624720593024", + "expectedQty": "528835183685203480", + "swapFee": "314639174832355", "reserves": [ - "1800756737373327162213422", - "5610220870494678747822129" + "3794339456940063666062604", + "2269363345656937863779549" ], - "LPTokenSupply": "7320161088953741314464380" + "LPTokenSupply": "6017768451141868055153044" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2683020759509803520", - "expectedQty": "2642072409263594154", + "type": "redeemMasset", + "inputQty": "944723034041038877491", + "expectedQtys": [ + "595311892289892256553", + "356051165934912535002" + ], + "redemptionFee": "566833820424623326", "reserves": [ - "1800756737373327162213422", - "5610223553515438257625649" - ] + "3793744145047773773806051", + "2269007294491002951244547" + ], + "LPTokenSupply": "6016823784791209058737885" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "22515184298977882112", - "5562208548565727232" + "150278595014364561408", + "1076211587158694952960" ], - "expectedQty": "27927569555268497275", + "expectedQty": "1219523823423566236605", + "swapFee": "732153586205863259", "reserves": [ - "1800779252557626140095534", - "5610229115723986823352881" + "3793593866452759409244643", + "2267931082903844256291587" ], - "LPTokenSupply": "7320191658595705846555809" + "LPTokenSupply": "6015603602029557907224345" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1582018608982711074816", - "expectedQty": "1557872718804930003685", - "reserves": [ - "1800779252557626140095534", - "5611811134332969534427697" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "1640935274443449856", - "109614863553878638592" + "type": "redeemMasset", + "inputQty": "5858450127146201907", + "expectedQtys": [ + "3692272162594952758", + "2207357745419311086" ], - "expectedQty": "109577968303741421085", + "redemptionFee": "3515070076287721", "reserves": [ - "1800780893492900583545390", - "5611920749196523413066289" + "3793590174180596814291885", + "2267928875546098836980501" ], - "LPTokenSupply": "7321859109282814517980579" + "LPTokenSupply": "6015597743930937768651210" }, { "type": "mint", "inputIndex": 1, - "inputQty": "139603406059891654656", - "expectedQty": "137472554540577943850", + "inputQty": "13460347457033469952000", + "expectedQty": "13389899593450589313001", "reserves": [ - "1800780893492900583545390", - "5612060352602583304720945" + "3793590174180596814291885", + "2281389223003132306932501" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "135494628472223334400", - "120215887689651388416" + "type": "redeemMasset", + "inputQty": "76650158572489959014", + "expectedQtys": [ + "48201263299829320753", + "28987275266527512280" ], - "expectedQty": "253485566160087645788", - "swapFee": "152182649285623961", + "redemptionFee": "45990095143493975", "reserves": [ - "1800645398864428360210990", - "5611940136714893653332529" + "3793541972917296984971132", + "2281360235727865779420221" ], - "LPTokenSupply": "7321742959306810651217075" + "LPTokenSupply": "6028910997964825382354594" }, { - "type": "redeemMasset", - "inputQty": "13438732515218823577", - "expectedQtys": [ - "3303021284602173630", - "10294285444081563503" + "type": "mintMulti", + "inputQtys": [ + "110649701269475424", + "121377398907237328" ], - "redemptionFee": "8063239509131294", + "expectedQty": "230397743834377318", "reserves": [ - "1800642095843143758037360", - "5611929842429449571769026" + "3793542083566998254446556", + "2281360357105264686657549" ], - "LPTokenSupply": "7321729521380619383306627" + "LPTokenSupply": "6028911228362569216731912" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "114263170234989861142528", - "expectedQty": "114460984128057599623922", - "swapFee": "68557902140993916685", + "inputQty": "275780210153841098752", + "expectedQty": "278108296044155004579", + "swapFee": "165468126092304659", "reserves": [ - "1686181111715086158413438", - "5611929842429449571769026" + "3793263975270954099441977", + "2281360357105264686657549" ], - "LPTokenSupply": "7207473206935843621555767" + "LPTokenSupply": "6028635464699227984863625" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "30457615291570008", - "outputIndex": 0, - "expectedQty": "30034231373920529", - "swapFee": "0", - "reserves": [ - "1686181081680854784492909", - "5611929872887064863339034" - ], - "LPTokenSupply": "7207473206935843621555767", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mintMulti", - "inputQtys": [ - "1003513903026157184", - "643789410454134656" - ], - "expectedQty": "1635488732732310443", + "inputQty": "30185905521309050208256", + "expectedQty": "30325896368233901373572", + "swapFee": "18111543312785430124", "reserves": [ - "1686182085194757810650093", - "5611930516676475317473690" + "3793263975270954099441977", + "2251034460737030785283977" ], - "LPTokenSupply": "7207474842424576353866210" + "LPTokenSupply": "5998451370332250213198381" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "66894619809494918496256", - "expectedQty": "66946108444547266132508", - "swapFee": "40136771885696951097", + "inputIndex": 1, + "inputQty": "6217108375536270311424", + "expectedQty": "6245673402629920417785", + "swapFee": "3730265025321762186", "reserves": [ - "1619235976750210544517585", - "5611930516676475317473690" + "3793263975270954099441977", + "2244788787334400864866192" ], - "LPTokenSupply": "7140584236292270005065063" + "LPTokenSupply": "5992234634983216475063175" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "355640181679743565824000", - "expectedQty": "354651042969725872025478", + "inputIndex": 1, + "inputQty": "21266270934516501577728", + "expectedQty": "21155896828060857155979", "reserves": [ - "1974876158429954110341585", - "5611930516676475317473690" + "3793263975270954099441977", + "2266055058268917366443920" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "387512932214760401797120", - "23082852737000180547584" + "287203538592005357568", + "95582098269599596544" ], - "expectedQty": "409213387220662798219136", - "swapFee": "245675437594954651722", + "expectedQty": "379704594639893570001", "reserves": [ - "1587363226215193708544465", - "5588847663939475136926106" + "3793551178809546104799545", + "2266150640367186966040464" ], - "LPTokenSupply": "7085800784147497619684854" + "LPTokenSupply": "6013770236405917225789155" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "56797283753469270818816", - "expectedQty": "56780857015270875961955", - "swapFee": "34078370252081562491", + "inputQty": "271950802064148518666240", + "expectedQty": "274219894152609097401115", + "swapFee": "163170481238489111199", "reserves": [ - "1530582369199922832582510", - "5588847663939475136926106" + "3519331284656937007398430", + "2266150640367186966040464" ], - "LPTokenSupply": "7029006908231053557022287" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "21620512837630894800896", - "expectedQty": "21618897508900487708522", - "reserves": [ - "1552202882037553727383406", - "5588847663939475136926106" - ] + "LPTokenSupply": "5741835751389892556034034" }, { "type": "mintMulti", "inputQtys": [ - "411207735532721733632", - "281144399919141257216" + "35443864711289599164416", + "27067421078295962189824" ], - "expectedQty": "687727352068685381439", + "expectedQty": "62047765080884539732730", "reserves": [ - "1552614089773086449117038", - "5589128808339394278183322" + "3554775149368226606562846", + "2293218061445482928230288" ], - "LPTokenSupply": "7051313533092022730112248" + "LPTokenSupply": "5803883516470777095766764" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "338781338757574492160", - "expectedQty": "344123729031752971335", - "swapFee": "203268803254544695", - "reserves": [ - "1552614089773086449117038", - "5588784684610362525211987" - ], - "LPTokenSupply": "7050974772080145481074557" - }, - { - "type": "mint", "inputIndex": 0, - "inputQty": "339835139763681280", - "expectedQty": "339756362313518247", - "reserves": [ - "1552614429608226212798318", - "5588784684610362525211987" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1270955917492344320", - "expectedQty": "1290997964858914620", - "swapFee": "762573550495406", - "reserves": [ - "1552614429608226212798318", - "5588783393612397666297367" - ], - "LPTokenSupply": "7050973840956847657298024" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "633396903759951953920", - "347714221763219554304" - ], - "expectedQty": "975362813818196819005", - "swapFee": "585569029708743337", + "inputQty": "3029119264913780736", + "expectedQty": "3054071674926104975", + "swapFee": "1817471558948268", "reserves": [ - "1551981032704466260844398", - "5588435679390634446743063" + "3554772095296551680457871", + "2293218061445482928230288" ], - "LPTokenSupply": "7049997951130902722610014" + "LPTokenSupply": "5803880487533259337880854" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4343436014196634419200", - "expectedQty": "4273421623165909662474", + "inputQty": "209262167813112201216", + "expectedQty": "208080307536129648457", "reserves": [ - "1551981032704466260844398", - "5592779115404831081162263" + "3554772095296551680457871", + "2293427323613296040431504" ] }, { "type": "redeemMasset", - "inputQty": "421154489827733", + "inputQty": "1775959666198686", "expectedQtys": [ - "92600861416521", - "333700060042833" + "1087051637980804", + "701331579603215" ], - "redemptionFee": "252692693896", + "redemptionFee": "1065575799719", "reserves": [ - "1551981032611865399427877", - "5592779115071131021119430" + "3554772094209500042477067", + "2293427322911964460828289" ], - "LPTokenSupply": "7054271372332939411714144" + "LPTokenSupply": "5804088566064942358910596" }, { "type": "mintMulti", "inputQtys": [ - "65921353061847938367488", - "83400076846624673890304" + "1567230040643195371520", + "1341991942402818179072" + ], + "expectedQty": "2887905531150482027308", + "reserves": [ + "3556339324250143237848587", + "2294769314854367279007361" + ], + "LPTokenSupply": "5806976471596092840937904" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "372974822127043936256", + "229626217175157538816" ], - "expectedQty": "147951024545675242304746", + "expectedQty": "598034994348074017430", + "swapFee": "359036418459920362", "reserves": [ - "1617902385673713337795365", - "5676179191917755695009734" + "3555966349428016193912331", + "2294539688637192121468545" ], - "LPTokenSupply": "7202222396878614654018890" + "LPTokenSupply": "5806378113468968152992147" }, { "type": "redeemMasset", - "inputQty": "1154630115233496249139", + "inputQty": "10520752346682495795", "expectedQtys": [ - "259219705784885026650", - "909435274426960188706" + "6439297221093614061", + "4155051423112341827" ], - "redemptionFee": "692778069140097749", + "redemptionFee": "6312451408009497", "reserves": [ - "1617643165967928452768715", - "5675269756643328734821028" + "3555959910130795100298270", + "2294535533585769009126718" ], - "LPTokenSupply": "7201067836041188071779525" + "LPTokenSupply": "5806367593347866611297301" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "210687840458886414336", - "expectedQty": "210525740266405350344", + "inputIndex": 1, + "inputQty": "16425460838378186", + "expectedQty": "16332677045234351", "reserves": [ - "1617853853808387339183051", - "5675269756643328734821028" + "3555959910130795100298270", + "2294535550011229847504904" ] }, { "type": "redeemMasset", - "inputQty": "8728125942485031374028", + "inputQty": "1401159339272093197926", "expectedQtys": [ - "1959702011819982801587", - "6874438957223799441160" + "857588994191841199000", + "553371940123806234439" ], - "redemptionFee": "5236875565491018824", + "redemptionFee": "840695603563255918", "reserves": [ - "1615894151796567356381464", - "5668395317686104935379868" + "3555102321136603259099270", + "2293982178071106041270465" ], - "LPTokenSupply": "7192550759526525994857723" + "LPTokenSupply": "5804966534410831919659317" }, { "type": "redeemMasset", - "inputQty": "10171209582797159976140", + "inputQty": "10956505149908", "expectedQtys": [ - "2283715092442599710497", - "8011044487374585439077" + "6706003516314", + "4327147621334" ], - "redemptionFee": "6102725749678295985", + "redemptionFee": "6573903089", "reserves": [ - "1613610436704124756670967", - "5660384273198730349940791" + "3555102321129897255582956", + "2293982178066778893649131" ], - "LPTokenSupply": "7182380160216303802711181" + "LPTokenSupply": "5804966534399876071899717" }, { "type": "redeemMasset", - "inputQty": "3326367254885354", + "inputQty": "169605410799123929497", "expectedQtys": [ - "746861113249820", - "2619914202053560" + "103808145539410604517", + "66983736133334574986" ], - "redemptionFee": "1995820352931", + "redemptionFee": "101763246479474357", "reserves": [ - "1613610435957263643421147", - "5660384270578816147887231" + "3554998512984357844978439", + "2293915194330645559074145" ], - "LPTokenSupply": "7182380156890136129861120" + "LPTokenSupply": "5804796939165401595917655" }, { "type": "mintMulti", "inputQtys": [ - "81258347294943197790208", - "83586731591898929037312" + "2810217006575596544", + "4756722389355929600" ], - "expectedQty": "163428029639646248091866", + "expectedQty": "7515438219297514589", "reserves": [ - "1694868783252206841211355", - "5743971002170715076924543" + "3555001323201364420574983", + "2293919951053034915003745" ], - "LPTokenSupply": "7345808186529782377952986" + "LPTokenSupply": "5804804454603620893432244" }, { - "type": "redeemMasset", - "inputQty": "117999519844458854", - "expectedQtys": [ - "27209219370587818", - "92213018848847012" + "type": "mintMulti", + "inputQtys": [ + "23131560491414032384", + "10631244913762689024" ], - "redemptionFee": "70799711906675", + "expectedQty": "33500008348463889502", "reserves": [ - "1694868756042987470623537", - "5743970909957696228077531" + "3555024454761855834607367", + "2293930582297948677692769" ], - "LPTokenSupply": "7345808068537342504684799" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "132073194341806256", - "expectedQty": "131881481803531393", - "reserves": [ - "1694868888116181812429793", - "5743970909957696228077531" - ] + "LPTokenSupply": "5804837954611969357321746" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "428933078604863963136", - "expectedQty": "429297834894592778323", - "swapFee": "257359847162918377", + "inputQty": "89208627724313635586048", + "expectedQty": "89939710371384339934772", + "swapFee": "53525176634588181351", "reserves": [ - "1694439590281287219651470", - "5743970909957696228077531" + "3465084744390471494672595", + "2293930582297948677692769" ], - "LPTokenSupply": "7345379293076204160544893" + "LPTokenSupply": "5715634679405319180553833" }, { "type": "mintMulti", "inputQtys": [ - "4171206295677489905664", - "433434723969565720576" + "4016466696520197120", + "313655416561107664896" ], - "expectedQty": "4591679393608703453004", + "expectedQty": "315822940862973002093", "reserves": [ - "1698610796576964709557134", - "5744404344681665793798107" + "3465088760857168014869715", + "2294244237714509785357665" ], - "LPTokenSupply": "7349970972469812863997897" + "LPTokenSupply": "5715950502346182153555926" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "18502082943959", - "expectedQty": "18786992138211", - "swapFee": "11101249766", + "inputQty": "93391601612824911020032", + "expectedQty": "93868912187921401379831", + "swapFee": "56034960967694946612", "reserves": [ - "1698610796576964709557134", - "5744404344662878801659896" + "3465088760857168014869715", + "2200375325526588383977834" ], - "LPTokenSupply": "7349970972451311891178914" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2303871884040395816960", - "expectedQty": "2267569165976322155022", - "reserves": [ - "1698610796576964709557134", - "5746708216546919197476856" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2924490053407524519936", - "expectedQty": "2920100859475138507280", - "reserves": [ - "1701535286630372234077070", - "5746708216546919197476856" - ] + "LPTokenSupply": "5622564504229454012030555" }, { "type": "redeemMasset", - "inputQty": "427690518970605414", + "inputQty": "20055333627083685888", "expectedQtys": [ - "98882146100789283", - "333961244255194829" - ], - "redemptionFee": "256614311382363", - "reserves": [ - "1701535187748226133287787", - "5746707882585674942282027" + "12352337618806683152", + "7843891104905649369" ], - "LPTokenSupply": "7355158214811905812374038" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2109282347984703193088", - "expectedQty": "2141744302461660963602", - "swapFee": "1265569408790821915", + "redemptionFee": "12033200176250211", "reserves": [ - "1701535187748226133287787", - "5744566138283213281318425" + "3465076408519549208186563", + "2200367481635483478328465" ], - "LPTokenSupply": "7353049059020861988263141" + "LPTokenSupply": "5622544450099146945969688" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "230793674468950605824", - "expectedQty": "231007039324000052497", - "swapFee": "138476204681370363", + "inputQty": "27084273748525444", + "outputIndex": 1, + "expectedQty": "26974199713919681", + "swapFee": "21476013611350", "reserves": [ - "1701304180708902133235290", - "5744566138283213281318425" + "3465076435603822956712007", + "2200367454661283764408784" ], - "LPTokenSupply": "7352818279194013505794353" + "LPTokenSupply": "5622544450101294547330823", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "86187815440462495744", - "expectedQty": "87514235971589778704", - "swapFee": "51712689264277497", + "type": "mintMulti", + "inputQtys": [ + "23386641527740357935104", + "4411407527509185527808" + ], + "expectedQty": "27566691279566052629902", "reserves": [ - "1701304180708902133235290", - "5744478624047241691539721" + "3488463077131563314647111", + "2204778862188792949936592" ], - "LPTokenSupply": "7352732096549841969726358" + "LPTokenSupply": "5650111141380860599960725" }, { "type": "redeemBassets", "inputQtys": [ - "1053945949854440226816", - "7449881612919390601216" + "28985585983294999101440", + "29013638255300260659200" ], - "expectedQty": "8384913768746193107193", - "swapFee": "5033968642433175769", + "expectedQty": "57581515069829537195480", + "swapFee": "34569650832397160613", "reserves": [ - "1700250234759047693008474", - "5737028742434322300938505" + "3459477491148268315545671", + "2175765223933492689277392" ], - "LPTokenSupply": "7344342652209317586760971" + "LPTokenSupply": "5592498513625281905320692" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "58262675313384327479296", - "expectedQty": "58297687703896460276652", - "swapFee": "34957605188030596487", + "type": "mintMulti", + "inputQtys": [ + "652944569860990", + "934244580074003" + ], + "expectedQty": "1576220208350664", "reserves": [ - "1641952547055151232731822", - "5737028742434322300938505" + "3459477491801212885406661", + "2175765224867737269351395" ], - "LPTokenSupply": "7286083472656452062341323" + "LPTokenSupply": "5592498515201502113671356" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "11756164584845111984128", - "expectedQty": "11939439709709165895488", - "swapFee": "7053698750907067190", + "inputQty": "172063101133368508547072", + "expectedQty": "172879830533305013158984", + "swapFee": "103237860680021105128", "reserves": [ - "1641952547055151232731822", - "5725089302724613135043017" + "3459477491801212885406661", + "2002885394334432256192411" ], - "LPTokenSupply": "7274328013441482041063914" + "LPTokenSupply": "5420445737854201607234796" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "22966777931026749456384", - "expectedQty": "22600512852866641918824", + "type": "redeem", + "inputIndex": 0, + "inputQty": "31727311617686589407232", + "expectedQty": "32000969497719834453652", + "swapFee": "19036386970611953644", "reserves": [ - "1641952547055151232731822", - "5748056080655639884499401" - ] + "3427476522303493050953009", + "2002885394334432256192411" + ], + "LPTokenSupply": "5388720329875212079022928" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "6962653107285495119872", - "outputIndex": 0, - "expectedQty": "6856669610937510106657", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "167342545433785882640384", + "174982910972623933407232" + ], + "expectedQty": "339903332360718675210353", + "swapFee": "204064438079278772389", "reserves": [ - "1635095877444213722625165", - "5755018733762925379619273" + "3260133976869707168312625", + "1827902483361808322785179" ], - "LPTokenSupply": "7296928526294348682982738", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5048633339520222052917423" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "382533181911057039360", - "expectedQty": "382574231027503435006", - "swapFee": "229519909146634223", + "type": "redeemBassets", + "inputQtys": [ + "395276781914456640", + "212686378715921728" + ], + "expectedQty": "603229959853556259", + "swapFee": "362155269073577", "reserves": [ - "1634713303213186219190159", - "5755018733762925379619273" + "3260133581592925253855985", + "1827902270675429606863451" ], - "LPTokenSupply": "7296546016064428540606800" + "LPTokenSupply": "5048632735964322457194943" }, { "type": "mintMulti", "inputQtys": [ - "14067393082132730478592", - "1481375910014794072064" + "2360612374848879616", + "10563191352168568832" ], - "expectedQty": "15514005005007124785054", + "expectedQty": "12849529687267688258", "reserves": [ - "1648780696295318949668751", - "5756500109672940173691337" + "3260135942205300102735601", + "1827912833866781775432283" ], - "LPTokenSupply": "7312060021069435665391854" + "LPTokenSupply": "5048645585494009724883201" }, { - "type": "redeemMasset", - "inputQty": "2775362810480274", - "expectedQtys": [ - "625435107915135", - "2183624101978158" - ], - "redemptionFee": "1665217686288", + "type": "mint", + "inputIndex": 0, + "inputQty": "3137198615815824343040", + "expectedQty": "3107984366164938904562", "reserves": [ - "1648780695669883841753616", - "5756500107489316071713179" - ], - "LPTokenSupply": "7312060018294239376680208" + "3263273140821115927078641", + "1827912833866781775432283" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "13375344577833217294336", - "31798533629132176097280" + "14509292548237020", + "1399086180632783" ], - "expectedQty": "44655092404742864631127", + "expectedQty": "15766322923412598", + "swapFee": "9465473037870", "reserves": [ - "1662156040247717059047952", - "5788298641118448247810459" + "3263273126311823378841621", + "1827912832467695594799500" ], - "LPTokenSupply": "7356715110698982241311335" + "LPTokenSupply": "5051753554085332814641081" }, { "type": "redeemMasset", - "inputQty": "15556235542581688768921", + "inputQty": "1786955608657536378470", "expectedQtys": [ - "3512624363897753684075", - "12232376708313590660395" + "1153624253186697978186", + "646199228389204428640" ], - "redemptionFee": "9333741325549013261", + "redemptionFee": "1072173365194521827", "reserves": [ - "1658643415883819305363877", - "5776066264410134657150064" + "3262119502058636680863435", + "1827266633239306390370860" ], - "LPTokenSupply": "7341159808530533107443740" + "LPTokenSupply": "5049966705694011797714793" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "334352822036292211572736", - "outputIndex": 0, - "hardLimitError": true + "type": "redeemBassets", + "inputQtys": [ + "18996694674114621734912", + "12755035748926985601024" + ], + "expectedQty": "31511727810882195419511", + "swapFee": "18918387719160813739", + "reserves": [ + "3243122807384522059128523", + "1814511597490379404769836" + ], + "LPTokenSupply": "5018437951334182357562915" }, { "type": "redeemBassets", "inputQtys": [ - "211016337853569892352", - "34261160231071752192" + "55013975453611458560", + "50685085736326889472" ], - "expectedQty": "244536383572819739480", - "swapFee": "146809916093347852", + "expectedQty": "104935806087132446282", + "swapFee": "62999283222212795", "reserves": [ - "1658432399545965735471525", - "5776032003249903585397872" + "3243067793409068447669963", + "1814460912404643077880364" ], - "LPTokenSupply": "7340915140018035803691192" + "LPTokenSupply": "5018332958828740325125116" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "162656281150320912891904", - "expectedQty": "162532077840956143470460", - "swapFee": "97593768690192547735", + "type": "mint", + "inputIndex": 1, + "inputQty": "940013829152102285312", + "expectedQty": "935367545406832774424", "reserves": [ - "1495900321705009592001065", - "5776032003249903585397872" - ], - "LPTokenSupply": "7178268618244583910054061" + "3243067793409068447669963", + "1815400926233795180165676" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "7170677588273930436608", - "7947697074637755121664" - ], - "expectedQty": "14996635558828834867990", - "swapFee": "9003383365316490815", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2209132275734391040", + "expectedQty": "2228576425134943820", + "swapFee": "1325479365440634", "reserves": [ - "1488729644116735661564457", - "5768084306175265830276208" + "3243065564832643312726143", + "1815400926233795180165676" ], - "LPTokenSupply": "7163263879640726290344336" + "LPTokenSupply": "5019266117374419360052563" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "22378745903735189274624", - "outputIndex": 0, - "expectedQty": "21969438246077709953409", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "5564232000059744256", + "outputIndex": 1, + "expectedQty": "5535333879175871814", + "swapFee": "4409900082543777", "reserves": [ - "1466760205870657951611048", - "5790463052079001019550832" + "3243071129064643372470399", + "1815395390899916004293862" ], - "LPTokenSupply": "7163263879640726290344336", + "LPTokenSupply": "5019266117815409368306940", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "58739693898595368435712", - "33583381335924843479040" + "80679383943382130753536", + "89715829495588278239232" ], - "expectedQty": "91852826952267094669017", + "expectedQty": "169203240303795350203804", + "swapFee": "101582893918628387154", "reserves": [ - "1525499899769253320046760", - "5824046433414925863029872" + "3162391745121261241716863", + "1725679561404327726054630" ], - "LPTokenSupply": "7255116706592993385013353" + "LPTokenSupply": "4849971452907087252554696" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3900318034823907115008", - "1603983019270359482368" + "12004446738106395131904", + "8463941791282239635456" ], - "expectedQty": "5482146129444097739439", - "swapFee": "3291262435127535164", + "expectedQty": "20314564661523125277583", "reserves": [ - "1521599581734429412931752", - "5822442450395655503547504" + "3174396191859367636848767", + "1734143503195609965690086" ], - "LPTokenSupply": "7249631598327357672492265" + "LPTokenSupply": "4870286017568610377832279" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "65169766229577484468224", - "expectedQty": "66221695821098316445973", - "swapFee": "39101859737746490680", - "reserves": [ - "1521599581734429412931752", - "5756220754574557187101531" + "type": "redeemMasset", + "inputQty": "785104033173999", + "expectedQtys": [ + "511414710631829", + "279381162362526" ], - "LPTokenSupply": "7184465742283753962673109" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2391192998753968640", - "expectedQty": "2429713624914661699", - "swapFee": "1434715799252381", + "redemptionFee": "471062419904", "reserves": [ - "1521599581734429412931752", - "5756218324860932272439832" + "3174396191347952926216938", + "1734143502916228803327560" ], - "LPTokenSupply": "7184463351234226788629707" + "LPTokenSupply": "4870286016783553450900270" }, { "type": "redeemBassets", "inputQtys": [ - "52112828674821196873728", - "91028309260656491626496" + "85840328026908196864", + "12124255913737539584" ], - "expectedQty": "141695165162388654512384", - "swapFee": "85068139981422045934", + "expectedQty": "97097404845003811847", + "swapFee": "58293418958377313", "reserves": [ - "1469486753059608216058024", - "5665190015600275780813336" + "3174310351019926018020074", + "1734131378660315065787976" ], - "LPTokenSupply": "7042691624745854854275981" + "LPTokenSupply": "4870188866914631384548840" }, { "type": "redeemBassets", "inputQtys": [ - "31640355112934300450816", - "25830383339954319130624" + "50696368705725177790464", + "7480045792286876893184" ], - "expectedQty": "57089011849107159770250", - "swapFee": "34273971492359711689", + "expectedQty": "57663487868109872776013", + "swapFee": "34618864039289497364", "reserves": [ - "1437846397946673915607208", - "5639359632260321461682712" + "3123613982314200840229610", + "1726651332868028188894792" ], - "LPTokenSupply": "6985571766322404570765209" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "39702921429836169216", - "expectedQty": "39040357915806057041", - "reserves": [ - "1437846397946673915607208", - "5639399335181751297851928" - ] + "LPTokenSupply": "4812494222068886151225198" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "20528652565684831649792", - "expectedQty": "20560350271781242273182", + "type": "redeemMasset", + "inputQty": "8018281408584674495692", + "expectedQtys": [ + "5201250569329745296315", + "2875113979820324657059" + ], + "redemptionFee": "4810968845150804697", "reserves": [ - "1458375050512358747257000", - "5639399335181751297851928" - ] + "3118412731744871094933295", + "1723776218888207864237733" + ], + "LPTokenSupply": "4804476421757185991809975" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "124845702683172421632", - "expectedQty": "126876610036227273855", - "swapFee": "74907421609903452", + "inputQty": "832485915870952226291712", + "expectedQty": "833795775481389442437620", + "swapFee": "499491549522571335775", "reserves": [ - "1458375050512358747257000", - "5639272458571715070578073" + "3118412731744871094933295", + "889980443406818421800113" ], - "LPTokenSupply": "7006046318740160607664145" + "LPTokenSupply": "3972040455041186022651840" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "65109400985438792", - "expectedQty": "65198486208400475", + "inputIndex": 1, + "inputQty": "12252993846273588068352", + "expectedQty": "12285230770366216447858", "reserves": [ - "1458375115621759732695792", - "5639272458571715070578073" + "3118412731744871094933295", + "902233437253092009868465" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "402409445918945181696", - "expectedQty": "408955455078922025465", - "swapFee": "241445667551367109", + "type": "mintMulti", + "inputQtys": [ + "5821616481748872331264", + "7208740729754714374144" + ], + "expectedQty": "12975997934442533430193", "reserves": [ - "1458375115621759732695792", - "5638863503116636148552608" + "3124234348226619967264559", + "909442177982846724242609" ], - "LPTokenSupply": "7005643998637294626019634" + "LPTokenSupply": "3997301683745994772529891" }, { - "type": "redeemMasset", - "inputQty": "6189050322934586304102", - "expectedQtys": [ - "1287610590527447785588", - "4978595895786520140017" - ], - "redemptionFee": "3713430193760751782", + "type": "swap", + "inputIndex": 1, + "inputQty": "19993383939282806243328", + "outputIndex": 0, + "expectedQty": "20283932468397879007806", + "swapFee": "0", "reserves": [ - "1457087505031232284910204", - "5633884907220849628412591" + "3103950415758222088256753", + "929435561922129530485937" ], - "LPTokenSupply": "6999455319657379415790710" + "LPTokenSupply": "3997301683745994772529891", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "97287218131592790016", - "expectedQty": "95672505564367238540", + "inputIndex": 0, + "inputQty": "26338153832159213780992", + "expectedQty": "26016882007336765072609", "reserves": [ - "1457087505031232284910204", - "5633982194438981221202607" + "3130288569590381302037745", + "929435561922129530485937" ] }, { - "type": "redeemMasset", - "inputQty": "686467151403371724", - "expectedQtys": [ - "142815241208776479", - "552210161219870011" + "type": "redeemBassets", + "inputQtys": [ + "311993228023843913728", + "1575996603670482911232" ], - "redemptionFee": "411880290842023", + "expectedQty": "1887338754651887126312", + "swapFee": "1133083102652723910", "reserves": [ - "1457087362215991076133725", - "5633981642228820001332596" + "3129976576362357458124017", + "927859565318459047574705" ], - "LPTokenSupply": "6999550305736980408741728" + "LPTokenSupply": "4021430207223887263024668" }, { "type": "redeemBassets", "inputQtys": [ - "5968591544346139951104", - "2308226929359742828544" + "15501760703208667136", + "28107123404583714816" ], - "expectedQty": "8246907277400206730983", - "swapFee": "4951115035461400879", + "expectedQty": "43476126184778754855", + "swapFee": "26101336512774917", "reserves": [ - "1451118770671644936182621", - "5631673415299460258504052" + "3129961074601654249456881", + "927831458195054463859889" ], - "LPTokenSupply": "6991298942456048286749952" + "LPTokenSupply": "4021386707606499622772386" }, { "type": "mintMulti", "inputQtys": [ - "1311431998212238213120", - "189448142319600107520" + "95496985584796625272832", + "73139364947140588601344" ], - "expectedQty": "1499628126018166780393", + "expectedQty": "167597190655459710785982", "reserves": [ - "1452430202669857174395741", - "5631862863441779858611572" + "3225458060186450874729713", + "1000970823142195052461233" ], - "LPTokenSupply": "6992798570582066453530345" + "LPTokenSupply": "4188983898261959333558368" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "15707841489571780608", - "expectedQty": "15963669355790135946", - "swapFee": "9424704893743068", + "inputIndex": 0, + "inputQty": "292491902317132152832", + "expectedQty": "295860320134910883094", + "swapFee": "175495141390279291", "reserves": [ - "1452430202669857174395741", - "5631846899772424068475626" + "3225162199866315963846619", + "1000970823142195052461233" ], - "LPTokenSupply": "6992782863683047371124043" + "LPTokenSupply": "4188691423909156340433465" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "69742540610563014656", - "expectedQty": "70878408395414893715", - "swapFee": "41845524366337808", + "type": "redeemMasset", + "inputQty": "538768678332894543872", + "expectedQtys": [ + "414586234758970286788", + "128672202808066901382" + ], + "redemptionFee": "323261206999736726", "reserves": [ - "1452430202669857174395741", - "5631776021364028653581911" + "3224747613631556993559831", + "1000842150939386985559851" ], - "LPTokenSupply": "6992713125326989244743167" + "LPTokenSupply": "4188152687556944145863265" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "289426237905454724284416", + "type": "swap", + "inputIndex": 0, + "inputQty": "600522756038862758215680", + "outputIndex": 1, "hardLimitError": true }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "31114682036672475136", - "outputIndex": 0, - "expectedQty": "30553827844667533774", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "3037490679998379520", + "expectedQty": "3001107032303205993", "reserves": [ - "1452399648842012506861967", - "5631807136046065326057047" - ], - "LPTokenSupply": "6992713125326989244743167", - "hardLimitError": false, - "insufficientLiquidityError": false + "3224750651122236991939351", + "1000842150939386985559851" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "19685528842450463883264", - "394836303300630478848" + "4195585449939843584", + "1021310836590765056" ], - "expectedQty": "20098847019378457868921", + "expectedQty": "5167854653987851832", + "swapFee": "3102574336994908", "reserves": [ - "1472085177684462970745231", - "5632201972349365956535895" + "3224746455536787052095767", + "1000841129628550394794795" ], - "LPTokenSupply": "7012811972346367702612088" + "LPTokenSupply": "4188150518017005557922007" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4984958872439757996032", - "outputIndex": 0, - "expectedQty": "4896804478137323455785", - "swapFee": "0", - "reserves": [ - "1467188373206325647289446", - "5637186931221805714531927" + "type": "mintMulti", + "inputQtys": [ + "7256276151916295168", + "260853266891575984128" ], - "LPTokenSupply": "7012811972346367702612088", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7068427697781559", - "expectedQty": "7076987531493426", + "expectedQty": "268332088250416471102", "reserves": [ - "1467188380274753345071005", - "5637186931221805714531927" - ] + "3224753711812938968390935", + "1001101982895441970778923" + ], + "LPTokenSupply": "4188418850105255974393109" }, { "type": "mint", "inputIndex": 1, - "inputQty": "5113703774798066221056", - "expectedQty": "5029016832967029838887", + "inputQty": "204840674363413", + "expectedQty": "205083222583978", "reserves": [ - "1467188380274753345071005", - "5642300634996603780752983" + "3224753711812938968390935", + "1001101983100282645142336" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "681150217120201310208", - "expectedQty": "669867625437058434013", - "reserves": [ - "1467188380274753345071005", - "5642981785213723982063191" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "26422320978702150664192", - "29809275434996869365760" - ], - "expectedQty": "55767642238306618040073", + "inputQty": "1228301952146762104832", + "expectedQty": "1226100107240922728532", + "swapFee": "736981171288057262", "reserves": [ - "1493610701253455495735197", - "5672791060648720851428951" + "3224753711812938968390935", + "999875882993041722413804" ], - "LPTokenSupply": "7074278506120065940418487" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "220489879742646132408320", - "263480348212623501688832" - ], - "hardLimitError": true + "LPTokenSupply": "4187190622056309563677981" }, { "type": "mint", "inputIndex": 1, - "inputQty": "775682762793160802304", - "expectedQty": "762895013189052191971", + "inputQty": "10359018235420836102144", + "expectedQty": "10370578121600430246648", "reserves": [ - "1493610701253455495735197", - "5673566743411514012231255" + "3224753711812938968390935", + "1010234901228462558515948" ] }, { - "type": "redeemMasset", - "inputQty": "22100860457366338718924", - "expectedQtys": [ - "4662909199617661343891", - "17712330622897081567504" - ], - "redemptionFee": "13260516274419803231", + "type": "swap", + "inputIndex": 0, + "inputQty": "68380215496740438016", + "outputIndex": 1, + "expectedQty": "67441150645647004713", + "swapFee": "54051648416467017", "reserves": [ - "1488947792053837834391306", - "5655854412788616930663751" + "3224822092028435708828951", + "1010167460077816911511235" ], - "LPTokenSupply": "7052941866727516095871857" + "LPTokenSupply": "4197561205583074835571330", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "2724420810078033018880", - "expectedQty": "2720182623579614685318", - "swapFee": "1634652486046819811", - "reserves": [ - "1486227609430258219705988", - "5655854412788616930663751" - ], - "LPTokenSupply": "7050217609382686667534958" - }, - { - "type": "redeemMasset", - "inputQty": "35239326210376368128", - "expectedQtys": [ - "7424201387229637642", - "28252874533457873566" - ], - "redemptionFee": "21143595726225820", + "inputQty": "341583207840506183680", + "expectedQty": "345499503587063567937", + "swapFee": "204949924704303710", "reserves": [ - "1486220185228870990068346", - "5655826159914083472790185" + "3224476592524848645261014", + "1010167460077816911511235" ], - "LPTokenSupply": "7050182372170835863789412" + "LPTokenSupply": "4197219642870226799818021" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "38745938449132463063040", - "expectedQty": "38105818285440243358909", + "inputQty": "31787240994165544189952", + "expectedQty": "31726807487000579123465", + "swapFee": "19072344596499326513", "reserves": [ - "1486220185228870990068346", - "5694572098363215935853225" - ] + "3224476592524848645261014", + "978440652590816332387770" + ], + "LPTokenSupply": "4165434309110520905560720" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "39635615968002195456", - "expectedQty": "39566624252979202474", - "swapFee": "23781369580801317", + "inputIndex": 1, + "inputQty": "93902268551846704", + "expectedQty": "93697439931633507", + "swapFee": "56341361131108", "reserves": [ - "1486180618604618010865872", - "5694572098363215935853225" + "3224476592524848645261014", + "978440558893376400754263" ], - "LPTokenSupply": "7088248557218445063032996" + "LPTokenSupply": "4165434215213886489827126" }, { "type": "mint", "inputIndex": 1, - "inputQty": "57153031218546704384", - "expectedQty": "56207571973230244214", + "inputQty": "9852698662449635655680", + "expectedQty": "9867421421772211614129", "reserves": [ - "1486180618604618010865872", - "5694629251394434482557609" + "3224476592524848645261014", + "988293257555826036409943" ] }, { - "type": "mintMulti", - "inputQtys": [ - "589655008045894860800", - "977231818844006121472" + "type": "redeemMasset", + "inputQty": "1495795888837138527027", + "expectedQtys": [ + "1154471066989985964925", + "353842224872870120873" ], - "expectedQty": "1551394033516605023697", + "redemptionFee": "897477533302283116", "reserves": [ - "1486770273612663905726672", - "5695606483213278488679081" + "3223322121457858659296089", + "987939415330953166289070" ], - "LPTokenSupply": "7089856158823934898300907" + "LPTokenSupply": "4173805930494574893142539" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1317510673454691778560", - "outputIndex": 0, - "expectedQty": "1294223146005923460951", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "28488784153682074664960", + "outputIndex": 1, + "expectedQty": "28070990640770543171586", + "swapFee": "22515831015312517295", "reserves": [ - "1485476050466657982265721", - "5696923993886733180457641" + "3251810905611540733961049", + "959868424690182623117484" ], - "LPTokenSupply": "7089856158823934898300907", + "LPTokenSupply": "4173808182077676424394268", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5494893520180231168", - "outputIndex": 0, - "expectedQty": "5397677868755916219", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "35243752548970939809792", + "expectedQty": "34810436498502769376588", "reserves": [ - "1485470652788789226349502", - "5696929488780253360688809" - ], - "LPTokenSupply": "7089856158823934898300907", - "hardLimitError": false, - "insufficientLiquidityError": false + "3287054658160511673770841", + "959868424690182623117484" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "8967959731557662457856", - "205544747052817866293248" + "type": "redeemMasset", + "inputQty": "354866288165082995097", + "expectedQtys": [ + "276994689293142702435", + "80886533297911545769" ], - "expectedQty": "211138073574955110435158", - "swapFee": "126758899484663864579", + "redemptionFee": "212919772899049797", "reserves": [ - "1476502693057231563891646", - "5491384741727435494395561" + "3286777663471218531068406", + "959787538156884711571715" ], - "LPTokenSupply": "6878604002239443590387626" + "LPTokenSupply": "4208263773579991400680738" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1282715028102126592", - "outputIndex": 0, - "expectedQty": "1261172927022381127", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "239311438623266622668", + "expectedQtys": [ + "186797119971578216725", + "54547513178293587502" + ], + "redemptionFee": "143586863173959973", "reserves": [ - "1476501431884304541510519", - "5491386024442463596522153" + "3286590866351246952851681", + "959732990643706417984213" ], - "LPTokenSupply": "6878604002239443590387626", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4208024476500054451454067" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "83936367053425721344", - "expectedQty": "85282396380181178550", - "swapFee": "50361820232055432", + "inputQty": "121592140631826055036928", + "expectedQty": "121070551788165783537212", + "swapFee": "72955284379095633022", "reserves": [ - "1476501431884304541510519", - "5491300742046083415343603" + "3286590866351246952851681", + "838662438855540634447001" ], - "LPTokenSupply": "6878520070908572187871825" + "LPTokenSupply": "4086439631396666305980441" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3537631148347656503296", - "6429258400061654564864" - ], - "expectedQty": "9863104943088674812200", - "reserves": [ - "1480039063032652198013815", - "5497730000446145069908467" - ], - "LPTokenSupply": "6888383175851660862684025" - }, - { - "type": "redeemMasset", - "inputQty": "2268617313866571841536", - "expectedQtys": [ - "487143001860330710763", - "1809533790511748912851" + "229287155716467244138496", + "104565776221789436772352" ], - "redemptionFee": "1361170388319943104", - "reserves": [ - "1479551920030791867303052", - "5495920466655633320995616" - ], - "LPTokenSupply": "6886114694654833122836799" + "hardLimitError": true }, { - "type": "mintMulti", - "inputQtys": [ - "127668246650495488", - "1597204885547737856" - ], - "expectedQty": "1698783635447563556", + "type": "mint", + "inputIndex": 1, + "inputQty": "534985411035850625515520", + "expectedQty": "535146098143076997702222", "reserves": [ - "1479552047699038517798540", - "5495922063860518868733472" - ], - "LPTokenSupply": "6886116393438468570400355" + "3286590866351246952851681", + "1373647849891391259962521" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1080725124618903040", - "expectedQty": "1079645690757919919", - "swapFee": "648435074771341", + "inputQty": "24382809786823", + "expectedQty": "24628956989390", + "swapFee": "14629685872", "reserves": [ - "1479550968053347759878621", - "5495922063860518868733472" + "3286590866326617995862291", + "1373647849891391259962521" ], - "LPTokenSupply": "6886115312778187458974449" + "LPTokenSupply": "4621585729515361956864427" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "10853219387656804237312", - "expectedQty": "10856653737884428666071", + "inputIndex": 1, + "inputQty": "17857072012906962354176", + "expectedQty": "17805822969976276371735", "reserves": [ - "1490404187441004564115933", - "5495922063860518868733472" + "3286590866326617995862291", + "1391504921904298222316697" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3337425882306985472", - "expectedQty": "3390766880882099528", - "swapFee": "2002455529384191", - "reserves": [ - "1490404187441004564115933", - "5495918673093637986633944" + "type": "mintMulti", + "inputQtys": [ + "13521568410872986992640", + "15751265951170909175808" ], - "LPTokenSupply": "6896968629290435133593467" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1209243036354222751744", - "expectedQty": "1228569126252182075611", - "swapFee": "725545821812533651", + "expectedQty": "29083835109682078322479", "reserves": [ - "1490404187441004564115933", - "5494690103967385804558333" + "3300112434737490982854931", + "1407256187855469131492505" ], - "LPTokenSupply": "6895759458808663092095088" + "LPTokenSupply": "4668475387595020311558641" }, { "type": "mintMulti", "inputQtys": [ - "31493531512517097947136", - "15295881829106386468864" + "12849634918381549256704", + "76696735503076963647488" ], - "expectedQty": "46541486274443484536374", + "expectedQty": "89164446693606199439457", "reserves": [ - "1521897718953521662063069", - "5509985985796492191027197" + "3312962069655872532111635", + "1483952923358546095139993" ], - "LPTokenSupply": "6942300945083106576631462" + "LPTokenSupply": "4757639834288626510998098" }, { "type": "mint", "inputIndex": 0, - "inputQty": "19278072945669568462848", - "expectedQty": "19272184870517348782715", + "inputQty": "1998392246881122516992", + "expectedQty": "1977795323323014548150", "reserves": [ - "1541175791899191230525917", - "5509985985796492191027197" + "3314960461902753654628627", + "1483952923358546095139993" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "71861380742590972821504", - "expectedQty": "71795972921555461318878", + "inputQty": "10166688585655060480", + "expectedQty": "10061890844189509364", "reserves": [ - "1613037172641782203347421", - "5509985985796492191027197" + "3314970628591339309689107", + "1483952923358546095139993" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "46610095163740239429632", - "expectedQty": "46533986024228524455877", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4909562829480152530944", + "expectedQty": "4923549257204057449920", + "swapFee": "2945737697688091518", "reserves": [ - "1659647267805522442777053", - "5509985985796492191027197" - ] + "3314970628591339309689107", + "1479029374101342037690073" + ], + "LPTokenSupply": "4754718423247083331333819" }, { - "type": "mintMulti", - "inputQtys": [ - "619396624882489229312", - "1062296953447746633728" - ], - "expectedQty": "1663825402071492309976", + "type": "mint", + "inputIndex": 0, + "inputQty": "156838952988532004618240", + "expectedQty": "155205362576344468040315", "reserves": [ - "1660266664430404932006365", - "5511048282749939937660925" - ], - "LPTokenSupply": "7081566914301479403498908" + "3471809581579871314307347", + "1479029374101342037690073" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "45554524090668122112", - "51736893288420802560" - ], - "expectedQty": "96391906871564318675", + "type": "redeem", + "inputIndex": 0, + "inputQty": "180278933231610560512", + "expectedQty": "182084332445612314701", + "swapFee": "108167359938966336", "reserves": [ - "1660312218954495600128477", - "5511100019643228358463485" + "3471627497247425701992646", + "1479029374101342037690073" ], - "LPTokenSupply": "7081663306208350967817583" + "LPTokenSupply": "4909743517706932182710255" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "20794731696783030747136", - "expectedQty": "20819414387593304532849", - "swapFee": "12476839018069818448", + "inputQty": "3672702020203189895168", + "expectedQty": "3709473605066866150547", + "swapFee": "2203621212121913937", "reserves": [ - "1639492804566902295595628", - "5511100019643228358463485" + "3467918023642358835842099", + "1479029374101342037690073" ], - "LPTokenSupply": "7060869822195469744052291" + "LPTokenSupply": "4906071036048850205006480" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "55556015379789350174720", - "expectedQty": "54677556076355792482725", + "inputQty": "99502488850584964169728", + "expectedQty": "99707784174590296726464", + "swapFee": "59701493310350978501", "reserves": [ - "1639492804566902295595628", - "5566656035023017708638205" - ] + "3467918023642358835842099", + "1379321589926751740963609" + ], + "LPTokenSupply": "4806574517347596275934602" }, { "type": "redeemBassets", "inputQtys": [ - "1069062731541292122112", - "8167970404813246464" + "82127218050512863232", + "35490508472002457600" + ], + "expectedQty": "116648204137847683375", + "swapFee": "70030941047337012", + "reserves": [ + "3467835896424308322978867", + "1379286099418279738506009" ], - "expectedQty": "1075527253147282013924", - "swapFee": "645703774152860924", + "LPTokenSupply": "4806457806115611485647915" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "15202708580726350", + "expectedQty": "15228576606439329", + "swapFee": "9121625148435", "reserves": [ - "1638423741835361003473516", - "5566647867052612895391741" + "3467835896424308322978867", + "1379286084189703132066680" ], - "LPTokenSupply": "7114471269885281516946259" + "LPTokenSupply": "4806457790913815067436408" }, { "type": "mintMulti", "inputQtys": [ - "45969472336282918060032", - "13032028613581662584832" + "20406334465498476", + "34177386375076056" ], - "expectedQty": "58717516358056058229626", + "expectedQty": "54284555480680905", "reserves": [ - "1684393214171643921533548", - "5579679895666194557976573" + "3467835916830642788477343", + "1379286118367089507142736" ], - "LPTokenSupply": "7173188786243337575175885" + "LPTokenSupply": "4806457845198370548117313" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "4785584106599998291968", - "outputIndex": 1, - "expectedQty": "4848401502767438440616", - "swapFee": "3820941011025671065", - "reserves": [ - "1689178798278243919825516", - "5574831494163427119535957" + "inputIndex": 1, + "inputQty": "51285875276498071453696", + "outputIndex": 0, + "expectedQty": "51707261787030280473055", + "swapFee": "0", + "reserves": [ + "3416128655043612508004288", + "1430571993643587578596432" + ], + "LPTokenSupply": "4806457845198370548117313", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "15936226302382779138048", + "expectedQty": "16097007061229724526419", + "swapFee": "9561735781429667482", + "reserves": [ + "3400031647982382783477869", + "1430571993643587578596432" + ], + "LPTokenSupply": "4790522575069565911946013" + }, + { + "type": "redeemMasset", + "inputQty": "16746033591218700130713", + "expectedQtys": [ + "11878220187905146406790", + "4997791460333201561180" + ], + "redemptionFee": "10047620154731220078", + "reserves": [ + "3388153427794477637071079", + "1425574202183254377035252" + ], + "LPTokenSupply": "4773777546240362684937307" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "38679591095962316046336", + "outputIndex": 1, + "expectedQty": "38339994726415397362516", + "swapFee": "30615675730530407201", + "reserves": [ + "3426833018890439953117415", + "1387234207456838979672736" ], - "LPTokenSupply": "7173189168337438677742991", + "LPTokenSupply": "4773780607807935737978027", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemBassets", + "inputQtys": [ + "3349256766904153931776", + "12206203590815061639168" + ], + "expectedQty": "15489442198623158811007", + "swapFee": "9299244866093551417", + "reserves": [ + "3423483762123535799185639", + "1375028003866023918033568" + ], + "LPTokenSupply": "4758282796288933094970743" + }, { "type": "redeem", "inputIndex": 1, - "inputQty": "26924442565965764362240", - "expectedQty": "27336636841222878761372", - "swapFee": "16154665539579458617", + "inputQty": "182062523318805163147264", + "expectedQty": "182244769612724234369733", + "swapFee": "109237513991283097888", + "reserves": [ + "3423483762123535799185639", + "1192783234253299683663835" + ], + "LPTokenSupply": "4576231196721527060133267" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "29134593376135220822016", + "expectedQty": "29453884102505045392892", + "swapFee": "17480756025681132493", + "reserves": [ + "3394029878021030753792747", + "1192783234253299683663835" + ], + "LPTokenSupply": "4547098351420994407424500" + }, + { + "type": "redeemMasset", + "inputQty": "14582514554809563584921", + "expectedQtys": [ + "10878100753238616055375", + "3822952851124197537691" + ], + "redemptionFee": "8749508732885738150", "reserves": [ - "1689178798278243919825516", - "5547494857322204240774585" + "3383151777267792137737372", + "1188960281402175486126144" ], - "LPTokenSupply": "7146266341238026871326612" + "LPTokenSupply": "4532516711817058132413394" }, { "type": "mint", "inputIndex": 1, - "inputQty": "294106352230416154624", - "expectedQty": "289501209824167883738", + "inputQty": "4433626750709555200", + "expectedQty": "4430022734175988545", "reserves": [ - "1689178798278243919825516", - "5547788963674434656929209" + "3383151777267792137737372", + "1188964715028926195681344" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "525741781188889739264", - "expectedQty": "524637472635698783485", + "inputQty": "35504427997903089303552", + "expectedQty": "35098137901104642659656", "reserves": [ - "1689704540059432809564780", - "5547788963674434656929209" + "3418656205265695227040924", + "1188964715028926195681344" ] }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "649358274660322508800", + "outputIndex": 0, + "expectedQty": "656448681907714280985", + "swapFee": "0", + "reserves": [ + "3417999756583787512759939", + "1189614073303586518190144" + ], + "LPTokenSupply": "4567619279740896951061595", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "94212306899531874304", + "expectedQty": "95247799972484021366", + "swapFee": "56527384139719124", + "reserves": [ + "3417904508783815028738573", + "1189614073303586518190144" + ], + "LPTokenSupply": "4567525073086735833159203" + }, { "type": "mint", "inputIndex": 0, - "inputQty": "618731879810267216871424", - "expectedQty": "615924848128352029037754", + "inputQty": "20110291793551269888", + "expectedQty": "19879727219197081987", + "reserves": [ + "3417924619075608580008461", + "1189614073303586518190144" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "202792008086228448", + "expectedQty": "202654410362477405", "reserves": [ - "2308436419869700026436204", - "5547788963674434656929209" + "3417924619075608580008461", + "1189614276095594604418592" ] }, { "type": "redeemMasset", - "inputQty": "1868162220919509", + "inputQty": "1328760359945006", "expectedQtys": [ - "555190420029393", - "1334270789728184" + "993723681094972", + "345867158955822" ], - "redemptionFee": "1120897332551", + "redemptionFee": "797256215967", "reserves": [ - "2308436419314509606406811", - "5547788962340163867201025" + "3417924618081884898913489", + "1189614275749727445462770" ], - "LPTokenSupply": "7763005326180788635845335" + "LPTokenSupply": "4567545154139684758395185" }, { "type": "mintMulti", "inputQtys": [ - "11882177577446069501952", - "20064198851081160097792" + "3161409962053678399488", + "6648792488393691889664" ], - "expectedQty": "31586788779628774017046", + "expectedQty": "9769265190397129067437", "reserves": [ - "2320318596891955675908763", - "5567853161191245027298817" + "3421086028043938577312977", + "1196263068238121137352434" ], - "LPTokenSupply": "7794592114960417409862381" + "LPTokenSupply": "4577314419330081887462622" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "48556074902845661380608", - "outputIndex": 0, - "expectedQty": "48164710714080877084505", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "1080512057902430289920", + "outputIndex": 1, + "expectedQty": "1068075725472152826149", + "swapFee": "854518068661454095", "reserves": [ - "2272153886177874798824258", - "5616409236094090688679425" + "3422166540101841007602897", + "1195194992512648984526285" ], - "LPTokenSupply": "7794592114960417409862381", + "LPTokenSupply": "4577314504781888753608031", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2828845485839708848128", - "2050100408195836542976" - ], - "expectedQty": "4832548527178915000067", - "swapFee": "2901269878234289573", + "type": "redeem", + "inputIndex": 1, + "inputQty": "362219316407728472064", + "expectedQty": "362264487552689419802", + "swapFee": "217331589844637083", "reserves": [ - "2269325040692035089976130", - "5614359135685894852136449" + "3422166540101841007602897", + "1194832728025096295106483" ], - "LPTokenSupply": "7789756955290348084001697" + "LPTokenSupply": "4576952307198640009599675" }, { "type": "mintMulti", "inputQtys": [ - "2188018840235092213760", - "3237506424116118814720" + "2096191805591011721216", + "1341002383517726277632" ], - "expectedQty": "5366044185118363492705", + "expectedQty": "3412221798125539429083", "reserves": [ - "2271513059532270182189890", - "5617596642110010970951169" + "3424262731907432019324113", + "1196173730408614021384115" ], - "LPTokenSupply": "7795122999475466447494402" + "LPTokenSupply": "4580364528996765549028758" }, { - "type": "mintMulti", - "inputQtys": [ - "773560969803281203200", - "131639590716785852416" + "type": "redeemMasset", + "inputQty": "15717923020695404963430", + "expectedQtys": [ + "11743607807504592037029", + "4102312310519938055830" ], - "expectedQty": "898639318722722024943", + "redemptionFee": "9430753812417242978", "reserves": [ - "2272286620502073463393090", - "5617728281700727756803585" + "3412519124099927427287084", + "1192071418098094083328285" ], - "LPTokenSupply": "7796021638794189169519345" + "LPTokenSupply": "4564647549051451385789625" }, { "type": "redeemMasset", - "inputQty": "199160274881257344", + "inputQty": "3698904901906950678118", "expectedQtys": [ - "58013910089836682", - "143426617268779253" + "2763632904883594968719", + "965400537321845122577" + ], + "redemptionFee": "2219342941144170406", + "reserves": [ + "3409755491195043832318365", + "1191106017560772238205708" + ], + "LPTokenSupply": "4560948866083838549528547" + }, + { + "type": "mintMulti", + "inputQtys": [ + "52454288281327242313728", + "46625984791684218617856" ], - "redemptionFee": "119496164928754", + "expectedQty": "98441049890260263054879", "reserves": [ - "2272286562488163373556408", - "5617728138274110488024332" + "3462209779476371074632093", + "1237732002352456456823564" ], - "LPTokenSupply": "7796021439645863904754876" + "LPTokenSupply": "4659389915974098812583426" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "17051202758611515392", - "expectedQty": "16947994617575336556", + "inputIndex": 1, + "inputQty": "595646511180597120", + "expectedQty": "595022864152581910", "reserves": [ - "2272303613690921985071800", - "5617728138274110488024332" + "3462209779476371074632093", + "1237732597998967637420684" ] }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "4465240334121124233216", - "expectedQty": "4438166378744355695261", + "inputQty": "77022706033875897810944", + "outputIndex": 1, + "expectedQty": "76106774125410043901100", + "swapFee": "60916250147837559228", + "reserves": [ + "3539232485510246972443037", + "1161625823873557593519584" + ], + "LPTokenSupply": "4659396602621977748921258", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1360155252767146", + "expectedQty": "1360394944190398", "reserves": [ - "2276768854025043109305016", - "5617728138274110488024332" + "3539232485510246972443037", + "1161625825233712846286730" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "26336239600787200671744", - "34878647989576392507392" + "572923607414622781440", + "607758593753080004608" ], - "expectedQty": "60556702251156622638047", + "expectedQty": "1174045616555023362768", + "swapFee": "704850280101074662", "reserves": [ - "2303105093625830309976760", - "5652606786263686880531724" + "3538659561902832349661597", + "1161018066639959766282122" ], - "LPTokenSupply": "7861033256270382458424740" + "LPTokenSupply": "4658221924000565578781691" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "906384661703460388864", - "expectedQty": "893466418861800686782", + "inputQty": "1461761765571036416", + "expectedQty": "1460619238923088637", + "swapFee": "877057059342621", + "reserves": [ + "3538659561902832349661597", + "1161016606020720843193485" + ], + "LPTokenSupply": "4658220462326505713679537" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "23896407406041", + "expectedQty": "23615033847808", "reserves": [ - "2303105093625830309976760", - "5653513170925390340920588" + "3538659561926728757067638", + "1161016606020720843193485" ] }, { "type": "redeemBassets", "inputQtys": [ - "7114046301336083456", - "50933356508859219968" + "1911845075021022887936", + "3019162044566232104960" ], - "expectedQty": "57277865047185962776", - "swapFee": "34387351439175082", + "expectedQty": "4909083094865966141948", + "swapFee": "2947218187832279052", "reserves": [ - "2303097979579528973893304", - "5653462237568881481700620" + "3536747716851707734179702", + "1157997443976154611088525" ], - "LPTokenSupply": "7861869413875580777891171" + "LPTokenSupply": "4653308726758885732334249" }, { "type": "swap", "inputIndex": 0, - "inputQty": "900281742720302055424", + "inputQty": "681549677392046325760", "outputIndex": 1, - "expectedQty": "906972385354143778929", - "swapFee": "715810485216380028", + "expectedQty": "672829068311332057287", + "swapFee": "538813336462482334", + "reserves": [ + "3537429266529099780505462", + "1157324614907843279031238" + ], + "LPTokenSupply": "4653308780640219378582482", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "188069000692196966400", + "193051941141727150080" + ], + "expectedQty": "378947284373561686978", + "swapFee": "227504873548265971", + "reserves": [ + "3537241197528407583539062", + "1157131562966701551881158" + ], + "LPTokenSupply": "4652929628601459623456129" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "5609267880020511031296", + "outputIndex": 0, + "expectedQty": "5677102282093796890164", + "swapFee": "0", "reserves": [ - "2303998261322249275948728", - "5652555265183527337921691" + "3531564095246313786648898", + "1162740830846722062912454" ], - "LPTokenSupply": "7861869485456629299529173", + "LPTokenSupply": "4652929628601459623456129", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "6823374216258262138880", - "expectedQty": "6917845233909616203449", - "swapFee": "4094024529754957283", + "inputQty": "237775741504593887232", + "expectedQty": "237602620517485770409", + "swapFee": "142665444902756332", "reserves": [ - "2303998261322249275948728", - "5645637419949617721718242" + "3531564095246313786648898", + "1162503228226204577142045" ], - "LPTokenSupply": "7855046520642824012886021" + "LPTokenSupply": "4652691867126499519844530" }, { "type": "mintMulti", "inputQtys": [ - "4635756043940569", - "30643152958891708" + "9224651934621146021888", + "2756760354689427439616" ], - "expectedQty": "34813877161744816", + "expectedQty": "11873300358656553685405", "reserves": [ - "2303998265958005319889297", - "5645637450592770680609950" + "3540788747180934932670786", + "1165259988580894004581661" ], - "LPTokenSupply": "7855046555456701174630837" + "LPTokenSupply": "4664565167485156073529935" }, { "type": "mintMulti", "inputQtys": [ - "300221952778821824", - "117384622508507328" + "7314107553041846", + "10215557637413964" ], - "expectedQty": "414088887704931580", + "expectedQty": "17445015987272480", "reserves": [ - "2303998566179958098711121", - "5645637567977393189117278" + "3540788754495042485712632", + "1165259998796451641995625" ], - "LPTokenSupply": "7855046969545588879562417" + "LPTokenSupply": "4664565184930172060802415" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "232988068951017062400", + "expectedQty": "230248127865193852812", + "reserves": [ + "3541021742563993502775032", + "1165259998796451641995625" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1722661645982727143424", + "expectedQty": "1702400698788238302418", + "reserves": [ + "3542744404209976229918456", + "1165259998796451641995625" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "115933943760526224916480", + "expectedQty": "114560545818768209512599", + "reserves": [ + "3658678347970502454834936", + "1165259998796451641995625" + ] }, { "type": "redeemBassets", "inputQtys": [ - "7661679575951399190528", - "8229035356086853435392" + "177447656806907871232", + "499326409055935397888" ], - "expectedQty": "15726431843818697164034", - "swapFee": "9441524020703640482", + "expectedQty": "674987630472765427036", + "swapFee": "405235719715488549", "reserves": [ - "2296336886604006699520593", - "5637408532621306335681886" + "3658500900313695546963704", + "1164760672387395706597737" ], - "LPTokenSupply": "7839312040330151549121948" + "LPTokenSupply": "4780383027232973193103512" }, { "type": "redeemBassets", "inputQtys": [ - "86414736546299", - "11663903857077932" + "27176366705641934848", + "9839853970309804032" ], - "expectedQty": "11583521949866536", - "swapFee": "6954285741364", + "expectedQty": "36698497097044857358", + "swapFee": "22032317648816204", "reserves": [ - "2296336886517591962974294", - "5637408520957402478603954" + "3658473723946989905028856", + "1164750832533425396793705" ], - "LPTokenSupply": "7839312028740370742088183" + "LPTokenSupply": "4780346308906790264311569" }, { - "type": "redeemMasset", - "inputQty": "16700758041385995468", - "expectedQtys": [ - "4889147956184176014", - "12002648439886476030" + "type": "mintMulti", + "inputQtys": [ + "10128682641157055840256", + "11051168647218710183936" ], - "redemptionFee": "10020454824831597", + "expectedQty": "21065916462438027801840", "reserves": [ - "2296331997369635778798280", - "5637396518308962592127924" + "3668602406588146960869112", + "1175802001180644106977641" ], - "LPTokenSupply": "7839295328984374838575874" + "LPTokenSupply": "4801412225369228292113409" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "49706865062173007872", + "expectedQty": "49115501932224817947", + "reserves": [ + "3668652113453209133876984", + "1175802001180644106977641" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "68476082046170184", + "expectedQty": "68514131761007336", + "reserves": [ + "3668652113453209133876984", + "1175802069656726153147825" + ] }, { "type": "redeemMasset", - "inputQty": "47170919661855008358", + "inputQty": "32385011638098945638", "expectedQtys": [ - "13809289683132307207", - "33901213617709671459" + "24729565784573437872", + "7925819546799191238" ], - "redemptionFee": "28302551797113005", + "redemptionFee": "19431006982859367", "reserves": [ - "2296318188079952646491073", - "5637362617095344882456465" + "3668627383887424560439112", + "1175794143837179353956587" ], - "LPTokenSupply": "7839248160894968163278816" + "LPTokenSupply": "4801429026316754877278990" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "7269659030137992118272", - "expectedQty": "7370339722475474372896", - "swapFee": "4361795418082795270", + "inputQty": "278425757559443251265536", + "expectedQty": "278140793436312847435826", "reserves": [ - "2296318188079952646491073", - "5629992277372869408083569" - ], - "LPTokenSupply": "7831978938044371979440071" + "3668627383887424560439112", + "1454219901396622605222123" + ] }, { "type": "mintMulti", "inputQtys": [ - "60866271815603092193280", - "47431538877390693335040" + "4906989954981415616512", + "5549463543614628954112" ], - "expectedQty": "107244220194124706180274", + "expectedQty": "10390179885796210427284", "reserves": [ - "2357184459895555738684353", - "5677423816250260101418609" + "3673534373842405976055624", + "1459769364940237234176235" ], - "LPTokenSupply": "7939223158238496685620345" + "LPTokenSupply": "5089959999638863935142100" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "53037041126809280708608", - "35298388261447764279296" + "25278730402127159296", + "3738815283880447488" ], - "expectedQty": "87496521421297225237855", + "expectedQty": "28734045072784718678", + "swapFee": "17250777510176937", "reserves": [ - "2410221501022365019392961", - "5712722204511707865697905" + "3673509095112003848896328", + "1459765626124953353728747" ], - "LPTokenSupply": "8026719679659793910858200" + "LPTokenSupply": "5089931250068091391264177" }, { "type": "swap", "inputIndex": 1, - "inputQty": "731379264407896704", + "inputQty": "119183962881840496", "outputIndex": 0, - "expectedQty": "725768036215217760", + "expectedQty": "120211540230891892", "swapFee": "0", "reserves": [ - "2410220775254328804175201", - "5712722935890972273594609" + "3673508974900463618004436", + "1459765745308916235569243" ], - "LPTokenSupply": "8026719679659793910858200", + "LPTokenSupply": "5089931250068091391264177", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "4334333179626224353280", - "4333080578412222873600" - ], - "expectedQty": "8578187650680650550223", - "swapFee": "5150002591963568471", - "reserves": [ - "2405886442074702579821921", - "5708389855312560050721009" - ], - "LPTokenSupply": "8018136857006780493096352" - }, - { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "24747051544097185792", - "expectedQty": "24397807701683046499", + "inputQty": "1039231656508404924416", + "expectedQty": "1041040820232910636211", + "swapFee": "623538993905042954", "reserves": [ - "2405886442074702579821921", - "5708414602364104147906801" - ] + "3673508974900463618004436", + "1458724704488683324933032" + ], + "LPTokenSupply": "5088892080765482376844056" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "7228975589694933827584", - "expectedQty": "7271617583295773731241", - "swapFee": "4337385353816960296", + "inputIndex": 1, + "inputQty": "4098766171085245251584", + "expectedQty": "4105822043122234064769", + "swapFee": "2459259702651147150", "reserves": [ - "2398614824491406806090680", - "5708414602364104147906801" + "3673508974900463618004436", + "1454618882445561090868263" ], - "LPTokenSupply": "8010932712963322624011296" + "LPTokenSupply": "5084793560520367396707187" }, { "type": "redeemBassets", "inputQtys": [ - "9560098975307872075776", - "2397312258702977794048" + "2247051630019557376", + "1669066174433041152" ], - "expectedQty": "11862073203097705553683", - "swapFee": "7121516831957798011", + "expectedQty": "3887816418606284482", + "swapFee": "2334090305346978", "reserves": [ - "2389054725516098934014904", - "5706017290105401170112753" + "3673506727848833598447060", + "1454617213379386657827111" ], - "LPTokenSupply": "7999064230395076156439402" + "LPTokenSupply": "5084789670603267515610423" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "17261430254419448954880", - "expectedQty": "17150141836640734017695", + "inputQty": "9969429164346464", + "expectedQty": "10073090679809212", + "swapFee": "5981657498607", "reserves": [ - "2406316155770518382969784", - "5706017290105401170112753" - ] + "3673506717775742918637848", + "1454617213379386657827111" + ], + "LPTokenSupply": "5084789660634436517013819" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "116373903772800925696", - "outputIndex": 1, - "expectedQty": "117180503882435284513", - "swapFee": "92495563266291197", + "type": "redeemMasset", + "inputQty": "29960577323282667929", + "expectedQtys": [ + "21632034592863572464", + "8565747199245664817" + ], + "redemptionFee": "17976346393969600", "reserves": [ - "2406432529674291183895480", - "5705900109601518734828240" + "3673485085741150055065384", + "1454608647632187412162294" ], - "LPTokenSupply": "8016214381481273217086216", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5084759701854747873742850" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "318820173641961216", - "2871922210393266688" + "5006655107726167769088", + "6173094038634908090368" ], - "expectedQty": "3148149459680211963", - "swapFee": "1890023690022140", + "expectedQty": "11110973833954591857444", "reserves": [ - "2406432210854117541934264", - "5705897237679308341561552" + "3678491740848876222834472", + "1460781741670822320252662" ], - "LPTokenSupply": "8016211231630792215854326" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "137684217549107520", - "expectedQty": "136791550982622332", - "reserves": [ - "2406432348538335091041784", - "5705897237679308341561552" - ] + "LPTokenSupply": "5095870675688702465600294" }, { - "type": "redeemMasset", - "inputQty": "4152333240090228326", - "expectedQtys": [ - "1245764761740681663", - "2953835671770243265" + "type": "mintMulti", + "inputQtys": [ + "1785901598078143", + "18650003571788684" ], - "redemptionFee": "2491399944054136", + "expectedQty": "20372959074876850", "reserves": [ - "2406431102773573350360121", - "5705894283843636571318287" + "3678491742634777820912615", + "1460781760320825892041346" ], - "LPTokenSupply": "8016207216338243102653745" + "LPTokenSupply": "5095870696061661540477144" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "6967982611090834980864", - "outputIndex": 0, - "expectedQty": "6914286422497764142785", - "swapFee": "0", + "inputQty": "18553265442979872", + "expectedQty": "18585512365570917", + "swapFee": "11131959265787", "reserves": [ - "2399516816351075586217336", - "5712862266454727406299151" + "3678491742634777820912615", + "1460781741735313526470429" ], - "LPTokenSupply": "8016207216338243102653745", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5095870677509509293423850" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1764017175156186", - "expectedQty": "1739094990260411", + "type": "redeemMasset", + "inputQty": "499543699498660864", + "expectedQtys": [ + "360382935417106877", + "143113223821787035" + ], + "redemptionFee": "299726219699196", "reserves": [ - "2399516816351075586217336", - "5712862268218744581455337" - ] + "3678491382251842403805738", + "1460781598622089704683394" + ], + "LPTokenSupply": "5095870177995782416732905" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "143768590214496205668352", - "expectedQty": "144568076407606616762165", - "swapFee": "86261154128697723401", + "type": "redeemMasset", + "inputQty": "187363253274236825", + "expectedQtys": [ + "135168393226874620", + "53677304368254443" + ], + "redemptionFee": "112417951964542", "reserves": [ - "2254948739943468969455171", - "5712862268218744581455337" + "3678491247083449176931118", + "1460781544944785336428951" ], - "LPTokenSupply": "7872447253978254757018144" + "LPTokenSupply": "5095869990643770937692534" }, { - "type": "redeemBassets", - "inputQtys": [ - "1280593495428302635008", - "643542791832448663552" - ], - "expectedQty": "1907440477000073819321", - "swapFee": "1145151377026260047", + "type": "mint", + "inputIndex": 0, + "inputQty": "3111641307541312000", + "expectedQty": "3077810897026492960", "reserves": [ - "2253668146448040666820163", - "5712218725426912132791785" - ], - "LPTokenSupply": "7870538782865015359564779" + "3678494358724756718243118", + "1460781544944785336428951" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "123066515104913837522944", - "expectedQty": "124784214591192029900922", - "swapFee": "73839909062948302513", + "inputQty": "9642504301856280576", + "expectedQty": "9619998282995080049", "reserves": [ - "2253668146448040666820163", - "5587434510835720102890863" - ], - "LPTokenSupply": "7747479651751007816872086" + "3678494358724756718243118", + "1460791187449087192709527" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "10696930239134992171008", - "expectedQty": "10543731348450663170332", + "inputQty": "5273867363049146417152", + "expectedQty": "5261453427954351074642", "reserves": [ - "2253668146448040666820163", - "5598131441074855095061871" + "3678494358724756718243118", + "1466065054812136339126679" ] }, { "type": "redeemBassets", "inputQtys": [ - "2769549589029965004800", - "2144357686759510507520" + "24199716332379157037056", + "19446742820253966794752" ], - "expectedQty": "4866509900441440923148", - "swapFee": "2921658935626240298", + "expectedQty": "43337940008326461389585", + "swapFee": "26018375030013885164", "reserves": [ - "2250898596859010701815363", - "5595987083388095584554351" + "3654294642392377561206062", + "1446618311991882372331927" ], - "LPTokenSupply": "7753154243705974975503000" + "LPTokenSupply": "5057782785335051836453951" }, { - "type": "redeemMasset", - "inputQty": "713040264779932364", - "expectedQtys": [ - "206885906339393932", - "514341632815369531" - ], - "redemptionFee": "427824158867959", + "type": "mint", + "inputIndex": 1, + "inputQty": "2373395946692987392", + "expectedQty": "2367927673185300287", "reserves": [ - "2250898389973104362421431", - "5595986569046462769184820" - ], - "LPTokenSupply": "7753153530708492611457431" + "3654294642392377561206062", + "1446620685387829065319319" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "120227656353714438144", - "expectedQty": "118504806321922968936", + "inputQty": "19515775086190956", + "expectedQty": "19470810814803211", "reserves": [ - "2250898389973104362421431", - "5596106796702816483622964" + "3654294642392377561206062", + "1446620704903604151510275" ] }, { - "type": "mintMulti", - "inputQtys": [ - "2039724278192910630912", - "1868884606344903524352" + "type": "redeemMasset", + "inputQty": "40061994917110745", + "expectedQtys": [ + "28927779530430281", + "11451601173629105" ], - "expectedQty": "3869553086786198705891", + "redemptionFee": "24037196950266", "reserves": [ - "2252938114251297273052343", - "5597975681309161387147316" + "3654294613464598030775781", + "1446620693452002977881170" ], - "LPTokenSupply": "7757141588601600733132258" + "LPTokenSupply": "5057785132673944639141730" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8562505497269994782720", - "5478369428822762192896" + "848246252117311488000", + "460414169469136601088" ], - "expectedQty": "13910724251844220186418", + "expectedQty": "1298361846352048631768", + "swapFee": "779484798690443445", "reserves": [ - "2261500619748567267835063", - "5603454050737984149340212" + "3653446367212480719287781", + "1446160279282533841280082" ], - "LPTokenSupply": "7771052312853444953318676" + "LPTokenSupply": "5056486069291273769110860" }, { "type": "redeemBassets", "inputQtys": [ - "13941779019741161062400", - "9678282411067133919232" + "205073474795068227584", + "116931028655421800448" ], - "expectedQty": "23397374686742905273682", - "swapFee": "14046852923800023178", + "expectedQty": "319501732813930253526", + "swapFee": "191816129365977738", "reserves": [ - "2247558840728826106772663", - "5593775768326917015420980" + "3653241293737685651060197", + "1446043348253878419479634" ], - "LPTokenSupply": "7747642295999070628024132" + "LPTokenSupply": "5056166394923943409477368" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "461189332307569016832", - "519129609077990555648" + "3155030689731292168192", + "6810225110928502816768" ], - "expectedQty": "970106513661108117205", + "expectedQty": "9915329050431517269614", + "swapFee": "5952769091713938725", "reserves": [ - "2248020030061133675789495", - "5594294897935995005976628" + "3650086263047954358892005", + "1439233123142949916662866" ], - "LPTokenSupply": "7748612402512731736141337" + "LPTokenSupply": "5046245708381329349662900" }, { "type": "redeemMasset", - "inputQty": "3030784836769781", + "inputQty": "14799111664885766553", "expectedQtys": [ - "878760829312357", - "2186834262234949" + "10698175731540649369", + "4218302735996208349" ], - "redemptionFee": "1818470902061", + "redemptionFee": "8879466998931459", "reserves": [ - "2248020029182372846477138", - "5594294895749160743741679" + "3650075564872222818242636", + "1439228904840213920454517" ], - "LPTokenSupply": "7748612399482128746461762" + "LPTokenSupply": "5046230910157611163789492" }, { - "type": "redeemBassets", - "inputQtys": [ - "1279953411736936704", - "976593055749833984" - ], - "expectedQty": "2234857271135533113", - "swapFee": "1341719394317910", + "type": "swap", + "inputIndex": 1, + "inputQty": "26077977278483160", + "outputIndex": 0, + "expectedQty": "26305985247700256", + "swapFee": "0", "reserves": [ - "2248018749228961109540434", - "5594293919156104993907695" + "3650075538566237570542380", + "1439228930918191198937677" ], - "LPTokenSupply": "7748610163417310156042529" + "LPTokenSupply": "5046230910157611163789492", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", + "inputIndex": 1, + "inputQty": "10536541580980429783040", + "expectedQty": "10553649697844295551761", + "swapFee": "6321924948588257869", + "reserves": [ + "3650075538566237570542380", + "1428675281220346903385916" + ], + "LPTokenSupply": "5035695000769125592832238" + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "6991757063540287995904", - "expectedQty": "7029673235342886556546", - "swapFee": "4195054238124172797", + "inputQty": "53006634414421217116160", + "expectedQty": "52424901609037879357377", + "reserves": [ + "3703082172980658787658540", + "1428675281220346903385916" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "574255288776426", + "expectedQty": "575069467869531", + "swapFee": "344553173265", "reserves": [ - "2240989075993618222983888", - "5594293919156104993907695" + "3703082172980658787658540", + "1428675280645277435516385" ], - "LPTokenSupply": "7741618825859193680463904" + "LPTokenSupply": "5088119901803942638730515" }, { "type": "swap", "inputIndex": 0, - "inputQty": "55156453265535934464", + "inputQty": "197420852463448415535104", "outputIndex": 1, - "expectedQty": "55580629655274002708", - "swapFee": "43861547930271787", + "expectedQty": "195142942028646688364736", + "swapFee": "156179551503549347411", "reserves": [ - "2241044232446883758918352", - "5594238338526449719904987" + "3900503025444107203193644", + "1233532338616630747151649" ], - "LPTokenSupply": "7741618830245348473491082", + "LPTokenSupply": "5088135519759092993665256", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "9804390033327326822", - "expectedQtys": [ - "2836472445274069799", - "7080584430143398496" - ], - "redemptionFee": "5882634019996396", + "type": "swap", + "inputIndex": 1, + "inputQty": "93543797738807469539328", + "outputIndex": 0, + "expectedQty": "94652504154559403185485", + "swapFee": "0", "reserves": [ - "2241041395974438484848553", - "5594231257942019576506491" + "3805850521289547800008159", + "1327076136355438216690977" ], - "LPTokenSupply": "7741609026443578548163899" + "LPTokenSupply": "5088135519759092993665256", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "851240800174510964736", - "expectedQty": "863115055711648921320", - "swapFee": "510744480104706578", + "type": "mintMulti", + "inputQtys": [ + "712978219271400587264", + "320148964973292224512" + ], + "expectedQty": "1024682113370906020965", "reserves": [ - "2241041395974438484848553", - "5593368142886307927585171" + "3806563499508819200595423", + "1327396285320411508915489" ], - "LPTokenSupply": "7740757836717852047669820" + "LPTokenSupply": "5089160201872463899686221" }, { - "type": "redeemBassets", - "inputQtys": [ - "924889524995132358656", - "3376348088417102331904" + "type": "redeemMasset", + "inputQty": "11254191807732", + "expectedQtys": [ + "8412800968336", + "2933648881976" ], - "expectedQty": "4247263788563176111028", - "swapFee": "2549888206061542592", + "redemptionFee": "6752515084", "reserves": [ - "2240116506449443352489897", - "5589991794797890825253267" + "3806563499500406399627087", + "1327396285317477860033513" ], - "LPTokenSupply": "7736508278029903416170458" + "LPTokenSupply": "5089160201861210383129997" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "836452165289013533474816", - "expectedQty": "847834486799914123149563", - "swapFee": "501871299173408120084", + "type": "redeemBassets", + "inputQtys": [ + "137759267016340351746048", + "24863520053687480221696" + ], + "expectedQty": "161021880691863663632635", + "swapFee": "96671131093774462857", "reserves": [ - "2240116506449443352489897", - "4742157307997976702103704" + "3668804232484066047881039", + "1302532765263790379811817" ], - "LPTokenSupply": "6900106299870807223507650" + "LPTokenSupply": "4928051317151362322480789" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "32564046753607826014208", - "expectedQty": "32315300909652842171275", + "inputQty": "108176122769276096", + "outputIndex": 1, + "expectedQty": "106962485509505736", + "swapFee": "85551187098077", "reserves": [ - "2272680553203051178504105", - "4742157307997976702103704" - ] + "3668804340660188817157135", + "1302532658301304870306081" + ], + "LPTokenSupply": "4928051317159917441190596", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "457302224823976145715", - "expectedQtys": [ - "149829071569021165566", - "312632158395604166395" + "type": "redeemBassets", + "inputQtys": [ + "1611743145979193327616", + "11550352172870187089920" ], - "redemptionFee": "274381334894385687", + "expectedQty": "13132516777110976786129", + "swapFee": "7884240610632965851", "reserves": [ - "2272530724131482157338539", - "4741844675839581097937309" + "3667192597514209623829519", + "1290982306128434683216161" ], - "LPTokenSupply": "6931964325993769578971778" + "LPTokenSupply": "4914911704566256894735200" }, { "type": "swap", "inputIndex": 0, - "inputQty": "43007415663827552", + "inputQty": "428477519380316864", "outputIndex": 1, - "expectedQty": "43234228275767814", - "swapFee": "34141149413997", + "expectedQty": "423604068574152746", + "swapFee": "338847390165290", "reserves": [ - "2272530767138897821166091", - "4741844632605352822169495" + "3667193025991729004146383", + "1290981882524366109063415" ], - "LPTokenSupply": "6931964325997183693913177", + "LPTokenSupply": "4914911704600141633751729", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "669835338045574963", - "expectedQtys": [ - "219462768449523642", - "457929267967301265" + "type": "redeemBassets", + "inputQtys": [ + "41787731673906082217984", + "303929394970021941215232" ], - "redemptionFee": "401901202827344", + "expectedQty": "345537026451310629698577", + "swapFee": "207446683881115046847", "reserves": [ - "2272530547676129371642449", - "4741844174676084854868230" + "3625405294317822921928399", + "987052487554344167848183" ], - "LPTokenSupply": "6931963656202035768620948" + "LPTokenSupply": "4569187976133338000510988" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6287416305568316391424", - "expectedQty": "6238960923905267314164", + "inputIndex": 1, + "inputQty": "11639432713333664382976", + "expectedQty": "11679682113962751354481", "reserves": [ - "2278817963981697688033873", - "4741844174676084854868230" + "3625405294317822921928399", + "998691920267677832231159" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "6311588775839784763392", - "outputIndex": 0, - "expectedQty": "6273507575618288580285", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "1921721854486082355", + "expectedQtys": [ + "1519982870619079321", + "418710320253498779" + ], + "redemptionFee": "1153033112691649", "reserves": [ - "2272544456406079399453588", - "4748155763451924639631622" + "3625403774334952302849078", + "998691501557357578732380" ], - "LPTokenSupply": "6938202617125941035935112", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4580865736640749577052278" }, { - "type": "redeemMasset", - "inputQty": "2990822193707672928256", - "expectedQtys": [ - "979028533096167091296", - "2045539729223144218200" + "type": "mintMulti", + "inputQtys": [ + "8073548745856882049024", + "7591405886924810878976" ], - "redemptionFee": "1794493316224603756", + "expectedQty": "15586242855316209556302", "reserves": [ - "2271565427872983232362292", - "4746110223722701495413422" + "3633477323080809184898102", + "1006282907444282389611356" ], - "LPTokenSupply": "6935211974381564985467231" + "LPTokenSupply": "4596451979496065786608580" }, { - "type": "redeemMasset", - "inputQty": "33877223717085915801190", - "expectedQtys": [ - "11089517937452280879583", - "23169957516205660955359" - ], - "redemptionFee": "20326334230251549480", + "type": "redeem", + "inputIndex": 1, + "inputQty": "915869839139586310144", + "expectedQty": "912379640754679557473", + "swapFee": "549521903483751786", "reserves": [ - "2260475909935530951482709", - "4722940266206495834458063" + "3633477323080809184898102", + "1005370527803527710053883" ], - "LPTokenSupply": "6901336783297902094820989" + "LPTokenSupply": "4595536164609116548673614" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1083352254951627816960", - "expectedQty": "1068510790722705512696", + "inputIndex": 0, + "inputQty": "48246531342827924750336", + "expectedQty": "47626350667451040433672", "reserves": [ - "2260475909935530951482709", - "4724023618461447462275023" + "3681723854423637109648438", + "1005370527803527710053883" ] }, { "type": "redeemBassets", "inputQtys": [ - "2247302307156254785536", - "69303971717243740160" + "28068269345534625447936", + "70914971537247389614080" ], - "expectedQty": "2298391565116752323414", - "swapFee": "1379862856784121867", + "expectedQty": "98918501062244807271133", + "swapFee": "59386732676953056196", "reserves": [ - "2258228607628374696697173", - "4723954314489730218534863" + "3653655585078102484200502", + "934455556266280320439803" ], - "LPTokenSupply": "6900105660646936942300589" + "LPTokenSupply": "4544190566154913524085575" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "4174463121954753536", - "expectedQty": "4204242381734214000", - "swapFee": "2504677873172852", + "inputQty": "4822699738250102177792", + "expectedQty": "4884826056847051117213", + "swapFee": "2893619842950061306", "reserves": [ - "2258224403385992962483173", - "4723954314489730218534863" + "3648770759021255433083289", + "934455556266280320439803" ], - "LPTokenSupply": "6900101486434282774864338" + "LPTokenSupply": "4539368155778647716913913" }, { - "type": "mintMulti", - "inputQtys": [ - "37540611558670902231040", - "44300548999916812238848" - ], - "expectedQty": "80945338716313180523215", + "type": "mint", + "inputIndex": 0, + "inputQty": "202831726649426304", + "expectedQty": "200132674063553781", "reserves": [ - "2295765014944663864714213", - "4768254863489647030773711" - ], - "LPTokenSupply": "6981046825150595955387553" + "3648770961852982082509593", + "934455556266280320439803" + ] }, { "type": "mintMulti", "inputQtys": [ - "34531087044879121907712", - "60907620869646378336256" + "4550563189683073843200", + "884074394273925169152" ], - "expectedQty": "94338531754094665167198", + "expectedQty": "5378525181526970922625", "reserves": [ - "2330296101989542986621925", - "4829162484359293409109967" + "3653321525042665156352793", + "935339630660554245608955" ], - "LPTokenSupply": "7075385356904690620554751" + "LPTokenSupply": "4544746881092848751390319" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "35936803667086598144", - "expectedQty": "36412951863786207485", - "swapFee": "21562082200251958", - "reserves": [ - "2330296101989542986621925", - "4829126071407429622902482" + "type": "redeemMasset", + "inputQty": "19046993644180689911808", + "expectedQtys": [ + "15301851304817433006205", + "3917648049798603692311" ], - "LPTokenSupply": "7075349422257231753981802" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "34256548135198740480", - "outputIndex": 1, - "expectedQty": "34434439383339179776", - "swapFee": "27192774340353530", + "redemptionFee": "11428196186508413947", "reserves": [ - "2330330358537678185362405", - "4829091636968046283722706" + "3638019673737847723346588", + "931421982610755641916644" ], - "LPTokenSupply": "7075349424976509188017155", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4525701030268286712319905" }, { "type": "redeemBassets", "inputQtys": [ - "42707552446757192", - "90435321371221952" + "324272438325916336128", + "146728299588170727424" ], - "expectedQty": "131575664012615828", - "swapFee": "78992794084019", + "expectedQty": "467422453965179912730", + "swapFee": "280621845486399787", "reserves": [ - "2330330315830125738605213", - "4829091546532724912500754" + "3637695401299521807010460", + "931275254311167471189220" ], - "LPTokenSupply": "7075349293329751660725708" + "LPTokenSupply": "4525233355254660594647365" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10317896783591754432512", - "59271965407722084499456" + "27194617319777824768", + "68133578292576190464" ], - "expectedQty": "68699160853381086327814", + "expectedQty": "95309078225910483172", + "swapFee": "57219778802827986", "reserves": [ - "2340648212613717493037725", - "4888363511940446997000210" + "3637668206682202029185692", + "931207120732874894998756" ], - "LPTokenSupply": "7144048454183132747053522" + "LPTokenSupply": "4525137994678633761619004" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "221775467099938553856", + "expectedQty": "222891095265147323621", + "reserves": [ + "3637668206682202029185692", + "931428896199974833552612" + ] }, { "type": "mintMulti", "inputQtys": [ - "16056676757103810560", - "30138002387191377920" + "24938201068985785516032", + "33331477358405264343040" ], - "expectedQty": "45658352194649891984", + "expectedQty": "58095853337967923002482", "reserves": [ - "2340664269290474596848285", - "4888393649942834188378130" + "3662606407751187814701724", + "964760373558380097895652" ], - "LPTokenSupply": "7144094112535327396945506" + "LPTokenSupply": "4583456739111866831945107" }, { "type": "mint", "inputIndex": 0, - "inputQty": "24287713643386343424", - "expectedQty": "24100895566996268967", + "inputQty": "143979286349492584448", + "expectedQty": "142088734207632440500", "reserves": [ - "2340688557004117983191709", - "4888393649942834188378130" + "3662750387037537307286172", + "964760373558380097895652" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "259662749742208122880", - "expectedQty": "263110932566893836094", - "swapFee": "155797649845324873", + "type": "redeemBassets", + "inputQtys": [ + "8158724305333548744704", + "2945228931108563320832" + ], + "expectedQty": "11009600263071824215534", + "swapFee": "6609725993439158024", "reserves": [ - "2340688557004117983191709", - "4888130539010267294542036" + "3654591662732203758541468", + "961815144627271534574820" ], - "LPTokenSupply": "7143858566260917169624080" + "LPTokenSupply": "4572583278829608544927850" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3219320189794522234880", - "outputIndex": 0, - "expectedQty": "3199799688311634644104", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "633273783664558106214", + "expectedQtys": [ + "505834084304614517953", + "133125374283024721502" + ], + "redemptionFee": "379964270198734863", "reserves": [ - "2337488757315806348547605", - "4891349859200061816776916" + "3654085828647899144023515", + "961682019252988509853318" ], - "LPTokenSupply": "7143858566260917169624080", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4571950043042371006695122" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "288303600116491851137024", - "outputIndex": 1, - "expectedQty": "289550302371432877294276", - "swapFee": "228770926618595648018", + "inputQty": "1447009909009207787520", + "expectedQty": "1427998178320558575040", "reserves": [ - "2625792357432298199684629", - "4601799556828628939482640" - ], - "LPTokenSupply": "7143881443353579029188881", - "hardLimitError": false, - "insufficientLiquidityError": false + "3655532838556908351811035", + "961682019252988509853318" + ] }, { "type": "redeemMasset", - "inputQty": "248981871807701136179", + "inputQty": "4901308183873246252236", "expectedQtys": [ - "91460424769794466191", - "160287823590350329421" + "3915299089826866525283", + "1030020218932160548788" ], - "redemptionFee": "149389123084620681", + "redemptionFee": "2940784910323947751", "reserves": [ - "2625700897007528405218438", - "4601639269005038589153219" + "3651617539467081485285752", + "960651999034056349304530" ], - "LPTokenSupply": "7143632476420683636514770" + "LPTokenSupply": "4568477027115309351412701" }, { - "type": "mintMulti", - "inputQtys": [ - "57995501806415448", - "162322823467312160" + "type": "redeemMasset", + "inputQty": "6216268996335", + "expectedQtys": [ + "4965728644420", + "1306362754960" ], - "expectedQty": "217674479618879039", + "redemptionFee": "3729761397", "reserves": [ - "2625700955003030211633886", - "4601639431327862056465379" + "3651617539462115756641332", + "960651999032749986549570" ], - "LPTokenSupply": "7143632694095163255393809" + "LPTokenSupply": "4568477027109093455392505" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "42775499549883330723840", - "expectedQty": "42214476143926871267332", + "inputQty": "34910952973637672501248", + "outputIndex": 0, + "expectedQty": "35506365619968684411116", + "swapFee": "0", "reserves": [ - "2625700955003030211633886", - "4644414930877745387189219" - ] + "3616111173842147072230216", + "995562952006387659050818" + ], + "LPTokenSupply": "4568477027109093455392505", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "219188020750822014976", - "expectedQty": "216309790161286632164", + "type": "redeem", + "inputIndex": 0, + "inputQty": "77380387295065702400", + "expectedQty": "78341517432248541456", + "swapFee": "46428232377039421", "reserves": [ - "2625700955003030211633886", - "4644634118898496209204195" - ] + "3616032832324714823688760", + "995562952006387659050818" + ], + "LPTokenSupply": "4568399651364621627394047" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "10600524254469393743872", + "17360620455446999728128" + ], + "expectedQty": "27884855782823559257999", + "swapFee": "16740958044520848063", + "reserves": [ + "3605432308070245429944888", + "978202331550940659322690" + ], + "LPTokenSupply": "4540499728719557999372790" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1726536270449428736", - "expectedQty": "1748460097579957210", - "swapFee": "1035921762269657", + "inputQty": "2368262465959012", + "expectedQty": "2358243432264199", + "swapFee": "1420957479575", + "reserves": [ + "3605432308070245429944888", + "978202329192697227058491" + ], + "LPTokenSupply": "4540499726351437629161735" + }, + { + "type": "mintMulti", + "inputQtys": [ + "153229899885344555008", + "478956871188352729088" + ], + "expectedQty": "631946038647572804737", "reserves": [ - "2625700955003030211633886", - "4644632370438398629246985" + "3605585537970130774499896", + "978681286063885579787579" ], - "LPTokenSupply": "7186061753596573140091534" + "LPTokenSupply": "4541131672390085201966472" }, { "type": "mint", "inputIndex": 0, - "inputQty": "21836122564511320244224", - "expectedQty": "21641967089539619534740", + "inputQty": "2749651284262875", + "expectedQty": "2714042360161507", "reserves": [ - "2647537077567541531878110", - "4644632370438398629246985" + "3605585540719782058762771", + "978681286063885579787579" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "19047822349566786666496", - "expectedQty": "19289006137136927424003", - "swapFee": "11428693409740071999", + "type": "redeemBassets", + "inputQtys": [ + "1911571498493427318784", + "4017508202062122844160" + ], + "expectedQty": "5919072517117674505831", + "swapFee": "3553575655664003105", "reserves": [ - "2647537077567541531878110", - "4625343364301261701822982" + "3603673969221288631443987", + "974663777861823456943419" ], - "LPTokenSupply": "7188657041205886946966977" + "LPTokenSupply": "4535209404368919790019352" }, { - "type": "mintMulti", - "inputQtys": [ - "471159981067177754624", - "107008174681045909504" - ], - "expectedQty": "572553907277722715853", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7017766137607326007296", + "expectedQty": "6987022058473224555223", + "swapFee": "4210659682564395604", "reserves": [ - "2648008237548608709632734", - "4625450372475942747732486" + "3603673969221288631443987", + "967676755803350232388196" ], - "LPTokenSupply": "7189229595113164669682830" + "LPTokenSupply": "4528192059297280720451616" }, { "type": "mint", "inputIndex": 1, - "inputQty": "19967854471301939855360", - "expectedQty": "19706328994964135106297", + "inputQty": "661945027517058514944", + "expectedQty": "664507430862092247439", "reserves": [ - "2648008237548608709632734", - "4645418226947244687587846" + "3603673969221288631443987", + "968338700830867290903140" ] }, { "type": "redeemBassets", "inputQtys": [ - "226142789270966089285632", - "45828301040317093642240" + "18558788804011014225920", + "10735467958413547274240" ], - "expectedQty": "269402438385596830573834", - "swapFee": "161738506135039121817", + "expectedQty": "29094607090849130923695", + "swapFee": "17467244601270240698", "reserves": [ - "2421865448277642620347102", - "4599589925906927593945606" + "3585115180417277617218067", + "957603232872453743628900" ], - "LPTokenSupply": "6939387921067010439005656" + "LPTokenSupply": "4499746239117152538558730" }, { "type": "redeemMasset", - "inputQty": "28946335036277417574", + "inputQty": "4357301019505642700", "expectedQtys": [ - "10096289038507709965", - "19174801549603205196" + "3469540801954651735", + "926732704902372331" ], - "redemptionFee": "17367801021766450", + "redemptionFee": "2614380611703385", "reserves": [ - "2421855351988604112637137", - "4599570751105377990740410" + "3585111710876475662566332", + "957602306139748841256569" ], - "LPTokenSupply": "6939358976468754263764727" + "LPTokenSupply": "4499741882077571094086368" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5023846721365090304", - "outputIndex": 0, - "expectedQty": "4998691263195707926", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "3168623271745279125094", + "expectedQtys": [ + "2523045271345340756565", + "673918740943392614386" + ], + "redemptionFee": "1901173963047167475", "reserves": [ - "2421850353297340916929211", - "4599575774952099355830714" + "3582588665605130321809767", + "956928387398805448642183" ], - "LPTokenSupply": "6939358976468754263764727", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4496573448923222119678021" }, { "type": "redeemMasset", - "inputQty": "405214504789361609932", + "inputQty": "834072981993445287526", "expectedQtys": [ - "141335831389639798769", - "268424869979027985824" + "664138495957487889335", + "177394906104499697213" ], - "redemptionFee": "243128702873616965", + "redemptionFee": "500443789196067172", "reserves": [ - "2421709017465951277130442", - "4599307350082120327844890" + "3581924527109172833920432", + "956750992492700948944970" ], - "LPTokenSupply": "6938953786276835189516491" + "LPTokenSupply": "4495739425985607593997212" }, { "type": "redeemMasset", - "inputQty": "188719499846552985", + "inputQty": "13103688515172268441", "expectedQtys": [ - "65823972084184325", - "125012822116497653" + "10433936887665081420", + "2786959746730450728" ], - "redemptionFee": "113231699907931", + "redemptionFee": "7862213109103361", "reserves": [ - "2421708951641979192946117", - "4599307225069298211347237" + "3581914093172285168839012", + "956748205532954218494242" ], - "LPTokenSupply": "6938953597568658512954299" + "LPTokenSupply": "4495726323083313732639107" }, { - "type": "redeemBassets", - "inputQtys": [ - "3171950256858416021504", - "5955078563067458486272" - ], - "expectedQty": "9020469196991817193164", - "swapFee": "5415530836697108581", + "type": "mint", + "inputIndex": 1, + "inputQty": "105135817679545860096", + "expectedQty": "105555910597776106840", "reserves": [ - "2418537001385120776924613", - "4593352146506230752860965" - ], - "LPTokenSupply": "6929928254393913668363411" + "3581914093172285168839012", + "956853341350633764354338" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "12152648880840293482496", + "expectedQty": "11993882941580626273837", + "reserves": [ + "3594066742053125462321508", + "956853341350633764354338" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "74044353322311464517632", + "outputIndex": 1, + "hardLimitError": true }, { "type": "mint", "inputIndex": 1, - "inputQty": "3115727474324366426112", - "expectedQty": "3073968553787290295381", + "inputQty": "106006601258974871552", + "expectedQty": "106438240936154344927", "reserves": [ - "2418537001385120776924613", - "4596467873980555119287077" + "3594066742053125462321508", + "956959347951892739225890" ] }, { - "type": "mintMulti", - "inputQtys": [ - "198860144950450913280", - "3399694209722999111680" - ], - "expectedQty": "3551305185710188864487", + "type": "redeem", + "inputIndex": 0, + "inputQty": "26902749010072", + "expectedQty": "27242782465787", + "swapFee": "16141649406", "reserves": [ - "2418735861530071227837893", - "4599867568190278118398757" + "3594066742025882679855721", + "956959347951892739225890" ], - "LPTokenSupply": "6936553528133411147523279" + "LPTokenSupply": "4507932200149527154519579" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "172291733286975109595136", - "expectedQty": "170800723390566545345401", + "inputIndex": 1, + "inputQty": "530588521260632290361344", + "expectedQty": "530516072340760341709638", "reserves": [ - "2591027594817046337433029", - "4599867568190278118398757" + "3594066742025882679855721", + "1487547869212525029587234" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1090922943150280671232", - "2652739847866058014720" - ], - "expectedQty": "3699061152510214208447", + "type": "mint", + "inputIndex": 1, + "inputQty": "30360220022264666521600", + "expectedQty": "30269310277921949527344", "reserves": [ - "2592118517760196618104261", - "4602520308038144176413477" - ], - "LPTokenSupply": "7111053312676487907077127" + "3594066742025882679855721", + "1517908089234789696108834" + ] }, { "type": "redeemMasset", - "inputQty": "1625420107544448624230", + "inputQty": "378353949336126259", "expectedQtys": [ - "592142036604269404161", - "1051397044556874165838" + "268117808148485767", + "113236124721235658" ], - "redemptionFee": "975252064526669174", + "redemptionFee": "227012369601675", "reserves": [ - "2591526375723592348700100", - "4601468910993587302247639" + "3594066473908074531369954", + "1517907975998664974873176" ], - "LPTokenSupply": "7109427990094149911119814" + "LPTokenSupply": "5068717204436961346590469" }, { - "type": "mintMulti", - "inputQtys": [ - "1976612932566602219520", - "1481331620170075209728" - ], - "expectedQty": "3420911619076578256481", + "type": "mint", + "inputIndex": 0, + "inputQty": "128503468416728775524352", + "expectedQty": "127115261920057299626014", "reserves": [ - "2593502988656158950919620", - "4602950242613757377457367" - ], - "LPTokenSupply": "7112848901713226489376295" + "3722569942324803306894306", + "1517907975998664974873176" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "474772240425403627339776", - "expectedQty": "470332316049793732134382", + "inputQty": "13467062972434408", + "expectedQty": "13320584241971588", "reserves": [ - "3068275229081562578259396", - "4602950242613757377457367" + "3722569955791866279328714", + "1517907975998664974873176" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "124714431842445623296", - "expectedQty": "123141331326596040799", + "type": "mintMulti", + "inputQtys": [ + "8686541146532859609088", + "15196485149265103945728" + ], + "expectedQty": "23746474702840061039911", "reserves": [ - "3068275229081562578259396", - "4603074957045599823080663" - ] + "3731256496938399138937802", + "1533104461147930078818904" + ], + "LPTokenSupply": "5219578954380442949227982" }, { - "type": "redeemMasset", - "inputQty": "3234640391839368085504", - "expectedQtys": [ - "1307980223315002018224", - "1962252588420629784044" + "type": "redeemBassets", + "inputQtys": [ + "395187116606362662993920", + "23548217653293198868480" ], - "redemptionFee": "1940784235103620851", + "expectedQty": "414449920902885224406483", + "swapFee": "248819244088184045070", "reserves": [ - "3066967248858247576241172", - "4601112704457179193296619" + "3336069380332036475943882", + "1509556243494636879950424" ], - "LPTokenSupply": "7580069912780930959828057" + "LPTokenSupply": "4804905096157878359180935" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "225363254425743360", + "expectedQty": "224511303770647677", + "reserves": [ + "3336069380332036475943882", + "1509556468857891305693784" + ] }, { "type": "mintMulti", "inputQtys": [ - "3059342912732800745472", - "654034622188738576384" + "1967331705024492601344", + "550828626448258170880" ], - "expectedQty": "3675224671690152873363", + "expectedQty": "2495429447587310022232", "reserves": [ - "3070026591770980376986644", - "4601766739079367931873003" + "3338036712037060968545226", + "1510107297484339563864664" ], - "LPTokenSupply": "7583745137452621112701420" + "LPTokenSupply": "4807400750116769439850844" }, { "type": "redeemBassets", "inputQtys": [ - "17422644264821132886016", - "16677891876788826537984" + "12644579443703640227840", + "6587657315496076771328" ], - "expectedQty": "33719904522061842418027", - "swapFee": "20244089166737147739", + "expectedQty": "19074625202020202706668", + "swapFee": "11451646108877448092", "reserves": [ - "3052603947506159244100628", - "4585088847202579105335019" + "3325392132593357328317386", + "1503519640168843487093336" ], - "LPTokenSupply": "7550007013250309206850426" + "LPTokenSupply": "4788315818433251247440892" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "104559304331800461312", - "outputIndex": 0, - "expectedQty": "104258250100485043199", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "7902250145047068540928", + "11602106902929129603072" + ], + "expectedQty": "19377387189022100986657", "reserves": [ - "3052499689256058759057429", - "4585193406506910905796331" + "3333294382738404396858314", + "1515121747071772616696408" ], - "LPTokenSupply": "7550007013250309206850426", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4807693205622273348427549" }, { "type": "redeemMasset", - "inputQty": "32405778168879998566", + "inputQty": "3830795214035125429862", "expectedQtys": [ - "13093931759326045619", - "19668539125304696622" + "2654392891072938285556", + "1206532616910166050220" ], - "redemptionFee": "19443466901327999", + "redemptionFee": "2298477128421075257", "reserves": [ - "3052486595324299433011810", - "4585173737967785601099709" + "3330639989847331458572758", + "1513915214454862450646188" ], - "LPTokenSupply": "7549974609416487016984659" + "LPTokenSupply": "4803862640255951065105212" }, { - "type": "redeemMasset", - "inputQty": "59792201491559468236", - "expectedQtys": [ - "24159734841264271417", - "36290603824473542837" + "type": "mintMulti", + "inputQtys": [ + "1425830981402912882688", + "161986768761064521728" ], - "redemptionFee": "35875320894935680", + "expectedQty": "1572254760852624711651", "reserves": [ - "3052462435589458168740393", - "4585137447363961127556872" + "3332065820828734371455446", + "1514077201223623515167916" ], - "LPTokenSupply": "7549914820802527547009991" + "LPTokenSupply": "4805434895016803689816863" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "8721895199296029982720", - "expectedQty": "8636632266308593013936", + "inputIndex": 1, + "inputQty": "13053896832587288018944", + "expectedQty": "13003556334750080259907", "reserves": [ - "3061184330788754198723113", - "4585137447363961127556872" + "3332065820828734371455446", + "1527131098056210803186860" ] }, { "type": "mintMulti", "inputQtys": [ - "128681560052174168260608", - "101480885148353071939584" + "263838367151450062848", + "43810351392883195904" ], - "expectedQty": "227621034799613361916519", + "expectedQty": "304721578609007208886", "reserves": [ - "3189865890840928366983721", - "4686618332512314199496456" + "3332329659195885821518294", + "1527174908407603686382764" ], - "LPTokenSupply": "7786172487868449501940446" + "LPTokenSupply": "4818743172930162777285656" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "143861867382399008768", - "outputIndex": 0, - "expectedQty": "143472867672938706913", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "4592873886666278912", + "2330338745121674240" + ], + "expectedQty": "6866154458600526365", "reserves": [ - "3189722417973255428276808", - "4686762194379696598505224" + "3332334252069772487797206", + "1527177238746348808057004" ], - "LPTokenSupply": "7786172487868449501940446", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemMasset", - "inputQty": "8904104093898031864217", - "expectedQtys": [ - "3645511258867631345865", - "5356467462802779378145" - ], - "redemptionFee": "5342462456338819118", - "reserves": [ - "3186076906714387796930943", - "4681405726916893819127079" - ], - "LPTokenSupply": "7777268918020797103958140" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8129690263965219", - "expectedQty": "8228083025659603", - "swapFee": "4877814158379", - "reserves": [ - "3186076906714387796930943", - "4681405718688810793467476" - ], - "LPTokenSupply": "7777268909891594621408758" + "LPTokenSupply": "4818750039084621377812021" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "19790643701053090955264", - "expectedQty": "19975705623134360081149", - "swapFee": "11874386220631854573", + "inputQty": "1137471608954136428544", + "expectedQty": "1148791069189828550025", + "swapFee": "682482965372481857", "reserves": [ - "3166101201091253436849794", - "4681405718688810793467476" + "3331185461000582659247181", + "1527177238746348808057004" ], - "LPTokenSupply": "7757479453629163593638951" + "LPTokenSupply": "4817612635723963778631662" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "7866544910717843", - "expectedQty": "7939997959345860", - "swapFee": "4719926946430", + "type": "mintMulti", + "inputQtys": [ + "11244799377624444960768", + "12567199782134521790464" + ], + "expectedQty": "23645415149806131847461", "reserves": [ - "3166101193151255477503934", - "4681405718688810793467476" + "3342430260378207104207949", + "1539744438528483329847468" ], - "LPTokenSupply": "7757479445763090675615751" + "LPTokenSupply": "4841258050873769910479123" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1611686110531159552", - "expectedQty": "1595818308704429958", + "inputQty": "2371909868126394122240", + "expectedQty": "2347172121218504405276", "reserves": [ - "3166102804837366008663486", - "4681405718688810793467476" + "3344802170246333498330189", + "1539744438528483329847468" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1795335407139702", - "outputIndex": 0, - "expectedQty": "1790391273607415", - "swapFee": "0", - "reserves": [ - "3166102803046974735056071", - "4681405720484146200607178" - ], - "LPTokenSupply": "7757481041581399380045709", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemMasset", - "inputQty": "339767297895609034342", - "expectedQtys": [ - "138587867063001018461", - "204916287946826807172" + "type": "redeemBassets", + "inputQtys": [ + "858688504725983461376", + "804359330492954443776" ], - "redemptionFee": "203860378737365420", + "expectedQty": "1650929753843965299173", + "swapFee": "991152543832678786", "reserves": [ - "3165964215179911734037610", - "4681200804196199373800006" + "3343943481741607514868813", + "1538940079197990375403692" ], - "LPTokenSupply": "7757141294669541644747909" + "LPTokenSupply": "4841953401203855000174317" }, { - "type": "redeemMasset", - "inputQty": "1971032576889805655244", - "expectedQtys": [ - "803965563771443142944", - "1188745035597018354953" - ], - "redemptionFee": "1182619546133883393", - "reserves": [ - "3165160249616140290894666", - "4680012059160602355445053" + "type": "redeemBassets", + "inputQtys": [ + "9556202710492096512", + "8725789434357137408" ], - "LPTokenSupply": "7755170380354606452481004" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "278050092817447354368", - "outputIndex": 0, - "expectedQty": "277284215314519791762", - "swapFee": "0", + "expectedQty": "18148020864274908095", + "swapFee": "10895349728401986", "reserves": [ - "3164882965400825771102904", - "4680290109253419802799421" + "3343933925538897022772301", + "1538931353408556018266284" ], - "LPTokenSupply": "7755170380354606452481004", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4841935243377175969704433" }, { - "type": "redeemMasset", - "inputQty": "40969852992015552", - "expectedQtys": [ - "16709754215558967", - "24710707548464302" + "type": "mintMulti", + "inputQtys": [ + "52745963888544", + "35823547345922" ], - "redemptionFee": "24581911795209", + "expectedQty": "87878524546394", "reserves": [ - "3164882948691071555543937", - "4680290084542712254335119" + "3343933925591642986660845", + "1538931353444379565612206" ], - "LPTokenSupply": "7755170339387211651644972" + "LPTokenSupply": "4841935243465054494250827" }, { "type": "redeemBassets", "inputQtys": [ - "970907599000336990208", - "1385957611094264250368" + "4808899242531719479296", + "3486541939550766235648" ], - "expectedQty": "2329881239078067323880", - "swapFee": "1398768004249390028", + "expectedQty": "8231581583945084982826", + "swapFee": "4941914098826346797", "reserves": [ - "3163912041092071218553729", - "4678904126931617990084751" + "3339125026349111267181549", + "1535444811504828799376558" ], - "LPTokenSupply": "7752839199256929759870065" + "LPTokenSupply": "4833699214158420465555882" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "47483233298287704", - "48594303700796000" + "438569742018416192", + "33183663482667948" ], - "expectedQty": "94999083570796616", + "expectedQty": "467046232970485782", + "swapFee": "280395977368712", "reserves": [ - "3163912088575304516841433", - "4678904175525921690880751" + "3339124587779369248765357", + "1535444778321165316708610" ], - "LPTokenSupply": "7752839294256013330666681" + "LPTokenSupply": "4833698746859831115438258" }, { - "type": "redeemMasset", - "inputQty": "19153780375300470", - "expectedQtys": [ - "7811914376948109", - "11552532995192142" - ], - "redemptionFee": "11492268225180", + "type": "mint", + "inputIndex": 1, + "inputQty": "990507251638775447552", + "expectedQty": "986619275963109485541", "reserves": [ - "3163912080763390139893324", - "4678904163973388695688609" - ], - "LPTokenSupply": "7752839275103382182188729" + "3339124587779369248765357", + "1536435285572804092156162" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "127293612785634115584", - "551018126781639491584" + "14403257418004182335488", + "5944624171266677407744" ], - "expectedQty": "670130593548509134223", - "swapFee": "402319747977892215", + "expectedQty": "20174250687538624690394", "reserves": [ - "3163784787150604505777740", - "4678353145846607056197025" + "3353527845197373431100845", + "1542379909744070769563906" ], - "LPTokenSupply": "7752168782422060492951511" + "LPTokenSupply": "4854859616823332849614193" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "185525255831722360832", - "expectedQty": "183192662817306486693", + "type": "redeemMasset", + "inputQty": "24764577324312859089305", + "expectedQtys": [ + "17096039218978712354532", + "7862939759188892345001" + ], + "redemptionFee": "14858746394587715453", "reserves": [ - "3163784787150604505777740", - "4678538671102438778557857" - ] + "3336431805978394718746313", + "1534516969984881877218905" + ], + "LPTokenSupply": "4830096525373659449296433" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "64700934849698644099072", - "expectedQty": "63886040381434967450648", + "inputQty": "354680358844399484928", + "outputIndex": 0, + "expectedQty": "357013359613046198713", + "swapFee": "0", "reserves": [ - "3163784787150604505777740", - "4743239605952137422656929" - ] + "3336074792618781672547600", + "1534871650343726276703833" + ], + "LPTokenSupply": "4830096525373659449296433", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "3243191759643285", - "1646682115991362" + "83368754619537440768", + "411090700974214021120" ], - "expectedQty": "4837378663892942", - "swapFee": "2904169700155", + "expectedQty": "491974210391183614575", + "swapFee": "295361743280678575", "reserves": [ - "3163784783907412746134455", - "4743239604305455306665567" + "3335991423864162135106832", + "1534460559642752062682713" ], - "LPTokenSupply": "7816238010626320350265769" + "LPTokenSupply": "4829604285337699313071139" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "44231822377786118504448", - "53522979337148127248384" + "410989962646678", + "291841454930647" ], - "expectedQty": "96646977011615157837102", - "swapFee": "58023000006973278669", + "expectedQty": "697395259045423", "reserves": [ - "3119552961529626627630007", - "4689716624968307179417183" + "3335991424275152097753510", + "1534460559934593517613360" ], - "LPTokenSupply": "7719538812914698916477863" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "977618982560254656512", - "expectedQty": "965269485685836854233", - "reserves": [ - "3119552961529626627630007", - "4690694243950867434073695" - ] + "LPTokenSupply": "4829604286035094572116562" }, { "type": "mint", "inputIndex": 1, - "inputQty": "46903590472782006190080", - "expectedQty": "46310334438520644207053", - "reserves": [ - "3119552961529626627630007", - "4737597834423649440263775" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "6813515389243431583744", - "expectedQty": "6747216562974317006561", + "inputQty": "178083848890479659712512", + "expectedQty": "177305040143963930255474", "reserves": [ - "3126366476918870059213751", - "4737597834423649440263775" + "3335991424275152097753510", + "1712544408825073177325872" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "32684136211995451981824", - "outputIndex": 1, - "expectedQty": "32752331511258603527568", - "swapFee": "25892090014890749410", + "type": "redeemBassets", + "inputQtys": [ + "1031085267177907945472", + "2522034961063709507584" + ], + "expectedQty": "3530743122883889014742", + "swapFee": "2119717704352945175", "reserves": [ - "3159050613130865511195575", - "4704845502912390836736207" + "3334960339007974189808038", + "1710022373864009467818288" ], - "LPTokenSupply": "7773564222610881203620651", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5003376675310240695706635" }, { - "type": "mintMulti", - "inputQtys": [ - "40764086939927437312", - "19320324213070090240" - ], - "expectedQty": "59440509397199879595", + "type": "redeem", + "inputIndex": 1, + "inputQty": "11451728777204389888", + "expectedQty": "11499702368288639852", + "swapFee": "6871037266322633", "reserves": [ - "3159091377217805438632887", - "4704864823236603906826447" + "3334960339007974189808038", + "1710010874161641179178436" ], - "LPTokenSupply": "7773623663120278403500246" + "LPTokenSupply": "5003365224268567217949010" }, { "type": "redeemMasset", - "inputQty": "2237715879617172275", + "inputQty": "15607864250947030220", "expectedQtys": [ - "908830650513146123", - "1353530128541050668" + "10397077758036621302", + "5331132672790759614" ], - "redemptionFee": "1342629527770303", + "redemptionFee": "9364718550568218", "reserves": [ - "3159090468387154925486764", - "4704863469706475365775779" + "3334949941930216153186736", + "1710005543028968388418822" ], - "LPTokenSupply": "7773621425538661739105001" + "LPTokenSupply": "5003349617340788125975611" }, { - "type": "redeemBassets", - "inputQtys": [ - "1783535159058376", - "820112109987660" - ], - "expectedQty": "2575792541242818", - "swapFee": "1546403366765", + "type": "redeem", + "inputIndex": 0, + "inputQty": "456529071038524358656", + "expectedQty": "460877775028544583285", + "swapFee": "273917442623114615", "reserves": [ - "3159090466603619766428388", - "4704863468886363255788119" + "3334489064155187608603451", + "1710005543028968388418822" ], - "LPTokenSupply": "7773621422961477434832093" + "LPTokenSupply": "5002893115661493863928416" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "64936797602343682048", - "expectedQty": "65541554099088652053", - "swapFee": "38962078561406209", + "type": "redeemBassets", + "inputQtys": [ + "1163528030513086201856", + "1013608231600341516288" + ], + "expectedQty": "2160631485584120610101", + "swapFee": "1297157185661869487", "reserves": [ - "3159024925049520677776335", - "4704863468886363255788119" + "3333325536124674522401595", + "1708991934797368046902534" ], - "LPTokenSupply": "7773556490060082947290665" + "LPTokenSupply": "5000731316734442647635775" }, { "type": "mintMulti", "inputQtys": [ - "19257452405408107855872", - "26416888378439663353856" + "830128518570261217280", + "206445138428952313856" ], - "expectedQty": "45152213001003168128136", + "expectedQty": "1027262097321190934754", "reserves": [ - "3178282377454928785632207", - "4731280357264802919141975" + "3334155664643244783618875", + "1709198379935796999216390" ], - "LPTokenSupply": "7818708703061086115418801" + "LPTokenSupply": "5001758578831763838570529" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "236455500719096879644672", - "expectedQty": "239310381922516902865267", - "swapFee": "141873300431458127786", + "inputQty": "38105619925243510390784", + "outputIndex": 0, + "expectedQty": "38301387410613830951424", + "swapFee": "0", + "reserves": [ + "3295854277232630952667451", + "1747303999861040509607174" + ], + "LPTokenSupply": "5001758578831763838570529", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "872837176095391141068", + "expectedQtys": [ + "574801452002318122748", + "304732185263024057460" + ], + "redemptionFee": "523702305657234684", "reserves": [ - "3178282377454928785632207", - "4491969975342286016276708" + "3295279475780628634544703", + "1746999267675777485549714" ], - "LPTokenSupply": "7582267389672032381586907" + "LPTokenSupply": "5000885794025899013152929" }, { "type": "mint", "inputIndex": 1, - "inputQty": "25350902951956478689280", - "expectedQty": "25034887151859192097868", + "inputQty": "21685868313161232285696", + "expectedQty": "21576569927382073768424", "reserves": [ - "3178282377454928785632207", - "4517320878294242494965988" + "3295279475780628634544703", + "1768685135988938717835410" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "110903937711001488", - "695963025401417856" + "3704453920464714596352", + "13127026730539184816128" ], - "expectedQty": "797070329510671165", - "swapFee": "478529315295580", + "expectedQty": "16728003613291639485515", "reserves": [ - "3178282266550991074630719", - "4517320182331217093548132" + "3298983929701093349141055", + "1781812162719477902651538" ], - "LPTokenSupply": "7607301479322885679247587" + "LPTokenSupply": "5039190367566572726406868" }, { - "type": "redeemMasset", - "inputQty": "83165218347791391129", - "expectedQtys": [ - "34725052748788673789", - "49355018987928055933" + "type": "mintMulti", + "inputQtys": [ + "101755659881683952", + "158718310584325568" ], - "redemptionFee": "49899131008674834", + "expectedQty": "258659240872963132", "reserves": [ - "3178247541498242285956930", - "4517270827312229165492199" + "3298984031456753230825007", + "1781812321437788486977106" ], - "LPTokenSupply": "7607218319094450988723941" + "LPTokenSupply": "5039190626225813599370000" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6058810937535735267328", - "52501626748566073507840" + "705583915245256", + "367484809906532" ], - "expectedQty": "57843936058738695921425", + "expectedQty": "1064239821667129", + "swapFee": "638927249349", "reserves": [ - "3184306352435778021224258", - "4569772454060795239000039" + "3298984030751169315579751", + "1781812321070303677070574" ], - "LPTokenSupply": "7665062255153189684645366" + "LPTokenSupply": "5039190625160998743178455" }, { "type": "mintMulti", "inputQtys": [ - "8018932993896181760", - "8804192160791100416" + "735690640971852546048", + "444376409337698779136" ], - "expectedQty": "16632766969799672518", + "expectedQty": "1170547916173032895158", "reserves": [ - "3184314371368771917406018", - "4569781258252956030100455" + "3299719721392141168125799", + "1782256697479641375849710" ], - "LPTokenSupply": "7665078887920159484317884" + "LPTokenSupply": "5040361173077171776073613" }, { - "type": "redeemMasset", - "inputQty": "7136300369122143345049", - "expectedQtys": [ - "2962864390775750819824", - "4251980358927971449838" - ], - "redemptionFee": "4281780221473286007", + "type": "redeem", + "inputIndex": 1, + "inputQty": "305995538346770031443968", + "expectedQty": "307182517972497952426837", + "swapFee": "183597323008062018866", "reserves": [ - "3181351506977996166586194", - "4565529277894028058650617" + "3299719721392141168125799", + "1475074179507143423422873" ], - "LPTokenSupply": "7657943015729059488301435" + "LPTokenSupply": "4734383994462702550831531" }, { "type": "mintMulti", "inputQtys": [ - "5712166541372889759744", - "6433255730437052956672" - ], - "expectedQty": "12007794077114734624314", - "reserves": [ - "3187063673519369056345938", - "4571962533624465111607289" - ], - "LPTokenSupply": "7669950809806174222925749" - }, - { - "type": "redeemMasset", - "inputQty": "92809963045686974873", - "expectedQtys": [ - "38541810024202262874", - "55289673963162404311" + "12579638907770064863232", + "6291687259016438743040" ], - "redemptionFee": "55685977827412184", + "expectedQty": "18714786032132109389501", "reserves": [ - "3187025131709344854083064", - "4571907243950501949202978" + "3312299360299911232989031", + "1481365866766159862165913" ], - "LPTokenSupply": "7669858005411726318692094" + "LPTokenSupply": "4753098780494834660221032" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "2855788984962725183488", - "expectedQty": "2882932291131087729163", - "swapFee": "1713473390977635110", + "inputQty": "91266277904403316867072", + "expectedQty": "90295343993554718113581", "reserves": [ - "3184142199418213766353901", - "4571907243950501949202978" - ], - "LPTokenSupply": "7667002387774102691272117" + "3403565638204314549856103", + "1481365866766159862165913" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7114834362193066065920", - "8267027590336490766336" + "47676599097253380096", + "66742286205346209792" ], - "expectedQty": "15207263948866800495284", - "swapFee": "9129836271082729935", + "expectedQty": "113677360208187285307", "reserves": [ - "3177027365056020700287981", - "4563640216360165458436642" + "3403613314803411803236199", + "1481432609052365208375705" ], - "LPTokenSupply": "7651786906972591916319890" + "LPTokenSupply": "4843507801848597565619920" }, { "type": "redeemMasset", - "inputQty": "19708521462322785209548", + "inputQty": "253473844177778769920", "expectedQtys": [ - "8178082330855895040991", - "11747404453703956452231" + "178013404767969858522", + "77480852929070221755" ], - "redemptionFee": "11825112877393671125", + "redemptionFee": "152084306506667261", "reserves": [ - "3168849282725164805246990", - "4551892811906461501984411" + "3403435301398643833377677", + "1481355128199436138153950" ], - "LPTokenSupply": "7632079568021556870477454" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "81049586425986933587968", - "expectedQty": "80033331183490738275762", - "reserves": [ - "3168849282725164805246990", - "4632942398332448435572379" - ] + "LPTokenSupply": "4843254343212850437516726" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1201948489954728345600", - "expectedQty": "1186843834978080451298", + "inputQty": "10282661527054569472", + "expectedQty": "10246959468931914418", "reserves": [ - "3168849282725164805246990", - "4634144346822403163917979" + "3403435301398643833377677", + "1481365410860963192723422" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "17779316229174611968", - "32939752385937350656" + "23988979705114857046016", + "38146877234802694553600" ], - "expectedQty": "50128621200732101919", - "swapFee": "30095229858354273", + "expectedQty": "61744534479953797389021", "reserves": [ - "3168831503408935630635022", - "4634111407070017226567323" + "3427424281103758690423693", + "1519512288095765887277022" ], - "LPTokenSupply": "7713249587333118084583748" + "LPTokenSupply": "4905009124652273166820165" }, { - "type": "redeemMasset", - "inputQty": "17756693007178261331968", - "expectedQtys": [ - "7290598700311509736889", - "10661799646064494286288" + "type": "mintMulti", + "inputQtys": [ + "20794699412144394240", + "117762369214977032192" ], - "redemptionFee": "10654015804306956799", + "expectedQty": "137907440288981734317", "reserves": [ - "3161540904708624120898133", - "4623449607423952732281035" + "3427445075803170834817933", + "1519630050464980864309214" ], - "LPTokenSupply": "7695493959727520253947459" + "LPTokenSupply": "4905147032092562148554482" }, { "type": "mint", "inputIndex": 1, - "inputQty": "64070437681604952064", - "expectedQty": "63265170479370494486", + "inputQty": "17632646104857526", + "expectedQty": "17568433093251414", "reserves": [ - "3161540904708624120898133", - "4623513677861634337233099" + "3427445075803170834817933", + "1519630068097626969166740" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "252346348962062270464", - "expectedQty": "249841087932033319880", + "inputIndex": 1, + "inputQty": "35380652128653826588672", + "expectedQty": "35248162620705003764033", "reserves": [ - "3161793251057586183168597", - "4623513677861634337233099" + "3427445075803170834817933", + "1555010720226280795755412" ] }, { - "type": "redeemMasset", - "inputQty": "71451982348674374041", - "expectedQtys": [ - "29338163468948679105", - "42901413631853635401" + "type": "redeemBassets", + "inputQtys": [ + "65285050362032750592", + "76045604158932041728" ], - "redemptionFee": "42871189409204624", + "expectedQty": "140350968943716861990", + "swapFee": "84261138049059552", "reserves": [ - "3161763912894117234489492", - "4623470776448002483597698" + "3427379790752808802067341", + "1554934674622121863713684" ], - "LPTokenSupply": "7695735618290701924308246" + "LPTokenSupply": "4940254785477732284554341" }, { - "type": "redeemMasset", - "inputQty": "53590905264103247944089", - "expectedQtys": [ - "22004410448651444891827", - "32177212298302946322229" + "type": "redeemBassets", + "inputQtys": [ + "815092421837791", + "564329555190854" ], - "redemptionFee": "32154543158461948766", + "expectedQty": "1368671376778616", + "swapFee": "821695843573", "reserves": [ - "3139759502445465789597665", - "4591293564149699537275469" + "3427379789937716380229550", + "1554934674057792308522830" ], - "LPTokenSupply": "7642147928480914522559033" + "LPTokenSupply": "4940254784108321381516508" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "272560798967599", - "outputIndex": 1, - "expectedQty": "273070937915714", - "swapFee": "215883022525", + "type": "redeemBassets", + "inputQtys": [ + "68034542624729194496", + "143292070727984365568" + ], + "expectedQty": "210059441199759294704", + "swapFee": "126111331518766836", "reserves": [ - "3139759502718026588565264", - "4591293563876628599359755" + "3427311755395091651035054", + "1554791381987064324157262" ], - "LPTokenSupply": "7642147928480936110861285", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4940044611166923255331650" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2109490771468210667520", - "expectedQty": "2082968763905372170216", + "inputQty": "16754378090331807744", + "expectedQty": "16689962183412646497", "reserves": [ - "3139759502718026588565264", - "4593403054648096810027275" + "3427311755395091651035054", + "1554808136365154655965006" ] }, { - "type": "mintMulti", - "inputQtys": [ - "458668681296739648", - "45665709291134328" - ], - "expectedQty": "499205779949959168", + "type": "redeem", + "inputIndex": 0, + "inputQty": "192000189806181693259776", + "expectedQty": "193904585880155650540579", + "swapFee": "115200113883709015955", "reserves": [ - "3139759961386707885304912", - "4593403100313806101161603" + "3233407169514936000494475", + "1554808136365154655965006" ], - "LPTokenSupply": "7644231396450621432990669" + "LPTokenSupply": "4748072631334313345619966" }, { "type": "mintMulti", "inputQtys": [ - "32770984977378138128384", - "12151887751008936263680" + "135468063339115069440", + "353335346530449883136" ], - "expectedQty": "44444239986413623631586", + "expectedQty": "485868409830013358571", "reserves": [ - "3172530946364086023433296", - "4605554988064815037425283" + "3233542637578275115563915", + "1555161471711685105848142" ], - "LPTokenSupply": "7688675636437035056622255" + "LPTokenSupply": "4748558499744143358978537" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "23435945109508138729472", - "expectedQty": "23657228146272852812302", - "swapFee": "14061567065704883237", + "inputIndex": 1, + "inputQty": "56235739968956240", + "expectedQty": "56447492394505556", + "swapFee": "33741443981373", "reserves": [ - "3148873718217813170620994", - "4605554988064815037425283" + "3233542637578275115563915", + "1555161415264192711342586" ], - "LPTokenSupply": "7665241097484233488381106" + "LPTokenSupply": "4748558443511777534420434" }, { - "type": "redeemMasset", - "inputQty": "74281646875849890201", - "expectedQtys": [ - "30496520657995505783", - "44604330120468002300" + "type": "mintMulti", + "inputQtys": [ + "7132958170038010904576", + "4502507435473854005248" ], - "redemptionFee": "44568988125509934", + "expectedQty": "11542242521539436915134", "reserves": [ - "3148843221697155175115211", - "4605510383734694569422983" + "3240675595748313126468491", + "1559663922699666565347834" ], - "LPTokenSupply": "7665166820294256451041898" + "LPTokenSupply": "4760100686033316971335568" }, { "type": "mint", "inputIndex": 0, - "inputQty": "19766700218690429779968", - "expectedQty": "19570082346316042559875", + "inputQty": "77369345037627406942208", + "expectedQty": "76567329374542321244318", "reserves": [ - "3168609921915845604895179", - "4605510383734694569422983" + "3318044940785940533410699", + "1559663922699666565347834" ] }, { "type": "mintMulti", "inputQtys": [ - "2517908000311604150272", - "9802916245479555596288" + "1524692589641712", + "1790393858313879" ], - "expectedQty": "12172658780678557566561", + "expectedQty": "3291754927180143", "reserves": [ - "3171127829916157209045451", - "4615313299980174125019271" + "3318044942310633123052411", + "1559663924490060423661713" ], - "LPTokenSupply": "7696909561421251051168334" + "LPTokenSupply": "4836668018699614219760029" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1462090082797579141120", + "expectedQty": "1467319450763752137992", + "swapFee": "877254049678547484", + "reserves": [ + "3318044942310633123052411", + "1558196605039296671523721" + ], + "LPTokenSupply": "4835206016342221608473657" + }, + { + "type": "mintMulti", "inputQtys": [ - "29743550788125251862528", - "81764286301497446105088" + "1259031020355900928", + "1869927953150328064" ], - "expectedQty": "110185390877084771116651", - "swapFee": "66150925081299642455", + "expectedQty": "3108071250639575781", "reserves": [ - "3141384279128031957182923", - "4533549013678676678914183" + "3318046201341653478953339", + "1558198474967249821851785" ], - "LPTokenSupply": "7586664634711593110373472" + "LPTokenSupply": "4835209124413472248049438" }, { "type": "redeemMasset", - "inputQty": "394083153781541", + "inputQty": "495613533638155986534", "expectedQtys": [ - "163078757735438", - "235350239127273" + "339898829434680222999", + "159620995468392219640" ], - "redemptionFee": "236449892268", + "redemptionFee": "297368120182893591", "reserves": [ - "3141384278964953199447485", - "4533549013443326439786910" + "3317706302512218798730340", + "1558038853971781429632145" ], - "LPTokenSupply": "7586664634317533601581157" + "LPTokenSupply": "4834713540616646110352263" }, { - "type": "mintMulti", - "inputQtys": [ - "15463599853909527494656", - "18451882103411409158144" - ], - "expectedQty": "33529433493058779403982", + "type": "mint", + "inputIndex": 1, + "inputQty": "9745314402522724564992", + "expectedQty": "9704544220983532656925", "reserves": [ - "3156847878818862726942141", - "4552000895546737848945054" - ], - "LPTokenSupply": "7620194067810592380985139" + "3317706302512218798730340", + "1567784168374304154197137" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1850681505426603245568", - "3423384322788314578944" + "759981913003292032", + "3840025484870517248" ], - "expectedQty": "5212629651969148970329", - "swapFee": "3129455464460165481", + "expectedQty": "4575948429516009092", + "swapFee": "2747217388142490", "reserves": [ - "3154997197313436123696573", - "4548577511223949534366110" + "3317705542530305795438308", + "1567780328348819283679889" ], - "LPTokenSupply": "7614978621648705217865876" + "LPTokenSupply": "4844413506416704477671854" }, { "type": "redeemMasset", - "inputQty": "80434931702020979", + "inputQty": "13759689733739363958784", "expectedQtys": [ - "33305375300004651", - "48016550132429369" + "9417694933216992209744", + "4450327693465905894683" ], - "redemptionFee": "48260959021212", + "redemptionFee": "8255813840243618375", "reserves": [ - "3154997164008060823691922", - "4548577463207399401936741" + "3308287847597088803228564", + "1563330000655353377785206" ], - "LPTokenSupply": "7614978541218599611747018" + "LPTokenSupply": "4830654642264349138074907" }, { - "type": "redeemBassets", - "inputQtys": [ - "9221274190822456164352", - "4023186534342411157504" + "type": "redeemMasset", + "inputQty": "169725300506154054451", + "expectedQtys": [ + "116167122380285500202", + "54894723758336020679" ], - "expectedQty": "13101779351001261602005", - "swapFee": "7865787082850467241", + "redemptionFee": "101835180303692432", "reserves": [ - "3145775889817238367527570", - "4544554276673056990779237" + "3308171680474708517728362", + "1563275105931595041764527" ], - "LPTokenSupply": "7601869682659223784724495" + "LPTokenSupply": "4830484927147361014389699" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "125994939437302672", + "expectedQty": "125464450853106470", + "reserves": [ + "3308171680474708517728362", + "1563275231926534479067199" + ] + }, + { + "type": "swap", "inputIndex": 0, - "inputQty": "8033219716845919010816", - "expectedQty": "8109431177361435266505", - "swapFee": "4819931830107551406", + "inputQty": "279652472153656928", + "outputIndex": 1, + "expectedQty": "277694015558829714", + "swapFee": "221396968852016", "reserves": [ - "3137666458639876932261065", - "4544554276673056990779237" + "3308171960127180671385290", + "1563274954232518920237485" ], - "LPTokenSupply": "7593836944935560876468819" + "LPTokenSupply": "4830485052633951564381370", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9488183373397112127488", - "35883292692564219527168" + "3725480343614871044096", + "5364350804892942598144" ], - "expectedQty": "44826103510854185235892", + "expectedQty": "9028562149348900172284", + "swapFee": "5420389523323334103", "reserves": [ - "3147154642013274044388553", - "4580437569365621210306405" + "3304446479783565800341194", + "1557910603427625977639341" ], - "LPTokenSupply": "7638663048446415061704711" + "LPTokenSupply": "4821451612134031673208392" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "545861477651690029056", - "expectedQty": "551024576095577098840", - "swapFee": "327516886591014017", + "type": "mint", + "inputIndex": 1, + "inputQty": "15588454712176", + "expectedQty": "15523097544288", "reserves": [ - "3146603617437178467289713", - "4580437569365621210306405" - ], - "LPTokenSupply": "7638117219720452030777056" + "3304446479783565800341194", + "1557910603443214432351517" + ] }, { "type": "redeemBassets", "inputQtys": [ - "23165493748949776859136", - "33635954425979442561024" + "3242770049370891776", + "7218532955521931264" ], - "expectedQty": "56147859170954689043771", - "swapFee": "33708940867093069267", + "expectedQty": "10397306098796148471", + "swapFee": "6242128936639672", "reserves": [ - "3123438123688228690430577", - "4546801614939641767745381" + "3304443237013516429449418", + "1557903384910258910420253" ], - "LPTokenSupply": "7581939022502716957970943" + "LPTokenSupply": "4821441209225539931628503" }, { - "type": "mintMulti", - "inputQtys": [ - "19902790524833435222016", - "8422547071137181859840" - ], - "expectedQty": "28020907144670068270097", + "type": "mint", + "inputIndex": 0, + "inputQty": "26274016318952740749312", + "expectedQty": "26000307259250581409546", "reserves": [ - "3143340914213062125652593", - "4555224162010778949605221" - ], - "LPTokenSupply": "7609959929647387026241040" + "3330717253332469170198730", + "1557903384910258910420253" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "11280236463879854080", - "11079986406353465344" - ], - "expectedQty": "22108399640330400326", - "swapFee": "13273003586350050", + "type": "swap", + "inputIndex": 0, + "inputQty": "1165333692200752381952", + "outputIndex": 1, + "expectedQty": "1157021944202046676664", + "swapFee": "922540277150709836", "reserves": [ - "3143329633976598245798513", - "4555213082024372596139877" + "3331882587024669922580682", + "1556746362966056863743589" ], - "LPTokenSupply": "7609937809302043468125668" + "LPTokenSupply": "4847441608738818228109032", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "41083620842195619151872", - "31247990574552820219904" - ], - "expectedQty": "71529092396064250054545", - "swapFee": "42943221370460826528", + "type": "redeem", + "inputIndex": 0, + "inputQty": "80942159167078694912", + "expectedQty": "81746786663176275713", + "swapFee": "48565295500247216", "reserves": [ - "3102246013134402626646641", - "4523965091449819775919973" + "3331800840238006746304969", + "1556746362966056863743589" ], - "LPTokenSupply": "7538370068006745803327246" + "LPTokenSupply": "4847360671436180699438841" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3438296393538536472576", - "3754954903572154155008" + "1094555264936097280", + "1054546594050813696" ], - "expectedQty": "7111739036213899698218", - "swapFee": "4269605184839243364", + "expectedQty": "2133334090158538099", "reserves": [ - "3098807716740864090174065", - "4520210136546247621764965" + "3331801934793271682402249", + "1556747417512650914557285" ], - "LPTokenSupply": "7531254486325865548309999" + "LPTokenSupply": "4847362804770270857976940" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "23991119031987007913984", - "expectedQty": "23751645777246321664144", + "type": "mintMulti", + "inputQtys": [ + "6505733191996484354048", + "10532762084549995790336" + ], + "expectedQty": "16927060362522887889013", "reserves": [ - "3122798835772851098088049", - "4520210136546247621764965" - ] + "3338307667985268166756297", + "1567280179597200910347621" + ], + "LPTokenSupply": "4864289865132793745865953" }, { - "type": "redeemMasset", - "inputQty": "223852000007576040243", - "expectedQtys": [ - "92471842634441202517", - "133851772849743329946" + "type": "mintMulti", + "inputQtys": [ + "30364916078181181554688", + "27080515497969804378112" ], - "redemptionFee": "134311200004545624", + "expectedQty": "57016033930814108017984", "reserves": [ - "3122706363930216656885532", - "4520076284773397878435019" + "3368672584063449348310985", + "1594360695095170714725733" ], - "LPTokenSupply": "7554782293534224294388462" + "LPTokenSupply": "4921305899063607853883937" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1488108470735192195072", - "expectedQty": "1469416023969913457291", + "inputIndex": 0, + "inputQty": "43735650946500894720", + "expectedQty": "43281341617491681205", "reserves": [ - "3122706363930216656885532", - "4521564393244133070630091" + "3368716319714395849205705", + "1594360695095170714725733" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "31618081750884890443776", - "61271122170659039346688" + "2327615928888541315072", + "4618775362845171253248" ], - "expectedQty": "91803336940165197745166", + "expectedQty": "6902733880302815366152", + "swapFee": "4144126804264247768", "reserves": [ - "3154324445681101547329308", - "4582835515414792109976779" + "3366388703785507307890633", + "1589741919732325543472485" ], - "LPTokenSupply": "7648055046498359405590919" + "LPTokenSupply": "4914442716810798692375997" }, { "type": "redeemMasset", - "inputQty": "3158634062931", + "inputQty": "48570133303805057433", "expectedQtys": [ - "1301949131529", - "1891567852953" + "33250533975594099910", + "15702217529141842625" ], - "redemptionFee": "1895180437", + "redemptionFee": "29142079982283034", "reserves": [ - "3154324445679799598197779", - "4582835515412900542123826" + "3366355453251531713790723", + "1589726217514796401629860" ], - "LPTokenSupply": "7648055046495200961046031" + "LPTokenSupply": "4914394149591702885546867" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "770717145995759452160", - "expectedQty": "780061745425195780469", - "swapFee": "462430287597455671", + "type": "redeemMasset", + "inputQty": "181414159512706429747", + "expectedQtys": [ + "124193970582568551470", + "58649306002926850808" + ], + "redemptionFee": "108848495707623857", "reserves": [ - "3154324445679799598197779", - "4582055453667475346343357" + "3366231259280949145239253", + "1589667568208793474779052" ], - "LPTokenSupply": "7647284375592233961339438" + "LPTokenSupply": "4914212746317039749879505" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "96562329624303131164672", - "expectedQty": "97470407942981194322044", - "swapFee": "57937397774581878698", + "inputQty": "8186285751013831868416", + "expectedQty": "8267289057212876296914", + "swapFee": "4911771450608299121", "reserves": [ - "3056854037736818403875735", - "4582055453667475346343357" + "3357963970223736268942339", + "1589667568208793474779052" ], - "LPTokenSupply": "7550727839707708288362635" - }, - { - "type": "mintMulti", - "inputQtys": [ - "45504792236434441371648", - "57844991723676501016576" - ], - "expectedQty": "102168458817574068324249", - "reserves": [ - "3102358829973252845247383", - "4639900445391151847359933" - ], - "LPTokenSupply": "7652896298525282356686884" + "LPTokenSupply": "4906026951743170978841001" }, { "type": "redeemBassets", "inputQtys": [ - "1195875369585911296", - "267436935448425760" + "16092556416325563449344", + "8747947685800281374720" ], - "expectedQty": "1448139254472441727", - "swapFee": "869405195800945", + "expectedQty": "24636347235798883437481", + "swapFee": "14790682751130008067", "reserves": [ - "3102357634097883259336087", - "4639900177954216398934173" + "3341871413807410705492995", + "1580919620522993193404332" ], - "LPTokenSupply": "7652894849603563208024305" + "LPTokenSupply": "4881377292892896078396258" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "603911911632477440", - "11487141200811796480" + "94359051528589475840", + "60520547606398672896" ], - "expectedQty": "11939549509498048393", + "expectedQty": "153643165813346884865", + "swapFee": "92241244234548860", "reserves": [ - "3102358238009794891813527", - "4639911665095417210730653" + "3341777054755882116017155", + "1580859099975386794731436" ], - "LPTokenSupply": "7652906789153072706072698" + "LPTokenSupply": "4881223566709962920417418" }, { - "type": "redeemMasset", - "inputQty": "14482860113330030877081", - "expectedQtys": [ - "5867582476497507290978", - "8775603038053880834286" - ], - "redemptionFee": "8689716067998018526", + "type": "mint", + "inputIndex": 0, + "inputQty": "1659116662421732196352", + "expectedQty": "1641870488003949057283", "reserves": [ - "3096490655533297384522549", - "4631136062057363329896367" - ], - "LPTokenSupply": "7638424798011349474997469" + "3343436171418303848213507", + "1580859099975386794731436" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "40758491796808996487168", - "6689752601458088345600" - ], - "expectedQty": "46960790518022119247643", + "type": "redeem", + "inputIndex": 1, + "inputQty": "11303424959129182", + "expectedQty": "11344524765206463", + "swapFee": "6782054975477", "reserves": [ - "3137249147330106381009717", - "4637825814658821418241967" + "3343436171418303848213507", + "1580859088630862029524973" ], - "LPTokenSupply": "7685385588529371594245112" + "LPTokenSupply": "4882865425895220115843066" }, { "type": "redeemBassets", "inputQtys": [ - "1958695840592344645632", - "3320520965521724145664" + "404299915389644000198656", + "141752995639417813073920" ], - "expectedQty": "5217851195663345184323", - "swapFee": "3132590271560943676", + "expectedQty": "541258498443799676943995", + "swapFee": "324950069107744452838", "reserves": [ - "3135290451489514036364085", - "4634505293693299694096303" + "2939136256028659848014851", + "1439106092991444216451053" ], - "LPTokenSupply": "7680164918002463844211479" + "LPTokenSupply": "4341314472389223468891515" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "9990042915372368134144", - "expectedQty": "9890959258531822152471", + "inputIndex": 1, + "inputQty": "624922992643444965376", + "expectedQty": "622071036639247186690", "reserves": [ - "3145280494404886404498229", - "4634505293693299694096303" + "2939136256028659848014851", + "1439731015984087661416429" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "199281950124375646666752", - "expectedQty": "201127193820794466978065", - "swapFee": "119569170074625388000", + "inputQty": "1370535258154674944", + "expectedQty": "1384008130107807862", + "swapFee": "822321154892804", "reserves": [ - "2944153300584091937520164", - "4634505293693299694096303" + "2939134872020529740206989", + "1439731015984087661416429" ], - "LPTokenSupply": "7490785884053627482235998" + "LPTokenSupply": "4341935172972836676892541" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "4055409072442704", - "outputIndex": 1, - "expectedQty": "4065431768084168", - "swapFee": "3213122240361", + "type": "redeem", + "inputIndex": 1, + "inputQty": "71257216651032598151168", + "expectedQty": "71526845373530142525336", + "swapFee": "42754329990619558890", "reserves": [ - "2944153304639501009962868", - "4634505289627867926012135" + "2939134872020529740206989", + "1368204170610557518891093" ], - "LPTokenSupply": "7490785884053948794460034", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4270682231754803140697262" }, { - "type": "redeemBassets", - "inputQtys": [ - "1342560399237547", - "3579802556999429" - ], - "expectedQty": "4863448163987689", - "swapFee": "2919820790867", + "type": "mint", + "inputIndex": 1, + "inputQty": "12566907421642654220288", + "expectedQty": "12514040010240374801692", "reserves": [ - "2944153303296940610725321", - "4634505286048065369012706" - ], - "LPTokenSupply": "7490785879187872791760563" + "2939134872020529740206989", + "1380771078032200173111381" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "3494687032721931763712", - "3717884480825508495360" - ], - "expectedQty": "7131181348442115964397", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2077784117613133", + "expectedQty": "2085388627480435", + "swapFee": "1246670470567", "reserves": [ - "2947647990329662542489033", - "4638223170528890877508066" + "2939134872020529740206989", + "1380771075946811545630946" ], - "LPTokenSupply": "7497917060536314907724960" + "LPTokenSupply": "4283196269687384064932877" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "3478198609738211524608", - "outputIndex": 0, - "expectedQty": "3466831068363239110475", - "swapFee": "0", + "inputQty": "23598240789626798080", + "expectedQty": "23498079256639880838", + "reserves": [ + "2939134872020529740206989", + "1380794674187601172429026" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "584205629138320", + "expectedQty": "586343853380981", + "swapFee": "350523377482", "reserves": [ - "2944181159261299303378558", - "4641701369138629089032674" + "2939134872020529740206989", + "1380794673601257319048045" ], - "LPTokenSupply": "7497917060536314907724960", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4283219767182470128013143" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "13739931408961919516672", - "15271389764691274235904" + "2939383726858193862656", + "1380681663711709233152" ], - "expectedQty": "28682969785406662269433", - "swapFee": "17220113939607762018", + "expectedQty": "4283353479838795800019", "reserves": [ - "2930441227852337383861886", - "4626429979373937814796770" + "2942074255747387934069645", + "1382175355264969028281197" ], - "LPTokenSupply": "7469218592648362598469709" + "LPTokenSupply": "4287503120662308923813162" }, { "type": "mintMulti", "inputQtys": [ - "22382186618690580480", - "2028391164228920576" + "103327458305096892416", + "501397607710111629312" ], - "expectedQty": "24169496839560849889", + "expectedQty": "601511750496498172365", "reserves": [ - "2930463610038956074442366", - "4626432007765102043717346" + "2942177583205693030962061", + "1382676752872679139910509" ], - "LPTokenSupply": "7469242762145202159319598" + "LPTokenSupply": "4288104632412805421985527" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1616629589973806848", + "expectedQty": "1599663581000561669", + "reserves": [ + "2942179199835283004768909", + "1382676752872679139910509" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "35663284632361660", - "expectedQty": "35987566004751112", - "swapFee": "21397970779416", + "inputQty": "39625712446027612553216", + "expectedQty": "40020897195645138978889", + "swapFee": "23775427467616567531", "reserves": [ - "2930463574051390069691254", - "4626432007765102043717346" + "2902158302639637865790020", + "1382676752872679139910509" ], - "LPTokenSupply": "7469242726484057324035879" + "LPTokenSupply": "4248482897173105571650733" }, { - "type": "redeemBassets", - "inputQtys": [ - "7253733872222854971392", - "8679640881722225065984" + "type": "redeemMasset", + "inputQty": "2589305522460579541811", + "expectedQtys": [ + "1767705309668235866590", + "842188737735221690896" ], - "expectedQty": "15752065779690299898817", - "swapFee": "9456913615983770201", + "redemptionFee": "1553583313476347725", "reserves": [ - "2923209840179167214719862", - "4617752366883379818651362" + "2900390597329969629923430", + "1381834564134943918219613" ], - "LPTokenSupply": "7453482149482112638743880" + "LPTokenSupply": "4245893747008976339743694" }, { - "type": "mintMulti", - "inputQtys": [ - "350098287247733760", - "111837502699426592" + "type": "redeemMasset", + "inputQty": "296704096801907", + "expectedQtys": [ + "202558398569406", + "96505000621881" ], - "expectedQty": "457134816789201536", + "redemptionFee": "178022458081", "reserves": [ - "2923210190277454462453622", - "4617752478720882518077954" + "2900390597127411231354024", + "1381834564038438917597732" ], - "LPTokenSupply": "7453482606616929427945416" + "LPTokenSupply": "4245893746712290045187595" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "10559043534966380036096", + "expectedQty": "10512653421404677136847", + "reserves": [ + "2900390597127411231354024", + "1392393607573405297633828" + ] + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "161409716748276675379200", - "expectedQty": "162852569629602777089661", - "swapFee": "96845830048966005227", + "inputQty": "492988061971679805440", + "expectedQty": "487851560916586433390", "reserves": [ - "2760357620647851685363961", - "4617752478720882518077954" - ], - "LPTokenSupply": "7292082574451657649166738" + "2900883585189382911159464", + "1392393607573405297633828" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "27398039422940666134528", - "2592538664214066102272" + "1421580323057349689344", + "926056092149318680576" + ], + "expectedQty": "2328729363389766801630", + "swapFee": "1398076463912207405", + "reserves": [ + "2899462004866325561470120", + "1391467551481255978953252" ], - "expectedQty": "29700958763511706644269", + "LPTokenSupply": "4254564264062404020969536" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "786279739367053568", + "expectedQty": "794082625848986419", + "swapFee": "471767843620232", "reserves": [ - "2787755660070792351498489", - "4620345017385096584180226" + "2899461210783699712483701", + "1391467551481255978953252" ], - "LPTokenSupply": "7321783533215169355811007" + "LPTokenSupply": "4254563477829841438277991" }, { "type": "redeemMasset", - "inputQty": "21269806330342356811776", + "inputQty": "9692378805917376839680", "expectedQtys": [ - "8093580710683429476001", - "13414064885607908382107" + "6601338757430558125810", + "3168019162711074795524" ], - "redemptionFee": "12761883798205414087", + "redemptionFee": "5815427283550426103", "reserves": [ - "2779662079360108922022488", - "4606930952499488675798119" + "2892859872026269154357891", + "1388299532318544904157728" ], - "LPTokenSupply": "7300515003073206819540639" + "LPTokenSupply": "4244871680566652416480921" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "287852948508076081152", - "expectedQty": "285157652196062249662", + "inputIndex": 1, + "inputQty": "59320263986277192302592", + "expectedQty": "59048309580981031417105", "reserves": [ - "2779949932308616998103640", - "4606930952499488675798119" + "2892859872026269154357891", + "1447619796304822096460320" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "57141117140620353536", - "outputIndex": 0, - "expectedQty": "56929362198731106119", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "1223602701406974771200", + "2123672354694210256896" + ], + "expectedQty": "3324640399478302538681", "reserves": [ - "2779893002946418266997521", - "4606988093616629296151655" + "2894083474727676129129091", + "1449743468659516306717216" ], - "LPTokenSupply": "7300800160725402881790301", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4307244630547111750436707" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "179515393545623471915008", - "23695235741308254420992" + "5229048443624792", + "913520509741975" ], - "expectedQty": "201195364533257625549582", + "expectedQty": "6084572128597738", + "swapFee": "3652935038181", "reserves": [ - "2959408396492041738912529", - "4630683329357937550572647" + "2894083469498627685504299", + "1449743467745995796975241" ], - "LPTokenSupply": "7501995525258660507339883" + "LPTokenSupply": "4307244624459251980304605" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "30161394310754231910400", - "1113676076331463213056" + "4031512736208971104256", + "5673711482017399439360" ], - "expectedQty": "30969989615987331963724", - "swapFee": "18593149659388031997", + "expectedQty": "9636878909217673368152", "reserves": [ - "2929247002181287507002129", - "4629569653281606087359591" + "2898114982234836656608555", + "1455417179228013196414601" ], - "LPTokenSupply": "7471008801807979726147360" + "LPTokenSupply": "4316881503368469653672757" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "7453218737666862874624", - "outputIndex": 0, - "expectedQty": "7428514900662572293679", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "937943012821511680", + "outputIndex": 1, + "expectedQty": "932026952384825021", + "swapFee": "742661413982779", "reserves": [ - "2921818487280624934708450", - "4637022872019272950234215" + "2898115920177849478120235", + "1455416247201060811589580" ], - "LPTokenSupply": "7471008801807979726147360", + "LPTokenSupply": "4316881503442735795071034", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "7596473282181319360512", - "18365375596553199157248" - ], - "expectedQty": "25652113881242350296256", + "type": "mint", + "inputIndex": 0, + "inputQty": "241556880121542370918400", + "expectedQty": "239043710899845988211894", "reserves": [ - "2929414960562806254068962", - "4655388247615826149391463" - ], - "LPTokenSupply": "7496660915689222076443616" + "3139672800299391849038635", + "1455416247201060811589580" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1129823623546123452416", - "expectedQty": "1143901431921684784775", - "swapFee": "677894174127674071", + "type": "redeemMasset", + "inputQty": "1253988058000916480", + "expectedQtys": [ + "863655513461924347", + "400353268072200607" + ], + "redemptionFee": "752392834800549", "reserves": [ - "2929414960562806254068962", - "4654244346183904464606688" + "3139671936643878387114288", + "1455415846847792739388973" ], - "LPTokenSupply": "7495531159855093365758607" + "LPTokenSupply": "4555923960429763065846502" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "17479681993114784890880", - "expectedQty": "17697365711468031314339", - "swapFee": "10487809195868870934", + "inputQty": "24763420103606861824", + "expectedQty": "24660876906470201733", "reserves": [ - "2929414960562806254068962", - "4636546980472436433292349" - ], - "LPTokenSupply": "7478052526642898167754820" + "3139671936643878387114288", + "1455440610267896346250797" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "1547106896300771901440", - "expectedQty": "1527166888735902269618", + "inputQty": "2480850734301378510848", + "expectedQty": "2470559914142457762044", "reserves": [ - "2929414960562806254068962", - "4638094087368737205193789" + "3139671936643878387114288", + "1457921461002197724761645" ] }, { - "type": "redeemMasset", - "inputQty": "18060016289053538883993", - "expectedQtys": [ - "7069052126250293214701", - "11192312905974843954695" - ], - "redemptionFee": "10836009773432123330", + "type": "mint", + "inputIndex": 0, + "inputQty": "1961579469256466628608", + "expectedQty": "1940886986199000950637", "reserves": [ - "2922345908436555960854261", - "4626901774462762361239094" - ], - "LPTokenSupply": "7461520760843557874352778" + "3141633516113134853742896", + "1457921461002197724761645" + ] }, { - "type": "redeemMasset", - "inputQty": "8574111151046072782028", - "expectedQtys": [ - "3356083234528753862576", - "5313630884097968688057" - ], - "redemptionFee": "5144466690627643669", + "type": "mint", + "inputIndex": 1, + "inputQty": "1466808847442056052736", + "expectedQty": "1460715443459710310605", "reserves": [ - "2918989825202027206991685", - "4621588143578664392551037" - ], - "LPTokenSupply": "7452947164139180864335116" + "3141633516113134853742896", + "1459388269849639780814381" + ] }, { "type": "mintMulti", "inputQtys": [ - "23364944321040097476608", - "15496547815633274798080" + "784830803162645760", + "215212194332742368" ], - "expectedQty": "38437009366223330819027", + "expectedQty": "990871077074203683", "reserves": [ - "2942354769523067304468293", - "4637084691394297667349117" + "3141634300943938016388656", + "1459388485061834113556749" ], - "LPTokenSupply": "7491384173505404195154143" + "LPTokenSupply": "4561821774521547779275204" }, { "type": "swap", "inputIndex": 1, - "inputQty": "65993403142873866240", + "inputQty": "62418169163460162617344", "outputIndex": 0, - "expectedQty": "65777385823596699646", + "expectedQty": "62797783793564770113743", "swapFee": "0", "reserves": [ - "2942288992137243707768647", - "4637150684797440541215357" + "3078836517150373246274913", + "1521806654225294276174093" ], - "LPTokenSupply": "7491384173505404195154143", + "LPTokenSupply": "4561821774521547779275204", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "2337985590419239678771", - "expectedQtys": [ - "917707821369039057305", - "1446339725185943147551" + "type": "redeemBassets", + "inputQtys": [ + "32829200377308766208", + "151812842666575265792" ], - "redemptionFee": "1402791354251543807", + "expectedQty": "183597767663881580945", + "swapFee": "110224795475614317", "reserves": [ - "2941371284315874668711342", - "4635704345072254598067806" + "3078803687949995937508705", + "1521654841382627700908301" ], - "LPTokenSupply": "7489046328194120380629752" + "LPTokenSupply": "4561638077551567969641372" }, { - "type": "redeemMasset", - "inputQty": "2722286640403634244812", - "expectedQtys": [ - "1068554131943607493408", - "1684078803247041786047" + "type": "redeemBassets", + "inputQtys": [ + "301126921967374958592", + "924724381460301086720" ], - "redemptionFee": "1633371984242180546", + "expectedQty": "1218449059932417468030", + "swapFee": "731508340964028898", "reserves": [ - "2940302730183931061217934", - "4634020266269007556281759" + "3078502561028028562550113", + "1520730117001167399821581" ], - "LPTokenSupply": "7486324204890915170602994" + "LPTokenSupply": "4560418970134128684547332" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "1069191289874032256", - "outputIndex": 1, - "expectedQty": "1071844585639273947", - "swapFee": "847112042070023", - "reserves": [ - "2940303799375220935250190", - "4634019194424421917007812" - ], - "LPTokenSupply": "7486324204975626374809996", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemMasset", - "inputQty": "1721542759268151721984", - "expectedQtys": [ - "675741720786189261592", - "1064992027443549924245" - ], - "redemptionFee": "1032925655560891033", + "inputQty": "592216172014678", + "expectedQty": "586108369297749", "reserves": [ - "2939628057654434745988598", - "4632954202396978367083567" - ], - "LPTokenSupply": "7484602765508923779177115" + "3078502561620244734564791", + "1520730117001167399821581" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "13463092965059921444864", - "14970233231380219691008" + "9931518536289689272320", + "14123677182353697931264" ], - "expectedQty": "28110860010682292792346", - "swapFee": "16876641991604338278", + "expectedQty": "23886955973007294341152", "reserves": [ - "2926164964689374824543734", - "4617983969165598147392559" + "3088434080156534423837111", + "1534853794183521097752845" ], - "LPTokenSupply": "7456476716520449042480317" + "LPTokenSupply": "4584305926693244348186233" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "688763076004002660352", - "expectedQty": "697333426541621420243", - "swapFee": "413257845602401596", + "inputQty": "5184975809036224512", + "expectedQty": "5160658573010565437", "reserves": [ - "2926164964689374824543734", - "4617286635739056525972316" - ], - "LPTokenSupply": "7455787994770229600060124" + "3088434080156534423837111", + "1534858979159330133977357" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "15057095459175969849344", - "790055949994582343680" + "59599020725092478877696", + "140121670157738272882688" ], - "expectedQty": "15692149083137026583904", - "swapFee": "9420942015091270712", + "expectedQty": "198422867923668874427901", "reserves": [ - "2911107869230198854694390", - "4616496579789061943628636" + "3148033100881626902714807", + "1674980649317068406860045" ], - "LPTokenSupply": "7440087366839278991332578" + "LPTokenSupply": "4782733955275486233179571" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "11652541329333454", - "5641319567536089" - ], - "expectedQty": "17109151280565157", - "reserves": [ - "2911107880882740184027844", - "4616496585430381511164725" + "3832322665544753348608", + "2204834995850084089856" ], - "LPTokenSupply": "7440087383948430271897735" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "31632481322746043695104", - "expectedQty": "32026276413635758950109", - "swapFee": "18979488793647626217", + "expectedQty": "5987265288771574282341", + "swapFee": "3594515882792620141", "reserves": [ - "2911107880882740184027844", - "4584470309016745752214616" + "3144200778216082149366199", + "1672775814321218322770189" ], - "LPTokenSupply": "7408456800574563592965252" + "LPTokenSupply": "4776743454922420145539102" }, { - "type": "mintMulti", - "inputQtys": [ - "46042269011229616", - "38555984138241344" + "type": "redeemMasset", + "inputQty": "27101101292940327439564", + "expectedQtys": [ + "17828082625151884403932", + "9484885837346132921875" ], - "expectedQty": "83657628560265722", + "redemptionFee": "16260660775764196463", "reserves": [ - "2911107926925009195257460", - "4584470347572729890455960" + "3126372695590930264962267", + "1663290928483872189848314" ], - "LPTokenSupply": "7408456884232192153230974" + "LPTokenSupply": "4749643979695557394519184" }, { - "type": "redeemMasset", - "inputQty": "924348544979870469324", - "expectedQtys": [ - "362999190186323594217", - "571658305145683293455" + "type": "redeemBassets", + "inputQtys": [ + "3220246945228182016", + "4488501021663510016" ], - "redemptionFee": "554609126987922281", + "expectedQty": "7653170035404358202", + "swapFee": "4594658816532534", "reserves": [ - "2910744927734822871663243", - "4583898689267584207162505" + "3126369475343985036780251", + "1663286439982850526338298" ], - "LPTokenSupply": "7407532591148124981553878" + "LPTokenSupply": "4749636322390329055281700" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "7487253274840225808384", - "expectedQty": "7390799988753764988377", + "inputQty": "3291371421585655201792", + "expectedQty": "3306479309161079682827", + "swapFee": "1974822852951393121", "reserves": [ - "2910744927734822871663243", - "4591385942542424432970889" - ] + "3126369475343985036780251", + "1659979960673689446655471" + ], + "LPTokenSupply": "4746345148451028695219220" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1289295536547475488768", - "outputIndex": 1, - "expectedQty": "1292500468211456229402", - "swapFee": "1021496459207814230", + "type": "redeemMasset", + "inputQty": "23291432543999399821312", + "expectedQtys": [ + "15332625608168732411000", + "8141024742851913069873" + ], + "redemptionFee": "13974859526399639892", "reserves": [ - "2912034223271370347152011", - "4590093442074212976741487" + "3111036849735816304369251", + "1651838935930837533585598" ], - "LPTokenSupply": "7414923493286524667323678", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4723055113392981935361897" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "61998907699789944", - "outputIndex": 0, - "expectedQty": "61795885225239725", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2096976630192953344", + "expectedQty": "2117012520430933307", + "swapFee": "1258185978115772", "reserves": [ - "2912034161475485121912286", - "4590093504073120676531431" + "3111034732723295873435944", + "1651838935930837533585598" ], - "LPTokenSupply": "7414923493286524667323678", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4723053016542170340220130" }, { "type": "redeemMasset", - "inputQty": "2448941338055831610982", + "inputQty": "1260432166612361019392", "expectedQtys": [ - "961186181060323147513", - "1515069604696662292925" + "829737774676236758621", + "440558618136366640334" ], - "redemptionFee": "1469364802833498966", + "redemptionFee": "756259299967416611", "reserves": [ - "2911072975294424798764773", - "4588578434468424014238506" + "3110204994948619636677323", + "1651398377312701166945264" ], - "LPTokenSupply": "7412474698884949119062592" + "LPTokenSupply": "4721792660001487975942399" }, { "type": "redeemMasset", - "inputQty": "49942997217160", + "inputQty": "6622840829695518520115", "expectedQtys": [ - "19602154851230", - "30897894275690" + "4359791942597626385304", + "2314880643275942270593" ], - "redemptionFee": "29965798330", - "reserves": [ - "2911072975274822643913543", - "4588578434437526119962816" - ], - "LPTokenSupply": "7412474698835009118425265" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "193723170989333053440", - "outputIndex": 0, - "expectedQty": "193088714171303731205", - "swapFee": "0", + "redemptionFee": "3973704497817311112", "reserves": [ - "2910879886560651340182338", - "4588772157608515453016256" + "3105845203006022010292019", + "1649083496669425224674671" ], - "LPTokenSupply": "7412474698835009118425265", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4715170216542242239153395" }, { "type": "swap", "inputIndex": 1, - "inputQty": "77549520359053145931776", + "inputQty": "41110751274608009216", "outputIndex": 0, - "expectedQty": "77281109903485469380069", + "expectedQty": "41314055027032499882", "swapFee": "0", "reserves": [ - "2833598776657165870802269", - "4666321677967568598948032" + "3105803888950994977792137", + "1649124607420699832683887" ], - "LPTokenSupply": "7412474698835009118425265", + "LPTokenSupply": "4715170216542242239153395", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1153847051124777728", - "expectedQty": "1138817411031201531", - "reserves": [ - "2833598776657165870802269", - "4666322831814619723725760" - ] - }, - { - "type": "redeemMasset", - "inputQty": "8207495242203042611", - "expectedQtys": [ - "3135631729222683182", - "5163705620841485277" + "type": "mintMulti", + "inputQtys": [ + "22216990637965055098880", + "15273556808781627654144" ], - "redemptionFee": "4924497145321825", + "expectedQty": "37188163348356583612802", "reserves": [ - "2833595641025436648119087", - "4666317668108998882240483" + "3128020879588960032891017", + "1664398164229481460338031" ], - "LPTokenSupply": "7412467630649627661116367" + "LPTokenSupply": "4752358379890598822766197" }, { - "type": "redeemMasset", - "inputQty": "421856485832240712908", - "expectedQtys": [ - "161168120590930844904", - "265408951708163371299" + "type": "mintMulti", + "inputQtys": [ + "40100323133991800", + "37023385139406760" ], - "redemptionFee": "253113891499344427", + "expectedQty": "76528919973372368", "reserves": [ - "2833434472904845717274183", - "4666052259157290718869184" + "3128020919689283166882817", + "1664398201252866599744791" ], - "LPTokenSupply": "7412045799475184570337901" + "LPTokenSupply": "4752358456419518796138565" }, { "type": "redeemBassets", "inputQtys": [ - "2815316346392453054464", - "3576315848052894072832" + "32032033954682887995392", + "7542358268280322392064" ], - "expectedQty": "6318556737609308936461", - "swapFee": "3793410088618756615", + "expectedQty": "39213537067132436064564", + "swapFee": "23542247588832761295", "reserves": [ - "2830619156558453264219719", - "4662475943309237824796352" + "3095988885734600278887425", + "1656855842984586277352727" ], - "LPTokenSupply": "7405723828668495504520485" + "LPTokenSupply": "4713123731329556410588834" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3329579132859397963776", - "6514128194618520502272" + "13719733482629743247360", + "50066784381121180205056" ], - "expectedQty": "9727519601483086485435", + "expectedQty": "63391184877874200613575", + "swapFee": "38057545453996918519", "reserves": [ - "2833948735691312662183495", - "4668990071503856345298624" + "3082269152251970535640065", + "1606789058603465097147671" ], - "LPTokenSupply": "7415451348269978591005920" + "LPTokenSupply": "4649698294660773612748590" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "8481410632725897936896", - "expectedQty": "8370892528542239836565", + "inputQty": "165713031253353163653120", + "expectedQty": "166388870785772134631264", + "swapFee": "99427818752011898191", "reserves": [ - "2833948735691312662183495", - "4677471482136582243235520" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "2948593498413381189632", - "143134155692068315332608" - ], - "expectedQty": "144196260437013871674692", - "swapFee": "86569698081056957179", - "reserves": [ - "2831000142192899280993863", - "4534337326444513927902912" + "3082269152251970535640065", + "1440400187817692962516407" ], - "LPTokenSupply": "7279548067633234007906330" + "LPTokenSupply": "4483995206189295650285289" }, { "type": "redeemMasset", - "inputQty": "38733358739890272", + "inputQty": "16159255294077463796121", "expectedQtys": [ - "15054279550819388", - "24112037534952377" + "11101102370297257893723", + "5187746153666351725200" ], - "redemptionFee": "23240015243934", + "redemptionFee": "9695553176446478277", "reserves": [ - "2831000127138619730174475", - "4534337302332476392950535" + "3071168049881673277746342", + "1435212441664026610791207" ], - "LPTokenSupply": "7279548028902199269540451" + "LPTokenSupply": "4467836920450535831136995" }, { - "type": "redeemBassets", - "inputQtys": [ - "217595712318543134720", - "299449359980239060992" - ], - "expectedQty": "511086372821319043055", - "swapFee": "306835925247940189", + "type": "redeem", + "inputIndex": 0, + "inputQty": "18352740975579226112", + "expectedQty": "18537565571594729267", + "swapFee": "11011644585347535", "reserves": [ - "2830782531426301187039755", - "4534037852972496153889543" + "3071149512316101683017075", + "1435212441664026610791207" ], - "LPTokenSupply": "7279036666377045227351224" + "LPTokenSupply": "4467818568810724710445636" }, { - "type": "redeemMasset", - "inputQty": "6659917354264797184", - "expectedQtys": [ - "2588455987260357964", - "4145905698053903867" - ], - "redemptionFee": "3995950412558878", + "type": "redeem", + "inputIndex": 0, + "inputQty": "426272376417642432", + "expectedQty": "430565225226665635", + "swapFee": "255763425850585", "reserves": [ - "2830779942970313926681791", - "4534033707066798099985676" + "3071149081750876456351440", + "1435212441664026610791207" ], - "LPTokenSupply": "7279030006859286003809927" + "LPTokenSupply": "4467818142563924635388262" }, { - "type": "mintMulti", - "inputQtys": [ - "46112812550001514250240", - "82066497455885421379584" - ], - "expectedQty": "126675627963960096299138", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7923067668080735813632", + "expectedQty": "7951922724808800992147", + "swapFee": "4753840600848441488", "reserves": [ - "2876892755520315440932031", - "4616100204522683521365260" + "3071149081750876456351440", + "1427260518939217809799060" ], - "LPTokenSupply": "7405705634823246100109065" + "LPTokenSupply": "4459895550279903984418778" }, { - "type": "mintMulti", - "inputQtys": [ - "7930973763389573038080", - "12700862525616590684160" + "type": "mint", + "inputIndex": 0, + "inputQty": "814809864257804042240", + "expectedQty": "806183309820670179124", + "reserves": [ + "3071963891615134260393680", + "1427260518939217809799060" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "2049665694717141843968", + "expectedQty": "2070353502955114263998", + "swapFee": "1229799416830285106", + "reserves": [ + "3069893538112179146129682", + "1427260518939217809799060" ], - "expectedQty": "20391524248308801551058", + "LPTokenSupply": "4458652190874949195782444" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "96062328761370329088", + "expectedQty": "96410362948024001664", + "swapFee": "57637397256822197", "reserves": [ - "2884823729283705013970111", - "4628801067048300112049420" + "3069893538112179146129682", + "1427164108576269785797396" ], - "LPTokenSupply": "7426097159071554901660123" + "LPTokenSupply": "4458556134309927551135575" }, { "type": "redeemMasset", - "inputQty": "4719218823469657292", + "inputQty": "72397216105134937", "expectedQtys": [ - "1832179903590339962", - "2939797051263572049" + "49818458747588246", + "23160124410329751" ], - "redemptionFee": "2831531294081794", + "redemptionFee": "43438329663080", "reserves": [ - "2884821897103801423630149", - "4628798127251248848477371" + "3069893488293720398541436", + "1427164085416145375467645" ], - "LPTokenSupply": "7426092440135884561411010" + "LPTokenSupply": "4458556061917055278966946" }, { - "type": "redeemBassets", - "inputQtys": [ - "10198690705982681088", - "7019773411711746048" - ], - "expectedQty": "17030054194725708099", - "swapFee": "10224167017045652", + "type": "mint", + "inputIndex": 1, + "inputQty": "148573020796937633792", + "expectedQty": "147947837001432942371", "reserves": [ - "2884811698413095440949061", - "4628791107477837136731323" - ], - "LPTokenSupply": "7426075400879939520361823" + "3069893488293720398541436", + "1427312658436942313101437" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "9509814951528106033152", - "outputIndex": 0, - "expectedQty": "9477024529309747170430", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "90861141578953392", + "expectedQty": "89899356415138559", "reserves": [ - "2875334673883785693778631", - "4638300922429365242764475" - ], - "LPTokenSupply": "7426075400879939520361823", - "hardLimitError": false, - "insufficientLiquidityError": false + "3069893579154861977494828", + "1427312658436942313101437" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "3393716588047474622464", - "expectedQty": "3436241240723638432992", - "swapFee": "2036229952828484773", + "inputQty": "1673442876844329926656", + "expectedQty": "1666392281212281981787", "reserves": [ - "2875334673883785693778631", - "4634864681188641604331483" - ], - "LPTokenSupply": "7422681887914887328587836" + "3069893579154861977494828", + "1428986101313786643028093" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "10099619260075287248896", + "expectedQty": "9992694137515112858452", + "reserves": [ + "3079993198414937264743724", + "1428986101313786643028093" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "265403143456472", - "expectedQty": "267797452266244", - "swapFee": "159241886073", + "inputQty": "258164525964360912207872", + "expectedQty": "260728503235854343329083", + "swapFee": "154898715578616547324", "reserves": [ - "2875334673615988241512387", - "4634864681188641604331483" + "2819264695179082921414641", + "1428986101313786643028093" ], - "LPTokenSupply": "7422681887649500109319971" + "LPTokenSupply": "4212214149979337471334975" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "13631665112095907643392", - "expectedQty": "13754466578766672454281", - "swapFee": "8178999067257544586", + "inputQty": "52868840982722073591808", + "expectedQty": "52322816069488603647342", + "reserves": [ + "2872133536161804995006449", + "1428986101313786643028093" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "12911797769366", + "73803682284693" + ], + "expectedQty": "86229362977669", + "swapFee": "51768678993", "reserves": [ - "2861580207037221569058106", - "4634864681188641604331483" + "2872133536148893197237083", + "1428986101239982960743400" ], - "LPTokenSupply": "7409051040437310927431037" + "LPTokenSupply": "4264536965962550120193553" }, { "type": "swap", "inputIndex": 1, - "inputQty": "54324672289570632", + "inputQty": "11270245493073168", "outputIndex": 0, - "expectedQty": "54134217782872935", + "expectedQty": "11333884698488079", "swapFee": "0", "reserves": [ - "2861580152903003786185171", - "4634864735513313893902115" + "2872133524815008498749004", + "1428986112510228453816568" ], - "LPTokenSupply": "7409051040437310927431037", + "LPTokenSupply": "4264536965962550120193553", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "90926088937551639347", - "expectedQtys": [ - "35097096064080012449", - "56846317130520528354" - ], - "redemptionFee": "54555653362530983", + "type": "mint", + "inputIndex": 0, + "inputQty": "64921369939433291776", + "expectedQty": "64248654218279525590", "reserves": [ - "2861545055806939706172722", - "4634807889196183373373761" - ], - "LPTokenSupply": "7408960119803938712044788" + "2872198446184947932040780", + "1428986112510228453816568" + ] }, { "type": "redeemBassets", "inputQtys": [ - "62238625993266043027456", - "19670574124267770740736" + "2546454036879134208", + "2489074379488160256" ], - "expectedQty": "81064213268349344265035", - "swapFee": "48667728598168507663", + "expectedQty": "4997259963266768220", + "swapFee": "3000156071603022", "reserves": [ - "2799306429813673663145266", - "4615137315071915602633025" + "2872195899730911052906572", + "1428983623435848965656312" ], - "LPTokenSupply": "7327852105579851016122855" + "LPTokenSupply": "4264596214656664668508202" }, { - "type": "redeemMasset", - "inputQty": "7628743587966185006694", - "expectedQtys": [ - "2912501174301257756210", - "4801758287892477005986" - ], - "redemptionFee": "4577246152779711004", + "type": "redeem", + "inputIndex": 1, + "inputQty": "31539524950836595654656", + "expectedQty": "31669122065979941156532", + "swapFee": "18923714970501957392", "reserves": [ - "2796393928639372405389056", - "4610335556784023125627039" + "2872195899730911052906572", + "1397314501369869024499780" ], - "LPTokenSupply": "7320223819716500109087261" + "LPTokenSupply": "4233058582077325123049285" }, { - "type": "redeemBassets", - "inputQtys": [ - "21647889544109468155904", - "27520539295283570278400" + "type": "swap", + "inputIndex": 1, + "inputQty": "20609078795333005312", + "outputIndex": 0, + "expectedQty": "20730728913544063032", + "swapFee": "0", + "reserves": [ + "2872175169001997508843540", + "1397335110448664357505092" ], - "expectedQty": "48605381833507937938638", - "swapFee": "29180737542630340967", + "LPTokenSupply": "4233058582077325123049285", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "836438962438849691648", + "expectedQty": "832582411715607468303", + "reserves": [ + "2872175169001997508843540", + "1398171549411103207196740" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "275601852169619192676352", + "expectedQty": "274152228446818287205485", "reserves": [ - "2774746039095262937233152", - "4582815017488739555348639" + "2872175169001997508843540", + "1673773401580722399873092" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "4801371843099299", + "expectedQty": "4846028410010067", + "swapFee": "2880823105859", + "reserves": [ + "2872175164155969098833473", + "1673773401580722399873092" ], - "LPTokenSupply": "7271592175219203803841751" + "LPTokenSupply": "4508043388134775256934359" }, { "type": "swap", "inputIndex": 1, - "inputQty": "1924351778813289984", + "inputQty": "6607458977574394265600", "outputIndex": 0, - "expectedQty": "1917277999233635480", + "expectedQty": "6633933963194405652927", "swapFee": "0", "reserves": [ - "2774744121817263703597672", - "4582816941840518368638623" + "2865541230192774693180546", + "1680380860558296794138692" ], - "LPTokenSupply": "7271592175219203803841751", + "LPTokenSupply": "4508043388134775256934359", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5582811636924980133888", - "expectedQty": "5653268987891942959831", - "swapFee": "3349686982154988080", + "type": "redeemMasset", + "inputQty": "1840801208744747309465", + "expectedQtys": [ + "1169404633297423573422", + "685750092630490210816" + ], + "redemptionFee": "1104480725246848385", "reserves": [ - "2774744121817263703597672", - "4577163672852626425678792" + "2864371825559477269607124", + "1679695110465666303927876" ], - "LPTokenSupply": "7266009698550977039206671" + "LPTokenSupply": "4506202697374103034309732" }, { "type": "mint", "inputIndex": 1, - "inputQty": "68698842571146960896", - "expectedQty": "67802045170520737161", + "inputQty": "856384346176513", + "expectedQty": "851374811974721", "reserves": [ - "2774744121817263703597672", - "4577232371695197572639688" + "2864371825559477269607124", + "1679695111322050650104389" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2244054261764618240", - "expectedQty": "2222907648762759474", + "type": "redeem", + "inputIndex": 1, + "inputQty": "117182360712708608", + "expectedQty": "117801144746142525", + "swapFee": "70309416427625", "reserves": [ - "2774746365871525468215912", - "4577232371695197572639688" - ] + "2864371825559477269607124", + "1679694993520905903961864" + ], + "LPTokenSupply": "4506202581050148075218607" }, { "type": "redeemBassets", "inputQtys": [ - "3394704674377828401152", - "441492453817253560320" + "16819997913323665408", + "34213334148654825472" ], - "expectedQty": "3798453786670575403098", - "swapFee": "2280440536324139725", + "expectedQty": "50668550764703559415", + "swapFee": "30419382088074980", "reserves": [ - "2771351661197147639814760", - "4576790879241380319079368" + "2864355005561563945941716", + "1679660780186757249136392" ], - "LPTokenSupply": "7262279217320643055574454" + "LPTokenSupply": "4506151885121939492391709" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5390771291250811207680", - "outputIndex": 0, - "expectedQty": "5370885549527916192638", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "12489218255843298902016", + "5479648012277609660416" + ], + "expectedQty": "17814552383844674061572", "reserves": [ - "2765980775647619723622122", - "4582181650532631130287048" + "2876844223817407244843732", + "1685140428199034858796808" ], - "LPTokenSupply": "7262279217320643055574454", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4523966437505784166453281" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4681758544299927535616", - "outputIndex": 0, - "expectedQty": "4664367841338562574872", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "36362712115090678611968", + "21083372935381428207616" + ], + "expectedQty": "56966807442267523410852", "reserves": [ - "2761316407806281161047250", - "4586863409076931057822664" + "2913206935932497923455700", + "1706223801134416287004424" ], - "LPTokenSupply": "7262279217320643055574454", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "4580933244948051689864133" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "153070348174846830051328", - "expectedQty": "154996734044921918455850", - "swapFee": "91842208904908098030", + "type": "mintMulti", + "inputQtys": [ + "3085083821898481532928", + "4309599258828898041856" + ], + "expectedQty": "7339281527210482282539", "reserves": [ - "2761316407806281161047250", - "4431866675032009139366814" + "2916292019754396404988628", + "1710533400393245185046280" ], - "LPTokenSupply": "7109218053366686716332929" + "LPTokenSupply": "4588272526475262172146672" + }, + { + "type": "redeemMasset", + "inputQty": "743544423261112316723", + "expectedQtys": [ + "472311010251456437853", + "277031159066379269801" + ], + "redemptionFee": "446126653956667390", + "reserves": [ + "2915819708744144948550775", + "1710256369234178805776479" + ], + "LPTokenSupply": "4587529026664666455496688" }, { "type": "redeemBassets", "inputQtys": [ - "264566372771608461312", - "1381004351556569006080" + "453843498227632701440", + "607236938689915518976" ], - "expectedQty": "1625116216951494035616", - "swapFee": "975655123244843327", + "expectedQty": "1053085409014708636488", + "swapFee": "632230583759080630", "reserves": [ - "2761051841433509552585938", - "4430485670680452570360734" + "2915365865245917315849335", + "1709649132295488890257503" ], - "LPTokenSupply": "7107592059060124301938317" + "LPTokenSupply": "4586475372248126363687632" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "18814021269009", - "45781432968076" + "302351284046507278336", + "127408777638588022784" ], - "expectedQty": "63821133314312", + "expectedQty": "426055043846331688858", + "swapFee": "255786498206723047", "reserves": [ - "2761051841452323573854947", - "4430485670726234003328810" + "2915063513961870808570999", + "1709521723517850302234719" ], - "LPTokenSupply": "7107592059123945435252629" + "LPTokenSupply": "4586049086996431645948030" }, { "type": "redeemMasset", - "inputQty": "113644847482500782489", + "inputQty": "23858172489074386927616", "expectedQtys": [ - "44120574902906202952", - "70797502588255841403" + "15156043461661288689569", + "8888171875568111953389" ], - "redemptionFee": "68186908489500469", + "redemptionFee": "14314903493444632156", "reserves": [ - "2761007720877420667651995", - "4430414873223645747487407" + "2899907470500209519881430", + "1700633551642282190281330" ], - "LPTokenSupply": "7107478421095153783420186" + "LPTokenSupply": "4562192345997706603483629" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "9488258615909896192", + "expectedQty": "9432723275184575121", + "reserves": [ + "2899907470500209519881430", + "1700643039900898100177522" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "40724857954696200192", - "7316647482653804544" + "32954785099624288256", + "12203972035142377472" ], - "expectedQty": "47556319127282515280", + "expectedQty": "44764646311830102070", + "swapFee": "26874912734738904", "reserves": [ - "2761048445735375363852187", - "4430422189871128401291951" + "2899874515715109895593174", + "1700630835928862957800050" ], - "LPTokenSupply": "7107525977414281065935466" + "LPTokenSupply": "4562156989887248496691665" }, { "type": "redeemBassets", "inputQtys": [ - "3422715930837835055104", - "3079884376451500212224" + "1107893915219890405376", + "2770824330342633046016" + ], + "expectedQty": "3851659855898269835698", + "swapFee": "2312383343545088954", + "reserves": [ + "2898766621799890005187798", + "1697860011598520324754034" + ], + "LPTokenSupply": "4558303248886341036275907" + }, + { + "type": "redeemMasset", + "inputQty": "1116524184291719782", + "expectedQtys": [ + "709606389795310693", + "415629290108274857" ], - "expectedQty": "6429841067644458427504", - "swapFee": "3860220773050505359", + "redemptionFee": "669914510575031", "reserves": [ - "2757625729804537528797083", - "4427342305494676901079727" + "2898765912193500209877105", + "1697859595969230216479177" ], - "LPTokenSupply": "7101092662147940862053137" + "LPTokenSupply": "4558302132429148195613628" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "183081375687119904", + "expectedQty": "181287867072880221", + "reserves": [ + "2898766095274875896997009", + "1697859595969230216479177" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "253166976104345632", + "inputQty": "5397711744322586542080", "outputIndex": 1, - "expectedQty": "253835166689370599", - "swapFee": "200593256279660", + "expectedQty": "5371841343443367548448", + "swapFee": "4275854084430675770", "reserves": [ - "2757625982971513633142715", - "4427342051659510211709128" + "2904163807019198483539089", + "1692487754625786848930729" ], - "LPTokenSupply": "7101092662168000187681103", + "LPTokenSupply": "4558302741302423711561426", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "78773734291134780276736", - "expectedQty": "77749160817830079747092", + "type": "redeem", + "inputIndex": 0, + "inputQty": "140548055545339", + "expectedQty": "141855898379288", + "swapFee": "84328833327", "reserves": [ - "2757625982971513633142715", - "4506115785950644991985864" - ] + "2904163806877342585159801", + "1692487754625786848930729" + ], + "LPTokenSupply": "4558302741161884088899419" }, { "type": "redeemBassets", "inputQtys": [ - "36161300711019944", - "10825027452365190" + "19200773003923222528", + "2792261133002165760" ], - "expectedQty": "46502161501406909", - "swapFee": "27918047729481", + "expectedQty": "21788351947207497720", + "swapFee": "13080859684134979", "reserves": [ - "2757625946810212922122771", - "4506115775125617539620674" + "2904144606104338661937273", + "1692484962364653846764969" ], - "LPTokenSupply": "7178841776458542523064752" + "LPTokenSupply": "4558280941037163165680216" }, { "type": "swap", "inputIndex": 1, - "inputQty": "102797376852595088293888", + "inputQty": "628694189279676", "outputIndex": 0, - "expectedQty": "102401581620165969862751", + "expectedQty": "631231122626523", "swapFee": "0", "reserves": [ - "2655224365190046952260020", - "4608913151978212627914562" + "2904144605473107539310750", + "1692484962993348036044645" ], - "LPTokenSupply": "7178841776458542523064752", + "LPTokenSupply": "4558280941037163165680216", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemBassets", + "inputQtys": [ + "2795136109559741952", + "23558744531765227520" + ], + "expectedQty": "26189377517564210537", + "swapFee": "15723060346746574", + "reserves": [ + "2904141810336997979568798", + "1692461404248816270817125" + ], + "LPTokenSupply": "4558254737508891289397761" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1937271958449393500160", + "expectedQty": "1947433789681504725394", + "swapFee": "1162363175069636100", + "reserves": [ + "2904141810336997979568798", + "1690513970459134766091731" + ], + "LPTokenSupply": "4556317581786759402861211" + }, { "type": "swap", "inputIndex": 0, - "inputQty": "30909676043532387745792", + "inputQty": "4003286907574526464", "outputIndex": 1, - "expectedQty": "31010253310504941632305", - "swapFee": "24500683893113958812", + "expectedQty": "3983965019368107081", + "swapFee": "3171185710085916", "reserves": [ - "2686134041233579340005812", - "4577902898667707686282257" + "2904145813623905554095262", + "1690509986494115397984650" ], - "LPTokenSupply": "7178844226526931834460633", + "LPTokenSupply": "4556317582103877973869802", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "2495847433915144", - "expectedQtys": [ - "933319909736228", - "1590630941933037" + "type": "mintMulti", + "inputQtys": [ + "1891155363698904924160", + "23692581856824514314240" ], - "redemptionFee": "1497508460349", + "expectedQty": "25426609369152729017047", "reserves": [ - "2686134040300259430269584", - "4577902897077076744349220" + "2906036968987604459019422", + "1714202568350939912298890" ], - "LPTokenSupply": "7178844224031234151391523" + "LPTokenSupply": "4581744191473030702886849" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "42038003548620794626048", - "expectedQty": "42573131556140412678981", - "swapFee": "25222802129172476775", + "inputIndex": 0, + "inputQty": "905145350046710528", + "expectedQty": "913530735583783697", + "swapFee": "543087210028026", + "reserves": [ + "2906036055456868875235725", + "1714202568350939912298890" + ], + "LPTokenSupply": "4581743286381989377179123" + }, + { + "type": "mintMulti", + "inputQtys": [ + "13717820022618597621760", + "2786710589727545229312" + ], + "expectedQty": "16354004132709273988359", "reserves": [ - "2686134040300259430269584", - "4535329765520936331670239" + "2919753875479487472857485", + "1716989278940667457528202" ], - "LPTokenSupply": "7136808742762826274013152" + "LPTokenSupply": "4598097290514698651167482" }, { "type": "mintMulti", "inputQtys": [ - "232194038761231232", - "68823452254688032" + "64574872050317640", + "102891916105471552" ], - "expectedQty": "297949957566597902", + "expectedQty": "166230987399442289", "reserves": [ - "2686134272494298191500816", - "4535329834344388586358271" + "2919753940054359523175125", + "1716989381832583562999754" ], - "LPTokenSupply": "7136809040712783840611054" + "LPTokenSupply": "4598097456745686050609771" }, { "type": "mintMulti", "inputQtys": [ - "24171127613886578688", - "2214879269767179008" + "18835373078793313845248", + "12024146035765992751104" ], - "expectedQty": "26131764522165993750", + "expectedQty": "30604648622532177730404", "reserves": [ - "2686158443621912078079504", - "4535332049223658353537279" + "2938589313133152837020373", + "1729013527868349555750858" ], - "LPTokenSupply": "7136835172477306006604804" + "LPTokenSupply": "4628702105368218228340175" }, { "type": "mint", "inputIndex": 1, - "inputQty": "15903681144754515476480", - "expectedQty": "15694461534253420442366", + "inputQty": "110525602031544877056", + "expectedQty": "109876419291502267182", "reserves": [ - "2686158443621912078079504", - "4551235730368412869013759" + "2938589313133152837020373", + "1729124053470381100627914" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "150334575903183", - "177799374651524" + "type": "redeemMasset", + "inputQty": "846039445288405708", + "expectedQtys": [ + "536783689790453646", + "315854136329665457" ], - "expectedQty": "324396710778598", - "swapFee": "194754879394", + "redemptionFee": "507623667173043", "reserves": [ - "2686158443471577502176321", - "4551235730190613494362235" + "2938588776349463046566727", + "1729123737616244770962457" ], - "LPTokenSupply": "7152529633686987436877116" + "LPTokenSupply": "4628811135798826808918953" }, { "type": "mintMulti", "inputQtys": [ - "139456370770975", - "177272192973086" + "276383180961205381496832", + "256814658563485714087936" ], - "expectedQty": "313099362074028", + "expectedQty": "528972995174439654204743", "reserves": [ - "2686158443611033872947296", - "4551235730367885687335321" + "3214971957310668428063559", + "1985938396179730485050393" ], - "LPTokenSupply": "7152529634000086798951144" + "LPTokenSupply": "5157784130973266463123696" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4353296270134224617472", - "expectedQty": "4312817751862073441967", + "inputIndex": 1, + "inputQty": "40146921671773552640", + "expectedQty": "39900382253455464027", "reserves": [ - "2690511739881168097564768", - "4551235730367885687335321" + "3214971957310668428063559", + "1985978543101402258603033" ] }, { - "type": "redeemMasset", - "inputQty": "142614342330564659", - "expectedQtys": [ - "53581637651469365", - "90638022557657849" - ], - "redemptionFee": "85568605398338", + "type": "mint", + "inputIndex": 0, + "inputQty": "1996853941317251366912", + "expectedQty": "1977640572548051636168", "reserves": [ - "2690511686299530446095403", - "4551235639729863129677472" - ], - "LPTokenSupply": "7156842309146163402368285" + "3216968811251985679430471", + "1985978543101402258603033" + ] }, { "type": "redeemBassets", "inputQtys": [ - "14066615110343100416", - "5276135832555315200" + "415160931063650379104256", + "23563937119857650171904" ], - "expectedQty": "19142478316127818653", - "swapFee": "11492382419128168", + "expectedQty": "434660418529684239946385", + "swapFee": "260952822811497442433", "reserves": [ - "2690497619684420102994987", - "4551230363594030574362272" + "2801807880188335300326215", + "1962414605981544608431129" ], - "LPTokenSupply": "7156823156324703097334279" + "LPTokenSupply": "4724906395857853382579315" }, { "type": "redeemBassets", "inputQtys": [ - "497423443883157159936", - "152350602181192876032" + "2688633486736113008640", + "3437203981787324219392" ], - "expectedQty": "643142432496803025543", - "swapFee": "386117129775947383", + "expectedQty": "6077539735218115109579", + "swapFee": "3648713068972252417", "reserves": [ - "2690000196240536945835051", - "4551078012991849381486240" + "2799119246701599187317575", + "1958977401999757284211737" ], - "LPTokenSupply": "7156179666386789495956090" + "LPTokenSupply": "4718825572280873192442559" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1291921220021110", + "inputQty": "27705557848856989696", "outputIndex": 1, - "expectedQty": "1295929509882583", - "swapFee": "1023922912082", + "expectedQty": "27614536922755113217", + "swapFee": "21958968749348427", "reserves": [ - "2690000197532458165856161", - "4551078011695919871603657" + "2799146952259448044307271", + "1958949787462834529098520" ], - "LPTokenSupply": "7156179666386891888247298", + "LPTokenSupply": "4718825574476770067377401", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemMasset", + "inputQty": "9409023562679858285772", + "expectedQtys": [ + "5577963599206289577115", + "3903671651936832116774" + ], + "redemptionFee": "5645414137607914971", + "reserves": [ + "2793568988660241754730156", + "1955046115810897696981746" + ], + "LPTokenSupply": "4709417115455503969883126" + }, + { + "type": "redeemMasset", + "inputQty": "3449959467492425125068", + "expectedQtys": [ + "2045246136521442851243", + "1431341245308261772185" + ], + "redemptionFee": "2069975680495455075", + "reserves": [ + "2791523742523720311878913", + "1953614774565589435209561" + ], + "LPTokenSupply": "4705967362985579594303565" + }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2461091989513211", - "expectedQty": "2482709747775138", - "swapFee": "1476655193707", + "inputIndex": 1, + "inputQty": "43486870873528098816", + "expectedQty": "43758406271027466578", + "swapFee": "26092122524116859", "reserves": [ - "2690000195049748418081023", - "4551078011695919871603657" + "2791523742523720311878913", + "1953571016159318407742983" ], - "LPTokenSupply": "7156179663925947564253457" + "LPTokenSupply": "4705923878723918318616434" }, { "type": "redeemBassets", "inputQtys": [ - "1186708147828240416768", - "776657049099126046720" + "54341136796705808384", + "68105060153752436736" ], - "expectedQty": "1942108848360277483932", - "swapFee": "1165964887948935851", + "expectedQty": "121479115706481421866", + "swapFee": "72931228160785324", "reserves": [ - "2688813486901920177664255", - "4550301354646820745556937" + "2791469401386923606070529", + "1953502911099164655306247" ], - "LPTokenSupply": "7154236505709188132727258" + "LPTokenSupply": "4705802333970106492487775" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9228711875512518656", - "359735274179373498368" + "1003107992599130368", + "1390969408358106112" ], - "expectedQty": "364144904283447031659", + "expectedQty": "2375315640659014335", + "swapFee": "1426045011402249", "reserves": [ - "2688822715613795690182911", - "4550661089921000119055305" + "2791468398278931006940161", + "1953501520129756297200135" ], - "LPTokenSupply": "7154600650613471579758917" + "LPTokenSupply": "4705799957371025323211414" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "12166437981817497714688", - "expectedQty": "12006301237550075100204", + "inputQty": "7482721938212802002944", + "expectedQty": "7529377974537064634903", + "swapFee": "4489633162927681201", "reserves": [ - "2688822715613795690182911", - "4562827527902817616769993" - ] + "2791468398278931006940161", + "1945972142155219232565232" + ], + "LPTokenSupply": "4698317684396128813976590" }, { "type": "mintMulti", "inputQtys": [ - "74684909565054224", - "189270871518289792" + "1604617233031129088", + "1005005028037366400" ], - "expectedQty": "260770258422208008", + "expectedQty": "2587904051374924257", "reserves": [ - "2688822790298705255237135", - "4562827717173689135059785" + "2791470002896164038069249", + "1945973147160247269931632" ], - "LPTokenSupply": "7166607212621280077067129" + "LPTokenSupply": "4698320272300180188900847" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "30591772871850448", + "expectedQty": "30384209142017598", + "reserves": [ + "2791470002896164038069249", + "1945973177752020141782080" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1120037967556824006656", - "2969133498162092703744" + "72922250168491360", + "29877945104105820" ], - "expectedQty": "4039678643522351935393", - "swapFee": "2425262343519522874", + "expectedQty": "101920372325183259", + "swapFee": "61188936757164", "reserves": [ - "2687702752331148431230479", - "4559858583675527042356041" + "2791469929973913869577889", + "1945973147874075037676260" ], - "LPTokenSupply": "7162565351241648557561148" + "LPTokenSupply": "4698320200708946962653737" }, { "type": "mint", "inputIndex": 0, - "inputQty": "78026885975238038781952", - "expectedQty": "77296001410689427979867", + "inputQty": "85126724877989785370624", + "expectedQty": "84332243116371671024263", "reserves": [ - "2765729638306386470012431", - "4559858583675527042356041" + "2876596654851903654948513", + "1945973147874075037676260" ] }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "4242288234082163752960", + "expectedQty": "4279879050162556630568", + "swapFee": "2545372940449298251", + "reserves": [ + "2872316775801741098317945", + "1945973147874075037676260" + ], + "LPTokenSupply": "4778410410128530514854865" + }, { "type": "redeemMasset", - "inputQty": "4093238033163648342425", + "inputQty": "23919993820745528115", "expectedQtys": [ - "1562736732102163489038", - "2576484123106357247439" + "14369752732653487792", + "9735400076660600608" + ], + "redemptionFee": "14351996292447316", + "reserves": [ + "2872302406049008444830153", + "1945963412473998377075652" + ], + "LPTokenSupply": "4778386491569909398571481" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "183844671752726020096", + "376757261204106313728" ], - "redemptionFee": "2455942819898189005", + "expectedQty": "556371302046754484695", + "swapFee": "334023195145139774", "reserves": [ - "2764166901574284306523393", - "4557282099552420685108602" + "2872118561377255718810057", + "1945586655212794270761924" ], - "LPTokenSupply": "7235768360213456327017490" + "LPTokenSupply": "4777829819646987013460988" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "9315156317873595482112", - "expectedQty": "9193361069332935581446", + "inputIndex": 0, + "inputQty": "1012970461850534144", + "expectedQty": "1003472376835341750", "reserves": [ - "2764166901574284306523393", - "4566597255870294280590714" + "2872119574347717569344201", + "1945586655212794270761924" ] }, { "type": "mintMulti", "inputQtys": [ - "4981647694279378944", - "5136930841069602816" + "14305787811019364352", + "15462154205015836672" ], - "expectedQty": "10004395873103277451", + "expectedQty": "29530925914104907261", "reserves": [ - "2764171883221978585902337", - "4566602392801135350193530" + "2872133880135528588708553", + "1945602117366999286598596" ], - "LPTokenSupply": "7244971725678662365876387" + "LPTokenSupply": "4777860354045277953709999" }, { - "type": "redeemBassets", - "inputQtys": [ - "4798326017940110966784", - "4863876497872804380672" - ], - "expectedQty": "9553323914464172619529", - "swapFee": "5735435610044530289", + "type": "redeem", + "inputIndex": 1, + "inputQty": "182548857389310661361664", + "expectedQty": "183617235027766448052245", + "swapFee": "109529314433586396816", "reserves": [ - "2759373557204038474935553", - "4561738516303262545812858" + "2872133880135528588708553", + "1761984882339232838546351" ], - "LPTokenSupply": "7235413239872149153179596" + "LPTokenSupply": "4595322449587410650988016" }, { "type": "mintMulti", "inputQtys": [ - "160080853384549504", - "146435957113735104" + "88341541137404215296", + "16473452229688119296" ], - "expectedQty": "303091408161701765", + "expectedQty": "103854751076686722500", "reserves": [ - "2759373717284891859485057", - "4561738662739219659547962" + "2872222221676665992923849", + "1762001355791462526665647" ], - "LPTokenSupply": "7235413542963557314881361" + "LPTokenSupply": "4595426304338487337710516" }, { - "type": "mintMulti", - "inputQtys": [ - "90407057293173456", - "57397010230094904" - ], - "expectedQty": "146200548874770370", + "type": "swap", + "inputIndex": 1, + "inputQty": "709762528991305661415424", + "outputIndex": 0, + "expectedQty": "710627431350701653397954", + "swapFee": "0", "reserves": [ - "2759373807691949152658513", - "4561738720136229889642866" + "2161594790325964339525895", + "2471763884782768188081071" ], - "LPTokenSupply": "7235413689164106189651731" + "LPTokenSupply": "4595426304338487337710516", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1095424223506626816", - "509326861601499200" + "type": "redeemMasset", + "inputQty": "26374648730396689170432", + "expectedQtys": [ + "12398653081768716826559", + "14177746469700292225636" ], - "expectedQty": "1587756716585196053", - "swapFee": "953225965530435", + "redemptionFee": "15824789238238013502", "reserves": [ - "2759372712267725646031697", - "4561738210809368288143666" + "2149196137244195622699336", + "2457586138313067895855435" ], - "LPTokenSupply": "7235412100549486235478285" + "LPTokenSupply": "4569053238087014472341434" }, { - "type": "redeemBassets", - "inputQtys": [ - "6658366660331711758336", - "9996604052929811316736" + "type": "mint", + "inputIndex": 0, + "inputQty": "4612492679590250545152", + "expectedQty": "4576882461748235453776", + "reserves": [ + "2153808629923785873244488", + "2457586138313067895855435" + ] + }, + { + "type": "redeemMasset", + "inputQty": "535548131771347055411", + "expectedQtys": [ + "252048389714908596882", + "287597802395939148048" ], - "expectedQty": "16461403252762113812774", - "swapFee": "9882771614626043914", + "redemptionFee": "321328879062808233", "reserves": [ - "2752714345607393934273361", - "4551741606756438476826930" + "2153556581534070964647606", + "2457298540510671956707387" ], - "LPTokenSupply": "7218941802802270958225987" + "LPTokenSupply": "4573094604549879267020622" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "8400583717490056495104", - "expectedQty": "8290651792621872030721", + "inputQty": "1541109884256570624", + "outputIndex": 0, + "expectedQty": "1539754172708364814", + "swapFee": "0", "reserves": [ - "2752714345607393934273361", - "4560142190473928533322034" - ] + "2153555041779898256282792", + "2457300081620556213278011" + ], + "LPTokenSupply": "4573094604549879267020622", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "1239330172741409885388", + "expectedQtys": [ + "583273383375500188752", + "665540329719699440315" + ], + "redemptionFee": "743598103644845931", + "reserves": [ + "2152971768396522756094040", + "2456634541290836513837696" + ], + "LPTokenSupply": "4571855348736948221619827" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "14257398510914734391296", + "expectedQty": "14359591670920737535767", + "swapFee": "8554439106548840634", + "reserves": [ + "2138612176725602018558273", + "2456634541290836513837696" + ], + "LPTokenSupply": "4557598805669944142112594" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "5291056433729238990848", + "outputIndex": 1, + "expectedQty": "5291635371724648048117", + "swapFee": "4200224546659459973", + "reserves": [ + "2143903233159331257549121", + "2451342905919111865789579" + ], + "LPTokenSupply": "4557599225692398808058591", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "726146899236178231296", - "292585107240853766144" + "114655711909422989312", + "75203977621995274240" ], - "expectedQty": "1008061064484992416771", - "swapFee": "605199758546123123", + "expectedQty": "188327375393270335570", + "swapFee": "113064263794238744", "reserves": [ - "2751988198708157756042065", - "4559849605366687679555890" + "2143788577447421834559809", + "2451267701941489870515339" ], - "LPTokenSupply": "7226223848850625146329125" + "LPTokenSupply": "4557410796559168122908150" }, { "type": "redeemBassets", "inputQtys": [ - "1550325491704775835648", - "3866061191372229050368" + "664002871496004337664", + "373365260128053886976" ], - "expectedQty": "5351175476224888703085", - "swapFee": "3212632865454205745", + "expectedQty": "1029029148060786762130", + "swapFee": "617788161733512164", "reserves": [ - "2750437873216452980206417", - "4555983544175315450505522" + "2143124574575925830222145", + "2450894336681361816628363" ], - "LPTokenSupply": "7220869782004821348840868" + "LPTokenSupply": "4556381211401761775985071" }, { - "type": "mintMulti", - "inputQtys": [ - "2585067566750262886400", - "36089023373128985739264" + "type": "swap", + "inputIndex": 1, + "inputQty": "125497491173640028160", + "outputIndex": 0, + "expectedQty": "125385138957130208861", + "swapFee": "0", + "reserves": [ + "2142999189436968700013284", + "2451019834172535456656523" ], - "expectedQty": "38176981690834557797188", + "LPTokenSupply": "4556381211401761775985071", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "83079972767847776", + "outputIndex": 1, + "expectedQty": "83087924456003560", + "swapFee": "65950966969621", "reserves": [ - "2753022940783203243092817", - "4592072567548444436244786" + "2142999272516941467861060", + "2451019751084611000652963" ], - "LPTokenSupply": "7259046763695655906638056" + "LPTokenSupply": "4556381211408356872682033", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "82019412266360", + "inputQty": "20978483268179990937", "expectedQtys": [ - "31087531202211", - "51854344223471" + "9860873832306403684", + "11278210326945095255" ], - "redemptionFee": "49211647359", + "redemptionFee": "12587089960907994", "reserves": [ - "2753022940752115711890606", - "4592072567496590092021315" + "2142989411643109161457376", + "2451008472874284055557708" ], - "LPTokenSupply": "7259046763613641415536431" + "LPTokenSupply": "4556360234183797688781895" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "615853620404810022912", - "expectedQty": "607778148951971396193", - "reserves": [ - "2753022940752115711890606", - "4592688421116994902044227" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "172883867779458170880", - "1492517687053605142528" - ], - "expectedQty": "1644207555199578267367", + "inputQty": "659727698015929495453696", + "expectedQty": "664728885869005525684990", + "swapFee": "395836618809557697272", "reserves": [ - "2753195824619895170061486", - "4594180938804048507186755" + "2142989411643109161457376", + "1786279587005278529872718" ], - "LPTokenSupply": "7261298749317792965199991" + "LPTokenSupply": "3896672119829749149097926" }, { - "type": "mintMulti", - "inputQtys": [ - "1256684203308189696", - "932229890976118656" + "type": "redeemMasset", + "inputQty": "13689566907432279264460", + "expectedQtys": [ + "7524111362936201969482", + "6271690594897680774674" ], - "expectedQty": "2164898568495815282", + "redemptionFee": "8213740144459367558", "reserves": [ - "2753197081304098478251182", - "4594181871033939483305411" + "2135465300280172959487894", + "1780007896410380849098044" ], - "LPTokenSupply": "7261300914216361461015273" + "LPTokenSupply": "3882983374296331315770221" }, { "type": "mint", "inputIndex": 0, - "inputQty": "635760504799821299712", - "expectedQty": "629795243540563454296", + "inputQty": "15384304106776145920", + "expectedQty": "15248169784174727896", "reserves": [ - "2753832841808898299550894", - "4594181871033939483305411" + "2135480684584279735633814", + "1780007896410380849098044" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5556807666488550883328", - "4228283422341771296768" + "10038752551983264", + "4749486621358851" ], - "expectedQty": "9677494209510756916067", + "expectedQty": "14663136980286445", + "swapFee": "8803164086623", "reserves": [ - "2759389649475386850434222", - "4598410154456281254602179" + "2135480674545527183650550", + "1780007891660894227739193" ], - "LPTokenSupply": "7271608203669412781385636" + "LPTokenSupply": "3882998607795055662533710" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "149532407911100580888576", - "expectedQty": "150835155790528037052289", - "swapFee": "89719444746660348533", + "inputQty": "2533863893682910920704", + "expectedQty": "2511437259129672181674", "reserves": [ - "2608554493684858813381933", - "4598410154456281254602179" - ], - "LPTokenSupply": "7122084767702786866531913" + "2138014538439210094571254", + "1780007891660894227739193" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5429985632694514483200", - "expectedQty": "5476405481406123156135", - "swapFee": "3257991379616708689", + "type": "mint", + "inputIndex": 1, + "inputQty": "2217036609880982028288", + "expectedQty": "2200110587010479525566", "reserves": [ - "2603078088203452690225798", - "4598410154456281254602179" - ], - "LPTokenSupply": "7116655107869230313719581" + "2138014538439210094571254", + "1782224928270775209767481" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4780229295018919067648", - "5748062696819527778304" + "521005274544281419776", + "347742814271737823232" ], - "expectedQty": "10408415434808481335357", - "swapFee": "6248798540009094257", + "expectedQty": "861482182841115682206", "reserves": [ - "2598297858908433771158150", - "4592662091759461726823875" + "2138535543713754375991030", + "1782572671085046947590713" ], - "LPTokenSupply": "7106241068515735824199391" + "LPTokenSupply": "3888571637824036929923156" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "121520012791350329344", + "expectedQty": "120591989516189299538", + "reserves": [ + "2138535543713754375991030", + "1782694191097838297920057" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "21575001956892159246336", - "outputIndex": 1, - "expectedQty": "21649413544025055608508", - "swapFee": "17103152743673836394", + "inputIndex": 1, + "inputQty": "1784600621241362688", + "outputIndex": 0, + "expectedQty": "1786782416859079190", + "swapFee": "0", "reserves": [ - "2619872860865325930404486", - "4571012678215436671215367" + "2138533756931337516911840", + "1782695975698459539282745" ], - "LPTokenSupply": "7106242778831010191583030", + "LPTokenSupply": "3888692229813553119222694", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "154495624530878080", - "expectedQty": "153083192760264561", + "inputQty": "122542697806238721245184", + "expectedQty": "121447657602575740381480", "reserves": [ - "2619873015360950461282566", - "4571012678215436671215367" + "2261076454737576238157024", + "1782695975698459539282745" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4264487565702069248", - "expectedQty": "4301251809477707331", - "swapFee": "2558692539421241", - "reserves": [ - "2619868714109140983575235", - "4571012678215436671215367" + "type": "redeemMasset", + "inputQty": "5152296208073853658726", + "expectedQtys": [ + "2903326599418196998437", + "2289063969542692030674" ], - "LPTokenSupply": "7106238667682506503720467" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2988907217363458850816", - "expectedQty": "3014664296257269530428", - "swapFee": "1793344330418075310", + "redemptionFee": "3091377724844312195", "reserves": [ - "2616854049812883714044807", - "4571012678215436671215367" + "2258173128138158041158587", + "1780406911728916847252071" ], - "LPTokenSupply": "7103249939799576086677182" + "LPTokenSupply": "4004987900345827490376667" }, { "type": "redeemBassets", "inputQtys": [ - "60477475593965", - "19094964488155888" + "195779440924139416715264", + "148750400524743759364096" ], - "expectedQty": "18901278498638546", - "swapFee": "11347575644569", + "expectedQty": "341659135106743451300448", + "swapFee": "205118552195363288753", "reserves": [ - "2616854049752406238450842", - "4571012659120472183059479" + "2062393687214018624443323", + "1631656511204173087887975" ], - "LPTokenSupply": "7103249920888084769958522" + "LPTokenSupply": "3663144158542108212116340" }, { "type": "mintMulti", "inputQtys": [ - "4573635838380924207104", - "1070281849942193078272" + "275145194697087418368", + "104755877410842165248" ], - "expectedQty": "5587901949735933406168", + "expectedQty": "376623417678832983463", "reserves": [ - "2621427685590787162657946", - "4572082940970414376137751" + "2062668832408715711861691", + "1631761267081583930053223" ], - "LPTokenSupply": "7108837822837820703364690" + "LPTokenSupply": "3663520781959787045099803" }, { "type": "redeemMasset", - "inputQty": "34691284227255297638", + "inputQty": "16433790371865", "expectedQtys": [ - "12784948928542503418", - "22298477741221193668" + "9247150687634", + "7315348972102" + ], + "redemptionFee": "9860274223", + "reserves": [ + "2062668832399468561174057", + "1631761267074268581081121" ], - "redemptionFee": "20814770536353178", + "LPTokenSupply": "3663520781943354240755360" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "23499981486070180", + "expectedQty": "23324024896134841", + "reserves": [ + "2062668832399468561174057", + "1631761290574250067151301" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "101232272182006317056", + "expectedQty": "100314918887851077429", + "reserves": [ + "2062770064671650567491113", + "1631761290574250067151301" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1024283970293124608", + "expectedQty": "1031391767082200834", + "swapFee": "614570382175874", "reserves": [ - "2621414900641858620154528", - "4572060642492673154944083" + "2062770064671650567491113", + "1631760259182482984950467" ], - "LPTokenSupply": "7108803133635070501702369" + "LPTokenSupply": "3663620095963753733060609" }, { "type": "mintMulti", "inputQtys": [ - "6131186777385616801792", - "10141434625180859105280" + "1482811366020090368", + "2026285541625651200" ], - "expectedQty": "16081912059097621853741", + "expectedQty": "3480488293029795966", "reserves": [ - "2627546087419244236956320", - "4582202077117854014049363" + "2062771547483016587581481", + "1631762285468024610601667" ], - "LPTokenSupply": "7124885045694168123556110" + "LPTokenSupply": "3663623576452046762856575" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4167370698174704910336", - "expectedQty": "4220900543426555911377", - "swapFee": "2500422418904822946", + "inputIndex": 0, + "inputQty": "4308289401270932865024", + "expectedQty": "4345064954885114497406", + "swapFee": "2584973640762559719", "reserves": [ - "2627546087419244236956320", - "4577981176574427458137986" + "2058426482528131473084075", + "1631762285468024610601667" ], - "LPTokenSupply": "7120717925038235309128068" + "LPTokenSupply": "3659315545548139906247522" }, { "type": "redeemBassets", "inputQtys": [ - "817091430141302656", - "5627517648390915072" + "1370745765512451", + "1942625220422221" ], - "expectedQty": "6362436502425070797", - "swapFee": "3819753753707266", + "expectedQty": "3286395126915176", + "swapFee": "1973020888682", "reserves": [ - "2627545270327814095653664", - "4577975549056779067222914" + "2058426481157385707571624", + "1631762283525399390179446" ], - "LPTokenSupply": "7120711559163954505720730" + "LPTokenSupply": "3659315542259969060532531" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "32950925301637762252800", - "expectedQty": "33373720090879081370470", - "swapFee": "19770555180982657351", + "inputQty": "1570657923984924082176", + "expectedQty": "1581568307728407700360", + "swapFee": "942394754390954449", "reserves": [ - "2627545270327814095653664", - "4544601828965899985852444" + "2058426481157385707571624", + "1630180715217670982479086" ], - "LPTokenSupply": "7087762610917834841733665" + "LPTokenSupply": "3657744978575459575545799" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "48764566727705305088", - "expectedQty": "49187653454235047887", - "swapFee": "29258740036623183", + "type": "mint", + "inputIndex": 1, + "inputQty": "147313159407504476602368", + "expectedQty": "146184768664578658172791", "reserves": [ - "2627496082674359860605777", - "4544601828965899985852444" - ], - "LPTokenSupply": "7087713849276981140090895" + "2058426481157385707571624", + "1777493874625175459081454" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1298110528579779428352", - "expectedQty": "1286170885477497355312", + "inputIndex": 1, + "inputQty": "117515146705231356624896", + "expectedQty": "116582885192513028948168", "reserves": [ - "2628794193202939640034129", - "4544601828965899985852444" + "2058426481157385707571624", + "1895009021330406815706350" ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "26849869390340985716736", - "expectedQty": "27193787090794454243889", - "swapFee": "16109921634204591430", + "inputQty": "5668946331352917082112", + "outputIndex": 0, + "expectedQty": "5671952625646400285317", + "swapFee": "0", "reserves": [ - "2628794193202939640034129", - "4517408041875105531608555" + "2052754528531739307286307", + "1900677967661759732788462" ], - "LPTokenSupply": "7062151761764281072188614" + "LPTokenSupply": "3920512632432551262666758", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "697443324710515328", - "37337393950811264" + "173760119955043287040", + "63846813902166310912" ], - "expectedQty": "727845134529675933", - "swapFee": "436969262275170", + "expectedQty": "235602861391901774055", "reserves": [ - "2628793495759614929518801", - "4517408004537711580797291" + "2052928288651694350573347", + "1900741814475661899099374" ], - "LPTokenSupply": "7062151033525874206465027" + "LPTokenSupply": "3920748235293943164440813" }, { "type": "redeemMasset", - "inputQty": "2611443300709041596006", + "inputQty": "7334382481741001313484", "expectedQtys": [ - "971492419771362397522", - "1669445561434154148665" + "3838024325135843665419", + "3553506159999209546238" ], - "redemptionFee": "1566865980425424957", + "redemptionFee": "4400629489044600788", "reserves": [ - "2627822003339843567121279", - "4515738558976277426648626" + "2049090264326558506907928", + "1897188308315662689553136" ], - "LPTokenSupply": "7059539746911763207411516" + "LPTokenSupply": "3913414292875151067587407" }, { "type": "redeemBassets", "inputQtys": [ - "4024596462159603433472", - "3881878840641187217408" + "14674180989717797928960", + "48134836055401025241088" ], - "expectedQty": "7817943967598473934442", - "swapFee": "4693582530077130639", + "expectedQty": "62296145143881880455393", + "swapFee": "37400127162626704295", "reserves": [ - "2623797406877683963687807", - "4511856680135636239431218" + "2034416083336840708978968", + "1849053472260261664312048" ], - "LPTokenSupply": "7051717578719887664059497" + "LPTokenSupply": "3851084487616822823098147" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "6588312656870328320", + "expectedQty": "6531395725754793642", + "reserves": [ + "2034422671649497579307288", + "1849053472260261664312048" + ] }, { "type": "redeemMasset", - "inputQty": "500939293421423", + "inputQty": "30121831573867089782374", "expectedQtys": [ - "186277256070891", - "320320570466960" + "15902965793560234197995", + "14453945352455677639273" ], - "redemptionFee": "300563576052", + "redemptionFee": "18073098944320253869", "reserves": [ - "2623797406691406707616916", - "4511856679815315668964258" + "2018519705855937345109293", + "1834599526907805986672775" ], - "LPTokenSupply": "7051717578218978426995679" + "LPTokenSupply": "3820970994748575920134801" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "141083381075587683581952", - "expectedQty": "142882035947280618443607", - "swapFee": "84650028645352610149", + "type": "mintMulti", + "inputQtys": [ + "25882435855499176968192", + "35538133122712007081984" + ], + "expectedQty": "60911939794493565325961", "reserves": [ - "2623797406691406707616916", - "4368974643868035050520651" + "2044402141711436522077485", + "1870137660030517993754759" ], - "LPTokenSupply": "6910642662146255278674741" + "LPTokenSupply": "3881882934543069485460762" }, { - "type": "mintMulti", - "inputQtys": [ - "3361799731409890836480", - "659013872231500873728" - ], - "expectedQty": "3980460357794315952445", + "type": "redeem", + "inputIndex": 1, + "inputQty": "616498605198946861056", + "expectedQty": "621119587622204045797", + "swapFee": "369899163119368116", "reserves": [ - "2627159206422816598453396", - "4369633657740266551394379" + "2044402141711436522077485", + "1869516540442895789708962" ], - "LPTokenSupply": "6914623122504049594627186" + "LPTokenSupply": "3881266472927786850536517" }, { "type": "mintMulti", "inputQtys": [ - "96556084499700367360", - "1467103011067356250112" + "94615158121721790464", + "19617729493419069440" ], - "expectedQty": "1543478545674175269371", + "expectedQty": "113259294056027432349", "reserves": [ - "2627255762507316298820756", - "4371100760751333907644491" + "2044496756869558243867949", + "1869536158172389208778402" ], - "LPTokenSupply": "6916166601049723769896557" + "LPTokenSupply": "3881379732221842877968866" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "1864604951448863637504", - "expectedQty": "1840111686031396426333", + "inputQty": "74321642702602682368", + "expectedQty": "74878671032540266086", + "swapFee": "44592985621561609", "reserves": [ - "2627255762507316298820756", - "4372965365702782771281995" - ] + "2044496756869558243867949", + "1869461279501356668512316" + ], + "LPTokenSupply": "3881305415038438837442658" }, { - "type": "mintMulti", - "inputQtys": [ - "51474488507031242145792", - "29683125813889699151872" + "type": "redeemMasset", + "inputQty": "5257434341818920180121", + "expectedQtys": [ + "2767717823803425918233", + "2530765229536815797504" ], - "expectedQty": "80281236889418564137204", + "redemptionFee": "3154460605091352108", "reserves": [ - "2678730251014347540966548", - "4402648491516672470433867" + "2041729039045754817949716", + "1866930514271819852714812" ], - "LPTokenSupply": "6998287949625173730460094" + "LPTokenSupply": "3876048296142680426397747" }, { - "type": "redeemBassets", - "inputQtys": [ - "14127099858083926507520", - "138237542756779678498816" + "type": "redeemMasset", + "inputQty": "604058268130081177", + "expectedQtys": [ + "317999988431287349", + "290775059073424725" ], - "expectedQty": "150425265659353102273980", - "swapFee": "90309345002613429422", + "redemptionFee": "362434960878048", "reserves": [ - "2664603151156263614459028", - "4264410948759892791935051" + "2041728721045766386662367", + "1866930223496760779290087" ], - "LPTokenSupply": "6847781405555318276099633" + "LPTokenSupply": "3876047692120655792404374" }, { - "type": "redeemBassets", - "inputQtys": [ - "7804988952885197799424", - "15571055606403455516672" - ], - "expectedQty": "23098005871819343610857", - "swapFee": "13867123797370028183", + "type": "swap", + "inputIndex": 0, + "inputQty": "107988389445292269764608", + "outputIndex": 1, + "expectedQty": "107797439335417852965295", + "swapFee": "85638510390104762096", "reserves": [ - "2656798162203378416659604", - "4248839893153489336418379" + "2149717110491058656426975", + "1759132784161342926324792" ], - "LPTokenSupply": "6824670919272081299463410" + "LPTokenSupply": "3876056255971694802880583", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "143759632713491712835584", - "51983469822073718702080" + "28690797339700715585536", + "20538135938346732486656" ], - "expectedQty": "193666757022581206837938", + "expectedQty": "48813748996613614320148", "reserves": [ - "2800557794916870129495188", - "4300823362975563055120459" + "2178407907830759372012511", + "1779670920099689658811448" ], - "LPTokenSupply": "7018337676294662506301348" + "LPTokenSupply": "3924870004968308417200731" }, { - "type": "redeemMasset", - "inputQty": "1706481827844897688780", - "expectedQtys": [ - "680536295709516260014", - "1045101231352096804194" + "type": "redeem", + "inputIndex": 1, + "inputQty": "299695572723966017536", + "expectedQty": "301823705144142070109", + "swapFee": "179817343634379610", + "reserves": [ + "2178407907830759372012511", + "1779369096394545516741339" + ], + "LPTokenSupply": "3924570327377318814621156" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "17024635854838535553024", + "64405018560986462814208" ], - "redemptionFee": "1023889096706938613", + "expectedQty": "80786800238556876288321", + "swapFee": "48501180851645112840", "reserves": [ - "2799877258621160613235174", - "4299778261744210958316265" + "2161383271975920836459487", + "1714964077833559053927131" ], - "LPTokenSupply": "7016631296855727279306429" + "LPTokenSupply": "3843739876075995457731278" }, { "type": "redeemBassets", "inputQtys": [ - "402528314966905192448", - "494870400027689877504" + "295938683863726882816", + "76490439844219830272" ], - "expectedQty": "887051687026693134270", - "swapFee": "532550542541540805", + "expectedQty": "369159193367337025900", + "swapFee": "221628493116271978", "reserves": [ - "2799474730306193708042726", - "4299283391344183268438761" + "2161087333292057109576671", + "1714887587393714834096859" ], - "LPTokenSupply": "7015743765873212298785433" + "LPTokenSupply": "3843370517416984316060596" }, { "type": "mint", "inputIndex": 1, - "inputQty": "189350553945566315806720", - "expectedQty": "186896859154200209335322", + "inputQty": "466204033918410900373504", + "expectedQty": "462473529999980538476127", "reserves": [ - "2799474730306193708042726", - "4488633945289749584245481" + "2161087333292057109576671", + "2181091621312125734470363" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "12582025961043418", - "expectedQty": "12740455664520485", - "swapFee": "7549215576626", + "inputQty": "531983601560733810688", + "expectedQty": "527515784028743756513", + "reserves": [ + "2161087333292057109576671", + "2181623604913686468281051" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "751837905545763724722176", + "expectedQty": "757141762047662738374732", + "swapFee": "451102743327458234833", "reserves": [ - "2799474730306193708042726", - "4488633932549293919724996" + "1403945571244394371201939", + "2181623604913686468281051" ], - "LPTokenSupply": "7202640612446141468634999" + "LPTokenSupply": "3554578767929562619394543" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1032209873675652038656", - "3379655682495918112768" + "3481977002868710400", + "14003775106015969280" ], - "expectedQty": "4357883150458204368099", + "expectedQty": "17324074782211479919", + "swapFee": "10400685280495185", "reserves": [ - "2800506940179869360081382", - "4492013588231789837837764" + "1403942089267391502491539", + "2181609601138580452311771" ], - "LPTokenSupply": "7206998495596599673003098" + "LPTokenSupply": "3554561434494163655468956" }, { - "type": "redeemMasset", - "inputQty": "1493508677026433024", - "expectedQtys": [ - "580001767578586541", - "930322929674343363" - ], - "redemptionFee": "896105206215859", + "type": "redeem", + "inputIndex": 1, + "inputQty": "68672844454675213189120", + "expectedQty": "69312204272969919298835", + "swapFee": "41203706672805127913", "reserves": [ - "2800506360178101781494841", - "4492012657908860163494401" + "1403942089267391502491539", + "2112297396865610533012936" ], - "LPTokenSupply": "7206997002177533167191659" + "LPTokenSupply": "3485892710410155722792627" }, { "type": "redeemMasset", - "inputQty": "2607603508206784793804", + "inputQty": "1726264462150712741068", "expectedQtys": [ - "1012658759428510974214", - "1624304815078464241458" + "694835266497217842627", + "1045412582108977270330" ], - "redemptionFee": "1564562104924070876", + "redemptionFee": "1035758677290427644", "reserves": [ - "2799493701418673270520627", - "4490388353093781699252943" + "1403247254000894284648912", + "2111251984283501555742606" ], - "LPTokenSupply": "7204389555125536874804942" + "LPTokenSupply": "3484166549523872739094323" }, { "type": "mintMulti", "inputQtys": [ - "14463630091494549880832", - "18374254730535910768640" + "416554296931316951678976", + "74729964851909841911808" ], - "expectedQty": "32459049017632176157083", + "expectedQty": "487489454116361876884889", "reserves": [ - "2813957331510167820401459", - "4508762607824317610021583" + "1819801550932211236327888", + "2185981949135411397654414" ], - "LPTokenSupply": "7236848604143169050962025" + "LPTokenSupply": "3971656003640234615979212" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "4534269420356792832", - "expectedQty": "4490534652401272655", + "inputQty": "1637335652711638761472", + "expectedQty": "1649303145657281296102", + "swapFee": "982401391626983256", "reserves": [ - "2813961865779588177194291", - "4508762607824317610021583" - ] + "1818152247786553955031786", + "2185981949135411397654414" + ], + "LPTokenSupply": "3970018766227662139916065" }, { "type": "redeemBassets", "inputQtys": [ - "171919647720185200640", - "244063725662048649216" + "28119238415882637312", + "347408343929817071616" ], - "expectedQty": "411146050050826647538", - "swapFee": "246835731469377615", + "expectedQty": "372153435970469199830", + "swapFee": "223426117252633099", "reserves": [ - "2813789946131867991993651", - "4508518544098655561372367" + "1818124128548138072394474", + "2185634540791481580582798" ], - "LPTokenSupply": "7236441726475612303147287" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "379448105673772105728", - "expectedQty": "374505470221052729699", - "reserves": [ - "2813789946131867991993651", - "4508897992204329333478095" - ] + "LPTokenSupply": "3969646411708186143346444" }, { - "type": "mintMulti", - "inputQtys": [ - "254720782128058236928", - "178793406772805763072" - ], - "expectedQty": "428728441233423447596", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5071383287807279628288", + "expectedQty": "5108419026423588992226", + "swapFee": "3042829972684367776", "reserves": [ - "2814044666913996050230579", - "4509076785611102139241167" + "1813015709521714483402248", + "2185634540791481580582798" ], - "LPTokenSupply": "7237244960387066779324582" + "LPTokenSupply": "3964575332703376132154933" }, { "type": "redeemBassets", "inputQtys": [ - "5554799186952135376896", - "7391962484347332722688" + "1238528270863277", + "659836001600059" ], - "expectedQty": "12796898888888917366336", - "swapFee": "7682748982722984210", + "expectedQty": "1882657579888259", + "swapFee": "1130272711559", "reserves": [ - "2808489867727043914853683", - "4501684823126754806518479" + "1813015708283186212538971", + "2185634540131645578982739" ], - "LPTokenSupply": "7224441147024093411272456" + "LPTokenSupply": "3964575330819701306826269" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "16617163657674315792384", - "expectedQty": "16768654798594481213984", - "swapFee": "9970298194604589475", - "reserves": [ - "2791721212928449433639699", - "4501684823126754806518479" - ], - "LPTokenSupply": "7207824980396238555939019" - }, - { - "type": "redeemMasset", - "inputQty": "390240484801717760", - "expectedQtys": [ - "151056522174438890", - "243580501576541188" - ], - "redemptionFee": "234144290881030", + "inputQty": "18401314889943165698048", + "expectedQty": "18535251910196676231315", + "swapFee": "11040788933965899418", "reserves": [ - "2791721061871927259200809", - "4501684579546253229977291" + "1794480456372989536307656", + "2185634540131645578982739" ], - "LPTokenSupply": "7207824590179168183309362" + "LPTokenSupply": "3946175120008651537718162" }, { - "type": "redeemMasset", - "inputQty": "9352602791118829977", - "expectedQtys": [ - "3620259060677668670", - "5837712302276894297" + "type": "mintMulti", + "inputQtys": [ + "77300861019280982016", + "8792486035158944768" ], - "redemptionFee": "5611561674671297", + "expectedQty": "85409829150151940336", "reserves": [ - "2791717441612866581532139", - "4501678741833950953082994" + "1794557757234008817289672", + "2185643332617680737927507" ], - "LPTokenSupply": "7207815238137533231946514" + "LPTokenSupply": "3946260529837801689658498" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "12411019151020191121408", - "outputIndex": 0, - "expectedQty": "12367597963669028753570", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "304552241395375800320", + "outputIndex": 1, + "expectedQty": "304712269902260625888", + "swapFee": "241740096016243609", "reserves": [ - "2779349843649197552778569", - "4514089760984971144204402" + "1794862309475404193089992", + "2185338620347778477301619" ], - "LPTokenSupply": "7207815238137533231946514", + "LPTokenSupply": "3946260554011811291282858", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "167775960443827453952", - "93781449316459216896" + "67307986493878624256", + "61404919766887276544" ], - "expectedQty": "258724812737872655488", + "expectedQty": "127627500616593373233", "reserves": [ - "2779517619609641380232521", - "4514183542434287603421298" + "1794929617461898071714248", + "2185400025267545364578163" ], - "LPTokenSupply": "7208073962950271104602002" + "LPTokenSupply": "3946388181512427884656091" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "15531285790838114304", - "24615536482944303104" + "29616273729673563734016", + "47444000143239729381376" ], - "expectedQty": "39676314045148345742", + "expectedQty": "76396509168360603568667", + "swapFee": "45865424755869884071", "reserves": [ - "2779533150895432218346825", - "4514208157970770547724402" + "1765313343732224507980232", + "2137956025124305635196787" ], - "LPTokenSupply": "7208113639264316252947744" + "LPTokenSupply": "3869950393461786998191759" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "29366250053602434351104", - "expectedQty": "29084207893295189880276", + "inputQty": "4951807567026310873088", + "outputIndex": 1, + "expectedQty": "4954133590603604537762", + "swapFee": "3930379937745474700", "reserves": [ - "2808899400949034652697929", - "4514208157970770547724402" - ] + "1770265151299250818853320", + "2133001891533702030659025" + ], + "LPTokenSupply": "3869950786499780772739229", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "64900651651683930079232", + "71437533965106585600" + ], + "expectedQty": "64466070308508608677985", + "swapFee": "38702863903447233546", + "reserves": [ + "1705364499647566888774088", + "2132930453999736924073425" + ], + "LPTokenSupply": "3805449883613759061551051" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "3685018170288608768", - "expectedQty": "3731456609710038580", - "swapFee": "2211010902173165", + "inputIndex": 0, + "inputQty": "17955404933955598680064", + "expectedQty": "18083935269719690008837", + "swapFee": "10773242960373359208", "reserves": [ - "2808899400949034652697929", - "4514204426514160837685822" + "1687280564377847198765251", + "2132930453999736924073425" ], - "LPTokenSupply": "7237194162360542244436568" + "LPTokenSupply": "3787495556004099500206907" }, { "type": "redeemBassets", "inputQtys": [ - "16837473228259300737024", - "16153537920808037384192" + "33042994181896626176", + "35261030760826863616" ], - "expectedQty": "32618273267155385240500", - "swapFee": "19582713588446298923", + "expectedQty": "67723609963313579562", + "swapFee": "40658561114656941", "reserves": [ - "2792061927720775351960905", - "4498050888593352800301630" + "1687247521383665302139075", + "2132895192968976097209809" ], - "LPTokenSupply": "7204558264651157257527036" + "LPTokenSupply": "3787427795801431183436097" }, { - "type": "redeemMasset", - "inputQty": "44263491442691093299", - "expectedQtys": [ - "17143626696114378375", - "27618622828011214853" - ], - "redemptionFee": "26558094865614655", + "type": "mint", + "inputIndex": 1, + "inputQty": "6955235250917849088", + "expectedQty": "6890836041537819497", "reserves": [ - "2792044784094079237582530", - "4498023269970524789086777" - ], - "LPTokenSupply": "7204514003815524052995202" + "1687247521383665302139075", + "2132902148204227015058897" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10885779615305472933888", - "expectedQty": "11023032439565315558783", - "swapFee": "6531467769183283760", + "type": "redeemBassets", + "inputQtys": [ + "1616758296271282241536", + "4137325536722088886272" + ], + "expectedQty": "5703354574009422258036", + "swapFee": "3424067184716483244", "reserves": [ - "2792044784094079237582530", - "4487000237530959473527994" + "1685630763087394019897539", + "2128764822667504926172625" ], - "LPTokenSupply": "7193628877346995498389690" + "LPTokenSupply": "3781728250402997054162637" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "53385773286076893364224", - "outputIndex": 1, - "expectedQty": "53520082079479428525620", - "swapFee": "42295004808496518970", + "inputQty": "1544140566700729303040", + "expectedQty": "1555169742562563366023", + "swapFee": "926484340020437581", "reserves": [ - "2845430557380156130946754", - "4433480155451480045002374" + "1684075593344831456531516", + "2128764822667504926172625" ], - "LPTokenSupply": "7193633106847476348041587", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "3780184202484730326903355" }, { - "type": "redeemMasset", - "inputQty": "18783290589073575719731", - "expectedQtys": [ - "7425244002234517969476", - "11569311311396630912082" + "type": "mintMulti", + "inputQtys": [ + "29503001653151377915904", + "93019916493457285185536" ], - "redemptionFee": "11269974353444145431", + "expectedQty": "121432591833190190158710", "reserves": [ - "2838005313377921612977278", - "4421910844140083414090292" + "1713578594997982834447420", + "2221784739160962211358161" ], - "LPTokenSupply": "7174850943255838116736399" + "LPTokenSupply": "3901616794317920517062065" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5182143146129573888", - "expectedQty": "5115048589739417828", + "type": "mintMulti", + "inputQtys": [ + "9783529982394675200", + "118068333986971484160" + ], + "expectedQty": "126675038111119011054", "reserves": [ - "2838005313377921612977278", - "4421916026283229543664180" - ] + "1713588378527965229122620", + "2221902807494949182842321" + ], + "LPTokenSupply": "3901743469356031636073119" }, { - "type": "redeemMasset", - "inputQty": "1609968353791683487334", - "expectedQtys": [ - "636438870142960418760", - "991639876912374806321" - ], - "redemptionFee": "965981012275010092", + "type": "swap", + "inputIndex": 1, + "inputQty": "7348744065568739426304", + "outputIndex": 0, + "expectedQty": "7335556774951744406711", + "swapFee": "0", "reserves": [ - "2837368874507778652558518", - "4420924386406317168857859" + "1706252821753013484715909", + "2229251551560517922268625" ], - "LPTokenSupply": "7173246186548737400167902" + "LPTokenSupply": "3901743469356031636073119", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "785582497500273573888", - "expectedQty": "795409386778585999645", - "swapFee": "471349498500164144", + "inputIndex": 0, + "inputQty": "20327305652888473600", + "expectedQty": "20469745033991513669", + "swapFee": "12196383391733084", "reserves": [ - "2837368874507778652558518", - "4420128977019538582858214" + "1706232352007979493202240", + "2229251551560517922268625" ], - "LPTokenSupply": "7172460651186186976610428" + "LPTokenSupply": "3901723143270017086772827" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1155717086153903177728", - "expectedQty": "1144388172910856429350", + "type": "redeemMasset", + "inputQty": "72622544245932058214", + "expectedQtys": [ + "31738947990314552877", + "41468032750076705425" + ], + "redemptionFee": "43573526547559234", "reserves": [ - "2838524591593932555736246", - "4420128977019538582858214" - ] + "1706200613059989178649363", + "2229210083527767845563200" + ], + "LPTokenSupply": "3901650525083123809470536" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "701540221595111260160", - "283738560541627023360" + "2618552264154301440", + "3102352306015124480" ], - "expectedQty": "974728306576523089527", - "swapFee": "585188096803996251", + "expectedQty": "5672077399351470098", "reserves": [ - "2837823051372337444476086", - "4419845238458996955834854" + "1706203231612253332950803", + "2229213185880073860687680" ], - "LPTokenSupply": "7172629784383234186353624" + "LPTokenSupply": "3901656197160523160940634" }, { - "type": "redeemMasset", - "inputQty": "1913577982012573089792", - "expectedQtys": [ - "756645419277797110687", - "1178458132539144990336" + "type": "mintMulti", + "inputQtys": [ + "3776541703990539264", + "6716271709541726208" ], - "redemptionFee": "1148146789207543853", + "expectedQty": "10401403128459241352", "reserves": [ - "2837066405953059647365399", - "4418666780326457810844518" + "1706207008153957323490067", + "2229219902151783402413888" ], - "LPTokenSupply": "7170716321215900534018217" + "LPTokenSupply": "3901666598563651620181986" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "21105377992863813632", - "60214843451626168320" + "15003000635692384256", + "10466373307212918784" ], - "expectedQty": "80333766341142199187", + "expectedQty": "25258044921567566329", + "swapFee": "15163925308125415", "reserves": [ - "2837087511331052511179031", - "4418726995169909437012838" + "1706192005153321631105811", + "2229209435778476189495104" ], - "LPTokenSupply": "7170796654982241676217404" + "LPTokenSupply": "3901641326871197275302782" }, { "type": "mintMulti", "inputQtys": [ - "80613235887186624512", - "21698581649366736896" + "403627682719545927139328", + "60540145059463161708544" ], - "expectedQty": "101240661452221309147", + "expectedQty": "460421407481421884846401", "reserves": [ - "2837168124566939697803543", - "4418748693751558803749734" + "2109819687872867558245139", + "2289749580837939351203648" ], - "LPTokenSupply": "7170897895643693897526551" + "LPTokenSupply": "4362062734352619160149183" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "295726022563380775092224", - "expectedQty": "298387741026422229215778", - "swapFee": "177435613538028465055", + "inputQty": "14965121947605066055680", + "expectedQty": "15080287336417668222868", + "swapFee": "8979073168563039633", + "reserves": [ + "2094739400536449890022271", + "2289749580837939351203648" + ], + "LPTokenSupply": "4347098510312330950397466" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "12160586030332518596608", + "outputIndex": 1, + "expectedQty": "12157594446249362785320", + "swapFee": "9648387157828006560", "reserves": [ - "2538780383540517468587765", - "4418748693751558803749734" + "2106899986566782408618879", + "2277591986391689988418328" ], - "LPTokenSupply": "6875189616641666925280832" + "LPTokenSupply": "4347099475151046733198122", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "83027113440482718384128", - "expectedQty": "84096019133659392807302", - "swapFee": "49816268064289631030", + "inputQty": "3771752534801642946560", + "expectedQty": "3802848489224976069573", + "swapFee": "2263051520880985767", "reserves": [ - "2538780383540517468587765", - "4334652674617899410942432" + "2106899986566782408618879", + "2273789137902465012348755" ], - "LPTokenSupply": "6792167484827990635859807" + "LPTokenSupply": "4343327948921397178350138" }, { - "type": "redeemMasset", - "inputQty": "12602220885161928", - "expectedQtys": [ - "4707639303803194", - "8037710324084516" + "type": "mintMulti", + "inputQtys": [ + "16016502535613124182016", + "27220237779168982466560" ], - "redemptionFee": "7561332531097", + "expectedQty": "42865525335857970377483", "reserves": [ - "2538780378832878164784571", - "4334652666580189086857916" + "2122916489102395532800895", + "2301009375681633994815315" ], - "LPTokenSupply": "6792167472226525883950988" + "LPTokenSupply": "4386193474257255148727621" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7133136231053560643584", - "expectedQty": "7066450279711459124366", + "inputIndex": 1, + "inputQty": "21566953250978227290112", + "expectedQty": "21377196519219836288479", "reserves": [ - "2545913515063931725428155", - "4334652666580189086857916" + "2122916489102395532800895", + "2322576328932612222105427" ] }, { - "type": "redeemMasset", - "inputQty": "35534233160790508", - "expectedQtys": [ - "13297498693425141", - "22640218463530345" - ], - "redemptionFee": "21320539896474", + "type": "mint", + "inputIndex": 0, + "inputQty": "268373333257159213842432", + "expectedQty": "266111973161009178941779", "reserves": [ - "2545913501766433032003014", - "4334652643939970623327571" - ], - "LPTokenSupply": "6799233886974136236274493" + "2391289822359554746643327", + "2322576328932612222105427" + ] }, { - "type": "redeemMasset", - "inputQty": "5154200499170507646566", - "expectedQtys": [ - "1928787209039626355282", - "3283938189361247463852" - ], - "redemptionFee": "3092520299502304587", + "type": "mint", + "inputIndex": 1, + "inputQty": "191410300289607494795264", + "expectedQty": "189771957468589168252976", "reserves": [ - "2543984714557393405647732", - "4331368705750609375863719" - ], - "LPTokenSupply": "6794079995726995678858385" + "2391289822359554746643327", + "2513986629222219716900691" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "307685819814274596864", - "158823257532010070016" - ], - "expectedQty": "461522785075306629638", - "swapFee": "277079918996581926", + "type": "redeem", + "inputIndex": 1, + "inputQty": "38842729310015815942144", + "expectedQty": "39158577302255731901788", + "swapFee": "23305637586009489565", "reserves": [ - "2543677028737579131050868", - "4331209882493077365793703" + "2391289822359554746643327", + "2474828051919963984998903" ], - "LPTokenSupply": "6793618223569993275305012" + "LPTokenSupply": "4824614202659816117217667" }, { "type": "swap", "inputIndex": 1, - "inputQty": "59952053965364360", + "inputQty": "6010376269796279844864", "outputIndex": 0, - "expectedQty": "59715324802674279", + "expectedQty": "6008910494460843553186", "swapFee": "0", "reserves": [ - "2543676969022254328376589", - "4331209942445131331158063" + "2385280911865093903090141", + "2480838428189760264843767" ], - "LPTokenSupply": "6793618223569993275305012", + "LPTokenSupply": "4824614202659816117217667", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemBassets", + "inputQtys": [ + "845573127565646592", + "1338242636544334592" + ], + "expectedQty": "2165131060064971389", + "swapFee": "1299858551169684", + "reserves": [ + "2385280066291966337443549", + "2480837089947123720509175" + ], + "LPTokenSupply": "4824612036358883356193561" + }, { "type": "mint", - "inputIndex": 1, - "inputQty": "60863962264213938765824", - "expectedQty": "60054968695475127612997", + "inputIndex": 0, + "inputQty": "98919331612459", + "expectedQty": "98088622810703", "reserves": [ - "2543676969022254328376589", - "4392073904709345269923887" + "2385280066390885669056008", + "2480837089947123720509175" ] }, { - "type": "redeemMasset", - "inputQty": "1018997555804662608691", - "expectedQtys": [ - "377964536847942228380", - "652617529431614423276" - ], - "redemptionFee": "611398533482797565", + "type": "mint", + "inputIndex": 1, + "inputQty": "28208349603119350415360", + "expectedQty": "27963666083431385317367", "reserves": [ - "2543299004485406386148209", - "4391421287179913655500611" - ], - "LPTokenSupply": "6852654255849517088589074" + "2385280066390885669056008", + "2509045439550243070924535" + ] }, { "type": "mintMulti", "inputQtys": [ - "154925410405835872", - "158976026893073216" + "135662193260652797100032", + "194421542441129095462912" ], - "expectedQty": "310347454672064579", + "expectedQty": "327258054172837389711756", "reserves": [ - "2543299159410816791984081", - "4391421446155940548573827" + "2520942259651538466156040", + "2703466981991372166387447" ], - "LPTokenSupply": "6852654566196971760653653" + "LPTokenSupply": "5179833756713240754033387" }, { "type": "swap", "inputIndex": 0, - "inputQty": "5987389796066579709952", + "inputQty": "33470372303072149897216", "outputIndex": 1, - "expectedQty": "6006984606416236208769", - "swapFee": "4745445333023199500", + "expectedQty": "33456257739013260806661", + "swapFee": "26553607457974093872", "reserves": [ - "2549286549206883371694033", - "4385414461549524312365058" + "2554412631954610616053256", + "2670010724252358905580786" ], - "LPTokenSupply": "6852655040741505062973603", + "LPTokenSupply": "5179836412073986551442774", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mintMulti", - "inputQtys": [ - "153440633525878720", - "52774144003937784" - ], - "expectedQty": "204085901779055213", - "reserves": [ - "2549286702647516897572753", - "4385414514323668316302842" - ], - "LPTokenSupply": "6852655244827406842028816" - }, { "type": "mint", - "inputIndex": 1, - "inputQty": "13348964758731003789312", - "expectedQty": "13171310054887738914779", + "inputIndex": 0, + "inputQty": "35468293485161521086464", + "expectedQty": "35170045235027464348911", "reserves": [ - "2549286702647516897572753", - "4398763479082399320092154" + "2589880925439772137139720", + "2670010724252358905580786" ] }, { - "type": "redeemMasset", - "inputQty": "22401111035015692969574", - "expectedQtys": [ - "8312559298897528879930", - "14343220879677175811681" + "type": "redeemBassets", + "inputQtys": [ + "3095136366498606080", + "4083024286668130816" ], - "redemptionFee": "13440666621009415781", + "expectedQty": "7116818028599284994", + "swapFee": "4272654409805454", "reserves": [ - "2540974143348619368692823", - "4384420258202722144280473" + "2589877830303405638533640", + "2670006641228072237449970" ], - "LPTokenSupply": "6843426787913940988915599" + "LPTokenSupply": "5214999336645596447681781" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "499386626078919168", - "1424589720783731968" + "256754566870511058944", + "216142448601077448704" ], - "expectedQty": "1900371695816810592", - "swapFee": "1140907562027302", + "expectedQty": "468866340466779814823", "reserves": [ - "2540973643961993289773655", - "4384418833613001360548505" + "2590134584870276149592584", + "2670222783676673314898674" ], - "LPTokenSupply": "6843424886515428366280434" + "LPTokenSupply": "5215468202986063227496604" }, { "type": "redeemMasset", - "inputQty": "11099997235040377", + "inputQty": "4178674399499077550080", "expectedQtys": [ - "4118972299612405", - "7107236144878725" + "2073991185951990299663", + "2138119984275247106597" ], - "redemptionFee": "6659998341024", + "redemptionFee": "2507204639699446530", "reserves": [ - "2540973639843020990161250", - "4384418826505765215669780" + "2588060593684324159292921", + "2668084663692398067792077" ], - "LPTokenSupply": "6843424875416097131074159" + "LPTokenSupply": "5211289779307028119891177" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1157362443593490688", - "outputIndex": 0, - "expectedQty": "1152651660150142402", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "7756426354489467653324", + "expectedQtys": [ + "3849729680105983854099", + "3968765161031256908219" + ], + "redemptionFee": "4653855812693680591", "reserves": [ - "2540972487191360840018848", - "4384419983868208809160468" + "2584210864004218175438822", + "2664115898531366810883858" ], - "LPTokenSupply": "6843424875416097131074159", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5203533818338119921605912" }, { "type": "mintMulti", "inputQtys": [ - "1234777568558699511808", - "1094382929796984340480" - ], - "expectedQty": "2303125723485951867821", - "reserves": [ - "2542207264759919539530656", - "4385514366798005793500948" - ], - "LPTokenSupply": "6845728001139583082941980" - }, - { - "type": "redeemMasset", - "inputQty": "21132896338613492934246", - "expectedQtys": [ - "7843134881629120750390", - "13530045791670485700297" + "1042206265624723062784", + "11547083062818434449408" ], - "redemptionFee": "12679737803168095760", + "expectedQty": "12480745478281998668032", "reserves": [ - "2534364129878290418780266", - "4371984321006335307800651" + "2585253070269842898501606", + "2675662981594185245333266" ], - "LPTokenSupply": "6824596372774749906817310" + "LPTokenSupply": "5216014563816401920273944" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "621630374182332137472", - "expectedQty": "613352465393873185772", + "inputIndex": 0, + "inputQty": "49559819580368788389888", + "expectedQty": "49140949287565785315549", "reserves": [ - "2534364129878290418780266", - "4372605951380517639938123" + "2634812889850211686891494", + "2675662981594185245333266" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1303759588322362523648", - "987698848642272198656" + "29048449704773349376", + "42266257061180063744" ], - "expectedQty": "2266200683657427257559", - "swapFee": "1360536732233796632", + "expectedQty": "70705456816815446160", "reserves": [ - "2533060370289968056256618", - "4371618252531875367739467" + "2634841938299916460240870", + "2675705247851246425397010" ], - "LPTokenSupply": "6822942300073427342328553" + "LPTokenSupply": "5265226218560784521035653" }, { - "type": "redeemMasset", - "inputQty": "36063119307781898240", - "expectedQtys": [ - "13380627344831900300", - "23092617695605153638" + "type": "mintMulti", + "inputQtys": [ + "4005753416004651188224", + "422151460811232837632" ], - "redemptionFee": "21637871584669138", + "expectedQty": "4390291217697460809774", "reserves": [ - "2533046989662623224356318", - "4371595159914179762585829" + "2638847691715921111429094", + "2676127399312057658234642" ], - "LPTokenSupply": "6822906239117906718897226" + "LPTokenSupply": "5269616509778481981845427" }, { "type": "mint", "inputIndex": 0, - "inputQty": "12658496328198613106688", - "expectedQty": "12540797424479307599387", + "inputQty": "5241108460494936604672", + "expectedQty": "5196606164748564749981", "reserves": [ - "2545705485990821837463006", - "4371595159914179762585829" + "2644088800176416048033766", + "2676127399312057658234642" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "72534471473922960261120", - "expectedQty": "71567670037754960615606", - "reserves": [ - "2545705485990821837463006", - "4444129631388102722846949" - ] - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "232089950009688382767104", - "191704519800466865913856" + "1009643516442848", + "1544395460361271" ], - "expectedQty": "419113866711633664100124", - "swapFee": "251619291601941363278", + "expectedQty": "2532222098248411", "reserves": [ - "2313615535981133454695902", - "4252425111587635856933093" + "2644088801186059564476614", + "2676127400856453118595913" ], - "LPTokenSupply": "6487674382506065575785143" + "LPTokenSupply": "5274813118475452644843819" }, { "type": "mintMulti", "inputQtys": [ - "324342552387155525632", - "99206609281201963008" + "3213286159866480033792", + "2102726019708862857216" ], - "expectedQty": "419305271038705620826", + "expectedQty": "5270689349962002180919", "reserves": [ - "2313939878533520610221534", - "4252524318196917058896101" + "2647302087345926044510406", + "2678230126876161981453129" ], - "LPTokenSupply": "6488093687777104281405969" + "LPTokenSupply": "5280083807825414647024738" }, { - "type": "redeemBassets", - "inputQtys": [ - "4091201329224776941568", - "10513818148642062598144" - ], - "expectedQty": "14425823820230602981463", - "swapFee": "8660690706562299168", + "type": "swap", + "inputIndex": 1, + "inputQty": "19171223014877788", + "outputIndex": 0, + "expectedQty": "19169748310865206", + "swapFee": "0", "reserves": [ - "2309848677204295833279966", - "4242010500048274996297957" + "2647302068176177733645200", + "2678230146047384996330917" ], - "LPTokenSupply": "6473660069335237772355253" + "LPTokenSupply": "5280083807825414647024738", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "154516490147191016390656", - "14079020293882231390208" + "type": "redeemMasset", + "inputQty": "10096825130292238745", + "expectedQtys": [ + "5059258415977298015", + "5118365058978452239" ], - "expectedQty": "166994808808755802862152", + "redemptionFee": "6058095078175343", "reserves": [ - "2464365167351486849670622", - "4256089520342157227688165" + "2647297008917761756347185", + "2678225027682326017878678" ], - "LPTokenSupply": "6640654878143993575217405" + "LPTokenSupply": "5280073711606093862603527" }, { "type": "redeemBassets", "inputQtys": [ - "3444186802029544865792", - "1200031201091987439616" + "149408216568230912", + "124368263544219792" ], - "expectedQty": "4596116166514496127262", - "swapFee": "2759325295085749125", + "expectedQty": "271441070707083215", + "swapFee": "162962419876175", "reserves": [ - "2460920980549457304804830", - "4254889489141065240248549" + "2647296859509545188116273", + "2678224903314062473658886" ], - "LPTokenSupply": "6636056278584713501915929" + "LPTokenSupply": "5280073440018356977631753" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "1119265084637548642304", - "expectedQty": "1133739767617907777621", - "swapFee": "671559050782529185", + "inputQty": "53843948401575860371456", + "outputIndex": 0, + "expectedQty": "53832590157984079566776", + "swapFee": "0", "reserves": [ - "2460920980549457304804830", - "4253755749373447332470928" + "2593464269351561108549497", + "2732068851715638334030342" ], - "LPTokenSupply": "6634937080655981031526543" + "LPTokenSupply": "5280073440018356977631753", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "42936824399236171825152", - "17152751188578217754624" + "440894754933679", + "460819402554601" ], - "expectedQty": "59459386461581668470270", + "expectedQty": "894017574322860", + "swapFee": "536732584144", "reserves": [ - "2503857804948693476629982", - "4270908500562025550225552" + "2593464268910666353615818", + "2732068851254818931475741" ], - "LPTokenSupply": "6694396467117562699996813" + "LPTokenSupply": "5280073439123856343983162" }, { - "type": "redeemBassets", - "inputQtys": [ - "31971314051812964696064", - "126881750973185123155968" - ], - "expectedQty": "156865641469822915754868", - "swapFee": "94175890416143435514", + "type": "mint", + "inputIndex": 1, + "inputQty": "400987949641727868928", + "expectedQty": "397498120957930010597", "reserves": [ - "2471886490896880511933918", - "4144026749588840427069584" - ], - "LPTokenSupply": "6537446067346365255149981" + "2593464268910666353615818", + "2732469839204460659344669" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "20730901968093144154112", - "expectedQty": "20996911108407153596670", - "swapFee": "12438541180855886492", + "inputQty": "843688345130817552384", + "expectedQty": "850584610264513901536", + "swapFee": "506213007078490531", "reserves": [ - "2471886490896880511933918", - "4123029838480433273472914" + "2593464268910666353615818", + "2731619254594196145443133" ], - "LPTokenSupply": "6516716409232390196584518" + "LPTokenSupply": "5279627299520984164290428" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "664072342311931740160", - "expectedQty": "655270125963049031108", + "inputQty": "475213260403680608256", + "expectedQty": "479097293098304066919", + "swapFee": "285127956242208364", "reserves": [ - "2471886490896880511933918", - "4123693910822745205213074" - ] + "2593464268910666353615818", + "2731140157301097841376214" + ], + "LPTokenSupply": "5279152114773376107903008" }, { - "type": "redeemMasset", - "inputQty": "184770758186243763", - "expectedQtys": [ - "70037175126038732", - "116838646783364979" - ], - "redemptionFee": "110862454911746", + "type": "swap", + "inputIndex": 0, + "inputQty": "57230197412818101207040", + "outputIndex": 1, + "expectedQty": "57195866168954496644572", + "swapFee": "45399628977916372029", "reserves": [ - "2471886420859705385895186", - "4123693793984098421848095" + "2650694466323484454822858", + "2673944291132143344731642" ], - "LPTokenSupply": "6517371494598681304863037" + "LPTokenSupply": "5279156654736273899540210", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "4136963356845472428851", - "expectedQtys": [ - "1568111913172841367561", - "2615983206208318621222" + "type": "redeemBassets", + "inputQtys": [ + "29698346026663168442368", + "42160598396033239613440" ], - "redemptionFee": "2482178014107283457", + "expectedQty": "71244882234311950362917", + "swapFee": "42772592896324965196", "reserves": [ - "2470318308946532544527625", - "4121077810777890103226873" + "2620996120296821286380490", + "2631783692736110105118202" ], - "LPTokenSupply": "6513234779459637243162531" + "LPTokenSupply": "5207873277168355256708615" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "27767279634947488", - "expectedQty": "28123409423895988", - "swapFee": "16660367780968", + "type": "mintMulti", + "inputQtys": [ + "4380690192683911610368", + "72874620323374695448576" + ], + "expectedQty": "76591048662406430219583", "reserves": [ - "2470318308946532544527625", - "4121077782654480679330885" + "2625376810489505197990858", + "2704658313059484800566778" ], - "LPTokenSupply": "6513234751694023644993139" + "LPTokenSupply": "5284464325830761686928198" }, { "type": "mintMulti", "inputQtys": [ - "38597055297162723328", - "35405436278456770560" + "30123503863786314399744", + "8495301869571182428160" ], - "expectedQty": "73165465787050004191", + "expectedQty": "38290489794171366391666", "reserves": [ - "2470356906001829707250953", - "4121113188090759136101445" + "2655500314353291512390602", + "2713153614929055982994938" ], - "LPTokenSupply": "6513307917159810694997330" + "LPTokenSupply": "5322754815624933053319864" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "21348335110183203110912", - "outputIndex": 0, - "expectedQty": "21266652717386341822154", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5483727231573828829184", + "expectedQty": "5527279144387493739083", + "swapFee": "3290236338944297297", "reserves": [ - "2449090253284443365428799", - "4142461523200942339212357" + "2649973035208904018651519", + "2713153614929055982994938" ], - "LPTokenSupply": "6513307917159810694997330", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5317271417416993118920409" }, { - "type": "redeemBassets", - "inputQtys": [ - "12354126636514973696", - "2667657310294709248" - ], - "expectedQty": "14869556111280813646", - "swapFee": "8927089920720920", + "type": "mint", + "inputIndex": 1, + "inputQty": "19341969979451256832", + "expectedQty": "19175115227843977314", "reserves": [ - "2449077899157806850455103", - "4142458855543632044503109" - ], - "LPTokenSupply": "6513293039569318485534855" + "2649973035208904018651519", + "2713172956899035434251770" + ] }, { "type": "mintMulti", "inputQtys": [ - "1114420305567478579200", - "379087296367234252800" + "9658372670886", + "2205595235027" ], - "expectedQty": "1477933243163292471534", + "expectedQty": "11763117496423", "reserves": [ - "2450192319463374329034303", - "4142837942839999278755909" + "2649973035218562391322405", + "2713172956901241029486797" ], - "LPTokenSupply": "6514770972812481778006389" + "LPTokenSupply": "5317290592543984080394146" }, { "type": "swap", "inputIndex": 0, - "inputQty": "158744406373574406832128", + "inputQty": "325265125791851675648", "outputIndex": 1, - "expectedQty": "159164808627854398063141", - "swapFee": "125773175766395901138", + "expectedQty": "325055397414803655980", + "swapFee": "258007586107661931", "reserves": [ - "2608936725836948735866431", - "3983673134212144880692768" + "2650298300344354242998053", + "2712847901503826225830817" ], - "LPTokenSupply": "6514783550130058417596502", + "LPTokenSupply": "5317290618344742691160339", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "229883243943935003852", - "expectedQtys": [ - "92004743160689114813", - "140485133242067015708" - ], - "redemptionFee": "137929946366361002", - "reserves": [ - "2608844721093788046751618", - "3983532649078902813677060" - ], - "LPTokenSupply": "6514553680679109119228750" - }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "911383386776017174528", - "expectedQty": "920039207432476271416", - "swapFee": "546830032065610304", + "inputIndex": 1, + "inputQty": "10889320591016", + "expectedQty": "10977476868707", + "swapFee": "6533592354", "reserves": [ - "2607924681886355570480202", - "3983532649078902813677060" + "2650298300344354242998053", + "2712847901492848748962110" ], - "LPTokenSupply": "6513642351975336308615252" + "LPTokenSupply": "5317290618333854023928558" }, { "type": "mintMulti", "inputQtys": [ - "10705442385958627442688", - "15002601172969097003008" + "3131065825315818", + "5564497200742621" ], - "expectedQty": "25406142149294929155605", + "expectedQty": "8621036226707738", "reserves": [ - "2618630124272314197922890", - "3998535250251871910680068" + "2650298303475420068313871", + "2712847907057345949704731" ], - "LPTokenSupply": "6539048494124631237770857" + "LPTokenSupply": "5317290626954890250636296" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "754837302247010432", - "370178649355822976" - ], - "expectedQty": "1112658220849040294", - "reserves": [ - "2618630879109616444933322", - "3998535620430521266503044" - ], - "LPTokenSupply": "6539049606782852086811151" - }, - { - "type": "redeemMasset", - "inputQty": "19923514453938614", - "expectedQtys": [ - "7973792814980892", - "12175635311944019" + "1578772500207455961088", + "65457562008515747840" ], - "redemptionFee": "11954108672363", + "expectedQty": "1630290510347826569681", + "swapFee": "978761563146583892", "reserves": [ - "2618630871135823629952430", - "3998535608254885954559025" + "2648719530975212612352783", + "2712782449495337433956891" ], - "LPTokenSupply": "6539049586860533043739773" + "LPTokenSupply": "5315659455559135592141111" }, { - "type": "redeemMasset", - "inputQty": "291342814930940094054", - "expectedQtys": [ - "116601277840176082597", - "178045087053349222217" - ], - "redemptionFee": "174805688958564056", + "type": "mint", + "inputIndex": 1, + "inputQty": "205533849080184340480", + "expectedQty": "203760508112760399897", "reserves": [ - "2618514269857983453869833", - "3998357563167832605336808" - ], - "LPTokenSupply": "6538758261526170999502124" + "2648719530975212612352783", + "2712987983344417618297371" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "193321299879005880320", - "outputIndex": 0, - "expectedQty": "192738912025720426935", - "swapFee": "0", + "inputQty": "37043409447968049201152", + "expectedQty": "36722979723227735131596", "reserves": [ - "2618321530945957733442898", - "3998550884467711611217128" - ], - "LPTokenSupply": "6538758261526170999502124", - "hardLimitError": false, - "insufficientLiquidityError": false + "2648719530975212612352783", + "2750031392792385667498523" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2495524668554944", - "169001867934708" + "8482743597710313521152", + "29204816578936907497472" ], - "expectedQty": "2637369840427791", - "swapFee": "1583371927413", + "expectedQty": "37363071709975357897828", + "swapFee": "22431301807069456412", "reserves": [ - "2618321528450433064887954", - "3998550884298709743282420" + "2640236787377502298831631", + "2720826576213448760001051" ], - "LPTokenSupply": "6538758258887376124339660" + "LPTokenSupply": "5315202935908874367264004" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "248567325879312941056", - "outputIndex": 0, - "expectedQty": "247818225164785013344", - "swapFee": "0", + "inputQty": "779218695694019958145024", + "expectedQty": "772154433466925567950278", + "reserves": [ + "2640236787377502298831631", + "3500045271907468718146075" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "1679566013931756453888", + "outputIndex": 1, + "expectedQty": "1681455859613869749252", + "swapFee": "1333534608883584083", "reserves": [ - "2618073710225268279874610", - "3998799451624589056223476" + "2641916353391434055285519", + "3498363816047854848396823" ], - "LPTokenSupply": "6538758258887376124339660", + "LPTokenSupply": "6087357502729260823572690", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "25896256972521218048", - "75260327341753647104" + "43682236670439325696", + "11118072621816766464" ], - "expectedQty": "99920229602731494563", - "swapFee": "59988130640022910", + "expectedQty": "54366278240479177949", + "swapFee": "32639350554620278", "reserves": [ - "2618047813968295758656562", - "3998724191297247302576372" + "2641872671154763615959823", + "3498352697975233031630359" ], - "LPTokenSupply": "6538658284668455816824477" + "LPTokenSupply": "6087303107075604845236489" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "7338356303718866944", - "outputIndex": 0, - "expectedQty": "7316236605524523620", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "598430178762521", + "expectedQtys": [ + "259561208185852", + "343709468991852" + ], + "redemptionFee": "359058107257", "reserves": [ - "2618040497731690234132942", - "3998731529653551021443316" + "2641872670895202407773971", + "3498352697631523562638507" ], - "LPTokenSupply": "6538658284668455816824477", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6087303106477210572284693" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "544695111004741107712", - "expectedQty": "549867794956615317561", - "swapFee": "326817066602844664", + "inputQty": "29857386069201734598656", + "expectedQty": "30065267826421357443628", + "swapFee": "17914431641521040759", "reserves": [ - "2617490629936733618815381", - "3998731529653551021443316" + "2611807403068781050330343", + "3498352697631523562638507" ], - "LPTokenSupply": "6538113622239157736001231" + "LPTokenSupply": "6057447511851172989790112" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "13203611650514827083776", - "23621261271933969760256" + "60775465549808472", + "192973125241636384" ], - "expectedQty": "36386052644660819115570", + "expectedQty": "251464703315422247", + "swapFee": "150969403631432", "reserves": [ - "2630694241587248445899157", - "4022352790925484991203572" + "2611807342293315500521871", + "3498352504658398321002123" ], - "LPTokenSupply": "6574499674883818555116801" + "LPTokenSupply": "6057447260250597211099575" }, { - "type": "redeemBassets", - "inputQtys": [ - "1096367929418685", - "2175102518017993" - ], - "expectedQty": "3232256533882106", - "swapFee": "1940518231268", + "type": "mint", + "inputIndex": 1, + "inputQty": "4594039691042372976640", + "expectedQty": "4550494247970447540624", "reserves": [ - "2630694240490880516480472", - "4022352788750382473185579" - ], - "LPTokenSupply": "6574499671649815554826552" + "2611807342293315500521871", + "3502946544349440693978763" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "104676276971890624", - "expectedQty": "105990241572811928", - "swapFee": "62805766183134", + "type": "mint", + "inputIndex": 0, + "inputQty": "1520879349361702076416", + "expectedQty": "1509495882639165365241", "reserves": [ - "2630694240490880516480472", - "4022352682760140900373651" - ], - "LPTokenSupply": "6574499566979819159554241" + "2613328221642677202598287", + "3502946544349440693978763" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "9759156363731214008320", - "12329916669099350425600" + "type": "redeemMasset", + "inputQty": "2135832584757059570892", + "expectedQtys": [ + "919976238365457237132", + "1233150722659784079280" ], - "expectedQty": "21831349045755611576101", + "redemptionFee": "1281499550854235742", "reserves": [ - "2640453396854611730488792", - "4034682599429240250799251" + "2612408245404311745361155", + "3501713393626780909899483" ], - "LPTokenSupply": "6596330916025574771130342" + "LPTokenSupply": "6061371545946404849858122" }, { "type": "redeemBassets", "inputQtys": [ - "241164069683881196912640", - "189501027782079859916800" + "24370861743888248832", + "41302953218332934144" ], - "expectedQty": "425806131993141451884476", - "swapFee": "255637061432744517841", + "expectedQty": "65099855103696271164", + "swapFee": "39083363080065802", "reserves": [ - "2399289327170730533576152", - "3845181571647160390882451" + "2612383874542567857112323", + "3501672090673562576965339" ], - "LPTokenSupply": "6170294710677143849179808" + "LPTokenSupply": "6061306410916274381527735" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "47160183717081653444608", - "40787730740184287805440" - ], - "expectedQty": "86947910985459327447143", - "reserves": [ - "2446449510887812187020760", - "3885969302387344678687891" + "108612793178906034176", + "11373903017111969792" ], - "LPTokenSupply": "6257242621662603176626951" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "31335034392297672278016", - "outputIndex": 0, - "expectedQty": "31227612383242777238316", - "swapFee": "0", + "expectedQty": "119065791488776162512", + "swapFee": "71482364311852809", "reserves": [ - "2415221898504569409782444", - "3917304336779642350965907" + "2612275261749388951078147", + "3501660716770545464995547" ], - "LPTokenSupply": "6257242621662603176626951", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6061187280790657724697693" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "87904593933588915814400", - "84786136003165189832704" + "33721740288907622219776", + "1615868307513467731968" ], - "expectedQty": "170713143435156941939071", + "expectedQty": "35070700265462015605623", + "swapFee": "21055053191191924518", "reserves": [ - "2503126492438158325596844", - "4002090472782807540798611" + "2578553521460481328858371", + "3500044848463031997263579" ], - "LPTokenSupply": "6427955765097760118566022" + "LPTokenSupply": "6026097630977323636360002" }, { - "type": "redeemMasset", - "inputQty": "919558849039965460889", - "expectedQtys": [ - "357872881703482017496", - "572180293189165984301" + "type": "mintMulti", + "inputQtys": [ + "4911118679998201856000", + "68510453682117588025344" ], - "redemptionFee": "551735309423979276", + "expectedQty": "72731046834737688281730", "reserves": [ - "2502768619556454843579348", - "4001518292489618374814310" + "2583464640140479530714371", + "3568555302145149585288923" ], - "LPTokenSupply": "6427036261422251095503060" + "LPTokenSupply": "6098828677812061324641732" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8191829032382402396160", - "4872730706253222772736" + "235493192542832438542336", + "240521038587724767952896" ], - "expectedQty": "12920004582728281776347", + "expectedQty": "471980792676885699578461", + "swapFee": "283358490700551750797", "reserves": [ - "2510960448588837245975508", - "4006391023195871597587046" + "2347971447597647092172035", + "3328034263557424817336027" ], - "LPTokenSupply": "6439956266004979377279407" + "LPTokenSupply": "5626592862493545128487552" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2823483185634426748928", - "915450723188146962432" + "13700134189577269149696", + "1376440475544077467648" ], - "expectedQty": "3699152909372749854071", + "expectedQty": "14963449482004518596909", + "swapFee": "8983459765061748207", "reserves": [ - "2513783931774471672724436", - "4007306473919059744549478" + "2334271313408069823022339", + "3326657823081880739868379" ], - "LPTokenSupply": "6443655418914352127133478" + "LPTokenSupply": "5611621327897752054317255" }, { "type": "redeemBassets", "inputQtys": [ - "6508576692699914043392", - "5033417082176842760192" + "2814391175523338289152", + "5726045804439609016320" ], - "expectedQty": "11411820740219424859035", - "swapFee": "6851203166031273679", + "expectedQty": "8464317320998895074925", + "swapFee": "5081639376225072088", "reserves": [ - "2507275355081771758681044", - "4002273056836882901789286" + "2331456922232546484733187", + "3320931777277441130852059" ], - "LPTokenSupply": "6432237432091283274128130" + "LPTokenSupply": "5603152437101314556677449" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "232601392577728413696", - "expectedQty": "234766742878814080945", - "swapFee": "139560835546637048", + "type": "redeemMasset", + "inputQty": "18023006890840291", + "expectedQtys": [ + "7494825944502513", + "10675644661033640" + ], + "redemptionFee": "10813804134504", "reserves": [ - "2507040588338892944600099", - "4002273056836882901789286" + "2331456914737720540230674", + "3320931766601796469818419" ], - "LPTokenSupply": "6432004844654789100378138" + "LPTokenSupply": "5603152419079389046250608" }, { "type": "redeemBassets", "inputQtys": [ - "1082427284456155906048", - "186539065378139439104" + "163969306476518899712", + "66515457645368893440" ], - "expectedQty": "1255884368842991213655", - "swapFee": "753983011112462205", + "expectedQty": "228645572980387342219", + "swapFee": "137269705611599364", "reserves": [ - "2505958161054436788694051", - "4002086517771504762350182" + "2331292945431244021330962", + "3320865251144151100924979" ], - "LPTokenSupply": "6430748281701236107948497" + "LPTokenSupply": "5602923649963673608468960" }, { "type": "swap", "inputIndex": 1, - "inputQty": "4475240971285799895040", + "inputQty": "497303395906679341056", "outputIndex": 0, - "expectedQty": "4460036070221946232953", + "expectedQty": "496077570840367591414", "swapFee": "0", "reserves": [ - "2501498124984214842461098", - "4006561758742790562245222" + "2330796867860403653739548", + "3321362554540057780266035" ], - "LPTokenSupply": "6430748281701236107948497", + "LPTokenSupply": "5602923649963673608468960", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "66347580612738469068", - "expectedQtys": [ - "25793074184366024157", - "41311861734115399421" - ], - "redemptionFee": "39808548367643081", - "reserves": [ - "2501472331910030476436941", - "4006520446881056446845801" - ], - "LPTokenSupply": "6430681938101478206243737" - }, { "type": "mintMulti", "inputQtys": [ - "9627442150157670", - "2332594354148517" + "631976292000100253696", + "2697719610697315254272" ], - "expectedQty": "11834943824741551", + "expectedQty": "3298874997451320790233", "reserves": [ - "2501472341537472626594611", - "4006520449213650800994318" + "2331428844152403753993244", + "3324060274150755095520307" ], - "LPTokenSupply": "6430681949936422030985288" + "LPTokenSupply": "5606222524961124929259193" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "636881382550375628800", - "expectedQty": "630639078524568701626", + "inputIndex": 1, + "inputQty": "6924619268432039936", + "expectedQty": "6857295883628595850", "reserves": [ - "2502109222920023002223411", - "4006520449213650800994318" + "2331428844152403753993244", + "3324067198770023527560243" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "61605940238526321786880", - "expectedQty": "62389458062758076057820", - "swapFee": "36963564143115793072", + "type": "mint", + "inputIndex": 0, + "inputQty": "2894045214741299200000", + "expectedQty": "2872998073525980819810", "reserves": [ - "2502109222920023002223411", - "3944130991150892724936498" - ], - "LPTokenSupply": "6369710345132834589479341" + "2334322889367145053193244", + "3324067198770023527560243" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "11468379766449", - "expectedQty": "11317792615741", + "inputQty": "17566731233536296960", + "expectedQty": "17396010100045758128", "reserves": [ - "2502109222920023002223411", - "3944130991162361104702947" + "2334322889367145053193244", + "3324084765501257063857203" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2699376726658093940736", - "expectedQty": "2724691343749000465531", - "swapFee": "1619626035994856364", - "reserves": [ - "2499384531576274001757880", - "3944130991162361104702947" + "type": "redeemMasset", + "inputQty": "1116188215375", + "expectedQtys": [ + "464240465099", + "661080206425" ], - "LPTokenSupply": "6367011130380097887639982" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "817034706951951104", - "expectedQty": "827412035170854623", - "swapFee": "490220824171170", + "redemptionFee": "669712929", "reserves": [ - "2499384531576274001757880", - "3944130163750325933848324" + "2334322889366680812728145", + "3324084765500595983650778" ], - "LPTokenSupply": "6367010313394413018105995" + "LPTokenSupply": "5609119776339518463188898" }, { - "type": "redeemMasset", - "inputQty": "501032247400461867417", - "expectedQtys": [ - "196563351403935428255", - "310184940958716841189" + "type": "redeemBassets", + "inputQtys": [ + "800542574165944565760", + "275244647226676936704" ], - "redemptionFee": "300619348440277120", + "expectedQty": "1067288420908462153029", + "swapFee": "640757507049306875", "reserves": [ - "2499187968224870066329625", - "3943819978809367217007135" + "2333522346792514868162385", + "3323809520853369306714074" ], - "LPTokenSupply": "6366509311208947400266290" + "LPTokenSupply": "5608051911236853656659680" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "586380365335737600", - "expectedQty": "578678594705922449", + "type": "swap", + "inputIndex": 0, + "inputQty": "22257421724457289908224", + "outputIndex": 1, + "expectedQty": "22293143236772599083488", + "swapFee": "17676034853871038097", "reserves": [ - "2499187968224870066329625", - "3943820565189732552744735" - ] + "2355779768516972158070609", + "3301516377616596707630586" + ], + "LPTokenSupply": "5608053678840339043763489", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "734111987937184896", - "1593863394406528000" + "118379304452949147648", + "252327666570273554432" ], - "expectedQty": "2299785862837755237", + "expectedQty": "367396676918162109312", + "swapFee": "220570348359913213", "reserves": [ - "2499188702336858003514521", - "3943822159053126959272735" + "2355661389212519208922961", + "3301264049950026434076154" ], - "LPTokenSupply": "6366512189673404943943976" + "LPTokenSupply": "5607686083650107357732284" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "148380372487648870400", - "expectedQty": "146431472070914571336", + "type": "mintMulti", + "inputQtys": [ + "2767160745808971264", + "2180696366077675008" + ], + "expectedQty": "4906430844642122867", "reserves": [ - "2499188702336858003514521", - "3943970539425614608143135" - ] + "2355664156373265017894225", + "3301266230646392511751162" + ], + "LPTokenSupply": "5607690990080951999855151" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "84984980500747845632", - "outputIndex": 0, - "expectedQty": "84705830498537757016", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "529875570714442624", + "1525744004059909888" + ], + "expectedQty": "2036969634446936716", "reserves": [ - "2499103996506359465757505", - "3944055524406115355988767" + "2355664686248835732336849", + "3301267756390396571661050" ], - "LPTokenSupply": "6366658621145475858515312", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "5607693027050586446791867" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "572347101329023238144", - "expectedQty": "579616663382032589030", - "swapFee": "343408260797413942", + "type": "mintMulti", + "inputQtys": [ + "69028078640804256", + "71253111831613384" + ], + "expectedQty": "139084788393231427", "reserves": [ - "2499103996506359465757505", - "3943475907742733323399737" + "2355664755276914373141105", + "3301267827643508403274434" ], - "LPTokenSupply": "6366086308384972915018562" + "LPTokenSupply": "5607693166135374840023294" }, { "type": "redeemMasset", - "inputQty": "7132192343042669150208", + "inputQty": "3183828865778197515468", "expectedQtys": [ - "2798170661094304545822", - "4415389917027755553406" + "1336651846635372113574", + "1873206163216939221823" ], - "redemptionFee": "4279315405825601490", + "redemptionFee": "1910297319466918509", "reserves": [ - "2496305825845265161211683", - "3939060517825705567846331" + "2354328103430279001027531", + "3299394621480291464052611" ], - "LPTokenSupply": "6358954543973470828428503" + "LPTokenSupply": "5604509528299328589199676" }, { "type": "mintMulti", "inputQtys": [ - "121858514917771296768", - "79020256394330898432" + "7476613874926421540864", + "12019359872024609554432" ], - "expectedQty": "198636434946124271375", + "expectedQty": "19324778076457620378965", "reserves": [ - "2496427684360182932508451", - "3939139538082099898744763" + "2361804717305205422568395", + "3311413981352316073607043" ], - "LPTokenSupply": "6359153180408416952699878" + "LPTokenSupply": "5623834306375786209578641" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "91822692023814997409792", - "expectedQty": "90613175069185127634179", + "type": "redeemBassets", + "inputQtys": [ + "73708794983656615575552", + "77026541343698621300736" + ], + "expectedQty": "149449028844406124936909", + "swapFee": "89723251257398113830", "reserves": [ - "2496427684360182932508451", - "4030962230105914896154555" - ] + "2288095922321548806992843", + "3234387440008617452306307" + ], + "LPTokenSupply": "5474304526605248426339284" + }, + { + "type": "mintMulti", + "inputQtys": [ + "27547801443761823678464", + "96956697700230934560768" + ], + "expectedQty": "123359317800141579342339", + "reserves": [ + "2315643723765310630671307", + "3331344137708848386867075" + ], + "LPTokenSupply": "5597663844405390005681623" }, { "type": "redeemMasset", - "inputQty": "498949639883794782617", + "inputQty": "1369871465065672081408", "expectedQtys": [ - "193006113784846457730", - "311645460319286887126" + "566348939130517681829", + "814764032526659937084" ], - "redemptionFee": "299369783930276869", + "redemptionFee": "821922879039403248", "reserves": [ - "2496234678246398086050721", - "4030650584645595609267429" + "2315077374826180112989478", + "3330529373676321726929991" ], - "LPTokenSupply": "6449267435774696678579126" + "LPTokenSupply": "5596294055132612237540539" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "88984454104375967744", - "expectedQty": "87808994588173917476", + "type": "redeemMasset", + "inputQty": "1444130513241439232", + "expectedQtys": [ + "597050097842955162", + "858931502698298988" + ], + "redemptionFee": "866478307944863", "reserves": [ - "2496234678246398086050721", - "4030739569099699985235173" - ] + "2315076777776082270034316", + "3330528514744819028631003" + ], + "LPTokenSupply": "5596292611088746826895793" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "9048992330026532732928", - "expectedQty": "9164590914174605188644", - "swapFee": "5429395398015919639", + "inputIndex": 0, + "inputQty": "174917100103494369280", + "expectedQty": "176088292014167654047", + "swapFee": "104950260062096621", "reserves": [ - "2496234678246398086050721", - "4021574978185525380046529" + "2314900689484068102380269", + "3330528514744819028631003" ], - "LPTokenSupply": "6440306795378798121355637" + "LPTokenSupply": "5596117704483669338736175" }, { - "type": "redeemMasset", - "inputQty": "54959933299503611982643", - "expectedQtys": [ - "21289447853612026257652", - "34298502273679485878465" - ], - "redemptionFee": "32975959979702167189", + "type": "mint", + "inputIndex": 1, + "inputQty": "190161557584746500849664", + "expectedQty": "188287032263920661898092", "reserves": [ - "2474945230392786059793069", - "3987276475911845894168064" - ], - "LPTokenSupply": "6385350159675292479589712" + "2314900689484068102380269", + "3520690072329565529480667" + ] }, { "type": "mintMulti", "inputQtys": [ - "132439111664607920128", - "44687129553582612480" + "134592742684073125740544", + "100680604188704732348416" ], - "expectedQty": "175240550047250434737", + "expectedQty": "233327093762326606421504", "reserves": [ - "2475077669504450667713197", - "3987321163041399476780544" + "2449493432168141228120813", + "3621370676518270261829083" ], - "LPTokenSupply": "6385525400225339730024449" + "LPTokenSupply": "6017731830509916607055771" }, { - "type": "mintMulti", + "type": "swap", + "inputIndex": 1, + "inputQty": "5379259902801238556672", + "outputIndex": 0, + "expectedQty": "5364373154663729161520", + "swapFee": "0", + "reserves": [ + "2444129059013477498959293", + "3626749936421071500385755" + ], + "LPTokenSupply": "6017731830509916607055771", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", "inputQtys": [ - "7240105409698914631680", - "10998294934203920285696" + "44696267943725028605952", + "48373339457475538059264" ], - "expectedQty": "18022318431320435014229", + "expectedQty": "92274939822157332275588", + "swapFee": "55398202814983389398", "reserves": [ - "2482317774914149582344877", - "3998319457975603397066240" + "2399432791069752470353341", + "3578376596963595962326491" ], - "LPTokenSupply": "6403547718656660165038678" + "LPTokenSupply": "5925407032305225789729723" }, { "type": "redeemBassets", "inputQtys": [ - "115561070747447801675776", - "140743055246860117606400" + "12844464064256006144", + "160898607075305783296" ], - "expectedQty": "253315714203960856517594", - "swapFee": "152080676928533634091", + "expectedQty": "172060606174928228970", + "swapFee": "103298342710583287", "reserves": [ - "2366756704166701780669101", - "3857576402728743279459840" + "2399419946605688214347197", + "3578215698356520656543195" ], - "LPTokenSupply": "6150095131843463628250401" + "LPTokenSupply": "5925234878730542421975793" }, { "type": "redeemBassets", "inputQtys": [ - "105903987518286381056", - "19505526079687699202048" + "9371645795094288662528", + "6453080373747665338368" ], - "expectedQty": "19351765221925434838968", - "swapFee": "11618029951125936465", + "expectedQty": "15694489645014282719051", + "swapFee": "9422347195325765090", "reserves": [ - "2366650800179183494288045", - "3838070876649055580257792" + "2390048300810593925684669", + "3571762617982772991204827" ], - "LPTokenSupply": "6130732910394582180068613" + "LPTokenSupply": "5909531908973052346068160" }, { "type": "swap", "inputIndex": 1, - "inputQty": "980346058691035267072", + "inputQty": "147787085700466548408320", "outputIndex": 0, - "expectedQty": "976895608486762728079", + "expectedQty": "147304350866586818263975", "swapFee": "0", "reserves": [ - "2365673904570696731559966", - "3839051222707746615524864" + "2242743949944007107420694", + "3719549703683239539613147" ], - "LPTokenSupply": "6130732910394582180068613", + "LPTokenSupply": "5909531908973052346068160", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "11942770847947878", + "expectedQty": "11820517829041282", + "reserves": [ + "2242743949944007107420694", + "3719549715626010387561025" + ] + }, { "type": "redeemMasset", - "inputQty": "194984736093277231513", + "inputQty": "165814336092062208", "expectedQtys": [ - "75193871030114825937", - "122025745797232768034" + "62890932244104993", + "104303457891328017" ], - "redemptionFee": "116990841655966338", + "redemptionFee": "99488601655237", "reserves": [ - "2365598710699666616734029", - "3838929196961949382756830" + "2242743887053074863315701", + "3719549611322552496233008" ], - "LPTokenSupply": "6130537937357573068433733" + "LPTokenSupply": "5909531754989182943212757" }, { - "type": "redeemBassets", - "inputQtys": [ - "86787455863963222016", - "1562026988068336640" + "type": "redeemMasset", + "inputQty": "794217433202879897", + "expectedQtys": [ + "301234959272000244", + "499592656185631431" ], - "expectedQty": "87481136757379292537", - "swapFee": "52520194170930133", + "redemptionFee": "476530459921727", "reserves": [ - "2365511923243802653512013", - "3838927634934961314420190" + "2242743585818115591315457", + "3719549111729896310601577" ], - "LPTokenSupply": "6130450408952640935304075" + "LPTokenSupply": "5909530960819402786325032" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "12538885248120275337216", - "expectedQty": "12416245193626586784053", + "inputIndex": 1, + "inputQty": "30285349452335785443328", + "expectedQty": "29974923682025843818940", "reserves": [ - "2378050808491922928849229", - "3838927634934961314420190" + "2242743585818115591315457", + "3749834461182232096044905" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "573465370745561874432", - "expectedQty": "567848072868385934034", + "inputQty": "1585467798929153720320", + "expectedQty": "1575153483111216766335", "reserves": [ - "2378624273862668490723661", - "3838927634934961314420190" + "2244329053617044745035777", + "3749834461182232096044905" ] }, { - "type": "redeemMasset", - "inputQty": "2710828916229438386995", - "expectedQtys": [ - "1048953095215216128913", - "1692934470240233571728" + "type": "redeemBassets", + "inputQtys": [ + "701155125449692545024", + "1870407222977214808064" ], - "redemptionFee": "1626497349737663032", + "expectedQty": "2547807321471430690880", + "swapFee": "1529602154175363632", "reserves": [ - "2377575320767453274594748", - "3837234700464721080848462" + "2243627898491595052490753", + "3747964053959254881236841" ], - "LPTokenSupply": "6140723835952641443401470" + "LPTokenSupply": "5938531854021129658392157" }, { - "type": "redeemMasset", - "inputQty": "38168304696172192", - "expectedQtys": [ - "14769198695859125", - "23836419077363068" + "type": "redeemBassets", + "inputQtys": [ + "118824402576592", + "61077483384077" ], - "redemptionFee": "22900982817703", + "expectedQty": "178501786473387", + "swapFee": "107165371106", "reserves": [ - "2377575305998254578735623", - "3837234676628302003485394" + "2243627898372770649914161", + "3747964053898177397852764" ], - "LPTokenSupply": "6140723797786626845511048" + "LPTokenSupply": "5938531853842531423084773" }, { - "type": "redeemMasset", - "inputQty": "1275088331989772492", - "expectedQtys": [ - "493394534546365745", - "796303112857778489" + "type": "mintMulti", + "inputQtys": [ + "138396669415315357040640", + "330743526305415101939712" ], - "redemptionFee": "765052999193863", + "expectedQty": "464841614739022079305305", "reserves": [ - "2377574812603720032369878", - "3837233880325189145706905" + "2382024567788086006954801", + "4078707580203592499792476" ], - "LPTokenSupply": "6140722522774800155657942" + "LPTokenSupply": "6403373468581553502390078" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "155888443441241128960", - "outputIndex": 0, - "expectedQty": "155346630245829751507", - "swapFee": "0", + "inputQty": "8523815926289328", + "expectedQty": "8435651499882898", "reserves": [ - "2377419465973474202618371", - "3837389768768630386835865" - ], - "LPTokenSupply": "6140722522774800155657942", - "hardLimitError": false, - "insufficientLiquidityError": false + "2382024567788086006954801", + "4078707588727408426081804" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "194139178614509650575360", - "expectedQty": "195896059880200421203623", - "swapFee": "116483507168705790345", + "type": "redeemMasset", + "inputQty": "1631029787648358717849", + "expectedQtys": [ + "606371305233670850400", + "1038281165395244284083" + ], + "redemptionFee": "978617872589015230", "reserves": [ - "2181523406093273781414748", - "3837389768768630386835865" + "2381418196482852336104401", + "4077669307562013181797721" ], - "LPTokenSupply": "5946594992511007375661616" + "LPTokenSupply": "6401742545091343902456650" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "20522049144567083008", - "4881136755053910016" + "5108954239590761234432", + "1337784527632227631104" ], - "expectedQty": "25145602428766879318", - "swapFee": "15096419308845434", + "expectedQty": "6400338717719426893825", "reserves": [ - "2181502884044129214331740", - "3837384887631875332925849" + "2386527150722443097338833", + "4079007092089645409428825" ], - "LPTokenSupply": "5946569833321801230821406" + "LPTokenSupply": "6408142883809063329350475" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "94367967646728306688", - "64718571032521818112" + "3659517791409150623744", + "3239339179126635888640" ], - "expectedQty": "157329640294824301997", + "expectedQty": "6842028029573906028138", + "swapFee": "4107681426600303799", "reserves": [ - "2181597252011775942638428", - "3837449606202907854743961" + "2382867632931033946715089", + "4075767752910518773540185" ], - "LPTokenSupply": "5946727162962096055123403" + "LPTokenSupply": "6401297158866205483048916" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7286254332819060817920", - "21591796505047562452992" + "2888223087462902661120", + "3942362948244773797888" ], - "expectedQty": "28517652261151368967797", + "expectedQty": "6771405533698178533221", + "swapFee": "4065282489712734760", "reserves": [ - "2188883506344595003456348", - "3859041402707955417196953" + "2379979409843571044053969", + "4071825389962273999742297" ], - "LPTokenSupply": "5975244815223247424091200" + "LPTokenSupply": "6394522094578266563054410" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "516818610023924829782016", - "outputIndex": 1, - "expectedQty": "517833178453696563373897", - "swapFee": "409357046845104419962", + "inputQty": "343102147804108750848", + "expectedQty": "345096185038014343618", + "swapFee": "205861288682465250", "reserves": [ - "2705702116368519833238364", - "3341208224254258853823056" + "2379634313658533029710351", + "4071825389962273999742297" ], - "LPTokenSupply": "5975285750927931934533196", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "173312500255387216248832", - "expectedQty": "171373950166041784123536", - "reserves": [ - "2879014616623907049487196", - "3341208224254258853823056" - ] + "LPTokenSupply": "6394179013016591322550087" }, { - "type": "redeemMasset", - "inputQty": "92168369040615853260", - "expectedQtys": [ - "43144550390861143405", - "50070925574786296006" + "type": "redeemBassets", + "inputQtys": [ + "98811544419756851200", + "453863704735292653568" ], - "redemptionFee": "55301021424369511", + "expectedQty": "547351425792090944593", + "swapFee": "328608020287427022", "reserves": [ - "2878971472073516188343791", - "3341158153328684067527050" + "2379535502114113272859151", + "4071371526257538707088729" ], - "LPTokenSupply": "6146567538255035245240423" + "LPTokenSupply": "6393631365843580972921173" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "154295747105344647593984", - "expectedQty": "152537998257719157247381", + "type": "redeemBassets", + "inputQtys": [ + "407414807867291467776", + "109387435440140091392" + ], + "expectedQty": "513073900233671490972", + "swapFee": "308029157634783764", "reserves": [ - "3033267219178860835937775", - "3341158153328684067527050" - ] + "2379128087306245981391375", + "4071262138822098566997337" + ], + "LPTokenSupply": "6393118014717105430124812" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "24734185479647793250304", - "expectedQty": "25022272986760139363835", - "swapFee": "14840511287788675950", + "type": "redeemMasset", + "inputQty": "2512808676526019261235", + "expectedQtys": [ + "934552859868340404266", + "1599245410707526164135" + ], + "redemptionFee": "1507685205915611556", "reserves": [ - "3033267219178860835937775", - "3316135880341923928163215" + "2378193534446377640987109", + "4069662893411391040833202" ], - "LPTokenSupply": "6274372835084235388105095" + "LPTokenSupply": "6390605356809100002424732" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1442874565548233457664", - "expectedQty": "1426264227418727298810", + "inputQty": "430520214681666912256", + "expectedQty": "433021854206420430885", + "swapFee": "258312128809000147", "reserves": [ - "3034710093744409069395439", - "3316135880341923928163215" - ] + "2377760512592171220556224", + "4069662893411391040833202" + ], + "LPTokenSupply": "6390174862425631216412490" }, { "type": "swap", "inputIndex": 0, - "inputQty": "202418486879315776", + "inputQty": "2643376507791150678016", "outputIndex": 1, - "expectedQty": "202375761009595311", - "swapFee": "160070467119230", + "expectedQty": "2651836521404827019304", + "swapFee": "2101217009679403395", "reserves": [ - "3034710296162895948711215", - "3316135677966162918567904" + "2380403889099962371234240", + "4067011056889986213813898" ], - "LPTokenSupply": "6275799099327661162115828", + "LPTokenSupply": "6390175072547332184352829", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "56368244435423382732800", - "expectedQty": "56988655995179907619918", - "swapFee": "33820946661254029639", + "type": "swap", + "inputIndex": 1, + "inputQty": "81071911232519064780800", + "outputIndex": 0, + "expectedQty": "80728833304822300091584", + "swapFee": "0", "reserves": [ - "2977721640167716041091297", - "3316135677966162918567904" + "2299675055795140071142656", + "4148082968122505278594698" ], - "LPTokenSupply": "6219434236986903904785991" + "LPTokenSupply": "6390175072547332184352829", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "34201646531496541945856", - "expectedQty": "33809294320272408652496", - "reserves": [ - "3011923286699212583037153", - "3316135677966162918567904" - ] - }, - { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "3368310976770747138048", - "expectedQty": "3407597057724084828891", - "swapFee": "2020986586062448282", + "inputQty": "57122351803152456", + "outputIndex": 0, + "expectedQty": "56865848069813690", + "swapFee": "0", "reserves": [ - "3011923286699212583037153", - "3312728080908438833739013" + "2299674998929292001328966", + "4148083025244857081747154" ], - "LPTokenSupply": "6249875422429064172545267" + "LPTokenSupply": "6390175072547332184352829", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "5398412063089896448", - "outputIndex": 1, - "expectedQty": "5397507619652175070", - "swapFee": "4269084060225424", + "type": "mint", + "inputIndex": 1, + "inputQty": "11538120276717061799936", + "expectedQty": "11416654337512407641727", "reserves": [ - "3011928685111275672933601", - "3312722683400819181563943" - ], - "LPTokenSupply": "6249875422855972578567809", - "hardLimitError": false, - "insufficientLiquidityError": false + "2299674998929292001328966", + "4159621145521574143547090" + ] }, { "type": "mintMulti", "inputQtys": [ - "27167625423737052987392", - "17811449619164583428096" + "2815252521858280980480", + "166774199868324052992" ], - "expectedQty": "44450815482417935694769", + "expectedQty": "2963250411261677446272", "reserves": [ - "3039096310535012725920993", - "3330534133019983764992039" + "2302490251451150282309446", + "4159787919721442467600082" ], - "LPTokenSupply": "6294326238338390514262578" + "LPTokenSupply": "6404554977296106269440828" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "349922617587012534272", - "expectedQty": "345685240805289385096", + "type": "redeemMasset", + "inputQty": "864133849355011379", + "expectedQtys": [ + "310476836451470920", + "560922154962513478" + ], + "redemptionFee": "518480309613006", "reserves": [ - "3039096310535012725920993", - "3330884055637570777526311" - ] + "2302489940974313830838526", + "4159787358799287505086604" + ], + "LPTokenSupply": "6404554113214104945390749" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5147441063701858222080", - "expectedQty": "5088191394190549756685", + "type": "redeemMasset", + "inputQty": "7954923536973324", + "expectedQtys": [ + "2858144598775112", + "5163659375890324" + ], + "redemptionFee": "4772954122183", "reserves": [ - "3044243751598714584143073", - "3330884055637570777526311" - ] + "2302489938116169232063414", + "4159787353635628129196280" + ], + "LPTokenSupply": "6404554105259658703829643" }, { "type": "redeemBassets", "inputQtys": [ - "81124607851264468844544", - "126625643202132360298496" + "559648122236325724160", + "20303376880739534503936" ], - "expectedQty": "205284215852301924323984", - "swapFee": "123244476197099414242", + "expectedQty": "20646038977335853693299", + "swapFee": "12395060422655105279", "reserves": [ - "2963119143747450115298529", - "3204258412435438417227815" + "2301930289993932906339254", + "4139483976754888594692344" ], - "LPTokenSupply": "6094364979092507039607556" + "LPTokenSupply": "6383896910727942460541591" }, { "type": "redeemMasset", - "inputQty": "197145063341834572", + "inputQty": "64812779140422277529", "expectedQtys": [ - "95795675956325391", - "103591548522679630" + "23356420830005795534", + "42001067625904488493" ], - "redemptionFee": "118287038005100", + "redemptionFee": "38887667484253366", "reserves": [ - "2963119047951774158973138", - "3204258308843889894548185" + "2301906933573102900543720", + "4139441975687262690203851" ], - "LPTokenSupply": "6094364781959272401573494" + "LPTokenSupply": "6383832101837568786689398" }, { - "type": "mintMulti", - "inputQtys": [ - "16729088827680909312", - "3717482045889307136" + "type": "redeemMasset", + "inputQty": "31723629057404836249", + "expectedQtys": [ + "11432165761271001409", + "20558079970576298846" ], - "expectedQty": "20208058384676478084", + "redemptionFee": "19034177434442901", "reserves": [ - "2963135777040601839882450", - "3204262026325935783855321" + "2301895501407341629542311", + "4139421417607292113905005" ], - "LPTokenSupply": "6094384990017657078051578" + "LPTokenSupply": "6383800380111929125297439" }, { - "type": "redeemBassets", - "inputQtys": [ - "7719017517211768061952", - "4676276076346636500992" - ], - "expectedQty": "12249463679561589716264", - "swapFee": "7354090662134234370", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3471033931148382208", + "expectedQty": "3490171807875558745", + "swapFee": "2082620358689029", "reserves": [ - "2955416759523390071820498", - "3199585750249589147354329" + "2301892011235533753983566", + "4139421417607292113905005" ], - "LPTokenSupply": "6082128907656499567524380" + "LPTokenSupply": "6383796909286260012784133" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "3990773929804194906112", - "expectedQty": "3942518296170111684164", + "inputQty": "2620247917690247708672", + "outputIndex": 0, + "expectedQty": "2608537072571896807551", + "swapFee": "0", "reserves": [ - "2955416759523390071820498", - "3203576524179393342260441" - ] + "2299283474162961857176015", + "4142041665524982361613677" + ], + "LPTokenSupply": "6383796909286260012784133", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "78984456139154395234304", - "expectedQty": "79856826850028361162319", - "swapFee": "47390673683492637140", + "type": "mintMulti", + "inputQtys": [ + "136419429014057926000640", + "131725186048548627546112" + ], + "expectedQty": "265925808288626314916817", "reserves": [ - "2875559932673361710658179", - "3203576524179393342260441" + "2435702903177019783176655", + "4273766851573530989159789" ], - "LPTokenSupply": "6007091708880883633237954" + "LPTokenSupply": "6649722717574886327700950" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "19723398707594655694848", - "expectedQty": "19482836683817775996550", + "type": "redeemBassets", + "inputQtys": [ + "14117260335431796391936", + "598099091234786246656" + ], + "expectedQty": "14621411042394498973361", + "swapFee": "8778113493532819075", "reserves": [ - "2875559932673361710658179", - "3223299922886987997955289" - ] + "2421585642841587986784719", + "4273168752482296202913133" + ], + "LPTokenSupply": "6635093406230347649190420" }, { "type": "redeemBassets", "inputQtys": [ - "4667184574707253379072", - "16238784556672862912512" + "10467205025648374448128", + "2850312202732334743552" ], - "expectedQty": "20654347095677633180506", - "swapFee": "12400048286378406952", + "expectedQty": "13222966672890548743863", + "swapFee": "7938543129612096504", "reserves": [ - "2870892748098654457279107", - "3207061138330315135042777" + "2411118437815939612336591", + "4270318440279563868169581" ], - "LPTokenSupply": "6005909038425566035487740" + "LPTokenSupply": "6621863294868640449559702" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "4235372171042872098816", - "expectedQty": "4281929923448488857509", - "swapFee": "2541223302625723259", + "inputQty": "16217116127520289193984", + "expectedQty": "16116636381606878510275", + "reserves": [ + "2427335553943459901530575", + "4270318440279563868169581" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "2919972396255198720", + "1563360388709460224" + ], + "expectedQty": "4448859333138771165", + "swapFee": "2670918150773726", "reserves": [ - "2866610818175205968421598", - "3207061138330315135042777" + "2427332633971063646331855", + "4270316876919175158709357" ], - "LPTokenSupply": "6001673920376853425961249" + "LPTokenSupply": "6637975479987087853602457" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1447794374029393788928", - "expectedQty": "1464798927852568200778", - "swapFee": "868676624417636273", + "inputQty": "385684439061655650304", + "expectedQty": "389519875909287440632", + "swapFee": "231410663436993390", "reserves": [ - "2866610818175205968421598", - "3205596339402462566841999" + "2427332633971063646331855", + "4269927357043265871268725" ], - "LPTokenSupply": "6000226212870486473935948" + "LPTokenSupply": "6637589818689092541651492" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "14741431875790062", - "outputIndex": 0, - "expectedQty": "14730468242558330", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "121433913244748380897280", + "outputIndex": 1, + "expectedQty": "121810941292714472999553", + "swapFee": "96529219988655954066", "reserves": [ - "2866610803444737725863268", - "3205596354143894442632061" + "2548766547215812027229135", + "4148116415750551398269172" ], - "LPTokenSupply": "6000226212870486473935948", + "LPTokenSupply": "6637599471611091407246898", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "538936704117283291136", - "expectedQty": "545266121620543359314", - "swapFee": "323362022470369974", + "inputQty": "940432870736824631296", + "expectedQty": "949547487411587296820", + "swapFee": "564259722442094778", + "reserves": [ + "2548766547215812027229135", + "4147166868263139810972352" + ], + "LPTokenSupply": "6636659095166326826825079" + }, + { + "type": "mintMulti", + "inputQtys": [ + "1910401967647774212096", + "2885966134997301592064" + ], + "expectedQty": "4754207534124002690443", "reserves": [ - "2866610803444737725863268", - "3205051088022273899272747" + "2550676949183459801441231", + "4150052834398137112564416" ], - "LPTokenSupply": "5999687308502571437681809" + "LPTokenSupply": "6641413302700450829515522" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "209108100194907029504", - "expectedQty": "211406742983299684218", - "swapFee": "125464860116944217", + "inputIndex": 1, + "inputQty": "13941954244161405190144", + "expectedQty": "14076992774782202341453", + "swapFee": "8365172546496843114", "reserves": [ - "2866399396701754426179050", - "3205051088022273899272747" + "2550676949183459801441231", + "4135975841623354910222963" ], - "LPTokenSupply": "5999478212948862542346726" + "LPTokenSupply": "6627472184973544074009689" }, { "type": "redeemBassets", "inputQtys": [ - "36791239333956288", - "19446818226802992" + "266632343548341056", + "256299414483113504" ], - "expectedQty": "55578921972189989", - "swapFee": "33367373607478", + "expectedQty": "518538035275184995", + "swapFee": "311309606929268", "reserves": [ - "2866399359910515092222762", - "3205051068575455672469755" + "2550676682551116253100175", + "4135975585323940427109459" ], - "LPTokenSupply": "5999478157339909933910005" + "LPTokenSupply": "6627471666155330152588351" }, { "type": "mint", "inputIndex": 0, - "inputQty": "709369107361737867264", - "expectedQty": "701234856147225450141", + "inputQty": "2405531811584176291840", + "expectedQty": "2389431460533761781405", "reserves": [ - "2867108729017876830090026", - "3205051068575455672469755" + "2553082214362700429392015", + "4135975585323940427109459" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11960784118836478607360", - "8350221597761331003392" + "2902683426681170952192", + "3844941099225110806528" ], - "expectedQty": "20071985377415300987403", - "swapFee": "12050421479336782662", + "expectedQty": "6689049360538979035508", "reserves": [ - "2855147944899040351482666", - "3196700846977694341466363" + "2555984897789381600344207", + "4139820526423165537915987" ], - "LPTokenSupply": "5980096561439310455268346" + "LPTokenSupply": "6636550146976402893405264" }, { "type": "mint", "inputIndex": 1, - "inputQty": "61463436217267740672", - "expectedQty": "60713153032450477096", + "inputQty": "1748685776509138", + "expectedQty": "1730886117336679", "reserves": [ - "2855147944899040351482666", - "3196762310413911609207035" + "2555984897789381600344207", + "4139820528171851314425125" ] }, { "type": "mintMulti", "inputQtys": [ - "135611761815646640", - "192344103731988608" + "84380188341595570176", + "12855374529860438016" + ], + "expectedQty": "96539638501178934752", + "reserves": [ + "2556069277977723195914383", + "4139833383546381174863141" + ], + "LPTokenSupply": "6636646688345790189676695" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "113731430220274656", + "expectedQty": "112969791997571013", + "reserves": [ + "2556069391709153416189039", + "4139833383546381174863141" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "36133734654942097408", + "outputIndex": 0, + "expectedQty": "36007066421172192448", + "swapFee": "0", + "reserves": [ + "2556033384642732243996591", + "4139869517281036116960549" + ], + "LPTokenSupply": "6636646801315582187247708", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "13575373842482104320", + "7189007681024549888" ], - "expectedQty": "324053329616813838", + "expectedQty": "20600295636234526213", + "swapFee": "12367597940505018", "reserves": [ - "2855148080510802167129306", - "3196762502758015341195643" + "2556019809268889761892271", + "4139862328273355092410661" ], - "LPTokenSupply": "5980157598645672522559280" + "LPTokenSupply": "6636626189889107806266977" }, { "type": "redeemBassets", "inputQtys": [ - "902208166158370734080", - "241806848759962075136" + "3418816507166529024", + "21802919220446281728" ], - "expectedQty": "1130721079751686320622", - "swapFee": "678839951822105055", + "expectedQty": "24976912090740752653", + "swapFee": "14995144341049081", "reserves": [ - "2854245872344643796395226", - "3196520695909255379120507" + "2556016390452382595363247", + "4139840525354134646128933" ], - "LPTokenSupply": "5979026266609964196344107" + "LPTokenSupply": "6636601199481387158570150" }, { "type": "mintMulti", "inputQtys": [ - "24102274339084892", - "5231345995433458" + "27312008209845886910464", + "28496550620164102553600" ], - "expectedQty": "28993477655046715", + "expectedQty": "55335499147771282376026", "reserves": [ - "2854245896446918135480118", - "3196520701140601374553965" + "2583328398662228482273711", + "4168337075974298748682533" ], - "LPTokenSupply": "5979026295603441851390822" + "LPTokenSupply": "6691936698629158440946176" }, { - "type": "mint", + "type": "mintMulti", + "inputQtys": [ + "220345274924471222272", + "352907650035186401280" + ], + "expectedQty": "568185101789264785374", + "reserves": [ + "2583548743937152953495983", + "4168689983624333935083813" + ], + "LPTokenSupply": "6692504883730947705731550" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "46129932031756152602624", - "expectedQty": "45599857578443252657776", + "inputQty": "174557380403691388928", + "expectedQty": "175632275284304833780", + "swapFee": "104734428242214833", "reserves": [ - "2900375828478674288082742", - "3196520701140601374553965" - ] + "2583373111661868648662203", + "4168689983624333935083813" + ], + "LPTokenSupply": "6692330336823986838564105" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "47270753023563311087616", - "expectedQty": "46694965689097448437380", + "type": "mintMulti", + "inputQtys": [ + "60018430350500577280", + "71869696578556141568" + ], + "expectedQty": "130754343199782217727", "reserves": [ - "2900375828478674288082742", - "3243791454164164685641581" - ] + "2583433130092219149239483", + "4168761853320912491225381" + ], + "LPTokenSupply": "6692461091167186620781832" }, { "type": "redeemBassets", "inputQtys": [ - "22932771371117971505152", - "21734509809650509021184" + "1609473159016371716096", + "4023800680828247736320" + ], + "expectedQty": "5581555972976965155919", + "swapFee": "3350944150276344900", + "reserves": [ + "2581823656933202777523387", + "4164738052640084243489061" + ], + "LPTokenSupply": "6686876519344474406915502" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "48501910002262827008", + "expectedQty": "48970646296402941174", + "swapFee": "29101146001357696", + "reserves": [ + "2581823656933202777523387", + "4164689081993787840547887" ], - "expectedQty": "44139066575751811539377", - "swapFee": "26499339549180595280", + "LPTokenSupply": "6686828020344586744224263" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "93714364522402437660672", + "expectedQty": "94616477062072559199625", + "swapFee": "56228618713441462596", "reserves": [ - "2877443057107556316577590", - "3222056944354514176620397" + "2581823656933202777523387", + "4070072604931715281348262" ], - "LPTokenSupply": "6027158202889636478410848" + "LPTokenSupply": "6593119278684055650709850" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "132142987702887727104", + "expectedQty": "130808496823367387489", + "reserves": [ + "2581823656933202777523387", + "4070204747919418169075366" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "20979463147848968", + "inputQty": "19485828004803352985600", "outputIndex": 1, - "expectedQty": "20978472261692795", - "swapFee": "16591110375966", + "expectedQty": "19533220251150237697476", + "swapFee": "15481652079467039063", "reserves": [ - "2877443078087019464426558", - "3222056923376041914927602" + "2601309484938006130508987", + "4050671527668267931377890" ], - "LPTokenSupply": "6027158202891295589448444", + "LPTokenSupply": "6593251635346086964801245", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "159069529188311990272", - "105509502295110025216" + "type": "redeemMasset", + "inputQty": "191323644942052753408", + "expectedQtys": [ + "75439771539554789682", + "117472271714857519760" ], - "expectedQty": "261466542763256167169", - "swapFee": "156974110124028117", + "redemptionFee": "114794186965231652", "reserves": [ - "2877284008557831152436286", - "3221951413873746804902386" + "2601234045166466575719305", + "4050554055396553073858130" ], - "LPTokenSupply": "6026896595071833221655968" + "LPTokenSupply": "6593060323180563608571002" }, { - "type": "redeemMasset", - "inputQty": "7140701805156798929305", - "expectedQtys": [ - "3406977254990492605149", - "3815096163987762640023" + "type": "mintMulti", + "inputQtys": [ + "33926530127309012205568", + "26372085466059019124736" ], - "redemptionFee": "4284421083094079357", + "expectedQty": "59798573241266069498039", "reserves": [ - "2873877031302840659831137", - "3218136317709759042262363" + "2635160575293775587924873", + "4076926140862612092982866" ], - "LPTokenSupply": "6019756321708784732134598" + "LPTokenSupply": "6652858896421829678069041" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "570084326021228003328", - "expectedQty": "563122256002473517447", + "inputIndex": 0, + "inputQty": "174397882437158528", + "expectedQty": "173187141417756455", "reserves": [ - "2873877031302840659831137", - "3218706402035780270265691" + "2635160749691658025083401", + "4076926140862612092982866" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "25585127945618632704", - "expectedQty": "25291739550536413379", + "inputQty": "24879524831371943936", + "expectedQty": "24706800463580166140", "reserves": [ - "2873902616430786278463841", - "3218706402035780270265691" + "2635185629216489397027337", + "4076926140862612092982866" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "15231070132602612482048", - "expectedQty": "15410011896932563409718", - "swapFee": "9138642079561567489", + "inputQty": "150498212104086781952", + "expectedQty": "148987164174651680847", "reserves": [ - "2873902616430786278463841", - "3203296390138847706855973" - ], - "LPTokenSupply": "6005114579435943085740124" + "2635185629216489397027337", + "4077076639074716179764818" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "5744559741624865", - "1866635654521357" - ], - "expectedQty": "7522446272943226", - "swapFee": "4516177470248", + "type": "redeem", + "inputIndex": 0, + "inputQty": "394386595630467645440", + "expectedQty": "396905238097450944923", + "swapFee": "236631957378280587", "reserves": [ - "2873902610686226536838976", - "3203296388272212052334616" + "2634788723978391946082414", + "4077076639074716179764818" ], - "LPTokenSupply": "6005114571909432253073673" + "LPTokenSupply": "6652638400641174597855101" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "269522512441492925054976", - "expectedQty": "272441947516264713201208", - "swapFee": "161713507464895755032", + "inputQty": "412214233800130428928", + "expectedQty": "409352666868445418838", "reserves": [ - "2601460663169961823637768", - "3203296388272212052334616" - ], - "LPTokenSupply": "5735608230818685817594200" + "2635200938212192076511342", + "4077076639074716179764818" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "272627686168477568", - "547509593504399104" - ], - "expectedQty": "810235840930693184", - "swapFee": "486433364577162", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1788505559860030734336", + "expectedQty": "1799925068255812034556", + "swapFee": "1073103335916018440", "reserves": [ - "2601460390542275655160200", - "3203295840762618547935512" + "2633401013143936264476786", + "4077076639074716179764818" ], - "LPTokenSupply": "5735607420145054858781569" + "LPTokenSupply": "6651259355058516604141447" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "14141933042257935466496", - "expectedQty": "14312741338416834739662", - "swapFee": "8485159825354761279", + "type": "redeemMasset", + "inputQty": "3855122881860150178611", + "expectedQtys": [ + "1525424391166881087840", + "2361688219477164048841" + ], + "redemptionFee": "2313073729116090107", "reserves": [ - "2601460390542275655160200", - "3188983099424201713195850" + "2631875588752769383388946", + "4074714950855239015715977" ], - "LPTokenSupply": "5721466335618779458791200" + "LPTokenSupply": "6647404463484029365571846" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1775076131738774929408", - "expectedQty": "1796503961298389586292", - "swapFee": "1065045679043264957", + "inputIndex": 0, + "inputQty": "213341464940560372465664", + "expectedQty": "214656359396018129797918", + "swapFee": "128004878964336223479", "reserves": [ - "2601460390542275655160200", - "3187186595462903323609558" + "2417219229356751253591028", + "4074714950855239015715977" ], - "LPTokenSupply": "5719691365991608588188287" + "LPTokenSupply": "6434075799031365426728529" }, { "type": "redeemMasset", - "inputQty": "5308579766885248348979", + "inputQty": "142531813337107188940", "expectedQtys": [ - "2413027744757900956864", - "2956327803618534978535" + "53515676899762910586", + "90211564644316830926" ], - "redemptionFee": "3185147860131149009", + "redemptionFee": "85519088002264313", "reserves": [ - "2599047362797517754203336", - "3184230267659284788631023" + "2417165713679851490680442", + "4074624739290594698885051" ], - "LPTokenSupply": "5714383104739509352954208" + "LPTokenSupply": "6433933275769937119766020" }, { - "type": "redeemMasset", - "inputQty": "551770052672313139", - "expectedQtys": [ - "250808534902000594", - "307278789780349579" - ], - "redemptionFee": "331062031603387", + "type": "redeem", + "inputIndex": 1, + "inputQty": "896471664816439040", + "expectedQty": "905293975723732234", + "swapFee": "537882998889863", "reserves": [ - "2599047111988982852202742", - "3184229960380495008281444" + "2417165713679851490680442", + "4074623833996618975152817" ], - "LPTokenSupply": "5714382553002562883801407" + "LPTokenSupply": "6433932379352060603215966" }, { "type": "swap", "inputIndex": 1, - "inputQty": "248558988287892815872", + "inputQty": "2701906519961360138240", "outputIndex": 0, - "expectedQty": "248219082002082916345", + "expectedQty": "2691461773128487737676", "swapFee": "0", "reserves": [ - "2598798892906980769286397", - "3184478519368782901097316" + "2414474251906723002942766", + "4077325740516580335291057" ], - "LPTokenSupply": "5714382553002562883801407", + "LPTokenSupply": "6433932379352060603215966", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "97256903671039788056576", + "expectedQty": "96614354214893687434066", + "reserves": [ + "2511731155577762790999342", + "4077325740516580335291057" + ] + }, { "type": "redeemBassets", "inputQtys": [ - "192965964329609888", - "1768098752150018560" + "27004943782070116352", + "31966284069346562048" ], - "expectedQty": "1936771893439524250", - "swapFee": "1162760792539238", + "expectedQty": "58463414547133687306", + "swapFee": "35099108193196130", "reserves": [ - "2598798699941016439676509", - "3184476751270030751078756" + "2511704150633980720882990", + "4077293774232510988729009" ], - "LPTokenSupply": "5714380615184184730991841" + "LPTokenSupply": "6530488238563209783086208" }, { - "type": "redeemMasset", - "inputQty": "24605843118190739456", - "expectedQtys": [ - "11183585769003409314", - "13703973639064093199" + "type": "redeemBassets", + "inputQtys": [ + "89424417914737246208", + "116026960601012961280" ], - "redemptionFee": "14763505870914443", + "expectedQty": "203665881332029689227", + "swapFee": "122272892534738656", "reserves": [ - "2598787516355247436267195", - "3184463047296391686985557" + "2511614726216065983636782", + "4077177747271909975767729" ], - "LPTokenSupply": "5714356010817417127343829" + "LPTokenSupply": "6530284462636274472132189" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "487955549104685973504", - "outputIndex": 0, - "expectedQty": "487287395071709109825", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "1532274082116756307968", + "54847710690335636062208" + ], + "expectedQty": "55810550888882450646994", + "swapFee": "33506434393965849898", "reserves": [ - "2598300228960175727157370", - "3184951002845496372959061" + "2510082452133949227328814", + "4022330036581574339705521" ], - "LPTokenSupply": "5714356010817417127343829", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6474443755956437452220285" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "15332414091174130745344", - "expectedQty": "15140311630713351753743", + "type": "redeem", + "inputIndex": 0, + "inputQty": "393330592875112300544", + "expectedQty": "395780194130000302989", + "swapFee": "235998355725067380", "reserves": [ - "2598300228960175727157370", - "3200283416936670503704405" - ] + "2509686671939819227025825", + "4022330036581574339705521" + ], + "LPTokenSupply": "6474050448963397912426479" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4260017531108227284992", - "expectedQty": "4206602666784933291727", + "type": "mintMulti", + "inputQtys": [ + "1820175617789438722048", + "30397138686431012585472" + ], + "expectedQty": "31895289563331866248175", "reserves": [ - "2598300228960175727157370", - "3204543434467778730989397" - ] + "2511506847557608665747873", + "4052727175268005352290993" + ], + "LPTokenSupply": "6505945738526729778674654" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "25806286857799528448", - "expectedQty": "26118345219466783025", - "swapFee": "15483772114679717", + "type": "mintMulti", + "inputQtys": [ + "349821642614729920", + "606226367481206144" + ], + "expectedQty": "947503520658115680", "reserves": [ - "2598300228960175727157370", - "3204517316122559264206372" + "2511507197379251280477793", + "4052727781494372833497137" ], - "LPTokenSupply": "5733677120376434824328822" + "LPTokenSupply": "6505946686030250436790334" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2868713572556525273088", - "outputIndex": 0, - "expectedQty": "2864639655265171642727", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "9955740746552354816", + "4163896957114139648" + ], + "expectedQty": "14009970934279014137", "reserves": [ - "2595435589304910555514643", - "3207386029695115789479460" + "2511517153119997832832609", + "4052731945391329947636785" ], - "LPTokenSupply": "5733677120376434824328822", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6505960696001184715804471" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4645991865303574", - "expectedQty": "4702202138547319", - "swapFee": "2787595119182", + "type": "swap", + "inputIndex": 0, + "inputQty": "4252890593575161561088", + "outputIndex": 1, + "expectedQty": "4264251024380745713639", + "swapFee": "3379333480201541364", "reserves": [ - "2595435589304910555514643", - "3207386024992913650932141" + "2515770043713572994393697", + "4048467694366949201923146" ], - "LPTokenSupply": "5733677115730721718537166" + "LPTokenSupply": "6505961033934532735958607", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "23982218362706026496", - "expectedQty": "24237731638132281883", - "swapFee": "14389331017623615", + "inputQty": "31562299353829888", + "expectedQty": "31348799421123585", "reserves": [ - "2595411351573272423232760", - "3207386024992913650932141" - ], - "LPTokenSupply": "5733653134951292114273031" + "2515770075275872348223585", + "4048467694366949201923146" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "24076756289093248221184", - "expectedQty": "24332832997509212263626", - "swapFee": "14446053773455948932", + "type": "redeemBassets", + "inputQtys": [ + "8296067877079532699648", + "5200484182528038535168" + ], + "expectedQty": "13387461497612289997023", + "swapFee": "8037299278134254550", "reserves": [ - "2571078518575763210969134", - "3207386024992913650932141" + "2507474007398792815523937", + "4043267210184421163387978" ], - "LPTokenSupply": "5709577823267576211646740" + "LPTokenSupply": "6492566370216369546256073" }, { "type": "swap", "inputIndex": 1, - "inputQty": "179049338400867811328", + "inputQty": "25857022545183", "outputIndex": 0, - "expectedQty": "178781919516003969339", + "expectedQty": "25767362878690", "swapFee": "0", "reserves": [ - "2570899736656247206999795", - "3207565074331314518743469" + "2507474007373025452645247", + "4043267210210278185933161" ], - "LPTokenSupply": "5709577823267576211646740", + "LPTokenSupply": "6492566370216369546256073", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "19372322118897481285632", - "23747989443695815426048" + "7935998318022437634048", + "8594166935917876477952" ], - "expectedQty": "42606537223419851418502", + "expectedQty": "16388899770479809386196", "reserves": [ - "2590272058775144688285427", - "3231313063775010334169517" + "2515410005691047890279295", + "4051861377146196062411113" ], - "LPTokenSupply": "5752184360490996063065242" + "LPTokenSupply": "6508955269986849355642269" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "815129394739369738240", - "expectedQty": "825017255997070929233", - "swapFee": "489077636843621842", + "type": "redeemBassets", + "inputQtys": [ + "15752156222706973409280", + "60745010855619598483456" + ], + "expectedQty": "75771855238453764929087", + "swapFee": "45490407387504761814", "reserves": [ - "2590272058775144688285427", - "3230488046519013263240284" + "2499657849468340916870015", + "3991116366290576463927657" ], - "LPTokenSupply": "5751369280004020377689186" + "LPTokenSupply": "6433142473381746836427548" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "593047383900996632576", - "expectedQty": "599345705158614016298", - "swapFee": "355828430340597979", + "type": "redeemMasset", + "inputQty": "89973923661938805964", + "expectedQtys": [ + "34939235846918459449", + "55786257324770237736" + ], + "redemptionFee": "53984354197163283", "reserves": [ - "2589672713069986074269129", - "3230488046519013263240284" + "2499622910232493998410566", + "3991060580033251693689921" ], - "LPTokenSupply": "5750776268202962415116407" + "LPTokenSupply": "6433052504856520317337912" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "259879338657795073376256", - "90923916746357789949952" + "4541844976250182144", + "507621596848826679296" ], - "expectedQty": "346802612855759019146174", - "swapFee": "208206491608420463765", + "expectedQty": "506968315184850388296", "reserves": [ - "2329793374412191000892873", - "3139564129772655473290332" + "2499627452077470248592710", + "3991568201630100520369217" ], - "LPTokenSupply": "5403786269504755817552843" + "LPTokenSupply": "6433559473171705167726208" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "138332719596998950912", - "expectedQty": "136554944838581336820", + "type": "redeemBassets", + "inputQtys": [ + "1221578401905728768", + "2495277667212205056" + ], + "expectedQty": "3683148725244960393", + "swapFee": "2211215964725811", "reserves": [ - "2329793374412191000892873", - "3139702462492252472241244" - ] + "2499626230499068342863942", + "3991565706352433308164161" + ], + "LPTokenSupply": "6433555788032885554512584" }, { - "type": "redeemBassets", - "inputQtys": [ - "814429005124815683584", - "1369326631363844767744" + "type": "redeemMasset", + "inputQty": "302220735386353664000", + "expectedQtys": [ + "117351219002446454840", + "187394057420855611631" ], - "expectedQty": "2157340487115478066955", - "swapFee": "1295181401109952811", + "redemptionFee": "181332441231812198", "reserves": [ - "2328978945407066185209289", - "3138333135860888627473500" + "2499508879280065896409102", + "3991378312295012452552530" ], - "LPTokenSupply": "5401764318299217921865177" + "LPTokenSupply": "6433253585430743324029803" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 1, + "inputQty": "89777370990700694339584", + "expectedQty": "90642287581860423583430", + "swapFee": "53866422594420416603", + "reserves": [ + "2499508879280065896409102", + "3900736024713152028969100" + ], + "LPTokenSupply": "6343481601082302071731879" + }, + { + "type": "mintMulti", "inputQtys": [ - "43089052719204555292672", - "41223710374745455198208" + "637552179935354159104", + "1622717028527217836032" ], - "expectedQty": "83316600248587922764590", - "swapFee": "50019972132432212986", + "expectedQty": "2239445939214532123968", "reserves": [ - "2285889892687861629916617", - "3097109425486143172275292" + "2500146431460001250568206", + "3902358741741679246805132" ], - "LPTokenSupply": "5318402700075710810108898" + "LPTokenSupply": "6345721047021516603855847" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "414048337737161967140864", - "expectedQty": "409430948531256199115928", + "inputIndex": 1, + "inputQty": "358382989699926065152", + "expectedQty": "354760721534530399064", "reserves": [ - "2699938230425023597057481", - "3097109425486143172275292" + "2500146431460001250568206", + "3902717124731379172870284" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "8278759681593227264", - "expectedQty": "8183918191011582471", + "type": "redeemMasset", + "inputQty": "35650301198883677798", + "expectedQtys": [ + "14036626324284244767", + "21911109381400971843" + ], + "redemptionFee": "21390180719330206", "reserves": [ - "2699946509184705190284745", - "3097109425486143172275292" - ] + "2500132394833676966323439", + "3902695213621997771898441" + ], + "LPTokenSupply": "6346040159580870322510133" }, { - "type": "redeemBassets", - "inputQtys": [ - "14708095175417164464128", - "18500765543398293635072" + "type": "swap", + "inputIndex": 1, + "inputQty": "238137038253865440", + "outputIndex": 0, + "expectedQty": "237376572779108895", + "swapFee": "0", + "reserves": [ + "2500132157457104187214544", + "3902695451759036025763881" ], - "expectedQty": "32811677304694091393619", - "swapFee": "19698825678223388869", + "LPTokenSupply": "6346040159580870322510133", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "1161969108215407", + "outputIndex": 0, + "expectedQty": "1158258481862387", + "swapFee": "0", "reserves": [ - "2685238414009288025820617", - "3078608659942744878640220" + "2500132156298845705352157", + "3902695452921005133979288" ], - "LPTokenSupply": "5695012426277353528363694" + "LPTokenSupply": "6346040159580870322510133", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "1652690760491576590336", - "expectedQty": "1632258046221214077134", + "inputQty": "22724612436138030792704", + "expectedQty": "22494712132226225764936", "reserves": [ - "2685238414009288025820617", - "3080261350703236455230556" + "2500132156298845705352157", + "3925420065357143164771992" ] }, { - "type": "redeemMasset", - "inputQty": "2902660966651338004889", - "expectedQtys": [ - "1367411969697765911404", - "1568570678407717929993" - ], - "redemptionFee": "1741596579990802802", + "type": "redeem", + "inputIndex": 1, + "inputQty": "25824524439766", + "expectedQty": "26073050050532", + "swapFee": "15494714663", "reserves": [ - "2683871002039590259909213", - "3078692780024828737300563" + "2500132156298845705352157", + "3925420065331070114721460" ], - "LPTokenSupply": "5693742197516581403516219" + "LPTokenSupply": "6368534871687273573306769" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1981354526198382460928", - "5050166850767007252480" + "2869862797445094703104", + "2244193530019015557120" ], - "expectedQty": "6946370142795693014103", + "expectedQty": "5071511839980859944898", + "swapFee": "3044733944355129044", "reserves": [ - "2685852356565788642370141", - "3083742946875595744553043" + "2497262293501400610649053", + "3923175871801051099164340" ], - "LPTokenSupply": "5700688567659377096530322" + "LPTokenSupply": "6363460619586742793745730" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "9692894166514192", - "expectedQty": "9581851354332544", + "type": "redeemBassets", + "inputQtys": [ + "633628495107487616", + "243804578560625600" + ], + "expectedQty": "870588963533345913", + "swapFee": "522666978306991", "reserves": [ - "2685852366258682808884333", - "3083742946875595744553043" - ] + "2497261659872905503161437", + "3923175627996472538538740" + ], + "LPTokenSupply": "6363459748527378979923524" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1788853856313459081216", - "expectedQty": "1768358426742567095051", + "inputIndex": 1, + "inputQty": "250941354923151994126336", + "expectedQty": "248374046532200262743967", "reserves": [ - "2687641220114996267965549", - "3083742946875595744553043" + "2497261659872905503161437", + "4174116982919624532665076" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4490212076558756085760", - "expectedQty": "4438747624498669469526", + "type": "mintMulti", + "inputQtys": [ + "151842333077197750272", + "128630910352504832000" + ], + "expectedQty": "278145924766434164364", "reserves": [ - "2692131432191555024051309", - "3083742946875595744553043" - ] + "2497413502205982700911709", + "4174245613829977037497076" + ], + "LPTokenSupply": "6612111940984345676831855" }, { "type": "mint", "inputIndex": 0, - "inputQty": "184982504451860758528", - "expectedQty": "182861757560083270810", + "inputQty": "1024183744706499969024", + "expectedQty": "1017448611020217259653", "reserves": [ - "2692316414696006884809837", - "3083742946875595744553043" + "2498437685950689200880733", + "4174245613829977037497076" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3965434534567621951488", - "expectedQty": "4009006671036591342801", - "swapFee": "2379260720740573170", + "type": "mintMulti", + "inputQtys": [ + "8583769483650626748416", + "2860273416316275654656" + ], + "expectedQty": "11357985712866735758388", "reserves": [ - "2688307408024970293467036", - "3083742946875595744553043" + "2507021455434339827629149", + "4177105887246293313151732" ], - "LPTokenSupply": "5703113348441534222804082" + "LPTokenSupply": "6624487375308232629849896" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "116835302624347856", - "expectedQty": "115496399692598813", + "type": "redeemBassets", + "inputQtys": [ + "38459887393171256", + "39398347805142904" + ], + "expectedQty": "77198054027034722", + "swapFee": "46346640400461", "reserves": [ - "2688307524860272917814892", - "3083742946875595744553043" - ] + "2507021416974452434457893", + "4177105847847945508008828" + ], + "LPTokenSupply": "6624487298068466626454758" }, { "type": "mint", "inputIndex": 0, - "inputQty": "12170920926967760896", - "expectedQty": "12031445160885255591", + "inputQty": "35190787941729497088", + "expectedQty": "34958793386193303744", "reserves": [ - "2688319695781199885575788", - "3083742946875595744553043" + "2507056607762394163954981", + "4177105847847945508008828" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "192655346507242161569792", - "expectedQty": "190254885334384707630941", + "type": "mintMulti", + "inputQtys": [ + "11047541082491396", + "144304415279402336" + ], + "expectedQty": "153789743053503856", "reserves": [ - "2688319695781199885575788", - "3276398293382837906122835" - ] + "2507056618809935246446377", + "4177105992152360787411164" + ], + "LPTokenSupply": "6624522410651595873262358" }, { "type": "redeemBassets", "inputQtys": [ - "490101971220012", - "458072316056228" + "2704706451050208256", + "4711704164749104128" ], - "expectedQty": "936916750092404", - "swapFee": "562487542580", + "expectedQty": "7349949757134238777", + "swapFee": "4412617424735384", "reserves": [ - "2688319695291097914355776", - "3276398292924765590066607" + "2507053914103484196238121", + "4177101280448196038307036" ], - "LPTokenSupply": "5893380379780056519408700" + "LPTokenSupply": "6624515056730483056761734" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "202471828091798", - "outputIndex": 0, - "expectedQty": "202202434161578", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "347111312457934372864", + "expectedQty": "344822841642317788031", "reserves": [ - "2688319695088895480194198", - "3276398293127237418158405" - ], - "LPTokenSupply": "5893380379780056519408700", - "hardLimitError": false, - "insufficientLiquidityError": false + "2507401025415942130610985", + "4177101280448196038307036" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "11118621809566380195840", - "expectedQty": "10993592166261238528467", + "inputQty": "6088698553517484277760", + "expectedQty": "6048513255089058934311", "reserves": [ - "2699438316898461860390038", - "3276398293127237418158405" + "2513489723969459614888745", + "4177101280448196038307036" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "935414721983152259072", - "expectedQty": "946725069372916305738", - "swapFee": "561248833189891355", + "type": "redeemBassets", + "inputQtys": [ + "8237378872503596032", + "3535687965553654784" + ], + "expectedQty": "11682183093436695791", + "swapFee": "7013517966842122", "reserves": [ - "2699438316898461860390038", - "3275451568057864501852667" + "2513481486590587111292713", + "4177097744760230484652252" ], - "LPTokenSupply": "5903438613349217924667230" + "LPTokenSupply": "6630896704331954826630374" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "326939757962407706624", - "1666708486759588560896" + "2612047549522660294656", + "2733173207635068452864" ], - "expectedQty": "1969068777083964866161", + "expectedQty": "5299778711571003499943", + "swapFee": "3181776292718233039", "reserves": [ - "2699765256656424268096662", - "3277118276544624090413563" + "2510869439041064450998057", + "4174364571552595416199388" ], - "LPTokenSupply": "5905407682126301889533391" + "LPTokenSupply": "6625594062021720376720694" }, { - "type": "mintMulti", - "inputQtys": [ - "20860284709310345216", - "20224160295836737536" - ], - "expectedQty": "40596093149231247326", + "type": "swap", + "inputIndex": 0, + "inputQty": "572979506866840338432", + "outputIndex": 1, + "expectedQty": "574666010833837670466", + "swapFee": "455355711863384479", "reserves": [ - "2699786116941133578441878", - "3277138500704919927151099" + "2511442418547931291336489", + "4173789905541761578528922" ], - "LPTokenSupply": "5905448278219451120780717" + "LPTokenSupply": "6625594107557291563059141", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2942132992522014208", - "1929933911849472768" + "150320157102989750829056", + "74070778060269902888960" ], - "expectedQty": "4814758135735866296", - "swapFee": "2890589234982509", + "expectedQty": "222622202678740389650486", "reserves": [ - "2699783174808141056427670", - "3277136570771008077678331" + "2661762575650921042165545", + "4247860683602031481417882" ], - "LPTokenSupply": "5905443460859785073430161" + "LPTokenSupply": "6848216310236031952709627" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "38213840511477164802048", - "expectedQty": "38675208530728378557526", - "swapFee": "22928304306886298881", + "inputQty": "384730301549067894784", + "expectedQty": "380813688027201267496", "reserves": [ - "2699783174808141056427670", - "3238461362240279699120805" - ], - "LPTokenSupply": "5867231913178738597258001" + "2661762575650921042165545", + "4248245413903580549312666" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "2151384780403377438720", + "expectedQty": "2129481261644993418149", + "reserves": [ + "2661762575650921042165545", + "4250396798683983926751386" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "26696654564148174127104", - "expectedQty": "26985073666092963472296", - "swapFee": "16017992738488904476", + "inputQty": "1671265439734893641728", + "expectedQty": "1681730721270006357926", + "swapFee": "1002759263840936185", "reserves": [ - "2672798101142048092955374", - "3238461362240279699120805" + "2660080844929651035807619", + "4250396798683983926751386" ], - "LPTokenSupply": "5840536860413864272021344" + "LPTokenSupply": "6849055440021895637847162" }, { "type": "swap", "inputIndex": 0, - "inputQty": "6502858439699145", + "inputQty": "471804126001065558016", "outputIndex": 1, - "expectedQty": "6506048662736761", - "swapFee": "5143681357859", + "expectedQty": "473029470077967137610", + "swapFee": "374869840601431937", "reserves": [ - "2672798107644906532654519", - "3238461355734231036384044" + "2660552649055652101365635", + "4249923769213905959613776" ], - "LPTokenSupply": "5840536860414378640157129", + "LPTokenSupply": "6849055477508879697990355", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4160525286150705774592", - "5143636215669249277952" + "174864835867665741381632", + "43020035486908155953152" + ], + "expectedQty": "216276999015426947823485", + "swapFee": "129844105872779836596", + "reserves": [ + "2485687813187986359984003", + "4206903733726997803660624" ], - "expectedQty": "9192786882651170041098", + "LPTokenSupply": "6632661618798167248313932" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "879032194860439830528", + "expectedQty": "884272061556605656031", + "swapFee": "527419316916263898", "reserves": [ - "2676958632931057238429111", - "3243604991949900285661996" + "2484803541126429754327972", + "4206903733726997803660624" ], - "LPTokenSupply": "5849729647297029810198227" + "LPTokenSupply": "6631782639345238500109793" }, { "type": "redeemBassets", "inputQtys": [ - "9530499581246152114176", - "3530327255746787934208" + "13472533800494920", + "10733715157849440" ], - "expectedQty": "12909221397393500144990", - "swapFee": "7750182948205023100", + "expectedQty": "24006840946281142", + "swapFee": "14412752219100", "reserves": [ - "2667428133349811086314935", - "3240074664694153497727788" + "2484803527653895953833052", + "4206903722993282645811184" ], - "LPTokenSupply": "5836813450734982925532446" + "LPTokenSupply": "6631782615325426076831460" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "62670679952794484736", - "outputIndex": 0, - "expectedQty": "62588739694397031162", - "swapFee": "0", + "inputQty": "26328439960266199793664", + "expectedQty": "26588688741722999979008", + "swapFee": "15797063976159719876", "reserves": [ - "2667365544610116689283773", - "3240137335374106292212524" + "2484803527653895953833052", + "4180315034251559645832176" ], - "LPTokenSupply": "5836813450734982925532446", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6605455755071557493009783" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1996391120342234955776", - "expectedQty": "1973915111032315543284", + "type": "mintMulti", + "inputQtys": [ + "2543872937944859136", + "2285255971209440768" + ], + "expectedQty": "4788737289797638067", "reserves": [ - "2669361935730458924239549", - "3240137335374106292212524" - ] + "2484806071526833898692188", + "4180317319507530855272944" + ], + "LPTokenSupply": "6605460543808847290647850" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "8307830227218281267200", - "expectedQty": "8214237874120824691811", + "inputIndex": 1, + "inputQty": "527125845605918400", + "expectedQty": "521657642518287672", "reserves": [ - "2677669765957677205506749", - "3240137335374106292212524" + "2484806071526833898692188", + "4180317846633376461191344" ] }, { "type": "redeemMasset", - "inputQty": "295388106031251534643", + "inputQty": "196444004903730", "expectedQtys": [ - "135193605755127242826", - "163592185668334989219" + "73852888710005", + "124246536676466" ], - "redemptionFee": "177232863618750920", + "redemptionFee": "117866402942", "reserves": [ - "2677534572351922078263923", - "3239973743188437957223305" + "2484806071452981009982183", + "4180317846509129924514878" ], - "LPTokenSupply": "5846706233337391176107990" + "LPTokenSupply": "6605461065270057590672086" }, { "type": "mint", "inputIndex": 0, - "inputQty": "5201601177178242809856", - "expectedQty": "5142952901565592769938", + "inputQty": "1854583525738815946752", + "expectedQty": "1842415448459531862450", "reserves": [ - "2682736173529100321073779", - "3239973743188437957223305" + "2486660654978719825928935", + "4180317846509129924514878" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "520238712864408993792", - "expectedQty": "514370922325929729303", + "inputQty": "85944314986778243104768", + "expectedQty": "85372158122108530936015", "reserves": [ - "2683256412241964730067571", - "3239973743188437957223305" + "2572604969965498069033703", + "4180317846509129924514878" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "24094726933893574656", - "1702760121894092800" - ], - "expectedQty": "25504374902425535246", - "reserves": [ - "2683280506968898623642227", - "3239975445948559851316105" - ], - "LPTokenSupply": "5852389061536185124142477" - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "43827946139438580498432", - "expectedQty": "44356548593743351799716", - "swapFee": "26296767683663148299", - "reserves": [ - "2683280506968898623642227", - "3195618897354816499516389" - ], - "LPTokenSupply": "5808563745073514909958874" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "33601858479046875152384", - "5593963450564443373568" - ], - "expectedQty": "38745652555302524305072", - "swapFee": "23261348342186826679", + "inputQty": "14985846837209868288", + "expectedQty": "15132092394332950553", + "swapFee": "8991508102325920", "reserves": [ - "2649678648489851748489843", - "3190024933904252056142821" + "2572604969965498069033703", + "4180302714416735591564325" ], - "LPTokenSupply": "5769797157304704417509789" + "LPTokenSupply": "6692660653892939253834855" }, { - "type": "mintMulti", - "inputQtys": [ - "44866001202615533568", - "20013411381479051264" - ], - "expectedQty": "64121751907961408466", + "type": "swap", + "inputIndex": 0, + "inputQty": "48638864543659180032", + "outputIndex": 1, + "expectedQty": "48772297209425315692", + "swapFee": "38648483827006916", "reserves": [ - "2649723514491054364023411", - "3190044947315633535194085" + "2572653608830041728213735", + "4180253942119526166248633" ], - "LPTokenSupply": "5769861279056612378918255" + "LPTokenSupply": "6692660657757787636535546", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "3355692990481781751808", - "2838400871926889709568" + "131149344477992189952", + "61561332665912877056" ], - "expectedQty": "6120615920839650768582", + "expectedQty": "191193997306880914801", "reserves": [ - "2653079207481536145775219", - "3192883348187560424903653" + "2572784758174519720403687", + "4180315503452192079125689" ], - "LPTokenSupply": "5775981894977452029686837" + "LPTokenSupply": "6692851851755094517450347" }, { - "type": "mintMulti", - "inputQtys": [ - "345532469075246976", - "265692485134828608" - ], - "expectedQty": "603991875725630329", + "type": "mint", + "inputIndex": 0, + "inputQty": "236884253779992753733632", + "expectedQty": "235231289547094682391616", "reserves": [ - "2653079553014005221022195", - "3192883613880045559732261" - ], - "LPTokenSupply": "5775982498969327755317166" + "2809669011954512474137319", + "4180315503452192079125689" + ] }, { "type": "redeemMasset", - "inputQty": "5398774109202086153420", + "inputQty": "5437783929188511226265", "expectedQtys": [ - "2478328695888451924899", - "2982577387821423210747" + "2203958247082397629671", + "3279119636526433253431" ], - "redemptionFee": "3239264465521251692", + "redemptionFee": "3262670357513106735", "reserves": [ - "2650601224318116769097296", - "3189901036492224136521514" + "2807465053707430076507648", + "4177036383815665645872258" ], - "LPTokenSupply": "5770584048786572221288915" + "LPTokenSupply": "6922645683640036439926371" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "59347058061575716864", - "expectedQty": "60063995360829992562", - "swapFee": "35608234836945430", + "type": "mint", + "inputIndex": 0, + "inputQty": "41034946219466723164160", + "expectedQty": "40738430546060089154502", "reserves": [ - "2650601224318116769097296", - "3189840972496863306528952" - ], - "LPTokenSupply": "5770524705289334129266594" + "2848499999926896799671808", + "4177036383815665645872258" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "618959200845162479616", - "expectedQty": "611204051194685196002", + "inputQty": "8721277109978523648", + "expectedQty": "8634685360855662327", "reserves": [ - "2650601224318116769097296", - "3190459931697708469008568" + "2848499999926896799671808", + "4177045105092775624395906" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "35977363170923231838208", - "outputIndex": 1, - "expectedQty": "35990295014796811440406", - "swapFee": "28455953378791234900", + "inputIndex": 1, + "inputQty": "1021332732912288792576", + "outputIndex": 0, + "expectedQty": "1018584375034455694533", + "swapFee": "0", "reserves": [ - "2686578587489040000935504", - "3154469636682911657568162" + "2847481415551862343977275", + "4178066437825687913188482" ], - "LPTokenSupply": "5771138754935866693586086", + "LPTokenSupply": "6963392748871457384743200", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "80123971185800822784", - "103231667820806537216" + "46735329681187576", + "32593153912769896" ], - "expectedQty": "181156649084777782912", - "swapFee": "108759244997865388", + "expectedQty": "78665655697303460", "reserves": [ - "2686498463517854200112720", - "3154366405015090851030946" + "2847481462287192025164851", + "4178066470418841825958378" ], - "LPTokenSupply": "5770957500403461417724323" + "LPTokenSupply": "6963392827537113082046660" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "3532632675274449747968", - "expectedQty": "3571199149594469153006", - "swapFee": "2119579605164669848", + "inputQty": "521497438856213823488", + "expectedQty": "517712746757946431451", "reserves": [ - "2682927264368259730959714", - "3154366405015090851030946" - ], - "LPTokenSupply": "5767425079686147484443339" + "2848002959726048238988339", + "4178066470418841825958378" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "3257998155817329098752", - "2177683517975593484288" - ], - "expectedQty": "5371432188633530976407", + "type": "redeem", + "inputIndex": 1, + "inputQty": "438574202317380", + "expectedQty": "442707194255394", + "swapFee": "263144521390", "reserves": [ - "2686185262524077060058466", - "3156544088533066444515234" + "2848002959726048238988339", + "4178066469976134631702984" ], - "LPTokenSupply": "5772796511874781015419746" + "LPTokenSupply": "6963910539845323140612870" }, { "type": "mint", "inputIndex": 1, - "inputQty": "110274648104654438400", - "expectedQty": "108900635134806646935", + "inputQty": "1427463439434122526720", + "expectedQty": "1413287781363496713309", "reserves": [ - "2686185262524077060058466", - "3156654363181171098953634" + "2848002959726048238988339", + "4179493933415568754229704" ] }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "332975447061318270976", - "expectedQty": "329181945887550572370", + "inputQty": "3744949118311392083968", + "outputIndex": 1, + "expectedQty": "3752030643641380768355", + "swapFee": "2974210891098287593", "reserves": [ - "2686518237971138378329442", - "3156654363181171098953634" - ] + "2851747908844359631072307", + "4175741902771927373461349" + ], + "LPTokenSupply": "6965324125047775747154938", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "12641267820317043916", - "expectedQtys": [ - "5878960814276159331", - "6907768963954950172" + "type": "redeemBassets", + "inputQtys": [ + "5808716930603083104256", + "25508934326570799071232" ], - "redemptionFee": "7584760692190226", + "expectedQty": "31022384610239992167129", + "swapFee": "18624605529461672303", "reserves": [ - "2686512359010324102170111", - "3156647455412207144003462" + "2845939191913756547968051", + "4150232968445356574390117" ], - "LPTokenSupply": "5773221953946459124814157" + "LPTokenSupply": "6934284978292559239482735" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1498292952512166887424", - "expectedQty": "1516285132598888361651", - "swapFee": "898975771507300132", + "type": "redeemBassets", + "inputQtys": [ + "5473641742302662623232", + "4982270462366246240256" + ], + "expectedQty": "10366628550442711493956", + "swapFee": "6223711357079874821", "reserves": [ - "2686512359010324102170111", - "3155131170279608255641811" + "2840465550171453885344819", + "4145250697982990328149861" ], - "LPTokenSupply": "5771723750891524108656746" + "LPTokenSupply": "6923912748401895156101439" }, { - "type": "redeemMasset", - "inputQty": "11971531032002193837260", - "expectedQtys": [ - "5568937541257136879193", - "6540349000379622386423" - ], - "redemptionFee": "7182918619201316302", + "type": "mint", + "inputIndex": 1, + "inputQty": "3079576249645745045504", + "expectedQty": "3049032062201452332605", "reserves": [ - "2680943421469066965290918", - "3148590821279228633255388" - ], - "LPTokenSupply": "5759752938151383834951116" + "2840465550171453885344819", + "4148330274232636073195365" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2937168700840967929856", - "1534738799329887125504" + "18079297954972518318080", + "1289139956180534165504" + ], + "expectedQty": "19224235349416750157001", + "swapFee": "11541466089303632273", + "reserves": [ + "2822386252216481367026739", + "4147041134276455539029861" ], - "expectedQty": "4419315605674904759795", - "swapFee": "2653181272168243802", + "LPTokenSupply": "6907727157795199485007996" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "28478524998688772096", + "expectedQty": "28747190229360899360", + "swapFee": "17087114999213263", "reserves": [ - "2678006252768225997361062", - "3147056082479898746129884" + "2822386252216481367026739", + "4147012387086226178130501" ], - "LPTokenSupply": "5755331234682563978771898" + "LPTokenSupply": "6907698680978912296157226" }, { "type": "swap", "inputIndex": 1, - "inputQty": "41545210076076254953472", + "inputQty": "52406008170791567360000", "outputIndex": 0, - "expectedQty": "41496259340342051571334", + "expectedQty": "52257796494664044111625", "swapFee": "0", "reserves": [ - "2636509993427883945789728", - "3188601292555975001083356" + "2770128455721817322915114", + "4199418395257017745490501" ], - "LPTokenSupply": "5755331234682563978771898", + "LPTokenSupply": "6907698680978912296157226", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "238646100495484126756864", - "expectedQty": "235623970811077413621770", + "inputQty": "69670247181803008", + "expectedQty": "70334575400402397", + "swapFee": "41802148309081", "reserves": [ - "2636509993427883945789728", - "3427247393051459127840220" - ] + "2770128455721817322915114", + "4199418324922442345088104" + ], + "LPTokenSupply": "6907698611312845329185126" }, { "type": "swap", "inputIndex": 1, - "inputQty": "10418646997762848", + "inputQty": "10915291321614777450496", "outputIndex": 0, - "expectedQty": "10400045862661194", + "expectedQty": "10882764987949683495323", "swapFee": "0", "reserves": [ - "2636509983027838083128534", - "3427247403470106125603068" + "2759245690733867639419791", + "4210333616244057122538600" ], - "LPTokenSupply": "5990955205493641392393668", + "LPTokenSupply": "6907698611312845329185126", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "6652250308266153738240", - "12717976605797591810048" + "119970233885631561728", + "128161902391195680768" ], - "expectedQty": "19134548082036036154083", - "swapFee": "11487621422074866612", + "expectedQty": "245993932778386382336", + "swapFee": "147684970649421482", "reserves": [ - "2629857732719571929390294", - "3414529426864308533793020" + "2759125720499982007858063", + "4210205454341665926857832" ], - "LPTokenSupply": "5971810318552325488859633" + "LPTokenSupply": "6907452484463593358323455" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "32236853225823875891200", - "outputIndex": 0, - "expectedQty": "32177052286076049541692", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "11268741210357188526080", + "11629425708595383631872" + ], + "expectedQty": "22701450378501112289980", + "swapFee": "13629047655694083824", "reserves": [ - "2597680680433495879848602", - "3446766280090132409684220" + "2747856979289624819331983", + "4198576028633070543225960" ], - "LPTokenSupply": "5971810318552325488859633", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6884738767942202121358032" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "92987224980406992896", - "expectedQty": "91971197194983732447", + "type": "redeemBassets", + "inputQtys": [ + "4911058288604095709184", + "38516926091336265760768" + ], + "expectedQty": "43005895288653188458017", + "swapFee": "25819028590346120747", "reserves": [ - "2597773667658476286841498", - "3446766280090132409684220" - ] + "2742945921001020723622799", + "4160059102541734277465192" + ], + "LPTokenSupply": "6841709635527817621391341" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "254984956977948812902400", - "expectedQty": "258115226334837591500964", - "swapFee": "152990974186769287741", + "inputQty": "486783136933404102098944", + "expectedQty": "481803926274521550672507", "reserves": [ - "2597773667658476286841498", - "3188651053755294818183256" - ], - "LPTokenSupply": "5716932631868990336618454" + "2742945921001020723622799", + "4646842239475138379564136" + ] }, { - "type": "redeemMasset", - "inputQty": "70092250492750187724", - "expectedQtys": [ - "31830802297894953860", - "39070886949340976510" + "type": "redeemBassets", + "inputQtys": [ + "21346652266436255744", + "16267621352883503104" ], - "redemptionFee": "42055350295650112", + "expectedQty": "37305565812817165623", + "swapFee": "22396777554222833", "reserves": [ - "2597741836856178391887638", - "3188611982868345477206746" + "2742924574348754287367055", + "4646825971853785496061032" ], - "LPTokenSupply": "5716862543824032615995741" + "LPTokenSupply": "7323476236079426556097674" }, { "type": "redeemBassets", "inputQtys": [ - "8016638805511306739712", - "9239201444518397214720" + "3705244321235198976", + "2544286031399503872" ], - "expectedQty": "17048974294919096956029", - "swapFee": "10235525892486950343", + "expectedQty": "6198853921410619913", + "swapFee": "3721545280014380", "reserves": [ - "2589725198050667085147926", - "3179372781423827079992026" + "2742920869104433052168079", + "4646823427567754096557160" ], - "LPTokenSupply": "5699804357555810280784402" - }, - { - "type": "redeemMasset", - "inputQty": "8110483022821277696", - "expectedQtys": [ - "3682814107713052341", - "4521344172702247380" - ], - "redemptionFee": "4866289813692766", - "reserves": [ - "2589721515236559372095585", - "3179368260079654377744646" - ], - "LPTokenSupply": "5699796247559416440875982" - }, - { - "type": "mintMulti", - "inputQtys": [ - "33447485638263529537536", - "30415069059652534665216" - ], - "expectedQty": "63101964071970314650580", - "reserves": [ - "2623169000874822901633121", - "3209783329139306912409862" - ], - "LPTokenSupply": "5762898211631386755526562" + "LPTokenSupply": "7323470033876114393464818" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4126746267364922228736", - "expectedQty": "4171272334872876522044", - "swapFee": "2476047760418953337", + "inputIndex": 1, + "inputQty": "13108242592244613120", + "expectedQty": "13238153883216436082", + "swapFee": "7864945555346767", "reserves": [ - "2618997728539950025111077", - "3209783329139306912409862" + "2742920869104433052168079", + "4646810189413870880121078" ], - "LPTokenSupply": "5758771712968797875193159" + "LPTokenSupply": "7323456926420016704386374" }, { "type": "redeemMasset", - "inputQty": "5733540815859642636697", + "inputQty": "28528776917628826419", "expectedQtys": [ - "2605958604194607859417", - "3193802878490506228277" + "10678730967708742206", + "18090946928031534202" ], - "redemptionFee": "3440124489515785582", + "redemptionFee": "17117266150577295", "reserves": [ - "2616391769935755417251660", - "3206589526260816406181585" + "2742910190373465343425873", + "4646792098466942848586876" ], - "LPTokenSupply": "5753038516165387184135020" + "LPTokenSupply": "7323428399354825690617684" }, { "type": "redeemMasset", - "inputQty": "1733380436357864121958", + "inputQty": "1430348292668275097", "expectedQtys": [ - "787841272700311727315", - "965560128427878084443" + "535399911596579543", + "907026444926416859" ], - "redemptionFee": "1040028261814718473", + "redemptionFee": "858208975600965", "reserves": [ - "2615603928663055105524345", - "3205623966132388528097142" + "2742909654973553746846330", + "4646791191440497922170017" ], - "LPTokenSupply": "5751305239731855501484909" + "LPTokenSupply": "7323426969092353919902683" }, { "type": "redeemMasset", - "inputQty": "2908176809701016181145", + "inputQty": "17301999235093591018700", "expectedQtys": [ - "1321799902562984262976", - "1619967533942788365950" + "6476386841843546063328", + "10971712930636024062546" ], - "redemptionFee": "1744906085820609708", + "redemptionFee": "10381199541056154611", "reserves": [ - "2614282128760492121261369", - "3204003998598445739731192" + "2736433268131710200783002", + "4635819478509861898107471" ], - "LPTokenSupply": "5748397237412763067364734" + "LPTokenSupply": "7306126007977214434499444" }, { "type": "mintMulti", "inputQtys": [ - "292673659395501096960", - "132643821677162053632" + "72670482479390384128", + "1628595178094680866816" ], - "expectedQty": "420346082432213365314", + "expectedQty": "1683838501034155535712", "reserves": [ - "2614574802419887622358329", - "3204136642420122901784824" + "2736505938614189591167130", + "4637448073687956578974287" ], - "LPTokenSupply": "5748817583495195280730048" + "LPTokenSupply": "7307809846478248590035156" }, { "type": "mintMulti", "inputQtys": [ - "1385260651387084032", - "1450552264315161856" + "46355671343525019648", + "29009774107881598976" ], - "expectedQty": "2801899627718740416", + "expectedQty": "74760761222391188900", "reserves": [ - "2614576187680539009442361", - "3204138092972387216946680" + "2736552294285533116186778", + "4637477083462064460573263" ], - "LPTokenSupply": "5748820385394822999470464" + "LPTokenSupply": "7307884607239470981224056" }, { "type": "mintMulti", "inputQtys": [ - "4179063079795857817600", - "37616497812202179264512" + "2367211092995843584", + "5832080884385278976" ], - "expectedQty": "41273247838848740214481", + "expectedQty": "8123123354280022576", "reserves": [ - "2618755250760334867259961", - "3241754590784589396211192" + "2736554661496626112030362", + "4637482915542948845852239" ], - "LPTokenSupply": "5790093633233671739684945" + "LPTokenSupply": "7307892730362825261246632" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "1961990783109550571520", - "expectedQty": "1985936177593953238286", - "swapFee": "1177194469865730342", + "inputQty": "265819197248666", + "outputIndex": 0, + "expectedQty": "264781061848784", + "swapFee": "0", "reserves": [ - "2618755250760334867259961", - "3239768654606995442972906" + "2736554661231845050181578", + "4637482915808768043100905" ], - "LPTokenSupply": "5788131760170009175686459" + "LPTokenSupply": "7307892730362825261246632", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1172268320044373377024", - "expectedQty": "1186573833323973256678", - "swapFee": "703360992026624026", - "reserves": [ - "2618755250760334867259961", - "3238582080773671469716228" + "type": "redeemMasset", + "inputQty": "14523158118732975728230", + "expectedQtys": [ + "5435160512273481254349", + "9210656150022086556364" ], - "LPTokenSupply": "5786959562186064004971837" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "3944610651844329472", - "expectedQty": "3894717398008399621", - "reserves": [ - "2618755250760334867259961", - "3238586025384323314045700" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "39805855461649479106560", - "expectedQty": "39301619572234298085915", - "reserves": [ - "2618755250760334867259961", - "3278391880845972793152260" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "29796030522946190573568", - "expectedQty": "29417614469763468317657", + "redemptionFee": "8713894871239785436", "reserves": [ - "2618755250760334867259961", - "3308187911368918983725828" - ] + "2731119500719571568927229", + "4628272259658745956544541" + ], + "LPTokenSupply": "7293370443633579409496945" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2280108004968909242368", - "expectedQty": "2304430800645802166903", - "swapFee": "1368064802981345545", + "type": "redeemMasset", + "inputQty": "9824323935607262806016", + "expectedQtys": [ + "3676668290409012044801", + "6230639798801768038699" + ], + "redemptionFee": "5894594361364357683", "reserves": [ - "2616450819959689065093058", - "3308187911368918983725828" + "2727442832429162556882428", + "4622041619859944188505842" ], - "LPTokenSupply": "5853402719746971168667216" + "LPTokenSupply": "7283546709157408283126697" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "105151184286642913280", - "expectedQty": "106441718444412464067", - "swapFee": "63090710571985747", - "reserves": [ - "2616450819959689065093058", - "3308081469650474571261761" - ], - "LPTokenSupply": "5853297574871755582952510" - }, - { - "type": "mintMulti", - "inputQtys": [ - "223106012924292899012608", - "99745057027848650358784" - ], - "expectedQty": "319081067666643669065756", + "inputQty": "95312165428825915392", + "expectedQty": "96257166997950413405", + "swapFee": "57187299257295549", "reserves": [ - "2839556832883981964105666", - "3407826526678323221620545" + "2727442832429162556882428", + "4621945362692946238092437" ], - "LPTokenSupply": "6172378642538399252018266" + "LPTokenSupply": "7283451402710709382940859" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "14651611726656573538304", - "outputIndex": 0, - "expectedQty": "14633199504872249635141", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "44826060930903573528576", + "outputIndex": 1, + "expectedQty": "44960520247466558085663", + "swapFee": "35624964184511495506", "reserves": [ - "2824923633379109714470525", - "3422478138404979795158849" + "2772268893360066130411004", + "4576984842445479680006774" ], - "LPTokenSupply": "6172378642538399252018266", + "LPTokenSupply": "7283454965207127834090409", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "146339253948328", - "expectedQty": "148115499842071", - "swapFee": "87803552368", + "type": "mint", + "inputIndex": 0, + "inputQty": "33782212606528415858688", + "expectedQty": "33555395593462489009203", "reserves": [ - "2824923633379109714470525", - "3422478138256864295316778" - ], - "LPTokenSupply": "6172378642392068778425174" + "2806051105966594546269692", + "4576984842445479680006774" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "656457276018084675584", + "expectedQty": "652027954880153975008", + "reserves": [ + "2806707563242612630945276", + "4576984842445479680006774" + ] }, { "type": "mintMulti", "inputQtys": [ - "9961044167555379363840", - "7627866496326273335296" + "2484653808936604672", + "1031571078427263488" ], - "expectedQty": "17380241362747780060747", + "expectedQty": "3488845226733101336", "reserves": [ - "2834884677546665093834365", - "3430106004753190568652074" + "2806710047896421567549948", + "4576985874016558107270262" ], - "LPTokenSupply": "6189758883754816558485921" + "LPTokenSupply": "7317665877600697210175956" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "65664705824886576", - "345699354394942464" + "157094647870353504", + "2593746186342623232" ], - "expectedQty": "406271771929084667", - "swapFee": "243909408802732", + "expectedQty": "2723094889374570445", "reserves": [ - "2834884611881959268947789", - "3430105659053836173709610" + "2806710204991069437903452", + "4576988467762744449893494" ], - "LPTokenSupply": "6189758477263526161478794" + "LPTokenSupply": "7317668600695586584746401" }, { "type": "mint", "inputIndex": 0, - "inputQty": "48546925137824426491904", - "expectedQty": "47996066870643112905946", + "inputQty": "900059704889067648", + "expectedQty": "893986156830658812", "reserves": [ - "2883431537019783695439693", - "3430105659053836173709610" + "2806711105050774326971100", + "4576988467762744449893494" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "14793467952841156", - "expectedQty": "14954751683753308", - "swapFee": "8876080771704", + "type": "mint", + "inputIndex": 1, + "inputQty": "16608845356281119113216", + "expectedQty": "16437865510725212049905", "reserves": [ - "2883431522065032011686385", - "3430105659053836173709610" - ], - "LPTokenSupply": "6237754529341588929620754" + "2806711105050774326971100", + "4593597313119025569006710" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "184913422724206", - "234113917374835" - ], - "expectedQty": "413990241967361", - "swapFee": "248543271143", + "type": "swap", + "inputIndex": 1, + "inputQty": "5762461323242517", + "outputIndex": 0, + "expectedQty": "5741738485663226", + "swapFee": "0", "reserves": [ - "2883431521880118588962179", - "3430105658819722256334775" + "2806711099309035841307874", + "4593597318881486892249227" ], - "LPTokenSupply": "6237754528927374998709363" + "LPTokenSupply": "7334107360192468627455118", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "11608134708282", - "12018158008731" - ], - "expectedQty": "23343642284513", + "type": "mint", + "inputIndex": 1, + "inputQty": "13403964669600", + "expectedQty": "13265897673273", "reserves": [ - "2883431521891726723670461", - "3430105658831740414343506" - ], - "LPTokenSupply": "6237754528950718640993876" + "2806711099309035841307874", + "4593597318894890856918827" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "160108871469886668800", - "expectedQty": "162042949043495030359", - "swapFee": "96065322881932001", + "type": "redeemBassets", + "inputQtys": [ + "145568756576141162053632", + "77613491721701234311168" + ], + "expectedQty": "221413021641157789892133", + "swapFee": "132927569526410520247", "reserves": [ - "2883431521891726723670461", - "3429943615882696919313147" + "2661142342732894679254242", + "4515983827173189622607659" ], - "LPTokenSupply": "6237594429685781042518276" + "LPTokenSupply": "7112574703752002965768034" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "34228912281490970116096", - "outputIndex": 1, - "expectedQty": "34238793168787626871642", - "swapFee": "27070955792039371852", + "inputQty": "3683727919067387", + "expectedQty": "3705771491903395", + "swapFee": "2210236751440", "reserves": [ - "2917660434173217693786557", - "3395704822713909292441505" + "2661142339027123187350847", + "4515983827173189622607659" ], - "LPTokenSupply": "6237597136781360246455461", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7112574700068496070375791" }, { - "type": "redeemMasset", - "inputQty": "7293599304767712", - "expectedQtys": [ - "3409562608838128", - "3968202762244158" + "type": "redeemBassets", + "inputQtys": [ + "7498105243843558375424", + "19644472828696580849664" ], - "redemptionFee": "4376159582860", + "expectedQty": "26888486693615187717471", + "swapFee": "16142777682778779898", "reserves": [ - "2917660430763655084948429", - "3395704818745706530197347" + "2653644233783279628975423", + "4496339354344493041757995" ], - "LPTokenSupply": "6237597129488198557646035" + "LPTokenSupply": "7085671684874966381756410" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5620086782993643864064", - "72439344532868518903808" + "95201514026194665472", + "60844732761410371584" ], - "expectedQty": "77090128331323821112111", + "expectedQty": "154787279727105577100", + "swapFee": "92928124711090000", "reserves": [ - "2923280517546648728812493", - "3468144163278575049101155" + "2653549032269253434309951", + "4496278509611731631386411" ], - "LPTokenSupply": "6314687257819522378758146" + "LPTokenSupply": "7085516813959927036198309" }, { "type": "redeemMasset", - "inputQty": "92485482798324108", + "inputQty": "1153074457344804179148", "expectedQtys": [ - "42788943043796085", - "50764277386127617" + "431571026778279124662", + "731271029657517309576" ], - "redemptionFee": "55491289678994", + "redemptionFee": "691844674406882507", "reserves": [ - "2923280474757705685016408", - "3468144112514297662973538" + "2653117461242475155185289", + "4495547238582074114076835" ], - "LPTokenSupply": "6314687165339588709401937" + "LPTokenSupply": "7084363808687049672707411" }, { "type": "redeemMasset", - "inputQty": "2500500416014841387417", + "inputQty": "47815132314996403", "expectedQtys": [ - "1156870966614367500575", - "1372497530239513403216" + "17896179584057690", + "30323995030586635" ], - "redemptionFee": "1500300249608904832", + "redemptionFee": "28689079388997", "reserves": [ - "2922123603791091317515833", - "3466771614984058149570322" + "2653117443346295571127599", + "4495547208258079083490200" ], - "LPTokenSupply": "6312186814953598828905003" + "LPTokenSupply": "7084363760874786265649907" }, { - "type": "mintMulti", - "inputQtys": [ - "2317177389644709625856", - "4656301509625520324608" + "type": "redeemMasset", + "inputQty": "1390898907792400606822", + "expectedQtys": [ + "520583661114461486983", + "882097560459339523435" ], - "expectedQty": "6888762689591216455467", + "redemptionFee": "834539344675440364", "reserves": [ - "2924440781180736027141689", - "3471427916493683669894930" + "2652596859685181109640616", + "4494665110697619743966765" ], - "LPTokenSupply": "6319075577643190045360470" + "LPTokenSupply": "7082972945420928332587121" }, { "type": "redeemBassets", "inputQtys": [ - "41998059112264552677376", - "277288752850051465216" + "3763217460710805602304", + "3153122344157576167424" ], - "expectedQty": "41794611678688439570595", - "swapFee": "25091822100473347751", + "expectedQty": "6858772002316937060986", + "swapFee": "4117733841695179344", "reserves": [ - "2882442722068471474464313", - "3471150627740833618429714" + "2648833642224470304038312", + "4491511988353462167799341" ], - "LPTokenSupply": "6277258383324611179776898" + "LPTokenSupply": "7076110467458153869864724" }, { - "type": "redeemBassets", - "inputQtys": [ - "29163979738659252", - "2425768853298526" - ], - "expectedQty": "31228510864852288", - "swapFee": "18748355532230", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5839653742184584183808", + "expectedQty": "5897693403586253656217", + "swapFee": "3503792245310750510", "reserves": [ - "2882442692904491735805061", - "3471150625315064765131188" + "2648833642224470304038312", + "4485614294949875914143124" ], - "LPTokenSupply": "6277258352079226794945602" + "LPTokenSupply": "7070271164095193816755967" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "589598133036042027008", - "expectedQty": "582184338310070113265", + "inputIndex": 0, + "inputQty": "38195499309115409170432", + "expectedQty": "37943394168307016379982", "reserves": [ - "2882442692904491735805061", - "3471740223448100807158196" + "2687029141533585713208744", + "4485614294949875914143124" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "336650881788737152", - "2860034913049376256" + "5045976630449533878272", + "3209800605163128356864" ], - "expectedQty": "3156904457850795804", - "swapFee": "1895279842616047", + "expectedQty": "8188924545970717075230", "reserves": [ - "2882442356253609947067909", - "3471737363413187757781940" + "2692075118164035247087016", + "4488824095555039042499988" ], - "LPTokenSupply": "6277837377807327155908619" + "LPTokenSupply": "7116403482809471550211179" }, { - "type": "redeemMasset", - "inputQty": "177603164322358755328", - "expectedQtys": [ - "81496810784873217767", - "98158258876197723698" + "type": "swap", + "inputIndex": 0, + "inputQty": "100740329954856", + "outputIndex": 1, + "expectedQty": "101039664503197", + "swapFee": "80056592798", + "reserves": [ + "2692075118264775577041872", + "4488824095453999377996791" ], - "redemptionFee": "106561898593415253", + "LPTokenSupply": "7116403482809479555870458", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "8234436016493968", + "expectedQty": "8284560193499997", + "swapFee": "4940661609896", "reserves": [ - "2882360859442825073850142", - "3471639205154311560058242" + "2692075109980215383541875", + "4488824095453999377996791" ], - "LPTokenSupply": "6277659785299194656494816" + "LPTokenSupply": "7116403474575537605537479" }, { "type": "mintMulti", "inputQtys": [ - "95555303618118064", - "28759857911626876" + "4902237009966214", + "13666901735276844" ], - "expectedQty": "122869925756158563", + "expectedQty": "18394667212873295", "reserves": [ - "2882360954998128691968206", - "3471639233914169471685118" + "2692075114882452393508089", + "4488824109120901113273635" ], - "LPTokenSupply": "6277659908169120412653379" + "LPTokenSupply": "7116403492970204818410774" }, { "type": "mintMulti", "inputQtys": [ - "11535172465619885883392", - "141898611290760181448704" + "309154073353105536", + "702175795121437568" ], - "expectedQty": "151511473312411889841544", + "expectedQty": "1001985125680672865", "reserves": [ - "2893896127463748577851598", - "3613537845204929653133822" + "2692075424036525746613625", + "4488824811296696234711203" ], - "LPTokenSupply": "6429171381481532302494923" + "LPTokenSupply": "7116404494955330499083639" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "56413705604687429632", - "268434746255556935680" + "186430490808142659584", + "143068880581511413760" ], - "expectedQty": "320811023130274082578", + "expectedQty": "326774915879413461340", + "swapFee": "196182659123121949", "reserves": [ - "2893952541169353265281230", - "3613806279951185210069502" + "2691888993545717603954041", + "4488681742416114723297443" ], - "LPTokenSupply": "6429492192504662576577501" + "LPTokenSupply": "7116077543475057874812543" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "913500688943314108416", - "expectedQty": "923295640911472669383", - "swapFee": "548100413365988465", + "type": "redeemMasset", + "inputQty": "1429971606848182996172", + "expectedQtys": [ + "540608953620413473211", + "901456763529583359674" + ], + "redemptionFee": "857982964108909797", "reserves": [ - "2893029245528441792611847", - "3613806279951185210069502" + "2691348384592097190480830", + "4487780285652585139937769" ], - "LPTokenSupply": "6428578746625760599067931" + "LPTokenSupply": "7114647657666506102707350" }, { - "type": "redeemBassets", - "inputQtys": [ - "250393780416527695872", - "247788628975306833920" + "type": "redeemMasset", + "inputQty": "19261202377422793605120", + "expectedQtys": [ + "7281808633827425052931", + "12142299160477650422336" ], - "expectedQty": "492233768886980819959", - "swapFee": "295517571875313680", + "redemptionFee": "11556721426453676163", "reserves": [ - "2892778851748025264915975", - "3613558491322209903235582" + "2684066575958269765427899", + "4475637986492107489515433" ], - "LPTokenSupply": "6428086246891058930465659" + "LPTokenSupply": "7095387610961225954469846" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "72777816994796588236800", - "expectedQty": "71959101322075840530864", + "type": "redeem", + "inputIndex": 1, + "inputQty": "43796270318667309056", + "expectedQty": "44229249394321034912", + "swapFee": "26277762191200385", "reserves": [ - "2965556668742821853152775", - "3613558491322209903235582" - ] + "2684066575958269765427899", + "4475593757242713168480521" + ], + "LPTokenSupply": "7095343817318683506280828" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "3686405114066815156224", - "expectedQty": "3639911335253878861960", + "inputQty": "482321356448121225216", + "expectedQty": "487089590774111147889", + "swapFee": "289392813868872735", "reserves": [ - "2965556668742821853152775", - "3617244896436276718391806" - ] + "2684066575958269765427899", + "4475106667651939057332632" + ], + "LPTokenSupply": "7094861524901516771942885" }, { "type": "redeemBassets", "inputQtys": [ - "37345686605154689024", - "261292717494266462208" + "23938190906660686397440", + "13081264002259746816000" ], - "expectedQty": "294920795904495131979", - "swapFee": "177058712770359294", + "expectedQty": "36724739049888548723488", + "swapFee": "22048072273297107498", "reserves": [ - "2965519323056216698463751", - "3616983603718782451929598" + "2660128385051609079030459", + "4462025403649679310516632" ], - "LPTokenSupply": "6503390179399642661403138" + "LPTokenSupply": "7058116942586582255822647" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "562177147452800565248", - "outputIndex": 0, - "expectedQty": "561425519779361054268", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "248769058643248236462080", + "expectedQty": "250204367152562818938156", + "swapFee": "149261435185948941877", "reserves": [ - "2964957897536437337409483", - "3617545780866235252494846" + "2409924017899046260092303", + "4462025403649679310516632" ], - "LPTokenSupply": "6503390179399642661403138", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6809362810086852614254754" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "203606654331093715517440", - "outputIndex": 0, - "expectedQty": "203243501337185707123185", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "349718676431811182592", + "outputIndex": 1, + "expectedQty": "351105664766709674252", + "swapFee": "278084113444069743", "reserves": [ - "2761714396199251630286298", - "3821152435197328968012286" + "2410273736575478071274895", + "4461674297984912600842380" ], - "LPTokenSupply": "6503390179399642661403138", + "LPTokenSupply": "6809362837895263958661728", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mintMulti", + "inputQtys": [ + "96980224763711946752", + "19338093911248297984" + ], + "expectedQty": "115523992130187801975", + "reserves": [ + "2410370716800241783221647", + "4461693636078823849140364" + ], + "LPTokenSupply": "6809478361887394146463703" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "18591347154659137552384", + "expectedQty": "18692712244903066630204", + "swapFee": "11154808292795482531", + "reserves": [ + "2391678004555338716591443", + "4461693636078823849140364" + ], + "LPTokenSupply": "6790888130213564288459572" + }, { "type": "mint", - "inputIndex": 1, - "inputQty": "11717238512595205357568", - "expectedQty": "11564810319219995316240", + "inputIndex": 0, + "inputQty": "4810091942466575925248", + "expectedQty": "4781221677847787220804", "reserves": [ - "2761714396199251630286298", - "3832869673709924173369854" + "2396488096497805292516691", + "4461693636078823849140364" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "30048558445775382642688", - "expectedQty": "29657150718332367741518", + "inputQty": "173347185865810112", + "expectedQty": "175131716899290619", + "swapFee": "104008311519486", "reserves": [ - "2761714396199251630286298", - "3862918232155699556012542" - ] + "2396488096497805292516691", + "4461693460947106949849745" + ], + "LPTokenSupply": "6795669178554627041022212" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "14620011391342721630208", - "expectedQty": "14429309372641634631022", + "inputIndex": 0, + "inputQty": "1299198248797535993856", + "expectedQty": "1291389579133669903202", "reserves": [ - "2761714396199251630286298", - "3877538243547042277642750" + "2397787294746602828510547", + "4461693460947106949849745" ] }, { "type": "redeemMasset", - "inputQty": "56973886588085049753", + "inputQty": "39259775630900337836032", "expectedQtys": [ - "23974722013781207957", - "33661301695346894294" + "13841496990394523328140", + "25755627593434516355222" ], - "redemptionFee": "34184331952851029", + "redemptionFee": "23555865378540202701", "reserves": [ - "2761690421477237849078341", - "3877504582245346930748456" + "2383945797756208305182407", + "4435937833353672433494523" ], - "LPTokenSupply": "6558984479341681769327267" + "LPTokenSupply": "6757703148089398227109652" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "78928802617430269493248", - "expectedQty": "79731137471208586285741", - "swapFee": "47357281570458161695", + "type": "mintMulti", + "inputQtys": [ + "1437863505901823721472", + "2352662812103189463040" + ], + "expectedQty": "3756504299601172948970", "reserves": [ - "2681959284006029262792600", - "3877504582245346930748456" + "2385383661262110128903879", + "4438290496165775622957563" ], - "LPTokenSupply": "6480060412452408545650188" + "LPTokenSupply": "6761459652388999400058622" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1147664456531480805376", - "expectedQty": "1162256745945469511240", - "swapFee": "688598673918888483", + "inputIndex": 0, + "inputQty": "21040084202756641914880", + "expectedQty": "21154099495661053630447", + "swapFee": "12624050521653985148", "reserves": [ - "2681959284006029262792600", - "3876342325499401461237216" + "2364229561766449075273432", + "4438290496165775622957563" ], - "LPTokenSupply": "6478912816855744456733660" + "LPTokenSupply": "6740420830591294923542256" }, { - "type": "redeemBassets", - "inputQtys": [ - "284072261043452182528", - "267435247008145276928" + "type": "redeemMasset", + "inputQty": "22119510315923267", + "expectedQtys": [ + "7753851596831302", + "14556050904457718" ], - "expectedQty": "544980649451686201779", - "swapFee": "327184700491306504", + "redemptionFee": "13271706189553", "reserves": [ - "2681675211744985810610072", - "3876074890252393315960288" + "2364229554012597478442130", + "4438290481609724718499845" ], - "LPTokenSupply": "6478367541740062328356026" + "LPTokenSupply": "6740420808473111778237944" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "15217855190368404897792", - "66910820209104802283520" + "13465293711180155584512", + "85026630766921544368128" ], - "expectedQty": "81086872317667512356126", + "expectedQty": "97493341083477927188783", + "swapFee": "58531123324081205036", "reserves": [ - "2696893066935354215507864", - "3942985710461498118243808" + "2350764260301417322857618", + "4353263850842803174131717" ], - "LPTokenSupply": "6559454414057729840712152" + "LPTokenSupply": "6642874789378642177964627" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "307185406415421652860928", - "146758628853323258658816" + "1526460094618851584", + "1501863242614352896" ], - "expectedQty": "448736180909818328645912", + "expectedQty": "3002892775731816305", + "swapFee": "1802817355852601", "reserves": [ - "3004078473350775868368792", - "4089744339314821376902624" + "2350762733841322704006034", + "4353262348979560559778821" ], - "LPTokenSupply": "7008190594967548169358064" + "LPTokenSupply": "6642871784863330825880980" }, { - "type": "redeemMasset", - "inputQty": "208964939461824486", - "expectedQtys": [ - "89519601325772259", - "121871744039839205" + "type": "mintMulti", + "inputQtys": [ + "263056419847231242240", + "45350804554525368320" ], - "redemptionFee": "125378963677094", + "expectedQty": "306325290246989981029", "reserves": [ - "3004078383831174542596533", - "4089744217443077337063419" + "2351025790261169935248274", + "4353307699784115085147141" ], - "LPTokenSupply": "7008190386015146603901287" + "LPTokenSupply": "6643178110153577815862009" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2210769117095064240128", - "2513194918294546022400" + "93336671060857896960", + "176157268603386560512" ], - "expectedQty": "4667380616759059170739", + "expectedQty": "267030167496599736057", + "swapFee": "160314289071402683", "reserves": [ - "3006289152948269606836661", - "4092257412361371883085819" + "2350932453590109077351314", + "4353131542515511698586629" ], - "LPTokenSupply": "7012857766631905663072026" + "LPTokenSupply": "6642910935703221051863536" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "89804489766246176260096", - "expectedQty": "90730162393043180380372", - "swapFee": "53882693859747705756", + "type": "swap", + "inputIndex": 1, + "inputQty": "389321197240024880381952", + "outputIndex": 0, + "expectedQty": "386898798358432746976532", + "swapFee": "0", "reserves": [ - "2915558990555226426456289", - "4092257412361371883085819" + "1964033655231676330374782", + "4742452739755536578968581" ], - "LPTokenSupply": "6923058665135045461582505" + "LPTokenSupply": "6642910935703221051863536", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5668379379021333397504", - "expectedQty": "5607496174808086699614", + "inputIndex": 1, + "inputQty": "879550841485063094272", + "expectedQty": "869176520156007894577", "reserves": [ - "2921227369934247759853793", - "4092257412361371883085819" + "1964033655231676330374782", + "4743332290597021642062853" ] }, { "type": "mintMulti", "inputQtys": [ - "33247514563239127023616", - "93638916369449352167424" + "30428649166179710009344", + "19065014796807145783296" ], - "expectedQty": "125305772400210261889593", + "expectedQty": "49149178168710651501710", "reserves": [ - "2954474884497486886877409", - "4185896328730821235253243" + "1994462304397856040384126", + "4762397305393828787846149" ], - "LPTokenSupply": "7053971933710063810171712" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "745516323337539840", - "expectedQty": "735756292805354548", - "reserves": [ - "2954474884497486886877409", - "4185897074247144572793083" - ] + "LPTokenSupply": "6692929290392087711259823" }, { "type": "redeemBassets", "inputQtys": [ - "827674221482159104", - "224603286124653728" - ], - "expectedQty": "1040484847522559647", - "swapFee": "624665707938298", - "reserves": [ - "2954474056823265404718305", - "4185896849643858448139355" - ], - "LPTokenSupply": "7053971628419309955822143" - }, - { - "type": "mintMulti", - "inputQtys": [ - "78384236249199263744", - "68148109714606047232" + "1047682587180948652032", + "1715014071831501996032" ], - "expectedQty": "144801830852627839188", + "expectedQty": "2738355969045491029733", + "swapFee": "1643999981416144304", "reserves": [ - "2954552441059514603982049", - "4185964997753573054186587" + "1993414621810675091732094", + "4760682291321997285850117" ], - "LPTokenSupply": "7054116430250162583661331" + "LPTokenSupply": "6690189454823058945700215" }, { - "type": "redeemBassets", - "inputQtys": [ - "212177020597821440000", - "205271050017512325120" + "type": "redeemMasset", + "inputQty": "20023397147115932", + "expectedQtys": [ + "5962608975599966", + "14239931146101693" ], - "expectedQty": "412491436718516436001", - "swapFee": "247643448099969843", + "redemptionFee": "12014038288269", "reserves": [ - "2954340264038916782542049", - "4185759726703555541861467" + "1993414615848066116132128", + "4760682277082066139748424" ], - "LPTokenSupply": "7053703715934340777252470" + "LPTokenSupply": "6690189434800863202413109" }, { - "type": "redeemBassets", - "inputQtys": [ - "1203886931408069328896", - "559964649353088663552" - ], - "expectedQty": "1743645258772742639131", - "swapFee": "1046815244410291758", + "type": "redeem", + "inputIndex": 0, + "inputQty": "107515108641118361747456", + "expectedQty": "107851459066749154587294", + "swapFee": "64509065184671017048", "reserves": [ - "2953136377107508713213153", - "4185199762054202453197915" + "1885563156781316961544834", + "4760682277082066139748424" ], - "LPTokenSupply": "7051959128541848065350755" + "LPTokenSupply": "6582680777066263307767357" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "3525071725431070654464", - "outputIndex": 1, - "expectedQty": "3530784325402111600171", - "swapFee": "2789891647252876811", + "inputQty": "2912272746769564041216", + "expectedQty": "2920506020669525808669", + "swapFee": "1747363648061738424", "reserves": [ - "2956661448832939783867617", - "4181668977728800341597744" + "1882642650760647435736165", + "4760682277082066139748424" ], - "LPTokenSupply": "7051959407531012790638436", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6579768679055858549899983" }, { "type": "redeemMasset", - "inputQty": "59144451838929996", + "inputQty": "31288470594081918025728", "expectedQtys": [ - "24782502066799297", - "35050418141089657" + "8947072318719532835740", + "22624669956505144407138" ], - "redemptionFee": "35486671103357", + "redemptionFee": "18773082356449150815", "reserves": [ - "2956661424050437717068320", - "4181668942678382200508087" + "1873695578441927902900425", + "4738057607125560995341286" ], - "LPTokenSupply": "7051959348390109618818775" + "LPTokenSupply": "6548482085770012276789336" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "1238765671506936576", - "outputIndex": 1, - "expectedQty": "1240763507528534149", - "swapFee": "980405153896928", + "inputQty": "44658514240187882536960", + "expectedQty": "44500393493202688334112", + "reserves": [ + "1918354092682115785437385", + "4738057607125560995341286" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "29333203110214569984", + "outputIndex": 0, + "expectedQty": "29090729940366435560", + "swapFee": "0", "reserves": [ - "2956662662816109224004896", - "4181667701914874671973938" + "1918325001952175419001825", + "4738086940328671209911270" ], - "LPTokenSupply": "7051959348488150134208467", + "LPTokenSupply": "6592982479263214965123448", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "108441420032126078156", - "expectedQtys": [ - "45438764896144161960", - "64264962645461989415" + "type": "redeemBassets", + "inputQtys": [ + "54553946345464481710080", + "19697115113277957865472" ], - "redemptionFee": "65064852019275646", + "expectedQty": "73822748101640447033826", + "swapFee": "44320241005587620792", "reserves": [ - "2956617224051213079842936", - "4181603436952229209984523" + "1863771055606710937291745", + "4718389825215393252045798" ], - "LPTokenSupply": "7051850913574603210057875" + "LPTokenSupply": "6519119842944669489230908" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "667737886515986304", - "expectedQty": "676186279845458276", - "swapFee": "400642731909591", + "type": "redeemMasset", + "inputQty": "6011229607605325824", + "expectedQtys": [ + "1717537625869530832", + "4348180015967309193" + ], + "redemptionFee": "3606737764563195", "reserves": [ - "2956617224051213079842936", - "4181602760765949364526247" + "1863769338069085067760913", + "4718385477035377284736605" ], - "LPTokenSupply": "7051850245876780967262530" + "LPTokenSupply": "6519113832075735660361403" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "126243946725057396736", - "expectedQty": "127841211738742181141", - "swapFee": "75746368035034438", + "type": "redeemBassets", + "inputQtys": [ + "8365824025246822400", + "7764042158448758784" + ], + "expectedQty": "16008089888995598818", + "swapFee": "9610620305580707", "reserves": [ - "2956617224051213079842936", - "4181474919554210622345106" + "1863760972245059820938513", + "4718377712993218835977821" ], - "LPTokenSupply": "7051724009504692713369237" + "LPTokenSupply": "6519097815336288389739947" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "187084777605882478592", - "expectedQty": "189451792683187122305", - "swapFee": "112250866563529487", + "inputQty": "6466775865999994388480", + "expectedQty": "6541476595064235399790", + "swapFee": "3880065519599996633", "reserves": [ - "2956617224051213079842936", - "4181285467761527435222801" + "1863760972245059820938513", + "4711836236398154600578031" ], - "LPTokenSupply": "7051536935952173487243593" + "LPTokenSupply": "6512631427476840355351130" }, { "type": "mintMulti", "inputQtys": [ - "1640812834455732617216", - "4892949762728798453760" + "32665249071959650598912", + "126475682333139035750400" ], - "expectedQty": "6452165501739427489557", + "expectedQty": "157509311334545692632493", "reserves": [ - "2958258036885668812460152", - "4186178417524256233676561" + "1896426221317019471537425", + "4838311918731293636328431" ], - "LPTokenSupply": "7057989101453912914733150" + "LPTokenSupply": "6670140738811386047983623" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "13260247453776914415616", - "expectedQty": "13395505016360082170027", - "swapFee": "7956148472266148649", + "type": "redeemBassets", + "inputQtys": [ + "11538874594378106535936", + "4884700994342940049408" + ], + "expectedQty": "16326689685074179019063", + "swapFee": "9801894948013315400", "reserves": [ - "2944862531869308730290125", - "4186178417524256233676561" + "1884887346722641365001489", + "4833427217736950696279023" ], - "LPTokenSupply": "7044729649614983226932398" + "LPTokenSupply": "6653805227420858656980699" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8541177580800144572416", - "expectedQty": "8649362662645400014119", - "swapFee": "5124706548480086743", + "type": "mint", + "inputIndex": 0, + "inputQty": "15571045000216778752", + "expectedQty": "15520235372342165589", "reserves": [ - "2944862531869308730290125", - "4177529054861610833662442" - ], - "LPTokenSupply": "7036188984504837930368656" + "1884902917767641581780241", + "4833427217736950696279023" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "7220838910084728750080", + "inputQty": "13021778725574023168", "outputIndex": 0, - "expectedQty": "7203163701544592169907", + "expectedQty": "12906669208481682883", "swapFee": "0", "reserves": [ - "2937659368167764138120218", - "4184749893771695562412522" + "1884890011098433100097358", + "4833440239515676270302191" ], - "LPTokenSupply": "7036188984504837930368656", + "LPTokenSupply": "6653820747656230999146288", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "152256111100131115008", - "40469257831619035136" + "31481161668102", + "12454150444285" ], - "expectedQty": "190569711820282875050", - "swapFee": "114410473376195442", + "expectedQty": "43682216682931", + "swapFee": "26225065048", "reserves": [ - "2937507112056664007005210", - "4184709424513863943377386" + "1884890011066951938429256", + "4833440239503222119857906" ], - "LPTokenSupply": "7035998311823591608917707" + "LPTokenSupply": "6653820747612525179904812" }, { - "type": "redeemMasset", - "inputQty": "4070320674952603238", - "expectedQtys": [ - "1698326441236579030", - "2419399304728120892" - ], - "redemptionFee": "2442192404971561", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8082617642843032780800", + "expectedQty": "8104013124755946614764", + "swapFee": "4849570585705819668", "reserves": [ - "2937505413730222770426180", - "4184707005114559215256494" + "1876785997942195991814492", + "4833440239503222119857906" ], - "LPTokenSupply": "7035994241747135896811625" + "LPTokenSupply": "6645738614926740717705978" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "6176715076344630738944", - "outputIndex": 1, - "expectedQty": "6186934201723131975041", - "swapFee": "4888608784552418878", + "type": "redeemMasset", + "inputQty": "41919617063184", + "expectedQtys": [ + "11831182417627", + "30469810218623" + ], + "redemptionFee": "25151770237", "reserves": [ - "2943682128806567401165124", - "4178520070912836083281453" + "1876785997930364809396865", + "4833440239472752309639283" ], - "LPTokenSupply": "7035994730608014352053512", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6645738614884823615819817" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6774269239954214223872", - "13766804429030736003072" + "134161143007813", + "170366852881943" ], - "expectedQty": "20288314341885209595722", - "swapFee": "12180296783201046385", + "expectedQty": "302036345361236", "reserves": [ - "2936907859566613186941252", - "4164753266483805347278381" + "1876785998064525952404678", + "4833440239643119162521226" ], - "LPTokenSupply": "7015695453999024261516042" + "LPTokenSupply": "6645738615186859961181053" }, { - "type": "mintMulti", - "inputQtys": [ - "25486764172710808387584", - "18319836164354226520064" - ], - "expectedQty": "43293914674189102907729", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1116281543884768768", + "expectedQty": "1119209563722833343", + "swapFee": "669768926330861", "reserves": [ - "2962394623739323995328836", - "4183073102648159573798445" + "1876784878854962229571335", + "4833440239643119162521226" ], - "LPTokenSupply": "7058989368673213364423771" + "LPTokenSupply": "6645737498972292969045371" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "54643459889176", - "expectedQty": "55334758234045", - "swapFee": "32786075933", + "inputIndex": 0, + "inputQty": "11591783488565467136", + "expectedQty": "11622188423593913831", + "swapFee": "6955070093139280", "reserves": [ - "2962394623739323995328836", - "4183073102592824815564400" + "1876773256666538635657504", + "4833440239643119162521226" ], - "LPTokenSupply": "7058989368618573183142188" + "LPTokenSupply": "6645725907884311412892163" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "87551314460610368", - "expectedQty": "86613243873719611", + "inputQty": "2746415950291832320", + "outputIndex": 1, + "expectedQty": "2768883806048679566", + "swapFee": "2190070043517926", "reserves": [ - "2962394711290638455939204", - "4183073102592824815564400" - ] + "1876776003082488927489824", + "4833437470759313113841660" + ], + "LPTokenSupply": "6645725908103318417243955", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "6742565391099389952", - "7745420310481216512" + "65033899714799619538944", + "175965176415280022159360" ], - "expectedQty": "14314389430656661361", - "swapFee": "8593789932353408", + "expectedQty": "238661969744629733309245", + "swapFee": "143283151737820532304", "reserves": [ - "2962387968725247356549252", - "4183065357172514334347888" + "1811742103367689307950880", + "4657472294344033091682300" ], - "LPTokenSupply": "7058975133107975461082369" + "LPTokenSupply": "6406934983522124645455635" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "191777398857949941596160", - "expectedQty": "189696415575222781800530", + "inputQty": "3980566170893677568", + "outputIndex": 1, + "expectedQty": "4013013794212796864", + "swapFee": "3174086358300173", "reserves": [ - "3154165367583197298145412", - "4183065357172514334347888" - ] + "1811746083933860201628448", + "4657468281330238878885436" + ], + "LPTokenSupply": "6406934983839533281285652", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "230249047465268969472", - "expectedQty": "233115845245601201148", - "swapFee": "138149428479161381", + "type": "redeemBassets", + "inputQtys": [ + "5107043427512813568", + "5176723766341634048" + ], + "expectedQty": "10204474451735907290", + "swapFee": "6126360487333944", "reserves": [ - "3154165367583197298145412", - "4182832241327268733146740" + "1811740976890432688814880", + "4657463104606472537251388" ], - "LPTokenSupply": "7248441313450675821829565" + "LPTokenSupply": "6406924773851357106777811" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "293554532441263341568", - "outputIndex": 1, - "expectedQty": "293886625883830125417", - "swapFee": "232264578453155142", + "inputQty": "197736839580935142768640", + "expectedQty": "198125418648179500391035", + "swapFee": "118642103748561085661", "reserves": [ - "3154458922115638561486980", - "4182538354701384903021323" + "1613615558242253188423845", + "4657463104606472537251388" ], - "LPTokenSupply": "7248441336677133667145079", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6209199798480796820117737" }, { - "type": "redeemMasset", - "inputQty": "45424230239899910144", - "expectedQtys": [ - "19756370837253509694", - "26195230566228796110" - ], - "redemptionFee": "27254538143939946", + "type": "mint", + "inputIndex": 0, + "inputQty": "2173966117484582141952", + "expectedQty": "2170029496226360422716", "reserves": [ - "3154439165744801307977286", - "4182512159470818674225213" - ], - "LPTokenSupply": "7248395915172347581628929" + "1615789524359737770565797", + "4657463104606472537251388" + ] }, { - "type": "redeemMasset", - "inputQty": "236447504603501559808", - "expectedQtys": [ - "102838167551266723528", - "136354471790649818341" + "type": "mintMulti", + "inputQtys": [ + "107572337407847382908928", + "117587876920433525653504" ], - "redemptionFee": "141868502762100935", + "expectedQty": "223458044003496828727682", "reserves": [ - "3154336327577250041253758", - "4182375804999028024406872" + "1723361861767585153474725", + "4775050981526906062904892" ], - "LPTokenSupply": "7248159481854594356279214" + "LPTokenSupply": "6434827871980520009268135" }, { "type": "redeemBassets", "inputQtys": [ - "14092042458026184015872", - "7891598235380239826944" + "40553911059786384", + "121593623942134704" ], - "expectedQty": "21727196638931984422167", - "swapFee": "13044144470041215382", + "expectedQty": "160536233098017646", + "swapFee": "96379567599370", "reserves": [ - "3140244285119223857237886", - "4174484206763647784579928" + "1723361821213674093688341", + "4775050859933282120770188" ], - "LPTokenSupply": "7226420545485639334763202" + "LPTokenSupply": "6434827711357545300411055" }, { "type": "mintMulti", "inputQtys": [ - "5163424563341980336128", - "5084344010533281726464" + "1593929006872932096", + "242341362843521760" + ], + "expectedQty": "1829493019455951886", + "reserves": [ + "1723363415142680966620437", + "4775051102274644964291948" ], - "expectedQty": "10125521453673981620061", + "LPTokenSupply": "6434829540850564756362941" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "9031826922620112076800", + "outputIndex": 1, + "expectedQty": "9116400404070858264278", + "swapFee": "7208186666921238653", "reserves": [ - "3145407709682565837574014", - "4179568550774181066306392" + "1732395242065301078697237", + "4765934701870574106027670" ], - "LPTokenSupply": "7236546066939313316383263" + "LPTokenSupply": "6434830261669231448486806", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "22778326192522874880", - "expectedQty": "22528328702034790438", + "inputQty": "18285580434270926667776", + "expectedQty": "18239538151248513744043", "reserves": [ - "3145430488008758360448894", - "4179568550774181066306392" + "1750680822499572005365013", + "4765934701870574106027670" ] }, { - "type": "redeemMasset", - "inputQty": "171269599879681094451", - "expectedQtys": [ - "74398989530754479047", - "98859497304921246231" - ], - "redemptionFee": "102761759927808656", + "type": "mint", + "inputIndex": 0, + "inputQty": "166711454759978958848", + "expectedQty": "166280447293859679652", "reserves": [ - "3145356089019227605969847", - "4179469691276876145060161" - ], - "LPTokenSupply": "7236397335944311662860115" + "1750847533954331984323861", + "4765934701870574106027670" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "65407791960708813422592", - "expectedQty": "66091012652008632500744", - "swapFee": "39244675176425288053", + "inputIndex": 1, + "inputQty": "267874519984384573440", + "expectedQty": "271070538339241159650", + "swapFee": "160724711990630744", "reserves": [ - "3079265076367218973469103", - "4179469691276876145060161" + "1750847533954331984323861", + "4765663631332234864868020" ], - "LPTokenSupply": "7170993468451120491966328" + "LPTokenSupply": "6452968221820260636400135" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "13800281697589997568", - "outputIndex": 0, - "expectedQty": "13771300252590051160", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "33761922944654001569792", + "expectedQtys": [ + "9154936195365571618755", + "24918986734888821609761" + ], + "redemptionFee": "20257153766792400941", "reserves": [ - "3079251305066966383417943", - "4179483491558573735057729" + "1741692597758966412705106", + "4740744644597346043258259" ], - "LPTokenSupply": "7170993468451120491966328", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6419208324590983314070437" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3195190193582905", - "expectedQty": "3153752181285578", + "type": "mintMulti", + "inputQtys": [ + "35632030468444436561920", + "24943264091042735980544" + ], + "expectedQty": "60171580853402950541831", "reserves": [ - "3079251305066966383417943", - "4179483494753763928640634" - ] + "1777324628227410849267026", + "4765687908688388779238803" + ], + "LPTokenSupply": "6479379905444386264612268" }, { - "type": "redeemBassets", - "inputQtys": [ - "4683449787818133504", - "16813729092571908096" + "type": "redeemMasset", + "inputQty": "5143025533571318153216", + "expectedQtys": [ + "1409909834300035313827", + "3780508154194552397069" ], - "expectedQty": "21228113304079269532", - "swapFee": "12744514691262319", + "redemptionFee": "3085815320142790891", "reserves": [ - "3079246621617178565284439", - "4179466681024671356732538" + "1775914718393110813953199", + "4761907400534194226841734" ], - "LPTokenSupply": "7170972232021505371846285" + "LPTokenSupply": "6474237188492346960738141" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "65646507045501886464", - "expectedQty": "66469146940096406793", - "swapFee": "39387904227301131", + "inputQty": "2943287883517983195136", + "expectedQty": "2907031056221108017923", "reserves": [ - "3079246621617178565284439", - "4179400211877731260325745" - ], - "LPTokenSupply": "7170906589453250292689934" + "1775914718393110813953199", + "4764850688417712210036870" + ] }, { "type": "redeemBassets", "inputQtys": [ - "46898403276445671424", - "88306988224216563712" + "5417988015300926242816", + "12884344821725098147840" ], - "expectedQty": "133549349025878555034", - "swapFee": "80177716045154225", + "expectedQty": "18128594257365091139150", + "swapFee": "10883686766478942048", "reserves": [ - "3079199723213902119613015", - "4179311904889507043762033" + "1770496730377809887710383", + "4751966343595987111889030" ], - "LPTokenSupply": "7170772967944279973496096" + "LPTokenSupply": "6459005829973113146569069" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2292638766558365089792", - "expectedQty": "2262904011128351284717", + "inputIndex": 0, + "inputQty": "8493303102781361", + "expectedQty": "8469802948542921", "reserves": [ - "3079199723213902119613015", - "4181604543656065408851825" + "1770496738871112990491744", + "4751966343595987111889030" ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "304546485308085829632", - "outputIndex": 0, - "expectedQty": "303905536873218492337", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "10279713718526812160", + "outputIndex": 1, + "expectedQty": "10370869175636590812", + "swapFee": "8201016295349702", "reserves": [ - "3078895817677028901120678", - "4181909090141373494681457" + "1770507018584831517303904", + "4751955972726811475298218" ], - "LPTokenSupply": "7173035871955408324780813", + "LPTokenSupply": "6459005839263017724646960", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "9588598006366563467264", - "24390442342782941003776" - ], - "expectedQty": "33558215216144786915590", + "type": "redeem", + "inputIndex": 0, + "inputQty": "224113663838579968", + "expectedQty": "224600666340404555", + "swapFee": "134468198303147", "reserves": [ - "3088484415683395464587942", - "4206299532484156435685233" + "1770506793984165176899349", + "4751955972726811475298218" ], - "LPTokenSupply": "7206594087171553111696403" + "LPTokenSupply": "6459005615162800705897306" }, { "type": "mintMulti", "inputQtys": [ - "1723407588107694112768", - "10593317199402040819712" + "189180193117851975680", + "397019346778168688640" ], - "expectedQty": "12160458199293763601737", + "expectedQty": "580783619098549035365", "reserves": [ - "3090207823271503158700710", - "4216892849683558476504945" + "1770695974177283028875029", + "4752352992073589643986858" ], - "LPTokenSupply": "7218754545370846875298140" + "LPTokenSupply": "6459586398781899254932671" }, { - "type": "redeemBassets", - "inputQtys": [ - "1607368134948534616064", - "3196639478603078172672" - ], - "expectedQty": "4745027399942802154674", - "swapFee": "2848725675370903835", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4603258858946342420480", + "expectedQty": "4613188621756018417079", + "swapFee": "2761955315367805452", "reserves": [ - "3088600455136554624084646", - "4213696210204955398332273" + "1766082785555527010457950", + "4752352992073589643986858" ], - "LPTokenSupply": "7214006954117796239330013" + "LPTokenSupply": "6454983416118484449292736" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "124580563080477786112", - "expectedQty": "126143804730178398223", - "swapFee": "74748337848286671", + "inputQty": "27021299198464165412864", + "expectedQty": "27341993920516477774966", + "swapFee": "16212779519078499247", "reserves": [ - "3088600455136554624084646", - "4213570066400225219934050" + "1766082785555527010457950", + "4725010998153073166211892" ], - "LPTokenSupply": "7213882381029549546372568" + "LPTokenSupply": "6427963738197972191729796" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "94707325732781588480", - "expectedQty": "95690701928351048408", - "swapFee": "56824395439668953", - "reserves": [ - "3088504764434626273036238", - "4213570066400225219934050" - ], - "LPTokenSupply": "7213787679386256308750983" - }, - { - "type": "mintMulti", - "inputQtys": [ - "34771150432709415796736", - "21123461896987828289536" - ], - "expectedQty": "55242091851549434293281", + "inputQty": "9623739607375998353408", + "expectedQty": "9644731022862028225249", + "swapFee": "5774243764425599012", "reserves": [ - "3123275914867335688832974", - "4234693528297213048223586" + "1756438054532664982232701", + "4725010998153073166211892" ], - "LPTokenSupply": "7269029771237805743044264" + "LPTokenSupply": "6418340576014972635936289" }, { "type": "redeemBassets", "inputQtys": [ - "409790010773739840", - "367913133885197888" - ], - "expectedQty": "768467510387964400", - "swapFee": "461357320625153", - "reserves": [ - "3123275505077324915093134", - "4234693160384079163025698" - ], - "LPTokenSupply": "7269029002355073766517225" - }, - { - "type": "redeemMasset", - "inputQty": "128079876145661441841561", - "expectedQtys": [ - "54998916978545553076823", - "74570282762106994330054" + "3618496521002044882944", + "13048937350392207900672" ], - "redemptionFee": "76847925687396865104", + "expectedQty": "16496533119006986371064", + "swapFee": "9903862188717422276", "reserves": [ - "3068276588098779362016311", - "4160122877621972168695644" + "1752819558011662937349757", + "4711962060802680958311220" ], - "LPTokenSupply": "7140956811001981064362174" + "LPTokenSupply": "6401835129419995803885175" }, { - "type": "mintMulti", - "inputQtys": [ - "5288652121584592896", - "24611976755712925696" - ], - "expectedQty": "29523597675862678817", + "type": "redeem", + "inputIndex": 1, + "inputQty": "231855601672096317440", + "expectedQty": "234610394771990956159", + "swapFee": "139113361003257790", "reserves": [ - "3068281876750900946609207", - "4160147489598727881621340" + "1752819558011662937349757", + "4711727450407908967355061" ], - "LPTokenSupply": "7140986334599656927040991" + "LPTokenSupply": "6401603287729659807893514" }, { "type": "mint", "inputIndex": 0, - "inputQty": "185073890037701246976", - "expectedQty": "183055428615924822080", - "reserves": [ - "3068466950640938647856183", - "4160147489598727881621340" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "153667976968714372251648", - "expectedQty": "151665366010682809728028", + "inputQty": "7589940835558140936192", + "expectedQty": "7568844331968571876565", "reserves": [ - "3068466950640938647856183", - "4313815466567442253872988" + "1760409498847221078285949", + "4711727450407908967355061" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "120651776562261584248832", - "expectedQty": "119067423632212739002059", + "inputQty": "80384132783762286051328", + "expectedQty": "81334312469064870450023", + "swapFee": "48230479670257371630", "reserves": [ - "3068466950640938647856183", - "4434467243129703838121820" - ] + "1760409498847221078285949", + "4630393137938844096905038" + ], + "LPTokenSupply": "6328792822325833119455914" }, { - "type": "mintMulti", - "inputQtys": [ - "191021919400770666496", - "109122502223121514496" + "type": "redeemMasset", + "inputQty": "10498304149900960464896", + "expectedQtys": [ + "2918443702803447813267", + "7676362632541499631334" ], - "expectedQty": "296676721617648698598", + "redemptionFee": "6298982489940576278", "reserves": [ - "3068657972560339418522679", - "4434576365631926959636316" + "1757491055144417630472682", + "4622716775306302597273704" ], - "LPTokenSupply": "7412198856392786049291756" + "LPTokenSupply": "6318295148074181153048645" }, { - "type": "redeemBassets", - "inputQtys": [ - "17998244675002170343424", - "11603722080481531920384" - ], - "expectedQty": "29257891955700852073780", - "swapFee": "17565274338023325239", + "type": "swap", + "inputIndex": 1, + "inputQty": "332018256338223254994944", + "outputIndex": 0, + "expectedQty": "328099169500139231195632", + "swapFee": "0", "reserves": [ - "3050659727885337248179255", - "4422972643551445427715932" + "1429391885644278399277050", + "4954735031644525852268648" ], - "LPTokenSupply": "7382925155690180976225259" + "LPTokenSupply": "6318295148074181153048645", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "19601437580206191411", + "inputQty": "31832212559159719310131", "expectedQtys": [ - "8094547429997044945", - "11735809640632673262" + "7197100617280692259320", + "24947480752374611628126" ], - "redemptionFee": "11760862548123714", + "redemptionFee": "19099327535495831586", "reserves": [ - "3050651633337907251134310", - "4422960907741804795042670" + "1422194785026997707017730", + "4929787550892151240640522" ], - "LPTokenSupply": "7382905555428687024846219" + "LPTokenSupply": "6286464845447774983321672" }, { "type": "mintMulti", "inputQtys": [ - "19668458273087148032", - "20719558684263223296" + "12703103691634124800", + "458525649984207936" ], - "expectedQty": "39906015049487941695", + "expectedQty": "13171415863908555355", "reserves": [ - "3050671301796180338282342", - "4422981627300489058265966" + "1422207488130689341142530", + "4929788009417801224848458" ], - "LPTokenSupply": "7382945461443736512787914" + "LPTokenSupply": "6286478016863638891877027" }, { - "type": "redeemMasset", - "inputQty": "2101233403106062814412", - "expectedQtys": [ - "867719580379196469532", - "1258053517403328547669" - ], - "redemptionFee": "1260740041863637688", - "reserves": [ - "3049803582215801141812810", - "4421723573783085729718297" + "type": "redeemBassets", + "inputQtys": [ + "125018989241583091712", + "98592944567261954048" ], - "LPTokenSupply": "7380844354114634636337270" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "22754474523528636", - "expectedQty": "22984801995796005", - "swapFee": "13652684714117", + "expectedQty": "222423679965803147298", + "swapFee": "133534328576627865", "reserves": [ - "3049803559230999146016805", - "4421723573783085729718297" + "1422082469141447758050818", + "4929689416473233962894410" ], - "LPTokenSupply": "7380844331361525381280045" + "LPTokenSupply": "6286255473002777369764649" }, { "type": "redeemBassets", "inputQtys": [ - "5701653550126179811328", - "18425541871320669618176" + "11009016170648549376", + "36101315337138397184" ], - "expectedQty": "23823731026352621714282", - "swapFee": "14302820307996370851", + "expectedQty": "46631290962634831825", + "swapFee": "27995571920733339", "reserves": [ - "3044101905680872966205477", - "4403298031911765060100121" + "1422071460125277109501442", + "4929653315157896824497226" ], - "LPTokenSupply": "7357007727796895562831996" + "LPTokenSupply": "6286208816515800006272817" }, { "type": "redeemMasset", - "inputQty": "3387994972306233150668", + "inputQty": "26870117574582547", "expectedQtys": [ - "1401006263935270203626", - "2026557689533853438543" + "6074933511004640", + "21058938992594384" ], - "redemptionFee": "2032796983383739890", + "redemptionFee": "16122070544749", "reserves": [ - "3042700899416937696001851", - "4401271474222231206661578" + "1422071454050343598496802", + "4929653294098957831902842" ], - "LPTokenSupply": "7353619936104287668055317" + "LPTokenSupply": "6286208789647294638744744" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "535044646471815488", - "expectedQty": "541866394511316976", - "swapFee": "321026787883089", + "type": "swap", + "inputIndex": 0, + "inputQty": "48831073896744853504", + "outputIndex": 1, + "expectedQty": "49530009985682850611", + "swapFee": "39114244236021371", "reserves": [ - "3042700899416937696001851", - "4401270932355836695344602" + "1422120285124240343350306", + "4929603764088972149052231" ], - "LPTokenSupply": "7353619401091743875028137" + "LPTokenSupply": "6286208793558719062346881", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "20366916382415273984", + "inputQty": "110667956592960", "expectedQtys": [ - "8422145498181836369", - "12182644760226851285" + "25021236370269", + "86733015683177" ], - "redemptionFee": "12220149829449164", + "redemptionFee": "66400773955", "reserves": [ - "3042692477271439514165482", - "4401258749711076468493317" + "1422120285099219106980037", + "4929603764002239133369054" ], - "LPTokenSupply": "7353599035397376442699069" + "LPTokenSupply": "6286208793448057745831316" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1660917800529333583872", - "7560393581621750530048" + "96659777961489645568", + "16875498207886989312" ], - "expectedQty": "9104010173200120809621", - "swapFee": "5465685515229210011", + "expectedQty": "113426929665917666635", "reserves": [ - "3041031559470910180581610", - "4393698356129454717963269" + "1422216944877180596625605", + "4929620639500447020358366" ], - "LPTokenSupply": "7344490106107212615600437" + "LPTokenSupply": "6286322220377723663497951" }, { - "type": "redeemBassets", - "inputQtys": [ - "370811127634969", - "205545820551629120" - ], - "expectedQty": "203203846599294638", - "swapFee": "121995505262734", + "type": "mint", + "inputIndex": 1, + "inputQty": "71019262718725996544", + "expectedQty": "70049538931548507086", "reserves": [ - "3041031559100099052946641", - "4393698150583634166334149" - ], - "LPTokenSupply": "7344489902793570061569337" + "1422216944877180596625605", + "4929691658763165746354910" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "516778264207703670784", - "453813978858343759872" + "1000556411169542272", + "16744597608008521728" ], - "expectedQty": "959116495165967851370", - "swapFee": "575815386331379538", + "expectedQty": "17517779509886242013", "reserves": [ - "3040514780835891349275857", - "4393244336604775822574277" + "1422217945433591766167877", + "4929708403360773754876638" ], - "LPTokenSupply": "7343530268064556395476381" + "LPTokenSupply": "6286409787696165098247050" }, { - "type": "redeemBassets", - "inputQtys": [ - "18429573174648576000", - "24914381268013350912" - ], - "expectedQty": "42819643292629345623", - "swapFee": "25707210301758662", + "type": "redeem", + "inputIndex": 1, + "inputQty": "210634727072722714624", + "expectedQty": "213422482842373958296", + "swapFee": "126380836243633628", "reserves": [ - "3040496351262716700699857", - "4393219422223507809223365" + "1422217945433591766167877", + "4929494980877931380918342" ], - "LPTokenSupply": "7343487425284774494547961" + "LPTokenSupply": "6286199165607175999895788" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "162551200652083433832448", - "expectedQty": "160803797747809407066708", + "inputIndex": 1, + "inputQty": "5852424689805320781824", + "expectedQty": "5772494502448981390018", "reserves": [ - "3203047551914800134532305", - "4393219422223507809223365" + "1422217945433591766167877", + "4935347405567736701700166" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "8625234138137968640", - "13379287102986686464" - ], - "expectedQty": "21736683030950340170", - "swapFee": "13049839722403646", + "type": "mint", + "inputIndex": 0, + "inputQty": "1622351122932507392", + "expectedQty": "1624436641480971868", "reserves": [ - "3203038926680661996563665", - "4393206042936404822536901" - ], - "LPTokenSupply": "7504269474604697201111216" + "1422219567784714698675269", + "4935347405567736701700166" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "23106276478341240324096", - "expectedQty": "22805329765924033644042", + "inputQty": "2108380085474966372352", + "expectedQty": "2079574849289428955092", "reserves": [ - "3203038926680661996563665", - "4416312319414746062860997" + "1422219567784714698675269", + "4937455785653211668072518" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "13296778096761319424", - "expectedQty": "13123486283903083280", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3505148277373611278336", + "expectedQty": "3498431826165577872418", + "swapFee": "2103088966424166767", "reserves": [ - "3203038926680661996563665", - "4416325616192842824180421" - ] + "1418721135958549120802851", + "4937455785653211668072518" + ], + "LPTokenSupply": "6290547921427078922351106" }, { - "type": "redeemMasset", - "inputQty": "5353425516585952477184", - "expectedQtys": [ - "2276702776261722444050", - "3139100404777703595790" + "type": "mintMulti", + "inputQtys": [ + "45237541273702542344192", + "20173663986501464096768" ], - "redemptionFee": "3212055309951571486", + "expectedQty": "65185339002995580629509", "reserves": [ - "3200762223904400274119615", - "4413186515788065120584631" + "1463958677232251663147043", + "4957629449639713132169286" ], - "LPTokenSupply": "7521734823545850180518502" + "LPTokenSupply": "6355733260430074502980615" }, { "type": "redeemMasset", - "inputQty": "128407298330721817", + "inputQty": "383374991649158463488", "expectedQtys": [ - "54609028192129106", - "75294511119234144" + "88252350372123277170", + "298862569011809153908" ], - "redemptionFee": "77044378998433", + "redemptionFee": "230024994989495078", "reserves": [ - "3200762169295372081990509", - "4413186440493554001350487" + "1463870424881879539869873", + "4957330587070701323015378" ], - "LPTokenSupply": "7521734695146256287696528" + "LPTokenSupply": "6355349908440924843466634" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "189635284673993736192", - "expectedQty": "191598441341602468254", - "swapFee": "113781170804396241", + "type": "swap", + "inputIndex": 1, + "inputQty": "269410123856316497920", + "outputIndex": 0, + "expectedQty": "265551743695431062883", + "swapFee": "0", "reserves": [ - "3200570570854030479522255", - "4413186440493554001350487" + "1463604873138184108806990", + "4957599997194557639513298" ], - "LPTokenSupply": "7521545071239699374399960" + "LPTokenSupply": "6355349908440924843466634", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1568801666089207201792", - "expectedQty": "1585040444878951537799", - "swapFee": "941280999653524321", + "type": "redeemMasset", + "inputQty": "3698099816420433985536", + "expectedQtys": [ + "851142652481233400227", + "2883035502953495127676" + ], + "redemptionFee": "2218859889852260391", "reserves": [ - "3198985530409151527984456", - "4413186440493554001350487" + "1462753730485702875406763", + "4954716961691604144385622" ], - "LPTokenSupply": "7519976363701710132550600" + "LPTokenSupply": "6351652030510493394707137" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "8926327490370281", - "expectedQty": "9038791012209159", - "swapFee": "5355796494222", + "inputQty": "9993661984505636864", + "expectedQty": "9858509241894159691", "reserves": [ - "3198985530409151527984456", - "4413186431454762989141328" - ], - "LPTokenSupply": "7519976354775918221829741" + "1462753730485702875406763", + "4954726955353588650022486" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "36652870118878816", + "expectedQty": "36157182149980753", + "reserves": [ + "1462753730485702875406763", + "4954726992006458768901302" + ] }, { "type": "redeemBassets", "inputQtys": [ - "8209604501958345883648", - "1980327141118134452224" + "2992201069482047176704", + "6664086222117956222976" ], - "expectedQty": "10075174147450939893559", - "swapFee": "6048733728707788609", + "expectedQty": "9568600611370818361278", + "swapFee": "5744607131101151707", "reserves": [ - "3190775925907193182100808", - "4411206104313644854689104" + "1459761529416220828230059", + "4948062905784340812678326" ], - "LPTokenSupply": "7509895736768111444926432" + "LPTokenSupply": "6342088154419128629449765" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "7276183203058109382656", - "outputIndex": 1, - "expectedQty": "7286554143122373467800", - "swapFee": "5757879956921658601", + "inputIndex": 1, + "inputQty": "19359148244387772760064", + "outputIndex": 0, + "expectedQty": "19077434093441458164974", + "swapFee": "0", "reserves": [ - "3198052109110251291483464", - "4403919550170522481221304" + "1440684095322779370065085", + "4967422054028728585438390" ], - "LPTokenSupply": "7509896312556107137092292", + "LPTokenSupply": "6342088154419128629449765", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "27063701440955839361843", - "expectedQtys": [ - "11518028105457758025443", - "15861051484602392883735" + "type": "redeemBassets", + "inputQtys": [ + "4090910316674152398848", + "17007790486940188409856" ], - "redemptionFee": "16238220864573503617", + "expectedQty": "20871695404098879535522", + "swapFee": "12530535563797606285", "reserves": [ - "3186534081004793533458021", - "4388058498685920088337569" + "1436593185006105217666237", + "4950414263541788397028534" ], - "LPTokenSupply": "7482834234937237755080810" + "LPTokenSupply": "6321205181533022332068585" }, { - "type": "mintMulti", - "inputQtys": [ - "32925030195926348595200", - "27988944775170016411648" - ], - "expectedQty": "60191897644350621336376", + "type": "redeem", + "inputIndex": 0, + "inputQty": "186293819857514300178432", + "expectedQty": "185698919929124588722195", + "swapFee": "111776291914508580107", "reserves": [ - "3219459111200719882053221", - "4416047443461090104749217" + "1250894265076980628944042", + "4950414263541788397028534" ], - "LPTokenSupply": "7543026132581588376417186" + "LPTokenSupply": "6134922539304699482748163" }, { - "type": "redeemMasset", - "inputQty": "168625935188269780172", - "expectedQtys": [ - "71928502342185505063", - "98662436113912123174" + "type": "mint", + "inputIndex": 1, + "inputQty": "5502821921561492062208", + "expectedQty": "5423092552697247282957", + "reserves": [ + "1250894265076980628944042", + "4955917085463349889090742" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "43141391301516410880", + "31399253918535495680" ], - "redemptionFee": "101175561112961868", + "expectedQty": "74270354939621018042", "reserves": [ - "3219387182698377696548158", - "4415948781024976192626043" + "1250937406468282145354922", + "4955948484717268424586422" ], - "LPTokenSupply": "7542857516763956217933200" + "LPTokenSupply": "6140419902212336351049162" }, { "type": "redeemMasset", - "inputQty": "206220734490524411494", + "inputQty": "188319994037716805222", "expectedQtys": [ - "87964812449014981922", - "120659021193510110360" + "38341869572776628384", + "151902348932794095102" ], - "redemptionFee": "123732440694314646", + "redemptionFee": "112991996422630083", "reserves": [ - "3219299217885928681566236", - "4415828122003782682515683" + "1250899064598709368726538", + "4955796582368335630491320" ], - "LPTokenSupply": "7542651308402709762953170" + "LPTokenSupply": "6140231593517498276506948" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "148219142224111304704", - "outputIndex": 1, - "expectedQty": "148423823015178252055", - "swapFee": "117286884588956173", + "inputQty": "200711344282763558912", + "expectedQty": "199735191288563700038", + "swapFee": "120426806569658135", "reserves": [ - "3219447437028152792870940", - "4415679698180767504263628" + "1250699329407420805026500", + "4955796582368335630491320" ], - "LPTokenSupply": "7542651320131398221848787", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6140030894215896169913849" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "87336703542133929279488", - "expectedQty": "86382730873153078751098", - "reserves": [ - "3306784140570286722150428", - "4415679698180767504263628" - ] + "inputQty": "109627386866063758065664", + "hardLimitError": true }, { "type": "mintMulti", "inputQtys": [ - "2018535059627252383744", - "15046589459272602484736" + "56020461734940736", + "106306957539769600" ], - "expectedQty": "16848251881838453431261", + "expectedQty": "161026801552026612", "reserves": [ - "3308802675629913974534172", - "4430726287640040106748364" + "1250699385427882539967236", + "4955796688675293170260920" ], - "LPTokenSupply": "7645882302886389754031146" + "LPTokenSupply": "6140031055242697721940461" }, { - "type": "mintMulti", - "inputQtys": [ - "2276204283257666560", - "1107292934540588672" - ], - "expectedQty": "3344199287264660913", + "type": "swap", + "inputIndex": 1, + "inputQty": "48000428739718", + "outputIndex": 0, + "expectedQty": "47102844098216", + "swapFee": "0", "reserves": [ - "3308804951834197232200732", - "4430727394932974647337036" + "1250699385380779695869020", + "4955796688723293599000638" ], - "LPTokenSupply": "7645885647085677018692059" + "LPTokenSupply": "6140031055242697721940461", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2072262665535719473152", - "2199238872490915135488" + "98563452362367264", + "78118824858825632" ], - "expectedQty": "4220304125039954503697", + "expectedQty": "175972553009304210", "reserves": [ - "3310877214499732951673884", - "4432926633805465562472524" + "1250699483944232058236284", + "4955796766842118457826270" ], - "LPTokenSupply": "7650105951210716973195756" + "LPTokenSupply": "6140031231215250731244671" }, { "type": "mintMulti", "inputQtys": [ - "4032769659331", - "6669791600195" + "327177510055607232", + "807012994249366784" ], - "expectedQty": "10571989060940", + "expectedQty": "1123896601998658186", "reserves": [ - "3310877214503765721333215", - "4432926633812135354072719" + "1250699811121742113843516", + "4955797573855112707193054" ], - "LPTokenSupply": "7650105951221288962256696" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "423462173415600226304", - "expectedQty": "417980267286154219151", - "reserves": [ - "3310877214503765721333215", - "4433350095985550954299023" - ] + "LPTokenSupply": "6140032355111852729902857" }, { "type": "redeemMasset", - "inputQty": "88759602164644000563", + "inputQty": "13473573733596387737", "expectedQtys": [ - "38388981423860320770", - "51403837549368931181" + "2742865886048384589", + "10868385828968033739" ], - "redemptionFee": "53255761298786400", + "redemptionFee": "8084144240157832", "reserves": [ - "3310838825522341861012445", - "4433298692148001585367842" + "1250697068255856065458927", + "4955786705469283739159315" ], - "LPTokenSupply": "7650435177211986602353924" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "7779818094562711", - "expectedQty": "7679103690009357", - "reserves": [ - "3310838825522341861012445", - "4433298699927819679930553" - ] + "LPTokenSupply": "6140018882346533557530903" }, { - "type": "redeemMasset", - "inputQty": "19614541631955019366", - "expectedQtys": [ - "8483389514427605440", - "11359477669336461875" + "type": "mintMulti", + "inputQtys": [ + "2041504938610019840", + "688862688969464832" ], - "redemptionFee": "11768724979173011", + "expectedQty": "2729134268236480756", "reserves": [ - "3310830342132827433407005", - "4433287340450150343468678" + "1250699109760794675478767", + "4955787394331972708624147" ], - "LPTokenSupply": "7650415571526330835261216" + "LPTokenSupply": "6140021611480801794011659" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "11121054235816590", - "expectedQty": "11260151017251817", - "swapFee": "6672632541489", - "reserves": [ - "3310830342132827433407005", - "4433287329189999326216861" + "type": "mintMulti", + "inputQtys": [ + "20325020112980992000", + "44175103001306144768" ], - "LPTokenSupply": "7650415560405943862698774" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "55766831691966", - "expectedQty": "56351388658132", - "swapFee": "33460099015", + "expectedQty": "63946997919868998754", "reserves": [ - "3310830342076476044748873", - "4433287329189999326216861" + "1250719434780907656470767", + "4955831569434974014768915" ], - "LPTokenSupply": "7650415560350180377016709" + "LPTokenSupply": "6140085558478721663010413" }, { "type": "redeemMasset", - "inputQty": "206665454483939996467", + "inputQty": "27088999172365900185", "expectedQtys": [ - "89383865675753475109", - "119687304449980048640" + "5514647795785940648", + "21851156127160028767" ], - "redemptionFee": "123999272690363997", + "redemptionFee": "16253399503419540", "reserves": [ - "3310740958210800291273764", - "4433167641885549346168221" + "1250713920133111870530119", + "4955809718278846854740148" ], - "LPTokenSupply": "7650208907295623706056641" + "LPTokenSupply": "6140058471104889247452182" }, { - "type": "redeemMasset", - "inputQty": "1918485154229329802035", - "expectedQtys": [ - "829754649882323186247", - "1111062904344621911975" + "type": "redeemBassets", + "inputQtys": [ + "334934893527468212224", + "274076454791709097984" ], - "redemptionFee": "1151091092537597881", + "expectedQty": "606475382090331832032", + "swapFee": "364103691469080547", "reserves": [ - "3309911203560917968087517", - "4432056578981204724256246" + "1250378985239584402317895", + "4955535641824055145642164" ], - "LPTokenSupply": "7648290537250503630014394" + "LPTokenSupply": "6139451668029476593447656" }, { "type": "mintMulti", "inputQtys": [ - "64492491673041794760704", - "41178948397164639813632" + "3983236426778511147008", + "4662590723710856462336" ], - "expectedQty": "104430333746790483465609", + "expectedQty": "8595257443509689958825", "reserves": [ - "3374403695233959762848221", - "4473235527378369364069878" + "1254362221666362913464903", + "4960198232547766002104500" ], - "LPTokenSupply": "7752720870997294113480003" + "LPTokenSupply": "6148046925472986283406481" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1174197068647117619200", - "expectedQty": "1161269691036621453774", + "inputQty": "4620326434020851187712", + "expectedQty": "4639670221521313343232", "reserves": [ - "3375577892302606880467421", - "4473235527378369364069878" + "1258982548100383764652615", + "4960198232547766002104500" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "2108784159651115264", - "expectedQty": "2085565893523876166", + "inputQty": "8263358927743677440", + "expectedQty": "8297565838180502191", "reserves": [ - "3375580001086766531582685", - "4473235527378369364069878" + "1258990811459311508330055", + "4960198232547766002104500" ] }, { - "type": "mintMulti", - "inputQtys": [ - "234512322297439715328", - "2210172454159187443712" - ], - "expectedQty": "2413560349106265225902", + "type": "mint", + "inputIndex": 1, + "inputQty": "57280223568708960780288", + "expectedQty": "56450025846806194560830", "reserves": [ - "3375814513409063971298013", - "4475445699832528551513590" - ], - "LPTokenSupply": "7756297786603330524035845" + "1258990811459311508330055", + "5017478456116474962884788" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "36535522728089657344", - "expectedQty": "36920035568905722701", - "swapFee": "21921313636853794", + "inputIndex": 1, + "inputQty": "15639306026738811666432", + "expectedQty": "15860223230611303528695", + "swapFee": "9383583616043286999", "reserves": [ - "3375777593373495065575312", - "4475445699832528551513590" + "1258990811459311508330055", + "5001618232885863659356093" + ], + "LPTokenSupply": "6193506551438774764475001" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "39992163475017800089600", + "46915931954418395643904" ], - "LPTokenSupply": "7756261253272733798063880" + "hardLimitError": true }, { "type": "mintMulti", "inputQtys": [ - "243801370052284873965568", - "263337097095739548368896" + "4036989088861666148352", + "2153460023508475314176" ], - "expectedQty": "501052455250565748560780", + "expectedQty": "6176642732953425544246", "reserves": [ - "3619578963425779939540880", - "4738782796928268099882486" + "1263027800548173174478407", + "5003771692909372134670269" ], - "LPTokenSupply": "8257313708523299546624660" + "LPTokenSupply": "6199683194171728190019247" }, { "type": "redeemMasset", - "inputQty": "1990024183633305141248", + "inputQty": "7636436539734554889420", "expectedQtys": [ - "871800212041597210533", - "1141368067647034116413" + "1554796321992763871727", + "6159679003779985323547" ], - "redemptionFee": "1194014510179983084", + "redemptionFee": "4581861923840732933", "reserves": [ - "3618707163213738342330347", - "4737641428860621065766073" + "1261473004226180410606680", + "4997612013905592149346722" ], - "LPTokenSupply": "8255323803741117259481720" + "LPTokenSupply": "6192047215818186019203120" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5663520875970386984960", - "expectedQty": "5733943109443743263083", - "swapFee": "3398112525582232190", + "type": "mint", + "inputIndex": 0, + "inputQty": "8385601266825818013696", + "expectedQty": "8420775113130281731699", + "reserves": [ + "1269858605493006228620376", + "4997612013905592149346722" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "7065427091220282212352", + "outputIndex": 1, + "expectedQty": "7191933783976684035375", + "swapFee": "5675174033121877811", "reserves": [ - "3618707163213738342330347", - "4731907485751177322502990" + "1276924032584226510832728", + "4990420080121615465311347" ], - "LPTokenSupply": "8249660622676399430719979" + "LPTokenSupply": "6200468558448719613122600", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "24141992657390554578944", - "expectedQty": "23874535257878088912947", + "inputQty": "1250346819979565858816", + "expectedQty": "1255248197389816396802", "reserves": [ - "3642849155871128896909291", - "4731907485751177322502990" + "1278174379404206076691544", + "4990420080121615465311347" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "61107762299769595101184", - "expectedQty": "60321177923043831270284", + "inputQty": "380974634986327100096512", + "expectedQty": "386211582673572577979419", + "swapFee": "228584780991796260057", "reserves": [ - "3642849155871128896909291", - "4793015248050946917604174" - ] + "1278174379404206076691544", + "4604208497448042887331928" + ], + "LPTokenSupply": "5820772030137881509048895" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "20368978773411603939328", - "24751003386009578635264" + "2069486057152642285568", + "664606525556405436416" ], - "expectedQty": "44576022855677883879968", - "swapFee": "26761670715836232067", + "expectedQty": "2728941685739931344491", "reserves": [ - "3622480177097717292969963", - "4768264244664937338968910" + "1280243865461358718977112", + "4604873103973599292768344" ], - "LPTokenSupply": "8289256227497999214414380" + "LPTokenSupply": "5823500971823621440393386" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1379353953081247662080", - "outputIndex": 1, - "expectedQty": "1380837132815638963215", - "swapFee": "1091298620813423185", + "type": "mint", + "inputIndex": 1, + "inputQty": "9928786448847294431232", + "expectedQty": "9790432577305347320730", "reserves": [ - "3623859531050798540632043", - "4766883407532121700005695" - ], - "LPTokenSupply": "8289256336627861295756698", - "hardLimitError": false, - "insufficientLiquidityError": false + "1280243865461358718977112", + "4614801890422446587199576" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2445106721908693401600", - "expectedQty": "2475557841026606145645", - "swapFee": "1467064033145216040", + "inputQty": "31489667267888710418432", + "expectedQty": "31915043838591705466459", + "swapFee": "18893800360733226251", "reserves": [ - "3623859531050798540632043", - "4764407849691095093860050" + "1280243865461358718977112", + "4582886846583854881733117" ], - "LPTokenSupply": "8286811376612355916876702" + "LPTokenSupply": "5801803626513074150618309" }, { - "type": "mintMulti", - "inputQtys": [ - "23601292277968202104832", - "12846359859459897950208" - ], - "expectedQty": "36021215867956121908221", + "type": "swap", + "inputIndex": 1, + "inputQty": "965576857583249915904", + "outputIndex": 0, + "expectedQty": "950368301980028570333", + "swapFee": "0", "reserves": [ - "3647460823328766742736875", - "4777254209550554991810258" + "1279293497159378690406779", + "4583852423441438131649021" ], - "LPTokenSupply": "8322832592480312038784923" + "LPTokenSupply": "5801803626513074150618309", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4579063471187454464", - "6335720738734261248" + "433656580047661208436736", + "294596667579648656277504" ], - "expectedQty": "10782522202118077074", - "swapFee": "6473397359686658", + "expectedQty": "724201740995218999396527", "reserves": [ - "3647456244265295555282411", - "4777247873829816257549010" + "1712950077207039898843515", + "4878449091021086787926525" ], - "LPTokenSupply": "8322821804132052296989855" + "LPTokenSupply": "6526005367508293150014836" }, { "type": "mint", "inputIndex": 0, - "inputQty": "168049143815385", - "expectedQty": "166190241215484", + "inputQty": "1239540174226364039168", + "expectedQty": "1236968416113038743233", "reserves": [ - "3647456244433344699097796", - "4777247873829816257549010" + "1714189617381266262882683", + "4878449091021086787926525" ] }, { - "type": "mintMulti", - "inputQtys": [ - "90648919904222134272", - "29983579027175866368" + "type": "redeemMasset", + "inputQty": "33411774254541438976", + "expectedQtys": [ + "8769362176193803970", + "24956916378155925012" ], - "expectedQty": "119243552438655114642", + "redemptionFee": "20047064552724863", "reserves": [ - "3647546893353248921232068", - "4777277857408843433415378" + "1714180848019090069078713", + "4878424134104708632001513" ], - "LPTokenSupply": "8322941047850681193319981" + "LPTokenSupply": "6527208926154858102591579" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "160302091492313268224000", - "expectedQty": "161982678846694755793629", - "swapFee": "96181254895387960934", - "reserves": [ - "3485564214506554165438439", - "4777277857408843433415378" + "type": "mintMulti", + "inputQtys": [ + "3868579013975258693632", + "31304384915891459981312" ], - "LPTokenSupply": "8162648574483857463892074" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "4588210926310032670720", - "outputIndex": 1, - "expectedQty": "4594482178252982955526", - "swapFee": "3630609840012101571", + "expectedQty": "34767951212426457309421", "reserves": [ - "3490152425432864198109159", - "4772683375230590450459852" + "1718049427033065327772345", + "4909728519020600091982825" ], - "LPTokenSupply": "8162648937544841465102231", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6561976877367284559901000" }, { "type": "mintMulti", "inputQtys": [ - "19016052567515680768", - "26810812819804762112" + "58184948121496492965888", + "17744910251912157200384" ], - "expectedQty": "45270488138984128389", + "expectedQty": "75576363832583980703794", "reserves": [ - "3490171441485431713789927", - "4772710186043410255221964" + "1776234375154561820738233", + "4927473429272512249183209" ], - "LPTokenSupply": "8162694208032980449230620" + "LPTokenSupply": "6637553241199868540604794" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1840951991920891002880", - "expectedQty": "1816971565967855005066", + "type": "redeemMasset", + "inputQty": "32007400548222633194291", + "expectedQtys": [ + "8560162376302850174312", + "23746850781344768254399" + ], + "redemptionFee": "19204440328933579916", "reserves": [ - "3490171441485431713789927", - "4774551138035331146224844" - ] + "1767674212778258970563921", + "4903726578491167480928810" + ], + "LPTokenSupply": "6605547761095678800768494" }, { - "type": "mintMulti", - "inputQtys": [ - "245983386334359420928", - "390709484732508864512" + "type": "redeemMasset", + "inputQty": "474024138269464408883", + "expectedQtys": [ + "126774875240201354078", + "351687726565404622279" ], - "expectedQty": "628923977402254402589", + "redemptionFee": "284414482961678645", "reserves": [ - "3490417424871766073210855", - "4774941847520063655089356" + "1767547437903018769209843", + "4903374890764602076306531" ], - "LPTokenSupply": "8165140103576350558638275" + "LPTokenSupply": "6605073765398857632527475" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "60116718118891774017536", - "expectedQty": "60872406184428698489261", - "swapFee": "36070030871335064410", + "inputQty": "1679973422808390400", + "outputIndex": 0, + "expectedQty": "1662914918170947817", + "swapFee": "0", "reserves": [ - "3490417424871766073210855", - "4714069441335634956600095" + "1767545774988100598262026", + "4903376570738024884696931" ], - "LPTokenSupply": "8105026992460545918127180" + "LPTokenSupply": "6605073765398857632527475", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3514413965706075308032", - "expectedQty": "3468754714027104852913", + "inputIndex": 0, + "inputQty": "53682445384195264", + "expectedQty": "53552239242525456", "reserves": [ - "3490417424871766073210855", - "4717583855301341031908127" + "1767545828670545982457290", + "4903376570738024884696931" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "107696435353799", - "expectedQty": "109048703886459", - "swapFee": "64617861212", + "inputIndex": 0, + "inputQty": "585516358174098128896", + "expectedQty": "586586530760829563562", + "swapFee": "351309814904458877", "reserves": [ - "3490417424871766073210855", - "4717583855192292328021668" + "1766959242139785152893728", + "4903376570738024884696931" ], - "LPTokenSupply": "8108495747066883049412415" + "LPTokenSupply": "6604488337723904267369922" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2657800703875025408", - "158347375002846464" + "3218254116578180", + "2836120235074932" ], - "expectedQty": "2784995966470427617", + "expectedQty": "6010970569719072", + "swapFee": "3608747590385", "reserves": [ - "3490420082672469948236263", - "4717584013539667330868132" + "1766959238921531036315548", + "4903376567901904649621999" ], - "LPTokenSupply": "8108498532062849519840032" + "LPTokenSupply": "6604488331709685824819502" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4875904346019986", - "expectedQty": "4926913242191169", - "swapFee": "2925542607611", + "type": "redeemMasset", + "inputQty": "849467934094255104", + "expectedQtys": [ + "227129575198828582", + "630292885300059879" + ], + "redemptionFee": "509680760456553", "reserves": [ - "3490420077745556706045094", - "4717584013539667330868132" + "1766959011791955837486966", + "4903375937609019349562120" ], - "LPTokenSupply": "8108498527187237728080807" + "LPTokenSupply": "6604487482292719806610053" }, { - "type": "mintMulti", - "inputQtys": [ - "10389141107449457016832", - "19007910430443170693120" + "type": "redeemMasset", + "inputQty": "112023812581433606144", + "expectedQtys": [ + "29952773900372090898", + "83120044000783310009" ], - "expectedQty": "29036341909668009130594", + "redemptionFee": "67214287548860163", "reserves": [ - "3500809218853006163061926", - "4736591923970110501561252" + "1766929059018055465396068", + "4903292817565018566252111" ], - "LPTokenSupply": "8137534869096905737211401" + "LPTokenSupply": "6604375465201567127889925" }, { - "type": "redeemBassets", - "inputQtys": [ - "21786245938190615576576", - "21404692686203384758272" - ], - "expectedQty": "42674380038564488121898", - "swapFee": "25620000023152584423", + "type": "mint", + "inputIndex": 0, + "inputQty": "855959905609545940992", + "expectedQty": "853884743337959478974", + "reserves": [ + "1767785018923665011337060", + "4903292817565018566252111" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "31621308342840353357824", + "expectedQty": "32003623020638201077932", + "swapFee": "18972785005704212014", "reserves": [ - "3479022972914815547485350", - "4715187231283907116802980" + "1767785018923665011337060", + "4871289194544380365174179" ], - "LPTokenSupply": "8094837431058320411763521" + "LPTokenSupply": "6573609938880565304432276" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "174933630617297551884288", + "expectedQty": "172727687140562186558399", + "reserves": [ + "1767785018923665011337060", + "5046222825161677917058467" + ] }, { "type": "redeemMasset", - "inputQty": "22427803606536157554278", + "inputQty": "735382008266996213350", "expectedQtys": [ - "9633303761429391211968", - "13056203205497857104536" + "192581126389342923169", + "549731593648725205088" ], - "redemptionFee": "13456682163921694532", + "redemptionFee": "441229204960197728", "reserves": [ - "3469389669153386156273382", - "4702131028078409259698444" + "1767592437797275668413891", + "5045673093568029191853379" ], - "LPTokenSupply": "8072410973120000646378696" + "LPTokenSupply": "6745602288135780990797097" }, { - "type": "redeemMasset", - "inputQty": "119989591212271389900", - "expectedQtys": [ - "51538614071341948010", - "69851282063727521939" + "type": "redeemBassets", + "inputQtys": [ + "2493075740401473024", + "1106643531880731136" ], - "redemptionFee": "71993754727362833", + "expectedQty": "3580576881534777629", + "swapFee": "2149635910467146", "reserves": [ - "3469338130539314814325372", - "4702061176796345532176505" + "1767589944721535266940867", + "5045671986924497311122243" ], - "LPTokenSupply": "8072290990728163847725079" + "LPTokenSupply": "6745598705624227136599035" }, { "type": "redeemMasset", - "inputQty": "158691197887090760089", + "inputQty": "1298605263703129456640", "expectedQtys": [ - "68161949611125759084", - "92381210750247811088" + "340077206698890552802", + "970767026796165919413" ], - "redemptionFee": "95214718732254456", + "redemptionFee": "779163158221877673", "reserves": [ - "3469269968589703688566288", - "4701968795585595284365417" + "1767249867514836376388065", + "5044701219897701145202830" ], - "LPTokenSupply": "8072132309051748630190435" + "LPTokenSupply": "6744300178276839829330162" }, { - "type": "redeemBassets", - "inputQtys": [ - "3429438319660456448", - "3561314611957756928" + "type": "redeem", + "inputIndex": 1, + "inputQty": "81675151022946", + "expectedQty": "82675665836793", + "swapFee": "49005090613", + "reserves": [ + "1767249867514836376388065", + "5044701219815025479366037" ], - "expectedQty": "6906917608129143757", - "swapFee": "4146638548006290", + "LPTokenSupply": "6744300178195169578816277" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "268792462706096992", + "expectedQty": "268243190961496757", + "reserves": [ + "1767250136307299082485057", + "5044701219815025479366037" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "21816954298507913592832", + "expectedQty": "21846618197860053143235", + "swapFee": "13090172579104748155", "reserves": [ - "3469266539151384028109840", - "4701965234270983326608489" + "1745403518109439029341822", + "5044701219815025479366037" ], - "LPTokenSupply": "8072125398402165807841016" + "LPTokenSupply": "6722484801157110537195017" }, { "type": "mintMulti", "inputQtys": [ - "95389317827539834503168", - "12093174098749177200640" + "2497238401702153", + "2246383315350286" ], - "expectedQty": "106277240910355625108952", + "expectedQty": "4710292258032684", "reserves": [ - "3564655856978923862613008", - "4714058408369732503809129" + "1745403520606677431043975", + "5044701222061408794716323" ], - "LPTokenSupply": "8178402639312521432949968" + "LPTokenSupply": "6722484805867402795227701" }, { - "type": "redeemMasset", - "inputQty": "19935536620110", - "expectedQtys": [ - "8683931631963", - "11484014886660" + "type": "mintMulti", + "inputQtys": [ + "84974919981785608617984", + "90177150670955954044928" ], - "redemptionFee": "11961321972", + "expectedQty": "173831504515979114791036", "reserves": [ - "3564655856970239930981045", - "4714058408358248488922469" + "1830378440588463039661959", + "5134878372732364748761251" ], - "LPTokenSupply": "8178402639292587092462055" + "LPTokenSupply": "6896316310383381910018737" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1757704171221012709376", - "1085030909649503911936" + "18050691173694", + "28354535509565" ], - "expectedQty": "2809298484022565556340", - "swapFee": "1686591045040563672", + "expectedQty": "46006416523384", "reserves": [ - "3562898152799018918271669", - "4712973377448598985010533" + "1830378440606513730835653", + "5134878372760719284270816" ], - "LPTokenSupply": "8175591822876623990398409" + "LPTokenSupply": "6896316310429388326542121" }, { - "type": "redeemBassets", - "inputQtys": [ - "54278869194229013282816", - "104439139024602490994688" - ], - "expectedQty": "156768597784017212765194", - "swapFee": "94117629247959103120", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1180482092245231", + "expectedQty": "1194843898484991", + "swapFee": "708289255347", "reserves": [ - "3508619283604789904988853", - "4608534238423996494015845" + "1830378440606513730835653", + "5134878371565875385785825" ], - "LPTokenSupply": "8018738519226283614440406" + "LPTokenSupply": "6896316309248977063222424" }, { "type": "mintMulti", "inputQtys": [ - "14302402980979186597888", - "7153756937531138506752" + "13397930984549778456576", + "15156653898373082906624" ], - "expectedQty": "21205222844493335827025", + "expectedQty": "28332618353077346692543", "reserves": [ - "3522921686585769091586741", - "4615687995361527632522597" + "1843776371591063509292229", + "5150035025464248468692449" ], - "LPTokenSupply": "8039943742070776950267431" + "LPTokenSupply": "6924648927602054409914967" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "29385087977657389056", - "outputIndex": 0, - "expectedQty": "29330957894106691969", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "72953675694877952", + "expectedQty": "73080883227503612", + "swapFee": "43772205416926", "reserves": [ - "3522892355627874984894772", - "4615717380449505289911653" + "1843776298510180281788617", + "5150035025464248468692449" ], - "LPTokenSupply": "8039943742070776950267431", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6924648854652755935578707" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "908763583157881536512", - "expectedQty": "920098119685381030105", - "swapFee": "545258149894728921", + "inputIndex": 0, + "inputQty": "86621620596331744", + "expectedQty": "86772660539240206", + "swapFee": "51972972357799", "reserves": [ - "3522892355627874984894772", - "4614797282329819908881548" + "1843776211737519742548411", + "5150035025464248468692449" ], - "LPTokenSupply": "8039035033013434058203811" + "LPTokenSupply": "6924648768036332636482742" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "42603223053301252096", - "46694599542949888000" + "22670459720496300", + "1127768913066987" + ], + "expectedQty": "23730988174500805", + "swapFee": "14247141189414", + "reserves": [ + "1843776189067060022052111", + "5150035024336479555625462" ], - "expectedQty": "88222431275773744946", + "LPTokenSupply": "6924648744292522034911463" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "15623874518553611730944", + "expectedQty": "15813507032439929227275", + "swapFee": "9374324711132167038", "reserves": [ - "3522934958850928286146868", - "4614843976929362858769548" + "1843776189067060022052111", + "5134221517304039626398187" ], - "LPTokenSupply": "8039123255444709831948757" + "LPTokenSupply": "6909025807206439536397222" }, { "type": "redeemBassets", "inputQtys": [ - "931750245561910016", - "52063092200966938624" + "112271113723889139712", + "2026723151688219230208" ], - "expectedQty": "52312312929128343832", - "swapFee": "31406231496374831", + "expectedQty": "2113235073954746401131", + "swapFee": "1268702265732287213", "reserves": [ - "3522934027100682724236852", - "4614791913837161891830924" + "1843663917953336132912399", + "5132194794152351407167979" ], - "LPTokenSupply": "8039070914866172356867576" + "LPTokenSupply": "6906911430300445630937598" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "64029572785429068906496", - "51676078109357703692288" + "57668714084531118080", + "8162702611397272576" ], - "expectedQty": "114328656656718314277607", - "swapFee": "68638377020243134447", + "expectedQty": "65591139445594356884", "reserves": [ - "3458904454315253655330356", - "4563115835727804188138636" + "1843721586667420664030479", + "5132202956854962804440555" ], - "LPTokenSupply": "7924680483670135823768965" + "LPTokenSupply": "6906977021439891225294482" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "93334312410954038509568", - "expectedQty": "92123558454878466530121", + "inputIndex": 0, + "inputQty": "1776060196591065628672", + "expectedQty": "1771810364547798927429", "reserves": [ - "3458904454315253655330356", - "4656450148138758226648204" + "1845497646864011729659151", + "5132202956854962804440555" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6572028674217270", - "expectedQty": "6654618795181643", - "swapFee": "3943217204530", + "type": "redeemBassets", + "inputQtys": [ + "1388333827574680256512", + "1282768703952110747648" + ], + "expectedQty": "2651647255808605923603", + "swapFee": "1591943519596921707", "reserves": [ - "3458904454315253655330356", - "4656450141484139431466561" + "1844109313036437049402639", + "5130920188151010693692907" ], - "LPTokenSupply": "8016804035553379937802269" + "LPTokenSupply": "6906095751799462781068770" }, { "type": "swap", "inputIndex": 1, - "inputQty": "3065226915567800156160", + "inputQty": "254344715518020174217216", "outputIndex": 0, - "expectedQty": "3058957532445623136701", + "expectedQty": "251265960088430312488398", "swapFee": "0", "reserves": [ - "3455845496782808032193655", - "4659515368399707231622721" + "1592843352948006736914241", + "5385264903669030867910123" ], - "LPTokenSupply": "8016804035553379937802269", + "LPTokenSupply": "6906095751799462781068770", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10360573063971158884352", - "expectedQty": "10490787221799631855406", - "swapFee": "6216343838382695330", - "reserves": [ - "3455845496782808032193655", - "4649024581177907599767315" + "type": "redeemMasset", + "inputQty": "9491272176072278", + "expectedQtys": [ + "2187783007043052", + "7396704153529546" ], - "LPTokenSupply": "8006444084123792617187450" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "6318901575877759336448", - "expectedQty": "6249433309211376426593", + "redemptionFee": "5694763305643", "reserves": [ - "3462164398358685791530103", - "4649024581177907599767315" - ] + "1592843350760223729871189", + "5385264896272326714380577" + ], + "LPTokenSupply": "6906095742308760081327056" }, { "type": "mintMulti", "inputQtys": [ - "37267613821178335985664", - "9336117071792708780032" + "75369022631490224128", + "67397078284340699136" ], - "expectedQty": "46071995894317902997849", + "expectedQty": "141904057632549600152", "reserves": [ - "3499432012179864127515767", - "4658360698249700308547347" + "1592918719782855220095317", + "5385332293350611055079713" ], - "LPTokenSupply": "8058765513327321896611892" + "LPTokenSupply": "6906237646366392630927208" }, { - "type": "redeemBassets", - "inputQtys": [ - "16268240265750415147008", - "22789666366792272969728" - ], - "expectedQty": "38582842858783901903593", - "swapFee": "23163603877596899281", + "type": "redeem", + "inputIndex": 0, + "inputQty": "92910960664988123136", + "expectedQty": "92789578457146865079", + "swapFee": "55746576398992873", "reserves": [ - "3483163771914113712368759", - "4635571031882908035577619" + "1592825930204398073230238", + "5385332293350611055079713" ], - "LPTokenSupply": "8020161823225048157498945" + "LPTokenSupply": "6906144740980385282703359" }, { "type": "mint", "inputIndex": 1, - "inputQty": "31043679515143412121600", - "expectedQty": "30640685588832056423358", + "inputQty": "514129357255266926592", + "expectedQty": "507146555621441208832", "reserves": [ - "3483163771914113712368759", - "4666614711398051447699219" + "1592825930204398073230238", + "5385846422707866322006305" ] }, { - "type": "redeemMasset", - "inputQty": "2901189662028718093107", - "expectedQtys": [ - "1254440849087771434825", - "1680653711471825164604" + "type": "redeem", + "inputIndex": 1, + "inputQty": "2829737568437393162240", + "expectedQty": "2866974878745326140949", + "swapFee": "1697842541062435897", + "reserves": [ + "1592825930204398073230238", + "5382979447829120995865356" + ], + "LPTokenSupply": "6903822319751823436993540" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "89978865311672448", + "7939392007629826" ], - "redemptionFee": "1740713797217230855", + "expectedQty": "97873375070443734", + "swapFee": "58759280610632", "reserves": [ - "3481909331065025940933934", - "4664934057686579622534615" + "1592825840225532761557790", + "5382979439889728988235530" ], - "LPTokenSupply": "8047901493223231217552281" + "LPTokenSupply": "6903822221825565014000236" }, { "type": "mint", "inputIndex": 1, - "inputQty": "53014130598359997612032", - "expectedQty": "52324438317469033556453", + "inputQty": "30815837093129170714624", + "expectedQty": "30396883864142622482150", "reserves": [ - "3481909331065025940933934", - "4717948188284939620146647" + "1592825840225532761557790", + "5413795276982858158950154" ] }, { - "type": "mintMulti", - "inputQtys": [ - "48808612721365", - "44147944133597" + "type": "redeemMasset", + "inputQty": "41486806402154571287756", + "expectedQtys": [ + "9524015250287885050777", + "32370813856598777164296" ], - "expectedQty": "91846372948029", + "redemptionFee": "24892083841292742772", "reserves": [ - "3481909331113834553655299", - "4717948188329087564280244" + "1583301824975244876507013", + "5381424463126259381785858" ], - "LPTokenSupply": "8100225931632546624056763" + "LPTokenSupply": "6892734788495937194468907" }, { - "type": "redeemMasset", - "inputQty": "14437700257004283494", - "expectedQtys": [ - "6202370305566939978", - "8404142372407741460" - ], - "redemptionFee": "8662620154202570", + "type": "swap", + "inputIndex": 0, + "inputQty": "6901977094140295168", + "outputIndex": 1, + "expectedQty": "6997273874227087594", + "swapFee": "5526027529661913", "reserves": [ - "3481903128743528986715321", - "4717939784186715156538784" + "1583308726952339016802181", + "5381417465852385154698264" ], - "LPTokenSupply": "8100211494798551635193526" + "LPTokenSupply": "6892734789048539947435098", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "252955305014777511936", - "18104933851662276608" - ], - "expectedQty": "268051325967834039331", + "type": "mint", + "inputIndex": 1, + "inputQty": "93644429992679112704", + "expectedQty": "92369488789955024974", "reserves": [ - "3482156084048543764227257", - "4717957889120566818815392" - ], - "LPTokenSupply": "8100479546124519469232857" + "1583308726952339016802181", + "5381511110282377833810968" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1110715344762618118144", - "15687431122903669669888" - ], - "expectedQty": "16581677904068957407816", - "swapFee": "9954979730279542169", + "type": "mint", + "inputIndex": 1, + "inputQty": "6856127737924025319424", + "expectedQty": "6762758559567476344367", + "reserves": [ + "1583308726952339016802181", + "5388367238020301859130392" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "46821512113016629362688", + "expectedQty": "47438441263881050630376", + "swapFee": "28092907267809977617", "reserves": [ - "3481045368703781146109113", - "4702270457997663149145504" + "1583308726952339016802181", + "5340928796756420808500016" ], - "LPTokenSupply": "8083888908738693260237087" + "LPTokenSupply": "6852771214274607530439512" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "11586392557493956902912", - "10584691644358344048640" + "68337313377708", + "97925979968902" ], - "expectedQty": "21906099169430339292232", + "expectedQty": "164978796082916", + "swapFee": "99046705673", "reserves": [ - "3492631761261275103012025", - "4712855149642021493194144" + "1583308726884001703424473", + "5340928796658494828531114" ], - "LPTokenSupply": "8105795007908123599529319" + "LPTokenSupply": "6852771214109539592321489" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "128442515875193733120", - "expectedQty": "130058190155880723580", - "swapFee": "77065509525116239", + "inputQty": "12139943685186819981312", + "expectedQty": "12299555804896137489003", + "swapFee": "7283966211112091988", "reserves": [ - "3492631761261275103012025", - "4712725091451865612470564" + "1583308726884001703424473", + "5328629240853598691042111" ], - "LPTokenSupply": "8105666573098799358307822" + "LPTokenSupply": "6840631998820973883549375" }, { "type": "redeemMasset", - "inputQty": "6048338475871893913", + "inputQty": "9571050918622546362368", "expectedQtys": [ - "2604590763986911891", - "3514461611026580408" + "2213952759109038940225", + "7451063213220853460754" ], - "redemptionFee": "3629003085523136", + "redemptionFee": "5742630551173527817", "reserves": [ - "3492629156670511116100134", - "4712721576990254585890156" + "1581094774124892664484248", + "5321178177640377837581357" ], - "LPTokenSupply": "8105660525123223794966222" + "LPTokenSupply": "6831061522165406454539788" }, { - "type": "redeemBassets", - "inputQtys": [ - "223461375807907520577536", - "97101097907204143448064" - ], - "expectedQty": "316859323654249180955648", - "swapFee": "190229732031768569715", + "type": "mint", + "inputIndex": 0, + "inputQty": "4057193272920652120064", + "expectedQty": "4059578553970285004760", "reserves": [ - "3269167780862603595522598", - "4615620479083050442442092" - ], - "LPTokenSupply": "7788629994710146022297829" + "1585151967397813316604312", + "5321178177640377837581357" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "7951817266004763", - "6963458096611005" - ], - "expectedQty": "14737566360991870", + "type": "mint", + "inputIndex": 1, + "inputQty": "4179308265541313024", + "expectedQty": "4122677961408856049", "reserves": [ - "3269167788814420861527361", - "4615620486046508539053097" - ], - "LPTokenSupply": "7788630009447712383289699" + "1585151967397813316604312", + "5321182356948643378894381" + ] }, { "type": "redeemMasset", - "inputQty": "10235000819875976734310", + "inputQty": "5793885451426987612569", "expectedQtys": [ - "4293419895060548329061", - "6061725216627003634114" + "1342869092936903433403", + "4507865158668531529676" ], - "redemptionFee": "6141000491925586040", + "redemptionFee": "3476331270856192567", "reserves": [ - "3264874368919360313198300", - "4609558760829881535418983" + "1583809098304876413170909", + "5316674491789974847364705" ], - "LPTokenSupply": "7778395622727885599113993" + "LPTokenSupply": "6829331685579038246407284" }, { "type": "redeemMasset", - "inputQty": "1709880150316447432704", + "inputQty": "2176609725287954487705", "expectedQtys": [ - "717268010136197198910", - "1012684920271732104643" + "504480678991359369254", + "1693486645874756100793" ], - "redemptionFee": "1025928090189868459", + "redemptionFee": "1305965835172772692", "reserves": [ - "3264157100909224115999390", - "4608546075909609803314340" + "1583304617625885053801655", + "5314981005144100091263912" ], - "LPTokenSupply": "7776685845170378170668134" + "LPTokenSupply": "6827155206450333809196848" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "369039132381297948753920", - "expectedQty": "364964982744993432474342", + "type": "redeemMasset", + "inputQty": "769593963052257075", + "expectedQtys": [ + "178371596597342398", + "598774005468170216" + ], + "redemptionFee": "461756377831354", "reserves": [ - "3633196233290522064753310", - "4608546075909609803314340" - ] + "1583304439254288456459257", + "5314980406370094623093696" + ], + "LPTokenSupply": "6827154436902546394722908" }, { "type": "mintMulti", "inputQtys": [ - "3817404521795321593856", - "22554716741172564328448" + "52393936536671862390784", + "28387523689997305643008" ], - "expectedQty": "26039306794110196532528", + "expectedQty": "80415212910119275355151", "reserves": [ - "3637013637812317386347166", - "4631100792650782367642788" + "1635698375790960318850041", + "5343367930060091928736704" ], - "LPTokenSupply": "8167690134709481799675004" + "LPTokenSupply": "6907569649812665670078059" }, { - "type": "redeem", + "type": "swap", + "inputIndex": 1, + "inputQty": "1778404057885799088128", + "outputIndex": 0, + "expectedQty": "1754429362008883953360", + "swapFee": "0", + "reserves": [ + "1633943946428951434896681", + "5345146334117977727824832" + ], + "LPTokenSupply": "6907569649812665670078059", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", "inputIndex": 0, - "inputQty": "988351505733181568", - "expectedQty": "998986032357863012", - "swapFee": "593010903439908", + "inputQty": "80404594018241759674368", + "outputIndex": 1, + "expectedQty": "81380836924187980918164", + "swapFee": "64302493634199510084", "reserves": [ - "3637012638826285028484154", - "4631100792650782367642788" + "1714348540447193194571049", + "5263765497193789746906668" ], - "LPTokenSupply": "8167689146417277156837426" + "LPTokenSupply": "6907576080062029090029067", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "672391702751135662080", - "269975697626129039360" + "7454547639401050112", + "11528867904425443328" ], - "expectedQty": "931339117707069937155", - "swapFee": "559138953996639946", + "expectedQty": "18825276911786654667", + "swapFee": "11301947315461269", "reserves": [ - "3636340247123533892822074", - "4630830816953156238603428" + "1714341085899553793520937", + "5263753968325885321463340" ], - "LPTokenSupply": "8166757304074511489924318" + "LPTokenSupply": "6907557244613364719459256" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "318833771462012367273984", - "expectedQty": "322203720167016980946816", - "swapFee": "191300262877207420364", + "inputQty": "39711516237565693788160", + "outputIndex": 1, + "expectedQty": "40153266501408751419675", + "swapFee": "31732217577752369309", "reserves": [ - "3314136526956516911875258", - "4630830816953156238603428" + "1754052602137119487309097", + "5223600701824476570043665" ], - "LPTokenSupply": "7847942662638786843392370" + "LPTokenSupply": "6907560417835122494696186", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "40811416900896244629504", - "117352759625154901835776" + "3312860770506344759296", + "2217253639963230863360" ], - "expectedQty": "156176234043745904675871", - "swapFee": "93761997624822436267", + "expectedQty": "5496641461038049555640", + "swapFee": "3299964855536151424", "reserves": [ - "3273325110055620667245754", - "4513478057328001336767652" + "1750739741366613142549801", + "5221383448184513339180305" ], - "LPTokenSupply": "7691682042797178598523857" + "LPTokenSupply": "6902060806405714462604263" }, { - "type": "mint", + "type": "redeemMasset", + "inputQty": "17915193423750856704", + "expectedQtys": [ + "4541545355189835831", + "13544645835398226808" + ], + "redemptionFee": "10749116054250514", + "reserves": [ + "1750735199821257952713970", + "5221369903538677940953497" + ], + "LPTokenSupply": "6902042892287202317172610" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "284156179681401012224", - "expectedQty": "281046161885494613506", + "inputQty": "33709348886356880", + "expectedQty": "33737642843778399", + "swapFee": "20225609331814", "reserves": [ - "3273609266235302068257978", - "4513478057328001336767652" - ] + "1750735166083615108935571", + "5221369903538677940953497" + ], + "LPTokenSupply": "6902042858579875991748911" }, { "type": "redeemMasset", - "inputQty": "479085081879001117491", + "inputQty": "23723261729309032448", "expectedQtys": [ - "203770655528236047984", - "280948124121032017882" + "6013904799644954035", + "17935791850149688918" ], - "redemptionFee": "287451049127400670", + "redemptionFee": "14233957037585419", "reserves": [ - "3273405495579773832209994", - "4513197109203880304749770" + "1750729152178815463981536", + "5221351967746827791264579" ], - "LPTokenSupply": "7691484032622290004759939" + "LPTokenSupply": "6902019136741542386475004" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "469024383314550696443904", - "expectedQty": "474901591004602791591016", - "swapFee": "281414629988730417866", + "type": "mintMulti", + "inputQtys": [ + "2924462890394613", + "860140472217005" + ], + "expectedQty": "3769270656448742", "reserves": [ - "3273405495579773832209994", - "4038295518199277513158754" + "1750729155103278354376149", + "5221351968606968263481584" ], - "LPTokenSupply": "7222487790770738181357821" + "LPTokenSupply": "6902019140510813042923746" }, { - "type": "redeemMasset", - "inputQty": "1869373922328576", - "expectedQtys": [ - "846736957746919", - "1044592265205276" + "type": "mintMulti", + "inputQtys": [ + "8622371185963297669120", + "2391274529812189282304" ], - "redemptionFee": "1121624353397", + "expectedQty": "10970050778271433089542", "reserves": [ - "3273405494733036874463075", - "4038295517154685247953478" + "1759351526289241652045269", + "5223743243136780452763888" ], - "LPTokenSupply": "7222487788901476421464584" + "LPTokenSupply": "6912989191289084476013288" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "5461172350019327492096", - "outputIndex": 1, - "expectedQty": "5464478915159540202917", - "swapFee": "4318992430525716149", + "inputQty": "63116628953039609266176", + "expectedQty": "63156323096677248120524", + "swapFee": "37869977371823765559", "reserves": [ - "3278866667083056201955171", - "4032831038239525707750561" + "1696195203192564403924745", + "5223743243136780452763888" ], - "LPTokenSupply": "7222488220800719474036198", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6849876349333782049123667" }, { "type": "redeemBassets", "inputQtys": [ - "2649471389441733", - "94889524146195504" + "5716946750936785920", + "1372246139804823296" ], - "expectedQty": "96292300245298328", - "swapFee": "57810066186891", + "expectedQty": "7065798021496900317", + "swapFee": "4242024027314528", "reserves": [ - "3278866664433584812513438", - "4032830943350001561555057" + "1696189486245813467138825", + "5223741870890640647940592" ], - "LPTokenSupply": "7222488124456390169169667" + "LPTokenSupply": "6849869279717938927640273" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "180197471972789223424", + "expectedQty": "180259833821110853621", + "swapFee": "108118483183673534", + "reserves": [ + "1696009226411992356285204", + "5223741870890640647940592" + ], + "LPTokenSupply": "6849689093057814456784202" + }, + { + "type": "redeemBassets", "inputQtys": [ - "9551913556156928000", - "15623119295419973632" + "5453462335292353544192", + "2860459195870206754816" ], - "expectedQty": "24865479457999083176", + "expectedQty": "8271377416903671350056", + "swapFee": "4965805933702424264", "reserves": [ - "3278876216347140969441438", - "4032846566469296981528689" + "1690555764076700002741012", + "5220881411694770441185776" ], - "LPTokenSupply": "7222512989935848168252843" + "LPTokenSupply": "6841413246415570453252307" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "13510511851286508339200", - "expectedQty": "13658561923686327466938", - "swapFee": "8106307110771905003", + "inputIndex": 1, + "inputQty": "5004632515685024768", + "expectedQty": "5068123150941997769", + "swapFee": "3002779509411014", "reserves": [ - "3265217654423454641974500", - "4032846566469296981528689" + "1690555764076700002741012", + "5220876343571619499188007" ], - "LPTokenSupply": "7209003288715272737104143" + "LPTokenSupply": "6841408242083332719168640" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "68491634343254350102528", - "expectedQty": "69238812810562271110046", - "swapFee": "41094980605952610061", + "type": "redeemBassets", + "inputQtys": [ + "29516825861915832", + "125248942803500240" + ], + "expectedQty": "153095861887788527", + "swapFee": "91912664731512", "reserves": [ - "3195978841612892370864454", - "4032846566469296981528689" + "1690555734559874140825180", + "5220876218322676695687767" ], - "LPTokenSupply": "7140515763870078982262621" + "LPTokenSupply": "6841408088904749433121751" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5948375326492786688", - "expectedQty": "5880871113754325089", + "type": "redeemMasset", + "inputQty": "79545977716338278", + "expectedQtys": [ + "19644526521114105", + "60667412045421287" + ], + "redemptionFee": "47727586629802", "reserves": [ - "3195984789988218863651142", - "4032846566469296981528689" - ] + "1690555714915347619711075", + "5220876157655264650266480" + ], + "LPTokenSupply": "6841408009363544475446453" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "381967955764499626065920", - "outputIndex": 1, - "expectedQty": "381984885531562123353101", - "swapFee": "302040482762059080633", + "type": "redeemMasset", + "inputQty": "390225937445213962240", + "expectedQtys": [ + "96369470807858829581", + "297614014153800860612" + ], + "redemptionFee": "234135562467128377", "reserves": [ - "3577952745752718489717062", - "3650861680937734858175588" + "1690459345444539760881494", + "5220578543641110849405868" ], - "LPTokenSupply": "7140551848789468942495773", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6841017806839655508197050" }, { "type": "redeemMasset", - "inputQty": "792371086079847116", + "inputQty": "611591270031618054553", "expectedQtys": [ - "396799200301715297", - "404884887629645012" + "151037445755131550545", + "466442952751546658097" ], - "redemptionFee": "475422651647908", + "redemptionFee": "366954762018970832", "reserves": [ - "3577952348953518188001765", - "3650861276052847228530576" + "1690308307998784629330949", + "5220112100688359302747771" ], - "LPTokenSupply": "7140551056465925127813447" + "LPTokenSupply": "6840406252265100092039580" }, { "type": "swap", "inputIndex": 1, - "inputQty": "318098160990644338688", + "inputQty": "29395284624928602587136", "outputIndex": 0, - "expectedQty": "318055475753131866285", + "expectedQty": "29028671382409223261571", "swapFee": "0", "reserves": [ - "3577634293477765056135480", - "3651179374213837872869264" + "1661279636616375406069378", + "5249507385313287905334907" ], - "LPTokenSupply": "7140551056465925127813447", + "LPTokenSupply": "6840406252265100092039580", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "19024089020635346370560", + "expectedQty": "19020863966925000659449", + "swapFee": "11414453412381207822", + "reserves": [ + "1642258772649450405409929", + "5249507385313287905334907" + ], + "LPTokenSupply": "6821383304689805983789802" + }, { "type": "mint", "inputIndex": 0, - "inputQty": "16208454696127686508544", - "expectedQty": "16011521006122971269937", + "inputQty": "25640684938647931191296", + "expectedQty": "25628745888203671026671", "reserves": [ - "3593842748173892742644024", - "3651179374213837872869264" + "1667899457588098336601225", + "5249507385313287905334907" ] }, { - "type": "redeemMasset", - "inputQty": "3101222741497559488921", - "expectedQtys": [ - "1556420356184675042314", - "1581251685259622348754" - ], - "redemptionFee": "1860733644898535693", + "type": "mint", + "inputIndex": 1, + "inputQty": "1549069648551371341824", + "expectedQty": "1528588678629776328839", "reserves": [ - "3592286327817708067601710", - "3649598122528578250520510" - ], - "LPTokenSupply": "7153461540803915029448032" + "1667899457588098336601225", + "5251056454961839276676731" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "39496092106758344", - "expectedQty": "39015908706747214", + "inputQty": "171264870264615796736", + "expectedQty": "171163629977320581706", "reserves": [ - "3592286367313800174360054", - "3649598122528578250520510" + "1668070722458362952397961", + "5251056454961839276676731" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "119599088199228826058752", - "26511341422578426183680" + "350350427585883520", + "37240968377807464" ], - "expectedQty": "144335409125889017376503", - "swapFee": "86653237417984200946", + "expectedQty": "386891604006402977", "reserves": [ - "3472687279114571348301302", - "3623086781105999824336830" + "1668071072808790538281481", + "5251056492202807654484195" ], - "LPTokenSupply": "7009048182780258533037890" + "LPTokenSupply": "6848712189778220758129995" }, { "type": "redeemBassets", "inputQtys": [ - "105775251774044861628416", - "104149071963640098193408" + "760992234142678", + "736847406620224" ], - "expectedQty": "207359450142147295446504", - "swapFee": "124490364303870699687", + "expectedQty": "1487646766106455", + "swapFee": "893123934024", "reserves": [ - "3366912027340526486672886", - "3518937709142359726143422" + "1668071072047798304138803", + "5251056491465960247863971" ], - "LPTokenSupply": "6801576691310237753961666" + "LPTokenSupply": "6848712188289770180482917" }, { - "type": "mintMulti", - "inputQtys": [ - "6242027660927484928", - "11949550433557192704" - ], - "expectedQty": "17968171905205844005", + "type": "redeem", + "inputIndex": 1, + "inputQty": "31745461216142411431936", + "expectedQty": "32150985158508367428050", + "swapFee": "19047276729685446859", "reserves": [ - "3366918269368187414157814", - "3518949658692793283336126" + "1668071072047798304138803", + "5218905506307451880435921" ], - "LPTokenSupply": "6801594659482142959805671" + "LPTokenSupply": "6816968631801300737595666" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "1131263425646135869440", - "expectedQty": "1144421008515868187693", - "swapFee": "678758055387681521", + "inputQty": "24237803272172336", + "outputIndex": 1, + "expectedQty": "24525090409988266", + "swapFee": "19376748409683", "reserves": [ - "3365773848359671545970121", - "3518949658692793283336126" + "1668071096285601576311139", + "5218905481782361470447655" ], - "LPTokenSupply": "6800463463932302362704383" + "LPTokenSupply": "6816968631803238412436634", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "750587778540600347852", - "expectedQtys": [ - "371267773743886858532", - "388164108630293295734" + "type": "redeemBassets", + "inputQtys": [ + "46799999867908046848", + "40965787909962203136" ], - "redemptionFee": "450352667124360208", + "expectedQty": "87192808857231047823", + "swapFee": "52347093570480917", "reserves": [ - "3365402580585927659111589", - "3518561494584162990040392" + "1668024296285733668264291", + "5218864515994451508244519" ], - "LPTokenSupply": "6799712921189028474792551" + "LPTokenSupply": "6816881391881996967955984" }, { "type": "redeemMasset", - "inputQty": "34142766752679", + "inputQty": "946282789396095", "expectedQtys": [ - "16888244279660", - "17656825479464" + "231407228551454", + "724020013689855" ], - "redemptionFee": "20485660051", + "redemptionFee": "567769673637", "reserves": [ - "3365402580569039414831929", - "3518561494566506164560928" + "1668024296054326439712837", + "5218864515270431494554664" ], - "LPTokenSupply": "6799712921154887756605877" + "LPTokenSupply": "6816881390935770955527252" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10728944755780790255616", - "3393668037380384227328" + "1268056075994763", + "3052065522458003" ], - "expectedQty": "13950911924803733447044", - "swapFee": "8375572498381268829", + "expectedQty": "4278976758379916", "reserves": [ - "3354673635813258624576313", - "3515167826529125780333600" + "1668024297322382515707600", + "5218864518322497017012667" ], - "LPTokenSupply": "6785754471214835480016885" + "LPTokenSupply": "6816881395214747713907168" }, { "type": "mintMulti", "inputQtys": [ - "1680867212746397319168", - "2465480089288857092096" + "68032556686355070976", + "110456607425962885120" ], - "expectedQty": "4095490488659828663559", + "expectedQty": "176984694225327258413", "reserves": [ - "3356354503026005021895481", - "3517633306618414637425696" + "1668092329879068870778576", + "5218974974929922979897787" ], - "LPTokenSupply": "6789849961703495308680444" + "LPTokenSupply": "6817058379908973041165581" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "812813894846375092289536", - "expectedQty": "821860289035364456303194", - "swapFee": "487688336907825055373", - "reserves": [ - "2534494213990640565592287", - "3517633306618414637425696" - ], - "LPTokenSupply": "5977084835690810998896445" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1715530206923922341888", - "expectedQty": "1737676496304329518125", - "swapFee": "1029318124154353405", + "inputQty": "225525946510265408", + "expectedQty": "225547594955559940", + "swapFee": "135315567906159", "reserves": [ - "2534494213990640565592287", - "3515895630122110307907571" + "1668092104331473915218636", + "5218974974929922979897787" ], - "LPTokenSupply": "5975369408415699491989897" + "LPTokenSupply": "6817058154396558087690788" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "3293438783598631059456", - "outputIndex": 1, - "expectedQty": "3298238582920689962482", - "swapFee": "2605500206933121978", + "inputQty": "3879562376133606", + "expectedQty": "3876862499235483", "reserves": [ - "2537787652774239196651743", - "3512597391539189617945089" - ], - "LPTokenSupply": "5975369668965720185302094", - "hardLimitError": false, - "insufficientLiquidityError": false + "1668092108211036291352242", + "5218974974929922979897787" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "128372485333515528830976", - "outputIndex": 0, - "expectedQty": "128041136985160062219560", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "1204468417559911464960", + "195425133252836884480" + ], + "expectedQty": "1396483732633926005689", + "swapFee": "838393275545683013", "reserves": [ - "2409746515789079134432183", - "3640969876872705146776065" + "1666887639793476379887282", + "5218779549796670143013307" ], - "LPTokenSupply": "5975369668965720185302094", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6815660919986838669805869" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "70969967377933632798720", - "expectedQty": "70002188146953023942157", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1423839866514961596416", + "expectedQty": "1423950650293495042023", + "swapFee": "854303919908976957", "reserves": [ - "2409746515789079134432183", - "3711939844250638779574785" - ] + "1665463689143182884845259", + "5218779549796670143013307" + ], + "LPTokenSupply": "6814237165550715699107148" }, { - "type": "redeemBassets", - "inputQtys": [ - "2381230198318531346432", - "2953252774550781820928" + "type": "redeemMasset", + "inputQty": "2244736229441517977", + "expectedQtys": [ + "548305477936496930", + "1718131373232522333" ], - "expectedQty": "5268840561846103366595", - "swapFee": "3163202258462739663", + "redemptionFee": "1346841737664910", "reserves": [ - "2407365285590760603085751", - "3708986591476087997753857" + "1665463140837704948348329", + "5218777831665296910490974" ], - "LPTokenSupply": "6040100169668794489411958" + "LPTokenSupply": "6814234920949170431355662" }, { "type": "mint", "inputIndex": 0, - "inputQty": "24147577561164432801792", - "expectedQty": "23890637748986166570440", + "inputQty": "161842575371061", + "expectedQty": "161734006044852", "reserves": [ - "2431512863151925035887543", - "3708986591476087997753857" + "1665463140999547523719390", + "5218777831665296910490974" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "530642914010840039424", - "1441723565608980709376" + "type": "redeemMasset", + "inputQty": "8803409950554192281", + "expectedQtys": [ + "2150345255853781798", + "6738170227496740709" ], - "expectedQty": "1947047584534376570371", - "swapFee": "1168929908665825437", + "redemptionFee": "5282045970332515", "reserves": [ - "2430982220237914195848119", - "3707544867910479017044481" + "1665460990654291669937592", + "5218771093495069413750265" ], - "LPTokenSupply": "6062042707796328480169132" + "LPTokenSupply": "6814226118229158480241484" }, { - "type": "redeemMasset", - "inputQty": "1862797355504854315827", - "expectedQtys": [ - "746565211255828860784", - "1138603151643437780109" - ], - "redemptionFee": "1117678413302912589", + "type": "swap", + "inputIndex": 0, + "inputQty": "2265607570820852", + "outputIndex": 1, + "expectedQty": "2292538374484095", + "swapFee": "1811270180070", "reserves": [ - "2430235655026658366987335", - "3706406264758835579264372" + "1665460992919899240758444", + "5218771091202531039266170" ], - "LPTokenSupply": "6060180022208664956144563" + "LPTokenSupply": "6814226118229339607259491", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "20322822701782885466112", - "expectedQty": "20045519660356921540122", + "inputQty": "695210958330105561088", + "expectedQty": "686033805092832755203", "reserves": [ - "2430235655026658366987335", - "3726729087460618464730484" + "1665460992919899240758444", + "5219466302160861144827258" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4907130126427277492224", - "expectedQty": "4956898520246210970245", - "swapFee": "2944278075856366495", + "type": "redeemMasset", + "inputQty": "2464852315947590379110", + "expectedQtys": [ + "602011034736951803004", + "1886670611137894901524" + ], + "redemptionFee": "1478911389568554227", "reserves": [ - "2425278756506412156017090", - "3726729087460618464730484" + "1664858981885162288955440", + "5217579631549723249925734" ], - "LPTokenSupply": "6075318706170402185829110" + "LPTokenSupply": "6812447447609623806491006" }, { - "type": "redeemBassets", - "inputQtys": [ - "732341922040444092416", - "411892844903717208064" + "type": "redeemMasset", + "inputQty": "2859271884191367482572", + "expectedQtys": [ + "698343487263183915318", + "2188571401311106669060" + ], + "redemptionFee": "1715563130514820489", + "reserves": [ + "1664160638397899105040122", + "5215391060148412143256674" ], - "expectedQty": "1130823767152357059386", - "swapFee": "678901601252165534", + "LPTokenSupply": "6809588347281745490490482" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "88023137839651439509504", + "expectedQty": "89143122300049551250216", + "swapFee": "52813882703790863705", "reserves": [ - "2424546414584371711924674", - "3726317194615714747522420" + "1664160638397899105040122", + "5126247937848362592006458" ], - "LPTokenSupply": "6074187271391808701820742" + "LPTokenSupply": "6721570490830364430067348" }, { "type": "redeemMasset", - "inputQty": "47915182974136134873907", + "inputQty": "9497191882677184521830", "expectedQtys": [ - "19114142575067859334450", - "29376776501109581253688" + "2349952294075876581311", + "7238747163943076177702" ], - "redemptionFee": "28749109784481680924", + "redemptionFee": "5698315129606310713", "reserves": [ - "2405432272009303852590224", - "3696940418114605166268732" + "1661810686103823228458811", + "5119009190684419515828756" ], - "LPTokenSupply": "6026274963328651015114927" + "LPTokenSupply": "6712073868779200206176589" }, { "type": "redeemMasset", - "inputQty": "6782677764237150702796", + "inputQty": "11596627115721646080", "expectedQtys": [ - "2705731637000957032817", - "4158474452096959040940" + "2869431475409609894", + "8838940691312451705" ], - "redemptionFee": "4069606658542290421", + "redemptionFee": "6957976269432987", "reserves": [ - "2402726540372302895557407", - "3692781943662508207227792" + "1661807816672347818848917", + "5119000351743728203377051" ], - "LPTokenSupply": "6019492692525079718641173" + "LPTokenSupply": "6712062272847882111473807" }, { "type": "mintMulti", "inputQtys": [ - "1736113273860770234368", - "920437263236219273216" + "1046836455750699", + "12573026998328548" ], - "expectedQty": "2625509204117016383995", + "expectedQty": "13453915424664141", "reserves": [ - "2404462653646163665791775", - "3693702380925744426501008" + "1661807817719184274599616", + "5119000364316755201705599" ], - "LPTokenSupply": "6022118201729196735025168" + "LPTokenSupply": "6712062286301797536137948" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "444512744845243081293824", + "expectedQty": "443332370749765391809291", + "reserves": [ + "2106320562564427355893440", + "5119000364316755201705599" + ] }, { "type": "redeemMasset", - "inputQty": "56642569237192", + "inputQty": "673995104756907520", "expectedQtys": [ - "22602217494320", - "34721214923581" + "198283676354608815", + "481889713055612460" ], - "redemptionFee": "33985541542", + "redemptionFee": "404397062854144", "reserves": [ - "2404462653623561448297455", - "3693702380891023211577427" + "2106320364280751001284625", + "5118999882427042146093139" ], - "LPTokenSupply": "6022118201672557564342130" + "LPTokenSupply": "7155393983096897877325133" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "137041495985667472097280", - "outputIndex": 1, - "expectedQty": "137301013682658629385196", - "swapFee": "108452434545925453100", + "type": "mint", + "inputIndex": 1, + "inputQty": "2498357137370724696064", + "expectedQty": "2468351447200527832102", "reserves": [ - "2541504149609228920394735", - "3556401367208364582192231" - ], - "LPTokenSupply": "6022129046916012156887440", - "hardLimitError": false, - "insufficientLiquidityError": false + "2106320364280751001284625", + "5121498239564412870789203" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "6242844680998170394624", - "14355889646210717319168" + "type": "redeemMasset", + "inputQty": "683252887611528812953", + "expectedQtys": [ + "200937921718037685193", + "488578674826643254321" ], - "expectedQty": "20337354925654267528576", + "redemptionFee": "409951732566917287", "reserves": [ - "2547746994290227090789359", - "3570757256854575299511399" + "2106119426359032963599432", + "5121009660889586227534882" ], - "LPTokenSupply": "6042466401841666424416016" + "LPTokenSupply": "7157179122651660133036010" }, { - "type": "redeemBassets", - "inputQtys": [ - "29497937821229517897728", - "47569309217891211542528" + "type": "redeemMasset", + "inputQty": "292875073456245886156", + "expectedQtys": [ + "86131669084888684105", + "209428346736624316153" ], - "expectedQty": "76103509338259829771530", - "swapFee": "45689519314544624637", + "redemptionFee": "175725044073747531", "reserves": [ - "2518249056468997572891631", - "3523187947636684087968871" + "2106033294689948074915327", + "5120800232542849603218729" ], - "LPTokenSupply": "5966321771936023504482311" + "LPTokenSupply": "7156886265150708294524607" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4629210156606709825536", - "expectedQty": "4567204637472665208999", + "inputQty": "8280494532641304870912", + "expectedQty": "8181006852189039292441", "reserves": [ - "2518249056468997572891631", - "3527817157793290797794407" + "2106033294689948074915327", + "5129080727075490908089641" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "11418881806054191005696", - "24540919288563194920960" - ], - "expectedQty": "35504483945014469021818", - "swapFee": "21315479654801562350", + "type": "redeem", + "inputIndex": 0, + "inputQty": "75124612288203943051264", + "expectedQty": "75365885850899666841119", + "swapFee": "45074767372922365830", "reserves": [ - "2506830174662943381885935", - "3503276238504727602873447" + "2030667408839048408074208", + "5129080727075490908089641" ], - "LPTokenSupply": "5935365308696792379263376" + "LPTokenSupply": "7089947167191430683002367" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "7764778153737596174336", - "expectedQty": "7847166874831865403244", - "swapFee": "4658866892242557704", + "type": "redeemMasset", + "inputQty": "90883582970807962828", + "expectedQtys": [ + "26014805609960737184", + "65708464858334100363" + ], + "redemptionFee": "54530149782484777", "reserves": [ - "2498983007788111516482691", - "3503276238504727602873447" + "2030641394033438447337024", + "5129015018610632573989278" ], - "LPTokenSupply": "5927600996429744007344810" + "LPTokenSupply": "7089856289061474853288016" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9606992011834576338944", - "12847433224907711840256" + "13297655003869911973888", + "117422492451111413219328" ], - "expectedQty": "22175727075277503413067", + "expectedQty": "129244903401528643413986", + "swapFee": "77593498139801066688", "reserves": [ - "2508589999799946092821635", - "3516123671729635314713703" + "2017343739029568535363136", + "5011592526159521160769950" ], - "LPTokenSupply": "5949776723505021510757877" + "LPTokenSupply": "6960541551511620388914009" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8367522060151513153536", - "15905051576333257146368" + "8825869811650644672512", + "61611524231230442700800" ], - "expectedQty": "23966632079689964828085", + "expectedQty": "69657910145213657667618", + "swapFee": "41819837989922147889", "reserves": [ - "2516957521860097605975171", - "3532028723305968571860071" + "2008517869217917890690624", + "4949981001928290718069150" ], - "LPTokenSupply": "5973743355584711475585962" + "LPTokenSupply": "6890846003512215801313289" }, { "type": "redeemMasset", - "inputQty": "557600305819417051136", + "inputQty": "1357626377436", "expectedQtys": [ - "234796529857957058799", - "329488312928694711789" + "395478399503", + "974654293207" ], - "redemptionFee": "334560183491650230", + "redemptionFee": "814575826", "reserves": [ - "2516722725330239648916372", - "3531699234993039877148282" + "2008517869217522412291121", + "4949981001927316063775943" ], - "LPTokenSupply": "5973185788734910407699849" + "LPTokenSupply": "6890846003510858256393435" }, { "type": "redeemBassets", "inputQtys": [ - "67732082101974319104", - "651503885536630407168" + "947728901672679424", + "889555622597042688" ], - "expectedQty": "709751597856991504438", - "swapFee": "426106622687807587", + "expectedQty": "1822845323495612749", + "swapFee": "1094363812384798", "reserves": [ - "2516654993248137674597268", - "3531047731107503246741114" + "2008516921488620739611697", + "4949980112371693466733255" ], - "LPTokenSupply": "5972475653641092997168581" + "LPTokenSupply": "6890844179680607329634366" }, { - "type": "redeemMasset", - "inputQty": "441362642021528843059", - "expectedQtys": [ - "185867822115236727334", - "260785905627386428464" - ], - "redemptionFee": "264817585212917305", + "type": "mint", + "inputIndex": 1, + "inputQty": "33074977377294172160", + "expectedQty": "32675110022144720873", "reserves": [ - "2516469125426022437869934", - "3530786945201875860312650" - ], - "LPTokenSupply": "5972034317480829989617252" + "2008516921488620739611697", + "4950013187349070760905415" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "28534912615431203192832", - "outputIndex": 1, - "expectedQty": "28577098352149143512493", - "swapFee": "22574362541198463663", + "inputQty": "2359579280017327915008", + "expectedQty": "2367352784538770663942", + "swapFee": "1415747568010396749", "reserves": [ - "2545004038041453641062766", - "3502209846849726716800157" + "2006149568704081968947755", + "4950013187349070760905415" ], - "LPTokenSupply": "5972036574917084109463618", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6888517417085368947479905" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1418595605311006208", - "expectedQty": "1436924846448263612", - "swapFee": "851157363186603", + "inputQty": "8730532390448380510208", + "expectedQty": "8832084128735334087036", + "swapFee": "5238319434269028306", "reserves": [ - "2545004038041453641062766", - "3502208409924880268536545" + "2006149568704081968947755", + "4941181103220335426818379" ], - "LPTokenSupply": "5972035156406594534776070" + "LPTokenSupply": "6879787408526863993872527" }, { - "type": "redeemMasset", - "inputQty": "1243287371790542700544", - "expectedQtys": [ - "529513439891844510507", - "728669343795856260355" - ], - "redemptionFee": "745972423074325620", - "reserves": [ - "2544474524601561796552259", - "3501479740581084412276190" + "type": "redeemBassets", + "inputQtys": [ + "17039531744075471388672", + "2807310900943465742336" ], - "LPTokenSupply": "5970791943632046299508088" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "15508145214861204258816", - "outputIndex": 1, - "expectedQty": "15529330436494782140610", - "swapFee": "12267766404943721913", + "expectedQty": "19747206253245575530990", + "swapFee": "11855437014155838821", "reserves": [ - "2559982669816423000811075", - "3485950410144589630135580" + "1989110036960006497559083", + "4938373792319391961076043" ], - "LPTokenSupply": "5970793170408686793880279", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6860029532380305678086597" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "264141644767230905286656", - "expectedQty": "266913450844540755011019", - "swapFee": "158484986860338543171", + "inputQty": "41050350498817064960", + "expectedQty": "41182708752103683143", + "swapFee": "24630210299290238", "reserves": [ - "2293069218971882245800056", - "3485950410144589630135580" + "1989068854251254393875940", + "4938373792319391961076043" ], - "LPTokenSupply": "5706667374140141922447940" + "LPTokenSupply": "6859988484492827890950660" }, { "type": "redeemBassets", "inputQtys": [ - "19435506480037549309952", - "14478713831992747622400" + "353443585200751488", + "574618570258054976" ], - "expectedQty": "33507326803395619829061", - "swapFee": "20116465961614340501", + "expectedQty": "919748283979120343", + "swapFee": "552180278554604", "reserves": [ - "2273633712491844696490104", - "3471471696312596882513180" + "1989068500807669193124452", + "4938373217700821703021067" ], - "LPTokenSupply": "5673141942517380849712427" + "LPTokenSupply": "6859987564247581661131172" }, { - "type": "redeemMasset", - "inputQty": "228338944980904832", - "expectedQtys": [ - "91456838726524790", - "139639830870292579" + "type": "redeem", + "inputIndex": 1, + "inputQty": "59616669052831147229184", + "expectedQty": "60310505119089812046039", + "swapFee": "35770001431698688337", + "reserves": [ + "1989068500807669193124452", + "4878062712581731890975028" ], - "redemptionFee": "137003366988542", + "LPTokenSupply": "6800374472194893683770821" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "5551363849456393912320", + "20222245365198603943936" + ], + "expectedQty": "25507519036459378388306", + "swapFee": "15313699641660623407", "reserves": [ - "2273633621035005969965314", - "3471471556672766012220601" + "1983517136958212799212132", + "4857840467216533287031092" ], - "LPTokenSupply": "5673141714192136205506449" + "LPTokenSupply": "6774853170828756810821447" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "16871953055078210863104", - "expectedQty": "17095996588598587344122", - "swapFee": "10123171833046926517", + "type": "swap", + "inputIndex": 0, + "inputQty": "17753014347125359640576", + "outputIndex": 1, + "expectedQty": "17882757112402699677007", + "swapFee": "14145470416001390658", "reserves": [ - "2273633621035005969965314", - "3454375560084167424876479" + "2001270151305338158852708", + "4839957710104130587354085" ], - "LPTokenSupply": "5656270773454241299335996" + "LPTokenSupply": "6774854585375798410960512", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "37211430564329053749248", - "expectedQty": "37704655956210104140597", - "swapFee": "22326858338597432249", + "inputIndex": 0, + "inputQty": "96668909956402616729600", + "expectedQty": "96982913482765813030397", + "swapFee": "58001345973841570037", "reserves": [ - "2273633621035005969965314", - "3416670904127957320735882" + "1904287237822572345822311", + "4839957710104130587354085" ], - "LPTokenSupply": "5619061575575746105329972" + "LPTokenSupply": "6678191475553993178387915" }, { "type": "mintMulti", "inputQtys": [ - "7463130976272681984", - "10534134326985613312" + "133849494635733303296", + "936862969628007727104" ], - "expectedQty": "17772714400888840294", + "expectedQty": "1058765041716530982805", "reserves": [ - "2273641084165982242647298", - "3416681438262284306349194" + "1904421087317208079125607", + "4840894573073758595081189" ], - "LPTokenSupply": "5619079348290146994170266" + "LPTokenSupply": "6679250240595709709370720" }, { "type": "mintMulti", "inputQtys": [ - "5004941652722714673152", - "5263261590063901835264" + "144071552897798895566848", + "4502589862224831447040" ], - "expectedQty": "10142215003641842214628", + "expectedQty": "147949118267567565159413", "reserves": [ - "2278646025818704957320450", - "3421944699852348208184458" + "2048492640215006974692455", + "4845397162935983426528229" ], - "LPTokenSupply": "5629221563293788836384894" + "LPTokenSupply": "6827199358863277274530133" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "139961973035414929276928", - "expectedQty": "141384514206001345347490", - "swapFee": "83977183821248957566", + "type": "mintMulti", + "inputQtys": [ + "43903969738472894234624", + "42526070399552947486720" + ], + "expectedQty": "85731025225605925984470", "reserves": [ - "2137261511612703611972960", - "3421944699852348208184458" + "2092396609953479868927079", + "4887923233335536374014949" ], - "LPTokenSupply": "5489267987976756032003722" + "LPTokenSupply": "6912930384088883200514603" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "24351235566169164349440", - "expectedQty": "24013041402427542423798", + "type": "mintMulti", + "inputQtys": [ + "7190194520800184320", + "4815628416213886976" + ], + "expectedQty": "11916628484881643142", "reserves": [ - "2137261511612703611972960", - "3446295935418517372533898" - ] + "2092403800148000669111399", + "4887928048963952587901925" + ], + "LPTokenSupply": "6912942300717368082157745" }, { "type": "mintMulti", "inputQtys": [ - "41133698452048238870528", - "24342815978226532220928" + "281124151119317952", + "538825027915973952" ], - "expectedQty": "64706728662768093431770", + "expectedQty": "812296066653239275", "reserves": [ - "2178395210064751850843488", - "3470638751396743904754826" + "2092404081272151788429351", + "4887928587788980503875877" ], - "LPTokenSupply": "5577987758041951667859290" + "LPTokenSupply": "6912943113013434735397020" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "22095728630501765120", - "expectedQty": "22392849604518696078", - "swapFee": "13257437178301059", + "inputQty": "23235971950343954432", + "outputIndex": 0, + "expectedQty": "23062371174586240180", + "swapFee": "0", "reserves": [ - "2178395210064751850843488", - "3470616358547139386058748" + "2092381018900977202189171", + "4887951823760930847830309" ], - "LPTokenSupply": "5577965663639064883924275" + "LPTokenSupply": "6912943113013434735397020", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "742310419163695677440", - "expectedQty": "752291983172380879484", - "swapFee": "445386251498217406", + "type": "mint", + "inputIndex": 0, + "inputQty": "2154207560478162944000", + "expectedQty": "2144619907843699972957", + "reserves": [ + "2094535226461455365133171", + "4887951823760930847830309" + ] + }, + { + "type": "redeemMasset", + "inputQty": "528615918505568921190", + "expectedQtys": [ + "160018264773798786341", + "373429656018508125080" + ], + "redemptionFee": "317169551103341352", "reserves": [ - "2178395210064751850843488", - "3469864066563967005179264" + "2094375208196681566346830", + "4887578394104912339705229" ], - "LPTokenSupply": "5577223397758526338068575" + "LPTokenSupply": "6914559148719727976782922" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "236136271213910934159360", - "outputIndex": 0, - "expectedQty": "235151277061658186619388", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "452560237196604996583424", + "outputIndex": 1, + "expectedQty": "454777344144272192336169", + "swapFee": "360121751522513263620", "reserves": [ - "1943243933003093664224100", - "3706000337777877939338624" + "2546935445393286562930254", + "4432801049960640147369060" ], - "LPTokenSupply": "5577223397758526338068575", + "LPTokenSupply": "6914595160894880228109284", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "384540980276762813399040", - "expectedQty": "380679703523902401553676", + "inputQty": "6588323581792189677568", + "expectedQty": "6544034443665569961040", "reserves": [ - "2327784913279856477623140", - "3706000337777877939338624" + "2553523768975078752607822", + "4432801049960640147369060" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "11952798497962682368", - "expectedQty": "11787152111485099826", + "inputQty": "25751998934141733175296", + "expectedQty": "25472891040168052974612", "reserves": [ - "2327784913279856477623140", - "3706012290576375902020992" + "2553523768975078752607822", + "4458553048894781880544356" ] }, { - "type": "mintMulti", - "inputQtys": [ - "51039494737016408", - "226202394286744160" + "type": "redeemMasset", + "inputQty": "1311170538711140966", + "expectedQtys": [ + "481687509118076884", + "841045357981899654" ], - "expectedQty": "273569393832392423", + "redemptionFee": "786702323226684", "reserves": [ - "2327784964319351214639548", - "3706012516778770188765152" + "2553523287287569634530938", + "4458552207849423898644702" ], - "LPTokenSupply": "5957915162003934057114500" + "LPTokenSupply": "6946610775286845372226638" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "164685533009553653760", - "223004119791194963968" + "105070620384867242737664", + "6712873061196619579392" + ], + "expectedQty": "111019458575536204588249", + "swapFee": "66651666145008727989", + "reserves": [ + "2448452666902702391793274", + "4451839334788227279065310" ], - "expectedQty": "382864230228933423093", + "LPTokenSupply": "6835531330211778659783197" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "69540444676488423276544", + "expectedQty": "70269457534012006121045", + "swapFee": "41724266805893053965", "reserves": [ - "2327949649852360768293308", - "3706235520898561383729120" + "2448452666902702391793274", + "4381569877254215272944265" ], - "LPTokenSupply": "5958298026234162990537593" + "LPTokenSupply": "6765995057961970825812049" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "9637438331271474315264", - "expectedQty": "9535805738073874223742", + "inputIndex": 1, + "inputQty": "38561510276339800735744", + "expectedQty": "38138821941659090765454", "reserves": [ - "2337587088183632242608572", - "3706235520898561383729120" + "2448452666902702391793274", + "4420131387530555073680009" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "217867957496356764909568", - "expectedQty": "220772265433684929046733", - "swapFee": "130720774497814058945", + "type": "mintMulti", + "inputQtys": [ + "5437573400755895795712", + "210193906201421152256" + ], + "expectedQty": "5610040609445704843494", "reserves": [ - "2337587088183632242608572", - "3485463255464876454682387" + "2453890240303458287588986", + "4420341581436756494832265" ], - "LPTokenSupply": "5749978946553329881257661" + "LPTokenSupply": "6809743920513075621420997" }, { "type": "redeemMasset", - "inputQty": "60537860569866475929", + "inputQty": "379784889620499660", "expectedQtys": [ - "24596196788933852893", - "36674201601030387690" + "136773316980157830", + "246378085844481852" ], - "redemptionFee": "36322716341919885", + "redemptionFee": "227870933772299", "reserves": [ - "2337562491986843308755679", - "3485426581263275424294697" + "2453890103530141307431156", + "4420341335058670650350413" ], - "LPTokenSupply": "5749918412325031648973720" + "LPTokenSupply": "6809743540750973094298566" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3662921462504458", - "expectedQty": "3612854604743296", + "inputQty": "46136205878006505472", + "expectedQty": "45630137065631523513", "reserves": [ - "2337562491986843308755679", - "3485426584926196886799155" + "2453890103530141307431156", + "4420387471264548656855885" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "62739310867430604800", - "expectedQty": "62056777734820439567", + "type": "mintMulti", + "inputQtys": [ + "72720241062359244800", + "52378543082711097344" + ], + "expectedQty": "124050054603549886204", "reserves": [ - "2337625231297710739360479", - "3485426584926196886799155" - ] + "2453962823771203666675956", + "4420439849807631367953229" + ], + "LPTokenSupply": "6809913220942642275708283" }, { "type": "mint", "inputIndex": 1, - "inputQty": "16588415995504712744960", - "expectedQty": "16361552720198170022907", + "inputQty": "2740649549055857262592", + "expectedQty": "2710584506197384315968", "reserves": [ - "2337625231297710739360479", - "3502015000921701599544115" + "2453962823771203666675956", + "4423180499356687225215821" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "756202326429174", - "expectedQty": "766233382239521", - "swapFee": "453721395857", + "type": "redeemBassets", + "inputQtys": [ + "103665024163255776", + "106054159840586928" + ], + "expectedQty": "207880074034011662", + "swapFee": "124802926176112", "reserves": [ - "2337625231297710739360479", - "3502015000155468217304594" + "2453962720106179503420180", + "4423180393302527384628893" ], - "LPTokenSupply": "5766342024679662289889901" + "LPTokenSupply": "6812623597456442992454087" }, { - "type": "mintMulti", - "inputQtys": [ - "438099930482519703552", - "171214800372708376576" + "type": "redeemMasset", + "inputQty": "1486072188802604441", + "expectedQtys": [ + "534974175385015479", + "964271895452349057" ], - "expectedQty": "602215597233023381394", + "redemptionFee": "891643313281562", "reserves": [ - "2338063331228193259064031", - "3502186214955840925681170" + "2453962185132004118404701", + "4423179429030631932279836" ], - "LPTokenSupply": "5766944240276895313271295" + "LPTokenSupply": "6812622111473418521177802" }, { - "type": "mintMulti", - "inputQtys": [ - "115904433382070026240", - "295665767933642211328" + "type": "redeemMasset", + "inputQty": "17426199379917417", + "expectedQtys": [ + "6273293259041428", + "11307387645900484" ], - "expectedQty": "406266187741179385434", + "redemptionFee": "10455719627950", "reserves": [ - "2338179235661575329090271", - "3502481880723774567892498" + "2453962178858710859363273", + "4423179417723244286379352" ], - "LPTokenSupply": "5767350506464636492656729" + "LPTokenSupply": "6812622094048264713223180" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1277866671217562615808", - "expectedQty": "1294816424755684922725", - "swapFee": "766720002730537569", + "type": "mint", + "inputIndex": 0, + "inputQty": "26648099456483617406976", + "expectedQty": "26473543720204828719623", "reserves": [ - "2338179235661575329090271", - "3501187064299018882969773" - ], - "LPTokenSupply": "5766072716465419203094677" + "2480610278315194476770249", + "4423179417723244286379352" + ] }, { - "type": "redeemMasset", - "inputQty": "4880060480006587311718", - "expectedQtys": [ - "1977708289545220657219", - "2961418258576513221268" - ], - "redemptionFee": "2928036288003952387", + "type": "redeem", + "inputIndex": 1, + "inputQty": "71993033042195313065984", + "expectedQty": "72743149199771634495773", + "swapFee": "43195819825317187839", "reserves": [ - "2336201527372030108433052", - "3498225646040442369748505" + "2480610278315194476770249", + "4350436268523472651883579" ], - "LPTokenSupply": "5761192948789041416178197" + "LPTokenSupply": "6767106924308256760595602" }, { - "type": "redeemMasset", - "inputQty": "129829843143668198", - "expectedQtys": [ - "52615264813811384", - "78786040753912027" - ], - "redemptionFee": "77897905886200", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4139167463309934592", + "expectedQty": "4164542414254594532", + "swapFee": "2483500477985960", "reserves": [ - "2336201474756765294621668", - "3498225567254401615836478" + "2480606113772780222175717", + "4350436268523472651883579" ], - "LPTokenSupply": "5761192818966988063098619" + "LPTokenSupply": "6767102785389143498459606" }, { "type": "mintMulti", "inputQtys": [ - "2211625586216384856064", - "1475690008855336714240" + "356893371174670080", + "556457771301279872" ], - "expectedQty": "3643106184729398489901", + "expectedQty": "904907804530522115", "reserves": [ - "2338413100342981679477732", - "3499701257263256952550718" + "2480606470666151396845797", + "4350436824981243953163451" ], - "LPTokenSupply": "5764835925151717461588520" + "LPTokenSupply": "6767103690296948028981721" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "42769675385207717888", - "6612746120598664192" + "164487471901613752320", + "1094275056343418404864" ], - "expectedQty": "48827398026245089646", + "expectedQty": "1245753471676040474878", + "swapFee": "747900823499724119", "reserves": [ - "2338455870018366887195620", - "3499707870009377551214910" + "2480441983194249783093477", + "4349342549924900534758587" ], - "LPTokenSupply": "5764884752549743706678166" + "LPTokenSupply": "6765857263714530838755134" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "559341573747679680", - "expectedQty": "551689288207174741", + "type": "redeemMasset", + "inputQty": "46396819232665796608", + "expectedQtys": [ + "16999407917932783411", + "29807691001013499204" + ], + "redemptionFee": "27838091539599477", "reserves": [ - "2338455870018366887195620", - "3499708429350951298894590" - ] + "2480424983786331850310066", + "4349312742233899521259383" + ], + "LPTokenSupply": "6765810869679107326918473" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2427731425020181741568", - "expectedQty": "2452911773162133082187", - "swapFee": "1456638855012109044", + "inputIndex": 1, + "inputQty": "1015010574321676582912", + "expectedQty": "1025561791989505546896", + "swapFee": "609006344593005949", "reserves": [ - "2336002958245204754113433", - "3499708429350951298894590" + "2480424983786331850310066", + "4348287180441910015712487" ], - "LPTokenSupply": "5762457718477897233322243" + "LPTokenSupply": "6764795920005420109636155" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2794461385468864888832", - "2181944330135220781056" + "462455334643952386048", + "277452967845693456384" ], - "expectedQty": "4916205571650666911413", + "expectedQty": "733794432861677267556", + "swapFee": "440540984307590915", "reserves": [ - "2338797419630673619002265", - "3501890373681086519675646" + "2479962528451687897924018", + "4348009727474064322256103" ], - "LPTokenSupply": "5767373924049547900233656" + "LPTokenSupply": "6764061729085672555536774" }, { - "type": "mintMulti", - "inputQtys": [ - "17190009013984317931520", - "8103772541263570534400" + "type": "redeemMasset", + "inputQty": "1637767337849191713996", + "expectedQtys": [ + "600107572903515360540", + "1052142334644217676865" ], - "expectedQty": "24996080918197002109658", + "redemptionFee": "982660402709515028", "reserves": [ - "2355987428644657936933785", - "3509994146222350090210046" + "2479362420878784382563478", + "4346957585139420104579238" ], - "LPTokenSupply": "5792370004967744902343314" + "LPTokenSupply": "6762424060013863634774280" }, { - "type": "mintMulti", - "inputQtys": [ - "20278712206568701558784", - "2638665252260625776640" - ], - "expectedQty": "22660271092952063248567", + "type": "mint", + "inputIndex": 0, + "inputQty": "6604066519016128118784", + "expectedQty": "6559822527645272447391", "reserves": [ - "2376266140851226638492569", - "3512632811474610715986686" - ], - "LPTokenSupply": "5815030276060696965591881" + "2485966487397800510682262", + "4346957585139420104579238" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "2088972698509799424", - "outputIndex": 0, - "expectedQty": "2083224232294725429", - "swapFee": "0", + "inputQty": "45140856650235373420544", + "expectedQty": "44649231827587393547849", "reserves": [ - "2376264057626994343767140", - "3512634900447309225786110" - ], - "LPTokenSupply": "5815030276060696965591881", - "hardLimitError": false, - "insufficientLiquidityError": false + "2485966487397800510682262", + "4392098441789655477999782" + ] }, { "type": "redeemMasset", - "inputQty": "5791538256657149591552", + "inputQty": "34875862020156614", "expectedQtys": [ - "2365244239530409020095", - "3496345213483267879152" + "12716887248297561", + "22467648277160712" ], - "redemptionFee": "3474922953994289754", + "redemptionFee": "20925517212093", "reserves": [ - "2373898813387463934747045", - "3509138555233825957906958" + "2485966474680913262384701", + "4392098419322007200839070" ], - "LPTokenSupply": "5809239085296335215429304" + "LPTokenSupply": "6813633079495326832334115" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "86525790890686775296", - "expectedQty": "87428654961291913854", - "swapFee": "51915474534412065", + "type": "redeemMasset", + "inputQty": "1559341344397981491", + "expectedQtys": [ + "568587180638341952", + "1004555323960657413" + ], + "redemptionFee": "935604806638788", "reserves": [ - "2373811384732502642833191", - "3509138555233825957906958" + "2485965906093732624042749", + "4392097414766683240181657" ], - "LPTokenSupply": "5809152564696991982095214" + "LPTokenSupply": "6813631520247542915016502" }, { - "type": "redeemBassets", - "inputQtys": [ - "115458009740228976", - "34633086772227632" + "type": "redeemMasset", + "inputQty": "3136845315797067340185", + "expectedQtys": [ + "1143797053054248772470", + "2020811334307937575137" ], - "expectedQty": "148357739566001973", - "swapFee": "89068084590355", + "redemptionFee": "1882107189478240404", "reserves": [ - "2373811269274492902604215", - "3509138520600739185679326" + "2484822109040678375270279", + "4390076603432375302606520" ], - "LPTokenSupply": "5809152416259091139961920" + "LPTokenSupply": "6810494863142464795500357" }, { - "type": "mintMulti", - "inputQtys": [ - "32695760176560383983616", - "2727173072599829708800" + "type": "redeemMasset", + "inputQty": "1783987229468280435507", + "expectedQtys": [ + "650500626534327421615", + "1149276469601672195883" ], - "expectedQty": "35027743461146701019395", + "redemptionFee": "1070392337680968261", "reserves": [ - "2406507029451053286587831", - "3511865693673339015388126" + "2484171608414144047848664", + "4388927326962773630410637" ], - "LPTokenSupply": "5844180159720237840981315" + "LPTokenSupply": "6808710982952230283161676" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "22377525070619644", - "expectedQty": "22612391336882992", - "swapFee": "13426515042371", + "type": "redeemBassets", + "inputQtys": [ + "37065026522426535575552", + "54808776932539790000128" + ], + "expectedQty": "91029613745895404631198", + "swapFee": "54650558582686854891", "reserves": [ - "2406507006838661949704839", - "3511865693673339015388126" + "2447106581891717512273112", + "4334118550030233840410509" ], - "LPTokenSupply": "5844180137344055421865908" + "LPTokenSupply": "6717632183703610460361075" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "592305020290237440", - "457380490634707264" + "19591231730578075156480", + "1389734057807612739584" ], - "expectedQty": "1036960511048592895", + "expectedQty": "20836170905240441129084", + "swapFee": "12509208067985055710", "reserves": [ - "2406507599143682239942279", - "3511866151053829650095390" + "2427515350161139437116632", + "4332728815972426227670925" ], - "LPTokenSupply": "5844181174304566470458803" + "LPTokenSupply": "6696784754511108832681851" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "122464097297151152", - "expectedQty": "120798347984952929", + "type": "redeemBassets", + "inputQtys": [ + "120916533817960095023104", + "60133539023609546145792" + ], + "expectedQty": "179604297768075280484945", + "swapFee": "107827275025860684701", "reserves": [ - "2406507599143682239942279", - "3511866273517926947246542" - ] + "2306598816343179342093528", + "4272595276948816681525133" + ], + "LPTokenSupply": "6517083412195510277580674" }, { "type": "mintMulti", "inputQtys": [ - "3086762632690080415744", - "6697688413652252622848" + "2725419673743458304000", + "3262531758964210663424" ], - "expectedQty": "9659453490089562513840", + "expectedQty": "5934377784538562077871", "reserves": [ - "2409594361776372320358023", - "3518563961931579199869390" + "2309324236016922800397528", + "4275857808707780892188557" ], - "LPTokenSupply": "5853840748593004017925572" + "LPTokenSupply": "6523017789980048839658545" }, { - "type": "redeemMasset", - "inputQty": "6962707213795687661568", - "expectedQtys": [ - "2864313257764110466777", - "4182558510396686027403" - ], - "redemptionFee": "4177624328277412596", + "type": "swap", + "inputIndex": 1, + "inputQty": "9761410139747901440", + "outputIndex": 0, + "expectedQty": "9715057482600344542", + "swapFee": "0", "reserves": [ - "2406730048518608209891246", - "3514381403421182513841987" + "2309314520959440200052986", + "4275867570117920640089997" ], - "LPTokenSupply": "5846878459141641158005263" + "LPTokenSupply": "6523017789980048839658545", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "349266729737310976", + "inputQty": "153850414180335878144", "expectedQtys": [ - "143681177030982802", - "209807683620421034" + "54434286944669895945", + "100789130340074324311" ], - "redemptionFee": "209560037842386", + "redemptionFee": "92310248508201526", "reserves": [ - "2406729904837431178908444", - "3514381193613498893420953" + "2309260086672495530157041", + "4275766780987580565765686" ], - "LPTokenSupply": "5846878109895867424478525" + "LPTokenSupply": "6522863948796893354600553" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "330828923319027", - "expectedQty": "334300427981483", - "swapFee": "198497353991", + "type": "redeemMasset", + "inputQty": "492397615886530982707", + "expectedQtys": [ + "174216713021030939616", + "322575199964392487604" + ], + "redemptionFee": "295438569531918589", "reserves": [ - "2406729904503130750926961", - "3514381193613498893420953" + "2309085869959474499217425", + "4275444205787616173278082" ], - "LPTokenSupply": "5846878109565058350894897" + "LPTokenSupply": "6522371580724863776809704" }, { "type": "redeemMasset", - "inputQty": "1947743208601555461734", + "inputQty": "1445042614369617811865", "expectedQtys": [ - "801261651696529820790", - "1170026962567419670838" + "511274987106787856987", + "946663660121144965068" ], - "redemptionFee": "1168645925160933277", + "redemptionFee": "867025568621770687", "reserves": [ - "2405928642851434221106171", - "3513211166650931473750115" + "2308574594972367711360438", + "4274497542127495028313014" ], - "LPTokenSupply": "5844930483221049311526490" + "LPTokenSupply": "6520926624813051021174907" }, { "type": "redeemBassets", "inputQtys": [ - "154797352527508562509824", - "101284581898909231611904" + "12759702597164660736", + "12526582033120774144" ], - "expectedQty": "253011960172906188055747", - "swapFee": "151898315092799392468", + "expectedQty": "25065941837844521081", + "swapFee": "15048594259262270", "reserves": [ - "2251131290323925658596347", - "3411926584752022242138211" + "2308561835269770546699702", + "4274485015545461907538870" ], - "LPTokenSupply": "5591781814564559604017520" + "LPTokenSupply": "6520901545327478343317782" }, { - "type": "mintMulti", - "inputQtys": [ - "33069813444884", - "18884801365557" - ], - "expectedQty": "51336962286511", + "type": "redeem", + "inputIndex": 1, + "inputQty": "938344468252644", + "expectedQty": "948302733697626", + "swapFee": "563006680951", "reserves": [ - "2251131290356995472041231", - "3411926584770907043503768" + "2308561835269770546699702", + "4274485014597159173841244" ], - "LPTokenSupply": "5591781814615896566304031" + "LPTokenSupply": "6520901544389190175733233" }, { - "type": "redeemBassets", - "inputQtys": [ - "481403295658741006336", - "682430900351709741056" - ], - "expectedQty": "1149240804349901242429", - "swapFee": "689958457684551476", + "type": "redeem", + "inputIndex": 0, + "inputQty": "20841930437023703040", + "expectedQty": "20963095942078597122", + "swapFee": "12505158262214221", "reserves": [ - "2250649887061336731034895", - "3411244153870555333762712" + "2308540872173828468102580", + "4274485014597159173841244" ], - "LPTokenSupply": "5590631952848934748965272" + "LPTokenSupply": "6520880703709268978251615" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "13643294802513793908736", - "expectedQty": "13784145722421794134662", - "swapFee": "8185976881508276345", + "inputQty": "37737848551607472488448", + "expectedQty": "37955171300605460410589", + "swapFee": "22642709130964483493", "reserves": [ - "2236865741338914936900233", - "3411244153870555333762712" + "2270585700873223007691991", + "4274485014597159173841244" ], - "LPTokenSupply": "5576989476644109105884170" + "LPTokenSupply": "6483145119428574602211516" }, { "type": "redeemBassets", "inputQtys": [ - "277366339026457985024", - "43278325539546406912" + "8157171570576366501888", + "10430569612553966583808" ], - "expectedQty": "317053720487381787888", - "swapFee": "190346440156522986", + "expectedQty": "18420233858877812270859", + "swapFee": "11058775580675092417", "reserves": [ - "2236588374999888478915209", - "3411200875545015787355800" + "2262428529302646641190103", + "4264054444984605207257436" ], - "LPTokenSupply": "5576672251611825583225593" + "LPTokenSupply": "6464714932671674182357480" }, { "type": "mintMulti", "inputQtys": [ - "73809477522676608", - "234009756637927488" + "522821368740185047040", + "120027429353432481792" ], - "expectedQty": "303800336565347259", + "expectedQty": "638233583087261124282", "reserves": [ - "2236588448809366001591817", - "3411201109554772425283288" + "2262951350671386826237143", + "4264174472413958639739228" ], - "LPTokenSupply": "5576672555412162148572852" + "LPTokenSupply": "6465353166254761443481762" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "4027095677720844042240", - "outputIndex": 1, - "expectedQty": "4035943299761037148373", - "swapFee": "3186874559694609343", + "inputQty": "23285686620567150592", + "expectedQty": "23139783518754248725", + "reserves": [ + "2262974636358007393387735", + "4264174472413958639739228" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "476541569069589568", + "outputIndex": 0, + "expectedQty": "474193994180588400", + "swapFee": "0", "reserves": [ - "2240615544487086845634057", - "3407165166255011388134915" + "2262974162164013212799335", + "4264174948955527709328796" ], - "LPTokenSupply": "5576672874099618118033786", + "LPTokenSupply": "6465376306038280197730487", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "14494062972234463444992", - "expectedQty": "14337111559958715266389", + "type": "redeem", + "inputIndex": 1, + "inputQty": "17283783493878351396864", + "expectedQty": "17468253602061340513602", + "swapFee": "10370270096327010838", "reserves": [ - "2255109607459321309079049", - "3407165166255011388134915" - ] + "2262974162164013212799335", + "4246706695353466368815194" + ], + "LPTokenSupply": "6448093559571411479034706" }, { "type": "mintMulti", "inputQtys": [ - "38305823054602849746944", - "62633852830694563119104" + "16609817469199319040000", + "18897518419756300894208" ], - "expectedQty": "99663763435249480080530", + "expectedQty": "35192050090985128055993", "reserves": [ - "2293415430513924158825993", - "3469799019085705951254019" + "2279583979633212531839335", + "4265604213773222669709402" ], - "LPTokenSupply": "5690673749094826313380705" + "LPTokenSupply": "6483285609662396607090699" }, { - "type": "redeemMasset", - "inputQty": "178444890103018", - "expectedQtys": [ - "71872458962350", - "108738689157140" + "type": "redeemBassets", + "inputQtys": [ + "27907891156158471208960", + "32688427102605353680896" ], - "redemptionFee": "107066934061", + "expectedQty": "60056196081670417562549", + "swapFee": "36055350859517961314", "reserves": [ - "2293415430442051699863643", - "3469799018976967262096879" + "2251676088477054060630375", + "4232915786670617316028506" ], - "LPTokenSupply": "5690673748916392129971093" + "LPTokenSupply": "6423196963764952623362966" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "39483086380122660864", - "outputIndex": 0, - "expectedQty": "39367108653089999755", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "19620949474136401510", + "expectedQtys": [ + "6874071431960313491", + "12922536075216143135" + ], + "redemptionFee": "11772569684481840", "reserves": [ - "2293376063333398609863888", - "3469838502063347384757743" + "2251669214405622100316884", + "4232902864134542099885371" ], - "LPTokenSupply": "5690673748916392129971093", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6423177343992735455409640" }, { "type": "redeemMasset", - "inputQty": "3787759708006107545", + "inputQty": "13129664831275938611", "expectedQtys": [ - "1525574260022239835", - "2308167591793875120" + "4599892283283032566", + "8647316886534286560" ], - "redemptionFee": "2272655824803664", + "redemptionFee": "7877798898765563", "reserves": [ - "2293374537759138587624053", - "3469836193895755590882623" + "2251664614513338817284318", + "4232894216817655565598811" ], - "LPTokenSupply": "5690669961383949706343914" + "LPTokenSupply": "6423164215115684069347585" }, { - "type": "redeemMasset", - "inputQty": "24936890117965024", - "expectedQtys": [ - "10043688257793470", - "15195927426293638" + "type": "redeemBassets", + "inputQtys": [ + "1632464419815599616", + "2074944082851422720" ], - "redemptionFee": "14962134070779", + "expectedQty": "3673988665953342370", + "swapFee": "2205716629549735", + "reserves": [ + "2251662982048919001684702", + "4232892141873572714176091" + ], + "LPTokenSupply": "6423160539141873149410452" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "2954783115556114399232", + "outputIndex": 1, + "expectedQty": "2966933351250928075557", + "swapFee": "2348952585744669173", "reserves": [ - "2293374527715450329830583", - "3469836178699828164588985" + "2254617765164475116083934", + "4229925208522321786100534" ], - "LPTokenSupply": "5690669936448555801785967" + "LPTokenSupply": "6423160774037131723877369", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "85525488822495387582464", - "expectedQty": "84591144152826994169432", + "inputQty": "58425922459429846908928", + "expectedQty": "58052837888025470871804", "reserves": [ - "2378900016537945717413047", - "3469836178699828164588985" + "2313043687623904962992862", + "4229925208522321786100534" ] }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "967662820154285440", + "expectedQty": "977900608873558995", + "swapFee": "580597692092571", + "reserves": [ + "2313043687623904962992862", + "4229924230621712912541539" + ], + "LPTokenSupply": "6481212644320396809672990" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1403768761377333", + "expectedQty": "1418620512671224", + "swapFee": "842261256826", + "reserves": [ + "2313043687623904962992862", + "4229924229203092399870315" + ], + "LPTokenSupply": "6481212642916712274421339" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "8247081965876369424384", + "outputIndex": 1, + "expectedQty": "8278547691103590620221", + "swapFee": "6554918941098692087", + "reserves": [ + "2321290769589781332417246", + "4221645681511988809250094" + ], + "LPTokenSupply": "6481213298408606384290547", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "mint", "inputIndex": 0, - "inputQty": "148562277596429511819264", - "expectedQty": "146906297200289205327967", + "inputQty": "3310614091516843917312", + "expectedQty": "3289068275849348335462", "reserves": [ - "2527462294134375229232311", - "3469836178699828164588985" + "2324601383681298176334558", + "4221645681511988809250094" ] }, { "type": "redeemBassets", "inputQtys": [ - "2293746961927214202880", - "1003280983879894302720" + "6106676003116404441088", + "916553388765502898176" ], - "expectedQty": "3257679739761799223613", - "swapFee": "1955781312644666333", + "expectedQty": "6973383262447025761411", + "swapFee": "4186541882597774121", "reserves": [ - "2525168547172448015029431", - "3468832897715948270286265" + "2318494707678181771893470", + "4220729128123223306351918" ], - "LPTokenSupply": "5918907937858728821860052" + "LPTokenSupply": "6477525215534314368867888" }, { - "type": "mintMulti", - "inputQtys": [ - "190789856787765788672", - "387090509800936374272" + "type": "redeemMasset", + "inputQty": "1040194964731082676633", + "expectedQtys": [ + "372092647820172811984", + "677380143165326930433" + ], + "redemptionFee": "624116978838649605", + "reserves": [ + "2318122615030361599081486", + "4220051747980057979421485" ], - "expectedQty": "570526623096443344308", + "LPTokenSupply": "6476485082981281170056215" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "45956443059691865505792", + "expectedQty": "46441094093337496691512", + "swapFee": "27573865835815119303", "reserves": [ - "2525359337029235780818103", - "3469219988225749206660537" + "2318122615030361599081486", + "4173610653886720482729973" ], - "LPTokenSupply": "5919478464481825265204360" + "LPTokenSupply": "6430531397308172886062353" }, { "type": "redeemMasset", - "inputQty": "848794765452511386009", + "inputQty": "10115385105179090944", "expectedQtys": [ - "361894327674164468784", - "497153421607578381313" + "3644276390608006587", + "6561253779645391969" ], - "redemptionFee": "509276859271506831", + "redemptionFee": "6069231063107454", "reserves": [ - "2524997442701561616349319", - "3468722834804141628279224" + "2318118970753970991074899", + "4173604092632940837338004" ], - "LPTokenSupply": "5918629720644058680969034" + "LPTokenSupply": "6430521282529990813282154" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10771635716965545984", - "501471881808781180928" + "16954412098169", + "59538078787482" ], - "expectedQty": "505382293098602959476", - "swapFee": "303411422712789449", + "expectedQty": "75725314797481", "reserves": [ - "2524986671065844650803335", - "3468221362922332847098296" + "2318118970770925403173068", + "4173604092692478916125486" ], - "LPTokenSupply": "5918124065280679636499052" + "LPTokenSupply": "6430521282605716128079635" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "66399929239633862656", - "expectedQty": "65651199211371893273", + "inputQty": "525622806909056385024", + "expectedQty": "528781780496680529238", + "swapFee": "315373684145433831", "reserves": [ - "2525053070995084284665991", - "3468221362922332847098296" - ] + "2317590188990428722643830", + "4173604092692478916125486" + ], + "LPTokenSupply": "6429995691336175486237994" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2223788932654944768", - "1005972997866353408" + "14497403958842438", + "4353500532412821" ], - "expectedQty": "3191166220488935617", + "expectedQty": "18707705270967124", + "swapFee": "11231361979768", "reserves": [ - "2525055294784016939610759", - "3468222368895330713451704" + "2317590174493024763801392", + "4173604088338978383712665" ], - "LPTokenSupply": "5918192907646111497327942" + "LPTokenSupply": "6429995672618361989489077" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "35390403105584473702400", - "expectedQty": "34990287800911771611828", + "inputQty": "1150746692925498851328", + "expectedQty": "1157660054545398711685", + "swapFee": "690448015755299310", "reserves": [ - "2560445697889601413313159", - "3468222368895330713451704" - ] + "2316432514438479365089707", + "4173604088338978383712665" + ], + "LPTokenSupply": "6428844994970238066167680" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "66483436298805656420352", - "expectedQty": "67201503843754407717897", - "swapFee": "39890061779283393852", + "inputQty": "4110959749734842499072", + "outputIndex": 1, + "expectedQty": "4126098528744747907559", + "swapFee": "3267153000965195441", "reserves": [ - "2493244194045847005595262", - "3468222368895330713451704" + "2320543474188214207588779", + "4169477989810233635805106" ], - "LPTokenSupply": "5886703748154395540858803" + "LPTokenSupply": "6428845321685538162687224", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "3989127497599741329408", - "3076672151707203928064" + "5135983292675541434368", + "7187325179066075578368" ], - "expectedQty": "6979524526188755316999", - "swapFee": "4190228853025068231", + "expectedQty": "12210376241192764989067", + "swapFee": "7330624119187171296", "reserves": [ - "2489255066548247264265854", - "3465145696743623509523640" + "2315407490895538666154411", + "4162290664631167560226738" ], - "LPTokenSupply": "5879720452422239062980395" + "LPTokenSupply": "6416628347882638129243989" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2878128096119130423296", - "93077419614794317561856" + "59247705514145095680", + "6329447666623225790464" ], - "expectedQty": "94664268057407754673080", + "expectedQty": "6318630995037848682200", + "swapFee": "3793454669824603971", "reserves": [ - "2492133194644366394689150", - "3558223116358417827085496" + "2315348243190024521058731", + "4155961216964544334436274" ], - "LPTokenSupply": "5974384720479646817653475" + "LPTokenSupply": "6410306302778397438418214" }, { "type": "mintMulti", "inputQtys": [ - "157366906708660125696", - "16764575212346913325056" + "47309086081546100736", + "17677460471830917120" ], - "expectedQty": "16692623669445571656715", + "expectedQty": "64480119495402320244", "reserves": [ - "2492290561551075054814846", - "3574987691570764740410552" + "2315395552276106067159467", + "4155978894425016165353394" ], - "LPTokenSupply": "5991077344149092389310190" + "LPTokenSupply": "6410370782897892840738458" }, { "type": "redeemMasset", - "inputQty": "4902598366559055872", + "inputQty": "30774817454829980876", "expectedQtys": [ - "2038259183583214514", - "2923716682940115787" + "11109048812236624786", + "19939993559807595965" ], - "redemptionFee": "2941559019935433", + "redemptionFee": "18464890472897988", "reserves": [ - "2492288523291891471600332", - "3574984767854081800294765" + "2315384443227293830534681", + "4155958954431456357757429" ], - "LPTokenSupply": "5991072441844881732247861" + "LPTokenSupply": "6410340009926927058047380" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2623219465133526016", + "inputQty": "11971285991951544877056", "outputIndex": 1, - "expectedQty": "2627734971593084035", - "swapFee": "2075296745616146", + "expectedQty": "12014622048694080136614", + "swapFee": "9513742128190399993", "reserves": [ - "2492291146511356605126348", - "3574982140119110207210730" + "2327355729219245375411737", + "4143944332382762277620815" ], - "LPTokenSupply": "5991072442052411406809475", + "LPTokenSupply": "6410340961301139877087379", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "563653770873787840", - "expectedQty": "557401336515341448", - "reserves": [ - "2492291710165127478914188", - "3574982140119110207210730" - ] - }, { "type": "redeemBassets", "inputQtys": [ - "13443105336617072590848", - "162633637057925293801472" + "8209000083324928000000", + "7541018240025195708416" ], - "expectedQty": "173727926373639951679503", - "swapFee": "104299335425439234548", + "expectedQty": "15612709830611306837647", + "swapFee": "9373249848275749552", "reserves": [ - "2478848604828510406323340", - "3412348503061184913409258" + "2319146729135920447411737", + "4136403314142737081912399" ], - "LPTokenSupply": "5817251203678225075160325" + "LPTokenSupply": "6394719815545665122075134" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "37026970844221101047808", - "expectedQty": "37426042339463512597866", - "swapFee": "22216182506532660628", + "type": "mintMulti", + "inputQtys": [ + "814925479032503402496", + "970943936191471943680" + ], + "expectedQty": "1769795758443438912582", "reserves": [ - "2441422562489046893725474", - "3412348503061184913409258" + "2319961654614952950814233", + "4137374258078928553856079" ], - "LPTokenSupply": "5780226454452254627378579" + "LPTokenSupply": "6396489611304108560987716" }, { "type": "redeemBassets", "inputQtys": [ - "7205020207289215221760", - "119468211701728923353088" + "12781002594379816960", + "228587355692383338496" ], - "expectedQty": "124982665559536911394880", - "swapFee": "75034620107786818928", + "expectedQty": "238772259276448526735", + "swapFee": "143349365184980104", "reserves": [ - "2434217542281757678503714", - "3292880291359455990056170" + "2319948873612358570997273", + "4137145670723236170517583" ], - "LPTokenSupply": "5655176257734620707846662" + "LPTokenSupply": "6396250710030403445978886" }, { - "type": "mintMulti", - "inputQtys": [ - "3217261287718181376", - "38136641413405204480" + "type": "redeemMasset", + "inputQty": "50446570798517236531", + "expectedQtys": [ + "18286219587851212163", + "32609664403498376122" ], - "expectedQty": "40805114190658926250", + "redemptionFee": "30267942479110341", "reserves": [ - "2434220759543045396685090", - "3292918428000869395260650" + "2319930587392770719785110", + "4137113061058832672141461" ], - "LPTokenSupply": "5655217062848811366772912" + "LPTokenSupply": "6396200266486399176653389" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "53207054554477595983872", - "outputIndex": 0, - "expectedQty": "53089100547009927563380", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "44101415801661", + "expectedQty": "44369342833016", + "swapFee": "26460849480", "reserves": [ - "2381131658996035469121710", - "3346125482555346991244522" + "2319930587348401376952094", + "4137113061058832672141461" ], - "LPTokenSupply": "5655217062848811366772912", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6396200266442300406936676" }, { "type": "swap", "inputIndex": 1, - "inputQty": "48751407952647008813056", + "inputQty": "480756683554531311616", "outputIndex": 0, - "expectedQty": "48629809654137707803840", + "expectedQty": "478650113024946997509", "swapFee": "0", "reserves": [ - "2332501849341897761317870", - "3394876890507994000057578" + "2319451937235376429954585", + "4137593817742387203453077" ], - "LPTokenSupply": "5655217062848811366772912", + "LPTokenSupply": "6396200266442300406936676", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1621791635248604", - "expectedQtys": [ - "668508785296218", - "972991737152976" + "type": "mintMulti", + "inputQtys": [ + "2680592350756762112", + "28799889755125784576" ], - "redemptionFee": "973074981149", + "expectedQty": "31146270925106382606", "reserves": [ - "2332501848673388976021652", - "3394876889535002262904602" + "2319454617827727186716697", + "4137622617632142329237653" ], - "LPTokenSupply": "5655217061227117039022422" + "LPTokenSupply": "6396231412713225513319282" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "34566038826491109376", - "expectedQty": "34093912480610351240", + "type": "redeemMasset", + "inputQty": "111545653366611276", + "expectedQtys": [ + "40425342528630391", + "72113853957892314" + ], + "redemptionFee": "66927392019966", "reserves": [ - "2332501848673388976021652", - "3394911455573828754013978" - ] + "2319454577402384658086306", + "4137622545518288371345339" + ], + "LPTokenSupply": "6396231301174264885910002" }, { "type": "mint", "inputIndex": 1, - "inputQty": "801334076917384576", - "expectedQty": "790388900770540328", + "inputQty": "16787117816517610", + "expectedQty": "16602673759153442", "reserves": [ - "2332501848673388976021652", - "3394912256907905671398554" + "2319454577402384658086306", + "4137622562305406187862949" ] }, { - "type": "mintMulti", - "inputQtys": [ - "545565146751133349314560", - "286117691576896697925632" - ], - "expectedQty": "821641927154148795859859", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4295058617766701", + "expectedQty": "4321143421716922", + "swapFee": "2577035170660", "reserves": [ - "2878066995424522325336212", - "3681029948484802369324186" + "2319454573081241236369384", + "4137622562305406187862949" ], - "LPTokenSupply": "6476893872682647215773849" + "LPTokenSupply": "6396231313482137730813809" }, { - "type": "mintMulti", - "inputQtys": [ - "3856685487808666140672", - "4246651325810057150464" + "type": "redeemMasset", + "inputQty": "60623653040511071027", + "expectedQtys": [ + "21970662740092494002", + "39192968431990642954" ], - "expectedQty": "8002276756848454804779", + "redemptionFee": "36374191824306642", "reserves": [ - "2881923680912330991476884", - "3685276599810612426474650" + "2319432602418501143875382", + "4137583369336974197219995" ], - "LPTokenSupply": "6484896149439495670578628" + "LPTokenSupply": "6396170693466516402173446" }, { "type": "redeemMasset", - "inputQty": "74736295738531250176", + "inputQty": "215223774978590821580", "expectedQtys": [ - "33193294845722085809", - "42446118048077146305" + "77999407174394843924", + "139141378631310775358" ], - "redemptionFee": "44841777443118750", + "redemptionFee": "129134264987154492", "reserves": [ - "2881890487617485269391075", - "3685234153692564349328345" + "2319354603011326749031458", + "4137444227958342886444637" ], - "LPTokenSupply": "6484821417627934883640327" + "LPTokenSupply": "6395955482604964310067315" }, { - "type": "redeemMasset", - "inputQty": "248344519004972384256", - "expectedQtys": [ - "110299457746644282511", - "141046070476379462928" + "type": "mintMulti", + "inputQtys": [ + "3807400808284496068608", + "14646033255916204195840" ], - "redemptionFee": "149006711402983430", + "expectedQty": "18267234432839922864508", "reserves": [ - "2881780188159738625108564", - "3685093107622087969865417" + "2323162003819611245100066", + "4152090261214259090640477" ], - "LPTokenSupply": "6484573088009601051554414" + "LPTokenSupply": "6414222717037804232931823" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5426102845503110643712", - "expectedQty": "5495686025304073751116", - "swapFee": "3255661707301866386", + "type": "redeemBassets", + "inputQtys": [ + "2789199901832419", + "5812505818216020" + ], + "expectedQty": "8519336161223516", + "swapFee": "5114670499033", "reserves": [ - "2881780188159738625108564", - "3679597421596783896114301" + "2323162001030411343267647", + "4152090255401753272424457" ], - "LPTokenSupply": "6479147310730268671097340" + "LPTokenSupply": "6414222708513864868259176" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "17803013631514085687296", - "expectedQty": "18031143180856364051372", - "swapFee": "10681808178908451412", + "type": "redeemBassets", + "inputQtys": [ + "2764879939402449551360", + "114580190425284756897792" + ], + "expectedQty": "116072094967300356868294", + "swapFee": "69685068021192929878", "reserves": [ - "2881780188159738625108564", - "3661566278415927532062929" + "2320397121091008893716287", + "4037510064976468515526665" ], - "LPTokenSupply": "6461345365279572476255185" + "LPTokenSupply": "6298087896985345437753990" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "5075724528220854272", - "expectedQty": "5140733441479844362", - "swapFee": "3045434716932512", + "inputQty": "1435180634926108377088", + "outputIndex": 0, + "expectedQty": "1429221008907353799146", + "swapFee": "0", "reserves": [ - "2881780188159738625108564", - "3661561137682486052218567" + "2318967900082101539917141", + "4038945245611394623903753" ], - "LPTokenSupply": "6461340289859587727094164" + "LPTokenSupply": "6298087896985345437753990", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1827498071543098376192", - "1540626543453290627072" + "type": "redeemMasset", + "inputQty": "34186428889925843", + "expectedQtys": [ + "12579955404143078", + "21910502110774440" ], - "expectedQty": "3326466943798950639512", + "redemptionFee": "20511857333955", "reserves": [ - "2883607686231281723484756", - "3663101764225939342845639" + "2318967887502146135774063", + "4038945223700892513129313" ], - "LPTokenSupply": "6464666756803386677733676" + "LPTokenSupply": "6298087862800967733561542" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "29898771744338706432", - "expectedQty": "30232601352462756620", - "swapFee": "17939263046603223", + "inputQty": "214283412753472847872", + "expectedQty": "212829083080660693833", "reserves": [ - "2883577453629929260728136", - "3663101764225939342845639" - ], - "LPTokenSupply": "6464636859825568643687566" + "2319182170914899608621935", + "4038945223700892513129313" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "39178287259129990873088", - "expectedQty": "39679375101787501517906", - "swapFee": "23506972355477994523", + "type": "redeemBassets", + "inputQtys": [ + "423756044464375070720", + "914266720573599907840" + ], + "expectedQty": "1325167246339445607899", + "swapFee": "795577694420319556", "reserves": [ - "2883577453629929260728136", - "3623422389124151841327733" + "2318758414870435233551215", + "4038030956980318913221473" ], - "LPTokenSupply": "6425460923263674200613930" + "LPTokenSupply": "6296974808617783970359874" }, { - "type": "redeemMasset", - "inputQty": "79000368882746112", - "expectedQtys": [ - "35432010722364232", - "44522868904210188" + "type": "mintMulti", + "inputQtys": [ + "108371618932533460992", + "604891238789002297344" ], - "redemptionFee": "47400221329647", + "expectedQty": "705924713615718215047", "reserves": [ - "2883577418197918538363904", - "3623422344601282937117545" + "2318866786489367767012207", + "4038635848219107915518817" ], - "LPTokenSupply": "6425460844268045340000782" + "LPTokenSupply": "6297680733331399688574921" }, { - "type": "redeemBassets", - "inputQtys": [ - "139347379385480809283584", - "143633185307173710725120" - ], - "expectedQty": "279456270823691600187634", - "swapFee": "167774427150505263270", + "type": "redeem", + "inputIndex": 1, + "inputQty": "424227444795301460705280", + "expectedQty": "428572461645672472466525", + "swapFee": "254536466877180876423", "reserves": [ - "2744230038812437729080320", - "3479789159294109226392425" + "2318866786489367767012207", + "3610063386573435443052292" ], - "LPTokenSupply": "6145853576459918285076204" + "LPTokenSupply": "5873478742182785945957283" }, { - "type": "redeemMasset", - "inputQty": "5367957492290237235200", - "expectedQtys": [ - "2395447836193453216240", - "3037519921488707883447" + "type": "redeemBassets", + "inputQtys": [ + "10458304500337534304256", + "15405722603184615063552" ], - "redemptionFee": "3220774495374142341", + "expectedQty": "25623207688120580662657", + "swapFee": "15383154505575693813", "reserves": [ - "2741834590976244275864080", - "3476751639372620518508978" + "2308408481989030232707951", + "3594657663970250827988740" ], - "LPTokenSupply": "6140485941045077585255238" + "LPTokenSupply": "5847841689655610347170193" }, { "type": "mintMulti", "inputQtys": [ - "5401961053481126068224", - "10414798578577492148224" + "93777289372701495918592", + "142285698542739577110528" ], - "expectedQty": "15615610195938241630770", + "expectedQty": "233859173612262921791092", "reserves": [ - "2747236552029725401932304", - "3487166437951198010657202" + "2402185771361731728626543", + "3736943362512990405099268" ], - "LPTokenSupply": "6156101551241015826886008" + "LPTokenSupply": "6081700863267873268961285" }, { "type": "redeemBassets", "inputQtys": [ - "14184627511235245506560", - "4137461102428570517504" + "1456603267895284989952", + "6034383305209724010496" ], - "expectedQty": "18101813633508300247995", - "swapFee": "10867608745352191463", + "expectedQty": "7416286466762655131714", + "swapFee": "4452443346065232218", "reserves": [ - "2733051924518490156425744", - "3483028976848769440139698" + "2400729168093836443636591", + "3730908979207780681088772" ], - "LPTokenSupply": "6137989956759636709665695" + "LPTokenSupply": "6074280569602099155120573" + }, + { + "type": "redeemMasset", + "inputQty": "2045286890540199936", + "expectedQtys": [ + "807870780921815781", + "1255490369608819443" + ], + "redemptionFee": "1227172134324119", + "reserves": [ + "2400728360223055521820810", + "3730907723717411072269329" + ], + "LPTokenSupply": "6074278524437925828353048" }, { "type": "mint", "inputIndex": 0, - "inputQty": "388819477188184306089984", - "expectedQty": "384189068967391986140943", + "inputQty": "143903205450432244613120", + "expectedQty": "142810772472176642677214", "reserves": [ - "3121871401706674462515728", - "3483028976848769440139698" + "2544631565673487766433930", + "3730907723717411072269329" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "53140555024232136704", + "inputQty": "41077499640922103808", "outputIndex": 0, - "expectedQty": "53101847501687683496", + "expectedQty": "40967101828935913634", "swapFee": "0", "reserves": [ - "3121818299859172774832232", - "3483082117403793672276402" + "2544590598571658830520296", + "3730948801217051994373137" ], - "LPTokenSupply": "6522179025727028695806638", + "LPTokenSupply": "6217089296910102471030262", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemMasset", + "inputQty": "62948652321868979", + "expectedQtys": [ + "25748776335126843", + "37753564858045323" + ], + "redemptionFee": "37769191393121", + "reserves": [ + "2544590572822882495393453", + "3730948763463487136327814" + ], + "LPTokenSupply": "6217089233965227068300595" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "95867045059136667648", + "expectedQty": "96815953551413413121", + "swapFee": "57520227035482000", + "reserves": [ + "2544590572822882495393453", + "3730851947509935722914693" + ], + "LPTokenSupply": "6216993372672190635181147" + }, { "type": "mint", "inputIndex": 0, - "inputQty": "17399001818089213919232", - "expectedQty": "17187526413569702439377", + "inputQty": "438085084248287712641024", + "expectedQty": "434543835125383850707444", "reserves": [ - "3139217301677261988751464", - "3483082117403793672276402" + "2982675657071170208034477", + "3730851947509935722914693" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1945180528390269829120", - "638718186701765738496" - ], - "expectedQty": "2552032716923261421209", - "swapFee": "1532138913502058087", + "type": "redeem", + "inputIndex": 0, + "inputQty": "23354723634397372416", + "expectedQty": "23538444698979305516", + "swapFee": "14012834180638423", "reserves": [ - "3137272121148871718922344", - "3482443399217091906537906" + "2982652118626471228728961", + "3730851947509935722914693" ], - "LPTokenSupply": "6536813140498652984972526" + "LPTokenSupply": "6651513854475223506580017" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "41593157289218752380928", - "outputIndex": 1, - "expectedQty": "41585241771326482238448", - "swapFee": "32869049979169087413", + "type": "mint", + "inputIndex": 1, + "inputQty": "5107506176800267960320", + "expectedQty": "5056932200054849823297", "reserves": [ - "3178865278438090471303272", - "3440858157445765424299458" - ], - "LPTokenSupply": "6536816427403650901881267", - "hardLimitError": false, - "insufficientLiquidityError": false + "2982652118626471228728961", + "3735959453686735990875013" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "19627929170462266884096", - "10084127550182862618624" + "73264580630365257728", + "64532462173799489536" ], - "expectedQty": "29342661912209010426409", + "expectedQty": "136542846010083135553", + "swapFee": "81974892541574826", "reserves": [ - "3198493207608552738187368", - "3450942284995948286918082" + "2982578854045840863471233", + "3735894921224562191385477" ], - "LPTokenSupply": "6566159089315859912307676" + "LPTokenSupply": "6656434170051864985850416" }, { "type": "redeemMasset", - "inputQty": "1753950780170963832012", + "inputQty": "275198336423464", "expectedQtys": [ - "853868080379788836160", - "921261754560386084409" + "123235389622352", + "154361205096306" ], - "redemptionFee": "1052370468102578299", + "redemptionFee": "165119001854", "reserves": [ - "3197639339528172949351208", - "3450021023241387900833673" + "2982578853922605473848881", + "3735894921070200986289171" ], - "LPTokenSupply": "6564405243772735758733493" + "LPTokenSupply": "6656434169776683161327137" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "36013348616499613696", - "expectedQty": "36438679541086363740", - "swapFee": "21608009169899768", - "reserves": [ - "3197602900848631862987468", - "3450021023241387900833673" - ], - "LPTokenSupply": "6564369232584920176109773" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "76809187468143673344", - "76629747692556943360" - ], - "expectedQty": "151518765024446696465", - "swapFee": "90965838517778685", + "inputQty": "2429409778829150912512", + "expectedQty": "2409010732916716833108", "reserves": [ - "3197526091661163719314124", - "3449944393493695343890313" - ], - "LPTokenSupply": "6564217631950641063412490" + "2985008263701434624761393", + "3735894921070200986289171" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "209120598139070742528", - "6280601343772227584" + "96868413296806427885568", + "28715862858135351853056" ], - "expectedQty": "212756090391459545165", - "swapFee": "127730292410321920", + "expectedQty": "124482949425863605392033", "reserves": [ - "3197316971063024648571596", - "3449938112892351571662729" + "3081876676998241052646961", + "3764610783928336338142227" ], - "LPTokenSupply": "6564004760902986434577596" + "LPTokenSupply": "6783326129935463483552278" }, { - "type": "redeemMasset", - "inputQty": "23803091933034091590451", - "expectedQtys": [ - "11587494061006617879574", - "12503026054588975507854" - ], - "redemptionFee": "14281855159820454954", + "type": "redeem", + "inputIndex": 0, + "inputQty": "363596732428254657380352", + "expectedQty": "366400104278074578140755", + "swapFee": "218158039456952794428", "reserves": [ - "3185729477002018030692022", - "3437435086837762596154875" + "2715476572720166474506206", + "3764610783928336338142227" ], - "LPTokenSupply": "6540203097155468325032640" + "LPTokenSupply": "6419751213311154521451368" }, { "type": "redeemMasset", - "inputQty": "111711760522514753126", + "inputQty": "508395274051433005056", "expectedQtys": [ - "54382090750362564319", - "58678838925397309134" + "214915981827101687078", + "297949549980606531780" ], - "redemptionFee": "67027056313508851", + "redemptionFee": "305037164430859803", "reserves": [ - "3185675094911267668127703", - "3437376407998837198845741" + "2715261656738339372819128", + "3764312834378355731610447" ], - "LPTokenSupply": "6540091392097651441630399" + "LPTokenSupply": "6419242848540819531532292" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "6248025085987564544", - "expectedQty": "6168264422973896080", + "inputIndex": 0, + "inputQty": "58976774468806297780224", + "expectedQty": "58501646169766904949063", "reserves": [ - "3185675094911267668127703", - "3437382656023923186410285" + "2774238431207145670599352", + "3764312834378355731610447" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "11432559983378082824192", - "84829635311810050523136" - ], - "expectedQty": "95041489892153561077033", - "swapFee": "57059129412939900586", + "type": "mint", + "inputIndex": 0, + "inputQty": "413146511032733566763008", + "expectedQty": "409681301860974470879548", "reserves": [ - "3174242534927889585303511", - "3352553020712113135887149" - ], - "LPTokenSupply": "6445004717253449208538917" + "3187384942239879237362360", + "3764312834378355731610447" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "19844866964470849536", - "expectedQty": "20080913606595749062", - "swapFee": "11906920178682509", + "inputQty": "112150522333219520512", + "expectedQty": "111180679627236212372", "reserves": [ - "3174222454014282989554449", - "3352553020712113135887149" - ], - "LPTokenSupply": "6444984873577176755557631" + "3187497092762212456882872", + "3764312834378355731610447" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "148024884588105034629120", - "outputIndex": 0, - "expectedQty": "147926309230217683168218", - "swapFee": "0", + "inputQty": "51198332529869032", + "expectedQty": "50699064272258571", "reserves": [ - "3026296144784065306386231", - "3500577905300218170516269" - ], - "LPTokenSupply": "6444984873577176755557631", - "hardLimitError": false, - "insufficientLiquidityError": false + "3187497092762212456882872", + "3764312885576688261479479" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "44207256761742811136", - "762822354873115213824" - ], - "expectedQty": "796587534357371851718", - "swapFee": "478239464292998910", + "type": "redeem", + "inputIndex": 1, + "inputQty": "34616953952883", + "expectedQty": "34936875994103", + "swapFee": "20770172371", "reserves": [ - "3026251937527303563575095", - "3499815082945345055302445" + "3187497092762212456882872", + "3764312885541751385485376" ], - "LPTokenSupply": "6444187855627301520006893" + "LPTokenSupply": "6887537027915637538896200" }, { "type": "redeemBassets", "inputQtys": [ - "271534225625431670784", - "619862588732374253568" + "5510411553877519360", + "4120666878778304000" ], - "expectedQty": "880076944163910496410", - "swapFee": "528363184408991692", + "expectedQty": "9543242455740602025", + "swapFee": "5729383103306345", "reserves": [ - "3025980403301678131904311", - "3499195220356612681048877" + "3187491582350658579363512", + "3764308764874872607181376" ], - "LPTokenSupply": "6443307303156271641417959" + "LPTokenSupply": "6887527479516737005318463" }, { "type": "redeemMasset", - "inputQty": "16487840087367293337", + "inputQty": "17979289510605124481843", "expectedQtys": [ - "7738563989354032683", - "8948751318556305112" + "8315676248355957941033", + "9820503734307426491209" ], - "redemptionFee": "9892704052420376", + "redemptionFee": "10787573706363074689", "reserves": [ - "3025972664737688777871628", - "3499186271605294124743765" + "3179175906102302621422479", + "3754488261140565180690167" ], - "LPTokenSupply": "6443290816305454679366659" + "LPTokenSupply": "6869549268763502517144088" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "201136296197715968", - "outputIndex": 1, - "expectedQty": "201170557992851797", - "swapFee": "158972894864662", + "type": "mint", + "inputIndex": 1, + "inputQty": "44328544488969160", + "expectedQty": "43896205843895690", "reserves": [ - "3025972865873984975587596", - "3499186070434736131891968" - ], - "LPTokenSupply": "6443290816321351968853125", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "153712716031268585472", - "expectedQty": "151715819369819935876", - "reserves": [ - "3025972865873984975587596", - "3499339783150767400477440" + "3179175906102302621422479", + "3754488305469109669659327" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "84709333728930752", - "expectedQty": "83690079868517548", + "inputQty": "4315454411556770021376", + "expectedQty": "4278118633885036606225", "reserves": [ - "3025972950583318704518348", - "3499339783150767400477440" + "3183491360513859391443855", + "3754488305469109669659327" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "43363771468730115031040", - "expectedQty": "43907298486739747602933", - "swapFee": "26018262881238069018", + "type": "redeemMasset", + "inputQty": "1004118588027975604633", + "expectedQtys": [ + "464760705755348458092", + "548121052327394589777" + ], + "redemptionFee": "602471152816785362", "reserves": [ - "3025972950583318704518348", - "3455432484664027652874507" + "3183026599808104042985763", + "3753940184416782275069550" ], - "LPTokenSupply": "6400081446188359666082410" + "LPTokenSupply": "6872823372952680703719906" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "44527281460673683456", - "expectedQty": "45084655188686919739", - "swapFee": "26716368876404210", + "inputQty": "10966255063454531452928", + "expectedQty": "11067520712293262671813", + "swapFee": "6579753038072718871", "reserves": [ - "3025972950583318704518348", - "3455387400008838965954768" + "3183026599808104042985763", + "3742872663704489012397737" ], - "LPTokenSupply": "6400036921578535880039375" + "LPTokenSupply": "6861857775864529979538865" }, { "type": "swap", "inputIndex": 0, - "inputQty": "61644302086013123035136", + "inputQty": "205076193690510189133824", "outputIndex": 1, - "expectedQty": "61641600665921799664045", - "swapFee": "48717881154674665382", + "expectedQty": "205052165360990450710763", + "swapFee": "162620589273260945537", "reserves": [ - "3087617252669331827553484", - "3393745799342917166290723" + "3388102793498614232119587", + "3537820498343498561686974" ], - "LPTokenSupply": "6400041793366651347505913", + "LPTokenSupply": "6861874037923457305633418", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1245165351441360224256", - "913441565768378875904" - ], - "expectedQty": "2131657654429935904076", - "swapFee": "1279762450128038365", + "type": "swap", + "inputIndex": 0, + "inputQty": "132215611343608", + "outputIndex": 1, + "expectedQty": "132147704778102", + "swapFee": "104809671637", "reserves": [ - "3086372087317890467329228", - "3392832357777148787414819" + "3388102793630829843463195", + "3537820498211350856908872" ], - "LPTokenSupply": "6397908983926016296367307" + "LPTokenSupply": "6861874037923467786600581", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "417455059724252229926912", - "expectedQty": "412016550606245167161686", + "inputIndex": 0, + "inputQty": "105772674239701138276352", + "expectedQty": "104804398040465221320147", "reserves": [ - "3086372087317890467329228", - "3810287417501401017341731" + "3493875467870530981739547", + "3537820498211350856908872" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "552974252721142956032", - "694419429220745347072" - ], - "expectedQty": "1231698797555071849058", - "swapFee": "739462956306827205", + "type": "mint", + "inputIndex": 0, + "inputQty": "72490165078846433394688", + "expectedQty": "71820429583415604678307", "reserves": [ - "3085819113065169324373196", - "3809592998072180271994659" - ], - "LPTokenSupply": "6808693170218045715535449" + "3566365632949377415134235", + "3537820498211350856908872" + ] }, { "type": "redeemBassets", "inputQtys": [ - "987462201363105054720", - "3374374268461634813952" + "235144677294357931360256", + "30540513595796039401472" ], - "expectedQty": "4305628874970457070325", - "swapFee": "2584928281951445109", + "expectedQty": "263243109996695517883370", + "swapFee": "158040690412264669531", "reserves": [ - "3084831650863806219318476", - "3806218623803718637180707" + "3331220955655019483773979", + "3507279984615554817507400" ], - "LPTokenSupply": "6804385214907621502164524" + "LPTokenSupply": "6775113518929282056513086" }, { "type": "mint", "inputIndex": 1, - "inputQty": "15329095268015331328", - "expectedQty": "15126705914308183939", + "inputQty": "17626627883235238", + "expectedQty": "17460338543053736", "reserves": [ - "3084831650863806219318476", - "3806233952898986652512035" + "3331220955655019483773979", + "3507280002242182700742638" ] }, { "type": "mintMulti", "inputQtys": [ - "4250968798062371143680", - "799322283046251659264" + "747969318416195256320", + "480111538721826799616" ], - "expectedQty": "4989553483280487680236", + "expectedQty": "1216748142494788281278", "reserves": [ - "3089082619661868590462156", - "3807033275182032904171299" + "3331968924973435679030299", + "3507760113780904527542254" ], - "LPTokenSupply": "6809389895096816298028699" + "LPTokenSupply": "6776330284532115387848100" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 0, + "inputQty": "3798423415278618017792", + "expectedQty": "3763865657135925607170", + "reserves": [ + "3335767348388714297048091", + "3507760113780904527542254" + ] + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "6597745995741147136", - "expectedQty": "6681985225310604378", - "swapFee": "3958647597444688", + "inputQty": "1315266740261089536", + "expectedQty": "1302863709051400353", "reserves": [ - "3089082619661868590462156", - "3807026593196807593566921" - ], - "LPTokenSupply": "6809383297746685316626031" + "3335767348388714297048091", + "3507761429047644788631790" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "19670293660418657222656", + "expectedQty": "19484625314756450766673", + "reserves": [ + "3335767348388714297048091", + "3527431722708063445854446" + ] }, { "type": "redeemBassets", "inputQtys": [ - "683723931664185425920", - "299631790810176356352" + "4803890134856768684032", + "3859746890468913840128" ], - "expectedQty": "971327540247581673554", - "swapFee": "583146411995746452", + "expectedQty": "8583547063029386630895", + "swapFee": "5153220169919583728", "reserves": [ - "3088398895730204405036236", - "3806726961405997417210569" + "3330963458253857528364059", + "3523571975817594532014318" ], - "LPTokenSupply": "6808411445374666938780669" + "LPTokenSupply": "6790991893406534501366044" }, { - "type": "redeemBassets", - "inputQtys": [ - "6511257485857608695808", - "2635164764495047294976" + "type": "mint", + "inputIndex": 0, + "inputQty": "8948161513232183", + "expectedQty": "8866908190353401", + "reserves": [ + "3330963467202019041596242", + "3523571975817594532014318" + ] + }, + { + "type": "redeemMasset", + "inputQty": "674387615469714", + "expectedQtys": [ + "330586860633070", + "349702603817106" ], - "expectedQty": "9034768876700366130028", - "swapFee": "5424115795497518188", + "redemptionFee": "404632569281", "reserves": [ - "3081887638244346796340428", - "3804091796641502369915593" + "3330963466871432180963172", + "3523571975467891928197212" ], - "LPTokenSupply": "6799371794793750624884270" + "LPTokenSupply": "6790991901599095539506659" }, { "type": "redeemBassets", "inputQtys": [ - "343463862262283520", - "273654705096740096" + "23956998021927382548480", + "72436964730601237118976" ], - "expectedQty": "609451148167535406", - "swapFee": "365890223034341", + "expectedQty": "95492931818931757036839", + "swapFee": "57330157185670456496", "reserves": [ - "3081887294780484534056908", - "3804091522986797273175497" + "3307006468849504798414692", + "3451135010737290691078236" ], - "LPTokenSupply": "6799371185013301256617956" + "LPTokenSupply": "6695447372638696679058972" }, { "type": "mintMulti", "inputQtys": [ - "3773695316574741725184", - "2144474529251094167552" + "5209368108247581458432", + "1046788292053441970176" ], - "expectedQty": "5845309578948867095551", + "expectedQty": "6198711814112442044715", "reserves": [ - "3085660990097059275782092", - "3806235997516048367343049" + "3312215836957752379873124", + "3452181799029344133048412" ], - "LPTokenSupply": "6805216494592250123713507" + "LPTokenSupply": "6701646084452809121103687" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2353857852518543654912", - "1174262938971671756800" + "13322889150120603942912", + "625446623761737318400" ], - "expectedQty": "3484827944849174891770", + "expectedQty": "13820787356611435864874", + "swapFee": "8297450884497560054", "reserves": [ - "3088014847949577819437004", - "3807410260455020039099849" + "3298892947807631775930212", + "3451556352405582395730012" ], - "LPTokenSupply": "6808701322537099298605277" + "LPTokenSupply": "6687817829390401637434763" }, { "type": "swap", "inputIndex": 1, - "inputQty": "8912666662683526823936", + "inputQty": "219560093102061420544", "outputIndex": 0, - "expectedQty": "8899926808859246674103", + "expectedQty": "219494174266841456233", "swapFee": "0", "reserves": [ - "3079114921140718572762901", - "3816322927117703565923785" + "3298673453633364934473979", + "3451775912498684457150556" ], - "LPTokenSupply": "6808701322537099298605277", + "LPTokenSupply": "6687817829390401637434763", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "11549759597132749209600", - "3803240497353536831488" + "type": "redeemMasset", + "inputQty": "83633906287857395302", + "expectedQtys": [ + "41226514381993882138", + "43139974689917790901" ], - "expectedQty": "15166637410381798952429", - "swapFee": "9105445713657273735", + "redemptionFee": "50180343772714437", "reserves": [ - "3067565161543585823553301", - "3812519686620350029092297" + "3298632227118982940591841", + "3451732772523994539359655" ], - "LPTokenSupply": "6793526490225575208106485" + "LPTokenSupply": "6687734200502148157310904" }, { - "type": "redeemBassets", - "inputQtys": [ - "99344510774777460293632", - "54696477411923971801088" + "type": "swap", + "inputIndex": 0, + "inputQty": "82084346408973792968704", + "outputIndex": 1, + "expectedQty": "82030115978471538184545", + "swapFee": "65065496528024538219", + "reserves": [ + "3380716573527956733560545", + "3369702656545523001175110" + ], + "LPTokenSupply": "6687740707051800959764725", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "5873534572769840830873", + "expectedQtys": [ + "2967346147410006739676", + "2957678935322004675460" ], - "expectedQty": "152149419412458422911068", - "swapFee": "91344458322468534867", + "redemptionFee": "3524120743661904498", "reserves": [ - "2968220650768808363259669", - "3757823209208426057291209" + "3377749227380546726820869", + "3366744977610200996499650" ], - "LPTokenSupply": "6641294860800626563514035" + "LPTokenSupply": "6681867524891105485124301" }, { "type": "mint", "inputIndex": 1, - "inputQty": "953339611633358", - "expectedQty": "940663405491567", + "inputQty": "9560968772103912292352", + "expectedQty": "9472247405378858605015", "reserves": [ - "2968220650768808363259669", - "3757823210161765668924567" + "3377749227380546726820869", + "3376305946382304908792002" ] }, { "type": "redeemBassets", "inputQtys": [ - "221330378441528016896", - "81041683278821818368" + "633529279225159221248", + "469017864477606543360" ], - "expectedQty": "298700872876499430818", - "swapFee": "179328120598258613", + "expectedQty": "1092309123428550511087", + "swapFee": "655778941421983496", "reserves": [ - "2967999320390366835242773", - "3757742168478486847106199" + "3377115698101321567599621", + "3375836928517827302248642" ], - "LPTokenSupply": "6640995999473104931142031" + "LPTokenSupply": "6690246872972008513433081" }, { - "type": "redeemMasset", - "inputQty": "355423690565535871795", - "expectedQtys": [ - "158750936421217856756", - "200992326371893119887" + "type": "redeemBassets", + "inputQtys": [ + "246135392313490407424", + "389486613119272353792" ], - "redemptionFee": "213254214339321523", + "expectedQty": "629720011471812950861", + "swapFee": "378058842188400811", "reserves": [ - "2967840569453945617386017", - "3757541176152114953986312" + "3376869562709008077192197", + "3375447441904708029894850" ], - "LPTokenSupply": "6640640597107960829202388" + "LPTokenSupply": "6689616812707578730921489" }, { "type": "redeemMasset", - "inputQty": "1260173003138241740", + "inputQty": "59307596154044992716", "expectedQtys": [ - "562859638772523498", - "712628667068526702" + "29920077260635707406", + "29907476843726361290" ], - "redemptionFee": "756103801882945", + "redemptionFee": "35584557692426995", "reserves": [ - "2967840006594306844862519", - "3757540463523447885459610" + "3376839642631747441484791", + "3375417534427864303533560" ], - "LPTokenSupply": "6640639337010568071148942" + "LPTokenSupply": "6689557508669880455171472" }, { - "type": "redeemBassets", - "inputQtys": [ - "1233549464250830815232", - "203837870613140176896" - ], - "expectedQty": "1420222735368571688337", - "swapFee": "852645228358157907", + "type": "mint", + "inputIndex": 1, + "inputQty": "16407197738128004612096", + "expectedQty": "16254737005963502207135", + "reserves": [ + "3376839642631747441484791", + "3391824732165992308145656" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "15791402533014814588928", + "expectedQty": "15644418585883723066212", + "reserves": [ + "3376839642631747441484791", + "3407616134699007122734584" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1843204421634773745664", + "expectedQty": "1859418123139924664982", + "swapFee": "1105922652980864247", "reserves": [ - "2966606457130056014047287", - "3757336625652834745282714" + "3376839642631747441484791", + "3405756716575867198069602" ], - "LPTokenSupply": "6639218346894493977118487" + "LPTokenSupply": "6719613570432358204785579" }, { "type": "swap", "inputIndex": 0, - "inputQty": "3743874738640653910016", + "inputQty": "201472869493207728128", "outputIndex": 1, - "expectedQty": "3746844437852304302857", - "swapFee": "2959999174754427867", + "expectedQty": "201322980630400914314", + "swapFee": "159686115559276980", "reserves": [ - "2970350331868696667957303", - "3753589781214982440979857" + "3377041115501240649212919", + "3405555393595236797155288" ], - "LPTokenSupply": "6639218642894411452561273", + "LPTokenSupply": "6719613586400969760713277", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "redeemMasset", + "inputQty": "345675731050989465", + "expectedQtys": [ + "173620212635049840", + "175086186798968111" + ], + "redemptionFee": "207405438630593", + "reserves": [ + "3377040941881028014163079", + "3405555218509049998187177" + ], + "LPTokenSupply": "6719613240745979253586871" + }, + { + "type": "mintMulti", "inputQtys": [ - "62629667470017369735168", - "116330817018906212827136" + "23531405695970664448", + "12068509324916121600" + ], + "expectedQty": "35269655870759073228", + "reserves": [ + "3377064473286723984827527", + "3405567287018374914308777" ], - "expectedQty": "176680454644145632310659", - "swapFee": "106071915936049008791", + "LPTokenSupply": "6719648510401850012660099" + }, + { + "type": "redeemMasset", + "inputQty": "91475995781954876211", + "expectedQtys": [ + "45945109008982186586", + "46332891029231531671" + ], + "redemptionFee": "54885597469172925", "reserves": [ - "2907720664398679298222135", - "3637258964196076228152721" + "3377018528177715002640941", + "3405520954127345682777106" ], - "LPTokenSupply": "6462442723525923376142701" + "LPTokenSupply": "6719557039894627804701180" }, { "type": "redeem", + "inputIndex": 0, + "inputQty": "3699431349907892994048", + "expectedQty": "3731754519932453680306", + "swapFee": "2219658809944735796", + "reserves": [ + "3373286773657782548960635", + "3405520954127345682777106" + ], + "LPTokenSupply": "6715857830510600906180711" + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "54128568222324734558208", - "expectedQty": "54822559520313706942722", - "swapFee": "32477140933394840734", + "inputQty": "70747928354144731004928", + "outputIndex": 0, + "expectedQty": "70733685608772880568089", + "swapFee": "0", "reserves": [ - "2907720664398679298222135", - "3582436404675762521209999" + "3302553088049009668392546", + "3476268882481490413782034" ], - "LPTokenSupply": "6408317403017691981068566" + "LPTokenSupply": "6715857830510600906180711", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "13549814315196379824128", - "47250850589183989252096" + "5161895536968909979648", + "4086290648774626770944" ], - "expectedQty": "60014560488338581534893", + "expectedQty": "9162505847123053819469", "reserves": [ - "2921270478713875678046263", - "3629687255264946510462095" + "3307714983585978578372194", + "3480355173130265040552978" ], - "LPTokenSupply": "6468331963506030562603459" + "LPTokenSupply": "6725020336357723960000180" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1504014217116814147584", - "outputIndex": 1, - "expectedQty": "1505011014711880449711", - "swapFee": "1188999503793093749", + "type": "redeemMasset", + "inputQty": "68207889383726952900198", + "expectedQtys": [ + "33528060746477845698826", + "35277997119789264322032" + ], + "redemptionFee": "40924733630236171740", "reserves": [ - "2922774492930992492193847", - "3628182244250234630012384" + "3274186922839500732673368", + "3445077176010475776230946" ], - "LPTokenSupply": "6468332082405980941912833", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6656816539447360030717156" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "4864623040206464000", - "expectedQty": "4919828863212132353", - "swapFee": "2918773824123878", + "inputQty": "1834471280676114530304", + "expectedQty": "1850247681851098081639", + "swapFee": "1100682768405668718", "reserves": [ - "2922769573102129280061494", - "3628182244250234630012384" + "3272336675157649634591729", + "3445077176010475776230946" ], - "LPTokenSupply": "6468327218074818117861220" + "LPTokenSupply": "6654982178234960756753723" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "527522078853367267328", - "expectedQty": "534287784935257396495", - "swapFee": "316513247312020360", + "type": "redeemMasset", + "inputQty": "2128761911487822928281", + "expectedQtys": [ + "1046110398763133434113", + "1101332599950909317914" + ], + "redemptionFee": "1277257146892693756", "reserves": [ - "2922769573102129280061494", - "3627647956465299372615889" + "3271290564758886501157616", + "3443975843410524866913032" ], - "LPTokenSupply": "6467799727647289481795928" + "LPTokenSupply": "6652853544049187623094817" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10710685648037787648", - "9149772845516078080" + "105290813611728697294848", + "30985501732766207705088" ], - "expectedQty": "19612629601692348534", + "expectedQty": "135025919395378865954675", + "swapFee": "81064190151318110439", "reserves": [ - "2922780283787777317849142", - "3627657106238144888693969" + "3165999751147157803862768", + "3412990341677758659207944" ], - "LPTokenSupply": "6467819340276891174144462" + "LPTokenSupply": "6517754666882672570840745" }, { "type": "redeemBassets", "inputQtys": [ - "159155160066643722240", - "36972326255994609664" + "710849769824405159936", + "2385985375590487687168" ], - "expectedQty": "193757007456917486525", - "swapFee": "116323998873474576", + "expectedQty": "3067626833973135123019", + "swapFee": "1841681109049310660", "reserves": [ - "2922621128627710674126902", - "3627620133911888894084305" + "3165288901377333398702832", + "3410604356302168171520776" ], - "LPTokenSupply": "6467625478577835270530817" + "LPTokenSupply": "6514685382535701291338131" }, { "type": "redeemBassets", "inputQtys": [ - "216349315190249914368", - "277930766342278676480" + "10582548955089758", + "100703374787559392" ], - "expectedQty": "488039870906537822916", - "swapFee": "292999722377349103", + "expectedQty": "110228983672212300", + "swapFee": "66177096461204", "reserves": [ - "2922404779312520424212534", - "3627342203145546615407825" + "3165288890794784443613074", + "3410604255598793383961384" ], - "LPTokenSupply": "6467137175007178593093707" + "LPTokenSupply": "6514685272247158232310746" }, { - "type": "redeemBassets", - "inputQtys": [ - "2583387418336412160", - "2195797179566084352" + "type": "redeemMasset", + "inputQty": "26676965963949506560", + "expectedQtys": [ + "12953755445853999486", + "13957693902158275933" + ], + "redemptionFee": "16006179578369703", + "reserves": [ + "3165275937039338589613588", + "3410590297904891225685451" ], - "expectedQty": "4719555987945923009", - "swapFee": "2833433652959329", + "LPTokenSupply": "6514658596881812240641156" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "171066077077073920000", + "expectedQty": "172525350217749916206", + "swapFee": "102639646246244352", "reserves": [ - "2922402195925102087800374", - "3627340007348367049323473" + "3165103411689120839697382", + "3410590297904891225685451" ], - "LPTokenSupply": "6467132452901100359507300" + "LPTokenSupply": "6514487541068699791345591" }, { "type": "swap", "inputIndex": 1, - "inputQty": "147912067053135438282752", + "inputQty": "7559922518081930264576", "outputIndex": 0, - "expectedQty": "147648175179670492357718", + "expectedQty": "7556058911115196595557", "swapFee": "0", "reserves": [ - "2774754020745431595442656", - "3775252074401502487606225" + "3157547352778005643101825", + "3418150220422973155950027" ], - "LPTokenSupply": "6467132452901100359507300", + "LPTokenSupply": "6514487541068699791345591", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "107333346204853", + "expectedQty": "108304228034847", + "swapFee": "64400007722", + "reserves": [ + "3157547352778005643101825", + "3418150220314668927915180" + ], + "LPTokenSupply": "6514487540961372885141510" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "24614638263778185216", + "expectedQty": "24824214410956781816", + "swapFee": "14768782958266911", + "reserves": [ + "3157522528563594686320009", + "3418150220314668927915180" + ], + "LPTokenSupply": "6514462927799987402782985" + }, { "type": "mint", "inputIndex": 0, - "inputQty": "2136872769834035200", - "expectedQty": "2112414682988641247", + "inputQty": "2038033941012290469888", + "expectedQty": "2019613293616384371592", "reserves": [ - "2774756157618201429477856", - "3775252074401502487606225" + "3159560562504606976789897", + "3418150220314668927915180" ] }, { "type": "redeemMasset", - "inputQty": "3187642465653312454656", + "inputQty": "243972560493886413209", "expectedQtys": [ - "1366853204033995747202", - "1859700492875422447310" + "118220768330668231588", + "127896375879218120017" ], - "redemptionFee": "1912585479391987472", + "redemptionFee": "146383536296331847", "reserves": [ - "2773389304414167433730654", - "3773392373908627065158915" + "3159442341736276308558309", + "3418022323938789709795163" ], - "LPTokenSupply": "6463947114108677974892638" + "LPTokenSupply": "6516238583171463530374552" }, { "type": "mintMulti", "inputQtys": [ - "15957542919245312000", - "5101683609868257280" + "13822222042642675400704", + "5783841794656439369728" ], - "expectedQty": "20807501411750013115", + "expectedQty": "19425801721437590490373", "reserves": [ - "2773405261957086679042654", - "3773397475592236933416195" + "3173264563778918983959013", + "3423806165733446149164891" ], - "LPTokenSupply": "6463967921610089724905753" + "LPTokenSupply": "6535664384892901120864925" }, { - "type": "redeemBassets", - "inputQtys": [ - "82889097676389269504", - "37269678543156928512" + "type": "mint", + "inputIndex": 1, + "inputQty": "691358696141485952", + "expectedQty": "684757246033291023", + "reserves": [ + "3173264563778918983959013", + "3423806857092142290650843" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "63816008055077380096", + "expectedQty": "63238550848333149262", + "reserves": [ + "3173328379786974061339109", + "3423806857092142290650843" + ] + }, + { + "type": "redeemMasset", + "inputQty": "164844801848372", + "expectedQtys": [ + "79989987236313", + "86303790223181" ], - "expectedQty": "118705410943533173774", - "swapFee": "71266006169821797", + "redemptionFee": "98906881109", "reserves": [ - "2773322372859410289773150", - "3773360205913693776487683" + "3173328379706984074102796", + "3423806857005838500427662" ], - "LPTokenSupply": "6463849152059740638892360" + "LPTokenSupply": "6535728308036160576144948" }, { "type": "redeemMasset", - "inputQty": "356601050500741068", + "inputQty": "1440895893068829006233", "expectedQtys": [ - "152908316157254198", - "208045830152145098" + "699186403229457012869", + "754374875607203285344" ], - "redemptionFee": "213960630300444", + "redemptionFee": "864537535841297403", "reserves": [ - "2773322219951094132518952", - "3773359997867863624342585" + "3172629193303754617089927", + "3423052482130231297142318" ], - "LPTokenSupply": "6463848795480086201181336" + "LPTokenSupply": "6534287498596845331268455" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 1, + "inputQty": "670411819995979841536", + "expectedQty": "676468669624732633915", + "swapFee": "402247091997587904", + "reserves": [ + "3172629193303754617089927", + "3422376013460606564508403" + ], + "LPTokenSupply": "6533617127001558551185709" + }, + { + "type": "redeemBassets", "inputQtys": [ - "198424702919289176064", - "72816151768991113216" + "6691412579844904452096", + "6344938447927162961920" ], - "expectedQty": "267983771935710750025", + "expectedQty": "12915214861441028728558", + "swapFee": "7753781185575962814", "reserves": [ - "2773520644654013421695016", - "3773432814019632615455801" + "3165937780723909712637831", + "3416031075012679401546483" ], - "LPTokenSupply": "6464116779252021911931361" + "LPTokenSupply": "6520694933737050504090617" }, { "type": "swap", "inputIndex": 0, - "inputQty": "435321256755523657662464", + "inputQty": "1529883885978836271104", "outputIndex": 1, - "expectedQty": "435481950782437552852672", - "swapFee": "344166541693247422633", + "expectedQty": "1529426957929186285902", + "swapFee": "1212829916804914162", "reserves": [ - "3208841901409537079357480", - "3337950863237195062603129" + "3167467664609888548908935", + "3414501648054750215260581" ], - "LPTokenSupply": "6464151195906191236673624", + "LPTokenSupply": "6520695055020042184582033", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "204127149702856304492544", - "expectedQty": "206561948916083654679257", - "swapFee": "122476289821713782695", - "reserves": [ - "3002279952493453424678223", - "3337950863237195062603129" - ], - "LPTokenSupply": "6260036293832317103559349" - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "226711363641179340800", - "258661111095446962176" + "27747468787326304387072", + "20462103223445466644480" ], - "expectedQty": "479231055723070972115", - "swapFee": "287711260189956557", + "expectedQty": "47762973831346886194260", "reserves": [ - "3002053241129812245337423", - "3337692202126099615640953" + "3195215133397214853296007", + "3434963751278195681905061" ], - "LPTokenSupply": "6259556803836459861626331" + "LPTokenSupply": "6568458028851389070776293" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "109839784427710136320", - "expectedQty": "111217279526033164054", - "swapFee": "65903870656626081", + "inputQty": "5030434897763872276480", + "expectedQty": "5075819578289496031417", + "swapFee": "3018260938658323365", "reserves": [ - "3002053241129812245337423", - "3337580984846573582476899" + "3195215133397214853296007", + "3429887931699906185873644" ], - "LPTokenSupply": "6259446970642419217152619" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "784471212843609489408", - "expectedQty": "774835869656746580621", - "reserves": [ - "3002837712342655854826831", - "3337580984846573582476899" - ] + "LPTokenSupply": "6563427895779719064332149" }, { - "type": "mintMulti", - "inputQtys": [ - "73000371573540222140416", - "98117055875018961977344" + "type": "redeemMasset", + "inputQty": "79250416720821603532", + "expectedQtys": [ + "38557625919624749304", + "41389493444252507243" ], - "expectedQty": "168947330892997028981006", + "redemptionFee": "47550250032492962", "reserves": [ - "3075838083916196076967247", - "3435698040721592544454243" + "3195176575771295228546703", + "3429846542206461933366401" ], - "LPTokenSupply": "6429169137405072992714246" + "LPTokenSupply": "6563348650118023245977913" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8798367032900493312", - "10433513762391541760" + "190160165555109408", + "459393175130637184" ], - "expectedQty": "18988401084079952423", - "swapFee": "11399880578795248", + "expectedQty": "643449074876475051", "reserves": [ - "3075829285549163176473935", - "3435687607207830152912483" + "3195176765931460783656111", + "3429847001599637064003585" ], - "LPTokenSupply": "6429150138744096391846098" + "LPTokenSupply": "6563349293567098122452964" }, { "type": "mintMulti", "inputQtys": [ - "179050950485020180480", - "2841823007542331572224" + "20063489711837548642304", + "1185159139066271498240" ], - "expectedQty": "2981751138456270060868", + "expectedQty": "21055220402739251312531", "reserves": [ - "3076008336499648196654415", - "3438529430215372484484707" + "3215240255643298332298415", + "3431032160738703335501825" ], - "LPTokenSupply": "6432131889882552661906966" + "LPTokenSupply": "6584404513969837373765495" }, { - "type": "redeemMasset", - "inputQty": "360178215393435530035", - "expectedQtys": [ - "172142994797963615482", - "192430802866999108401" + "type": "redeemBassets", + "inputQtys": [ + "856395296898305", + "754680637705205" ], - "redemptionFee": "216106929236061318", + "expectedQty": "1596111852357720", + "swapFee": "958242056648", "reserves": [ - "3075836193504850233038933", - "3438336999412505485376306" + "3215240254786903035400110", + "3431032159984022697796620" ], - "LPTokenSupply": "6431771733277852149983062" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4297027544857398272", - "expectedQty": "4241186320921830879", - "reserves": [ - "3075836193504850233038933", - "3438341296440050342774578" - ] + "LPTokenSupply": "6584404512372863103556790" }, { "type": "mintMulti", "inputQtys": [ - "2222814862396713074688", - "1591618555193008062464" + "35219921009775688548352", + "76801997107312065511424" ], - "expectedQty": "3766490941856613288968", + "expectedQty": "110970340169378462390446", "reserves": [ - "3078059008367246946113621", - "3439932914995243350837042" + "3250460175796678723948462", + "3507834157091334763308044" ], - "LPTokenSupply": "6435542465406029685102909" + "LPTokenSupply": "6695374852542241565947236" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "45460974520832639369216", - "34132462407319388422144" + "944227690771173343232", + "3865595118249130328064" ], - "expectedQty": "78592498594960114343702", - "swapFee": "47183809442641653598", - "reserves": [ - "3032598033846414306744405", - "3405800452587923962414898" - ], - "LPTokenSupply": "6356907501382571193270967" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "182208766208422674432", - "outputIndex": 1, - "expectedQty": "182203698920508492432", - "swapFee": "143980863823632815", + "expectedQty": "4764353729345774631162", "reserves": [ - "3032780242612622729418837", - "3405618248889003453922466" + "3251404403487449897291694", + "3511699752209583893636108" ], - "LPTokenSupply": "6356907515780657575634248", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "5026635727816066334720", - "expectedQty": "4961196735833172008356", - "reserves": [ - "3032780242612622729418837", - "3410644884616819520257186" - ] + "LPTokenSupply": "6700139206271587340578398" }, { "type": "redeemBassets", "inputQtys": [ - "15012149934873787760640", - "28394408601133575569408" + "35823722172114972704768", + "72977922665419928240128" ], - "expectedQty": "42853025620178227492774", - "swapFee": "25727251723140820988", + "expectedQty": "107780885352336484635521", + "swapFee": "64707355624776756835", "reserves": [ - "3017768092677748941658197", - "3382250476015685944687778" + "3215580681315334924586926", + "3438721829544163965395980" ], - "LPTokenSupply": "6318992532369761693410939" + "LPTokenSupply": "6592300084299188556861724" }, { "type": "mint", "inputIndex": 0, - "inputQty": "131045629802855856", - "expectedQty": "129438467472787569", + "inputQty": "35160079614240168", + "expectedQty": "34840483229889827", "reserves": [ - "3017768223723378744514053", - "3382250476015685944687778" + "3215580716475414538827094", + "3438721829544163965395980" ] }, { "type": "redeemMasset", - "inputQty": "874603344696428134", + "inputQty": "68584403392463136358", "expectedQtys": [ - "417434662936142118", - "467851896750116975" + "33433908924877609086", + "35754012293302391702" ], - "redemptionFee": "524762006817856", + "redemptionFee": "41150642035477881", "reserves": [ - "3017767806288715808371935", - "3382250008163789194570803" + "3215547282566489661218008", + "3438686075531870663004278" ], - "LPTokenSupply": "6318991787257360670452159" + "LPTokenSupply": "6592231538851343527162981" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "206012392237455397355520", - "expectedQty": "208582519997087334448382", - "swapFee": "123607435342473238413", - "reserves": [ - "3017767806288715808371935", - "3173667488166701860122421" + "type": "redeemBassets", + "inputQtys": [ + "913318190273684992", + "896109955143093248" ], - "LPTokenSupply": "6112991755763439520420480" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "3933952611638639067136", - "expectedQty": "3884766893156952599328", + "expectedQty": "1792585700225318999", + "swapFee": "1076197138418242", "reserves": [ - "3021701758900354447439071", - "3173667488166701860122421" - ] + "3215546369248299387533016", + "3438685179421915519911030" + ], + "LPTokenSupply": "6592229745297065877267563" }, { - "type": "redeemMasset", - "inputQty": "62562491467633", - "expectedQtys": [ - "30886967015736", - "32440317029034" + "type": "mintMulti", + "inputQtys": [ + "584720235960622120960", + "323906038961954750464" ], - "redemptionFee": "37537494880", + "expectedQty": "900224198620055317338", "reserves": [ - "3021701758869467480423335", - "3173667488134261543093387" + "3216131089484260009653976", + "3439009085460877474661494" ], - "LPTokenSupply": "6116876522594037735301663" + "LPTokenSupply": "6593129969495685932584901" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "16865545485238188032", - "expectedQty": "17074426329183677163", - "swapFee": "10119327291142912", + "type": "mintMulti", + "inputQtys": [ + "27895094614048104251392", + "232893676403151316451328" + ], + "expectedQty": "258297137530390796704765", "reserves": [ - "3021701758869467480423335", - "3173650413707932359416224" + "3244026184098308113905368", + "3671902761864028791112822" ], - "LPTokenSupply": "6116859658060485226227922" + "LPTokenSupply": "6851427107026076729289666" }, { - "type": "redeemBassets", - "inputQtys": [ - "1058213737204535680", - "5665276196209115136" + "type": "redeemMasset", + "inputQty": "140847735141805875", + "expectedQtys": [ + "66648828834246710", + "75439594128768317" ], - "expectedQty": "6637592913482302548", - "swapFee": "3984946716119052", + "redemptionFee": "84508641085083", "reserves": [ - "3021700700655730275887655", - "3173644748431736150301088" + "3244026117449479279658658", + "3671902686424434662344505" ], - "LPTokenSupply": "6116853016881119699418226" + "LPTokenSupply": "6851426966186792451592299" }, { "type": "mintMulti", "inputQtys": [ - "662869906047487232", - "1113305250823474688" + "136136373915547472", + "371976883928996736" ], - "expectedQty": "1753606435814069774", + "expectedQty": "503290704234428126", "reserves": [ - "3021701363525636323374887", - "3173645861736986973775776" + "3244026253585853195206130", + "3671903058401318591341241" ], - "LPTokenSupply": "6116854770487555513488000" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "15980386461357950631936", - "expectedQty": "15780408761058410103829", - "reserves": [ - "3037681749986994274006823", - "3173645861736986973775776" - ] + "LPTokenSupply": "6851427469477496686020425" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2047007416431815688192", - "expectedQty": "2071720545617277019722", - "swapFee": "1228204449859089412", + "inputIndex": 1, + "inputQty": "205005777948449964032", + "expectedQty": "206891730599094685850", + "swapFee": "123003466769069978", "reserves": [ - "3035610029441376996987101", - "3173645861736986973775776" + "3244026253585853195206130", + "3671696166670719496655391" ], - "LPTokenSupply": "6130588294652627093812578" + "LPTokenSupply": "6851222475999894912963390" }, { "type": "redeemBassets", "inputQtys": [ - "805631663400013398016", - "238950062776820793344" + "223709564010636", + "226665495238491" ], - "expectedQty": "1031433509213720313428", - "swapFee": "619231644514941152", + "expectedQty": "446184784181403", + "swapFee": "267871593464", "reserves": [ - "3034804397777976983589085", - "3173406911674210152982432" + "3244026253362143631195494", + "3671696166444054001416900" ], - "LPTokenSupply": "6129556303834933310052112" + "LPTokenSupply": "6851222475553469044347868" }, { - "type": "redeemMasset", - "inputQty": "22630990018818058957619", - "expectedQtys": [ - "11198105744687172799085", - "11709534292842005564198" + "type": "redeemBassets", + "inputQtys": [ + "1903462270756464885760", + "9834925690217920724992" ], - "redemptionFee": "13578594011290835374", + "expectedQty": "11625988533120234831191", + "swapFee": "6979780988465220030", "reserves": [ - "3023606292033289810790000", - "3161697377381368147418234" + "3242122791091387166309734", + "3661861240753836080691908" ], - "LPTokenSupply": "6106926671675516380178030" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "46932892682478097006592", - "expectedQty": "46343983736383925243892", - "reserves": [ - "3070539184715767907796592", - "3161697377381368147418234" - ] + "LPTokenSupply": "6839590205217459190818649" }, { "type": "mintMulti", "inputQtys": [ - "18226842901806325956608", - "33996694598758789283840" + "844820428863247488", + "823350750747647360" ], - "expectedQty": "51560283123707923201876", + "expectedQty": "1652661437495787355", "reserves": [ - "3088766027617574233753200", - "3195694071980126936702074" + "3242123635911816029557222", + "3661862064104586828339268" ], - "LPTokenSupply": "6204830938535608228623798" + "LPTokenSupply": "6839591857878896686606004" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "5149533310479609", - "expectedQty": "5211892416656942", - "swapFee": "3089719986287", - "reserves": [ - "3088766022405681817096258", - "3195694071980126936702074" - ], - "LPTokenSupply": "6204830933386383890142817" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "2102994162296580", - "2016486715293293" - ], - "expectedQty": "4067301175568234", - "swapFee": "2441845812828", + "inputIndex": 1, + "inputQty": "1216377103247160115200", + "expectedQty": "1227559414020463816907", + "swapFee": "729826261948296069", "reserves": [ - "3088766020302687654799678", - "3195694069963640221408781" + "3242123635911816029557222", + "3660634504690566364522361" ], - "LPTokenSupply": "6204830929316885053343036" + "LPTokenSupply": "6838375553758275721320410" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "91900484378515728", - "expectedQty": "93034344041179427", - "swapFee": "55140290627109", + "inputIndex": 0, + "inputQty": "61409562879732830175232", + "expectedQty": "61921831414108453183724", + "swapFee": "36845737727839698105", "reserves": [ - "3088766020302687654799678", - "3195693976929296180229354" + "3180201804497707576373498", + "3660634504690566364522361" ], - "LPTokenSupply": "6204830837421914703890018" + "LPTokenSupply": "6776969675452315675114988" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "8805185702880620544", - "expectedQty": "8694613717726472643", + "inputQty": "211057471958521099583488", + "expectedQty": "212784732639700105545028", + "swapFee": "126634483175112659750", "reserves": [ - "3088774825488390535420222", - "3195693976929296180229354" - ] + "2967417071858007470828470", + "3660634504690566364522361" + ], + "LPTokenSupply": "6565924866942112086797475" }, { "type": "redeemMasset", - "inputQty": "10050016354456712092057", + "inputQty": "221428701476101292032", "expectedQtys": [ - "4999905639575451866816", - "5172979333344462166904" + "100012881579009875930", + "123376861545256243858" ], - "redemptionFee": "6030009812674027255", + "redemptionFee": "132857220885660775", "reserves": [ - "3083774919848815083553406", - "3190520997595951718062450" + "2967317058976428460952540", + "3660511127829021108278503" ], - "LPTokenSupply": "6194790118682156985673329" + "LPTokenSupply": "6565703451526358074071520" }, { - "type": "redeemMasset", - "inputQty": "48359248436206954086", - "expectedQtys": [ - "24058855456355096462", - "24891662169491316979" + "type": "redeemBassets", + "inputQtys": [ + "1653782085187930880", + "5156653079544355840" ], - "redemptionFee": "29015549061724172", + "expectedQty": "6744641682954407281", + "swapFee": "4049214538495741", "reserves": [ - "3083750860993358728456944", - "3190496105933782226745471" + "2967315405194343273021660", + "3660505971175941563922663" ], - "LPTokenSupply": "6194741762335275684891660" + "LPTokenSupply": "6565696703240382035018071" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "38977083526687137792", - "expectedQty": "38487590083371463183", - "reserves": [ - "3083789838076885415594736", - "3190496105933782226745471" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "623750214700407357177856", - "expectedQty": "615725367734879069031892", - "reserves": [ - "3707540052777292772772592", - "3190496105933782226745471" - ] - }, - { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8938355133581", - "30624011037057" + "6965936332610442625024", + "27722941063053508083712" ], - "expectedQty": "39072569051376", + "expectedQty": "34351870120460424415121", + "swapFee": "20623496169978241594", "reserves": [ - "3707540052786231127906173", - "3190496105964406237782528" + "2960349468861732830396636", + "3632783030112888055838951" ], - "LPTokenSupply": "6810505617699310694438111" + "LPTokenSupply": "6531326271973368630185514" }, { "type": "redeemBassets", "inputQtys": [ - "6356694180001007796224", - "9815966355055383150592" + "5144038558048679936", + "9442698187468992512" ], - "expectedQty": "15969768463083082710936", - "swapFee": "9587613646037472109", + "expectedQty": "14448075449688643941", + "swapFee": "8674049699632966", "reserves": [ - "3701183358606230120109949", - "3180680139609350854631936" + "2960344324823174781716700", + "3632773587414700586846439" ], - "LPTokenSupply": "6794527220383946178002275" + "LPTokenSupply": "6531311816091274211871902" }, { - "type": "redeemBassets", - "inputQtys": [ - "388800637233988928", - "513963555491087616" + "type": "redeemMasset", + "inputQty": "10508187676311439592652", + "expectedQtys": [ + "4760022169344223519204", + "5841240381162417282004" ], - "expectedQty": "891404164653777642", - "swapFee": "535163596950436", + "redemptionFee": "6304912605786863755", "reserves": [ - "3701182969805592886121021", - "3180679625645795363544320" + "2955584302653830558197496", + "3626932347033538169564435" ], - "LPTokenSupply": "6794526328498134286969239" + "LPTokenSupply": "6520804258906223350965625" }, { "type": "redeemMasset", - "inputQty": "542741929863061962752", + "inputQty": "4390698157243856486", "expectedQtys": [ - "295470474089642434101", - "253917983678119279328" + "1988909924170261943", + "2440682112444563940" ], - "redemptionFee": "325645157917837177", + "redemptionFee": "2634418894346313", "reserves": [ - "3700887499331503243686920", - "3180425707662117244264992" + "2955582313743906387935553", + "3626929906351425725000495" ], - "LPTokenSupply": "6793983619132787016790204" + "LPTokenSupply": "6520799868471507996543770" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "70513921972548026368", - "expectedQty": "71338573370142249428", - "swapFee": "42308353183528815", + "inputQty": "159513671789341352919040", + "outputIndex": 0, + "expectedQty": "159238319329763544604370", + "swapFee": "0", "reserves": [ - "3700887499331503243686920", - "3180354369088747102015564" + "2796343994414142843331183", + "3786443578140767077919535" ], - "LPTokenSupply": "6793913109441649787116717" + "LPTokenSupply": "6520799868471507996543770", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1166410148132081106944", - "1584231939734149791744" + "12305341609151031296", + "3425353582936708096" ], - "expectedQty": "2716047439883605797048", - "swapFee": "1630606828026979666", + "expectedQty": "15594178244793980534", "reserves": [ - "3699721089183371162579976", - "3178770137149012952223820" + "2796356299755751994362479", + "3786447003494350014627631" ], - "LPTokenSupply": "6791195594455620957037968" + "LPTokenSupply": "6520815462649752790524304" }, { - "type": "redeemMasset", - "inputQty": "18273814176054981427", - "expectedQtys": [ - "9949271809034482391", - "8548333063646742378" + "type": "redeemBassets", + "inputQtys": [ + "302078422781667200", + "379192195982836928" ], - "redemptionFee": "10964288505632988", + "expectedQty": "674881524561132027", + "swapFee": "405172017947447", "reserves": [ - "3699711139911562128097585", - "3178761588815949305481442" + "2796355997677329212695279", + "3786446624302154031790703" ], - "LPTokenSupply": "6791177321737873752619839" + "LPTokenSupply": "6520814787403573413239573" }, { "type": "redeemBassets", "inputQtys": [ - "3838256237737131", - "7598315100231861" + "2449535420397462749184", + "1556629815053071417344" ], - "expectedQty": "11293745908042764", - "swapFee": "6780315734266", + "expectedQty": "3969986205971244540504", + "swapFee": "2383421776648735965", "reserves": [ - "3699711136073305890360454", - "3178761581217634205249581" + "2793906462256931749946095", + "3784889994487100960373359" ], - "LPTokenSupply": "6791177310438025560416234" + "LPTokenSupply": "6516842656118003184836699" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4797638201884756934656", - "expectedQty": "4853730019387461404131", - "swapFee": "2878582921130854160", + "inputIndex": 0, + "inputQty": "28828054563007657672704", + "expectedQty": "29049104015689905055655", + "swapFee": "17296832737804594603", "reserves": [ - "3699711136073305890360454", - "3173907851198246743845450" + "2764857358241241844890440", + "3784889994487100960373359" ], - "LPTokenSupply": "6786379960094432916566994" + "LPTokenSupply": "6488016331238269307623455" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "104775690518446613725184", - "expectedQty": "106104289407852024731317", - "swapFee": "62865414311067968235", + "type": "mint", + "inputIndex": 1, + "inputQty": "44866412401173899247616", + "expectedQty": "44402085821700450864841", "reserves": [ - "3593606846665453865629137", - "3173907851198246743845450" - ], - "LPTokenSupply": "6681610556117417409638633" + "2764857358241241844890440", + "3829756406888274859620975" + ] }, { - "type": "redeemMasset", - "inputQty": "53208444213575069519052", - "expectedQtys": [ - "28600215723992618983568", - "25259983383150079993618" - ], - "redemptionFee": "31925066528145041711", + "type": "redeem", + "inputIndex": 1, + "inputQty": "898555243965622648832", + "expectedQty": "907423439629940158835", + "swapFee": "539133146379373589", "reserves": [ - "3565006630941461246645569", - "3148647867815096663851832" + "2764857358241241844890440", + "3828848983448644919462140" ], - "LPTokenSupply": "6628405304410495154623752" + "LPTokenSupply": "6531519915729318773776822" }, { "type": "redeemBassets", "inputQtys": [ - "32146452206420402176", - "25674021610319314944" + "17469545436514488320", + "11062520378312161280" ], - "expectedQty": "57085096751619918101", - "swapFee": "34271621023586102", + "expectedQty": "28275259097764319516", + "swapFee": "16975340663056425", "reserves": [ - "3564974484489254826243393", - "3148622193793486344536888" + "2764839888695805330402120", + "3828837920928266607300860" ], - "LPTokenSupply": "6628348188469284613478158" + "LPTokenSupply": "6531491625192414412706522" }, { "type": "redeemMasset", - "inputQty": "1712234978846", + "inputQty": "138236307995513061376", "expectedQtys": [ - "920351706513", - "812864109359" + "58481578110533591708", + "80987143183528961569" ], - "redemptionFee": "1027340987", + "redemptionFee": "82941784797307836", "reserves": [ - "3564974484488334474536880", - "3148622193792673480427529" + "2764781407117694796810412", + "3828756933785083078339291" ], - "LPTokenSupply": "6628348188467572481233410" + "LPTokenSupply": "6531353397178597379375929" }, { "type": "mintMulti", "inputQtys": [ - "2390835115866632224768", - "425744348440894242816" - ], - "expectedQty": "2780081678154964132892", - "reserves": [ - "3567365319604201106761648", - "3149047938141114374670345" - ], - "LPTokenSupply": "6631128270145727445366302" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "33475318687954248", - "33883799564225428" + "9650105970926857224192", + "9555481385712947822592" ], - "expectedQty": "66505681819279675", - "swapFee": "39927365510874", + "expectedQty": "19028012902877193043666", "reserves": [ - "3567365286128882418807400", - "3149047904257314810444917" + "2774431513088621654034604", + "3838312415170796026161883" ], - "LPTokenSupply": "6631128203604110997126839" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4968933200345077645312", - "expectedQty": "4907990069329932177831", - "reserves": [ - "3567365286128882418807400", - "3154016837457659888090229" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "166023886063391328", - "expectedQty": "163852642092171761", - "reserves": [ - "3567365452152768482198728", - "3154016837457659888090229" - ] + "LPTokenSupply": "6550381410081474572419595" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "208142307329709146112", - "outputIndex": 1, - "expectedQty": "207805094422268136393", - "swapFee": "164336179048966401", + "inputIndex": 1, + "inputQty": "62703183300976044933120", + "outputIndex": 0, + "expectedQty": "62553346673442009218544", + "swapFee": "0", "reserves": [ - "3567573594460098191344840", - "3153809032363237619953836" + "2711878166415179644816060", + "3901015598471772071095003" ], - "LPTokenSupply": "6636036373959700926373071", + "LPTokenSupply": "6550381410081474572419595", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "41947656010748512960512", + "inputQty": "47958770865151936561152", "outputIndex": 1, - "expectedQty": "41876129493819324395933", - "swapFee": "33118627393183015972", + "expectedQty": "48036851647609156719078", + "swapFee": "38059818871537755862", "reserves": [ - "3609521250470846704305352", - "3111932902869418295557903" + "2759836937280331581377212", + "3852978746824162914375925" ], - "LPTokenSupply": "6636039685822440244674668", + "LPTokenSupply": "6550385216063361726195181", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "44064511418836751220736", - "46661090086011556331520" + "7917586023042302083072", + "5843897359285129052160" ], - "expectedQty": "89577286042715409733309", - "swapFee": "53778638808914594596", + "expectedQty": "13636535477634824635066", "reserves": [ - "3565456739052009953084616", - "3065271812783406739226383" + "2767754523303373883460284", + "3858822644183448043428085" ], - "LPTokenSupply": "6546413999004796811806221" + "LPTokenSupply": "6564021751540996550830247" }, { - "type": "mintMulti", - "inputQtys": [ - "165966838807502688", - "465093953600248064" - ], - "expectedQty": "623209359147965725", + "type": "swap", + "inputIndex": 1, + "inputQty": "83652130338122703568896", + "outputIndex": 0, + "expectedQty": "83443090147959684032910", + "swapFee": "0", "reserves": [ - "3565456905018848760587304", - "3065272277877360339474447" + "2684311433155414199427374", + "3942474774521570746996981" ], - "LPTokenSupply": "6546414622214155959771946" + "LPTokenSupply": "6564021751540996550830247", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1325144921685478866944", - "2122415747288583897088" + "3308520727135673909248", + "581670273897744236544" ], - "expectedQty": "3404250436824876220765", - "swapFee": "2043776528011732772", + "expectedQty": "3857981517812617270521", "reserves": [ - "3564131760097163281720360", - "3063149862130071755577359" + "2687619953882549873336622", + "3943056444795468491233525" ], - "LPTokenSupply": "6543008532378455872991685" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "358811236241524800", - "expectedQty": "363384713359279758", - "swapFee": "215286741744914", - "reserves": [ - "3564131396712449922440602", - "3063149862130071755577359" - ], - "LPTokenSupply": "6543008173588748305641376" + "LPTokenSupply": "6567879733058809168100768" }, { "type": "redeemBassets", "inputQtys": [ - "827288205210772176896", - "1447433281322226810880" - ], - "expectedQty": "2246192240639267701779", - "swapFee": "1348524459058996018", - "reserves": [ - "3563304108507239150263706", - "3061702428848749528766479" + "121674141348627793051648", + "39881047582170687733760" ], - "LPTokenSupply": "6540760767676095884843179" - }, - { - "type": "redeemMasset", - "inputQty": "32281603348877168082944", - "expectedQtys": [ - "17575960415564099123715", - "15101815353117721438634" - ], - "redemptionFee": "19368962009326300849", + "expectedQty": "160183263234938669065767", + "swapFee": "96167658536084852350", "reserves": [ - "3545728148091675051139991", - "3046600613495631807327845" + "2565945812533922080284974", + "3903175397213297803499765" ], - "LPTokenSupply": "6508481101223419649390319" + "LPTokenSupply": "6407609918931188022667885" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "98324812956852176", - "expectedQty": "99578440564478212", - "swapFee": "58994887774111", + "inputQty": "50048190188365348864", + "expectedQty": "49661630363470182100", "reserves": [ - "3545728048513234486661779", - "3046600613495631807327845" - ], - "LPTokenSupply": "6508481002904506181315554" + "2565995860724110445633838", + "3903175397213297803499765" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "2213850425417189632", - "expectedQty": "2186884992675824654", + "inputQty": "2560131957378683240448", + "expectedQty": "2532782782623202666048", "reserves": [ - "3545728048513234486661779", - "3046602827346057224517477" + "2565995860724110445633838", + "3905735529170676486740213" ] }, { - "type": "mintMulti", - "inputQtys": [ - "246151161049154781184", - "2160192100312963350528" - ], - "expectedQty": "2376784435025689368650", + "type": "swap", + "inputIndex": 1, + "inputQty": "158267882035996994306048", + "outputIndex": 0, + "expectedQty": "157727008386465078756625", + "swapFee": "0", "reserves": [ - "3545974199674283641442963", - "3048763019446370187868005" + "2408268852337645366877213", + "4064003411206673481046261" ], - "LPTokenSupply": "6510859974224524546508858" + "LPTokenSupply": "6410192363344174695516033", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "180366319813438570496", - "129731890901844672512" - ], - "expectedQty": "306140540674331919595", - "swapFee": "183794601165298330", + "type": "mint", + "inputIndex": 0, + "inputQty": "90930946799082825318400", + "expectedQty": "90268623668700110190695", "reserves": [ - "3545793833354470202872467", - "3048633287555468343195493" - ], - "LPTokenSupply": "6510553668268709165820765" + "2499199799136728192195613", + "4064003411206673481046261" + ] }, { "type": "redeemMasset", - "inputQty": "34919282676541967564", + "inputQty": "41362025670696789606", "expectedQtys": [ - "19006415358563803040", - "16341500172446867028" + "15892710266971123049", + "25843483486434304763" + ], + "redemptionFee": "24817215402418073", + "reserves": [ + "2499183906426461221072564", + "4063977567723187046741498" ], - "redemptionFee": "20951569605925180", + "LPTokenSupply": "6500419627468925649158929" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "14291662219803610841088", + "expectedQty": "14389111642026837227329", + "swapFee": "8574997331882166504", "reserves": [ - "3545774826939111639069427", - "3048616946055295896328465" + "2484794794784434383845235", + "4063977567723187046741498" ], - "LPTokenSupply": "6510518751081189584445719" + "LPTokenSupply": "6486128822748855226534491" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1103572703717957959680", - "expectedQty": "1090127482462127545544", + "inputQty": "374036693077633192165376", + "expectedQty": "369897288251907408124565", "reserves": [ - "3545774826939111639069427", - "3049720518759013854288145" + "2484794794784434383845235", + "4438014260800820238906874" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "17617501375530472046592", - "expectedQty": "17823908643805784710151", - "swapFee": "10570500825318283227", + "inputQty": "18558334655218264", + "expectedQty": "18350229921779728", "reserves": [ - "3545774826939111639069427", - "3031896610115208069577994" - ], - "LPTokenSupply": "6493992434238203771772993" + "2484794794784434383845235", + "4438014279359154894125138" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "3576338115573801984", - "expectedQty": "3621996656136237651", - "swapFee": "2145802869344281", + "inputIndex": 1, + "inputQty": "38053206565842459820032", + "expectedQty": "38461086859456701695096", + "swapFee": "22831923939505475892", "reserves": [ - "3545771204942455502831776", - "3031896610115208069577994" + "2484794794784434383845235", + "4399553192499698192430042" ], - "LPTokenSupply": "6493988858114668484905437" + "LPTokenSupply": "6817975205977544047166341" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "899156595739693023232", - "expectedQty": "887288868342864453215", + "type": "redeemBassets", + "inputQtys": [ + "107617921423451439104", + "135919057700489003008" + ], + "expectedQty": "241273445850682970564", + "swapFee": "144850978097268143", "reserves": [ - "3546670361538195195855008", - "3031896610115208069577994" - ] + "2484687176863010932406131", + "4399417273441997703427034" + ], + "LPTokenSupply": "6817733802165813076654447" }, { "type": "redeemMasset", - "inputQty": "58972731059095437312", + "inputQty": "1145304296981", "expectedQtys": [ - "32184038394777380324", - "27512756180313090237" + "417149678924", + "738610284692" ], - "redemptionFee": "35383638635457262", + "redemptionFee": "687182578", "reserves": [ - "3546638177499800418474684", - "3031869097359027756487757" + "2484687176862593782727207", + "4399417273441259093142342" ], - "LPTokenSupply": "6494817177790316117467066" + "LPTokenSupply": "6817733802164667841075723" }, { - "type": "redeemBassets", - "inputQtys": [ - "8964734886918020399104", - "747266339194637254656" - ], - "expectedQty": "9584613979271834317945", - "swapFee": "5754220920115169692", + "type": "redeem", + "inputIndex": 0, + "inputQty": "14967945132270254292992", + "expectedQty": "15062686028760138297067", + "swapFee": "8980767079362152575", "reserves": [ - "3537673442612882398075580", - "3031121831019833119233101" + "2469624490833833644430140", + "4399417273441259093142342" ], - "LPTokenSupply": "6485227385012216179496397" + "LPTokenSupply": "6802766755109105522997988" }, { - "type": "redeemBassets", - "inputQtys": [ - "14471494393745652056064", - "5727958458735197683712" - ], - "expectedQty": "19938836757520707538163", - "swapFee": "11970484345119496220", + "type": "redeem", + "inputIndex": 0, + "inputQty": "38774129161698287616", + "expectedQty": "39018869805747769439", + "swapFee": "23264477497018972", "reserves": [ - "3523201948219136746019516", - "3025393872561097921549389" + "2469585471964027896660701", + "4399417273441259093142342" ], - "LPTokenSupply": "6465277774818784864411635" + "LPTokenSupply": "6802727983306391574412269" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "19468029654313522429952", - "outputIndex": 1, - "expectedQty": "19431860442088066541926", - "swapFee": "15368900888549283104", + "type": "redeemMasset", + "inputQty": "7744585617905655427891", + "expectedQtys": [ + "2809819917184749604082", + "5005524376158111270690" + ], + "redemptionFee": "4646751370743393256", "reserves": [ - "3542669977873450268449468", - "3005962012119009855007463" + "2466775652046843147056619", + "4394411749065100981871652" ], - "LPTokenSupply": "6465279311708873719339945", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6794983862363622993323703" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "102131002217976283136", - "expectedQty": "103324140125986742741", - "swapFee": "61278601330785769", + "inputQty": "140605522555427", + "expectedQty": "142114177820816", + "swapFee": "84363313533", "reserves": [ - "3542669977873450268449468", - "3005858687978883868264722" + "2466775652046843147056619", + "4394411748922986804050836" ], - "LPTokenSupply": "6465177186834515876135385" + "LPTokenSupply": "6794983862223025907099629" }, { "type": "redeemMasset", - "inputQty": "2796235694980711265075", + "inputQty": "7013984082068288988774", "expectedQtys": [ - "1531310941280637804716", - "1299275497179813962705" + "2544751297869696484462", + "4533320649636953067427" ], - "redemptionFee": "1677741416988426759", + "redemptionFee": "4208390449240973393", "reserves": [ - "3541138666932169630644752", - "3004559412481704054302017" + "2464230900748973450572157", + "4389878428273349850983409" ], - "LPTokenSupply": "6462381118913676863712985" + "LPTokenSupply": "6787970298980002542208194" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9278664889120829997056", - "expectedQty": "9397359569286914927436", - "swapFee": "5567198933472497998", + "type": "mintMulti", + "inputQtys": [ + "97607033584792", + "63776821814050" + ], + "expectedQty": "159998385257812", "reserves": [ - "3531741307362882715717316", - "3004559412481704054302017" + "2464230900846580484156949", + "4389878428337126672797459" ], - "LPTokenSupply": "6453103010744449380965728" + "LPTokenSupply": "6787970299140000927466006" }, { "type": "redeemBassets", "inputQtys": [ - "25617795291778476146688", - "1175490962434508324864" + "635779471291010944", + "2612957524286248448" ], - "expectedQty": "26440601770356631213963", - "swapFee": "15873885393450048757", + "expectedQty": "3215078167857466489", + "swapFee": "1930205023728717", "reserves": [ - "3506123512071104239570628", - "3003383921519269545977153" + "2464230265067109193146005", + "4389875815379602386549011" ], - "LPTokenSupply": "6426648122477238644707882" + "LPTokenSupply": "6787967082324648548643670" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "7696699549914600833024", - "outputIndex": 0, - "expectedQty": "7704545901308973627603", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "302577024409748541276160", + "expectedQty": "304357850347909839504144", + "swapFee": "181546214645849124765", "reserves": [ - "3498418966169795265943025", - "3011080621069184146810177" + "2159872414719199353641861", + "4389875815379602386549011" ], - "LPTokenSupply": "6426648122477238644707882", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6485408212536364592279986" }, { "type": "redeemMasset", - "inputQty": "171590287276431411", + "inputQty": "1143802643573188329472", "expectedQtys": [ - "93351079311603482", - "80347044933502436" + "380698549136414913325", + "773758367584560725715" ], - "redemptionFee": "102954172365858", + "redemptionFee": "686281586143912997", "reserves": [ - "3498418872818715954339543", - "3011080540722139213307741" + "2159491716170062938728536", + "4389102057012017825823296" ], - "LPTokenSupply": "6426647950897246785513056" + "LPTokenSupply": "6484264478520950018341813" }, { - "type": "redeemMasset", - "inputQty": "19386480652075835745894", - "expectedQtys": [ - "10546919185672734294724", - "9077707467019431581354" + "type": "mintMulti", + "inputQtys": [ + "66278797338701864960", + "86253453774714503168" ], - "redemptionFee": "11631888391245501447", + "expectedQty": "151125038862706946167", "reserves": [ - "3487871953633043220044819", - "3002002833255119781726387" + "2159557994967401640593496", + "4389188310465792540326464" ], - "LPTokenSupply": "6407262633434010074317306" + "LPTokenSupply": "6484415603559812725287980" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "3687225309358887936", - "expectedQty": "3734257847130091614", - "swapFee": "2212335185615332", + "inputIndex": 1, + "inputQty": "35551184324208948674560", + "expectedQty": "35950096135286883137976", + "swapFee": "21330710594525369204", "reserves": [ - "3487868219375196089953205", - "3002002833255119781726387" + "2159557994967401640593496", + "4353238214330505657188488" ], - "LPTokenSupply": "6407258946429934233990903" + "LPTokenSupply": "6448866552306663229150340" }, { - "type": "mintMulti", - "inputQtys": [ - "9341804132674876473344", - "41880866603836886745088" - ], - "expectedQty": "50587959497538062696401", + "type": "mint", + "inputIndex": 1, + "inputQty": "3585790225552434528256", + "expectedQty": "3543912384327904001766", "reserves": [ - "3497210023507870966426549", - "3043883699858956668471475" - ], - "LPTokenSupply": "6457846905927472296687304" + "2159557994967401640593496", + "4356824004556058091716744" + ] }, { "type": "redeemBassets", "inputQtys": [ - "45290447069310059806720", - "96553373411472408838144" + "12242647130854704283648", + "5229909604928329875456" ], - "expectedQty": "140068527603768281533129", - "swapFee": "84091571505164067360", + "expectedQty": "17337466963016920029461", + "swapFee": "10408725413057986809", "reserves": [ - "3451919576438560906619829", - "2947330326447484259633331" + "2147315347836546936309848", + "4351594094951129761841288" ], - "LPTokenSupply": "6317702695909349367493550" + "LPTokenSupply": "6435063629875102460934515" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "55329559893264943808512", + "expectedQty": "54990922622061620758947", + "reserves": [ + "2202644907729811880118360", + "4351594094951129761841288" + ] }, { "type": "redeemBassets", "inputQtys": [ - "850658285285550325760", - "1395193382051364470784" + "563013349470182506496", + "1328064468034374598656" ], - "expectedQty": "2217609178097964197832", - "swapFee": "1331364325454050949", + "expectedQty": "1872167888463084055903", + "swapFee": "1123975118148739677", "reserves": [ - "3451068918153275356294069", - "2945935133065432895162547" + "2202081894380341697611864", + "4350266030483095387242632" ], - "LPTokenSupply": "6315483888503358494649862" + "LPTokenSupply": "6488181373031094663771848" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "106877665235447365632", - "16312671196114280448" + "2009087629620805632000", + "1376156701039991980032" ], - "expectedQty": "121578207746612329906", - "swapFee": "72990719079415046", + "expectedQty": "3356788176148356349168", "reserves": [ - "3450962040488039908928437", - "2945918820394236780882099" + "2204090982009962503243864", + "4351642187184135379222664" ], - "LPTokenSupply": "6315362244603964710846413" + "LPTokenSupply": "6491538161207243020121016" }, { "type": "mint", "inputIndex": 0, - "inputQty": "839731385275985559552", - "expectedQty": "828625714717826509667", + "inputQty": "26604494981190995968", + "expectedQty": "26439075419840985606", "reserves": [ - "3451801771873315894487989", - "2945918820394236780882099" + "2204117586504943694239832", + "4351642187184135379222664" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1123445054651724595200", - "expectedQty": "1137818790686946942119", - "swapFee": "674067032791034757", + "inputQty": "323094261935078080", + "expectedQty": "324920688362280135", + "swapFee": "193856557161046", "reserves": [ - "3450663953082628947545870", - "2945918820394236780882099" + "2204117261584255331959697", + "4351642187184135379222664" ], - "LPTokenSupply": "6315067492670734091864355" + "LPTokenSupply": "6491564277207786581744646" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "10880421163257810649088", + "expectedQty": "10941729833228200341462", + "swapFee": "6528252697954686389", + "reserves": [ + "2193175531751027131618235", + "4351642187184135379222664" + ], + "LPTokenSupply": "6480684508869798566564196" }, { "type": "redeemMasset", - "inputQty": "7772141944638629478", + "inputQty": "89332439406062560870", "expectedQtys": [ - "4244286960936773574", - "3623454792289389263" + "30213500903622417612", + "59948847345454948531" ], - "redemptionFee": "4663285166783177", + "redemptionFee": "53599463643637536", "reserves": [ - "3450659708795668010772296", - "2945915196939444491492836" + "2193145318250123509200623", + "4351582238336789924274133" ], - "LPTokenSupply": "6315059720995117969913194" + "LPTokenSupply": "6480595181790338868367079" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "205662678315796153761792", - "expectedQty": "202924228452945879463306", + "type": "redeemMasset", + "inputQty": "65964907632014", + "expectedQtys": [ + "22310269644862", + "44267460213970" + ], + "redemptionFee": "39578944579", "reserves": [ - "3656322387111464164534088", - "2945915196939444491492836" - ] + "2193145318227813239555761", + "4351582238292522464060163" + ], + "LPTokenSupply": "6480595181724377918629522" }, { "type": "redeemBassets", "inputQtys": [ - "7504153253010682", - "77377958486575312" + "117840619534797546455040", + "24087820581910026911744" ], - "expectedQty": "83855783573875698", - "swapFee": "50343676350135", + "expectedQty": "140939337896919313027784", + "swapFee": "84614371360968168717", "reserves": [ - "3656322379607310911523406", - "2945915119561486004917524" + "2075304698693015693100721", + "4327494417710612437148419" ], - "LPTokenSupply": "6517983865546970966785679" + "LPTokenSupply": "6339579690893233734249891" }, { - "type": "mintMulti", - "inputQtys": [ - "2341950677701585920", - "1904028509554854400" + "type": "redeemMasset", + "inputQty": "1318265763137936179", + "expectedQtys": [ + "431284372750212325", + "899328525925747234" ], - "expectedQty": "4191808294706490441", + "redemptionFee": "790959457882761", "reserves": [ - "3656324721557988613109326", - "2945917023589995559771924" + "2075304267408642942888396", + "4327493518382086511401185" ], - "LPTokenSupply": "6517988057355265673276120" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "360058522939733114880", - "expectedQty": "355750729160229319337", - "reserves": [ - "3656324721557988613109326", - "2946277082112935292886804" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "47428524538948646600704", - "expectedQty": "46791869690848303691314", - "reserves": [ - "3703753246096937259710030", - "2946277082112935292886804" - ] + "LPTokenSupply": "6339578372706566542101988" }, { "type": "redeemMasset", - "inputQty": "6053975778357511664435", + "inputQty": "390962086611390876876", "expectedQtys": [ - "3413330673009496837837", - "2715250522199013971758" + "127907318104717037099", + "266716596088802254405" ], - "redemptionFee": "3632385467014506998", + "redemptionFee": "234577251966834526", "reserves": [ - "3700339915423927762872193", - "2943561831590736278915046" + "2075176360090538225851297", + "4327226801785997709146780" ], - "LPTokenSupply": "6559082065235463396073035" + "LPTokenSupply": "6339187434077680347908564" }, { "type": "redeemBassets", "inputQtys": [ - "397905868833285", - "291627215270771" + "4116622087856871964672", + "7593188735579287715840" ], - "expectedQty": "680708927926958", - "swapFee": "408670559091", + "expectedQty": "11596118362101387554702", + "swapFee": "6961848126136514441", "reserves": [ - "3700339915026021894038908", - "2943561831299109063644275" + "2071059738002681353886625", + "4319633613050418421430940" ], - "LPTokenSupply": "6559082064554386664642894" + "LPTokenSupply": "6327585050052265437490864" }, { "type": "redeemMasset", - "inputQty": "1619719781279857429708", + "inputQty": "66857881240957081", "expectedQtys": [ - "913224989506107574221", - "726456024102802973623" + "21869889525319635", + "45614285369854287" ], - "redemptionFee": "971831868767914457", + "redemptionFee": "40114728744574", "reserves": [ - "3699426690036515786464687", - "2942835375275006260670652" + "2071059716132791828566990", + "4319633567436133051576653" ], - "LPTokenSupply": "6557462441956293684004631" + "LPTokenSupply": "6327584983198395669408240" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "397346550419772424585216", - "outputIndex": 1, - "expectedQty": "396052167627080033968004", - "swapFee": "313552730046182665885", + "inputIndex": 1, + "inputQty": "52798359163310861975552", + "outputIndex": 0, + "expectedQty": "52467775812518993610267", + "swapFee": "0", "reserves": [ - "4096773240456288211049903", - "2546783207647926226702648" + "2018591940320272834956723", + "4372431926599443913552205" ], - "LPTokenSupply": "6557493797229298302271219", + "LPTokenSupply": "6327584983198395669408240", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "195320407567787018420224", - "outputIndex": 1, - "expectedQty": "194381888963805663236694", - "swapFee": "154015893390991427264", + "inputQty": "163163711851063509254144", + "expectedQty": "163908553735918215689659", + "swapFee": "97898227110638105552", "reserves": [ - "4292093648024075229470127", - "2352401318684120563465954" + "1854683386584354619267064", + "4372431926599443913552205" ], - "LPTokenSupply": "6557509198818637401413945", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6164431061170043223964651" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 0, + "inputQty": "139278292343816503296", + "expectedQty": "138615663941236043787", + "reserves": [ + "1854822664876698435770360", + "4372431926599443913552205" + ] + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "6747683723096882151424", - "expectedQty": "6812711543367291223406", - "swapFee": "4048610233858129290", + "inputQty": "403538062959370560", + "expectedQty": "398567267966760741", "reserves": [ - "4292093648024075229470127", - "2345588607140753272242548" - ], - "LPTokenSupply": "6550761919956563905075450" + "1854822664876698435770360", + "4372432330137506872922765" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "174695975305963503616", - "208162011541086470144" - ], - "expectedQty": "378178502464135721883", + "type": "mint", + "inputIndex": 0, + "inputQty": "4166504444529771282432", + "expectedQty": "4146634888475378982579", "reserves": [ - "4292268343999381192973743", - "2345796769152294358712692" - ], - "LPTokenSupply": "6551140098459028040797333" + "1858989169321228207052792", + "4372432330137506872922765" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "117127596316158786011136", - "75072459308770174959616" - ], - "expectedQty": "189715830228470644261179", + "type": "mint", + "inputIndex": 1, + "inputQty": "89140969636162441314304", + "expectedQty": "88040008676463265824343", "reserves": [ - "4409395940315539978984879", - "2420869228461064533672308" - ], - "LPTokenSupply": "6740855928687498685058512" + "1858989169321228207052792", + "4461573299773669314237069" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "327585457458580096", + "expectedQty": "326085040372775938", + "reserves": [ + "1858989496906685665632888", + "4461573299773669314237069" + ] }, { "type": "redeemMasset", - "inputQty": "3305588561213166387", + "inputQty": "6675507352789321318", "expectedQtys": [ - "2160987202070912845", - "1186436303612434779" + "1982217328757398534", + "4757319997261190025" ], - "redemptionFee": "1983353136727899", + "redemptionFee": "4005304411673592", "reserves": [ - "4409393779328337908072034", - "2420868042024760921237529" + "1858987514689356908234354", + "4461568542453672053047044" ], - "LPTokenSupply": "6740852623297272785564914" + "LPTokenSupply": "6256750369944409096198080" }, { - "type": "redeemBassets", - "inputQtys": [ - "10061250888890891370496", - "3123835216823846961152" - ], - "expectedQty": "13005466162263335705731", - "swapFee": "7807964476043627599", + "type": "redeem", + "inputIndex": 0, + "inputQty": "958283403339940224", + "expectedQty": "962115141849106715", + "swapFee": "574970042003964", "reserves": [ - "4399332528439447016701538", - "2417744206807937074276377" + "1858986552574215059127639", + "4461568542453672053047044" ], - "LPTokenSupply": "6727840129966981010594342" + "LPTokenSupply": "6256749411718502760458252" }, { - "type": "mintMulti", - "inputQtys": [ - "23703447316329838673920", - "76911464287568945741824" - ], - "expectedQty": "99479411289779689887790", + "type": "mint", + "inputIndex": 0, + "inputQty": "5951778681643225579520", + "expectedQty": "5924422555371396528800", "reserves": [ - "4423035975755776855375458", - "2494655671095506020018201" - ], - "LPTokenSupply": "6827319541256760700482132" + "1864938331255858284707159", + "4461568542453672053047044" + ] }, { - "type": "redeemMasset", - "inputQty": "4641943062894086553", - "expectedQtys": [ - "3005449232586324907", - "1695116434358185873" + "type": "mintMulti", + "inputQtys": [ + "29574326775639147806720", + "93392955910593603174400" ], - "redemptionFee": "2785165837736451", + "expectedQty": "121674495160595947583973", "reserves": [ - "4423032970306544269050551", - "2494653975979071661832328" + "1894512658031497432513879", + "4554961498364265656221444" ], - "LPTokenSupply": "6827314899592214390169224" + "LPTokenSupply": "6384348329434470104571025" }, { "type": "redeemBassets", "inputQtys": [ - "286114387211393728512", - "267669490257670537216" + "3038761348255435980800", + "4349613466282184671232" ], - "expectedQty": "546840214399390898673", - "swapFee": "328301109305217669", + "expectedQty": "7320579082404033335225", + "swapFee": "4394984440106483891", "reserves": [ - "4422746855919332875322039", - "2494386306488813991295112" + "1891473896683241996533079", + "4550611884897983471550212" ], - "LPTokenSupply": "6826767763906816624574647" + "LPTokenSupply": "6377023794866069975400297" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "435683821181400", - "expectedQty": "441877201708064", - "swapFee": "261410292708", + "inputQty": "313356676440303993880576", + "expectedQty": "311701167750669267071295", "reserves": [ - "4422746855477455673613975", - "2494386306488813991295112" - ], - "LPTokenSupply": "6826767763471158944422517" + "2204830573123545990413655", + "4550611884897983471550212" + ] }, { - "type": "redeemMasset", - "inputQty": "1740514245577964466995", - "expectedQtys": [ - "1126922060446363656645", - "635573106015833917180" - ], - "redemptionFee": "1044308547346778680", + "type": "mint", + "inputIndex": 0, + "inputQty": "96329986941848326766592", + "expectedQty": "95744496857363569753268", "reserves": [ - "4421619933417009309957330", - "2493750733382798157377932" - ], - "LPTokenSupply": "6825027353656435714633390" + "2301160560065394317180247", + "4550611884897983471550212" + ] }, { - "type": "redeemMasset", - "inputQty": "96614708049440459980", - "expectedQtys": [ - "62554650807745123294", - "35280216001687513160" + "type": "redeemBassets", + "inputQtys": [ + "35402031720291748544512", + "22418653660763578695680" ], - "redemptionFee": "57968824829664275", + "expectedQty": "57339995237140090119999", + "swapFee": "34424651933444120544", "reserves": [ - "4421557378766201564834036", - "2493715453166796469864772" + "2265758528345102568635735", + "4528193231237219892854532" ], - "LPTokenSupply": "6824930744745268757139837" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "404487120061178314752", - "expectedQty": "400309741431923458462", - "reserves": [ - "4421557378766201564834036", - "2494119940286857648179524" - ] + "LPTokenSupply": "6727098482050222622396370" }, { "type": "redeemMasset", - "inputQty": "8283648764837063819264", + "inputQty": "490851881285786726", "expectedQtys": [ - "5363058883161256697170", - "3025203781287928624269" + "165224955163292729", + "330207528402576454" ], - "redemptionFee": "4970189258902238291", + "redemptionFee": "294511128771472", "reserves": [ - "4416194319883040308136866", - "2491094736505569719555255" + "2265758363120147405343006", + "4528192901029691490278078" ], - "LPTokenSupply": "6817047902740789507002864" + "LPTokenSupply": "6727097991227792449486791" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "49432668785031365263360", - "expectedQty": "49915499787423224904654", - "swapFee": "29659601271018819158", + "inputIndex": 0, + "inputQty": "585816486579714523136", + "expectedQty": "589094709509352014504", + "swapFee": "351489891947828713", "reserves": [ - "4416194319883040308136866", - "2441179236718146494650601" + "2265169268410638053328502", + "4528192901029691490278078" ], - "LPTokenSupply": "6767618199915885243621419" + "LPTokenSupply": "6726512209890201929746526" }, { - "type": "redeemMasset", - "inputQty": "454924844094582", - "expectedQtys": [ - "296682086850236", - "163999610946510" + "type": "redeemBassets", + "inputQtys": [ + "9304000590433060126720", + "17929944172615335673856" ], - "redemptionFee": "272954906456", + "expectedQty": "26967181749004585998599", + "swapFee": "16190023063240696016", "reserves": [ - "4416194319586358221286630", - "2441179236554146883704091" + "2255865267820204993201782", + "4510262956857076154604222" ], - "LPTokenSupply": "6767618199460987695017482" + "LPTokenSupply": "6699530457120440427121511" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "23543573152610012", - "expectedQty": "23880032998173029", - "swapFee": "14126143891566", + "inputIndex": 1, + "inputQty": "2350498633344301568", + "expectedQty": "2376859532352660853", + "swapFee": "1410299180006580", "reserves": [ - "4416194295706325223113601", - "2441179236554146883704091" + "2255865267820204993201782", + "4510260579997543801943369" ], - "LPTokenSupply": "6767618175918827156796626" + "LPTokenSupply": "6699528106762837000820601" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "366405893629853290201088", - "outputIndex": 1, - "expectedQty": "363987371454995851318703", - "swapFee": "288779888847368763074", + "type": "mint", + "inputIndex": 1, + "inputQty": "160978860959841189363712", + "expectedQty": "159087473034607072029204", + "reserves": [ + "2255865267820204993201782", + "4671239440957384991307081" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "204774285655016341504", + "118018721201508745216" + ], + "expectedQty": "320191299956821066619", + "swapFee": "192230118044919591", "reserves": [ - "4782600189336178513314689", - "2077191865099151032385388" + "2255660493534549976860278", + "4671121422236183482561865" ], - "LPTokenSupply": "6767647053907711893672933", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6858295215490381011355553" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "10062979606420240990208", - "expectedQty": "10141936250370142327200", - "swapFee": "6037787763852144594", + "inputIndex": 0, + "inputQty": "8533892412806432555008", + "expectedQty": "8579226904508103661042", + "swapFee": "5120335447683859533", "reserves": [ - "4782600189336178513314689", - "2067049928848780890058188" + "2247081266630041873199236", + "4671121422236183482561865" ], - "LPTokenSupply": "6757584678080068037897184" + "LPTokenSupply": "6849761835111119347186498" }, { "type": "redeemBassets", "inputQtys": [ - "682204598561193197568", - "107547717039378792448" + "30342979569510504202240", + "127557956434010535100416" ], - "expectedQty": "778185438630871522342", - "swapFee": "467191578125398152", + "expectedQty": "156215659366875659775660", + "swapFee": "93785667020337598424", "reserves": [ - "4781917984737617320117121", - "2066942381131741511265740" + "2216738287060531368996996", + "4543563465802172947461449" ], - "LPTokenSupply": "6756806072169016853516504" + "LPTokenSupply": "6693461768643925383572255" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "661498004607727566848", - "847224688390358040576" + "48110676457905968", + "158655983252914336" ], - "expectedQty": "1491297217661564375027", - "swapFee": "895315519908883955", + "expectedQty": "204608119891326216", "reserves": [ - "4781256486733009592550273", - "2066095156443351153225164" + "2216738335171207826902964", + "4543563624458156200375785" ], - "LPTokenSupply": "6755313969167387371145916" + "LPTokenSupply": "6693461973252045274898471" }, { - "type": "redeemBassets", - "inputQtys": [ - "1865058528488388296704", - "3916243733623334240256" + "type": "redeemMasset", + "inputQty": "15865779713555483852", + "expectedQtys": [ + "5251270580099775202", + "10763328089458900013" ], - "expectedQty": "5719430283789520696731", - "swapFee": "3433718401314501118", + "redemptionFee": "9519467828133290", "reserves": [ - "4779391428204521204253569", - "2062178912709727818984908" + "2216733083900627727127762", + "4543552861130066741475772" ], - "LPTokenSupply": "6749591448537036667398177" + "LPTokenSupply": "6693446108424278502227948" }, { "type": "mintMulti", "inputQtys": [ - "5788629902294418194432", - "3443700966555511160832" + "131350675129569574912", + "14510723949973932032" ], - "expectedQty": "9113034173957972884125", + "expectedQty": "144903706637690870932", "reserves": [ - "4785180058106815622448001", - "2065622613676283330145740" + "2216864434575757296702674", + "4543567371854016715407804" ], - "LPTokenSupply": "6758704482710994640282302" + "LPTokenSupply": "6693591012130916193098880" }, { - "type": "mintMulti", - "inputQtys": [ - "164663216992072433664", - "8261619805753499648" - ], - "expectedQty": "170280001643545758136", + "type": "mint", + "inputIndex": 0, + "inputQty": "1479334452576172032", + "expectedQty": "1470474793548707419", + "reserves": [ + "2216865913910209872874706", + "4543567371854016715407804" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "823762622675628288", + "outputIndex": 0, + "expectedQty": "818955973299690239", + "swapFee": "0", "reserves": [ - "4785344721323807694881665", - "2065630875296089083645388" + "2216865094954236573184467", + "4543568195616639391036092" ], - "LPTokenSupply": "6758874762712638186040438" + "LPTokenSupply": "6693592482605709741806299", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "5683332881950601216", - "2339954280625925120" + "2248616677626284867584", + "5082353505365055766528" ], - "expectedQty": "7914848984058856439", - "swapFee": "4751760446703335", + "expectedQty": "7257587569541853439669", + "swapFee": "4357166841830210189", "reserves": [ - "4785339037990925744280449", - "2065628535341808457720268" + "2214616478276610288316883", + "4538485842111274335269564" ], - "LPTokenSupply": "6758866843587069725150996" + "LPTokenSupply": "6686330973586010241177458" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "351241430849540841275392", + "expectedQty": "347050209724111855995933", + "reserves": [ + "2214616478276610288316883", + "4889727272960815176544956" + ] + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "2686406022954891608064", - "expectedQty": "2727457579775514647137", - "swapFee": "1611843613772934964", + "inputQty": "21226727312581", + "expectedQty": "21112482523459", "reserves": [ - "4782611580411150229633312", - "2065628535341808457720268" - ], - "LPTokenSupply": "6756180598748476210836428" + "2214616478297837015629464", + "4889727272960815176544956" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "9161825286172691136512", - "expectedQty": "9233255638333297704733", - "swapFee": "5497095171703614681", + "inputQty": "1829656852637721559040", + "expectedQty": "1807562480949502160370", "reserves": [ - "4782611580411150229633312", - "2056395279703475160015535" - ], - "LPTokenSupply": "6747019323171820690061384" + "2214616478297837015629464", + "4891556929813452898103996" + ] }, { "type": "redeemMasset", - "inputQty": "1295712577768575", + "inputQty": "571147509365534411980", "expectedQtys": [ - "917912273359448", - "394677768491494" + "179684413288939567045", + "396879796396408521103" ], - "redemptionFee": "777427546661", + "redemptionFee": "342688505619320647", "reserves": [ - "4782611579493237956273864", - "2056395279308797391524041" + "2214436793884548076062419", + "4891160050017056489582893" ], - "LPTokenSupply": "6747019321876185855047475" + "LPTokenSupply": "7034617632571669109377304" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "927956674345755869184", - "expectedQty": "942153843340088790613", - "swapFee": "556774004607453521", + "inputQty": "2416385169059059597312", + "expectedQty": "2427983656303795460764", + "swapFee": "1449831101435435758", "reserves": [ - "4781669425649897867483251", - "2056395279308797391524041" + "2212008810228244280601655", + "4891160050017056489582893" ], - "LPTokenSupply": "6746091420879240559923643" + "LPTokenSupply": "7032201392385720193323567" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7622186219832410112", - "5128190807972229120" + "712365552901300813824", + "50133004847180570624" ], - "expectedQty": "12588386836526467118", + "expectedQty": "758068760813712849658", + "swapFee": "455114325083277676", "reserves": [ - "4781677047836117699893363", - "2056400407499605363753161" + "2211296444675342979787831", + "4891109917012209309012269" ], - "LPTokenSupply": "6746104009266077086390761" + "LPTokenSupply": "7031442914022013905523999" }, { - "type": "swap", + "type": "mint", + "inputIndex": 1, + "inputQty": "7169990115969838080", + "expectedQty": "7083360390001142768", + "reserves": [ + "2211296444675342979787831", + "4891117087002325278850349" + ] + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "27353555197213068492800", - "outputIndex": 1, - "expectedQty": "27125640472877191120954", - "swapFee": "21539915246675198091", + "inputQty": "353165953515572800", + "expectedQty": "354858533824899119", + "swapFee": "211899572109343", "reserves": [ - "4809030603033330768386163", - "2029274767026728172632207" + "2211296089816809154888712", + "4891117087002325278850349" ], - "LPTokenSupply": "6746106163257601753910570", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7031449644237640348304901" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "79021612651971477504", - "expectedQty": "79621731211656365695", - "swapFee": "47412967591182886", + "inputQty": "109591704264750779072512", + "expectedQty": "110860432293230759631633", + "swapFee": "65755022558850467443", "reserves": [ - "4809030603033330768386163", - "2029195145295516516266512" + "2211296089816809154888712", + "4780256654709094519218716" ], - "LPTokenSupply": "6746027146386246541551354" + "LPTokenSupply": "6921864515475145454279133" }, { "type": "redeemMasset", - "inputQty": "1368713328161468081766", + "inputQty": "5806412588050727", "expectedQtys": [ - "975127260622250333938", - "411459952459419188104" + "1853834845316635", + "4007516857134493" ], - "redemptionFee": "821227996896880849", + "redemptionFee": "3483847552830", "reserves": [ - "4808055475772708518052225", - "2028783685343057097078408" + "2211296087962974309572077", + "4780256650701577662084223" ], - "LPTokenSupply": "6744658515180884763157672" + "LPTokenSupply": "6921864509669081250983689" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "11522044638906", - "outputIndex": 0, - "expectedQty": "11611106783448", - "swapFee": "0", + "inputQty": "75729527805783289364480", + "expectedQty": "76601003041887562613980", + "swapFee": "45437716683469973618", "reserves": [ - "4808055475761097411268777", - "2028783685354579141717314" + "2211296087962974309572077", + "4703655647659690099470243" ], - "LPTokenSupply": "6744658515180884763157672", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6846139525634966308616570" }, { "type": "swap", "inputIndex": 0, - "inputQty": "661442827417071779840", + "inputQty": "151295235383969357758464", "outputIndex": 1, - "expectedQty": "655842052283608693791", - "swapFee": "520824922982987514", + "expectedQty": "152040498779074480245839", + "swapFee": "120313169765765824662", "reserves": [ - "4808716918588514483048617", - "2028127843302295533023523" + "2362591323346943667330541", + "4551615148880615619224404" ], - "LPTokenSupply": "6744658567263377061456423", + "LPTokenSupply": "6846151556951942885199036", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "621764770861905", - "305847351984113" - ], - "expectedQty": "915338016088402", - "swapFee": "549532529170", - "reserves": [ - "4808716917966749712186712", - "2028127842996448181039410" - ], - "LPTokenSupply": "6744658566347544466091767" - }, - { - "type": "mintMulti", - "inputQtys": [ - "51383006466023335395328", - "67439515099858305286144" - ], - "expectedQty": "117460554813584438242323", - "reserves": [ - "4860099924432773047582040", - "2095567358096306486325554" - ], - "LPTokenSupply": "6862119121161128904334090" - }, - { - "type": "mintMulti", - "inputQtys": [ - "661395527071787136", - "719386037037786112" - ], - "expectedQty": "1364429319310284052", - "reserves": [ - "4860100585828300119369176", - "2095568077482343524111666" - ], - "LPTokenSupply": "6862120485590448214618142" - }, - { - "type": "mintMulti", - "inputQtys": [ - "30586342554917750702080", - "31536983550551520182272" - ], - "expectedQty": "61380805119355096035074", + "type": "mint", + "inputIndex": 1, + "inputQty": "8003143051909664866304", + "expectedQty": "7910334880898897626300", "reserves": [ - "4890686928383217870071256", - "2127105061032895044293938" - ], - "LPTokenSupply": "6923501290709803310653216" + "2362591323346943667330541", + "4559618291932525284090708" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "61820399063267512", + "inputQty": "44221560867148586287104", "outputIndex": 0, - "expectedQty": "62272247649662139", + "expectedQty": "43986007877908423283410", "swapFee": "0", "reserves": [ - "4890686866110970220409117", - "2127105122853294107561450" + "2318605315469035244047131", + "4603839852799673870377812" ], - "LPTokenSupply": "6923501290709803310653216", + "LPTokenSupply": "6854061891832841782825336", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "21791670420811821056", - "expectedQty": "22124101538558043409", - "swapFee": "13075002252487092", - "reserves": [ - "4890664742009431662365708", - "2127105122853294107561450" - ], - "LPTokenSupply": "6923479500346882724080869" - }, { "type": "mint", "inputIndex": 1, - "inputQty": "5947484706402286436352", - "expectedQty": "5897318636330793757243", + "inputQty": "27393784097032185577472", + "expectedQty": "27072904738055039926428", "reserves": [ - "4890664742009431662365708", - "2133052607559696393997802" + "2318605315469035244047131", + "4631233636896706055955284" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "194836973796924544", - "159099080582371552" - ], - "expectedQty": "349551504602396810", - "swapFee": "209856816851549", + "type": "swap", + "inputIndex": 1, + "inputQty": "84377229031366492946432", + "outputIndex": 0, + "expectedQty": "83883177220348525194597", + "swapFee": "0", "reserves": [ - "4890664547172457865441164", - "2133052448460615811626250" + "2234722138248686718852534", + "4715610865928072548901716" ], - "LPTokenSupply": "6929376469242837780274906" + "LPTokenSupply": "6881134796570896822751764", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "67591612311398235766784", - "outputIndex": 1, - "expectedQty": "67029054243003069218242", - "swapFee": "53227946037913827222", + "type": "redeemMasset", + "inputQty": "2411059261551877324", + "expectedQtys": [ + "782547477866280898", + "1651296743595505782" + ], + "redemptionFee": "1446635556931126", "reserves": [ - "4958256159483856101207948", - "2066023394217612742408008" + "2234721355701208852571636", + "4715609214631328953395934" ], - "LPTokenSupply": "6929381792037441571657628", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6881132385656298826567552" }, { "type": "redeemMasset", - "inputQty": "1443967584098318706278", + "inputQty": "28875446455610259", "expectedQtys": [ - "1032597949714917269102", - "430266499412616190629" + "9371983576144835", + "19776341241959769" ], - "redemptionFee": "866380550458991223", + "redemptionFee": "17325267873366", "reserves": [ - "4957223561534141183938846", - "2065593127718200126217379" + "2234721346329225276426801", + "4715609194854987711436165" ], - "LPTokenSupply": "6927937911091398298850472" + "LPTokenSupply": "6881132356782584897744629" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "10967288712102907904", + "expectedQty": "11024554740867750152", + "swapFee": "6580373227261744", + "reserves": [ + "2234710321774484408676649", + "4715609194854987711436165" + ], + "LPTokenSupply": "6881121390151910117562899" + }, + { + "type": "redeemBassets", "inputQtys": [ - "21062225092873923067904", - "26665064099260852600832" + "167676359348948369408", + "501876005019270119424" ], - "expectedQty": "47180025226013929313111", + "expectedQty": "662594029546225245072", + "swapFee": "397795094784605910", "reserves": [ - "4978285786627015107006750", - "2092258191817460978818211" + "2234542645415135460307241", + "4715107318849968441316741" ], - "LPTokenSupply": "6975117936317412228163583" + "LPTokenSupply": "6880458438106778586172507" }, { "type": "redeemMasset", - "inputQty": "11744234328817948", + "inputQty": "6521020758883181789184", "expectedQtys": [ - "8377073430807160", - "3520689904172398" + "2116538630234426412731", + "4466107105417534622948" ], - "redemptionFee": "7046540597290", + "redemptionFee": "3912612455329909073", "reserves": [ - "4978285778249941676199590", - "2092258188296771074645813" + "2232426106784901033894510", + "4710641211744550906693793" ], - "LPTokenSupply": "6975117924573882553405364" + "LPTokenSupply": "6873937808609140937374230" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "2572740075582768", - "expectedQty": "2551900035007629", + "inputQty": "48712275289777618944", + "expectedQty": "49270860417644485530", + "swapFee": "29227365173866571", "reserves": [ - "4978285778249941676199590", - "2092258190869511150228581" - ] + "2232426106784901033894510", + "4710591940884133262208263" + ], + "LPTokenSupply": "6873889099256587677141943" }, { - "type": "redeemMasset", - "inputQty": "974170486237048012", - "expectedQtys": [ - "694868432106293400", - "292037105423491604" + "type": "redeemBassets", + "inputQtys": [ + "2856631019629415424", + "3848215575070217216" ], - "redemptionFee": "584502291742228", + "expectedQty": "6642390476126845241", + "swapFee": "3987826981865226", "reserves": [ - "4978285083381509569906190", - "2092257898832405726736977" + "2232423250153881404479086", + "4710588092668558191991047" ], - "LPTokenSupply": "6975116953013746580539203" + "LPTokenSupply": "6873882453277067266617997" }, { - "type": "redeemMasset", - "inputQty": "1178902392026677274214", - "expectedQtys": [ - "840902150484964795225", - "353411694394620498920" - ], - "redemptionFee": "707341435216006364", + "type": "redeem", + "inputIndex": 1, + "inputQty": "38248638405086353031168", + "expectedQty": "38686622966175534394896", + "swapFee": "22949183043051811818", "reserves": [ - "4977444181231024605110965", - "2091904487138011106238057" + "2232423250153881404479086", + "4671901469702382657596151" ], - "LPTokenSupply": "6973938121355863424865625" + "LPTokenSupply": "6835636109790285218768010" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10237197939517106176", - "expectedQty": "10154272094834481969", + "type": "redeemBassets", + "inputQtys": [ + "24731421157774134870016", + "33818073083867998191616" + ], + "expectedQty": "58002176685700624333284", + "swapFee": "34822199331018985991", "reserves": [ - "4977444181231024605110965", - "2091914724335950623344233" - ] + "2207691828996107269609070", + "4638083396618514659404535" + ], + "LPTokenSupply": "6777602593125186677347333" }, { "type": "redeemMasset", - "inputQty": "32407392155553601945", + "inputQty": "69657668440679383040", "expectedQtys": [ - "23115915913171621300", - "9715131522241573495" + "22676218284034034313", + "47639888022369850932" ], - "redemptionFee": "19444435293332161", + "redemptionFee": "41794601064407629", "reserves": [ - "4977421065315111433489665", - "2091905009204428381770738" + "2207669152777823235574757", + "4638035756730492289553603" ], - "LPTokenSupply": "6973915870180246235078865" + "LPTokenSupply": "6777532939636206104405055" }, { "type": "redeemMasset", - "inputQty": "2864024268369314185216", + "inputQty": "17360448486986226073", "expectedQtys": [ - "2042884043531188910893", - "858581041830372634292" + "5651485764553441805", + "11873062148678826865" ], - "redemptionFee": "1718414561021588511", + "redemptionFee": "10416269092191735", "reserves": [ - "4975378181271580244578772", - "2091046428162598009136446" + "2207663501292058682132952", + "4638023883668343610726738" ], - "LPTokenSupply": "6971052017753333023052500" + "LPTokenSupply": "6777515580229346027398155" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "511090856528978968576", - "outputIndex": 1, - "expectedQty": "506735081263836386625", - "swapFee": "402426980243844304", - "reserves": [ - "4975889272128109223547348", - "2090539693081334172749821" + "type": "redeemBassets", + "inputQtys": [ + "275327158466920185856", + "171526069120944635904" ], - "LPTokenSupply": "6971052057996031047436930", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "64566225770626342912", - "expectedQty": "65561110742947323450", - "swapFee": "38739735462375805", + "expectedQty": "443202030742901702155", + "swapFee": "266080866965920573", "reserves": [ - "4975823711017366276223898", - "2090539693081334172749821" + "2207388174133591761947096", + "4637852357599222666090834" ], - "LPTokenSupply": "6970987495644233967331598" + "LPTokenSupply": "6777072138725822856367483" }, { - "type": "redeemMasset", - "inputQty": "740059409135553740800", - "expectedQtys": [ - "527930327624946747810", - "221804342191160167149" - ], - "redemptionFee": "444035645481332244", + "type": "mint", + "inputIndex": 1, + "inputQty": "275323234456851301007360", + "expectedQty": "272010093899050614349301", "reserves": [ - "4975295780689741329476088", - "2090317888739143012582672" - ], - "LPTokenSupply": "6970247480638662961724022" + "2207388174133591761947096", + "4913175592056073967098194" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "325721858245569871872", - "expectedQty": "330740790678380783860", - "swapFee": "195433114947341923", + "inputQty": "4272343822538212864", + "expectedQty": "4292747901277332207", + "swapFee": "2563406293522927", "reserves": [ - "4974965039899062948692228", - "2090317888739143012582672" + "2207383881385690484614889", + "4913175592056073967098194" ], - "LPTokenSupply": "6969921778323728886586342" + "LPTokenSupply": "7049077960537391561856212" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5874010833665436672", - "4132209807358119424" + "85022699621632666763264", + "57987744073924296572928" ], - "expectedQty": "9880149823344657895", + "expectedQty": "141858480141126808628246", + "swapFee": "85166187797354497875", "reserves": [ - "4974970913909896614128900", - "2090322020948950370702096" + "2122361181764057817851625", + "4855187847982149670525266" ], - "LPTokenSupply": "6969931658473552231244237" + "LPTokenSupply": "6907142830827247134179877" }, { - "type": "mintMulti", - "inputQtys": [ - "95137010998091215536128", - "102045177557770179706880" - ], - "expectedQty": "194847209802036841037397", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3127689081087524339712", + "expectedQty": "3141858101434100975447", + "swapFee": "1876613448652514603", "reserves": [ - "5070107924907987829665028", - "2192367198506720550408976" + "2119219323662623716876178", + "4855187847982149670525266" ], - "LPTokenSupply": "7164778868275589072281634" + "LPTokenSupply": "6904015329407504475091625" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "231505912463815602077696", - "outputIndex": 0, - "expectedQty": "232996341677060291287035", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "58898614300286033854464", + "expectedQty": "59157145846232468554317", + "swapFee": "35339168580171620312", "reserves": [ - "4837111583230927538377993", - "2423873110970536152486672" + "2060062177816391248321861", + "4855187847982149670525266" ], - "LPTokenSupply": "7164778868275589072281634", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6845120249024076458399192" }, { - "type": "mintMulti", - "inputQtys": [ - "364805640101869322240", - "625618187593008676864" + "type": "redeemMasset", + "inputQty": "1047302846934821273", + "expectedQtys": [ + "315000233722271978", + "742397643793945021" ], - "expectedQty": "978918104402518475218", + "redemptionFee": "628381708160892", "reserves": [ - "4837476388871029407700233", - "2424498729158129161163536" + "2060061862816157526049883", + "4855187105584505876580245" ], - "LPTokenSupply": "7165757786379991590756852" + "LPTokenSupply": "6845119201784067694394008" }, { "type": "redeemMasset", - "inputQty": "13632991878443235737", + "inputQty": "23701501438013177856", "expectedQtys": [ - "9197869746744961909", - "4609887825653985517" + "7128767495486813404", + "16801194492034680122" ], - "redemptionFee": "8179795127065941", + "redemptionFee": "14220900862807906", "reserves": [ - "4837467191001282662738324", - "2424494119270303507178019" + "2060054734048662039236479", + "4855170304390013841900123" ], - "LPTokenSupply": "7165744154206092660227709" + "LPTokenSupply": "6845095501704719767496942" }, { "type": "mint", "inputIndex": 1, - "inputQty": "188901222594971508408320", - "expectedQty": "187037796998918102359594", + "inputQty": "2201045916894700240896", + "expectedQty": "2173767599188557035312", "reserves": [ - "4837467191001282662738324", - "2613395341865275015586339" + "2060054734048662039236479", + "4857371350306908542141019" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "2158635453767107840", + "inputQty": "18339605351133425664", "outputIndex": 0, - "expectedQty": "2168928380412894409", + "expectedQty": "18200232291337434124", "swapFee": "0", "reserves": [ - "4837465022072902249843915", - "2613397500500728782694179" + "2060036533816370701802355", + "4857389689912259675566683" ], - "LPTokenSupply": "7352781951205010762587303", + "LPTokenSupply": "6847269269303908324532254", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "248741557610592141312", - "172165147668198162432" + "492401534120676992", + "756298265297053056" ], - "expectedQty": "415481274287025208452", + "expectedQty": "1236947000644711208", "reserves": [ - "4837713763630512841985227", - "2613569665648396980856611" + "2060037026217904822479347", + "4857390446210524972619739" ], - "LPTokenSupply": "7353197432479297787795755" + "LPTokenSupply": "6847270506250908969243462" }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "10283758189293355008", + "expectedQtys": [ + "3092065906510414118", + "7290825942537338500" + ], + "redemptionFee": "6170254913576013", + "reserves": [ + "2060033934151998312065229", + "4857383155384582435281239" + ], + "LPTokenSupply": "6847260223109745167246055" + }, + { + "type": "redeemBassets", "inputQtys": [ - "830818418835713", - "785985065616674" + "23940310895958085632", + "26366075440260296704" ], - "expectedQty": "1596548673819187", + "expectedQty": "49863931658113141819", + "swapFee": "29936320787340289", "reserves": [ - "4837713764461331260820940", - "2613569666434382046473285" + "2060009993841102353979597", + "4857356789309142174984535" ], - "LPTokenSupply": "7353197434075846461614942" + "LPTokenSupply": "6847210332235398345497974" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5725141178031733211136", - "expectedQty": "5640332573188028728902", + "type": "mintMulti", + "inputQtys": [ + "11171532291904395804672", + "1957235652935565705216" + ], + "expectedQty": "13050283866808194295004", "reserves": [ - "4843438905639362994032076", - "2613569666434382046473285" - ] + "2071181526133006749784269", + "4859314024962077740689751" + ], + "LPTokenSupply": "6860260616102206539792978" }, { - "type": "redeemMasset", - "inputQty": "724569713026122278502", - "expectedQtys": [ - "476611063275692381413", - "257184253158232703696" + "type": "redeemBassets", + "inputQtys": [ + "56808326227646899814400", + "75108404903643657011200" ], - "redemptionFee": "434741827815673367", + "expectedQty": "130711614787321804249105", + "swapFee": "78474053304375707974", "reserves": [ - "4842962294576087301650663", - "2613312482181223813769589" + "2014373199905359849969869", + "4784205620058434083678551" ], - "LPTokenSupply": "7358113240410191149632678" + "LPTokenSupply": "6729478374666910797406695" }, { - "type": "redeemMasset", - "inputQty": "885197490498540614451", - "expectedQtys": [ - "582269631210122821950", - "314198707873620701116" + "type": "redeemBassets", + "inputQtys": [ + "171886814361276704", + "442057877362841856" ], - "redemptionFee": "531118494299124368", + "expectedQty": "607627787053120851", + "swapFee": "364795549561609", "reserves": [ - "4842380024944877178828713", - "2612998283473350193068473" + "2014373028018545488693165", + "4784205178000556720836695" ], - "LPTokenSupply": "7357228096031542038930663" + "LPTokenSupply": "6729477766710807749680394" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "15272411843893038940160", + "expectedQty": "15198981800767967786581", + "reserves": [ + "2029645439862438527633325", + "4784205178000556720836695" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2831194015847035174912", - "expectedQty": "2858372702499432911005", - "swapFee": "1698716409508221104", + "inputQty": "213319836658802769264640", + "expectedQty": "215848893353712492847084", + "swapFee": "127991901995281661558", "reserves": [ - "4842380024944877178828713", - "2610139910770850760157468" + "2029645439862438527633325", + "4568356284646844227989611" ], - "LPTokenSupply": "7354397071887335954577861" + "LPTokenSupply": "6531369711042972476368490" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "80532959947194078593024", - "expectedQty": "81692879672719164767809", - "swapFee": "48319775968316447155", + "type": "redeemBassets", + "inputQtys": [ + "6059010880566230777856", + "708441560648983117824" + ], + "expectedQty": "6726778652758188224064", + "swapFee": "4038490285826408779", "reserves": [ - "4760687145272158014060904", - "2610139910770850760157468" + "2023586428981872296855469", + "4567647843086195244871787" ], - "LPTokenSupply": "7273868943917738707629552" + "LPTokenSupply": "6524639297748957044376523" }, { "type": "mint", "inputIndex": 1, - "inputQty": "55210770045039611478016", - "expectedQty": "54643216513541272086410", + "inputQty": "7829692646413449560064", + "expectedQty": "7733790456708193195012", "reserves": [ - "4760687145272158014060904", - "2665350680815890371635484" + "2023586428981872296855469", + "4575477535732608694431851" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "30980620576671236358144", - "outputIndex": 0, - "expectedQty": "31114696782726541737019", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "1927479441587097344", + "23921354307789819904" + ], + "expectedQty": "25545622881724311253", "reserves": [ - "4729572448489431472323885", - "2696331301392561607993628" + "2023588356461313883952813", + "4575501457086916484251755" ], - "LPTokenSupply": "7328512160431279979715962", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6532398633828546961882788" }, { "type": "swap", "inputIndex": 1, - "inputQty": "4053151873686023176192", + "inputQty": "2193565952372745175040", "outputIndex": 0, - "expectedQty": "4070297129891485252069", + "expectedQty": "2178112403852082879074", "swapFee": "0", "reserves": [ - "4725502151359539987071816", - "2700384453266247631169820" + "2021410244057461801073739", + "4577695023039289229426795" ], - "LPTokenSupply": "7328512160431279979715962", + "LPTokenSupply": "6532398633828546961882788", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "2293832143863845748736", + "inputQty": "37595893505482706124", "expectedQtys": [ - "1478199774838108365214", - "844716087928575021500" + "11626835790240554800", + "26330186307874617249" ], - "redemptionFee": "1376299286318307449", + "redemptionFee": "22557536103289623", "reserves": [ - "4724023951584701878706602", - "2699539737178319056148320" + "2021398617221671560518939", + "4577668692852981354809546" ], - "LPTokenSupply": "7326218465917344765797970" + "LPTokenSupply": "6532361040190795089505626" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "240493823128892866560", - "expectedQty": "242891942327193883200", - "swapFee": "144296293877335719", + "type": "mint", + "inputIndex": 0, + "inputQty": "138424842490083475456", + "expectedQty": "137699446058623269779", "reserves": [ - "4724023951584701878706602", - "2699296845235991862265120" - ], - "LPTokenSupply": "7325977986523845260664981" + "2021537042064161643994395", + "4577668692852981354809546" + ] }, { "type": "mintMulti", "inputQtys": [ - "19377377706667747049472", - "23453992269557696299008" + "226818863557023360", + "371905973306887808" ], - "expectedQty": "42302314034817581241546", + "expectedQty": "592977352798174468", "reserves": [ - "4743401329291369625756074", - "2722750837505549558564128" + "2021537268883025201017755", + "4577669064758954661697354" ], - "LPTokenSupply": "7368280300558662841906527" + "LPTokenSupply": "6532499332614206510949873" }, { "type": "mint", "inputIndex": 0, - "inputQty": "247631208441035878301696", - "expectedQty": "243991749264572568131647", + "inputQty": "63492292593126721191936", + "expectedQty": "63150747149105145398696", "reserves": [ - "4991032537732405504057770", - "2722750837505549558564128" + "2085029561476151922209691", + "4577669064758954661697354" ] }, { - "type": "redeemMasset", - "inputQty": "331179489360678656", - "expectedQtys": [ - "217009565587290397", - "118384917746490870" + "type": "redeemBassets", + "inputQtys": [ + "1338728989838261878784", + "889236846195623985152" ], - "redemptionFee": "198707693616407", + "expectedQty": "2209794569170966767268", + "swapFee": "1326672745149669862", "reserves": [ - "4991032320722839916767373", - "2722750719120631812073258" + "2083690832486313660330907", + "4576779827912759037712202" ], - "LPTokenSupply": "7612271718663616818721158" + "LPTokenSupply": "6593439091188670054878424" }, { - "type": "redeemBassets", - "inputQtys": [ - "8720901775975413448704", - "10178356319158599155712" + "type": "redeemMasset", + "inputQty": "112622413053681192140", + "expectedQtys": [ + "35570130275730480383", + "78128987364185405393" ], - "expectedQty": "18666721981016943099945", - "swapFee": "11206757242955939423", + "redemptionFee": "67573447832208715", "reserves": [ - "4982311418946864503318669", - "2712572362801473212917546" + "2083655262356037929850524", + "4576701698925394852306809" ], - "LPTokenSupply": "7593594910601081215275731" + "LPTokenSupply": "6593326475532961156907155" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "69870503944892358656", - "expectedQty": "69159831985357965014", + "inputIndex": 0, + "inputQty": "226156654701573323096064", + "expectedQty": "224814139193938824834739", "reserves": [ - "4982311418946864503318669", - "2712642233305418105276202" + "2309811917057611252946588", + "4576701698925394852306809" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1355225414997310963712", - "expectedQty": "1374746871977987182639", - "swapFee": "813135248998386578", + "type": "redeemMasset", + "inputQty": "179351590911602956697", + "expectedQtys": [ + "60723282836287923232", + "120318173817021884765" + ], + "redemptionFee": "107610954546961774", "reserves": [ - "4980936672074886516136030", - "2712642233305418105276202" + "2309751193774774965023356", + "4576581380751577830422044" ], - "LPTokenSupply": "7592308926331594162115690" + "LPTokenSupply": "6817961273897083833481374" }, { "type": "redeemMasset", - "inputQty": "221799639410789554585", + "inputQty": "611057342039137347174", "expectedQtys": [ - "145424416542147637953", - "79198841510606909332" + "206886418728269031403", + "409928365632656408521" ], - "redemptionFee": "133079783646473732", + "redemptionFee": "366634405223482408", "reserves": [ - "4980791247658344368498077", - "2712563034463907498366870" + "2309544307356046695991953", + "4576171452385945174013523" ], - "LPTokenSupply": "7592087140000161737208478" + "LPTokenSupply": "6817350253218485218482440" }, { - "type": "redeemMasset", - "inputQty": "1594675097503814962380", - "expectedQtys": [ - "1045559406243122486974", - "569416716077892961949" + "type": "redeemBassets", + "inputQtys": [ + "60245068379338824", + "75515824547567072" ], - "redemptionFee": "956805058502288977", + "expectedQty": "134492747880295583", + "swapFee": "80744095185288", "reserves": [ - "4979745688252101246011103", - "2711993617747829605404921" + "2309544247110978316653129", + "4576171376870120626446451" ], - "LPTokenSupply": "7590492560583163772474995" + "LPTokenSupply": "6817350118653067652520096" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3527034217795530752", - "expectedQty": "3491152487336101161", + "type": "redeemBassets", + "inputQtys": [ + "3717204857106036948992", + "409721000743306985472" + ], + "expectedQty": "4098622616597871565098", + "swapFee": "2460649959934683749", "reserves": [ - "4979745688252101246011103", - "2711997144782047400935673" - ] + "2305827042253872279704137", + "4575761655869377319460979" + ], + "LPTokenSupply": "6813249281451505839739622" }, { - "type": "redeemMasset", - "inputQty": "49983763215169558937", - "expectedQtys": [ - "32772177707524334586", - "17847909900453611032" + "type": "mintMulti", + "inputQtys": [ + "146968634519182190313472", + "187256737614815872155648" ], - "redemptionFee": "29990257929101735", + "expectedQty": "331092431468414092112478", "reserves": [ - "4979712916074393721676517", - "2711979296872146947324641" + "2452795676773054470017609", + "4763018393484193191616627" ], - "LPTokenSupply": "7590446070971461731927392" + "LPTokenSupply": "7144341712919919931852100" }, { - "type": "redeemMasset", - "inputQty": "3384415678153680643686", - "expectedQtys": [ - "2219014041770453505246", - "1208487365069651645892" + "type": "redeemBassets", + "inputQtys": [ + "2457798289767833010176", + "2049002874285352812544" ], - "redemptionFee": "2030649406892208386", + "expectedQty": "4466984665145773652481", + "swapFee": "2681799879014873115", "reserves": [ - "4977493902032623268171271", - "2710770809507077295678749" + "2450337878483286637007433", + "4760969390609907838804083" ], - "LPTokenSupply": "7587061858358248740504544" + "LPTokenSupply": "7139872314634883044813814" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "287960248534167126016", - "outputIndex": 0, - "expectedQty": "289309749762215654310", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "43599345427933072", + "24117879229193684" + ], + "expectedQty": "67153744012590873", "reserves": [ - "4977204592282861052516961", - "2711058769755611462804765" + "2450337922082632064940505", + "4760969414727787067997767" ], - "LPTokenSupply": "7587061858358248740504544", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7139872381788627057404687" }, { - "type": "redeemBassets", + "type": "mintMulti", + "inputQtys": [ + "13576658916121769934848", + "10807037537667797483520" + ], + "expectedQty": "24169641997109282721981", + "reserves": [ + "2463914580998753834875353", + "4771776452265454865481287" + ], + "LPTokenSupply": "7164042023785736340126668" + }, + { + "type": "mintMulti", "inputQtys": [ - "936035865494919446528", - "241178851270087507968" + "3502819396542967316480", + "549287977930250846208" ], - "expectedQty": "1160916057443101148640", - "swapFee": "696967815154953661", + "expectedQty": "4022960926758749398957", "reserves": [ - "4976268556417366133070433", - "2710817590904341375296797" + "2467417400395296802191833", + "4772325740243385116327495" ], - "LPTokenSupply": "7585900315029771999897608" + "LPTokenSupply": "7168064984712495089525625" }, { "type": "redeemBassets", "inputQtys": [ - "14429898256696496128", - "13469033402857984000" + "53813051837375463424", + "169494093839114338304" ], - "expectedQty": "27548451785244261092", - "swapFee": "16538994467827253", + "expectedQty": "220981133134052198239", + "swapFee": "132668280848940683", "reserves": [ - "4976254126519109436574305", - "2710804121870938517312797" + "2467363587343459426728409", + "4772156246149546001989191" ], - "LPTokenSupply": "7585872751692891734591987" + "LPTokenSupply": "7167843884177908273280770" }, { "type": "mintMulti", "inputQtys": [ - "122411555175966834688", - "202518112084207697920" + "5865368336812610682880", + "2784369149358573092864" ], - "expectedQty": "321058405655019532323", + "expectedQty": "8579137453470699508041", "reserves": [ - "4976376538074285403408993", - "2711006639983022725010717" + "2473228955680272037411289", + "4774940615298904575082055" ], - "LPTokenSupply": "7586193810098546754124310" + "LPTokenSupply": "7176423021631378972788811" }, { "type": "mint", "inputIndex": 0, - "inputQty": "16351465901392555671552", - "expectedQty": "16109526306640638994184", + "inputQty": "6173456947725258752", + "expectedQty": "6133273672868331954", "reserves": [ - "4992728003975677959080545", - "2711006639983022725010717" + "2473235129137219762670041", + "4774940615298904575082055" ] }, { - "type": "redeemMasset", - "inputQty": "12676271865222175129", - "expectedQtys": [ - "8320005296039149144", - "4517688442930432749" + "type": "redeemBassets", + "inputQtys": [ + "50786745186486034432", + "25554046423769796608" ], - "redemptionFee": "7605763119133305", + "expectedQty": "75712407876155750398", + "swapFee": "45454717556227186", "reserves": [ - "4992719683970381919931401", - "2711002122294579794577968" + "2473184342392033276635609", + "4774915061252480805285447" ], - "LPTokenSupply": "7602290660893898482856695" + "LPTokenSupply": "7176353401587929884765898" }, { "type": "mintMulti", "inputQtys": [ - "71986254921093144576", - "82302993959651639296" + "154591993201224887304192", + "44844054144116552892416" ], - "expectedQty": "152387951658965734528", + "expectedQty": "197884267101146146994623", "reserves": [ - "4992791670225303013075977", - "2711084425288539446217264" + "2627776335593258163939801", + "4819759115396597358177863" ], - "LPTokenSupply": "7602443048845557448591223" + "LPTokenSupply": "7374237668689076031760521" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "100692713279581589602304", - "61925826542053789532160" + "12613295856958446764032", + "81558958477698117140480" ], - "expectedQty": "160499196841510583951081", + "expectedQty": "93151374111434785347748", + "swapFee": "55924379094317461685", "reserves": [ - "5093484383504884602678281", - "2773010251830593235749424" + "2615163039736299717175769", + "4738200156918899241037383" ], - "LPTokenSupply": "7762942245687068032542304" + "LPTokenSupply": "7281035962636456360697255" }, { - "type": "redeemMasset", - "inputQty": "29383108701717594112", - "expectedQtys": [ - "19267515219624095147", - "10489679207488702434" + "type": "mintMulti", + "inputQtys": [ + "1489891078695038222336", + "7688784216151130374144" ], - "redemptionFee": "17629865221030556", + "expectedQty": "9080396199721616607389", "reserves": [ - "5093465115989664978583134", - "2772999762151385747046990" + "2616652930814994755398105", + "4745888941135050371411527" ], - "LPTokenSupply": "7762912864341352837051247" + "LPTokenSupply": "7290116358836177977304644" }, { "type": "redeemBassets", "inputQtys": [ - "3543173747573330018304", - "2100942067161095208960" + "35313850302327324409856", + "33784418858289537744896" ], - "expectedQty": "5570332763637539598994", - "swapFee": "3344206181891658754", + "expectedQty": "68467424801499418661648", + "swapFee": "41105117951670653589", "reserves": [ - "5089921942242091648564830", - "2770898820084224651838030" + "2581339080512667430988249", + "4712104522276760833666631" ], - "LPTokenSupply": "7757339521792151594959373" + "LPTokenSupply": "7221611939428522055054764" }, { - "type": "redeemBassets", - "inputQtys": [ - "11780097115343617523712", - "1100543654435866804224" - ], - "expectedQty": "12695212047782153407797", - "swapFee": "7621700248818583194", + "type": "mint", + "inputIndex": 0, + "inputQty": "58492094151310325055488", + "expectedQty": "58084806245856866593055", "reserves": [ - "5078141845126748031041118", - "2769798276429788785033806" - ], - "LPTokenSupply": "7744637450214145504826700" + "2639831174663977756043737", + "4712104522276760833666631" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "1335639074300520192", - "outputIndex": 1, - "expectedQty": "1328364441546506453", - "swapFee": "1052710595365420", + "inputQty": "1147177973286899941376", + "expectedQty": "1139109158438825273485", "reserves": [ - "5078143180765822331561310", - "2769796948065347238527353" - ], - "LPTokenSupply": "7744637450319416564363242", - "hardLimitError": false, - "insufficientLiquidityError": false + "2640978352637264655985113", + "4712104522276760833666631" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "43225118532747755520", - "28036442830016712704" - ], - "expectedQty": "70336826753353351681", - "swapFee": "42227432511518922", + "type": "mint", + "inputIndex": 0, + "inputQty": "756096574399018880", + "expectedQty": "750777471593201877", "reserves": [ - "5078099955647289583805790", - "2769768911622517221814649" - ], - "LPTokenSupply": "7744567075487973950644530" + "2640979108733839055003993", + "4712104522276760833666631" + ] }, { "type": "redeemMasset", - "inputQty": "1035029729515169592115", + "inputQty": "474440525181972748697", "expectedQtys": [ - "678260099201156291218", - "369946191128470000193" + "171990636607361618096", + "306870226222787043067" + ], + "redemptionFee": "284664315109183649", + "reserves": [ + "2640807118097231693385897", + "4711797652050538046623564" ], - "redemptionFee": "621017837709101755", + "LPTokenSupply": "7280362193551538878292848" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "2074670259593198698496", + "expectedQty": "2097310962115964239206", + "swapFee": "1244802155755919219", "reserves": [ - "5077421695548088427514572", - "2769398965431388751814456" + "2640807118097231693385897", + "4709700341088422082384358" ], - "LPTokenSupply": "7743532107860242551962590" + "LPTokenSupply": "7278287647772161255186273" }, { "type": "redeemBassets", "inputQtys": [ - "48419739280259678208", - "35747474244169584640" + "574940873355556749312", + "474555454089318105088" ], - "expectedQty": "83087122920479789535", - "swapFee": "49882203074132353", + "expectedQty": "1040045834242988678518", + "swapFee": "624402141830891742", "reserves": [ - "5077373275808808167836364", - "2769363217957144582229816" + "2640232177223876136636585", + "4709225785634332764279270" ], - "LPTokenSupply": "7743448975843339305453936" + "LPTokenSupply": "7277247039975990618705186" }, { "type": "mint", "inputIndex": 0, - "inputQty": "10460516932587", - "expectedQty": "10305830452959", + "inputQty": "9796012326280780316672", + "expectedQty": "9726964741731549737653", "reserves": [ - "5077373275819268684768951", - "2769363217957144582229816" + "2650028189550156916953257", + "4709225785634332764279270" ] }, { - "type": "redeemMasset", - "inputQty": "2458993529221020437708", - "expectedQtys": [ - "1611392666597296462591", - "878905555715789546151" + "type": "mintMulti", + "inputQtys": [ + "453327350655626496", + "201872471737513536" ], - "redemptionFee": "1475396117532612262", + "expectedQty": "649702950661749211", "reserves": [ - "5075761883152671388306360", - "2768484312401428792683665" + "2650028642877507572579753", + "4709225987506804501792806" ], - "LPTokenSupply": "7740990129864035868730413" + "LPTokenSupply": "7286974654420672830192050" }, { - "type": "redeemMasset", - "inputQty": "912702509177874101043", - "expectedQtys": [ - "598099330022027677135", - "326222673667921482763" - ], - "redemptionFee": "547621505506724460", + "type": "mint", + "inputIndex": 0, + "inputQty": "60892600246370008301568", + "expectedQty": "60458534468875061357918", "reserves": [ - "5075163783822649360629225", - "2768158089727760871200902" - ], - "LPTokenSupply": "7740077482117008545301816" + "2710921243123877580881321", + "4709225987506804501792806" + ] }, { "type": "redeemBassets", "inputQtys": [ - "44876895118058112", - "22692688054538384" + "11208535787128883200", + "61750010751373984" ], - "expectedQty": "66674825729858939", - "swapFee": "40028912785586", + "expectedQty": "11188935567112177899", + "swapFee": "6717391775332506", "reserves": [ - "5075163738945754242571113", - "2768158067035072816662518" + "2710910034588090451998121", + "4709225925756793750418822" ], - "LPTokenSupply": "7740077415406156793935848" + "LPTokenSupply": "7347421993908328181572812" }, { - "type": "redeemMasset", - "inputQty": "30925004102719233431961", - "expectedQtys": [ - "20265338620643383833365", - "11053369599378554473986" - ], - "redemptionFee": "18555002461631540059", + "type": "swap", + "inputIndex": 0, + "inputQty": "11648387221625474383872", + "outputIndex": 1, + "expectedQty": "11686999199399122587708", + "swapFee": "9251538609208797043", "reserves": [ - "5054898400325110858737748", - "2757104697435694262188532" + "2722558421809715926381993", + "4697538926557394627831114" ], - "LPTokenSupply": "7709154266803683723657892" + "LPTokenSupply": "7347422919062189102452516", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "343921957098221207552", - "252753052428423790592" + "6393962502468921196544", + "11347702999123622887424" ], - "expectedQty": "589013591766320931730", - "swapFee": "353620327256146246", + "expectedQty": "17567431203190058109884", + "swapFee": "10546786793990429123", "reserves": [ - "5054554478368012637530196", - "2756851944383265838397940" + "2716164459307247005185449", + "4686191223558271004943690" ], - "LPTokenSupply": "7708564934953622872194539" + "LPTokenSupply": "7329845995750884452956420" }, { "type": "redeemBassets", "inputQtys": [ - "1414429407425718910976", - "1189796200411491991552" + "2463626104177963302912", + "3547696513533777281024" ], - "expectedQty": "2571185803913943988450", - "swapFee": "1543637664947334793", + "expectedQty": "5953480726887620669303", + "swapFee": "3574232975918123275", "reserves": [ - "5053140048960586918619220", - "2755662148182854346406388" + "2713700833203069041882537", + "4682643527044737227662666" ], - "LPTokenSupply": "7705992359875810475604774" + "LPTokenSupply": "7323889298214318505976168" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "99327681091501213876224", - "expectedQty": "100754836240586627411212", - "swapFee": "59596608654900728325", + "type": "mintMulti", + "inputQtys": [ + "3322678637541550080", + "3352786363677522432" + ], + "expectedQty": "6613601550857207657", "reserves": [ - "4952385212720000291208008", - "2755662148182854346406388" + "2713704155881706583432617", + "4682646879831100905185098" ], - "LPTokenSupply": "7606670638445174751801382" + "LPTokenSupply": "7323895911815869363183825" }, { - "type": "redeemMasset", - "inputQty": "351074828600158086758", - "expectedQtys": [ - "228433000143539061625", - "127107271517287184184" + "type": "redeemBassets", + "inputQtys": [ + "231131685621922543960064", + "15170721405888219840512" ], - "redemptionFee": "210644897160094852", + "expectedQty": "244515593580729817605812", + "swapFee": "146797434609203412611", "reserves": [ - "4952156779719856752146383", - "2755535040911337059222204" + "2482572470259784039472553", + "4667476158425212685344586" ], - "LPTokenSupply": "7606319584681064309724109" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "395027736673930641408", - "expectedQty": "390951118005481562610", - "reserves": [ - "4952156779719856752146383", - "2755930068648010989863612" - ] + "LPTokenSupply": "7079248200543991262506662" }, { "type": "redeemMasset", - "inputQty": "19213269304777180", + "inputQty": "3787722948671784550", "expectedQtys": [ - "12500808743491612", - "6956838450610484" + "1327493325999113057", + "2495815741049072227" ], - "redemptionFee": "11527961582866", + "redemptionFee": "2272633769203070", "reserves": [ - "4952156767219048008654771", - "2755930061691172539253128" + "2482571142766458040359496", + "4667473662609471636272359" ], - "LPTokenSupply": "7606710516586953282667825" + "LPTokenSupply": "7079244413048305967642419" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "14211808860186852982784", - "expectedQty": "14351158126593634940262", - "swapFee": "8527085316112111789", + "inputIndex": 0, + "inputQty": "32475114446462922752", + "expectedQty": "32675296911041129334", + "swapFee": "19485068667877753", "reserves": [ - "4952156767219048008654771", - "2741578903564578904312866" + "2482538467469546999230162", + "4667473662609471636272359" ], - "LPTokenSupply": "7592499560435298040896219" + "LPTokenSupply": "7079211939882366371507442" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "104190021267915243520", - "expectedQty": "105686027841731334929", - "swapFee": "62514012760749146", + "inputQty": "116579858284549685248", + "expectedQty": "115796108802542029434", "reserves": [ - "4952051081191206277319842", - "2741578903564578904312866" - ], - "LPTokenSupply": "7592395376665431401727613" + "2482655047327831548915410", + "4667473662609471636272359" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "5563006119358589042688", + "expectedQty": "5498502432754390918754", + "reserves": [ + "2482655047327831548915410", + "4673036668728830225315047" + ] }, { "type": "mintMulti", "inputQtys": [ - "166998924986113", - "165141827035225" + "64093292951284115046400", + "35741132636959182684160" ], - "expectedQty": "327978915912256", + "expectedQty": "98986870127972885957091", "reserves": [ - "4952051081358205202305955", - "2741578903729720731348091" + "2546748340279115663961810", + "4708777801365789407999207" ], - "LPTokenSupply": "7592395376993410317639869" + "LPTokenSupply": "7183813108551896190412721" }, { "type": "redeemBassets", "inputQtys": [ - "51761789133511098368", - "13986377825177530368" + "78415150934848182419456", + "4386293621215628623872" ], - "expectedQty": "64840945990485343076", - "swapFee": "38927924348900546", + "expectedQty": "82222637651764432055016", + "swapFee": "49363200511365478520", "reserves": [ - "4951999319569071691207587", - "2741564917351895553817723" + "2468333189344267481542354", + "4704391507744573779375335" ], - "LPTokenSupply": "7592330501012287918286300" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "44267883225246062346240", - "expectedQty": "43614399553355422942822", - "reserves": [ - "4996267202794317753553827", - "2741564917351895553817723" - ] + "LPTokenSupply": "7101546044019671529427036" }, { "type": "redeemMasset", - "inputQty": "35010333281935206", + "inputQty": "2583669022685292", "expectedQtys": [ - "22893830380379016", - "12562362989623308" + "897484793574300", + "1710514552673689" ], - "redemptionFee": "21006199969161", + "redemptionFee": "1550201413611", "reserves": [ - "4996267179900487373174811", - "2741564904789532564194415" + "2468333188446782687968054", + "4704391506034059226701646" ], - "LPTokenSupply": "7635944865557410679290832" + "LPTokenSupply": "7101546041436157526883105" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "883324323901387392", - "expectedQty": "891921716203860866", - "swapFee": "529994594340832", + "inputIndex": 0, + "inputQty": "455567846755190528", + "expectedQty": "458336682900809850", + "swapFee": "273340708053114", "reserves": [ - "4996267179900487373174811", - "2741564012867816360333549" + "2468332730110099787158204", + "4704391506034059226701646" ], - "LPTokenSupply": "7635943982286086237337523" + "LPTokenSupply": "7101545585895644842497888" }, { "type": "redeemBassets", "inputQtys": [ - "842659159074341781504", - "1290290646304871940096" + "106379841944931172352", + "234985310288842883072" ], - "expectedQty": "2107294252508391452076", - "swapFee": "1265135632884765730", + "expectedQty": "337922029251633739525", + "swapFee": "202874942516490137", "reserves": [ - "4995424520741413031393307", - "2740273722221511488393453" + "2468226350268154855985852", + "4704156520723770383818574" ], - "LPTokenSupply": "7633835549411508249596289" + "LPTokenSupply": "7101207481278944943917238" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "117048904817740", - "85610031762936" + "10793373440018929942528", + "20369646701917180526592" ], - "expectedQty": "200053190941580", - "swapFee": "120103976951", + "expectedQty": "30854119864942395906346", "reserves": [ - "4995424520624364126575567", - "2740273722135901456630517" + "2479019723708173785928380", + "4724526167425687564345166" ], - "LPTokenSupply": "7633835549211346965075452" + "LPTokenSupply": "7132061601143887339823584" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "79169878644425616", + "expectedQty": "78644365677588143", + "reserves": [ + "2479019802878052430353996", + "4724526167425687564345166" + ] }, { "type": "redeemMasset", - "inputQty": "80090465211517849", + "inputQty": "20972493876990403", "expectedQtys": [ - "52378102682977695", - "28732360544116534" + "7285415526826808", + "13884574966727624" ], - "redemptionFee": "48054279126910", + "redemptionFee": "12583496326194", "reserves": [ - "4995424468246261443597872", - "2740273693403540912513983" + "2479019795592636903527188", + "4724526153541112597617542" ], - "LPTokenSupply": "7633835469125687181470294" + "LPTokenSupply": "7132061658817017490053943" }, { "type": "redeemBassets", "inputQtys": [ - "3694266761321703424", - "5725445326209683456" + "8505558310786649", + "23366945241607772" ], - "expectedQty": "9306535464806859798", - "swapFee": "5587273643069957", + "expectedQty": "31543878158228221", + "swapFee": "18937689508642", "reserves": [ - "4995420773979500121894448", - "2740267967958214702830527" + "2479019787087078592740539", + "4724526130174167356009770" ], - "LPTokenSupply": "7633826157561676095847533" + "LPTokenSupply": "7132061627256095411267943" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6781963567444844871680", - "expectedQty": "6847905528176530672041", - "swapFee": "4069178140466906923", + "type": "mintMulti", + "inputQtys": [ + "3081849316386346631168", + "261951476239551889408" + ], + "expectedQty": "3320281174690525213774", "reserves": [ - "4995420773979500121894448", - "2733420062430038172158486" + "2482101636403464939371707", + "4724788081650406907899178" ], - "LPTokenSupply": "7627044600912045297666545" + "LPTokenSupply": "7135381908430785936481717" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "75124292126774109667328", - "expectedQty": "74350413024606979421160", + "type": "mintMulti", + "inputQtys": [ + "3426912607179719049216", + "1576675384112134488064" + ], + "expectedQty": "4962446345230845826951", "reserves": [ - "4995420773979500121894448", - "2808544354556812281825814" - ] + "2485528549010644658420923", + "4726364757034519042387242" + ], + "LPTokenSupply": "7140344354776016782308668" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "36330079994506640", - "expectedQty": "35796228741442344", + "type": "redeem", + "inputIndex": 1, + "inputQty": "678121829517866624", + "expectedQty": "685696172963293371", + "swapFee": "406873097710719", "reserves": [ - "4995420810309580116401088", - "2808544354556812281825814" - ] + "2485528549010644658420923", + "4726364071338346079093871" + ], + "LPTokenSupply": "7140343676694874574213115" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "69425992079170686943232", - "expectedQty": "68699941218086144218588", + "inputQty": "1150987892054847913984", + "expectedQty": "1163843439766710181994", + "swapFee": "690592735232908748", "reserves": [ - "4995420810309580116401088", - "2877970346635982968769046" - ] + "2485528549010644658420923", + "4725200227898579368911877" + ], + "LPTokenSupply": "7139192757862093249590005" }, { "type": "redeemBassets", "inputQtys": [ - "159878263688418944", - "1020675991746777216" + "24476863216952889344", + "15804505467934447616" ], - "expectedQty": "1167470529165975304", - "swapFee": "700902859215114", + "expectedQty": "39934537973850738006", + "swapFee": "23975107849019854", "reserves": [ - "4995420650431316427982144", - "2877969325959991221991830" + "2485504072147427705531579", + "4725184423393111434464261" ], - "LPTokenSupply": "7770093822849625423479729" + "LPTokenSupply": "7139152801746522334734129" }, { - "type": "redeemBassets", - "inputQtys": [ - "187314128937773856", - "139959193711802096" - ], - "expectedQty": "323062593875280546", - "swapFee": "193953928682377", + "type": "swap", + "inputIndex": 0, + "inputQty": "3402029367362499584", + "outputIndex": 1, + "expectedQty": "3416449972525696654", + "swapFee": "2703512055212733", "reserves": [ - "4995420463117187490208288", - "2877969186000797510189734" + "2485507474176795068031163", + "4725181006943138908767607" ], - "LPTokenSupply": "7770093499612473012385042" + "LPTokenSupply": "7139152802016873540255402", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "67282254546877305323520", - "expectedQty": "68237371862847849188389", - "swapFee": "40369352728126383194", + "type": "mintMulti", + "inputQtys": [ + "4967717469334471180288", + "19991265207475081576448" + ], + "expectedQty": "24693207902461714440953", "reserves": [ - "4927183091254339641019899", - "2877969186000797510189734" + "2490475191646129539211451", + "4745172272150613990344055" ], - "LPTokenSupply": "7702815282000868519699841" + "LPTokenSupply": "7163846009919335254696355" }, { "type": "mintMulti", "inputQtys": [ - "106763460599665297195008", - "84789090934438678757376" + "925841705131430641664", + "458872644647691288576" ], - "expectedQty": "189096539120115659247852", + "expectedQty": "1373222147185708225463", "reserves": [ - "5033946551854004938214907", - "2962758276935236188947110" + "2491401033351260969853115", + "4745631144795261681632631" ], - "LPTokenSupply": "7891911821120984178947693" + "LPTokenSupply": "7165219232066520962921818" }, { "type": "redeemMasset", - "inputQty": "299410106540638129356", + "inputQty": "747768148321984307", "expectedQtys": [ - "190867584289921745291", - "112336217583662584625" + "259848649836371589", + "494960798799116009" ], - "redemptionFee": "179646063924382877", + "redemptionFee": "448660888993190", "reserves": [ - "5033755684269715016469616", - "2962645940717652526362485" + "2491400773502611133481526", + "4745630649834462882516622" ], - "LPTokenSupply": "7891612428979049933256624" + "LPTokenSupply": "7165218484343238729836830" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "48140563779116626608128", - "expectedQty": "48820977323514657146142", - "swapFee": "28884338267469975964", + "type": "redeemBassets", + "inputQtys": [ + "27098859230829281280", + "13837095264255451136" + ], + "expectedQty": "40594836125626543264", + "swapFee": "24371524590130003", "reserves": [ - "4984934706946200359323474", - "2962645940717652526362485" + "2491373674643380304200246", + "4745616812739198627065486" ], - "LPTokenSupply": "7843474753633760053646092" + "LPTokenSupply": "7165177867572740972176562" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "9061625149615656402944", - "expectedQty": "8930062999790792846413", + "type": "redeem", + "inputIndex": 1, + "inputQty": "123988809972688994304", + "expectedQty": "125374495197258660834", + "swapFee": "74393285983613396", "reserves": [ - "4993996332095816015726418", - "2962645940717652526362485" - ] + "2491373674643380304200246", + "4745491438244001368404652" + ], + "LPTokenSupply": "7165053886202096881543597" }, { "type": "redeemMasset", - "inputQty": "5163370556893798400", + "inputQty": "8416865504271916", "expectedQtys": [ - "3281845843660146367", - "1946927194217708033" + "2924887340544656", + "5571234846723565" ], - "redemptionFee": "3098022334136279", + "redemptionFee": "5050119302563", "reserves": [ - "4993993050249972355580051", - "2962643993790458308654452" + "2491373671718492963655590", + "4745491432672766521681087" ], - "LPTokenSupply": "7852399653572796186107732" + "LPTokenSupply": "7165053877785736389201937" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "15804834923748287053824", - "expectedQty": "15966034096126992574194", - "swapFee": "9482900954248972232", + "inputIndex": 0, + "inputQty": "40482439877028510433280", + "expectedQty": "40726346246173835982364", + "swapFee": "24289463926217106259", "reserves": [ - "4993993050249972355580051", - "2946677959694331316080258" + "2450647325472319127673226", + "4745491432672766521681087" ], - "LPTokenSupply": "7836595766939143323951131" + "LPTokenSupply": "7124573866855100500479282" }, { - "type": "redeemMasset", - "inputQty": "604966834090575029862", - "expectedQtys": [ - "385293249106855377856", - "227340149202922818213" + "type": "redeemBassets", + "inputQtys": [ + "17904831300038", + "6163211699118" ], - "redemptionFee": "362980100454345017", + "expectedQty": "23878944131228", + "swapFee": "14335968059", "reserves": [ - "4993607757000865500202195", - "2946450619545128393262045" + "2450647325454414296373188", + "4745491432666603309981969" ], - "LPTokenSupply": "7835990836403062794355770" + "LPTokenSupply": "7124573866831208653976799" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "443479433695023923200", - "expectedQty": "449753005316488412072", - "swapFee": "266087660217014353", + "type": "mintMulti", + "inputQtys": [ + "2338028830661703", + "11267073495125460" + ], + "expectedQty": "13457919938920587", "reserves": [ - "4993158003995549011790123", - "2946450619545128393262045" + "2450647327792443127034891", + "4745491443933676805107429" ], - "LPTokenSupply": "7835547383578133792134005" + "LPTokenSupply": "7124573880289128592897386" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "95616333302761750528", - "outputIndex": 0, - "expectedQty": "95991192602541786915", - "swapFee": "0", + "inputQty": "408590318679200", + "expectedQty": "403806646216500", "reserves": [ - "4993062012802946470003208", - "2946546235878431155012573" - ], - "LPTokenSupply": "7835547383578133792134005", - "hardLimitError": false, - "insufficientLiquidityError": false + "2450647327792443127034891", + "4745491444342267123786629" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "554945587078415187968", - "60763682230740140032" + "2881993412466480128", + "2157155139218249472" ], - "expectedQty": "606991368349411128069", + "expectedQty": "4995070009944695857", + "swapFee": "2998841310753269", "reserves": [ - "4993616958390024885191176", - "2946606999560661895152605" + "2450644445799030660554763", + "4745489287187127905537157" ], - "LPTokenSupply": "7836154374946483203262074" + "LPTokenSupply": "7124568882923968114740085" }, { - "type": "mintMulti", - "inputQtys": [ - "95763462816190201856", - "1172280278589643161600" + "type": "redeemMasset", + "inputQty": "125390053608700", + "expectedQtys": [ + "43104652592747", + "83468928941306" ], - "expectedQty": "1254134199069823899052", + "redemptionFee": "75234032165", "reserves": [ - "4993712721852841075393032", - "2947779279839251538314205" + "2450644445755926007962016", + "4745489287103658976595851" ], - "LPTokenSupply": "7837408509145553027161126" + "LPTokenSupply": "7124568882798585584534601" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "6377949971805692231680", - "expectedQty": "6309803068974163432926", + "inputIndex": 0, + "inputQty": "146345215157799820984320", + "expectedQty": "145360443852965692201018", + "reserves": [ + "2596989660913725828946336", + "4745489287103658976595851" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2717235775433174155264", + "expectedQty": "2698431020956370048549", "reserves": [ - "4993712721852841075393032", - "2954157229811057230545885" + "2599706896689159003101600", + "4745489287103658976595851" ] }, { "type": "redeemMasset", - "inputQty": "2972730295575039809945", + "inputQty": "8230242914424837478809", "expectedQtys": [ - "1891456771961047145267", - "1118939155893332044310" + "2940255193446216054986", + "5367124093727492598824" ], - "redemptionFee": "1783638177345023885", + "redemptionFee": "4938145748654902487", "reserves": [ - "4991821265080880028247765", - "2953038290655163898501575" + "2596766641495712787046614", + "4740122163009931483997027" ], - "LPTokenSupply": "7840745760282769885286495" + "LPTokenSupply": "7264398008572657674795607" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "823810840298399744", - "expectedQty": "815003437512306778", + "inputQty": "439407303857775040", + "outputIndex": 0, + "expectedQty": "437382935407139514", + "swapFee": "0", "reserves": [ - "4991821265080880028247765", - "2953039114466004196901319" - ] + "2596766204112777379907100", + "4740122602417235341772067" + ], + "LPTokenSupply": "7264398008572657674795607", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "47934614858105058492416", - "expectedQty": "47237249712740750491221", + "inputIndex": 1, + "inputQty": "7019528736598238208", + "expectedQty": "6938806861052931901", "reserves": [ - "5039755879938985086740181", - "2953039114466004196901319" + "2596766204112777379907100", + "4740129621945971940010275" ] }, { "type": "redeemBassets", "inputQtys": [ - "8291206967709419962368", - "8987139419170202976256" + "53210344929054360076288", + "25214406644441613860864" ], - "expectedQty": "17062012701439360545405", - "swapFee": "10243353633043442392", + "expectedQty": "77768273388942633510026", + "swapFee": "46688977419817470588", "reserves": [ - "5031464672971275666777813", - "2944051975046833993925063" + "2543555859183723019830812", + "4714915215301530326149411" ], - "LPTokenSupply": "7870912593279239048440935" + "LPTokenSupply": "7186594653910898258493951" }, { - "type": "redeemMasset", - "inputQty": "361889350614863524659", - "expectedQtys": [ - "231198220217455301469", - "135280603382743454856" + "type": "mintMulti", + "inputQtys": [ + "4376310455867204960256", + "898080975619908960256" ], - "redemptionFee": "217133610368918114", + "expectedQty": "5234093953945176002082", "reserves": [ - "5031233474751058211476344", - "2943916694443451250470207" + "2547932169639590224791068", + "4715813296277150235109667" ], - "LPTokenSupply": "7870550725641985221808087" + "LPTokenSupply": "7191828747864843434496033" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "46659457140552217133056", - "outputIndex": 0, - "expectedQty": "46840667728747205912512", - "swapFee": "0", + "inputQty": "22415718874846395891712", + "expectedQty": "22156548463530760512101", "reserves": [ - "4984392807022311005563832", - "2990576151584003467603263" - ], - "LPTokenSupply": "7870550725641985221808087", - "hardLimitError": false, - "insufficientLiquidityError": false + "2547932169639590224791068", + "4738229015151996631001379" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "94327693726877013245952", - "expectedQty": "93303720206685061824056", + "inputQty": "93893451676674619867136", + "expectedQty": "92803817558101572924512", "reserves": [ - "4984392807022311005563832", - "3084903845310880480849215" + "2547932169639590224791068", + "4832122466828671250868515" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "45275669877588532133888", - "expectedQty": "45908192788400540821152", - "swapFee": "27165401926553119280", + "type": "mintMulti", + "inputQtys": [ + "8669430024853031747584", + "5238842789199647604736" + ], + "expectedQty": "13789332526046264407154", "reserves": [ - "4938484614233910464742680", - "3084903845310880480849215" + "2556601599664443256538652", + "4837361309617870898473251" ], - "LPTokenSupply": "7918581492511274406810183" + "LPTokenSupply": "7320578446412522032339800" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "13985818086369493254144", - "expectedQty": "14132568019210604338853", - "swapFee": "8391490851821695952", + "type": "redeemMasset", + "inputQty": "857984146459501317324", + "expectedQtys": [ + "299458238606075974003", + "566606739771060634681" + ], + "redemptionFee": "514790487875700790", "reserves": [ - "4938484614233910464742680", - "3070771277291669876510362" + "2556302141425837180564649", + "4836794702878099837838570" ], - "LPTokenSupply": "7904596513573990095725634" + "LPTokenSupply": "7319720513745111318592555" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "27796215664838371704832", - "outputIndex": 0, - "expectedQty": "27890549169473383102903", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "157627342971807230590976", + "306386440763257007374336" + ], + "expectedQty": "459394593857051951313297", + "swapFee": "275802237656825265947", "reserves": [ - "4910594065064437081639777", - "3098567492956508248215194" + "2398674798454029949973673", + "4530408262114842830464234" ], - "LPTokenSupply": "7904596513573990095725634", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6860077697874168224539904" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "37639109132363409391616", - "90177662992529483628544" + "140111231830503768064", + "1131291308119989813248" ], - "expectedQty": "126278203954877580506580", + "expectedQty": "1257266078166513306288", + "swapFee": "754812534420560319", "reserves": [ - "4948233174196800491031393", - "3188745155949037731843738" + "2398534687222199446205609", + "4529276970806722840650986" ], - "LPTokenSupply": "8030874717528867676232214" + "LPTokenSupply": "6858819752464720732729327" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "4895102119112147", - "expectedQty": "4947322193829286", - "swapFee": "2937061271467", + "inputQty": "15022696469908389101568", + "expectedQty": "15190720623811301299123", + "swapFee": "9013617881945033460", "reserves": [ - "4948233174196800491031393", - "3188745151001715538014452" + "2398534687222199446205609", + "4514086250182911539351863" ], - "LPTokenSupply": "8030874712634059263247213" + "LPTokenSupply": "6843797957356600538131105" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "782129965882978598912", + "expectedQty": "786987001933318539981", + "swapFee": "469277979529787159", + "reserves": [ + "2397747700220266127665628", + "4514086250182911539351863" + ], + "LPTokenSupply": "6843015874318515512510908" }, { "type": "swap", "inputIndex": 0, - "inputQty": "30719003767059622395904", + "inputQty": "93650403712861224960", "outputIndex": 1, - "expectedQty": "30595897956262394865100", - "swapFee": "24224561600298957714", + "expectedQty": "94037848531433800017", + "swapFee": "74413331074580866", "reserves": [ - "4978952177963860113427297", - "3158149253045453143149352" + "2397841350623978988890588", + "4513992212334380105551846" ], - "LPTokenSupply": "8030877135090219293142984", + "LPTokenSupply": "6843015881759848619968994", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "9961531180810", - "15314235101044" - ], - "expectedQty": "24963641684518", - "swapFee": "14987177317", - "reserves": [ - "4978952177953898582246487", - "3158149253030138908048308" + "213011388918261678080", + "406397780880463101952" ], - "LPTokenSupply": "8030877135065242162998879" - }, - { - "type": "redeemMasset", - "inputQty": "87704836347840", - "expectedQtys": [ - "54342280637574", - "34469307370217" - ], - "redemptionFee": "52622901808", - "reserves": [ - "4978952177899556301608913", - "3158149252995669600678091" - ], - "LPTokenSupply": "8030877134977542588941219" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "4046421132284456337408", - "outputIndex": 0, - "expectedQty": "4059685640204996276890", - "swapFee": "0", + "expectedQty": "613232875362869703809", + "swapFee": "368160621590676228", "reserves": [ - "4974892492259351305332023", - "3162195674127954057015499" + "2397628339235060727212508", + "4513585814553499642449894" ], - "LPTokenSupply": "8030877134977542588941219", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6842402317539926318656578" }, { "type": "mint", "inputIndex": 0, - "inputQty": "49609840060281143689216", - "expectedQty": "48899374607361238379841", + "inputQty": "12959761735714779136", + "expectedQty": "12872057409283662466", "reserves": [ - "5024502332319632449021239", - "3162195674127954057015499" + "2397641298996796441991644", + "4513585814553499642449894" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3255978599086162444288", - "expectedQty": "3209293973349922080165", + "type": "redeemBassets", + "inputQtys": [ + "6985791507923072974848", + "45856251265199288352768" + ], + "expectedQty": "52260934472890749817119", + "swapFee": "31375385915283620062", "reserves": [ - "5027758310918718611465527", - "3162195674127954057015499" - ] + "2390655507488873369016796", + "4467729563288300354097126" + ], + "LPTokenSupply": "6790126017277121097243868" }, { - "type": "redeemMasset", - "inputQty": "2418101248829392997580", - "expectedQtys": [ - "1503198739741183701935", - "945432985877870585058" + "type": "mintMulti", + "inputQtys": [ + "8099178507744441270272", + "10303525379057626644480" ], - "redemptionFee": "1450860749297635798", + "expectedQty": "18227639990457234439779", "reserves": [ - "5026255112178977427763592", - "3161250241142076186430441" + "2398754685996617810287068", + "4478033088667357980741606" ], - "LPTokenSupply": "8080567847395499286167224" + "LPTokenSupply": "6808353657267578331683647" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "101546437170383408", - "expectedQty": "100090329058842490", + "inputQty": "325327971995461681152", + "expectedQty": "327367552976497891470", + "swapFee": "195196783197277008", "reserves": [ - "5026255213725414598147000", - "3161250241142076186430441" - ] + "2398427318443641312395598", + "4478033088667357980741606" + ], + "LPTokenSupply": "6808028348815261189730195" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2634195953494944382976", - "expectedQty": "2596421106903425007739", + "inputQty": "5680508331171874078720", + "expectedQty": "5641688571150719751645", "reserves": [ - "5028889409678909542529976", - "3161250241142076186430441" + "2404107826774813186474318", + "4478033088667357980741606" ] }, { - "type": "mintMulti", - "inputQtys": [ - "15808885647348579958784", - "43247972035335022444544" + "type": "redeemMasset", + "inputQty": "5075082718355435343052", + "expectedQtys": [ + "1789597293407288387739", + "3333409511011098073634" ], - "expectedQty": "58352397405272017838866", + "redemptionFee": "3045049631013261205", "reserves": [ - "5044698295326258122488760", - "3204498213177411208874985" + "2402318229481405898086579", + "4474699679156346882667972" ], - "LPTokenSupply": "8141516765998003787856319" + "LPTokenSupply": "6808595259173019575464908" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2717604237484572672", - "outputIndex": 0, - "expectedQty": "2726503515640310370", - "swapFee": "0", - "reserves": [ - "5044695568822742482178390", - "3204500930781648693447657" + "type": "mintMulti", + "inputQtys": [ + "3329983980317417930752", + "1217474978724235706368" ], - "LPTokenSupply": "8141516765998003787856319", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "339098144932198336", - "expectedQty": "343813713524537698", - "swapFee": "203458886959319", + "expectedQty": "4510521118555191616537", "reserves": [ - "5044695225009028957640692", - "3204500930781648693447657" + "2405648213461723316017331", + "4475917154135071118374340" ], - "LPTokenSupply": "8141516426920204744353914" + "LPTokenSupply": "6813105780291574767081445" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "212535883136461920", - "expectedQty": "214788090411342780", - "swapFee": "127521529881877", + "type": "mintMulti", + "inputQtys": [ + "13991745683564806537216", + "44575515240634913914880" + ], + "expectedQty": "57953600196277732228069", "reserves": [ - "5044695225009028957640692", - "3204500715993558282104877" + "2419639959145288122554547", + "4520492669375706032289220" ], - "LPTokenSupply": "8141516214397073760880181" + "LPTokenSupply": "6871059380487852499309514" }, { "type": "redeemBassets", "inputQtys": [ - "195598848493492666368", - "3123135187127862558720" + "19139804452264035221504", + "30819309436693123170304" ], - "expectedQty": "3281340141470226454259", - "swapFee": "1969986076528052704", + "expectedQty": "49470169071071918411576", + "swapFee": "29699921395480439310", "reserves": [ - "5044499626160535464974324", - "3201377580806430419546157" + "2400500154693024087333043", + "4489673359939012909118916" ], - "LPTokenSupply": "8138233101268134659178487" + "LPTokenSupply": "6821562481487524648502558" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "11927677247369617408", - "13338626726017413120" + "9286425965079894016", + "3953467163750671360" ], - "expectedQty": "24947889399216597200", + "expectedQty": "13130566502518637858", + "swapFee": "7883069743357197", "reserves": [ - "5044511553837782834591732", - "3201390919433156436959277" + "2400490868267059007439027", + "4489669406471849158447556" ], - "LPTokenSupply": "8138258049157533875775687" + "LPTokenSupply": "6821549343826259360843221" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5632552583403159552", - "expectedQty": "5692213679797469265", - "swapFee": "3379531550041895", + "type": "redeemMasset", + "inputQty": "323193522463598129971", + "expectedQtys": [ + "113662976901141013550", + "212585349433121210530" + ], + "redemptionFee": "193916113478158877", "reserves": [ - "5044511553837782834591732", - "3201385227219476639490012" + "2400377205290157866425477", + "4489456821122416037237026" ], - "LPTokenSupply": "8138252416942903627620324" + "LPTokenSupply": "6821226169695407110529137" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "14811556356594", - "expectedQty": "14968443189790", - "swapFee": "8886933813", + "inputQty": "11211765113646114406400", + "expectedQty": "11081254711052324947708", "reserves": [ - "5044511553837782834591732", - "3201385227204508196300222" - ], - "LPTokenSupply": "8138252416928092959957111" + "2400377205290157866425477", + "4500668586236062151643426" + ] }, { "type": "redeemBassets", "inputQtys": [ - "18373050539068069249024", - "574506581293372276736" + "8997200490629537202176", + "2795750728756426178560" ], - "expectedQty": "18678364995953682052840", - "swapFee": "11213747245919761088", + "expectedQty": "11699269323629817335291", + "swapFee": "7023775859693706625", "reserves": [ - "5026138503298714765342708", - "3200810720623214824023486" + "2391380004799528329223301", + "4497872835507305725464866" ], - "LPTokenSupply": "8119563959559617950119290" + "LPTokenSupply": "6820601833684555893805590" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "17189153003726211072", - "34029861261329002496" + "227418789806464248578048", + "87236750463531122425856" ], - "expectedQty": "50595683352881434066", - "swapFee": "30375635392964639", + "expectedQty": "312054109327538713877979", "reserves": [ - "5026121314145711039131636", - "3200776690761953495020990" + "2618798794605992577801349", + "4585109585970836847890722" ], - "LPTokenSupply": "8119513336538193215017047" + "LPTokenSupply": "7132655943012094607683569" }, { "type": "mintMulti", "inputQtys": [ - "292968608880722688", - "3983925940799310848" + "11179066505145962463232", + "75777565786365151412224" ], - "expectedQty": "4228508526679064698", + "expectedQty": "86010082804298401250596", "reserves": [ - "5026121607114319919854324", - "3200780674687894294331838" + "2629977861111138540264581", + "4660887151757201999302946" ], - "LPTokenSupply": "8119517565046719894081745" + "LPTokenSupply": "7218666025816393008934165" }, { "type": "mintMulti", "inputQtys": [ - "30043388217404279488512", - "37634808790824656044032" + "596165773566581276672", + "40911957560582782058496" ], - "expectedQty": "66830783704277596710155", + "expectedQty": "41034827692325850759338", "reserves": [ - "5056164995331724199342836", - "3238415483478718950375870" + "2630574026884705121541253", + "4701799109317784781361442" ], - "LPTokenSupply": "8186348348750997490791900" + "LPTokenSupply": "7259700853508718859693503" }, { "type": "mintMulti", "inputQtys": [ - "39353580429684684881920", - "122432653667555973529600" + "138552343773617176576", + "74159900946740674560" ], - "expectedQty": "159855310402798652695944", + "expectedQty": "210876048727438391517", "reserves": [ - "5095518575761408884224756", - "3360848137146274923905470" + "2630712579228478738717829", + "4701873269218731522036002" ], - "LPTokenSupply": "8346203659153796143487844" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "303224988744050051907584", - "expectedQty": "299746732419489346497720", - "reserves": [ - "5095518575761408884224756", - "3664073125890324975813054" - ] + "LPTokenSupply": "7259911729557446298085020" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "565745927776602554368", - "830040795020309561344" + "183477266124254042128384", + "17139571869724729933824" ], - "expectedQty": "1378233851466370073614", - "swapFee": "827436772943588197", + "expectedQty": "199082521040266090551706", "reserves": [ - "5094952829833632281670388", - "3663243085095304666251710" + "2814189845352732780846213", + "4719012841088456251969826" ], - "LPTokenSupply": "8644571413028723470682571" + "LPTokenSupply": "7458994250597712388636726" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1426427288000638746624", - "outputIndex": 0, - "expectedQty": "1429686300143523810605", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "709496271905447162675", + "expectedQtys": [ + "267523896969058702842", + "448601115940981174466" + ], + "redemptionFee": "425697763143268297", "reserves": [ - "5093523143533488757859783", - "3664669512383305304998334" + "2813922321455763722143371", + "4718564239972515270795360" ], - "LPTokenSupply": "8644571413028723470682571", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7458284796895583255800880" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "43460617632682631757824", - "outputIndex": 1, - "expectedQty": "43323622526746163845021", - "swapFee": "34284236985306488093", + "type": "mint", + "inputIndex": 1, + "inputQty": "193059120918259367936", + "expectedQty": "190884537093601636505", "reserves": [ - "5136983761166171389617607", - "3621345889856559141153313" - ], - "LPTokenSupply": "8644574841452422001331380", - "hardLimitError": false, - "insufficientLiquidityError": false + "2813922321455763722143371", + "4718757299093433530163296" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "33457267469598010114048", - "outputIndex": 1, - "expectedQty": "33347195275234298008559", - "swapFee": "26391304189321660413", + "type": "redeemMasset", + "inputQty": "1193187927662656716", + "expectedQtys": [ + "449894021751497781", + "754441827612388057" + ], + "redemptionFee": "715912756597594", "reserves": [ - "5170441028635769399731655", - "3587998694581324843144754" + "2813921871561741970645590", + "4718756544651605917775239" ], - "LPTokenSupply": "8644577480582840933497421", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7458474488316340470440428" }, { "type": "mintMulti", "inputQtys": [ - "138393172769059962355712", - "77874137715391768559616" - ], - "expectedQty": "213428515163019948639625", - "reserves": [ - "5308834201404829362087367", - "3665872832296716611704370" + "106176594209636656087040", + "29716605336742386466816" ], - "LPTokenSupply": "8858005995745860882137046" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "67602908867666223104", - "expectedQty": "68525086900503250449", - "swapFee": "40561745320599733", + "expectedQty": "134756603395036973684763", "reserves": [ - "5308765676317928858836918", - "3665872832296716611704370" + "2920098465771378626732630", + "4748473149988348304242055" ], - "LPTokenSupply": "8857938396893167747973915" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "88456291898454397943808", - "expectedQty": "87211225147801327242568", - "reserves": [ - "5397221968216383256780726", - "3665872832296716611704370" - ] + "LPTokenSupply": "7593231091711377444125191" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "12310188494434944942080", - "expectedQty": "12478725146612903688495", - "swapFee": "7386113096660966965", - "reserves": [ - "5384743243069770353092231", - "3665872832296716611704370" + "type": "redeemMasset", + "inputQty": "5524351777642909374873", + "expectedQtys": [ + "2123203148286203419831", + "3452614101814026950251" ], - "LPTokenSupply": "8932840172157843796371099" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "64219962875568166273024", - "expectedQty": "64920374355753633370485", - "swapFee": "38531977725340899763", + "redemptionFee": "3314611066585745624", "reserves": [ - "5384743243069770353092231", - "3600952457940962978333885" + "2917975262623092423312799", + "4745020535886534277291804" ], - "LPTokenSupply": "8868624062480048164188051" + "LPTokenSupply": "7587707071394841193324880" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "848231597545769600", - "expectedQty": "857449584500835377", - "swapFee": "508938958527461", + "inputQty": "15897427462317504724992", + "expectedQty": "16067152889213693464773", + "swapFee": "9538456477390502834", "reserves": [ - "5384743243069770353092231", - "3600951600491378477498508" + "2917975262623092423312799", + "4728953382997320583827031" ], - "LPTokenSupply": "8868623214299344514271197" + "LPTokenSupply": "7571810597778171427650171" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7122936948118110", - "9372744424735750" - ], - "expectedQty": "16288529850531828", - "reserves": [ - "5384743250192707301210341", - "3600951609864122902234258" + "268991491917897105408", + "123803858561691172864" ], - "LPTokenSupply": "8868623230587874364803025" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "32615470069129352", - "expectedQty": "33063928808294962", - "swapFee": "19569282041477", + "expectedQty": "389351796022307076039", + "swapFee": "233751328410430503", "reserves": [ - "5384743217128778492915379", - "3600951609864122902234258" + "2917706271131174526207391", + "4728829579138758892654167" ], - "LPTokenSupply": "8868623197974361223877820" + "LPTokenSupply": "7571421035605953551186678" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9331931461949287563264", - "4359958082140692283392" + "6323370364178943442944", + "1287094010373160042496" ], - "expectedQty": "13510331987924253559573", + "expectedQty": "7547646791447122649682", + "swapFee": "4531306858983663788", "reserves": [ - "5394075148590727780478643", - "3605311567946263594517650" + "2911382900766995582764447", + "4727542485128385732611671" ], - "LPTokenSupply": "8882133529962285477437393" + "LPTokenSupply": "7563869310638333343239585" }, { - "type": "redeemMasset", - "inputQty": "44092614525824425105817", - "expectedQtys": [ - "26761157341596424774822", - "17886719683631943202447" + "type": "redeemBassets", + "inputQtys": [ + "37693786956335816", + "2292893688643210" ], - "redemptionFee": "26455568715494655063", + "expectedQty": "39672399198827470", + "swapFee": "23817730157390", "reserves": [ - "5367313991249131355703821", - "3587424848262631651315203" + "2911382863073208626428631", + "4727542482835492043968461" ], - "LPTokenSupply": "8838043560993332601797082" + "LPTokenSupply": "7563869270944498187270463" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "3168357630356067713024", - "expectedQty": "3132408480732585119372", + "inputQty": "20227585998473180217344", + "outputIndex": 0, + "expectedQty": "20155242302139714082670", + "swapFee": "0", "reserves": [ - "5367313991249131355703821", - "3590593205892987719028227" - ] + "2891227620771068912345961", + "4747770068833965224185805" + ], + "LPTokenSupply": "7563869270944498187270463", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "5036533329908034764", + "inputQty": "13711042690698592858931", "expectedQtys": [ - "3055751441754155401", - "2044218091870320271" + "5237790193162581295147", + "8601129612651290647267" ], - "redemptionFee": "3021919997944820", + "redemptionFee": "8226625614419155715", "reserves": [ - "5367310935497689601548420", - "3590591161674895848707956" + "2885989830577906331050814", + "4739168939221313933538538" ], - "LPTokenSupply": "8841170933242927278676172" + "LPTokenSupply": "7550159050916361036327103" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "91082727496994766848", - "73451258306568437760" + "45191238432924745728", + "31622505843135873024" ], - "expectedQty": "162410995949248438357", - "swapFee": "97505100629927019", + "expectedQty": "76116209020300364270", "reserves": [ - "5367219852770192606781572", - "3590517710416589280270196" + "2886035021816339255796542", + "4739200561727157069411562" ], - "LPTokenSupply": "8841008434492387463303496" + "LPTokenSupply": "7550235167125381336691373" }, { "type": "mintMulti", "inputQtys": [ - "1981739536662608896", - "4143180467167057920" + "146086869966030878277632", + "243601456193972144701440" ], - "expectedQty": "6049846527550281113", + "expectedQty": "385850366860056781707302", "reserves": [ - "5367221834509729269390468", - "3590521853597056447328116" + "3032121891782370134074174", + "4982802017921129214113002" ], - "LPTokenSupply": "8841014484338915013584609" + "LPTokenSupply": "7936085533985438118398675" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "27850762508372615168", - "expectedQty": "27534700588275584083", + "inputIndex": 0, + "inputQty": "3499383570522544128", + "expectedQty": "3472803185833047502", "reserves": [ - "5367221834509729269390468", - "3590549704359564819943284" + "3032125391165940656618302", + "4982802017921129214113002" ] }, { "type": "redeemMasset", - "inputQty": "756016712304787", + "inputQty": "115770674815507968819", "expectedQtys": [ - "458687422948562", - "306851485115082" + "44205726981996377235", + "72644880139624581449" ], - "redemptionFee": "453610027382", + "redemptionFee": "69462404889304781", "reserves": [ - "5367221834051041846441906", - "3590549704052713334828202" + "3032081185438958660241067", + "4982729373040989589531553" ], - "LPTokenSupply": "8841042018283531937866643" + "LPTokenSupply": "7935973243060048932407836" }, { - "type": "mintMulti", - "inputQtys": [ - "601210828325508743168", - "16201810479277008896" - ], - "expectedQty": "608717484027690666841", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5017040137592310784", + "expectedQty": "5070822952031998377", + "swapFee": "3010224082555386", "reserves": [ - "5367823044879367355185074", - "3590565905863192611837098" + "3032081185438958660241067", + "4982724302218037557533176" ], - "LPTokenSupply": "8841650735767559628533484" + "LPTokenSupply": "7935968226320933748352590" }, { - "type": "redeemBassets", - "inputQtys": [ - "770485409296888627200", - "62873771598033829888" + "type": "redeemMasset", + "inputQty": "11158984921536949492121", + "expectedQtys": [ + "4260935313236248765601", + "7002142962859891769815" ], - "expectedQty": "821737997636600735365", - "swapFee": "493338801863078288", + "redemptionFee": "6695390952922169695", "reserves": [ - "5367052559470070466557874", - "3590503032091594578007210" + "3027820250125722411475466", + "4975722159255177665763361" ], - "LPTokenSupply": "8840828553765001351027658" + "LPTokenSupply": "7924809910938492091077438" }, { - "type": "redeemMasset", - "inputQty": "47464915395827453132", - "expectedQtys": [ - "28797509882078563542", - "19265238304001248568" + "type": "swap", + "inputIndex": 0, + "inputQty": "27382179437971", + "outputIndex": 1, + "expectedQty": "27460002919211", + "swapFee": "21739336463", + "reserves": [ + "3027820250153104590913437", + "4975722159227717662844150" + ], + "LPTokenSupply": "7924809910938494265011084", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "22561901898606723072", + "47122746694780108800" ], - "redemptionFee": "28478949237496471", + "expectedQty": "68985448560256390845", + "swapFee": "41416118807438297", "reserves": [ - "5367023761960188387994332", - "3590483766853290576758642" + "3027797688251205984190365", + "4975675036481022882735350" ], - "LPTokenSupply": "8840781091697500447324173" + "LPTokenSupply": "7924740888215427081925770" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "32056625428253034676224", - "expectedQty": "32404437869922436711934", - "swapFee": "19233975256951820805", + "inputQty": "38158856979059073613824", + "expectedQty": "38567451507800295828322", + "swapFee": "22895314187435444168", "reserves": [ - "5367023761960188387994332", - "3558079328983368140046708" + "3027797688251205984190365", + "4937107584973222586907028" ], - "LPTokenSupply": "8808726389666773107830029" + "LPTokenSupply": "7886584320767786751856362" }, { "type": "redeemMasset", - "inputQty": "9758120903629974732", + "inputQty": "1996375634505802920755", "expectedQtys": [ - "5941908194946827723", - "3939200134160689951" + "765983664463118284347", + "1249008074238507995996" ], - "redemptionFee": "5854872542177984", + "redemptionFee": "1197825380703481752", "reserves": [ - "5367017820051993441166609", - "3558075389783233979356757" + "3027031704586742865906018", + "4935858576898984078911032" ], - "LPTokenSupply": "8808716632131356732073095" + "LPTokenSupply": "7884588064915819019283782" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "70648710650848712", - "expectedQty": "71413819299726979", - "swapFee": "42389226390509", + "type": "redeemBassets", + "inputQtys": [ + "21586549421439270780928", + "10855970918437692112896" + ], + "expectedQty": "32156426485236112389437", + "swapFee": "19305439154634448102", "reserves": [ - "5367017820051993441166609", - "3558075318369414679629778" + "3005445155165303595125090", + "4925002605980546386798136" ], - "LPTokenSupply": "8808716561486885003863433" + "LPTokenSupply": "7852414263535343735891052" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "20424670063407112192", - "outputIndex": 1, - "expectedQty": "20348878236159250424", - "swapFee": "16107916656120637", + "inputIndex": 1, + "inputQty": "18204519079981151682560", + "outputIndex": 0, + "expectedQty": "18138077593046776997400", + "swapFee": "0", "reserves": [ - "5367038244722056848278801", - "3558054969491178520379354" + "2987307077572256818127690", + "4943207125060527538480696" ], - "LPTokenSupply": "8808716563097676669475496", + "LPTokenSupply": "7852414263535343735891052", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "244627924930266748944384", - "expectedQty": "247980965341699830671490", - "swapFee": "146776754958160049366", + "type": "mintMulti", + "inputQtys": [ + "11718133402815907840", + "27607981762700546048" + ], + "expectedQty": "38927486799690454345", "reserves": [ - "5119057279380357017607311", - "3558054969491178520379354" + "2987318795705659634035530", + "4943234733042290239026744" ], - "LPTokenSupply": "8564103315842905736536048" + "LPTokenSupply": "7852453191022143426345397" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "14966496234170673528832", - "36770326382229330067456" + "2641291757524375568384", + "482504100937634676736" ], - "expectedQty": "51102515241948638907992", - "swapFee": "30679917095426439208", + "expectedQty": "3098394822044664109424", "reserves": [ - "5104090783146186344078479", - "3521284643108949190311898" + "2989960087463184009603914", + "4943717237143227873703480" ], - "LPTokenSupply": "8512973188675571213832767" + "LPTokenSupply": "7855551585844188090454821" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2668389382409605873664", - "2894297996668729556992" + "9727371546339921887232", + "1454558401723563507712" ], - "expectedQty": "5491796883744133563512", + "expectedQty": "11092055253308974088695", + "swapFee": "6659228689198903795", "reserves": [ - "5106759172528595949952143", - "3524178941105617919868890" + "2980232715916844087716682", + "4942262678741504310195768" ], - "LPTokenSupply": "8518464985559315347396279" + "LPTokenSupply": "7844453537285058837352709" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "41126159346996235730944", - "expectedQty": "41579067696333796208834", - "swapFee": "24675695608197741438", + "inputQty": "20896443394611068", + "expectedQty": "21121232181677354", + "swapFee": "12537866036766", "reserves": [ - "5106759172528595949952143", - "3482599873409284123660056" + "2980232715916844087716682", + "4942262657620272128518414" ], - "LPTokenSupply": "8477341293781879931439478" + "LPTokenSupply": "7844453516389869229345317" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1165120459180872040448", - "expectedQty": "1148669723645506605517", + "type": "redeemMasset", + "inputQty": "1568812274141854720", + "expectedQtys": [ + "595659136658527864", + "987810076728221191" + ], + "redemptionFee": "941287364485112", "reserves": [ - "5107924292987776821992591", - "3482599873409284123660056" - ] + "2980232120257707429188818", + "4942261669810195400297223" + ], + "LPTokenSupply": "7844451947671723823939108" }, { - "type": "mintMulti", - "inputQtys": [ - "2064915381730646425600", - "28977298030410239836160" + "type": "redeemMasset", + "inputQty": "309002392850659", + "expectedQtys": [ + "117324489108424", + "194564819803529" ], - "expectedQty": "30680465971603852886126", + "redemptionFee": "185401435710", "reserves": [ - "5109989208369507468418191", - "3511577171439694363496216" + "2980232120140382940080394", + "4942261669615630580493694" ], - "LPTokenSupply": "8509170429477129290931121" + "LPTokenSupply": "7844451947362739971232020" }, { "type": "mintMulti", "inputQtys": [ - "175274154146557067264", - "69910253144839684096" + "628914410081150697472", + "1641307421413991776256" ], - "expectedQty": "241910205707648608387", + "expectedQty": "2247029361156021915470", "reserves": [ - "5110164482523654025485455", - "3511647081692839203180312" + "2980861034550464090777866", + "4943902977037044572269950" ], - "LPTokenSupply": "8509412339682836939539508" + "LPTokenSupply": "7846698976723895993147490" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "351738428743816832", - "outputIndex": 1, - "expectedQty": "350533198494764948", - "swapFee": "277424560748574", - "reserves": [ - "5110164834262082769302287", - "3511646731159640708415364" + "type": "redeemBassets", + "inputQtys": [ + "568604327433062711296", + "642029294678044180480" ], - "LPTokenSupply": "8509412339710579395614365", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "4461096613276451602432", - "expectedQty": "4398211651823687029852", + "expectedQty": "1199125213097145760350", + "swapFee": "719907072101548385", "reserves": [ - "5114625930875359220904719", - "3511646731159640708415364" - ] + "2980292430223031028066570", + "4943260947742366528089470" + ], + "LPTokenSupply": "7845499203594433955993592" }, { "type": "mint", "inputIndex": 0, - "inputQty": "311619940661495857152", - "expectedQty": "307226794560502814260", + "inputQty": "4341417530850779", + "expectedQty": "4308632368851399", "reserves": [ - "5114937550816020716761871", - "3511646731159640708415364" + "2980292434564448558917349", + "4943260947742366528089470" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "157859011571584730136576", - "outputIndex": 0, - "expectedQty": "158230357649475965614382", - "swapFee": "0", - "reserves": [ - "4956707193166544751147489", - "3669505742731225438551940" - ], - "LPTokenSupply": "8514117778156963585458477", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "304947635081057408", - "outputIndex": 0, - "expectedQty": "305578516315774644", - "swapFee": "0", + "inputQty": "728079352201680257024", + "expectedQty": "735911827463425965761", + "swapFee": "436847611321008154", "reserves": [ - "4956706887588028435372845", - "3669506047678860519609348" + "2980292434564448558917349", + "4942525035914903102123709" ], - "LPTokenSupply": "8514117778156963585458477", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7844771172235625776688782" }, { "type": "mintMulti", "inputQtys": [ - "137884279920857584", - "179826852118521600" + "34825100519563316953088", + "16808633455387560902656" ], - "expectedQty": "313673711763120303", + "expectedQty": "51181286490966396055395", "reserves": [ - "4956707025472308356230429", - "3669506227505712638130948" + "3015117535084011875870437", + "4959333669370290663026365" ], - "LPTokenSupply": "8514118091830675348578780" + "LPTokenSupply": "7895952458726592172744177" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "38249564609700591304704", - "outputIndex": 0, - "expectedQty": "38326140433856042495691", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "690378913043944203878", + "expectedQtys": [ + "263467217324988177186", + "433356851416641809530" + ], + "redemptionFee": "414227347826366522", "reserves": [ - "4918380885038452313734738", - "3707755792115413229435652" + "3014854067866686887693251", + "4958900312518874021216835" ], - "LPTokenSupply": "8514118091830675348578780", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7895262121236283011176951" }, { "type": "mint", "inputIndex": 0, - "inputQty": "23143146799043971121152", - "expectedQty": "22823454796941108013620", - "reserves": [ - "4941524031837496284855890", - "3707755792115413229435652" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4346241762703301", - "expectedQty": "4294615866090694", + "inputQty": "296402047300790720", + "expectedQty": "294150142120619459", "reserves": [ - "4941524031837496284855890", - "3707755796461654992138953" + "3014854364268734188483971", + "4958900312518874021216835" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "70894141314393228443648", - "expectedQty": "71700382592519429515298", - "swapFee": "42536484788635937066", + "inputQty": "15733415633507865067520", + "expectedQty": "15902147287793346559846", + "swapFee": "9440049380104719040", "reserves": [ - "4941524031837496284855890", - "3636055413869135562623655" + "3014854364268734188483971", + "4942998165231080674656989" ], - "LPTokenSupply": "8466051663256317957833152" + "LPTokenSupply": "7879529943757855277200794" }, { - "type": "redeemMasset", - "inputQty": "132613428809574960332", - "expectedQtys": [ - "77358287427192280019", - "56921512066934966391" + "type": "redeemBassets", + "inputQtys": [ + "14364880031874648375296", + "99306354746521571819520" ], - "redemptionFee": "79568057285744976", + "expectedQty": "112451524146880469728695", + "swapFee": "67511421340932841542", "reserves": [ - "4941446673550069092575871", - "3635998492357068627657264" + "3000489484236859540108675", + "4843691810484559102837469" ], - "LPTokenSupply": "8465919057784314111447317" + "LPTokenSupply": "7767017659331767967914710" }, { "type": "mint", "inputIndex": 0, - "inputQty": "3004512516573001416704", - "expectedQty": "2962789250604509843921", + "inputQty": "587792642477210075136", + "expectedQty": "583262524003035150334", "reserves": [ - "4944451186066642093992575", - "3635998492357068627657264" + "3001077276879336750183811", + "4843691810484559102837469" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "3034911817919014", - "expectedQty": "2992763538914577", + "inputQty": "23562370403009015316480", + "expectedQty": "23380278052773662369046", "reserves": [ - "4944451189101553911911589", - "3635998492357068627657264" + "3024639647282345765500291", + "4843691810484559102837469" ] }, { - "type": "redeemMasset", - "inputQty": "21791004881658659104358", - "expectedQtys": [ - "12714773351393920998455", - "9350056248554179979643" - ], - "redemptionFee": "13074602928995195462", + "type": "mint", + "inputIndex": 0, + "inputQty": "5424759627903551488", + "expectedQty": "5382725565205824684", "reserves": [ - "4931736415750159990913134", - "3626648436108514447677621" - ], - "LPTokenSupply": "8447092152606316400621003" + "3024645072041973669051779", + "4843691810484559102837469" + ] }, { - "type": "redeemMasset", - "inputQty": "1862275964891025322803", - "expectedQtys": [ - "1086615781370626325922", - "799064080467323091770" - ], - "redemptionFee": "1117365578934615193", + "type": "redeem", + "inputIndex": 0, + "inputQty": "386080151507379904", + "expectedQty": "388861621798902206", + "swapFee": "231648090904427", "reserves": [ - "4930649799968789364587212", - "3625849372028047124585851" + "3024644683180351870149573", + "4843691810484559102837469" ], - "LPTokenSupply": "8445229988377983268759719" + "LPTokenSupply": "7790986196577123172969312" }, { - "type": "mintMulti", - "inputQtys": [ - "2537996750336595456", - "2005222304446413056" - ], - "expectedQty": "4484305943134215228", + "type": "mint", + "inputIndex": 0, + "inputQty": "175933525729727709184", + "expectedQty": "174570267254825119584", "reserves": [ - "4930652337965539701182668", - "3625851377250351570998907" - ], - "LPTokenSupply": "8445234472683926402974947" + "3024820616706081597858757", + "4843691810484559102837469" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "2007879116533008433152", - "892309692188734783488" + "type": "redeemMasset", + "inputQty": "1165277040746781317529", + "expectedQtys": [ + "452132778418030502666", + "724007177146215275289" ], - "expectedQty": "2861771498519093289805", - "swapFee": "1718093755364674778", + "redemptionFee": "699166224448068790", "reserves": [ - "4928644458849006692749516", - "3624959067558162836215419" + "3024368483927663567356091", + "4842967803307412887562180" ], - "LPTokenSupply": "8442371154901027481477840" + "LPTokenSupply": "7789995559720253661578246" }, { "type": "redeemBassets", "inputQtys": [ - "186961479591722", - "55990019827034" - ], - "expectedQty": "239694050823471", - "swapFee": "143902772157", - "reserves": [ - "4928644458662045213157794", - "3624959067502172816388385" + "41542951242330682687488", + "71570788958537462579200" ], - "LPTokenSupply": "8442371154661203918159426" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "461992902842105026576384", - "expectedQty": "467087492757918038361263", - "swapFee": "277195741705263015945", + "expectedQty": "111995210133452851061563", + "swapFee": "67237468561208435698", "reserves": [ - "4928644458662045213157794", - "3157871574744254778027122" + "2982825532685332884668603", + "4771397014348875424982980" ], - "LPTokenSupply": "7980405971393269417884636" + "LPTokenSupply": "7677939835865095722924553" }, { "type": "redeemMasset", - "inputQty": "4081614551909643845632", + "inputQty": "3966314746205736586444", "expectedQtys": [ - "2519264924562179855861", - "1614138565126846568956" + "1539960803740683954754", + "2463357075587206795210" ], - "redemptionFee": "2448968731145786307", + "redemptionFee": "2379788847723441951", "reserves": [ - "4926125193737483033301933", - "3156257436179127931458166" + "2981285571881592200713849", + "4768933657273288218187770" ], - "LPTokenSupply": "7976324601738232888617634" + "LPTokenSupply": "7673973759097774758682304" }, { "type": "mintMulti", "inputQtys": [ - "57921672803698417664", - "63223816718777491456" + "6973569338171120", + "21265738284004152" ], - "expectedQty": "119606036521754863468", + "expectedQty": "27948376450322773", "reserves": [ - "4926183115410286731719597", - "3156320659995846708949622" + "2981285578855161538884969", + "4768933678539026502191922" ], - "LPTokenSupply": "7976444207774754643481102" + "LPTokenSupply": "7673973787046151209005077" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "381873517556724531200", - "7510281899779822714880" + "1267701356625498", + "1234436558052793" ], - "expectedQty": "7802612548583915715964", - "swapFee": "4684378156043975815", + "expectedQty": "2478551603013712", "reserves": [ - "4925801241892730007188397", - "3148810378096066886234742" + "2981285580122862895510467", + "4768933679773463060244715" ], - "LPTokenSupply": "7968637379285830288186903" + "LPTokenSupply": "7673973789524702812018789" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1847302082134844416", - "51972053059372856" + "61843224494214922371072", + "74957193204383547916288" ], - "expectedQty": "1872160616571821174", - "swapFee": "1123970752394529", + "expectedQty": "135485499808855319579888", "reserves": [ - "4925799394590647872343981", - "3148810326124013826861886" + "3043128804617077817881539", + "4843890872977846608161003" ], - "LPTokenSupply": "7968635506113640039210651" + "LPTokenSupply": "7809459289333558131598677" }, { "type": "redeemMasset", - "inputQty": "605450259149374042931", + "inputQty": "107728432922688", "expectedQtys": [ - "374033562179377801790", - "239100427881970107885" + "41953582990361", + "66779486108969" ], - "redemptionFee": "363270155489624425", + "redemptionFee": "64637059753", "reserves": [ - "4925425361028468494542191", - "3148571225696131856754001" + "3043128804575124234891178", + "4843890872911067122052034" ], - "LPTokenSupply": "7968030092181506214130162" - }, - { - "type": "mintMulti", - "inputQtys": [ - "5160163570006064365568", - "13015710622559233900544" - ], - "expectedQty": "17956073427155680868759", - "reserves": [ - "4930585524598474558907759", - "3161586936318691090654545" - ], - "LPTokenSupply": "7985986165608661894998921" + "LPTokenSupply": "7809459289225836162381964" }, { "type": "redeemMasset", - "inputQty": "182790757721983523225", + "inputQty": "6817625333623935795", "expectedQtys": [ - "112788162425687886015", - "72321954282597010286" + "2655044749761234576", + "4226159277649926810" ], - "redemptionFee": "109674454633190113", + "redemptionFee": "4090575200174361", "reserves": [ - "4930472736436048871021744", - "3161514614364408493644259" + "3043126149530374473656602", + "4843886646751789472125224" ], - "LPTokenSupply": "7985803385818385374794707" + "LPTokenSupply": "7809452472009560058463605" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "179388042462327727980544", - "expectedQty": "181880019990238277881997", - "swapFee": "107632825477396636788", + "inputQty": "26213603994341119885312", + "expectedQty": "26402909758610040550405", + "swapFee": "15728162396604671931", "reserves": [ - "4748592716445810593139747", - "3161514614364408493644259" + "3016723239771764433106197", + "4843886646751789472125224" ], - "LPTokenSupply": "7806426106638605386477841" + "LPTokenSupply": "7783240440831458599045486" }, { - "type": "mintMulti", - "inputQtys": [ - "249889884299903008", - "477170099203985024" + "type": "redeem", + "inputIndex": 1, + "inputQty": "3788027917616901259264", + "expectedQty": "3828434619911871625739", + "swapFee": "2272816750570140755", + "reserves": [ + "3016723239771764433106197", + "4840058212131877600499485" ], - "expectedQty": "718061109329615535", + "LPTokenSupply": "7779452640195516754800297" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "2303798399452339765248", + "outputIndex": 1, + "expectedQty": "2309853255607161740149", + "swapFee": "1828753288368297182", "reserves": [ - "4748592966335694893042755", - "3161515091534507697629283" + "3019027038171216772871445", + "4837748358876270438759336" ], - "LPTokenSupply": "7806426824699714716093376" + "LPTokenSupply": "7779452823070845591630015", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "20707587464611915366400", - "7627760160729427083264" + "type": "redeemMasset", + "inputQty": "391636663123819731353", + "expectedQtys": [ + "151894006555393578119", + "243397946307105228208" ], - "expectedQty": "27953392473128310856724", + "redemptionFee": "234981997874291838", "reserves": [ - "4769300553800306808409155", - "3169142851695237124712547" + "3018875144164661379293326", + "4837504960929963333531128" ], - "LPTokenSupply": "7834380217172843026950100" + "LPTokenSupply": "7779061209905921559327845" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "2610874783160046592", + "expectedQty": "2581781292450647602", + "reserves": [ + "3018875144164661379293326", + "4837507571804746493577720" + ] }, { "type": "mintMulti", "inputQtys": [ - "822447207868292399104", - "287805316593517002752" + "64977688500921368576", + "605101828146499420160" ], - "expectedQty": "1095253687387123253586", + "expectedQty": "662832712688781872337", "reserves": [ - "4770123001008175100808259", - "3169430657011830641715299" + "3018940121853162300661902", + "4838112673632892992997880" ], - "LPTokenSupply": "7835475470860230150203686" + "LPTokenSupply": "7779726624399902791847784" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "167183935267356160", - "outputIndex": 1, - "expectedQty": "166566554876751666", - "swapFee": "131841066432568", + "type": "redeem", + "inputIndex": 1, + "inputQty": "49488810361661016", + "expectedQty": "50016477435795821", + "swapFee": "29693286216996", "reserves": [ - "4770123168192110368164419", - "3169430490445275764963633" + "3018940121853162300661902", + "4838112623616415557202059" ], - "LPTokenSupply": "7835475470873414256846942", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7779726574914061758808467" }, { - "type": "mintMulti", - "inputQtys": [ - "369423860712146", - "351815610385398" + "type": "redeemMasset", + "inputQty": "5330923740582605619", + "expectedQtys": [ + "2067435554240137074", + "3313244267773892919" ], - "expectedQty": "711967765378506", + "redemptionFee": "3198554244349563", "reserves": [ - "4770123168561534228876565", - "3169430490797091375349031" + "3018938054417608060524828", + "4838109310372147783309140" ], - "LPTokenSupply": "7835475471585382022225448" + "LPTokenSupply": "7779721244310176600637804" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "28905193469723721728", - "184844269239022223360" + "1037275768708855192616960", + "244666519184980364492800" ], - "expectedQty": "211232312654068021189", - "swapFee": "126815476878567953", + "expectedQty": "1270639914557093292977832", "reserves": [ - "4770094263368064505154837", - "3169245646527852353125671" + "4056213823126463253141788", + "5082775829557128147801940" ], - "LPTokenSupply": "7835264125138798763493100" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "15388148694728797323264", - "expectedQty": "15168764748485242178606", - "reserves": [ - "4785482412062793302478101", - "3169245646527852353125671" - ] + "LPTokenSupply": "9050361158867269893615636" }, { "type": "mint", "inputIndex": 1, - "inputQty": "24323377038035218432", - "expectedQty": "24046733340614087636", + "inputQty": "14298584737333397946368", + "expectedQty": "14150267525826845018594", "reserves": [ - "4785482412062793302478101", - "3169269969904890388344103" + "4056213823126463253141788", + "5097074414294461545748308" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "34343746755395858726912", - "expectedQty": "34819322390755801318653", - "swapFee": "20606248053237515236", + "inputQty": "347482014812791242752", + "expectedQty": "344407947418120286891", "reserves": [ - "4750663089672037501159448", - "3169269969904890388344103" - ], - "LPTokenSupply": "7816115250490034084783953" + "4056561305141276044384540", + "5097074414294461545748308" + ] }, { "type": "mintMulti", "inputQtys": [ - "6081933407998618632192", - "24367366887586538717184" + "4746235794186297344", + "8181661485418846208" ], - "expectedQty": "30084328666707763834318", + "expectedQty": "12801007355369917451", "reserves": [ - "4756745023080036119791640", - "3193637336792476927061287" + "4056566051377070230681884", + "5097082595955946964594516" ], - "LPTokenSupply": "7846199579156741848618271" + "LPTokenSupply": "9064868635347870228838572" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "440281754005510553600", + "expectedQty": "435712916048860451541", + "reserves": [ + "4056566051377070230681884", + "5097522877709952475148116" + ] }, { "type": "mintMulti", "inputQtys": [ - "4771299407600005677056", - "9360112476859586838528" + "1441008243274794401792", + "120925908569034342400" ], - "expectedQty": "13956443363632470645535", + "expectedQty": "1547930497076138019730", "reserves": [ - "4761516322487636125468696", - "3202997449269336513899815" + "4058007059620345025083676", + "5097643803618521509490516" ], - "LPTokenSupply": "7860156022520374319263806" + "LPTokenSupply": "9066852278760995227309843" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "268111581073179475968", - "275370025734992134144" + "755738349714293260288", + "969818446035698712576" ], - "expectedQty": "536517484131397753687", + "expectedQty": "1708807148356983969081", + "swapFee": "1025899828911537303", "reserves": [ - "4761784434068709304944664", - "3203272819295071506033959" + "4057251321270630731823388", + "5096673985172485810777940" ], - "LPTokenSupply": "7860692540004505717017493" + "LPTokenSupply": "9065142548302792222957188" }, { "type": "mint", "inputIndex": 1, - "inputQty": "327338715316302", - "expectedQty": "323590610144743", + "inputQty": "70208886324558352", + "expectedQty": "69480379734448760", "reserves": [ - "4761784434068709304944664", - "3203272819622410221350261" + "4057251321270630731823388", + "5096674055381372135336292" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "14842411173591155474432", - "6581665744495645294592" + "type": "redeemMasset", + "inputQty": "37515924577604", + "expectedQtys": [ + "16780784820970", + "21079835547183" ], - "expectedQty": "21137746047809677709172", - "swapFee": "12690261785757260982", + "redemptionFee": "22509554746", "reserves": [ - "4746942022895118149470232", - "3196691153877914576055669" + "4057251321253849947002418", + "5096674055360292299789109" ], - "LPTokenSupply": "7839543373044679467918179" + "LPTokenSupply": "9065142617745658283783818" }, { - "type": "redeemBassets", - "inputQtys": [ - "2122693294059240554496", - "777124499394592243712" + "type": "redeemMasset", + "inputQty": "3139816864948174402355", + "expectedQtys": [ + "1404432698412183292707", + "1764232759996966965812" ], - "expectedQty": "2860745872818833229787", - "swapFee": "1717478010497598496", + "redemptionFee": "1883890118968904641", "reserves": [ - "4744819329601058908915736", - "3195914029378519983811957" + "4055846888555437763709711", + "5094909822600295332823297" ], - "LPTokenSupply": "7836681081441651186849744" + "LPTokenSupply": "9062002989269722006271927" }, { - "type": "redeemMasset", - "inputQty": "26435956781063985561", - "expectedQtys": [ - "15996386368831357810", - "10774504162164979444" - ], - "redemptionFee": "15861574068638391", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1459422867310371143680", + "expectedQty": "1471566767450099158759", + "swapFee": "875653720386222686", "reserves": [ - "4744803333214690077557926", - "3195903254874357818832513" + "4054375321787987664550952", + "5094909822600295332823297" ], - "LPTokenSupply": "7836654647071027529728022" + "LPTokenSupply": "9060543653967783673750515" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1504870131360271433728", - "expectedQty": "1483481953452925839911", + "inputQty": "212829941497622855680", + "expectedQty": "210947058044435503923", "reserves": [ - "4746308203346050348991654", - "3195903254874357818832513" + "4054588151729485287406632", + "5094909822600295332823297" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "30367112254100422656", - "6880297977461432320" - ], - "expectedQty": "36736974940062892521", - "reserves": [ - "4746338570458304449414310", - "3195910135172335280264833" - ], - "LPTokenSupply": "7838174865999420518460454" - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "452570866084004298752", - "expectedQty": "457540908103143655604", - "swapFee": "271542519650402579", + "inputQty": "19883885434789020", + "expectedQty": "20080338938952937", + "swapFee": "11930331260873", "reserves": [ - "4746338570458304449414310", - "3195452594264232136609229" + "4054588151729485287406632", + "5094909802519956393870360" ], - "LPTokenSupply": "7837722322287588479201959" + "LPTokenSupply": "9060754581143135707591505" }, { - "type": "mintMulti", - "inputQtys": [ - "3811705540083008405504", - "1776342369580583747584" - ], - "expectedQty": "5513520025632174877861", + "type": "swap", + "inputIndex": 0, + "inputQty": "44434008260435052068864", + "outputIndex": 1, + "expectedQty": "44464050083004847462547", + "swapFee": "35231968085048990312", "reserves": [ - "4750150275998387457819814", - "3197228936633812720356813" + "4099022159989920339475496", + "5050445752436951546407813" ], - "LPTokenSupply": "7843235842313220654079820" + "LPTokenSupply": "9060758104339944212490536", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "27996151367085980647424", - "757116244575073992704" - ], - "expectedQty": "28346886966769166296421", - "swapFee": "17018343185973083628", + "type": "mint", + "inputIndex": 0, + "inputQty": "26426868877492538572800", + "expectedQty": "26190651752534446527977", "reserves": [ - "4722154124631301477172390", - "3196471820389237646364109" - ], - "LPTokenSupply": "7814873638837584112008132" + "4125449028867412878048296", + "5050445752436951546407813" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "33336988371894928", + "inputQty": "12375000978961717002240", "outputIndex": 1, - "expectedQty": "33218817859145004", - "swapFee": "26290924753359", + "expectedQty": "12381725405622738446610", + "swapFee": "9811332333360547117", "reserves": [ - "4722154157968289849067318", - "3196471787170419787219105" + "4137824029846374595050536", + "5038064027031328807961203" ], - "LPTokenSupply": "7814873638840213204483467", + "LPTokenSupply": "9086949737225711995073224", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "7914247101226135899340", - "expectedQtys": [ - "4779331465284286029803", - "3235175659087339517667" + "type": "redeemBassets", + "inputQtys": [ + "2992656691664483516416", + "6147125675890824970240" ], - "redemptionFee": "4748548260735681539", + "expectedQty": "9049714979955884734990", + "swapFee": "5433088841278297819", "reserves": [ - "4717374826503005563037515", - "3193236611511332447701438" + "4134831373154710111534120", + "5031916901355437982990963" ], - "LPTokenSupply": "7806959866593813142152280" + "LPTokenSupply": "9077895132465798959870195" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "378899008622997602304", - "expectedQty": "374547788208577075036", + "inputIndex": 0, + "inputQty": "221981005844314226688", + "expectedQty": "219988763320917058280", "reserves": [ - "4717374826503005563037515", - "3193615510519955445303742" + "4135053354160554425760808", + "5031916901355437982990963" ] }, { - "type": "mintMulti", - "inputQtys": [ - "83252570781772096", - "18465543088231744" + "type": "redeemMasset", + "inputQty": "84579063452474789068", + "expectedQtys": [ + "38502386452395818709", + "46853279157182710769" ], - "expectedQty": "100323984811767619", + "redemptionFee": "50747438071484873", "reserves": [ - "4717374909755576344809611", - "3193615528985498533535486" + "4135014851774102029942099", + "5031870048076280800280194" ], - "LPTokenSupply": "7807334514706006530994935" + "LPTokenSupply": "9078030547240411209287894" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4539157432015565", - "4147869883548721" - ], - "expectedQty": "8574943046298202", - "swapFee": "5148054660575", - "reserves": [ - "4717374905216418912794046", - "3193615524837628649986765" + "150974631375927", + "602932718676708" ], - "LPTokenSupply": "7807334506126430235502214" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "31528792110038475866112", - "outputIndex": 0, - "expectedQty": "31613544452169164987735", - "swapFee": "0", + "expectedQty": "746352389803154", "reserves": [ - "4685761360764249747806311", - "3225144316947667125852877" + "4135014851925076661318026", + "5031870048679213518956902" ], - "LPTokenSupply": "7807334506126430235502214", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9078030547986763599091048" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "75881056559049763454976", - "124582082569025513062400" + "5088640846413927809024", + "1240709162042902970368" ], - "expectedQty": "197953293579677572461986", - "swapFee": "118843282117076789550", + "expectedQty": "6270913972050825818710", "reserves": [ - "4609880304205199984351335", - "3100562234378641612790477" + "4140103492771490589127050", + "5033110757841256421927270" ], - "LPTokenSupply": "7609274253592847293929632" + "LPTokenSupply": "9084301461958814424909758" }, { "type": "mint", "inputIndex": 1, - "inputQty": "21188968726850059632640", - "expectedQty": "20945645775434242795081", + "inputQty": "101977312737517612564480", + "expectedQty": "100925807135926016302323", "reserves": [ - "4609880304205199984351335", - "3121751203105491672423117" + "4140103492771490589127050", + "5135088070578774034491750" ] }, { "type": "mintMulti", "inputQtys": [ - "135633714146468", - "410051855446641" - ], - "expectedQty": "539042665740017", - "reserves": [ - "4609880304340833698497803", - "3121751203515543527869758" - ], - "LPTokenSupply": "7630219899907324202464730" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "4797939980190234624", - "expectedQty": "4729753959565626631", - "reserves": [ - "4609885102280813888732427", - "3121751203515543527869758" - ] - }, - { - "type": "redeemMasset", - "inputQty": "12388521968662344499", - "expectedQtys": [ - "7480172581423885104", - "5065470665854684207" + "479740842223877029888", + "374831414566172884992" ], - "redemptionFee": "7433113181197406", + "expectedQty": "846424882417696917364", "reserves": [ - "4609877622108232464847323", - "3121746138044877673185551" + "4140583233613714466156938", + "5135462901993340207376742" ], - "LPTokenSupply": "7630212241882626423866602" + "LPTokenSupply": "9186073693977158138129445" }, { "type": "redeemMasset", - "inputQty": "31988046454083916", + "inputQty": "273058037875437889126", "expectedQtys": [ - "19314338613936663", - "13079406205445732" + "123005889061317182121", + "152561159711258920522" ], - "redemptionFee": "19192827872450", + "redemptionFee": "163834822725262733", "reserves": [ - "4609877602793893850910660", - "3121746124965471467739819" + "4140460227724653148974817", + "5135310340833628948456220" ], - "LPTokenSupply": "7630212209896499252569931" + "LPTokenSupply": "9185800652322764972766592" }, { - "type": "redeemMasset", - "inputQty": "67867195387801", - "expectedQtys": [ - "40978119572969", - "27749822665086" + "type": "redeemBassets", + "inputQtys": [ + "3583239424739409", + "6053801649604142" ], - "redemptionFee": "40720317232", + "expectedQty": "9542532739150568", + "swapFee": "5728957017700", "reserves": [ - "4609877602752915731337691", - "3121746124937721645074733" + "4140460224141413724235408", + "5135310334779827298852078" ], - "LPTokenSupply": "7630212209828636129213853" + "LPTokenSupply": "9185800642775076172300093" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2953734809343869583360", - "expectedQty": "2986296453597575101337", - "swapFee": "1772240885606321750", + "inputQty": "109731622073174622208", + "expectedQty": "110811798603007548171", + "swapFee": "65838973243904773", "reserves": [ - "4609877602752915731337691", - "3118759828484124069973396" + "4140460224141413724235408", + "5135199522981224291303907" ], - "LPTokenSupply": "7627258652243380820262668" + "LPTokenSupply": "9185690917736900322068362" }, { - "type": "mintMulti", - "inputQtys": [ - "4423623623726087536640", - "5833332908021649506304" + "type": "redeemMasset", + "inputQty": "2305448824082608128", + "expectedQtys": [ + "1038560067919752596", + "1288072551518058080" ], - "expectedQty": "10127014937418154560553", + "redemptionFee": "1383269294449564", "reserves": [ - "4614301226376641818874331", - "3124593161392145719479700" + "4140459185581345804482812", + "5135198234908672773245827" ], - "LPTokenSupply": "7637385667180798974823221" + "LPTokenSupply": "9185688612426403168905190" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "2906526866172189", - "outputIndex": 0, - "expectedQty": "2914524529321944", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "8265939487265281540096", + "outputIndex": 1, + "expectedQty": "8271234979180207329524", + "swapFee": "6553855769992218455", "reserves": [ - "4614301223462117289552387", - "3124593164298672585651889" + "4148725125068611086022908", + "5126926999929492565916303" ], - "LPTokenSupply": "7637385667180798974823221", + "LPTokenSupply": "9185689267811980168127035", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6023829929485804765184", - "expectedQty": "6090221577074803020352", - "swapFee": "3614297957691482859", + "type": "mintMulti", + "inputQtys": [ + "190535016513810661376", + "163390112302563917824" + ], + "expectedQty": "350538064648897911883", "reserves": [ - "4614301223462117289552387", - "3118502942721597782631537" + "4148915660085124896684284", + "5127090390041795129834127" ], - "LPTokenSupply": "7631362198681108939206322" + "LPTokenSupply": "9186039805876629066038918" }, { - "type": "redeemMasset", - "inputQty": "18154817390955842764", - "expectedQtys": [ - "10970719360644258475", - "7414388214619513765" + "type": "mintMulti", + "inputQtys": [ + "92887884490915761356800", + "103857651094767112552448" ], - "redemptionFee": "10892890434573505", + "expectedQty": "194844216293574616085464", "reserves": [ - "4614290252742756645293912", - "3118495528333383163117772" + "4241803544576040658041084", + "5230948041136562242386575" ], - "LPTokenSupply": "7631344044953007026820908" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "10159438638341886574592", - "expectedQty": "10042622650938847883421", - "reserves": [ - "4614290252742756645293912", - "3128654966971725049692364" - ] + "LPTokenSupply": "9380884022170203682124382" }, { "type": "redeemBassets", "inputQtys": [ - "8674513198447", - "66144138430204" + "64189071775397375377408", + "107559247759708734357504" ], - "expectedQty": "73934357956349", - "swapFee": "44387247122", + "expectedQty": "170065129201647870596938", + "swapFee": "102100337723622896095", "reserves": [ - "4614290252734082132095465", - "3128654966905580911262160" + "4177614472800643282663676", + "5123388793376853508029071" ], - "LPTokenSupply": "7641386667529971568225569" + "LPTokenSupply": "9210727002664604550920957" }, { - "type": "redeemMasset", - "inputQty": "7151098339269720984780", - "expectedQtys": [ - "4315636212645284040764", - "2926156772225133591907" - ], - "redemptionFee": "4290659003561832590", + "type": "redeem", + "inputIndex": 1, + "inputQty": "69307858342851616768", + "expectedQty": "69988388708578759279", + "swapFee": "41584715005710970", "reserves": [ - "4609974616521436848054701", - "3125728810133355777670253" + "4177614472800643282663676", + "5123318804988144929269792" ], - "LPTokenSupply": "7634235998256602203424048" + "LPTokenSupply": "9210657698964733199875286" }, { - "type": "redeemMasset", - "inputQty": "209956276601222515916", - "expectedQtys": [ - "126707161013684130758", - "85912018302939985582" + "type": "redeemBassets", + "inputQtys": [ + "210890487110391791616", + "333641071427286073344" ], - "redemptionFee": "125973765960733509", + "expectedQty": "539200422396785224101", + "swapFee": "323714482127347542", "reserves": [ - "4609847909360423163923943", - "3125642898115052837684671" + "4177403582313532890872060", + "5122985163916717643196448" ], - "LPTokenSupply": "7634026054577377576981482" + "LPTokenSupply": "9210118207199302500038396" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "26460708279301208801280", - "expectedQty": "26825744174850471562501", - "swapFee": "15876424967580725280", + "inputQty": "4744352101072495443968", + "expectedQty": "4701850598230150725300", + "reserves": [ + "4182147934414605386316028", + "5122985163916717643196448" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "81919721834287219081216", + "36469567373881846530048" + ], + "expectedQty": "117277881590005787172025", "reserves": [ - "4583022165185572692361442", - "3125642898115052837684671" + "4264067656248892605397244", + "5159454731290599489726496" ], - "LPTokenSupply": "7607566933940573126252730" + "LPTokenSupply": "9332097939387538437935721" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "858431182394828652544", - "expectedQty": "867927363140673785465", - "swapFee": "515058709436897191", + "type": "redeemMasset", + "inputQty": "12555260521930400202752", + "expectedQtys": [ + "5733368720160375047119", + "6937285886192406366802" + ], + "redemptionFee": "7533156313158240121", "reserves": [ - "4583022165185572692361442", - "3124774970751912163899206" + "4258334287528732230350125", + "5152517445404407083359694" ], - "LPTokenSupply": "7606708554264049241289905" + "LPTokenSupply": "9319543432181239353556981" }, { "type": "redeemBassets", "inputQtys": [ - "68215752460464918888448", - "41643043585409266221056" + "534826047705349554176", + "120997071768385290240" ], - "expectedQty": "108410308280019747022722", - "swapFee": "65085236109677654806", + "expectedQty": "649762220596166421817", + "swapFee": "390091387190013861", "reserves": [ - "4514806412725107773472994", - "3083131927166502897678150" + "4257799461481026880795949", + "5152396448332638698069454" ], - "LPTokenSupply": "7498239669271530784377856" + "LPTokenSupply": "9318893318878394716122688" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "38010393830920036352", - "expectedQty": "38534616949168575130", - "swapFee": "22806236298552021", + "inputQty": "39149885128234959372288", + "expectedQty": "39481324978111213386428", + "swapFee": "23489931076940975623", "reserves": [ - "4514767878108158604897864", - "3083131927166502897678150" + "4218318136502915667409521", + "5152396448332638698069454" ], - "LPTokenSupply": "7498201661158323494196706" + "LPTokenSupply": "9279745782743267450847962" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1027438880554031488", - "expectedQty": "1015572854024383644", + "inputIndex": 0, + "inputQty": "169860728486855580844032", + "expectedQty": "168323692668586660997016", "reserves": [ - "4514767878108158604897864", - "3083132954605383451709638" + "4388178864989771248253553", + "5152396448332638698069454" ] }, { - "type": "redeemMasset", - "inputQty": "7648849423919333376", - "expectedQtys": [ - "4602711010051329664", - "3143189279879589377" - ], - "redemptionFee": "4589309654351600", - "reserves": [ - "4514763275397148553568200", - "3083129811416103572120261" - ], - "LPTokenSupply": "7498195028340684564682134" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "25700164171117319159808", - "45303304893496781963264" - ], - "expectedQty": "70116004907707824866676", - "swapFee": "42094859860541019531", + "type": "mint", + "inputIndex": 1, + "inputQty": "193720361551644065792", + "expectedQty": "191747206360231167201", "reserves": [ - "4489063111226031234408392", - "3037826506522606790156997" - ], - "LPTokenSupply": "7428041138059102252897879" + "4388178864989771248253553", + "5152590168694190342135246" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "22028912752093256744960", - "expectedQty": "21774945750453333386097", + "inputIndex": 0, + "inputQty": "36093049639676633088", + "expectedQty": "35763837931479350407", "reserves": [ - "4489063111226031234408392", - "3059855419274700046901957" + "4388214958039410924886641", + "5152590168694190342135246" ] }, { "type": "mintMulti", "inputQtys": [ - "279718718588743843840", - "138423877995834114048" + "21514465663173221416960", + "17107709332965556224000" ], - "expectedQty": "412570536849243722342", + "expectedQty": "38251664463518612535025", "reserves": [ - "4489342829944619978252232", - "3059993843152695881016005" + "4409729423702584146303601", + "5169697878027155898359246" ], - "LPTokenSupply": "7450228654346404830006318" + "LPTokenSupply": "9486548650919664434897611" }, { "type": "redeemMasset", - "inputQty": "1082802260918367", + "inputQty": "7556381714884354637824", "expectedQtys": [ - "652081184263747", - "444466926378041" + "3510402681838818688670", + "4115382045387589775075" ], - "redemptionFee": "649681356551", + "redemptionFee": "4533829028930612782", "reserves": [ - "4489342829292538793988485", - "3059993842708228954637964" + "4406219021020745327614931", + "5165582495981768308584171" ], - "LPTokenSupply": "7450228653263667537223606" + "LPTokenSupply": "9478992722587682973321065" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3309717760940265984", - "expectedQty": "3271505529843343054", + "inputQty": "12321160029421256704", + "expectedQty": "12195716578301414299", "reserves": [ - "4489342829292538793988485", - "3059997152425989894903948" + "4406219021020745327614931", + "5165594817141797729840875" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "21360009536678452527104", - "expectedQty": "21654671146340668635600", - "swapFee": "12816005722007071516", + "type": "redeemBassets", + "inputQtys": [ + "83330926280040", + "64134327971307" + ], + "expectedQty": "146051699997584", + "swapFee": "87683630176", "reserves": [ - "4467688158146198125352885", - "3059997152425989894903948" + "4406219020937414401334891", + "5165594817077663401869568" ], - "LPTokenSupply": "7428873196833091128746707" + "LPTokenSupply": "9479004918158130659470620" }, { "type": "redeemMasset", - "inputQty": "15385578526700738969", + "inputQty": "3249757461682583142", "expectedQtys": [ - "9247260303091533468", - "6333609059890886610" - ], - "redemptionFee": "9231347116020443", - "reserves": [ - "4467678910885895033819417", - "3059990818816930004017338" - ], - "LPTokenSupply": "7428857812177699139609782" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "6653775357507424747520", - "expectedQty": "6745506343520416889803", - "swapFee": "3992265214504454848", - "reserves": [ - "4460933404542374616929614", - "3059990818816930004017338" - ], - "LPTokenSupply": "7422204436046713165307746" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "318421908062177132544", - "210794552172116770816" + "1509710331281811192", + "1769896554279500973" ], - "expectedQty": "522258137477228709083", - "swapFee": "313543008291312012", + "redemptionFee": "1949854477009549", "reserves": [ - "4460614982634312439797070", - "3059780024264757887246522" + "4406217511227083119523699", + "5165593047181109122368595" ], - "LPTokenSupply": "7421681895720528474417851" + "LPTokenSupply": "9479001668595654424588432" }, { "type": "redeemMasset", - "inputQty": "13964447717271281664", + "inputQty": "4209419770815", "expectedQtys": [ - "8387943807311742160", - "5753749876684172639" + "1955531941323", + "2292551871055" ], - "redemptionFee": "8378668630362768", + "redemptionFee": "2525651862", "reserves": [ - "4460606594690505128054910", - "3059774270514881203073883" + "4406217511225127587582376", + "5165593047178816570497540" ], - "LPTokenSupply": "7421667932110678066172463" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1339940663678273323008", - "expectedQty": "1324427142138816611124", - "reserves": [ - "4460606594690505128054910", - "3061114211178559476396891" - ] + "LPTokenSupply": "9479001668591445257382803" }, { "type": "mint", "inputIndex": 0, - "inputQty": "26243223175260354379776", - "expectedQty": "25870656953171392558053", + "inputQty": "21441353151328813056000", + "expectedQty": "21245459751832932366415", "reserves": [ - "4486849817865765482434686", - "3061114211178559476396891" + "4427658864376456400638376", + "5165593047178816570497540" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "423198732281016576", - "expectedQty": "417186816106851699", + "type": "redeem", + "inputIndex": 1, + "inputQty": "663397847163773824", + "expectedQty": "669809100705292534", + "swapFee": "398038708298264", "reserves": [ - "4486850241064497763451262", - "3061114211178559476396891" - ] + "4427658864376456400638376", + "5165592377369715865205006" + ], + "LPTokenSupply": "9500246464985234896805220" }, { - "type": "mintMulti", - "inputQtys": [ - "32013498576630358016", - "12141851387960594432" - ], - "expectedQty": "43560309604777382691", + "type": "swap", + "inputIndex": 0, + "inputQty": "70654740723992528683008", + "outputIndex": 1, + "expectedQty": "70663922663181415213117", + "swapFee": "56005254217340047736", "reserves": [ - "4486882254563074393809278", - "3061126353029947436991323" + "4498313605100448929321384", + "5094928454706534449991889" ], - "LPTokenSupply": "7448906993702409159576030" + "LPTokenSupply": "9500252065510656630809993", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "2792740837356490719232", - "expectedQty": "2753064691175320543673", + "inputQty": "3812345864463341060096", + "expectedQty": "3777050421180022953308", "reserves": [ - "4489674995400430884528510", - "3061126353029947436991323" + "4502125950964912270381480", + "5094928454706534449991889" ] }, { "type": "redeemBassets", "inputQtys": [ - "7631377946721663320064", - "4494735133192767930368" + "1076620772213615624192", + "590485857393778229248" ], - "expectedQty": "11965778696388780709391", - "swapFee": "7183777484323862743", + "expectedQty": "1651187778183956075344", + "swapFee": "991307451381202366", "reserves": [ - "4482043617453709221208446", - "3056631617896754669060955" + "4501049330192698654757288", + "5094337968849140671762641" ], - "LPTokenSupply": "7439687814297459807933842" + "LPTokenSupply": "9502377035976946454605826" }, { "type": "mintMulti", "inputQtys": [ - "5147675202812035203072", - "34996438151418284605440" + "48028343686527698599936", + "77979060919459953770496" ], - "expectedQty": "39665995026882644770768", + "expectedQty": "124776762149330157838300", "reserves": [ - "4487191292656521256411518", - "3091628056048172953666395" + "4549077673879226353357224", + "5172317029768600625533137" ], - "LPTokenSupply": "7479353809324342452704610" + "LPTokenSupply": "9627153798126276612444126" }, { "type": "mint", "inputIndex": 1, - "inputQty": "16085869083664404447232", - "expectedQty": "15899117922239188807488", + "inputQty": "37710167939703143137280", + "expectedQty": "37329208640678820063693", "reserves": [ - "4487191292656521256411518", - "3107713925131837358113627" + "4549077673879226353357224", + "5210027197708303768670417" ] }, { "type": "redeemBassets", "inputQtys": [ - "34927366226820370268160", - "52380623116692508114944" - ], - "expectedQty": "86205287417529674677857", - "swapFee": "51754224985509110272", - "reserves": [ - "4452263926429700886143358", - "3055333302015144849998683" - ], - "LPTokenSupply": "7409001061026565008634995" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "24292697443174245728256", - "53042200786490793918464" + "167114290432851170033664", + "160715649305723531165696" ], - "expectedQty": "76376547680260244706683", - "swapFee": "45853440672559682633", + "expectedQty": "324664495005736168666206", + "swapFee": "194915646391276467079", "reserves": [ - "4427971228986526640415102", - "3002291101228654056080219" + "4381963383446375183323560", + "5049311548402580237504721" ], - "LPTokenSupply": "7332583245249699460213941" + "LPTokenSupply": "9339643087679467115021240" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "43210634775440448815104", - "expectedQty": "43807758930272910366082", - "swapFee": "25926380865264269289", + "inputIndex": 1, + "inputQty": "113158004075968299008", + "expectedQty": "114249888590817504275", + "swapFee": "67894802445580979", "reserves": [ - "4384163470056253730049020", - "3002291101228654056080219" + "4381963383446375183323560", + "5049197298513989420000446" ], - "LPTokenSupply": "7289375203112345537825765" + "LPTokenSupply": "9339529936464871391280329" }, { - "type": "redeemMasset", - "inputQty": "75480465396451678617", - "expectedQtys": [ - "45370163924790778549", - "31069653388389022783" - ], - "redemptionFee": "45288279237871007", - "reserves": [ - "4384118099892328939270471", - "3002260031575265667057436" + "type": "mintMulti", + "inputQtys": [ + "3659944028472883019776", + "577648771486679826432" ], - "LPTokenSupply": "7289299727175777009934248" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4075001894515043", - "expectedQty": "4131261494714871", - "swapFee": "2445001136709", + "expectedQty": "4198002297834325845852", "reserves": [ - "4384118095761067444555600", - "3002260031575265667057436" + "4385623327474848066343336", + "5049774947285476099826878" ], - "LPTokenSupply": "7289299723101019615532875" + "LPTokenSupply": "9343727938762705717126181" }, { "type": "redeemMasset", - "inputQty": "1062730287407282572492", + "inputQty": "478745457363789209", "expectedQtys": [ - "638791074556660232369", - "437446453261097744172" + "224571766338015642", + "258580547129275319" ], - "redemptionFee": "637638172444369543", + "redemptionFee": "287247274418273", "reserves": [ - "4383479304686510784323231", - "3001822585122004569313264" + "4385623102903081728327694", + "5049774688704928970551559" ], - "LPTokenSupply": "7288237056577429577397337" + "LPTokenSupply": "9343727460045973080778799" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8599978953316572856320", - "5495551750293541617664" + "107358901871855706046464", + "32700355630781622648832" ], - "expectedQty": "13909659915708428686137", + "expectedQty": "138740505968779000899598", + "swapFee": "83294280149357014748", "reserves": [ - "4392079283639827357179551", - "3007318136872298110930928" + "4278264201031226022281230", + "5017074333074147347902727" ], - "LPTokenSupply": "7302146716493138006083474" + "LPTokenSupply": "9204911989225059658565926" }, { - "type": "redeemMasset", - "inputQty": "1755445821150554316", - "expectedQtys": [ - "1055228207465162835", - "722529517777590218" + "type": "mintMulti", + "inputQtys": [ + "14355235775614627610624", + "9596498133871331639296" ], - "redemptionFee": "1053267492690332", + "expectedQty": "23722228263455206064773", "reserves": [ - "4392078228411619892016716", - "3007317414342780333340710" + "4292619436806840649891854", + "5026670831208018679542023" ], - "LPTokenSupply": "7302144961152643604798191" + "LPTokenSupply": "9228634217488514864630699" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1066898971563919671296", - "expectedQty": "1078754593220659895362", - "swapFee": "640139382938351802", + "inputQty": "1335040820359850885120", + "expectedQty": "1348001775567858041880", + "swapFee": "801024492215910531", "reserves": [ - "4392078228411619892016716", - "3006238659749559673445348" + "4292619436806840649891854", + "5025322829432450821500143" ], - "LPTokenSupply": "7301078126195017978962075" + "LPTokenSupply": "9227299256770604235336632" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "617601810013221945344", - "257217583247810592768" + "3278284852199322112", + "3388817796849580544" ], - "expectedQty": "863063006262049121816", + "expectedQty": "6602462459952397767", + "swapFee": "3963855789445105", "reserves": [ - "4392695830221633113962060", - "3006495877332807484038116" + "4292616158521988450569742", + "5025319440614653971919599" ], - "LPTokenSupply": "7301941189201280028083891" + "LPTokenSupply": "9227292650740674072438269" }, { "type": "redeemMasset", - "inputQty": "1892769478899815101235", + "inputQty": "3083962658771817201664", "expectedQtys": [ - "1137967530259496403269", - "778859912112592516911" + "1433825227109876619455", + "1678563729471661156223" ], - "redemptionFee": "1135661687339889060", + "redemptionFee": "1850377595263090320", "reserves": [ - "4391557862691373617558791", - "3005717017420694891521205" + "4291182333294878573950287", + "5023640876885182310763376" ], - "LPTokenSupply": "7300048533288548946971562" + "LPTokenSupply": "9224208873119661781545637" }, { - "type": "redeemBassets", - "inputQtys": [ - "60669629804833618788352", - "230140109221975503667200" - ], - "expectedQty": "287310902993104592079522", - "swapFee": "172490035817353167148", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8050959383241098788864", + "expectedQty": "8120523947461330869599", + "swapFee": "4830575629944659273", "reserves": [ - "4330888232886539998770439", - "2775576908198719387854005" + "4283061809347417243080688", + "5023640876885182310763376" ], - "LPTokenSupply": "7012582389263208737041605" + "LPTokenSupply": "9216158396793983677222700" }, { - "type": "mintMulti", - "inputQtys": [ - "1127137943066448625664", - "2642160157208091295744" + "type": "redeemMasset", + "inputQty": "44647578296390334283776", + "expectedQtys": [ + "20736796423237679906566", + "24322370959034936344531" + ], + "redemptionFee": "26788546977834200570", + "reserves": [ + "4262325012924179563174122", + "4999318505926147374418845" ], - "expectedQty": "3723189077929665305389", + "LPTokenSupply": "9171513497352291126358981" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "283490218924223008", + "expectedQty": "286244969413756833", + "swapFee": "170094131354533", "reserves": [ - "4332015370829606447396103", - "2778219068355927479149749" + "4262325012924179563174122", + "4999318219681177960662012" ], - "LPTokenSupply": "7016305578341138402346994" + "LPTokenSupply": "9171513213879081615271426" }, { "type": "mintMulti", "inputQtys": [ - "862648588226178580480", - "468595179101484941312" + "14352419195756247777280", + "8574488328985805586432" ], - "expectedQty": "1313495178858266884300", + "expectedQty": "22707790100842708659070", "reserves": [ - "4332878019417832625976583", - "2778687663535028964091061" + "4276677432119935810951402", + "5007892708010163766248444" ], - "LPTokenSupply": "7017619073519996669231294" + "LPTokenSupply": "9194221003979924323930496" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "51941273130032880", - "outputIndex": 1, - "expectedQty": "51734445440361455", - "swapFee": "40952967139130", + "type": "redeemMasset", + "inputQty": "148982247736436929331", + "expectedQtys": [ + "69257278783626576442", + "81098709664718972718" + ], + "redemptionFee": "89389348641862157", "reserves": [ - "4332878071359105756009463", - "2778687611800583523729606" + "4276608174841152184374960", + "5007811609300499047275726" ], - "LPTokenSupply": "7017619073524091965945207", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9194072030671122751187380" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "173789156222633718579200", - "expectedQty": "175638909913591471474382", - "swapFee": "104273493733580231147", + "type": "redeemMasset", + "inputQty": "1305400699193750716416", + "expectedQtys": [ + "606840763333362347001", + "710596831735810195906" + ], + "redemptionFee": "783240419516250429", "reserves": [ - "4332878071359105756009463", - "2603048701886992052255224" + "4276001334077818822027959", + "5007101012468763237079820" ], - "LPTokenSupply": "6843840344650831605389121" + "LPTokenSupply": "9192766708295970952096006" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "233138831101053239296", - "expectedQty": "230582874616830609741", + "inputQty": "36292469406568984576", + "expectedQty": "36644945751157391353", + "swapFee": "21775481643941390", "reserves": [ - "4332878071359105756009463", - "2603281840718093105494520" - ] + "4276001334077818822027959", + "5007064367523012079688467" + ], + "LPTokenSupply": "9192730418004112547505569" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "376394824044649054208", - "expectedQty": "372268075881916049729", + "inputIndex": 0, + "inputQty": "4453257178396395307008", + "expectedQty": "4412425208968505531444", "reserves": [ - "4332878071359105756009463", - "2603658235542137754548728" + "4280454591256215217334967", + "5007064367523012079688467" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "192638535569713954816", - "280228218571338416128" - ], - "expectedQty": "466969050700237573341", - "swapFee": "280349640204265103", - "reserves": [ - "4332685432823536042054647", - "2603378007323566416132600" - ], - "LPTokenSupply": "6843975974235953930636656" - }, { "type": "redeemMasset", - "inputQty": "694494594722889932", + "inputQty": "1728968955833160302592", "expectedQtys": [ - "439396808095608735", - "264020087407732979" + "804198952583460982474", + "940712215030936432829" ], - "redemptionFee": "416696756833733", + "redemptionFee": "1037381373499896181", "reserves": [ - "4332684993426727946445912", - "2603377743303479008399621" + "4279650392303631756352493", + "5006123655307981143255638" ], - "LPTokenSupply": "6843975279783028883430097" + "LPTokenSupply": "9195413977995385242724039" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1796991245672710144000", - "expectedQty": "1770634948247247551235", + "inputIndex": 1, + "inputQty": "19587419082404860526592", + "expectedQty": "19387316903951917250760", "reserves": [ - "4334481984672400656589912", - "2603377743303479008399621" + "4279650392303631756352493", + "5025711074390386003782230" ] }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "44340797114389033385984", - "expectedQty": "43852699502044721611528", + "inputQty": "68302744125503520", + "outputIndex": 0, + "expectedQty": "68229317518480569", + "swapFee": "0", "reserves": [ - "4334481984672400656589912", - "2647718540417868041785605" - ] + "4279650324074314237871924", + "5025711142693130129285750" + ], + "LPTokenSupply": "9214801294899337159974799", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "6957691787977039872", + "inputQty": "37419522226374233", "expectedQtys": [ - "4374695334761187331", - "2672282867361412197" + "17368403269763957", + "20396193902248540" ], - "redemptionFee": "4174615072786223", + "redemptionFee": "22451713335824", "reserves": [ - "4334477609977065895402581", - "2647715868135000680373408" + "4279650306705910968107967", + "5025711122296936227037210" ], - "LPTokenSupply": "6889591656958994382831610" + "LPTokenSupply": "9214801257482060104934148" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "60191625533322518593536", - "expectedQty": "59310737465061590024372", + "inputIndex": 1, + "inputQty": "6783207942161769", + "expectedQty": "6713870474190953", "reserves": [ - "4394669235510388413996117", - "2647715868135000680373408" + "4279650306705910968107967", + "5025711129080144169198979" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "786914760425198321664", - "expectedQty": "778274834764339489060", + "inputQty": "156966575484859678720", + "expectedQty": "155362066709149281944", "reserves": [ - "4394669235510388413996117", - "2648502782895425878695072" + "4279650306705910968107967", + "5025868095655629028877699" ] }, { "type": "redeemBassets", "inputQtys": [ - "28322709568265953280", - "90283626180842242048" + "10707956221326777122816", + "11363660437256971223040" ], - "expectedQty": "117199890770404939937", - "swapFee": "70362151753294940", + "expectedQty": "21857408570020692348193", + "swapFee": "13122318533132294785", "reserves": [ - "4394640912800820148042837", - "2648412499269245036453024" + "4268942350484584190985151", + "5014504435218372057654659" ], - "LPTokenSupply": "6949563406042113329439658" + "LPTokenSupply": "9193087407605939216993544" }, { "type": "mintMulti", "inputQtys": [ - "174172068515564071419904", - "132897150961686140682240" + "4988731420637237248", + "19484434671512178688" ], - "expectedQty": "303056467254712911838276", + "expectedQty": "24228274240061298437", "reserves": [ - "4568812981316384219462741", - "2781309650230931177135264" + "4268947339216004828222399", + "5014523919653043569833347" ], - "LPTokenSupply": "7252619873296826241277934" + "LPTokenSupply": "9193111635880179278291981" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "6333107474040382029824", - "outputIndex": 1, - "expectedQty": "6304979419617667948880", - "swapFee": "4992385803002070806", + "type": "redeemBassets", + "inputQtys": [ + "907823906496755138560", + "936466490180027547648" + ], + "expectedQty": "1826402951829383552269", + "swapFee": "1096499670900170233", "reserves": [ - "4575146088790424601492565", - "2775004670811313509186384" + "4268039515309508073083839", + "5013587453162863542285699" ], - "LPTokenSupply": "7252620372535406541485014", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9191284246078646084586501" }, { - "type": "redeemMasset", - "inputQty": "25936084034474454548480", - "expectedQtys": [ - "16351355856690307203185", - "9917735520530619389938" + "type": "redeemBassets", + "inputQtys": [ + "54531929538450702336", + "15907621716476901376" + ], + "expectedQty": "69777557914499345630", + "swapFee": "41891669750549937", + "reserves": [ + "4267984983379969622381503", + "5013571545541147065384323" + ], + "LPTokenSupply": "9191214430818228809745926" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "369957368990781248", + "220699301795727200" ], - "redemptionFee": "15561650420684672729", + "expectedQty": "585012479486021872", + "swapFee": "351218218622786", "reserves": [ - "4558794732933734294289380", - "2765086935290782889796446" + "4267984613422600631600255", + "5013571324841845269657123" ], - "LPTokenSupply": "7226685844665974155403806" + "LPTokenSupply": "9191213845489652926963545" }, { "type": "swap", "inputIndex": 1, - "inputQty": "1359680055962309754880", + "inputQty": "2945210216567653531648", "outputIndex": 0, - "expectedQty": "1364670524689479959144", + "expectedQty": "2942024965671948467318", "swapFee": "0", "reserves": [ - "4557430062409044814330236", - "2766446615346745199551326" + "4265042588456928683132937", + "5016516535058412923188771" ], - "LPTokenSupply": "7226685844665974155403806", + "LPTokenSupply": "9191213845489652926963545", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "14023551199262229397504", - "expectedQty": "13868791345012178474901", + "type": "redeemBassets", + "inputQtys": [ + "86581099248294316474368", + "14661561746443965825024" + ], + "expectedQty": "100302670689082857857656", + "swapFee": "60217733053281683724", "reserves": [ - "4557430062409044814330236", - "2780470166546007428948830" - ] + "4178461489208634366658569", + "5001854973311968957363747" + ], + "LPTokenSupply": "9090856978840822115590536" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "108260022609461872", - "expectedQty": "109800192628606150", - "swapFee": "64956013565677", + "type": "redeemMasset", + "inputQty": "1083749788202", + "expectedQtys": [ + "497828721804", + "595929165422" + ], + "redemptionFee": "650249872", "reserves": [ - "4557429952608852185724086", - "2780470166546007428948830" + "4178461489208136537936765", + "5001854973311373028198325" ], - "LPTokenSupply": "7240554527757459325773402" + "LPTokenSupply": "9090856978839738430827321" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "1895975014518193651712", - "expectedQty": "1916004427083464033235", - "swapFee": "1137585008710916191", + "inputQty": "43844822902065897472", + "expectedQty": "43393710844185852964", "reserves": [ - "4557429952608852185724086", - "2778554162118923964915595" - ], - "LPTokenSupply": "7238658666501442003213309" + "4178461489208136537936765", + "5001898818134275094095797" + ] }, { "type": "redeemMasset", - "inputQty": "2581247319002765590528", + "inputQty": "1138962649620726374", "expectedQtys": [ - "1624167691289789315236", - "990215526193441935764" + "523188672984079509", + "626291952628775992" ], - "redemptionFee": "1548748391401659354", + "redemptionFee": "683377589772435", "reserves": [ - "4555805784917562396408850", - "2777563946592730522979831" + "4178460966019463553857256", + "5001898191842322465319805" ], - "LPTokenSupply": "7236077574057278377788716" + "LPTokenSupply": "9090899233656270754931154" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "17727188145868283904", + "expectedQty": "17565988679528198806", + "reserves": [ + "4178478693207609422141160", + "5001898191842322465319805" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "137176297181596021161984", - "expectedQty": "138605621073121131746257", - "swapFee": "82305778308957612697", + "inputIndex": 0, + "inputQty": "57598833460775305084928", + "expectedQty": "58091001607278187186955", + "swapFee": "34559300076465183050", "reserves": [ - "4555805784917562396408850", - "2638958325519609391233574" + "4120387691600331234954205", + "5001898191842322465319805" ], - "LPTokenSupply": "7098909507453513252388001" + "LPTokenSupply": "9033321422114182624563337" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3368254492231420870656", - "2539884807515335557120" + "12213655163211201118208", + "8781126989092531208192" ], - "expectedQty": "5830928767797781616453", + "expectedQty": "20793569462848388278997", + "swapFee": "12483631856823126843", "reserves": [ - "4559174039409793817279506", - "2641498210327124726790694" + "4108174036437120033835997", + "4993117064853229934111613" ], - "LPTokenSupply": "7104740436221311034004454" + "LPTokenSupply": "9012516617382663095470180" }, { "type": "redeemMasset", - "inputQty": "2625089594502454", + "inputQty": "12962294327475878297", "expectedQtys": [ - "1683532212549580", - "975406353878403" + "5905055430304749566", + "7177065230549458357" ], - "redemptionFee": "1575053756701", + "redemptionFee": "7777376596485526", "reserves": [ - "4559174037726261604729926", - "2641498209351718372912291" + "4108168131381689729086431", + "4993109887787999384653256" ], - "LPTokenSupply": "7104740433596378944877670" + "LPTokenSupply": "9012503655866073279240435" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "109004806173377987346432", - "110834381976848771842048" + "20130949710800777904128", + "7836631179780314628096" ], - "expectedQty": "217029583010358843965095", + "expectedQty": "27704625877090478975405", + "swapFee": "16632755179361904527", "reserves": [ - "4668178843899639592076358", - "2752332591328567144754339" + "4088037181670888951182303", + "4985273256608219070025160" ], - "LPTokenSupply": "7321770016606737788842765" + "LPTokenSupply": "8984784060509321374550954" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "326429720144654756741120", - "expectedQty": "329694059869370501856555", - "swapFee": "195857832086792854044", + "inputQty": "17314195187936966656", + "expectedQty": "17134946504402943569", + "reserves": [ + "4088037181670888951182303", + "4985290570803407006991816" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "10406514501337734971392", + "outputIndex": 0, + "expectedQty": "10392457850245099633597", + "swapFee": "0", "reserves": [ - "4668178843899639592076358", - "2422638531459196642897784" + "4077644723820643851548706", + "4995697085304744741963208" ], - "LPTokenSupply": "6995359882245291711387049" + "LPTokenSupply": "8984801195455825777494523", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "414067258129016684544", - "expectedQtys": [ - "276151660937958215658", - "143314058155466878828" + "type": "redeem", + "inputIndex": 0, + "inputQty": "451657791022731755520", + "expectedQty": "455491835360714448165", + "swapFee": "270994674613639053", + "reserves": [ + "4077189231985283137100541", + "4995697085304744741963208" + ], + "LPTokenSupply": "8984349564764270507102908" + }, + { + "type": "mintMulti", + "inputQtys": [ + "4040261724814760214528", + "154067934006500491264" ], - "redemptionFee": "248440354877410010", + "expectedQty": "4156313846481463760053", "reserves": [ - "4667902692238701633860700", - "2422495217401041176018956" + "4081229493710097897315069", + "4995851153238751242454472" ], - "LPTokenSupply": "6994945839831198182443506" + "LPTokenSupply": "8988505878610751970862961" }, { "type": "redeemBassets", "inputQtys": [ - "40946765952564346880", - "124175770693680578560" + "875082249541984768", + "6740273288012468224" ], - "expectedQty": "163245648676980242096", - "swapFee": "98006192921941310", + "expectedQty": "7537606701358717421", + "swapFee": "4525279188328227", "reserves": [ - "4667861745472749069513820", - "2422371041630347495440396" + "4081228618627848355330301", + "4995844412965463229986248" ], - "LPTokenSupply": "6994782505976947572454230" + "LPTokenSupply": "8988498336931299342650134" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "964203567915303", - "expectedQty": "978505103789640", - "swapFee": "578522140749", + "inputQty": "12083126283413720399872", + "outputIndex": 1, + "expectedQty": "12089687238256408440170", + "swapFee": "9579295742999529940", "reserves": [ - "4667861744494243965724180", - "2422371041630347495440396" + "4093311744911262075730173", + "4983754725727206821546078" ], - "LPTokenSupply": "6994782505012801856753001" + "LPTokenSupply": "8988499294860873642603128", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "80583263262317789184", - "expectedQty": "79357836781579217206", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2967460168248567808", + "expectedQty": "2996691639338311908", + "swapFee": "1780476100949140", "reserves": [ - "4667942327757506283513364", - "2422371041630347495440396" - ] + "4093311744911262075730173", + "4983751729035567483234170" + ], + "LPTokenSupply": "8988496327578753004130234" }, { "type": "redeemMasset", - "inputQty": "40873438153782768435", + "inputQty": "14002850876854465331", "expectedQtys": [ - "27260063010038910107", - "14146273152491965174" + "6372995109352852271", + "7759346801488495303" ], - "redemptionFee": "24524062892269661", + "redemptionFee": "8401710526112679", "reserves": [ - "4667915067694496244603257", - "2422356895357195003475222" + "4093305371916152722877902", + "4983743969688765994738867" ], - "LPTokenSupply": "6994820991863835942428738" + "LPTokenSupply": "8988482325568047202276170" }, { "type": "redeemBassets", "inputQtys": [ - "126284660158202545963008", - "89519924112444260089856" + "3794570970333462396928", + "16476388038621488218112" ], - "expectedQty": "212980863684037319017414", - "swapFee": "127865237352834091865", + "expectedQty": "20066201246917768745868", + "swapFee": "12046948917501161944", "reserves": [ - "4541630407536293698640249", - "2332836971244750743385366" + "4089510800945819260480974", + "4967267581650144506520755" ], - "LPTokenSupply": "6781725049466181072728644" + "LPTokenSupply": "8968405282067103682484551" }, { "type": "mint", "inputIndex": 0, - "inputQty": "131615002063735701504", - "expectedQty": "129606498392316971592", + "inputQty": "12518689623968422297600", + "expectedQty": "12405357392159693291620", "reserves": [ - "4541762022538357434341753", - "2332836971244750743385366" + "4102029490569787682778574", + "4967267581650144506520755" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "122698805194061136", - "expectedQty": "121466220029567825", + "inputIndex": 0, + "inputQty": "118432613381203935887360", + "expectedQty": "117353449965870506411076", "reserves": [ - "4541762022538357434341753", - "2332837093943555937446502" + "4220462103950991618665934", + "4967267581650144506520755" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "331390577193471936", - "expectedQty": "328061554256545830", + "type": "redeem", + "inputIndex": 0, + "inputQty": "11395445896724208418816", + "expectedQty": "11493885314482999329879", + "swapFee": "6837267538034525051", "reserves": [ - "4541762022538357434341753", - "2332837425334133130918438" - ] + "4208968218636508619336055", + "4967267581650144506520755" + ], + "LPTokenSupply": "9086769327255163477220936" }, { "type": "redeemMasset", - "inputQty": "1892198769773963640832", + "inputQty": "222639051141730376089", "expectedQtys": [ - "1266432270838477603371", - "650492162161264461653" + "103063961276051827295", + "121632249779453698471" ], - "redemptionFee": "1135319261864378184", + "redemptionFee": "133583430685038225", "reserves": [ - "4540495590267518956738382", - "2332186933171971866456785" + "4208865154675232567508760", + "4967145949400365052822284" ], - "LPTokenSupply": "6779963020254499898610877" + "LPTokenSupply": "9086546701562364815348669" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "7179726004535733248", - "outputIndex": 1, - "expectedQty": "7136190955630397391", - "swapFee": "5656126980912210", + "inputQty": "223819795402165894250496", + "expectedQty": "225729055657682095303205", + "swapFee": "134291877241299536550", "reserves": [ - "4540502769993523492471630", - "2332179796981016236059394" + "3983136099017550472205555", + "4967145949400365052822284" ], - "LPTokenSupply": "6779963020820112596702098", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8862740335347923051051828" }, { "type": "redeemMasset", - "inputQty": "72883558884280409", + "inputQty": "15841246257660991897", "expectedQtys": [ - "48780420067904027", - "25055531498062575" + "7115178684285265037", + "8872940844181696333" ], - "redemptionFee": "43730135330568", + "redemptionFee": "9504747754596595", "reserves": [ - "4540502721213103424567603", - "2332179771925484737996819" + "3983128983838866186940518", + "4967137076459520871125951" ], - "LPTokenSupply": "6779962947940926725954745" + "LPTokenSupply": "8862724495052140165519590" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3482701154290961920", - "expectedQty": "3429552818786093649", + "inputIndex": 1, + "inputQty": "158613012270649376", + "expectedQty": "156957359869253875", "reserves": [ - "4540506203914257715529523", - "2332179771925484737996819" + "3983128983838866186940518", + "4967137235072533141775327" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "77732879402111614976", - "expectedQty": "78890153519531298583", - "swapFee": "46639727641266968", + "type": "swap", + "inputIndex": 1, + "inputQty": "87748573403590898483200", + "outputIndex": 0, + "expectedQty": "87605456522617343550521", + "swapFee": "0", "reserves": [ - "4540427313760738184230940", - "2332179771925484737996819" + "3895523527316248843389997", + "5054885808476124040258527" ], - "LPTokenSupply": "6779888649278316164560114" + "LPTokenSupply": "8862724652009500034773465", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "500544504906606772224", - "expectedQty": "495515729792077867010", + "inputIndex": 0, + "inputQty": "2312780687117773963264", + "expectedQty": "2292415242619421586467", "reserves": [ - "4540427313760738184230940", - "2332680316430391344769043" + "3897836308003366617353261", + "5054885808476124040258527" ] }, { "type": "mintMulti", "inputQtys": [ - "29684586887272984477696", - "13867806592331673501696" + "6591455794350519", + "137259527794579184" ], - "expectedQty": "42960073788531297295305", + "expectedQty": "142343528175782848", "reserves": [ - "4570111900648011168708636", - "2346548123022723018270739" + "3897836314594822411703780", + "5054885945735651834837711" ], - "LPTokenSupply": "6823344238796639539722429" + "LPTokenSupply": "8865017209595647632142780" }, { - "type": "redeemMasset", - "inputQty": "71694583629258", - "expectedQtys": [ - "47990496600228", - "24640974262407" - ], - "redemptionFee": "43016750177", + "type": "mint", + "inputIndex": 1, + "inputQty": "79550831147595451072512", + "expectedQty": "78708875796614676817269", "reserves": [ - "4570111900600020672108408", - "2346548122998082044008332" - ], - "LPTokenSupply": "6823344238724949257768188" + "3897836314594822411703780", + "5134436776883247285910223" + ] }, { - "type": "redeemMasset", - "inputQty": "1491309903270310", - "expectedQtys": [ - "998244207859175", - "512553767433595" + "type": "redeemBassets", + "inputQtys": [ + "491116561393472", + "2143182659656242" ], - "redemptionFee": "894785941962", + "expectedQty": "2607270218963125", + "swapFee": "1565301312165", "reserves": [ - "4570111899601776464249233", - "2346548122485528276574737" + "3897836314103705850310308", + "5134436774740064626253981" ], - "LPTokenSupply": "6823344237233728833092074" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "53547056420168308621312", - "expectedQty": "53005072150627359921140", - "reserves": [ - "4570111899601776464249233", - "2400095178905696585196049" - ] + "LPTokenSupply": "8943726082783583318815974" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4585553086382513061888", - "954773758866658164736" + "2400249650528503296", + "6956458075909704704" ], - "expectedQty": "5460971832898937474444", + "expectedQty": "9261926882160593702", + "swapFee": "5560492424751206", "reserves": [ - "4574697452688158977311121", - "2401049952664563243360785" + "3897833913854055321807012", + "5134429818281988716549277" ], - "LPTokenSupply": "6881810281217255130487658" + "LPTokenSupply": "8943716815852257975946185" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3037554672426582802432", - "expectedQty": "3066985050765029917486", - "swapFee": "1822532803455949681", + "type": "mintMulti", + "inputQtys": [ + "53098266341356429312", + "65990597635124215808" + ], + "expectedQty": "117924568700622397089", "reserves": [ - "4574697452688158977311121", - "2397982967613798213443299" + "3897887012120396678236324", + "5134495808879623840765085" ], - "LPTokenSupply": "6878772908798108893280194" + "LPTokenSupply": "8943834740420958598343274" }, { "type": "swap", "inputIndex": 1, - "inputQty": "88927320857850937344", + "inputQty": "32758504101649336762368", "outputIndex": 0, - "expectedQty": "89378989692442347544", + "expectedQty": "32695128658568481841340", "swapFee": "0", "reserves": [ - "4574608073698466534963577", - "2398071894934656064380643" + "3865191883461828196394984", + "5167254312981273177527453" ], - "LPTokenSupply": "6878772908798108893280194", + "LPTokenSupply": "8943834740420958598343274", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "60541248291463360", - "expectedQtys": [ - "40237745220802413", - "21093174404235933" + "type": "mintMulti", + "inputQtys": [ + "15435461259705", + "19009502918230" ], - "redemptionFee": "36324748974878", + "expectedQty": "34108418381804", "reserves": [ - "4574608033460721314161164", - "2398071873841481660144710" + "3865191883477263657654689", + "5167254313000282680445683" ], - "LPTokenSupply": "6878772848260493076714321" + "LPTokenSupply": "8943834740455067016725078" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "34599055606756252057600", - "expectedQty": "35111085634830490371101", - "swapFee": "20759433364053751234", + "type": "redeemBassets", + "inputQtys": [ + "83652660328981392", + "63157768979470400" + ], + "expectedQty": "145411227439236624", + "swapFee": "87299115933101", "reserves": [ - "4539496947825890823790063", - "2398071873841481660144710" + "3865191799824603328673297", + "5167254249842513700975283" ], - "LPTokenSupply": "6844175868597073230031844" + "LPTokenSupply": "8943834594965270373148662" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "207491738285598", - "expectedQty": "209512864238375", - "swapFee": "124495042971", + "type": "mintMulti", + "inputQtys": [ + "41367554143844116201472", + "48816472565907957219328" + ], + "expectedQty": "89304749066059664397678", "reserves": [ - "4539496947825890823790063", - "2398071873631968795906335" + "3906559353968447444874769", + "5216070722408421658194611" ], - "LPTokenSupply": "6844175868389593941250543" + "LPTokenSupply": "9033139344031330037546340" }, { - "type": "redeemBassets", - "inputQtys": [ - "47703641175102", - "73883184801575" + "type": "redeemMasset", + "inputQty": "11394383768178099814", + "expectedQtys": [ + "4924769462322238564", + "6575593375007907275" ], - "expectedQty": "120106837989728", - "swapFee": "72107367214", + "redemptionFee": "6836630260906859", "reserves": [ - "4539496947778187182614961", - "2398071873558085611104760" + "3906554429198985122636205", + "5216064146815046650287336" ], - "LPTokenSupply": "6844175868269422206630321" + "LPTokenSupply": "9033127950331224885537211" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "3166005468984498688", + "expectedQty": "3138499873762197607", + "reserves": [ + "3906557595204454107134893", + "5216064146815046650287336" + ] }, { "type": "redeemMasset", - "inputQty": "285340429209687975526", + "inputQty": "13618182064076440050073", "expectedQtys": [ - "189142542679566952548", - "99917990233505578989" + "5885920609907784524474", + "7858924056828850567679" ], - "redemptionFee": "171204257525812785", + "redemptionFee": "8170909238445864030", "reserves": [ - "4539307805235507615662413", - "2397971955567852105525771" + "3900671674594546322610419", + "5208205222758217799719657" ], - "LPTokenSupply": "6843890544960638271236073" + "LPTokenSupply": "9019513723857946052271148" }, { "type": "mint", "inputIndex": 1, - "inputQty": "16135497284549018124288", - "expectedQty": "15969892022204219338543", + "inputQty": "8784586861630462099456", + "expectedQty": "8691000578401325004764", "reserves": [ - "4539307805235507615662413", - "2414107452852401123650059" + "3900671674594546322610419", + "5216989809619848261819113" ] }, { - "type": "mintMulti", - "inputQtys": [ - "680666365117945872384", - "333039051205787123712" - ], - "expectedQty": "999974748437873391275", + "type": "redeem", + "inputIndex": 0, + "inputQty": "79497225216542705188864", + "expectedQty": "80141815115800305868989", + "swapFee": "47698335129925623113", "reserves": [ - "4539988471600625561534797", - "2414440491903606910773771" + "3820529859478746016741430", + "5216989809619848261819113" ], - "LPTokenSupply": "6860860411731280363965891" + "LPTokenSupply": "8948712269053317664649359" }, { - "type": "redeemBassets", - "inputQtys": [ - "56332256390851416031232", - "60146527284584236711936" + "type": "redeemMasset", + "inputQty": "40502362807276719308", + "expectedQtys": [ + "17281552646134131296", + "23598214741237842340" ], - "expectedQty": "115008560453945548254894", - "swapFee": "69046564210893865272", + "redemptionFee": "24301417684366031", "reserves": [ - "4483656215209774145503565", - "2354293964619022674061835" + "3820512577926099882610134", + "5216966211405107023976773" ], - "LPTokenSupply": "6745789709369545011232251" + "LPTokenSupply": "8948671769120652156366654" }, { "type": "redeemBassets", "inputQtys": [ - "1716968257366723133440", - "641202987813720555520" + "14760459694087262437376", + "4945834979367074136064" ], - "expectedQty": "2325537495679218269124", - "swapFee": "1396160193523645148", + "expectedQty": "19526391335341183729315", + "swapFee": "11722868522318101098", "reserves": [ - "4481939246952407422370125", - "2353652761631208953506315" + "3805752118232012620172758", + "5212020376425739949840709" ], - "LPTokenSupply": "6743462915329691621682492" + "LPTokenSupply": "8929134827203640886346349" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "120756604671323526922240", - "expectedQty": "122540023542148880583954", - "swapFee": "72453962802794116153", + "inputQty": "317268962977507868409856", + "expectedQty": "314490992490125661217024", + "reserves": [ + "4123021081209520488582614", + "5212020376425739949840709" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "7700382615421547708416", + "20877995736366432911360" + ], + "expectedQty": "28290742301748777721824", "reserves": [ - "4359399223410258541786171", - "2353652761631208953506315" + "4130721463824942036291030", + "5232898372162106382752069" ], - "LPTokenSupply": "6622713556054648374171867" + "LPTokenSupply": "9271916561995515325285197" }, { "type": "mintMulti", "inputQtys": [ - "14335963309835768823808", - "13206455053166820982784" + "257051193794866446336", + "211130718713324306432" ], - "expectedQty": "27188428603821383034153", + "expectedQty": "463676915244708124795", "reserves": [ - "4373735186720094310609979", - "2366859216684375774489099" + "4130978515018736902737366", + "5233109502880819707058501" ], - "LPTokenSupply": "6649901984658469757206020" + "LPTokenSupply": "9272380238910760033409992" }, { - "type": "redeemMasset", - "inputQty": "16535567593681033625", - "expectedQtys": [ - "10869152758541489659", - "5881872881150886659" + "type": "redeemBassets", + "inputQtys": [ + "9468584804477881548800", + "68254704687226055294976" + ], + "expectedQty": "76923653412768501700213", + "swapFee": "46181901188374125495", + "reserves": [ + "4121509930214259021188566", + "5164854798193593651763525" ], - "redemptionFee": "9921340556208620", + "LPTokenSupply": "9195415021786921994996832" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "51010669600805371904", + "outputIndex": 0, + "expectedQty": "50932878663344769020", + "swapFee": "0", "reserves": [ - "4373724317567335769120320", - "2366853334811494623602440" + "4121458997335595676419546", + "5164905808863194457135429" ], - "LPTokenSupply": "6649885450083010131793257" + "LPTokenSupply": "9195415021786921994996832", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "56650720590836020019", + "inputQty": "653504908373766491340", "expectedQtys": [ - "37237629329721382866", - "20151248857986229600" + "292730414215311353084", + "366842183263015970853" ], - "redemptionFee": "33990432354501612", + "redemptionFee": "392102945024259894", "reserves": [ - "4373687079938006047737454", - "2366833183562636637372840" + "4121166266921380365066462", + "5164538966679931441164576" ], - "LPTokenSupply": "6649828802761462531223399" + "LPTokenSupply": "9194761556088842730931481" }, { - "type": "redeemBassets", - "inputQtys": [ - "3021651615237937299456", - "2224994064911886450688" - ], - "expectedQty": "5177845173147837999018", - "swapFee": "3108572247237045026", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1403971459130425868288", + "expectedQty": "1417967128871367658936", + "swapFee": "842382875478255520", "reserves": [ - "4370665428322768110437998", - "2364608189497724750922152" + "4121166266921380365066462", + "5163120999551060073505640" ], - "LPTokenSupply": "6644648159873292179883856" + "LPTokenSupply": "9193357668867999852888745" }, { "type": "redeemMasset", - "inputQty": "39583233208606643", + "inputQty": "560719034233140543488", "expectedQtys": [ - "26021131852982294", - "14077897859862939" + "251206355986937002892", + "314718875146416577565" ], - "redemptionFee": "23749939925163", + "redemptionFee": "336431420539884326", "reserves": [ - "4370665402301636257455704", - "2364608175419826891059213" + "4120915060565393428063570", + "5162806280675913656928075" ], - "LPTokenSupply": "6644648120292433965269729" + "LPTokenSupply": "9192796983476908766333689" }, { "type": "mint", "inputIndex": 0, - "inputQty": "791128389351555465216", - "expectedQty": "779182829485558549194", + "inputQty": "2697213406947366666240", + "expectedQty": "2673057782190594630906", "reserves": [ - "4371456530690987812920920", - "2364608175419826891059213" + "4123612273972340794729810", + "5162806280675913656928075" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1350877067305735424", - "3272983230394007040" + "type": "redeemMasset", + "inputQty": "14137946471077439025971", + "expectedQtys": [ + "6336210078409739653313", + "7933002187177806367243" ], - "expectedQty": "4569371175716907342", - "swapFee": "2743268666630122", + "redemptionFee": "8482767882646463415", "reserves": [ - "4371455179813920507185496", - "2364604902436596497052173" + "4117276063893931055076497", + "5154873278488735850560832" ], - "LPTokenSupply": "6645422731281802006944470" + "LPTokenSupply": "9181332943064810186584965" }, { "type": "redeemMasset", - "inputQty": "50290357432443233894", + "inputQty": "172011177392407065", "expectedQtys": [ - "33061875391676255927", - "17883809719909642075" + "77090393877129466", + "96517990355388495" ], - "redemptionFee": "30174214459465940", + "redemptionFee": "103206706435444", "reserves": [ - "4371422117938528830929569", - "2364587018626876587410098" + "4117275986803537177947031", + "5154873181970745495172337" ], - "LPTokenSupply": "6645372443941791009657170" + "LPTokenSupply": "9181332771063953464821444" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "251798170273200635904", - "97051258913526775808" + "476416907699240512", + "838082605060728192" ], - "expectedQty": "344036467537487211591", - "swapFee": "206545808007296704", + "expectedQty": "1301463145348784551", "reserves": [ - "4371170319768255630293665", - "2364489967367963060634290" + "4117276463220444877187543", + "5154874020053350555900529" ], - "LPTokenSupply": "6645028221583026315878544" + "LPTokenSupply": "9181334072527098813605995" }, { - "type": "redeemBassets", - "inputQtys": [ - "12154926990998288465920", - "5719542021774631763968" + "type": "redeemMasset", + "inputQty": "51951986106481548", + "expectedQtys": [ + "23283364651730225", + "29151020732951562" ], - "expectedQty": "17631359100902793529680", - "swapFee": "10585166560477962895", + "redemptionFee": "31171191663888", "reserves": [ - "4359015392777257341827745", - "2358770425346188428870322" + "4117276439937080225457318", + "5154873990902329822948967" ], - "LPTokenSupply": "6627387335832219092182257" + "LPTokenSupply": "9181334020578229826290835" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "303874350175044435968", - "expectedQty": "308347992707995300389", - "swapFee": "182324610105026661", + "type": "mintMulti", + "inputQtys": [ + "8639898974460326182912", + "8602143357206367567872" + ], + "expectedQty": "17074643329286435638083", "reserves": [ - "4358707044784549346527356", - "2358770425346188428870322" + "4125916338911540551640230", + "5163476134259536190516839" ], - "LPTokenSupply": "6627083479714505058248955" + "LPTokenSupply": "9198408663907516261928918" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9677449432377969344512", - "expectedQty": "9773353703334267205097", - "swapFee": "5806469659426781606", + "type": "mintMulti", + "inputQtys": [ + "24676916231296248", + "230029517524596896" + ], + "expectedQty": "252078893199524461", "reserves": [ - "4358707044784549346527356", - "2348997071642854161665225" + "4125916363588456782936478", + "5163476364289053715113735" ], - "LPTokenSupply": "6617406610929093031582603" + "LPTokenSupply": "9198408915986409461453379" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "114229695268470208331776", - "expectedQty": "113025069066345118342716", + "inputIndex": 0, + "inputQty": "136016976289722303250432", + "expectedQty": "134789822208383827528013", "reserves": [ - "4358707044784549346527356", - "2463226766911324369997001" + "4261933339878179086186910", + "5163476364289053715113735" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "92622462674726879232", - "50990769062726549504" - ], - "expectedQty": "141683275157748854265", - "swapFee": "85061001695666712", - "reserves": [ - "4358614422321874619648124", - "2463175776142261643447497" - ], - "LPTokenSupply": "6730289920165378874971012" - }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "23376873818629240520704", - "expectedQty": "23614624902358537270964", - "swapFee": "14026124291177544312", + "inputIndex": 0, + "inputQty": "23612553795348516044800", + "expectedQty": "23814449115550404742718", + "swapFee": "14167532277209109626", "reserves": [ - "4358614422321874619648124", - "2439561151239903106176533" + "4238118890762628681444192", + "5163476364289053715113735" ], - "LPTokenSupply": "6706914448959178752204739" + "LPTokenSupply": "9309587601152672493847554" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5804476803504201007104", - "expectedQty": "5717478282699456639651", + "inputIndex": 1, + "inputQty": "9911499071777371324416", + "expectedQty": "9808591324101477735927", "reserves": [ - "4364418899125378820655228", - "2439561151239903106176533" + "4238118890762628681444192", + "5173387863360831086438151" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "750403917212446", - "158786957148042" + "398056976752517578752", + "497240308793889128448" ], - "expectedQty": "896254662003328", + "expectedQty": "886528208895424750147", + "swapFee": "532236267097513358", "reserves": [ - "4364418899875782737867674", - "2439561151398690063324575" + "4237720833785876163865440", + "5172890623052037197309703" ], - "LPTokenSupply": "6712631928138132870847718" + "LPTokenSupply": "9318509185255238159071310" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "227991123907191", - "4368200734787689" + "125588354240276496384", + "219590397966818181120" ], - "expectedQty": "4546356360249661", - "swapFee": "2729451487042", + "expectedQty": "341760783251246336993", "reserves": [ - "4364418899647791613960483", - "2439561147030489328536886" + "4237846422140116440361824", + "5173110213450004015490823" ], - "LPTokenSupply": "6712631923589320004259718" + "LPTokenSupply": "9318850946038489405408303" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "211853449153562048", - "expectedQty": "214000368987538978", - "swapFee": "127112069492137", + "inputQty": "15239574521631918080", + "outputIndex": 0, + "expectedQty": "15219129316193325230", + "swapFee": "0", + "reserves": [ + "4237831203010800247036594", + "5173125453024525647408903" + ], + "LPTokenSupply": "9318850946038489405408303", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "33791173972964421632", + "10316423137065779200" + ], + "expectedQty": "43694431418242166805", + "swapFee": "26232398289919251", "reserves": [ - "4364418899647791613960483", - "2439560933030120340997908" + "4237797411836827282614962", + "5173115136601388581629703" ], - "LPTokenSupply": "6712631711748582057646883" + "LPTokenSupply": "9318807227997912702314171" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1439981378842619805696", - "expectedQty": "1461017873041311477961", - "swapFee": "863988827305571883", + "type": "redeemMasset", + "inputQty": "34410697877951695604940", + "expectedQtys": [ + "15639133582351139748552", + "19090822612760348079124" + ], + "redemptionFee": "20646418726771017362", "reserves": [ - "4362957881774750302482522", - "2439560933030120340997908" + "4222158278254476142866410", + "5154024313988628233550579" ], - "LPTokenSupply": "6711191816768622168398375" + "LPTokenSupply": "9284398594761833683810967" }, { "type": "redeemMasset", - "inputQty": "985130881835814459801", + "inputQty": "224769619598875243315", "expectedQtys": [ - "640051098528462662667", - "357886483762683198862" + "102154543739488893071", + "124700915389512347232" ], - "redemptionFee": "591078529101488675", + "redemptionFee": "134861771759325145", "reserves": [ - "4362317830676221839819855", - "2439203046546357657799046" + "4222056123710736653973339", + "5153899613073238721203347" ], - "LPTokenSupply": "6710206744994639264087441" + "LPTokenSupply": "9284173838628411984500166" }, { "type": "mint", "inputIndex": 1, - "inputQty": "36125521185593511936", - "expectedQty": "35741557938777124361", + "inputQty": "18866048391756002623488", + "expectedQty": "18669965627011853993493", "reserves": [ - "4362317830676221839819855", - "2439239172067543251310982" + "4222056123710736653973339", + "5172765661464994723826835" ] }, { - "type": "mintMulti", - "inputQtys": [ - "30027414550935741923328", - "76398994196822585507840" - ], - "expectedQty": "105159958872239455267972", + "type": "swap", + "inputIndex": 0, + "inputQty": "110834184924485147164672", + "outputIndex": 1, + "expectedQty": "110878863217182686035448", + "swapFee": "87861058107450125878", "reserves": [ - "4392345245227157581743183", - "2515638166264365836818822" + "4332890308635221801138011", + "5061886798247812037791387" ], - "LPTokenSupply": "6815402445424817496479774" + "LPTokenSupply": "9302852590361234583506246", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "7391704406731223203840", - "7887034207906017837056" - ], - "expectedQty": "15083594522673355872449", - "swapFee": "9055590067644600283", + "type": "mint", + "inputIndex": 0, + "inputQty": "1450987219424932265984", + "expectedQty": "1437594197106936935036", "reserves": [ - "4384953540820426358539343", - "2507751132056459818981766" - ], - "LPTokenSupply": "6800310700871083260467069" + "4334341295854646733403995", + "5061886798247812037791387" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "166190949518763589632", - "154890458915598073856" + "type": "redeemMasset", + "inputQty": "3092410889640500428", + "expectedQtys": [ + "1439714563763002202", + "1681379394494605261" ], - "expectedQty": "316935393565622772469", - "swapFee": "190275401380201784", + "redemptionFee": "1855446533784300", "reserves": [ - "4384787349870907594949711", - "2507596241597544220907910" + "4334339856140082970401793", + "5061885116868417543186126" ], - "LPTokenSupply": "6799993594229656395512993" + "LPTokenSupply": "9304287092332996533319284" }, { "type": "mintMulti", "inputQtys": [ - "254738980162069168128", - "87441703405754204160" + "644071885870653767680", + "269137652436460896256" ], - "expectedQty": "337440146656420045806", + "expectedQty": "904503122098995770275", "reserves": [ - "4385042088851069664117839", - "2507683683300949975112070" + "4334983928025953624169473", + "5062154254520854004082382" ], - "LPTokenSupply": "6800331034376312815558799" + "LPTokenSupply": "9305191595455095529089559" }, { "type": "mintMulti", "inputQtys": [ - "558050406303847088128", - "100728350025936191488" + "4355070571362788352", + "4225221278018314240" ], - "expectedQty": "649371484861204171968", + "expectedQty": "8496745382669302099", "reserves": [ - "4385600139257373511205967", - "2507784411650975911303558" + "4334988283096524986957825", + "5062158479742132022396622" ], - "LPTokenSupply": "6800980405861174019730767" + "LPTokenSupply": "9305200092200478198391658" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "335085991989980626944", - "expectedQty": "331478805170301437994", + "inputIndex": 0, + "inputQty": "1690855523514404864", + "expectedQty": "1675246829167090953", "reserves": [ - "4385600139257373511205967", - "2508119497642965891930502" + "4334989973952048501362689", + "5062158479742132022396622" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "94534443972121722880", - "25092361603695869952" + "type": "redeemMasset", + "inputQty": "37150468992400877839974", + "expectedQtys": [ + "17296807364926370120263", + "20198242810468083070663" ], - "expectedQty": "117946789169091613621", - "swapFee": "70810559837357382", + "redemptionFee": "22290281395440526703", "reserves": [ - "4385505604813401389483087", - "2508094405281362196060550" + "4317693166587122131242426", + "5041960236931663939325959" ], - "LPTokenSupply": "6801193874147671375933495" + "LPTokenSupply": "9268053527483046031695307" }, { - "type": "redeemBassets", - "inputQtys": [ - "3127004012338832896", - "954433188520811520" - ], - "expectedQty": "4024526187860491529", - "swapFee": "2416165411963473", + "type": "swap", + "inputIndex": 0, + "inputQty": "16872642844557915979776", + "outputIndex": 1, + "expectedQty": "16876223025234339815617", + "swapFee": "13373385238606462222", "reserves": [ - "4385502477809389050650191", - "2508093450848173675249030" + "4334565809431680047222202", + "5025084013906429599510342" ], - "LPTokenSupply": "6801189847446934644674839" + "LPTokenSupply": "9268054864821569892341529", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6908216329054338416640", - "20156911516207009497088" + "64861068040923512832000", + "20490665501744634527744" ], - "expectedQty": "26744793386320409369716", + "expectedQty": "84542188110310355165692", + "swapFee": "50755766325981802180", "reserves": [ - "4392410694138443389066831", - "2528250362364380684746118" + "4269704741390756534390202", + "5004593348404684964982598" ], - "LPTokenSupply": "6827934640833255054044555" + "LPTokenSupply": "9183466996521566153553874" }, { "type": "mint", "inputIndex": 0, - "inputQty": "297929658305349091328", - "expectedQty": "293492770841569523564", + "inputQty": "6740483652494274068480", + "expectedQty": "6678276691598269533959", "reserves": [ - "4392708623796748738158159", - "2528250362364380684746118" + "4276445225043250808458682", + "5004593348404684964982598" ] }, { "type": "redeemBassets", "inputQtys": [ - "2506678295534782464", - "42991582508891701248" - ], - "expectedQty": "44996499260117534300", - "swapFee": "27014108020883050", - "reserves": [ - "4392706117118453203375695", - "2528207370781871793044870" - ], - "LPTokenSupply": "6828183112792139287239073" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "210982985152015564800", - "expectedQty": "214044044253456764609", - "swapFee": "126589791091209338", - "reserves": [ - "4392492073074199746611086", - "2528207370781871793044870" + "10055492433927653376", + "41031715973604868096" ], - "LPTokenSupply": "6827972142465966380795206" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "10731914580485367398400", - "expectedQty": "10887572282189219841379", - "swapFee": "6439148748291220439", + "expectedQty": "50572842911591332213", + "swapFee": "30361922900695216", "reserves": [ - "4381604500792010526769707", - "2528207370781871793044870" + "4276435169550816880805306", + "5004552316688711360114502" ], - "LPTokenSupply": "6817240871800355842518849" + "LPTokenSupply": "9190094673044522221129924" }, { "type": "mint", "inputIndex": 0, - "inputQty": "33003143746704896000", - "expectedQty": "32511894761410494811", + "inputQty": "23452871602164514816", + "expectedQty": "23236360154615206305", "reserves": [ - "4381637503935757231665707", - "2528207370781871793044870" + "4276458622422419045320122", + "5004552316688711360114502" ] }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2518855230906136264704", - "expectedQty": "2555378025779126715057", - "swapFee": "1511313138543681758", - "reserves": [ - "4379082125909978104950650", - "2528207370781871793044870" - ], - "LPTokenSupply": "6814754679595524971117131" - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1185975036075043192832", - "expectedQty": "1198229017549115665845", - "swapFee": "711585021645025915", + "inputQty": "737701775709174628352", + "expectedQty": "744911750785451341791", + "swapFee": "442621065425504777", "reserves": [ - "4379082125909978104950650", - "2527009141764322677379025" + "4276458622422419045320122", + "5003807404937925908772711" ], - "LPTokenSupply": "6813568775717952092426890" + "LPTokenSupply": "9189380251891074204258354" }, { - "type": "redeemMasset", - "inputQty": "1060096967243295883264", - "expectedQtys": [ - "680915755413217469269", - "392931735287563453599" + "type": "mintMulti", + "inputQtys": [ + "2070131968416518", + "7459494434719975" ], - "redemptionFee": "636058180345977529", + "expectedQty": "9433883038381409", "reserves": [ - "4378401210154564887481381", - "2526616210029035113925426" + "4276458624492551013736640", + "5003807412397420343492686" ], - "LPTokenSupply": "6812508742356526831141378" + "LPTokenSupply": "9189380261324957242639763" }, { - "type": "mintMulti", - "inputQtys": [ - "15216619153963", - "258269147558437" - ], - "expectedQty": "270464950745060", + "type": "redeem", + "inputIndex": 0, + "inputQty": "102347907060416592", + "expectedQty": "103239644140653860", + "swapFee": "61408744236249", "reserves": [ - "4378401210169781506635344", - "2526616210287304261483863" + "4276458521252906873082780", + "5003807412397420343492686" ], - "LPTokenSupply": "6812508742626991781886438" + "LPTokenSupply": "9189380158983191056646795" }, { - "type": "mintMulti", - "inputQtys": [ - "53120392118533968", - "53288379780381984" - ], - "expectedQty": "105041530115268106", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8737085741134100037632", + "expectedQty": "8813176790871094114893", + "swapFee": "5242251444680460022", "reserves": [ - "4378401263290173625169312", - "2526616263575684041865847" + "4267645344462035778967887", + "5003807412397420343492686" ], - "LPTokenSupply": "6812508847668521897154544" + "LPTokenSupply": "9180643597467201424655165" }, { - "type": "redeemMasset", - "inputQty": "50827454822863326412", - "expectedQtys": [ - "32647218753619900646", - "18839523584785331057" + "type": "redeemBassets", + "inputQtys": [ + "310119241389384400896", + "311011483034721058816" ], - "redemptionFee": "30496472893717995", + "expectedQty": "615072600129318318323", + "swapFee": "369265119149080439", "reserves": [ - "4378368616071420005268666", - "2526597424052099256534790" + "4267335225220646394566991", + "5003496400914385622433870" ], - "LPTokenSupply": "6812458023263346323199931" + "LPTokenSupply": "9180028192528464872164445" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "9463473140243420413952", - "expectedQty": "9360980921493178251982", + "inputIndex": 0, + "inputQty": "341537424405308702720", + "expectedQty": "338386574476941581515", "reserves": [ - "4378368616071420005268666", - "2536060897192342676948742" + "4267676762645051703269711", + "5003496400914385622433870" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "168032180404546043904", - "234380920173256081408" + "type": "redeem", + "inputIndex": 1, + "inputQty": "246569256944357083185152", + "expectedQty": "248960888658635022499874", + "swapFee": "147941554166614249911", + "reserves": [ + "4267676762645051703269711", + "4754535512255750599933996" ], - "expectedQty": "397373127142227129684", - "swapFee": "238567016495233417", + "LPTokenSupply": "8933812116314001391985799" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "2377098095307114151936", + "expectedQty": "2398268180541488147538", + "swapFee": "1426258857184268491", "reserves": [ - "4378200583891015459224762", - "2535826516272169420867334" + "4265278494464510215122173", + "4754535512255750599933996" ], - "LPTokenSupply": "6821421416347382428612152" + "LPTokenSupply": "8931435160844579996260712" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "247089906501929630957568", - "481338390615215359131648" + "2413420693322911973376", + "1650007902543952740352" ], - "expectedQty": "719693024082168839168926", - "swapFee": "432075059484992298880", + "expectedQty": "4023965550417261468340", "reserves": [ - "4131110677389085828267194", - "2054488125656954061735686" + "4267691915157833127095549", + "4756185520158294552674348" ], - "LPTokenSupply": "6101339524711677096374233" + "LPTokenSupply": "8935459126394997257729052" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "23375404427342479360", - "expectedQty": "23595107418424338713", - "swapFee": "14025242656405487", + "inputQty": "103218014846827689410560", + "expectedQty": "104208717338928377026820", + "swapFee": "61930808908096613646", "reserves": [ - "4131110677389085828267194", - "2054464530549535637396973" + "4267691915157833127095549", + "4651976802819366175647528" ], - "LPTokenSupply": "6101316150709774019535421" + "LPTokenSupply": "8832247304629060377979856" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "278043578085495776", - "expectedQty": "280656869123692383", - "swapFee": "166826146851297", + "inputQty": "13539673031831105568768", + "expectedQty": "13669165781092923605646", + "swapFee": "8123803819098663341", "reserves": [ - "4131110677389085828267194", - "2054464249892666513704590" + "4267691915157833127095549", + "4638307637038273252041882" ], - "LPTokenSupply": "6101315872682878548724774" + "LPTokenSupply": "8818708443977611182277422" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1809536106401875361792", - "1587830712964469227520" + "1201594174505165056", + "4441346647429127680" ], - "expectedQty": "3353643894604174160424", + "expectedQty": "5586809358224770771", + "swapFee": "3354098073779129", "reserves": [ - "4132920213495487703628986", - "2056052080605630982932110" + "4267690713563658621930493", + "4638303195691625822914202" ], - "LPTokenSupply": "6104669516577482722885198" + "LPTokenSupply": "8818702854149564691105433" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1305636633750538289152", - "expectedQty": "1285439358005984709632", + "type": "redeemBassets", + "inputQtys": [ + "1711157897541641728", + "4095896570931300864" + ], + "expectedQty": "5749550465760331452", + "swapFee": "3451801360272362", "reserves": [ - "4134225850129238241918138", - "2056052080605630982932110" - ] + "4267689002405761080288765", + "4638299099795054891613338" + ], + "LPTokenSupply": "8818697101492477706528854" }, { - "type": "redeemMasset", - "inputQty": "12420066382093800243", - "expectedQtys": [ - "8404344848890690831", - "4179687162506795990" + "type": "redeemBassets", + "inputQtys": [ + "957696952612398432256", + "8584403412246736142336" ], - "redemptionFee": "7452039829256280", + "expectedQty": "9446614368015613024139", + "swapFee": "5671371443675573158", "reserves": [ - "4134217445784389351227307", - "2056047900918468476136120" + "4266731305453148681856509", + "4629714696382808155471002" ], - "LPTokenSupply": "6105942536614310596720215" + "LPTokenSupply": "8809245382890162785488871" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "101816108308365376", - "23480135555075412" + "3323047827348922040320", + "1627997586012006776832" ], - "expectedQty": "123488569810459931", - "swapFee": "74137624460952", + "expectedQty": "4903024488054454735377", "reserves": [ - "4134217343968281042861931", - "2056047877438332921060708" + "4270054353280497603896829", + "4631342693968820162247834" ], - "LPTokenSupply": "6105942413059016924245426" + "LPTokenSupply": "8814148407378217240224248" }, { "type": "mint", "inputIndex": 0, - "inputQty": "225006563723678688", - "expectedQty": "221525740453977133", + "inputQty": "2384047007409499", + "expectedQty": "2361341802822574", "reserves": [ - "4134217568974844766540619", - "2056047877438332921060708" + "4270054355664544611306328", + "4631342693968820162247834" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "204485737687800896", - "expectedQty": "201322368979499388", + "inputQty": "65058516407989313536", + "expectedQty": "64438909921569434745", "reserves": [ - "4134217773460582454341515", - "2056047877438332921060708" + "4270119414180952600619864", + "4631342693968820162247834" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "14671365786078109696", - "12445764867642230784" - ], - "expectedQty": "26766880037623113054", - "reserves": [ - "4134232444826368532451211", - "2056060323203200563291492" - ], - "LPTokenSupply": "6105969602787163980835001" - }, - { - "type": "mintMulti", - "inputQtys": [ - "3087449593064663285760", - "223305259276696223744" - ], - "expectedQty": "3260777288671021963644", - "reserves": [ - "4137319894419433195736971", - "2056283628462477259515236" - ], - "LPTokenSupply": "6109230380075835002798645" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "136089803419798317563904", - "8028910252358511886336" - ], - "expectedQty": "141940043762272565969503", - "swapFee": "85215155350573883912", - "reserves": [ - "4001230090999634878173067", - "2048254718210118747628900" - ], - "LPTokenSupply": "5967213642673746920333620" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1464182055262406049792", - "1541789446733926498304" - ], - "expectedQty": "2967843518185453091420", - "swapFee": "1781775176016881984", - "reserves": [ - "3999765908944372472123275", - "2046712928763384821130596" - ], - "LPTokenSupply": "5964244195557903052048413" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9971708605318335299584", - "expectedQty": "10121335570931327348887", - "swapFee": "5983025163191001179", - "reserves": [ - "3989644573373441144774388", - "2046712928763384821130596" - ], - "LPTokenSupply": "5954273085255101035848946" - }, { "type": "swap", "inputIndex": 0, - "inputQty": "709095658551919902720", + "inputQty": "321541766992237559808", "outputIndex": 1, - "expectedQty": "704784654065241256041", - "swapFee": "558556864418085270", + "expectedQty": "321457676453285025132", + "swapFee": "254783525305300334", "reserves": [ - "3990353669031993064677108", - "2046008144109319579874555" + "4270440955947944838179672", + "4631021236292366877222702" ], - "LPTokenSupply": "5954273141110787477657473", + "LPTokenSupply": "8814212874127833143011600", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "438658370922547576832", - "560714903620260397056" - ], - "expectedQty": "986944580672026590369", - "swapFee": "592522261760272117", + "type": "redeem", + "inputIndex": 1, + "inputQty": "715687919409248206848", + "expectedQty": "722525046346774981725", + "swapFee": "429412751645548924", "reserves": [ - "3989915010661070517100276", - "2045447429205699319477499" + "4270440955947944838179672", + "4630298711246020102240977" ], - "LPTokenSupply": "5953285663260079866822197" + "LPTokenSupply": "8813497229149699059359644" }, { - "type": "redeemBassets", - "inputQtys": [ - "23955050092943911157760", - "1087529857149274423296" - ], - "expectedQty": "24663498245642380665227", - "swapFee": "14806983137267789072", + "type": "mint", + "inputIndex": 0, + "inputQty": "84614992177720520081408", + "expectedQty": "83806185866068213509527", "reserves": [ - "3965959960568126605942516", - "2044359899348550045054203" - ], - "LPTokenSupply": "5928608838729613945146804" + "4355055948125665358261080", + "4630298711246020102240977" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "41192251125228399230976", - "outputIndex": 1, - "expectedQty": "40937280796489054666752", - "swapFee": "32447152385453477778", + "type": "redeemMasset", + "inputQty": "2941558940694800970547", + "expectedQtys": [ + "1438971649271958041274", + "1529915723817757473202" + ], + "redemptionFee": "1764935364416880582", "reserves": [ - "4007152211693355005173492", - "2003422618552060990387451" + "4353616976476393400219806", + "4628768795522202344767775" ], - "LPTokenSupply": "5928612083444852490494581", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8894362032568608913586682" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "31338897398933984", - "1174318052933712128" + "143123815978433970176", + "209259853849392807936" ], - "expectedQty": "1193468895294642826", + "expectedQty": "348919316257021013192", + "swapFee": "209477276119884538", "reserves": [ - "4007152243032252404107476", - "2003423792870113924099579" + "4353473852660414966249630", + "4628559535668352951959839" ], - "LPTokenSupply": "5928613276913747785137407" + "LPTokenSupply": "8894012924722803384677404" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "280635243078181550292992", - "150741070291157133557760" + "2474537712712534720512", + "19045500836188379938816" ], - "expectedQty": "425532396502984048607294", - "swapFee": "255472721534711255917", + "expectedQty": "21305856091719709669016", "reserves": [ - "3726516999954070853814484", - "1852682722578956790541819" + "4355948390373127500970142", + "4647605036504541331898655" ], - "LPTokenSupply": "5502850954961382496399786" + "LPTokenSupply": "8915318780814523094346420" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1151196638480844587008", - "975923080481590476800" + "2802630840842287316992", + "383188265239925227520" ], - "expectedQty": "2099512164650466321050", - "swapFee": "1260463576936441657", + "expectedQty": "3155132801562582760275", "reserves": [ - "3725365803315590009227476", - "1851706799498475200065019" + "4358751021213969788287134", + "4647988224769781257126175" ], - "LPTokenSupply": "5500750308379512787281243" + "LPTokenSupply": "8918473913616085677106695" }, { "type": "mint", "inputIndex": 1, - "inputQty": "24970401598368441696256", - "expectedQty": "24720351557616608728406", + "inputQty": "279653661462288318595072", + "expectedQty": "276829813897718875968078", "reserves": [ - "3725365803315590009227476", - "1876677201096843641761275" + "4358751021213969788287134", + "4927641886232069575721247" ] }, { - "type": "redeemMasset", - "inputQty": "58475042303176081408000", - "expectedQtys": [ - "39401207931198324025280", - "19848614209736440057159" - ], - "redemptionFee": "35085025381905648844", + "type": "redeem", + "inputIndex": 1, + "inputQty": "185304394186691018752", + "expectedQty": "187099525724181831310", + "swapFee": "111182636512014611", "reserves": [ - "3685964595384391685202196", - "1856828586887107201704116" + "4358751021213969788287134", + "4927454786706345393889937" ], - "LPTokenSupply": "5466999126136491505166533" + "LPTokenSupply": "9195118434237881513257482" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "103617275995958329344", - "outputIndex": 0, - "expectedQty": "104187951934198707075", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "108059993863906", + "617336290667842" + ], + "expectedQty": "718092867943788", + "swapFee": "431114389399", "reserves": [ - "3685860407432457486495121", - "1856932204163103160033460" + "4358751021105909794423228", + "4927454786089009103222095" ], - "LPTokenSupply": "5466999126136491505166533", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9195118433519400642363233" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "302447445181006151680", - "expectedQty": "307021891732976521097", - "swapFee": "181468467108603691", + "inputIndex": 1, + "inputQty": "4182282743975867904", + "expectedQty": "4222798286392942958", + "swapFee": "2509369646385520", "reserves": [ - "3685553385540724509974024", - "1856932204163103160033460" + "4358751021105909794423228", + "4927450563290722710279137" ], - "LPTokenSupply": "5466696696838157209875222" + "LPTokenSupply": "9195114251487593631133881" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4547779892083277824", - "49068507359118991360" + "644614856472651821481984", + "496190002032743156809728" ], - "expectedQty": "53051741173640350883", + "expectedQty": "1129722906143982319738649", + "swapFee": "678240688099248941207", "reserves": [ - "3685557933320616593251848", - "1856981272670462279024820" + "3714136164633257972941244", + "4431260561257979553469409" ], - "LPTokenSupply": "5466749748579330850226105" + "LPTokenSupply": "8064780928724321987348144" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "10612549133090127872", - "outputIndex": 0, - "expectedQty": "10670979956627774665", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "13678137512809709174784", + "expectedQty": "13551395848560733653790", "reserves": [ - "3685547262340659965477183", - "1856991885219595369152692" - ], - "LPTokenSupply": "5466749748579330850226105", - "hardLimitError": false, - "insufficientLiquidityError": false + "3727814302146067682116028", + "4431260561257979553469409" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "10309838976496871407616", - "outputIndex": 0, - "expectedQty": "10366127822003331273962", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "1220543753175541", + "expectedQtys": [ + "562892228309949", + "669111154520906" + ], + "redemptionFee": "732326251905", "reserves": [ - "3675181134518656634203221", - "1867301724196092240560308" + "3727814301583175453806079", + "4431260560588868398948503" ], - "LPTokenSupply": "5466749748579330850226105", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8078332323352412200451583" }, { "type": "redeemMasset", - "inputQty": "307087440491424985907", + "inputQty": "4523274657329272638668", "expectedQtys": [ - "206324572851365597504", - "104830269999695288146" + "2086050700352093148459", + "2479692776524095924381" ], - "redemptionFee": "184252464294854991", + "redemptionFee": "2713964794397563583", "reserves": [ - "3674974809945805268605717", - "1867196893926092545272162" + "3725728250882823360657620", + "4428780867812344303024122" ], - "LPTokenSupply": "5466442679564085854725697" + "LPTokenSupply": "8073809320091562367569273" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "6414195987788038406144", + "expectedQty": "6477835982036960534588", + "swapFee": "3848517592672823043", + "reserves": [ + "3725728250882823360657620", + "4422303031830307342489534" + ], + "LPTokenSupply": "8067395508955533596445433" }, { "type": "mint", "inputIndex": 0, - "inputQty": "3643204899645118464", - "expectedQty": "3586881245970205202", + "inputQty": "3053355344947103744", + "expectedQty": "3025023483880577310", "reserves": [ - "3674978453150704913724181", - "1867196893926092545272162" + "3725731304238168307761364", + "4422303031830307342489534" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "887717821350664832", - "expectedQty": "878725476386606201", + "inputQty": "122353993080122780942336", + "expectedQty": "121074282094136454231271", "reserves": [ - "3674978453150704913724181", - "1867197781643913895936994" + "3725731304238168307761364", + "4544657024910430123431870" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "24425357656050888704", - "expectedQty": "24047743302419254693", + "inputQty": "194560942961688469045248", + "expectedQty": "192756860783282827325178", "reserves": [ - "3675002878508360964612885", - "1867197781643913895936994" + "3920292247199856776806612", + "4544657024910430123431870" ] }, { "type": "redeemMasset", - "inputQty": "31610318389110866391859", + "inputQty": "291322204383906", "expectedQtys": [ - "21238255204636915977595", - "10790746106893188663232" + "136183231146568", + "157872433757284" ], - "redemptionFee": "18966191033466519835", + "redemptionFee": "174793322630", "reserves": [ - "3653764623303724048635290", - "1856407035537020707273762" + "3920292247063673545660044", + "4544657024752557689674586" ], - "LPTokenSupply": "5434862771144103111051917" + "LPTokenSupply": "8381229676565132033527549" }, { - "type": "mintMulti", - "inputQtys": [ - "5733120097806491582464", - "11034653755869644193792" - ], - "expectedQty": "16567184516595703061824", + "type": "mint", + "inputIndex": 1, + "inputQty": "168969758244916", + "expectedQty": "167222103613958", "reserves": [ - "3659497743401530540217754", - "1867441689292890351467554" - ], - "LPTokenSupply": "5451429955660698814113741" + "3920292247063673545660044", + "4544657024921527447919502" + ] }, { - "type": "redeemMasset", - "inputQty": "9858427610690693051187", - "expectedQtys": [ - "6613906397387297546691", - "3375076418022754121326" - ], - "redemptionFee": "5915056566414415830", - "reserves": [ - "3652883837004143242671063", - "1864066612874867597346228" + "type": "mintMulti", + "inputQtys": [ + "1082592039175547256832", + "4800228904940397920256" ], - "LPTokenSupply": "5441572119555664762504137" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2840591190055815479296", - "expectedQty": "2883426563262490490339", - "swapFee": "1704354714033489287", + "expectedQty": "5823029196948951975921", "reserves": [ - "3650000410440880752180724", - "1864066612874867597346228" + "3921374839102849092916876", + "4549457253826467845839758" ], - "LPTokenSupply": "5438731698801080350373769" + "LPTokenSupply": "8387052705929303089117428" }, { "type": "redeemMasset", - "inputQty": "3469528505593854374707", + "inputQty": "20968058775001785958", "expectedQtys": [ - "2327046617129904325089", - "1188429977483565186669" - ], - "redemptionFee": "2081717103356312624", - "reserves": [ - "3647673363823750847855635", - "1862878182897384032159559" + "9797754564742961734", + "11367050436315650473" ], - "LPTokenSupply": "5435262378467196831630324" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "16155846201474967142400", - "expectedQty": "16399323396398026752516", - "swapFee": "9693507720884980285", + "redemptionFee": "12580835265001071", "reserves": [ - "3631274040427352821103119", - "1862878182897384032159559" + "3921365041348284349955142", + "4549445886776031530189285" ], - "LPTokenSupply": "5419107501616493952985952" + "LPTokenSupply": "8387031739128611613831577" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "275829032904317984", - "expectedQty": "279984063133824551", - "swapFee": "165497419742590", + "inputQty": "14288929876218744930304", + "expectedQty": "14415220758881288121560", + "swapFee": "8573357925731246958", "reserves": [ - "3631273760443289687278568", - "1862878182897384032159559" + "3906949820589403061833582", + "4549445886776031530189285" ], - "LPTokenSupply": "5419107225804010790642227" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "5476301421332477771776", - "expectedQty": "5391779919639063541483", - "reserves": [ - "3636750061864622165050344", - "1862878182897384032159559" - ] + "LPTokenSupply": "8372743666588185442025968" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11706329055797331361792", - "14463650076544634716160" + "796937771397130485760", + "1240171522728595816448" ], - "expectedQty": "25841969794445697316140", - "swapFee": "15514490571010024404", + "expectedQty": "2016812473208905760633", "reserves": [ - "3625043732808824833688552", - "1848414532820839397443399" + "3907746758360800192319342", + "4550686058298760126005733" ], - "LPTokenSupply": "5398643072887690247845605" + "LPTokenSupply": "8374760479061394347786601" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4302178190713960267776", - "expectedQty": "4367084170730150681226", - "swapFee": "2581306914428376160", + "type": "mintMulti", + "inputQtys": [ + "947839250611417513984", + "44475437883410423808" + ], + "expectedQty": "982991645121231735625", "reserves": [ - "3620676648638094683007326", - "1848414532820839397443399" + "3908694597611411609833326", + "4550730533736643536429541" ], - "LPTokenSupply": "5394341152827667730415445" + "LPTokenSupply": "8375743470706515579522226" }, { "type": "redeemMasset", - "inputQty": "34100901813796750963507", + "inputQty": "8452801794083320627", "expectedQtys": [ - "22874759752021856453486", - "11677938259503694169675" + "3942288487018801532", + "4589842501800509081" ], - "redemptionFee": "20460541088278050578", + "redemptionFee": "5071681076449992", "reserves": [ - "3597801888886072826553840", - "1836736594561335703273724" + "3908690655322924591031794", + "4550725943894141735920460" ], - "LPTokenSupply": "5360242297067979807256995" + "LPTokenSupply": "8375735018411889603846598" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "10851283624882086084608", - "outputIndex": 1, - "expectedQty": "10784255975349051594846", - "swapFee": "8546812153205283350", + "type": "mint", + "inputIndex": 1, + "inputQty": "101375396465523726221312", + "expectedQty": "100321929082525542494714", "reserves": [ - "3608653172510954912638448", - "1825952338585986651678878" - ], - "LPTokenSupply": "5360243151749195127785330", - "hardLimitError": false, - "insufficientLiquidityError": false + "3908690655322924591031794", + "4652101340359665462141772" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "3955589169620360101888", - "outputIndex": 1, - "expectedQty": "3930895036503005813187", - "swapFee": "3115450846037868791", + "type": "redeemMasset", + "inputQty": "57882123412074162395545", + "expectedQtys": [ + "26676032299302448965482", + "31749661602424739569030" + ], + "redemptionFee": "34729274047244497437", "reserves": [ - "3612608761680575272740336", - "1822021443549483645865691" + "3882014623023622142066312", + "4620351678757240722572742" ], - "LPTokenSupply": "5360243463294279731572209", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8418178297009745708395510" }, { "type": "redeemMasset", - "inputQty": "31247746770648662016", + "inputQty": "275095868020312422", "expectedQtys": [ - "21047206719007128562", - "10615171611057646017" + "126783419051353539", + "150896902752068679" ], - "redemptionFee": "18748648062389197", + "redemptionFee": "165057520812187", "reserves": [ - "3612587714473856265611774", - "1822010828377872588219674" + "3882014496240203090712773", + "4620351527860337970504063" ], - "LPTokenSupply": "5360212217422373889149112" + "LPTokenSupply": "8418178021930383440164306" }, { "type": "redeemBassets", "inputQtys": [ - "1825941633966351360", - "1398558395876910592" + "102617220899726966784", + "367574711269593448448" ], - "expectedQty": "3182082185795282776", - "swapFee": "1910395548806453", + "expectedQty": "465406691868331270419", + "swapFee": "279411662118269724", "reserves": [ - "3612585888532222299260414", - "1822009429819476711309082" + "3881911879019303363745989", + "4619983953149068377055615" ], - "LPTokenSupply": "5360209033620832099940527" + "LPTokenSupply": "8417712363768019202451134" }, { "type": "redeemBassets", "inputQtys": [ - "46791788517904718233600", - "781018858451878132318208" - ], - "expectedQty": "821092335038074519091942", - "swapFee": "492951171725880239598", - "reserves": [ - "3565794100014317581026814", - "1040990571367598578990874" - ], - "LPTokenSupply": "4538673042528204288632945" - }, - { - "type": "redeemMasset", - "inputQty": "351398042157531852", - "expectedQtys": [ - "275909113943370938", - "80548337372672278" + "7736111605512215199744", + "3324820696628545454080" ], - "redemptionFee": "210838825294519", + "expectedQty": "10954525587242100529903", + "swapFee": "6576661349154753169", "reserves": [ - "3565793824105203637655876", - "1040990490819261206318596" + "3874175767413791148546245", + "4616659132452439831601535" ], - "LPTokenSupply": "4538672691151246013630544" + "LPTokenSupply": "8406751919185562862643377" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "256408671862919954432", - "expectedQty": "251774619239575618673", + "inputQty": "5470529117772500172800", + "expectedQty": "5518385927720994106066", + "swapFee": "3282317470663500103", "reserves": [ - "3566050232777066557610308", - "1040990490819261206318596" - ] + "3868657381486070154440179", + "4616659132452439831601535" + ], + "LPTokenSupply": "8401281718299537428820587" }, { "type": "redeemBassets", "inputQtys": [ - "12223424737364701184", - "10204303322421940224" + "1808122878821844910080", + "1904712379543948886016" ], - "expectedQty": "22170871199452491540", - "swapFee": "13310509025086546", + "expectedQty": "3676200449891039609174", + "swapFee": "2207044496632603327", "reserves": [ - "3566038009352329192909124", - "1040980286515938784378372" + "3866849258607248309530099", + "4614754420072895882715519" ], - "LPTokenSupply": "4538902282919828014179784" + "LPTokenSupply": "8397603531509599419868417" }, { "type": "redeemMasset", - "inputQty": "2785894510863352175001", + "inputQty": "537416656489796023091", "expectedQtys": [ - "2187455101141385600426", - "638551140496812137755" + "247316073734381139424", + "295150616973334283364" ], - "redemptionFee": "1671536706518011305", + "redemptionFee": "322449993893877613", "reserves": [ - "3563850554251187807308698", - "1040341735375441972240617" + "3866601942533513928390675", + "4614459269455922548432155" ], - "LPTokenSupply": "4536116555562635313805913" + "LPTokenSupply": "8397066147098109013233087" }, { "type": "redeemMasset", - "inputQty": "38819500329485715", + "inputQty": "4295681238846288", "expectedQtys": [ - "30480673927300206", - "8897768502417812" + "1976848022652631", + "2359199322301582" ], - "redemptionFee": "23291700197691", + "redemptionFee": "2577408743307", "reserves": [ - "3563850523770513880008492", - "1040341726477673469822805" + "3866601940556665905738044", + "4614459267096723226130573" ], - "LPTokenSupply": "4536116516745464154339967" + "LPTokenSupply": "8397066142802685515261129" }, { "type": "redeemBassets", "inputQtys": [ - "392309415862109568", - "1003347193759203584" + "79348920829024403456", + "59300663300763590656" ], - "expectedQty": "1385031995198693956", - "swapFee": "831518107984006", + "expectedQty": "137295374165601686264", + "swapFee": "82426680507665611", "reserves": [ - "3563850131461098017898924", - "1040340723130479710619221" + "3866522591635836881334588", + "4614399966433422462539917" ], - "LPTokenSupply": "4536115130965102658460404" + "LPTokenSupply": "8396928773244507456675814" }, { "type": "mintMulti", "inputQtys": [ - "79145668124762760544256", - "16816585535212759285760" + "3146970469235210321920", + "5735145129975072423936" ], - "expectedQty": "94472217203557204142119", + "expectedQty": "8793087173803519666767", "reserves": [ - "3642995799585860778443180", - "1057157308665692469904981" + "3869669562105072091656508", + "4620135111563397534963853" ], - "LPTokenSupply": "4630587348168659862602523" + "LPTokenSupply": "8405721860418310976342581" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "3084821188597129412608", - "outputIndex": 1, - "expectedQty": "3036741574227150518327", - "swapFee": "2423165031780614067", + "type": "redeemMasset", + "inputQty": "537479295991923507", + "expectedQtys": [ + "247286239791782682", + "295243772299511675" + ], + "redemptionFee": "322487577595154", "reserves": [ - "3646080620774457907855788", - "1054120567091465319386654" + "3869669314818832299873826", + "4620134816319625235452178" ], - "LPTokenSupply": "4630587590485163040663929", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8405721322971263742178589" }, { "type": "redeemBassets", "inputQtys": [ - "4196525795055844", - "377010859820100" + "464050256867585280", + "117672748777341904" ], - "expectedQty": "4496201368383787", - "swapFee": "2699340425285", + "expectedQty": "576195830526954155", + "swapFee": "345925053348181", "reserves": [ - "3646080616577932112799944", - "1054120566714454459566554" + "3869668850768575432288546", + "4620134698646876458110274" ], - "LPTokenSupply": "4630587585986532265897384" + "LPTokenSupply": "8405720746464100667211070" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "77833944404067057664", - "expectedQty": "76422894972692680494", + "inputQty": "241732549691757166592", + "expectedQty": "243846280391856160102", + "swapFee": "145039529815054299", "reserves": [ - "3646158450522336179857608", - "1054120566714454459566554" - ] + "3869425004488183576128444", + "4620134698646876458110274" + ], + "LPTokenSupply": "8405479028418361891549907" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "24231166608787787218944", - "outputIndex": 0, - "expectedQty": "24587121970784760951089", - "swapFee": "0", + "inputQty": "51372805727148190990336", + "expectedQty": "50835545314064871135214", "reserves": [ - "3621571328551551418906519", - "1078351733323242246785498" - ], - "LPTokenSupply": "4630664008881504958577878", - "hardLimitError": false, - "insufficientLiquidityError": false + "3869425004488183576128444", + "4671507504374024649100610" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2146541793900226", - "3071322736812561" - ], - "expectedQty": "5167327167053278", - "swapFee": "3102257654824", - "reserves": [ - "3621571326405009625006293", - "1078351730251919509972937" - ], - "LPTokenSupply": "4630664003711385759635257" - }, - { - "type": "redeemMasset", - "inputQty": "373067415156850950144", - "expectedQtys": [ - "291595243860002323795", - "86824808186726578805" + "4988488051206194724864", + "11114514104688320708608" ], - "redemptionFee": "223840449094110570", + "expectedQty": "15940581320269358239546", + "swapFee": "9570090846669616713", "reserves": [ - "3621279731161149622682498", - "1078264905443732783394132" + "3864436516436977381403580", + "4660392990269336328392002" ], - "LPTokenSupply": "4630290958680273818096170" + "LPTokenSupply": "8440365379330395401790532" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "48743420465621944", - "expectedQty": "49605215794508960", - "swapFee": "29246052279373", + "inputIndex": 1, + "inputQty": "2372451298882539520", + "expectedQty": "2396121982513114817", + "swapFee": "1423470779329523", "reserves": [ - "3621279681555933828173538", - "1078264905443732783394132" + "3864436516436977381403580", + "4660390594147353815277185" ], - "LPTokenSupply": "4630290909939777957702163" + "LPTokenSupply": "8440363007021443597183964" }, { - "type": "redeemMasset", - "inputQty": "567741122748093", - "expectedQtys": [ - "443755233206898", - "132131659703347" - ], - "redemptionFee": "340644673648", + "type": "mint", + "inputIndex": 0, + "inputQty": "89120370164780154880", + "expectedQty": "88298063764466808048", "reserves": [ - "3621279681112178594966640", - "1078264905311601123690785" - ], - "LPTokenSupply": "4630290909372070899421434" + "3864525636807142161558460", + "4660390594147353815277185" + ] }, { - "type": "redeemMasset", - "inputQty": "16173257109091718791168", - "expectedQtys": [ - "12641267635187703689606", - "3764038254423915249438" + "type": "redeemBassets", + "inputQtys": [ + "3373202208943340", + "101769884288781392" ], - "redemptionFee": "9703954265455031274", + "expectedQty": "104046151754065496", + "swapFee": "62465170154532", "reserves": [ - "3608638413476990891277034", - "1074500867057177208441347" + "3864525633433939952615120", + "4660390492377469526495793" ], - "LPTokenSupply": "4614118622658405726133393" + "LPTokenSupply": "8440451200982837656787436" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "95183866031434448896", - "expectedQty": "96866915516750486649", - "swapFee": "57110319618860669", + "inputQty": "3341749809197403865088", + "expectedQty": "3370841884434495711620", + "swapFee": "2005049885518442319", "reserves": [ - "3608541546561474140790385", - "1074500867057177208441347" + "3861154791549505456903500", + "4660390492377469526495793" ], - "LPTokenSupply": "4614023444503406253570563" + "LPTokenSupply": "8437109651678628804766579" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "14957594579368771846144", - "expectedQty": "14897294465112976308301", + "type": "redeemMasset", + "inputQty": "31435654312587870758502", + "expectedQtys": [ + "14377565958745505991327", + "17353635198545863256381" + ], + "redemptionFee": "18861392587552722455", "reserves": [ - "3608541546561474140790385", - "1089458461636545980287491" - ] + "3846777225590759950912173", + "4643036857178923663239412" + ], + "LPTokenSupply": "8405675883505299689280322" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5030208532657445273600", - "7302206118300356706304" + "227578645883017592832", + "633739831642941554688" ], - "expectedQty": "12211793752598398014640", + "expectedQty": "852578787035036159186", + "swapFee": "511854384851932855", "reserves": [ - "3613571755094131586063985", - "1096760667754846336993795" + "3846549646944876933319341", + "4642403117347280721684724" ], - "LPTokenSupply": "4641132532721117627893504" + "LPTokenSupply": "8404822844049318286381565" }, { "type": "mintMulti", "inputQtys": [ - "157689512219430715392", - "106507139049291431936" + "289460831120316039168", + "260088642596914167808" ], - "expectedQty": "260927392062507020609", + "expectedQty": "544153759054335994815", "reserves": [ - "3613729444606351016779377", - "1096867174893895628425731" + "3846839107775997249358509", + "4642663205989877635852532" ], - "LPTokenSupply": "4641393460113180134914113" + "LPTokenSupply": "8405366997808372622376380" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4402767889259665817600", - "expectedQty": "4480119671237711069018", - "swapFee": "2641660733555799490", + "type": "redeemBassets", + "inputQtys": [ + "45306516100506827358208", + "27741385722928826417152" + ], + "expectedQty": "72339475936464812372878", + "swapFee": "43429743407923641608", "reserves": [ - "3609249324935113305710359", - "1096867174893895628425731" + "3801532591675490422000301", + "4614921820266948809435380" ], - "LPTokenSupply": "4636990956389993824676462" + "LPTokenSupply": "8332988435102840678726053" }, { "type": "redeemMasset", - "inputQty": "313041908200826732544", + "inputQty": "222342595838421211545", "expectedQtys": [ - "243513174533298533313", - "74004753829131828444" + "101372453064289629484", + "123062458189839524579" ], - "redemptionFee": "187825144920496039", + "redemptionFee": "133405557503052726", "reserves": [ - "3609005811760580007177046", - "1096793170140066496597287" + "3801431219222426132370817", + "4614798757808758969910801" ], - "LPTokenSupply": "4636677933264307489993521" + "LPTokenSupply": "8332766105847558007819780" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "75654217703023137783808", - "expectedQty": "75882830633201275059536", - "swapFee": "45392530621813882670", + "inputIndex": 0, + "inputQty": "803823231279464448000", + "expectedQty": "810807340301119586913", + "swapFee": "482293938767678668", "reserves": [ - "3609005811760580007177046", - "1020910339506865221537751" + "3800620411882125012783904", + "4614798757808758969910801" ], - "LPTokenSupply": "4561028254814346533597980" + "LPTokenSupply": "8331962330845672420139646" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5346753363492686790656", - "5713498658240206995456" + "4719896671056414900224", + "3714623553164008226816" ], - "expectedQty": "10945813278383423004464", + "expectedQty": "8352052518011050532183", + "swapFee": "5014240054839534039", "reserves": [ - "3614352565124072693967702", - "1026623838165105428533207" + "3795900515211068597883680", + "4611084134255594961683985" ], - "LPTokenSupply": "4571974068092729956602444" + "LPTokenSupply": "8323605765511612014026826" }, { "type": "mintMulti", "inputQtys": [ - "217547267856279", - "148669590074700" + "75964152025971277824", + "40076117833396330496" ], - "expectedQty": "361803925479601", + "expectedQty": "114919943026853924650", "reserves": [ - "3614352565341619961823981", - "1026623838313775018607907" + "3795976479363094569161504", + "4611124210373428358014481" ], - "LPTokenSupply": "4571974068454533882082045" + "LPTokenSupply": "8323720685454638867951476" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "24775224850780816146432", - "expectedQty": "24322778162839658920493", - "reserves": [ - "3639127790192400777970413", - "1026623838313775018607907" - ] - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "232580605303301376", - "965028819367422464" + "101514136430407172096", + "179285013245830463488" ], - "expectedQty": "1190608508031265818", - "swapFee": "714793981207483", + "expectedQty": "277981493365308932085", "reserves": [ - "3639127557611795474669037", - "1026622873284955651185443" + "3796077993499524976333600", + "4611303495386674188477969" ], - "LPTokenSupply": "4596295655365550926649984" + "LPTokenSupply": "8323998666948004176883561" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "14667498078169812959232", - "expectedQty": "14931495693149453999169", - "swapFee": "8800498846901887775", - "reserves": [ - "3624196061918646020669868", - "1026622873284955651185443" + "type": "redeemMasset", + "inputQty": "2210775934203591884", + "expectedQtys": [ + "1007597771365376725", + "1223984104909715440" ], - "LPTokenSupply": "4581629037337265803879529" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "18633105579010600992768", - "expectedQty": "18967985751893674091919", - "swapFee": "11179863347406360595", + "redemptionFee": "1326465560522155", "reserves": [ - "3605228076166752346577949", - "1026622873284955651185443" + "3796076985901753610956875", + "4611302271402569278762529" ], - "LPTokenSupply": "4562997049744589943522820" + "LPTokenSupply": "8323996456304716529343892" }, { "type": "redeemBassets", "inputQtys": [ - "2098494611776464748544", - "20247585210463466553344" + "30303940191491231744", + "8799684592268829696" ], - "expectedQty": "22250077755910230543501", - "swapFee": "13358061490440402567", + "expectedQty": "38732190712005131339", + "swapFee": "23253266387035299", "reserves": [ - "3603129581554975881829405", - "1006375288074492184632099" + "3796046681961562119725131", + "4611293471717977009932833" ], - "LPTokenSupply": "4540734949733338316617007" + "LPTokenSupply": "8323957703186064775880782" }, { "type": "redeemBassets", "inputQtys": [ - "4221132817195087360", - "7472292457419099136" + "252910622818717344", + "9075095827765530624" ], - "expectedQty": "11596207070443949033", - "swapFee": "6961901383096227", + "expectedQty": "9230363388264571275", + "swapFee": "5541542958733983", "reserves": [ - "3603125360422158686742045", - "1006367815782034765532963" + "3796046429050939301007787", + "4611284396622149244402209" ], - "LPTokenSupply": "4540723347260556627881368" + "LPTokenSupply": "8323948467835287848448921" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2521728415562389782528", - "expectedQty": "2526834379059424045995", - "swapFee": "1513037049337433869", - "reserves": [ - "3603125360422158686742045", - "1003840981402975341486968" + "type": "redeemMasset", + "inputQty": "4560065083679644876", + "expectedQtys": [ + "2078320488494646947", + "2524660069073903336" ], - "LPTokenSupply": "4538201770148699171842226" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "5344320548580728832", - "expectedQty": "5246186777466478921", + "redemptionFee": "2736039050207786", "reserves": [ - "3603130704742707267470877", - "1003840981402975341486968" - ] + "3796044350730450806360840", + "4611281871962080170498873" + ], + "LPTokenSupply": "8323943908043808073824823" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "35675357347757236224", - "38486136422258155520" + "9612709620321262", + "285461413886774176" ], - "expectedQty": "73406624131590126601", - "swapFee": "44070416728991470", + "expectedQty": "291987456665600249", "reserves": [ - "3603095029385359510234653", - "1003802495266553083331448" + "3796044360343160426682102", + "4611282157423494057273049" ], - "LPTokenSupply": "4538133570047969992102222" + "LPTokenSupply": "8323944200031264739425072" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "38235673453141385216", - "expectedQty": "38312040405145584515", - "swapFee": "22941404071884831", + "inputIndex": 0, + "inputQty": "93439804793557920776192", + "expectedQty": "94247005932731116566281", + "swapFee": "56063882876134752465", "reserves": [ - "3603095029385359510234653", - "1003764183226147937746933" + "3701797354410429310115821", + "4611282157423494057273049" ], - "LPTokenSupply": "4538095336668657257905489" + "LPTokenSupply": "8230510001625994432124126" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "3807014940198075629568", - "outputIndex": 0, - "expectedQty": "3867922232215191549772", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "83920729636894618419200", + "outputIndex": 1, + "expectedQty": "83966173318064155423040", + "swapFee": "66521581751427033038", "reserves": [ - "3599227107153144318684881", - "1007571198166346013376501" + "3785718084047323928535021", + "4527315984105429901850009" ], - "LPTokenSupply": "4538095336668657257905489", + "LPTokenSupply": "8230516653784169574827429", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "24067787028218855292928", + "expectedQty": "23844180150968281118974", + "reserves": [ + "3809785871075542783827949", + "4527315984105429901850009" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "1410392537218793865216", - "6815354353505351499776" + "3383049206352989126656", + "4204151216320695238656" ], - "expectedQty": "8181958658098458977950", - "swapFee": "4912122468340079434", + "expectedQty": "7511805456481595245578", "reserves": [ - "3597816714615925524819665", - "1000755843812840661876725" + "3813168920281895772954605", + "4531520135321750597088665" ], - "LPTokenSupply": "4529908957100337292856047" + "LPTokenSupply": "8261872639391619451191981" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "31334107803528077312", - "expectedQty": "31901422207363482391", - "swapFee": "18800464682116846", + "type": "mintMulti", + "inputQtys": [ + "35423395150753177600", + "70002331307438112768" + ], + "expectedQty": "104364824454138375777", "reserves": [ - "3597784813193718161337274", - "1000755843812840661876725" + "3813204343677046526132205", + "4531590137653058035201433" ], - "LPTokenSupply": "4529877624872580232990419" + "LPTokenSupply": "8261977004216073589567758" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7883571468995240394752", - "6774757561430022553600" + "21094491093904300", + "4654286901810888" ], - "expectedQty": "14495920151126188890182", + "expectedQty": "25503923708651131", + "swapFee": "15311541149880", "reserves": [ - "3605668384662713401732026", - "1007530601374270684430325" + "3813204322582555432227905", + "4531590132998771133390545" ], - "LPTokenSupply": "4544373545023706421880601" + "LPTokenSupply": "8261976978698369493881734" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3919103452979700695040", - "2344485039541870657536" + "71493171240940527616", + "162654951874510159872" ], - "expectedQty": "6185477158565900830781", - "swapFee": "3713514403781809584", + "expectedQty": "231783653291682105446", "reserves": [ - "3601749281209733701036986", - "1005186116334728813772789" + "3813275815753796372755521", + "4531752787950645643550417" ], - "LPTokenSupply": "4538184725702177117421193" + "LPTokenSupply": "8262208762351661175987180" }, { "type": "mint", "inputIndex": 1, - "inputQty": "7145275476680549335040", - "expectedQty": "7125940121057894694814", + "inputQty": "104324853453682196480", + "expectedQty": "103234857216787655625", "reserves": [ - "3601749281209733701036986", - "1012331391811409363107829" + "3813275815753796372755521", + "4531857112804099325746897" ] }, { "type": "redeemBassets", "inputQtys": [ - "28263517350711210803200", - "2978686227014935904256" + "1722984643151223848960", + "1677086642229559164928" + ], + "expectedQty": "3366521527175397150287", + "swapFee": "2021125591660234430", + "reserves": [ + "3811552831110645148906561", + "4530180026161869766581969" + ], + "LPTokenSupply": "8258943656668670072281530" + }, + { + "type": "mintMulti", + "inputQtys": [ + "274145797265964695552", + "170908069417615294464" ], - "expectedQty": "30716613535751350713708", - "swapFee": "18441032741095467708", + "expectedQty": "440717998043592406144", "reserves": [ - "3573485763859022490233786", - "1009352705584394427203573" + "3811826976907911113602113", + "4530350934231287381876433" ], - "LPTokenSupply": "4514577455358016675481360" + "LPTokenSupply": "8259384374666713664687674" }, { "type": "redeemMasset", - "inputQty": "2251339214629745616486", + "inputQty": "22452696096074116995481", "expectedQtys": [ - "1780964361653526041109", - "503044174728462230256" + "10356031070556851843220", + "12308128180960432606435" ], - "redemptionFee": "1350803528777847369", + "redemptionFee": "13471617657644470197", "reserves": [ - "3571704799497368964192677", - "1008849661409665964973317" + "3801470945837354261758893", + "4518042806050326949269998" ], - "LPTokenSupply": "4512326251223739807649610" + "LPTokenSupply": "8236933025732405312139212" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "53163052912223", - "19171861140799" + "45202867001634480128", + "55912158800010076160" ], - "expectedQty": "71307375258273", + "expectedQty": "100110196662086843140", + "swapFee": "60102179304835006", "reserves": [ - "3571704799550532017104900", - "1008849661428837826114116" + "3801425742970352627278765", + "4517986893891526939193838" ], - "LPTokenSupply": "4512326251295047182907883" + "LPTokenSupply": "8236832861443781850944565" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "182165948551684030464", - "expectedQty": "182583357070600716015", - "swapFee": "109299569131010418", + "type": "swap", + "inputIndex": 0, + "inputQty": "99862380093885", + "outputIndex": 1, + "expectedQty": "99898083675158", + "swapFee": "79146639410", "reserves": [ - "3571704799550532017104900", - "1008667078071767225398101" + "3801425743070215007372650", + "4517986893791628855518680" ], - "LPTokenSupply": "4512144096276452411978460" + "LPTokenSupply": "8236832861443789765608506", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "6699695212203235328", - "4616532230200590598144" - ], - "expectedQty": "4610019742160566863535", - "swapFee": "2767672448765599477", + "type": "swap", + "inputIndex": 0, + "inputQty": "1913096272961377665024", + "outputIndex": 1, + "expectedQty": "1913774165871178485189", + "swapFee": "1516236632124202765", "reserves": [ - "3571698099855319813869572", - "1004050545841566634799957" + "3803338839343176385037674", + "4516073119625757677033491" ], - "LPTokenSupply": "4507531585629087956075394" + "LPTokenSupply": "8236833013067452978028782", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "1968287724022061", + "inputQty": "30767924250392125440", "outputIndex": 0, - "expectedQty": "1999420271679103", + "expectedQty": "30732516290376959128", "swapFee": "0", "reserves": [ - "3571698097855899542190469", - "1004050547809854358822018" + "3803308106826886008078546", + "4516103887550008069158931" ], - "LPTokenSupply": "4507531585629087956075394", + "LPTokenSupply": "8236833013067452978028782", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "110684325991836256", - "expectedQty": "110927199294762931", - "swapFee": "66410595595101", - "reserves": [ - "3571698097855899542190469", - "1004050436882655064059087" + "type": "redeemBassets", + "inputQtys": [ + "874599226150168166400", + "2691740896280432869376" ], - "LPTokenSupply": "4507531474951403023798648" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "14649285560650019373056", - "expectedQty": "14380799672992159895779", + "expectedQty": "3530079644358759648616", + "swapFee": "2119319378242201109", "reserves": [ - "3586347383416549561563525", - "1004050436882655064059087" - ] + "3802433507600735839912146", + "4513412146653727636289555" + ], + "LPTokenSupply": "8233301026035653800399166" }, { "type": "redeemMasset", - "inputQty": "10801983079761702092", + "inputQty": "21949636090118500725555", "expectedQtys": [ - "8561957332260906443", - "2397045261086111251" + "10131046376889579323314", + "12025348420784786713691" ], - "redemptionFee": "6481189847857021", + "redemptionFee": "13169781654071100435", "reserves": [ - "3586338821459217300657082", - "1004048039837393977947836" + "3792302461223846260588832", + "4501386798232942849575864" ], - "LPTokenSupply": "4521901473289434406778037" + "LPTokenSupply": "8211352706923700706783654" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "63369598647103911886848", - "expectedQty": "62204129679649734623773", + "type": "mintMulti", + "inputQtys": [ + "650822966165290090496", + "702767861549313687552" + ], + "expectedQty": "1340189179124256175463", "reserves": [ - "3649708420106321212543930", - "1004048039837393977947836" - ] + "3792953284190011550679328", + "4502089566094492163263416" + ], + "LPTokenSupply": "8212692896102824962959117" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1867905006091584", - "924284214328566" + "16837593811126426009600", + "2460041593316592058368" ], - "expectedQty": "2755586882333189", - "swapFee": "1654344736241", + "expectedQty": "19115066209483554802486", "reserves": [ - "3649708418238416206452346", - "1004048038913109763619270" + "3809790878001137976688928", + "4504549607687808755321784" ], - "LPTokenSupply": "4584105600212008348806003" + "LPTokenSupply": "8231807962312308517761603" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "345450656056318361600", - "expectedQty": "346047585630388394477", - "swapFee": "207270393633791016", + "inputQty": "3178947198920562311168", + "expectedQty": "3210540472592629613370", + "swapFee": "1907368319352337386", "reserves": [ - "3649708418238416206452346", - "1003701991327479375224793" + "3809790878001137976688928", + "4501339067215216125708414" ], - "LPTokenSupply": "4583760170282991393823504" + "LPTokenSupply": "8228629205850219890684173" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1093753203585328742400", - "outputIndex": 1, - "expectedQty": "1075193467066185079283", - "swapFee": "858861748910300936", + "type": "redeemMasset", + "inputQty": "537212288146516685619", + "expectedQtys": [ + "248575847067156256799", + "293697005268846974684" + ], + "redemptionFee": "322327372887910011", "reserves": [ - "3650802171442001535194746", - "1002626797860413190145510" + "3809542302154070820432129", + "4501045370209947278733730" ], - "LPTokenSupply": "4583760256169166284853597", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8228092025794810662789555" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2359132810397043200", - "expectedQty": "2315597193496514774", + "inputQty": "12236194948607006212096", + "expectedQty": "12121991290989334460194", "reserves": [ - "3650804530574811932237946", - "1002626797860413190145510" + "3821778497102677826644225", + "4501045370209947278733730" ] }, - { - "type": "redeemMasset", - "inputQty": "32722132910771876659", - "expectedQtys": [ - "26046382626677239207", - "7153163361699010111" - ], - "redemptionFee": "19633279746463125", - "reserves": [ - "3650778484192185254998739", - "1002619644697051491135399" - ], - "LPTokenSupply": "4583729851596776984138024" - }, { "type": "mintMulti", "inputQtys": [ - "3298183424259783168", - "1797435739426060544" + "1509305604398816165888", + "1310360118774112976896" ], - "expectedQty": "5030637160606847837", + "expectedQty": "2791911176983047363068", "reserves": [ - "3650781782375609514781907", - "1002621442132790917195943" + "3823287802707076642810113", + "4502355730328721391710626" ], - "LPTokenSupply": "4583734882233937590985861" + "LPTokenSupply": "8243005928262783044612817" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "847987010769360125952", - "outputIndex": 0, - "expectedQty": "861938147122749564693", - "swapFee": "0", - "reserves": [ - "3649919844228486765217214", - "1003469429143560277321895" + "type": "redeemMasset", + "inputQty": "28232948574805132", + "expectedQtys": [ + "13087206687292970", + "15411672639660893" ], - "LPTokenSupply": "4583734882233937590985861", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1501773114505116516352", - "expectedQty": "1504328639818925423942", - "swapFee": "901063868703069909", + "redemptionFee": "16939769144883", "reserves": [ - "3649919844228486765217214", - "1001965100503741351897953" + "3823287789619869955517143", + "4502355714917048752049733" ], - "LPTokenSupply": "4582233199225819344776499" + "LPTokenSupply": "8243005900031528446722173" }, { "type": "redeemMasset", - "inputQty": "26391083144416832", + "inputQty": "668478645551226473676", "expectedQtys": [ - "21008870280305220", - "5767292357162880" + "309869094161629668119", + "364906060894122280830" ], - "redemptionFee": "15834649886650", + "redemptionFee": "401087187330735884", "reserves": [ - "3649919823219616484911994", - "1001965094736448994735073" + "3822977920525708325849024", + "4501990808856154629768903" ], - "LPTokenSupply": "4582233172836319665348332" + "LPTokenSupply": "8242337461494695953322085" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "16820827696629383168", - "expectedQty": "16849174589024881749", - "swapFee": "10092496617977629", + "inputQty": "386619915904422846136320", + "expectedQty": "390402714359523287950454", + "swapFee": "231971949542653707681", "reserves": [ - "3649919823219616484911994", - "1001948245561859969853324" + "3822977920525708325849024", + "4111588094496631341818449" ], - "LPTokenSupply": "4582216353017872697762926" + "LPTokenSupply": "7855740742785227372556533" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "299123098226997545926656", - "expectedQty": "304487162974118050334153", - "swapFee": "179473858936198527555", + "type": "redeemBassets", + "inputQtys": [ + "31621608667348421574656", + "80063462006628764614656" + ], + "expectedQty": "110565763977657668390116", + "swapFee": "66379285958169502735", "reserves": [ - "3345432660245498434577841", - "1001948245561859969853324" + "3791356311858359904274368", + "4031524632490002577203793" ], - "LPTokenSupply": "4283111202176768771689025" + "LPTokenSupply": "7745115237450207351613954" }, { "type": "redeemMasset", - "inputQty": "3467751064758281410969", + "inputQty": "2999824969305921316454", "expectedQtys": [ - "2706949795547980925615", - "810724313988823042779" + "1467580654408859760296", + "1560546430286595487718" ], - "redemptionFee": "2080650638854968846", + "redemptionFee": "1799894981583552789", "reserves": [ - "3342725710449950453652226", - "1001137521247871146810545" + "3789888731203951044514072", + "4029964086059715981716075" ], - "LPTokenSupply": "4279643659177074375774940" + "LPTokenSupply": "7742115592470399588652778" }, { - "type": "redeemMasset", - "inputQty": "856059640487522099", - "expectedQtys": [ - "668246203223409654", - "200137972848610820" + "type": "redeemBassets", + "inputQtys": [ + "54474118034977133166592", + "217411265736524938870784" ], - "redemptionFee": "513635784292513", + "expectedQty": "269161808697091817943853", + "swapFee": "161594041643241035387", "reserves": [ - "3342725042203747230242572", - "1001137321109898298199725" + "3735414613168973911347480", + "3812552820323191042845291" ], - "LPTokenSupply": "4279642803168797466682092" + "LPTokenSupply": "7472808349135828853777075" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "19585778741387596922880", - "17039089444134783549440" + "1634292191761340825600", + "6718704312907279106048" + ], + "expectedQty": "8269475435212446503858", + "reserves": [ + "3737048905360735252173080", + "3819271524636098321951339" + ], + "LPTokenSupply": "7481077824571041300280933" + }, + { + "type": "redeemMasset", + "inputQty": "26235160236364755527270", + "expectedQtys": [ + "13097477916263050347991", + "13385648868115343272943" ], - "expectedQty": "36204269405594835199600", - "swapFee": "21735603005159997118", + "redemptionFee": "15741096141818853316", "reserves": [ - "3323139263462359633319692", - "984098231665763514650285" + "3723951427444472201825089", + "3805885875767982978678396" ], - "LPTokenSupply": "4243418971720497987485084" + "LPTokenSupply": "7454844238444290726638994" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "161075639033603985244160", - "expectedQty": "163916613494925353470247", - "swapFee": "96645383420162391146", + "inputQty": "11578412147653228", + "expectedQty": "11687018347364578", + "swapFee": "6947047288591", "reserves": [ - "3159222649967434279849445", - "984098231665763514650285" + "3723951415757453854460511", + "3805885875767982978678396" ], - "LPTokenSupply": "4082352997225236018480038" + "LPTokenSupply": "7454844226866573283714625" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "80747718587694039040", + "expectedQty": "79937813139926087342", + "reserves": [ + "3723951415757453854460511", + "3805966623486570672717436" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1491773186512729669632", - "1569960410930410946560" + "7715981985480781824", + "9205938863786037248" ], - "expectedQty": "3027652770430051381603", - "swapFee": "1817682271621003431", + "expectedQty": "16753294490060115810", + "swapFee": "10058011500936631", "reserves": [ - "3157730876780921550179813", - "982528271254833103703725" + "3723943699775468373678687", + "3805957417547706886680188" ], - "LPTokenSupply": "4079323708540761508195346" + "LPTokenSupply": "7454907402333012798843188" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "16528913754636406784", - "expectedQty": "16818539863823231616", - "swapFee": "9917348252781844", + "inputQty": "149273956147075121152", + "expectedQty": "147798037558049281378", "reserves": [ - "3157714058241057726948197", - "982528271254833103703725" - ], - "LPTokenSupply": "4079307180618741697066746" + "3724092973731615448799839", + "3805957417547706886680188" + ] }, { - "type": "redeemMasset", - "inputQty": "8966296098434980406886", - "expectedQtys": [ - "6936474795346000432662", - "2158296306623262355876" + "type": "mintMulti", + "inputQtys": [ + "933840930430283415552", + "14418481348715853824" ], - "redemptionFee": "5379777659060988244", + "expectedQty": "938881176937063923812", "reserves": [ - "3150777583445711726515535", - "980369974948209841347849" + "3725026814662045732215391", + "3805971836029055602534012" ], - "LPTokenSupply": "4070341422498072622758684" + "LPTokenSupply": "7455994081547507912048378" }, { "type": "mintMulti", "inputQtys": [ - "39439607548686123008", - "20595346486345469952" + "3216745503976590336", + "4593620439389599232" ], - "expectedQty": "59234030534405835459", + "expectedQty": "7732487894732790079", "reserves": [ - "3150817023053260412638543", - "980390570294696186817801" + "3725030031407549708805727", + "3805976429649494992133244" ], - "LPTokenSupply": "4070400656528607028594143" + "LPTokenSupply": "7456001814035402644838457" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "33658607597203859963904", - "16476345890028180733952" + "36722879013432525324288", + "23164527550855307591680" ], - "expectedQty": "49456375685837281388816", + "expectedQty": "59292050871729366894221", + "swapFee": "35596588476123294113", "reserves": [ - "3184475630650464272602447", - "996866916184724367551753" + "3688307152394117183481439", + "3782811902098639684541564" ], - "LPTokenSupply": "4119857032214444309982959" + "LPTokenSupply": "7396677726234044766979533" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "78746446690774052503552", + "expectedQty": "77965679627817158021532", + "reserves": [ + "3767053599084891235984991", + "3782811902098639684541564" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "1320409547338702848", + "inputQty": "17429872068637509632", "outputIndex": 1, - "expectedQty": "1302255616776342414", - "swapFee": "1037546986136649", + "expectedQty": "17416409120072725183", + "swapFee": "13805160574423443", "reserves": [ - "3184476951060011611305295", - "996865613929107591209339" + "3767071028956959873494623", + "3782794485689519611816381" ], - "LPTokenSupply": "4119857032318199008596623", + "LPTokenSupply": "7474643407242377982443409", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "3930280969121606144", - "5078972782872526848" - ], - "expectedQty": "8914574041487937659", - "swapFee": "5351955598251713", + "type": "swap", + "inputIndex": 1, + "inputQty": "13739400806073059328", + "outputIndex": 0, + "expectedQty": "13739021485213905110", + "swapFee": "0", "reserves": [ - "3184473020779042489699151", - "996860534956324718682491" + "3767057289935474659589513", + "3782808225090325684875709" ], - "LPTokenSupply": "4119848112927397482232421" + "LPTokenSupply": "7474643407242377982443409", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "2123915659682070816358", + "inputQty": "123195562026250430054", "expectedQtys": [ - "1640714366189255730863", - "513605670425754801150" + "62050624211086689829", + "62310072178835435290" ], - "redemptionFee": "1274349395809242489", + "redemptionFee": "73917337215750258", "reserves": [ - "3182832306412853233968288", - "996346929285898963881341" + "3766995239311263572899684", + "3782745915018146849440419" ], - "LPTokenSupply": "4117724324702654992340311" + "LPTokenSupply": "7474520219072085453588380" }, { - "type": "mintMulti", - "inputQtys": [ - "579946274493203072", - "957674247381001472" - ], - "expectedQty": "1522632467846473306", + "type": "swap", + "inputIndex": 0, + "inputQty": "633017167725107571851264", + "outputIndex": 1, + "expectedQty": "631807693261707754499167", + "swapFee": "501245423111900003032", "reserves": [ - "3182832886359127727171360", - "996347886960146344882813" + "4400012407036371144750948", + "3150938221756439094941252" ], - "LPTokenSupply": "4117725847335122838813617" + "LPTokenSupply": "7474570343614396643588683", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "80507400588642288", - "20798107305376224" + "type": "redeemMasset", + "inputQty": "808325194040783974", + "expectedQtys": [ + "475546651481655294", + "340548612541548654" ], - "expectedQty": "99772557382260894", + "redemptionFee": "484995116424470", "reserves": [ - "3182832966866528315813648", - "996347907758253650259037" + "4400011931489719663095654", + "3150937881207826553392598" ], - "LPTokenSupply": "4117725947107680221074511" + "LPTokenSupply": "7474569535337702114447156" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "5464224481546843717632", - "expectedQty": "5437285939438570692569", + "inputIndex": 0, + "inputQty": "23304863006010227294208", + "expectedQty": "23046645380473070416495", "reserves": [ - "3182832966866528315813648", - "1001812132239800493976669" + "4423316794495729890389862", + "3150937881207826553392598" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "2170471342509989376", - "expectedQty": "2131944483195823705", + "inputQty": "5175960958452447051776", + "expectedQty": "5118559167459709199547", "reserves": [ - "3182835137337870825803024", - "1001812132239800493976669" + "4428492755454182337441638", + "3150937881207826553392598" ] }, { - "type": "mintMulti", - "inputQtys": [ - "117945031181299616", - "274484782471697024" - ], - "expectedQty": "388970370522609863", + "type": "redeem", + "inputIndex": 0, + "inputQty": "283477099779438367735808", + "expectedQty": "286454810460546343630548", + "swapFee": "170086259867663020641", "reserves": [ - "3182835255282902007102640", - "1001812406724582965673693" + "4142037944993635993811090", + "3150937881207826553392598" ], - "LPTokenSupply": "4123165753961972510200648" + "LPTokenSupply": "7219274648732183292629454" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "8472284885172650770432", - "expectedQty": "8620151323141197662131", - "swapFee": "5083370931103590462", + "inputIndex": 1, + "inputQty": "1918917303879274594304", + "expectedQty": "1935288672841769974723", + "swapFee": "1151350382327564756", "reserves": [ - "3174215103959760809440509", - "1001812406724582965673693" + "4142037944993635993811090", + "3149002592534984783417875" ], - "LPTokenSupply": "4114693977413892969789262" + "LPTokenSupply": "7217355846563342250791625" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "52003595911510507520", + "expectedQty": "51532794810892904942", + "reserves": [ + "4142037944993635993811090", + "3149054596130896293925395" + ] }, { "type": "redeemBassets", "inputQtys": [ - "4987951549374108", - "2560890841654319" + "3347477515370461396992", + "325916466766673149952" ], - "expectedQty": "7447507419047204", - "swapFee": "4471187163726", + "expectedQty": "3633936676702020805057", + "swapFee": "2181671008626388316", "reserves": [ - "3174215098971809260066401", - "1001812404163692124019374" + "4138690467478265532414098", + "3148728679664129620775443" ], - "LPTokenSupply": "4114693969962361482294703" + "LPTokenSupply": "7213771479177543359142024" }, { - "type": "mintMulti", - "inputQtys": [ - "14183850846995594870784", - "14451034686580171210752" - ], - "expectedQty": "28309900412487502943925", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2506324819815206912", + "expectedQty": "2532436658052616868", + "swapFee": "1503794891889124", "reserves": [ - "3188398949818804854937185", - "1016263438850272295230126" + "4138687935041607479797230", + "3148728679664129620775443" ], - "LPTokenSupply": "4143003870374848985238628" + "LPTokenSupply": "7213768973003103033124024" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "557355996234916757504", - "expectedQty": "559922976073380463867", - "swapFee": "334413597740950054", + "type": "redeemMasset", + "inputQty": "1798091065763767", + "expectedQtys": [ + "1030982941806973", + "784375533517840" + ], + "redemptionFee": "1078854639458", "reserves": [ - "3188398949818804854937185", - "1015703515874198914766259" + "4138687934010624537990257", + "3148728678879754087257603" ], - "LPTokenSupply": "4142446547819973842576129" + "LPTokenSupply": "7213768971205119852824202" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "662128310440187264", - "expectedQty": "673646686132768891", - "swapFee": "397276986264112", + "inputQty": "1042955631216896114688", + "expectedQty": "1053821115304321618176", + "swapFee": "625773378730137668", "reserves": [ - "3188398276172118722168294", - "1015703515874198914766259" + "4137634112895320216372081", + "3148728678879754087257603" ], - "LPTokenSupply": "4142445885731391101015276" + "LPTokenSupply": "7212726078151240829723280" }, { - "type": "mintMulti", - "inputQtys": [ - "4516147492696198656", - "101664127015472873472" - ], - "expectedQty": "105573962854473777971", + "type": "redeem", + "inputIndex": 1, + "inputQty": "621188125457825267712", + "expectedQty": "626489611365528089469", + "swapFee": "372712875274695160", "reserves": [ - "3188402792319611418366950", - "1015805180001214387639731" + "4137634112895320216372081", + "3148102189268388559168134" ], - "LPTokenSupply": "4142551459694245574793247" + "LPTokenSupply": "7212104927297070531925084" }, { "type": "mint", "inputIndex": 1, - "inputQty": "143686709240735104", - "expectedQty": "142942564228620429", + "inputQty": "632962746858972160", + "expectedQty": "627230147243178296", "reserves": [ - "3188402792319611418366950", - "1015805323687923628374835" + "4137634112895320216372081", + "3148102822231135418140294" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "651374526770812", - "outputIndex": 1, - "expectedQty": "642669634278821", - "swapFee": "511882534281", + "type": "redeemMasset", + "inputQty": "31404684501942111358156", + "expectedQtys": [ + "18006271297858692216408", + "13700001484902334031106" + ], + "redemptionFee": "18842810701165266814", "reserves": [ - "3188402792970985945137762", - "1015805323045253994096014" + "4119627841597461524155673", + "3134402820746233084109188" ], - "LPTokenSupply": "4142551602636860991667104", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7180702754306345780271905" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1290851778904703369216", - "1701177037798368870400" + "53344649693795483648", + "13869670383167507267584" ], - "expectedQty": "2960399727002045932029", - "swapFee": "1777306219933187471", + "expectedQty": "13796662337157517873871", "reserves": [ - "3187111941192081241768546", - "1014104146007455625225614" + "4119681186247155319639321", + "3148272491129400591376772" ], - "LPTokenSupply": "4139589603334261005866350" + "LPTokenSupply": "7194499416643503298145776" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "36098278348675240", - "expectedQty": "36726487488575153", - "swapFee": "21658967009205", + "inputIndex": 1, + "inputQty": "276655895975472857088", + "expectedQty": "279022543187580868078", + "swapFee": "165993537585283714", "reserves": [ - "3187111904465593753193393", - "1014104146007455625225614" + "4119681186247155319639321", + "3147993468586213010508694" ], - "LPTokenSupply": "4139589567238148553892030" + "LPTokenSupply": "7194222777346881583817059" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1696723553363498496", - "43719238661947384" + "13035332920752566435840", + "19512238868807657979904" ], - "expectedQty": "1710194073047031684", + "expectedQty": "32228521667249290203695", + "swapFee": "19348722233689787995", "reserves": [ - "3187113601189147116691889", - "1014104189726694287172998" + "4106645853326402753203481", + "3128481229717405352528790" ], - "LPTokenSupply": "4139591277432221600923714" + "LPTokenSupply": "7161976841829621972804167" }, { - "type": "redeemBassets", - "inputQtys": [ - "8727343453104538624", - "623380387661897216" + "type": "redeemMasset", + "inputQty": "1099443197625688391680", + "expectedQtys": [ + "630037618641004265452", + "479968552033203929954" ], - "expectedQty": "9193079559030676173", - "swapFee": "5519159230956979", + "redemptionFee": "659665918575413035", "reserves": [ - "3187104873845694012153265", - "1014103566346306625275782" + "4106015815707761748938029", + "3128001261165372148598836" ], - "LPTokenSupply": "4139582079385419262386258" + "LPTokenSupply": "7160877464598588141953790" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "6810524014323438714880", - "expectedQty": "6929005556140347420779", - "swapFee": "4086314408594063228", + "type": "mintMulti", + "inputQtys": [ + "19413255275753670443008", + "299068538696395587584" + ], + "expectedQty": "19497761922330037333646", "reserves": [ - "3180175868289553664732486", - "1014103566346306625275782" + "4125429070983515419381037", + "3128300329704068544186420" ], - "LPTokenSupply": "4132771964002536683077700" + "LPTokenSupply": "7180375226520918179287436" }, { "type": "mint", "inputIndex": 1, - "inputQty": "83528242906224", - "expectedQty": "83094304179312", + "inputQty": "80432562649407586041856", + "expectedQty": "79700659337398767250910", "reserves": [ - "3180175868289553664732486", - "1014103566429834868182006" + "4125429070983515419381037", + "3208732892353476130228276" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "80185009668159", - "outputIndex": 0, - "expectedQty": "81204481353483", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "6826600639999074788966", + "expectedQtys": [ + "3876785805645555704941", + "3015339717916500748641" + ], + "redemptionFee": "4095960383999444873", "reserves": [ - "3180175868208349183379003", - "1014103566510019877850165" + "4121552285177869863676096", + "3205717552635559629479635" ], - "LPTokenSupply": "4132771964085630987257012", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7253249694814356271693867" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4088039540535448829952", - "outputIndex": 0, - "expectedQty": "4139774779695955372340", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "534782134905556959232", + "expectedQtys": [ + "303699740579599988963", + "236215756041263945297" + ], + "redemptionFee": "320869280943334175", "reserves": [ - "3176036093428653228006663", - "1018191606050555326680117" + "4121248585437290263687133", + "3205481336879518365534338" ], - "LPTokenSupply": "4132771964085630987257012", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7252714944766378809068052" }, { - "type": "redeemBassets", - "inputQtys": [ - "8240003247593802956800", - "53269208875937944305664" + "type": "redeemMasset", + "inputQty": "4526822598626192", + "expectedQtys": [ + "2570756975335070", + "1999518673832929" ], - "expectedQty": "61103893903168841142730", - "swapFee": "36684346950071347494", + "redemptionFee": "2716093559175", "reserves": [ - "3167796090181059425049863", - "964922397174617382374453" + "4121248582866533288352063", + "3205481334879999691701409" ], - "LPTokenSupply": "4071635054270207081901536" + "LPTokenSupply": "7252714940239827819797777" }, { - "type": "mintMulti", - "inputQtys": [ - "13884824136694507520", - "12734929337674260480" + "type": "redeemMasset", + "inputQty": "26611350269868584101478", + "expectedQtys": [ + "15112435453099958932151", + "11754357640760517258662" + ], + "redemptionFee": "15966810161921150460", + "reserves": [ + "4106136147413433329419912", + "3193726977239239174442747" ], - "expectedQty": "26314443107633295337", + "LPTokenSupply": "7226105186650975427811345" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "364888582300479979520", + "expectedQty": "368667355679426564583", + "swapFee": "218933149380287987", "reserves": [ - "3167809975005196119557383", - "964935132103955056634933" + "4105767480057753902855329", + "3193726977239239174442747" ], - "LPTokenSupply": "4071661368713314715196873" + "LPTokenSupply": "7225740319961989885860623" }, { "type": "redeemBassets", "inputQtys": [ - "12959869525037275938816", - "3702525408204812189696" + "59358435589625176064", + "82206323619765370880" ], - "expectedQty": "16413577928345103854978", - "swapFee": "9854059192522575858", + "expectedQty": "140168647545027157244", + "swapFee": "84151679534737136", "reserves": [ - "3154850105480158843618567", - "961232606695750244445237" + "4105708121622164277679265", + "3193644770915619409071867" ], - "LPTokenSupply": "4055238922131696341023621" + "LPTokenSupply": "7225600075577933277439955" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "20094861611775224184832", + "expectedQty": "19910678164586989232160", + "reserves": [ + "4105708121622164277679265", + "3213739632527394633256699" + ] }, { "type": "redeemMasset", - "inputQty": "45304582800624038707", + "inputQty": "9006161728033975500", "expectedQtys": [ - "35224412930890694968", - "10732317900642172404" + "5100328548892547931", + "3992277948392197501" ], - "redemptionFee": "27182749680374423", + "redemptionFee": "5403697036820385", "reserves": [ - "3154814881067227952923599", - "961221874377849602272833" + "4105703021293615385131334", + "3213735640249446241059198" ], - "LPTokenSupply": "4055193620267170685022356" + "LPTokenSupply": "7245501748121161936378653" }, { "type": "mintMulti", "inputQtys": [ - "3810785479055217524736", - "3335716994571401953280" + "3348059874000931328", + "20133823406243913728" ], - "expectedQty": "7063342969366782014734", + "expectedQty": "23260852467672174108", "reserves": [ - "3158625666546283170448335", - "964557591372421004226113" + "4105706369353489386062662", + "3213755774072852484972926" ], - "LPTokenSupply": "4062256963236537467037090" + "LPTokenSupply": "7245525008973629608552761" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "451292182992581721849856", - "expectedQty": "459067870774446263648646", - "swapFee": "270775309795549033109", + "type": "redeemBassets", + "inputQtys": [ + "6371160885854806736896", + "2304310119702213165056" + ], + "expectedQty": "8585363676805104506386", + "swapFee": "5154310792558597862", "reserves": [ - "2699557795771836906799689", - "964557591372421004226113" + "4099335208467634579325766", + "3211451463953150271807870" ], - "LPTokenSupply": "3610991857774935300090544" + "LPTokenSupply": "7236935006417111201308298" }, { "type": "mintMulti", "inputQtys": [ - "1084156120081287552", - "542413522498717376" + "68603389369918", + "181045693715357" ], - "expectedQty": "1604156845082860900", + "expectedQty": "247244266854103", "reserves": [ - "2699558879927956988087241", - "964558133785943502943489" + "4099335208536237968695684", + "3211451464134195965523227" ], - "LPTokenSupply": "3610993461931780382951444" + "LPTokenSupply": "7236935006664355468162401" }, { "type": "redeemBassets", "inputQtys": [ - "53449712436538523648", - "101196770847298076672" + "303205804513512128", + "336714662072647680" ], - "expectedQty": "153023821076398330907", - "swapFee": "91869414294415647", + "expectedQty": "633547369103919875", + "swapFee": "380356635443618", "reserves": [ - "2699505430215520449563593", - "964456937015096204866817" + "4099334905330433455183556", + "3211451127419533892875547" ], - "LPTokenSupply": "3610840355428231119646453" + "LPTokenSupply": "7236934372774665392343268" }, { - "type": "redeemMasset", - "inputQty": "1022915886026518115123", - "expectedQtys": [ - "764284736277582168376", - "273057319132274552474" + "type": "mintMulti", + "inputQtys": [ + "239865894654936809472", + "300384093472677036032" ], - "redemptionFee": "613749531615910869", + "expectedQty": "534895950766458713939", "reserves": [ - "2698741145479242867395217", - "964183879695963930314343" + "4099574771225088391993028", + "3211751511513006569911579" ], - "LPTokenSupply": "3609817500917157763122416" + "LPTokenSupply": "7237469268725431851057207" }, { "type": "mintMulti", "inputQtys": [ - "29889925972438974464", - "9083905761195765760" + "300714295132829696", + "368103494724025472" ], - "expectedQty": "38396728046383132533", + "expectedQty": "662183422869245947", "reserves": [ - "2698771035405215306369681", - "964192963601725126080103" + "4099575071939383524822724", + "3211751879616501293937051" ], - "LPTokenSupply": "3609855897645204146254949" - }, - { - "type": "redeemMasset", - "inputQty": "4504594749819346485248", - "expectedQtys": [ - "3365667788310908631815", - "1202455916688428920580" - ], - "redemptionFee": "2702756849891607891", - "reserves": [ - "2695405367616904397737866", - "962990507685036697159523" - ], - "LPTokenSupply": "3605351573171069788930490" + "LPTokenSupply": "7237469930908854720303154" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "5086156072656927981568", - "expectedQty": "5050612695673775029666", + "inputIndex": 0, + "inputQty": "55838971821619020824576", + "expectedQty": "55233504577275917918909", "reserves": [ - "2695405367616904397737866", - "968076663757693625141091" + "4155414043761002545647300", + "3211751879616501293937051" ] }, { "type": "redeemBassets", "inputQtys": [ - "149072810602891113922560", - "360506364433803190992896" + "870203065818121240576", + "499943100065230553088" ], - "hardLimitError": true - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4463674759063097835520", - "expectedQty": "4432192008719505635516", + "expectedQty": "1356128631838686079347", + "swapFee": "814165678510317838", "reserves": [ - "2695405367616904397737866", - "972540338516756722976611" - ] + "4154543840695184424406724", + "3211251936516436063383963" + ], + "LPTokenSupply": "7291346574105181292856660" }, { - "type": "redeemMasset", - "inputQty": "10780895742236987647590", - "expectedQtys": [ - "8033963906767273199214", - "2898767684961201122592" + "type": "mintMulti", + "inputQtys": [ + "240678865552076", + "159587275261469" ], - "redemptionFee": "6468537445342192588", + "expectedQty": "396194599395280", "reserves": [ - "2687371403710137124538652", - "969641570831795521854019" + "4154543840935863289958800", + "3211251936676023338645432" ], - "LPTokenSupply": "3604054128986970616167340" + "LPTokenSupply": "7291346574501375892251940" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "119874815182139081883648", - "expectedQty": "121880149306694916350353", - "swapFee": "71924889109283449130", + "inputIndex": 1, + "inputQty": "3318486206555683328", + "expectedQty": "3347049289866166646", + "swapFee": "1991091723933409", "reserves": [ - "2565491254403442208188299", - "969641570831795521854019" + "4154543840935863289958800", + "3211248589626733472478786" ], - "LPTokenSupply": "3484186506293742462628605" + "LPTokenSupply": "7291343256214278508961952" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "284206871047487008", - "expectedQty": "286235380152224177", - "swapFee": "170524122628492", + "inputQty": "35734456372334818230272", + "expectedQty": "36041207816825046761488", + "swapFee": "21440673823400890938", "reserves": [ - "2565491254403442208188299", - "969641284596415369629842" + "4154543840935863289958800", + "3175207381809908425717298" ], - "LPTokenSupply": "3484186222103923827404446" + "LPTokenSupply": "7255610943909326030820773" }, { "type": "mint", "inputIndex": 0, - "inputQty": "20824157911427378577408", - "expectedQty": "20470710244419651950481", + "inputQty": "144949450318024491008", + "expectedQty": "143369270587198483438", "reserves": [ - "2586315412314869586765707", - "969641284596415369629842" + "4154688790386181314449808", + "3175207381809908425717298" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "109695868786929631232", - "outputIndex": 0, - "expectedQty": "110745366927742400105", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "5557371003026280448", + "expectedQtys": [ + "3180274927469439586", + "2430514759433357293" + ], + "redemptionFee": "3334422601815768", "reserves": [ - "2586204666947941844365602", - "969750980465202299261074" + "4154685610111253845010222", + "3175204951295148992360005" ], - "LPTokenSupply": "3504656932348343479354927", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7255748756142352463205339" }, { "type": "mint", "inputIndex": 1, - "inputQty": "23330736268553826304", - "expectedQty": "23153720320628308403", + "inputQty": "1574576598812515368960", + "expectedQty": "1560268918528947270080", "reserves": [ - "2586204666947941844365602", - "969774311201470853087378" + "4154685610111253845010222", + "3176779527893961507728965" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "579521361071431745536", - "199450936074994352128" - ], - "expectedQty": "767612646018932827727", - "swapFee": "460844094067800376", + "type": "redeem", + "inputIndex": 1, + "inputQty": "418190684215787651072", + "expectedQty": "421772594527025488461", + "swapFee": "250914410529472590", "reserves": [ - "2585625145586870412620066", - "969574860265395858735250" + "4154685610111253845010222", + "3176357755299434482240504" ], - "LPTokenSupply": "3503912058662960513815263" + "LPTokenSupply": "7256890859468106675771606" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "11851935173596495872", - "expectedQty": "12049551850066800954", - "swapFee": "7111161104157897", - "reserves": [ - "2585613096035020345819112", - "969574860265395858735250" - ], - "LPTokenSupply": "3503900207438903027735180" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1087929829248232325120", - "662015280007980515328" - ], - "expectedQty": "1726437018830808008858", + "inputQty": "305244777417010511872", + "expectedQty": "308423582311084090281", + "swapFee": "183146866450206307", "reserves": [ - "2586701025864268578144232", - "970236875545403839250578" + "4154377186528942760919941", + "3176357755299434482240504" ], - "LPTokenSupply": "3505626644457733835744038" + "LPTokenSupply": "7256585633005376310280364" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "21085397012903509360640", - "expectedQty": "21231033172187537410101", - "swapFee": "12651238207742105616", + "inputQty": "2793159405190109696", + "expectedQty": "2817083767843613783", + "swapFee": "1675895643114065", "reserves": [ - "2586701025864268578144232", - "949005842373216301840477" + "4154377186528942760919941", + "3176354938215666638626721" ], - "LPTokenSupply": "3484542512568651100593959" + "LPTokenSupply": "7256582840013560684482074" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "13311503047713888256", - "expectedQty": "13083954893088763519", - "reserves": [ - "2586714337367316292032488", - "949005842373216301840477" - ] - }, - { - "type": "redeem", "inputIndex": 1, - "inputQty": "5943526030575418736640", - "expectedQty": "5983521345776218706280", - "swapFee": "3566115618345251241", + "inputQty": "8647174599629943603200", + "expectedQty": "8568545757300415068663", "reserves": [ - "2586714337367316292032488", - "943022321027440083134197" - ], - "LPTokenSupply": "3478612427104530605145962" + "4154377186528942760919941", + "3185002112815296582229921" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "374925106104540594176", - "58127317335308132352" - ], - "expectedQty": "426211120352413590208", + "type": "mint", + "inputIndex": 0, + "inputQty": "32613736859309816414208", + "expectedQty": "32258114845564524571751", "reserves": [ - "2587089262473420832626664", - "943080448344775391266549" - ], - "LPTokenSupply": "3479038638224883018736170" + "4186990923388252577334149", + "3185002112815296582229921" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "5252598739527975043072", - "4917289717937434787840" + "type": "redeemMasset", + "inputQty": "215081041574098", + "expectedQtys": [ + "123331717010850", + "93817203438984" ], - "expectedQty": "10044400066127043753052", - "swapFee": "6030258194592982041", + "redemptionFee": "129048624944", "reserves": [ - "2581836663733892857583592", - "938163158626837956478709" + "4186990923264920860323299", + "3185002112721479378790937" ], - "LPTokenSupply": "3468988810926380841299280" + "LPTokenSupply": "7297409500401357487410884" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "97358684452461419167744", - "172922076284298270343168" + "134901863233965768704", + "288894424851039322112" ], - "expectedQty": "267524493649742804560131", - "swapFee": "160611062827542208060", + "expectedQty": "419704317432262971100", "reserves": [ - "2484477979281431438415848", - "765241082342539686135541" + "4187125825128154826092003", + "3185291007146330418113049" ], - "LPTokenSupply": "3201319767320093248751894" + "LPTokenSupply": "7297829204718789750381984" }, { "type": "swap", "inputIndex": 1, - "inputQty": "7385986252727766745088", + "inputQty": "3679344495132449792", "outputIndex": 0, - "expectedQty": "7484638140016704813024", + "expectedQty": "3686222571058277501", "swapFee": "0", "reserves": [ - "2476993341141414733602824", - "772627068595267452880629" + "4187122138905583767814502", + "3185294686490825550562841" ], - "LPTokenSupply": "3201319767320093248751894", + "LPTokenSupply": "7297829204718789750381984", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2097355903398771425280", - "2547653250008838307840" - ], - "expectedQty": "4594732752127188878516", - "swapFee": "2758494748125188440", + "type": "mint", + "inputIndex": 0, + "inputQty": "7547991582496288407552", + "expectedQty": "7465576820040155416337", "reserves": [ - "2474895985238015962177544", - "770079415345258614572789" - ], - "LPTokenSupply": "3196722551922692747203781" + "4194670130488080056222054", + "3185294686490825550562841" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "169514537682614", - "expectedQty": "172511484686320", - "swapFee": "101708722609", + "inputQty": "35336416529191956480", + "expectedQty": "34950487314738946200", "reserves": [ - "2474895985065504477491224", - "770079415345258614572789" - ], - "LPTokenSupply": "3196722551753188380393427" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "253989754681922290712576", - "hardLimitError": true + "4194705466904609248178534", + "3185294686490825550562841" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "28613276952177061920768", - "expectedQty": "29118214328757583042581", - "swapFee": "17167966171306237152", + "inputQty": "239782398458818363392", + "expectedQty": "237163573364050609529", "reserves": [ - "2445777770736746894448643", - "770079415345258614572789" - ], - "LPTokenSupply": "3168110991597628449096374" + "4194945249303068066541926", + "3185294686490825550562841" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2912928199303082016768", - "1199912906564160978944" + "29293853020077978288128", + "11563514025339833548800" ], - "expectedQty": "4054523110722606677521", - "swapFee": "2434174371056197725", + "expectedQty": "40432741561618647324256", + "swapFee": "24274209462648777661", "reserves": [ - "2442864842537443812431875", - "768879502438694453593845" + "4165651396282990088253798", + "3173731172465485717014041" ], - "LPTokenSupply": "3164054277729971891840899" + "LPTokenSupply": "7265112307249373664129898" }, { - "type": "redeemBassets", - "inputQtys": [ - "124106992940930727936", - "533393821989693358080" + "type": "redeemMasset", + "inputQty": "2974231308096199065", + "expectedQtys": [ + "1704333878308157586", + "1298499812706875593" ], - "expectedQty": "652543021860703039342", - "swapFee": "391760869638204746", + "redemptionFee": "1784538784857719", "reserves": [ - "2442740735544502881703939", - "768346108616704760235765" + "4165649691949111780096212", + "3173729873965673010138448" ], - "LPTokenSupply": "3163401382123328514417284" + "LPTokenSupply": "7265109333196519446416604" }, { - "type": "redeemMasset", - "inputQty": "13196111373490622", - "expectedQtys": [ - "10183765543499413", - "3203228452596500" + "type": "redeemBassets", + "inputQtys": [ + "177705852965243224064", + "84291769932302843904" ], - "redemptionFee": "7917666824094", + "expectedQty": "259293050266193083357", + "swapFee": "155669231698735091", "reserves": [ - "2442740725360737338204526", - "768346105413476307639265" + "4165471986096146536872148", + "3173645582195740707294544" ], - "LPTokenSupply": "3163401368928008907609071" + "LPTokenSupply": "7264849900043944724471664" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4341070780812351242240", - "expectedQty": "4417563428646693422261", - "swapFee": "2604642468487410745", + "type": "redeemBassets", + "inputQtys": [ + "15549283560693044346880", + "3908136506760789753856" + ], + "expectedQty": "19252280687148944900892", + "swapFee": "11558303394325962518", "reserves": [ - "2438323161932090644782265", - "768346105413476307639265" + "4149922702535453492525268", + "3169737445688979917540688" ], - "LPTokenSupply": "3159060558611443405107905" + "LPTokenSupply": "7245587216883740886204504" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "25217113692803059154944", - "expectedQty": "25080413260999362932210", + "inputIndex": 0, + "inputQty": "318300203789715412877312", + "expectedQty": "314791213959191388191745", "reserves": [ - "2438323161932090644782265", - "793563219106279366794209" + "4468222906325168905402580", + "3169737445688979917540688" ] }, { - "type": "redeemMasset", - "inputQty": "261095243577186477670", - "expectedQtys": [ - "199819230604753629222", - "65032065623492015884" + "type": "mintMulti", + "inputQtys": [ + "12525910997591570513920", + "14701981411212835946496" ], - "redemptionFee": "156657146146311886", + "expectedQty": "26959343278176286600123", "reserves": [ - "2438123342701485891153043", - "793498187040655874778325" + "4480748817322760475916500", + "3184439427100192753487184" ], - "LPTokenSupply": "3183879892294580196193633" + "LPTokenSupply": "7587337774121108560996372" }, { - "type": "redeemMasset", - "inputQty": "556996639329247", - "expectedQtys": [ - "426276033695447", - "138733448793214" - ], - "redemptionFee": "334197983597", + "type": "swap", + "inputIndex": 1, + "inputQty": "901692481256140177408", + "outputIndex": 0, + "expectedQty": "903832733511789678577", + "swapFee": "0", "reserves": [ - "2438123342275209857457596", - "793498186901922425985111" + "4479844984589248686237923", + "3185341119581448893664592" ], - "LPTokenSupply": "3183879891737616976662745" + "LPTokenSupply": "7587337774121108560996372", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5221449757833844228096", - "18690906261599700385792" + "7849455196921", + "6349887095483" ], - "expectedQty": "23710794510779399461191", + "expectedQty": "14056186040524", + "swapFee": "8438774889", "reserves": [ - "2443344792033043701685692", - "812189093163522126370903" + "4479844984581399231041002", + "3185341119575099006569109" ], - "LPTokenSupply": "3207590686248396376123936" + "LPTokenSupply": "7587337774107044780058446" }, { - "type": "redeemBassets", - "inputQtys": [ - "20748215822769308303360", - "19076847310466055143424" - ], - "expectedQty": "39346193804557485475469", - "swapFee": "23621889416384321878", + "type": "mint", + "inputIndex": 1, + "inputQty": "81513022199099398553600", + "expectedQty": "80792392258779907832424", "reserves": [ - "2422596576210274393382332", - "793112245853056071227479" - ], - "LPTokenSupply": "3168223232743364144758775" + "4479844984581399231041002", + "3266854141774198405122709" + ] }, { "type": "mintMulti", "inputQtys": [ - "5987226648983697883136", - "98424877235624994668544" + "3405641112511", + "41435017315463" ], - "expectedQty": "103655363986113892241574", + "expectedQty": "44434456933168", "reserves": [ - "2428583802859258091265468", - "891537123088681065896023" + "4479844984584804872153513", + "3266854141815633422438172" ], - "LPTokenSupply": "3271878596729478037000349" + "LPTokenSupply": "7668130166410259144824038" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1032516384496490", + "inputQty": "401927866732195151872", "outputIndex": 1, - "expectedQty": "1021543360989809", - "swapFee": "811845484926", + "expectedQty": "400732028464983598152", + "swapFee": "317988623059332260", "reserves": [ - "2428583803891774475761958", - "891537122067137704906214" + "4480246912451537067305385", + "3266453409787168438840020" ], - "LPTokenSupply": "3271878596729559221548841", + "LPTokenSupply": "7668130198209121450757264", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "9115502062371164546662", - "expectedQtys": [ - "6762010680569756937945", - "2482345279533562028793" - ], - "redemptionFee": "5469301237422698727", + "type": "mint", + "inputIndex": 0, + "inputQty": "614106250968964268032", + "expectedQty": "607318703106490901327", "reserves": [ - "2421821793211204718824013", - "889054776787604142877421" - ], - "LPTokenSupply": "3262763641597311799272051" + "4480861018702506031573417", + "3266453409787168438840020" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "290888629026008814583808", - "expectedQty": "288278878600613895014499", + "inputQty": "6316329782341749702656", + "expectedQty": "6260129386515092704664", "reserves": [ - "2421821793211204718824013", - "1179943405813612957461229" + "4480861018702506031573417", + "3272769739569510188542676" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "97006362889796634804224", - "expectedQty": "95448986311897443241494", + "type": "redeemBassets", + "inputQtys": [ + "827390004530492604416", + "3444005706603267883008" + ], + "expectedQty": "4231603158748358798596", + "swapFee": "2540486186961191994", "reserves": [ - "2518828156101001353628237", - "1179943405813612957461229" - ] + "4480033628697975538969001", + "3269325733862906920659668" + ], + "LPTokenSupply": "7670763756702426410491863" }, { "type": "mint", "inputIndex": 0, - "inputQty": "388153502611418775552", - "expectedQty": "381893119560882757540", + "inputQty": "33983148339280416768", + "expectedQty": "33607636880565793798", "reserves": [ - "2519216309603612772403789", - "1179943405813612957461229" + "4480067611846314819385769", + "3269325733862906920659668" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "77104317227868004286464", - "expectedQty": "76323333112414134663086", + "type": "redeem", + "inputIndex": 0, + "inputQty": "857343248188220", + "expectedQty": "866402541142654", + "swapFee": "514405948912", "reserves": [ - "2519216309603612772403789", - "1257047723041480961747693" - ] + "4480067610979912278243115", + "3269325733862906920659668" + ], + "LPTokenSupply": "7670797363482015168692332" }, { - "type": "redeemMasset", - "inputQty": "118823885346243136716", - "expectedQtys": [ - "80351237274657180788", - "40093952819623620218" - ], - "redemptionFee": "71294331207745882", + "type": "redeem", + "inputIndex": 1, + "inputQty": "44249613324963352", + "expectedQty": "44620107302963043", + "swapFee": "26549767994978", "reserves": [ - "2519135958366338115223001", - "1257007629088661338127475" + "4480067610979912278243115", + "3269325689242799617696625" ], - "LPTokenSupply": "3723077915985885032586542" + "LPTokenSupply": "7670797319235056820528477" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "129814351716972719243264", - "expectedQty": "131039650870914313586752", - "swapFee": "77888611030183631545", + "inputIndex": 0, + "inputQty": "7047112237273656066048", + "expectedQty": "7121559150558342090460", + "swapFee": "4228267342364193639", "reserves": [ - "2519135958366338115223001", - "1125967978217747024540723" + "4472946051829353936152655", + "3269325689242799617696625" ], - "LPTokenSupply": "3593271353130015331706432" + "LPTokenSupply": "7663750629824517400881792" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "190206398081934389411840", - "82368543703440614752256" + "38540433244479936", + "6602387357494610" ], - "expectedQty": "268686515837527809349458", - "swapFee": "161308694719348294586", + "expectedQty": "44658324915919741", "reserves": [ - "2328929560284403725811161", - "1043599434514306409788467" + "4472946090369787180632591", + "3269325695845186975191235" ], - "LPTokenSupply": "3324439659467240108891845" + "LPTokenSupply": "7663750674482842316801533" }, { "type": "redeemMasset", - "inputQty": "139884508033737713254", + "inputQty": "5154488131342593477836", "expectedQtys": [ - "97937015087324057100", - "43885832919167030017" + "3006610609495101765399", + "2197564898934532872190" ], - "redemptionFee": "83930704820242627", + "redemptionFee": "3092692878805556086", "reserves": [ - "2328831623269316401754061", - "1043555548681387242758450" + "4469939479760292078867192", + "3267128130946252442319045" ], - "LPTokenSupply": "3324299783352276853202853" + "LPTokenSupply": "7658596495620787603879305" }, { "type": "redeemMasset", - "inputQty": "3175538373590936400691", + "inputQty": "6783895981347259187", "expectedQtys": [ - "2223282342292106134640", - "996258639483430711939" + "3957044913941591932", + "2892247828476116707" ], - "redemptionFee": "1905323024154561840", + "redemptionFee": "4070337588808355", "reserves": [ - "2326608340927024295619421", - "1042559290041903812046511" + "4469935522715378137275260", + "3267125238698423966202338" ], - "LPTokenSupply": "3321124435510988332258346" + "LPTokenSupply": "7658589712131840015500953" }, { - "type": "mintMulti", - "inputQtys": [ - "135201230759815194607616", - "135356661786880589692928" - ], - "expectedQty": "267029864792679608111675", + "type": "mint", + "inputIndex": 1, + "inputQty": "123158025006804", + "expectedQty": "122061185362257", "reserves": [ - "2461809571686839490227037", - "1177915951828784401739439" - ], - "LPTokenSupply": "3588154300303667940370021" + "4469935522715378137275260", + "3267125238821581991209142" + ] }, { "type": "redeemBassets", "inputQtys": [ - "578836360872247164928", - "172327505540793171968" + "47211388843710472192", + "95436289328269541376" ], - "expectedQty": "740096081381538106802", - "swapFee": "444324243374947832", + "expectedQty": "141276240083282095993", + "swapFee": "84816634030387490", "reserves": [ - "2461230735325967243062109", - "1177743624323243608567471" + "4469888311326534426803068", + "3267029802532253721667766" ], - "LPTokenSupply": "3587413804330467364810169" + "LPTokenSupply": "7658448359678847291418475" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "16501299293987020800", - "expectedQty": "16761431598660826664", - "swapFee": "9900779576392212", + "type": "mintMulti", + "inputQtys": [ + "51989025300075404853248", + "9325678304173858226176" + ], + "expectedQty": "60656850895286980741814", "reserves": [ - "2461213973894368582235445", - "1177743624323243608567471" + "4521877336626609831656316", + "3276355480836427579893942" ], - "LPTokenSupply": "3587397304021251335428590" + "LPTokenSupply": "7719105210574134272160289" }, { - "type": "redeemMasset", - "inputQty": "12592879130495038259", - "expectedQtys": [ - "8634441964586239291", - "4131765495094230903" + "type": "mintMulti", + "inputQtys": [ + "20283763848368420290560", + "2495029331511515021312" ], - "redemptionFee": "7555727478297022", + "expectedQty": "22531964739935458853894", "reserves": [ - "2461205339452403995996154", - "1177739492557748514336568" + "4542161100474978251946876", + "3278850510167939094915254" ], - "LPTokenSupply": "3587384711897693588220033" + "LPTokenSupply": "7741637175314069731014183" }, { - "type": "redeemBassets", - "inputQtys": [ - "104776385280366830682112", - "100628670720971106156544" - ], - "expectedQty": "202708800475618750298961", - "swapFee": "121698299264930208304", + "type": "mint", + "inputIndex": 1, + "inputQty": "100715075186480031727616", + "expectedQty": "99816947642977194985045", "reserves": [ - "2356428954172037165314042", - "1077110821836777408180024" - ], - "LPTokenSupply": "3384566382952736400733597" + "4542161100474978251946876", + "3379565585354419126642870" + ] }, { "type": "redeemMasset", - "inputQty": "814338810177163939020", + "inputQty": "492768644063420114534", "expectedQtys": [ - "566625078336887733409", - "259001232657666490248" + "285264899951383796474", + "212249503542367594628" ], - "redemptionFee": "488603286106298363", + "redemptionFee": "295661186438052068", "reserves": [ - "2355862329093700277580633", - "1076851820604119741689776" + "4541875835575026868150402", + "3379353335850876759048242" ], - "LPTokenSupply": "3383752093002887847424413" + "LPTokenSupply": "7840961383879102149689900" }, { "type": "redeemMasset", - "inputQty": "14718252506693127372", + "inputQty": "954196592422209536", "expectedQtys": [ - "10241108441805498534", - "4681154808738335856" + "552386617915008259", + "410999689887852466" ], - "redemptionFee": "8830951504015876", + "redemptionFee": "572517955453325", + "reserves": [ + "4541875283188408953142143", + "3379352924851186871195776" + ], + "LPTokenSupply": "7840960429739761523025696" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "17621689920310592", + "expectedQty": "17770717951470754", + "swapFee": "10573013952186", "reserves": [ - "2355852087985258472082099", - "1076847139449311003353920" + "4541875283188408953142143", + "3379352907080468919725022" ], - "LPTokenSupply": "3383737375633476304698628" + "LPTokenSupply": "7840960412119128904110322" }, { "type": "redeemBassets", "inputQtys": [ - "4979167930158437892096", - "2078535821165413007360" + "7665911752485060476928", + "2198996611893819867136" ], - "expectedQty": "6956149986580818673233", - "swapFee": "4176195709374115673", + "expectedQty": "9760914453749498368360", + "swapFee": "5860064711076344827", "reserves": [ - "2350872920055100034190003", - "1074768603628145590346560" + "4534209371435923892665215", + "3377153910468575099857886" ], - "LPTokenSupply": "3376777467070757049321288" + "LPTokenSupply": "7831194223607139437031616" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "28218178925337719603200", - "outputIndex": 1, - "expectedQty": "28002346003185327753394", - "swapFee": "22205640561727215711", + "inputIndex": 1, + "inputQty": "949244091184168832", + "outputIndex": 0, + "expectedQty": "951165389873456378", + "swapFee": "0", "reserves": [ - "2379091098980437753793203", - "1046766257624960262593166" + "4534208420270534019208837", + "3377154859712666284026718" ], - "LPTokenSupply": "3376779687634813222042859", + "LPTokenSupply": "7831194223607139437031616", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "818014315865809024", - "512111008848882688" + "2114033198475050221568", + "4340262620980788068352" ], - "expectedQty": "1311814006561967833", + "expectedQty": "6392060118645246250253", "reserves": [ - "2379091916994753619602227", - "1046766769735969111475854" + "4536322453469009069430405", + "3381495122333647072095070" ], - "LPTokenSupply": "3376780999448819784010692" + "LPTokenSupply": "7837586283725784683281869" }, { "type": "redeemMasset", - "inputQty": "3579154648681905808998", + "inputQty": "2509783623643127808", "expectedQtys": [ - "2520160120838683235826", - "1108834782743509861186" + "1451767965377854836", + "1082186362199923605" ], - "redemptionFee": "2147492789209143485", + "redemptionFee": "1505870174185876", "reserves": [ - "2376571756873914936366401", - "1045657934953225601614668" + "4536321001701043691575569", + "3381494040147284872171465" ], - "LPTokenSupply": "3373202059549416799116042" + "LPTokenSupply": "7837583774092748057572648" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "30364743906968414978048", + "expectedQty": "30091214149805217727587", + "reserves": [ + "4536321001701043691575569", + "3411858784054253287149513" + ] }, { "type": "redeemMasset", - "inputQty": "256398855193378947072", + "inputQty": "2014796282235020587827", "expectedQtys": [ - "180536077243498186149", - "79433318673831102901" + "1160988328227667590034", + "873202805613331624478" ], - "redemptionFee": "153839313116027368", + "redemptionFee": "1208877769341012352", "reserves": [ - "2376391220796671438180252", - "1045578501634551770511767" + "4535160013372816023985535", + "3410985581248639955525035" ], - "LPTokenSupply": "3372945676078154731771706" + "LPTokenSupply": "7865660312848095188813643" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "132081555049750158376960", - "expectedQty": "133171982656095717152222", - "swapFee": "79248933029850095026", + "type": "redeemBassets", + "inputQtys": [ + "31570697577008189440", + "4133083255386449408" + ], + "expectedQty": "35320528872516128860", + "swapFee": "21205040347718308", "reserves": [ - "2376391220796671438180252", - "912406518978456053359545" + "4535128442675239015796095", + "3410981448165384569075627" ], - "LPTokenSupply": "3240872045921707558404248" + "LPTokenSupply": "7865624973234686359738304" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4197106766117371117568", - "12474851340101366054912" + "311007897617397252096", + "3751545892186447937536" ], - "expectedQty": "16499024117216304504459", + "expectedQty": "4025288963128901192910", + "swapFee": "2416623351888473800", "reserves": [ - "2380588327562788809297820", - "924881370318557419414457" + "4534817434777621618543999", + "3407229902273198121138091" ], - "LPTokenSupply": "3257371070038923862908707" + "LPTokenSupply": "7861597509310540758918973" }, { - "type": "redeemMasset", - "inputQty": "7121820778334225694720", - "expectedQtys": [ - "5201725740642924054012", - "2020920280640269345441" + "type": "redeemBassets", + "inputQtys": [ + "25809950419352553521152", + "21544517465744319971328" ], - "redemptionFee": "4273092467000535416", + "expectedQty": "46877170639289284158158", + "swapFee": "28143188296551501395", "reserves": [ - "2375386601822145885243808", - "922860450037917150069016" + "4509007484358269065022847", + "3385685384807453801166763" ], - "LPTokenSupply": "3250249676569836337267528" + "LPTokenSupply": "7814695009801784578409558" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "8914202298194397757440", + "21708695943237047681024" + ], + "expectedQty": "30329394204664476060616", + "swapFee": "18208561659794562373", + "reserves": [ + "4500093282060074667265407", + "3363976688864216753485739" + ], + "LPTokenSupply": "7784349227891626287242805" }, { "type": "redeemMasset", - "inputQty": "3336668510222407680", + "inputQty": "9792233385286028492", "expectedQtys": [ - "2437081127767209454", - "946829364375845326" + "5657444547514725641", + "4229137127501758250" ], - "redemptionFee": "2002001106133444", + "redemptionFee": "5875340031171617", "reserves": [ - "2375384164741018118034354", - "922859503208552774223690" + "4500087624615527152539766", + "3363972459727089251727489" ], - "LPTokenSupply": "3250246340101526225473192" + "LPTokenSupply": "7784339436245775004331474" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4255461082509926203392", - "expectedQty": "4220472609876895699061", + "inputQty": "681432353706054778880", + "expectedQty": "675294401292340153503", "reserves": [ - "2375384164741018118034354", - "927114964291062700427082" + "4500087624615527152539766", + "3364653892080795306506369" ] }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "118454852807870568726528", + "outputIndex": 1, + "expectedQty": "118097265354354128978646", + "swapFee": "93719372076703796148", + "reserves": [ + "4618542477423397721266294", + "3246556626726441177527723" + ], + "LPTokenSupply": "7785024102584275014864591", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "mint", "inputIndex": 0, - "inputQty": "212480014463380480", - "expectedQty": "208867502097088857", + "inputQty": "954652130823301365760", + "expectedQty": "943974106199655265576", "reserves": [ - "2375384377221032581414834", - "927114964291062700427082" + "4619497129554221022632054", + "3246556626726441177527723" ] }, { - "type": "mintMulti", + "type": "swap", + "inputIndex": 1, + "inputQty": "9289021860409352650752", + "outputIndex": 0, + "expectedQty": "9311708836708934759267", + "swapFee": "0", + "reserves": [ + "4610185420717512087872787", + "3255845648586850530178475" + ], + "LPTokenSupply": "7785968076690474670130167", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", "inputQtys": [ - "121928006572072484470784", - "84673941749560946720768" + "148329762670937815121920", + "10928936970239189450752" ], - "expectedQty": "203822898195698538765600", + "expectedQty": "157511993692474943364077", + "swapFee": "94563934576230704441", "reserves": [ - "2497312383793105065885618", - "1011788906040623647147850" + "4461855658046574272750867", + "3244916711616611340727723" ], - "LPTokenSupply": "3458289919774603757026710" + "LPTokenSupply": "7628370975456881119132092" }, { "type": "mintMulti", "inputQtys": [ - "1374861872636038217728", - "316053183692946997248" + "62503774467456065536", + "11322991020776415232" ], - "expectedQty": "1665026889469942970583", + "expectedQty": "73032703019123900227", "reserves": [ - "2498687245665741104103346", - "1012104959224316594145098" + "4461918161821041728816403", + "3244928034607632117142955" ], - "LPTokenSupply": "3459954946664073699997293" + "LPTokenSupply": "7628444008159900243032319" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "21746613716026025574400", - "expectedQty": "22105421081670324762944", - "swapFee": "13047968229615615344", + "inputQty": "441265922792802056404992", + "expectedQty": "445874145545093412259871", + "swapFee": "264759553675681233842", "reserves": [ - "2476581824584070779340402", - "1012104959224316594145098" + "4016044016275948316556532", + "3244928034607632117142955" ], - "LPTokenSupply": "3438209637744870635984427" + "LPTokenSupply": "7187204561322465754750711" }, { "type": "redeemBassets", "inputQtys": [ - "1455067546988230", - "1403521137887144" + "24938254638602323492864", + "94151160217058574073856" ], - "expectedQty": "2821854992300386", - "swapFee": "1694129473064", + "expectedQty": "117941125418514445544722", + "swapFee": "70807159546836769388", "reserves": [ - "2476581823129003232352172", - "1012104957820795456257954" + "3991105761637345993063668", + "3150776874390573543069099" ], - "LPTokenSupply": "3438209634921490927158282" + "LPTokenSupply": "7069199709460359156113538" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "6134676003461306253312", - "expectedQty": "6235762317860285056868", - "swapFee": "3680805602076783751", - "reserves": [ - "2470346060811142947295304", - "1012104957820795456257954" + "type": "redeemMasset", + "inputQty": "14513054318139107442688", + "expectedQtys": [ + "8188816726989161131840", + "6464658145625104556036" ], - "LPTokenSupply": "3432075326998589828583345" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "725769791354582859776", - "expectedQty": "719397755498498542623", - "reserves": [ - "2470346060811142947295304", - "1012830727612150039117730" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3462955690753770651648", - "expectedQty": "3491482694659381502912", - "swapFee": "2077773414452262390", + "redemptionFee": "8707832590883464465", "reserves": [ - "2470346060811142947295304", - "1009339244917490657614818" + "3982916944910356831931828", + "3144312216244948438513063" ], - "LPTokenSupply": "3429331976840676001700559" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "294641534701241401344", - "expectedQty": "289688904290100162383", - "reserves": [ - "2470640702345844188696648", - "1009339244917490657614818" - ] + "LPTokenSupply": "7054687525925479137017296" }, { "type": "redeemBassets", "inputQtys": [ - "407727592497321101754368", - "334669037506837786656768" + "8646736793353753460736", + "7524574974299163590656" ], - "expectedQty": "732830120545878692988179", - "swapFee": "439962049557261572736", + "expectedQty": "16007337875897338948975", + "swapFee": "9610168826834504071", "reserves": [ - "2062913109848523086942280", - "674670207410652870958050" + "3974270208117003078471092", + "3136787641270649274922407" ], - "LPTokenSupply": "2696395579354485873459299" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "168307698507221626257408", - "hardLimitError": true + "LPTokenSupply": "7038671538897637647014656" }, { "type": "mintMulti", "inputQtys": [ - "48804875102337175126016", - "30412413353679556444160" + "7019823228596426637312", + "2093342506706804146176" ], - "expectedQty": "78153227518592343861667", + "expectedQty": "9017333200391786566736", "reserves": [ - "2111717984950860262068296", - "705082620764332427402210" + "3981290031345599505108404", + "3138880983777356079068583" ], - "LPTokenSupply": "2774548806873078217320966" + "LPTokenSupply": "7047688872098029433581392" }, { - "type": "redeemBassets", - "inputQtys": [ - "72486094119317446656", - "11055972045522180096" + "type": "redeemMasset", + "inputQty": "1346436639144508653568", + "expectedQtys": [ + "760155354986338591792", + "599312577003265725353" ], - "expectedQty": "82175356332557006118", - "swapFee": "49334814688347211", + "redemptionFee": "807861983486705192", "reserves": [ - "2111645498856740944621640", - "705071564792286905222114" + "3980529875990613166516612", + "3138281671200352813343230" ], - "LPTokenSupply": "2774466587115412440802357" + "LPTokenSupply": "7046342516245083273598343" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "320846479283960020992", - "expectedQty": "322705297450289773160", - "swapFee": "192507887570376012", + "inputIndex": 0, + "inputQty": "70042807728282322075648", + "expectedQty": "70769015116417893928621", + "swapFee": "42025684636969393245", "reserves": [ - "2111645498856740944621640", - "704748859494836615448954" + "3909760860874195272587991", + "3138281671200352813343230" ], - "LPTokenSupply": "2774145759886917237818966" + "LPTokenSupply": "6976303911085264648462019" }, { - "type": "mintMulti", - "inputQtys": [ - "14466823382415689383936", - "15373340878089060614144" + "type": "redeemMasset", + "inputQty": "75759707540362625024", + "expectedQtys": [ + "42432873014402692703", + "34059962329178612974" ], - "expectedQty": "29482560830294629746085", + "redemptionFee": "45455824524217575", "reserves": [ - "2126112322239156634005576", - "720122200372925676063098" + "3909718428001180869895288", + "3138247611238023634730256" ], - "LPTokenSupply": "2803628320717211867565051" + "LPTokenSupply": "6976228155923306738258752" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "564946411541183070208", - "764602043183202697216" + "265373169237832640", + "139421073323191392" ], - "expectedQty": "1314462929117530359722", - "swapFee": "789151248219449885", + "expectedQty": "400614032000061467", "reserves": [ - "2125547375827615450935368", - "719357598329742473365882" + "3909718693374350107727928", + "3138247750659096957921648" ], - "LPTokenSupply": "2802313147551970939700431" + "LPTokenSupply": "6976228556537338738320219" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "605862754174573312", - "expectedQty": "609498122975700796", - "swapFee": "363517652504743", - "reserves": [ - "2125547375827615450935368", - "719356988831619497665086" + "type": "mintMulti", + "inputQtys": [ + "1179473516044902465536", + "861332642640193912832" ], - "LPTokenSupply": "2802312541725568530377593" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "10593201666065424384", - "expectedQty": "10778899782119610002", - "swapFee": "6355920999639254", + "expectedQty": "2019964123293278347486", "reserves": [ - "2125536596927833331325366", - "719356988831619497665086" + "3910898166890395010193464", + "3139109083301737151834480" ], - "LPTokenSupply": "2802301949159494564917134" + "LPTokenSupply": "6978248520660632016667705" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "643601941464672370688", - "expectedQty": "654883723359420623983", - "swapFee": "386161164878803422", + "type": "mintMulti", + "inputQtys": [ + "180986126262227192250368", + "131866261952673297203200" + ], + "expectedQty": "309656973561289877841130", "reserves": [ - "2124881713204473910701383", - "719356988831619497665086" + "4091884293152622202443832", + "3270975345254410449037680" ], - "LPTokenSupply": "2801658385834146380426788" + "LPTokenSupply": "7287905494221921894508835" }, { "type": "redeemMasset", - "inputQty": "80156670981043123", + "inputQty": "8741325263870735312486", "expectedQtys": [ - "60757318291562649", - "20568769199764394" + "4904979967424533339750", + "3920948734855637822138" ], - "redemptionFee": "48094002588625", + "redemptionFee": "5244795158322441187", "reserves": [ - "2124881652447155619138734", - "719356968262850297900692" + "4086979313185197669104082", + "3267054396519554811215542" ], - "LPTokenSupply": "2801658305682284799642527" + "LPTokenSupply": "7279164693437566991440467" }, { - "type": "redeemMasset", - "inputQty": "1702686946345622700032", - "expectedQtys": [ - "1290606152743968022275", - "436921523695245317158" + "type": "mintMulti", + "inputQtys": [ + "10636866464844030672896", + "22319589058603783290880" ], - "redemptionFee": "1021612167807373620", + "expectedQty": "32632330709510929555853", "reserves": [ - "2123591046294411651116459", - "718920046739155052583534" + "4097616179650041699776978", + "3289373985578158594506422" ], - "LPTokenSupply": "2799955720897155957679857" + "LPTokenSupply": "7311797024147077920996320" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "237546693009718464", - "outputIndex": 1, - "expectedQty": "234668622315792053", - "swapFee": "186651554611806", + "type": "mintMulti", + "inputQtys": [ + "25726210287770340950016", + "75315402580175009873920" + ], + "expectedQty": "100055925442127228011295", "reserves": [ - "2123591283841104660834923", - "718919812070532736791481" + "4123342389937812040726994", + "3364689388158333604380342" ], - "LPTokenSupply": "2799955720915821113141037", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7411852949589205149007615" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "23339811128702278828032", - "expectedQty": "23474137339255562705079", - "swapFee": "14003886677221367296", + "type": "redeemBassets", + "inputQtys": [ + "1301599825994859264", + "9400784677307459584" + ], + "expectedQty": "10599730410980774150", + "swapFee": "6363656440452736", "reserves": [ - "2123591283841104660834923", - "695445674731277174086402" + "4123341088337986045867730", + "3364679987373656296920758" ], - "LPTokenSupply": "2776617310175786556449734" + "LPTokenSupply": "7411842344131503371826001" }, { "type": "mint", "inputIndex": 0, - "inputQty": "169714977499957166080", - "expectedQty": "166662083530828839963", + "inputQty": "42987667372274847055872", + "expectedQty": "42523454582292003285724", "reserves": [ - "2123760998818604618001003", - "695445674731277174086402" + "4166328755710260892923602", + "3364679987373656296920758" ] }, { - "type": "redeemMasset", - "inputQty": "564319024339991448780", - "expectedQtys": [ - "431347796411118841905", - "141248925602198623163" - ], - "redemptionFee": "338591414603994869", + "type": "redeem", + "inputIndex": 0, + "inputQty": "11008790016795633664", + "expectedQty": "11122471750541921931", + "swapFee": "6605274010077380", "reserves": [ - "2123329651022193499159098", - "695304425805674975463239" + "4166317633238510351001671", + "3364679987373656296920758" ], - "LPTokenSupply": "2776219687094118854240403" + "LPTokenSupply": "7454354790584305980485799" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1016920283250514067456", - "expectedQty": "998625994154559265753", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1613527376744206336", + "expectedQty": "1627840188109522110", + "swapFee": "968116426046523", "reserves": [ - "2124346571305444013226554", - "695304425805674975463239" - ] + "4166317633238510351001671", + "3364678359533468187398648" + ], + "LPTokenSupply": "7454353177153740878884115" }, { "type": "mint", "inputIndex": 1, - "inputQty": "785971513533387112448", - "expectedQty": "781201856737519192409", + "inputQty": "2138913531689572761600", + "expectedQty": "2118832431242194946482", "reserves": [ - "2124346571305444013226554", - "696090397319208362575687" + "4166317633238510351001671", + "3366817273065157760160248" ] }, { - "type": "redeemMasset", - "inputQty": "73284081209393152", - "expectedQtys": [ - "56006985364622989", - "18351960655437707" - ], - "redemptionFee": "43970448725635", + "type": "mint", + "inputIndex": 1, + "inputQty": "320467189597527091445760", + "expectedQty": "317402977270249572275841", "reserves": [ - "2124346515298458648603565", - "696090378967247707137980" - ], - "LPTokenSupply": "2777999441665326768177976" + "4166317633238510351001671", + "3687284462662684851606008" + ] }, { - "type": "redeemMasset", - "inputQty": "235668708583718195", - "expectedQtys": [ - "180108608785343449", - "59016675877400087" - ], - "redemptionFee": "141401225150230", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4831118600134435274752", + "expectedQty": "4879592639078937406077", + "swapFee": "2898671160080661164", "reserves": [ - "2124346335189849863260116", - "696090319950571829737893" + "4161438040599431413595594", + "3687284462662684851606008" ], - "LPTokenSupply": "2777999206010758306974804" + "LPTokenSupply": "7769044158122214218897802" }, { "type": "mintMulti", "inputQtys": [ - "132092752099019", - "37563198207975" + "7941518633304092672", + "12162784076907747328" ], - "expectedQty": "167051933883225", + "expectedQty": "19902377024788072924", "reserves": [ - "2124346335321942615359135", - "696090319988135027945868" + "4161445982118064717688266", + "3687296625446761759353336" ], - "LPTokenSupply": "2777999206177810240858029" + "LPTokenSupply": "7769064060499239006970726" }, { "type": "mintMulti", "inputQtys": [ - "989396685136650829824", - "727655436502505095168" + "997558074730630086656", + "180970368484374872064" ], - "expectedQty": "1694833482566188014888", + "expectedQty": "1166266730262501372717", "reserves": [ - "2125335732007079266188959", - "696817975424637533041036" + "4162443540192795347774922", + "3687477595815246134225400" ], - "LPTokenSupply": "2779694039660376428872917" + "LPTokenSupply": "7770230327229501508343443" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "411992822674969657344", - "expectedQty": "404584004118587991665", + "inputIndex": 1, + "inputQty": "794274854421224751104", + "expectedQty": "786547778863492159332", "reserves": [ - "2125747724829754235846303", - "696817975424637533041036" + "4162443540192795347774922", + "3688271870669667358976504" ] }, { "type": "mintMulti", "inputQtys": [ - "23020334015300155473920", - "7305440881242251722752" + "4641479733617609932800", + "10377705331949140180992" ], - "expectedQty": "29867349711069176857899", + "expectedQty": "14869344698811780712593", "reserves": [ - "2148768058845054391320223", - "704123416305879784763788" + "4167085019926412957707722", + "3698649576001616499157496" ], - "LPTokenSupply": "2809965973375564193722481" + "LPTokenSupply": "7785886219707176781215368" }, { "type": "redeemMasset", - "inputQty": "17049731273831515737292", + "inputQty": "61273826379117127270", "expectedQtys": [ - "13030028395088786367972", - "4269771262815536141076" + "32774694732332892902", + "29090385772226491202" ], - "redemptionFee": "10229838764298909442", + "redemptionFee": "36764295827470276", "reserves": [ - "2135738030449965604952251", - "699853645043064248622712" + "4167052245231680624814820", + "3698620485615844272666294" ], - "LPTokenSupply": "2792917265085609107876133" + "LPTokenSupply": "7785824949557227246835125" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "29469865428768564183040", - "expectedQty": "28938712975023590101934", + "type": "swap", + "inputIndex": 1, + "inputQty": "92441546344486109184", + "outputIndex": 0, + "expectedQty": "92514993795954751197", + "swapFee": "0", "reserves": [ - "2165207895878734169135291", - "699853645043064248622712" - ] + "4166959730237884670063623", + "3698712927162188758775478" + ], + "LPTokenSupply": "7785824949557227246835125", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "353111569993056064", - "128679132220972208" + "4449954473708232192", + "5056484349870482432" ], - "expectedQty": "474659251848479892", - "swapFee": "284966531027704", + "expectedQty": "9410395798609960005", + "swapFee": "5649627255519287", "reserves": [ - "2165207542767164176079227", - "699853516363932027650504" + "4166955280283410961831431", + "3698707870677838888293046" ], - "LPTokenSupply": "2821855503144910971573240" + "LPTokenSupply": "7785815534076764106907760" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "153867596727530022764544", - "expectedQty": "154334271708018749598043", - "swapFee": "92320558036518013658", + "type": "redeemMasset", + "inputQty": "458965098795861043", + "expectedQtys": [ + "245489960724418802", + "217903862371675134" + ], + "redemptionFee": "275379059277516", + "reserves": [ + "4166955034793450237412629", + "3698707652773976516617912" + ], + "LPTokenSupply": "7785815075139203216974468" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "784354135735223", + "outputIndex": 1, + "expectedQty": "783104576509933", + "swapFee": "620881539888", "reserves": [ - "2165207542767164176079227", - "545519244655913278052461" + "4166955035577804373147852", + "3698707651990871940107979" ], - "LPTokenSupply": "2667997138473184600610061" + "LPTokenSupply": "7785815075139265305128456", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "139772729803085304561664", - "hardLimitError": true + "inputIndex": 0, + "inputQty": "570147806907252352", + "expectedQty": "575864402908751264", + "swapFee": "342088684144351", + "reserves": [ + "4166954459713401464396588", + "3698707651990871940107979" + ], + "LPTokenSupply": "7785814505025667266290539" }, { - "type": "redeemMasset", - "inputQty": "71709902260421326693990", - "expectedQtys": [ - "58161104798411600609104", - "14653561532228037199903" + "type": "mintMulti", + "inputQtys": [ + "4108169294088497004544", + "4212893890458442268672" ], - "redemptionFee": "43025941356252796016", + "expectedQty": "8236828295100734418396", "reserves": [ - "2107046437968752575470123", - "530865683123685240852558" + "4171062629007489961401132", + "3702920545881330382376651" ], - "LPTokenSupply": "2596291538806898899195672" + "LPTokenSupply": "7794051333320768000708935" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "18798960662919403012096", - "hardLimitError": true + "type": "redeemBassets", + "inputQtys": [ + "3291952596655583744", + "1634272733410543104" + ], + "expectedQty": "4875681639871320258", + "swapFee": "2927165283092647", + "reserves": [ + "4171059337054893305817388", + "3702918911608596971833547" + ], + "LPTokenSupply": "7794046455004679374605293" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "18565600477965692436480", - "expectedQty": "18923845917763799951171", - "swapFee": "11139360286779415461", + "inputQty": "28489721828785991680", + "outputIndex": 1, + "expectedQty": "28444362708066269134", + "swapFee": "22551995280818329", "reserves": [ - "2088122592050988775518952", - "530865683123685240852558" + "4171087826776722091809068", + "3702890467245888905564413" ], - "LPTokenSupply": "2577727052264961884700738" + "LPTokenSupply": "7794046457259878902687125", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "41257202626969468928", + "inputQty": "389579567812037731942", "expectedQtys": [ - "33400901292638591138", - "8491547550494771652" + "208363604119053656255", + "184975151676359290508" ], - "redemptionFee": "24754321576181681", + "redemptionFee": "233747740687222639", "reserves": [ - "2088089191149696136927814", - "530857191576134746080906" + "4170879463172603038152813", + "3702705492094212546273905" ], - "LPTokenSupply": "2577685797537767072849978" + "LPTokenSupply": "7793656901066840933677446" }, { "type": "mintMulti", "inputQtys": [ - "8646202228544", - "12755521909763" + "70869266457705160", + "287940962148871008" ], - "expectedQty": "21219839240549", + "expectedQty": "355261380996511708", "reserves": [ - "2088089191158342339156358", - "530857191588890267990669" + "4170879534041869495857973", + "3702705780035174695144913" ], - "LPTokenSupply": "2577685797558986912090527" + "LPTokenSupply": "7793657256328221930189154" }, { "type": "redeemBassets", "inputQtys": [ - "12160219104415678726144", - "19032517831341461471232" + "56439079545921728", + "6169787616815448" ], - "hardLimitError": true + "expectedQty": "61955026856194379", + "swapFee": "37195333313704", + "reserves": [ + "4170879477602789949936245", + "3702705773865387078329465" + ], + "LPTokenSupply": "7793657194339719274012440" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "127589185554791480164352", - "expectedQty": "127141307274478092338317", + "type": "swap", + "inputIndex": 0, + "inputQty": "29963292391185223516160", + "outputIndex": 1, + "expectedQty": "29914044069817893319204", + "swapFee": "23718178650660403069", "reserves": [ - "2088089191158342339156358", - "658446377143681748155021" - ] + "4200842769993975173452405", + "3672791729795569185010261" + ], + "LPTokenSupply": "7793659566157584340052746", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "10598391279074836217856", - "5804279886360346624000" + "46466318817651656", + "215317853112503168" ], - "expectedQty": "16177331099823851231260", + "expectedQty": "259207839012612783", "reserves": [ - "2098687582437417175374214", - "664250657030042094779021" + "4200842816460293991104061", + "3672791945113422297513429" ], - "LPTokenSupply": "2721004435933288855660104" + "LPTokenSupply": "7793659825365423352665529" }, { - "type": "redeemBassets", - "inputQtys": [ - "265939746134674538496", - "201677742822332727296" - ], - "expectedQty": "461649211997455597514", - "swapFee": "277155820690887891", + "type": "redeem", + "inputIndex": 0, + "inputQty": "89270323615582175232", + "expectedQty": "90169958788969146471", + "swapFee": "53562194169349305", "reserves": [ - "2098421642691282500835718", - "664048979287219762051725" + "4200752646501505021957590", + "3672791945113422297513429" ], - "LPTokenSupply": "2720542537281052778263487" + "LPTokenSupply": "7793570560398027187425227" }, { - "type": "redeemBassets", - "inputQtys": [ - "365575985269492613120", - "1303469108626445828096" + "type": "redeemMasset", + "inputQty": "473019859277006136934", + "expectedQtys": [ + "254805828299167919845", + "222781218628651373522" ], - "expectedQty": "1655143642444509645223", - "swapFee": "993682394903647975", + "redemptionFee": "283811915566203682", "reserves": [ - "2098056066706013008222598", - "662745510178593316223629" + "4200497840673205854037745", + "3672569163894793646139907" ], - "LPTokenSupply": "2718886499324452855335085" + "LPTokenSupply": "7793097568919941737908661" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8607037609930481664", - "expectedQty": "8559358837504741729", + "type": "redeemBassets", + "inputQtys": [ + "72475042048924977201152", + "432211185554433220018176" + ], + "expectedQty": "499806507073980050830488", + "swapFee": "300063942609954002900", "reserves": [ - "2098056066706013008222598", - "662754117216203246705293" - ] + "4128022798624280876836593", + "3240357978340360426121731" + ], + "LPTokenSupply": "7293021004297612728475562" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "20944724849156895539200", - "1123678062457416318976" + "1600150007877233803264", + "1683971750202495205376" ], - "expectedQty": "21680775093181729586947", - "swapFee": "13016274820801518663", + "expectedQty": "3250923224840534924029", "reserves": [ - "2077111341856856112683398", - "661630439153745830386317" + "4129622948632158110639857", + "3242041950090562921327107" ], - "LPTokenSupply": "2697202568942769909123069" + "LPTokenSupply": "7296271927522453263399591" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "587593508407629316096", - "expectedQty": "576905562619379897063", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2593615136612966989824", + "expectedQty": "2616432298927575264679", + "swapFee": "1556169081967780193", "reserves": [ - "2077698935365263741999494", - "661630439153745830386317" - ] + "4129622948632158110639857", + "3239425517791635346062428" + ], + "LPTokenSupply": "7293678468002748493187786" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "14329599821230521712640", - "expectedQty": "14586055502752348899291", - "swapFee": "8597759892738313027", + "inputQty": "67492034546241609728", + "expectedQty": "68197947682881434827", + "swapFee": "40495220727744965", "reserves": [ - "2063112879862511393100203", - "661630439153745830386317" + "4129554750684475229205030", + "3239425517791635346062428" ], - "LPTokenSupply": "2683450734460148041138794" + "LPTokenSupply": "7293610980017724324352554" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "966533187535848996864", - "expectedQty": "971572345008244479526", - "swapFee": "579919912521509398", + "inputQty": "574022143416950849536", + "expectedQty": "568675413940788804582", + "reserves": [ + "4129554750684475229205030", + "3239999539935052296911964" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "67577008031370657792", + "96735133020916088832" + ], + "expectedQty": "162671495088812741165", + "swapFee": "97661493949657439", "reserves": [ - "2063112879862511393100203", - "660658866808737585906791" + "4129487173676443858547238", + "3239902804802031380823132" ], - "LPTokenSupply": "2682484259264603444292869" + "LPTokenSupply": "7294016896041231745724274" }, { "type": "redeemMasset", - "inputQty": "8449594533391348531", + "inputQty": "9857894509307387904", "expectedQtys": [ - "6494728821202807774", - "2079769955937573188" + "5577670669827982035", + "4376115020439490289" ], - "redemptionFee": "5069756720034809", + "redemptionFee": "5914736705584432", "reserves": [ - "2063106385133690190292429", - "660656787038781648333603" + "4129481596005774030565203", + "3239898428687010941332843" ], - "LPTokenSupply": "2682475810177045724947818" + "LPTokenSupply": "7294007038738196108894813" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "418540709391903318081536", - "expectedQty": "425792486398243802563569", - "swapFee": "251124425635141990848", + "type": "redeemMasset", + "inputQty": "259098525838264709939", + "expectedQtys": [ + "146599889850109075592", + "115018977982725257040" + ], + "redemptionFee": "155459115502958825", "reserves": [ - "1637313898735446387728860", - "660656787038781648333603" + "4129334996115923921489611", + "3239783409709028216075803" ], - "LPTokenSupply": "2263960213227705921065366" + "LPTokenSupply": "7293747955758269394480756" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "686863922046623285248", - "1521348544984637767680" + "5628658110782582554624", + "1287315930235006877696" ], - "expectedQty": "2182825157059546718927", + "expectedQty": "6842387507448495936931", + "swapFee": "4107897242814786434", "reserves": [ - "1638000762657493011014108", - "662178135583766286101283" + "4123706338005141338934987", + "3238496093778793209198107" ], - "LPTokenSupply": "2266143038384765467784293" + "LPTokenSupply": "7286901871143302365236033" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "428862724020271513600", + "expectedQty": "424865979012619246504", + "reserves": [ + "4123706338005141338934987", + "3238924956502813480711707" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "77998323717148348776448", - "expectedQty": "78599225138411779307630", - "swapFee": "46798994230289009265", + "inputQty": "8239520924857431752704", + "expectedQty": "8312000160513427520062", + "swapFee": "4943712554914459051", "reserves": [ - "1638000762657493011014108", - "583578910445354506793653" + "4123706338005141338934987", + "3230612956342300053191645" ], - "LPTokenSupply": "2188149394567040147908771" + "LPTokenSupply": "7279087710568713044175738" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "13821765627381339389952", - "outputIndex": 1, - "expectedQty": "13663510798607609809572", - "swapFee": "10860920618164342431", + "inputIndex": 1, + "inputQty": "19572372923244693422080", + "outputIndex": 0, + "expectedQty": "19604069753668615889125", + "swapFee": "0", "reserves": [ - "1651822528284874350404060", - "569915399646746896984081" + "4104102268251472723045862", + "3250185329265544746613725" ], - "LPTokenSupply": "2188150480659101964343014", + "LPTokenSupply": "7279087710568713044175738", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "6116200683767028776960", - "7372079767893039906816" + "1988905785475758817280", + "2296300235506226036736" ], - "expectedQty": "13327288278922696708619", - "swapFee": "8001173671556551956", + "expectedQty": "4242018180045094886085", + "swapFee": "2546738951397895669", "reserves": [ - "1645706327601107321627100", - "562543319878853857077265" + "4102113362465996964228582", + "3247889029030038520576989" ], - "LPTokenSupply": "2174815991323874866737633" + "LPTokenSupply": "7274843400323611691183549" }, { - "type": "redeemBassets", - "inputQtys": [ - "8747342776995792", - "38625338209354096" + "type": "mint", + "inputIndex": 0, + "inputQty": "27139337789870662746112", + "expectedQty": "26842768237194823089184", + "reserves": [ + "4129252700255867626974694", + "3247889029030038520576989" + ] + }, + { + "type": "redeemMasset", + "inputQty": "74397650069836578737356", + "expectedQtys": [ + "42048147008434506909024", + "33073227838847039141117" ], - "expectedQty": "46949175043844828", - "swapFee": "28186416876432", + "redemptionFee": "44638590041901947242", "reserves": [ - "1645706318853764544631308", - "562543281253515647723169" + "4087204553247433120065670", + "3214815801191191481435872" ], - "LPTokenSupply": "2174815944349332047704015" + "LPTokenSupply": "7227292982349974125730101" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "3085623381971838464", - "expectedQty": "3105190221959138010", - "swapFee": "1851374029183103", + "inputQty": "110457652907799490854912", + "outputIndex": 0, + "expectedQty": "110613831077564544056341", + "swapFee": "0", "reserves": [ - "1645706318853764544631308", - "562540176063293688585159" + "3976590722169868576009329", + "3325273454098990972290784" ], - "LPTokenSupply": "2174812858911087478783861" + "LPTokenSupply": "7227292982349974125730101", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1504981635837362962432", - "1784747665492260683776" + "type": "mint", + "inputIndex": 1, + "inputQty": "82687236497973216", + "expectedQty": "81896285248118933", + "reserves": [ + "3976590722169868576009329", + "3325273536786227470264000" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "32875716552098219819008", + "expectedQty": "32560641640795203243859", + "reserves": [ + "3976590722169868576009329", + "3358149253338325690083008" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "306794745593344294912", + "expectedQty": "309934094712570969473", + "swapFee": "184076847356006576", + "reserves": [ + "3976280788075156005039856", + "3358149253338325690083008" ], - "expectedQty": "3250413311576817833541", - "swapFee": "1951418838249040124", + "LPTokenSupply": "7259546929549145968398638" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1669812222593729036288", + "expectedQty": "1684988470456896417297", + "swapFee": "1001887333556237421", + "reserves": [ + "3976280788075156005039856", + "3356464264867868793665711" + ], + "LPTokenSupply": "7257877217515285594986092" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "282840517102500078157824", + "expectedQty": "285702017958403658996970", + "swapFee": "169704310261500046894", "reserves": [ - "1644201337217927181668876", - "560755428397801427901383" + "3690578770116752346042886", + "3356464264867868793665711" ], - "LPTokenSupply": "2171560689322556236814207" + "LPTokenSupply": "6975053670843811666832957" }, { "type": "swap", "inputIndex": 1, - "inputQty": "29802060897631955058688", + "inputQty": "31552820171543010082816", "outputIndex": 0, - "expectedQty": "30118964502647855347576", + "expectedQty": "31570834432358106016683", "swapFee": "0", "reserves": [ - "1614082372715279326321300", - "590557489295433382960071" + "3659007935684394240026203", + "3388017085039411803748527" ], - "LPTokenSupply": "2171560689322556236814207", + "LPTokenSupply": "6975053670843811666832957", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "71316354820770560475136", + "inputQty": "3654515103444131381248", "outputIndex": 1, - "expectedQty": "70440712307940626445301", - "swapFee": "56041189453658335502", + "expectedQty": "3649701342191234480592", + "swapFee": "2893037871907943881", "reserves": [ - "1685398727536049886796436", - "520116776987492756514770" + "3662662450787838371407451", + "3384367383697220569267935" ], - "LPTokenSupply": "2171566293441501602647757", + "LPTokenSupply": "6975053960147598857627345", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "93798374385419792", - "173858151113168704" - ], - "expectedQty": "264999318798084161", + "type": "swap", + "inputIndex": 1, + "inputQty": "80367423253355350196224", + "outputIndex": 0, + "expectedQty": "80397378608114114972507", + "swapFee": "0", "reserves": [ - "1685398821334424272216228", - "520116950845643869683474" + "3582265072179724256434944", + "3464734806950575919464159" ], - "LPTokenSupply": "2171566558440820400731918" + "LPTokenSupply": "6975053960147598857627345", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "14691100517106064556032", - "expectedQty": "14756717057333215049886", - "swapFee": "8814660310263638733", + "inputQty": "448468083400607531008", + "expectedQty": "452771091167158583616", + "swapFee": "269080850040364518", "reserves": [ - "1685398821334424272216228", - "505360233788310654633588" + "3582265072179724256434944", + "3464282035859408760880543" ], - "LPTokenSupply": "2156876339389745362539759" + "LPTokenSupply": "6974605518972283254132788" }, { - "type": "redeemBassets", - "inputQtys": [ - "398583311128393416704", - "460064041396987559936" - ], - "expectedQty": "849006687963923397176", - "swapFee": "509709838681562976", + "type": "swap", + "inputIndex": 0, + "inputQty": "119307101348867298295808", + "outputIndex": 1, + "expectedQty": "119158358447144544910620", + "swapFee": "94455874009267660494", "reserves": [ - "1685000238023295878799524", - "504900169746913667073652" + "3701572173528591554730752", + "3345123677412264215969923" ], - "LPTokenSupply": "2156026873962926625735903" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "34897966142984009285632", - "expectedQty": "34710509207913396273599", - "reserves": [ - "1685000238023295878799524", - "539798135889897676359284" - ] + "LPTokenSupply": "6974614964559684180898837", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "26449148498454247374848", + "inputQty": "8544838173438159880192", "outputIndex": 1, - "expectedQty": "26079851597986833918875", - "swapFee": "20770946307451951562", + "expectedQty": "8532115650968490708530", + "swapFee": "6763758465055594070", "reserves": [ - "1711449386521750126174372", - "513718284291910842440409" + "3710117011702029714610944", + "3336591561761295725261393" ], - "LPTokenSupply": "2190739460265470767204658", + "LPTokenSupply": "6974615640935530686458244", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "190127349708032", - "335213194003938" - ], - "expectedQty": "520176860148823", - "swapFee": "312293492184", + "type": "mint", + "inputIndex": 0, + "inputQty": "114948028516838173310976", + "expectedQty": "113728459977707464657406", + "reserves": [ + "3825065040218867887921920", + "3336591561761295725261393" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "88805173602952708096", + "expectedQty": "89626170221295447031", + "swapFee": "53283104161771624", "reserves": [ - "1711449386331622776466340", - "513718283956697648436471" + "3825065040218867887921920", + "3336501935591074429814362" ], - "LPTokenSupply": "2190739459745012842912868" + "LPTokenSupply": "7088255301067945614584716" }, { - "type": "redeemMasset", - "inputQty": "1621864033895510651699", - "expectedQtys": [ - "1266272331134881209298", - "380091432541149891507" + "type": "mintMulti", + "inputQtys": [ + "36364919718204321824768", + "22652982686818330738688" ], - "redemptionFee": "973118420337306391", + "expectedQty": "58409331442227648665705", "reserves": [ - "1710183114000487895257042", - "513338192524156498544964" + "3861429959937072209746688", + "3359154918277892760553050" ], - "LPTokenSupply": "2189117693022959365991808" + "LPTokenSupply": "7146664632510173263250421" }, { - "type": "redeemMasset", - "inputQty": "126142295492919475", - "expectedQtys": [ - "98485791123137030", - "29562049578539082" - ], - "redemptionFee": "75685377295751", + "type": "mint", + "inputIndex": 1, + "inputQty": "15214426637697795751936", + "expectedQty": "15066038254926785868974", "reserves": [ - "1710183015514696772120012", - "513338162962106920005882" - ], - "LPTokenSupply": "2189117566888232410801908" + "3861429959937072209746688", + "3374369344915590556304986" + ] }, { "type": "redeemMasset", - "inputQty": "16665406066701625", + "inputQty": "19097688028279745177190", "expectedQtys": [ - "13011541406511319", - "3905617528843075" + "10290827940228404099320", + "8992796631192417860046" ], - "redemptionFee": "9999243640020", + "redemptionFee": "11458612816967847106", "reserves": [ - "1710183002503155365608693", - "513338159056489391162807" + "3851139131996843805647368", + "3365376548284398138444940" ], - "LPTokenSupply": "2189117550223826268464285" + "LPTokenSupply": "7142634128598102000726915" }, { - "type": "redeemMasset", - "inputQty": "31140638218673776230", - "expectedQtys": [ - "24313101162216215375", - "7297957337488645118" + "type": "redeemBassets", + "inputQtys": [ + "3080284191374868742144", + "2992820588121338413056" ], - "redemptionFee": "18684382931204265", + "expectedQty": "6011072400953011659666", + "swapFee": "3608808725807291370", "reserves": [ - "1710158689401993149393318", - "513330861099151902517689" + "3848058847805468936905224", + "3362383727696276800031884" ], - "LPTokenSupply": "2189086411454045887808481" + "LPTokenSupply": "7136619808269295762505015" }, { - "type": "redeemBassets", - "inputQtys": [ - "138743829227854200832", - "122936776242216419328" - ], - "expectedQty": "258498251774977231212", - "swapFee": "155192066304769200", + "type": "redeem", + "inputIndex": 1, + "inputQty": "359578007942959726592", + "expectedQty": "362905155470820597449", + "swapFee": "215746804765775835", "reserves": [ - "1710019945572765295192486", - "513207924322909686098361" + "3848058847805468936905224", + "3362020822540805979434435" ], - "LPTokenSupply": "2188827773529411236284988" + "LPTokenSupply": "7136260251836033279356006" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3425748497166552064", - "expectedQty": "3361780426791199599", + "inputIndex": 1, + "inputQty": "4073976144051762626560", + "expectedQty": "4034195436186883322853", "reserves": [ - "1710023371321262461744550", - "513207924322909686098361" + "3848058847805468936905224", + "3366094798684857742060995" ] }, { - "type": "redeemMasset", - "inputQty": "7571287389357182287872", - "expectedQtys": [ - "5911515936987547433441", - "1774149332987807571623" - ], - "redemptionFee": "4542772433614309372", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1062920483099789754368", + "expectedQty": "1072759498758582545489", + "swapFee": "637752289859873852", "reserves": [ - "1704111855384274914311109", - "511433774989921878526738" - ], - "LPTokenSupply": "2181260302197724206627652" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "398443823603259614953472", - "229562482089452954976256" + "3848058847805468936905224", + "3365022039186099159515506" ], - "hardLimitError": true + "LPTokenSupply": "7139231590564349358911876" }, { "type": "redeemMasset", - "inputQty": "26540278167411974209536", + "inputQty": "15526866528870835263897", "expectedQtys": [ - "20722178853729368772386", - "6219088332549217332840" + "8363987971248979524998", + "7314078337131257152750" ], - "redemptionFee": "15924166900447184525", + "redemptionFee": "9316119917322501158", "reserves": [ - "1683389676530545545538723", - "505214686657372661193898" + "3839694859834219957380226", + "3357707960848967902362756" ], - "LPTokenSupply": "2154721616447002277136568" + "LPTokenSupply": "7123705655647470255898094" }, { - "type": "mintMulti", - "inputQtys": [ - "13580739486566716538880", - "30992428389609836118016" - ], - "expectedQty": "44157623811567618795038", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1730741760511135232", + "expectedQty": "1748327624759876502", + "swapFee": "1038445056306681", "reserves": [ - "1696970416017112262077603", - "536207115046982497311914" + "3839693111506595197503724", + "3357707960848967902362756" ], - "LPTokenSupply": "2198879240258569895931606" + "LPTokenSupply": "7123703925009554250393530" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "127757077308247692541952", - "outputIndex": 0, - "expectedQty": "129039426163865409150210", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "3808669836929155989504", + "5638581547958928408576" + ], + "expectedQty": "9351604907115714574754", "reserves": [ - "1567930989853246852927393", - "663964192355230189853866" + "3843501781343524353493228", + "3363346542396926830771332" ], - "LPTokenSupply": "2198879240258569895931606", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7133055529916669964968284" }, { "type": "redeemMasset", - "inputQty": "1019767102283924070", + "inputQty": "7837722577302318795980", "expectedQtys": [ - "726717983499012258", - "307739767953119513" + "4220663358200017599171", + "3693390642181846678447" ], - "redemptionFee": "611860261370354", + "redemptionFee": "4702633546381391277", "reserves": [ - "1567930263135263353915135", - "663963884615462236734353" + "3839281117985324335894057", + "3359653151754744984092885" ], - "LPTokenSupply": "2198878220552653638144571" + "LPTokenSupply": "7125218277602722284311431" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "4277684519401699", - "outputIndex": 0, - "expectedQty": "4310533337493270", - "swapFee": "0", + "inputQty": "101975193397466480246784", + "expectedQty": "100973472775819491681949", "reserves": [ - "1567930258824730016421865", - "663963888893146756136052" - ], - "LPTokenSupply": "2198878220552653638144571", - "hardLimitError": false, - "insufficientLiquidityError": false + "3839281117985324335894057", + "3461628345152211464339669" + ] }, { "type": "redeemMasset", - "inputQty": "203531849105926451", + "inputQty": "13289980990870203557478", "expectedQtys": [ - "145043171386118817", - "61420734493068959" + "7056740321084700454842", + "6362600593483994106212" ], - "redemptionFee": "122119109463555", + "redemptionFee": "7973988594522122134", "reserves": [ - "1567930113781558630303048", - "663963827472412263067093" + "3832224377664239635439215", + "3455265744558727470233457" ], - "LPTokenSupply": "2198878017033016443164475" + "LPTokenSupply": "7212902566786531024648115" }, { "type": "redeemMasset", - "inputQty": "4208111603077280589414", + "inputQty": "2355418407700081049", "expectedQtys": [ - "2998832149212702687706", - "1269901033367093756079" + "1250685956583138135", + "1127661618189571770" ], - "redemptionFee": "2524866961846368353", + "redemptionFee": "1413251044620048", "reserves": [ - "1564931281632345927615342", - "662693926439045169311014" + "3832223126978283052301080", + "3455264616897109280661687" ], - "LPTokenSupply": "2194670157916635347211896" + "LPTokenSupply": "7212900211509448429029070" }, { - "type": "redeemBassets", - "inputQtys": [ - "39121295593566889836544", - "35000672789565934665728" - ], - "expectedQty": "73125803337877339274709", - "swapFee": "43901823096584354177", + "type": "mint", + "inputIndex": 0, + "inputQty": "8589553541166923776000", + "expectedQty": "8498832606428418311674", "reserves": [ - "1525809986038779037778798", - "627693253649479234645286" - ], - "LPTokenSupply": "2121504842937971082018426" + "3840812680519449976077080", + "3455264616897109280661687" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "177507554405461032960", - "1085822499159117398016" + "type": "redeemMasset", + "inputQty": "10543358988401747427328", + "expectedQtys": [ + "5604283825134922428315", + "5041715182376081171597" ], - "expectedQty": "1250260719987618536279", + "redemptionFee": "6326015393041048456", "reserves": [ - "1525987493593184498811758", - "628779076148638352043302" + "3835208396694315053648765", + "3450222901714733199490090" ], - "LPTokenSupply": "2122755103657958700554705" + "LPTokenSupply": "7210856317729014404018261" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "324582087617494319104", - "expectedQty": "330054726497526740251", - "swapFee": "194749252570496591", + "type": "redeemMasset", + "inputQty": "1723212406746944307", + "expectedQtys": [ + "915967961834089628", + "824021360059833441" + ], + "redemptionFee": "1033927444048166", "reserves": [ - "1525657438866686972071507", - "628779076148638352043302" + "3835207480726353219559137", + "3450222077693373139656649" ], - "LPTokenSupply": "2122430541045266463285260" + "LPTokenSupply": "7210854594620000401478770" }, { "type": "mint", "inputIndex": 1, - "inputQty": "6159706805267002818560", - "expectedQty": "6102490788007327258315", + "inputQty": "187883719614483955712", + "expectedQty": "186029389331780717992", "reserves": [ - "1525657438866686972071507", - "634938782953905354861862" + "3835207480726353219559137", + "3450409961412987623612361" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "4145395404119725309952", - "expectedQty": "4074362111099182739986", + "inputQty": "320372762249746104451072", + "expectedQty": "316946987362383896208114", "reserves": [ - "1529802834270806697381459", - "634938782953905354861862" + "4155580242976099324010209", + "3450409961412987623612361" ] }, { - "type": "mintMulti", - "inputQtys": [ - "7880937680635895480320", - "10481432986374010568704" + "type": "redeemMasset", + "inputQty": "46083493203023902015488", + "expectedQtys": [ + "25423627345025134059591", + "21109431635882113197654" ], - "expectedQty": "18129287417686294914812", + "redemptionFee": "27650095921814341209", "reserves": [ - "1537683771951442592861779", - "645420215940279365430566" + "4130156615631074189950618", + "3429300529777105510414707" ], - "LPTokenSupply": "2150736681362059268198373" + "LPTokenSupply": "7481906883178284357823508" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "49917733587645458546688", - "expectedQty": "49061069364248077318329", + "inputIndex": 1, + "inputQty": "11546472743999918571520", + "expectedQty": "11435748463201321494429", "reserves": [ - "1587601505539088051408467", - "645420215940279365430566" + "4130156615631074189950618", + "3440847002521105428986227" ] }, + { + "type": "redeemMasset", + "inputQty": "6354607423805535027", + "expectedQtys": [ + "3500410680018270087", + "2916203601178302561" + ], + "redemptionFee": "3812764454283321", + "reserves": [ + "4130153115220394171680531", + "3440844086317504250683666" + ], + "LPTokenSupply": "7493336277415338319211242" + }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "10847365010834577162240", - "expectedQty": "10939393818701275253170", - "swapFee": "6508419006500746297", + "inputIndex": 0, + "inputQty": "129930703436446020141056", + "expectedQty": "131265061698703523492569", + "swapFee": "77958422061867612084", "reserves": [ - "1587601505539088051408467", - "634480822121578090177396" + "3998888053521690648187962", + "3440844086317504250683666" ], - "LPTokenSupply": "2188951036557373418429091" + "LPTokenSupply": "7363413369821098485831394" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "86374945339442659328", + "expectedQty": "85535051083174000092", + "reserves": [ + "3998888053521690648187962", + "3440930461262843693342994" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2238123423823673856", - "351843676320664576" + "89619486259514687488", + "86507895663602663424" ], - "expectedQty": "2548099601271421430", - "swapFee": "1529777627339256", + "expectedQty": "174325640613987732184", + "swapFee": "104658179275958214", "reserves": [ - "1587599267415664227734611", - "634480470277901769512820" + "3998798434035431133500474", + "3440843953367180090679570" ], - "LPTokenSupply": "2188948487080972282402329" + "LPTokenSupply": "7363324485039206323736908" }, { "type": "redeemMasset", - "inputQty": "76577082243713387724", + "inputQty": "6444523683727288985190", "expectedQtys": [ - "55506457167098875575", - "22183030547859539617" + "3497725661308682980395", + "3009686132167912751021" ], - "redemptionFee": "45946249346228032", + "redemptionFee": "3866714210236373391", "reserves": [ - "1587543760958497128859036", - "634458287247353909973203" + "3995300708374122450520079", + "3437834267235012177928549" ], - "LPTokenSupply": "2188871914593353503637408" + "LPTokenSupply": "7356880348026900058389057" }, { "type": "redeemBassets", "inputQtys": [ - "76520788014264095866880", - "144500751075280179691520" + "17751319565702174605312", + "3002010504280258641920" ], - "expectedQty": "218549871589668923994433", - "swapFee": "131208648142686966576", + "expectedQty": "20533947991135087695834", + "swapFee": "12327765453953424672", "reserves": [ - "1511022972944233032992156", - "489957536172073730281683" + "3977549388808420275914767", + "3434832256730731919286629" ], - "LPTokenSupply": "1970203955220356161373055" + "LPTokenSupply": "7336335305046856412611017" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "12258730209376666124288", - "outputIndex": 0, - "expectedQty": "12405842878894419917257", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "232463387980860063744", + "611974203299451502592" + ], + "expectedQty": "835988188400184751007", "reserves": [ - "1498617130065338613074899", - "502216266381450396405971" + "3977781852196401135978511", + "3435444230934031370789221" ], - "LPTokenSupply": "1970203955220356161373055", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7337171293235256597362024" }, { - "type": "redeemMasset", - "inputQty": "1581613838523072307", - "expectedQtys": [ - "1202317884464503024", - "402920523745167975" + "type": "redeemBassets", + "inputQtys": [ + "5017605274995047530496", + "4171479832535655514112" ], - "redemptionFee": "948968303113843", + "expectedQty": "9094726924957816008061", + "swapFee": "5460112222308074449", "reserves": [ - "1498615927747454148571875", - "502215863460926651237996" + "3972764246921406088448015", + "3431272751101495715275109" ], - "LPTokenSupply": "1970202373701414468612132" + "LPTokenSupply": "7328071652209298704086957" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "6928909950414708801536", - "outputIndex": 0, - "expectedQty": "7008412211746125751852", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "15630340926078922752", + "expectedQty": "15790059398913148287", + "swapFee": "9378204555647353", "reserves": [ - "1491607515535708022820023", - "509144773411341360039532" + "3972748456862007175299728", + "3431272751101495715275109" ], - "LPTokenSupply": "1970202373701414468612132", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7328056022806193080728940" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "727060811845662208", - "expectedQty": "731749786353969292", - "swapFee": "436236487107397", + "inputQty": "43639083469074193186816", + "expectedQty": "43213041630730369894992", + "reserves": [ + "3972748456862007175299728", + "3474911834570569908461925" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "51876650232644091510784", + "expectedQty": "52403562316099170297044", + "swapFee": "31125990139586454906", "reserves": [ - "1491607515535708022820023", - "509144041661555006070240" + "3920344894545908005002684", + "3474911834570569908461925" ], - "LPTokenSupply": "1970201646684226271660663" + "LPTokenSupply": "7319395526803293317758638" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2636221675812373397504", - "797185730112849444864" + "2197259690349949440", + "1814748575100933376" ], - "expectedQty": "3380133608641790519072", - "swapFee": "2029297743831373135", + "expectedQty": "3970796712901757612", "reserves": [ - "1488971293859895649422519", - "508346855931442156625376" + "3920347091805598354952124", + "3474913649319145009395301" ], - "LPTokenSupply": "1966819686707615032905768" + "LPTokenSupply": "7319399497600006219516250" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "76194942049261652541440", - "3637918964089503612928" + "15262558659378155618304", + "14587686035671585128448" ], - "expectedQty": "78436143247306038973267", - "swapFee": "47089939912331021997", + "expectedQty": "29544484262859069909498", "reserves": [ - "1412776351810633996881079", - "504708936967352653012448" + "3935609650464976510570428", + "3489501335354816594523749" ], - "LPTokenSupply": "1888341162514387896012702" + "LPTokenSupply": "7348943981862865289425748" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "3961926237918124310528", + "expectedQty": "3919801350290254793352", + "reserves": [ + "3939571576702894634880956", + "3489501335354816594523749" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "13112281457140399341568", + "expectedQty": "12983248439112299604405", + "reserves": [ + "3939571576702894634880956", + "3502613616811956993865317" + ] }, { "type": "redeemMasset", - "inputQty": "858822181937151161139", + "inputQty": "5783240778090779613593", "expectedQtys": [ - "642148621722133904358", - "229405133961267208896" + "3091269856427306868396", + "2748401363334131172673" ], - "redemptionFee": "515293309162290696", + "redemptionFee": "3469944466854467768", "reserves": [ - "1412134203188911862976721", - "504479531833391385803552" + "3936480306846467328012560", + "3499865215448622862692644" ], - "LPTokenSupply": "1887482391861781661080632" + "LPTokenSupply": "7360064137868623749656688" }, { "type": "redeemBassets", "inputQtys": [ - "19540362650323584548864", - "3404106191879430209536" + "36418735911968480165888", + "8209033181157903040512" ], - "expectedQty": "22568922885203114519954", - "swapFee": "13549483421174573456", + "expectedQty": "44160361597583017691282", + "swapFee": "26512124233089664413", "reserves": [ - "1392593840538588278427857", - "501075425641511955594016" + "3900061570934498847846672", + "3491656182267464959652132" ], - "LPTokenSupply": "1864901274441499489444566" + "LPTokenSupply": "7315879915359230951267433" }, { "type": "redeemMasset", - "inputQty": "1630854549227916083", + "inputQty": "9764818800973750416179", "expectedQtys": [ - "1217091414101176231", - "437927111705099999" + "5202456157895511516555", + "4657667033276790332042" ], - "redemptionFee": "978512729536749", + "redemptionFee": "5858891280584250249", "reserves": [ - "1392592623447174177251626", - "501074987714400250494017" + "3894859114776603336330117", + "3486998515234188169320090" ], - "LPTokenSupply": "1864899643684801534482157" + "LPTokenSupply": "7306115682447385259276278" }, { "type": "swap", "inputIndex": 1, - "inputQty": "691425904002372206592", + "inputQty": "1964288676989005056", "outputIndex": 0, - "expectedQty": "698529902513069014592", + "expectedQty": "1965735434913449215", "swapFee": "0", "reserves": [ - "1391894093544661108237034", - "501766413618402622700609" + "3894857149041168422880902", + "3487000479522865158325146" ], - "LPTokenSupply": "1864899643684801534482157", + "LPTokenSupply": "7306115682447385259276278", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "148053604171649818558464", - "193996619496186336772096" + "166509328350178738176", + "34053846602836164608" ], - "expectedQty": "337708892497655061279641", + "expectedQty": "198461055453362087920", "reserves": [ - "1539947697716310926795498", - "695763033114588959472705" + "3895023658369518601619078", + "3487034533369467994489754" ], - "LPTokenSupply": "2202608536182456595761798" + "LPTokenSupply": "7306314143502838621364198" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "10419221358775791255552", - "outputIndex": 1, - "expectedQty": "10339062873464398200840", - "swapFee": "8194495490550286372", + "type": "redeem", + "inputIndex": 1, + "inputQty": "124411763286164471808", + "expectedQty": "125577303287631385307", + "swapFee": "74647057971698683", "reserves": [ - "1550366919075086718051050", - "685423970241124561271865" + "3895023658369518601619078", + "3486908956066180363104447" ], - "LPTokenSupply": "2202609355632005650790435", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7306189739204258254062258" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "19072992523421201989632", - "outputIndex": 0, - "expectedQty": "19203244647508397255100", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "14180099520086910976", + "outputIndex": 1, + "expectedQty": "14158320521211308646", + "swapFee": "11223775514878657", "reserves": [ - "1531163674427578320795950", - "704496962764545763261497" + "3895037838469038688530054", + "3486894797745659151795801" ], - "LPTokenSupply": "2202609355632005650790435", + "LPTokenSupply": "7306189740326635805550123", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "339884097674099949568", - "22777007917654704128" + "7753110527055165", + "7851127188790131" ], - "expectedQty": "356708226741218741907", - "swapFee": "214153428101592200", + "expectedQty": "15444479525116527", + "swapFee": "9272251065709", "reserves": [ - "1530823790329904220846382", - "704474185756628108557369" + "3895037830715928161474889", + "3486894789894531963005670" ], - "LPTokenSupply": "2202252454667179140615547" + "LPTokenSupply": "7306189724873811254474456" }, { - "type": "redeemMasset", - "inputQty": "1104569609364107264", - "expectedQtys": [ - "767344766330942153", - "353126586397708505" + "type": "mintMulti", + "inputQtys": [ + "63079180195802272", + "179754055198399712" ], - "redemptionFee": "662741765618464", + "expectedQty": "240389062555896431", "reserves": [ - "1530823022985137889904229", - "704473832630041710848864" + "3895037893795108357277161", + "3486894969648587161405382" ], - "LPTokenSupply": "2202251350163843953070129" + "LPTokenSupply": "7306189965262873810370887" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "39131536232588221874176", - "expectedQty": "39775071498473536003932", - "swapFee": "23478921739552933124", - "reserves": [ - "1491047951486664353900297", - "704473832630041710848864" - ], - "LPTokenSupply": "2163122161823429686489265" - }, - { - "type": "mintMulti", - "inputQtys": [ - "544395760438386229248", - "415712656982218375168" - ], - "expectedQty": "946601233460824000882", + "inputQty": "1429951466108482", + "outputIndex": 1, + "expectedQty": "1427755188810178", + "swapFee": "1131829428259", "reserves": [ - "1491592347247102740129545", - "704889545287023929224032" + "3895037895225059823385643", + "3486894968220831972595204" ], - "LPTokenSupply": "2164068763056890510490147" + "LPTokenSupply": "7306189965262986993313712", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "180091589832929968128", - "expectedQty": "183045448261559255281", - "swapFee": "108054953899757980", + "inputQty": "4498323049143669248", + "expectedQty": "4450618181946798103", "reserves": [ - "1491409301798841180874264", - "704889545287023929224032" - ], - "LPTokenSupply": "2163888682272552970497817" + "3895042393548108967054891", + "3486894968220831972595204" + ] }, { "type": "mintMulti", "inputQtys": [ - "654094174545069824", - "917123471521015296" - ], - "expectedQty": "1550566664401180986", - "reserves": [ - "1491409955893015725944088", - "704890462410495450239328" + "6212968912449527873536", + "33257959871463617986560" ], - "LPTokenSupply": "2163890232839217371678803" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "35554783283418341834752", - "outputIndex": 0, - "expectedQty": "35761508876890172534690", - "swapFee": "0", + "expectedQty": "39076207177338658219268", "reserves": [ - "1455648447016125553409398", - "740445245693913792074080" + "3901255362460558494928427", + "3520152928092295590581764" ], - "LPTokenSupply": "2163890232839217371678803", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7345270623058507598331083" }, { "type": "mintMulti", "inputQtys": [ - "135021060921704256", - "100268763819041728" + "2759032308897452916736", + "501116255306295607296" ], - "expectedQty": "231950768364424465", + "expectedQty": "3225992760826943381971", "reserves": [ - "1455648582037186475113654", - "740445345962677611115808" + "3904014394769455947845163", + "3520654044347601886189060" ], - "LPTokenSupply": "2163890464789985736103268" + "LPTokenSupply": "7348496615819334541713054" }, { "type": "mintMulti", "inputQtys": [ - "13930609259972577280", - "7150493116721223680" - ], - "expectedQty": "20772196433553041542", - "reserves": [ - "1455662512646446447690934", - "740452496455794332339488" + "39539233245210746028032", + "55071786915640696111104" ], - "LPTokenSupply": "2163911236986419289144810" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "53903863622139682816", - "expectedQty": "54478546941697806012", - "swapFee": "32342318173283809", + "expectedQty": "93647140646558588799936", "reserves": [ - "1455662512646446447690934", - "740398017908852634533476" + "3943553628014666693873195", + "3575725831263242582300164" ], - "LPTokenSupply": "2163857336357028966790374" + "LPTokenSupply": "7442143756465893130512990" }, { - "type": "mintMulti", - "inputQtys": [ - "43680248160844365824", - "28855331549638279168" + "type": "redeemMasset", + "inputQty": "1060568692830343", + "expectedQtys": [ + "561652691407426", + "509265557490369" ], - "expectedQty": "71495290841269893489", + "redemptionFee": "636341215698", "reserves": [ - "1455706192894607292056758", - "740426873240402272812644" + "3943553627453014002465769", + "3575725830753977024809795" ], - "LPTokenSupply": "2163928831647870236683863" + "LPTokenSupply": "7442143755405388071804216" }, { "type": "redeemMasset", - "inputQty": "3294982663511284531", + "inputQty": "1641606563921053247078", "expectedQtys": [ - "2215252499363412041", - "1126760667466906738" + "869356931890805672196", + "788269244233579869417" ], - "redemptionFee": "1976989598106770", + "redemptionFee": "984963938352631948", "reserves": [ - "1455703977642107928644717", - "740425746479734805905906" + "3942684270521123196793573", + "3574937561509743444940378" ], - "LPTokenSupply": "2163925536862905685210009" + "LPTokenSupply": "7440502247337860853820332" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "10812769099590169264128", - "expectedQty": "10691735874760031808770", + "inputIndex": 0, + "inputQty": "616697025184609730560", + "expectedQty": "610181519978796395538", "reserves": [ - "1455703977642107928644717", - "751238515579324975170034" + "3943300967546307806524133", + "3574937561509743444940378" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "45347637200601361678336", - "expectedQty": "44828711543773115969163", + "type": "redeem", + "inputIndex": 0, + "inputQty": "88511084417024901120", + "expectedQty": "89402549214608461098", + "swapFee": "53106650650214940", "reserves": [ - "1455703977642107928644717", - "796586152779926336848370" - ] + "3943211564997093198063035", + "3574937561509743444940378" + ], + "LPTokenSupply": "7441023923084087690336244" }, { "type": "swap", "inputIndex": 0, - "inputQty": "13329699636530919768064", + "inputQty": "3810938109590110208000", "outputIndex": 1, - "expectedQty": "13255810345763320308495", - "swapFee": "10490871670092548247", + "expectedQty": "3805381889414297731319", + "swapFee": "3016534740734067836", "reserves": [ - "1469033677278638848412781", - "783330342434163016539875" + "3947022503106683308271035", + "3571132179620329147209059" ], - "LPTokenSupply": "2219447033368605842242766", + "LPTokenSupply": "7441024224737561763743027", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "277463831474330730496", - "expectedQty": "280514417993007462115", - "swapFee": "166478298884598438", - "reserves": [ - "1469033677278638848412781", - "783049828016170009077760" - ], - "LPTokenSupply": "2219169586184961399972113" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1823109201382126911488", - "13732882228418747301888" + "type": "redeemMasset", + "inputQty": "792135518818381227622", + "expectedQtys": [ + "419928853593467767254", + "379937393576642007150" ], - "expectedQty": "15368133644554295757469", + "redemptionFee": "475281311291028736", "reserves": [ - "1470856786480020975324269", - "796782710244588756379648" + "3946602574253089840503781", + "3570752242226752505201909" ], - "LPTokenSupply": "2234537719829515695729582" + "LPTokenSupply": "7440232136746874511618278" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "15384692308507191410688", - "expectedQty": "15205716005169412617676", + "type": "redeem", + "inputIndex": 0, + "inputQty": "20051354637854306205696", + "expectedQty": "20253280723972896231463", + "swapFee": "12030812782712583723", "reserves": [ - "1470856786480020975324269", - "812167402553095947790336" - ] + "3926349293529116944272318", + "3570752242226752505201909" + ], + "LPTokenSupply": "7420181985190298476670954" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "24414539769091532521472", - "outputIndex": 0, - "expectedQty": "24520135728507860794819", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "10279335278814539913625", + "expectedQtys": [ + "5435991291580429188029", + "4943670733810115435885" + ], + "redemptionFee": "6167601167288723948", "reserves": [ - "1446336650751513114529450", - "836581942322187480311808" + "3920913302237536515084289", + "3565808571492942389766024" ], - "LPTokenSupply": "2249743435834685108347258", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7409903266671600665629723" }, { "type": "redeemBassets", "inputQtys": [ - "330545397824438592", - "1426993682977414144" + "107186933041851067793408", + "30543636308818952978432" ], - "expectedQty": "1735161288409622906", - "swapFee": "1041721806129451", + "expectedQty": "136297687830910781586072", + "swapFee": "81827709324140953523", "reserves": [ - "1446336320206115290090858", - "836580515328504502897664" + "3813726369195685447290881", + "3535264935184123436787592" ], - "LPTokenSupply": "2249741699735847073207845" + "LPTokenSupply": "7273531933902298157185479" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "300747930752266141696", - "expectedQty": "295932202748062406389", + "type": "redeemMasset", + "inputQty": "1437235348750464135987", + "expectedQtys": [ + "753132544772081958195", + "698142136935811193724" + ], + "redemptionFee": "862341209250278481", "reserves": [ - "1446637068136867556232554", - "836580515328504502897664" - ] + "3812973236650913365332686", + "3534566793047187625593868" + ], + "LPTokenSupply": "7272094784787668618077340" }, { "type": "redeemMasset", - "inputQty": "2669719453933017602457", + "inputQty": "11236766840692571478425", "expectedQtys": [ - "1715437021907020458318", - "992025726016301765626" + "5888232373549768116843", + "5458299685201764528254" ], - "redemptionFee": "1601831672359810561", + "redemptionFee": "6742060104415542887", "reserves": [ - "1444921631114960535774236", - "835588489602488201132038" + "3807085004277363597215843", + "3529108493361985861065614" ], - "LPTokenSupply": "2247368072667829353992833" + "LPTokenSupply": "7260858692152986488153203" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "4032112078457909280768", - "outputIndex": 1, - "expectedQty": "4012265070797202891638", - "swapFee": "3174020015791224471", + "inputIndex": 1, + "inputQty": "5014554664501297283072", + "outputIndex": 0, + "expectedQty": "5017033318629195063158", + "swapFee": "0", "reserves": [ - "1448953743193418445055004", - "831576224531690998240400" + "3802067970958734402152685", + "3534123048026487158348686" ], - "LPTokenSupply": "2247368390069830933115280", + "LPTokenSupply": "7260858692152986488153203", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "3029236564498077188096", - "outputIndex": 1, - "expectedQty": "3014137917918486440583", - "swapFee": "2384508791112497525", + "inputQty": "395810973793582", + "expectedQty": "399771024433200", + "swapFee": "237486584276", "reserves": [ - "1451982979757916522243100", - "828562086613772511799817" + "3802067970558963377719485", + "3534123048026487158348686" ], - "LPTokenSupply": "2247368628520710044365032", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7260858691757199263018048" }, { - "type": "mintMulti", - "inputQtys": [ - "466221033056953472", - "215963048377452064" - ], - "expectedQty": "672127160508064157", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6234090833205908209664", + "expectedQty": "6293389639549585290398", + "swapFee": "3740454499923544925", "reserves": [ - "1451983445978949579196572", - "828562302576820889251881" + "3802067970558963377719485", + "3527829658386937573058288" ], - "LPTokenSupply": "2247369300647870552429189" + "LPTokenSupply": "7254624974969443347162876" }, { - "type": "redeemBassets", - "inputQtys": [ - "70715017108247363584", - "37528752088412397568" + "type": "redeemMasset", + "inputQty": "19665206650115875615539", + "expectedQtys": [ + "10300131505797119185056", + "9557196160828934689310" ], - "expectedQty": "106661595164211569326", - "swapFee": "64035378325522254", + "redemptionFee": "11799123990069525369", "reserves": [ - "1451912730961841331832988", - "828524773824732476854313" + "3791767839053166258534429", + "3518272462226108638368978" ], - "LPTokenSupply": "2247262581420865847889833" + "LPTokenSupply": "7234960948231726478499873" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2535280323858875285504", - "outputIndex": 0, - "expectedQty": "2545952645340955520345", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "4803897865960110948352", + "expectedQty": "4753411590951523023103", "reserves": [ - "1449366778316500376312643", - "831060054148591352139817" - ], - "LPTokenSupply": "2247262581420865847889833", - "hardLimitError": false, - "insufficientLiquidityError": false + "3796571736919126369482781", + "3518272462226108638368978" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "147983392973614579712", - "outputIndex": 1, - "expectedQty": "147248309594769424359", - "swapFee": "116487258118643441", + "type": "redeemMasset", + "inputQty": "213342131181231538176", + "expectedQtys": [ + "111811417423554387329", + "103615329339986514867" + ], + "redemptionFee": "128005278708738922", "reserves": [ - "1449514761709473990892355", - "830912805838996582715458" + "3796459925501702815095452", + "3518168846896768651854111" ], - "LPTokenSupply": "2247262593069591659754177", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7239501030492024640858692" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1392664278979527573504", - "expectedQty": "1408616700609135960165", - "swapFee": "835598567387716544", + "inputIndex": 0, + "inputQty": "41205522103146710564864", + "expectedQty": "41617532169948269380917", + "swapFee": "24723313261888026338", "reserves": [ - "1449514761709473990892355", - "829504189138387446755293" + "3754842393331754545714535", + "3518168846896768651854111" ], - "LPTokenSupply": "2245870012350468870952327" + "LPTokenSupply": "7198297980720204119096461" }, { "type": "redeemBassets", "inputQtys": [ - "6009347613018965409792", - "4041404917025681178624" + "1509238722747245002752", + "1724267066025090220032" ], - "expectedQty": "9906148575561402783807", - "swapFee": "5947257499836743716", + "expectedQty": "3200357541728920108728", + "swapFee": "1921367345444618836", "reserves": [ - "1443505414096455025482563", - "825462784221361765576669" + "3753333154609007300711783", + "3516444579830743561634079" ], - "LPTokenSupply": "2235958511243157615099174" + "LPTokenSupply": "7195095893947864298830779" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 1, + "inputQty": "47706840478756598972416", + "expectedQty": "47226202666417659093811", + "reserves": [ + "3753333154609007300711783", + "3564151420309500160606495" + ] + }, + { + "type": "redeemMasset", + "inputQty": "540236434677682176", + "expectedQtys": [ + "279809525477733418", + "265706100835453276" + ], + "redemptionFee": "324141860806609", + "reserves": [ + "3753332874799481822978365", + "3564151154603399325153219" + ], + "LPTokenSupply": "7242321556410261466323074" + }, + { + "type": "mintMulti", "inputQtys": [ - "13450065896266080256", - "70863723039425667072" + "9206591830493", + "83264250673965" ], - "expectedQty": "83253754827198963811", - "swapFee": "49982242241664376", + "expectedQty": "91533988284997", "reserves": [ - "1443491964030558759402307", - "825391920498322339909597" + "3753332874808688414808858", + "3564151154686663575827184" ], - "LPTokenSupply": "2235875212504312398637423" + "LPTokenSupply": "7242321556501795454608071" }, { "type": "mintMulti", "inputQtys": [ - "151763909533174333440", - "584118758068753924096" + "18750618104631767597056", + "749892083589891096576" ], - "expectedQty": "726487525798204544618", + "expectedQty": "19297102039619894742525", "reserves": [ - "1443643727940091933735747", - "825976039256391093833693" + "3772083492913320182405914", + "3564901046770253466923760" ], - "LPTokenSupply": "2236601700030110603182041" + "LPTokenSupply": "7261618658541415349350596" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "91595514718257902780416", - "expectedQty": "93023768389639648212125", - "swapFee": "54957308830954741668", + "type": "mintMulti", + "inputQtys": [ + "297941151382655991808", + "399256852217833127936" + ], + "expectedQty": "690058775034854087539", "reserves": [ - "1350619959550452285523622", - "825976039256391093833693" + "3772381434064702838397722", + "3565300303622471300051696" ], - "LPTokenSupply": "2145011681042735795875791" + "LPTokenSupply": "7262308717316450203438135" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "149281581613969080320", - "expectedQty": "151595659377730144365", - "swapFee": "89568948968381448", + "type": "mintMulti", + "inputQtys": [ + "55105852124831210799104", + "34454163459868322693120" + ], + "expectedQty": "88636547220756862604861", "reserves": [ - "1350468363891074555379257", - "825976039256391093833693" + "3827487286189534049196826", + "3599754467082339622744816" ], - "LPTokenSupply": "2144862408418016723633615" + "LPTokenSupply": "7350945264537207066042996" }, { "type": "mint", "inputIndex": 0, - "inputQty": "411241309731594736500736", - "expectedQty": "404525101043970363217003", + "inputQty": "16385865649971968081920", + "expectedQty": "16214231673687398294081", "reserves": [ - "1761709673622669291879993", - "825976039256391093833693" + "3843873151839506017278746", + "3599754467082339622744816" ] }, { "type": "redeemBassets", "inputQtys": [ - "803965051509238016", - "2933947298911450624" + "115518394626284528", + "117023799946748992" ], - "expectedQty": "3693446095333506914", - "swapFee": "2217398096057738", + "expectedQty": "230155264013267876", + "swapFee": "138176064046388", "reserves": [ - "1761708869657617782641977", - "825973105309092182383069" + "3843873036321111390994218", + "3599754350058539675995824" ], - "LPTokenSupply": "2549383814020233466891738" + "LPTokenSupply": "7367159265931271993427450" }, { "type": "mint", "inputIndex": 0, - "inputQty": "581784847233872711122944", - "expectedQty": "571658218755669846854389", + "inputQty": "748433655791848652800", + "expectedQty": "740588851550599718372", "reserves": [ - "2343493716891490493764921", - "825973105309092182383069" + "3844621469976903239647018", + "3599754350058539675995824" ] }, { - "type": "redeemMasset", - "inputQty": "2468747243810086092", - "expectedQtys": [ - "1852593556110112201", - "652953511838553371" - ], - "redemptionFee": "1481248346286051", - "reserves": [ - "2343491864297934383652720", - "825972452355580343829698" - ], - "LPTokenSupply": "3121039564176784338288640" - }, - { - "type": "mintMulti", - "inputQtys": [ - "6884040976730973798400", - "14517410812791212736512" - ], - "expectedQty": "21166987264033257528848", + "type": "mint", + "inputIndex": 1, + "inputQty": "1494045401156958289920", + "expectedQty": "1479029462262439616988", "reserves": [ - "2350375905274665357451120", - "840489863168371556566210" - ], - "LPTokenSupply": "3142206551440817595817488" + "3844621469976903239647018", + "3601248395459696634285744" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "214686476747056676864", + "inputQty": "23677439366954213179392", "outputIndex": 0, - "expectedQty": "216919450396506936153", + "expectedQty": "23686710415394631808388", "swapFee": "0", "reserves": [ - "2350158985824268850514967", - "840704549645118613243074" + "3820934759561508607838630", + "3624925834826650847465136" ], - "LPTokenSupply": "3142206551440817595817488", + "LPTokenSupply": "7369378884245085032762810", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "9406715798423815061504", - "expectedQtys": [ - "7031368858941963615994", - "2515278253769818705043" + "type": "redeemBassets", + "inputQtys": [ + "177825430162245910528", + "72616297038595375104" ], - "redemptionFee": "5644029479054289036", + "expectedQty": "247852227903653004692", + "swapFee": "148800617112459278", "reserves": [ - "2343127616965326886898973", - "838189271391348794538031" + "3820756934131346361928102", + "3624853218529612252090032" ], - "LPTokenSupply": "3132800400045341686184887" + "LPTokenSupply": "7369130898096625978544766" }, { - "type": "redeemBassets", - "inputQtys": [ - "1018782069034414208", - "1891929248879139584" + "type": "redeemMasset", + "inputQty": "2183135487827381950873", + "expectedQtys": [ + "1131235885277312046459", + "1073233422161132031159" ], - "expectedQty": "2877809856817292397", - "swapFee": "1727722547618946", + "redemptionFee": "1309881292696429170", "reserves": [ - "2343126598183257852484765", - "838187379462099915398447" + "3819625698246069049881643", + "3623779985107451120058873" ], - "LPTokenSupply": "3132797520680534576035437" + "LPTokenSupply": "7366947893596927866236810" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "31149519851896918016", - "expectedQty": "30590669643613250138", + "type": "mintMulti", + "inputQtys": [ + "6452336194760921317376", + "19041661613751192780800" + ], + "expectedQty": "25234338952310122224146", "reserves": [ - "2343157747703109749402781", - "838187379462099915398447" - ] + "3826078034440829971199019", + "3642821646721202312839673" + ], + "LPTokenSupply": "7392182232549237988460956" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "18723701235359109120", - "outputIndex": 1, - "expectedQty": "18516182558470300817", - "swapFee": "14710224295042645", + "type": "mintMulti", + "inputQtys": [ + "1233467935442517622784", + "443637892295635894272" + ], + "expectedQty": "1659758495862651876380", "reserves": [ - "2343176471404345108511901", - "838168863279541445097630" + "3827311502376272488821803", + "3643265284613497948733945" ], - "LPTokenSupply": "3132828112821200618789839", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7393841991045100640337336" }, { - "type": "redeemBassets", - "inputQtys": [ - "418917586941966208", - "1518448680702300416" + "type": "redeemMasset", + "inputQty": "24103681985327431680", + "expectedQtys": [ + "12469423615508503211", + "11869798982736571819" ], - "expectedQty": "1918114509026023721", - "swapFee": "1151559641200334", + "redemptionFee": "14462209191196459", "reserves": [ - "2343176052486758166545693", - "838167344830860742797214" + "3827299032952656980318592", + "3643253414814515212162126" ], - "LPTokenSupply": "3132826193670287915685816" + "LPTokenSupply": "7393817888809336232025301" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2581189122526841344", - "outputIndex": 1, - "expectedQty": "2552580398052847267", - "swapFee": "2027903837956423", + "type": "redeemMasset", + "inputQty": "8469571195714460057", + "expectedQtys": [ + "4381516124021065814", + "4170819537084774782" + ], + "redemptionFee": "5081742717428676", "reserves": [ - "2343178633675880693387037", - "838164792250462689949947" + "3827294651436532959252778", + "3643249243994978127387344" ], - "LPTokenSupply": "3132826193873078299481458", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7393809419746314789308111" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7887113791172248600576", - "2248408091527680360448" + "4387853401689078890496", + "1249788288208621797376" ], - "expectedQty": "9976638249275697178959", + "expectedQty": "5579253140114590400744", + "swapFee": "3349561621041379067", "reserves": [ - "2351065747467052941987613", - "840413200341990370310395" + "3822906798034843880362282", + "3641999455706769505589968" ], - "LPTokenSupply": "3142802832122353996660417" + "LPTokenSupply": "7388227152000741261666205" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "255680072090251624448", - "expectedQty": "257514101191352374471", - "swapFee": "153408043254150974", + "type": "mint", + "inputIndex": 0, + "inputQty": "1743220495931165114368", + "expectedQty": "1725042451910145681277", "reserves": [ - "2351065747467052941987613", - "840155686240799017935924" - ], - "LPTokenSupply": "3142547167391068070451066" + "3824650018530775045476650", + "3641999455706769505589968" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "1075821776396471238656", + "inputQty": "22263637026155937792", "outputIndex": 0, - "expectedQty": "1087011378410232039915", + "expectedQty": "22270859357223568197", "swapFee": "0", "reserves": [ - "2349978736088642709947698", - "841231508017195489174580" + "3824627747671417821908453", + "3642021719343795661527760" ], - "LPTokenSupply": "3142547167391068070451066", + "LPTokenSupply": "7389952194452651407347482", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "15742546595746787885056", - "expectedQty": "15618805917947686590493", + "inputQty": "11713253042430033920", + "expectedQty": "11594860502879612488", "reserves": [ - "2349978736088642709947698", - "856974054612942277059636" + "3824627747671417821908453", + "3642033432596838091561680" ] }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "10285734710221244416", - "expectedQty": "10466394557847095398", - "swapFee": "6171440826132746", - "reserves": [ - "2349968269694084862852300", - "856974054612942277059636" - ], - "LPTokenSupply": "3158155688191449618410417" - }, { "type": "redeemMasset", - "inputQty": "10682261998262198272", + "inputQty": "177835777645909586739", "expectedQtys": [ - "7943849966685861286", - "2896921376761347112" + "91982528697426824648", + "87591124374075285053" ], - "redemptionFee": "6409357198957318", + "redemptionFee": "106701466587545752", "reserves": [ - "2349960325844118176991014", - "856971157691565515712524" + "3824535765142720395083805", + "3641945841472464016276627" ], - "LPTokenSupply": "3158145006570387076107876" + "LPTokenSupply": "7389785964205655036127806" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "3845916491677825499136", + "expectedQty": "3807036712375452110129", + "reserves": [ + "3824535765142720395083805", + "3645791757964141841775763" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "32859410066225561600", + "inputQty": "162165013330150431916032", "outputIndex": 0, - "expectedQty": "33189643137980258324", + "expectedQty": "162169784040526639281769", "swapFee": "0", "reserves": [ - "2349927136200980196732690", - "857004017101631741274124" + "3662365981102193755802036", + "3807956771294292273691795" ], - "LPTokenSupply": "3158145006570387076107876", + "LPTokenSupply": "7393593000918030488237935", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemBassets", + "inputQtys": [ + "4551557368172981760", + "4932901585700890624" + ], + "expectedQty": "9387016332099880016", + "swapFee": "5635591153952299", + "reserves": [ + "3662361429544825582820276", + "3807951838392706572801171" + ], + "LPTokenSupply": "7393583608829666349800848" + }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "16031172043548032761856", - "expectedQty": "16148445981785135344024", - "swapFee": "9618703226128819657", + "inputIndex": 0, + "inputQty": "128965285635304433123328", + "expectedQty": "130200363281520643876611", + "swapFee": "77379171381182659873", "reserves": [ - "2349927136200980196732690", - "840855571119846605930100" + "3532161066263304938943665", + "3807951838392706572801171" ], - "LPTokenSupply": "3142114796397161656227985" + "LPTokenSupply": "7264626061111500034943507" }, { - "type": "redeemBassets", - "inputQtys": [ - "11406969971232684900352", - "62794877807099425849344" + "type": "redeemMasset", + "inputQty": "2114814643657007274393", + "expectedQtys": [ + "1027635003415242061261", + "1107872638602958307794" ], - "expectedQty": "73540584342612132136149", - "swapFee": "44150841110233419333", + "redemptionFee": "1268888786194204364", "reserves": [ - "2338520166229747511832338", - "778060693312747180080756" + "3531133431259889696882404", + "3806843965754103614493377" ], - "LPTokenSupply": "3068534476297550314014435" + "LPTokenSupply": "7262511373356721647089550" }, { "type": "mint", "inputIndex": 0, - "inputQty": "518671744042937024512", - "expectedQty": "509174505942183049811", + "inputQty": "877309091305514", + "expectedQty": "868511377297039", "reserves": [ - "2339038837973790448856850", - "778060693312747180080756" + "3531133432137198788187918", + "3806843965754103614493377" ] }, { - "type": "swap", + "type": "redeemBassets", + "inputQtys": [ + "4060314309942988", + "3096348099803262" + ], + "expectedQty": "7083365556922812", + "swapFee": "4252570876679", + "reserves": [ + "3531133428076884478244930", + "3806843962657755514690115" + ], + "LPTokenSupply": "7262511367138040153674764" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "3132778561099446878208", - "outputIndex": 0, - "expectedQty": "3169609529815058392730", - "swapFee": "0", + "inputQty": "75232606247004225536", + "expectedQty": "75986998881539503446", + "swapFee": "45139563748202535", "reserves": [ - "2335869228443975390464120", - "781193471873846626958964" + "3531133428076884478244930", + "3806767975658873975186669" ], - "LPTokenSupply": "3069043650803492497064246", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7262436139045749524269481" }, { "type": "mintMulti", "inputQtys": [ - "198089808348002156544", - "570894899481096683520" + "5733969464344040177664", + "2039578303970832547840" ], - "expectedQty": "761480193914578473771", + "expectedQty": "7694579258928575958003", "reserves": [ - "2336067318252323392620664", - "781764366773327723642484" + "3536867397541228518422594", + "3808807553962844807734509" ], - "LPTokenSupply": "3069805130997407075538017" + "LPTokenSupply": "7270130718304678100227484" }, { - "type": "redeemMasset", - "inputQty": "14120463066382027508940", - "expectedQtys": [ - "10738974973919642275212", - "3593795394801248661046" - ], - "redemptionFee": "8472277839829216505", + "type": "mint", + "inputIndex": 1, + "inputQty": "189218792671391350784", + "expectedQty": "187228483373340396645", "reserves": [ - "2325328343278403750345452", - "778170571378526474981438" - ], - "LPTokenSupply": "3055685515158809030950727" + "3536867397541228518422594", + "3808996772755516199085293" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "52132277094717857792", - "expectedQty": "53071321382132199367", - "swapFee": "31279366256830714", + "inputQty": "14683615207054358085632", + "outputIndex": 1, + "expectedQty": "14678697101621425383891", + "swapFee": "11628967728390910851", "reserves": [ - "2325275271957021618146085", - "778170571378526474981438" + "3551551012748282876508226", + "3794318075653894773701402" ], - "LPTokenSupply": "3055633386009650938776006" + "LPTokenSupply": "7270319109684824279715214", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "13698272056829504", - "expectedQty": "13447821869218238", - "reserves": [ - "2325275285655293674975589", - "778170571378526474981438" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "721395109179398029312", - "1004164875035788967936" - ], - "expectedQty": "1705538599337643095115", - "swapFee": "1023937522115855370", + "inputQty": "4233609934107578466304", + "expectedQty": "4274059899481317542365", + "swapFee": "2540165960464547079", "reserves": [ - "2324553890546114276946277", - "777166406503490686013502" + "3547276952848801558965861", + "3794318075653894773701402" ], - "LPTokenSupply": "3053926939314365260629295" + "LPTokenSupply": "7266085753767312747703617" }, { "type": "redeemBassets", "inputQtys": [ - "24384051421999221702656", - "17733344732309069234176" + "14684133632358551126016", + "4626718240547073425408" ], - "expectedQty": "41551860398741069550833", - "swapFee": "24946083889578388763", + "expectedQty": "19114655712453162545099", + "swapFee": "11475678834772761183", "reserves": [ - "2300169839124115055243621", - "759433061771181616779326" + "3532592819216443007839845", + "3789691357413347700275994" ], - "LPTokenSupply": "3012352627440123570528574" + "LPTokenSupply": "7246960769943908289673452" }, { "type": "mintMulti", "inputQtys": [ - "153799379923805579247616", - "18762486756607587778560" + "1685932938688513536", + "8906540224881758208" ], - "expectedQty": "169604092553448121112433", + "expectedQty": "10481929710745883376", "reserves": [ - "2453969219047920634491237", - "778195548527789204557886" + "3532594505149381696353381", + "3789700263953572582034202" ], - "LPTokenSupply": "3181956719993571691641007" + "LPTokenSupply": "7246971251873619035556828" }, { - "type": "redeemMasset", - "inputQty": "1203902123760131072", - "expectedQtys": [ - "927908960121580333", - "294255778190167576" + "type": "redeemBassets", + "inputQtys": [ + "13109945575988648738816", + "120444782694559196905472" ], - "redemptionFee": "722341274256078", + "expectedQty": "132162016547309804622866", + "swapFee": "79344816818476968955", "reserves": [ - "2453968291138960512910904", - "778195254272011014390310" + "3519484559573393047614565", + "3669255481259013385128730" ], - "LPTokenSupply": "3181955516163682058935542" + "LPTokenSupply": "7114737824991172601661901" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "12325481808572901752832", - "118152925586765994000384" + "5160885692263553826816", + "2496965205263207890944" ], - "expectedQty": "129423081577166336303520", + "expectedQty": "7579409103871772921098", + "swapFee": "4550375687735705175", "reserves": [ - "2466293772947533414663736", - "896348179858777008390694" + "3514323673881129493787749", + "3666758516053750177237786" ], - "LPTokenSupply": "3311378597740848395239062" + "LPTokenSupply": "7107154320549181866606144" }, { "type": "redeemMasset", - "inputQty": "1690949609795677375692", + "inputQty": "16633662787753580953", "expectedQtys": [ - "1258652897241899186727", - "457443977636298054955" + "8220027121754222759", + "8576573260708881046" ], - "redemptionFee": "1014569765877406425", + "redemptionFee": "9980197672652148", "reserves": [ - "2465035120050291515477009", - "895890735881140710335739" + "3514315453854007739564990", + "3666749939480489468356740" ], - "LPTokenSupply": "3309687749588029305604012" + "LPTokenSupply": "7107137687884413880290405" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "637313156987801698304", - "expectedQty": "648534050964526238083", - "swapFee": "382387894192681018", - "reserves": [ - "2464386585999326989238926", - "895890735881140710335739" + "type": "redeemMasset", + "inputQty": "8843277866907035762688", + "expectedQtys": [ + "4370172999814182617211", + "4559730562893745450363" ], - "LPTokenSupply": "3309050474669830923173809" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "50006723547332517888", - "expectedQty": "50887141035548267721", - "swapFee": "30004034128399510", + "redemptionFee": "5305966720144221457", "reserves": [ - "2464335698858291440971205", - "895890735881140710335739" + "3509945280854193556947779", + "3662190208917595722906377" ], - "LPTokenSupply": "3309000470946687003495872" + "LPTokenSupply": "7098294940614178858949862" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "104827225089234223104", - "expectedQty": "103992094739565440208", + "type": "redeemMasset", + "inputQty": "444119188379058202214", + "expectedQtys": [ + "219475065771702108155", + "228994862499698818522" + ], + "redemptionFee": "266471513027434921", "reserves": [ - "2464335698858291440971205", - "895995563106229944558843" - ] + "3509725805788421854839624", + "3661961214055096024087855" + ], + "LPTokenSupply": "7097850848072951103491140" }, { "type": "swap", "inputIndex": 1, - "inputQty": "168532542087037517824", + "inputQty": "101037101716771323904", "outputIndex": 0, - "expectedQty": "170234954597618498770", + "expectedQty": "101008654224827461557", "swapFee": "0", "reserves": [ - "2464165463903693822472435", - "896164095648316982076667" + "3509624797134197027378067", + "3662062251156812795411759" ], - "LPTokenSupply": "3309104463041426568936080", + "LPTokenSupply": "7097850848072951103491140", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "349276015336979072", - "expectedQty": "343027743983659992", - "reserves": [ - "2464165813179709159451507", - "896164095648316982076667" - ] - }, { "type": "redeem", "inputIndex": 0, - "inputQty": "376847548446780688433152", - "expectedQty": "383338687640305404175903", - "swapFee": "226108529068068413059", - "reserves": [ - "2080827125539403755275604", - "896164095648316982076667" - ], - "LPTokenSupply": "2932279868475296671004225" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "13514785506389104640", - "27015368854268846080" - ], - "expectedQty": "40029808486204647881", - "swapFee": "24032304474407433", + "inputQty": "40795294779081347825664", + "expectedQty": "41188189958884781124021", + "swapFee": "24477176867448808695", "reserves": [ - "2080813610753897366170964", - "896137080279462713230587" + "3468436607175312246254046", + "3662062251156812795411759" ], - "LPTokenSupply": "2932239817037736439389653" + "LPTokenSupply": "7057058001011556500546345" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "16013467233612577374208", - "expectedQty": "15737445553720964314982", - "reserves": [ - "2096827077987509943545172", - "896137080279462713230587" - ] - }, - { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "510003840951719450116096", - "expectedQty": "500955072487945706958310", + "inputQty": "833884875718409977856", + "outputIndex": 1, + "expectedQty": "833516641717576309260", + "swapFee": "660358859993233357", "reserves": [ - "2606830918939229393661268", - "896137080279462713230587" - ] + "3469270492051030656231902", + "3661228734515095219102499" + ], + "LPTokenSupply": "7057058067047442499869680", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "156083026231256", - "expectedQty": "153238183720617", + "inputQty": "72586080415959153115136", + "expectedQty": "73281354036692901896199", + "swapFee": "43551648249575491869", "reserves": [ - "2606830919095312419892524", - "896137080279462713230587" - ] + "3395989138014337754335703", + "3661228734515095219102499" + ], + "LPTokenSupply": "6984476341796308304303730" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "144424273891919413248", - "outputIndex": 0, - "expectedQty": "146034505556476181484", - "swapFee": "0", + "inputQty": "165480026457754238976", + "expectedQty": "167143275649832676639", + "swapFee": "99288015874652543", "reserves": [ - "2606684884589755943711040", - "896281504553354632643835" + "3395989138014337754335703", + "3661061591239445386425860" ], - "LPTokenSupply": "3448932335232641294383562", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6984310871698652137530008" }, { "type": "redeemBassets", "inputQtys": [ - "119044706479293352378368", - "117316567468282008829952" + "10868453332619", + "4027559108125" ], - "expectedQty": "233390509751137695994430", - "swapFee": "140118376876808702818", + "expectedQty": "14744300263921", + "swapFee": "8851891293", "reserves": [ - "2487640178110462591332672", - "778964937085072623813883" + "3395989138003469301003084", + "3661061591235417827317735" ], - "LPTokenSupply": "3215415718942314470556594" + "LPTokenSupply": "6984310871683899870563922" }, { - "type": "redeemMasset", - "inputQty": "150596246102312930508", - "expectedQtys": [ - "116440462957118389058", - "36461478110730540700" + "type": "redeemBassets", + "inputQtys": [ + "2584672231149781647360", + "1162991733393960861696" ], - "redemptionFee": "90357747661387758", + "expectedQty": "3709422166331483458077", + "swapFee": "2226989493494987067", "reserves": [ - "2487523737647505472943614", - "778928475606961893273183" + "3393404465772319519355724", + "3659898599502023866456039" ], - "LPTokenSupply": "3215265131731986923764861" + "LPTokenSupply": "6980599445227024241617483" }, { "type": "redeemMasset", - "inputQty": "3654595738153531316633", + "inputQty": "135375638031233869414", "expectedQtys": [ - "2825720039167690315611", - "884829265863605256272" + "65769231951718679365", + "70934285122311531283" ], - "redemptionFee": "2192757442892118789", + "redemptionFee": "81225382818740321", "reserves": [ - "2484698017608337782628003", - "778043646341098288016911" + "3393338696540367800676359", + "3659827665216901554924756" ], - "LPTokenSupply": "3211610755269577681660106" + "LPTokenSupply": "6980464077711531289622101" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "31813600436646685179904", - "16838682681860778098688" + "10302166451999318474752", + "7288225924373074149376" ], - "expectedQty": "47957805496994895787239", - "swapFee": "28791958473280906015", + "expectedQty": "17409982209456225179572", "reserves": [ - "2452884417171691097448099", - "761204963659237509918223" + "3403640862992367119151111", + "3667115891141274629074132" ], - "LPTokenSupply": "3163627037009956833057452" + "LPTokenSupply": "6997874059920987514801673" }, { - "type": "redeemMasset", - "inputQty": "24412056050272455308083", - "expectedQtys": [ - "18916270219472384555601", - "5870296490196959653498" - ], - "redemptionFee": "14647233630163473184", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5096107684094850105344", + "expectedQty": "5147308681472048006866", + "swapFee": "3057664610456910063", "reserves": [ - "2433968146952218712892498", - "755334667169040550264725" + "3403640862992367119151111", + "3661968582459802581067266" ], - "LPTokenSupply": "3139216445683047394096687" + "LPTokenSupply": "6992778258003353710387335" }, { - "type": "mintMulti", - "inputQtys": [ - "27225231983116682264576", - "12437644925544551153664" + "type": "redeemMasset", + "inputQty": "6792381454187344", + "expectedQtys": [ + "3304116750994476", + "3554890842473724" ], - "expectedQty": "39079624561100722511690", + "redemptionFee": "4075428872512", "reserves": [ - "2461193378935335395157074", - "767772312094585101418389" + "3403640859688250368156635", + "3661968578904911738593542" ], - "LPTokenSupply": "3178296070244148116608377" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "5130121669497976832", - "expectedQty": "5100299203181456523", - "reserves": [ - "2461193378935335395157074", - "767777442216254599395221" - ] + "LPTokenSupply": "6992778251211379799087242" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "447663866270245440", - "344569208900706688" + "3628395195416463872", + "5522739485784616960" ], - "expectedQty": "781825577925086910", - "swapFee": "469376972938815", + "expectedQty": "9056431461317957294", "reserves": [ - "2461192931271469124911634", - "767777097647045698688533" + "3403644488083445784620507", + "3661974101644397523210502" ], - "LPTokenSupply": "3178300388295334097333055" + "LPTokenSupply": "6992787307642841117044536" }, { "type": "mintMulti", "inputQtys": [ - "192649445607167787008", - "142144565245392109568" + "13015305962831770288128", + "3321009046464427458560" ], - "expectedQty": "330350818349711524700", + "expectedQty": "16170346235234222738151", "reserves": [ - "2461385580717076292698642", - "767919242212291090798101" + "3416659794046277554908635", + "3665295110690861950669062" ], - "LPTokenSupply": "3178630739113683808857755" + "LPTokenSupply": "7008957653878075339782687" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "860762586209948532736", - "expectedQty": "865269404746220620535", - "swapFee": "516457551725969119", + "type": "redeemBassets", + "inputQtys": [ + "59448607675274480", + "14853777397281056" + ], + "expectedQty": "73547401850978176", + "swapFee": "44154934071029", "reserves": [ - "2461385580717076292698642", - "767053972807544870177566" + "3416659734597669879634155", + "3665295095837084553388006" ], - "LPTokenSupply": "3177770028173229032921930" + "LPTokenSupply": "7008957580290934048140583" }, { "type": "redeemMasset", - "inputQty": "54110946910165486796", + "inputQty": "8928705148383230361", "expectedQtys": [ - "41887232417965992570", - "13053528991078846838" + "4349868465446301947", + "4666414800540316153" ], - "redemptionFee": "32466568146099292", + "redemptionFee": "5357223089029938", "reserves": [ - "2461343693484658326706072", - "767040919278553791330728" + "3416655384729204433332208", + "3665290429422284013071853" ], - "LPTokenSupply": "3177715920472975682045063" + "LPTokenSupply": "7008948652121507973813215" }, { "type": "redeemMasset", - "inputQty": "678510788218661004902", + "inputQty": "3906762643285328107929", "expectedQtys": [ - "525234559150006308688", - "163681488348712777433" - ], - "redemptionFee": "407106472931196602", - "reserves": [ - "2460818458925508320397384", - "766877237790205078553295" + "1903288702368885293410", + "2041793824568918881571" ], - "LPTokenSupply": "3177037450395404314159821" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "6781009611237880", - "expectedQty": "6906645576584590", - "swapFee": "4068605766742", + "redemptionFee": "2344057585971196864", "reserves": [ - "2460818452018862743812794", - "766877237790205078553295" + "3414752096026835548038798", + "3663248635597715094190282" ], - "LPTokenSupply": "3177037443614801563498615" + "LPTokenSupply": "7005042123883981242824972" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "58394083578861515177984", - "expectedQty": "58657534215398660248591", - "swapFee": "35036450147316909106", + "inputQty": "3605597926040758910976", + "expectedQty": "3567623987145413100943", "reserves": [ - "2460818452018862743812794", - "708219703574806418304704" - ], - "LPTokenSupply": "3118646863680954780011541" + "3414752096026835548038798", + "3666854233523755853101258" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3826830564728304041984", - "expectedQty": "3810037675337915121551", + "inputIndex": 0, + "inputQty": "8271805674083834880", + "expectedQty": "8188544394939873594", "reserves": [ - "2460818452018862743812794", - "712046534139534722346688" + "3414760367832509631873678", + "3666854233523755853101258" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "46105316070150504", - "31225337955862656" + "type": "redeemMasset", + "inputQty": "34367796388973343722700", + "expectedQtys": [ + "16734736495761307115277", + "17970174406509535450269" ], - "expectedQty": "76306785801769806", - "swapFee": "45811558416111", + "redemptionFee": "20620677833384006233", "reserves": [ - "2460818405913546673662290", - "712046502914196766484032" + "3398025631336748324758401", + "3648884059117246317650989" ], - "LPTokenSupply": "3122456825008276490788785" + "LPTokenSupply": "6974252202094331590477432" }, { "type": "redeemBassets", "inputQtys": [ - "11112353085001025191936", - "30754066769455035187200" + "1830040161771197184", + "1901206116263888640" ], - "expectedQty": "41527445457968426433003", - "swapFee": "24931426130459331458", + "expectedQty": "3692789513607371558", + "swapFee": "2217003910510729", "reserves": [ - "2449706052828545648470354", - "681292436144741731296832" + "3398023801296586553561217", + "3648882157911130053762349" ], - "LPTokenSupply": "3080906941266790650957468" + "LPTokenSupply": "6974248507309514463646216" }, { - "type": "redeemMasset", - "inputQty": "5362685097197020433612", - "expectedQtys": [ - "4261446447757168506768", - "1185159022871564859067" - ], - "redemptionFee": "3217611058318212260", + "type": "mint", + "inputIndex": 0, + "inputQty": "31760965503325384474624", + "expectedQty": "31440681921871046370376", "reserves": [ - "2445444606380788479963586", - "680107277121870166437765" - ], - "LPTokenSupply": "3075544577930699462345082" + "3429784766799911938035841", + "3648882157911130053762349" + ] }, { - "type": "redeemMasset", - "inputQty": "11234117071605620906393", - "expectedQtys": [ - "8927175938409317011128", - "2482753976114408296930" + "type": "redeemBassets", + "inputQtys": [ + "2386351836199726080", + "87216935940689984" ], - "redemptionFee": "6740470242963372543", + "expectedQty": "2448550307992493540", + "swapFee": "1470012192110762", "reserves": [ - "2436517430442379162952458", - "677624523145755758140835" + "3429782380448075738309761", + "3648882070694194113072365" ], - "LPTokenSupply": "3064311134906118137775943" + "LPTokenSupply": "7005686739358066544623365" }, { - "type": "redeemMasset", - "inputQty": "258773754999948181504", - "expectedQtys": [ - "205634621550577576047", - "57189437936903519225" - ], - "redemptionFee": "155264252999968908", + "type": "mint", + "inputIndex": 0, + "inputQty": "6176710333448972140544", + "expectedQty": "6114306789977795857115", "reserves": [ - "2436311795820828585376411", - "677567333707818854621610" - ], - "LPTokenSupply": "3064052376677543489591329" + "3435959090781524710450305", + "3648882070694194113072365" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "91739038650395353153536", + "expectedQty": "90807821858026031632303", + "reserves": [ + "3527698129431920063603841", + "3648882070694194113072365" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "52447611752532901888", - "expectedQty": "52607570622294170505", - "swapFee": "31468567051519741", + "inputIndex": 0, + "inputQty": "6179016518546563792896", + "expectedQty": "6238894432276063680555", + "swapFee": "3707409911127938275", "reserves": [ - "2436311795820828585376411", - "677514726137196560451105" + "3521459234999643999923286", + "3648882070694194113072365" ], - "LPTokenSupply": "3063999932212647661841415" + "LPTokenSupply": "7096430222228514921113714" }, { "type": "mintMulti", "inputQtys": [ - "210219577888963586686976", - "267912257945944796954624" + "18723016961116545024", + "49318387919998328832" ], - "expectedQty": "472573043603628315357138", + "expectedQty": "67336616330129092534", "reserves": [ - "2646531373709792172063387", - "945426984083141357405729" + "3521477958016605116468310", + "3648931389082114111401197" ], - "LPTokenSupply": "3536572975816275977198553" + "LPTokenSupply": "7096497558844845050206248" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6314370361774795915264", - "4592358403851913003008" + "48449294605331543883776", + "74940218248763331837952" ], - "expectedQty": "10756136531159132531976", + "expectedQty": "122115069881405785730102", + "swapFee": "73313029746691486329", "reserves": [ - "2652845744071566967978651", - "950019342486993270408737" + "3473028663411273572584534", + "3573991170833350779563245" ], - "LPTokenSupply": "3547329112347435109730529" + "LPTokenSupply": "6974316507236667242138448" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "43671763373880705024", - "9432089024547166208" + "49819881084374", + "54601740047625" ], - "expectedQty": "52238714783083954001", - "swapFee": "31362046097508877", + "expectedQty": "103344006104902", "reserves": [ - "2652802072308193087273627", - "950009910397968723242529" + "3473028663461093453668908", + "3573991170887952519610870" ], - "LPTokenSupply": "3547276845406810538018537" + "LPTokenSupply": "6974316507340011248243350" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "362203359136269248", - "expectedQty": "355646998557850886", - "reserves": [ - "2652802434511552223542875", - "950009910397968723242529" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "55385144555440898048", - "15285534704153501696" - ], - "expectedQty": "69547204693277685766", + "inputQty": "34336874666965103280128", + "expectedQty": "34670077497954077892213", + "swapFee": "20602124800179061968", "reserves": [ - "2652857819656107664440923", - "950025195932672876744225" + "3438358585963139375776695", + "3573991170887952519610870" ], - "LPTokenSupply": "3547346748258502373555189" + "LPTokenSupply": "6939981692885526162869418" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7015080938416572989440", - "expectedQty": "6888054692344857431805", + "inputIndex": 1, + "inputQty": "572424142847823360", + "expectedQty": "566445459445721392", "reserves": [ - "2659872900594524237430363", - "950025195932672876744225" + "3438358585963139375776695", + "3573991743312095367434230" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "56905461417844064387072", - "outputIndex": 0, - "expectedQty": "57458407682772458311579", - "swapFee": "0", + "inputQty": "1527130112146396413952", + "expectedQty": "1511178952534499298646", "reserves": [ - "2602414492911751779118784", - "1006930657350516941131297" - ], - "LPTokenSupply": "3554234802950847230986994", - "hardLimitError": false, - "insufficientLiquidityError": false + "3438358585963139375776695", + "3575518873424241763848182" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "7088604780653146", - "outputIndex": 0, - "expectedQty": "7152721314475053", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "5583630922454594560", + "21743708179451174912" + ], + "expectedQty": "27043313662038779656", + "swapFee": "16235729635004270", "reserves": [ - "2602414485759030464643731", - "1006930664439121721784443" + "3438353002332216921182135", + "3575497129716062312673270" ], - "LPTokenSupply": "3554234802950847230986994", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6941466380357701397605956" }, { - "type": "redeemMasset", - "inputQty": "5008655306113842937856", - "expectedQtys": [ - "3665142312408718226340", - "1418123132995569314657" + "type": "mintMulti", + "inputQtys": [ + "143806084804256890880", + "101617218071243505664" ], - "redemptionFee": "3005193183668305762", + "expectedQty": "242896531057212608068", "reserves": [ - "2598749343446621746417391", - "1005512541306126152469786" + "3438496808417021178073015", + "3575598746934133556178934" ], - "LPTokenSupply": "3549226448164051754879714" + "LPTokenSupply": "6941709276888758610214024" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "691978315817951690752", - "outputIndex": 1, - "expectedQty": "685221628024403690810", - "swapFee": "543757271392948574", + "type": "redeem", + "inputIndex": 1, + "inputQty": "105482804673640595456", + "expectedQty": "106532327310764535880", + "swapFee": "63289682804184357", "reserves": [ - "2599441321762439698108143", - "1004827319678101748778976" + "3438496808417021178073015", + "3575492214606822791643054" ], - "LPTokenSupply": "3549226502539778894174571", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6941603800413053250037003" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2943563180543861850112", - "expectedQty": "2891300300713343929569", + "type": "redeemBassets", + "inputQtys": [ + "3194846427328704675840", + "1573258172718694793216" + ], + "expectedQty": "4719118231819733925525", + "swapFee": "2833170841596798434", "reserves": [ - "2602384884942983559958255", - "1004827319678101748778976" - ] + "3435301961989692473397175", + "3573918956434104096849838" + ], + "LPTokenSupply": "6936882132327476078992886" }, { - "type": "redeemMasset", - "inputQty": "171362391789070765260", - "expectedQtys": [ - "125469748594547121700", - "48446112606324288242" + "type": "mintMulti", + "inputQtys": [ + "6338975833042919424", + "5143353172226031616" + ], + "expectedQty": "11364009979537003230", + "reserves": [ + "3435308300965525516316599", + "3573924099787276322881454" ], - "redemptionFee": "102817435073442459", + "LPTokenSupply": "6936893496337455615996116" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "832306317962282139648", + "expectedQty": "840588809906351358534", + "swapFee": "499383790777369283", "reserves": [ - "2602259415194389012836555", - "1004778873565495424490734" + "3435308300965525516316599", + "3573083510977369971522920" ], - "LPTokenSupply": "3551946450730446674683125" + "LPTokenSupply": "6936061239957872411593396" }, { "type": "mint", "inputIndex": 1, - "inputQty": "126930063307915", - "expectedQty": "125808007227599", + "inputQty": "2303900713349037686784", + "expectedQty": "2279829527000004088457", "reserves": [ - "2602259415194389012836555", - "1004778873692425487798649" + "3435308300965525516316599", + "3575387411690719009209704" ] }, { "type": "redeemMasset", - "inputQty": "7878199296383505347379", + "inputQty": "32750039287347045990", "expectedQtys": [ - "5768335166729878081116", - "2227257312651245392857" + "16205455570091454959", + "16866253846775101362" ], - "redemptionFee": "4726919577830103208", + "redemptionFee": "19650023572408227", "reserves": [ - "2596491080027659134755439", - "1002551616379774242405792" + "3435292095509955424861640", + "3575370545436872234108342" ], - "LPTokenSupply": "3544068724251828959573665" + "LPTokenSupply": "6938308321410587425876685" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "190404770894478606336", - "outputIndex": 1, - "expectedQty": "188540332580629852998", - "swapFee": "149618721215129549", + "type": "mintMulti", + "inputQtys": [ + "20115575812128428032", + "8702294408230605824" + ], + "expectedQty": "28522023441393127275", "reserves": [ - "2596681484798553613361775", - "1002363076047193612552794" + "3435312211085767553289672", + "3575379247731280464714166" ], - "LPTokenSupply": "3544068739213701081086619", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6938336843434028819003960" }, { "type": "mintMulti", "inputQtys": [ - "110959470614118553092096", - "79749749182218706616320" + "3601098457311854080", + "6183245734839097344" ], - "expectedQty": "188026495685378055812416", + "expectedQty": "9683051011787771059", "reserves": [ - "2707640955412672166453871", - "1082112825229412319169114" + "3435315812184224865143752", + "3575385430977015303811510" ], - "LPTokenSupply": "3732095234899079136899035" + "LPTokenSupply": "6938346526485040606775019" }, { - "type": "redeemMasset", - "inputQty": "2516069757854494910054", - "expectedQtys": [ - "1824317314108508203688", - "729091188748109106051" - ], - "redemptionFee": "1509641854712696946", + "type": "mint", + "inputIndex": 1, + "inputQty": "5224929527389628661760", + "expectedQty": "5170321728858395834845", "reserves": [ - "2705816638098563658250183", - "1081383734040664210063063" - ], - "LPTokenSupply": "3729579316105410113258675" + "3435315812184224865143752", + "3580610360504404932473270" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "42809479504369515757568", - "expectedQty": "43172406134644564630628", - "swapFee": "25685687702621709454", + "type": "mint", + "inputIndex": 0, + "inputQty": "19509343718234476511232", + "expectedQty": "19310513528618418536821", "reserves": [ - "2705816638098563658250183", - "1038211327906019645432435" - ], - "LPTokenSupply": "3686772405169810859672052" + "3454825155902459341654984", + "3580610360504404932473270" + ] }, { "type": "mintMulti", "inputQtys": [ - "10774256762097349165056", - "13467016175156402847744" + "961868261643217010688", + "2926229990467247276032" ], - "expectedQty": "23930908866288360500676", + "expectedQty": "3847747862927923813184", "reserves": [ - "2716590894860661007415239", - "1051678344081176048280179" + "3455787024164102558665672", + "3583536590494872179749302" ], - "LPTokenSupply": "3710703314036099220172728" + "LPTokenSupply": "6966675109605445344959869" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "97661866966089755262976", - "outputIndex": 1, - "expectedQty": "96601534678959915775587", - "swapFee": "76736207926231795807", - "reserves": [ - "2814252761826750762678215", - "955076809402216132504592" - ], - "LPTokenSupply": "3710710987656891843352308", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemMasset", - "inputQty": "9139629785949917727948", - "expectedQtys": [ - "6927458299951046514312", - "2350980999336210835949" - ], - "redemptionFee": "5483777871569950636", + "inputQty": "125743892308168147992576", + "expectedQty": "124453901372582868229682", "reserves": [ - "2807325303526799716163903", - "952725828402879921668643" - ], - "LPTokenSupply": "3701571906248729082619423" + "3581530916472270706658248", + "3583536590494872179749302" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "7831455295404058345472", + "inputQty": "22028651308996222976", "outputIndex": 0, - "expectedQty": "7919920819598501847917", + "expectedQty": "22028568738633871367", "swapFee": "0", "reserves": [ - "2799405382707201214315986", - "960557283698283980014115" + "3581508887903532072786881", + "3583558619146181175972278" ], - "LPTokenSupply": "3701571906248729082619423", + "LPTokenSupply": "7091129010978028213189551", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mintMulti", - "inputQtys": [ - "15306468770948415750144", - "2230166545532608577536" - ], - "expectedQty": "17239520600083650490114", - "reserves": [ - "2814711851478149630066130", - "962787450243816588591651" - ], - "LPTokenSupply": "3718811426848812733109537" - }, { "type": "swap", "inputIndex": 1, - "inputQty": "71667948435274840", + "inputQty": "2754212123532404457472", "outputIndex": 0, - "expectedQty": "72474161377447347", + "expectedQty": "2754187665275288120899", "swapFee": "0", "reserves": [ - "2814711779003988252618783", - "962787521911765023866491" + "3578754700238256784665982", + "3586312831269713580429750" ], - "LPTokenSupply": "3718811426848812733109537", + "LPTokenSupply": "7091129010978028213189551", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 0, - "inputQty": "826980870693411618816", - "outputIndex": 1, - "expectedQty": "817118087989144124343", - "swapFee": "649443670442752662", + "inputIndex": 1, + "inputQty": "27927747035364888576", + "outputIndex": 0, + "expectedQty": "27927355399212607884", + "swapFee": "0", "reserves": [ - "2815538759874681664237599", - "961970403823775879742148" + "3578726772882857572058098", + "3586340759016748945318326" ], - "LPTokenSupply": "3718811491793179777384803", + "LPTokenSupply": "7091129010978028213189551", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "29003636197793824768", - "expectedQtys": [ - "21945684946699188170", - "7498067407640739712" + "type": "mintMulti", + "inputQtys": [ + "29317114295251160", + "34498196331421092" ], - "redemptionFee": "17402181718676294", + "expectedQty": "63156745326474253", "reserves": [ - "2815516814189734965049429", - "961962905756368239002436" + "3578726802199971867309258", + "3586340793514945276739418" ], - "LPTokenSupply": "3718782489897200155427664" + "LPTokenSupply": "7091129074134773539663804" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "335397095424805969068032", - "expectedQty": "329142531697742455295531", + "type": "redeem", + "inputIndex": 1, + "inputQty": "86185574938160006168576", + "expectedQty": "87029048777163954334186", + "swapFee": "51711344962896003701", "reserves": [ - "3150913909614540934117461", - "961962905756368239002436" - ] + "3578726802199971867309258", + "3499311744737781322405232" + ], + "LPTokenSupply": "7004948670331109823095598" }, { - "type": "redeemMasset", - "inputQty": "26201673584416768000", - "expectedQtys": [ - "20383204180288213145", - "6222920360364299059" + "type": "mintMulti", + "inputQtys": [ + "587630198110841856", + "624960016561293568" ], - "redemptionFee": "15721004150650060", + "expectedQty": "1200072403353163390", "reserves": [ - "3150893526410360645904316", - "961956682836007874703377" + "3578727389830169978151114", + "3499312369697797883698800" ], - "LPTokenSupply": "4047898821493458609020201" + "LPTokenSupply": "7004949870403513176258988" }, { - "type": "redeemMasset", - "inputQty": "676388808494371097804", - "expectedQtys": [ - "526186664854602330361", - "160642933324607023755" - ], - "redemptionFee": "405833285096622658", + "type": "mint", + "inputIndex": 0, + "inputQty": "2374915605437834", + "expectedQty": "2350218811379901", "reserves": [ - "3150367339745506043573955", - "961796039902683267679622" - ], - "LPTokenSupply": "4047222473268292747584662" + "3578727392205085583588948", + "3499312369697797883698800" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "131386409446204524986368", - "expectedQty": "133826619682316226081160", - "swapFee": "78831845667722714991", + "inputIndex": 1, + "inputQty": "8666004838083966533632", + "expectedQty": "8750478015413519090527", + "swapFee": "5199602902850379920", "reserves": [ - "3016540720063189817492795", - "961796039902683267679622" + "3578727392205085583588948", + "3490561891682384364608273" ], - "LPTokenSupply": "3915843947006654994869793" + "LPTokenSupply": "6996284387875938306143249" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "482804071464888631296", - "outputIndex": 0, - "expectedQty": "488940306488458208349", - "swapFee": "0", + "inputQty": "12478276016107935498240", + "expectedQty": "12350371347973167596177", "reserves": [ - "3016051779756701359284446", - "962278843974148156310918" - ], - "LPTokenSupply": "3915843947006654994869793", - "hardLimitError": false, - "insufficientLiquidityError": false + "3578727392205085583588948", + "3503040167698492300106513" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "5514612687787150802944", - "outputIndex": 0, - "expectedQty": "5584201336991276681444", - "swapFee": "0", + "inputQty": "104599329171974985351168", + "expectedQty": "103521450091516437753728", "reserves": [ - "3010467578419710082603002", - "967793456661935307113862" - ], - "LPTokenSupply": "3915843947006654994869793", - "hardLimitError": false, - "insufficientLiquidityError": false + "3578727392205085583588948", + "3607639496870467285457681" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "357933413439644631040", + "inputQty": "415603818003506135040", "outputIndex": 1, - "expectedQty": "353217226788131752203", - "swapFee": "280997045519731860", + "expectedQty": "415293146833959638024", + "swapFee": "329058376618750624", "reserves": [ - "3010825511833149727234042", - "967440239435147175361659" + "3579142996023089089723988", + "3607224203723633325819657" ], - "LPTokenSupply": "3915843975106359546842979", + "LPTokenSupply": "7112156242221265573368216", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "354045011711593598156", + "inputQty": "66983582039654284", "expectedQtys": [ - "272055827484147253550", - "87417139866315868452" + "33688794797881351", + "33953110038974394" ], - "redemptionFee": "212427007026956158", + "redemptionFee": "40190149223792", "reserves": [ - "3010553456005665579980492", - "967352822295280859493207" + "3579142962334294291842637", + "3607224169770523286845263" ], - "LPTokenSupply": "3915489951337348655940438" + "LPTokenSupply": "7112156175241702548636311" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "1252718556184163647488", - "expectedQty": "1229310332862617730746", + "inputQty": "476759686726078627840", + "outputIndex": 1, + "expectedQty": "476402517140904547946", + "swapFee": "377478815555750377", + "reserves": [ + "3579619722021020370470477", + "3606747767253382382297317" + ], + "LPTokenSupply": "7112156212989584104211348", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "27103568656305110384640", + "expectedQty": "26822679598500870310697", "reserves": [ - "3011806174561849743627980", - "967352822295280859493207" + "3579619722021020370470477", + "3633851335909687492681957" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "4741086103021783351296", - "5759768222480659906560" - ], - "expectedQty": "10375742539338979551675", - "swapFee": "6229183033423441796", + "type": "redeem", + "inputIndex": 0, + "inputQty": "509026365952736960", + "expectedQty": "514003446793987431", + "swapFee": "305415819571642", "reserves": [ - "3007065088458827960276684", - "961593054072800199586647" + "3579619208017573576483046", + "3633851335909687492681957" ], - "LPTokenSupply": "3906337912866142213021891" + "LPTokenSupply": "7138978383592260603742249" }, { "type": "mintMulti", "inputQtys": [ - "4228922387260680175616", - "48508626306013914464256" + "533772976934719", + "996273899632566" ], - "expectedQty": "52335027633842866225490", + "expectedQty": "1514224143369219", "reserves": [ - "3011294010846088640452300", - "1010101680378814114050903" + "3579619208551346553417765", + "3633851336905961392314523" ], - "LPTokenSupply": "3958672940499985079247381" + "LPTokenSupply": "7138978385106484747111468" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2426032141609992192000", + "expectedQty": "2449750232270805454495", + "swapFee": "1455619284965995315", + "reserves": [ + "3577169458319075747963270", + "3633851336905961392314523" + ], + "LPTokenSupply": "7136552498526803251518999" + }, + { + "type": "redeemBassets", "inputQtys": [ - "21790535894832343154688", - "31494381829993705504768" + "137785368493617024", + "510588993662857088" ], - "expectedQty": "52656546575042501888524", + "expectedQty": "641659646535348473", + "swapFee": "385226924075654", "reserves": [ - "3033084546740920983606988", - "1041596062208807819555671" + "3577169320533707254346246", + "3633850826316967729457435" ], - "LPTokenSupply": "4011329487075027581135905" + "LPTokenSupply": "7136551856520452484502436" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1338078564335948660736", - "expectedQty": "1328185554176999295392", + "inputQty": "3219303814280751611904", + "expectedQty": "3185888821032784986361", "reserves": [ - "3033084546740920983606988", - "1042934140773143768216407" + "3577169320533707254346246", + "3637070130131248481069339" ] }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "28684472791659471437824", - "expectedQty": "28875169092717974092039", - "swapFee": "17210683674995682862", - "reserves": [ - "3033084546740920983606988", - "1014058971680425794124368" - ], - "LPTokenSupply": "3983974920905912608561759" - }, { "type": "redeemBassets", "inputQtys": [ - "2920612321464248", - "111091449235725680" + "3477877125461633024", + "7453677286276259840" ], - "expectedQty": "113180853334429895", - "swapFee": "67949281569599", + "expectedQty": "10818452418762886942", + "swapFee": "6494968432317122", "reserves": [ - "3033084543820308662142740", - "1014058860588976558398688" + "3577165842656581792713222", + "3637062676453962204809499" ], - "LPTokenSupply": "3983974807663904920719223" + "LPTokenSupply": "7139726921043594917516444" }, { - "type": "redeemBassets", - "inputQtys": [ - "10665825353954640", - "1239892252219217" + "type": "redeemMasset", + "inputQty": "3846608900339863552", + "expectedQtys": [ + "1926082348197638484", + "1958333085055951270" ], - "expectedQty": "11699858924288268", - "swapFee": "7024129832472", + "redemptionFee": "2307965340203918", "reserves": [ - "3033084533154483308188100", - "1014058859349084306179471" + "3577163916574233595074738", + "3637060718120877148858229" ], - "LPTokenSupply": "3983974795957724279581729" + "LPTokenSupply": "7139723074665491111673283" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "124008345639675019264", - "expectedQty": "121715731508620201346", + "inputIndex": 1, + "inputQty": "3416904573744530325504", + "expectedQty": "3381428443738958275562", "reserves": [ - "3033208541500122983207364", - "1014058859349084306179471" + "3577163916574233595074738", + "3640477622694621679183733" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "350338640675024423354368", - "expectedQty": "356615725362445368259521", - "swapFee": "210203184405014654012", + "type": "redeemBassets", + "inputQtys": [ + "11029299492920296996864", + "3193036014603790712832" + ], + "expectedQty": "14075947180596703900296", + "swapFee": "8450638691572966119", "reserves": [ - "2676592816137677614947843", - "1014058859349084306179471" + "3566134617081313298077874", + "3637284586680017888470901" ], - "LPTokenSupply": "3633778891332648977894108" + "LPTokenSupply": "7129020950353810950379040" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "53181095505806638448640", - "expectedQty": "53598883812208055200978", - "swapFee": "31908657303483983069", + "type": "redeemMasset", + "inputQty": "1177770000027355814297", + "expectedQtys": [ + "588799828962244051845", + "600547307514995191765" + ], + "redemptionFee": "706662000016413488", "reserves": [ - "2676592816137677614947843", - "960459975536876250978493" + "3565545817252351054026029", + "3636684039372502893279136" ], - "LPTokenSupply": "3580600986692572687843774" + "LPTokenSupply": "7127843251019983596206091" }, { "type": "redeemMasset", - "inputQty": "12767757753084099218636", + "inputQty": "361413977775230771", "expectedQtys": [ - "9538506064712588123915", - "3422766902136436042810" + "180680869169038601", + "184285735425872757" ], - "redemptionFee": "7660654651850459531", + "redemptionFee": "216848386665138", "reserves": [ - "2667054310072965026823928", - "957037208634739814935683" + "3565545636571481884987428", + "3636683855086767467406379" ], - "LPTokenSupply": "3567833995004953773671091" + "LPTokenSupply": "7127842889627690659641833" }, { - "type": "mintMulti", - "inputQtys": [ - "157367233614395", - "1916994847291" - ], - "expectedQty": "156404031227873", + "type": "swap", + "inputIndex": 0, + "inputQty": "3830423748392949645312", + "outputIndex": 1, + "expectedQty": "3827833276328093748535", + "swapFee": "3032884591308470967", "reserves": [ - "2667054310230332260438323", - "957037208636656809782974" + "3569376060319874834632740", + "3632856021810439373657844" ], - "LPTokenSupply": "3567833995161357804898964" + "LPTokenSupply": "7127843192916149790488929", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "3868119575380571455488", - "expectedQty": "3937463817768916131973", - "swapFee": "2320871745228342873", + "inputQty": "343673694427858998394880", + "expectedQty": "340091809866868598212248", "reserves": [ - "2663116846412563344306350", - "957037208636656809782974" - ], - "LPTokenSupply": "3563966107673151756277763" + "3913049754747733833027620", + "3632856021810439373657844" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "18358365232056753979392", - "143219789500149936422912" + "87251236046253965312", + "18430997199466395648" ], - "expectedQty": "159976096971491150043342", + "expectedQty": "104574398673019791659", + "swapFee": "62782308588965254", "reserves": [ - "2681475211644620098285742", - "1100256998136806746205886" + "3912962503511687579062308", + "3632837590813239907262196" ], - "LPTokenSupply": "3723942204644642906321105" + "LPTokenSupply": "7467830371880267638840788" }, { "type": "redeemMasset", - "inputQty": "2986791091257260323635", + "inputQty": "639002644412230348", "expectedQtys": [ - "2149389123123351003674", - "881932607158116296812" + "334621038073787220", + "310665866258733919" ], - "redemptionFee": "1792074654754356194", + "redemptionFee": "383401586647338", "reserves": [ - "2679325822521496747282068", - "1099375065529648629909074" + "3912962168890649505275088", + "3632837280147373648528277" ], - "LPTokenSupply": "3720955592760851121433089" + "LPTokenSupply": "7467829732915963385275173" }, { - "type": "mintMulti", - "inputQtys": [ - "268845488992799195136", - "275337435848502738944" - ], - "expectedQty": "536801892840005123026", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1029412138700028", + "expectedQty": "1039270156201201", + "swapFee": "617647283220", "reserves": [ - "2679594668010489546477204", - "1099650402965497132648018" + "3912962168890649505275088", + "3632837279108103492327076" ], - "LPTokenSupply": "3721492394653691126556115" + "LPTokenSupply": "7467829731886613011303467" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2073388507961714016256", - "expectedQty": "2109277716047678288462", - "swapFee": "1244033104777028409", + "inputIndex": 1, + "inputQty": "167958080054249184559104", + "expectedQty": "169552457218863797531748", + "swapFee": "100774848032549510735", "reserves": [ - "2677485390294441868188742", - "1099650402965497132648018" + "3912962168890649505275088", + "3463284821889239694795328" ], - "LPTokenSupply": "3719419130549039890242699" + "LPTokenSupply": "7299881729317167081695436" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "285784121212415758041088", - "expectedQty": "290662139906782644228466", - "swapFee": "171470472727449454824", + "inputQty": "118257399821406849466368", + "expectedQty": "119462589953792820760547", + "swapFee": "70954439892844109679", "reserves": [ - "2386823250387659223960276", - "1099650402965497132648018" + "3793499578936856684514541", + "3463284821889239694795328" ], - "LPTokenSupply": "3433652156383896877147093" + "LPTokenSupply": "7181631424939749516640035" }, { "type": "mint", "inputIndex": 0, - "inputQty": "31160511722216524", - "expectedQty": "30625067741894327", + "inputQty": "30106676322491728658432", + "expectedQty": "29785902584617291611194", "reserves": [ - "2386823281548170946176800", - "1099650402965497132648018" + "3823606255259348413172973", + "3463284821889239694795328" ] }, { - "type": "mintMulti", - "inputQtys": [ - "12219601823008047497216", - "6060210664766612439040" - ], - "expectedQty": "18004764535170862946938", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3858312271709473341440", + "expectedQty": "3895000836429131600286", + "swapFee": "2314987363025684004", "reserves": [ - "2399042883371178993674016", - "1105710613630263745087058" + "3823606255259348413172973", + "3459389821052810563195042" ], - "LPTokenSupply": "3451656951544135481988358" + "LPTokenSupply": "7207559246751393637478189" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "21248936063149944078336", - "expectedQty": "20883475220982209855863", + "inputQty": "22997217490925286064128", + "expectedQty": "23231091866449100284638", + "swapFee": "13798330494555171638", "reserves": [ - "2420291819434328937752352", - "1105710613630263745087058" - ] + "3800375163392899312888335", + "3459389821052810563195042" + ], + "LPTokenSupply": "7184563409093517806931224" }, { "type": "redeemBassets", "inputQtys": [ - "256785061443376447488", - "9714342338549311488" + "39349236096072014626816", + "31263738262602045718528" ], - "expectedQty": "261974990032674343379", - "swapFee": "157279361636586557", + "expectedQty": "69880053247753565938183", + "swapFee": "41953203870974724397", "reserves": [ - "2420035034372885561304864", - "1105700899287925195775570" + "3761025927296827298261519", + "3428126082790208517476514" ], - "LPTokenSupply": "3472278310223659544572939" + "LPTokenSupply": "7114645597962280363741082" }, { - "type": "redeemBassets", - "inputQtys": [ - "388099580797855006720", - "44923610955516002304" - ], - "expectedQty": "425862610287615787597", - "swapFee": "255670968753821765", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1571762683961233375232", + "expectedQty": "1587734925176116263565", + "swapFee": "943057610376740025", "reserves": [ - "2419646934792087706298144", - "1105655975676969679773266" + "3759438192371651181997954", + "3428126082790208517476514" ], - "LPTokenSupply": "3471852217509500050345752" + "LPTokenSupply": "7113073929584080168039852" }, { "type": "redeemMasset", - "inputQty": "10710824935624956654387", + "inputQty": "4696547403059059097", "expectedQtys": [ - "7460244057946848958137", - "3408953308052070049353" + "2480753894338943003", + "2262129790409383675" ], - "redemptionFee": "6426494961374973992", + "redemptionFee": "2817928441835435", "reserves": [ - "2412186690734140857340007", - "1102247022368917609723913" + "3759435711617756843054951", + "3428123820660418108092839" ], - "LPTokenSupply": "3461142035223371231188764" + "LPTokenSupply": "7113069233318469953164298" }, { "type": "mintMulti", "inputQtys": [ - "145144563707138293760", - "128804219072006373376" + "93333019232501814525952", + "810064759343703654400" ], - "expectedQty": "270075465285175192442", + "expectedQty": "93137099699205331964356", "reserves": [ - "2412331835297847995633767", - "1102375826587989616097289" + "3852768730850258657580903", + "3428933885419761811747239" ], - "LPTokenSupply": "3461412110688656406381206" + "LPTokenSupply": "7206206333017675285128654" }, { - "type": "mintMulti", - "inputQtys": [ - "8138224295508219789312", - "2183098643390992220160" - ], - "expectedQty": "10157904895819803827864", + "type": "redeem", + "inputIndex": 1, + "inputQty": "50649270593909", + "expectedQty": "51128196325175", + "swapFee": "30389562356", "reserves": [ - "2420470059593356215423079", - "1104558925231380608317449" + "3852768730850258657580903", + "3428933885368633615422064" ], - "LPTokenSupply": "3471570015584476210209070" + "LPTokenSupply": "7206206332967029053490980" }, { "type": "redeemMasset", - "inputQty": "62778829631061032960", + "inputQty": "488300439217372057", "expectedQtys": [ - "43744791045566364150", - "19962527191879309249" + "260911191187738449", + "232208909237615403" ], - "redemptionFee": "37667297778636619", + "redemptionFee": "292980263530423", "reserves": [ - "2420426314802310649058929", - "1104538962704188729008200" + "3852768469939067469842454", + "3428933653159724377806661" ], - "LPTokenSupply": "3471507240521574927039771" + "LPTokenSupply": "7206205844695887862471965" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3967162595298959163392", - "expectedQty": "3898826607837286237129", + "type": "redeemMasset", + "inputQty": "17436036234696540867788", + "expectedQtys": [ + "9316512168297593633486", + "8291622596374944425896" + ], + "redemptionFee": "10461621740817924520", "reserves": [ - "2424393477397609608222321", - "1104538962704188729008200" - ] + "3843451957770769876208968", + "3420642030563349433380765" + ], + "LPTokenSupply": "7188770854623365403396629" }, { "type": "redeemBassets", "inputQtys": [ - "97936685291028528", - "84037837911567040" + "687983170456091230208", + "889224322903933583360" ], - "expectedQty": "179392654796345798", - "swapFee": "107700213005610", - "reserves": [ - "2424393379460924317193793", - "1104538878666350817441160" - ], - "LPTokenSupply": "3475405887639827225226052" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "7576400143334489718784", - "expectedQty": "7653090726275566718783", - "swapFee": "4545840086000693831", + "expectedQty": "1560965634530005569410", + "swapFee": "937141665717433801", "reserves": [ - "2424393379460924317193793", - "1096885787940075250722377" + "3842763974600313784978760", + "3419752806240445499797405" ], - "LPTokenSupply": "3467829942080501335576651" + "LPTokenSupply": "7187209045561336252136797" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1723922509888279805952", - "expectedQty": "1741309655668194008238", - "swapFee": "1034353505932967883", + "type": "swap", + "inputIndex": 0, + "inputQty": "27395368150497981628416", + "outputIndex": 1, + "expectedQty": "27350803616667513225163", + "swapFee": "21680859500825169409", "reserves": [ - "2424393379460924317193793", - "1095144478284407056714139" + "3870159342750811766607176", + "3392402002623777986572242" ], - "LPTokenSupply": "3466106123005963649067487" + "LPTokenSupply": "7187211213647286334653737", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "793155572661010038784", - "910472641293901103104" + "type": "redeemMasset", + "inputQty": "66037643635978967449", + "expectedQtys": [ + "35538521156013015775", + "31151417722830597927" ], - "expectedQty": "1680310887959526558158", - "swapFee": "1008791807860432194", + "redemptionFee": "39622586181587380", "reserves": [ - "2423600223888263307155009", - "1094234005643113155611035" + "3870123804229655753591401", + "3392370851206055155974315" ], - "LPTokenSupply": "3464424904205377048120353" + "LPTokenSupply": "7187145179965908973845026" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "4018897217558510592", - "expectedQty": "3976424035556228744", + "inputQty": "71636095637444743921664", + "expectedQty": "72307012182996571421779", + "swapFee": "42981657382466846352", "reserves": [ - "2423600223888263307155009", - "1094238024540330714121627" - ] + "3870123804229655753591401", + "3320063839023058584552536" + ], + "LPTokenSupply": "7115513382494202476607997" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "884872677933257719808", - "expectedQty": "893784435061809724862", - "swapFee": "530923606759954631", + "inputQty": "236556531713374901239808", + "outputIndex": 0, + "expectedQty": "236693968293143402082548", + "swapFee": "0", "reserves": [ - "2423600223888263307155009", - "1093344240105268904396765" + "3633429835936512351508853", + "3556620370736433485792344" ], - "LPTokenSupply": "3463544061043840022624752" + "LPTokenSupply": "7115513382494202476607997", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "146280066950898630656", - "1110207435943507394560" + "240336758855005044736", + "153596193763969466368" ], - "expectedQty": "1242240381223316247904", - "swapFee": "745791703756243494", + "expectedQty": "389843406075237973139", + "swapFee": "234046471528059619", "reserves": [ - "2423453943821312408524353", - "1092234032669325397002205" + "3633189499177657346464117", + "3556466774542669516325976" ], - "LPTokenSupply": "3462301149450083325757702" + "LPTokenSupply": "7115123328446302863381199" }, { - "type": "mintMulti", - "inputQtys": [ - "40904541154398468833280", - "39179833339639509286912" - ], - "expectedQty": "78962696005710539011812", + "type": "swap", + "inputIndex": 0, + "inputQty": "1793561473819947565056", + "outputIndex": 1, + "expectedQty": "1791867360779810255929", + "swapFee": "1419874090239472307", "reserves": [ - "2464358484975710877357633", - "1131413866008964906289117" + "3634983060651477294029173", + "3554674907181889706070047" ], - "LPTokenSupply": "3541263845455793864769514" + "LPTokenSupply": "7115123470433711887328429", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2347891578034959679488", - "609551357317588975616" + "type": "redeemMasset", + "inputQty": "11540583019053016678", + "expectedQtys": [ + "5892329776741547860", + "5762149768717199137" ], - "expectedQty": "2910528799525191580377", - "swapFee": "1747365699134595705", + "redemptionFee": "6924349811431810", "reserves": [ - "2462010593397675917678145", - "1130804314651647317313501" + "3634977168321700552481313", + "3554669145032120988870910" ], - "LPTokenSupply": "3538351744027139452053001" + "LPTokenSupply": "7115111930543127815454932" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "571803889449833216", + "expectedQty": "565918390248463505", + "reserves": [ + "3634977168321700552481313", + "3554669716836010438704126" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "57038149983082647650304", - "expectedQty": "56054564621312416033711", + "inputQty": "18378208741122746875904", + "expectedQty": "18186202625587653702875", "reserves": [ - "2519048743380758565328449", - "1130804314651647317313501" + "3653355377062823299357217", + "3554669716836010438704126" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1663800197916540010496", - "2678119664785555980288" - ], - "expectedQty": "4284969116480524786322", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3774961880580769185792", + "expectedQty": "3812553166114019247365", + "swapFee": "2264977128348461511", "reserves": [ - "2520712543578675105338945", - "1133482434316432873293789" + "3649542823896709280109852", + "3554669716836010438704126" ], - "LPTokenSupply": "3598691277764932392873034" + "LPTokenSupply": "7129523963704237783281671" }, { - "type": "mintMulti", - "inputQtys": [ - "15678311852807892762624", - "20584364499868005171200" + "type": "redeemMasset", + "inputQty": "25899968411240631500", + "expectedQtys": [ + "13250019287262601800", + "12905573267841850524" ], - "expectedQty": "35774191130988313064513", + "redemptionFee": "15539981046744378", "reserves": [ - "2536390855431482998101569", - "1154066798816300878464989" + "3649529573877422017508052", + "3554656811262742596853602" ], - "LPTokenSupply": "3634465468895920705937547" + "LPTokenSupply": "7129498065289824647324608" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "84449463350327884382208", - "expectedQty": "83526396958227076293309", + "type": "swap", + "inputIndex": 0, + "inputQty": "3898843688922046267392", + "outputIndex": 1, + "expectedQty": "3895016984175420020248", + "swapFee": "3086467271368783537", "reserves": [ - "2536390855431482998101569", - "1238516262166628762847197" - ] + "3653428417566344063775444", + "3550761794278567176833354" + ], + "LPTokenSupply": "7129498373936551784202961", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "390057591993239519363072", - "119458834907075417473024" + "type": "redeemMasset", + "inputQty": "17825546474337230808678", + "expectedQtys": [ + "9129013013187288845133", + "8872474542224598208711" ], - "expectedQty": "501545434839381462352653", + "redemptionFee": "10695327884602338485", "reserves": [ - "2926448447424722517464641", - "1357975097073704180320221" + "3644299404553156774930311", + "3541889319736342578624643" ], - "LPTokenSupply": "4219537300693529244583509" + "LPTokenSupply": "7111673896995003013628131" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4573810416444429312", - "expectedQty": "4650874810653481631", - "swapFee": "2744286249866657", + "type": "mintMulti", + "inputQtys": [ + "1096653286868132", + "1216833285500350" + ], + "expectedQty": "2289511941778007", "reserves": [ - "2926443796549911863983010", - "1357975097073704180320221" + "3644299405649810061798443", + "3541889320953175864124993" ], - "LPTokenSupply": "4219532727157541425140862" + "LPTokenSupply": "7111673899284514955406138" }, { - "type": "mintMulti", - "inputQtys": [ - "221289277347197358178304", - "158198317032831973326848" + "type": "redeemMasset", + "inputQty": "21802819683512224632012", + "expectedQtys": [ + "11165912601871994646770", + "10852134306515653088927" ], - "expectedQty": "373972999480661297638929", + "redemptionFee": "13081691810107334779", "reserves": [ - "3147733073897109222161314", - "1516173414106536153647069" + "3633133493047938067151673", + "3531037186646660211036066" ], - "LPTokenSupply": "4593505726638202722779791" + "LPTokenSupply": "7089872387770183741507603" }, { "type": "redeemMasset", - "inputQty": "12445913852441368985", + "inputQty": "3935365839987", "expectedQtys": [ - "8523535432284604751", - "4105544375344769891" + "2015428492004", + "1958792036106" ], - "redemptionFee": "7467548311464821", + "redemptionFee": "2361219503", "reserves": [ - "3147724550361676937556563", - "1516169308562160808877178" + "3633133493045922638659669", + "3531037186644701418999960" ], - "LPTokenSupply": "4593493281471105112557288" + "LPTokenSupply": "7089872387766248611789566" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "133225251225559692738560", - "expectedQty": "134588909984776146096685", - "swapFee": "79935150735335815643", + "type": "mint", + "inputIndex": 0, + "inputQty": "451823132579413950464", + "expectedQty": "447095652407987222747", "reserves": [ - "3147724550361676937556563", - "1381580398577384662780493" - ], - "LPTokenSupply": "4460276023760618953400292" + "3633585316178502052610133", + "3531037186644701418999960" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "208753494326789312", - "97144865324381824" - ], - "expectedQty": "301263399933030735", + "type": "mint", + "inputIndex": 1, + "inputQty": "23882821463830282895360", + "expectedQty": "23637142542802108226686", "reserves": [ - "3147724759115171264345875", - "1381580495722249987162317" - ], - "LPTokenSupply": "4460276325024018886431027" + "3633585316178502052610133", + "3554920008108531701895320" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "3083920761659118845952", - "199091417830811303936" - ], - "expectedQty": "3227316530921668647046", - "swapFee": "1937552450023014997", + "type": "mint", + "inputIndex": 1, + "inputQty": "6758331869843204", + "expectedQty": "6688734432146878", "reserves": [ - "3144640838353512145499923", - "1381381404304419175858381" - ], - "LPTokenSupply": "4457047264695892197070482" + "3633585316178502052610133", + "3554920014866863571738524" + ] }, { "type": "redeemMasset", - "inputQty": "2805637916621049", + "inputQty": "135418751688406681", "expectedQtys": [ - "1978311965847885", - "869035130563922" + "69126138900064884", + "67629592631872996" ], - "redemptionFee": "1683382749972", + "redemptionFee": "81251251013044", "reserves": [ - "3144640836375200179652038", - "1381381403435384045294459" + "3633585247052363152545249", + "3554919947237270939865528" ], - "LPTokenSupply": "4457047261890422618724430" + "LPTokenSupply": "7113956497239566576080500" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "48057885765029741985792", - "outputIndex": 1, - "expectedQty": "47661092149811602556228", - "swapFee": "37776498929490473707", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3732496261140223885312", + "expectedQty": "3769064034083913130263", + "swapFee": "2239497756684134331", "reserves": [ - "3192698722140229921637830", - "1333720311285572442738231" + "3633585247052363152545249", + "3551150883203187026735265" ], - "LPTokenSupply": "4457051039540315567771800", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7110224224928202020608621" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "6005367021830595936256", + "expectedQty": "5943526242243061803738", + "reserves": [ + "3633585247052363152545249", + "3557156250225017622671521" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "27125352241922498887680", - "expectedQty": "27594356853117860346889", - "swapFee": "16275211345153499332", + "inputIndex": 1, + "inputQty": "966451977748957495296", + "expectedQty": "975924056310102159753", + "swapFee": "579871186649374497", "reserves": [ - "3165104365287112061290941", - "1333720311285572442738231" + "3633585247052363152545249", + "3556180326168707520511768" ], - "LPTokenSupply": "4429927314819527584234053" + "LPTokenSupply": "7115201357179814789854512" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "26731345301240725635072", + "expectedQty": "26455692842335005201838", + "reserves": [ + "3633585247052363152545249", + "3582911671469948246146840" + ] }, { "type": "redeemBassets", "inputQtys": [ - "11595044653548464", - "11611162131468538" + "498001042135538008064", + "9789834569735448576" ], - "expectedQty": "22886834655246413", - "swapFee": "13740345000147", + "expectedQty": "502502548787246965367", + "swapFee": "301682538795625554", "reserves": [ - "3165104353692067407742477", - "1333720299674410311269693" + "3633087246010227614537185", + "3582901881635378510698264" ], - "LPTokenSupply": "4429927291920326618487506" + "LPTokenSupply": "7141154275959077632027983" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "233092047519716778967040", - "outputIndex": 0, - "expectedQty": "234540153341036936763770", - "swapFee": "0", - "reserves": [ - "2930564200351030470978707", - "1566812347194127090236733" + "type": "redeemBassets", + "inputQtys": [ + "17548583706211076096", + "9258821236018608128" ], - "LPTokenSupply": "4429927291920326618487506", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "241356059322213522735104", - "outputIndex": 1, - "expectedQty": "239663461556534845585536", - "swapFee": "189839063431382850211", + "expectedQty": "26529024055563858227", + "swapFee": "15926970615707739", "reserves": [ - "3171920259673243993713811", - "1327148885637592244651197" + "3633069697426521403461089", + "3582892622814142492090136" ], - "LPTokenSupply": "4429946275826669756772527", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7141127732600748514032789" }, { "type": "mint", "inputIndex": 1, - "inputQty": "522040995073535588171776", - "expectedQty": "516105883939130563517576", + "inputQty": "652310017364413251584", + "expectedQty": "645574846504498586181", "reserves": [ - "3171920259673243993713811", - "1849189880711127832822973" + "3633069697426521403461089", + "3583544932831506905341720" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "772838257501043328", - "expectedQty": "782106461329597339", - "swapFee": "463702954500625", + "inputIndex": 0, + "inputQty": "285586766864903840", + "expectedQty": "288419409281286966", + "swapFee": "171352060118942", "reserves": [ - "3171920259673243993713811", - "1849189098604666503225634" + "3633069409007112122174123", + "3583544932831506905341720" ], - "LPTokenSupply": "4946051386973913114696837" + "LPTokenSupply": "7141773021877621353727024" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "784807434488763406876672", - "expectedQty": "771615733760669333980392", + "type": "redeem", + "inputIndex": 1, + "inputQty": "26692711984880328704", + "expectedQty": "26955017574000642673", + "swapFee": "16015627190928197", "reserves": [ - "3956727694162007400590483", - "1849189098604666503225634" - ] + "3633069409007112122174123", + "3583517977813932904699047" + ], + "LPTokenSupply": "7141746330767199192491139" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "26718495455074509127680", - "expectedQty": "27169351367067840566452", - "swapFee": "16031097273044705476", + "type": "redeemMasset", + "inputQty": "22982250101890613248000", + "expectedQtys": [ + "11684258760348328014157", + "11524897163079827197439" + ], + "redemptionFee": "13789350061134367948", "reserves": [ - "3929558342794939560024031", - "1849189098604666503225634" + "3621385150246763794159966", + "3571993080650853077501608" ], - "LPTokenSupply": "5690950228389235244020096" + "LPTokenSupply": "7118765459600314692679933" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "20955600425985362624512", - "18973241102458966507520" + "756121500141548601344", + "585280902218757373952" ], - "expectedQty": "39360366658181260771353", + "expectedQty": "1327481545218826342799", + "swapFee": "796967107395733245", "reserves": [ - "3950513943220924922648543", - "1868162339707125469733154" + "3620629028746622245558622", + "3571407799748634320127656" ], - "LPTokenSupply": "5730310595047416504791449" + "LPTokenSupply": "7117437260784699210177212" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "204406415080167276544", + "expectedQty": "202277079623524176503", + "reserves": [ + "3620833435161702412835166", + "3571407799748634320127656" + ] }, { "type": "redeemMasset", - "inputQty": "78325412364410368819", + "inputQty": "88371256177798925516", "expectedQtys": [ - "53965657383599545135", - "25519871644695638436" + "44928604604824088955", + "44315313529556287517" ], - "redemptionFee": "46995247418646221", + "redemptionFee": "53022753706679355", "reserves": [ - "3950459977563541323103408", - "1868136819835480774094718" + "3620788506557097588746211", + "3571363484435104763840139" ], - "LPTokenSupply": "5730232274334576836287252" + "LPTokenSupply": "7117551171910420306096134" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "947792087531993825280", - "expectedQty": "963756273844889732219", - "swapFee": "568675252519196295", + "inputQty": "71748081724941992", + "expectedQty": "72459866433476659", + "swapFee": "43048849034965", "reserves": [ - "3949496221289696433371189", - "1868136819835480774094718" + "3620788434097231155269552", + "3571363484435104763840139" ], - "LPTokenSupply": "5729284539114570094381601" + "LPTokenSupply": "7117551100166643466057638" }, { - "type": "redeemMasset", - "inputQty": "189556415247706934476", - "expectedQtys": [ - "130592772836907251440", - "61771211737321566035" - ], - "redemptionFee": "113733849148624160", + "type": "mint", + "inputIndex": 0, + "inputQty": "349738860739693314048", + "expectedQty": "346095483727951625728", "reserves": [ - "3949365628516859526119749", - "1868075048623743452528683" - ], - "LPTokenSupply": "5729094994072707302309541" + "3621138172957970848583600", + "3571363484435104763840139" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "332586229891837477257216", - "outputIndex": 0, - "expectedQty": "334200735618924465375646", - "swapFee": "0", + "inputQty": "26714343050198581772288", + "expectedQty": "26976560042132842280537", + "swapFee": "16028605830119149063", "reserves": [ - "3615164892897935060744103", - "2200661278515580929785899" + "3621138172957970848583600", + "3544386924392971921559602" ], - "LPTokenSupply": "5729094994072707302309541", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7091184455460755847825984" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3380685117993524736", - "expectedQty": "3325685994336816129", + "inputIndex": 1, + "inputQty": "8091974358276572", + "expectedQty": "8008596287120161", "reserves": [ - "3615168273583053054268839", - "2200661278515580929785899" + "3621138172957970848583600", + "3544386932484946279836174" ] }, + { + "type": "mintMulti", + "inputQtys": [ + "27371038294474974298112", + "39290236637481491496960" + ], + "expectedQty": "65970494527051183764343", + "reserves": [ + "3648509211252445822881712", + "3583677169122427771333134" + ], + "LPTokenSupply": "7157154957996403318710488" + }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1001126143038700800", - "expectedQty": "1017071836335896226", - "swapFee": "600675685823220", + "inputQty": "105922435038211653632", + "expectedQty": "106974933795771613137", + "swapFee": "63553461022926992", "reserves": [ - "3615167256511216718372613", - "2200661278515580929785899" + "3648402236318650051268575", + "3583677169122427771333134" ], - "LPTokenSupply": "5729097318692626169007192" + "LPTokenSupply": "7157049041916711209349555" }, { "type": "mintMulti", "inputQtys": [ - "76853653849940254785536", - "11546076517259118903296" + "27632324861744352591872", + "18877246452819732463616" ], - "expectedQty": "87001447706058708315604", + "expectedQty": "46026529822190906761990", "reserves": [ - "3692020910361156973158149", - "2212207355032840048689195" + "3676034561180394403860447", + "3602554415575247503796750" ], - "LPTokenSupply": "5816098766398684877322796" + "LPTokenSupply": "7203075571738902116111545" }, { - "type": "redeemMasset", - "inputQty": "243728904255333518540", - "expectedQtys": [ - "154624660922045137531", - "92648936846824739864" + "type": "redeemBassets", + "inputQtys": [ + "611048634953706624", + "100596963270383104" ], - "redemptionFee": "146237342553200111", + "expectedQty": "704229161919378029", + "swapFee": "422791171854739", "reserves": [ - "3691866285700234928020618", - "2212114706095993223949331" + "3676033950131759450153823", + "3602554314978284233413646" ], - "LPTokenSupply": "5815855052118163799124267" + "LPTokenSupply": "7203074867129228142064249" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3361999646929091072", - "expectedQty": "3307129711457650866", - "reserves": [ - "3691869647699881857111690", - "2212114706095993223949331" - ] - }, - { - "type": "redeemMasset", - "inputQty": "31716018259233465958", - "expectedQtys": [ - "20121045439146237526", - "12056238373879716136" + "type": "redeemBassets", + "inputQtys": [ + "8600598271460365041664", + "14415490678470001819648" ], - "redemptionFee": "19029610955540079", + "expectedQty": "22777719920432058319365", + "swapFee": "13674836854371858106", "reserves": [ - "3691849526654442710874164", - "2212102649857619344233195" + "3667433351860299085112159", + "3588138824299814231593998" ], - "LPTokenSupply": "5815826645132577118863182" + "LPTokenSupply": "7180284839855627149072587" }, { - "type": "redeemMasset", - "inputQty": "1755230897092585", - "expectedQtys": [ - "1113540812466723", - "667217491990920" + "type": "mintMulti", + "inputQtys": [ + "5963555758482056", + "5013224314494428" ], - "redemptionFee": "1053138538255", + "expectedQty": "10862820189225209", "reserves": [ - "3691849525540901898407441", - "2212102649190401852242275" + "3667433357823854843594215", + "3588138829313038546088426" ], - "LPTokenSupply": "5815826643377451535624422" + "LPTokenSupply": "7180284850718447338297796" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3407291774303940378624", - "expectedQty": "3351677439698116326432", + "type": "redeemBassets", + "inputQtys": [ + "26748224869630904107008", + "2801282000131152936960" + ], + "expectedQty": "29241447616319327309087", + "swapFee": "17555401810878123259", "reserves": [ - "3695256817315205838786065", - "2212102649190401852242275" - ] + "3640685132954223939487207", + "3585337547312907393151466" + ], + "LPTokenSupply": "7151027603240498220677774" }, { "type": "mintMulti", "inputQtys": [ - "93369023613369968", - "42043344619642008" + "7470129991742402854912", + "2311348649469056122880" ], - "expectedQty": "133358715435259438", + "expectedQty": "9679694893449349580121", "reserves": [ - "3695256910684229452156033", - "2212102691233746471884283" + "3648155262945966342342119", + "3587648895962376449274346" ], - "LPTokenSupply": "5819178454175865087210292" + "LPTokenSupply": "7160707298133947570257895" }, { "type": "redeemMasset", - "inputQty": "221525417255409418240", + "inputQty": "31308112301518290944", "expectedQtys": [ - "140587228841690298469", - "84160153080185387036" + "15940928710022053343", + "15676540926863679464" ], - "redemptionFee": "132915250353245650", + "redemptionFee": "18784867380910974", "reserves": [ - "3695116323455387761857564", - "2212018531080666286497247" + "3648139322017256320288776", + "3587633219421449585594882" ], - "LPTokenSupply": "5818956942050134713116617" + "LPTokenSupply": "7160675991900132790058048" }, { - "type": "mintMulti", - "inputQtys": [ - "12460538339068727001088", - "17937536422870626861056" - ], - "expectedQty": "29968616914182478864936", + "type": "redeem", + "inputIndex": 1, + "inputQty": "9782578020948570537984", + "expectedQty": "9878643081949449051743", + "swapFee": "5869546812569142322", "reserves": [ - "3707576861794456488858652", - "2229956067503536913358303" + "3648139322017256320288776", + "3577754576339500136543139" ], - "LPTokenSupply": "5848925558964317191981553" + "LPTokenSupply": "7150894000833865476434296" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "341100667554856832", + "expectedQty": "337538705861760547", + "reserves": [ + "3648139663117923875145608", + "3577754576339500136543139" + ] }, { "type": "redeemMasset", - "inputQty": "6791172200912503", + "inputQty": "5000348043999709593", "expectedQtys": [ - "4302274902823481", - "2587642652127243" + "2549474511189789492", + "2500286431434063231" ], - "redemptionFee": "4074703320547", + "redemptionFee": "3000208826399825", "reserves": [ - "3707576857492181586035171", - "2229956064915894261231060" + "3648137113643412685356116", + "3577752076053068702479908" ], - "LPTokenSupply": "5848925552173552461401104" + "LPTokenSupply": "7150889338324548221125232" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "890208014879364096", - "expectedQty": "904423371481601945", - "swapFee": "534124808927618", + "inputQty": "236317484641271540613120", + "expectedQty": "238641520014596822293908", + "swapFee": "141790490784762924367", "reserves": [ - "3707575953068810104433226", - "2229956064915894261231060" + "3409495593628815863062208", + "3577752076053068702479908" ], - "LPTokenSupply": "5848924662018950062929769" + "LPTokenSupply": "6914586032732355156804548" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "48993075987913554001920", - "expectedQty": "48371852718969074644711", + "type": "redeemBassets", + "inputQtys": [ + "137516229651950125056", + "214206355412664025088" + ], + "expectedQty": "348054182589491329916", + "swapFee": "208957884284265357", "reserves": [ - "3707575953068810104433226", - "2278949140903807815232980" - ] + "3409358077399163912937152", + "3577537869697656038454820" + ], + "LPTokenSupply": "6914237790487669809635809" + }, + { + "type": "redeemMasset", + "inputQty": "3109106803598028911411", + "expectedQtys": [ + "1532157076501102348776", + "1607736658652587712227" + ], + "redemptionFee": "1865464082158817346", + "reserves": [ + "3407825920322662810588376", + "3575930133039003450742593" + ], + "LPTokenSupply": "6911128870230479996606132" }, { "type": "swap", "inputIndex": 0, - "inputQty": "3191037439315898531840", + "inputQty": "193355518890007016243200", "outputIndex": 1, - "expectedQty": "3177152946382586419093", - "swapFee": "2511376307114303151", + "expectedQty": "193191584335164050349267", + "swapFee": "153086457665568547709", "reserves": [ - "3710766990508126002965066", - "2275771987957425228813887" + "3601181439212669826831576", + "3382738548703839400393326" ], - "LPTokenSupply": "5897296765875549849004795", + "LPTokenSupply": "6911144178876246553460902", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "76686086858537418358784", - "139830344075728899801088" + "1135182992409610289152", + "1669123464310903799808" ], - "expectedQty": "213481606566074480806720", + "expectedQty": "2775211726120364509632", "reserves": [ - "3787453077366663421323850", - "2415602332033154128614975" + "3602316622205079437120728", + "3384407672168150304193134" ], - "LPTokenSupply": "6110778372441624329811515" + "LPTokenSupply": "6913919390602366917970534" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1088688865595798272", - "expectedQty": "1102287407080798209", - "swapFee": "653213319357478", + "type": "redeemBassets", + "inputQtys": [ + "27383001673841291264", + "46500071641157648384" + ], + "expectedQty": "73117564648284274506", + "swapFee": "43896876915119636", "reserves": [ - "3787453077366663421323850", - "2415601229745747047816766" + "3602289239203405595829464", + "3384361172096509146544750" ], - "LPTokenSupply": "6110777283818080065948990" + "LPTokenSupply": "6913846233530529410088354" }, { "type": "redeemMasset", - "inputQty": "555872598708602378649", + "inputQty": "495201298112147305267", "expectedQtys": [ - "344322511203891875058", - "219605593654393316432" + "257857628334050272912", + "242257988549424134200" ], - "redemptionFee": "333523559225161427", + "redemptionFee": "297120778867288383", "reserves": [ - "3787108754855459529448792", - "2415381624152092654500334" + "3602031381575071545556552", + "3384118914107959722410550" ], - "LPTokenSupply": "6110221444571727386086483" + "LPTokenSupply": "6913351061944495149511925" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "133857427255218063540224", - "expectedQty": "135960585852450713114721", - "swapFee": "80314456353130838124", + "type": "mintMulti", + "inputQtys": [ + "51053063345396645888", + "2719961116678103040" + ], + "expectedQty": "53203125460105104442", "reserves": [ - "3651148169003008816334071", - "2415381624152092654500334" + "3602082434638416942202440", + "3384121634069076400513590" ], - "LPTokenSupply": "5976372048762144635630071" + "LPTokenSupply": "6913404265069955254616367" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "75146036078550869606400", - "expectedQty": "76320514784178888657192", - "swapFee": "45087621647130521763", + "inputQty": "274030721057771604672512", + "expectedQty": "276770119273229056709270", + "swapFee": "164418432634662962803", "reserves": [ - "3574827654218829927676879", - "2415381624152092654500334" + "3325312315365187885493170", + "3384121634069076400513590" ], - "LPTokenSupply": "5901230521445758479075847" + "LPTokenSupply": "6639389985855447116240135" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3150063394182009978880", - "expectedQty": "3190365120330451339664", - "swapFee": "1890038036509205987", + "type": "mintMulti", + "inputQtys": [ + "399749869994217504768", + "1326095270775914233856" + ], + "expectedQty": "1707775212169911266646", "reserves": [ - "3574827654218829927676879", - "2412191259031762203160670" + "3325712065235182102997938", + "3385447729339852314747446" ], - "LPTokenSupply": "5898080647055380120017565" + "LPTokenSupply": "6641097761067617027506781" }, { - "type": "redeemMasset", - "inputQty": "8955664902218828690227", - "expectedQtys": [ - "5424773158232435469481", - "3660481472183829251841" + "type": "mintMulti", + "inputQtys": [ + "211190352656052584448", + "9164061230014357504" ], - "redemptionFee": "5373398941331297214", + "expectedQty": "218065875471851886680", "reserves": [ - "3569402881060597492207398", - "2408530777559578373908829" + "3325923255587838155582386", + "3385456893401082329104950" ], - "LPTokenSupply": "5889125519493055424457059" + "LPTokenSupply": "6641315826943088879393461" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5834130997359606235136", - "expectedQty": "5908726169661362957607", - "swapFee": "3500478598415763741", + "inputQty": "1500328173388459933696", + "expectedQty": "1515333718785598755909", + "swapFee": "900196904033075960", "reserves": [ - "3569402881060597492207398", - "2402622051389917010951222" + "3325923255587838155582386", + "3383941559682296730349041" ], - "LPTokenSupply": "5883291738543555659798297" + "LPTokenSupply": "6639815588789390822767361" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "10777963331992156110848", - "expectedQty": "10915594176279769733834", - "swapFee": "6466777999195293666", + "inputQty": "112269464934001324064768", + "expectedQty": "111085136232829628286453", "reserves": [ - "3569402881060597492207398", - "2391706457213637241217388" - ], - "LPTokenSupply": "5872514421889363423216815" + "3325923255587838155582386", + "3496211024616298054413809" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "542463250699172970496", - "556730262408297250816" - ], - "expectedQty": "1083180053084365156560", - "swapFee": "650298210777085345", + "type": "redeemMasset", + "inputQty": "11665353319313804492", + "expectedQtys": [ + "5743647051970731448", + "6037722641635568039" + ], + "redemptionFee": "6999211991588282", "reserves": [ - "3568860417809898319236902", - "2391149726951228943966572" + "3325917511940786184850938", + "3496204986893656418845770" ], - "LPTokenSupply": "5871430656567889358683443" + "LPTokenSupply": "6750889060368822336408150" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "98826239346342635765760", - "outputIndex": 0, - "expectedQty": "99079820535774100745705", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "4230630294437396", + "expectedQtys": [ + "2083027112523543", + "2189678412796776" + ], + "redemptionFee": "2538378176662", "reserves": [ - "3469780597274124218491197", - "2489975966297571579732332" + "3325917509857759072327395", + "3496204984703978006048994" ], - "LPTokenSupply": "5871430656567889358683443", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6750889056138445879788420" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "117289763336494768", - "266356539508155136" + "4281847541457716510720", + "9981548785744746643456" ], - "expectedQty": "378200814231978964", + "expectedQty": "14113603155452738185317", + "swapFee": "8473245840776108576", "reserves": [ - "3469780714563887554985965", - "2489976232654111087887468" + "3321635662316301355816675", + "3486223435918233259405538" ], - "LPTokenSupply": "5871431034768703590662407" + "LPTokenSupply": "6736767827061736443105383" }, { "type": "redeemBassets", "inputQtys": [ - "7841642585659042816", - "5041600599842909184" + "10048023584488318976", + "5687861277463213056" ], - "expectedQty": "12691535999473651572", - "swapFee": "7619493295661587", + "expectedQty": "15572314377522464128", + "swapFee": "9348998025328675", "reserves": [ - "3469772872921301895943149", - "2489971191053511244978284" + "3321625614292716867497699", + "3486217748056955796192482" ], - "LPTokenSupply": "5871418336375160150915405" + "LPTokenSupply": "6736752246333260697845446" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "111743934363414332178432", - "expectedQty": "109976530437433283360358", + "type": "mintMulti", + "inputQtys": [ + "297806365581305", + "3672478667485213" + ], + "expectedQty": "3928305130227200", "reserves": [ - "3581516807284716228121581", - "2489971191053511244978284" - ] + "3321625614590523233079004", + "3486217751729434463677695" + ], + "LPTokenSupply": "6736752250261565828072646" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "156353342450906562560", - "outputIndex": 0, - "expectedQty": "156751159651429497671", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "448048377702907238", + "expectedQtys": [ + "220782353769234246", + "231722490818339086" + ], + "redemptionFee": "268829026621744", "reserves": [ - "3581360056125064798623910", - "2490127544395962151540844" + "3321625393808169463844758", + "3486217520006943645338609" ], - "LPTokenSupply": "5981394866812593434275763", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6736751802240071027827582" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1087474404343652024320", - "expectedQty": "1101539469382609738854", - "swapFee": "652484642606191214", + "type": "mintMulti", + "inputQtys": [ + "858146400623642017792", + "1257161852701936189440" + ], + "expectedQty": "2093163841434501904577", + "reserves": [ + "3322483540208793105862550", + "3487474681859645581528049" + ], + "LPTokenSupply": "6738844966081505529732159" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "60927143999797520", + "63370188963531784" + ], + "expectedQty": "122999443542090858", + "swapFee": "73843972508759", "reserves": [ - "3581360056125064798623910", - "2489026004926579541801990" + "3322483479281649106065030", + "3487474618489456617996265" ], - "LPTokenSupply": "5980307457656714042870564" + "LPTokenSupply": "6738844843015602412383416" }, { "type": "redeemMasset", - "inputQty": "487223502888908", + "inputQty": "533147594626910650368", "expectedQtys": [ - "291603040533301", - "202662547085072" + "262702479721933191190", + "275748016794523536291" ], - "redemptionFee": "292334101733", + "redemptionFee": "319888556776146390", "reserves": [ - "3581360055833461758090609", - "2489026004723916994716918" + "3322220776801927172873840", + "3487198870472662094459974" ], - "LPTokenSupply": "5980307457169519773391829" + "LPTokenSupply": "6738311727409831179347687" }, { "type": "swap", "inputIndex": 0, - "inputQty": "12087615895581770121216", + "inputQty": "451508500371362283520", "outputIndex": 1, - "expectedQty": "12046872448164237787341", - "swapFee": "9516606853853674624", + "expectedQty": "451291860858520155426", + "swapFee": "357493594743975362", "reserves": [ - "3593447671729043528211825", - "2476979132275752756929577" + "3322672285302298535157360", + "3486747578611803574304548" ], - "LPTokenSupply": "5980308408830205158759291", + "LPTokenSupply": "6738311763159190653745223", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4270823669419050270720", - "expectedQty": "4337188758793051949930", - "swapFee": "2562494201651430162", - "reserves": [ - "3589110482970250476261895", - "2476979132275752756929577" - ], - "LPTokenSupply": "5976037841410206273631587" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "14660953038961942462464", - "expectedQty": "14849903199775273151293", - "swapFee": "8796571823377165477", - "reserves": [ - "3589110482970250476261895", - "2462129229075977483778284" - ], - "LPTokenSupply": "5961377768028426668885670" - }, { "type": "mint", - "inputIndex": 0, - "inputQty": "355846050368884", - "expectedQty": "350184221926003", + "inputIndex": 1, + "inputQty": "250047912502087057408", + "expectedQty": "247398154367785218901", "reserves": [ - "3589110483326096526630779", - "2462129229075977483778284" + "3322672285302298535157360", + "3486997626524305661361956" ] }, { - "type": "mintMulti", - "inputQtys": [ - "504602474773138343198720", - "570910578567166639996928" + "type": "redeemMasset", + "inputQty": "1562995992789686996172", + "expectedQtys": [ + "770225110287336264185", + "808317191960750355448" ], - "expectedQty": "1059850140063237115059514", + "redemptionFee": "937797595673812197", "reserves": [ - "4093712958099234869829499", - "3033039807643144123775212" + "3321902060192011198893175", + "3486189309332344911006508" ], - "LPTokenSupply": "7021227908441848005871187" + "LPTokenSupply": "6736996259100528319349171" }, { - "type": "mintMulti", - "inputQtys": [ - "103470147363660", - "410096825960052" + "type": "redeemMasset", + "inputQty": "1169933240088606310", + "expectedQtys": [ + "576528715316773078", + "605041391179446908" ], - "expectedQty": "506351577098976", + "redemptionFee": "701959944053163", "reserves": [ - "4093712958202705017193159", - "3033039808053240949735264" + "3321901483663295882120097", + "3486188704290953731559600" ], - "LPTokenSupply": "7021227908948199582970163" + "LPTokenSupply": "6736995089237484225148177" }, { - "type": "redeemMasset", - "inputQty": "2299276870652977479680", - "expectedQtys": [ - "1339784449980218903816", - "992648877068509217322" - ], - "redemptionFee": "1379566122391786487", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9344807468482186", + "expectedQty": "9436210425417452", + "swapFee": "5606884481089", "reserves": [ - "4092373173752724798289343", - "3032047159176172440517942" + "3321901474227085456702645", + "3486188704290953731559600" ], - "LPTokenSupply": "7018928770034158844669131" + "LPTokenSupply": "6736995079893237445114099" }, { "type": "swap", "inputIndex": 0, - "inputQty": "138353727940752080896", + "inputQty": "95006131679303598866432", "outputIndex": 1, - "expectedQty": "137958407370773746185", - "swapFee": "108948438370247763", + "expectedQty": "94942932713661616622929", + "swapFee": "75219926517711536160", "reserves": [ - "4092511527480665550370239", - "3031909200768801666771757" + "3416907605906389055569077", + "3391245771577292114936671" ], - "LPTokenSupply": "7018928780929002681693907", + "LPTokenSupply": "6737002601885889216267715", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "6924709412206690", - "expectedQtys": [ - "4035152700082635", - "2989415305427118" - ], - "redemptionFee": "4154825647324", - "reserves": [ - "4092511523445512850287604", - "3031909197779386361344639" - ], - "LPTokenSupply": "7018928774004708752051949" - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "27140064355988029440", - "expectedQty": "27498873189392288378", - "swapFee": "16284038613592817", + "inputQty": "33177527513321758720", + "expectedQty": "33506964855293030244", + "swapFee": "19906516507993055", "reserves": [ - "4092511523445512850287604", - "3031881698906196969056261" + "3416907605906389055569077", + "3391212264612436821906427" ], - "LPTokenSupply": "7018901635568756625381790" + "LPTokenSupply": "6736969426349027545308300" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6450168511622549602304", - "3221780290126046822400" + "13108052942204337913856", + "220962625013961061302272" ], - "expectedQty": "9526917216109631376418", + "expectedQty": "231651361135961388695709", + "swapFee": "139074261238319825112", "reserves": [ - "4098961691957135399889908", - "3035103479196323015878661" + "3403799552964184717655221", + "3170249639598475760604155" ], - "LPTokenSupply": "7028428552784866256758208" + "LPTokenSupply": "6505192898377951668769989" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "59417841167708442329088", - "122594376493771136172032" + "7678860124935659978752", + "6848496435421040869376" ], - "expectedQty": "179404877753402636379070", + "expectedQty": "14375124386683646599622", + "swapFee": "8630252783680396197", "reserves": [ - "4158379533124843842218996", - "3157697855690094152050693" + "3396120692839249057676469", + "3163401143163054719734779" ], - "LPTokenSupply": "7207833430538268893137278" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "36502342150882292924416", - "expectedQty": "35999875331540505084570", - "reserves": [ - "4158379533124843842218996", - "3194200197840976444975109" - ] + "LPTokenSupply": "6490810006763762709813788" }, { "type": "redeemMasset", - "inputQty": "2709591959362870476", + "inputQty": "5339536623771294924", "expectedQtys": [ - "1554529316786079665", - "1194089623535721378" + "2792075345417117757", + "2600748070618691610" ], - "redemptionFee": "1625755175617722", + "redemptionFee": "3203721974262776", "reserves": [ - "4158377978595527056139331", - "3194199003751352909253731" + "3396117900763903640558712", + "3163398542414984101043169" ], - "LPTokenSupply": "7243830596440425552913144" + "LPTokenSupply": "6490804667547511135945141" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "37899618688692109312", - "outputIndex": 0, - "expectedQty": "37967808295177038074", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "1561786028348515024896", + "2254821290125145145344" + ], + "expectedQty": "3776820612788089782653", "reserves": [ - "4158340010787231879101257", - "3194236903370041601363043" + "3397679686792252155583608", + "3165653363705109246188513" ], - "LPTokenSupply": "7243830596440425552913144", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6494581488160299225727794" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "103563210754656108544", - "outputIndex": 0, - "expectedQty": "103749514072086357363", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "7279934168455869104128", + "expectedQty": "7202020411528642671763", "reserves": [ - "4158236261273159792743894", - "3194340466580796257471587" - ], - "LPTokenSupply": "7243830596440425552913144", - "hardLimitError": false, - "insufficientLiquidityError": false + "3404959620960708024687736", + "3165653363705109246188513" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "101564333126294962176", + "inputQty": "16030234043060895744", "outputIndex": 1, - "expectedQty": "101300848628059937448", - "swapFee": "79987230614557852", + "expectedQty": "16009664148379277464", + "swapFee": "12686892203190752", "reserves": [ - "4158337825606286087706070", - "3194239165732168197534139" + "3404975651194751085583480", + "3165637354040960866911049" ], - "LPTokenSupply": "7243830604439148614368929", + "LPTokenSupply": "6501783509840517088718632", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "25026928205529795788", - "expectedQtys": [ - "14358146351285462756", - "11029251433150112007" + "type": "mintMulti", + "inputQtys": [ + "11971248988915564544", + "8150305082028487680" + ], + "expectedQty": "19910034606824613912", + "reserves": [ + "3404987622443740001148024", + "3165645504346042895398729" + ], + "LPTokenSupply": "6501803419875123913332544" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "8307639190688816431104", + "2127780298651926003712" + ], + "expectedQty": "10324733619850318209046", + "swapFee": "6198559307494687738", + "reserves": [ + "3396679983253051184716920", + "3163517724047390969395017" + ], + "LPTokenSupply": "6491473107551896849904532" + }, + { + "type": "mintMulti", + "inputQtys": [ + "124185352307225105793024", + "147911332941262279933952" ], - "redemptionFee": "15016156923317877", + "expectedQty": "269253461198711747940809", "reserves": [ - "4158323467459934802243314", - "3194228136480735047422132" + "3520865335560276290509944", + "3311429056988653249328969" ], - "LPTokenSupply": "7243805579012558776904928" + "LPTokenSupply": "6760726568750608597845341" }, { "type": "mintMulti", "inputQtys": [ - "4797640648304880517120", - "7726330120581405474816" + "57340440356678819840", + "23566261481563893760" ], - "expectedQty": "12342775785957088153820", + "expectedQty": "80052911006979309868", "reserves": [ - "4163121108108239682760434", - "3201954466601316452896948" + "3520922676000632969329784", + "3311452623250134813222729" ], - "LPTokenSupply": "7256148354798515865058748" + "LPTokenSupply": "6760806621661615577155209" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "42800233688827594539008", - "expectedQty": "43449747508556670207941", - "swapFee": "25680140213296556723", + "inputIndex": 1, + "inputQty": "725980309579361419264", + "expectedQty": "733071238015089575253", + "swapFee": "435588185747616851", "reserves": [ - "4119671360599683012552493", - "3201954466601316452896948" + "3520922676000632969329784", + "3310719552012119723647476" ], - "LPTokenSupply": "7213350689123709600175412" + "LPTokenSupply": "6760080684910854790497630" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1796739558755839", + "inputQty": "4746563626251175936", "outputIndex": 1, - "expectedQty": "1792229190089447", - "swapFee": "1415073832409", + "expectedQty": "4740830239074831667", + "swapFee": "3756731142451718", "reserves": [ - "4119671362396422571308332", - "3201954464809087262807501" + "3520927422564259220505720", + "3310714811181880648815809" ], - "LPTokenSupply": "7213350689123851107558652", + "LPTokenSupply": "6760080685286527904742801", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "19101094880088690786304", - "expectedQty": "18804383408238608503416", - "reserves": [ - "4138772457276511262094636", - "3201954464809087262807501" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "35455608561436172288", - "expectedQty": "34904597229783916481", + "type": "redeem", + "inputIndex": 1, + "inputQty": "44423752397562727890944", + "expectedQty": "44856591761020634572002", + "swapFee": "26654251438537636734", "reserves": [ - "4138807912885072698266924", - "3201954464809087262807501" - ] + "3520927422564259220505720", + "3265858219420860014243807" + ], + "LPTokenSupply": "6715659598314109030615530" }, { "type": "redeemMasset", - "inputQty": "172317554353307883929", + "inputQty": "502475285630129746739", "expectedQtys": [ - "98554012848940601872", - "76245495830837850105" + "263282776478485774255", + "244209583555684643797" ], - "redemptionFee": "103390532611984730", + "redemptionFee": "301485171378077848", "reserves": [ - "4138709358872223757665052", - "3201878219313256424957396" + "3520664139787780734731465", + "3265614009837304329600010" ], - "LPTokenSupply": "7232017669914019453293093" + "LPTokenSupply": "6715157153176996038676575" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 1, + "inputQty": "163715046427025213489152", + "expectedQty": "165291992966289716705986", + "swapFee": "98229027856215128093", + "reserves": [ + "3520664139787780734731465", + "3100322016871014612894024" + ], + "LPTokenSupply": "6551451929652756446700232" + }, + { + "type": "redeemBassets", "inputQtys": [ - "94367500429839630336", - "67574867968588947456" + "7064128566150417088512", + "9515357315940973805568" ], - "expectedQty": "159541913366641041913", + "expectedQty": "16406842208706659667444", + "swapFee": "9850015334424650590", "reserves": [ - "4138803726372653597295388", - "3201945794181225013904852" + "3513600011221630317642953", + "3090806659555073639088456" ], - "LPTokenSupply": "7232177211827386094335006" + "LPTokenSupply": "6535036222430248804847256" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "56568825259832639488", - "expectedQty": "57427356130177791119", - "swapFee": "33941295155899583", + "inputIndex": 1, + "inputQty": "206992574918224576", + "expectedQty": "208969282018494535", + "swapFee": "124195544950934", "reserves": [ - "4138746299016523419504269", - "3201945794181225013904852" + "3513600011221630317642953", + "3090806450585791620593921" ], - "LPTokenSupply": "7232120646396255777285476" + "LPTokenSupply": "6535036015450093441117773" }, { "type": "mintMulti", "inputQtys": [ - "247615441862243549184", - "314309570358955278336" + "6194929869544368373760", + "10328005288211995688960" ], - "expectedQty": "553733003236012175004", + "expectedQty": "16351565606055815478705", "reserves": [ - "4138993914458385663053453", - "3202260103751583969183188" + "3519794941091174686016713", + "3101134455874003616282881" ], - "LPTokenSupply": "7232674379399491789460480" + "LPTokenSupply": "6551387581056149256596478" }, { - "type": "redeemMasset", - "inputQty": "4097810044450436710", - "expectedQtys": [ - "2343619173339891855", - "1813213146063701276" + "type": "mint", + "inputIndex": 0, + "inputQty": "78190531691484756836352", + "expectedQty": "77335982278258573915397", + "reserves": [ + "3597985472782659442853065", + "3101134455874003616282881" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "90349322041039649767424", + "49283693132943313600512" ], - "redemptionFee": "2458686026670262", + "expectedQty": "138151105750832755221102", + "swapFee": "82940427707123927489", "reserves": [ - "4138991570839212323161598", - "3202258290538437905481912" + "3507636150741619793085641", + "3051850762741060302682369" ], - "LPTokenSupply": "7232670281835315941690796" + "LPTokenSupply": "6490497811198638663756031" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "22164309729788311896064", - "outputIndex": 1, - "expectedQty": "22106969690795331123719", - "swapFee": "17455741603897551737", + "type": "redeem", + "inputIndex": 1, + "inputQty": "153049789764987355136", + "expectedQty": "154506998675248595616", + "swapFee": "91829873858992413", "reserves": [ - "4161155880569000635057662", - "3180151320847642574358193" + "3507636150741619793085641", + "3051696255742385054086753" ], - "LPTokenSupply": "7232672027409476331445969", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6490344770591861062300136" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "21231540609965842432", + "5607816355555139584" + ], + "expectedQty": "26550747326433860737", + "swapFee": "15940012403302297", + "reserves": [ + "3507614919201009827243209", + "3051690647926029498947169" + ], + "LPTokenSupply": "6490318205498523465467330" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "11663932416504736251904", - "expectedQty": "11841379317334410461828", - "swapFee": "6998359449902841751", + "inputQty": "274638442583861592326144", + "expectedQty": "277475297923865849719437", + "swapFee": "164783065550316955395", "reserves": [ - "4149314501251666224595834", - "3180151320847642574358193" + "3230139621277143977523772", + "3051690647926029498947169" ], - "LPTokenSupply": "7221008794828916585478240" + "LPTokenSupply": "6215696241221216904836725" }, { "type": "redeemBassets", "inputQtys": [ - "172074340865291649024", - "234546930125064667136" + "2341754576488438169600", + "834246756812925566976" ], - "expectedQty": "400708206099960443003", - "swapFee": "240569265219107730", + "expectedQty": "3142301744172155091152", + "swapFee": "1886512954275858569", "reserves": [ - "4149142426910800932946810", - "3179916773917517509691057" + "3227797866700655539354172", + "3050856401169216573380193" ], - "LPTokenSupply": "7220607870110477927838279" + "LPTokenSupply": "6212552241615385901472859" }, { - "type": "mintMulti", - "inputQtys": [ - "34529135580233856", - "7931893402686879" - ], - "expectedQty": "41813963520729472", + "type": "redeem", + "inputIndex": 0, + "inputQty": "7461500256462284800", + "expectedQty": "7537735921921018327", + "swapFee": "4476900153877370", "reserves": [ - "4149142461439936513180666", - "3179916781849410912377936" + "3227790328964733618335845", + "3050856401169216573380193" ], - "LPTokenSupply": "7220607911924441448567751" + "LPTokenSupply": "6212544780562819454575796" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "39508760518662194987008", - "expectedQty": "40035951597712147455864", - "swapFee": "23705256311197316992", + "inputQty": "14079009225879362469888", + "expectedQty": "14217427747064078250920", + "swapFee": "8447405535527617481", "reserves": [ - "4149142461439936513180666", - "3139880830251698764922072" + "3227790328964733618335845", + "3036638973422152495129273" ], - "LPTokenSupply": "7181101521931410373312442" + "LPTokenSupply": "6198466616077493644867656" }, { "type": "mintMulti", "inputQtys": [ - "37247223700983440736256", - "25379861432579647340544" + "8521863397902076870656", + "24150238832269633519616" ], - "expectedQty": "61696818734602952967002", + "expectedQty": "32331259979598775224021", "reserves": [ - "4186389685140919953916922", - "3165260691684278412262616" + "3236312192362635695206501", + "3060789212254422128648889" ], - "LPTokenSupply": "7242798340666013326279444" + "LPTokenSupply": "6230797876057092420091677" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "53254659057331363840", - "expectedQty": "53963820303720138930", - "swapFee": "31952795434398818", + "type": "swap", + "inputIndex": 0, + "inputQty": "84282815335082917888", + "outputIndex": 1, + "expectedQty": "84184240660886364385", + "swapFee": "66704313365443177", "reserves": [ - "4186389685140919953916922", - "3165206727863974692123686" + "3236396475177970778124389", + "3060705028013761242284504" ], - "LPTokenSupply": "7242745089202235538355485" + "LPTokenSupply": "6230797882727523756635994", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "26992377619524706304", + "expectedQty": "26703363707875124629", + "reserves": [ + "3236423467555590302830693", + "3060705028013761242284504" + ] }, { "type": "redeemMasset", - "inputQty": "316917500696867687628", + "inputQty": "2254935321871340955238", "expectedQtys": [ - "183072039058947573874", - "138415411200224119982" + "1170558846167703648328", + "1107004501100546637935" ], - "redemptionFee": "190150500418120612", + "redemptionFee": "1352961193122804573", "reserves": [ - "4186206613101861006343048", - "3165068312452774468003704" + "3235252908709422599182365", + "3059598023512660695646569" ], - "LPTokenSupply": "7242428190716588712479918" + "LPTokenSupply": "6228569786065479603085842" }, { - "type": "redeemBassets", - "inputQtys": [ - "54097091367175664", - "64637886258914464" - ], - "expectedQty": "117002395884371904", - "swapFee": "70243583680831", + "type": "mint", + "inputIndex": 1, + "inputQty": "2133139620792040685568", + "expectedQty": "2111077934930924971913", "reserves": [ - "4186206559004769639167384", - "3165068247814888209089240" - ], - "LPTokenSupply": "7242428073650973602795265" + "3235252908709422599182365", + "3061731163133452736332137" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "7315785042279586070528", - "10331735064330647896064" + "type": "redeemMasset", + "inputQty": "2835933827244191278694", + "expectedQtys": [ + "1471662308782392376380", + "1392730175832034960410" ], - "expectedQty": "17391357915734738617422", + "redemptionFee": "1701560296346514767", "reserves": [ - "4193522344047049225237912", - "3175399982879218856985304" + "3233781246400640206805985", + "3060338432957620701371727" ], - "LPTokenSupply": "7259819431566708341412687" + "LPTokenSupply": "6227845100329195971430537" }, { "type": "redeemBassets", "inputQtys": [ - "227953833799814026887168", - "220700457880591687221248" + "1495886915568438870016", + "718792862977316093952" ], - "expectedQty": "442064457060797150691144", - "swapFee": "265397912984268851725", + "expectedQty": "2191230852719425296007", + "swapFee": "1315527828328652369", "reserves": [ - "3965568510247235198350744", - "2954699524998627169764056" + "3232285359485071767935969", + "3059619640094643385277775" ], - "LPTokenSupply": "6817516116384225348754989" + "LPTokenSupply": "6225652685501431050347396" }, { "type": "redeemBassets", "inputQtys": [ - "30079885537526471983104", - "56120511701820228239360" + "2286419978634813", + "1923532182086830" ], - "expectedQty": "84959738761813713753014", - "swapFee": "51006447125363446319", + "expectedQty": "4165577784188765", + "swapFee": "2500847178820", "reserves": [ - "3935488624709708726367640", - "2898579013296806941524696" + "3232285357198651789301156", + "3059619638171111203190945" ], - "LPTokenSupply": "6732510471819998807900286" + "LPTokenSupply": "6225652681333602503697692" }, { - "type": "redeemBassets", - "inputQtys": [ - "1339263184125993680896", - "1431264577088821395456" + "type": "redeemMasset", + "inputQty": "45199013934089516", + "expectedQtys": [ + "23452714230302899", + "22199891747688841" ], - "expectedQty": "2729887916134305927566", - "swapFee": "1638916099340187669", + "redemptionFee": "27119408360453", "reserves": [ - "3934149361525582732686744", - "2897147748719718120129240" + "3232285333745937558998257", + "3059619615971219455502104" ], - "LPTokenSupply": "6729779108879375095803816" + "LPTokenSupply": "6225652636137300510444221" }, { - "type": "redeemBassets", - "inputQtys": [ - "1213136082443670388736", - "3127051131194646200320" - ], - "expectedQty": "4278361502898698605350", - "swapFee": "2568558036561155856", + "type": "swap", + "inputIndex": 1, + "inputQty": "50922912807776031866880", + "outputIndex": 0, + "expectedQty": "50935975699199379166192", + "swapFee": "0", "reserves": [ - "3932936225443139062298008", - "2894020697588523473928920" + "3181349358046738179832065", + "3110542528778995487368984" ], - "LPTokenSupply": "6725498435674243492158194" + "LPTokenSupply": "6225652636137300510444221", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "423200909398937984", - "508599543990605440" + "26171061269866278289408", + "22407045145052443574272" ], - "expectedQty": "918188881708414060", - "swapFee": "551244075470330", + "expectedQty": "48066458028871165884020", + "swapFee": "28857189130801180238", "reserves": [ - "3932935802242229663360024", - "2894020188988979483323480" + "3155178296776871901542657", + "3088135483633943043794712" ], - "LPTokenSupply": "6725497516989242115820836" + "LPTokenSupply": "6177560206638211623497985" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "106409992304842", - "outputIndex": 1, - "expectedQty": "106100598752572", - "swapFee": "83787792509", + "type": "redeemMasset", + "inputQty": "2164979945620191051776", + "expectedQtys": [ + "1105096343925504596177", + "1081614701773485552014" + ], + "redemptionFee": "1298987967372114631", "reserves": [ - "3932935802348639655664866", - "2894020188882878884570908" + "3154073200432946396946480", + "3087053868932169558242698" ], - "LPTokenSupply": "6725497516989250494600086", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6175395356591388169657672" }, { "type": "redeemBassets", "inputQtys": [ - "23664060043524598398976", - "33577381872965550866432" + "532265201509116805120", + "1121283947319891460096" ], - "expectedQty": "56410316146195894550334", - "swapFee": "33866509593473620902", + "expectedQty": "1636176825649694288332", + "swapFee": "982295472673420625", "reserves": [ - "3909271742305115057265890", - "2860442807009913333704476" + "3153540935231437280141360", + "3085932584984849666782602" ], - "LPTokenSupply": "6669056720984420473790939" + "LPTokenSupply": "6173758295699813069290776" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "213993141309417357312", - "expectedQty": "216822967631114469314", - "swapFee": "128395884785650414", + "inputQty": "430322659551168692224", + "expectedQty": "434610558469544592351", + "swapFee": "258193595730701215", "reserves": [ - "3909271742305115057265890", - "2860225984042282219235162" + "3153540935231437280141360", + "3085497974426380122190251" ], - "LPTokenSupply": "6668842740682699534998668" + "LPTokenSupply": "6173327998859621473668673" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "205722008976872", - "outputIndex": 0, - "expectedQty": "206165591836027", - "swapFee": "0", - "reserves": [ - "3909271742098949465429863", - "2860225984248004228212034" + "type": "mintMulti", + "inputQtys": [ + "10350387095179074994176", + "164059660353697497481216" ], - "LPTokenSupply": "6668842740682699534998668", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "21998847667446108160", - "outputIndex": 1, - "expectedQty": "21933952971980555919", - "swapFee": "17321618341374500", + "expectedQty": "172571872863756217908863", "reserves": [ - "3909293740946616911538023", - "2860204050295032247656115" + "3163891322326616355135536", + "3249557634780077619671467" ], - "LPTokenSupply": "6668842742414861369136118", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6345899871723377691577536" }, { "type": "redeemMasset", - "inputQty": "200738174275021721", + "inputQty": "141720015699235", "expectedQtys": [ - "117602659391161777", - "86043061741023893" + "70615311443982", + "72527309271300" ], - "redemptionFee": "120442904565013", + "redemptionFee": "85032009419", "reserves": [ - "3909293623343957520376246", - "2860203964251970506632222" + "3163891322256001043691554", + "3249557634707550310400167" ], - "LPTokenSupply": "6668842541688731384570898" + "LPTokenSupply": "6345899871581666179079242" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2423665690059004182528", - "598348062584434196480" + "1000039943005529", + "2078240338336531" ], - "expectedQty": "2975640741098098286315", - "swapFee": "1786456318449928929", + "expectedQty": "3045767760620253", "reserves": [ - "3906869957653898516193718", - "2859605616189386072435742" + "3163891323256040986697083", + "3249557636785790648736698" ], - "LPTokenSupply": "6665865293136946681348545" + "LPTokenSupply": "6345899874627433939699495" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "122159848546144503201792", - "expectedQty": "120228180560415253085746", + "inputIndex": 1, + "inputQty": "9278473175817023127552", + "expectedQty": "9179904119889435482777", "reserves": [ - "4029029806200043019395510", - "2859605616189386072435742" + "3163891323256040986697083", + "3258836109961607671864250" ] }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "101935871282596018126848", - "expectedQty": "103512268633906555556864", - "swapFee": "61161522769557610876", - "reserves": [ - "3925517537566136463838646", - "2859605616189386072435742" - ], - "LPTokenSupply": "6684163718567042872068530" - }, { "type": "redeemBassets", "inputQtys": [ - "1724339817955121430528", - "29779072591058423808" + "86131663427359195136", + "1848173948948115881984" ], - "expectedQty": "1726491090656473518144", - "swapFee": "1036516564332483601", + "expectedQty": "1913766003026184025196", + "swapFee": "1148948971198429472", "reserves": [ - "3923793197748181342408118", - "2859575837116795014011934" + "3163805191592613627501947", + "3256987936012659555982266" ], - "LPTokenSupply": "6682436294611478499315144" + "LPTokenSupply": "6353164978690223112570550" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "14402939308011032576", - "16409170490044350464" + "919406891093498368", + "131120196593887648" ], - "expectedQty": "30360999880394716206", + "expectedQty": "1039538670455300754", + "swapFee": "624097660869702", "reserves": [ - "3923807600687489353440694", - "2859592246287285058362398" + "3163804272185722534003579", + "3256987804892462962094618" ], - "LPTokenSupply": "6682466655611358894031350" + "LPTokenSupply": "6353163938589864762487063" }, { "type": "mint", "inputIndex": 1, - "inputQty": "13224874480707009773568", - "expectedQty": "13044421643253890067685", - "reserves": [ - "3923807600687489353440694", - "2872817120767992068135966" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "167733344827103488", - "expectedQty": "165087862988334054", + "inputQty": "17466923681387444", + "expectedQty": "17281312527149654", "reserves": [ - "3923807768420834180544182", - "2872817120767992068135966" + "3163804272185722534003579", + "3256987822359386643482062" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4014012899218036883456", - "expectedQty": "3950697728784272673635", + "type": "redeemMasset", + "inputQty": "12186760836195870310", + "expectedQtys": [ + "6065228656101895935", + "6243867879697153483" + ], + "redemptionFee": "7312056501717522", "reserves": [ - "3927821781320052217427638", - "2872817120767992068135966" - ] + "3163798206957066432107644", + "3256981578491506946328579" + ], + "LPTokenSupply": "6353151769841546743938159" }, { "type": "redeemMasset", - "inputQty": "2234374165394206857625", + "inputQty": "48446239497155064627", "expectedQtys": [ - "1309203314953411341923", - "957554061045088584786" + "24111207590959118141", + "24821355162998264664" ], - "redemptionFee": "1340624499236524114", + "redemptionFee": "29067743698293038", "reserves": [ - "3926512578005098806085715", - "2871859566706946979551180" + "3163774095749475472989503", + "3256956757136343948063915" ], - "LPTokenSupply": "6697227699968315761901510" + "LPTokenSupply": "6353103326508823958702835" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "182363440460193824768", - "expectedQty": "185175202504065548901", - "swapFee": "109418064276116294", + "type": "mintMulti", + "inputQtys": [ + "2265211073238842474496", + "1018964053742137114624" + ], + "expectedQty": "3249706195500159889615", "reserves": [ - "3926327402802594740536814", - "2871859566706946979551180" + "3166039306822714315463999", + "3257975721190086085178539" ], - "LPTokenSupply": "6697045347469661995688371" + "LPTokenSupply": "6356353032704324118592450" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "325803099203930880", - "expectedQty": "320663501727251619", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7887695164193594408960", + "expectedQty": "7967587742554973857885", + "swapFee": "4732617098516156645", "reserves": [ - "3926327728605693944467694", - "2871859566706946979551180" - ] + "3166039306822714315463999", + "3250008133447531111320654" + ], + "LPTokenSupply": "6348465810801840375799154" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "40039177763186781716480", - "expectedQty": "39406922123213658514169", + "type": "redeemBassets", + "inputQtys": [ + "60758415995593", + "105131390978002" + ], + "expectedQty": "164138833005430", + "swapFee": "98542425258", "reserves": [ - "3966366906368880726184174", - "2871859566706946979551180" - ] + "3166039306761955899468406", + "3250008133342399720342652" + ], + "LPTokenSupply": "6348465810637612854610990" }, { "type": "mintMulti", "inputQtys": [ - "28673969246716133638144", - "29572455766704043065344" + "1531782394891470848", + "962431031329319040" ], - "expectedQty": "57390720060323212371353", + "expectedQty": "2467992974493774649", "reserves": [ - "3995040875615596859822318", - "2901432022473651022616524" + "3166040838544350790939254", + "3250009095773431049661692" ], - "LPTokenSupply": "6793843310316700593825512" + "LPTokenSupply": "6348468278630587348385639" }, { - "type": "redeemBassets", - "inputQtys": [ - "2281624661040466231296", - "210911042765485965312" - ], - "expectedQty": "2453621237637179111927", - "swapFee": "1473056576528224401", + "type": "redeem", + "inputIndex": 1, + "inputQty": "35174310912179916800", + "expectedQty": "35530463985862175709", + "swapFee": "21104586547307950", "reserves": [ - "3992759250954556393591022", - "2901221111430885536651212" + "3166040838544350790939254", + "3249973565309445187485983" ], - "LPTokenSupply": "6791388363328144539311623" + "LPTokenSupply": "6348433106430133823199634" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "141295690024238055424", - "305902792257585676288" + "1723453878335764692992", + "1795056007723636752384" ], - "expectedQty": "440799289263186494357", + "expectedQty": "3481446451322392413509", + "swapFee": "2090121943959811334", "reserves": [ - "3992900546644580631646446", - "2901527014223143122327500" + "3164317384666015026246262", + "3248178509301721550733599" ], - "LPTokenSupply": "6791829162617407725805980" + "LPTokenSupply": "6344949778869061866955923" }, { "type": "redeemMasset", - "inputQty": "47848468956590243840", + "inputQty": "33867528564862405836", "expectedQtys": [ - "28113125459206955999", - "20429006938998586879" + "16880087720238696670", + "17327445860426649860" ], - "redemptionFee": "28709081373954146", + "redemptionFee": "20320517138917443", "reserves": [ - "3992872433519121424690447", - "2901506585216204123740621" + "3164300504578294787549592", + "3248161181855861124083739" ], - "LPTokenSupply": "6791781317019359272957554" + "LPTokenSupply": "6344915913372548718441831" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1947563339760804", - "expectedQty": "1973277122374300", - "swapFee": "1168538003856", + "inputIndex": 0, + "inputQty": "60506708373876187856896", + "expectedQty": "61106786712061956774948", + "swapFee": "36304025024325712714", "reserves": [ - "3992872433519121424690447", - "2901506583242927001366321" + "3103193717866232830774644", + "3248161181855861124083739" ], - "LPTokenSupply": "6791781315071912786997135" + "LPTokenSupply": "6284412835401174963156206" }, { - "type": "redeemBassets", - "inputQtys": [ - "4051968778205698457600", - "1724132546062538768384" - ], - "expectedQty": "5688610840225116984885", - "swapFee": "3415215633515179298", + "type": "redeem", + "inputIndex": 0, + "inputQty": "308544041148202418176", + "expectedQty": "311595300518880769018", + "swapFee": "185126424688921450", "reserves": [ - "3988820464740915726232847", - "2899782450696864462597937" + "3102882122565713950005626", + "3248161181855861124083739" ], - "LPTokenSupply": "6786089630537617506350880" + "LPTokenSupply": "6284104309872669229630175" }, { - "type": "mintMulti", - "inputQtys": [ - "232943478198627", - "25245724680716" - ], - "expectedQty": "254165930255608", + "type": "redeem", + "inputIndex": 1, + "inputQty": "93760110958649228132352", + "expectedQty": "94711491201926846557770", + "swapFee": "56256066575189536879", "reserves": [ - "3988820464973859204431474", - "2899782450722110187278653" + "3102882122565713950005626", + "3153449690653934277525969" ], - "LPTokenSupply": "6786089630791783436606488" + "LPTokenSupply": "6190349824520677520451510" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "18637844141589435252736", - "expectedQty": "18383641053105234564291", + "type": "redeem", + "inputIndex": 0, + "inputQty": "14389234299129829376", + "expectedQty": "14533096954254402130", + "swapFee": "8633540579477897", "reserves": [ - "3988820464973859204431474", - "2918420294863699622531389" - ] + "3102867589468759695603496", + "3153449690653934277525969" + ], + "LPTokenSupply": "6190335436149732448569923" }, { - "type": "redeemMasset", - "inputQty": "65179971952018246860", - "expectedQtys": [ - "38185940472445494125", - "27938741447961459244" - ], - "redemptionFee": "39107983171210948", + "type": "redeem", + "inputIndex": 1, + "inputQty": "114583379501797473255424", + "expectedQty": "115734263452439950011015", + "swapFee": "68750027701078483953", "reserves": [ - "3988782279033386758937349", - "2918392356122251661072145" + "3102867589468759695603496", + "3037715427201494327514954" ], - "LPTokenSupply": "6804408095783734970045013" + "LPTokenSupply": "6075758931650705083162894" }, { "type": "mintMulti", "inputQtys": [ - "2590108984055913", - "111555020938786768" + "397683349465962176", + "621196852921247488" ], - "expectedQty": "112581246466965460", + "expectedQty": "1008140518918662285", "reserves": [ - "3988782281623495742993262", - "2918392467677272599858913" + "3102867987152109161565672", + "3037716048398347248762442" ], - "LPTokenSupply": "6804408208364981437010473" + "LPTokenSupply": "6075759939791224001825179" }, { - "type": "redeemBassets", - "inputQtys": [ - "1804860430007784177664", - "1645598840824652365824" + "type": "redeem", + "inputIndex": 1, + "inputQty": "4867715677653187952640", + "expectedQty": "4916336475297083631687", + "swapFee": "2920629406591912771", + "reserves": [ + "3102867987152109161565672", + "3032799711923050165130755" + ], + "LPTokenSupply": "6070892516176511473063816" + }, + { + "type": "redeemMasset", + "inputQty": "5529300786410080665", + "expectedQtys": [ + "2824361713134866002", + "2760582604683659767" ], - "expectedQty": "3399521011739693078832", - "swapFee": "2040937169345423101", + "redemptionFee": "3317580471846048", "reserves": [ - "3986977421193487958815598", - "2916746868836447947493089" + "3102865162790396026699670", + "3032796951340445481470988" ], - "LPTokenSupply": "6801006850509789333050849" + "LPTokenSupply": "6070886987207483110167755" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "206135041723310505197568", - "expectedQty": "208828966791603042331342", - "swapFee": "123681025033986303118", + "inputQty": "4885983920779954225152", + "expectedQty": "4934762471709129245859", + "swapFee": "2931590352467972535", "reserves": [ - "3986977421193487958815598", - "2707917902044844905161747" + "3102865162790396026699670", + "3027862188868736352225129" ], - "LPTokenSupply": "6594884176888982226483592" + "LPTokenSupply": "6066001296445738402739856" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "131361056211033279954944", - "outputIndex": 1, - "expectedQty": "130855579898749705442134", - "swapFee": "103399483837179575474", + "inputQty": "4262962379848793600", + "expectedQty": "4217617861989986953", "reserves": [ - "4118338477404521238770542", - "2577062322146095199719613" - ], - "LPTokenSupply": "6594894516837365944441139", - "hardLimitError": false, - "insufficientLiquidityError": false + "3102869425752775875493270", + "3027862188868736352225129" + ] }, { - "type": "redeemMasset", - "inputQty": "2747059431605132492", - "expectedQtys": [ - "1714437211345180173", - "1072814088808783873" - ], - "redemptionFee": "1648235658963079", + "type": "mint", + "inputIndex": 0, + "inputQty": "3959143921510090240", + "expectedQty": "3917031059917932918", "reserves": [ - "4118336762967309893590369", - "2577061249332006390935740" - ], - "LPTokenSupply": "6594891769942757905204954" + "3102873384896697385583510", + "3027862188868736352225129" + ] }, { - "type": "redeemMasset", - "inputQty": "239090537710881996", - "expectedQtys": [ - "149216180075417572", - "93372460189156610" + "type": "mintMulti", + "inputQtys": [ + "45099427652428552470528", + "105662872106809425920" ], - "redemptionFee": "143454322626529", + "expectedQty": "44723218069168033325437", "reserves": [ - "4118336613751129818172797", - "2577061155959546201779130" + "3147972812549125938054038", + "3027967851740843161651049" ], - "LPTokenSupply": "6594891530866565626585610" + "LPTokenSupply": "6110732649163828343985164" }, { "type": "redeemMasset", - "inputQty": "659864625320527554150", + "inputQty": "17587835159456494387", "expectedQtys": [ - "411820893046876789624", - "257698125777294784715" + "9055020154578040311", + "8709830598163664316" ], - "redemptionFee": "395918775192316532", + "redemptionFee": "10552701095673896", "reserves": [ - "4117924792858082941383173", - "2576803457833768906994415" + "3147963757528971360013727", + "3027959141910244997986733" ], - "LPTokenSupply": "6594231705833122618263113" + "LPTokenSupply": "6110715062383938997058166" }, { - "type": "redeemMasset", - "inputQty": "242508918907226554368", - "expectedQtys": [ - "151349596751452245670", - "94707451900841285537" - ], - "redemptionFee": "145505351344335932", + "type": "swap", + "inputIndex": 1, + "inputQty": "180531952885780916994048", + "outputIndex": 0, + "expectedQty": "180508480202190825555411", + "swapFee": "0", "reserves": [ - "4117773443261331489137503", - "2576708750381868065708878" + "2967455277326780534458316", + "3208491094796025914980781" ], - "LPTokenSupply": "6593989211464750526142338" + "LPTokenSupply": "6110715062383938997058166", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "3666326013418369187840", - "6483217929609525854208" + "15703798965666718", + "22945342942845052" ], - "expectedQty": "10005792101635724553678", + "expectedQty": "38239453020924179", "reserves": [ - "4121439769274749858325343", - "2583191968311477591563086" + "2967455293030579500125034", + "3208491117741368857825833" ], - "LPTokenSupply": "6603995003566386250696016" + "LPTokenSupply": "6110715100623392017982345" }, { - "type": "redeemMasset", - "inputQty": "53121020927147810540748", - "expectedQtys": [ - "33132024942859808180527", - "20766136475980004967052" - ], - "redemptionFee": "31872612556288686324", + "type": "redeem", + "inputIndex": 0, + "inputQty": "32833061364171364368384", + "expectedQty": "33154064356586997090776", + "swapFee": "19699836818502818621", "reserves": [ - "4088307744331890050144816", - "2562425831835497586596034" + "2934301228673992503034258", + "3208491117741368857825833" ], - "LPTokenSupply": "6550877169900494069023900" + "LPTokenSupply": "6077884009242902503895823" }, { - "type": "redeemMasset", - "inputQty": "1206209852493440797900", - "expectedQtys": [ - "752326465474619592137", - "471535141105357073236" - ], - "redemptionFee": "723725911496064478", + "type": "mint", + "inputIndex": 0, + "inputQty": "657661604399390523392", + "expectedQty": "650913849868619843464", "reserves": [ - "4087555417866415430552679", - "2561954296694392229522798" - ], - "LPTokenSupply": "6549671032420591777832447" + "2934958890278391893557650", + "3208491117741368857825833" + ] }, { "type": "redeemMasset", - "inputQty": "3421606372652070050201", + "inputQty": "3119402664803294825676", "expectedQtys": [ - "2134094062702054132619", - "1337584667254094207163" + "1505268211507952163659", + "1645556161770835287856" ], - "redemptionFee": "2052963823591242030", + "redemptionFee": "1871641598881976895", "reserves": [ - "4085421323803713376420060", - "2560616712027138135315635" + "2933453622066883941393991", + "3206845561579598022537977" ], - "LPTokenSupply": "6546249631344322066906449" + "LPTokenSupply": "6075415707592127717111300" }, { - "type": "redeemMasset", - "inputQty": "178672172202126134476", - "expectedQtys": [ - "111439858347368459990", - "69847083336934846327" + "type": "redeemBassets", + "inputQtys": [ + "68190700644874864", + "46739483968863600" ], - "redemptionFee": "107203303321275680", + "expectedQty": "113723519201734441", + "swapFee": "68275076566980", "reserves": [ - "4085309883945366007960070", - "2560546864943801200469308" + "2933453553876183296519127", + "3206845514840114053674377" ], - "LPTokenSupply": "6546070969892450272899541" + "LPTokenSupply": "6075415593807160946466576" }, { - "type": "redeemMasset", - "inputQty": "1284337718636235771084", - "expectedQtys": [ - "801055999826541565854", - "502077317821333636897" + "type": "redeemBassets", + "inputQtys": [ + "45947768005308352299008", + "15207481739354923073536" ], - "redemptionFee": "770602631181741462", + "expectedQty": "60519445501312550410953", + "swapFee": "36333467381216260002", "reserves": [ - "4084508827945539466394216", - "2560044787625979866832411" + "2887505785870874944220119", + "3191638033100759130600841" ], - "LPTokenSupply": "6544786709234077155302603" + "LPTokenSupply": "6014863448185205301421620" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1430136715236920262656", - "expectedQty": "1406825996996521717983", + "type": "mintMulti", + "inputQtys": [ + "18058094716780054528", + "6274423483788299264" + ], + "expectedQty": "24079511252586143006", "reserves": [ - "4085938964660776386656872", - "2560044787625979866832411" - ] + "2887523843965591724274647", + "3191644307524242918900105" + ], + "LPTokenSupply": "6014887527696457887564626" }, { "type": "mint", "inputIndex": 0, - "inputQty": "54417589971910057984", - "expectedQty": "53530570666307509023", + "inputQty": "142748128414979276800", + "expectedQty": "141288088396812503916", "reserves": [ - "4085993382250748296714856", - "2560044787625979866832411" + "2887666592094006703551447", + "3191644307524242918900105" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "25820439545219952640", - "expectedQty": "25485703118028550033", + "type": "swap", + "inputIndex": 0, + "inputQty": "53692346933393554931712", + "outputIndex": 1, + "expectedQty": "53678758692907299915456", + "swapFee": "42513161636692877694", "reserves": [ - "4085993382250748296714856", - "2560070608065525086785051" - ] + "2941358939027400258483159", + "3137965548831335618984649" + ], + "LPTokenSupply": "6015033067101018369356311", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "1158636910575427649536", - "1945976258845461184512" + "2067742296926813159424", + "6729808090910119952384" ], - "expectedQty": "3060500929869571570125", - "swapFee": "1837402999721575887", + "expectedQty": "8703593413044145748376", + "swapFee": "5225291222560023463", "reserves": [ - "4084834745340172869065320", - "2558124631806679625600539" + "2939291196730473445323735", + "3131235740740425499032265" ], - "LPTokenSupply": "6543210396912288692091217" + "LPTokenSupply": "6006324770925873919586817" }, { - "type": "redeemMasset", - "inputQty": "18333827852935542446489", - "expectedQtys": [ - "11438685002374159933332", - "7163467724962804773148" - ], - "redemptionFee": "11000296711761325467", + "type": "redeem", + "inputIndex": 1, + "inputQty": "40086177597263498444800", + "expectedQty": "40497733123378119764839", + "swapFee": "24051706558358099066", "reserves": [ - "4073396060337798709131988", - "2550961164081716820827391" + "2939291196730473445323735", + "3090738007617047379267426" ], - "LPTokenSupply": "6524877669089024325777274" + "LPTokenSupply": "5966240998499266256951923" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "28764783251260505587712", + "expectedQty": "28464884200117520421418", + "reserves": [ + "2968055979981733950911447", + "3090738007617047379267426" + ] }, { "type": "mintMulti", "inputQtys": [ - "55539817705397198848", - "1578573774191628032" + "2531045333371038728192", + "3754347066225906941952" ], - "expectedQty": "56192433109513688888", + "expectedQty": "6218761215997468104357", "reserves": [ - "4073451600155504106330836", - "2550962742655491012455423" + "2970587025315104989639639", + "3094492354683273286209378" ], - "LPTokenSupply": "6524933861522133839466162" + "LPTokenSupply": "6000924643915381245477698" }, { "type": "redeemBassets", "inputQtys": [ - "17700477560517273600", - "13240570533865285632" + "48175645937298078433280", + "52639470688732239101952" ], - "expectedQty": "30480826685696166179", - "swapFee": "18299475696835801", + "expectedQty": "99748403219462494514997", + "swapFee": "59884972915426752760", "reserves": [ - "4073433899677943589057236", - "2550949502084957147169791" + "2922411379377806911206359", + "3041852883994541047107426" ], - "LPTokenSupply": "6524903364225920016147761" + "LPTokenSupply": "5901122344220294866885216" }, { - "type": "mintMulti", - "inputQtys": [ - "72233235700528355213312", - "50897082630070876504064" - ], - "expectedQty": "121292836552018414197602", + "type": "redeem", + "inputIndex": 1, + "inputQty": "45247789437822384", + "expectedQty": "45710446562568989", + "swapFee": "27148673662693", "reserves": [ - "4145667135378471944270548", - "2601846584715028023673855" + "2922411379377806911206359", + "3041852838284094484538437" ], - "LPTokenSupply": "6646196200777938430345363" + "LPTokenSupply": "5901122298975220296429101" }, { - "type": "redeemBassets", - "inputQtys": [ - "4142915534940941058048", - "3107149646866364235776" - ], - "expectedQty": "7142236707020344847487", - "swapFee": "4287914773076052540", + "type": "mint", + "inputIndex": 0, + "inputQty": "37689137888153443500032", + "expectedQty": "37294374356875803148800", "reserves": [ - "4141524219843531003212500", - "2598739435068161659438079" - ], - "LPTokenSupply": "6639050104947622317050589" + "2960100517265960354706391", + "3041852838284094484538437" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "222495965385192", - "expectedQty": "218869791690369", + "inputQty": "186305719730581152989184", + "expectedQty": "184331460412450889562903", "reserves": [ - "4141524220066026968597692", - "2598739435068161659438079" + "3146406236996541507695575", + "3041852838284094484538437" ] }, { "type": "redeemMasset", - "inputQty": "99846816486776202854", + "inputQty": "275597050650434574745", "expectedQtys": [ - "62248347493205399583", - "39059830826207317191" + "141541016544630178614", + "136837684164040301796" ], - "redemptionFee": "59908089892065721", + "redemptionFee": "165358230390260744", "reserves": [ - "4141461971718533763198109", - "2598700375237335452120888" + "3146264695979996877516961", + "3041716000599930444236641" ], - "LPTokenSupply": "6638950264340814321744676" + "LPTokenSupply": "6122472553229719593592133" }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "392099836701080708710", + "expectedQtys": [ + "201374472954989689185", + "194682906775833574200" + ], + "redemptionFee": "235259902020648425", + "reserves": [ + "3146063321507041887827776", + "3041521317693154610662441" + ], + "LPTokenSupply": "6122080476919008714948265" + }, + { + "type": "redeemBassets", "inputQtys": [ - "1420665162095006842880", - "1080279882266452951040" + "11427980705157961728", + "6158866421001751552" ], - "expectedQty": "2463775787801935655105", + "expectedQty": "17400115239114081853", + "swapFee": "10446336945635830", "reserves": [ - "4142882636880628770040989", - "2599780655119601905071928" + "3146051893526336729866048", + "3041515158826733608910889" ], - "LPTokenSupply": "6641414040128616257399781" + "LPTokenSupply": "6122063067402066349794164" }, { - "type": "redeemMasset", - "inputQty": "1967873690643553894", - "expectedQtys": [ - "1226813761868228328", - "769861703816212949" + "type": "mintMulti", + "inputQtys": [ + "204353089730712272896", + "190349668427684839424" ], - "redemptionFee": "1180724214386132", + "expectedQty": "390523469171395057189", "reserves": [ - "4142881410066866901812661", - "2599779885257898088858979" + "3146256246616067442138944", + "3041705508495161293750313" ], - "LPTokenSupply": "6641412072372998035284500" + "LPTokenSupply": "6122453590871237744851353" }, { "type": "mintMulti", "inputQtys": [ - "7414662114140460417024", - "925840189223917453312" + "889265522110087936", + "19390668880495853568" ], - "expectedQty": "8207635979955329983833", + "expectedQty": "20067330339033842707", "reserves": [ - "4150296072181007362229685", - "2600705725447122006312291" + "3146257135881589552226880", + "3041724899164041789603881" ], - "LPTokenSupply": "6649619708352953365268333" + "LPTokenSupply": "6122473658201576778694060" }, { "type": "redeemMasset", - "inputQty": "5398855468454863667", + "inputQty": "10173061464654245946982", "expectedQtys": [ - "3367621836732194520", - "2110257494793060457" + "5224663228031010219345", + "5051077373558574256293" ], - "redemptionFee": "3239313281072918", + "redemptionFee": "6103836878792547568", "reserves": [ - "4150292704559170630035165", - "2600703615189627213251834" + "3141032472653558542007535", + "3036673821790483215347588" ], - "LPTokenSupply": "6649614309821416238511957" + "LPTokenSupply": "6112301207120610412001834" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "11807582384781678", + "expectedQty": "11683902034737355", + "reserves": [ + "3141032472653558542007535", + "3036673833598065600129266" + ] }, { "type": "mintMulti", "inputQtys": [ - "68061386566006112", - "323408289389088960" + "4296615244853034496", + "7464132589935702016" ], - "expectedQty": "386166478133426603", + "expectedQty": "11636606343971651807", "reserves": [ - "4150292772620557196041277", - "2600703938597916602340794" + "3141036769268803395042031", + "3036681297730655535831282" ], - "LPTokenSupply": "6649614695987894371938560" + "LPTokenSupply": "6112312855410856418390996" }, { - "type": "redeemBassets", - "inputQtys": [ - "73886537764698364837888", - "23832268883379089309696" + "type": "redeemMasset", + "inputQty": "870574972670907392", + "expectedQtys": [ + "447108542938132645", + "432254140951012784" ], - "expectedQty": "96205772431301192903289", - "swapFee": "57758118329778582891", + "redemptionFee": "522344983602544", "reserves": [ - "4076406234855858831203389", - "2576871669714537513031098" + "3141036322160260456909386", + "3036680865476514584818498" ], - "LPTokenSupply": "6553356941250096378310668" + "LPTokenSupply": "6112311984888118245843858" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "84407890742183743979520", - "123471561186527496110080" + "131480377537267679232", + "76402018370674016256" ], - "expectedQty": "204892904117716459250706", + "expectedQty": "205675777928081019973", + "swapFee": "123479554489542337", "reserves": [ - "4160814125598042575182909", - "2700343230901065009141178" + "3140904841782723189230154", + "3036604463458143910802242" ], - "LPTokenSupply": "6758249845367812837561374" + "LPTokenSupply": "6112106197978591124235780" }, { - "type": "redeemMasset", - "inputQty": "63368797355837464825036", - "expectedQtys": [ - "38990506968108546977085", - "25304603470023908368930" + "type": "mintMulti", + "inputQtys": [ + "3041554941901661", + "790348059833686" ], - "redemptionFee": "38021278413502478895", + "expectedQty": "3791091487154081", "reserves": [ - "4121823618629934028205824", - "2675038627431041100772248" + "3140904844824278131131815", + "3036604464248491970635928" ], - "LPTokenSupply": "6694884850139816722984227" + "LPTokenSupply": "6112106201769682611389861" }, { "type": "mint", "inputIndex": 0, - "inputQty": "87974126201839920", - "expectedQty": "86548751588815488", + "inputQty": "207468973548662465495040", + "expectedQty": "205228410476081087911258", "reserves": [ - "4121823706604060230045744", - "2675038627431041100772248" + "3348373818372940596626855", + "3036604464248491970635928" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "35898688003452936192", - "outputIndex": 0, - "expectedQty": "36009813537664224088", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "25406838874112", + "807790961896" + ], + "expectedQty": "25929410811673", + "swapFee": "15566986679", "reserves": [ - "4121787696790522565821656", - "2675074526119044553708440" + "3348373818347533757752743", + "3036604464247684179674032" ], - "LPTokenSupply": "6694884936688568311799715", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6317334612219820278201433" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3477566546965037056", - "expectedQty": "3521815979605751701", - "swapFee": "2086539928179022", + "type": "redeemMasset", + "inputQty": "7484432295463478729113", + "expectedQtys": [ + "3964589858607786090029", + "3595444211632513731282" + ], + "redemptionFee": "4490659377278087237", "reserves": [ - "4121787696790522565821656", - "2675071004303064947956739" + "3344409228488925971662714", + "3033009020036051665942750" ], - "LPTokenSupply": "6694881459330675339580561" + "LPTokenSupply": "6309850628990294527281043" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "23022301621882527416320", - "expectedQty": "22649086001098179631849", + "type": "mintMulti", + "inputQtys": [ + "1903724782930590171136", + "2376847707658889723904" + ], + "expectedQty": "4235439622626455138167", "reserves": [ - "4144809998412405093237976", - "2675071004303064947956739" - ] + "3346312953271856561833850", + "3035385867743710555666654" + ], + "LPTokenSupply": "6314086068612920982419210" }, { "type": "redeemBassets", "inputQtys": [ - "90549228460464914432", - "222825304293984894976" + "1903380835153231", + "1777761468190627" ], - "expectedQty": "308980309914903003878", - "swapFee": "185499485640325997", + "expectedQty": "3642158612234889", + "swapFee": "2186607131619", "reserves": [ - "4144719449183944628323544", - "2674848178998770963061763" + "3346312951368475726680619", + "3035385865965949087476027" ], - "LPTokenSupply": "6717221398072321539915133" + "LPTokenSupply": "6314086064968794423765862" }, { - "type": "redeemMasset", - "inputQty": "10321814624009537034649", - "expectedQtys": [ - "6365036176979298887473", - "4107758229717221187115" - ], - "redemptionFee": "6193088774405722220", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7226079152295257088", + "expectedQty": "7296594908521830347", + "swapFee": "4335647491377154", "reserves": [ - "4138354413006965329436071", - "2670740420769053741874648" + "3346312951368475726680619", + "3035378569371040565645680" ], - "LPTokenSupply": "6706900202757189443452706" + "LPTokenSupply": "6314078839323206877646489" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "48488966671024660480", - "expectedQty": "47852311275364846917", + "inputIndex": 0, + "inputQty": "3879026315196604416", + "expectedQty": "3836745213942893605", "reserves": [ - "4138354413006965329436071", - "2670788909735724766535128" + "3346316830394790923285035", + "3035378569371040565645680" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "52823042791742177280", - "outputIndex": 1, - "expectedQty": "52615462311724827394", - "swapFee": "41572962341125112", + "inputQty": "8241397438273165", + "expectedQty": "8151566797849746", "reserves": [ - "4138407236049757071613351", - "2670736294273413041707734" - ], - "LPTokenSupply": "6706948059225761042412134", - "hardLimitError": false, - "insufficientLiquidityError": false + "3346316838636188361558200", + "3035378569371040565645680" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "322896342080929660928", - "200047060379825864704" + "518148208311843968", + "373366524952720448" ], - "expectedQty": "515079112420397138972", + "expectedQty": "882036813932972521", + "swapFee": "529539812247131", "reserves": [ - "4138730132391838001274279", - "2670936341333792867572438" + "3346316320487980049714232", + "3035378196004515612925232" ], - "LPTokenSupply": "6707463138338181439551106" + "LPTokenSupply": "6314081801706587854394900" }, { "type": "swap", "inputIndex": 0, - "inputQty": "5899502857370363494400", + "inputQty": "136264316660386889728", "outputIndex": 1, - "expectedQty": "5876230101067551415718", - "swapFee": "4643034628412645255", + "expectedQty": "136067012654866288117", + "swapFee": "107823229316446282", "reserves": [ - "4144629635249208364768679", - "2665060111232725316156720" + "3346452584804640436603960", + "3035242128991860746637115" ], - "LPTokenSupply": "6707463602641644280815631", + "LPTokenSupply": "6314081812488910786039528", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "158383984547280799662080", - "expectedQty": "160890641631646507422296", - "swapFee": "95030390728368479797", + "inputQty": "2436424568089259540480", + "expectedQty": "2409864225015477295994", "reserves": [ - "3983738993617561857346383", - "2665060111232725316156720" - ], - "LPTokenSupply": "6549089121133436318001530" + "3348889009372729696144440", + "3035242128991860746637115" + ] }, { "type": "redeemMasset", - "inputQty": "5633660056103704906956", + "inputQty": "451735187889127987", "expectedQtys": [ - "3424837410008985148071", - "2291163548489435292242" + "239358079871934976", + "216940521441161800" ], - "redemptionFee": "3380196033662222944", + "redemptionFee": "271041112733476", "reserves": [ - "3980314156207552872198312", - "2662768947684235880864478" + "3348888770014649824209464", + "3035241912051339305475315" ], - "LPTokenSupply": "6543455799096935979316868" + "LPTokenSupply": "6316491225005842485480882" }, { - "type": "redeemBassets", - "inputQtys": [ - "357162716179454558208", - "400987996958101995520" - ], - "expectedQty": "747052762441245915844", - "swapFee": "448500757919499249", + "type": "mint", + "inputIndex": 1, + "inputQty": "2182604211034433781760", + "expectedQty": "2160217607222298923924", "reserves": [ - "3979956993491373417640104", - "2662367959687277778868958" - ], - "LPTokenSupply": "6542708342683812605851698" + "3348888770014649824209464", + "3037424516262373739257075" + ] }, { - "type": "redeemMasset", - "inputQty": "1638986560786351207219", - "expectedQtys": [ - "996404214550536772808", - "666538522917450493569" - ], - "redemptionFee": "983391936471810724", + "type": "redeem", + "inputIndex": 0, + "inputQty": "43876164887795900350464", + "expectedQty": "44332139613098248326960", + "swapFee": "26325698932677540210", "reserves": [ - "3978960589276822880867296", - "2661701421164360328375389" + "3304556630401551575882504", + "3037424516262373739257075" ], - "LPTokenSupply": "6541069454462219901825551" + "LPTokenSupply": "6274777910295162151808363" }, { "type": "mintMulti", "inputQtys": [ - "6410455814340245192704", - "2849195768365221150720" + "13751551576568422400", + "6100820467606062080" ], - "expectedQty": "9118362220614759945462", + "expectedQty": "19640117586300845240", "reserves": [ - "3985371045091163126060000", - "2664550616932725549526109" + "3304570381953128144304904", + "3037430617082841345319155" ], - "LPTokenSupply": "6550187816682834661771013" + "LPTokenSupply": "6274797550412748452653603" }, { "type": "redeemMasset", - "inputQty": "9075137740505885337190", + "inputQty": "955897913200616243", "expectedQtys": [ - "5518328865999245579161", - "3689459881645628529227" + "503113703288581638", + "462442251067886499" ], - "redemptionFee": "5445082644303531202", + "redemptionFee": "573538747920369", "reserves": [ - "3979852716225163880480839", - "2660861157051079920996882" + "3304569878839424855723266", + "3037430154640590277432656" ], - "LPTokenSupply": "6541113223450593206786943" + "LPTokenSupply": "6274796594572189126829396" }, { - "type": "redeemMasset", - "inputQty": "1028311033837855021465", - "expectedQtys": [ - "625286676066676830973", - "418055929955491955993" + "type": "redeemBassets", + "inputQtys": [ + "458240963270154846208", + "425372609793942028288" ], - "redemptionFee": "616986620302713012", + "expectedQty": "874251506426427673605", + "swapFee": "524865823349866524", "reserves": [ - "3979227429549097203649866", - "2660443101121124429040889" + "3304111637876154700877058", + "3037004782030796335404368" ], - "LPTokenSupply": "6540084974115417382036779" + "LPTokenSupply": "6273921870686521684275918" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "887996057464006656", - "expectedQty": "902006724333921514", - "swapFee": "532797634478403", + "inputIndex": 1, + "inputQty": "13248337527404767232", + "expectedQty": "13378291783582713951", + "swapFee": "7949002516442860", + "reserves": [ + "3304111637876154700877058", + "3036991403739012752690417" + ], + "LPTokenSupply": "6273908623143894531152972" + }, + { + "type": "mintMulti", + "inputQtys": [ + "69278228549282788540416", + "45946586641902759575552" + ], + "expectedQty": "113998525269469542014733", "reserves": [ - "3979226527542372869728352", - "2660443101121124429040889" + "3373389866425437489417474", + "3082937990380915512265969" ], - "LPTokenSupply": "6540084086172639681477963" + "LPTokenSupply": "6387907148413364073167705" }, { "type": "mint", "inputIndex": 0, - "inputQty": "78668332534464587497472", - "expectedQty": "77397478105771677143017", + "inputQty": "8522135399504580608", + "expectedQty": "8429413575485388329", "reserves": [ - "4057894860076837457225824", - "2660443101121124429040889" + "3373398388560836993998082", + "3082937990380915512265969" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "5670261827239861551104", - "25297297540779513741312" - ], - "expectedQty": "30541724306791885530088", - "swapFee": "18336036205798610484", + "type": "redeem", + "inputIndex": 0, + "inputQty": "42541679438144913408", + "expectedQty": "42983822725614950220", + "swapFee": "25525007662886948", "reserves": [ - "4052224598249597595674720", - "2635145803580344915299577" + "3373355404738111379047862", + "3082937990380915512265969" ], - "LPTokenSupply": "6586923337539034254341455" + "LPTokenSupply": "6387873038700002179931320" }, { - "type": "mintMulti", - "inputQtys": [ - "8258589575068941025280", - "6242664280620725698560" + "type": "redeemMasset", + "inputQty": "1355473510118471185203", + "expectedQtys": [ + "715379026370360134632", + "653790933152539983616" ], - "expectedQty": "14285039154755323808110", + "redemptionFee": "813284106071082711", "reserves": [ - "4060483187824666536700000", - "2641388467860965640998137" + "3372640025711741018913230", + "3082284199447762972282353" ], - "LPTokenSupply": "6601208376693789578149565" + "LPTokenSupply": "6386517646518294315854388" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "577146128896974577991680", - "expectedQty": "567661500093539464462658", + "inputIndex": 1, + "inputQty": "1354513168539017281536", + "expectedQty": "1340576446178627207227", "reserves": [ - "4637629316721641114691680", - "2641388467860965640998137" + "3372640025711741018913230", + "3083638712616301989563889" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1180045230095105536", - "outputIndex": 0, - "expectedQty": "1185060859579337478", - "swapFee": "0", - "reserves": [ - "4637628131660781535354202", - "2641389647906195736103673" - ], - "LPTokenSupply": "7168869876787329042612223", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "355343973514230693888", - "218285282821383749632" + "519957778223529852928", + "192706455471449767936" ], - "expectedQty": "564991288684249757370", - "swapFee": "339198292185861371", + "expectedQty": "705024745431770387854", "reserves": [ - "4637272787687267304660314", - "2641171362623374352354041" + "3373159983489964548766158", + "3083831419071773439331825" ], - "LPTokenSupply": "7168304580220181825579618" + "LPTokenSupply": "6388563247709904713449469" }, { "type": "redeemMasset", - "inputQty": "370786252965788774", + "inputQty": "17518990569706373093785", "expectedQtys": [ - "239722701441550762", - "136534718358439569" + "9244473136785144216907", + "8451540054879770287792" ], - "redemptionFee": "222471751779473", + "redemptionFee": "10511394341823823856", "reserves": [ - "4637272547964565863109552", - "2641171226088655993914472" + "3363915510353179404549251", + "3075379879016893669044033" ], - "LPTokenSupply": "7168304209456176034968791" + "LPTokenSupply": "6371045308279632522738069" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "167625946188331876352", - "expectedQty": "170361710977230040316", - "swapFee": "100575567712999125", + "inputQty": "83635213408357515264", + "expectedQty": "82725211598480708716", "reserves": [ - "4637102186253588633069236", - "2641171226088655993914472" - ], - "LPTokenSupply": "7168136593567544474392351" + "3363999145566587762064515", + "3075379879016893669044033" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "149824649022263", - "51916320548201" - ], - "expectedQty": "198599182873190", - "swapFee": "119231048352", + "type": "mint", + "inputIndex": 1, + "inputQty": "2739159618169906659328", + "expectedQty": "2710966911649705097643", "reserves": [ - "4637102186103763984046973", - "2641171226036739673366271" - ], - "LPTokenSupply": "7168136593368837983575643" + "3363999145566587762064515", + "3078119038635063575703361" + ] }, { "type": "mintMulti", "inputQtys": [ - "42870219302613448392704", - "62785504992104600829952" - ], - "expectedQty": "104157454643213662373950", - "reserves": [ - "4679972405406377432439677", - "2703956731028844274196223" - ], - "LPTokenSupply": "7272294048012051645949593" - }, - { - "type": "redeemMasset", - "inputQty": "985972749058988646", - "expectedQtys": [ - "634126815070754429", - "366380679500515295" + "39911040564974262943744", + "32212041403525777850368" ], - "redemptionFee": "591583649435393", + "expectedQty": "71357335233073393037800", "reserves": [ - "4679971771279562361685248", - "2703956364648164773680928" + "3403910186131562025008259", + "3110331080038589353553729" ], - "LPTokenSupply": "7272293062098460951904486" + "LPTokenSupply": "6445196335635954101582228" }, { "type": "redeemBassets", "inputQtys": [ - "33263255479035698872320", - "34699376712050446172160" + "4664958912094008320", + "2126326394732374528" ], - "expectedQty": "66975099297594243228250", - "swapFee": "40209185089610312124", + "expectedQty": "6718642028487205729", + "swapFee": "4033605380320515", "reserves": [ - "4646708515800526662812928", - "2669256987936114327508768" + "3403905521172649930999939", + "3110328953712194621179201" ], - "LPTokenSupply": "7205281774534286059395323" + "LPTokenSupply": "6445189613363680772088034" }, { "type": "redeemBassets", "inputQtys": [ - "72821759784011824103424", - "28781421254687076646912" + "31640090353783831265280", + "52276632244179697664000" ], - "expectedQty": "100032221596916281477124", - "swapFee": "60055366177856482775", + "expectedQty": "83034830458866300010490", + "swapFee": "49850808760576125681", "reserves": [ - "4573886756016514838709504", - "2640475566681427250861856" + "3372265430818866099734659", + "3058052321468014923515201" ], - "LPTokenSupply": "7105195503107809707083700" + "LPTokenSupply": "6362109917176929953564430" }, { - "type": "mintMulti", - "inputQtys": [ - "17399250589438093295616", - "34609901593679672377344" - ], - "expectedQty": "51284648773826254258451", + "type": "mint", + "inputIndex": 0, + "inputQty": "50896378252805745410048", + "expectedQty": "50339732254675436262037", "reserves": [ - "4591286006605952932005120", - "2675085468275106923239200" - ], - "LPTokenSupply": "7156480151881635961342151" + "3423161809071671845144707", + "3058052321468014923515201" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "281391072064063", - "outputIndex": 0, - "expectedQty": "282527172083235", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "810167851391019778048", + "expectedQty": "801287832795564756725", "reserves": [ - "4591286006323425759921885", - "2675085468556497995303263" - ], - "LPTokenSupply": "7156480151881635961342151", - "hardLimitError": false, - "insufficientLiquidityError": false + "3423971976923062864922755", + "3058052321468014923515201" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "291106220739442", - "100848329379326" - ], - "expectedQty": "385854404172811", - "swapFee": "231651633483", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3961776893593490", + "expectedQty": "4000268991208862", + "swapFee": "2377066136156", "reserves": [ - "4591286006032319539182443", - "2675085468455649665923937" + "3423971976923062864922755", + "3058052317467745932306339" ], - "LPTokenSupply": "7156480151495573070699204" + "LPTokenSupply": "6413250933302861767603317" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "207057947710707550126080", - "expectedQty": "209526358961391656332311", - "swapFee": "124234768626424530075", + "inputIndex": 0, + "inputQty": "10651361776618660954112", + "expectedQty": "10762890740245744963277", + "swapFee": "6390817065971196572", "reserves": [ - "4591286006032319539182443", - "2465559109494258009591626" + "3413209086182817119959478", + "3058052317467745932306339" ], - "LPTokenSupply": "6949434627261728163026131" + "LPTokenSupply": "6402600210607949703768862" }, { "type": "redeemMasset", - "inputQty": "20860824203443034521", + "inputQty": "884966842827759001", "expectedQtys": [ - "13773860546572426290", - "7396678686295315931" + "471490398195929127", + "422430114435018220" ], - "redemptionFee": "12516494522065820", + "redemptionFee": "530980105696655", "reserves": [ - "4591272232171772966756153", - "2465551712815571714275695" + "3413208614692418924030351", + "3058051895037631497288119" ], - "LPTokenSupply": "6949413767689174172198192" + "LPTokenSupply": "6402599325694204886579526" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "130949963987850553720832", - "expectedQty": "129339648885553576349283", + "type": "redeem", + "inputIndex": 0, + "inputQty": "84163820494968", + "expectedQty": "85044739321404", + "swapFee": "50498292296", "reserves": [ - "4591272232171772966756153", - "2596501676803422267996527" - ] + "3413208614607374184708947", + "3058051895037631497288119" + ], + "LPTokenSupply": "6402599325610046115913787" }, { "type": "redeemMasset", - "inputQty": "32848617356931982950", + "inputQty": "9277339484196037459968", "expectedQtys": [ - "21292796301726456278", - "12041712733534553651" + "4942757486710427782825", + "4428445666713221527730" ], - "redemptionFee": "19709170414159189", + "redemptionFee": "5566403690517622475", "reserves": [ - "4591250939375471240299875", - "2596489635090688733442876" + "3408265857120663756926122", + "3053623449370918275760389" ], - "LPTokenSupply": "7078720569928287857980443" + "LPTokenSupply": "6393322542766219130216066" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2153786227013653504", - "expectedQty": "2126959997755892130", + "inputQty": "80412547072258785280", + "expectedQty": "79589977226623605223", "reserves": [ - "4591250939375471240299875", - "2596491788876915747096380" + "3408265857120663756926122", + "3053703861917990534545669" ] }, { "type": "mintMulti", "inputQtys": [ - "175915344355951443968", - "1301709051880335736832" + "6977774796604247638016", + "19799440377832681472" ], - "expectedQty": "1458471429629758719818", + "expectedQty": "6920923407040325054784", "reserves": [ - "4591426854719827191743843", - "2597793497928796082833212" + "3415243631917268004564138", + "3053723661358368367227141" ], - "LPTokenSupply": "7080181168317915372592391" + "LPTokenSupply": "6400323056150486078876073" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6409580148580607328256", - "11391153920855429349376" + "335366090107715596582912", + "26042944161397499494400" ], - "expectedQty": "17551713801450377101288", + "expectedQty": "357512784595327184660698", + "swapFee": "214636452628773574941", "reserves": [ - "4597836434868407799072099", - "2609184651849651512182588" + "3079877541809552407981226", + "3027680717196970867732741" ], - "LPTokenSupply": "7097732882119365749693679" + "LPTokenSupply": "6042617098747792997997927" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "769120578740344324096", - "expectedQty": "781705220755428300812", - "swapFee": "461472347244206594", + "inputIndex": 1, + "inputQty": "922539621265707499520", + "expectedQty": "931841180449838350968", + "swapFee": "553523772759424499", "reserves": [ - "4597054729647652370771287", - "2609184651849651512182588" + "3079877541809552407981226", + "3026748876016521029381773" ], - "LPTokenSupply": "7096963807687860129790242" + "LPTokenSupply": "6041694614478904566440856" }, { - "type": "mintMulti", - "inputQtys": [ - "11433113761485959462912", - "8024897807594107699200" - ], - "expectedQty": "19167073553781769246650", + "type": "redeem", + "inputIndex": 1, + "inputQty": "30639468371092690698240", + "expectedQty": "30947847797549290602347", + "swapFee": "18383681022655614418", "reserves": [ - "4608487843409138330234199", - "2617209549657245619881788" + "3079877541809552407981226", + "2995801028218971738779426" ], - "LPTokenSupply": "7116130881241641899036892" + "LPTokenSupply": "6011056984475914141304057" }, { - "type": "redeemMasset", - "inputQty": "688131250798722757427", - "expectedQtys": [ - "445374292598797431445", - "252932825553279527790" + "type": "mintMulti", + "inputQtys": [ + "366306967932321434435584", + "9745959428151104765952" ], - "redemptionFee": "412878750479233654", + "expectedQty": "371958185627009953208044", "reserves": [ - "4608042469116539532802754", - "2616956616831692340353998" + "3446184509741873842416810", + "3005546987647122843545378" ], - "LPTokenSupply": "7115442791278718224202830" + "LPTokenSupply": "6383015170102924094512101" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "17103656066446325760", - "expectedQty": "17383474115776766523", - "swapFee": "10262193639867795", + "type": "mintMulti", + "inputQtys": [ + "3180197431494298304512", + "348950944379812446208" + ], + "expectedQty": "3490386582672183449817", "reserves": [ - "4608025085642423756036231", - "2616956616831692340353998" + "3449364707173368140721322", + "3005895938591502655991586" ], - "LPTokenSupply": "7115425688648871141863849" + "LPTokenSupply": "6386505556685596277961918" }, { "type": "redeemMasset", - "inputQty": "846524973491282562252", + "inputQty": "317199694368517939", "expectedQtys": [ - "547889613224645302356", - "311153546687278891574" + "171217411261425380", + "149204785465731908" ], - "redemptionFee": "507914984094769537", + "redemptionFee": "190319816621110", "reserves": [ - "4607477196029199110733875", - "2616645463285005061462424" + "3449364535955956879295942", + "3005895789386717190259678" ], - "LPTokenSupply": "7114579214466878268778550" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "402736980211172376576", - "expectedQty": "396016373990779508610", - "reserves": [ - "4607879933009410283110451", - "2616645463285005061462424" - ] + "LPTokenSupply": "6386505239504933891106090" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "447267929675929616384", - "outputIndex": 1, - "expectedQty": "445005511148266368862", - "swapFee": "351843264703477136", + "type": "redeemBassets", + "inputQtys": [ + "3987500857304620204032", + "8681069140593214488576" + ], + "expectedQty": "12536181106609308666163", + "swapFee": "7526224398604748048", "reserves": [ - "4608327200939086212726835", - "2616200457773856795093562" + "3445377035098652259091910", + "2997214720246123975771102" ], - "LPTokenSupply": "7114975266025195518634873", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6373962284796365838166682" }, { - "type": "redeemMasset", - "inputQty": "8326783447178", - "expectedQtys": [ - "5389972234124", - "3059949350694" + "type": "mintMulti", + "inputQtys": [ + "17282151179826944", + "21737095649361152" ], - "redemptionFee": "4996070068", + "expectedQty": "38606894960504559", "reserves": [ - "4608327200933696240492711", - "2616200457770796845742868" + "3445377052380803438918854", + "2997214741983219625132254" ], - "LPTokenSupply": "7114975266016869234794701" + "LPTokenSupply": "6373962323403260798671241" }, { - "type": "redeemBassets", - "inputQtys": [ - "754676055059780075520", - "318179495318434283520" - ], - "expectedQty": "1056290755471961242090", - "swapFee": "634154946250927301", + "type": "swap", + "inputIndex": 0, + "inputQty": "132689457766299173126144", + "outputIndex": 1, + "expectedQty": "132422392084109005509173", + "swapFee": "104969051310492383190", "reserves": [ - "4607572524878636460417191", - "2615882278275478411459348" + "3578066510147102612044998", + "2864792349899110619623081" ], - "LPTokenSupply": "7113918404521945647718039" + "LPTokenSupply": "6373972820308391847909560", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "37840228791196686745600", - "expectedQty": "38458794473243176553094", - "swapFee": "22704137274718012047", + "inputIndex": 1, + "inputQty": "26132410279376550100992", + "expectedQty": "26376494561951397121213", + "swapFee": "15679446167625930060", "reserves": [ - "4569113730405393283864097", - "2615882278275478411459348" + "3578066510147102612044998", + "2838415855337159222501868" ], - "LPTokenSupply": "7076080446144476432773643" + "LPTokenSupply": "6347841977973632060401574" }, { "type": "redeemMasset", - "inputQty": "13036800335875894476", + "inputQty": "528961176281169054924", "expectedQtys": [ - "8412974371085830541", - "4816546898025367553" + "297978853541258426839", + "236381269059172640101" ], - "redemptionFee": "7822080201525536", + "redemptionFee": "317376705768701432", "reserves": [ - "4569105317431022198033556", - "2615877461728580386091795" + "3577768531293561353618159", + "2838179474068100049861767" ], - "LPTokenSupply": "7076067410126348577031720" + "LPTokenSupply": "6347313048535021468216793" }, { "type": "mint", "inputIndex": 0, - "inputQty": "666739059631877540282368", - "expectedQty": "655468519806605642927105", + "inputQty": "553716277227658263134208", + "expectedQty": "547286280732681526328701", "reserves": [ - "5235844377062899738315924", - "2615877461728580386091795" + "4131484808521219616752367", + "2838179474068100049861767" ] }, { "type": "redeemBassets", "inputQtys": [ - "32697056460455664418816", - "4225227946764473466880" + "221980838118079299584", + "1205683023413508046848" ], - "expectedQty": "36312873444222446646443", - "swapFee": "21800804549263025803", + "expectedQty": "1413915982818097794658", + "swapFee": "848858905033879004", "reserves": [ - "5203147320602444073897108", - "2611652233781815912624915" + "4131262827683101537452783", + "2836973791044686541814919" ], - "LPTokenSupply": "7695203435764637436589158" + "LPTokenSupply": "6893184649311870366259731" }, { "type": "redeemBassets", "inputQtys": [ - "350104809870702936064", - "492198012966849150976" + "12045859606344458240", + "9943214293191264256" ], - "expectedQty": "830561535009892042103", - "swapFee": "498636102667535746", + "expectedQty": "21754824550326143089", + "swapFee": "13060731168897024", "reserves": [ - "5202797215792573370961044", - "2611160035768849063473939" + "4131250781823495192994543", + "2836963847830393350550663" ], - "LPTokenSupply": "7694372425457135143764882" + "LPTokenSupply": "6893162882732661988109319" }, { - "type": "redeemMasset", - "inputQty": "18760968565563580219392", - "expectedQtys": [ - "12678220381784994292366", - "6362896921121688242490" + "type": "mintMulti", + "inputQtys": [ + "192400239659542969843712", + "187891703062231408181248" ], - "redemptionFee": "11256581139338148131", + "expectedQty": "376279892721662600445198", "reserves": [ - "5190118995410788376668678", - "2604797138847727375231449" + "4323651021483038162838255", + "3024855550892624758731911" ], - "LPTokenSupply": "7675612582549685497360303" + "LPTokenSupply": "7269442775454324588554517" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "10276327636394382983168", - "outputIndex": 0, - "expectedQty": "10333017879374171698695", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "59990314317950622892032", + "expectedQty": "60667309186386105661359", + "swapFee": "35994188590770373735", "reserves": [ - "5179785977531414204969983", - "2615073466484121758214617" + "4262983712296652057176896", + "3024855550892624758731911" ], - "LPTokenSupply": "7675612582549685497360303", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7209456060555233042699858" }, { - "type": "redeemMasset", - "inputQty": "1683935969209040281", - "expectedQtys": [ - "1135700163324535333", - "573371057390114697" - ], - "redemptionFee": "1010361581525424", + "type": "mint", + "inputIndex": 1, + "inputQty": "12941259806758060163072", + "expectedQty": "12819812231407141012796", "reserves": [ - "5179784841831250880434650", - "2615072893113064368099920" - ], - "LPTokenSupply": "7675610898714752446472564" + "4262983712296652057176896", + "3037796810699382818894983" + ] }, { "type": "mintMulti", "inputQtys": [ - "35950181236202358702080", - "147998140060482697953280" + "3665582183795677200384", + "1553163199951693938688" ], - "expectedQty": "181577259827313440551917", + "expectedQty": "5161188772674724528108", "reserves": [ - "5215735023067453239136730", - "2763071033173547066053200" + "4266649294480447734377280", + "3039349973899334512833671" ], - "LPTokenSupply": "7857188158542065887024481" + "LPTokenSupply": "7227437061559314908240762" }, { "type": "redeemMasset", - "inputQty": "17864541717892196990976", + "inputQty": "2326544427154141505126", "expectedQtys": [ - "11851671106829323841462", - "6278503218654877312909" - ], - "redemptionFee": "10718725030735318194", - "reserves": [ - "5203883351960623915295268", - "2756792529954892188740291" - ], - "LPTokenSupply": "7839324688696676763565324" - }, - { - "type": "mintMulti", - "inputQtys": [ - "343909153875668", - "197144253138983232" + "1372629484658709277072", + "977793369088921048663" ], - "expectedQty": "195106626879077282", + "redemptionFee": "1395926656292484903", "reserves": [ - "5203883352304533069170936", - "2756792727099145327723523" + "4265276664995789025100208", + "3038372180530245591785008" ], - "LPTokenSupply": "7839324883803303642642606" + "LPTokenSupply": "7225110656724826395984126" }, { - "type": "redeemMasset", - "inputQty": "844046844993216184320", - "expectedQtys": [ - "559957138847464143798", - "296641116518938916138" - ], - "redemptionFee": "506428106995929710", + "type": "redeem", + "inputIndex": 0, + "inputQty": "25438547687561909764096", + "expectedQty": "25724600847266156251971", + "swapFee": "15263128612537145858", "reserves": [ - "5203323395165685605027138", - "2756496085982626388807385" + "4239552064148522868848237", + "3038372180530245591785008" ], - "LPTokenSupply": "7838480887601121126051257" + "LPTokenSupply": "7199673635350125739934615" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "517543573082306969600", - "expectedQty": "526143461333554070216", - "swapFee": "310526143849384181", + "inputIndex": 1, + "inputQty": "187974171621347196928", + "expectedQty": "189648015430451004655", + "swapFee": "112784502972808318", "reserves": [ - "5202797251704352050956922", - "2756496085982626388807385" + "4239552064148522868848237", + "3038182532514815140780353" ], - "LPTokenSupply": "7837963375080653204020075" + "LPTokenSupply": "7199485672456954690018518" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "47075548672620339658752", - "expectedQty": "47856994059810893556755", - "swapFee": "28245329203572203795", + "type": "mintMulti", + "inputQtys": [ + "315654727722038788096", + "141757600926575476736" + ], + "expectedQty": "452381888456944998678", "reserves": [ - "5154940257644541157400167", - "2756496085982626388807385" + "4239867718876244907636333", + "3038324290115741716257089" ], - "LPTokenSupply": "7790890650940953221581702" + "LPTokenSupply": "7199938054345411635017196" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "202271349361698729361408", - "expectedQty": "204575349056726512740982", - "swapFee": "121362809617019237616", + "inputQty": "72547683900697679495168", + "expectedQty": "73189728725670100307975", + "swapFee": "43528610340418607697", "reserves": [ - "5154940257644541157400167", - "2551920736925899876066403" + "4239867718876244907636333", + "2965134561390071615949114" ], - "LPTokenSupply": "7588631437860216194144055" + "LPTokenSupply": "7127394723305747997382797" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "112591967024087793664", - "expectedQty": "110655736369955621678", - "reserves": [ - "5155052849611565245193831", - "2551920736925899876066403" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "17042952516188805120", - "expectedQty": "17330762391555613988", - "swapFee": "10225771509713283", + "type": "redeemBassets", + "inputQtys": [ + "71561171299794280", + "25185484651854752" + ], + "expectedQty": "95668436152530817", + "swapFee": "57435523005321", "reserves": [ - "5155035518849173689579843", - "2551920736925899876066403" + "4239867647315073607842053", + "2965134536204586964094362" ], - "LPTokenSupply": "7588725051666647111931941" + "LPTokenSupply": "7127394627585619874147190" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "7947524458534364250112", - "expectedQty": "8035808526336788950661", - "swapFee": "4768514675120618550", + "type": "mintMulti", + "inputQtys": [ + "110872472349787160576", + "106176077650121998336" + ], + "expectedQty": "214752262468229930285", "reserves": [ - "5155035518849173689579843", - "2543884928399563087115742" + "4239978519787423395002629", + "2965240712282237086092698" ], - "LPTokenSupply": "7580778004059580259743684" + "LPTokenSupply": "7127609379848088104077475" }, { "type": "mintMulti", "inputQtys": [ - "11408683250436615962624", - "36425589095545926844416" + "2491388203271991590912", + "4147570310185253601280" ], - "expectedQty": "47215174050847827225001", + "expectedQty": "6570938901722453174828", "reserves": [ - "5166444202099610305542467", - "2580310517495109013960158" + "4242469907990695386593541", + "2969388282592422339693978" ], - "LPTokenSupply": "7627993178110428086968685" + "LPTokenSupply": "7134180318749810557252303" }, { - "type": "redeemBassets", - "inputQtys": [ - "533567077081250267136", - "2648246692323761586176" + "type": "redeemMasset", + "inputQty": "280764260419729201561", + "expectedQtys": [ + "166861390170599241891", + "116789574831498478787" ], - "expectedQty": "3141791645456500271259", - "swapFee": "1886206711300680571", + "redemptionFee": "168458556251837520", "reserves": [ - "5165910635022529055275331", - "2577662270802785252373982" + "4242303046600524787351650", + "2969271493017590841215191" ], - "LPTokenSupply": "7624849688878931416084911" + "LPTokenSupply": "7133899571335246453234494" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "298597097680877649920", - "outputIndex": 1, - "expectedQty": "296692245259794172665", - "swapFee": "234776459213010187", + "inputQty": "132925966509963330191360", + "expectedQty": "131352934078541380359395", "reserves": [ - "5166209232120209932925251", - "2577365578557525458201317" - ], - "LPTokenSupply": "7624849712356577337385929", - "hardLimitError": false, - "insufficientLiquidityError": false + "4375229013110488117543010", + "2969271493017590841215191" + ] }, { "type": "redeemBassets", "inputQtys": [ - "149054592131173967724544", - "25834824734375174733824" + "1546795547478235283456", + "515183611281743020032" ], - "expectedQty": "172032689508380916324996", - "swapFee": "103281582654621322588", + "expectedQty": "2038870095869143251343", + "swapFee": "1224056491416335752", "reserves": [ - "5017154639989035965200707", - "2551530753823150283467493" + "4373682217563009882259554", + "2968756309406309098195159" ], - "LPTokenSupply": "7452724069423807261870602" + "LPTokenSupply": "7263212533667076415640368" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "73648493859674907475968", + "expectedQty": "72968093343549744070236", + "reserves": [ + "4373682217563009882259554", + "3042404803265984005671127" + ] + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "114906919715874734604288", - "expectedQty": "116189481377467822635745", - "swapFee": "68944151829524840762", + "inputQty": "14165118273771175673856", + "outputIndex": 0, + "expectedQty": "14200670427860069457492", + "swapFee": "0", "reserves": [ - "5017154639989035965200707", - "2435341272445682460831748" + "4359481547135149812802062", + "3056569921539755181344983" ], - "LPTokenSupply": "7337824044123115479750390" + "LPTokenSupply": "7336180627010626159710604", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "507010496685808435", - "expectedQtys": [ - "346454725630391986", - "168170118902968961" + "type": "mintMulti", + "inputQtys": [ + "156911798404392727609344", + "84258294532714939809792" + ], + "expectedQty": "238535122134795731957501", + "reserves": [ + "4516393345539542540411406", + "3140828216072470121154775" + ], + "LPTokenSupply": "7574715749145421891668105" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "17976053615205030035456", + "46213573846877998153728" ], - "redemptionFee": "304206298011485", + "expectedQty": "63548777956039581372661", + "swapFee": "38152158068464827720", "reserves": [ - "5017154293534310334808721", - "2435341104275563557862787" + "4498417291924337510375950", + "3094614642225592123001047" ], - "LPTokenSupply": "7337823537143039423743103" + "LPTokenSupply": "7511132634247120691950495" }, { "type": "redeemMasset", - "inputQty": "20186266086673107596083", + "inputQty": "12612303032152013209", "expectedQtys": [ - "13793851063314913719473", - "6695574924621614317407" + "7548976109283596005", + "5193198070694489089" ], - "redemptionFee": "12111759652003864557", + "redemptionFee": "7567381819291207", "reserves": [ - "5003360442470995421089248", - "2428645529350941943545380" + "4498409742948228226779945", + "3094609449027521428511958" ], - "LPTokenSupply": "7317638482232331516533475" + "LPTokenSupply": "7511120022700826721866406" }, { "type": "mint", "inputIndex": 0, - "inputQty": "66903561411848536", - "expectedQty": "65746631586857996", + "inputQty": "95886458674787794944", + "expectedQty": "94750766316647677500", "reserves": [ - "5003360509374556832937784", - "2428645529350941943545380" + "4498505629406903014574889", + "3094609449027521428511958" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "72491008977063520", - "expectedQty": "73722358239530282", - "swapFee": "43494605386238", - "reserves": [ - "5003360435652198593407502", - "2428645529350941943545380" - ], - "LPTokenSupply": "7317638475492303586866574" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1998528014551049568256", - "793721701262531887104" - ], - "expectedQty": "2748589298347946165727", + "inputQty": "28250278861781027782656", + "expectedQty": "28571447346211075689190", + "swapFee": "16950167317068616669", "reserves": [ - "5005358963666749642975758", - "2429439251052204475432484" + "4469934182060691938885699", + "3094609449027521428511958" ], - "LPTokenSupply": "7320387064790651533032301" + "LPTokenSupply": "7482966189622094048622916" }, { - "type": "mintMulti", - "inputQtys": [ - "2220570344367764013056", - "1963945907854728757248" + "type": "redeemMasset", + "inputQty": "242519806972899123", + "expectedQtys": [ + "144781777575374514", + "100234821964470580" ], - "expectedQty": "4123597665280465554084", + "redemptionFee": "145511884183739", "reserves": [ - "5007579534011117406988814", - "2431403196960059204189732" + "4469934037278914363511185", + "3094609348792699464041378" ], - "LPTokenSupply": "7324510662455931998586385" + "LPTokenSupply": "7482965947116838264142166" }, { - "type": "redeemBassets", - "inputQtys": [ - "237606157631027871744", - "199503708898980593664" + "type": "redeemMasset", + "inputQty": "49254812361310234214", + "expectedQtys": [ + "29404605656533944572", + "20357295388114179280" ], - "expectedQty": "430713372631622282963", - "swapFee": "258583173483063207", + "redemptionFee": "29552887416786140", "reserves": [ - "5007341927853486379117070", - "2431203693251160223596068" + "4469904632673257829566613", + "3094588991497311349862098" ], - "LPTokenSupply": "7324079716358444241546534" + "LPTokenSupply": "7482916695259765695586566" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "8503779683520084967424", - "expectedQty": "8648190384161151437584", - "swapFee": "5102267810112050980", + "type": "swap", + "inputIndex": 1, + "inputQty": "3047768719391068258304", + "outputIndex": 0, + "expectedQty": "3055604259487900619525", + "swapFee": "0", "reserves": [ - "4998693737469325227679486", - "2431203693251160223596068" + "4466849028413769928947088", + "3097636760216702418120402" ], - "LPTokenSupply": "7315576446901705167784208" + "LPTokenSupply": "7482916695259765695586566", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "4746599825377533414604", + "inputQty": "2098726516047359246336", "expectedQtys": [ - "3241379939667992547431", - "1576502841428461339363" + "1252061203400534850626", + "868269956075039850068" ], - "redemptionFee": "2847959895226520048", + "redemptionFee": "1259235909628415547", "reserves": [ - "4995452357529657235132055", - "2429627190409731762256705" + "4465596967210369394096462", + "3096768490260627378270334" ], - "LPTokenSupply": "7310830131872317157021608" + "LPTokenSupply": "7480818094667309299181784" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "137712602009449070067712", - "expectedQty": "136102914261046896750841", + "type": "mintMulti", + "inputQtys": [ + "2535076101934648131584", + "1055227559830209298432" + ], + "expectedQty": "3550536294846465913041", "reserves": [ - "4995452357529657235132055", - "2567339792419180832324417" - ] + "4468132043312304042228046", + "3097823717820457587568766" + ], + "LPTokenSupply": "7484368630962155765094825" }, { "type": "redeemBassets", "inputQtys": [ - "73786046141708320", - "200018340084881984" + "11948546547111663616", + "4405246380441122304" ], - "expectedQty": "270166480844583314", - "swapFee": "162197206830848", + "expectedQty": "16171633738565392338", + "swapFee": "9708805526455108", "reserves": [ - "4995452283743611093423735", - "2567339592400840747442433" + "4468120094765756930564430", + "3097819312574077146446462" ], - "LPTokenSupply": "7446932775820905723041370" + "LPTokenSupply": "7484352450590492225892888" }, { "type": "redeemBassets", "inputQtys": [ - "1665977531668016136192", - "3174432884340272136192" + "2861313109501083648", + "3533434190817501696" ], - "expectedQty": "4774225746438681957125", - "swapFee": "2866255200983799453", + "expectedQty": "6328110513802779961", + "swapFee": "3799145795759123", "reserves": [ - "4993786306211943077287543", - "2564165159516500475306241" + "4468117233452647429480782", + "3097815779139886328944766" ], - "LPTokenSupply": "7442155970444786155664736" + "LPTokenSupply": "7484346119060747206929715" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "8388904436204029952", - "expectedQty": "8245553439658483460", + "inputQty": "347556145770627203072", + "expectedQty": "351502943340100270916", + "swapFee": "208533687462376321", "reserves": [ - "4993794695116379281317495", - "2564165159516500475306241" - ] + "4467765730509307329209866", + "3097815779139886328944766" + ], + "LPTokenSupply": "7483998583768345325964275" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "744198541017751552", - "expectedQty": "752693594143906062", - "swapFee": "446519124610650", + "inputQty": "20763846981321703424", + "outputIndex": 0, + "expectedQty": "20817117039753089984", + "swapFee": "0", "reserves": [ - "4993794695116379281317495", - "2564164406822906331400179" + "4467744913392267576119882", + "3097836542986867650648190" ], - "LPTokenSupply": "7442163471844336708857709" + "LPTokenSupply": "7483998583768345325964275", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "470224212651797184", - "expectedQty": "475591838179693701", - "swapFee": "282134527591078", + "inputIndex": 0, + "inputQty": "19033062428931784704", + "expectedQty": "19249196390496576464", + "swapFee": "11419837457359070", "reserves": [ - "4993794695116379281317495", - "2564163931231068151706478" + "4467725664195877079543418", + "3097836542986867650648190" ], - "LPTokenSupply": "7442163001648337509819632" + "LPTokenSupply": "7483979551847900139915478" }, { - "type": "mintMulti", - "inputQtys": [ - "9617094410986714038272", - "6651602753888798638080" + "type": "redeemMasset", + "inputQty": "59806419303704499", + "expectedQtys": [ + "35681331483093199", + "24740760932698971" ], - "expectedQty": "16025337364849620257728", + "redemptionFee": "35883851582222", "reserves": [ - "5003411789527365995355767", - "2570815533984956950344558" + "4467725628514545596450219", + "3097836518246106717949219" ], - "LPTokenSupply": "7458188339013187130077360" + "LPTokenSupply": "7483979492045069221369201" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "194844711614075495251968", - "outputIndex": 1, - "expectedQty": "193537422750222299161220", - "swapFee": "153201662504650217954", - "reserves": [ - "5198256501141441490607735", - "2377278111234734651183338" + "type": "mintMulti", + "inputQtys": [ + "741329977880189730816", + "661356745804589039616" ], - "LPTokenSupply": "7458203659179437595099155", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "144507643573783008116736", - "expectedQty": "142882080398493062176231", + "expectedQty": "1387781511454089644569", "reserves": [ - "5198256501141441490607735", - "2521785754808517659300074" - ] + "4468466958492425786181035", + "3098497874991911306988835" + ], + "LPTokenSupply": "7485367273556523311013770" }, { "type": "redeemMasset", - "inputQty": "5178212098429768066662", + "inputQty": "9217058370675148390", "expectedQtys": [ - "3539168616406451858991", - "1716926626987219658922" + "5498916433505953368", + "3813026042767185639" ], - "redemptionFee": "3106927259057860839", + "redemptionFee": "5530235022405089", "reserves": [ - "5194717332525035038748744", - "2520068828181530439641152" + "4468461459575992280227667", + "3098494061965868539803196" ], - "LPTokenSupply": "7595907838172226794994807" + "LPTokenSupply": "7485358057051176138105888" }, { - "type": "redeemBassets", - "inputQtys": [ - "297382300606808960", - "507623319018105408" + "type": "redeemMasset", + "inputQty": "3474863746085273190", + "expectedQtys": [ + "2073111029766442916", + "1437524363505821026" ], - "expectedQty": "794028290819526205", - "swapFee": "476702996289489", + "redemptionFee": "2084918247651163", "reserves": [ - "5194717035142734431939784", - "2520068320558211421535744" + "4468459386464962513784751", + "3098492624441505033982170" ], - "LPTokenSupply": "7595907043714903278808060" + "LPTokenSupply": "7485354582395921877597814" }, { "type": "mint", "inputIndex": 1, - "inputQty": "7665193494299642167296", - "expectedQty": "7577095936519005642895", + "inputQty": "929795238710878666752", + "expectedQty": "921160000538639841158", "reserves": [ - "5194717035142734431939784", - "2527733514052511063703040" + "4468459386464962513784751", + "3099422419680215912648922" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "35181340573955962961920", - "expectedQty": "35567491368775632627981", - "swapFee": "21108804344373577777", + "inputIndex": 0, + "inputQty": "563011949977808108781568", + "expectedQty": "569285036311710994042798", + "swapFee": "337807169986684865268", "reserves": [ - "5194717035142734431939784", - "2492166022683735431075059" + "3899174350153251519741953", + "3099422419680215912648922" ], - "LPTokenSupply": "7568304909957900758846812" + "LPTokenSupply": "6923297573135651077143930" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "739535034744328290304", - "1317343381893607063552" + "2241969293490138906624", + "11485644172340741799936" ], - "expectedQty": "2029027938443166605284", - "swapFee": "1218147651656894099", + "expectedQty": "13588165604115520489418", "reserves": [ - "5193977500107990103649480", - "2490848679301841824011507" + "3901416319446741658648577", + "3110908063852556654448858" ], - "LPTokenSupply": "7566274785686571101036837" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "78163879869476434345984", - "expectedQty": "77263872943068472761601", - "reserves": [ - "5193977500107990103649480", - "2569012559171318258357491" - ] + "LPTokenSupply": "6936885738739766597633348" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10153445377466024591360", - "10491317208060174270464" + "38391152911524323328", + "14063553828634841088" ], - "expectedQty": "20347598207769005670504", + "expectedQty": "51876448575568037008", + "swapFee": "31144555878868143", "reserves": [ - "5204130945485456128240840", - "2579503876379378432627955" + "3901377928293830134325249", + "3110894000298728019607770" ], - "LPTokenSupply": "7663886256837408579468942" + "LPTokenSupply": "6936833834261090738615010" }, { "type": "redeemMasset", - "inputQty": "876766075180020137984", + "inputQty": "43161981353342946508", "expectedQtys": [ - "595007236237305247805", - "294924068672668027704" + "24260371618149366749", + "19344817625736646790" ], - "redemptionFee": "526059645108012082", + "redemptionFee": "25897188812005767", "reserves": [ - "5203535938249218822993035", - "2579208952310705764600251" + "3901353667922211984958500", + "3110874655481102282960980" ], - "LPTokenSupply": "7663009543368193070132166" + "LPTokenSupply": "6936790674869456276869078" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "52734726998031647899648", - "expectedQty": "53319915598182000816851", - "swapFee": "31640836198818988739", + "inputQty": "185325868563088657088512", + "expectedQty": "187046508033818433394097", + "swapFee": "111195521137853194253", "reserves": [ - "5203535938249218822993035", - "2525889036712523763783400" + "3901353667922211984958500", + "2923828147447283849566883" ], - "LPTokenSupply": "7610277980453781304131391" + "LPTokenSupply": "6751475925858481405099991" }, { - "type": "redeemMasset", - "inputQty": "1346180935647138676736", - "expectedQtys": [ - "919900423542951304742", - "446536052074646534034" - ], - "redemptionFee": "807708561388283206", + "type": "redeem", + "inputIndex": 0, + "inputQty": "23860698619524352573440", + "expectedQty": "24126911171164661135841", + "swapFee": "14316419171714611544", "reserves": [ - "5202616037825675871688293", - "2525442500660449117249366" + "3877226756751047323822659", + "2923828147447283849566883" ], - "LPTokenSupply": "7608931880288990304282975" + "LPTokenSupply": "6727616658880874223987705" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1738095023364670464", - "763495081654971264" + "2180583315152725606400", + "1203053385255347552256" ], - "expectedQty": "2462713953227739608", - "swapFee": "1478515481225378", + "expectedQty": "3346619101548533808700", "reserves": [ - "5202614299730652507017829", - "2525441737165367462278102" + "3879407340066200049429059", + "2925031200832539197119139" ], - "LPTokenSupply": "7608929416244373143440525" + "LPTokenSupply": "6730963277982422757796405" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1140796892747400740864", - "850483316314230489088" + "45193926435916512", + "292466988437595520" ], - "expectedQty": "1961748612759361321780", + "expectedQty": "334296441314425895", + "swapFee": "200698283758910", "reserves": [ - "5203755096623399907758693", - "2526292220481681692767190" + "3879407294872273613512547", + "2925030908365550759523619" ], - "LPTokenSupply": "7610891164857132504762305" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "104361178566180825202688", - "expectedQty": "102549933449953054906366", - "reserves": [ - "5308116275189580732961381", - "2526292220481681692767190" - ] + "LPTokenSupply": "6730962943505352987987490" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1863830863546130104320", - "expectedQty": "1895682440543577708644", - "swapFee": "1118298518127678062", + "type": "mintMulti", + "inputQtys": [ + "160748524236890669056", + "34895907074851803136" + ], + "expectedQty": "193437759924962707886", "reserves": [ - "5306220592749037155252737", - "2526292220481681692767190" + "3879568043396510504181603", + "2925065804272625611326755" ], - "LPTokenSupply": "7711577379273391242332157" + "LPTokenSupply": "6731156381265277950695376" }, { - "type": "redeemBassets", - "inputQtys": [ - "1869308117346961326080", - "21916527057516859392" - ], - "expectedQty": "1858467110827971342629", - "swapFee": "1115749716326578752", + "type": "swap", + "inputIndex": 0, + "inputQty": "79701325537313827061760", + "outputIndex": 1, + "expectedQty": "79469794388232348550324", + "swapFee": "63018135362030020842", "reserves": [ - "5304351284631690193926657", - "2526270303954624175907798" + "3959269368933824331243363", + "2845596009884393262776431" ], - "LPTokenSupply": "7709717907987818577068650" + "LPTokenSupply": "6731162683078814153697460", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "1088614514972675171942", + "inputQty": "4299677065678184618393", "expectedQtys": [ - "748526630099441194547", - "356496109678517805236" + "2527552275239850792687", + "1816595942077451913904" ], - "redemptionFee": "653168708983605103", + "redemptionFee": "2579806239406910771", "reserves": [ - "5303602758001590752732110", - "2525913807844945658102562" + "3956741816658584480450676", + "2843779413942315810862527" ], - "LPTokenSupply": "7708629358789716800257218" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1730668506514433507328", - "expectedQty": "1711030267107991018275", - "reserves": [ - "5303602758001590752732110", - "2527644476351460091609890" - ] + "LPTokenSupply": "6726863263993759909770144" }, { - "type": "redeemMasset", - "inputQty": "703670364954581427814", - "expectedQtys": [ - "483733364189433798161", - "230542523980632712732" + "type": "redeemBassets", + "inputQtys": [ + "39301738687918902345728", + "13972983963713477279744" ], - "redemptionFee": "422202218972748856", + "expectedQty": "52679052942884765847135", + "swapFee": "31626407610297037730", "reserves": [ - "5303119024637401318933949", - "2527413933827479458897158" + "3917440077970665578104948", + "2829806429978602333582783" ], - "LPTokenSupply": "7709636760912092107122564" + "LPTokenSupply": "6674155747284025876589051" }, { "type": "redeemBassets", "inputQtys": [ - "91075684445296304", - "73286496455026528" + "13249315187958256500736", + "12419038285703170490368" ], - "expectedQty": "161946766377317883", - "swapFee": "97226395663789", + "expectedQty": "25393982956621286802221", + "swapFee": "15245537096230510387", "reserves": [ - "5303118933561716873637645", - "2527413860540983003870630" + "3904190762782707321604212", + "2817387391692899163092415" ], - "LPTokenSupply": "7709636598877821973707269" + "LPTokenSupply": "6648748043344017982327480" }, { "type": "mintMulti", "inputQtys": [ - "1999363885543326464", - "1499673914066858496" + "5132534670090", + "16530272143588" ], - "expectedQty": "3447251802805077494", + "expectedQty": "21444720991443", "reserves": [ - "5303120932925602416964109", - "2527415360214897070729126" + "3904190762787839856274302", + "2817387391709429435236003" ], - "LPTokenSupply": "7709640046129624778784763" + "LPTokenSupply": "6648748043365462703318923" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "5581028249546626433024", - "outputIndex": 1, - "expectedQty": "5542399073713132143511", - "swapFee": "4387179808259439775", - "reserves": [ - "5308701961175149043397133", - "2521872961141183938585615" + "type": "mintMulti", + "inputQtys": [ + "232603861133556776960", + "280116242124361433088" ], - "LPTokenSupply": "7709640484847605604728740", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "29204324850277728256", - "expectedQty": "28873593892165821473", + "expectedQty": "507310242006275694159", "reserves": [ - "5308701961175149043397133", - "2521902165466034216313871" - ] + "3904423366648973413051262", + "2817667507951553796669091" + ], + "LPTokenSupply": "6649255353607468979013082" }, { "type": "redeemBassets", "inputQtys": [ - "2597961095087701622784", - "7937046248455808221184" + "11242738450809487360000", + "3731074726566763167744" ], - "expectedQty": "10399987071632625689995", - "swapFee": "6243738486071218144", + "expectedQty": "14805899677525521180284", + "swapFee": "8888873130393548837", "reserves": [ - "5306104000080061341774349", - "2513965119217578408092687" + "3893180628198163925691262", + "2813936433224987033501347" ], - "LPTokenSupply": "7699263752005227680763887" + "LPTokenSupply": "6634441453944126103638843" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1816110734305977171968", - "expectedQty": "1795575738860538403180", + "inputIndex": 0, + "inputQty": "28941965193617376018432", + "expectedQty": "28601056824133516995392", "reserves": [ - "5306104000080061341774349", - "2515781229951884385264655" + "3922122593391781301709694", + "2813936433224987033501347" ] }, { - "type": "mintMulti", - "inputQtys": [ - "99082282759612000108544", - "75915560536729924403200" - ], - "expectedQty": "172413051083842843841865", + "type": "mint", + "inputIndex": 0, + "inputQty": "296589756136410578944", + "expectedQty": "293092756564181062017", "reserves": [ - "5405186282839673341882893", - "2591696790488614309667855" - ], - "LPTokenSupply": "7873472378827931063008932" + "3922419183147917712288638", + "2813936433224987033501347" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1845001281063184498688", - "1971622889525051654144" + "31316576065911294787584", + "32861739720529659559936" ], - "expectedQty": "3762107189488691865696", + "expectedQty": "63496509175063773450321", + "swapFee": "38120777971821356884", "reserves": [ - "5407031284120736526381581", - "2593668413378139361321999" + "3891102607082006417501054", + "2781074693504457373941411" ], - "LPTokenSupply": "7877234486017419754874628" + "LPTokenSupply": "6599804785649585389024734" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3271982776835807641600", - "outputIndex": 0, - "expectedQty": "3291800907597376054771", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "2025542852981418465689", + "expectedQtys": [ + "1193499864734475954617", + "853026148545378215231" + ], + "redemptionFee": "1215325711788851079", "reserves": [ - "5403739483213139150326810", - "2596940396154975168963599" + "3889909107217271941546437", + "2780221667355911995726180" ], - "LPTokenSupply": "7877234486017419754874628", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6597779364329175149444152" }, { "type": "redeemBassets", "inputQtys": [ - "288615399224273652416512", - "13853935738439744880640" + "36374444706048749568", + "57848984452471840768" ], - "expectedQty": "297325143892455948286341", - "swapFee": "178502187648062406415", + "expectedQty": "93244193858757883592", + "swapFee": "55980104377881459", "reserves": [ - "5115124083988865497910298", - "2583086460416535424082959" + "3889872732772565892796869", + "2780163818371459523885412" ], - "LPTokenSupply": "7579748690156080550422512" + "LPTokenSupply": "6597686069753222451467245" }, { "type": "redeemMasset", - "inputQty": "7306970414796563388825", + "inputQty": "250797120771623116", "expectedQtys": [ - "4928083534223481210902", - "2488632855046503693479" + "147776588626767499", + "105618654677596006" ], - "redemptionFee": "4384182248877938033", + "redemptionFee": "150478272462973", "reserves": [ - "5110196000454642016699396", - "2580597827561488920389480" + "3889872584995977266029370", + "2780163712752804846289406" ], - "LPTokenSupply": "7572442158159508874827490" + "LPTokenSupply": "6597685818971149507090426" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "90845594001880794529792", - "expectedQty": "91863813981340001310050", - "swapFee": "54507356401128476717", + "inputIndex": 0, + "inputQty": "81683352460738248572928", + "expectedQty": "82606993381834785222629", + "swapFee": "49010011476442949143", "reserves": [ - "5110196000454642016699396", - "2488734013580148919079430" + "3807265591614142480806741", + "2780163712752804846289406" ], - "LPTokenSupply": "7481602014893268193145369" + "LPTokenSupply": "6516007367511558902812412" }, { - "type": "redeemMasset", - "inputQty": "124995565618664570880", - "expectedQtys": [ - "85325119823882120307", - "41554478125614920994" - ], - "redemptionFee": "74997339371198742", + "type": "mint", + "inputIndex": 1, + "inputQty": "558789625604748", + "expectedQty": "553423978620947", "reserves": [ - "5110110675334818134579089", - "2488692459102023304158436" - ], - "LPTokenSupply": "7481477026827383465694363" + "3807265591614142480806741", + "2780163713311594471894154" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "95571059529706733568", - "expectedQty": "96629522557123807274", - "swapFee": "57342635717824040", + "inputIndex": 0, + "inputQty": "2311726126934855778304", + "expectedQty": "2337800294866944312927", + "swapFee": "1387035676160913466", "reserves": [ - "5110110675334818134579089", - "2488595829579466180351162" + "3804927791319275536493814", + "2780163713311594471894154" ], - "LPTokenSupply": "7481381461502117330743199" + "LPTokenSupply": "6513695780641615641746401" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "21883900212130214838272", - "expectedQty": "22256427256249440964903", - "swapFee": "13130340127278128902", + "type": "redeemBassets", + "inputQtys": [ + "6115216315655756185600", + "8419398494872579080192" + ], + "expectedQty": "14381929548891674811167", + "swapFee": "8634338332334405530", "reserves": [ - "5087854248078568693614186", - "2488595829579466180351162" + "3798812575003619780308214", + "2771744314816721892813962" ], - "LPTokenSupply": "7459498874323999843717817" + "LPTokenSupply": "6499306080188224865970256" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "4186553519123066368", - "expectedQty": "4138065290509471189", + "inputIndex": 0, + "inputQty": "133913080986067696", + "expectedQty": "132339408210910833", "reserves": [ - "5087854248078568693614186", - "2488600016132985303417530" + "3798812708916700766375910", + "2771744314816721892813962" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "132543264988356694507520", - "outputIndex": 1, - "expectedQty": "131605954480018106300044", - "swapFee": "104192841635481898077", + "type": "redeemBassets", + "inputQtys": [ + "2003074874028306202624", + "1661020590962117967872" + ], + "expectedQty": "3624610359023944513447", + "swapFee": "2176071858529484398", "reserves": [ - "5220397513066925388121706", - "2356994061652967197117486" + "3796809634042672460173286", + "2770083294225759774846090" ], - "LPTokenSupply": "7459513431673453901378813", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6495679643703936455831682" }, { - "type": "redeemMasset", - "inputQty": "173530399274336732053504", - "expectedQtys": [ - "121369059055540113134939", - "54797771768582360821989" - ], - "redemptionFee": "104118239564602039232", + "type": "mint", + "inputIndex": 1, + "inputQty": "31311230297811", + "expectedQty": "31010636990290", "reserves": [ - "5099028454011385274986767", - "2302196289884384836295497" - ], - "LPTokenSupply": "7285993444223073629529232" + "3796809634042672460173286", + "2770083294257071005143901" + ] }, { "type": "redeemBassets", "inputQtys": [ - "31290373528402120704", - "368704335461550272" + "563428987742475008", + "444294763165147776" ], - "expectedQty": "31102713391861242011", - "swapFee": "18672831734157239", + "expectedQty": "996837041773768705", + "swapFee": "598461301845368", "reserves": [ - "5098997163637856872866063", - "2302195921180049374745225" + "3796809070613684717698278", + "2770082849962307839996125" ], - "LPTokenSupply": "7285962324704133207545704" + "LPTokenSupply": "6495678646359290147392434" }, { - "type": "mintMulti", - "inputQtys": [ - "10163631014702678540288", - "3120597116499674529792" - ], - "expectedQty": "13070627239785480287942", + "type": "redeem", + "inputIndex": 0, + "inputQty": "604186893977536299008", + "expectedQty": "611004739115179473060", + "swapFee": "362512136386521779", "reserves": [ - "5109160794652559551406351", - "2305316518296549049275017" + "3796198065874569538225218", + "2770082849962307839996125" ], - "LPTokenSupply": "7299032951943918687833646" + "LPTokenSupply": "6495074495716526249745603" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "68931823771824480256", - "expectedQty": "67714894731821870169", + "inputIndex": 1, + "inputQty": "17520061103442912870400", + "expectedQty": "17351617191411813091487", "reserves": [ - "5109229726476331375886607", - "2305316518296549049275017" + "3796198065874569538225218", + "2787602911065750752866525" ] }, - { - "type": "redeemMasset", - "inputQty": "357899598139179", - "expectedQtys": [ - "250372504033239", - "112969645166681" - ], - "redemptionFee": "214739758883", - "reserves": [ - "5109229726225958871853368", - "2305316518183579404108336" - ], - "LPTokenSupply": "7299100666480772385540524" - }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "46999806965551272", - "expectedQty": "47491711240362551", - "swapFee": "28199884179330", + "inputIndex": 0, + "inputQty": "2438903446141238509568", + "expectedQty": "2466372847688042366841", + "swapFee": "1463342067684743105", "reserves": [ - "5109229726225958871853368", - "2305316470691868163745785" + "3793731693026881495858377", + "2787602911065750752866525" ], - "LPTokenSupply": "7299100619483785408407185" + "LPTokenSupply": "6509987355796003592801832" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3502460450241722880", - "3336506659460112384" + "75370645986506960797696", + "72920503707273078505472" ], - "expectedQty": "6740594577636606168", + "expectedQty": "146705012303396418023451", + "swapFee": "88075852893774115283", "reserves": [ - "5109233228686409113576248", - "2305319807198527623858169" + "3718361047040374535060681", + "2714682407358477674361053" ], - "LPTokenSupply": "7299107360078363045013353" + "LPTokenSupply": "6363203075225002778074625" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "13010251964060928000", - "expectedQty": "13146418207294426288", - "swapFee": "7806151178436556", + "type": "swap", + "inputIndex": 0, + "inputQty": "31236459752820630880256", + "outputIndex": 1, + "expectedQty": "31141494367878790345910", + "swapFee": "24694908501193558162", "reserves": [ - "5109233228686409113576248", - "2305306660780320329431881" + "3749597506793195165940937", + "2683540912990598884015143" ], - "LPTokenSupply": "7299094350607014101929008" + "LPTokenSupply": "6363205544715852897430441", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "7276993107232339", - "expectedQtys": [ - "5090706502829389", - "2296947327273906" - ], - "redemptionFee": "4366195864339", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2645273860402055680", + "expectedQty": "2675330359984902835", + "swapFee": "1587164316241233", "reserves": [ - "5109233223595702610746859", - "2305306658483373002157975" + "3749594831462835181038102", + "2683540912990598884015143" ], - "LPTokenSupply": "7299094343330457614283102" + "LPTokenSupply": "6363202899600708926998884" }, { - "type": "redeemMasset", - "inputQty": "7777961307339393230438", - "expectedQtys": [ - "5441164725949376456268", - "2455075492484219322149" + "type": "mintMulti", + "inputQtys": [ + "1233886563068755836928", + "1363930726935739498496" ], - "redemptionFee": "4666776784403635938", + "expectedQty": "2570220079013806180160", "reserves": [ - "5103792058869753234290591", - "2302851582990888782835826" + "3750828718025903936875030", + "2684904843717534623513639" ], - "LPTokenSupply": "7291316848700796661416257" + "LPTokenSupply": "6365773119679722733179044" }, { - "type": "redeemMasset", - "inputQty": "23195961446786454362521", - "expectedQtys": [ - "16227018228228811583037", - "7321696139472823572350" + "type": "redeemBassets", + "inputQtys": [ + "16987207517358845329408", + "66566510342064436150272" ], - "redemptionFee": "13917576868071872617", + "expectedQty": "82720610249460724131898", + "swapFee": "49662163447745081528", "reserves": [ - "5087565040641524422707554", - "2295529886851415959263476" + "3733841510508545091545622", + "2618338333375470187363367" ], - "LPTokenSupply": "7268122279011697014240997" + "LPTokenSupply": "6283007813483159038473769" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "5697807239445251883008", - "outputIndex": 0, - "expectedQty": "5736552186845631535535", - "swapFee": "0", + "inputQty": "41500631218296692146176", + "expectedQty": "41106987629752781638648", "reserves": [ - "5081828488454678791172019", - "2301227694090861211146484" - ], - "LPTokenSupply": "7268122279011697014240997", - "hardLimitError": false, - "insufficientLiquidityError": false + "3733841510508545091545622", + "2659838964593766879509543" + ] }, { - "type": "redeemMasset", - "inputQty": "120548895535523377971", - "expectedQtys": [ - "84236508797492388304", - "38145204494546911883" + "type": "mintMulti", + "inputQtys": [ + "108617868232879392161792", + "5346997330536481947648" ], - "redemptionFee": "72329337321314026", + "expectedQty": "112622648611948170944429", "reserves": [ - "5081744251945881298783715", - "2301189548886366664234601" + "3842459378741424483707414", + "2665185961924303361457191" ], - "LPTokenSupply": "7268001737349095222994428" + "LPTokenSupply": "6436737449724859991056846" }, { - "type": "redeemMasset", - "inputQty": "1517472359614335523225", - "expectedQtys": [ - "1060371182561559450074", - "480172744292784702363" + "type": "mintMulti", + "inputQtys": [ + "4823017538418791424", + "2589811933612331520" + ], + "expectedQty": "7330929007589504606", + "reserves": [ + "3842464201758962902498838", + "2665188551736236973788711" ], - "redemptionFee": "910483415768601313", + "LPTokenSupply": "6436744780653867580561452" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "33604853897236435697664", + "expectedQty": "33989823153250403052484", + "swapFee": "20162912338341861418", "reserves": [ - "5080683880763319739333641", - "2300709376142073879532238" + "3808474378605712499446354", + "2665188551736236973788711" ], - "LPTokenSupply": "7266484356037822464331334" + "LPTokenSupply": "6403141943047864979049929" }, { "type": "mintMulti", "inputQtys": [ - "207299319850584571904", - "5099478299415331995648" + "104635534459202624", + "1253042942922323" ], - "expectedQty": "5247055057533225031797", + "expectedQty": "104630739144871741", "reserves": [ - "5080891180083170323905545", - "2305808854441489211527886" + "3808474483241246958648978", + "2665188552989279916711034" ], - "LPTokenSupply": "7271731411095355689363131" + "LPTokenSupply": "6403142047678604123921670" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1372915928849216962560", - "expectedQty": "1387354844501261601425", - "swapFee": "823749557309530177", + "type": "redeemMasset", + "inputQty": "3364178975283229386342", + "expectedQtys": [ + "1999752973650557908395", + "1399436639954541664148" + ], + "redemptionFee": "2018507385169937631", "reserves": [ - "5080891180083170323905545", - "2304421499596987949926461" + "3806474730267596400740583", + "2663789116349325375046886" ], - "LPTokenSupply": "7270358577541462203353588" + "LPTokenSupply": "6399778070554059411529091" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "37475167127606118055936", - "expectedQty": "37866443361169579493088", - "swapFee": "22485100276563670833", + "inputQty": "2518787756357359501312", + "outputIndex": 0, + "expectedQty": "2525053840060190127043", + "swapFee": "0", "reserves": [ - "5080891180083170323905545", - "2266555056235818370433373" + "3803949676427536210613540", + "2666307904105682734548198" ], - "LPTokenSupply": "7232885658923883741664735" + "LPTokenSupply": "6399778070554059411529091", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2823314395355297280", - "2183206704657573632" + "1209315504364263833600", + "2208172420454428704768" ], - "expectedQty": "4932834147155840516", + "expectedQty": "3382221484773261169827", "reserves": [ - "5080894003397565679202825", - "2266557239442523028007005" + "3805158991931900474447140", + "2668516076526137163252966" ], - "LPTokenSupply": "7232890591758030897505251" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "6084872959751031357440", - "expectedQty": "6018739509738470275580", - "reserves": [ - "5080894003397565679202825", - "2272642112402274059364445" - ] + "LPTokenSupply": "6403160292038832672698918" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "732974307344098394112", - "expectedQty": "745728984806188131180", - "swapFee": "439784584406459036", + "inputQty": "24813745990697318612992", + "expectedQty": "25097297623877288116279", + "swapFee": "14888247594418391167", "reserves": [ - "5080148274412759491071645", - "2272642112402274059364445" + "3780061694308023186330861", + "2668516076526137163252966" ], - "LPTokenSupply": "7238176400938883710032622" + "LPTokenSupply": "6378348034872894795925042" }, { - "type": "redeemMasset", - "inputQty": "390716465779458126643", - "expectedQtys": [ - "274061660145393205436", - "122603521904741706109" + "type": "mintMulti", + "inputQtys": [ + "344816234671780986880", + "438334140743754514432" ], - "redemptionFee": "234429879467674875", + "expectedQty": "774895232246953941455", "reserves": [ - "5079874212752614097866209", - "2272519508880369317658336" + "3780406510542694967317741", + "2668954410666880917767398" ], - "LPTokenSupply": "7237785707916092198673466" + "LPTokenSupply": "6379122930105141749866497" }, { "type": "mint", "inputIndex": 1, - "inputQty": "8017735295480445796352", - "expectedQty": "7930363942337824538059", + "inputQty": "279643463053737497460736", + "expectedQty": "276930463745625781367380", "reserves": [ - "5079874212752614097866209", - "2280537244175849763454688" + "3780406510542694967317741", + "2948597873720618415228134" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1195128298128896", - "578492207585791" + "999147773437973495808", + "478269842842522681344" ], - "expectedQty": "1746178573160549", - "swapFee": "1048336145583", + "expectedQty": "1461118038915140713534", "reserves": [ - "5079874211557485799737313", - "2280537243597357555868897" + "3781405658316132940813549", + "2949076143563460937909478" ], - "LPTokenSupply": "7245716070111307947519950" + "LPTokenSupply": "6657514511889682671947411" }, { - "type": "redeemBassets", - "inputQtys": [ - "18050673383990601728", - "28651389283102494720" + "type": "redeemMasset", + "inputQty": "14464021916714315179622", + "expectedQtys": [ + "8210499221542982206037", + "6403276868153056885757" ], - "expectedQty": "46070275603339320688", - "swapFee": "27658760618374617", + "redemptionFee": "8678413150028589107", "reserves": [ - "5079856160884101809135585", - "2280508592208074453374177" + "3773195159094589958607512", + "2942672866695307881023721" ], - "LPTokenSupply": "7245669974942820051662105" + "LPTokenSupply": "6643051357814283359626699" }, { "type": "mintMulti", "inputQtys": [ - "59430775340459326701568", - "62503864625516207144960" + "293087985564063531008", + "4803463122060063014912" ], - "expectedQty": "120199454454630064190360", + "expectedQty": "5045571880386232710895", "reserves": [ - "5139286936224561135837153", - "2343012456833590660519137" + "3773488247080154022138520", + "2947476329817367944038633" ], - "LPTokenSupply": "7365869429397450115852465" + "LPTokenSupply": "6648096929694669592337594" }, { - "type": "redeemBassets", - "inputQtys": [ - "576118657510198214656", - "556379151844069474304" - ], - "expectedQty": "1116201545870051738647", - "swapFee": "670123001322824738", + "type": "swap", + "inputIndex": 1, + "inputQty": "106368102356098646016", + "outputIndex": 0, + "expectedQty": "106546682515205348358", + "swapFee": "0", "reserves": [ - "5138710817567050937622497", - "2342456077681746591044833" + "3773381700397638816790162", + "2947582697919724042684649" ], - "LPTokenSupply": "7364752624740878873571552" + "LPTokenSupply": "6648096929694669592337594", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "2414936812865610842112", - "expectedQty": "2388252957035141896998", + "inputQty": "59266317169581703168", + "expectedQty": "58678969947223759747", "reserves": [ - "5138710817567050937622497", - "2344871014494612201886945" + "3773381700397638816790162", + "2947641964236893624387817" ] }, { "type": "redeemMasset", - "inputQty": "413591041517363302", + "inputQty": "9889696978206820243865", "expectedQtys": [ - "288313960530963152", - "131561995435127984" + "5609858317768035234782", + "4382237235404491285865" ], - "redemptionFee": "248154624910417", + "redemptionFee": "5933818186924092146", "reserves": [ - "5138710529253090406659345", - "2344870882932616766758961" + "3767771842079870781555380", + "2943259727001489133101952" ], - "LPTokenSupply": "7367140464131687960596289" + "LPTokenSupply": "6638266505068228688262690" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "947334852240058", + "expectedQty": "936373965865189", + "reserves": [ + "3767771843027205633795438", + "2943259727001489133101952" + ] }, { "type": "redeemMasset", - "inputQty": "447477864479372135628", + "inputQty": "535497127324235571", "expectedQtys": [ - "311936435781045001676", - "142341286092071151211" + "303757075424925495", + "237285059748104674" ], - "redemptionFee": "268486718687623281", + "redemptionFee": "321298276394541", "reserves": [ - "5138398592817309361657669", - "2344728541646524695607750" + "3767771539270130208869943", + "2943259489716429384997278" ], - "LPTokenSupply": "7366693013115880457222989" + "LPTokenSupply": "6638265970539605157531762" }, { "type": "mintMulti", "inputQtys": [ - "8371898674605459505152", - "1830805415531289509888" + "215443110481147809759232", + "59476372052704856375296" ], - "expectedQty": "10034983810092387920753", + "expectedQty": "271829554818106602729283", "reserves": [ - "5146770491491914821162821", - "2346559347062055985117638" + "3983214649751278018629175", + "3002735861769134241372574" ], - "LPTokenSupply": "7376727996925972845143742" + "LPTokenSupply": "6910095525357711760261045" }, { "type": "swap", "inputIndex": 0, - "inputQty": "34099441132223036653568", + "inputQty": "256891870418734350336", "outputIndex": 1, - "expectedQty": "33841186323582110209482", - "swapFee": "26798567104335391689", + "expectedQty": "256190328785893481622", + "swapFee": "203112979301299733", "reserves": [ - "5180869932624137857816389", - "2312718160738473874908156" + "3983471541621696752979511", + "3002479671440348347890952" ], - "LPTokenSupply": "7376730676782683278682910", + "LPTokenSupply": "6910095545669009690391018", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "4296755225163418", - "16439316092504790" + "type": "redeemMasset", + "inputQty": "15124175794245369174425", + "expectedQtys": [ + "8713421606779052297219", + "6567605910997053574871" ], - "expectedQty": "20481366896217437", + "redemptionFee": "9074505476547221504", "reserves": [ - "5180869936920893082979807", - "2312718177177789967412946" + "3974758120014917700682292", + "2995912065529351294316081" ], - "LPTokenSupply": "7376730697264050174900347" + "LPTokenSupply": "6894972277325311975938743" }, { "type": "mintMulti", "inputQtys": [ - "259758150665266429952", - "424240116085508931584" - ], - "expectedQty": "674789253462332655234", - "reserves": [ - "5181129695071558349409759", - "2313142417293875476344530" - ], - "LPTokenSupply": "7377405486517512507555581" - }, - { - "type": "redeemMasset", - "inputQty": "10231466082465249", - "expectedQtys": [ - "7181216554946374", - "3206091643839853" + "2271523198789134581760", + "5680422908263218020352" ], - "redemptionFee": "6138879649479", + "expectedQty": "7869912399929684332076", "reserves": [ - "5181129687890341794463385", - "2313142414087783832504677" + "3977029643213706835264052", + "3001592488437614512336433" ], - "LPTokenSupply": "7377405476286660313055279" + "LPTokenSupply": "6902842189725241660270819" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "7999853316662189096960", - "expectedQty": "8139127083469143065855", - "swapFee": "4799911989997313458", - "reserves": [ - "5172990560806872651397530", - "2313142414087783832504677" - ], - "LPTokenSupply": "7369406102961197123689664" - }, - { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "926985237624606949376", - "expectedQty": "936619399241370406163", - "swapFee": "556191142574764169", + "inputQty": "11249716692630837919744", + "outputIndex": 0, + "expectedQty": "11271125741182554179290", + "swapFee": "0", "reserves": [ - "5172990560806872651397530", - "2312205794688542462098514" + "3965758517472524281084762", + "3012842205130245350256177" ], - "LPTokenSupply": "7368479173342686774216704" + "LPTokenSupply": "6902842189725241660270819", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "25273537460372873216", - "expectedQty": "25713515220470430515", - "swapFee": "15164122476223723", + "inputQty": "46858703398765676462080", + "expectedQty": "46311586353200621881770", "reserves": [ - "5172964847291652180967015", - "2312205794688542462098514" - ], - "LPTokenSupply": "7368453901321638648965860" + "4012617220871289957546842", + "3012842205130245350256177" + ] }, { "type": "mintMulti", "inputQtys": [ - "9756372704282042957824", - "9106225544232554201088" + "244112564384736448", + "13628560072784336896" ], - "expectedQty": "18590803011034325589100", + "expectedQty": "13736909411218445219", "reserves": [ - "5182721219995934223924839", - "2321312020232775016299602" + "4012617464983854342283290", + "3012855833690318134593073" ], - "LPTokenSupply": "7387044704332672974554960" + "LPTokenSupply": "6949167512987853500597808" }, { - "type": "redeemBassets", - "inputQtys": [ - "3114878281176595824640", - "3984391506770848120832" - ], - "expectedQty": "7000757666659089733876", - "swapFee": "4202976385826950010", + "type": "mint", + "inputIndex": 0, + "inputQty": "13097409287273324740608", + "expectedQty": "12944181250438061667008", "reserves": [ - "5179606341714757628100199", - "2317327628726004168178770" - ], - "LPTokenSupply": "7380040163987266640566074" + "4025714874271127667023898", + "3012855833690318134593073" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "107832573309646815232", - "323412698339070443520" - ], - "expectedQty": "425815795162913359760", + "type": "mint", + "inputIndex": 0, + "inputQty": "193088058190364258861056", + "expectedQty": "190813950043782096409047", "reserves": [ - "5179714174288067274915431", - "2317651041424343238622290" - ], - "LPTokenSupply": "7380465979782429553925834" + "4218802932461491925884954", + "3012855833690318134593073" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "73609557407172768", - "expectedQty": "74375190302258844", - "swapFee": "44165734444303", + "inputQty": "13178141395232694272", + "expectedQty": "13052432219741647898", "reserves": [ - "5179714174288067274915431", - "2317650967049152936363446" - ], - "LPTokenSupply": "7380465906177288720197496" + "4218802932461491925884954", + "3012869011831713367287345" + ] }, { - "type": "redeemMasset", - "inputQty": "19604493365160074385817", - "expectedQtys": [ - "13750452349494296864636", - "6152607675412706908165" + "type": "redeemBassets", + "inputQtys": [ + "461367805979178172416", + "179972923763875708928" ], - "redemptionFee": "11762696019096044631", + "expectedQty": "634156736064543416820", + "swapFee": "380722475123800330", "reserves": [ - "5165963721938572978050795", - "2311498359373740229455281" + "4218341564655512747712538", + "3012689038907949491578417" ], - "LPTokenSupply": "7360862589081730555416142" + "LPTokenSupply": "7152304197328001245484643" }, { - "type": "redeemBassets", - "inputQtys": [ - "2639663829317381120", - "3972906486414045184" - ], - "expectedQty": "6522590137469945264", - "swapFee": "3915903624656761", + "type": "mint", + "inputIndex": 1, + "inputQty": "84655708301786103808", + "expectedQty": "83848130552061966706", "reserves": [ - "5165961082274743660669675", - "2311494386467253815410097" - ], - "LPTokenSupply": "7360856062967279823279792" + "4218341564655512747712538", + "3012773694616251277682225" + ] }, { "type": "mintMulti", "inputQtys": [ - "28048468043930107904", - "72755169142911320064" + "4783456267456662732800", + "2806252203970137686016" ], - "expectedQty": "99514958527333465625", + "expectedQty": "7506254626316830516451", "reserves": [ - "5165989130742787590777579", - "2311567141636396726730161" + "4223125020922969410445338", + "3015579946820221415368241" ], - "LPTokenSupply": "7360955577925807156745417" + "LPTokenSupply": "7159894300084870137967800" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "995736368394171973632", - "expectedQty": "984891242589266509902", + "type": "redeemMasset", + "inputQty": "30768232752256612355276", + "expectedQtys": [ + "18137157517527292795606", + "12951084382110354373335" + ], + "redemptionFee": "18460939651353967413", "reserves": [ - "5165989130742787590777579", - "2312562878004790898703793" - ] + "4204987863405442117649732", + "3002628862438111060994906" + ], + "LPTokenSupply": "7129127913426578661009265" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "476684830751345999872", - "expectedQty": "481645161136374658465", - "swapFee": "286010898450807599", + "inputQty": "426412813679701312", + "expectedQty": "430262113479829714", + "swapFee": "255847688207820", "reserves": [ - "5165989130742787590777579", - "2312081232843654524045328" + "4204987863405442117649732", + "3002628432175997581165192" ], - "LPTokenSupply": "7361463812938734922336206" + "LPTokenSupply": "7129127487039349750128735" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "29505585925507902341120", - "expectedQty": "29810856363069628782705", - "swapFee": "17703351555304741404", + "type": "mint", + "inputIndex": 0, + "inputQty": "15552975683968082903040", + "expectedQty": "15368540550943860459505", "reserves": [ - "5165989130742787590777579", - "2282270376480584895262623" - ], - "LPTokenSupply": "7331959997348382550469226" + "4220540839089410200552772", + "3002628432175997581165192" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "481070432115833742295040", - "expectedQty": "472442300821261619412275", + "inputQty": "12864217315289881116672", + "expectedQty": "12711531382587783443680", "reserves": [ - "5647059562858621333072619", - "2282270376480584895262623" + "4233405056404700081669444", + "3002628432175997581165192" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "46272236781684800", - "expectedQty": "46707233946539065", - "swapFee": "27763342069010", + "inputQty": "1961373927813611782144", + "expectedQty": "1979017532770931493115", + "swapFee": "1176824356688167069", "reserves": [ - "5647059562858621333072619", - "2282270329773350948723558" + "4233405056404700081669444", + "3000649414643226649672077" ], - "LPTokenSupply": "7804402251900183722403602" + "LPTokenSupply": "7155246302727503451066482" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "28494338772285085712384", - "expectedQty": "29002400655359098748730", - "swapFee": "17096603263371051427", + "type": "redeemMasset", + "inputQty": "1520183434801517376307", + "expectedQtys": [ + "898877639719541962950", + "637127000020874784724" + ], + "redemptionFee": "912110060880910425", "reserves": [ - "5618057162203262234323889", - "2282270329773350948723558" + "4232506178764980539706494", + "3000012287643205774887353" ], - "LPTokenSupply": "7775909622788224973796360" + "LPTokenSupply": "7153726210503708021781217" }, { - "type": "mint", + "type": "redeemBassets", + "inputQtys": [ + "2228017708759257448448", + "259249690621060481024" + ], + "expectedQty": "2458343317298858281528", + "swapFee": "1475891525294491663", + "reserves": [ + "4230278161056221282258046", + "2999753037952584714406329" + ], + "LPTokenSupply": "7151266538884036398457191" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "120197751796640679723008", - "expectedQty": "118016903875405858171438", + "inputQty": "25556827601534827102208", + "expectedQty": "25848191410790037577117", + "swapFee": "15334096560920896261", "reserves": [ - "5738254913999902914046897", - "2282270329773350948723558" - ] + "4204429969645431244680929", + "2999753037952584714406329" + ], + "LPTokenSupply": "7125711244692157663444609" }, { "type": "redeemBassets", "inputQtys": [ - "3285489911467166720", - "2502497477143098368" + "113008689682020", + "373923015299883" ], - "expectedQty": "5703858040146749084", - "swapFee": "3424369445755502", + "expectedQty": "482024539030876", + "swapFee": "289388356432", "reserves": [ - "5738251628509991446880177", - "2282267827275873805625190" + "4204429969532422554998909", + "2999753037578661699106446" ], - "LPTokenSupply": "7893920819723658184038761" + "LPTokenSupply": "7125711244209872674892943" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "9766903381079210", - "expectedQty": "9589250951572883", + "type": "mintMulti", + "inputQtys": [ + "157416961364806808371200", + "106062118498516166770688" + ], + "expectedQty": "260600643365674251611999", "reserves": [ - "5738251638276894827959387", - "2282267827275873805625190" - ] + "4361846930897229363370109", + "3105815156077177865877134" + ], + "LPTokenSupply": "7386311887575546926504942" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "16336109117117038592000", - "expectedQty": "16038867281830378385480", + "inputQty": "72531031102209540096", + "outputIndex": 1, + "expectedQty": "72302289357901117602", + "swapFee": "57336419188981409", "reserves": [ - "5754587747394011866551387", - "2282267827275873805625190" - ] + "4361919461928331572910205", + "3105742853787819964759532" + ], + "LPTokenSupply": "7386311893309188845403082", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "14623957457145403392", - "expectedQty": "14357778740042622413", + "inputQty": "44198285313737640", + "expectedQty": "44702116335859351", + "swapFee": "26518971188242", "reserves": [ - "5754602371351469011954779", - "2282267827275873805625190" - ] + "4361919417226215237050854", + "3105742853787819964759532" + ], + "LPTokenSupply": "7386311849113555428784266" }, { - "type": "redeemBassets", - "inputQtys": [ - "102142588727242752000", - "276681740120015437824" - ], - "expectedQty": "374279625820551829871", - "swapFee": "224702597050561434", + "type": "redeem", + "inputIndex": 0, + "inputQty": "146458250104392065744896", + "expectedQty": "148119743349008367269352", + "swapFee": "87874950062635239446", "reserves": [ - "5754500228762741769202779", - "2281991145535753790187366" + "4213799673877206869781502", + "3105742853787819964759532" ], - "LPTokenSupply": "7909599572515321659284374" + "LPTokenSupply": "7239862386504169626563314" }, { - "type": "redeemMasset", - "inputQty": "557793063152768921", - "expectedQtys": [ - "405569762150302114", - "160831795869616566" + "type": "redeem", + "inputIndex": 0, + "inputQty": "76749597894372736", + "expectedQty": "77616880512212062", + "swapFee": "46049758736623", + "reserves": [ + "4213799596260326357569440", + "3105742853787819964759532" ], - "redemptionFee": "334675837891661", + "LPTokenSupply": "7239862309759176708064240" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "14919354442445376978944", + "expectedQty": "15087860446086677402844", + "swapFee": "8951612665467226187", "reserves": [ - "5754499823192979618900665", - "2281990984703957920570800" + "4198711735814239680166596", + "3105742853787819964759532" ], - "LPTokenSupply": "7909599014755726090304619" + "LPTokenSupply": "7224943850477997877807914" }, { - "type": "mintMulti", - "inputQtys": [ - "4363276671519109632", - "23345576980005339136" + "type": "redeem", + "inputIndex": 1, + "inputQty": "2807330065165154516992", + "expectedQty": "2833140112502977591417", + "swapFee": "1684398039099092710", + "reserves": [ + "4198711735814239680166596", + "3102909713675316987168115" ], - "expectedQty": "27402848017849727508", + "LPTokenSupply": "7222136688852636633200193" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "37291536183361844281344", + "outputIndex": 0, + "expectedQty": "37366297588732349314627", + "swapFee": "0", "reserves": [ - "5754504186469651138010297", - "2282014330280937925909936" + "4161345438225507330851969", + "3140201249858678831449459" ], - "LPTokenSupply": "7909626417603743940032127" + "LPTokenSupply": "7222136688852636633200193", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "65805213041821", + "expectedQty": "65161000600301", + "reserves": [ + "4161345438225507330851969", + "3140201249924484044491280" + ] }, { "type": "redeemBassets", "inputQtys": [ - "5336967060544342196224", - "7897359884372907393024" + "2169281322851807264768", + "618534899388498051072" ], - "expectedQty": "13060614061064535312356", - "swapFee": "7841073080487013395", + "expectedQty": "2756391122969012458225", + "swapFee": "1654827570323601635", "reserves": [ - "5749167219409106795814073", - "2274116970396565018516912" + "4159176156902655523587201", + "3139582715025095546440208" ], - "LPTokenSupply": "7896558746576906966407714" + "LPTokenSupply": "7219378808450015330100796" }, { "type": "redeemMasset", - "inputQty": "1605867534195760300032", + "inputQty": "52609864943716870", "expectedQtys": [ - "1168466143523541735726", - "462193668215102247647" - ], - "redemptionFee": "963520520517456180", - "reserves": [ - "5747998753265583254078347", - "2273654776728349916269265" + "30291028283248047", + "22865390940604894" ], - "LPTokenSupply": "7894952975394763257853300" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "17806701974195294699520", - "outputIndex": 1, - "expectedQty": "17637614925601753394889", - "swapFee": "13985800634405722177", + "redemptionFee": "31565918966230", "reserves": [ - "5765805455239778548777867", - "2256017161802748162874376" + "4159176126611627240339154", + "3139582692159704605835314" ], - "LPTokenSupply": "7894954373974826698425517", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7219378755843306978280549" }, { - "type": "mintMulti", - "inputQtys": [ - "9238871776455600111616", - "38789130145721667813376" + "type": "redeemMasset", + "inputQty": "660027303617799", + "expectedQtys": [ + "380021992891830", + "286862213862346" ], - "expectedQty": "47485434003138851710938", + "redemptionFee": "396016382170", "reserves": [ - "5775044327016234148889483", - "2294806291948469830687752" + "4159176126231605247447324", + "3139582691872842391972968" ], - "LPTokenSupply": "7942439807977965550136455" + "LPTokenSupply": "7219378755183319276300967" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "97971288656341614592", - "outputIndex": 1, - "expectedQty": "97056032220145638419", - "swapFee": "76950898833016938", + "inputQty": "167023040466313233301504", + "expectedQty": "165059504464419259994292", "reserves": [ - "5775142298304890490504075", - "2294709235916249685049333" - ], - "LPTokenSupply": "7942439815673055433438148", - "hardLimitError": false, - "insufficientLiquidityError": false + "4326199166697918480748828", + "3139582691872842391972968" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "10689157143614969610240", - "15101698953941320990720" - ], - "expectedQty": "25449141009954577256396", + "type": "redeem", + "inputIndex": 1, + "inputQty": "86640868958160592", + "expectedQty": "87430481641242939", + "swapFee": "51984521374896", "reserves": [ - "5785831455448505460114315", - "2309810934870191006040053" + "4326199166697918480748828", + "3139582604442360750730029" ], - "LPTokenSupply": "7967888956683010010694544" + "LPTokenSupply": "7384438173012068030272156" }, { "type": "redeemBassets", "inputQtys": [ - "7028330070981817139200", - "19657549077498403225600" + "2079124010482705664", + "928285409457176192" ], - "expectedQty": "26366534892087716792992", - "swapFee": "15829418586404472759", + "expectedQty": "2973905024990901014", + "swapFee": "1785414263552672", "reserves": [ - "5778803125377523642975115", - "2290153385792692602814453" + "4326197087573907998043164", + "3139581676156951293553837" ], - "LPTokenSupply": "7941508175314194529876067" + "LPTokenSupply": "7384435197500170202173736" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "18862776425166", - "expectedQty": "19036165898216", - "swapFee": "11317665855", + "inputQty": "60601449950655100747776", + "expectedQty": "60015629181389798994069", "reserves": [ - "5778803125377523642975115", - "2290153385773656436916237" - ], - "LPTokenSupply": "7941508175295332885217486" + "4326197087573907998043164", + "3200183126107606394301613" + ] }, { "type": "redeemMasset", - "inputQty": "37438092113473372160", + "inputQty": "16592865526048289587", "expectedQtys": [ - "27226258605122272775", - "10789830865261827949" + "9636833902141158877", + "7128577967775490979" ], - "redemptionFee": "22462855268084023", + "redemptionFee": "9955719315628973", "reserves": [ - "5778775899118918520702340", - "2290142595942791175088288" + "4326187450740005856884287", + "3200175997529638618810634" ], - "LPTokenSupply": "7941470739449504938653728" + "LPTokenSupply": "7444434234811605884441115" }, { "type": "redeemMasset", - "inputQty": "263452080866165365145", + "inputQty": "105384293480139724", "expectedQtys": [ - "191591347129524978126", - "75928105317647914530" + "61205277159069116", + "45274889522666969" ], - "redemptionFee": "158071248519699219", + "redemptionFee": "63230576088083", "reserves": [ - "5778584307771788995724214", - "2290066667837473527173758" + "4326187389534728697815171", + "3200175952254749096143665" ], - "LPTokenSupply": "7941207303175763625258504" + "LPTokenSupply": "7444434129433635461910199" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1290043641535657934848", - "outputIndex": 0, - "expectedQty": "1301212577382085045652", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "6908769034058560700416", + "6239935742466766929920" + ], + "expectedQty": "13006902990545578096192", "reserves": [ - "5777283095194406910678562", - "2291356711479009185108606" + "4333096158568787258515587", + "3206415887997215863073585" ], - "LPTokenSupply": "7941207303175763625258504", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7457441032424181040006391" }, { "type": "redeemBassets", "inputQtys": [ - "11868143935949878", - "105485184385811232" + "1918996457511004405760", + "2826274338556603269120" ], - "expectedQty": "116112829147965889", - "swapFee": "69709523202701", + "expectedQty": "4695272644713314477753", + "swapFee": "2818854899767849396", "reserves": [ - "5777283083326262974728684", - "2291356605993824799297374" + "4331177162111276254109827", + "3203589613658659259804465" ], - "LPTokenSupply": "7941207187000195906410183" + "LPTokenSupply": "7452743222810057934464180" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "6495958357969208344576", - "expectedQty": "6612428557696537046486", - "swapFee": "3897575014781525006", + "inputQty": "12411387505289575006208", + "outputIndex": 1, + "expectedQty": "12375466114680909904421", + "swapFee": "9812319141003357027", + "reserves": [ + "4343588549616565829116035", + "3191214147543978349900044" + ], + "LPTokenSupply": "7452744204041972034799882", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "6499010495785073219993", + "expectedQtys": [ + "3785463365492296056721", + "2781162190888188415002" + ], + "redemptionFee": "3899406297471043931", "reserves": [ - "5770670654768566437682198", - "2291356605993824799297374" + "4339803086251073533059314", + "3188432985353090161485042" ], - "LPTokenSupply": "7934711618399728176218107" + "LPTokenSupply": "7446245583486816708684282" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "181190750219527", - "expectedQty": "179428750179116", + "inputQty": "23231279839852619628544", + "outputIndex": 0, + "expectedQty": "23279564365674442172359", + "swapFee": "0", "reserves": [ - "5770670654768566437682198", - "2291356606175015549516901" - ] + "4316523521885399090886955", + "3211664265192942781113586" + ], + "LPTokenSupply": "7446245583486816708684282", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "106737581723414551330816", - "expectedQty": "104790554863084160461769", + "inputQty": "85392743676632430018560", + "expectedQty": "84387513010669312533133", "reserves": [ - "5877408236491980989013014", - "2291356606175015549516901" + "4401916265562031520905515", + "3211664265192942781113586" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2025195708108600576", - "395822842876405940224" + "386156522524446016", + "257488971478200704" ], - "expectedQty": "394041940839782726532", + "expectedQty": "636603021604963440", + "swapFee": "382191127639561", "reserves": [ - "5877410261687689097613590", - "2291752429017891955457125" + "4401915879405508996459499", + "3211664007703971302912882" ], - "LPTokenSupply": "8039896215383080869585524" + "LPTokenSupply": "7530632459550492401378369" }, { "type": "mint", "inputIndex": 0, - "inputQty": "44826894046559016583168", - "expectedQty": "44006685276176825940814", + "inputQty": "3119416890177874944", + "expectedQty": "3082600845424659523", "reserves": [ - "5922237155734248114196758", - "2291752429017891955457125" + "4401918998822399174334443", + "3211664007703971302912882" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3244080223631997665280", - "expectedQty": "3184664187238910058205", + "type": "mintMulti", + "inputQtys": [ + "938953363661819478016", + "1667152525376880115712" + ], + "expectedQty": "2578934201465401449197", "reserves": [ - "5925481235957880111862038", - "2291752429017891955457125" - ] + "4402857952186060993812459", + "3213331160229348183028594" + ], + "LPTokenSupply": "7533214476352803227487089" + }, + { + "type": "mintMulti", + "inputQtys": [ + "171421812092031827968", + "477914540611367337984" + ], + "expectedQty": "642700406698305721254", + "reserves": [ + "4403029373998153025640427", + "3213809074769959550366578" + ], + "LPTokenSupply": "7533857176759501533208343" }, { "type": "swap", "inputIndex": 0, - "inputQty": "5827686620996454842368", + "inputQty": "43996455449446965248", "outputIndex": 1, - "expectedQty": "5770626300211412179421", - "swapFee": "4576745213903209700", + "expectedQty": "43865888338560069005", + "swapFee": "34781804619830412", "reserves": [ - "5931308922578876566704406", - "2285981802717680543277704" + "4403073370453602472605675", + "3213765208881620990297573" ], - "LPTokenSupply": "8087088022521017995905513", + "LPTokenSupply": "7533857180237681995191384", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "511353757724504384", - "expectedQty": "506551743463740166", + "inputIndex": 0, + "inputQty": "10680009289691566080", + "expectedQty": "10553974401839634909", "reserves": [ - "5931308922578876566704406", - "2285982314071438267782088" + "4403084050462892164171755", + "3213765208881620990297573" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "89167885085981687152640", - "42332058302836727873536" + "type": "redeem", + "inputIndex": 1, + "inputQty": "4939512695893743632384", + "expectedQty": "4984646477749763176048", + "swapFee": "2963707617536246179", + "reserves": [ + "4403084050462892164171755", + "3208780562403871227121525" + ], + "LPTokenSupply": "7528928517886951844818526" + }, + { + "type": "redeemMasset", + "inputQty": "87551092293691394700083", + "expectedQtys": [ + "51171095631046956082574", + "37291320160138952986588" ], - "expectedQty": "129467907486504487653370", - "swapFee": "77727380920454965571", + "redemptionFee": "52530655376214836820", "reserves": [ - "5842141037492894879551766", - "2243650255768601539908552" + "4351912954831845208089181", + "3171489242243732274134937" ], - "LPTokenSupply": "7957550666943428562523294" + "LPTokenSupply": "7441382678658798071602125" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3718627226052478369792", - "expectedQty": "3785887592659933289025", - "swapFee": "2231176335631487021", + "inputQty": "102433102593839448064", + "expectedQty": "103595356404760720640", + "swapFee": "61459861556303668", + "reserves": [ + "4351809359475440447368541", + "3171489242243732274134937" + ], + "LPTokenSupply": "7441280251702190387784427" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "6353053499323686322176", + "expectedQty": "6291703092375280633239", + "reserves": [ + "4351809359475440447368541", + "3177842295743055960457113" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1258347144059766784", + "expectedQtys": [ + "734843685979809039", + "536608374395299501" + ], + "redemptionFee": "755008286435860", "reserves": [ - "5838355149900234946262741", - "2243650255768601539908552" + "4351808624631754467559502", + "3177841759134681565157612" ], - "LPTokenSupply": "7953832262835009647302204" + "LPTokenSupply": "7447570696522922437294468" + }, + { + "type": "redeemMasset", + "inputQty": "502795027066687180", + "expectedQtys": [ + "293619890790775355", + "214411439185574640" + ], + "redemptionFee": "301677016240012", + "reserves": [ + "4351808331011863676784147", + "3177841544723242379582972" + ], + "LPTokenSupply": "7447570193758063072231289" }, { "type": "mintMulti", "inputQtys": [ - "423256565482938752", - "315429166064994368" + "21071654999961956352", + "84469629959760838656" ], - "expectedQty": "727962785441383330", + "expectedQty": "104476436070739057097", "reserves": [ - "5838355573156800429201493", - "2243650571197767604902920" + "4351829402666863638740499", + "3177926014353202140421628" ], - "LPTokenSupply": "7953832990797795088685534" + "LPTokenSupply": "7447674670194133811288386" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "471914661732166533120", - "expectedQty": "476090127015015010615", - "swapFee": "283148797039299919", + "inputQty": "4702770896814227849216", + "outputIndex": 0, + "expectedQty": "4712933447459926253520", + "swapFee": "0", + "reserves": [ + "4347116469219403712486979", + "3182628785250016368270844" + ], + "LPTokenSupply": "7447674670194133811288386", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "158871784809406251663360", + "expectedQty": "160662641693626765725518", + "swapFee": "95323070885643750998", "reserves": [ - "5838355573156800429201493", - "2243174481070752589892305" + "4186453827525776946761461", + "3182628785250016368270844" ], - "LPTokenSupply": "7953361104450942626082405" + "LPTokenSupply": "7288812417691816124000125" }, { "type": "mintMulti", "inputQtys": [ - "625073199951255808", - "157201663245095456" + "11061125911098486784", + "14787489597257871360" ], - "expectedQty": "769329506328278979", + "expectedQty": "25573763333661187572", "reserves": [ - "5838356198230000380457301", - "2243174638272415834987761" + "4186464888651688045248245", + "3182643572739613626142204" ], - "LPTokenSupply": "7953361873780448954361384" + "LPTokenSupply": "7288837991455149785187697" }, { - "type": "mintMulti", + "type": "swap", + "inputIndex": 1, + "inputQty": "141130351716514352", + "outputIndex": 0, + "expectedQty": "141394868846143563", + "swapFee": "0", + "reserves": [ + "4186464747256819199104682", + "3182643713869965342656556" + ], + "LPTokenSupply": "7288837991455149785187697", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", "inputQtys": [ - "53865115249291231756288", - "56214864651095809982464" + "10695487811654627885056", + "14475894866892464062464" ], - "expectedQty": "108561704871118581373703", + "expectedQty": "24903897950998632612721", + "swapFee": "14951309556332979355", "reserves": [ - "5892221313479291612213589", - "2299389502923511644970225" + "4175769259445164571219626", + "3168167819003072878594092" ], - "LPTokenSupply": "8061923578651567535735087" + "LPTokenSupply": "7263920637325550452893555" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "33108831706958400585728", - "expectedQty": "33704881077535194587827", - "swapFee": "19865299024175040351", + "type": "mintMulti", + "inputQtys": [ + "17547723077397676", + "17739861093173364" + ], + "expectedQty": "34907803748304879", "reserves": [ - "5858516432401756417625762", - "2299389502923511644970225" + "4175769276992887648617302", + "3168167836742933971767456" ], - "LPTokenSupply": "8028816733474511552653394" + "LPTokenSupply": "7263920672233354201198434" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "23657992757412745216", - "15389022033872553984" + "3220395046115770", + "1941120531472794" ], - "expectedQty": "38467079531488181859", - "swapFee": "23094104181401750", + "expectedQty": "5104744834248171", "reserves": [ - "5858492774408999004880546", - "2299374113901477772416241" + "4175769280213282694733072", + "3168167838684054503240250" ], - "LPTokenSupply": "8028778245610286301209959" + "LPTokenSupply": "7263920677338099035446605" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1531240519422987730944", - "expectedQty": "1503274027713590019039", + "inputQty": "47654828900759576", + "expectedQty": "47097225509840611", "reserves": [ - "5860024014928421992611490", - "2299374113901477772416241" + "4175769327868111595492648", + "3168167838684054503240250" ] }, { - "type": "mintMulti", - "inputQtys": [ - "2367605026033496064", - "79552734384127968" + "type": "redeemMasset", + "inputQty": "35263796831594676224", + "expectedQtys": [ + "20259737776291576143", + "15371119571824837098" ], - "expectedQty": "2403150473093074342", + "redemptionFee": "21158278098956805", "reserves": [ - "5860026382533448026107554", - "2299374193454212156544209" + "4175749068130335303916505", + "3168152467564482678403152" ], - "LPTokenSupply": "8030283922788472984303340" + "LPTokenSupply": "7263885462754320760506672" }, { - "type": "redeemBassets", - "inputQtys": [ - "101230270558604361728", - "62960776265402122240" + "type": "redeemMasset", + "inputQty": "12895590164015369053798", + "expectedQtys": [ + "7408767613029727749019", + "5621052657108401871974" ], - "expectedQty": "161737371150852249523", - "swapFee": "97100683100371572", + "redemptionFee": "7737354098409221432", "reserves": [ - "5859925152262889421745826", - "2299311232677946754421969" + "4168340300517305576167486", + "3162531414907374276531178" ], - "LPTokenSupply": "8030122098026707341719401" + "LPTokenSupply": "7250990646325715232375017" }, { "type": "mintMulti", "inputQtys": [ - "30981813999794704", - "26514334181114124" + "11762456913567414272", + "24479196951417241600" ], - "expectedQty": "56675604097262183", + "expectedQty": "35863255742291846330", "reserves": [ - "5859925183244703421540530", - "2299311259192280935536093" + "4168352062974219143581758", + "3162555894104325693772778" ], - "LPTokenSupply": "8030122154702311438981584" + "LPTokenSupply": "7251026509581457524221347" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "15039015642609330176", - "21836767509591977984" + "55126944345894", + "51417411744412" ], - "expectedQty": "36391356871131753755", - "swapFee": "21847922876404895", + "expectedQty": "105393573629728", "reserves": [ - "5859910144229060812210354", - "2299289422424771343558109" + "4168352063029346087927652", + "3162555894155743105517190" ], - "LPTokenSupply": "8030085743682309718463422" + "LPTokenSupply": "7251026509686851097851075" }, { "type": "redeemBassets", "inputQtys": [ - "36271003855149039616", - "8754592314595751936" + "123478014287201217544192", + "103572266212323569434624" ], - "expectedQty": "44279032043300637663", - "swapFee": "26583369247528899", + "expectedQty": "224586781672352980487241", + "swapFee": "134832968784682597851", "reserves": [ - "5859873873225205663170738", - "2299280667832456747806173" + "4044874048742144870383460", + "3058983627943419536082566" ], - "LPTokenSupply": "8030041440725234095049748" + "LPTokenSupply": "7026318378342591903025767" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "302229034649312512", - "341431702809449280" + "7582763452130958245888", + "3829458152339700973568" ], - "expectedQty": "634861154247054904", - "swapFee": "381145379776098", + "expectedQty": "11285603652275907034099", "reserves": [ - "5859873570996171013858226", - "2299280326400753938356893" + "4052456812194275828629348", + "3062813086095759237056134" ], - "LPTokenSupply": "8030040805521049006196354" + "LPTokenSupply": "7037603981994867810059866" }, { "type": "swap", "inputIndex": 1, - "inputQty": "14347711827724208", + "inputQty": "101186431262810112", "outputIndex": 0, - "expectedQty": "14474267060792271", + "expectedQty": "101380387528694094", "swapFee": "0", "reserves": [ - "5859873556521903953065955", - "2299280340748465766081101" + "4052456710813888299935254", + "3062813187282190499866246" ], - "LPTokenSupply": "8030040805521049006196354", + "LPTokenSupply": "7037603981994867810059866", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "255947235357847841669120", - "16691849547505968611328" - ], - "expectedQty": "267787138215579819465286", + "type": "redeem", + "inputIndex": 0, + "inputQty": "30345760427428450140160", + "expectedQty": "30687177537821161471902", + "swapFee": "18207456256457070084", "reserves": [ - "6115820791879751794735075", - "2315972190295971734692429" + "4021769533276067138463352", + "3062813187282190499866246" ], - "LPTokenSupply": "8297827943736628825661640" + "LPTokenSupply": "7007260042313065005626714" }, { - "type": "redeemBassets", - "inputQtys": [ - "1933696969605232640", - "9958620497496008704" + "type": "redeemMasset", + "inputQty": "24818098041853565101670", + "expectedQtys": [ + "14235633096800271234078", + "10841268853780876406732" ], - "expectedQty": "11765115891751758141", - "swapFee": "7063307519562792", + "redemptionFee": "14890858825112139061", "reserves": [ - "6115818858182782189502435", - "2315962231675474238683725" + "4007533900179266867229274", + "3051971918428409623459514" ], - "LPTokenSupply": "8297816172263760306296985" + "LPTokenSupply": "6982443433357093951738950" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "804197704565522694144", - "expectedQty": "811172934456155603090", - "swapFee": "482518622739313616", + "type": "swap", + "inputIndex": 0, + "inputQty": "143892074506766319616", + "outputIndex": 1, + "expectedQty": "143509770927952083275", + "swapFee": "113765503459156143", "reserves": [ - "6115818858182782189502435", - "2315151058741018083080635" + "4007677792253773633548890", + "3051828408657481671376239" ], - "LPTokenSupply": "8297012022811057057534202" + "LPTokenSupply": "6982443444733644297654564", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "206260413426281906176", - "expectedQty": "208048879230474732675", - "swapFee": "123756248055769143", + "type": "mintMulti", + "inputQtys": [ + "449222881576812478464", + "572496594634170957824" + ], + "expectedQty": "1010806904978589303938", "reserves": [ - "6115818858182782189502435", - "2314943009861787608347960" + "4008127015135350446027354", + "3052400905252115842334063" ], - "LPTokenSupply": "8296805774773255581204940" + "LPTokenSupply": "6983454251638622886958502" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "31638489051782008832", - "64453309044872691712" + "70570715370402545664", + "133721718716441460736" ], - "expectedQty": "94916515069636147239", - "swapFee": "56984099501482577", + "expectedQty": "202145876081921217438", "reserves": [ - "6115787219693730407493603", - "2314878556552742735656248" + "4008197585850720848573018", + "3052534626970832283794799" ], - "LPTokenSupply": "8296710806972496393723380" + "LPTokenSupply": "6983656397514704808175940" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "12164270763936448512", - "expectedQty": "12269735960440979226", - "swapFee": "7298562458361869", + "inputIndex": 0, + "inputQty": "12630012010721968128000", + "expectedQty": "12771948589910844554997", + "swapFee": "7578007206433180876", "reserves": [ - "6115787219693730407493603", - "2314866286816782294677022" + "3995425637260810004018021", + "3052534626970832283794799" ], - "LPTokenSupply": "8296698643431588703111054" + "LPTokenSupply": "6971027143304703483366027" }, { - "type": "mintMulti", - "inputQtys": [ - "544512724902297600000", - "281980474039032676352" + "type": "redeem", + "inputIndex": 0, + "inputQty": "3237568310367925760", + "expectedQty": "3273939048075456430", + "swapFee": "1942540986220755", + "reserves": [ + "3995422363321761928561591", + "3052534626970832283794799" ], - "expectedQty": "813869299063187310155", + "LPTokenSupply": "6971023905930647214062342" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1979962744936195", + "expectedQty": "1998531789274489", + "swapFee": "1187977646961", "reserves": [ - "6116331732418632705093603", - "2315148267290821327353374" + "3995422363321761928561591", + "3052534624972300494520310" ], - "LPTokenSupply": "8297512512730651890421209" + "LPTokenSupply": "6971023903950803266890843" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "168031467139847050756096", - "expectedQty": "164925205893994515291991", + "type": "redeem", + "inputIndex": 1, + "inputQty": "532156140460143616", + "expectedQty": "537146956882310815", + "swapFee": "319293684276086", "reserves": [ - "6284363199558479755849699", - "2315148267290821327353374" - ] + "3995422363321761928561591", + "3052534087825343612209495" + ], + "LPTokenSupply": "6971023371826592175174835" }, { "type": "redeemMasset", - "inputQty": "59818244110144779059", + "inputQty": "228809603793265228", "expectedQtys": [ - "44395484220578738800", - "16355217721348604777" + "131062893437730970", + "100133080682633028" ], - "redemptionFee": "35890946466086867", + "redemptionFee": "137285762275959", "reserves": [ - "6284318804074259177110899", - "2315131912073099978748597" + "3995422232258868490830621", + "3052533987692262929576467" ], - "LPTokenSupply": "8462377903969630907542827" + "LPTokenSupply": "6971023143030716958137202" }, { "type": "mintMulti", "inputQtys": [ - "23273103785548765462528", - "1622364340786681610240" + "324703484124968845312", + "344905192995938304000" ], - "expectedQty": "24449295919375891734170", + "expectedQty": "662399175256533004184", "reserves": [ - "6307591907859807942573427", - "2316754276413886660358837" + "3995746935742993459675933", + "3052878892885258867880467" ], - "LPTokenSupply": "8486827199889006799276997" + "LPTokenSupply": "6971685542205973491141386" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "407481249075384745984", - "outputIndex": 0, - "expectedQty": "411524108536857779448", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "653830639450660012032", + "784791935103974506496" + ], + "expectedQty": "1423212759056081952688", "reserves": [ - "6307180383751271084793979", - "2317161757662962045104821" + "3996400766382444119687965", + "3053663684820362842386963" ], - "LPTokenSupply": "8486827199889006799276997", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6973108754965029573094074" }, { - "type": "redeemMasset", - "inputQty": "17866696936364966726860", - "expectedQtys": [ - "13270078994029624730476", - "4875224378447814142957" + "type": "redeemBassets", + "inputQtys": [ + "842955706845300654080", + "24731250769364316160" ], - "redemptionFee": "10720018161818980036", + "expectedQty": "857578348396445751386", + "swapFee": "514855922591422304", "reserves": [ - "6293910304757241460063503", - "2312286533284514230961864" + "3995557810675598819033885", + "3053638953569593478070803" ], - "LPTokenSupply": "8468961574954458014448140" + "LPTokenSupply": "6972250713246302795062613" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "2818304736348784820224", + "expectedQty": "2790434431590099918880", + "reserves": [ + "3995557810675598819033885", + "3056457258305942262891027" + ] }, { "type": "mintMulti", "inputQtys": [ - "28921711422700685099008", - "7705710321033119006720" + "1086068020890558848", + "25240726322365538304" ], - "expectedQty": "36022546932632634587221", + "expectedQty": "26064434886099864016", "reserves": [ - "6322832016179942145162511", - "2319992243605547349968584" + "3995558896743619709592733", + "3056482499032264628429331" ], - "LPTokenSupply": "8504984121887090649035361" + "LPTokenSupply": "6975067212112778994845509" }, { - "type": "redeemBassets", - "inputQtys": [ - "96207312565521168", - "263187538186393376" + "type": "redeemMasset", + "inputQty": "11837587969495221980364", + "expectedQtys": [ + "6776909787687516887335", + "5184132357670628245646" ], - "expectedQty": "355289680020973273", - "swapFee": "213301789086035", + "redemptionFee": "7102552781697133188", "reserves": [ - "6322831919972629579641343", - "2319991980418009163575208" + "3988781986955932192705398", + "3051298366674594000183685" ], - "LPTokenSupply": "8504983766405439017884655" + "LPTokenSupply": "6963230334398561942578463" }, { - "type": "redeemBassets", - "inputQtys": [ - "128394002352865563115520", - "208343062420024966774784" - ], - "expectedQty": "332594804371188687695442", - "swapFee": "199676688635894749466", + "type": "redeem", + "inputIndex": 1, + "inputQty": "10836168853773577355264", + "expectedQty": "10937782389402172790252", + "swapFee": "6501701312264146413", "reserves": [ - "6194437917619764016525823", - "2111648917997984196800424" + "3988781986955932192705398", + "3040360584285191827393433" ], - "LPTokenSupply": "8172209253014478024914692" + "LPTokenSupply": "6952394815714919591637840" }, { - "type": "mintMulti", - "inputQtys": [ - "183271461170825986048", - "8347651077827861676032" - ], - "expectedQty": "8461785298594066832548", + "type": "redeem", + "inputIndex": 1, + "inputQty": "416430832174534534103040", + "expectedQty": "420200670811916208817571", + "swapFee": "249858499304720720461", "reserves": [ - "6194621189080934842511871", - "2119996569075812058476456" + "3988781986955932192705398", + "2620159913473275618575862" ], - "LPTokenSupply": "8180671038313072091747240" + "LPTokenSupply": "6535988969390315529606846" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "428750061437494935683072", - "expectedQty": "420564919008023250559907", + "inputIndex": 1, + "inputQty": "60542540730095640", + "expectedQty": "59982392045118754", "reserves": [ - "6623371250518429778194943", - "2119996569075812058476456" + "3988781986955932192705398", + "2620159974015816348671502" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "21080708839596252725248", - "expectedQty": "20934163702622313106535", + "inputQty": "45330182824353404551168", + "expectedQty": "44908899517715623275130", "reserves": [ - "6623371250518429778194943", - "2141077277915408311201704" + "3988781986955932192705398", + "2665490156840169753222670" ] }, { "type": "redeemMasset", - "inputQty": "771467286116974460928", + "inputQty": "11865493145268", "expectedQtys": [ - "592269503310400707052", - "191457601873198084036" + "7187540137546", + "4803049540228" ], - "redemptionFee": "462880371670184676", + "redemptionFee": "7119295887", "reserves": [ - "6622778981015119377487891", - "2140885820313535113117668" + "3988781986948744652567852", + "2665490156835366703682442" ], - "LPTokenSupply": "8621398700025637847971221" + "LPTokenSupply": "6580897928878558416785050" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "121649559592802281586688", + "expectedQty": "120164774931607919304568", + "reserves": [ + "4110431546541546934154540", + "2665490156835366703682442" + ] }, { "type": "mintMulti", "inputQtys": [ - "178368237975271309312", - "1425861934394171981824" + "632587680759340859392", + "883227222096111206400" ], - "expectedQty": "1590771699329214170891", + "expectedQty": "1499947551399495748385", "reserves": [ - "6622957349253094648797203", - "2142311682247929285099492" + "4111064134222306275013932", + "2666373384057462814888842" ], - "LPTokenSupply": "8622989471724967062142112" + "LPTokenSupply": "6702562651361565831838003" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "52582615529364488454144", + "expectedQty": "51937263431215773128078", + "reserves": [ + "4163646749751670763468076", + "2666373384057462814888842" + ] }, { "type": "redeemMasset", - "inputQty": "3603282173219519", + "inputQty": "2867378045124873499443", "expectedQtys": [ - "2765869725142492", - "894669059648535" + "1766464753696393671952", + "1131232999872672668022" ], - "redemptionFee": "2161969303931", + "redemptionFee": "1720426827074924099", "reserves": [ - "6622957346487224923654711", - "2142311681353260225450957" + "4161880284997974369796124", + "2665242151057590142220820" ], - "LPTokenSupply": "8622989468121901085852986" + "LPTokenSupply": "6751632708790339438959047" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "41946114605616468066304", - "expectedQty": "41644331114592123036854", + "type": "mintMulti", + "inputQtys": [ + "106392409650838765568", + "632913158126918565888" + ], + "expectedQty": "732220947547309073306", "reserves": [ - "6622957346487224923654711", - "2184257795958876693517261" - ] + "4161986677407625208561692", + "2665875064215717060786708" + ], + "LPTokenSupply": "6752364929737886748032353" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "27914462466226570395648", - "expectedQty": "27706719826283177886033", - "reserves": [ - "6622957346487224923654711", - "2212172258425103263912909" - ] - }, - { - "type": "redeem", "inputIndex": 0, - "inputQty": "10976747987157634", - "expectedQty": "11183109529715006", - "swapFee": "6586048792294", + "inputQty": "266237930167206117376", + "expectedQty": "262965024758791685874", "reserves": [ - "6622957335304115393939705", - "2212172258425103263912909" - ], - "LPTokenSupply": "8692340508086687004497468" + "4162252915337792414679068", + "2665875064215717060786708" + ] }, { "type": "mintMulti", "inputQtys": [ - "20671869512153255936", - "20521778378102648832" + "201444337480628371456", + "46652343298341560320" ], - "expectedQty": "40645321827249398891", + "expectedQty": "245194453208016007392", "reserves": [ - "6622978007173627547195641", - "2212192780203481366561741" + "4162454359675273043050524", + "2665921716559015402347028" ], - "LPTokenSupply": "8692381153408514253896359" + "LPTokenSupply": "6752873089215853555725619" }, { "type": "redeemMasset", - "inputQty": "283333737198717973299", + "inputQty": "3493081820820602984857", "expectedQtys": [ - "215750686629283130783", - "72064577410385401454" + "2151835164915300879646", + "1378183062420553269009" ], - "redemptionFee": "170000242319230783", + "redemptionFee": "2095849092492361790", "reserves": [ - "6622762256486998264064858", - "2212120715626070981160287" + "4160302524510357742170878", + "2664543533496594849078019" ], - "LPTokenSupply": "8692097836671339767846138" + "LPTokenSupply": "6749380216979942201976941" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "641071906027701141504", - "outputIndex": 1, - "expectedQty": "633131801084580432072", - "swapFee": "503091628427849224", + "inputIndex": 1, + "inputQty": "605286038561287045120", + "outputIndex": 0, + "expectedQty": "607225374270964778774", + "swapFee": "0", "reserves": [ - "6623403328393025965206362", - "2211487583824986400728215" + "4159695299136086777392104", + "2665148819535156136123139" ], - "LPTokenSupply": "8692097886980502610631060", + "LPTokenSupply": "6749380216979942201976941", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1342338311904622228275", - "expectedQtys": [ - "1022251894721758419241", - "341319599703016670981" - ], - "redemptionFee": "805402987142773336", + "type": "mint", + "inputIndex": 1, + "inputQty": "1125263950698494820352", + "expectedQty": "1114989812493640906382", "reserves": [ - "6622381076498304206787121", - "2211146264225283384057234" - ], - "LPTokenSupply": "8690755629208896702680118" + "4159695299136086777392104", + "2666274083485854630943491" + ] }, { - "type": "redeemMasset", - "inputQty": "40628230332641", - "expectedQtys": [ - "30940254429491", - "10330638965904" + "type": "mintMulti", + "inputQtys": [ + "6142678919763957121024", + "5667877292925145579520" ], - "redemptionFee": "24376938199", + "expectedQty": "11683297119268881891450", "reserves": [ - "6622381076467363952357630", - "2211146264214952745091330" + "4165837978055850734513128", + "2671941960778779776523011" ], - "LPTokenSupply": "8690755629168270910041296" + "LPTokenSupply": "6762178503911704724774773" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "773338312313123373056", - "expectedQty": "778738111225588354531", - "swapFee": "464002987387874023", - "reserves": [ - "6622381076467363952357630", - "2210367526103727156736799" - ], - "LPTokenSupply": "8689982337256256525455642" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1284746576922463436800", - "62859628241664476184576" - ], - "expectedQty": "63660376091741405783707", - "swapFee": "38219157149334444136", + "inputIndex": 0, + "inputQty": "21897920034468381327360", + "expectedQty": "22156876892499184982347", + "swapFee": "13138752020681028796", "reserves": [ - "6621096329890441488920830", - "2147507897862062680552223" + "4143681101163351549530781", + "2671941960778779776523011" ], - "LPTokenSupply": "8626287563923080718672211" + "LPTokenSupply": "6740281897752438411550292" }, { - "type": "mintMulti", - "inputQtys": [ - "158870155784342176", - "172659014874812352" + "type": "redeemMasset", + "inputQty": "2347893472573840687104", + "expectedQtys": [ + "1442533799662784380970", + "930179349004081902217" ], - "expectedQty": "327255721780647653", + "redemptionFee": "1408736083544304412", "reserves": [ - "6621096488760597273263006", - "2147508070521077555364575" + "4142238567363688765149811", + "2671011781429775694620794" ], - "LPTokenSupply": "8626287891178802499319864" + "LPTokenSupply": "6737934145153472925293629" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "5326598328036231168", - "expectedQty": "5361406247351373366", - "swapFee": "3195958996821738", + "inputQty": "5481380603823999942656", + "outputIndex": 0, + "expectedQty": "5498564842090554217147", + "swapFee": "0", "reserves": [ - "6621096488760597273263006", - "2147502709114830203991209" + "4136740002521598210932664", + "2676493162033599694563450" ], - "LPTokenSupply": "8626282564900070362770869" + "LPTokenSupply": "6737934145153472925293629", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "7368454878650048708608", - "expectedQty": "7416400248584958349620", - "swapFee": "4421072927190029225", + "inputQty": "170165662581306240", + "expectedQty": "168603515512626641", "reserves": [ - "6621096488760597273263006", - "2140086308866245245641589" - ], - "LPTokenSupply": "8618914552128713033065183" + "4136740002521598210932664", + "2676493332199262275869690" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "62349419118896783294464", - "139023751881807349415936" + "3378958966431849381888", + "5091532439303570325504" ], - "expectedQty": "199147722400324635225758", + "expectedQty": "8382322378400994777677", + "swapFee": "5032412874765456140", "reserves": [ - "6683445907879494056557470", - "2279110060748052595057525" + "4133361043555166361550776", + "2671401799759958705544186" ], - "LPTokenSupply": "8818062274529037668290941" + "LPTokenSupply": "6729547462207000154232066" }, { - "type": "mintMulti", - "inputQtys": [ - "21461860914148224", - "26549726043039028" - ], - "expectedQty": "47396666805870155", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1585723058364441427968", + "expectedQty": "1604452520604453998656", + "swapFee": "951433835018664856", "reserves": [ - "6683445929341354970705694", - "2279110087297778638096553" + "4131756591034561907552120", + "2671401799759958705544186" ], - "LPTokenSupply": "8818062321925704474161096" + "LPTokenSupply": "6727961834292019214670583" }, { "type": "redeemBassets", "inputQtys": [ - "202480090274230582640640", - "9912911289527998349312" + "19398713699230067720192", + "30459832859539307233280" ], - "expectedQty": "208490677807039039922791", - "swapFee": "125169508389256978140", + "expectedQty": "49341360384432212598655", + "swapFee": "29622589784530045586", "reserves": [ - "6480965839067124388065054", - "2269197176008250639747241" + "4112357877335331839831928", + "2640941966900419398310906" ], - "LPTokenSupply": "8609458991561115102957978" + "LPTokenSupply": "6678593813576780925030899" }, { - "type": "redeemMasset", - "inputQty": "6360011773388811717836", - "expectedQtys": [ - "4784770758342899481711", - "1675304046077399730671" - ], - "redemptionFee": "3816007064033287030", + "type": "swap", + "inputIndex": 1, + "inputQty": "46739327165960070103040", + "outputIndex": 0, + "expectedQty": "46882489596039037805339", + "swapFee": "0", "reserves": [ - "6476181068308781488583343", - "2267521871962173240016570" + "4065475387739292802026589", + "2687681294066379468413946" ], - "LPTokenSupply": "8603099361388432694568845" + "LPTokenSupply": "6678593813576780925030899", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "1800143161096451653632", - "2028807547904413401088" + "976011223181252624384", + "581043032634336215040" ], - "expectedQty": "3778347463157866096867", + "expectedQty": "1539750123497802756893", "reserves": [ - "6477981211469877940236975", - "2269550679510077653417658" + "4066451398962474054650973", + "2688262337099013804628986" ], - "LPTokenSupply": "8606877708851590560665712" + "LPTokenSupply": "6680133563700278727787792" }, { "type": "mintMulti", "inputQtys": [ - "445190524070503907328", - "112918596610713436160" + "6541110187611091107840", + "1349429766400809107456" ], - "expectedQty": "548797687171423429576", + "expectedQty": "7798202084878173914039", "reserves": [ - "6478426401993948444144303", - "2269663598106688366853818" + "4072992509150085145758813", + "2689611766865414613736442" ], - "LPTokenSupply": "8607426506538761984095288" + "LPTokenSupply": "6687931765785156901701831" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "40335155221128059813888", - "expectedQty": "41083736746586649637406", - "swapFee": "24201093132676835888", - "reserves": [ - "6437342665247361794506897", - "2269663598106688366853818" - ], - "LPTokenSupply": "8567093771426947191964988" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "40138867915974921682944", - "18800200975448035819520" - ], - "expectedQty": "58028011551174001623715", - "swapFee": "34837709556438263932", + "inputIndex": 1, + "inputQty": "34059033651452819013632", + "expectedQty": "34356523559803097913372", + "swapFee": "20435420190871691408", "reserves": [ - "6397203797331386872823953", - "2250863397131240331034298" + "4072992509150085145758813", + "2655255243305611515823070" ], - "LPTokenSupply": "8509034405937172395903733" + "LPTokenSupply": "6653874775675723169857339" }, { "type": "redeemBassets", "inputQtys": [ - "11539673377149054976", - "27448940184686096384" + "218277433754936344576", + "60230070291623854080" ], - "expectedQty": "38543537497621379544", - "swapFee": "23140006502474312", + "expectedQty": "275278840802992921414", + "swapFee": "165266464360412000", "reserves": [ - "6397192257658009723768977", - "2250835948191055644937914" + "4072774231716330209414237", + "2655195013235319891968990" ], - "LPTokenSupply": "8508995841573668922297307" - }, - { - "type": "redeemMasset", - "inputQty": "10911295359669683984793", - "expectedQtys": [ - "8198355540679126055357", - "2884570702861372482976" - ], - "redemptionFee": "6546777215801810390", - "reserves": [ - "6388993902117330597713620", - "2247951377488194272454938" - ], - "LPTokenSupply": "8498085200891720818493553" + "LPTokenSupply": "6653599348095102252565124" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "260203912868871733248", - "expectedQty": "255309088585778117349", + "inputIndex": 1, + "inputQty": "7723826578295728635904", + "expectedQty": "7652517989150408067899", "reserves": [ - "6389254106030199469446868", - "2247951377488194272454938" + "4072774231716330209414237", + "2662918839813615620604894" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "26663200607617620639744", - "expectedQty": "26161356654707824540959", + "inputQty": "4299036715693712605184", + "expectedQty": "4246423312788024212880", "reserves": [ - "6415917306637817090086612", - "2247951377488194272454938" + "4077073268432023922019421", + "2662918839813615620604894" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "23758066856645070848", - "expectedQty": "24199527519927266895", - "swapFee": "14254840113987042", + "inputQty": "29278099341962330112", + "expectedQty": "29623122248650246620", + "swapFee": "17566859605177398", "reserves": [ - "6415893107110297162819717", - "2247951377488194272454938" + "4077043645309775271772801", + "2662918839813615620604894" ], - "LPTokenSupply": "8524478109993641787479717" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "276126066674708576", - "expectedQty": "273848102985800443", - "reserves": [ - "6415893107110297162819717", - "2247951653614260947163514" - ] + "LPTokenSupply": "6665469013054384683033530" }, { "type": "redeemMasset", - "inputQty": "1581259928292152", + "inputQty": "1292875603649480779366", "expectedQtys": [ - "1189410905996717", - "416736714331950" + "790334121658867300275", + "516206301773116266151" ], - "redemptionFee": "948755956975", + "redemptionFee": "775725362189688467", "reserves": [ - "6415893105920886256823000", - "2247951653197524232831564" + "4076253311188116404472526", + "2662402633511842504338743" ], - "LPTokenSupply": "8524478382260579720583705" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "26320313079728892", - "expectedQty": "25824660034242745", - "reserves": [ - "6415893132241199336551892", - "2247951653197524232831564" - ] + "LPTokenSupply": "6664176215023271421223010" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6826267123144868233216", - "expectedQty": "6697700262449534638750", + "inputIndex": 1, + "inputQty": "205444896019415327309824", + "expectedQty": "203511070163751136335890", "reserves": [ - "6422719399364344204785108", - "2247951653197524232831564" + "4076253311188116404472526", + "2867847529531257831648567" ] }, { "type": "redeemBassets", "inputQtys": [ - "14639526605240922013696", - "19570716859047339884544" + "9587194381164301254656", + "5163394921289244213248" ], - "expectedQty": "33773960504239486329607", - "swapFee": "20276542227880420049", + "expectedQty": "14586024345373910875865", + "swapFee": "8756868728461423379", "reserves": [ - "6408079872759103282771412", - "2228380936338476892947020" + "4066666116806952103217870", + "2862684134609968587435319" ], - "LPTokenSupply": "8497383898955444710757547" + "LPTokenSupply": "6853093379659793031401992" }, { - "type": "redeemBassets", - "inputQtys": [ - "611910385390136721408", - "87099631804332376064" - ], - "expectedQty": "686753638964950042906", - "swapFee": "412299563116840129", + "type": "swap", + "inputIndex": 1, + "inputQty": "2554913637309050519552", + "outputIndex": 0, + "expectedQty": "2561154572245600700199", + "swapFee": "0", "reserves": [ - "6407467962373713146050004", - "2228293836706672560570956" + "4064104962234706502517671", + "2865239048247277637954871" ], - "LPTokenSupply": "8496696774246872955558523" + "LPTokenSupply": "6853093379659793031401992", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "241955783610304416", - "expectedQty": "246461282279428050", - "swapFee": "145173470166182", + "type": "redeemMasset", + "inputQty": "269616469801442213888", + "expectedQtys": [ + "159795310288755546747", + "112657465055817846061" + ], + "redemptionFee": "161769881880865328", "reserves": [ - "6407467715912430866621954", - "2228293836706672560570956" + "4063945166924417746970924", + "2865126390782221820108810" ], - "LPTokenSupply": "8496696532305606692270725" + "LPTokenSupply": "6852823779366979777274636" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "120013657212324", - "outputIndex": 1, - "expectedQty": "118621423653775", - "swapFee": "94199219964", + "type": "mint", + "inputIndex": 1, + "inputQty": "610805298268061433856", + "expectedQty": "604946196523981663443", "reserves": [ - "6407467716032444523834278", - "2228293836588051136917181" + "4063945166924417746970924", + "2865737196080489881542666" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "109816465049059055370240", + "15668740048752547463168" ], - "LPTokenSupply": "8496696532305616112192721", - "hardLimitError": false, - "insufficientLiquidityError": false + "expectedQty": "124014292975866433879940", + "reserves": [ + "4173761631973476802341164", + "2881405936129242429005834" + ], + "LPTokenSupply": "6977443018539370192818019" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "118700969659285674917888", - "expectedQty": "120905684020133060713725", - "swapFee": "71220581795571404950", + "inputQty": "149329267539651002892288", + "expectedQty": "151053523284929210287340", + "swapFee": "89597560523790601735", "reserves": [ - "6286562032012311463120553", - "2228293836588051136917181" + "4022708108688547592053824", + "2881405936129242429005834" ], - "LPTokenSupply": "8378002684704509994415328" + "LPTokenSupply": "6828122710755771568985904" }, { - "type": "mintMulti", - "inputQtys": [ - "817378441063517126656", - "803132082904488869888" + "type": "mint", + "inputIndex": 0, + "inputQty": "7172130982708771815424", + "expectedQty": "7086320689874131898096", + "reserves": [ + "4029880239671256363869248", + "2881405936129242429005834" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1274728279202362870988", + "expectedQtys": [ + "751099209739886812831", + "537043681909277397658" ], - "expectedQty": "1598394801574427555779", + "redemptionFee": "764836967521417722", "reserves": [ - "6287379410453374980247209", - "2229096968670955625787069" + "4029129140461516477056417", + "2880868892447333151608176" ], - "LPTokenSupply": "8379601079506084421971107" + "LPTokenSupply": "6833934379650140090154784" }, { "type": "redeemBassets", "inputQtys": [ - "591644726889640099840", - "55392391474717696000" + "1391135648836945444864", + "1390857055555749937152" ], - "expectedQty": "635456929296551567560", - "swapFee": "381503059413579087", + "expectedQty": "2751900955312423107141", + "swapFee": "1652131852298833164", "reserves": [ - "6286787765726485340147369", - "2229041576279480908091069" + "4027738004812679531611553", + "2879478035391777401671024" ], - "LPTokenSupply": "8378965279224034398182367" + "LPTokenSupply": "6831180991776160598097794" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "71768672214279176192", - "expectedQty": "70420539059436556211", + "type": "swap", + "inputIndex": 1, + "inputQty": "210846297901987921920", + "outputIndex": 0, + "expectedQty": "211337555051390399268", + "swapFee": "0", "reserves": [ - "6286859534398699619323561", - "2229041576279480908091069" - ] + "4027526667257628141212285", + "2879688881689679389592944" + ], + "LPTokenSupply": "6831180991776160598097794", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "107012717782523052032", - "176398092319455674368" + "10879808119920058695680", + "30191955300373233664000" ], - "expectedQty": "279915288153081479298", - "swapFee": "168050002893585038", + "expectedQty": "40650108835323932920908", + "swapFee": "24404708126070001753", "reserves": [ - "6286752521680917096271529", - "2228865178187161452416701" + "4016646859137708082516605", + "2849496926389306155928944" ], - "LPTokenSupply": "8378755633229938149032744" + "LPTokenSupply": "6790508918703523202175307" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "448738544656588668928", - "expectedQty": "452276826431003400791", - "swapFee": "269243126793953201", + "inputQty": "10554433146836752384", + "expectedQty": "10650717658835644104", + "swapFee": "6332659888102051", "reserves": [ - "6286752521680917096271529", - "2228412901360730449015910" + "4016646859137708082516605", + "2849486275671647320284840" ], - "LPTokenSupply": "8378306921609594239759136" + "LPTokenSupply": "6790498364903642354233128" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "153396104044724544", - "expectedQty": "156239137275031223", - "swapFee": "92037662426834", + "inputQty": "2353325381084523", + "outputIndex": 1, + "expectedQty": "2345838176852811", + "swapFee": "1860077335827", "reserves": [ - "6286752365441779821240306", - "2228412901360730449015910" + "4016646861491033463601128", + "2849486273325809143432029" ], - "LPTokenSupply": "8378306768222693961277275" + "LPTokenSupply": "6790498364903828361966710", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "262489865831162871808", - "expectedQty": "264559016741250420702", - "swapFee": "157493919498697723", + "type": "mintMulti", + "inputQtys": [ + "376792990228331", + "369393577506792" + ], + "expectedQty": "738107826091537", "reserves": [ - "6286752365441779821240306", - "2228148342343989198595208" + "4016646861867826453829459", + "2849486273695202720938821" ], - "LPTokenSupply": "8378044294106254748275239" + "LPTokenSupply": "6790498365641936188058247" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1368251166917424896", - "450046509023116544" + "8981719283592173568", + "185919396897037516800" ], - "expectedQty": "1788805804230071824", - "swapFee": "1073927839241588", + "expectedQty": "193002064825094623528", "reserves": [ - "6286750997190612903815410", - "2228147892297480175478664" + "4016655843587110046003027", + "2849672193092099758455621" ], - "LPTokenSupply": "8378042504333915462885984" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2864306055474205687808", - "expectedQty": "2810493113214201285881", - "reserves": [ - "6289615303246087109503218", - "2228147892297480175478664" - ] + "LPTokenSupply": "6790691367706761282681775" }, { - "type": "mintMulti", - "inputQtys": [ - "173978504308810011639808", - "11362406265914757480448" + "type": "redeemMasset", + "inputQty": "1798707979974161622630", + "expectedQtys": [ + "1063287322768896867412", + "754363937303596121917" ], - "expectedQty": "181968976623774786836273", + "redemptionFee": "1079224787984496973", "reserves": [ - "6463593807554897121143026", - "2239510298563394932959112" + "4015592556264341149135615", + "2848917829154796162333704" ], - "LPTokenSupply": "8562821974070904451008138" + "LPTokenSupply": "6788892767649265919508842" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "19340622060303580921856", - "expectedQty": "19701131512218799188701", - "swapFee": "11604373236182148553", + "inputQty": "116783124150391912005632", + "expectedQty": "118124499996201414837897", + "swapFee": "70069874490235147203", "reserves": [ - "6443892676042678321954325", - "2239510298563394932959112" + "3897468056268139734297718", + "2848917829154796162333704" ], - "LPTokenSupply": "8543482512447924488301137" + "LPTokenSupply": "6672116650486323031017930" }, { "type": "mintMulti", "inputQtys": [ - "52232075379621048090624", - "55605631521867341758464" + "743941619063286136832", + "1166945240883276283904" ], - "expectedQty": "106394109422693939027876", + "expectedQty": "1890619590486906289299", "reserves": [ - "6496124751422299370044949", - "2295115930085262274717576" + "3898211997887203020434550", + "2850084774395679438617608" ], - "LPTokenSupply": "8649876621870618427329013" + "LPTokenSupply": "6674007270076809937307229" }, { "type": "swap", "inputIndex": 1, - "inputQty": "57991793641557181071360", + "inputQty": "4484388057230302773248", "outputIndex": 0, - "expectedQty": "58589965344106624730048", + "expectedQty": "4494035866696309006805", "swapFee": "0", "reserves": [ - "6437534786078192745314901", - "2353107723726819455788936" + "3893717962020506711427745", + "2854569162452909741390856" ], - "LPTokenSupply": "8649876621870618427329013", + "LPTokenSupply": "6674007270076809937307229", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "33288101939756146688", - "outputIndex": 1, - "expectedQty": "32931857443689966791", - "swapFee": "26134025323712778", + "type": "redeemBassets", + "inputQtys": [ + "72433313458827424", + "164557358952318688" + ], + "expectedQty": "234518127912919668", + "swapFee": "140795353960127", "reserves": [ - "6437568074180132501461589", - "2353074791869375765822145" + "3893717889587193252600321", + "2854568997895550789072168" ], - "LPTokenSupply": "8649876624484020959700290", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6674007035431966205823445" }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "3975949872766514521702", + "expectedQtys": [ + "2318238253161039127883", + "1699550721151661463813" + ], + "redemptionFee": "2385569923659908713", + "reserves": [ + "3891399651334032213472438", + "2852869447174399127608355" + ], + "LPTokenSupply": "6670031324116192057292614" + }, + { + "type": "redeemBassets", "inputQtys": [ - "712499485629491838976", - "1143762901476646715392" + "90961105670985392062464", + "92835315818036031651840" ], - "expectedQty": "1832889602816735373047", + "expectedQty": "181805723650812049252070", + "swapFee": "109148923544613997950", "reserves": [ - "6438280573665761993300565", - "2354218554770852412537537" + "3800438545663046821409974", + "2760034131356363095956515" ], - "LPTokenSupply": "8651709514086837695073337" + "LPTokenSupply": "6488127366434189855442388" }, { - "type": "redeemMasset", - "inputQty": "492465283870248298086", - "expectedQtys": [ - "366254471140650212596", - "133924432441466172757" + "type": "mintMulti", + "inputQtys": [ + "59276974173422944256", + "203318669124129325056" ], - "redemptionFee": "295479170322148978", + "expectedQty": "259902754672227173710", "reserves": [ - "6437914319194621343087969", - "2354084630338410946364780" + "3800497822637220244354230", + "2760237450025487225281571" ], - "LPTokenSupply": "8651217078350884478990148" + "LPTokenSupply": "6488387269188862082616098" }, { "type": "redeemMasset", - "inputQty": "5030430676052935809433", + "inputQty": "35538893457584601", "expectedQtys": [ - "3741213530875602774746", - "1368010326821205794674" + "20804006036008182", + "15109598597611806" ], - "redemptionFee": "3018258405631761485", + "redemptionFee": "21323336074550", "reserves": [ - "6434173105663745740313223", - "2352716620011589740570106" + "3800497801833214208346048", + "2760237434915888627669765" ], - "LPTokenSupply": "8646186949500672106356863" + "LPTokenSupply": "6488387233652100958638952" }, { "type": "mint", "inputIndex": 0, - "inputQty": "164143744886823131807744", - "expectedQty": "161074225573508987397841", + "inputQty": "23730389677390985953280", + "expectedQty": "23446660447033017316041", "reserves": [ - "6598316850550568872120967", - "2352716620011589740570106" + "3824228191510605194299328", + "2760237434915888627669765" ] }, { "type": "redeemBassets", "inputQtys": [ - "76663807083738570948608", - "13551248013819279048704" + "2092065832070406", + "1419509405399596" ], - "expectedQty": "88662285384548709983643", - "swapFee": "53229308816018837292", + "expectedQty": "3472722591578076", + "swapFee": "2084884485638", "reserves": [ - "6521653043466830301172359", - "2339165371997770461521402" + "3824228189418539362228922", + "2760237433496379222270169" ], - "LPTokenSupply": "8718550983311697966817497" + "LPTokenSupply": "6511833890624534988339841" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "52096243386566385336320", - "117215373570953753657344" + "2125997196865419083776", + "492261317836723650560" ], - "expectedQty": "167358298865994406372014", - "swapFee": "100475264478283613991", + "expectedQty": "2588025714322829256810", "reserves": [ - "6469556800080263915836039", - "2221949998426816707864058" + "3826354186615404781312698", + "2760729694814215945920729" ], - "LPTokenSupply": "8551102256707673105192890" + "LPTokenSupply": "6514421916338857817596651" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "61480007153470110957568", - "expectedQty": "62628797388738786329956", - "swapFee": "36888004292082066574", + "inputIndex": 1, + "inputQty": "712871017398379347968", + "expectedQty": "719445486704795103812", + "swapFee": "427722610439027608", "reserves": [ - "6406928002691525129506083", - "2221949998426816707864058" + "3826354186615404781312698", + "2760010249327511150816917" ], - "LPTokenSupply": "8489625938354632202441979" + "LPTokenSupply": "6513709088093720482151443" }, { - "type": "mintMulti", - "inputQtys": [ - "3185616407314434097152", - "1152327933911776100352" + "type": "redeemMasset", + "inputQty": "9719692066648155697971", + "expectedQtys": [ + "5706221960251875715565", + "4115988830914749958036" ], - "expectedQty": "4268319262860971140367", + "redemptionFee": "5831815239988893418", "reserves": [ - "6410113619098839563603235", - "2223102326360728483964410" + "3820647964655152905597133", + "2755894260496596400858881" ], - "LPTokenSupply": "8493894257617493173582346" + "LPTokenSupply": "6503989979208596325342813" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "13232994779412480131072", - "12659762181443564863488" + "6925489300538016768", + "2943178065411302912" ], - "expectedQty": "25539660728478523835610", - "swapFee": "15332996234828011108", + "expectedQty": "9757130722783874387", "reserves": [ - "6396880624319427083472163", - "2210442564179284919100922" + "3820654890144453443613901", + "2755897203674661812161793" ], - "LPTokenSupply": "8468340797192403304536737" + "LPTokenSupply": "6503999736339319109217200" }, { - "type": "redeemMasset", - "inputQty": "183602383487711411", - "expectedQtys": [ - "138607770766955211", - "47895925252142668" - ], - "redemptionFee": "110161430092626", + "type": "swap", + "inputIndex": 1, + "inputQty": "598179866069619048448", + "outputIndex": 0, + "expectedQty": "599532667101871459376", + "swapFee": "0", "reserves": [ - "6396880485711656316516952", - "2210442516283359666958254" + "3820055357477351572154525", + "2756495383540731431210241" ], - "LPTokenSupply": "8468340613601035959834588" + "LPTokenSupply": "6503999736339319109217200", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "22734697589050294272", - "14083295121053509632" - ], - "expectedQty": "36273667671979065540", + "type": "redeem", + "inputIndex": 1, + "inputQty": "31244017672786972672", + "expectedQty": "31532226298573224025", + "swapFee": "18746410603672183", "reserves": [ - "6396903220409245366811224", - "2210456599578480720467886" + "3820055357477351572154525", + "2756463851314432857986216" ], - "LPTokenSupply": "8468376887268707938900128" + "LPTokenSupply": "6503968494196287382611746" }, { - "type": "mintMulti", - "inputQtys": [ - "331616984415713099776", - "187101447177600696320" + "type": "redeemMasset", + "inputQty": "1692688998711", + "expectedQtys": [ + "993591218103", + "716952509686" ], - "expectedQty": "510926908431111054357", + "redemptionFee": "1015613399", "reserves": [ - "6397234837393661079911000", - "2210643701025658321164206" + "3820055357476357980936422", + "2756463851313715905476530" ], - "LPTokenSupply": "8468887814177139049954485" + "LPTokenSupply": "6503968494194594795174374" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "433603847683849912320", - "outputIndex": 1, - "expectedQty": "428520755683923359737", - "swapFee": "340316177918470768", + "inputQty": "22649144981739087593472", + "expectedQty": "22909516923765615228668", + "swapFee": "13589486989043452556", "reserves": [ - "6397668441241344929823320", - "2210215180269974397804469" + "3797145840552592365707754", + "2756463851313715905476530" ], - "LPTokenSupply": "8468887848208756841801561", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6481320708161554611926157" }, { "type": "redeemBassets", "inputQtys": [ - "621055218299519238144", - "1419654473431216816128" - ], - "expectedQty": "2017476129217448190298", - "swapFee": "1211212404973452985", - "reserves": [ - "6397047386023045410585176", - "2208795525796543180988341" - ], - "LPTokenSupply": "8466869281988374917503575" - }, - { - "type": "redeemMasset", - "inputQty": "178417338831639438950", - "expectedQtys": [ - "134720323002749379930", - "46516717592635001759" + "307129918970878", + "401451382096429" ], - "redemptionFee": "107050403298983663", + "expectedQty": "700991695636426", + "swapFee": "420847525897", "reserves": [ - "6396912665700042661205246", - "2208749009078950545986582" + "3797145840245462446736876", + "2756463850912264523380101" ], - "LPTokenSupply": "8466690875354583607962991" + "LPTokenSupply": "6481320707460184153516422" }, { "type": "redeemMasset", - "inputQty": "6741502826051322616217", + "inputQty": "54315281821887076761", "expectedQtys": [ - "5090410240013288418461", - "1757635153239078029330" + "31802052375934782266", + "23086078714694813002" ], - "redemptionFee": "4044901695630793569", + "redemptionFee": "32589169093132246", "reserves": [ - "6391822255460029372786785", - "2206991373925711467957252" + "3797114038193086511954610", + "2756440764833549828567099" ], - "LPTokenSupply": "8459949777018701848426130" + "LPTokenSupply": "6481266395437279175752885" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1086595099918017757184", - "outputIndex": 1, - "expectedQty": "1073836357144687911681", - "swapFee": "852815520721915527", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2496793120286492852224", + "expectedQty": "2519890284082816777278", + "swapFee": "1498075872171895711", "reserves": [ - "6392908850559947390543969", - "2205917537568566780045571" + "3797114038193086511954610", + "2753920874549467011789821" ], - "LPTokenSupply": "8459949862300253920617682", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6478769752124579900090232" }, { - "type": "mintMulti", - "inputQtys": [ - "1886869286677847474176", - "2822512734910084546560" + "type": "redeemMasset", + "inputQty": "590210259527072256", + "expectedQtys": [ + "345706220506476396", + "250729255834368471" ], - "expectedQty": "4650853357172969094000", + "redemptionFee": "354126155716243", "reserves": [ - "6394795719846625238018145", - "2208740050303476864592131" + "3797113692486866005478214", + "2753920623820211177421350" ], - "LPTokenSupply": "8464600715657426889711682" + "LPTokenSupply": "6478769161949732988589600" }, { - "type": "mintMulti", - "inputQtys": [ - "684417633261021822976", - "2457513010673987616768" + "type": "redeemMasset", + "inputQty": "3907709639961342273126", + "expectedQtys": [ + "2288878427184051148097", + "1660047608927666839770" ], - "expectedQty": "3109089147847303858574", + "redemptionFee": "2344625783976805363", "reserves": [ - "6395480137479886259841121", - "2211197563314150852208899" + "3794824814059681954330117", + "2752260576211283510581580" ], - "LPTokenSupply": "8467709804805274193570256" + "LPTokenSupply": "6474861686772350043997010" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "445676598649114198016", - "outputIndex": 0, - "expectedQty": "450595585768630882324", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1293951043158699147264", + "expectedQty": "1308819962543560914890", + "swapFee": "776370625895219488", "reserves": [ - "6395029541894117628958797", - "2211643239912799966406915" + "3793515994097138393415227", + "2752260576211283510581580" ], - "LPTokenSupply": "8467709804805274193570256", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6473567813366253934371694" }, { - "type": "redeemMasset", - "inputQty": "1321494200137980418457", - "expectedQtys": [ - "997427173031085310114", - "344948064756892779333" - ], - "redemptionFee": "792896520082788251", + "type": "redeem", + "inputIndex": 0, + "inputQty": "156082670896945", + "expectedQty": "157876163463014", + "swapFee": "93649602538", "reserves": [ - "6394032114721086543648683", - "2211298291848043073627582" + "3793515993939262229952213", + "2752260576211283510581580" ], - "LPTokenSupply": "8466388389894788221430624" + "LPTokenSupply": "6473567813210180628435002" }, { "type": "redeemMasset", - "inputQty": "440375529963114253516", + "inputQty": "16162911798172164554752", "expectedQtys": [ - "332383265019072482372", - "114950712318655860996" + "9465796547508443083759", + "6867596894745420749780" ], - "redemptionFee": "264225317977868552", + "redemptionFee": "9697747078903298732", "reserves": [ - "6393699731456067471166311", - "2211183341135724417766586" + "3784050197391753786868454", + "2745392979316538089831800" ], - "LPTokenSupply": "8465948040787356904963963" + "LPTokenSupply": "6457405871186716354210123" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "79024566837550707113984", - "outputIndex": 1, - "expectedQty": "78062702446989143085108", - "swapFee": "62021137076099629327", + "type": "redeemBassets", + "inputQtys": [ + "115495559633189015126016", + "168879508862092223447040" + ], + "expectedQty": "281351750120859364779928", + "swapFee": "168912397511022232207", "reserves": [ - "6472724298293618178280295", - "2133120638688735274681478" + "3668554637758564771742438", + "2576513470454445866384760" ], - "LPTokenSupply": "8465954242901064514926895", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6175902099908097069421207" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "13428454823308795314176", - "expectedQty": "13682676945926019726389", - "swapFee": "8057072893985277188", + "inputIndex": 1, + "inputQty": "12637693298378597728256", + "expectedQty": "12752959508378023813828", + "swapFee": "7582615979027158636", "reserves": [ - "6459041621347692158553906", - "2133120638688735274681478" + "3668554637758564771742438", + "2563760510946067842570932" ], - "LPTokenSupply": "8452526593785045118140437" + "LPTokenSupply": "6163265164871316374408814" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "8375087316519618560", - "expectedQty": "8214585604114065967", + "type": "mintMulti", + "inputQtys": [ + "10886020661762766848", + "10437547659021682688" + ], + "expectedQty": "21091438572889374755", "reserves": [ - "6459049996435008678172466", - "2133120638688735274681478" - ] + "3668565523779226534509286", + "2563770948493726864253620" + ], + "LPTokenSupply": "6163286256309889263783569" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "37108019167327462359040", - "expectedQty": "36827361554052924151131", + "type": "redeemMasset", + "inputQty": "10758779817947088486", + "expectedQtys": [ + "6400093311330091253", + "4472694624882637774" + ], + "redemptionFee": "6455267890768253", "reserves": [ - "6459049996435008678172466", - "2170228657856062737040518" - ] + "3668559123685915204418033", + "2563766475799101981615846" + ], + "LPTokenSupply": "6163275498175598105771908" }, { "type": "mintMulti", "inputQtys": [ - "30247086874566332514304", - "1128659024272449601536" + "29098688592893733502976", + "5546322304782596833280" ], - "expectedQty": "30789746933393795474150", + "expectedQty": "34239436677611457877044", "reserves": [ - "6489297083309575010686770", - "2171357316880335186642054" + "3697657812278808937921009", + "2569312798103884578449126" ], - "LPTokenSupply": "8520151916858095951831685" + "LPTokenSupply": "6197514934853209563648952" }, { "type": "mint", "inputIndex": 0, - "inputQty": "19958529786321827790848", - "expectedQty": "19577203579854668200656", + "inputQty": "19843185950872307761152", + "expectedQty": "19602614941904869917403", "reserves": [ - "6509255613095896838477618", - "2171357316880335186642054" + "3717500998229681245682161", + "2569312798103884578449126" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "126338272608560665853952", - "expectedQty": "125327665197362625726644", + "inputQty": "50628942138132320", + "expectedQty": "51087615005587106", + "swapFee": "30377365282879", "reserves": [ - "6509255613095896838477618", - "2297695589488895852496006" - ] + "3717500998229681245682161", + "2569312747016269572862020" + ], + "LPTokenSupply": "6217117499169210031962322" }, { "type": "redeemMasset", - "inputQty": "175362237330277580", + "inputQty": "612780325385913548", "expectedQtys": [ - "131654387191292027", - "46472549668766326" + "366189743838535892", + "253088291602078836" ], - "redemptionFee": "105217342398166", + "redemptionFee": "367668195231548", "reserves": [ - "6509255481441509647185591", - "2297695543016346183729680" + "3717500632039937407146269", + "2569312493927977970783184" ], - "LPTokenSupply": "8665056610283597649721221" + "LPTokenSupply": "6217116886425651465571928" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "23009492045003554816", - "expectedQty": "22576073617146930458", + "inputIndex": 1, + "inputQty": "128054531662001230315520", + "expectedQty": "126814679805439820043414", + "reserves": [ + "3717500632039937407146269", + "2697367025589979201098704" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "90125325665405558063104", + "expectedQty": "89236881226431552691435", "reserves": [ - "6509278490933554650740407", - "2297695543016346183729680" + "3717500632039937407146269", + "2787492351255384759161808" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1971644380508264857600", - "expectedQty": "2008289078189142336784", - "swapFee": "1182986628304958914", + "inputQty": "2324493262003101184", + "expectedQty": "2351023076943862851", + "swapFee": "1394695957201860", "reserves": [ - "6507270201855365508403623", - "2297695543016346183729680" + "3717498281016860463283418", + "2787492351255384759161808" ], - "LPTokenSupply": "8663107660275369362289970" + "LPTokenSupply": "6433166123103730430925779" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "14878593845644113215488", - "24062495850126557315072" + "3095296384464079872", + "3553901459160413184" ], - "expectedQty": "38457776352444946996663", + "expectedQty": "6577155974029031399", + "swapFee": "3948662782086670", "reserves": [ - "6522148795701009621619111", - "2321758038866472741044752" + "3717495185720475999203546", + "2787488797353925598748624" ], - "LPTokenSupply": "8701565436627814309286633" + "LPTokenSupply": "6433159542393959898016376" }, { - "type": "mintMulti", - "inputQtys": [ - "6428991519303344128", - "6560602499974164480" - ], - "expectedQty": "12812948852936411380", + "type": "mint", + "inputIndex": 0, + "inputQty": "1734288322484093952", + "expectedQty": "1713689136881313001", "reserves": [ - "6522155224692528924963239", - "2321764599468972715209232" - ], - "LPTokenSupply": "8701578249576667245698013" + "3717496920008798483297498", + "2787488797353925598748624" + ] }, { - "type": "redeemMasset", - "inputQty": "174887495143607579443", - "expectedQtys": [ - "131006005054958624861", - "46635674002805621255" - ], - "redemptionFee": "104932497086164547", + "type": "mint", + "inputIndex": 0, + "inputQty": "475370712663339200", + "expectedQty": "469724448329223215", "reserves": [ - "6522024218687473966338378", - "2321717963794969909587977" - ], - "LPTokenSupply": "8701403372574773346735024" + "3717497395379511146636698", + "2787488797353925598748624" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "218232922422786588672", - "142781539280901111808" - ], - "expectedQty": "355698001904290583750", - "swapFee": "213546929300154442", + "type": "mint", + "inputIndex": 1, + "inputQty": "33989434860882515460096", + "expectedQty": "33651194775671178537031", "reserves": [ - "6521805985765051179749706", - "2321575182255689008476169" - ], - "LPTokenSupply": "8701047482380632686012275" + "3717497395379511146636698", + "2821478232214808114208720" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "52871178767295586304", - "expectedQty": "53851681891620457646", - "swapFee": "31722707260377351", + "inputQty": "14660760998846457856", + "expectedQty": "14487177065505586575", + "reserves": [ + "3717512056140509993094554", + "2821478232214808114208720" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "27096312092889689620480", + "expectedQty": "27352379772260091616642", + "swapFee": "16257787255733813772", "reserves": [ - "6521752134083159559292060", - "2321575182255689008476169" + "3717512056140509993094554", + "2794125852442548022592078" ], - "LPTokenSupply": "8700994614374136116463706" + "LPTokenSupply": "6439732721446117676437095" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "30994644213919425495040", - "expectedQty": "30728292026858746202189", + "inputQty": "353768568505516391661568", + "expectedQty": "357000565143103766108050", + "swapFee": "212261141103309834996", "reserves": [ - "6521752134083159559292060", - "2352569826469608433971209" - ] + "3717512056140509993094554", + "2437125287299444256484028" + ], + "LPTokenSupply": "6085985379054711615759026" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "63067596194754846720", - "90132859808540622848" + "37709949511682649751552", + "27893389578636527403008" ], - "expectedQty": "151236585179184544626", - "swapFee": "90796428964889660", + "expectedQty": "64877255987777213870656", "reserves": [ - "6521689066486964804445340", - "2352479693609799893348361" + "3755222005652192642846106", + "2465018676878080783887036" ], - "LPTokenSupply": "8731571588099029609720574" + "LPTokenSupply": "6150862635042488829629682" }, { "type": "redeemMasset", - "inputQty": "543687629271253961932", + "inputQty": "596670124936864", "expectedQtys": [ - "405841511421840889345", - "146393657334859177802" + "364060220309685", + "238977946236194" ], - "redemptionFee": "326212577562752377", + "redemptionFee": "358002074962", "reserves": [ - "6521283224975542963555995", - "2352333299952465034170559" + "3755222005288132422536421", + "2465018676639102837650842" ], - "LPTokenSupply": "8731027933091016112033879" + "LPTokenSupply": "6150862634445854504900314" }, { - "type": "redeemMasset", - "inputQty": "3596434133486215679180", - "expectedQtys": [ - "2684597248423224061421", - "968378045633862784992" + "type": "mintMulti", + "inputQtys": [ + "67068542662825136357376", + "66558983109560531681280" ], - "redemptionFee": "2157860480091729407", + "expectedQty": "132176945562129110531289", "reserves": [ - "6518598627727119739494574", - "2351364921906831171385567" + "3822290547950957558893797", + "2531577659748663369332122" ], - "LPTokenSupply": "8727431714743577905527639" + "LPTokenSupply": "6283039580007983615431603" }, { - "type": "redeemMasset", - "inputQty": "155582765982823507558", - "expectedQtys": [ - "116136468207302691555", - "41892319667488976981" - ], - "redemptionFee": "93349659589694104", + "type": "redeem", + "inputIndex": 1, + "inputQty": "442026683639281280", + "expectedQty": "445956492304903830", + "swapFee": "265216010183568", "reserves": [ - "6518482491258912436803019", - "2351323029587163682408586" + "3822290547950957558893797", + "2531577213792171064428292" ], - "LPTokenSupply": "8727276141312561040989491" + "LPTokenSupply": "6283039138007821577168679" }, { "type": "redeemMasset", - "inputQty": "1328560249159584999014", + "inputQty": "608385905228112179", "expectedQtys": [ - "991718431335668092657", - "357729025059521659122" + "369889855433854709", + "244985230160279674" ], - "redemptionFee": "797136149495750999", + "redemptionFee": "365031543136867", "reserves": [ - "6517490772827576768710362", - "2350965300562104160749464" + "3822290178061102125039088", + "2531576968806940904148618" ], - "LPTokenSupply": "8725947660777016405565576" + "LPTokenSupply": "6283038529658419503370186" }, { "type": "mintMulti", "inputQtys": [ - "17885241642072504532992", - "21919752635224447516672" + "66736904696974057472", + "66854563064135835648" ], - "expectedQty": "39278999064594410876071", + "expectedQty": "132141708636611036043", "reserves": [ - "6535376014469649273243354", - "2372885053197328608266136" + "3822356914965799099096560", + "2531643823370005039984266" ], - "LPTokenSupply": "8765226659841610816441647" + "LPTokenSupply": "6283170671367056114406229" }, { "type": "redeemBassets", "inputQtys": [ - "48889927839615572508672", - "104526727672859556052992" + "23379425144242148", + "43108779931389424" ], - "expectedQty": "151607363585443995677364", - "swapFee": "91019029569007802087", + "expectedQty": "65795118719034964", + "swapFee": "39500771694437", "reserves": [ - "6486486086630033700734682", - "2268358325524469052213144" + "3822356891586373954854412", + "2531643780261225108594842" ], - "LPTokenSupply": "8613537379129554713742403" + "LPTokenSupply": "6283170605536386700846270" }, { "type": "mintMulti", "inputQtys": [ - "18897401208684272418816", - "4722865033928064892928" + "2211302153339739392", + "5022162981208273920" ], - "expectedQty": "23224181528501769564951", + "expectedQty": "7159023225337994091", "reserves": [ - "6505383487838717973153498", - "2273081190558397117106072" + "3822359102888527294593804", + "2531648802424206316868762" ], - "LPTokenSupply": "8636761560658056483307354" + "LPTokenSupply": "6283177764559612038840361" }, { - "type": "redeemBassets", - "inputQtys": [ - "19483061812651884544000", - "8391175921619528843264" - ], - "expectedQty": "27436772275688668047158", - "swapFee": "16471946533333200748", + "type": "redeem", + "inputIndex": 0, + "inputQty": "891041852774736", + "expectedQty": "901596935600388", + "swapFee": "534625111664", "reserves": [ - "6485900426026066088609498", - "2264690014636777588262808" + "3822359101986930358993416", + "2531648802424206316868762" ], - "LPTokenSupply": "8609309963630487815379521" + "LPTokenSupply": "6283177763668623648576791" }, { "type": "redeemBassets", "inputQtys": [ - "86814457728255840", - "81802395400548240" + "106776346414132096", + "31494150700211088" ], - "expectedQty": "166300749543148446", - "swapFee": "99840353938252", + "expectedQty": "136660879468552204", + "swapFee": "82045755134211", "reserves": [ - "6485900339211608360353658", - "2264689932834382187714568" + "3822358995210583944861320", + "2531648770930055616657674" ], - "LPTokenSupply": "8609309797239881953686647" + "LPTokenSupply": "6283177626933903000403796" }, { - "type": "redeemMasset", - "inputQty": "960133210859925772697", - "expectedQtys": [ - "722890924776476822584", - "252412728265513837132" - ], - "redemptionFee": "576079926515955463", + "type": "swap", + "inputIndex": 1, + "inputQty": "426594601385022849024", + "outputIndex": 0, + "expectedQty": "427843719214941729124", + "swapFee": "0", "reserves": [ - "6485177448286831883531074", - "2264437520106116673877436" + "3821931151491369003132196", + "2532075365531440639506698" ], - "LPTokenSupply": "8608349721637014679509496" + "LPTokenSupply": "6283177626933903000403796", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "9066481964115594444", - "expectedQtys": [ - "6826217291644344054", - "2383518828722254794" + "type": "redeemBassets", + "inputQtys": [ + "185762034626006", + "313580805466269" ], - "redemptionFee": "5439889178469356", + "expectedQty": "494107888381524", + "swapFee": "296642718660", "reserves": [ - "6485170622069540239187020", - "2264435136587287951622642" + "3821931151305606968506190", + "2532075365217859834040429" ], - "LPTokenSupply": "8608340655699039481761987" + "LPTokenSupply": "6283177626439528133575477" }, { - "type": "mintMulti", - "inputQtys": [ - "368736311996269199360", - "94055283384221974528" - ], - "expectedQty": "455045914654176292294", + "type": "mint", + "inputIndex": 1, + "inputQty": "18975683552010051780608", + "expectedQty": "18796816636291471316259", "reserves": [ - "6485539358381536508386380", - "2264529191870672173597170" - ], - "LPTokenSupply": "8608795701613693658054281" + "3821931151305606968506190", + "2551051048769869885821037" + ] }, { "type": "mintMulti", "inputQtys": [ - "59914762324379500544", - "83419356906522165248" + "1933643631566766211072", + "5430347407966400937984" ], - "expectedQty": "141513071461369349814", + "expectedQty": "7288955007928182839200", "reserves": [ - "6485599273143860887886924", - "2264612611227578695762418" + "3823864794937173734717262", + "2556481396177836286759021" ], - "LPTokenSupply": "8608937214685155027404095" + "LPTokenSupply": "6309263398083747787730936" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "4860191155215616966656", + "expectedQty": "4800545453306690664516", + "reserves": [ + "3828724986092389351683918", + "2556481396177836286759021" + ] }, { "type": "redeemMasset", - "inputQty": "3319547490238966477619", + "inputQty": "2296927626585857589248", "expectedQtys": [ - "2499302376172962390433", - "872695250196781284876" + "1391976339047743827430", + "929437770438343831715" ], - "redemptionFee": "1991728494143379886", + "redemptionFee": "1378156575951514553", "reserves": [ - "6483099970767687925496491", - "2263739915977381914477542" + "3827333009753341607856488", + "2555551958407397942927306" ], - "LPTokenSupply": "8605617866367765475264464" + "LPTokenSupply": "6311767153726126215957659" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "38822704009991028736", - "40479146029664174080" + "47646178253506912256", + "14243527977777068032" ], - "expectedQty": "78233903218691859692", + "expectedQty": "61170331902125140856", + "swapFee": "36724233681483974", "reserves": [ - "6483138793471697916525227", - "2263780395123411578651622" + "3827285363575088100944232", + "2555537714879420165859274" ], - "LPTokenSupply": "8605696100270984167124156" + "LPTokenSupply": "6311705950342413777481225" }, { - "type": "redeemBassets", - "inputQtys": [ - "1505460292953358729216", - "7900365007170295562240" - ], - "expectedQty": "9312314954279556904318", - "swapFee": "5590743418618905485", + "type": "swap", + "inputIndex": 1, + "inputQty": "296806659942490059046912", + "outputIndex": 0, + "expectedQty": "297439303425045928192047", + "swapFee": "0", "reserves": [ - "6481633333178744557796011", - "2255880030116241283089382" + "3529846060150042172752185", + "2852344374821910224906186" ], - "LPTokenSupply": "8596378753647627853204900" + "LPTokenSupply": "6311705950342413777481225", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "283891808683016899788", - "expectedQtys": [ - "213924794766612801630", - "74454793669120504289" + "type": "redeemBassets", + "inputQtys": [ + "1633204767396159488", + "673377374748005248" ], - "redemptionFee": "170335085209810139", + "expectedQty": "2280599981445455840", + "swapFee": "1369181497765933", "reserves": [ - "6481419408383977944994381", - "2255805575322572162585093" + "3529844426945274776592697", + "2852343701444535476900938" ], - "LPTokenSupply": "8596094878872453357286125" + "LPTokenSupply": "6311703668510168984036044" }, { - "type": "redeemMasset", - "inputQty": "26931712440856136279654", - "expectedQtys": [ - "20294214144811156589293", - "7063237005683845983652" - ], - "redemptionFee": "16159027464513681767", + "type": "swap", + "inputIndex": 1, + "inputQty": "84867285439022561755136", + "outputIndex": 0, + "expectedQty": "84973567728480734737484", + "swapFee": "0", "reserves": [ - "6461125194239166788405088", - "2248742338316888316601441" + "3444870859216794041855213", + "2937210986883558038656074" ], - "LPTokenSupply": "8569164782334343672374647" + "LPTokenSupply": "6311703668510168984036044", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "218990852585206464", - "218061444734329856" - ], - "expectedQty": "431118449543348409", - "swapFee": "258826365545336", + "type": "redeem", + "inputIndex": 1, + "inputQty": "138270976896981413134336", + "expectedQty": "139635832455212689860414", + "swapFee": "82962586138188847880", "reserves": [ - "6461124975248314203198624", - "2248742120255443582271585" + "3444870859216794041855213", + "2797575154428345348795660" ], - "LPTokenSupply": "8569164350982950400035434" + "LPTokenSupply": "6173440987871801389786496" }, { "type": "mintMulti", "inputQtys": [ - "1025233382771569721344", - "963673290035583123456" + "11388971207335530", + "11910277767295912" ], - "expectedQty": "1961595318153803481748", + "expectedQty": "23043733362172757", "reserves": [ - "6462150208631085772919968", - "2249705793545479165395041" + "3444870870605765249190743", + "2797575166338623116091572" ], - "LPTokenSupply": "8571125946301104203517182" + "LPTokenSupply": "6173441010915534751959253" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "57100624888569118720", - "expectedQty": "56631447950635776420", + "inputIndex": 0, + "inputQty": "203088804353133379584", + "expectedQty": "200717501169465977426", "reserves": [ - "6462150208631085772919968", - "2249762894170367734513761" + "3445073959410118382570327", + "2797575166338623116091572" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "72192792852728160256", - "expectedQty": "71599579734665419429", + "inputQty": "15783604270690358788096", + "expectedQty": "15621051809306436490467", "reserves": [ - "6462150208631085772919968", - "2249835086963220462674017" + "3445073959410118382570327", + "2813358770609313474879668" ] }, { "type": "redeemBassets", "inputQtys": [ - "119023483550555586560", - "1496004755380227801088" - ], - "expectedQty": "1600490120439050206738", - "swapFee": "960870594620202245", - "reserves": [ - "6462031185147535217333408", - "2248339082207840234872929" - ], - "LPTokenSupply": "8569652822424815296324271" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "30193385482124877889536", - "22170940719502974779392" + "3709211455625376038912", + "11340213822153258172416" ], - "expectedQty": "51611502047326594019515", - "swapFee": "30985492523910302593", + "expectedQty": "14889314932883489557587", + "swapFee": "8938952331128770997", "reserves": [ - "6431837799665410339443872", - "2226168141488337260093537" + "3441364747954493006531415", + "2802018556787160216707252" ], - "LPTokenSupply": "8518013433434217183032421" + "LPTokenSupply": "6174365420236029148975660" }, { "type": "redeemMasset", - "inputQty": "10523939179169202359500", + "inputQty": "87553861043954869862", "expectedQtys": [ - "7941717558996415909836", - "2748763132592686548833" + "48770030211443967704", + "39709400100283552977" ], - "redemptionFee": "6314363507501521415", + "redemptionFee": "52532316626372921", "reserves": [ - "6423896082106413923534036", - "2223419378355744573544704" + "3441315977924281562563711", + "2801978847387059933154275" ], - "LPTokenSupply": "8507490125691398730825062" + "LPTokenSupply": "6174277871628216856743090" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4599991640099201220608", - "54614077528208050225152" + "353818785318617034522624", + "167378385775000968757248" ], - "expectedQty": "58691482457462248893356", - "swapFee": "35236031093133229273", + "expectedQty": "515335223768530540002312", "reserves": [ - "6419296090466314722313428", - "2168805300827536523319552" + "3795134763242898597086335", + "2969357233162060901911523" ], - "LPTokenSupply": "8448766930805952662025359" + "LPTokenSupply": "6689613095396747396745402" }, { "type": "redeemMasset", - "inputQty": "208199871576109", + "inputQty": "2237056899461217894", "expectedQtys": [ - "158093451341508", - "53413008289927" + "1268360116804412112", + "992379591777465933" ], - "redemptionFee": "124919922945", + "redemptionFee": "1342234139676730", "reserves": [ - "6419296090308221270971920", - "2168805300774123515029625" + "3795133494882781792674223", + "2969356240782469124445590" ], - "LPTokenSupply": "8448766930597765282441544" + "LPTokenSupply": "6689610858474071349495181" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2088840720387879469056", - "151836350067659374592" + "14859624561090888728576", + "82199669932712483880960" ], - "expectedQty": "2199656693516836032685", - "swapFee": "1320586367930860135", + "expectedQty": "96046885863337267236526", "reserves": [ - "6417207249587833391502864", - "2168653464424055855655033" + "3809993119443872681402799", + "3051555910715181608326550" ], - "LPTokenSupply": "8446566085376517308634736" + "LPTokenSupply": "6785657744337408616731707" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "8352126860127985729536", - "expectedQty": "8286747218328035256345", - "reserves": [ - "6417207249587833391502864", - "2177005591284183841384569" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "295170965138744213504", - "expectedQty": "300723055602882670354", - "swapFee": "177102579083246528", + "inputQty": "30646803931597008896", + "outputIndex": 0, + "expectedQty": "30692811740164535644", + "swapFee": "0", "reserves": [ - "6416906526532230508832510", - "2177005591284183841384569" + "3809962426632132516867155", + "3051586557519113205335446" ], - "LPTokenSupply": "8454557679339964508002229" + "LPTokenSupply": "6785657744337408616731707", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "8097760580373946407321", - "expectedQtys": [ - "6142414203615689642662", - "2083881074153835749158" - ], - "redemptionFee": "4858656348224367844", + "type": "swap", + "inputIndex": 0, + "inputQty": "68809955368312856641536", + "outputIndex": 1, + "expectedQty": "68641970545856432819643", + "swapFee": "54401264776123770736", "reserves": [ - "6410764112328614819189848", - "2174921710210030005635411" + "3878772382000445373508691", + "2982944586973256772515803" ], - "LPTokenSupply": "8446460404625225384031692" + "LPTokenSupply": "6785663184463886229108780", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "23701434383979", + "inputQty": "89330005477492838", "expectedQtys": [ - "17978316490229", - "6099340135199" + "51031543161175691", + "39245475229204534" ], - "redemptionFee": "14220860630", + "redemptionFee": "53598003286495", "reserves": [ - "6410764112310636502699619", - "2174921710203930665500212" + "3878772330968902212333000", + "2982944547727781543311269" ], - "LPTokenSupply": "8446460404601525371733776" + "LPTokenSupply": "6785663095139240551944591" }, { "type": "mintMulti", "inputQtys": [ - "23922332466873328", - "16171081761084264" + "9467633986900374585344", + "17516576236027567407104" ], - "expectedQty": "39510591181891034", + "expectedQty": "26695291198307480586103", "reserves": [ - "6410764136232968969572947", - "2174921726375012426584476" + "3888239964955802586918344", + "3000461123963809110718373" ], - "LPTokenSupply": "8446460444112116553624810" + "LPTokenSupply": "6812358386337548032530694" }, { - "type": "redeemMasset", - "inputQty": "3472744487245751045324", - "expectedQtys": [ - "2634190758705054801996", - "893677975164192243553" + "type": "redeemBassets", + "inputQtys": [ + "14556541242573963264", + "1915983975844431104" ], - "redemptionFee": "2083646692347450627", + "expectedQty": "16280793762308561601", + "swapFee": "9774340861902278", "reserves": [ - "6408129945474263914770951", - "2174028048399848234340923" + "3888225408414560012955080", + "3000459207979833266287269" ], - "LPTokenSupply": "8442987907989540037324548" + "LPTokenSupply": "6812342096746878948257041" }, { "type": "redeemMasset", - "inputQty": "286409960776449894", + "inputQty": "56206403115655564676300", "expectedQtys": [ - "217251410871989864", - "73704913103972661" - ], - "redemptionFee": "171845976465869", - "reserves": [ - "6408129728222853042781087", - "2174027974694935130368262" - ], - "LPTokenSupply": "8442987621596763858521240" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4601248356797785309184", - "expectedQty": "4687791016050569980834", - "swapFee": "2760749014078671185", - "reserves": [ - "6403441937206802472800253", - "2174027974694935130368262" + "32061225891071497318356", + "24740952578470033825957" ], - "LPTokenSupply": "8438386649314867481079174" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "20325461173141986344960", - "expectedQty": "20707552038624222626079", - "swapFee": "12195276703885191806", + "redemptionFee": "33723841869393338805", "reserves": [ - "6382734385168178250174174", - "2174027974694935130368262" + "3856164182523488515636724", + "2975718255401363232461312" ], - "LPTokenSupply": "8418062407669395883253394" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "219701184691053956956160", - "expectedQty": "217815279614929337302093", - "reserves": [ - "6382734385168178250174174", - "2393729159385989087324422" - ] + "LPTokenSupply": "6756139066015410322914621" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "2567267380590171648", - "expectedQty": "2543666993747805013", + "inputQty": "2051128946721997", + "outputIndex": 0, + "expectedQty": "2054751514204266", + "swapFee": "0", "reserves": [ - "6382734385168178250174174", - "2393731726653369677496070" - ] + "3856164180468737001432458", + "2975718257452492179183309" + ], + "LPTokenSupply": "6756139066015410322914621", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "2351490520744358051840", - "expectedQty": "2307801708363761086177", + "inputQty": "458087992475773504", + "expectedQty": "452661069895521619", "reserves": [ - "6385085875688922608226014", - "2393731726653369677496070" + "3856164638556729477205962", + "2975718257452492179183309" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "976868645063679744", - "expectedQty": "958718389646376717", + "inputIndex": 1, + "inputQty": "847854164214466", + "expectedQty": "839289405168026", "reserves": [ - "6385086852557567671905758", - "2393731726653369677496070" + "3856164638556729477205962", + "2975718258300346343397775" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2034247441378256617472", - "expectedQty": "2051869514794076242085", - "swapFee": "1220548464826953970", + "inputQty": "187288690926097104896", + "expectedQty": "189086385468724589232", + "swapFee": "112373214555658262", "reserves": [ - "6385086852557567671905758", - "2391679857138575601253985" + "3856164638556729477205962", + "2975529171914877618808543" ], - "LPTokenSupply": "8636154865991540601901319" + "LPTokenSupply": "6755952242062164982065196" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1015117646627854976", - "outputIndex": 1, - "expectedQty": "1004676626951335355", - "swapFee": "797002111550423", + "type": "redeemBassets", + "inputQtys": [ + "21651803113612311003136", + "6630095963465975857152" + ], + "expectedQty": "27958482841569772197575", + "swapFee": "16785160801422716948", "reserves": [ - "6385087867675214299760734", - "2391678852461948649918630" + "3834512835443117166202826", + "2968899075951411642951391" ], - "LPTokenSupply": "8636154866071240813056361", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6727978652575873929422366" }, { - "type": "redeemMasset", - "inputQty": "9797940842553154522316", - "expectedQtys": [ - "7239700739932129474704", - "2711793403111480514074" + "type": "mintMulti", + "inputQtys": [ + "34702048855408366321664", + "57400219651740966846464" ], - "redemptionFee": "5878764505531892713", + "expectedQty": "91110085739092805887199", "reserves": [ - "6377848166935282170286030", - "2388967059058837169404556" + "3869214884298525532524490", + "3026299295603152609797855" ], - "LPTokenSupply": "8626357513105138211723316" + "LPTokenSupply": "6819088738314966735309565" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8627788309791240093696", - "expectedQty": "8548408202111528594101", + "type": "redeemMasset", + "inputQty": "24743149505428140851", + "expectedQtys": [ + "14031071318344302614", + "10974376589828818935" + ], + "redemptionFee": "14845889703256884", "reserves": [ - "6377848166935282170286030", - "2397594847368628409498252" - ] + "3869200853227207188221876", + "3026288321226562780978920" + ], + "LPTokenSupply": "6819063996650050277494402" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3451364533483391680512", - "outputIndex": 0, - "expectedQty": "3484173305059958141351", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "68117334485447756", + "expectedQtys": [ + "38627224066357256", + "30212212161567554" + ], + "redemptionFee": "40870400691268", "reserves": [ - "6374363993630222212144679", - "2401046211902111801178764" + "3869200814599983121864620", + "3026288291014350619411366" ], - "LPTokenSupply": "8634905921307249740317417", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6819063928536802832115772" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "59542607406307492233216", - "expectedQty": "60630842742012661396636", - "swapFee": "35725564443784495339", + "type": "redeemMasset", + "inputQty": "74634383206949004", + "expectedQtys": [ + "42322839920000595", + "33102731295070862" + ], + "redemptionFee": "44780629924169", "reserves": [ - "6313733150888209550748043", - "2401046211902111801178764" + "3869200772277143201864025", + "3026288257911619324340504" ], - "LPTokenSupply": "8575366886457386626533734" + "LPTokenSupply": "6819063853906897688159184" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "520122871921928384", - "593571260411558144" + "87772684054828646400", + "19775663714835750912" ], - "expectedQty": "1098503472738401004", - "swapFee": "659497782312428", + "expectedQty": "106311102285163956976", "reserves": [ - "6313732630765337628819659", - "2401045618330851389620620" + "3869288544961198030510425", + "3026308033575334160091416" ], - "LPTokenSupply": "8575365787360365884051543" + "LPTokenSupply": "6819170165009182852116160" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "6422070720743473152000", - "expectedQty": "6303119884307533989329", + "inputQty": "19102119455208408875008", + "expectedQty": "19318613083126168863418", + "swapFee": "11461271673125045325", "reserves": [ - "6320154701486081101971659", - "2401045618330851389620620" - ] + "3849969931878071861647007", + "3026308033575334160091416" + ], + "LPTokenSupply": "6800069191681141755745684" }, { "type": "swap", "inputIndex": 0, - "inputQty": "99720955616298872602624", + "inputQty": "16475860226031149383680", "outputIndex": 1, - "expectedQty": "98670372233491151193414", - "swapFee": "78296116193252974388", + "expectedQty": "16435255110325013698462", + "swapFee": "13025154538021228279", "reserves": [ - "6419875657102379974574283", - "2302375246097360238427206" + "3866445792104103011030687", + "3009872778465009146392954" ], - "LPTokenSupply": "8581676736856292743338310", + "LPTokenSupply": "6800070494196595557868511", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "986452622726204882944", - "1048683846350906589184" + "131174572451105751040", + "20438796314783768576" ], - "expectedQty": "2007533095863058170141", - "swapFee": "1205243003319826798", + "expectedQty": "149854907531582322418", + "swapFee": "89966924673753645", "reserves": [ - "6418889204479653769691339", - "2301326562251009331838022" + "3866314617531651905279647", + "3009852339668694362624378" ], - "LPTokenSupply": "8579668119041726697324049" + "LPTokenSupply": "6799920558318831769167811" }, { - "type": "mintMulti", - "inputQtys": [ - "30796143528002797436928", - "37828630006047321358336" - ], - "expectedQty": "67717077103888594968639", + "type": "mint", + "inputIndex": 1, + "inputQty": "3792938714221619707904", + "expectedQty": "3754460530475146271706", "reserves": [ - "6449685348007656567128267", - "2339155192257056653196358" - ], - "LPTokenSupply": "8647385196145615292292688" + "3866314617531651905279647", + "3013645278382915982332282" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2581588488490299424768", - "expectedQty": "2602892653415446438314", - "swapFee": "1548953093094179654", + "inputQty": "12564718585525529739264", + "expectedQty": "12685798675822123837765", + "swapFee": "7538831151315317843", "reserves": [ - "6449685348007656567128267", - "2336552299603641206758044" + "3866314617531651905279647", + "3000959479707093858494517" ], - "LPTokenSupply": "8644803762552434302285885" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "31271951078883585949696", - "expectedQty": "30685228094697392288797", - "reserves": [ - "6480957299086540153077963", - "2336552299603641206758044" - ] + "LPTokenSupply": "6791111054146896517232037" }, { - "type": "redeemBassets", - "inputQtys": [ - "5080485710735650816", - "3692700590464885248" + "type": "redeemMasset", + "inputQty": "3843813233281524249395", + "expectedQtys": [ + "2187046322420830558762", + "1697543537731406108967" ], - "expectedQty": "8645644897482198574", - "swapFee": "5190501239232858", + "redemptionFee": "2306287939968914549", "reserves": [ - "6480952218600829417427147", - "2336548606903050741872796" + "3864127571209231074720885", + "2999261936169362452385550" ], - "LPTokenSupply": "8675480340330783097066534" + "LPTokenSupply": "6787267471542408989874096" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "128118999945783378182144", - "expectedQty": "130485598500823038866002", - "swapFee": "76871399967470026909", + "inputQty": "95503381203800912", + "outputIndex": 1, + "expectedQty": "95262712900773271", + "swapFee": "75498430346041", "reserves": [ - "6350466620100006378561145", - "2336548606903050741872796" + "3864127666712612278521797", + "2999261840906649551612279" ], - "LPTokenSupply": "8547369027524996465887080" + "LPTokenSupply": "6787267471549958832908700", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3052999241634121515008", - "expectedQty": "3025563966780503334508", + "type": "redeemMasset", + "inputQty": "11344441410363641036", + "expectedQtys": [ + "6454743131735089072", + "5010047917059972714" + ], + "redemptionFee": "6806664846218184", "reserves": [ - "6350466620100006378561145", - "2339601606144684863387804" - ] + "3864121211969480543432725", + "2999256830858732491639565" + ], + "LPTokenSupply": "6787256127789214953889482" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "49386601714852328112128", - "41125998250370810249216" + "7044215084241014226944", + "1140979907727822684160" ], - "expectedQty": "89221554698895619503803", - "swapFee": "53565071862454844609", + "expectedQty": "8090249719564176315852", "reserves": [ - "6301080018385154050449017", - "2298475607894314053138588" + "3871165427053721557659669", + "3000397810766460314323725" ], - "LPTokenSupply": "8461124828228205140357635" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1709913292767510272", - "expectedQty": "1677883063307091958", - "reserves": [ - "6301081728298446817959289", - "2298475607894314053138588" - ] + "LPTokenSupply": "6795346377508779130205334" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "80772873013662249385984", - "expectedQty": "80038525800566708178467", + "inputQty": "127911156678185992192", + "expectedQty": "129142085748890863932", + "swapFee": "76746694006911595", "reserves": [ - "6301081728298446817959289", - "2379248480907976302524572" - ] + "3871165427053721557659669", + "3000268668680711423459793" + ], + "LPTokenSupply": "6795218474026770344904301" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4516563178055607808", - "341844089334342615040" + "15878079798788738777088", + "16013524346473000468480" ], - "expectedQty": "343097472027554008442", - "swapFee": "205982072460008410", + "expectedQty": "31541445160686729728700", "reserves": [ - "6301077211735268762351481", - "2378906636818641959909532" + "3887043506852510296436757", + "3016282193027184423928273" ], - "LPTokenSupply": "8540821749055942387612048" + "LPTokenSupply": "6826759919187457074633001" }, { "type": "redeemMasset", - "inputQty": "225379770527219659571", + "inputQty": "4045800298893121126", "expectedQtys": [ - "166176428516428757761", - "62738194660478279488" + "2302229204895784770", + "1786492212590965991" ], - "redemptionFee": "135227862316331795", + "redemptionFee": "2427480179335872", "reserves": [ - "6300911035306752333593720", - "2378843898623981481630044" + "3887041204623305400651987", + "3016280406534971832962282" ], - "LPTokenSupply": "8540596382808201399585656" + "LPTokenSupply": "6826755873629906199445462" }, { "type": "redeemBassets", "inputQtys": [ - "417537334780936512", - "1316206208809278976" + "209750384987752398848", + "99072883036328804352" ], - "expectedQty": "1713747824066327121", - "swapFee": "1028866014048225", + "expectedQty": "305336896520811975163", + "swapFee": "183312125187599744", "reserves": [ - "6300910617769417552657208", - "2378842582417772672351068" + "3886831454238317648253139", + "3016181333651935504157930" ], - "LPTokenSupply": "8540594668134397920615131" + "LPTokenSupply": "6826450371752472718630528" }, { - "type": "redeemBassets", - "inputQtys": [ - "152482598042087609860096", - "240223425122283932352512" - ], - "expectedQty": "387732661075375767172576", - "swapFee": "232779264203747708928", + "type": "swap", + "inputIndex": 1, + "inputQty": "1301551976359809515520", + "outputIndex": 0, + "expectedQty": "1303794894359707021616", + "swapFee": "0", "reserves": [ - "6148428019727329942797112", - "2138619157295488739998556" + "3885527659343957941231523", + "3017482885628295313673450" ], - "LPTokenSupply": "8152652505721238780504518" + "LPTokenSupply": "6826450371752472718630528", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "5491187328417", - "expectedQtys": [ - "4138764985494", - "1439594325105" + "type": "mintMulti", + "inputQtys": [ + "292784682154162978816", + "1749427732244592328704" ], - "redemptionFee": "3294712397", + "expectedQty": "2021017601974138203898", "reserves": [ - "6148428019723191177811618", - "2138619157294049145673451" + "3885820444026112104210339", + "3019232313360539906002154" ], - "LPTokenSupply": "8152652505715747922647340" + "LPTokenSupply": "6828471389354446856834426" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "2627804950511198142464", - "expectedQty": "2648096262905071963280", - "swapFee": "1576682970306718885", + "inputQty": "17096807545532019900416", + "expectedQty": "16923324459144283992977", + "reserves": [ + "3885820444026112104210339", + "3036329120906071925902570" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "40326476635404308054016", + "10254517729568487374848" + ], + "expectedQty": "50000665246773502131985", + "swapFee": "30018410194180609644", "reserves": [ - "6148428019723191177811618", - "2135971061031144073710171" + "3845493967390707796156323", + "3026074603176503438527722" ], - "LPTokenSupply": "8150024858433533755176764" + "LPTokenSupply": "6795367031997642876146737" }, { "type": "swap", "inputIndex": 0, - "inputQty": "33803032492685372948480", + "inputQty": "3644383949432166023168", "outputIndex": 1, - "expectedQty": "33403419473145756718367", - "swapFee": "26528552981351592744", + "expectedQty": "3635528293499391496994", + "swapFee": "2881108311553207165", "reserves": [ - "6182231052215876550760098", - "2102567641557998316991804" + "3849138351340139962179491", + "3022439074883004047030728" ], - "LPTokenSupply": "8150027511288831890336038", + "LPTokenSupply": "6795367320108474031467453", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "270935793390820681318", - "expectedQtys": [ - "205395954815337958244", - "69854860592253110799" + "type": "mintMulti", + "inputQtys": [ + "10691128185537039433728", + "10738371465468488712192" ], - "redemptionFee": "162561476034492408", + "expectedQty": "21193958900404688306488", "reserves": [ - "6182025656261061212801854", - "2102497786697406063881005" + "3859829479525677001613219", + "3033177446348472535742920" ], - "LPTokenSupply": "8149756591751588673103960" + "LPTokenSupply": "6816561279008878719773941" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "5890330301880674025472", - "expectedQty": "5777834844262212041041", + "inputQty": "12280591285872366714880", + "expectedQty": "12419735686022191147892", + "swapFee": "7368354771523420028", "reserves": [ - "6187915986562941886827326", - "2102497786697406063881005" - ] + "3847409743839654810465327", + "3033177446348472535742920" + ], + "LPTokenSupply": "6804281424558483505401063" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "697350945326559395840", - "expectedQty": "691814913123736246142", + "inputQty": "51691461229622880894976", + "expectedQty": "52190940031828127531856", + "swapFee": "31014876737773728536", "reserves": [ - "6187915986562941886827326", - "2103195137642732623276845" - ] + "3847409743839654810465327", + "2980986506316644408211064" + ], + "LPTokenSupply": "6752593064816534401878940" }, { "type": "mintMulti", "inputQtys": [ - "976740907060415823872", - "3267274413096349728768" + "541383173961275867136", + "802580508596466745344" ], - "expectedQty": "4199385122957961379370", + "expectedQty": "1329414544766759767395", "reserves": [ - "6188892727470002302651198", - "2106462412055828973005613" + "3847951127013616086332463", + "2981789086825240874956408" ], - "LPTokenSupply": "8160425626631932582770513" + "LPTokenSupply": "6753922479361301161646335" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1460341117760295927808", - "expectedQty": "1432459206134898830211", + "inputQty": "9955021146003607650304", + "expectedQty": "9837013110861757868336", "reserves": [ - "6190353068587762598579006", - "2106462412055828973005613" + "3857906148159619693982767", + "2981789086825240874956408" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "500133479878007717888", - "expectedQty": "503842045408660145779", - "swapFee": "300080087926804630", + "type": "swap", + "inputIndex": 0, + "inputQty": "361619810876926912", + "outputIndex": 1, + "expectedQty": "360697590353772826", + "swapFee": "285865344377246", "reserves": [ - "6190353068587762598579006", - "2105958570010420312859834" + "3857906509779430570909679", + "2981788726127650521183582" ], - "LPTokenSupply": "8161357982366198266563299" + "LPTokenSupply": "6763759492500749453952395", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6252307419289569198080", - "expectedQty": "6298520266036183418006", - "swapFee": "3751384451573741518", + "type": "redeemBassets", + "inputQtys": [ + "2302877279987455", + "1912764690860383" + ], + "expectedQty": "4168968963421898", + "swapFee": "2502883107917", "reserves": [ - "6190353068587762598579006", - "2099660049744384129441828" + "3857906507476553290922224", + "2981788724214885830323199" ], - "LPTokenSupply": "8155106050085353854739370" + "LPTokenSupply": "6763759488329527895733370" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "18998046958678563618816", - "expectedQty": "18634854883874867299699", + "type": "redeemBassets", + "inputQtys": [ + "11379776559307978752", + "40241245367091838976" + ], + "expectedQty": "51078669365914390355", + "swapFee": "30665600980136716", "reserves": [ - "6209351115546441162197822", - "2099660049744384129441828" - ] + "3857895127699993982943472", + "2981748482969518738484223" + ], + "LPTokenSupply": "6763708382061121099219969" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "11052310382152832253952", - "expectedQty": "11132819368630934907656", - "swapFee": "6631386229291699352", + "type": "redeemMasset", + "inputQty": "27936176753198503244595", + "expectedQtys": [ + "15924721941633729094305", + "12308140558368826888649" + ], + "redemptionFee": "16761706051919101946", "reserves": [ - "6209351115546441162197822", - "2088527230375753194534172" + "3841970405758360253849167", + "2969440342411149911595574" ], - "LPTokenSupply": "8162689257725698818955052" + "LPTokenSupply": "6735773881478527787885568" }, { "type": "redeemBassets", "inputQtys": [ - "3492417133115009400832", - "3853525729096402731008" + "58649403500886884352", + "37713617544741756928" ], - "expectedQty": "7249067086941913876459", - "swapFee": "4352051483054981314", + "expectedQty": "95285515118372429631", + "swapFee": "57205632450493754", "reserves": [ - "6205858698413326152796990", - "2084673704646656791803164" + "3841911756354859366964815", + "2969402628793605169838646" ], - "LPTokenSupply": "8155436273792422155595409" + "LPTokenSupply": "6735678544478340210011557" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "43249956773406825250816", - "15126332177871003451392" + "23182111359859995705344", + "1993985486420557168640" ], - "expectedQty": "57430131432036843294288", - "swapFee": "34478766118893442041", + "expectedQty": "24880786046809599476617", "reserves": [ - "6162608741639919327546174", - "2069547372468785788351772" + "3865093867714719362670159", + "2971396614280025727007286" ], - "LPTokenSupply": "8097975111470878308203283" + "LPTokenSupply": "6760559330525149809488174" }, { - "type": "redeemMasset", - "inputQty": "3312131766275821568", - "expectedQtys": [ - "2519040262807581496", - "845952319155218077" + "type": "redeemBassets", + "inputQtys": [ + "1433448205523444039680", + "1330874925755611742208" ], - "redemptionFee": "1987279059765492", + "expectedQty": "2733849822228405122991", + "swapFee": "1641294670139126549", "reserves": [ - "6162606222599656519964678", - "2069546526516466633133695" + "3863660419509195918630479", + "2970065739354270115265078" ], - "LPTokenSupply": "8097971799537839938358264" + "LPTokenSupply": "6757824003537718279151287" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1107321504370305794048", - "expectedQty": "1115318323694125849900", - "swapFee": "664392902622183476", + "type": "mint", + "inputIndex": 0, + "inputQty": "257953782391198602756096", + "expectedQty": "254863840670644480340347", + "reserves": [ + "4121614201900394521386575", + "2970065739354270115265078" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "76903116146848808960", + "outputIndex": 1, + "expectedQty": "76667518987625910698", + "swapFee": "60779418810025586", "reserves": [ - "6162606222599656519964678", - "2068431208192772507283795" + "4121691105016541370195535", + "2969989071835282489354380" ], - "LPTokenSupply": "8096864544472759894782563" + "LPTokenSupply": "7012687850286304640494192", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "14056020678984695808", - "expectedQtys": [ - "10691761853431979427", - "3588607334199354284" + "type": "mintMulti", + "inputQtys": [ + "27520501100421627904", + "17870921488192960512" ], - "redemptionFee": "8433612407390817", + "expectedQty": "44883264695964525544", "reserves": [ - "6162595530837803087985251", - "2068427619585438307929511" + "4121718625517641791823439", + "2970006942756770682314892" ], - "LPTokenSupply": "8096850489295442150825836" + "LPTokenSupply": "7012732733551000605019736" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "403515425802712121344", - "expectedQty": "411153804524062096049", - "swapFee": "242109255481627272", + "inputQty": "11800361044204926976", + "expectedQty": "11657833779030176651", "reserves": [ - "6162184377033279025889202", - "2068427619585438307929511" - ], - "LPTokenSupply": "8096446998080564986867219" + "4121730425878685996750415", + "2970006942756770682314892" + ] }, { - "type": "redeemMasset", - "inputQty": "340797898811638", - "expectedQtys": [ - "259224750385908", - "87012591732364" + "type": "mintMulti", + "inputQtys": [ + "14939185336082552832", + "3175611379123779072" ], - "redemptionFee": "204478739286", + "expectedQty": "17903126025222819106", "reserves": [ - "6162184376774054275503294", - "2068427619498425716197147" + "4121745365064022079303247", + "2970010118368149806093964" ], - "LPTokenSupply": "8096446997739787535929509" + "LPTokenSupply": "7012762294510804858015493" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "12025120194689335558144", + "expectedQty": "12137165544134353087061", + "swapFee": "7215072116813601334", + "reserves": [ + "4121745365064022079303247", + "2957872952824015453006903" + ], + "LPTokenSupply": "7000737895823327203817482" }, { "type": "mintMulti", "inputQtys": [ - "782516564688017", - "1271250058105226" + "144966138408528560128", + "295594342645423538176" ], - "expectedQty": "2028900000029248", + "expectedQty": "435905368534400133317", "reserves": [ - "6162184377556570840191311", - "2068427620769675774302373" + "4121890331202430607863375", + "2958168547166660876545079" ], - "LPTokenSupply": "8096446999768687535958757" + "LPTokenSupply": "7001173801191861603950799" }, { - "type": "mintMulti", - "inputQtys": [ - "954748289490188763136", - "1519966825589985509376" + "type": "mint", + "inputIndex": 1, + "inputQty": "10070862330803655802880", + "expectedQty": "9971908657097032682472", + "reserves": [ + "4121890331202430607863375", + "2968239409497464532347959" + ] + }, + { + "type": "redeemMasset", + "inputQty": "4479307059695493683609", + "expectedQtys": [ + "2631828704750632215701", + "1895222107524782306702" ], - "expectedQty": "2444611489500482992010", + "redemptionFee": "2687584235817296210", "reserves": [ - "6163139125846061028954447", - "2069947587595265759811749" + "4119258502497679975647674", + "2966344187389939750041257" ], - "LPTokenSupply": "8098891611258188018950767" + "LPTokenSupply": "7006666671547686724679283" }, { "type": "swap", "inputIndex": 0, - "inputQty": "44014574070323562414080", + "inputQty": "47360982536340258160640", "outputIndex": 1, - "expectedQty": "43461888086254131368968", - "swapFee": "34536245101283428875", + "expectedQty": "47210737147553913079968", + "swapFee": "37430357109996597297", "reserves": [ - "6207153699916384591368527", - "2026485699509011628442781" + "4166619485034020233808314", + "2919133450242385836961289" ], - "LPTokenSupply": "8098895064882698147293654", + "LPTokenSupply": "7006670414583397724339012", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "376102942924426444", - "expectedQtys": [ - "288079798264722057", - "94051093258535606" - ], - "redemptionFee": "225661765754655", + "type": "redeem", + "inputIndex": 0, + "inputQty": "56692199574060486623232", + "expectedQty": "57355075587895414084705", + "swapFee": "34015319744436291973", "reserves": [ - "6207153411836586326646470", - "2026485605457918369907175" + "4109264409446124819723609", + "2919133450242385836961289" ], - "LPTokenSupply": "8098894688802321399442675" + "LPTokenSupply": "6949981616541311681344977" }, { - "type": "redeemBassets", - "inputQtys": [ - "11186607634737809850368", - "24293488686048240205824" + "type": "redeemMasset", + "inputQty": "16968362916529579019468", + "expectedQtys": [ + "10026739230462617294139", + "7122780860053285359452" ], - "expectedQty": "35087363577666162166348", - "swapFee": "21065057180908242245", + "redemptionFee": "10181017749917747411", "reserves": [ - "6195966804201848516796102", - "2002192116771870129701351" + "4099237670215662202429470", + "2912010669382332551601837" ], - "LPTokenSupply": "8063788366673192419858305" + "LPTokenSupply": "6933014271726557094100250" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1840939245738436591616", - "expectedQty": "1876166580495849484321", - "swapFee": "1104563547443061954", + "type": "swap", + "inputIndex": 1, + "inputQty": "4113914168641602977792", + "outputIndex": 0, + "expectedQty": "4123662519277121755341", + "swapFee": "0", "reserves": [ - "6194090637621352667311781", - "2002192116771870129701351" + "4095114007696385080674129", + "2916124583550974154579629" ], - "LPTokenSupply": "8061947537883808727572884" + "LPTokenSupply": "6933014271726557094100250", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "3967008336343170285568", - "expectedQty": "3890183426413477430390", + "inputQty": "291435233976196582604800", + "expectedQty": "287869208372885304388231", "reserves": [ - "6198057645957695837597349", - "2002192116771870129701351" + "4386549241672581663278929", + "2916124583550974154579629" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "46993813951829240", - "44925393442412984" - ], - "expectedQty": "90686603205206832", - "reserves": [ - "6198057692951509789426589", - "2002192161697263572114335" - ], - "LPTokenSupply": "8065837811996825410210106" - }, { "type": "redeemMasset", - "inputQty": "8622090271380817510", + "inputQty": "2206646750632375589273", "expectedQtys": [ - "6621525259118829750", - "2138987184221404275" + "1339691592934292297926", + "890610676706466249430" ], - "redemptionFee": "5173254162828490", + "redemptionFee": "1323988050379425353", "reserves": [ - "6198051071426250670596839", - "2002190022710079350710060" + "4385209550079647370981003", + "2915233972874267688330199" ], - "LPTokenSupply": "8065829190423879445675445" + "LPTokenSupply": "7218676965747615060841743" }, { "type": "redeemMasset", - "inputQty": "1116007152538557297459", + "inputQty": "25825082233098074482278", "expectedQtys": [ - "857062420082214324873", - "276861517685669915338" + "15678835434646446235982", + "10423099099872213095628" ], - "redemptionFee": "669604291523134378", + "redemptionFee": "15495049339858844689", "reserves": [ - "6197194009006168456271966", - "2001913161192393680794722" + "4369530714645000924745021", + "2904810873774395475234571" ], - "LPTokenSupply": "8064713250231770040691423" + "LPTokenSupply": "7192853433019450972243933" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "37072245787520724369408", - "expectedQty": "37312146466717642544630", - "swapFee": "22243347472512434621", + "inputQty": "12238454344320165085184", + "expectedQty": "12348071246593120814502", + "swapFee": "7343072606592099051", "reserves": [ - "6197194009006168456271966", - "1964601014725676038250092" + "4369530714645000924745021", + "2892462802527802354420069" ], - "LPTokenSupply": "8027643228778996567565477" + "LPTokenSupply": "7180615712982391466368654" }, { - "type": "redeemMasset", - "inputQty": "19352072529288347648", - "expectedQtys": [ - "14930483006757209030", - "4733181182127241523" + "type": "redeemBassets", + "inputQtys": [ + "42746213274376002863104", + "26778201365761948123136" ], - "redemptionFee": "11611243517573008", + "expectedQty": "68742680144051310872612", + "swapFee": "41270370308615956097", "reserves": [ - "6197179078523161699062936", - "1964596281544493911008569" + "4326784501370624921881917", + "2865684601162040406296933" ], - "LPTokenSupply": "8027623877867591630975129" + "LPTokenSupply": "7111835889505062401135553" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "194083583150937088", - "expectedQty": "197818286023907918", - "swapFee": "116450149890562", - "reserves": [ - "6197178880704875675155018", - "1964596281544493911008569" - ], - "LPTokenSupply": "8027623683795653495027097" - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "34362344368288489472", - "46437307900872171520" + "4472626146500", + "55765832648632" ], - "expectedQty": "79811492604190336332", - "swapFee": "47915644949483892", + "expectedQty": "59655041250105", "reserves": [ - "6197144518360507386665546", - "1964549844236593038837049" + "4326784501375097548028417", + "2865684601217806238945565" ], - "LPTokenSupply": "8027543829178968850155261" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "58035548219535301541888", - "expectedQty": "56904271553367510015456", - "reserves": [ - "6255180066580042688207434", - "1964549844236593038837049" - ] + "LPTokenSupply": "7111835889564717442385658" }, { "type": "redeemBassets", "inputQtys": [ - "11301837004191972", - "5137849152740209" + "2770791114804208640", + "29314200041636220928" ], - "expectedQty": "16184589947291213", - "swapFee": "9716583918725", + "expectedQty": "31773120278044143751", + "swapFee": "19075317357240830", "reserves": [ - "6255180055278205684015462", - "1964549839098743886096840" + "4326781730583982743819777", + "2865655287017764602724637" ], - "LPTokenSupply": "8084448084539001487352650" + "LPTokenSupply": "7111804099276653776725159" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "4506907983903318343680", - "expectedQty": "4476545657240269344014", + "inputIndex": 0, + "inputQty": "2032292188608713457664", + "expectedQty": "2007164324776128925193", "reserves": [ - "6255180055278205684015462", - "1969056747082647204440520" + "4328814022772591457277441", + "2865655287017764602724637" ] }, { - "type": "mintMulti", - "inputQtys": [ - "465506186311840497664", - "56782786337986035712" - ], - "expectedQty": "512825480561685927997", - "reserves": [ - "6255645561464517524513126", - "1969113529868985190476232" - ], - "LPTokenSupply": "8089437455676803442624661" - }, - { - "type": "mintMulti", - "inputQtys": [ - "29673756173986944778240", - "37419804261382222774272" - ], - "expectedQty": "66258673981235750988229", - "reserves": [ - "6285319317638504469291366", - "2006533334130367413250504" - ], - "LPTokenSupply": "8155696129658039193612890" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4693106274346808115200", - "expectedQty": "4723209229430798797705", - "swapFee": "2815863764608084869", + "type": "swap", + "inputIndex": 0, + "inputQty": "58157117996806283264", + "outputIndex": 1, + "expectedQty": "57940627147943406404", + "swapFee": "45950401110027234", "reserves": [ - "6285319317638504469291366", - "2001810124900936614452799" + "4328872179890588263560705", + "2865597346390616659318233" ], - "LPTokenSupply": "8151003304970068846306176" + "LPTokenSupply": "7113811268196470016653075", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "5069547607551016", - "expectedQty": "4970974774296997", + "inputQty": "5469543258418556928", + "expectedQty": "5401911482617961863", "reserves": [ - "6285319322708052076842382", - "2001810124900936614452799" + "4328877649433846682117633", + "2865597346390616659318233" ] }, { - "type": "mintMulti", - "inputQtys": [ - "617779542883659022336", - "1690786143120701784064" - ], - "expectedQty": "2284792448204531285098", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2083932605743814672384", + "expectedQty": "2108755715093798980219", + "swapFee": "1250359563446288803", "reserves": [ - "6285937102250935735864718", - "2003500911044057316236863" + "4326768893718752883137414", + "2865597346390616659318233" ], - "LPTokenSupply": "8153288102389248151888271" + "LPTokenSupply": "7111732862538165164571434" }, { - "type": "redeemBassets", - "inputQtys": [ - "3348151954235805138944", - "3527235372789590917120" + "type": "redeemMasset", + "inputQty": "13827029502815504642867", + "expectedQtys": [ + "8407299104776454841712", + "5568112047753302413312" ], - "expectedQty": "6785763914495796828289", - "swapFee": "4073902690311665096", + "redemptionFee": "8296217701689302785", "reserves": [ - "6282588950296699930725774", - "1999973675671267725319743" + "4318361594613976428295702", + "2860029234342863356904921" ], - "LPTokenSupply": "8146498671962331074561394" + "LPTokenSupply": "7097906662657119828858845" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "14777163411923102859264", - "5829636978162892013568" + "13855364827879663730688", + "24178985071899391819776" ], - "expectedQty": "20278957388477409397965", - "swapFee": "12174679240630824133", - "reserves": [ - "6267811786884776827866510", - "1994144038693104833306175" - ], - "LPTokenSupply": "8126208757362537097421708" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "65644193809466340147200", - "expectedQty": "65171707698140460634405", - "reserves": [ - "6267811786884776827866510", - "2059788232502571173453375" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "21748255453758414848", - "expectedQty": "22162593810876557757", - "swapFee": "13048953272255048", + "expectedQty": "37633834400001989871262", "reserves": [ - "6267789624290965951308753", - "2059788232502571173453375" + "4332216959441856092026390", + "2884208219414762748724697" ], - "LPTokenSupply": "8191358718110119126866769" + "LPTokenSupply": "7135540497057121818730107" }, { "type": "mint", "inputIndex": 1, - "inputQty": "227338757654004105216", - "expectedQty": "225644379830130941253", + "inputQty": "15122601882192785178624", + "expectedQty": "14978803107865659345312", "reserves": [ - "6267789624290965951308753", - "2060015571260225177558591" + "4332216959441856092026390", + "2899330821296955533903321" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "597817108093519232", - "284186026110882464" - ], - "expectedQty": "868356756599339433", - "reserves": [ - "6267790222108074044827985", - "2060015855446251288441055" + "15777576647845239324672", + "16947113871861134393344" ], - "LPTokenSupply": "8191585230846705857147455" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "47073508188875317575680", - "outputIndex": 0, - "expectedQty": "47626566737873077744344", - "swapFee": "0", + "expectedQty": "32368803156692728928585", + "swapFee": "19432941659011043983", "reserves": [ - "6220163655370200967083641", - "2107089363635126606016735" + "4316439382794010852701718", + "2882383707425094399509977" ], - "LPTokenSupply": "8191585230846705857147455", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7118133007360801639207248" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4051176282701683490816", - "expectedQty": "4080962852760086185733", - "swapFee": "2430705769621010094", + "inputIndex": 0, + "inputQty": "14374388339538770526208", + "expectedQty": "14545188642122448265374", + "swapFee": "8624633003723262315", "reserves": [ - "6220163655370200967083641", - "2103008400782366519831002" + "4301894194151888404436344", + "2882383707425094399509977" ], - "LPTokenSupply": "8187534297634581135757648" + "LPTokenSupply": "7103759481484563241007271" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "15495295155202774", - "384676629361359488" + "4846311504857394053120", + "4268733877891344367616" ], - "expectedQty": "396843843918744486", - "swapFee": "238249255904789", + "expectedQty": "9014600328086728315613", "reserves": [ - "6220163639874905811880867", - "2103008016105737158471514" + "4306740505656745798489464", + "2886652441302985743877593" ], - "LPTokenSupply": "8187533900576312886698850" + "LPTokenSupply": "7112774081812649969322884" }, { "type": "redeemMasset", - "inputQty": "9430804343104700416", + "inputQty": "4949403580041508", "expectedQtys": [ - "7160391675186312804", - "2420894684319984134" + "2995035010791754", + "2007463675680998" ], - "redemptionFee": "5658482605862820", + "redemptionFee": "2969642148024", "reserves": [ - "6220156479483230625568063", - "2103005595211052838487380" + "4306740502661710787697710", + "2886652439295522068196595" ], - "LPTokenSupply": "8187524470337818042584716" + "LPTokenSupply": "7112774076863543353496178" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "126822923181814284288", - "551428353104065200128" + "3446118121815977984", + "381854734043996736" ], - "expectedQty": "671478993026476375484", - "swapFee": "403129273379913773", + "expectedQty": "3781841402929641274", "reserves": [ - "6220029656560048811283775", - "2102454166857948773287252" + "4306743948779832603675694", + "2886652821150256112193331" ], - "LPTokenSupply": "8186852628528445524286835" + "LPTokenSupply": "7112777858704946283137452" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "13813009136034884091904", - "expectedQty": "14074062036538228927035", - "swapFee": "8287805481620930455", + "inputIndex": 1, + "inputQty": "948824458878018650112", + "expectedQty": "957380143399708571506", + "swapFee": "569294675326811190", "reserves": [ - "6205955594523510582356740", - "2102454166857948773287252" + "4306743948779832603675694", + "2885695441006856403621825" ], - "LPTokenSupply": "8173040448172958802287976" + "LPTokenSupply": "7111829091175535797168459" }, { "type": "mintMulti", "inputQtys": [ - "531424307458692349952", - "828895045313053458432" + "20610058382839578624", + "24691227446585548800" ], - "expectedQty": "1343592799220819739820", + "expectedQty": "44811815317022718155", "reserves": [ - "6206487018830969274706692", - "2103283061903261826745684" + "4306764558838215443254318", + "2885720132234302989170625" ], - "LPTokenSupply": "8174384040972179622027796" + "LPTokenSupply": "7111873902990852819886614" }, { - "type": "redeemMasset", - "inputQty": "13949119205496830361", - "expectedQtys": [ - "10584660791932626730", - "3586978864552067942" - ], - "redemptionFee": "8369471523298098", + "type": "swap", + "inputIndex": 1, + "inputQty": "39184390866540879872", + "outputIndex": 0, + "expectedQty": "39295509035964776735", + "swapFee": "0", "reserves": [ - "6206476434170177342079962", - "2103279474924397274677742" + "4306725263329179478477583", + "2885759316625169530050497" ], - "LPTokenSupply": "8174370092689921277527244" + "LPTokenSupply": "7111873902990852819886614", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "865406595346899140608", - "838934168877337411584" - ], - "expectedQty": "1681142786241209782533", - "reserves": [ - "6207341840765524241220570", - "2104118409093274612089326" + "1529242051994475560960", + "857593692070002163712" ], - "LPTokenSupply": "8176051235476162487309777" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "45293361123660102893568", - "expectedQty": "46148142425225854431223", - "swapFee": "27176016674196061736", + "expectedQty": "2359804748653340264204", "reserves": [ - "6161193698340298386789347", - "2104118409093274612089326" + "4308254505381173954038543", + "2886616910317239532214209" ], - "LPTokenSupply": "8130760591954169804022382" + "LPTokenSupply": "7114233707739506160150818" }, { "type": "mintMulti", "inputQtys": [ - "2847392857920559906816", - "849622473023319179264" + "2207444399566124032", + "3316839326173484032" ], - "expectedQty": "3635818486849971857107", + "expectedQty": "5465452012208197055", "reserves": [ - "6164041091198218946696163", - "2104968031566297931268590" + "4308256712825573520162575", + "2886620227156565705698241" ], - "LPTokenSupply": "8134396410441019775879489" + "LPTokenSupply": "7114239173191518368347873" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "35803330603405300", - "expectedQty": "36478450469769747", - "swapFee": "21481998362043", + "inputQty": "12535536998079774", + "expectedQty": "12684433872691874", + "swapFee": "7521322198847", "reserves": [ - "6164041054719768476926416", - "2104968031566297931268590" + "4308256700141139647470701", + "2886620227156565705698241" ], - "LPTokenSupply": "8134396374639837372310393" + "LPTokenSupply": "7114239160656733502487983" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2777835668701942784", - "299386711026034624" + "2661075569598898110464", + "1549837133435770241024" ], - "expectedQty": "3021772080992089070", + "expectedQty": "4163327202231137542224", + "swapFee": "2499496018950052556", "reserves": [ - "6164043832555437178869200", - "2104968330953008957303214" + "4305595624571540749360237", + "2885070390023129935457217" ], - "LPTokenSupply": "8134399396411918364399463" + "LPTokenSupply": "7110073583908085309898457" }, { - "type": "mintMulti", - "inputQtys": [ - "326857378922633344", - "235438004870159840" - ], - "expectedQty": "554163097452336667", + "type": "redeem", + "inputIndex": 0, + "inputQty": "6527064168077756203008", + "expectedQty": "6604576605162960492521", + "swapFee": "3916238500846653721", "reserves": [ - "6164044159412816101502544", - "2104968566391013827463054" + "4298991047966377788867716", + "2885070390023129935457217" ], - "LPTokenSupply": "8134399950575015816736130" + "LPTokenSupply": "7103546911363857638360821" }, { - "type": "redeemMasset", - "inputQty": "112662131635077146214", - "expectedQtys": [ - "85321312708559249438", - "29136501402326721283" - ], - "redemptionFee": "67597278981046287", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4744993102565341134848", + "expectedQty": "4787797090014859237439", + "swapFee": "2846995861539204680", "reserves": [ - "6163958838100107542253106", - "2104939429889611500741771" + "4298991047966377788867716", + "2880282592933115076219778" ], - "LPTokenSupply": "8134287295203108637694544" + "LPTokenSupply": "7098802202960878451146441" }, { "type": "redeemMasset", - "inputQty": "1221503850128037275238", + "inputQty": "2602671943442189254656", "expectedQtys": [ - "925069597374046634550", - "315903386451704573103" + "1575216458764805578221", + "1055379854402873778556" ], - "redemptionFee": "732902310076822365", + "redemptionFee": "1561603166065313552", "reserves": [ - "6163033768502733495618556", - "2104623526503159796168668" + "4297415831507612983289495", + "2879227213078712202441222" ], - "LPTokenSupply": "8133065864643211608101542" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "490780576017612628033536", - "expectedQty": "481312634757180591689253", - "reserves": [ - "6653814344520346123652092", - "2104623526503159796168668" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "19294943611915460", - "expectedQty": "19162913035678959", - "reserves": [ - "6653814344520346123652092", - "2104623545798103408084128" - ] + "LPTokenSupply": "7096199687177752868423140" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "85647690886820621451264", - "expectedQty": "87294326756014461926635", - "swapFee": "51388614532092372870", + "inputIndex": 1, + "inputQty": "192792164899609632", + "expectedQty": "194530655220482627", + "swapFee": "115675298939765", "reserves": [ - "6566520017764331661725457", - "2104623545798103408084128" + "4297415831507612983289495", + "2879227018548056981958595" ], - "LPTokenSupply": "8528735966537937823255777" + "LPTokenSupply": "7096199494397155498707484" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "123093255528845246726144", - "expectedQty": "123831608741333761411565", - "swapFee": "73855953317307148035", + "inputQty": "17633163056645916327936", + "expectedQty": "17791904733745402143135", + "swapFee": "10579897833987549796", "reserves": [ - "6566520017764331661725457", - "1980791937056769646672563" + "4297415831507612983289495", + "2861435113814311579815460" ], - "LPTokenSupply": "8405650096604424307244436" + "LPTokenSupply": "7078567389330292981134527" }, { "type": "redeemMasset", - "inputQty": "544957961238104820940", + "inputQty": "88971662713831043891", "expectedQtys": [ - "425467421768837943530", - "128342323824511385779" + "53982508316415760315", + "35944262990759987716" ], - "redemptionFee": "326974776742862892", + "redemptionFee": "53382997628298626", "reserves": [ - "6566094550342562823781927", - "1980663594732945135286784" + "4297361848999296567529180", + "2861399169551320819827744" ], - "LPTokenSupply": "8405105171340663876709785" + "LPTokenSupply": "7078478423005878912920498" }, { - "type": "redeemBassets", - "inputQtys": [ - "423705323163951497216", - "655222653252036067328" + "type": "redeemMasset", + "inputQty": "1420661583499752", + "expectedQtys": [ + "861969687059697", + "573942673062398" ], - "expectedQty": "1066608108051870688511", - "swapFee": "640349074275687825", + "redemptionFee": "852396950099", "reserves": [ - "6565670845019398872284711", - "1980008372079693099219456" + "4297361848137326880469483", + "2861399168977378146765346" ], - "LPTokenSupply": "8404037986918445157902230" + "LPTokenSupply": "7078478421585302569115755" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "27989618136117367799808", - "outputIndex": 0, - "expectedQty": "28375491880545915103953", - "swapFee": "0", - "reserves": [ - "6537295353138852957180758", - "2007997990215810467019264" + "type": "mintMulti", + "inputQtys": [ + "43471147642764560", + "33774036487496352" ], - "LPTokenSupply": "8404037986918445157902230", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "783511917933018579206144", - "expectedQty": "776574689202544671884850", + "expectedQty": "76387174030917770", "reserves": [ - "6537295353138852957180758", - "2791509908148829046225408" - ] + "4297361891608474523234043", + "2861399202751414634261698" + ], + "LPTokenSupply": "7078478497972476600033525" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "14357491612575813632", - "expectedQty": "14613488140061977816", - "swapFee": "8614494967545488", + "inputQty": "5004038488192935002112", + "expectedQty": "5063582238884586480276", + "swapFee": "3002423092915761001", "reserves": [ - "6537280739650712895202942", - "2791509908148829046225408" + "4292298309369589936753767", + "2861399202751414634261698" ], - "LPTokenSupply": "9180598319490826750727996" + "LPTokenSupply": "7073474759726592956607513" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "11426941795993477185536", - "outputIndex": 0, - "expectedQty": "11512886485476750063609", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "1675856252890737664", + "outputIndex": 1, + "expectedQty": "1669712050438531696", + "swapFee": "1324126654182547", "reserves": [ - "6525767853165236145139333", - "2802936849944822523410944" + "4292299985225842827491431", + "2861397533039364195730002" ], - "LPTokenSupply": "9180598319490826750727996", + "LPTokenSupply": "7073474759859005622025767", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1813616508874649239552", - "763431877756471476224" - ], - "expectedQty": "2536054197657253668030", - "reserves": [ - "6527581469674110794378885", - "2803700281822578994887168" - ], - "LPTokenSupply": "9183134373688484004396026" - }, - { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "44422854213147029405696", - "expectedQty": "43942553441150840100926", + "inputQty": "420395578092317376", + "expectedQty": "424176983172140720", + "swapFee": "252237346855390", "reserves": [ - "6527581469674110794378885", - "2848123136035726024292864" - ] + "4292299985225842827491431", + "2861397108862381023589282" + ], + "LPTokenSupply": "7073474339488651264393930" }, { "type": "mintMulti", "inputQtys": [ - "201781046177498325319680", - "87109031416596963262464" + "7282102985697855012864", + "3225652331536427515904" ], - "expectedQty": "284305835813595452458098", + "expectedQty": "10387140471175024200654", "reserves": [ - "6729362515851609119698565", - "2935232167452322987555328" + "4299582088211540682504295", + "2864622761193917451105186" ], - "LPTokenSupply": "9511382762943230296955050" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "157488078439103007293440", - "expectedQty": "159082859398817886896576", - "swapFee": "94492847063461804376", - "reserves": [ - "6729362515851609119698565", - "2776149308053505100658752" - ], - "LPTokenSupply": "9353904133788833635842047" + "LPTokenSupply": "7083861479959826288594584" }, { "type": "redeemBassets", "inputQtys": [ - "98588398622143737233408", - "69499891802424572116992" + "1080712602323250446336", + "1082059884386555133952" ], - "expectedQty": "165570338593558545719672", - "swapFee": "99401844262692743077", + "expectedQty": "2139136383764117458275", + "swapFee": "1284252381687482964", "reserves": [ - "6630774117229465382465157", - "2706649416251080528541760" + "4298501375609217432057959", + "2863540701309530895971234" ], - "LPTokenSupply": "9188244333535438666653604" + "LPTokenSupply": "7081721187748918652401640" }, { - "type": "redeemMasset", - "inputQty": "1632824377270284268339", - "expectedQtys": [ - "1177634496018065194955", - "480704615306099486703" - ], - "redemptionFee": "979694626362170561", + "type": "redeem", + "inputIndex": 1, + "inputQty": "48407176536637702144", + "expectedQty": "48842435456217892634", + "swapFee": "29044305921982621", "reserves": [ - "6629596482733447317270202", - "2706168711635774429055057" + "4298501375609217432057959", + "2863491858874074678078600" ], - "LPTokenSupply": "9186611607127631018602321" + "LPTokenSupply": "7081672783476812606897758" }, { - "type": "redeemMasset", - "inputQty": "271832112506576", - "expectedQtys": [ - "196052256442410", - "80027567833403" - ], - "redemptionFee": "163099267503", + "type": "redeem", + "inputIndex": 0, + "inputQty": "103721197413937023287296", + "expectedQty": "104951341310100319503822", + "swapFee": "62232718448362213972", "reserves": [ - "6629596482537395060827792", - "2706168711555746861221654" + "4193550034299117112554137", + "2863491858874074678078600" ], - "LPTokenSupply": "9186611606855815216022495" + "LPTokenSupply": "6977957809334720419831859" }, { "type": "mintMulti", "inputQtys": [ - "1871391604241809", - "633436557082696" + "772154409490739888128", + "2065323659046821822464" ], - "expectedQty": "2464062698404611", + "expectedQty": "2808102596641555338749", "reserves": [ - "6629596484408786665069601", - "2706168712189183418304350" + "4194322188708607852442265", + "2865557182533121499901064" ], - "LPTokenSupply": "9186611609319877914427106" + "LPTokenSupply": "6980765911931361975170608" }, { - "type": "redeemMasset", - "inputQty": "854889556432059786854", - "expectedQtys": [ - "616568164093788695816", - "251680095240567858406" - ], - "redemptionFee": "512933733859235872", + "type": "redeem", + "inputIndex": 1, + "inputQty": "174125290032882515968", + "expectedQty": "175713375014548713065", + "swapFee": "104475174019729509", "reserves": [ - "6628979916244692876373785", - "2705917032093942850445944" + "4194322188708607852442265", + "2865381469158106951187999" ], - "LPTokenSupply": "9185756771056819240563839" + "LPTokenSupply": "6980591797088846494627590" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "612044182402513895424", - "outputIndex": 1, - "expectedQty": "606571647891165837719", - "swapFee": "480668266152759672", + "type": "redeemBassets", + "inputQtys": [ + "41618646156966258278400", + "11278130885586650660864" + ], + "expectedQty": "52277252305364390063036", + "swapFee": "31385182492714262595", "reserves": [ - "6629591960427095390269209", - "2705310460446051684608225" + "4152703542551641594163865", + "2854103338272520300527135" ], - "LPTokenSupply": "9185756819123645855839806", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6928286298119238661728217" }, { - "type": "redeemMasset", - "inputQty": "34093960716356956979", - "expectedQtys": [ - "24591705929475038394", - "10035036799902251838" - ], - "redemptionFee": "20456376429814174", + "type": "mint", + "inputIndex": 1, + "inputQty": "6888959637163410432", + "expectedQty": "6822383570166079439", "reserves": [ - "6629567368721165915230815", - "2705300425409251782356387" - ], - "LPTokenSupply": "9185722727208567141864244" + "4152703542551641594163865", + "2854110227232157463937567" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "134347288227615439060992", - "outputIndex": 1, - "expectedQty": "133074034638555082162369", - "swapFee": "105504765634647444269", + "inputIndex": 1, + "inputQty": "12123620750726086524928", + "outputIndex": 0, + "expectedQty": "12155218700844737546896", + "swapFee": "0", "reserves": [ - "6763914656948781354291807", - "2572226390770696700194018" + "4140548323850796856616969", + "2866233847982883550462495" ], - "LPTokenSupply": "9185733277685130606608670", + "LPTokenSupply": "6928293120502808827807656", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "464992470916905344", - "expectedQty": "469159890651791714", - "swapFee": "278995482550143", - "reserves": [ - "6763914656948781354291807", - "2572225921610806048402304" - ], - "LPTokenSupply": "9185732812720559237958340" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "8875615671116741214208", - "12592434056631269982208" - ], - "expectedQty": "21183525708896791768428", - "swapFee": "12717746072981864179", - "reserves": [ - "6755039041277664613077599", - "2559633487554174778420096" - ], - "LPTokenSupply": "9164537841040196762512149" - }, { "type": "mint", "inputIndex": 0, - "inputQty": "112509798221998424064", - "expectedQty": "110411480506145920491", + "inputQty": "16822104253291718656", + "expectedQty": "16616140056531941722", "reserves": [ - "6755151551075886611501663", - "2559633487554174778420096" + "4140565145955050148335625", + "2866233847982883550462495" ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "817578363345845223424", - "expectedQty": "832615978352008733680", - "swapFee": "490547018007507134", + "inputQty": "25158009384331376590848", + "outputIndex": 1, + "expectedQty": "25071783130824819234140", + "swapFee": "19879794351507458140", "reserves": [ - "6754318935097534602767983", - "2559633487554174778420096" + "4165723155339381524926473", + "2841162064852058731228355" ], - "LPTokenSupply": "9163830723212058863959929" + "LPTokenSupply": "6928311724622300510495192", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "4407986495062370942976", - "3564415722692976574464" + "type": "redeemMasset", + "inputQty": "10690364314104154921369", + "expectedQtys": [ + "6423841777385730814607", + "4381274244095378063054" ], - "expectedQty": "7856564549299346228989", - "swapFee": "4716768790854120209", + "redemptionFee": "6414218588462492952", "reserves": [ - "6749910948602472231825007", - "2556069071831481801845632" + "4159299313561995794111866", + "2836780790607963353165301" ], - "LPTokenSupply": "9155969913570847749022750" + "LPTokenSupply": "6917622001730055201823118" }, { "type": "mintMulti", "inputQtys": [ - "83239752871110377472", - "116566731374701707264" + "2532355470413917", + "2818213495863334" ], - "expectedQty": "197154650853202324916", + "expectedQty": "5292291073994380", "reserves": [ - "6749994188355343342202479", - "2556185638562856503552896" + "4159299316094351264525783", + "2836780793426176849028635" ], - "LPTokenSupply": "9156167068221700951347666" + "LPTokenSupply": "6917622007022346275817498" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "394304373193046163456", - "expectedQty": "397818624099646685097", - "swapFee": "236582623915827698", + "inputQty": "3524491097012503052288", + "expectedQty": "3556624128487465731097", + "swapFee": "2114694658207501831", "reserves": [ - "6749994188355343342202479", - "2555787819938756856867799" + "4159299316094351264525783", + "2833224169297689383297538" ], - "LPTokenSupply": "9155772787506770296766979" + "LPTokenSupply": "6914097727394799593515393" }, { "type": "redeemMasset", - "inputQty": "3730807080164887678156", + "inputQty": "116140423086987929", "expectedQtys": [ - "2748846759026670099337", - "1040811128062655033308" + "69824431716433687", + "47562883195489759" ], - "redemptionFee": "2238484248098932606", + "redemptionFee": "69684253852192", "reserves": [ - "6747245341596316672103142", - "2554747008810694201834491" + "4159299246269919548092096", + "2833224121734806187807779" ], - "LPTokenSupply": "9152042204275030218982083" + "LPTokenSupply": "6914097611261344931912683" }, { "type": "redeemBassets", "inputQtys": [ - "96261532264447051038720", - "143783652491820181487616" + "38875848662944301056", + "42754192455554875392" ], - "expectedQty": "236922298541178134834548", - "swapFee": "142238722358121753953", + "expectedQty": "80740364383241754565", + "swapFee": "48473302611511959", "reserves": [ - "6650983809331869621064422", - "2410963356318874020346875" + "4159260370421256603791040", + "2833181367542350632932387" ], - "LPTokenSupply": "8914991890883729774568976" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "726035786229087076352", - "expectedQty": "712336647434798171877", - "reserves": [ - "6651709845118098708140774", - "2410963356318874020346875" - ] + "LPTokenSupply": "6914016827270989339797353" }, { "type": "swap", "inputIndex": 1, - "inputQty": "722960535548520562688", + "inputQty": "2677948890875173888", "outputIndex": 0, - "expectedQty": "730302653132919898547", + "expectedQty": "2685191990548103511", "swapFee": "0", "reserves": [ - "6650979542464965788242227", - "2411686316854422540909563" + "4159257685229266055687529", + "2833184045491241508106275" ], - "LPTokenSupply": "8915704227531164572740853", + "LPTokenSupply": "6914016827270989339797353", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "145093281097833955459072", - "expectedQty": "146248122099035861070087", - "swapFee": "87055968658700373275", + "type": "swap", + "inputIndex": 0, + "inputQty": "5774335219694001192960", + "outputIndex": 1, + "expectedQty": "5754074786926044159286", + "swapFee": "4562647456976229138", "reserves": [ - "6650979542464965788242227", - "2265438194755386679839476" + "4165032020448960056880489", + "2827429970704315463946989" ], - "LPTokenSupply": "8770619652030196487319108" + "LPTokenSupply": "6914017283535735037420266", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "152433229067286413312", - "expectedQty": "149510197549598638774", + "inputIndex": 1, + "inputQty": "299322483389209280", + "expectedQty": "296445598374881372", "reserves": [ - "6651131975694033074655539", - "2265438194755386679839476" + "4165032020448960056880489", + "2827430270026798853156269" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "16069624423199850496", - "expectedQty": "15761475262153482068", + "inputQty": "1805083521792582090752", + "expectedQty": "1782862651541401809519", "reserves": [ - "6651148045318456274506035", - "2265438194755386679839476" + "4166837103970752638971241", + "2827430270026798853156269" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "21186389279344951296000", - "expectedQty": "20779955185822336436561", + "inputQty": "48025941811554196389888", + "expectedQty": "48594466687843634238843", + "swapFee": "28815565086932517833", "reserves": [ - "6672334434597801225802035", - "2265438194755386679839476" - ] + "4118242637282909004732398", + "2827430270026798853156269" + ], + "LPTokenSupply": "6867777382377829310973052" }, { "type": "redeemBassets", "inputQtys": [ - "872564525708939362304", - "217257114577904074752" + "237082494350092500992", + "208284287047459766272" ], - "expectedQty": "1071334679150989898088", - "swapFee": "643186719522307323", + "expectedQty": "440442445162950674132", + "swapFee": "264424121570712832", "reserves": [ - "6671461870072092286439731", - "2265220937640808775764724" + "4118005554788558912231406", + "2827221985739751393389997" ], - "LPTokenSupply": "8790492965341632015901831" + "LPTokenSupply": "6867336701950956946657370" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "645498398777442041856", - "expectedQty": "640323709431723435225", + "type": "redeemMasset", + "inputQty": "34978478847607424", + "expectedQtys": [ + "20962296083354911", + "14391691213124232" + ], + "redemptionFee": "20987087308564", "reserves": [ - "6671461870072092286439731", - "2265866436039586217806580" - ] + "4118005533826262828876495", + "2827221971348060180265765" + ], + "LPTokenSupply": "6867336666974576807780802" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "46819128236027305984", - "expectedQty": "46443694845328508479", - "reserves": [ - "6671461870072092286439731", - "2265913255167822245112564" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "35524821421227266539520", - "expectedQty": "34842633856596235592551", + "inputQty": "3330364517846027862016", + "outputIndex": 0, + "expectedQty": "3339140050292787901851", + "swapFee": "0", "reserves": [ - "6706986691493319552979251", - "2265913255167822245112564" - ] + "4114666393775970040974644", + "2830552335865906208127781" + ], + "LPTokenSupply": "6867336666974576807780802", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "2506100088994212610048", - "outputIndex": 1, - "expectedQty": "2475599423357078127308", - "swapFee": "1966351878502273852", + "inputQty": "1832068115132232499200", + "expectedQty": "1853715162227934284007", + "swapFee": "1099240869079339499", "reserves": [ - "6709492791582313765589299", - "2263437655744465166985256" + "4112812678613742106690637", + "2830552335865906208127781" ], - "LPTokenSupply": "8826022563237693153665471", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "6865504708783531483215551" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "38621698904923688", - "93618395021707536" + "34259862286708863139840", + "70247451484205277511680" ], - "expectedQty": "130756191731801231", - "swapFee": "78500815528397", + "expectedQty": "103405320717925824477367", "reserves": [ - "6709492752960614860665611", - "2263437562126070145277720" + "4147072540900450969830477", + "2900799787350111485639461" ], - "LPTokenSupply": "8826022432410850687888681" + "LPTokenSupply": "6968910029501457307692918" }, { - "type": "redeemMasset", - "inputQty": "3355338170097201473126", - "expectedQtys": [ - "2549178833162337091660", - "859961749121843052702" - ], - "redemptionFee": "2013202902058320883", + "type": "mint", + "inputIndex": 1, + "inputQty": "178064740394629562368", + "expectedQty": "176328213011081969928", "reserves": [ - "6706943574127452523573951", - "2262577600376948302225018" - ], - "LPTokenSupply": "8822667295561043692247643" + "4147072540900450969830477", + "2900977852090506115201829" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "6783891533119510020096", - "expectedQty": "6912692844294884496688", - "swapFee": "4070334919871706012", + "inputQty": "3471807972290653061120", + "expectedQty": "3512640810807684775640", + "swapFee": "2083084783374391836", "reserves": [ - "6700030881283157639077263", - "2262577600376948302225018" + "4143559900089643285054837", + "2900977852090506115201829" ], - "LPTokenSupply": "8815883811061416169398148" + "LPTokenSupply": "6965614758050656074040909" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "21377885346814160", - "27778493078813884" - ], - "expectedQty": "48525069947977465", - "reserves": [ - "6700030902661042985891423", - "2262577628155441381038902" - ], - "LPTokenSupply": "8815883859586486117375613" - }, - { - "type": "redeemMasset", - "inputQty": "40801172363472642506752", - "expectedQtys": [ - "30990096805048110631624", - "10465250197222940478045" + "47418626453286510657536", + "48386195485983242190848" ], - "redemptionFee": "24480703418083585504", + "expectedQty": "94753636630032430572427", + "swapFee": "56886313766279225878", "reserves": [ - "6669040805855994875259799", - "2252112377958218440560857" + "4096141273636356774397301", + "2852591656604522873010981" ], - "LPTokenSupply": "8775085135293355283227411" + "LPTokenSupply": "6870809923738233992165190" }, { "type": "mintMulti", "inputQtys": [ - "747025852425709696", - "791440057571063808" - ], - "expectedQty": "1517824197632454803", - "reserves": [ - "6669041552881847300969495", - "2252113169398276011624665" - ], - "LPTokenSupply": "8775086653117552915682214" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "12427486164406550528", - "70839945652344733696" + "5465789855344597401600", + "3845935483823483518976" ], - "expectedQty": "82466227962537680786", - "swapFee": "49509442442988401", + "expectedQty": "9207361999566287045184", "reserves": [ - "6669029125395682894418967", - "2252042329452623666890969" + "4101607063491701371798901", + "2856437592088346356529957" ], - "LPTokenSupply": "8775004142331092179311866" + "LPTokenSupply": "6880017285737800279210374" }, { "type": "mintMulti", "inputQtys": [ - "5468948815807698173952", - "3434517651970374238208" + "603795671396108206080", + "180933518205506977792" ], - "expectedQty": "8771072506668282227325", + "expectedQty": "775576098049445938966", "reserves": [ - "6674498074211490592592919", - "2255476847104594041129177" + "4102210859163097480004981", + "2856618525606551863507749" ], - "LPTokenSupply": "8783775214837760461539191" + "LPTokenSupply": "6880792861835849725149340" }, { "type": "redeemMasset", - "inputQty": "6663431191111", + "inputQty": "8061962598047626035", "expectedQtys": [ - "5060281317585", - "1709993354518" + "4803520183973339616", + "3344982795073254401" ], - "redemptionFee": "3998058714", + "redemptionFee": "4837177558828575", "reserves": [ - "6674498074206430311275334", - "2255476847102884047774659" + "4102206055642913506665365", + "2856615180623756790253348" ], - "LPTokenSupply": "8783775214831097430153951" + "LPTokenSupply": "6880784800356969433406162" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "361734526564001478868992", - "expectedQty": "368549769626535372547291", - "swapFee": "217040715938400887321", - "reserves": [ - "6305948304579894938728043", - "2255476847102884047774659" - ], - "LPTokenSupply": "8422062392338689791373691" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "9279638069830797312", - "13987253918215661568" - ], - "expectedQty": "22968326873482911917", - "swapFee": "13789269685901287", + "inputIndex": 1, + "inputQty": "314857963038189092864", + "expectedQty": "317763867611860354114", + "swapFee": "188914777822913455", "reserves": [ - "6305939024941825107930731", - "2255462859848965832113091" + "4102206055642913506665365", + "2856297416756144929899234" ], - "LPTokenSupply": "8422039411601473591150614" + "LPTokenSupply": "6880469961285409026604643" }, { - "type": "redeemBassets", - "inputQtys": [ - "1556532826043202142208", - "13512403798409017819136" - ], - "expectedQty": "14921503655718797049351", - "swapFee": "8958277159727114498", + "type": "mint", + "inputIndex": 0, + "inputQty": "6912977696687331999744", + "expectedQty": "6828336769233983596748", "reserves": [ - "6304382492115781905788523", - "2241950456050556814293955" - ], - "LPTokenSupply": "8407109845496311039698213" + "4109119033339600838665109", + "2856297416756144929899234" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "350775426576761094144", - "674540915926187114496" - ], - "expectedQty": "1012794674291598296444", - "swapFee": "608041629552690592", - "reserves": [ - "6304031716689205144694379", - "2241275915134630627179459" + "398451281509981159424", + "122796683121092247552" ], - "LPTokenSupply": "8406096503584552843980235" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8395623582644699136000", - "expectedQty": "8463871898507639886004", - "swapFee": "5037374149586819481", + "expectedQty": "515173344636541732341", "reserves": [ - "6304031716689205144694379", - "2232812043236122987293455" + "4109517484621110819824533", + "2856420213439266022146786" ], - "LPTokenSupply": "8397701383739323103526183" + "LPTokenSupply": "6887813471399279551933732" }, { "type": "redeemMasset", - "inputQty": "1800432557314846720", + "inputQty": "28291874674376202649", "expectedQtys": [ - "1350747476764257608", - "478418473927663709" + "16869822993517327026", + "11725781329841007501" ], - "redemptionFee": "1080259534388908", + "redemptionFee": "16975124804625721", "reserves": [ - "6304030365941728380436771", - "2232811564817649059629746" + "4109500614798117302497507", + "2856408487657936181139285" ], - "LPTokenSupply": "8397699583414791742118353" + "LPTokenSupply": "6887785181222117656193655" }, { "type": "redeemMasset", - "inputQty": "20372910416200444", + "inputQty": "61730137026121839411", "expectedQtys": [ - "15284469962737228", - "5413575016910557" + "36808323919562103583", + "25584521993182594616" ], - "redemptionFee": "12223746249720", + "redemptionFee": "37038082215673103", "reserves": [ - "6304030350657258417699543", - "2232811559404074042719189" + "4109463806474197740393924", + "2856382903135942998544669" ], - "LPTokenSupply": "8397699563043103700542881" + "LPTokenSupply": "6887723454788899755921554" }, { - "type": "redeemBassets", - "inputQtys": [ - "37449872391308604080128", - "9173388638948617617408" - ], - "expectedQty": "45832039271322607372768", - "swapFee": "27515733002595121496", + "type": "swap", + "inputIndex": 0, + "inputQty": "33415307894738072371200", + "outputIndex": 1, + "expectedQty": "33301197688863428426893", + "swapFee": "26404526505645747368", "reserves": [ - "6266580478265949813619415", - "2223638170765125425101781" + "4142879114368935812765124", + "2823081705447079570117776" ], - "LPTokenSupply": "8351842759612078757560765" + "LPTokenSupply": "6887726095241550320496290", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "8275216634503259136", - "14192870476839161856" + "45849531223111681179648", + "158913371973167278456832" ], - "expectedQty": "22187859555354893094", + "expectedQty": "202653022714065236734864", "reserves": [ - "6266588753482584316878551", - "2223652363635602264263637" + "4188728645592047493944772", + "2981995077420246848574608" ], - "LPTokenSupply": "8351864947471634112453859" + "LPTokenSupply": "7090379117955615557231154" }, { "type": "redeemMasset", - "inputQty": "294068414584633139", + "inputQty": "851269475472541184", "expectedQtys": [ - "220513639490339322", - "78247623221498007" + "502596170901963271", + "357802912140679684" ], - "redemptionFee": "176441048750779", + "redemptionFee": "510761685283524", "reserves": [ - "6266588532968944826539229", - "2223652285387979042765630" + "4188728142995876591981501", + "2981994719617334707894924" ], - "LPTokenSupply": "8351864653420863632695797" + "LPTokenSupply": "7090378266737216253218322" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "37153535150235", - "outputIndex": 0, - "expectedQty": "37545396051942", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "912020615200850313216", + "expectedQty": "900916455874163334010", "reserves": [ - "6266588532931399430487287", - "2223652285425132577915865" - ], - "LPTokenSupply": "8351864653420863632695797", - "hardLimitError": false, - "insufficientLiquidityError": false + "4189640163611077442294717", + "2981994719617334707894924" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "44821193877061050368", - "outputIndex": 0, - "expectedQty": "45293914706567494461", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4118017826244232478720", + "expectedQty": "4166267672918487047294", + "swapFee": "2470810695746539487", "reserves": [ - "6266543239016692862992826", - "2223697106619009638966233" + "4185473895938158955247423", + "2981994719617334707894924" ], - "LPTokenSupply": "8351864653420863632695797", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7087161412447915758727560" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "2928831699480579932160", - "expectedQty": "2952623354242271776412", - "swapFee": "1757299019688347959", + "inputQty": "12437801587593478930432", + "expectedQty": "12315237142709061821690", "reserves": [ - "6266543239016692862992826", - "2220744483264767367189821" - ], - "LPTokenSupply": "8348935997451285021598432" + "4185473895938158955247423", + "2994432521204928186825356" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "123772038744301120", + "inputQty": "11727137025569375387648", "outputIndex": 1, - "expectedQty": "122379316943861628", - "swapFee": "97134861606410", + "expectedQty": "11690278926131332342184", + "swapFee": "9267588199975557995", "reserves": [ - "6266543362788731607293946", - "2220744360885450423328193" + "4197201032963728330635071", + "2982742242278796854483172" ], - "LPTokenSupply": "8348935997460998507759073", + "LPTokenSupply": "7099477576349444818105049", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1311837102276516511744", - "expectedQty": "1322476491850018614901", - "swapFee": "787102261365909907", + "inputIndex": 0, + "inputQty": "5201007674772168704", + "expectedQty": "5261988619827093036", + "swapFee": "3120604604863301", "reserves": [ - "6266543362788731607293946", - "2219421884393600404713292" + "4197195770975108503542035", + "2982742242278796854483172" ], - "LPTokenSupply": "8347624239068948127838319" + "LPTokenSupply": "7099472375653830506422675" }, { "type": "mintMulti", "inputQtys": [ - "10174063426619335245824", - "53990048146489161547776" + "757589269714198069248", + "6577040370191962210304" ], - "expectedQty": "63496829944232817099402", + "expectedQty": "7260688350601349652479", "reserves": [ - "6276717426215350942539770", - "2273411932540089566261068" + "4197953360244822701611283", + "2989319282648988816693476" ], - "LPTokenSupply": "8411121069013180944937721" + "LPTokenSupply": "7106733064004431856075154" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1005396951610590208", - "expectedQty": "986383295516682291", + "inputQty": "942803160412668821504", + "expectedQty": "931323562838076761256", "reserves": [ - "6276718431612302553129978", - "2273411932540089566261068" + "4198896163405235370432787", + "2989319282648988816693476" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "347111499874232696832", - "outputIndex": 1, - "expectedQty": "343340643310949569099", - "swapFee": "272437619273154885", + "type": "redeemBassets", + "inputQtys": [ + "765335640025678872576", + "6401036412275009781760" + ], + "expectedQty": "7094073209253133594991", + "swapFee": "4258999325146968337", "reserves": [ - "6277065543112176785826810", - "2273068591896778616691969" + "4198130827765209691560211", + "2982918246236713806911716" ], - "LPTokenSupply": "8411122082640238388935500", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7100566481258624166969914" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "988777345758340055040", - "outputIndex": 1, - "expectedQty": "978028817573095730853", - "swapFee": "776061316643819067", + "type": "mintMulti", + "inputQtys": [ + "401808484067152962256896", + "494784847803375582969856" + ], + "expectedQty": "886803753387206154146199", "reserves": [ - "6278054320457935125881850", - "2272090563079205520961116" + "4599939311832362653817107", + "3477703094040089389881572" ], - "LPTokenSupply": "8411122160246370053317406", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7987370234645830321116113" }, { "type": "mint", "inputIndex": 0, - "inputQty": "12671006575041307475968", - "expectedQty": "12431269372835974462648", + "inputQty": "43047541102760578514944", + "expectedQty": "42530781450676915746204", "reserves": [ - "6290725327032976433357818", - "2272090563079205520961116" + "4642986852935123232332051", + "3477703094040089389881572" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "133872260630051024", - "1533335224438738944" - ], - "expectedQty": "1651034206225082147", - "swapFee": "991215252886781", + "type": "mint", + "inputIndex": 0, + "inputQty": "518691499744827", + "expectedQty": "512457443175847", "reserves": [ - "6290725193160715803306794", - "2272089029743981082222172" - ], - "LPTokenSupply": "8423551777692906075099803" + "4642986853453814732076878", + "3477703094040089389881572" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "6206943722665705209856", - "6463518509374840504320" - ], - "expectedQty": "12495449784262238859247", + "type": "mint", + "inputIndex": 1, + "inputQty": "64326651117780508606464", + "expectedQty": "63677091923470954043645", "reserves": [ - "6296932136883381508516650", - "2278552548253355922726492" - ], - "LPTokenSupply": "8436047227477168313959050" + "4642986853453814732076878", + "3542029745157869898488036" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "347907664846152073216", - "505019730158730149888" - ], - "expectedQty": "841842190984014289926", - "swapFee": "505408559726244320", + "type": "mint", + "inputIndex": 0, + "inputQty": "59036918842206617600", + "expectedQty": "58330717313485726332", "reserves": [ - "6296584229218535356443434", - "2278047528523197192576604" - ], - "LPTokenSupply": "8435204930418480546049235" + "4643045890372656938694478", + "3542029745157869898488036" + ] }, { "type": "redeemMasset", - "inputQty": "89132703172979248332", + "inputQty": "18715967943105270775808", "expectedQtys": [ - "66494511845239475716", - "24057116184754671957" + "10730276710057681734438", + "8185781527511146089323" ], - "redemptionFee": "53479621903787548", + "redemptionFee": "11229580765863162465", "reserves": [ - "6296517734706690116967718", - "2278023471407012437904647" + "4632315613662599256960040", + "3533843963630358752398713" ], - "LPTokenSupply": "8435115803063269757179657" + "LPTokenSupply": "8074921594264720435348579" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "113684102450761334784", - "expectedQty": "112670297146687973746", + "inputIndex": 0, + "inputQty": "69327268309614936981504", + "expectedQty": "68496286978794689967669", "reserves": [ - "6296517734706690116967718", - "2278137155509463199239431" + "4701642881972214193941544", + "3533843963630358752398713" ] }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "427588553939147358208", - "outputIndex": 0, - "expectedQty": "431945339772093624211", - "swapFee": "0", - "reserves": [ - "6296085789366918023343507", - "2278564744063402346597639" - ], - "LPTokenSupply": "8435228473360416445153403", - "hardLimitError": false, - "insufficientLiquidityError": false - }, { "type": "swap", "inputIndex": 0, - "inputQty": "5190050148148515438592", + "inputQty": "21022372964544085491712", "outputIndex": 1, - "expectedQty": "5133461592458382667601", - "swapFee": "4073493857638279017", + "expectedQty": "20963722657076723621331", + "swapFee": "16615810424626926367", "reserves": [ - "6301275839515066538782099", - "2273431282470943963930038" + "4722665254936758279433256", + "3512880240973282028777382" ], - "LPTokenSupply": "8435228880709802208981304", + "LPTokenSupply": "8143419542824557588008884", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "310705458647390289920", - "expectedQty": "304823632465990444519", + "inputQty": "5638377714992295", + "expectedQty": "5570472280874649", "reserves": [ - "6301586544973713929072019", - "2273431282470943963930038" + "4722665260575135994425551", + "3512880240973282028777382" ] }, { - "type": "mintMulti", - "inputQtys": [ - "9598307230788186275840", - "9791634067336781103104" - ], - "expectedQty": "19121163034228200653611", - "reserves": [ - "6311184852204502115347859", - "2283222916538280745033142" - ], - "LPTokenSupply": "8454654867376496400079434" - }, - { - "type": "mintMulti", - "inputQtys": [ - "18173318509798234112", - "30404728067182522368" - ], - "expectedQty": "47963121986786949525", - "reserves": [ - "6311203025523011913581971", - "2283253321266347927555510" + "type": "redeemMasset", + "inputQty": "55565772743608290508", + "expectedQtys": [ + "32205278375737400814", + "23955389556318972018" ], - "LPTokenSupply": "8454702830498483187028959" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9154095142316094464", - "expectedQty": "9230918020211765913", - "swapFee": "5492457085389656", + "redemptionFee": "33339463646164974", "reserves": [ - "6311203025523011913581971", - "2283244090348327715789597" + "4722633055296760257024737", + "3512856285583725709805364" ], - "LPTokenSupply": "8454693676952586579473460" + "LPTokenSupply": "8143363985956232625209522" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "12699771661894272679936", - "expectedQty": "12805878837624245976239", - "swapFee": "7619862997136563607", + "inputQty": "39203018369828618240", + "expectedQty": "39576614301576253962", + "swapFee": "23521811021897170", "reserves": [ - "6311203025523011913581971", - "2270438211510703469813358" + "4722633055296760257024737", + "3512816708969424133551402" ], - "LPTokenSupply": "8441994667276992020449884" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "66739126806377238888448", - "expectedQty": "66136344489379410290496", - "reserves": [ - "6311203025523011913581971", - "2337177338317080708701806" - ] + "LPTokenSupply": "8143324785290043898780999" }, { "type": "mintMulti", "inputQtys": [ - "19599899782541826064384", - "113535446627310869938176" + "5305400290687641976832", + "2220972008963404464128" ], - "expectedQty": "131691948690449136950671", + "expectedQty": "7440189548947970369457", "reserves": [ - "6330802925305553739646355", - "2450712784944391578639982" + "4727938455587447899001569", + "3515037680978387538015530" ], - "LPTokenSupply": "8639822960456820567691051" + "LPTokenSupply": "8150764974838991869150456" }, { "type": "mintMulti", "inputQtys": [ - "115813384952442196590592", - "40054507724155540996096" + "1339214202933667168256", + "1326958336469557051392" ], - "expectedQty": "153322309319452053942007", + "expectedQty": "2636729485231271300507", "reserves": [ - "6446616310257995936236947", - "2490767292668547119636078" + "4729277669790381566169825", + "3516364639314857095066922" ], - "LPTokenSupply": "8793145269776272621633058" + "LPTokenSupply": "8153401704324223140450963" }, { - "type": "redeemBassets", - "inputQtys": [ - "360004786231026176", - "247263545778420288" - ], - "expectedQty": "598162132428193924", - "swapFee": "359112747105179", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2528979783923691683840", + "expectedQty": "2558273906778527419948", + "swapFee": "1517387870354215010", "reserves": [ - "6446615950253209705210771", - "2490767045405001341215790" + "4726719395883603038749877", + "3516364639314857095066922" ], - "LPTokenSupply": "8793144671290938721044471" + "LPTokenSupply": "8150872876279086484188624" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "8718479477335961600", - "expectedQty": "8878557750677576693", - "swapFee": "5231087686401576", + "type": "mintMulti", + "inputQtys": [ + "37547073685562090061824", + "76607506807890026430464" + ], + "expectedQty": "112932263860318179713126", "reserves": [ - "6446607071695459027634078", - "2490767045405001341215790" + "4764266469569165128811701", + "3592972146122747121497386" ], - "LPTokenSupply": "8793135953334570153723028" + "LPTokenSupply": "8263805140139404663901750" }, { "type": "mintMulti", "inputQtys": [ - "1248190795883650744320", - "329892982758538280960" + "1096155804320728832", + "2089278587468209152" ], - "expectedQty": "1551637319009014423881", + "expectedQty": "3151195835036927052", "reserves": [ - "6447855262491342678378398", - "2491096938387759879496750" + "4764267565724969449540533", + "3592974235401334589706538" ], - "LPTokenSupply": "8794687590653579168146909" + "LPTokenSupply": "8263808291335239700828802" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "997264994083383410688", - "expectedQty": "1006445811406960327565", - "swapFee": "598358996450030046", + "type": "redeemBassets", + "inputQtys": [ + "2419606181296280174592", + "3064729745374557765632" + ], + "expectedQty": "5424372021260466373875", + "swapFee": "3256577159051710850", "reserves": [ - "6447855262491342678378398", - "2490090492576352919169185" + "4761847959543673169365941", + "3589909505655960031940906" ], - "LPTokenSupply": "8793690385495395429739225" + "LPTokenSupply": "8258380988394536087915161" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "22868145153581232128", - "outputIndex": 0, - "expectedQty": "23075688929299316742", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "602385026101071996518", + "expectedQtys": [ + "347131578439313415762", + "261699021837746584293" + ], + "redemptionFee": "361431015660643197", "reserves": [ - "6447832186802413379061656", - "2490113360721506500401313" + "4761500827965233855950179", + "3589647806634122285356613" ], - "LPTokenSupply": "8793690385495395429739225", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8257778639511536581982962" }, { - "type": "mintMulti", - "inputQtys": [ - "196026657284027744256", - "608035524539257454592" + "type": "redeemMasset", + "inputQty": "29670842103400110489", + "expectedQtys": [ + "17098178428112008873", + "12890145546428387181" ], - "expectedQty": "794504594483666092204", + "redemptionFee": "17802505262040066", "reserves": [ - "6448028213459697406805912", - "2490721396246045757855905" + "4761483729786805743941306", + "3589634916488575856969432" ], - "LPTokenSupply": "8794484890089879095831429" + "LPTokenSupply": "8257748970449683708076479" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8317416261268307705856", - "4246105887356587868160" + "1369377859629660766208", + "902279913779934920704" ], - "expectedQty": "12367394905160620460055", - "swapFee": "7424891878223306259", + "expectedQty": "2246117690083894599754", "reserves": [ - "6439710797198429099100056", - "2486475290358689169987745" + "4762853107646435404707514", + "3590537196402355791890136" ], - "LPTokenSupply": "8782110812782028074395739" + "LPTokenSupply": "8259995088139767602676233" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "50244625724146213453824", - "expectedQty": "50700879539830917009256", - "swapFee": "30146775434487728072", + "inputQty": "3916294380566971392", + "expectedQty": "3953839674858183049", + "swapFee": "2349776628340182", "reserves": [ - "6439710797198429099100056", - "2435774410818858252978489" + "4762853107646435404707514", + "3590533242562680933707087" ], - "LPTokenSupply": "8731869201735425309714722" + "LPTokenSupply": "8259991172080364698538859" }, { "type": "redeemMasset", - "inputQty": "3086226172076479283", + "inputQty": "407643327322793267", "expectedQtys": [ - "2274711050019844448", - "860393135986119964" + "234913127720569171", + "177092044438858203" ], - "redemptionFee": "1851735703245887", + "redemptionFee": "244585996393675", "reserves": [ - "6439708522487379079255608", - "2435773550425722266858525" + "4762852872733307684138343", + "3590533065470636494848884" ], - "LPTokenSupply": "8731866115694426803560027" + "LPTokenSupply": "8259990764461495975384959" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "16767972768630548", - "31441182488408468" + "3753260111067963981824", + "25177609562803450937344" ], - "expectedQty": "47597392618285671", + "expectedQty": "28632061477903347371847", + "swapFee": "17189550617112275788", "reserves": [ - "6439708539255351847886156", - "2435773581866904755266993" + "4759099612622239720156519", + "3565355455907833043911540" ], - "LPTokenSupply": "8731866163291819421845698" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "217995046818117568167936", - "expectedQty": "215822291998375247911265", - "reserves": [ - "6439708539255351847886156", - "2653768628685022323434929" - ] + "LPTokenSupply": "8231343232388037226964901" }, { "type": "mint", "inputIndex": 1, - "inputQty": "831691519134622679040", - "expectedQty": "823023087047027359818", + "inputQty": "149019021909908168638464", + "expectedQty": "147506423169086885538796", "reserves": [ - "6439708539255351847886156", - "2654600320204156946113969" + "4759099612622239720156519", + "3714374477817741212550004" ] }, { - "type": "redeemMasset", - "inputQty": "39793349737217772434227", - "expectedQtys": [ - "28619711801533485207967", - "11797722777262001945989" + "type": "redeemBassets", + "inputQtys": [ + "3675628143283973652480", + "11484470821666110308352" ], - "redemptionFee": "23876009842330663460", + "expectedQty": "14998899603918346808290", + "swapFee": "9004742607915757539", "reserves": [ - "6411088827453818362678189", - "2642802597426894944167980" + "4755423984478955746504039", + "3702890006996075102241652" ], - "LPTokenSupply": "8908720516241008157748900" + "LPTokenSupply": "8363842651684858641513620" }, { "type": "redeemMasset", - "inputQty": "1308757137689855131648", + "inputQty": "21629503451766503296204", "expectedQtys": [ - "941271410754069101741", - "388014360146135519316" + "12290492455701675475355", + "9570196441751109438743" ], - "redemptionFee": "785254282613913078", + "redemptionFee": "12977702071059901977", "reserves": [ - "6410147556043064293576448", - "2642414583066748808648664" + "4743133492023254071028684", + "3693319810554323992802909" ], - "LPTokenSupply": "8907411837628746564008559" + "LPTokenSupply": "8342214446003299244207613" }, { "type": "mintMulti", "inputQtys": [ - "1398484104640227", - "12152849584211994" + "30185797313458925568", + "135503620213481340928" ], - "expectedQty": "13398963210064995", + "expectedQty": "163944448266711697035", "reserves": [ - "6410147557441548398216675", - "2642414595219598392860658" + "4743163677820567529954252", + "3693455314174537474143837" ], - "LPTokenSupply": "8907411851027709774073554" + "LPTokenSupply": "8342378390451565955904648" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "35622651309654687088640", - "expectedQty": "36266174256741336994470", - "swapFee": "21373590785792812253", + "inputQty": "3879695416627476561920", + "expectedQty": "3924084017785483965214", + "swapFee": "2327817249976485937", "reserves": [ - "6373881383184807061222205", - "2642414595219598392860658" + "4739239593802782045989038", + "3693455314174537474143837" ], - "LPTokenSupply": "8871791337077133666266139" + "LPTokenSupply": "8338498927816663476991321" }, { "type": "redeemBassets", "inputQtys": [ - "93021875541829841059840", - "43698972180114281857024" + "13284490845270", + "11955094312519" ], - "expectedQty": "134558117734548805265066", - "swapFee": "80783340645116352970", + "expectedQty": "24959158871006", + "swapFee": "14984486014", "reserves": [ - "6280859507642977220162365", - "2598715623039484111003634" + "4739239593789497555143768", + "3693455314162582379831318" ], - "LPTokenSupply": "8737160514336004256283399" + "LPTokenSupply": "8338498927791690832082901" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2868739143076775723008", - "outputIndex": 0, - "expectedQty": "2891692715973385157424", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "340201071015165952", + "268535946383323776" + ], + "expectedQty": "601940430264439709", + "swapFee": "361381086810750", "reserves": [ - "6277967814927003835004941", - "2601584362182560886726642" + "4739239253588426539977816", + "3693455045626635996507542" ], - "LPTokenSupply": "8737160514336004256283399", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8338498325526017589513516" }, { - "type": "redeemMasset", - "inputQty": "3337299415574505743974", - "expectedQtys": [ - "2396532307081104726614", - "993120888377792838639" - ], - "redemptionFee": "2002379649344703446", + "type": "mint", + "inputIndex": 0, + "inputQty": "2357726514032385196032", + "expectedQty": "2329658280106155356069", "reserves": [ - "6275571282619922730278327", - "2600591241294183093888003" - ], - "LPTokenSupply": "8733823415158394685009769" + "4741596980102458925173848", + "3693455045626635996507542" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "119288806166067379437568", - "outputIndex": 1, - "expectedQty": "118191058704989963811786", - "swapFee": "93677609219898162858", + "inputQty": "2139309487721107161088", + "expectedQty": "2113838323934743335019", "reserves": [ - "6394860088785990109715895", - "2482400182589193130076217" - ], - "LPTokenSupply": "8733832782919316674826054", - "hardLimitError": false, - "insufficientLiquidityError": false + "4743736289590180032334936", + "3693455045626635996507542" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "84572416380472246272", - "expectedQty": "86125714755838412820", - "swapFee": "50743449828283347", + "type": "mint", + "inputIndex": 1, + "inputQty": "7012679272351795249152", + "expectedQty": "6940947274284377897220", + "reserves": [ + "4743736289590180032334936", + "3700467724898987791756694" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "189412121779929270452224", + "19856493089176460197888" + ], + "expectedQty": "206802596441259279841936", "reserves": [ - "6394773963071234271303075", - "2482400182589193130076217" + "4933148411370109302787160", + "3720324217988164251954582" ], - "LPTokenSupply": "8733748215577281185408116" + "LPTokenSupply": "8556685365845602145943760" }, { - "type": "redeemMasset", - "inputQty": "999167574003145716531", - "expectedQtys": [ - "731142799046915698192", - "283823795545253002522" + "type": "mintMulti", + "inputQtys": [ + "242346906073242162692096", + "278705905510891663654912" ], - "redemptionFee": "599500544401887429", + "expectedQty": "515324618129262523245805", "reserves": [ - "6394042820272187355604883", - "2482116358793647877073695" + "5175495317443351465479256", + "3999030123499055915609494" ], - "LPTokenSupply": "8732749107953332479880327" + "LPTokenSupply": "9072009983974864669189565" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "78650170551324147712", - "expectedQty": "80094698748509694207", - "swapFee": "47190102330794488", + "type": "mintMulti", + "inputQtys": [ + "3994964904386566815744", + "16570139707081295396864" + ], + "expectedQty": "20348423603288531774162", "reserves": [ - "6393962725573438845910676", - "2482116358793647877073695" + "5179490282347738032295000", + "4015600263206137211006358" ], - "LPTokenSupply": "8732670462501791388812063" + "LPTokenSupply": "9092358407578153200963727" }, { "type": "swap", "inputIndex": 1, - "inputQty": "39561448257505099776", + "inputQty": "808451020553815808", "outputIndex": 0, - "expectedQty": "39917171249297078692", + "expectedQty": "809851735735586326", "swapFee": "0", "reserves": [ - "6393922808402189548831984", - "2482155920241905382173471" + "5179489472496002296708674", + "4015601071657157764822166" ], - "LPTokenSupply": "8732670462501791388812063", + "LPTokenSupply": "9092358407578153200963727", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "237052698215549403136", - "426328935728673980416" + "521069822083612544", + "54692642746579352" ], - "expectedQty": "654788798086297473607", - "swapFee": "393109144338381513", + "expectedQty": "568992936895382923", + "swapFee": "341600722570772", "reserves": [ - "6393685755703973999428848", - "2481729591306176708193055" + "5179488951426180213096130", + "4015601016964515018242814" ], - "LPTokenSupply": "8732015319905475186795093" + "LPTokenSupply": "9092357838277775655267108" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "68933275911494942720", + "expectedQty": "68111581504033746006", + "reserves": [ + "5179557884702091708038850", + "4015601016964515018242814" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "357921152064124289024", + "inputQty": "106276030768399037497344", "outputIndex": 1, - "expectedQty": "354446479198332824073", - "swapFee": "281003876625806709", + "expectedQty": "105989305275009640375550", + "swapFee": "84004681293166996394", "reserves": [ - "6394043676856038123717872", - "2481375144826978375368982" + "5285833915470490745536194", + "3909611711689505377867264" ], - "LPTokenSupply": "8732015348005862849375763", + "LPTokenSupply": "9092434350327409005712753", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "36997014932348039331840", - "71078850506587207892992" + "1114613813114853916672", + "778083077203766542336" ], - "expectedQty": "106683257201847643349342", + "expectedQty": "1871439489511319387672", "reserves": [ - "6431040691788386163049712", - "2552453995333565583261974" + "5286948529283605599452866", + "3910389794766709144409600" ], - "LPTokenSupply": "8838698605207710492725105" + "LPTokenSupply": "9094305789816920325100425" }, { "type": "redeemBassets", "inputQtys": [ - "3130981598261431", - "1985218345402010" + "55614066408820600", + "33104798148228276" ], - "expectedQty": "5038244934112012", - "swapFee": "3024761817557", + "expectedQty": "87715533587491823", + "swapFee": "52660916702516", "reserves": [ - "6431040688657404564788281", - "2552453993348347237859964" + "5286948473669539190632266", + "3910389761661910996181324" ], - "LPTokenSupply": "8838698600166743272977290" + "LPTokenSupply": "9094305702053991912576336" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "46653759312752009216", - "expectedQty": "47098967564110437248", - "swapFee": "27992255587651205", + "type": "swap", + "inputIndex": 0, + "inputQty": "3134041856171437457408", + "outputIndex": 1, + "expectedQty": "3125032124593542090211", + "swapFee": "2476958194721572524", "reserves": [ - "6431040688657404564788281", - "2552406894380783127422716" + "5290082515525710628089674", + "3907264729537317454091113" ], - "LPTokenSupply": "8838651949206656079733194" + "LPTokenSupply": "9094305949749811384733588", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8942484126413135872", - "expectedQty": "9027819539835356063", - "swapFee": "5365490475847881", + "type": "redeemMasset", + "inputQty": "221332530043514905", + "expectedQtys": [ + "128670052817398217", + "95035938975549683" + ], + "redemptionFee": "132799518026108", "reserves": [ - "6431040688657404564788281", - "2552397866561243292066653" + "5290082386855657810691457", + "3907264634501378478541430" ], - "LPTokenSupply": "8838643007259078714182110" + "LPTokenSupply": "9094305728430561293021293" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3393805312871726841856", - "5104313307273095020544" + "39179991897343428395008", + "14045427840864560873472" ], - "expectedQty": "8383927184848501013081", + "expectedQty": "52611583142512272218183", + "swapFee": "31585901426363181239", "reserves": [ - "6434434493970276291630137", - "2557502179868516387087197" + "5250902394958314382296449", + "3893219206660513917667958" ], - "LPTokenSupply": "8847026934443927215195191" + "LPTokenSupply": "9041665717976765293939993" }, { - "type": "redeemMasset", - "inputQty": "5620046897488780800819", - "expectedQtys": [ - "4085002429467006447850", - "1623670678117920064723" - ], - "redemptionFee": "3372028138493268480", + "type": "mint", + "inputIndex": 0, + "inputQty": "918824451013796036608", + "expectedQty": "907733967263681823792", + "reserves": [ + "5251821219409328178333057", + "3893219206660513917667958" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "10575447246945558528", + "outputIndex": 0, + "expectedQty": "10597220485673494568", + "swapFee": "0", "reserves": [ - "6430349491540809285182287", - "2555878509190398467022474" + "5251810622188842504838489", + "3893229782107760863226486" ], - "LPTokenSupply": "8841407224749252283721220" + "LPTokenSupply": "9042573451944028975763785", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "84672008717204035993600", - "36210527502058135748608" + "48093141520715800903680", + "60361146371780745625600" ], - "expectedQty": "118949866400587219134854", + "expectedQty": "107267633849060693008416", "reserves": [ - "6515021500258013321175887", - "2592089036692456602771082" + "5299903763709558305742169", + "3953590928479541608852086" ], - "LPTokenSupply": "8960357091149839502856074" + "LPTokenSupply": "9149841085793089668772201" }, { - "type": "redeemMasset", - "inputQty": "2309101308082880564428", - "expectedQtys": [ - "1677926248774474160064", - "667585553425198681398" - ], - "redemptionFee": "1385460784849728338", + "type": "swap", + "inputIndex": 1, + "inputQty": "22315315890594280112128", + "outputIndex": 0, + "expectedQty": "22359420110919199927993", + "swapFee": "0", "reserves": [ - "6513343574009238847015823", - "2591421451139031404089684" + "5277544343598639105814176", + "3975906244370135888964214" ], - "LPTokenSupply": "8958048128387835107264479" + "LPTokenSupply": "9149841085793089668772201", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "40924780929759038668", - "expectedQtys": [ - "29738311379132207242", - "11831787645296698533" - ], - "redemptionFee": "24554868557855423", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1940003443091233792", + "expectedQty": "1958628490535153521", + "swapFee": "1164002065854740", "reserves": [ - "6513313835697859714808581", - "2591409619351386107391151" + "5277544343598639105814176", + "3975904285741645353810693" ], - "LPTokenSupply": "8958007206062392204011353" + "LPTokenSupply": "9149839145906046784123883" }, { "type": "mintMulti", "inputQtys": [ - "3676211654248376565760", - "5153323862520775049216" + "8533385597279055904768", + "33109247739864450859008" ], - "expectedQty": "8709517912320090091757", + "expectedQty": "41205171475045250196052", "reserves": [ - "6516990047352108091374341", - "2596562943213906882440367" + "5286077729195918161718944", + "4009013533481509804669701" ], - "LPTokenSupply": "8966716723974712294103110" + "LPTokenSupply": "9191044317381092034319935" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "35842503599684198400", - "152252609390348697600" + "386021505663598067712", + "246868006579220316160" ], - "expectedQty": "185895428016226919543", + "expectedQty": "625756326059019329758", + "swapFee": "375679203157305981", "reserves": [ - "6517025889855707775572741", - "2596715195823297231137967" + "5285691707690254563651232", + "4008766665474930584353541" ], - "LPTokenSupply": "8966902619402728521022653" + "LPTokenSupply": "9190418222943750173414793" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "16719124250084916592640", - "expectedQty": "16549846950004193235724", + "inputIndex": 0, + "inputQty": "13009822565658662912", + "expectedQty": "12853706851348740648", "reserves": [ - "6517025889855707775572741", - "2613434320073382147730607" + "5285704717512820222314144", + "4008766665474930584353541" ] }, { - "type": "redeemMasset", - "inputQty": "138623538440647160627", - "expectedQtys": [ - "100503803457457714649", - "40303674358955990458" + "type": "redeemBassets", + "inputQtys": [ + "413959496329406144", + "149688682203150304" ], - "redemptionFee": "83174123064388296", + "expectedQty": "557164239673422166", + "swapFee": "334499243350063", "reserves": [ - "6516925386052250317858092", - "2613394016399023191740149" + "5285704303553323892908000", + "4008766515786248381203237" ], - "LPTokenSupply": "8983313851131704373536579" + "LPTokenSupply": "9190430519185312529718217" }, { - "type": "redeemMasset", - "inputQty": "53147594333534820761", - "expectedQtys": [ - "38532672587430563527", - "15452233992332886500" - ], - "redemptionFee": "31888556600120892", + "type": "redeem", + "inputIndex": 1, + "inputQty": "40265989847954743296", + "expectedQty": "40653690852995531908", + "swapFee": "24159593908772845", "reserves": [ - "6516886853379662887294565", - "2613378564165030858853649" + "5285704303553323892908000", + "4008725862095395385671329" ], - "LPTokenSupply": "8983260706726226498727907" + "LPTokenSupply": "9190390255611423965852205" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4891776122288339943424", - "expectedQty": "4842030254935943954778", + "type": "redeemMasset", + "inputQty": "575027450479990171238", + "expectedQtys": [ + "330519306594940068491", + "250668825983751285339" + ], + "redemptionFee": "345016470287994102", "reserves": [ - "6516886853379662887294565", - "2618270340287319198797073" - ] + "5285373784246728952839509", + "4008475193269411634385990" + ], + "LPTokenSupply": "9189815262662591004480377" }, { - "type": "mintMulti", - "inputQtys": [ - "56952984987840208", - "14618210612211000" - ], - "expectedQty": "70370161315274556", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1147497124401135872", + "expectedQty": "1160737363945660151", + "swapFee": "688498274640681", "reserves": [ - "6516886910332647875134773", - "2618270354905529811008073" + "5285372623509365007179358", + "4008475193269411634385990" ], - "LPTokenSupply": "8988102807351323757957241" + "LPTokenSupply": "9189814115234316430808573" }, { "type": "redeemMasset", - "inputQty": "6833394513216612073472", + "inputQty": "5185645203427618403123", "expectedQtys": [ - "4951627805632737543632", - "1989400839756531474202" + "2980650316713670931608", + "2260552605357133907532" ], - "redemptionFee": "4100036707929967244", + "redemptionFee": "3111387122056571041", "reserves": [ - "6511935282527015137591141", - "2616280954065773279533871" + "5282391973192651336247750", + "4006214640664054500478458" ], - "LPTokenSupply": "8981269822841777938880493" + "LPTokenSupply": "9184628781169601018062554" }, { - "type": "mintMulti", - "inputQtys": [ - "5069161493217471889408", - "18880959335879076216832" - ], - "expectedQty": "23663686219670591637083", + "type": "mint", + "inputIndex": 0, + "inputQty": "89013571742657085440", + "expectedQty": "87945388247010825925", "reserves": [ - "6517004444020232609480549", - "2635161913401652355750703" - ], - "LPTokenSupply": "9004933509061448530517576" + "5282480986764393993333190", + "4006214640664054500478458" + ] }, { "type": "redeemMasset", - "inputQty": "129708097363895731", + "inputQty": "24396659039719456", "expectedQtys": [ - "93815358119818086", - "37934400802245878" + "14023030477680324", + "10635016036389349" ], - "redemptionFee": "77824858418337", + "redemptionFee": "14637995423831", "reserves": [ - "6517004350204874489662463", - "2635161875467251553504825" + "5282480972741363515652866", + "4006214630029038464089109" ], - "LPTokenSupply": "9004933379361133652463678" + "LPTokenSupply": "9184716702162652788711406" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3501088861681181261824", - "50626010351189499904" + "4882607084833828864", + "5237271854749536256" ], - "expectedQty": "3486610339035597273892", - "swapFee": "2093222136703380392", + "expectedQty": "10008226539130502752", "reserves": [ - "6513503261343193308400639", - "2635111249456900364004921" + "5282485855348448349481730", + "4006219867300893213625365" ], - "LPTokenSupply": "9001444885122175022147432" + "LPTokenSupply": "9184726710389191919214158" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "40698703700385", - "expectedQty": "39947959698268", + "type": "mintMulti", + "inputQtys": [ + "1657499391414770688", + "25861845863802300" + ], + "expectedQty": "1663208806668635532", "reserves": [ - "6513503261383892012101024", - "2635111249456900364004921" - ] + "5282487512847839764252418", + "4006219893162739077427665" + ], + "LPTokenSupply": "9184728373597998587849690" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "12678314973265332797440", - "expectedQty": "12908773606969928990047", - "swapFee": "7606988983959199678", + "inputQty": "2349541323573143552", + "expectedQty": "2321346220628251103", "reserves": [ - "6500594487776922083110977", - "2635111249456900364004921" - ], - "LPTokenSupply": "8988767330887756044968227" + "5282489862389163337395970", + "4006219893162739077427665" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "49923792894759199047680", - "expectedQty": "50406612262242957203082", - "swapFee": "29954275736855519428", + "inputQty": "16360913269935979888640", + "expectedQty": "16518307479272712767157", + "swapFee": "9816547961961587933", "reserves": [ - "6500594487776922083110977", - "2584704637194657406801839" + "5282489862389163337395970", + "3989701585683466364660508" ], - "LPTokenSupply": "8938846533420570531472489" + "LPTokenSupply": "9168370763329079432370946" }, { "type": "mintMulti", "inputQtys": [ - "65396717220431304", - "442199213408155136" + "1519630858901352873984", + "44047173476146583961600" ], - "expectedQty": "501930874931741542", + "expectedQty": "45102060717638297133213", "reserves": [ - "6500594553173639303542281", - "2584705079393870814956975" + "5284009493248064690269954", + "4033748759159612948622108" ], - "LPTokenSupply": "8938847035351445463214031" + "LPTokenSupply": "9213472824046717729504159" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2812209717085268869120", - "expectedQty": "2839099394469053865280", - "swapFee": "1687325830251161321", + "inputQty": "4416424863287385522176", + "expectedQty": "4459064005543062715280", + "swapFee": "2649854917972431313", "reserves": [ - "6500594553173639303542281", - "2581865979999401761091695" + "5284009493248064690269954", + "4029289695154069885906828" ], - "LPTokenSupply": "8936034994366943219461043" + "LPTokenSupply": "9209056664168922141225114" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "25465396552910180974592", - "outputIndex": 0, - "expectedQty": "25682442475485588185626", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "6255969993541893", + "expectedQtys": [ + "3587421825841333", + "2735566961699000" + ], + "redemptionFee": "3753581996125", "reserves": [ - "6474912110698153715356655", - "2607331376552311942066287" + "5284009489660642864428621", + "4029289692418502924207828" ], - "LPTokenSupply": "8936034994366943219461043", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9209056657913327505882833" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "303019192127426232582144", - "expectedQty": "299756869088355653877070", + "type": "mintMulti", + "inputQtys": [ + "51334952631828062208", + "53717050690395488256" + ], + "expectedQty": "103891299198115292845", "reserves": [ - "6474912110698153715356655", - "2910350568679738174648431" - ] + "5284060824613274692490829", + "4029343409469193319696084" + ], + "LPTokenSupply": "9209160549212525621175678" + }, + { + "type": "redeemMasset", + "inputQty": "5599396812027883369267", + "expectedQtys": [ + "3210911640195910029520", + "2448470236289945288995" + ], + "redemptionFee": "3359638087216730021", + "reserves": [ + "5280849912973078782461309", + "4026894939232903374407089" + ], + "LPTokenSupply": "9203561488364306459479413" }, { "type": "swap", "inputIndex": 1, - "inputQty": "847085377699144576008192", + "inputQty": "13366609243327252480", "outputIndex": 0, - "expectedQty": "851038208712303139891636", + "expectedQty": "13391365486510311202", "swapFee": "0", "reserves": [ - "5623873901985850575465019", - "3757435946378882750656623" + "5280836521607592272150107", + "4026908305842146701659569" ], - "LPTokenSupply": "9235791863455298873338113", + "LPTokenSupply": "9203561488364306459479413", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1785355713923170959360", - "expectedQty": "1760669135738940469786", - "reserves": [ - "5623873901985850575465019", - "3759221302092805921615983" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "6758403424372186415104", - "3597421703186245222400" - ], - "expectedQty": "10193645327980523948190", - "reserves": [ - "5630632305410222761880123", - "3762818723795992166838383" - ], - "LPTokenSupply": "9247746177919018337756089" - }, { "type": "swap", "inputIndex": 0, - "inputQty": "541339553899241603072", + "inputQty": "64988177615340078891008", "outputIndex": 1, - "expectedQty": "539364959870596443695", - "swapFee": "425866666474513968", + "expectedQty": "64809430394201734113836", + "swapFee": "51366455351947317339", "reserves": [ - "5631173644964122003483195", - "3762279358836121570394688" + "5345824699222932351041115", + "3962098875447944967545733" ], - "LPTokenSupply": "9247746220505684985207485", + "LPTokenSupply": "9203566625009841654211146", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "110876670562893691879424", + "expectedQty": "111927424172489304190343", + "swapFee": "66526002337736215127", + "reserves": [ + "5345824699222932351041115", + "3850171451275455663355390" + ], + "LPTokenSupply": "9092696607047181735953234" + }, { "type": "swap", "inputIndex": 1, - "inputQty": "66267650009590686285824", + "inputQty": "419569680482957918208", "outputIndex": 0, - "expectedQty": "66449356346623244792799", + "expectedQty": "420523653345159660551", "swapFee": "0", "reserves": [ - "5564724288617498758690396", - "3828547008845712256680512" + "5345404175569587191380564", + "3850591020955938621273598" ], - "LPTokenSupply": "9247746220505684985207485", + "LPTokenSupply": "9092696607047181735953234", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "15716063132165019648", - "24914221471429910528" + "314878548166401", + "1705355906632203" ], - "expectedQty": "40022397363745899546", - "swapFee": "24027855131326335", + "expectedQty": "1999470866706953", "reserves": [ - "5564708572554366593670748", - "3828522094624240826769984" + "5345404175884465739546965", + "3850591022661294527905801" ], - "LPTokenSupply": "9247706176483251621114236" + "LPTokenSupply": "9092696609046652602660187" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1929705904304349773824", - "expectedQty": "1897777486393703939239", + "type": "redeemBassets", + "inputQtys": [ + "1735233047991064461312", + "686569570230909534208" + ], + "expectedQty": "2393863355259541869214", + "swapFee": "1437180321348534242", "reserves": [ - "5566638278458670943444572", - "3828522094624240826769984" - ] + "5343668942836474675085653", + "3849904453091063618371593" + ], + "LPTokenSupply": "9090301452229103847110154" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "22882031809272029184", - "expectedQty": "22503419001124061065", + "inputQty": "14494585220786628329472", + "expectedQty": "14664332394155917643688", + "swapFee": "8696751132471976997", "reserves": [ - "5566661160490480215473756", - "3828522094624240826769984" - ] + "5329004610442318757441965", + "3849904453091063618371593" + ], + "LPTokenSupply": "9075807736683430465978381" }, { - "type": "redeemMasset", - "inputQty": "64460273925167513", - "expectedQtys": [ - "38770560930640931", - "26664807658394571" + "type": "redeemBassets", + "inputQtys": [ + "1724053240869122211840", + "1567260592471434067968" ], - "redemptionFee": "38676164355100", + "expectedQty": "3254759856659098213427", + "swapFee": "1954028330994055361", "reserves": [ - "5566661121719919284832825", - "3828522067959433168375413" + "5327280557201449635230125", + "3848337192498592184303625" ], - "LPTokenSupply": "9249626392932240140382537" + "LPTokenSupply": "9072551218201273473115128" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "347782272333726923882496", - "expectedQty": "341994176585343747993825", + "inputQty": "15301193020824866521088", + "outputIndex": 1, + "expectedQty": "15254209145121585755008", + "swapFee": "12091981273922311128", "reserves": [ - "5914443394053646208715321", - "3828522067959433168375413" - ] + "5342581750222274501751213", + "3833082983353470598548617" + ], + "LPTokenSupply": "9072552427399400865346240", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "110293857044977729536", - "expectedQty": "108447744276624094733", + "inputQty": "8811282606169750528", + "expectedQty": "8703889726849056159", "reserves": [ - "5914553687910691186444857", - "3828522067959433168375413" + "5342590561504880671501741", + "3833082983353470598548617" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "2560163929603441164288", - "expectedQty": "2525154169873364923972", + "inputQty": "522127072625763942400", + "expectedQty": "516951212811162659779", "reserves": [ - "5914553687910691186444857", - "3831082231889036609539701" + "5342590561504880671501741", + "3833605110426096362491017" ] }, { - "type": "mintMulti", - "inputQtys": [ - "12544697969814597009408", - "23023297093499912978432" - ], - "expectedQty": "35043027355261523306878", + "type": "mint", + "inputIndex": 0, + "inputQty": "109946409642027300945920", + "expectedQty": "108602905420653431764785", "reserves": [ - "5927098385880505783454265", - "3854105528982536522518133" - ], - "LPTokenSupply": "9629297198786995400701945" + "5452536971146907972447661", + "3833605110426096362491017" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "252059291325258625187840", - "outputIndex": 0, - "expectedQty": "252727590700998543276639", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "1650433078786830368768", + "8757890393374939152384" + ], + "expectedQty": "10302035622479138504128", "reserves": [ - "5674370795179507240177626", - "4106164820307795147705973" + "5454187404225694802816429", + "3842363000819471301643401" ], - "LPTokenSupply": "9629297198786995400701945", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9191983023545071447331091" }, { - "type": "mintMulti", - "inputQtys": [ - "8083513153458825", - "6517618196299755" + "type": "redeemMasset", + "inputQty": "381018753464533094", + "expectedQtys": [ + "225946979230547088", + "159175006064103091" ], - "expectedQty": "14376204653897679", + "redemptionFee": "228611252078719", "reserves": [ - "5674370803263020393636451", - "4106164826825413344005728" + "5454187178278715572269341", + "3842362841644465237540310" ], - "LPTokenSupply": "9629297213163200054599624" + "LPTokenSupply": "9191982642549179108005868" }, { - "type": "redeemBassets", - "inputQtys": [ - "1199379500131790356480", - "3625351966208297533440" + "type": "redeemMasset", + "inputQty": "805578760545054924", + "expectedQtys": [ + "477714248515226081", + "336539876139398500" ], - "expectedQty": "4753652494510042582775", - "swapFee": "2853903839009431208", + "redemptionFee": "483347256327032", "reserves": [ - "5673171423762888603279971", - "4102539474859205046472288" + "5454186700564467057043260", + "3842362505104589098141810" ], - "LPTokenSupply": "9624540992155234903528760" + "LPTokenSupply": "9191981837018753288583647" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "6332639763379920896", - "expectedQty": "6228847444559427851", + "inputQty": "64668138175594848256", + "outputIndex": 1, + "expectedQty": "64458944849741436219", + "swapFee": "51101010445840327", "reserves": [ - "5673177756402651983200867", - "4102539474859205046472288" - ] + "5454251368702642651891516", + "3842298046159739356705591" + ], + "LPTokenSupply": "9191981842128854333167679", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "556389419709692706816", - "3099993339530623582208" + "53735750391875198976", + "22393430439905951744" ], - "expectedQty": "3603292507373864178093", + "expectedQty": "75250991894333263186", + "swapFee": "45177701757654550", "reserves": [ - "5673734145822361675907683", - "4105639468198735670054496" + "5454197632952250776692540", + "3842275652729299450753847" ], - "LPTokenSupply": "9628150513510053327134704" + "LPTokenSupply": "9191906550477028418015397" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3327883206682323976192", - "expectedQty": "3280668687856067510743", + "inputQty": "364037422406055297024", + "expectedQty": "360458006620103662119", "reserves": [ - "5673734145822361675907683", - "4108967351405417994030688" + "5454197632952250776692540", + "3842639690151705506050871" ] }, { - "type": "mintMulti", - "inputQtys": [ - "3204401336177550426112", - "1216364203208879636480" - ], - "expectedQty": "4350999831709498009670", + "type": "mint", + "inputIndex": 0, + "inputQty": "6445378214078765334528", + "expectedQty": "6366442734577247037707", "reserves": [ - "5676938547158539226333795", - "4110183715608626873667168" - ], - "LPTokenSupply": "9635782182029618892655117" + "5460643011166329542027068", + "3842639690151705506050871" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1224533075284023836672", - "2231021693457274241024" + "9922309958405569118208", + "8241851892900173971456" ], - "expectedQty": "3403834172095204965285", + "expectedQty": "17961630695919442828844", + "swapFee": "10783448486643651888", "reserves": [ - "5678163080233823250170467", - "4112414737302084147908192" + "5450720701207923972908860", + "3834397838258805332079415" ], - "LPTokenSupply": "9639186016201714097620402" + "LPTokenSupply": "9180662115418668346599678" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "51069722480352822296576", + "expectedQty": "50443331751323919303964", + "reserves": [ + "5501790423688276795205436", + "3834397838258805332079415" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "22728937118693347819520", - "1165296571008476774400" + "11650388503472490496", + "74369506978316238848" ], - "expectedQty": "23505155992478320812289", + "expectedQty": "85149102765937171168", + "swapFee": "51120133739806186", "reserves": [ - "5700892017352516597989987", - "4113580033873092624682592" + "5501778773299773322714940", + "3834323468751827015840567" ], - "LPTokenSupply": "9662691172194192418432691" + "LPTokenSupply": "9231020252059105962906905" }, { - "type": "redeemMasset", - "inputQty": "582525226986283", - "expectedQtys": [ - "343477899607655", - "247842587721715" - ], - "redemptionFee": "349515136191", + "type": "mint", + "inputIndex": 0, + "inputQty": "1902165089965778944", + "expectedQty": "1878806363854344216", "reserves": [ - "5700892017009038698382332", - "4113580033625250036960877" - ], - "LPTokenSupply": "9662691171611702142960027" + "5501780675464863288493884", + "3834323468751827015840567" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "187192639140203560960", - "expectedQty": "184123261389479621613", + "inputQty": "51568295012268750405632", + "expectedQty": "50934275386293762928443", "reserves": [ - "5701079209648178901943292", - "4113580033625250036960877" + "5553348970477132038899516", + "3834323468751827015840567" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6730236865133894656", - "3668856460272000000" + "42214883761192574124032", + "94256171248089854640128" ], - "expectedQty": "10236737608033583661", + "expectedQty": "135035654451463865131076", + "swapFee": "81070034691693335079", "reserves": [ - "5701085939885044035837948", - "4113583702481710308960877" + "5511134086715939464775484", + "3740067297503737161200439" ], - "LPTokenSupply": "9662885531610699656165301" + "LPTokenSupply": "9146847788769077191046915" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "78550038268586668064768", - "expectedQty": "79809804003032763856066", - "swapFee": "47130022961152000838", + "inputQty": "10897258954968507875328", + "expectedQty": "11027110105058352098493", + "swapFee": "6538355372981104725", "reserves": [ - "5621276135882011271981882", - "4113583702481710308960877" + "5500106976610881112676991", + "3740067297503737161200439" ], - "LPTokenSupply": "9584340206344409103300616" + "LPTokenSupply": "9135951183649645981282059" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1349071637152491110400", - "expectedQty": "1329862630561672971176", + "type": "redeemBassets", + "inputQtys": [ + "1195893972596676100096", + "63700953430997803008" + ], + "expectedQty": "1244190105205268427442", + "swapFee": "746962240467441521", "reserves": [ - "5621276135882011271981882", - "4114932774118862800071277" - ] + "5498911082638284436576895", + "3740003596550306163397431" + ], + "LPTokenSupply": "9134706321278424292157247" }, { - "type": "redeemMasset", - "inputQty": "4558540716027504754688", - "expectedQtys": [ - "2671638087634028566792", - "1955714478642053836068" + "type": "redeemBassets", + "inputQtys": [ + "44875310091860770816", + "35316682740292685824" ], - "redemptionFee": "2735124429616502852", + "expectedQty": "79295142776976761899", + "swapFee": "47605649055619428", "reserves": [ - "5618604497794377243415090", - "4112977059640220746235209" + "5498866207328192575806079", + "3739968279867565870711607" ], - "LPTokenSupply": "9581111801771386233167389" + "LPTokenSupply": "9134626983290563165337861" }, { "type": "mint", "inputIndex": 1, - "inputQty": "6363740505062177792", - "expectedQty": "6273123158442642655", + "inputQty": "6060544768321692631040", + "expectedQty": "6001842154974810185133", "reserves": [ - "5618604497794377243415090", - "4112983423380725808413001" + "5498866207328192575806079", + "3746028824635887563342647" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "9234007568331349950464", + "inputQty": "158428330697105152", "outputIndex": 0, - "expectedQty": "9253748775633470487343", + "expectedQty": "158856721374249485", "swapFee": "0", "reserves": [ - "5609350749018743772927747", - "4122217430949057158363465" + "5498866048471471201556594", + "3746028983064218260447799" ], - "LPTokenSupply": "9581118074894544675810044", + "LPTokenSupply": "9140628825445537975522994", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "215372871815767359488", - "expectedQty": "218356528969143575408", - "swapFee": "129223723089460415", + "inputQty": "24981923476082774016", + "outputIndex": 0, + "expectedQty": "25049473556603570132", + "swapFee": "0", "reserves": [ - "5609350749018743772927747", - "4121999074420088014788057" + "5498840998997914597986462", + "3746053964987694343221815" ], - "LPTokenSupply": "9580902714945101217396597" + "LPTokenSupply": "9140628825445537975522994", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", + "type": "redeemBassets", + "inputQtys": [ + "10306292865078464086016", + "2541054235106800041984" + ], + "expectedQty": "12695347956012338921613", + "swapFee": "7621781842713031171", + "reserves": [ + "5488534706132836133900446", + "3743512910752587543179831" + ], + "LPTokenSupply": "9127926617885867194873326" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "5247610577637836062720", - "outputIndex": 1, - "expectedQty": "5232257314072836965358", - "swapFee": "4129464892513749505", + "inputQty": "1132004523642819051520", + "expectedQty": "1145479971725909227855", + "swapFee": "679202714185691430", "reserves": [ - "5614598359596381608990467", - "4116766817106015177822699" + "5487389226161110224672591", + "3743512910752587543179831" ], - "LPTokenSupply": "9580903127891590468771547", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9126794681282495794390949" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "63442472360874694672384", + "28418173874345267429376" + ], + "expectedQty": "90801268927914878943007", + "swapFee": "54513469438411974550", + "reserves": [ + "5423946753800235530000207", + "3715094736878242275750455" + ], + "LPTokenSupply": "9035944350232086344670846" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "151509675425294352384", + "159683520027778809856" + ], + "expectedQty": "307769851803913087609", + "swapFee": "184772774747196170", + "reserves": [ + "5423795244124810235647823", + "3714935053358214496940599" + ], + "LPTokenSupply": "9035636414084785159106683" }, { "type": "redeemMasset", - "inputQty": "757317126861005049036", + "inputQty": "851939661943291187", "expectedQtys": [ - "443536504079474973505", - "325212285051294561751" + "511084513289929214", + "350058526952310846" ], - "redemptionFee": "454390276116603029", + "redemptionFee": "511163797165974", "reserves": [ - "5614154823092302134016962", - "4116441604820963883260948" + "5423794733040296945718609", + "3714934703299687544629753" ], - "LPTokenSupply": "9580145856203757075382813" + "LPTokenSupply": "9035635562196239595532093" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "7876370331913286", - "expectedQty": "7985412504012012", - "swapFee": "4725822199147", + "inputQty": "1444343611977097805824", + "outputIndex": 0, + "expectedQty": "1448183790499961927711", + "swapFee": "0", "reserves": [ - "5614154823092302134016962", - "4116441596835551379248936" + "5422346549249796983790898", + "3716379046911664642435577" ], - "LPTokenSupply": "9580145848327859325689441" + "LPTokenSupply": "9035635562196239595532093", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10137305060767768248320", - "expectedQty": "10277593030986666304617", - "swapFee": "6082383036460660948", + "type": "mintMulti", + "inputQtys": [ + "60190823322785140441088", + "42651584285412306190336" + ], + "expectedQty": "101684461304961662824649", "reserves": [ - "5614154823092302134016962", - "4106164003804564712944319" + "5482537372572582124231986", + "3759030631197076948625913" ], - "LPTokenSupply": "9570009151505395203507215" + "LPTokenSupply": "9137320023501201258356742" }, { "type": "mintMulti", "inputQtys": [ - "360331922848953", - "400165003142240" + "242393539159417618432", + "116352419122870190080" ], - "expectedQty": "748904581127986", + "expectedQty": "354621697959384592952", "reserves": [ - "5614154823452634056865915", - "4106164004204729716086559" + "5482779766111741541850418", + "3759146983616199818815993" ], - "LPTokenSupply": "9570009152254299784635201" + "LPTokenSupply": "9137674645199160642949694" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "88776230481802947461120", + "expectedQty": "87677917218788704637361", + "reserves": [ + "5571555996593544489311538", + "3759146983616199818815993" + ] }, { "type": "redeemBassets", "inputQtys": [ - "36166399611751", - "85148529979837" + "4951491102929738268672", + "13517999400145049878528" ], - "expectedQty": "119510972496172", - "swapFee": "71749633277", + "expectedQty": "18277708904791000464088", + "swapFee": "10973209268435661675", "reserves": [ - "5614154823416467657254164", - "4106164004119581186106722" + "5566604505490614751042866", + "3745628984216054768937465" ], - "LPTokenSupply": "9570009152134724237469078" + "LPTokenSupply": "9207064977624816755027458" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1956455391367861", - "4807471904786442" + "341975611114365911040", + "2260814523972158750720" + ], + "expectedQty": "2576757193540521577103", + "swapFee": "1546982505627689559", + "reserves": [ + "5566262529879500385131826", + "3743368169692082610186745" + ], + "LPTokenSupply": "9204486828147021168529750" + }, + { + "type": "redeemMasset", + "inputQty": "242049622409390954905", + "expectedQtys": [ + "146287716163073593413", + "98379977114312363664" ], - "expectedQty": "6663474893852969", + "redemptionFee": "145229773445634572", "reserves": [ - "5614154825372923048622025", - "4106164008927053090893164" + "5566116242163337311538413", + "3743269789714968297823081" ], - "LPTokenSupply": "9570009158798199131322047" + "LPTokenSupply": "9204244793047589122138302" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "15600740500528265428992", - "expectedQty": "15378508063752378595160", + "inputIndex": 0, + "inputQty": "346403902464706215936", + "expectedQty": "342105490343743345833", "reserves": [ - "5614154825372923048622025", - "4121764749427581356322156" + "5566462646065802017754349", + "3743269789714968297823081" ] }, { "type": "mintMulti", "inputQtys": [ - "143156482738237849600", - "194621507383040311296" + "686149065463313", + "5039866525503121" ], - "expectedQty": "332663616989958856280", + "expectedQty": "5668933891716407", "reserves": [ - "5614297981855661286471625", - "4121959370934964396633452" + "5566462646751951083217662", + "3743269794754834823326202" ], - "LPTokenSupply": "9585720330478941468773487" + "LPTokenSupply": "9204586904206866757200542" }, { "type": "mintMulti", "inputQtys": [ - "577743460406226432", - "509066014504769728" + "845197885113848561664", + "2247167535728939761664" ], - "expectedQty": "1070108368119281856", + "expectedQty": "3060220612307430259058", "reserves": [ - "5614298559599121692698057", - "4121959880000978901403180" + "5567307844637064931779326", + "3745516962290563763087866" ], - "LPTokenSupply": "9585721400587309588055343" + "LPTokenSupply": "9207647124819174187459600" }, { "type": "redeemBassets", "inputQtys": [ - "11971160403927690", - "5833633126858866" + "57401512129195463933952", + "88799630775676519317504" ], - "expectedQty": "17525933547448320", - "swapFee": "10521873252420", + "expectedQty": "144634640801785208401167", + "swapFee": "86832884211598083891", "reserves": [ - "5614298547627961288770367", - "4121959874167345774544314" + "5509906332507869467845374", + "3656717331514887243770362" ], - "LPTokenSupply": "9585721383051906354679844" + "LPTokenSupply": "9062934334421598540782930" }, { "type": "mintMulti", "inputQtys": [ - "15478302313075041107968", - "26103945514527380996096" + "175017980541196544", + "388878864667349952" ], - "expectedQty": "40957025604044783352689", + "expectedQty": "557989831546333086", "reserves": [ - "5629776849941036329878335", - "4148063819681873155540410" + "5509906507525850009041918", + "3656717720393751911120314" ], - "LPTokenSupply": "9626678408655951138032533" + "LPTokenSupply": "9062934892411430087116016" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "92083130312064532480", - "expectedQty": "93359942147151221929", - "swapFee": "55249878187238719", + "type": "mintMulti", + "inputQtys": [ + "4568955032682739269632", + "14901870906637490847744" + ], + "expectedQty": "19271011136798499804860", "reserves": [ - "5629776849941036329878335", - "4147970459739726004318481" + "5514475462558532748311550", + "3671619591300389401968058" ], - "LPTokenSupply": "9626586331050626892223924" + "LPTokenSupply": "9082205903548228586920876" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "4601850105564952002560", - "expectedQty": "4526660464724488426406", + "inputQty": "23115471473341483712512", + "outputIndex": 1, + "expectedQty": "23029522171235340062607", + "swapFee": "18262045139584325698", "reserves": [ - "5634378700046601281880895", - "4147970459739726004318481" - ] + "5537590934031874232024062", + "3648590069129154061905451" + ], + "LPTokenSupply": "9082207729752742545353445", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4992008993953387905024", - "expectedQty": "4910431392202192519990", + "inputIndex": 1, + "inputQty": "146883627557283201024", + "expectedQty": "145480957966425421111", "reserves": [ - "5639370709040554669785919", - "4147970459739726004318481" + "5537590934031874232024062", + "3648736952756711345106475" ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "970513498338381529088", - "outputIndex": 0, - "expectedQty": "972566397558341310545", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "166833899522969010176", + "outputIndex": 1, + "expectedQty": "166206524682756173588", + "swapFee": "131800926248616230", "reserves": [ - "5638398142642996328475374", - "4148940973238064385847569" + "5537757767931397201034238", + "3648570746232028588932887" ], - "LPTokenSupply": "9636023422907553573170320", + "LPTokenSupply": "9082353223890801595636179", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "34040563993270457", + "inputQty": "47355999517729796915", "expectedQtys": [ - "19906457656224811", - "14647904548866307" + "28856916274246672425", + "19012478507887609901" ], - "redemptionFee": "20424338395962", + "redemptionFee": "28413599710637878", "reserves": [ - "5638398122736538672250563", - "4148940958590159836981262" + "5537728911015122954361813", + "3648551733753520701322986" ], - "LPTokenSupply": "9636023388869032013739459" + "LPTokenSupply": "9082305870732643836903051" }, { "type": "redeem", + "inputIndex": 0, + "inputQty": "908820616102169018368", + "expectedQty": "919757454434077806793", + "swapFee": "545292369661301411", + "reserves": [ + "5536809153560688876555020", + "3648551733753520701322986" + ], + "LPTokenSupply": "9081397104645778634014824" + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "2054725724376704512", - "expectedQty": "2083204658319132622", - "swapFee": "1232835434626022", + "inputQty": "282204603976742915276800", + "outputIndex": 0, + "expectedQty": "282901811951601567915833", + "swapFee": "0", "reserves": [ - "5638398122736538672250563", - "4148938875385501517848640" + "5253907341609087308639187", + "3930756337730263616599786" ], - "LPTokenSupply": "9636021334266591180497549" + "LPTokenSupply": "9081397104645778634014824", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "23013365460879036416", - "expectedQty": "22637286612997755414", + "inputQty": "12852520431852860735488", + "expectedQty": "12697146371811614309325", "reserves": [ - "5638421136101999551286979", - "4148938875385501517848640" + "5266759862040940169374675", + "3930756337730263616599786" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8667847807148338708480", - "expectedQty": "8544184492876426540334", + "type": "redeemMasset", + "inputQty": "147320399297934848", + "expectedQtys": [ + "85268043609280858", + "63638349118343734" + ], + "redemptionFee": "88392239578760", "reserves": [ - "5638421136101999551286979", - "4157606723192649856557120" - ] + "5266759776772896560093817", + "3930756274091914498256052" + ], + "LPTokenSupply": "9094094103706030174347177" + }, + { + "type": "redeemMasset", + "inputQty": "1709106557701312512", + "expectedQtys": [ + "989219233661832240", + "738286892505883537" + ], + "redemptionFee": "1025463934620787", + "reserves": [ + "5266758787553662898261577", + "3930755535805021992372515" + ], + "LPTokenSupply": "9094092394702018866496743" }, { "type": "mint", "inputIndex": 1, - "inputQty": "16618200951220982", - "expectedQty": "16381037943121346", + "inputQty": "65741413033854394368", + "expectedQty": "65076895308511692132", "reserves": [ - "5638421136101999551286979", - "4157606739810850807778102" + "5266758787553662898261577", + "3930821277218055846766883" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "84859556261364259356672", - "expectedQty": "86214939144112459974633", - "swapFee": "50915733756818555614", + "type": "redeemBassets", + "inputQtys": [ + "77989344685000975450112", + "66880944777247900827648" + ], + "expectedQty": "143251187141186007843409", + "swapFee": "86002313672915353918", "reserves": [ - "5552206196957887091312346", - "4157606739810850807778102" + "5188769442868661922811465", + "3863940332440807945939235" ], - "LPTokenSupply": "9559733707739129970413532" + "LPTokenSupply": "8950828882373835746526938" }, { - "type": "mintMulti", - "inputQtys": [ - "3736280722490791559168", - "2618054895060125220864" + "type": "redeemMasset", + "inputQty": "926251970182266748928", + "expectedQtys": [ + "536623402999658026494", + "399609354975632170347" ], - "expectedQty": "6255919475553373416262", + "redemptionFee": "555751182109360049", "reserves": [ - "5555942477680377882871514", - "4160224794705910932998966" + "5188232819465662264784971", + "3863540723085832313768888" ], - "LPTokenSupply": "9565989627214683343829794" + "LPTokenSupply": "8949902685978771690714014" }, { "type": "redeemMasset", - "inputQty": "132397885536239308", + "inputQty": "169490264741519556608", "expectedQtys": [ - "76850771099799603", - "57544959240675457" + "98194066681441110895", + "73122542605600640339" ], - "redemptionFee": "79438731321743", + "redemptionFee": "101694158844911733", "reserves": [ - "5555942400829606783071911", - "4160224737160951692323509" + "5188134625398980823674076", + "3863467600543226713128549" ], - "LPTokenSupply": "9565989494824741680722660" + "LPTokenSupply": "8949733205883446055648579" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2393187620174494695424", - "expectedQty": "2358866635011576833601", + "inputQty": "96392646346222", + "expectedQty": "95418369262727", "reserves": [ - "5555942400829606783071911", - "4162617924781126187018933" + "5188134625398980823674076", + "3863467600639619359474771" ] }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "2517324824042195648512", + "expectedQty": "2546648065457694413045", + "swapFee": "1510394894425317389", + "reserves": [ + "5185587977333523129261031", + "3863467600639619359474771" + ], + "LPTokenSupply": "8947216032194311671794532" + }, { "type": "swap", "inputIndex": 1, - "inputQty": "13263598338637375488", + "inputQty": "33026098578911657984000", "outputIndex": 0, - "expectedQty": "13289869387001717479", + "expectedQty": "33091063520450802464266", "swapFee": "0", "reserves": [ - "5555929110960219781354432", - "4162631188379464824394421" + "5152496913813072326796765", + "3896493699218531017458771" ], - "LPTokenSupply": "9568348361459753257556261", + "LPTokenSupply": "8947216032194311671794532", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "53159960522790895616", - "49524436770231255040" - ], - "expectedQty": "101108087224784846147", + "type": "redeem", + "inputIndex": 0, + "inputQty": "24084666000222357291008", + "expectedQty": "24363881360517203049308", + "swapFee": "14450799600133414374", "reserves": [ - "5555982270920742572250048", - "4162680712816235055649461" + "5128133032452555123747457", + "3896493699218531017458771" ], - "LPTokenSupply": "9568449469546978042402408" + "LPTokenSupply": "8923132811274049327844961" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "230233976137155008", - "1492238785548417280" - ], - "expectedQty": "1697319894094921552", - "reserves": [ - "5555982501154718709405056", - "4162682205055020604066741" + "591981305082201505792", + "684684072336302538752" ], - "LPTokenSupply": "9568451166866872137323960" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "436163109106970001408", - "outputIndex": 1, - "expectedQty": "434952398999724096844", - "swapFee": "343246116545096972", + "expectedQty": "1262555248051471780478", + "swapFee": "757987941595840572", "reserves": [ - "5556418664263825679406464", - "4162247252656020879969897" + "5127541051147472922241665", + "3895809015146194714920019" ], - "LPTokenSupply": "9568451201191483791833657", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8921869573836850419807967" }, { "type": "mintMulti", "inputQtys": [ - "5759121716309558034432", - "9156040235787068899328" + "14418848076549664538624", + "51776393014565924765696" ], - "expectedQty": "14690014293602117920102", + "expectedQty": "65492967557385425653549", "reserves": [ - "5562177785980135237440896", - "4171403292891807948869225" + "5141959899224022586780289", + "3947585408160760639685715" ], - "LPTokenSupply": "9583141215485085909753759" + "LPTokenSupply": "8987362541394235845461516" }, { - "type": "redeemMasset", - "inputQty": "2595683703368513", - "expectedQtys": [ - "1505664094613472", - "1129185798068273" - ], - "redemptionFee": "1557410222021", + "type": "redeem", + "inputIndex": 1, + "inputQty": "380155515106017604009984", + "expectedQty": "383774185282055108598053", + "swapFee": "228093309063610562405", "reserves": [ - "5562177784474471142827424", - "4171403291762622150800952" + "5141959899224022586780289", + "3563811222878705531087662" ], - "LPTokenSupply": "9583141212889557947407448" + "LPTokenSupply": "8607229835619124602507772" }, { - "type": "redeemBassets", - "inputQtys": [ - "21835508871280522690560", - "51940245847271662419968" - ], - "expectedQty": "72675578859828933526068", - "swapFee": "43631526231636341920", + "type": "swap", + "inputIndex": 1, + "inputQty": "3725793212634365952000", + "outputIndex": 0, + "expectedQty": "3735338256007756266762", + "swapFee": "0", "reserves": [ - "5540342275603190620136864", - "4119463045915350488380984" + "5138224560968014830513527", + "3567537016091339897039662" ], - "LPTokenSupply": "9510426365656120541173651" + "LPTokenSupply": "8607229835619124602507772", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "136031986047208574156", - "expectedQtys": [ - "79198506556311504795", - "58887213969987013492" - ], - "redemptionFee": "81619191628325144", + "type": "mint", + "inputIndex": 1, + "inputQty": "228607670125404913664", + "expectedQty": "226360735079273068054", "reserves": [ - "5540263077096634308632069", - "4119404158701380501367492" - ], - "LPTokenSupply": "9510290341831992495432009" + "5138224560968014830513527", + "3567765623761465301953326" + ] }, { "type": "redeemMasset", - "inputQty": "180433601434879", + "inputQty": "1544601638763099481702", "expectedQtys": [ - "105049351199180", - "78108336766124" + "921497361150356150317", + "639848758747080058702" ], - "redemptionFee": "108260160860", + "redemptionFee": "926760983257859689", "reserves": [ - "5540263076991584957432889", - "4119404158623272164601368" + "5137303063606864474363210", + "3567125775002718221894624" ], - "LPTokenSupply": "9510290341651569720013216" + "LPTokenSupply": "8605911687391539101880092" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "6575871598618571776", + "expectedQty": "6511237175357918652", + "reserves": [ + "5137303063606864474363210", + "3567132350874316840466400" + ] }, { "type": "redeemBassets", "inputQtys": [ - "173104223391270600704", - "286267096159400656896" + "233698361852193", + "836369724345997" ], - "expectedQty": "452448667477268781340", - "swapFee": "271632179794237811", + "expectedQty": "1058960748955509", + "swapFee": "635757904115", "reserves": [ - "5540089972768193686832185", - "4119117891527112763944472" + "5137303063373166112511017", + "3567132350037947116120403" ], - "LPTokenSupply": "9509837648515130636417845" + "LPTokenSupply": "8605918197569181528729530" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1430159176453578817536", - "expectedQty": "1406820553515255324664", + "inputQty": "12364370885418072145920", + "expectedQty": "12211599941446914672487", "reserves": [ - "5541520131944647265649721", - "4119117891527112763944472" + "5149667434258584184656937", + "3567132350037947116120403" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "2453305348264925593600", - "expectedQty": "2418186422953962530108", + "inputQty": "24387550003805011574784", + "expectedQty": "24147733202773874964088", "reserves": [ - "5541520131944647265649721", - "4121571196875377689538072" + "5149667434258584184656937", + "3591519900041752127695187" ] }, { - "type": "mintMulti", - "inputQtys": [ - "83558019578597667241984", - "244577004402637178667008" - ], - "expectedQty": "323254119982740455902763", + "type": "redeem", + "inputIndex": 0, + "inputQty": "42252234322243340992512", + "expectedQty": "42753825851124950605668", + "swapFee": "25351340593346004595", "reserves": [ - "5625078151523244932891705", - "4366148201278014868205080" + "5106913608407459234051269", + "3591519900041752127695187" ], - "LPTokenSupply": "9836916775474340310175380" + "LPTokenSupply": "8600027831525218311974052" }, { "type": "redeemMasset", - "inputQty": "3473735802059877990", + "inputQty": "1583553513026", "expectedQtys": [ - "1985206522413709552", - "1540904082311252286" + "939789835689", + "660922458366" ], - "redemptionFee": "2084241481235926", + "redemptionFee": "950132107", "reserves": [ - "5625076166316722519182153", - "4366146660373932556952794" + "5106913608406519444215580", + "3591519900041091205236821" ], - "LPTokenSupply": "9836913301946962398420982" + "LPTokenSupply": "8600027831523634853474236" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "3949020746205873831936", - "expectedQty": "3891794416453539722947", + "inputQty": "5551505864771706880", + "outputIndex": 0, + "expectedQty": "5565139842325464761", + "swapFee": "0", "reserves": [ - "5625076166316722519182153", - "4370095681120138430784730" - ] + "5106908043266677118750819", + "3591525451546955976943701" + ], + "LPTokenSupply": "8600027831523634853474236", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "762446360527248687104", - "expectedQty": "750107522527614480942", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6453127082143817662464", + "expectedQty": "6513641705755714117380", + "swapFee": "3871876249286290597", "reserves": [ - "5625838612677249767869257", - "4370095681120138430784730" - ] + "5106908043266677118750819", + "3585011809841200262826321" + ], + "LPTokenSupply": "8593575091629115964440831" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2130887131072410943488", - "expectedQty": "2100003134316719457794", + "type": "mintMulti", + "inputQtys": [ + "31980400023877844992", + "33513252987602472960" + ], + "expectedQty": "64768481519829799171", "reserves": [ - "5625838612677249767869257", - "4372226568251210841728218" - ] + "5106940023666700996595811", + "3585045323094187865299281" + ], + "LPTokenSupply": "8593639860110635794240002" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2705259471606961930240", - "62359800480762393788416" + "375502830710837568", + "2813798713330537472" ], - "expectedQty": "64119074231978198374253", - "swapFee": "38494541263945286196", + "expectedQty": "3156871299534659139", "reserves": [ - "5623133353205642805939017", - "4309866767770448447939802" + "5106940399169531707433379", + "3585048136892901195836753" ], - "LPTokenSupply": "9779501487701144522950834" + "LPTokenSupply": "8593643016981935328899141" }, { "type": "mint", "inputIndex": 0, - "inputQty": "3514254166865939005440", - "expectedQty": "3457220782988128326578", + "inputQty": "5229967085146167312384", + "expectedQty": "5165522113006973523060", "reserves": [ - "5626647607372508744944457", - "4309866767770448447939802" + "5112170366254677874745763", + "3585048136892901195836753" ] }, { "type": "redeemBassets", "inputQtys": [ - "40954865672420660871168", - "1808805862109233545216" + "8209713565653052424192", + "38650457966063889940480" ], - "expectedQty": "42073259018239574402939", - "swapFee": "25259110877470226777", + "expectedQty": "46377939149832868705242", + "swapFee": "27843469571642706847", "reserves": [ - "5585692741700088084073289", - "4308057961908339214394586" + "5103960652689024822321571", + "3546397678926837305896273" ], - "LPTokenSupply": "9740862716266103353670372" + "LPTokenSupply": "8552405540822494955280795" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "127518860635435385749504", - "167418402308733601316864" + "206987493754165293744128", + "64054624585807594258432" ], - "expectedQty": "290445360144214435392438", + "expectedQty": "267858620436685467199654", + "swapFee": "160811659257565819811", "reserves": [ - "5713211602335523469822793", - "4475476364217072815711450" + "4896973158934859528577443", + "3482343054341029711637841" ], - "LPTokenSupply": "10031308076410317789062810" + "LPTokenSupply": "8284402189892477678843310" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "210007388868080069246976", - "outputIndex": 1, - "expectedQty": "209428282229763988337834", - "swapFee": "165280984055095319679", + "type": "redeemBassets", + "inputQtys": [ + "3387225446133177778176", + "5679410530580036583424" + ], + "expectedQty": "8968419287821449898759", + "swapFee": "5384282141978056773", "reserves": [ - "5923218991203603539069769", - "4266048081987308827373616" + "4893585933488726350799267", + "3476663643810449675054417" ], - "LPTokenSupply": "10031324604508723298594777", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8275428924750728448693454" }, { "type": "redeemMasset", - "inputQty": "4893434220992638274764", + "inputQty": "337092445763400630272", "expectedQtys": [ - "2887703540912568681873", - "2079795153674501405419" + "199216392449678837328", + "141533917723010102123" ], - "redemptionFee": "2936060532595582964", + "redemptionFee": "202255467458040378", "reserves": [ - "5920331287662690970387896", - "4263968286833634325968197" + "4893386717096276671961939", + "3476522109892726664952294" ], - "LPTokenSupply": "10026431463893783919878309" + "LPTokenSupply": "8275091852530511793867219" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "12737910148838369263616", - "expectedQty": "12528485639552803627584", + "type": "redeemBassets", + "inputQtys": [ + "66564503503649237893120", + "143020079999896917114880" + ], + "expectedQty": "207347801697268838771118", + "swapFee": "124483371040985894799", "reserves": [ - "5933069197811529339651512", - "4263968286833634325968197" - ] + "4826822213592627434068819", + "3333502029892829747837414" + ], + "LPTokenSupply": "8067632015799306067790780" }, { - "type": "redeemMasset", - "inputQty": "5155190655583536336076", - "expectedQtys": [ - "3044912160166249049267", - "2188312398569704733912" + "type": "mintMulti", + "inputQtys": [ + "12933972501771702", + "4030237628854987" ], - "redemptionFee": "3093114393350121801", + "expectedQty": "16764079841541231", "reserves": [ - "5930024285651363090602245", - "4261779974435064621234285" + "4826822226526599935840521", + "3333502033923067376692401" ], - "LPTokenSupply": "10033805068189192522181997" + "LPTokenSupply": "8067632032563385909332011" }, { - "type": "redeemMasset", - "inputQty": "7354483886279712414105", - "expectedQtys": [ - "4343925399888587100311", - "3121885069590660181689" + "type": "mintMulti", + "inputQtys": [ + "37615767531066640", + "5427134635012012" ], - "redemptionFee": "4412690331767827448", + "expectedQty": "42522810730004014", "reserves": [ - "5925680360251474503501934", - "4258658089365473961052596" + "4826822264142367466907161", + "3333502039350202011704413" ], - "LPTokenSupply": "10026451025571945986550636" + "LPTokenSupply": "8067632075086196639336025" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "393050302754398863360", - "expectedQty": "399382288911580859212", - "swapFee": "235830181652639318", + "type": "redeemBassets", + "inputQtys": [ + "51282545312636430450688", + "144519797700027412905984" + ], + "expectedQty": "193752167216177816137114", + "swapFee": "116321092985497988475", "reserves": [ - "5925280977962562922642722", - "4258658089365473961052596" + "4775539718829731036456473", + "3188982241650174598798429" ], - "LPTokenSupply": "10026057998852209752951207" + "LPTokenSupply": "7873775218886331875009282" }, { "type": "mintMulti", "inputQtys": [ - "1339239308579823157248", - "1433364280908462161920" + "226628698628736548864", + "165496869698047082496" ], - "expectedQty": "2730236965299037436962", + "expectedQty": "387681744242689766619", "reserves": [ - "5926620217271142745799970", - "4260091453646382423214516" + "4775766347528359773005337", + "3189147738519872645880925" ], - "LPTokenSupply": "10028788235817508790388169" + "LPTokenSupply": "7874162900630574564775901" }, { "type": "mint", "inputIndex": 1, - "inputQty": "6727616994082888", - "expectedQty": "6632132562755248", + "inputQty": "41172612694804", + "expectedQty": "40773293161193", "reserves": [ - "5926620217271142745799970", - "4260091460373999417297404" + "4775766347528359773005337", + "3189147738561045258575729" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "8384013510499075072", - "expectedQty": "8519075091441177183", - "swapFee": "5030408106299445", + "inputQty": "1555634660956651388928", + "expectedQty": "1536148156075735318037", "reserves": [ - "5926611698196051304622787", - "4260091460373999417297404" - ], - "LPTokenSupply": "10028779858939171664698289" + "4777321982189316424394265", + "3189147738561045258575729" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "21324021033943731011584", - "expectedQty": "20973238993551438527429", + "inputIndex": 1, + "inputQty": "209705532332934208", + "expectedQty": "207671992750488615", "reserves": [ - "5947935719229995035634371", - "4260091460373999417297404" + "4777321982189316424394265", + "3189147948266577591509937" ] }, { "type": "redeemMasset", - "inputQty": "3248527288093667177267", + "inputQty": "10835621990692785356", "expectedQtys": [ - "1921483849869193636026", - "1376224849506949233190" + "6568838434385478832", + "4385092253278422128" ], - "redemptionFee": "1949116372856200306", + "redemptionFee": "6501373194415671", "reserves": [ - "5946014235380125841998345", - "4258715235524492468064214" + "4777315413350882038915433", + "3189143563174324313087809" ], - "LPTokenSupply": "10046504765556266721668481" + "LPTokenSupply": "7875688421527562970399957" }, { "type": "redeemBassets", "inputQtys": [ - "35129956610249809920", - "1265556808562133504" + "5974020796801959936", + "95912604397658898432" ], - "expectedQty": "35799478337912550832", - "swapFee": "21492582552278897", + "expectedQty": "100881719360053560456", + "swapFee": "60565370838535257", "reserves": [ - "5945979105423515592188425", - "4258713969967683905930710" + "4777309439330085236955497", + "3189047650569926654189377" ], - "LPTokenSupply": "10046468946734604512066640" + "LPTokenSupply": "7875587485299369162157768" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "370471666990707769344", - "expectedQty": "375574033221899450722", - "swapFee": "222283000194424661", - "reserves": [ - "5945979105423515592188425", - "4258338395934462006479988" - ], - "LPTokenSupply": "10046098497295913823739762" - }, - { - "type": "swap", "inputIndex": 0, - "inputQty": "69897679563803880062976", - "outputIndex": 1, - "expectedQty": "69672830543527089125750", - "swapFee": "54996929526744074765", + "inputQty": "3347369421297367908352", + "expectedQty": "3387796166624023957420", + "swapFee": "2008421652778420745", "reserves": [ - "6015876784987319472251401", - "4188665565390934917354238" + "4773921643163461212998077", + "3189047650569926654189377" ], - "LPTokenSupply": "10046103996988866498147238", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7872240316720237072091490" }, { "type": "mint", "inputIndex": 0, - "inputQty": "10703699341785288704", - "expectedQty": "10526565539381347170", + "inputQty": "8647873985451531436032", + "expectedQty": "8539534570584403725409", "reserves": [ - "6015887488686661257540105", - "4188665565390934917354238" + "4782569517148912744434109", + "3189047650569926654189377" ] }, { "type": "redeemBassets", "inputQtys": [ - "10019275912424218624", - "7425547752585292800" + "479025268748518817792", + "502343855383042785280" ], - "expectedQty": "17174630917394862403", - "swapFee": "10310965129514626", + "expectedQty": "970497902570091108062", + "swapFee": "582648330540378892", "reserves": [ - "6015877469410748833321481", - "4188658139843182332061438" + "4782090491880164225616317", + "3188545306714543611404097" ], - "LPTokenSupply": "10046097339643619868068840" + "LPTokenSupply": "7879808829004753898367833" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5085418066552940", - "expectedQty": "5001260278724780", + "type": "redeemMasset", + "inputQty": "14424627681890403142860", + "expectedQtys": [ + "8748751201652538548709", + "5833388061352786731620" + ], + "redemptionFee": "8654776609134241885", "reserves": [ - "6015877474496166899874421", - "4188658139843182332061438" - ] + "4773341740678511687067608", + "3182711918653190824672477" + ], + "LPTokenSupply": "7865385066800524408649161" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "34605252950987560", - "expectedQty": "34118786360885322", + "inputIndex": 0, + "inputQty": "4419062214895423979520", + "expectedQty": "4363676172338964325729", "reserves": [ - "6015877474496166899874421", - "4188658174448435283048998" + "4777760802893407111047128", + "3182711918653190824672477" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "21505859929706883710976", - "expectedQty": "21854498825001013621546", - "swapFee": "12903515957824130226", + "type": "redeemMasset", + "inputQty": "31264793256435299123", + "expectedQtys": [ + "18969611760759967210", + "12636632919469632128" + ], + "redemptionFee": "18758875953861179", "reserves": [ - "5994022975671165886252875", - "4188658174448435283048998" + "4777741833281646351079918", + "3182699282020271355040349" ], - "LPTokenSupply": "10024592809185555406380988" + "LPTokenSupply": "7869717480055494533061884" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "274017696390792511488", - "outputIndex": 0, - "expectedQty": "274703989223049945848", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "1305137242835865147801", + "expectedQtys": [ + "791879435797086856057", + "527511573396777588894" + ], + "redemptionFee": "783082345701519088", "reserves": [ - "5993748271681942836307027", - "4188932192144826075560486" + "4776949953845849264223861", + "3182171770446874577451455" ], - "LPTokenSupply": "10024592809185555406380988", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7868412421120893238065991" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "75762851342025352019968", - "16109470264952182800384" + "71731876317956904321024", + "165424907032570548453376" ], - "expectedQty": "90391866563823587411805", + "expectedQty": "234665768275708225077346", + "swapFee": "140883991360241079694", "reserves": [ - "6069511123023968188326995", - "4205041662409778258360870" + "4705218077527892359902837", + "3016746863414304028998079" ], - "LPTokenSupply": "10114984675749378993792793" + "LPTokenSupply": "7633619857252960796016919" }, { - "type": "redeemMasset", - "inputQty": "1003258368346284674252", - "expectedQtys": [ - "601645424914914663192", - "416828312278464797003" + "type": "redeemBassets", + "inputQtys": [ + "708031788954491944960", + "98822809934950154240" ], - "redemptionFee": "601955021007770804", + "expectedQty": "796940712749832538468", + "swapFee": "478451498549028940", "reserves": [ - "6068909477599053273663803", - "4204624834097499793563867" + "4704510045738937867957877", + "3016648040604369078843839" ], - "LPTokenSupply": "10113981477576534809895621" + "LPTokenSupply": "7632822485933862269352404" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "16984771044252020", - "1389163145047690" + "333601547434127", + "6209556911269703" ], - "expectedQty": "18073072516196975", + "expectedQty": "6479826422802217", + "swapFee": "3890229991676", "reserves": [ - "6068909494583824317915823", - "4204624835486662938611557" + "4704510045405336320523750", + "3016648034394812167574136" ], - "LPTokenSupply": "10113981495649607326092596" + "LPTokenSupply": "7632822479450534639557677" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "158166288639691407228928", - "expectedQty": "155539757393731345120008", + "inputIndex": 1, + "inputQty": "22167215321397829632", + "expectedQty": "21956221678219447023", "reserves": [ - "6227075783223515725144751", - "4204624835486662938611557" + "4704510045405336320523750", + "3016670201610133565403768" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "655823197658891026432", - "expectedQty": "646695081072761936767", + "type": "swap", + "inputIndex": 0, + "inputQty": "213891758296077229359104", + "outputIndex": 1, + "expectedQty": "212931650987902556026864", + "swapFee": "168932403126866822053", "reserves": [ - "6227075783223515725144751", - "4205280658684321829637989" - ] + "4918401803701413549882854", + "2803738550622231009376904" + ], + "LPTokenSupply": "7632861328912525545686905", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "4513148158571246387", + "inputQty": "10254313468148803488972", "expectedQtys": [ - "2734799812120459802", - "1846870209331268427" + "6603627497622778260230", + "3764402691764708495184" ], - "redemptionFee": "2707888895142747", + "redemptionFee": "6152588080889282093", "reserves": [ - "6227073048423703604684949", - "4205278811814112498369562" + "4911798176203790771622624", + "2799974147930466300881720" ], - "LPTokenSupply": "10270163435247041751417258" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "13430229985095795605504", - "expectedQty": "13243195713518611292009", - "reserves": [ - "6227073048423703604684949", - "4218709041799208293975066" - ] + "LPTokenSupply": "7622607630703184831126142" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "57383078167201898823680", - "outputIndex": 0, - "expectedQty": "57535594530152083178516", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "1144347681339211907072", + "6081131095927970332672" + ], + "expectedQty": "7156444277810886735218", + "swapFee": "4296444433346539965", "reserves": [ - "6169537453893551521506433", - "4276092119966410192798746" + "4910653828522451559715552", + "2793893016834538330549048" ], - "LPTokenSupply": "10283406630960560362709267", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7615447319625383932504954" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "335305970127945662464", - "409899308296737390592" + "2010283916544347471872", + "1050381843773520084992" ], - "expectedQty": "733896885278433760261", + "expectedQty": "3025020378691218079476", + "swapFee": "1816101888347739491", "reserves": [ - "6169872759863679467168897", - "4276502019274706930189338" + "4908643544605907212243680", + "2792842634990764810464056" ], - "LPTokenSupply": "10284140527845838796469528" + "LPTokenSupply": "7612420664754993201459935" }, { - "type": "redeemMasset", - "inputQty": "152614061264067507", - "expectedQtys": [ - "91504425791703268", - "63424138049718485" - ], - "redemptionFee": "91568436758440", - "reserves": [ - "6169872668359253675465629", - "4276501955850568880470853" - ], - "LPTokenSupply": "10284140375240934376077865" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "11500720870640515547136", - "expectedQty": "11657400043233209296738", - "swapFee": "6900432522384309328", - "reserves": [ - "6169872668359253675465629", - "4264844555807335671174115" - ], - "LPTokenSupply": "10272640344413546098961661" - }, - { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "9816181205872253337600", - "outputIndex": 1, - "expectedQty": "9782846330828771993089", - "swapFee": "7722775974399536722", - "reserves": [ - "6179688849565125928803229", - "4255061709476506899181026" - ], - "LPTokenSupply": "10272641116691143538915333", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "262956860185637847826432", - "outputIndex": 0, - "expectedQty": "263541818770943511343040", - "swapFee": "0", + "inputQty": "1237867118516764409856", + "expectedQty": "1221663627925398849832", "reserves": [ - "5916147030794182417460189", - "4518018569662144747007458" - ], - "LPTokenSupply": "10272641116691143538915333", - "hardLimitError": false, - "insufficientLiquidityError": false + "4909881411724423976653536", + "2792842634990764810464056" + ] }, { "type": "redeemBassets", "inputQtys": [ - "27957810914976411418624", - "2579042787111422394368" + "8872927143487760", + "140878596927918000" ], - "expectedQty": "30045010309258960131223", - "swapFee": "18037828882885107143", + "expectedQty": "148383889925520764", + "swapFee": "89083784225847", "reserves": [ - "5888189219879206006041565", - "4515439526875033324613090" + "4909881402851496833165776", + "2792842494112167882546056" ], - "LPTokenSupply": "10242579872335889982187680" + "LPTokenSupply": "7613642179918853268985739" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "654056561580792217600", - "183171177696147243008" + "1368288527333171456", + "1194077518258792960" ], - "expectedQty": "823946256094574924101", + "expectedQty": "2533847269299410359", + "swapFee": "1521221094236187", "reserves": [ - "5888843276440786798259165", - "4515622698052729471856098" + "4909880034562969499994320", + "2792841300034649623753096" ], - "LPTokenSupply": "10243403818591984557111781" + "LPTokenSupply": "7613639644702484984762810" }, { "type": "mintMulti", "inputQtys": [ - "53145428060917129543680", - "136011487581222507380736" + "200870204637170496", + "127974744444136816" ], - "expectedQty": "186320897093716616741412", + "expectedQty": "325078648203630869", "reserves": [ - "5941988704501703927802845", - "4651634185633951979236834" + "4909880235433174137164816", + "2792841428009394067889912" ], - "LPTokenSupply": "10429724715685701173853193" + "LPTokenSupply": "7613639969781133188393679" }, { "type": "swap", "inputIndex": 0, - "inputQty": "50541023808028205056", + "inputQty": "3835089722293344256", "outputIndex": 1, - "expectedQty": "50416732729612026202", - "swapFee": "39778215318805420", + "expectedQty": "3815756392154592069", + "swapFee": "3027909868354638", "reserves": [ - "5942039245525511956007901", - "4651583768901222367210632" + "4909884070522896430509072", + "2792837612253001913297843" ], - "LPTokenSupply": "10429724719663522705733735", + "LPTokenSupply": "7613639970083924175229142", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "4913310732523251712", - "4419965210959484416" - ], - "expectedQty": "9189403587998494325", - "swapFee": "5516952324193612", - "reserves": [ - "5942034332214779432756189", - "4651579348936011407726216" - ], - "LPTokenSupply": "10429715525294677615465158" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "512398872039261470720", - "458328406626920955904" - ], - "expectedQty": "955761270819424996704", - "swapFee": "573801043117525513", - "reserves": [ - "5941521933342740171285469", - "4651121020529384486770312" - ], - "LPTokenSupply": "10428759247602919384695491" - }, { "type": "redeemMasset", - "inputQty": "1229031641544561254", + "inputQty": "1579683262910244795187", "expectedQtys": [ - "699789580971838974", - "547806785285128835" + "1018094903683208957672", + "579112194709466443453" ], - "redemptionFee": "737418984926736", + "redemptionFee": "947809957746146877", "reserves": [ - "5941521233553159199446495", - "4651120472722599201641477" + "4908865975619213221551400", + "2792258500058292446854390" ], - "LPTokenSupply": "10428758018645019738626910" + "LPTokenSupply": "7612060381602009705048642" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "532948972746373", - "expectedQty": "541394404765207", - "swapFee": "319769383647", - "reserves": [ - "5941521233011764794681288", - "4651120472722599201641477" - ], - "LPTokenSupply": "10428758018112102742818901" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "10239099076587171086336", - "4759711280919647092736" - ], - "expectedQty": "14763772787717923555918", - "swapFee": "8863581821723788406", + "inputIndex": 1, + "inputQty": "703061271663113797632", + "expectedQty": "708936756249869095756", + "swapFee": "421836762997868278", "reserves": [ - "5931282133935177623594952", - "4646360761441679554548741" + "4908865975619213221551400", + "2791549563302042577758634" ], - "LPTokenSupply": "10413986268100745267853416" + "LPTokenSupply": "7611357362514022891037837" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "341698489447799649730560", - "outputIndex": 1, - "expectedQty": "340695330339611632670166", - "swapFee": "268909667032147669304", + "type": "redeem", + "inputIndex": 1, + "inputQty": "33578895886775637508096", + "expectedQty": "33858239805103889844188", + "swapFee": "20147337532065382504", "reserves": [ - "6272980623382977273325512", - "4305665431102067921878575" + "4908865975619213221551400", + "2757691323496938687914446" ], - "LPTokenSupply": "10414013159067448482620346", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7577780481361000460067991" }, { "type": "mintMulti", "inputQtys": [ - "19816221585900576768", - "184289395031075291136" - ], - "expectedQty": "201192393473832295422", - "reserves": [ - "6273000439604563173902280", - "4305849720497098997169711" + "44205547187311730688", + "39146505110998605824" ], - "LPTokenSupply": "10414214351460922314915768" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "171742575087482372096", - "expectedQty": "174540593589277242168", - "swapFee": "103045545052489423", + "expectedQty": "82426487228019378748", "reserves": [ - "6272825899010973896660112", - "4305849720497098997169711" + "4908910181166400533282088", + "2757730470002049686520270" ], - "LPTokenSupply": "10414042619190389337792614" + "LPTokenSupply": "7577862907848228479446739" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "15703872264431032336384", - "5498065529681998774272" - ], - "expectedQty": "20863819689148780378603", - "reserves": [ - "6288529771275404928996496", - "4311347786026780995943983" + "17730868754573946781696", + "69858766711355548368896" ], - "LPTokenSupply": "10434906438879538118171217" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "986238443833541632", - "expectedQty": "1002310055586182571", - "swapFee": "591743066300124", + "expectedQty": "86745270050725794299010", + "swapFee": "52078409075881005182", "reserves": [ - "6288528768965349342813925", - "4311347786026780995943983" + "4891179312411826586500392", + "2687871703290694138151374" ], - "LPTokenSupply": "10434905452700268591259597" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "19188835589741768704", - "expectedQty": "18919899028357682523", - "reserves": [ - "6288528768965349342813925", - "4311366974862370737712687" - ] + "LPTokenSupply": "7491070767229334392243064" }, { - "type": "mintMulti", - "inputQtys": [ - "3891657430763662848", - "8301765845409781760" + "type": "redeemMasset", + "inputQty": "3090335907190091756339", + "expectedQtys": [ + "2016576574273143561654", + "1108178368712255063340" ], - "expectedQty": "12012373193924830108", + "redemptionFee": "1854201544314055053", "reserves": [ - "6288532660622780106476773", - "4311375276628216147494447" + "4889162735837553442938738", + "2686763524921981883088034" ], - "LPTokenSupply": "10434936384972490873772228" + "LPTokenSupply": "7487980616742298731892230" }, { "type": "swap", "inputIndex": 1, - "inputQty": "848101692941030144", + "inputQty": "111399543987019972608", "outputIndex": 0, - "expectedQty": "850352360727889656", + "expectedQty": "111911664432392620598", "swapFee": "0", "reserves": [ - "6288531810270419378587117", - "4311376124729909088524591" + "4889050824173121050318140", + "2686874924465968903060642" ], - "LPTokenSupply": "10434936384972490873772228", + "LPTokenSupply": "7487980616742298731892230", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "12083606428852689043456", - "expectedQtys": [ - "7277720507615926875682", - "4989557401577852338833" - ], - "redemptionFee": "7250163857311613426", + "type": "redeem", + "inputIndex": 1, + "inputQty": "58553715505753921421312", + "expectedQty": "59026843718017049328540", + "swapFee": "35132229303452352852", "reserves": [ - "6281254089762803451711435", - "4306386567328331236185758" + "4889050824173121050318140", + "2627848080747951853732102" ], - "LPTokenSupply": "10422853503560023915890114" + "LPTokenSupply": "7429430414459475155706203" }, { "type": "mint", "inputIndex": 0, - "inputQty": "42233417635782816", - "expectedQty": "41531263983384047", + "inputQty": "1318502975733722", + "expectedQty": "1300968398459915", "reserves": [ - "6281254131996221087494251", - "4306386567328331236185758" + "4889050825491624026051862", + "2627848080747951853732102" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1033287554662720077824", - "819397712844787941376" - ], - "expectedQty": "1824021696549424419624", + "type": "mint", + "inputIndex": 0, + "inputQty": "21888113767598567424", + "expectedQty": "21597026788020631029", "reserves": [ - "6282287419550883807572075", - "4307205965041176024127134" - ], - "LPTokenSupply": "10424677566787837323693785" + "4889072713605391624619286", + "2627848080747951853732102" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "328102206947509600256", - "expectedQty": "332566544533738255813", - "swapFee": "196861324168505760", + "inputQty": "38632426977599636373504", + "expectedQty": "38940004514874237832933", + "swapFee": "23179456186559781824", "reserves": [ - "6282287419550883807572075", - "4306873398496642285871321" + "4889072713605391624619286", + "2588908076233077615899169" ], - "LPTokenSupply": "10424349484267022230944105" + "LPTokenSupply": "7390821903755250594401825" }, { - "type": "mintMulti", - "inputQtys": [ - "9626702460285030", - "8462274456858278" + "type": "redeemMasset", + "inputQty": "361910068057418288332", + "expectedQtys": [ + "239262022378998739859", + "126696291578788862732" ], - "expectedQty": "17810321494932506", + "redemptionFee": "217146040834450972", "reserves": [ - "6282287429177586267857105", - "4306873406958916742729599" + "4888833451583012625879427", + "2588781379941498827036437" ], - "LPTokenSupply": "10424349502077343725876611" + "LPTokenSupply": "7390460015401797259558590" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "33686497177133449216", - "expectedQty": "33214357467982261241", + "type": "redeemMasset", + "inputQty": "40216267230820558438", + "expectedQtys": [ + "26587339048830920911", + "14078779519379643126" + ], + "redemptionFee": "24129760338492335", "reserves": [ - "6282287429177586267857105", - "4306907093456093876178815" - ] + "4888806864243963794958516", + "2588767301161979447393311" + ], + "LPTokenSupply": "7390419801547542472849385" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8975166476016837197824", - "6828421998942017814528" + "199110310473302540288", + "616917334086439272448" ], - "expectedQty": "15558664594775735375382", + "expectedQty": "808157758732059014226", + "swapFee": "485185766699254961", "reserves": [ - "6291262595653603105054929", - "4313735515455035893993343" + "4888607753933490492418228", + "2588150383827893008120863" ], - "LPTokenSupply": "10439941381029587443513234" + "LPTokenSupply": "7389611207121620384505693" }, { - "type": "redeemBassets", - "inputQtys": [ - "26187308518952927232000", - "11276598759427651141632" + "type": "redeemMasset", + "inputQty": "13980104072710009651", + "expectedQtys": [ + "9243008503305253321", + "4893478309096392497" ], - "expectedQty": "36870503887460446038324", - "swapFee": "22135583682685879150", + "redemptionFee": "8388062443626005", "reserves": [ - "6265075287134650177822929", - "4302458916695608242851711" + "4888598510924987187164907", + "2588145490349583911728366" ], - "LPTokenSupply": "10403050955116812580183674" + "LPTokenSupply": "7389597227856353918858642" }, { "type": "mint", "inputIndex": 1, - "inputQty": "5300504549179069038592", - "expectedQty": "5226147809120562908949", + "inputQty": "103666194273857840", + "expectedQty": "102790631183136522", "reserves": [ - "6265075287134650177822929", - "4307759421244787311890303" + "4888598510924987187164907", + "2588145594015778185586206" ] }, { - "type": "mintMulti", - "inputQtys": [ - "3585082675924537856", - "4899764501299543040" - ], - "expectedQty": "8356520177912301748", + "type": "mint", + "inputIndex": 1, + "inputQty": "27043046179567099183104", + "expectedQty": "26813705298591158627314", "reserves": [ - "6265078872217326102360785", - "4307764321009288611433343" - ], - "LPTokenSupply": "10408285459446111055394371" + "4888598510924987187164907", + "2615188640195345284769310" + ] }, { "type": "mintMulti", "inputQtys": [ - "6447571308400356622336", - "786029569927956660224" - ], - "expectedQty": "7115417017184465313579", - "reserves": [ - "6271526443525726458983121", - "4308550350579216568093567" - ], - "LPTokenSupply": "10415400876463295520707950" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1121941540191435882496", - "262374482518695051264" + "122305191826624249856", + "132467390767282356224" ], - "expectedQty": "1361987987501036253241", - "swapFee": "817683402542147040", + "expectedQty": "252015729040611130899", "reserves": [ - "6270404501985535023100625", - "4308287976096697873042303" + "4888720816116813811414763", + "2615321107586112567125534" ], - "LPTokenSupply": "10414038152560732196522372" + "LPTokenSupply": "7416663051674616871753377" }, { - "type": "redeemBassets", - "inputQtys": [ - "8253014195130806272", - "2993655737270764544" - ], - "expectedQty": "11067504634416976416", - "swapFee": "6644489474334786", + "type": "redeem", + "inputIndex": 1, + "inputQty": "236590533815620408967168", + "expectedQty": "238400971497568969859295", + "swapFee": "141954320289372245380", "reserves": [ - "6270396248971339892294353", - "4308284982440960602277759" + "4888720816116813811414763", + "2376920136088543597266239" ], - "LPTokenSupply": "10414027079076057252644647" + "LPTokenSupply": "7180086713291025400010747" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "5160883190212124999680", - "expectedQty": "5244954608385620354560", - "swapFee": "3096529914127274999", + "inputQty": "224767362689947424", + "expectedQty": "227748581902975681", + "swapFee": "134860417613968", "reserves": [ - "6265151294362954271939793", - "4308284982440960602277759" + "4888720588368231908439082", + "2376920136088543597266239" ], - "LPTokenSupply": "10408866505538836540372466" + "LPTokenSupply": "7180086488537148751824719" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1601649718398248026112", - "1903102546618374160384" - ], - "expectedQty": "3451431051231015548391", - "reserves": [ - "6266752944081352519965905", - "4310188084987578976438143" - ], - "LPTokenSupply": "10412317936590067555920857" - }, - { - "type": "redeemMasset", - "inputQty": "61861314924359", - "expectedQtys": [ - "37209483809460", - "25592180702694" + "207530513429576810496", + "100730655337298001920" ], - "redemptionFee": "37116788954", + "expectedQty": "304630664209745025291", + "swapFee": "182888131404689829", "reserves": [ - "6266752944044143036156445", - "4310188084961986795735449" + "4888513057854802331628586", + "2376819405433206299264319" ], - "LPTokenSupply": "10412317936528209952675393" + "LPTokenSupply": "7179781693273620742578580" }, { "type": "redeemBassets", "inputQtys": [ - "143513264193911963648", - "34999962692301836288" + "482270204791895293952", + "352533141287126433792" ], - "expectedQty": "175637215359418934839", - "swapFee": "105445596573595518", - "reserves": [ - "6266609430779949124192797", - "4310153084999294493899161" - ], - "LPTokenSupply": "10412142204411813617504586" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "47508578233492332085248", - "expectedQty": "48281822300165107988323", - "swapFee": "28505146940095399251", + "expectedQty": "825436391306271464293", + "swapFee": "495559170285934439", "reserves": [ - "6218327608479784016204474", - "4310153084999294493899161" + "4888030787650010436334634", + "2376466872291919172830527" ], - "LPTokenSupply": "10364636476693015294959263" + "LPTokenSupply": "7178955810879061213773290" }, { "type": "redeemBassets", "inputQtys": [ - "1315563188035166404608", - "370415344618263085056" + "11184269481109490761728", + "3334342199512647860224" ], - "expectedQty": "1658933836271230238154", - "swapFee": "995957876488631321", + "expectedQty": "14339407480720246534604", + "swapFee": "8608809774296725956", "reserves": [ - "6217012045291748849799866", - "4309782669654676230814105" + "4876846518168900945572906", + "2373132530092406524970303" ], - "LPTokenSupply": "10362976646494655224952919" + "LPTokenSupply": "7164608655469544100185324" }, { - "type": "redeemMasset", - "inputQty": "3247914842554150912", - "expectedQtys": [ - "1947337236318886620", - "1349941131192794164" + "type": "mintMulti", + "inputQtys": [ + "682640585727428224", + "1328601051717306624" ], - "redemptionFee": "1948748905532490", + "expectedQty": "1991459273916661448", "reserves": [ - "6217010097954512530913246", - "4309781319713545038019941" + "4876847200809486673001130", + "2373133858693458242276927" ], - "LPTokenSupply": "10362973398774687561355256" + "LPTokenSupply": "7164610646928818016846772" }, { "type": "mint", "inputIndex": 0, - "inputQty": "562907820672831936", - "expectedQty": "553566023632863148", + "inputQty": "1396850652602626816", + "expectedQty": "1377741560283459816", "reserves": [ - "6217010660862333203745182", - "4309781319713545038019941" + "4876848597660139275627946", + "2373133858693458242276927" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "36815940570078437376", + "inputQty": "3667479408145632768", "outputIndex": 0, - "expectedQty": "36910452565815088661", + "expectedQty": "3689117949793978808", "swapFee": "0", "reserves": [ - "6216973750409767388656521", - "4309818135654115116457317" + "4876844908542189481649138", + "2373137526172866387909695" ], - "LPTokenSupply": "10362973952340711194218404", + "LPTokenSupply": "7164612024670378300306588", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "5181307809095220224", - "6880643975475411968" - ], - "expectedQty": "11879147028261219837", + "type": "redeem", + "inputIndex": 0, + "inputQty": "87805055768727184", + "expectedQty": "88969485751219743", + "swapFee": "52683033461236", "reserves": [ - "6216978931717576483876745", - "4309825016298090591869285" + "4876844819572703730429395", + "2373137526172866387909695" ], - "LPTokenSupply": "10362985831487739455438241" + "LPTokenSupply": "7164611936870590834925527" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "66666809300894332485632", - "expectedQty": "67575244553708993131899", - "swapFee": "40000085580536599491", + "type": "mintMulti", + "inputQtys": [ + "3688004792432911712256", + "25427615500326431358976" + ], + "expectedQty": "28864393724728912308161", "reserves": [ - "6216978931717576483876745", - "4242249771744381598737386" + "4880532824365136642141651", + "2398565141673192819268671" ], - "LPTokenSupply": "10296323022195403176612558" + "LPTokenSupply": "7193476330595319747233688" }, { - "type": "redeemMasset", - "inputQty": "1969237254052015557836", - "expectedQtys": [ - "1188323333456753552070", - "810870431681309145520" - ], - "redemptionFee": "1181542352431209334", + "type": "mint", + "inputIndex": 1, + "inputQty": "498612680130222882816", + "expectedQty": "494655247350666213427", "reserves": [ - "6215790608384119730324675", - "4241438901312700289591866" - ], - "LPTokenSupply": "10294353903095586404175655" + "4880532824365136642141651", + "2399063754353323042151487" + ] }, { - "type": "redeemMasset", - "inputQty": "41853039572350232166", - "expectedQtys": [ - "25255945435271837744", - "17233777037808004902" - ], - "redemptionFee": "25111823743410139", + "type": "redeem", + "inputIndex": 1, + "inputQty": "429615958320219904", + "expectedQty": "432793561745768863", + "swapFee": "257769574992131", "reserves": [ - "6215765352438684458486931", - "4241421667535662481586964" + "4880532824365136642141651", + "2399063321559761296382624" ], - "LPTokenSupply": "10294312052567196428284502" + "LPTokenSupply": "7193970556252489050726424" }, { "type": "mintMulti", "inputQtys": [ - "9098361942704876683264", - "9833082112376798445568" + "95353935852204949504", + "96204938284587155456" ], - "expectedQty": "18642273073688509407268", + "expectedQty": "189494362181177745154", "reserves": [ - "6224863714381389335170195", - "4251254749648039280032532" + "4880628178300988847091155", + "2399159526498045883538080" ], - "LPTokenSupply": "10312954325640884937691770" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "24839735603106324480", - "expectedQty": "24491818217102558749", - "reserves": [ - "6224863714381389335170195", - "4251279589383642386357012" - ] + "LPTokenSupply": "7194160050614670228471578" }, { "type": "mintMulti", "inputQtys": [ - "72498459733806489600", - "43597190581877948416" + "9134389756069534720", + "41210072998407700480" ], - "expectedQty": "114278198538784428883", + "expectedQty": "49892727140686881170", "reserves": [ - "6224936212841123141659795", - "4251323186574224264305428" + "4880637312690744916625875", + "2399200736571044291238560" ], - "LPTokenSupply": "10313093095657640824679402" + "LPTokenSupply": "7194209943341810915352748" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1062752139772736700416", - "expectedQty": "1047866099154230905616", + "inputIndex": 0, + "inputQty": "87722859775125", + "expectedQty": "86526113297535", "reserves": [ - "6224936212841123141659795", - "4252385938713997001005844" + "4880637312778467776401000", + "2399200736571044291238560" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7117901815741079879680", - "2840959926863867150336" + "88347733872289021952", + "114948283168351207424" ], - "expectedQty": "9800585506441371108073", + "expectedQty": "201178301135170225242", + "swapFee": "120779448350112202", "reserves": [ - "6232054114656864221539475", - "4255226898640860868156180" + "4880548965044595487379048", + "2399085788287875940031136" ], - "LPTokenSupply": "10323941547263236426693091" + "LPTokenSupply": "7194008656425698343324058" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "10598714685221967872", - "outputIndex": 1, - "expectedQty": "10561866945615344302", - "swapFee": "8337824915068569", + "type": "redeemMasset", + "inputQty": "55134673009059083059", + "expectedQtys": [ + "37381942621024642914", + "18375491757795239878" + ], + "redemptionFee": "33080803805435449", "reserves": [ - "6232064713371549443507347", - "4255216336773915252811878" + "4880511583101974462736134", + "2399067412796118144791258" ], - "LPTokenSupply": "10323941548097018918199947", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7193953525060769664784543" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2643012008394157457408", - "25740852398239097290752" + "75742252641820046524416", + "61312215059337343664128" ], - "expectedQty": "27979666402111983739919", - "swapFee": "16797878568408235185", + "expectedQty": "135533584770239716893727", "reserves": [ - "6229421701363155286049939", - "4229475484375676155521126" + "4956253835743794509260550", + "2460379627855455488455386" ], - "LPTokenSupply": "10295946763604195367048360" + "LPTokenSupply": "7329487109831009381678270" }, { - "type": "redeemMasset", - "inputQty": "3853521239904073705062", - "expectedQtys": [ - "2330121383108333442549", - "1582039511519933468558" - ], - "redemptionFee": "2312112743942444223", + "type": "redeem", + "inputIndex": 1, + "inputQty": "46070802324086800384", + "expectedQty": "46415003440868706483", + "swapFee": "27642481394452080", "reserves": [ - "6227091579980046952607390", - "4227893444864156222052568" + "4956253835743794509260550", + "2460333212852014619748903" ], - "LPTokenSupply": "10292093473575565687587720" + "LPTokenSupply": "7329441041792933434323094" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "80547190708894236672", - "expectedQty": "79421055689369501112", + "inputIndex": 0, + "inputQty": "150433173793919201181696", + "expectedQty": "148377965411947601956856", "reserves": [ - "6227091579980046952607390", - "4227973992054865116289240" + "5106687009537713710442246", + "2460333212852014619748903" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "24661395606092120064000", - "expectedQty": "24316270110621953377497", + "inputIndex": 0, + "inputQty": "318102601006352011624448", + "expectedQty": "313702002005405801623372", "reserves": [ - "6227091579980046952607390", - "4252635387660957236353240" + "5424789610544065722066694", + "2460333212852014619748903" ] }, { - "type": "redeemMasset", - "inputQty": "2307457088395145956556", - "expectedQtys": [ - "1391958555767668311125", - "950603044195793201759" - ], - "redemptionFee": "1384474253037087573", - "reserves": [ - "6225699621424279284296265", - "4251684784616761443151481" - ], - "LPTokenSupply": "10314181846100907168218530" - }, - { - "type": "mintMulti", - "inputQtys": [ - "3415086700188846784512", - "10384440711780637868032" - ], - "expectedQty": "13597172356665135070280", + "type": "mint", + "inputIndex": 0, + "inputQty": "491905023618494234624", + "expectedQty": "485043046855652151709", "reserves": [ - "6229114708124468131080777", - "4262069225328542081019513" - ], - "LPTokenSupply": "10327779018457572303288810" + "5425281515567684216301318", + "2460333212852014619748903" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8607389207009976909824", - "5062171703317797797888" + "35748877609450840064", + "93784362803939065856" ], - "expectedQty": "13455361711626692115784", + "expectedQty": "128351237113839527494", + "swapFee": "77056976454176222", "reserves": [ - "6237722097331478107990601", - "4267131397031859878817401" + "5425245766690074765461254", + "2460239428489210680683047" ], - "LPTokenSupply": "10341234380169198995404594" + "LPTokenSupply": "7791877631668749841768936" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3034444818114744942592", - "expectedQty": "3075728120060052253046", - "swapFee": "1820666890868846965", + "inputQty": "135469933269547328", + "expectedQty": "136382303935798689", + "swapFee": "81281959961728", "reserves": [ - "6237722097331478107990601", - "4264055668911799826564355" + "5425245766690074765461254", + "2460239292106906744884358" ], - "LPTokenSupply": "10338200117417773337346698" + "LPTokenSupply": "7791877496206944768217780" }, { "type": "swap", "inputIndex": 1, - "inputQty": "192873366924284256", + "inputQty": "390395759327217392287744", "outputIndex": 0, - "expectedQty": "193389645274793338", + "expectedQty": "392525829856796680850167", "swapFee": "0", "reserves": [ - "6237721903941832833197263", - "4264055861785166750848611" + "5032719936833278084611087", + "2850635051434124137172102" ], - "LPTokenSupply": "10338200117417773337346698", + "LPTokenSupply": "7791877496206944768217780", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "87646138304970240", - "expectedQty": "86417976426584126", + "type": "redeemMasset", + "inputQty": "57553128045620652", + "expectedQtys": [ + "37150864578949479", + "21043006185333884" + ], + "redemptionFee": "34531876827372", "reserves": [ - "6237721903941832833197263", - "4264055949431305055818851" - ] + "5032719899682413505661608", + "2850635030391117951838218" + ], + "LPTokenSupply": "7791877438657269910279865" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "605500469393683", - "214313609506153" + "4411638002468701184", + "10812912601834981376" ], - "expectedQty": "806732434081728", - "swapFee": "484330058484", + "expectedQty": "15070425386901233607", "reserves": [ - "6237721903336332363803580", - "4264055949216991446312698" + "5032724311320415974362792", + "2850645843303719786819594" ], - "LPTokenSupply": "10338200203028581432796459" + "LPTokenSupply": "7791892509082656811513472" }, { - "type": "mintMulti", - "inputQtys": [ - "1162514706163462569984", - "922335725545850667008" - ], - "expectedQty": "2052575979063214458792", + "type": "redeem", + "inputIndex": 0, + "inputQty": "815438884455250816", + "expectedQty": "825800124468045350", + "swapFee": "489263330673150", "reserves": [ - "6238884418042495826373564", - "4264978284942537296979706" + "5032723485520291506317442", + "2850645843303719786819594" ], - "LPTokenSupply": "10340252779007644647255251" + "LPTokenSupply": "7791891693692698689329971" }, { - "type": "redeemBassets", - "inputQtys": [ - "190355805923670917120", - "2611549832093661396992" + "type": "redeemMasset", + "inputQty": "223732707366261227520", + "expectedQtys": [ + "144420546918230495376", + "81802990556621490819" ], - "expectedQty": "2762145203952802469116", - "swapFee": "1658282091626657475", + "redemptionFee": "134239624419756736", "reserves": [ - "6238694062236572155456444", - "4262366735110443635582714" + "5032579064973373275822066", + "2850564040313163165328775" ], - "LPTokenSupply": "10337489141349809380794406" + "LPTokenSupply": "7791667974409294870078124" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "27836796224037634179072", - "122034386432298644930560" + "175181283289703286571008", + "71522393687227273052160" ], - "expectedQty": "147703905115838138250316", - "swapFee": "88675548398542008155", + "expectedQty": "243765063267019022877147", "reserves": [ - "6210857266012534521277372", - "4140332348678144990652154" + "5207760348263076562393074", + "2922086434000390438380935" ], - "LPTokenSupply": "10189705428240412554736749" + "LPTokenSupply": "8035433037676313892955271" }, { "type": "redeemBassets", "inputQtys": [ - "12013016792301484", - "18884445046259956" + "3704433821475548160", + "40672245439627141120" ], - "expectedQty": "30433905091409776", - "swapFee": "18271305838348", + "expectedQty": "43968513077199029068", + "swapFee": "26396946013927774", "reserves": [ - "6210857253999517728975888", - "4140332329793699944392198" + "5207756643829255086844914", + "2922045761754950811239815" ], - "LPTokenSupply": "10189705397790063288072458" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "121583766881083072", - "expectedQty": "119893360733513784", - "reserves": [ - "6210857253999517728975888", - "4140332451377466825475270" - ] + "LPTokenSupply": "8035389045405985281391205" }, { "type": "redeemMasset", - "inputQty": "14641245804202049509785", + "inputQty": "6150959507073949866393", "expectedQtys": [ - "8918817795104745079011", - "5945535251388321505641" + "3984061062612591742677", + "2235436395895026544070" ], - "redemptionFee": "8784747482521229705", + "redemptionFee": "3690575704244369919", "reserves": [ - "6201938436204412983896877", - "4134386916126078503969629" + "5203772582766642495102237", + "2919810325359055784695745" ], - "LPTokenSupply": "10175065150353970224199427" + "LPTokenSupply": "8029238454956481755961803" }, { "type": "redeemMasset", - "inputQty": "3056393769674611507", + "inputQty": "1620162260444214040985", "expectedQtys": [ - "1861825194904412754", - "1241145136332176244" + "1049401811171913667035", + "588814018094774191998" ], - "redemptionFee": "1833836261804766", + "redemptionFee": "972097356266528424", "reserves": [ - "6201936574379218079484123", - "4134385674980942171793385" + "5202723180955470581435202", + "2919221511340961010503747" ], - "LPTokenSupply": "10175062094143584175768396" + "LPTokenSupply": "8027618389905773168573660" }, { - "type": "mintMulti", - "inputQtys": [ - "635853445500885401600", - "22194277669707710464000" - ], - "expectedQty": "22510631541729765629961", + "type": "mint", + "inputIndex": 0, + "inputQty": "107202523761849843712", + "expectedQty": "105790429665071035816", "reserves": [ - "6202572427824718964885723", - "4156579952650649882257385" - ], - "LPTokenSupply": "10197572725685313941398357" + "5202830383479232431278914", + "2919221511340961010503747" + ] }, { "type": "redeemMasset", - "inputQty": "301454359267795953254", + "inputQty": "10787971406473655117414", "expectedQtys": [ - "183246608954013766161", - "122800529946668008324" + "6987572985612542373783", + "3920610872965726139132" ], - "redemptionFee": "180872615560677571", + "redemptionFee": "6472782843884193070", "reserves": [ - "6202389181215764951119562", - "4156457152120703214249061" + "5195842810493619888905131", + "2915300900467995284364615" ], - "LPTokenSupply": "10197271289413307701512860" + "LPTokenSupply": "8016936856207248972911369" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "7946483616053978988544", - "expectedQty": "8053859879876430766994", - "swapFee": "4767890169632387393", + "inputIndex": 0, + "inputQty": "34970448666611957760", + "expectedQty": "35415999593683272139", + "swapFee": "20982269199967174", "reserves": [ - "6202389181215764951119562", - "4148403292240826783482067" + "5195807394494026205632992", + "2915300900467995284364615" ], - "LPTokenSupply": "10189325282586270685763055" + "LPTokenSupply": "8016901887856809280950326" }, { - "type": "redeemMasset", - "inputQty": "23430747436040186757120", - "expectedQtys": [ - "14254076144243647289624", - "9533690111500073635058" + "type": "mintMulti", + "inputQtys": [ + "64751070974123444273152", + "45884363081454308032512" ], - "redemptionFee": "14058448461624112054", + "expectedQty": "109376900546624609758494", "reserves": [ - "6188135105071521303829938", - "4138869602129326709847009" + "5260558465468149649906144", + "2961185263549449592397127" ], - "LPTokenSupply": "10165895940995076661417140" + "LPTokenSupply": "8126278788403433890708820" }, { "type": "redeemBassets", "inputQtys": [ - "50004155202959", - "49335347233855" + "661500296191353421824", + "589630004796101885952" ], - "expectedQty": "97816420625356", - "swapFee": "58725087427", + "expectedQty": "1237201635497306314278", + "swapFee": "742766641283153680", "reserves": [ - "6188135105021517148626979", - "4138869602079991362613154" + "5259896965171958296484320", + "2960595633544653490511175" ], - "LPTokenSupply": "10165895940897207388213098" + "LPTokenSupply": "8125040918277959429556229" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "469884416043997594648576", - "outputIndex": 1, - "expectedQty": "467791141983763513788979", - "swapFee": "369576488083839883488", + "type": "mint", + "inputIndex": 1, + "inputQty": "1734604004656502013952", + "expectedQty": "1719238853322687541721", "reserves": [ - "6658019521065514743275555", - "3671078460096227848824175" - ], - "LPTokenSupply": "10165932898546015772201446", - "hardLimitError": false, - "insufficientLiquidityError": false + "5259896965171958296484320", + "2962330237549309992525127" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "19163566434425310806016", - "2814064135436566003712" - ], - "expectedQty": "21607995077936863173266", + "type": "redeem", + "inputIndex": 0, + "inputQty": "44220475649070821539840", + "expectedQty": "44782640858744812989479", + "swapFee": "26532285389442492923", "reserves": [ - "6677183087499940054081571", - "3673892524231664414827887" + "5215114324313213483494841", + "2962330237549309992525127" ], - "LPTokenSupply": "10187540893623952635374712" + "LPTokenSupply": "8082542334710750239807402" }, { - "type": "mintMulti", - "inputQtys": [ - "39474935112510", - "109145388222547" + "type": "redeemMasset", + "inputQty": "654395014080462061568", + "expectedQtys": [ + "421983210673180986365", + "239698220782518753555" ], - "expectedQty": "146526385515538", + "redemptionFee": "392637008448277236", "reserves": [ - "6677183087539414989194081", - "3673892524340809803050434" + "5214692341102540302508476", + "2962090539328527473771572" ], - "LPTokenSupply": "10187540893770479020890250" + "LPTokenSupply": "8081887978960370622573557" }, { "type": "swap", "inputIndex": 0, - "inputQty": "15911552849267541409792", + "inputQty": "34217375605289161588736", "outputIndex": 1, - "expectedQty": "15825733812736085831930", - "swapFee": "12507727732144411154", + "expectedQty": "34041489570462708162651", + "swapFee": "27014065458902278200", "reserves": [ - "6693094640388682530603873", - "3658066790528073717218504" + "5248909716707829464097212", + "2928049049758064765608921" ], - "LPTokenSupply": "10187542144543252235331365", + "LPTokenSupply": "8081890680366916512801377", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "325290622514903488921", - "expectedQtys": [ - "213583862593922911007", - "116732853295223786049" - ], - "redemptionFee": "195174373508942093", + "type": "swap", + "inputIndex": 1, + "inputQty": "10183792119681388642304", + "outputIndex": 0, + "expectedQty": "10228843597577185826231", + "swapFee": "0", "reserves": [ - "6692881056526088607692866", - "3657950057674778493432455" + "5238680873110252278270981", + "2938232841877746154251225" ], - "LPTokenSupply": "10187216873438174682736653" + "LPTokenSupply": "8081890680366916512801377", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1984515349734947328", - "1163373025096573184" - ], - "expectedQty": "3098362849979213344", - "swapFee": "1860133790261685", + "type": "mint", + "inputIndex": 1, + "inputQty": "54447068411641617973248", + "expectedQty": "53962689865474028027496", "reserves": [ - "6692879072010738872745538", - "3657948894301753396859271" - ], - "LPTokenSupply": "10187213773401204292287791" + "5238680873110252278270981", + "2992679910289387772224473" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "66196057921783144448", - "expectedQty": "67329360392354649544", - "swapFee": "39717634753069886", + "type": "mintMulti", + "inputQtys": [ + "20580770203011131637760", + "9794654457588453736448" + ], + "expectedQty": "30017774881431952235426", "reserves": [ - "6692811742650346518095994", - "3657948894301753396859271" + "5259261643313263409908741", + "3002474564746976225960921" ], - "LPTokenSupply": "10187147581315045984450331" + "LPTokenSupply": "8165871145113822493064299" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "31721333416745324", - "expectedQty": "31168681024376453", + "type": "redeemMasset", + "inputQty": "1262008511631914224844", + "expectedQtys": [ + "812313897820251603042", + "463744149313566596094" + ], + "redemptionFee": "757205106979148534", "reserves": [ - "6692811774371679934841318", - "3657948894301753396859271" - ] + "5258449329415443158305699", + "3002010820597662659364827" + ], + "LPTokenSupply": "8164609212322701276754308" }, { "type": "mint", "inputIndex": 1, - "inputQty": "14536821055581897883648", - "expectedQty": "14349818731571356853713", + "inputQty": "351722553594360758272", + "expectedQty": "348575448271876404206", "reserves": [ - "6692811774371679934841318", - "3672485715357335294742919" + "5258449329415443158305699", + "3002362543151257020123099" ] }, { - "type": "redeemMasset", - "inputQty": "150445230413500121088", - "expectedQtys": [ - "98642133209256577613", - "54127000333485291116" + "type": "redeemBassets", + "inputQtys": [ + "8148406043911272792064", + "14776487509235653935104" ], - "redemptionFee": "90267138248100072", + "expectedQty": "22685870826169265776315", + "swapFee": "13619694312288932825", "reserves": [ - "6692713132238470678263705", - "3672431588357001809451803" + "5250300923371531885513635", + "2987586055642021366187995" ], - "LPTokenSupply": "10201346995011598690369416" + "LPTokenSupply": "8142259659219922827342655" }, { "type": "mint", "inputIndex": 0, - "inputQty": "31689500350816578437120", - "expectedQty": "31137577770489079342893", + "inputQty": "10015326350482144755712", + "expectedQty": "9883766829307628280503", "reserves": [ - "6724402632589287256700825", - "3672431588357001809451803" + "5260316249722014030269347", + "2987586055642021366187995" ] }, { "type": "redeemBassets", "inputQtys": [ - "9937212115389622779904", - "16541845061519252914176" + "193203232683857739776", + "667682882935738073088" ], - "expectedQty": "26093502312564244338524", - "swapFee": "15665500687951317393", + "expectedQty": "852393525857585578774", + "swapFee": "511743161411398186", "reserves": [ - "6714465420473897633920921", - "3655889743295482556537627" + "5260123046489330172529571", + "2986918372759085628114907" ], - "LPTokenSupply": "10206376971518904369188130" + "LPTokenSupply": "8151290571954527599786015" }, { "type": "redeemBassets", "inputQtys": [ - "383025273997148094464", - "1899151762781241868288" + "8847452340736058458112", + "4149312580570665451520" ], - "expectedQty": "2251136998374027678995", - "swapFee": "1351493094881345414", + "expectedQty": "12843513244990675657245", + "swapFee": "7710734387626981583", "reserves": [ - "6714082395199900485826457", - "3653990591532701314669339" + "5251275594148594114071459", + "2982769060178514962663387" ], - "LPTokenSupply": "10204124618176744948298261" + "LPTokenSupply": "8138440119048588059845344" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1884199737342256128", - "expectedQty": "1916489577944634894", - "swapFee": "1130519842405353", + "type": "mint", + "inputIndex": 1, + "inputQty": "2106339230757680840704", + "expectedQty": "2087547215632982559665", + "reserves": [ + "5251275594148594114071459", + "2984875399409272643504091" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "103773991647232442368", + "109722686051785670656" + ], + "expectedQty": "211154237450430492636", "reserves": [ - "6714080478710322541191563", - "3653990591532701314669339" + "5251379368140241346513827", + "2984985122095324429174747" ], - "LPTokenSupply": "10204122734090059590282668" + "LPTokenSupply": "8140738820501671472897645" }, { "type": "mintMulti", "inputQtys": [ - "63831837639776357318656", - "1802656431692794560512" + "269237859466392146804736", + "16559818416538456686592" ], - "expectedQty": "64497309339263346247507", + "expectedQty": "282094460543751771001301", "reserves": [ - "6777912316350098898510219", - "3655793247964394109229851" + "5520617227606633493318563", + "3001544940511862885861339" ], - "LPTokenSupply": "10268620043429322936530175" + "LPTokenSupply": "8422833281045423243898946" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "13429645803773375807488", - "outputIndex": 1, - "expectedQty": "13354622676843992958669", - "swapFee": "10555992295024980357", + "type": "redeem", + "inputIndex": 1, + "inputQty": "35473308291946468343808", + "expectedQty": "35759920424657614413104", + "swapFee": "21283984975167881006", "reserves": [ - "6791341962153872274317707", - "3642438625287550116271182" + "5520617227606633493318563", + "2965785020087205271448235" ], - "LPTokenSupply": "10268621099028552439028210", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8387362101151974292343238" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1377465365233016832", - "2358675024361145856" + "2281352357756092284928", + "19113705002461441294336" ], - "expectedQty": "3682015927559031730", - "swapFee": "2210535878062256", + "expectedQty": "21200417601694975794747", "reserves": [ - "6791340584688507041300875", - "3642436266612525755125326" + "5522898579964389585603491", + "2984898725089666712742571" ], - "LPTokenSupply": "10268617415023142589740448" + "LPTokenSupply": "8408562518753669268137985" }, { - "type": "redeemMasset", - "inputQty": "293657807480049473945", - "expectedQtys": [ - "194099507974885665081", - "104102434322515704998" + "type": "redeemBassets", + "inputQtys": [ + "5457918557622868992", + "828195354376851456" ], - "redemptionFee": "176194684488029684", + "expectedQty": "6206318734357918153", + "swapFee": "3726026856728788", "reserves": [ - "6791146485180532155635794", - "3642332164178203239420328" + "5522893122045831962734499", + "2984897896894312335891115" ], - "LPTokenSupply": "10268323774835130989069471" + "LPTokenSupply": "8408556309081510739163921" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4563710437614591410176", - "expectedQty": "4642158478281955354912", - "swapFee": "2738226262568754846", + "type": "mint", + "inputIndex": 1, + "inputQty": "1480351979023768223744", + "expectedQty": "1467600133437642820480", "reserves": [ - "6786504326702250200280882", - "3642332164178203239420328" - ], - "LPTokenSupply": "10263760338220142654534779" + "5522893122045831962734499", + "2986378248873336104114859" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4203360211617616232448", - "expectedQty": "4129847528916180849284", + "inputIndex": 1, + "inputQty": "232976187401753266749440", + "expectedQty": "230913876625028455916360", "reserves": [ - "6790707686913867816513330", - "3642332164178203239420328" + "5522893122045831962734499", + "3219354436275089370864299" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "86058090626520985894912", - "outputIndex": 1, - "expectedQty": "85558925957535809826260", - "swapFee": "67640817711566852597", + "type": "redeemMasset", + "inputQty": "36662952659903892684", + "expectedQtys": [ + "23419226333216328832", + "13651321603348730482" + ], + "redemptionFee": "21997771595942335", "reserves": [ - "6876765777540388802408242", - "3556773238220667429594068" + "5522869702819498746405667", + "3219340784953486022133817" ], - "LPTokenSupply": "10267896949830829992069322", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8640901125087094093602310" }, { - "type": "redeemBassets", - "inputQtys": [ - "63322356526857595125760", - "133009338029735623524352" + "type": "redeemMasset", + "inputQty": "2065596739190854464307", + "expectedQtys": [ + "1319443038530953264115", + "769117689884504322333" ], - "expectedQty": "193563793448028963456667", - "swapFee": "116208000869338981462", + "redemptionFee": "1239358043514512678", "reserves": [ - "6813443421013531207282482", - "3423763900190931806069716" + "5521550259780967793141552", + "3218571667263601517811484" ], - "LPTokenSupply": "10074228569182018623529338" + "LPTokenSupply": "8638835652283707590589270" }, { "type": "swap", "inputIndex": 1, - "inputQty": "39868744768760854872064", + "inputQty": "22823250777918253563904", "outputIndex": 0, - "expectedQty": "40085602146321073189471", + "expectedQty": "22914121749443270289122", "swapFee": "0", "reserves": [ - "6773357818867210134093011", - "3463632644959692660941780" + "5498636138031524522852430", + "3241394918041519771375388" ], - "LPTokenSupply": "10074228569182018623529338", + "LPTokenSupply": "8638835652283707590589270", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "8222295558208323846144", - "11049119321210188988416" - ], - "expectedQty": "18988736722506854144533", + "type": "swap", + "inputIndex": 1, + "inputQty": "3085486308712298053632", + "outputIndex": 0, + "expectedQty": "3097591181812573627449", + "swapFee": "0", "reserves": [ - "6781580114425418457939155", - "3474681764280902849930196" + "5495538546849711949224981", + "3244480404350232069429020" ], - "LPTokenSupply": "10093217305904525477673871" + "LPTokenSupply": "8638835652283707590589270", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "4037749312668545843", - "expectedQtys": [ - "2711314957773809828", - "1389197868644055766" - ], - "redemptionFee": "2422649587601127", + "type": "mint", + "inputIndex": 0, + "inputQty": "115732667724278857203712", + "expectedQty": "114222717493972534481472", "reserves": [ - "6781577403110460684129327", - "3474680375083034205874430" - ], - "LPTokenSupply": "10093213268397477767888140" + "5611271214573990806428693", + "3244480404350232069429020" + ] }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "6340236749459814350848", + "expectedQty": "6257283328987776641516", + "reserves": [ + "5617611451323450620779541", + "3244480404350232069429020" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "5804561440987778048", - "4782720131557010432" + "8424468884472752766976", + "9847947849225698541568" ], - "expectedQty": "10425227393332408734", - "swapFee": "6258891771062082", + "expectedQty": "18073322754548879603041", "reserves": [ - "6781571598549019696351279", - "3474675592362902648863998" + "5626035920207923373546517", + "3254328352199457767970588" ], - "LPTokenSupply": "10093202837537081841523531" + "LPTokenSupply": "8777388975861216781315299" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "546081636378422935552", - "expectedQty": "552628357968441574883", - "swapFee": "327648981827053761", + "inputQty": "2122604686669127090176", + "expectedQty": "2103434851905600094777", "reserves": [ - "6781571598549019696351279", - "3474122964004934207289115" - ], - "LPTokenSupply": "10092656788665601601293355" + "5626035920207923373546517", + "3256450956886126895060764" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "16931106839389506895872", - "expectedQty": "16720214499338586032722", + "inputIndex": 0, + "inputQty": "1139503696450910208", + "expectedQty": "1124601049074355351", "reserves": [ - "6781571598549019696351279", - "3491054070844323714184987" + "5626037059711619824456725", + "3256450956886126895060764" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1648227455660837830656", - "2370945058044871966720" - ], - "expectedQty": "3960503961293564505196", + "type": "redeem", + "inputIndex": 0, + "inputQty": "12895228656322689024", + "expectedQty": "13058270026549431247", + "swapFee": "7737137193793613", "reserves": [ - "6783219826004680534181935", - "3493425015902368586151707" + "5626024001441593275025478", + "3256450956886126895060764" ], - "LPTokenSupply": "10113337507126233751831273" + "LPTokenSupply": "8779480640859228852455764" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4626602949274656833536", - "expectedQty": "4544937834957435230424", + "inputQty": "93146523980957827072", + "expectedQty": "91928333944421831452", "reserves": [ - "6787846428953955191015471", - "3493425015902368586151707" + "5626117147965574232852550", + "3256450956886126895060764" ] }, { "type": "redeemMasset", - "inputQty": "4939511644754396774", + "inputQty": "795718114289851084", "expectedQtys": [ - "3311812473905844415", - "1704453491311989198" - ], - "redemptionFee": "2963706986852638", - "reserves": [ - "6787843117141481285171056", - "3493423311448877274162509" + "509605360681866687", + "294964505854068109" ], - "LPTokenSupply": "10117877505745917131350186" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "23881725303528477425664", - "expectedQty": "24168215917775846105913", - "swapFee": "14329035182117086455", + "redemptionFee": "477430868573910", "reserves": [ - "6787843117141481285171056", - "3469255095531101428056596" + "5626116638360213550985863", + "3256450661921621040992655" ], - "LPTokenSupply": "10093997213345906865633167" + "LPTokenSupply": "8779571773522802071293523" }, { "type": "redeemBassets", "inputQtys": [ - "92106082451604439040", - "62491022128752369664" + "23927340097154", + "45894425545205" ], - "expectedQty": "152192421119285652066", - "swapFee": "91370274836473275", + "expectedQty": "69094269536695", + "swapFee": "41481450592", "reserves": [ - "6787751011059029680732016", - "3469192604508972675686932" + "5626116638336286210888709", + "3256450661875726615447450" ], - "LPTokenSupply": "10093844938691540227155152" + "LPTokenSupply": "8779571773453670468451294" }, { "type": "mintMulti", "inputQtys": [ - "780749227180181815296", - "530331941819581923328" + "386534999661813628928", + "442490700986430521344" ], - "expectedQty": "1290689844069524946877", + "expectedQty": "819973400735513832502", "reserves": [ - "6788531760286209862547312", - "3469722936450792257610260" + "5626503173335948024517637", + "3256893152576713045968794" ], - "LPTokenSupply": "10095135628535609752102029" + "LPTokenSupply": "8780391746854405982283796" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "106179024952227233792", - "expectedQty": "104301934798504798632", + "inputQty": "6233217040651387904", + "expectedQty": "6312025862800441519", + "swapFee": "3739930224390832", "reserves": [ - "6788637939311162089781104", - "3469722936450792257610260" - ] + "5626496861310085224076118", + "3256893152576713045968794" + ], + "LPTokenSupply": "8780385514011358353334975" }, { - "type": "redeemMasset", - "inputQty": "4120465830131541842329", - "expectedQtys": [ - "2769183045099390793027", - "1415349885014924152494" + "type": "redeem", + "inputIndex": 1, + "inputQty": "1172296546966425174016", + "expectedQty": "1182271962743312707902", + "swapFee": "703377928179855104", + "reserves": [ + "5626496861310085224076118", + "3255710880613969733260892" ], - "redemptionFee": "2472279498078925105", + "LPTokenSupply": "8779213287802184746146469" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "60592893366136203116544", + "expectedQty": "61357927885013266020447", + "swapFee": "36355736019681721869", "reserves": [ - "6785868756266062698988077", - "3468307586565777333457766" + "5565138933425071958055671", + "3255710880613969733260892" ], - "LPTokenSupply": "10091119711868226522950842" + "LPTokenSupply": "8718624030009650511202111" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "8015334863579635515392", - "expectedQty": "7873616440008384510145", + "inputQty": "6359806722444539985920", + "outputIndex": 1, + "expectedQty": "6329312160071282902137", + "swapFee": "5021458687780031134", "reserves": [ - "6793884091129642334503469", - "3468307586565777333457766" - ] + "5571498740147516498041591", + "3249381568453898450358755" + ], + "LPTokenSupply": "8718624532155519289205224", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "35454141804042556", + "58250642207144784" + ], + "expectedQty": "92712868641613093", + "reserves": [ + "5571498775601658302084147", + "3249381626704540657503539" + ], + "LPTokenSupply": "8718624624868387930818317" }, { "type": "redeemMasset", - "inputQty": "3671838213172437503180", + "inputQty": "9545181012972606259", "expectedQtys": [ - "2468669379734853204699", - "1260266531428765189699" + "6096036707037307554", + "3555300013401582772" ], - "redemptionFee": "2203102927903462501", + "redemptionFee": "5727108607783563", "reserves": [ - "6791415421749907481298770", - "3467047320034348568268067" + "5571492679564951264776593", + "3249378071404527255920767" ], - "LPTokenSupply": "10095321710405355260304057" + "LPTokenSupply": "8718615080260085818990414" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "62371102669885482729472", - "389478136820853637120" + "5971069461875292160", + "114668303758761232" ], - "expectedQty": "61651816751357149027717", + "expectedQty": "6006731920545163200", + "swapFee": "3606202874051528", "reserves": [ - "6853786524419792964028242", - "3467436798171169421905187" + "5571486708495489389484433", + "3249377956736223497159535" ], - "LPTokenSupply": "10156973527156712409331774" + "LPTokenSupply": "8718609070282582687180837" }, { "type": "mint", "inputIndex": 1, - "inputQty": "100233624991500878217216", - "expectedQty": "98985438466734402988173", + "inputQty": "31530276788418180546560", + "expectedQty": "31243069152650953251363", "reserves": [ - "6853786524419792964028242", - "3567670423162670300122403" + "5571486708495489389484433", + "3280908233524641677706095" ] }, { "type": "redeemBassets", "inputQtys": [ - "90842806426634715136", - "230480867877937577984" + "527698453764641664", + "578074100541333120" ], - "expectedQty": "316830820926997687909", - "swapFee": "190212620128275578", + "expectedQty": "1093617905369502621", + "swapFee": "656564682030920", "reserves": [ - "6853695681613366329313106", - "3567439942294792362544419" + "5571486180797035624842769", + "3280907655450541136372975" ], - "LPTokenSupply": "10255641963611161699184016" + "LPTokenSupply": "8749851045226420057101750" }, { - "type": "redeemBassets", - "inputQtys": [ - "727513650929308416", - "864028798750424064" - ], - "expectedQty": "1567883877291005950", - "swapFee": "941295103436665", + "type": "mint", + "inputIndex": 0, + "inputQty": "5099747348922613366784", + "expectedQty": "5033316751173984785559", "reserves": [ - "6853694954099715400004690", - "3567439078265993612120355" - ], - "LPTokenSupply": "10255640394880118815085066" + "5576585928145958238209553", + "3280907655450541136372975" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "324625242375293184", - "456312226987850304" - ], - "expectedQty": "769492475260932990", + "type": "mint", + "inputIndex": 0, + "inputQty": "896259555144067186688", + "expectedQty": "884583042029795791129", "reserves": [ - "6853695278724957775297874", - "3567439534578220599970659" - ], - "LPTokenSupply": "10255641164372594076018056" + "5577482187701102305396241", + "3280907655450541136372975" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "8345201511483392000", - "22983972411243925504" + "type": "redeem", + "inputIndex": 0, + "inputQty": "199064253574527713280", + "expectedQty": "201570932883399195728", + "swapFee": "119438552144716627", + "reserves": [ + "5577280616768218906200513", + "3280907655450541136372975" ], - "expectedQty": "30893714228858492514", - "swapFee": "18547356951485987", + "LPTokenSupply": "8755569892709904524436820" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "147799106607355432796160", + "expectedQty": "149051361076016238166418", + "swapFee": "88679463964413259677", "reserves": [ - "6853686933523446291905874", - "3567416550605809356045155" + "5577280616768218906200513", + "3131856294374524898206557" ], - "LPTokenSupply": "10255610253965743961188152" + "LPTokenSupply": "8607779654048945532966627" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "25074934742548897333248", - "49803899817581999030272" + "187107922807157925347328", + "183862602293374688952320" ], - "expectedQty": "73813399552526569473057", - "swapFee": "44314628508621114352", + "expectedQty": "366865832426423915534577", "reserves": [ - "6828611998780897394572626", - "3517612650788227357014883" + "5764388539575376831547841", + "3315718896667899587158877" ], - "LPTokenSupply": "10181756971247559632712177" + "LPTokenSupply": "8974645486475369448501204" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "52204503680874304", - "expectedQty": "53110836647787497", - "swapFee": "31322702208524", + "inputQty": "68969225050489495552", + "expectedQty": "69843684593582252406", + "swapFee": "41381535030293697", "reserves": [ - "6828611945670060746785129", - "3517612650788227357014883" + "5764318695890783249295435", + "3315718896667899587158877" ], - "LPTokenSupply": "10181756919046188222058725" + "LPTokenSupply": "8974576521388472462035021" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "57657711713626", - "expectedQty": "58351523325295", - "swapFee": "34594627028", + "type": "mint", + "inputIndex": 0, + "inputQty": "19634861037399192895488", + "expectedQty": "19377281914201782181730", "reserves": [ - "6828611945670060746785129", - "3517612650729875833689588" - ], - "LPTokenSupply": "10181756918988533969807801" + "5783953556928182442190923", + "3315718896667899587158877" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "858663252943289843712", - "1730287894445660045312" + "type": "redeemMasset", + "inputQty": "6934608826858767974", + "expectedQtys": [ + "4456926352241386475", + "2554985060259084155" ], - "expectedQty": "2552194042043023260411", - "swapFee": "1532235766685825451", + "redemptionFee": "4160765296115260", "reserves": [ - "6827753282417117456941417", - "3515882362835430173644276" + "5783949100001830200804448", + "3315716341682839328074722" ], - "LPTokenSupply": "10179203345934300929304483" + "LPTokenSupply": "8993946869109923915060303" }, { "type": "redeemMasset", - "inputQty": "22316329736336778854", + "inputQty": "71234924726804589156761", "expectedQtys": [ - "14959812295471334348", - "7703403744306977041" + "45783233239823742124185", + "26245772914618579701677" ], - "redemptionFee": "13389797841802067", + "redemptionFee": "42740954836082753494", "reserves": [ - "6827738322604821985607069", - "3515874659431685866667235" + "5738165866762006458680263", + "3289470568768220748373045" ], - "LPTokenSupply": "10179181030943544376705835" + "LPTokenSupply": "8922716218478602934178891" }, { "type": "redeemMasset", - "inputQty": "327394046816546099", + "inputQty": "113879118343257766", "expectedQtys": [ - "219469489414012770", - "113013589550508410" + "73191299539468855", + "41957766874529335" ], - "redemptionFee": "196436428089927", + "redemptionFee": "68327471005954", "reserves": [ - "6827738103135332571594299", - "3515874546418096316158825" + "5738165793570706919211408", + "3289470526810453873843710" ], - "LPTokenSupply": "10179180703569141202968728" + "LPTokenSupply": "8922716104606317338021720" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "37985322653768794112", - "expectedQty": "38644850050412040314", - "swapFee": "22791193592261276", + "inputQty": "84585199455959138304", + "outputIndex": 1, + "expectedQty": "84164946610352694553", + "swapFee": "66779779096385035", "reserves": [ - "6827699458285282159553985", - "3515874546418096316158825" + "5738250378770162878349712", + "3289386361863843521149157" ], - "LPTokenSupply": "10179142720525606793400743" + "LPTokenSupply": "8922716111284295247660223", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "226935439406707", + "expectedQtys": [ + "145855928562306", + "83610241892697" + ], + "redemptionFee": "136161263644", + "reserves": [ + "5738250378624306949787406", + "3289386361780233279256460" + ], + "LPTokenSupply": "8922716111057373424379880" + }, + { + "type": "redeemMasset", + "inputQty": "2730978467528355243622", + "expectedQtys": [ + "1755254275429174129258", + "1006179426495740439583" + ], + "redemptionFee": "1638587080517013146", + "reserves": [ + "5736495124348877775658148", + "3288380182353737538816877" + ], + "LPTokenSupply": "8919985296448553120837572" + }, + { + "type": "redeemBassets", "inputQtys": [ - "228536938939009794048", - "19599735086242312192" + "10684306452671102976000", + "4547528639302175031296" ], - "expectedQty": "243856969504056642986", + "expectedQty": "15050663410304064557528", + "swapFee": "9035819537905181843", "reserves": [ - "6827927995224221169348033", - "3515894146153182558471017" + "5725810817896206672682148", + "3283832653714435363785581" ], - "LPTokenSupply": "10179386577495110850043729" + "LPTokenSupply": "8904926500800664941616384" }, { "type": "mint", "inputIndex": 1, - "inputQty": "181554252047115440095232", - "expectedQty": "179257142831748125954347", + "inputQty": "2626182796838083493888", + "expectedQty": "2602545930500295559987", "reserves": [ - "6827927995224221169348033", - "3697448398200297998566249" + "5725810817896206672682148", + "3286458836511273447279469" ] }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "56257481162095750807552", + "expectedQty": "56731543250564681151221", + "swapFee": "33754488697257450484", + "reserves": [ + "5725810817896206672682148", + "3229727293260708766128248" + ], + "LPTokenSupply": "8851274941017939212113867" + }, { "type": "mintMulti", "inputQtys": [ - "428195144417110523904", - "610317295866881638400" + "360362938836353155072", + "2335362725455920365568" ], - "expectedQty": "1023205608931565888745", + "expectedQty": "2670178977388176426544", "reserves": [ - "6828356190368638279871937", - "3698058715496164880204649" + "5726171180835043025837220", + "3232062655986164686493816" ], - "LPTokenSupply": "10359666925935790541886821" + "LPTokenSupply": "8853945119995327388540411" }, { "type": "mint", "inputIndex": 0, - "inputQty": "83952851058629682397184", - "expectedQty": "82483716796376260840894", + "inputQty": "10599115535817375744000", + "expectedQty": "10459326104905570195448", "reserves": [ - "6912309041427267962269121", - "3698058715496164880204649" + "5736770296370860401581220", + "3232062655986164686493816" ] }, { - "type": "redeemMasset", - "inputQty": "209261202346255843328", - "expectedQtys": [ - "138439892661721419847", - "74064809394621934719" + "type": "redeemBassets", + "inputQtys": [ + "17608610757346566144", + "57103848860277744" ], - "redemptionFee": "125556721407753505", + "expectedQty": "17432915052587961718", + "swapFee": "10466028648742022", "reserves": [ - "6912170601534606240849274", - "3697984650686770258269930" + "5736752687760103055015076", + "3232062598882315826216072" ], - "LPTokenSupply": "10441941394085492687659737" + "LPTokenSupply": "8864387003765754586906320" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "722162903152921673728", - "outputIndex": 0, - "expectedQty": "725676966850286598331", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "2619742234718760442265", + "expectedQtys": [ + "1694397594768489384911", + "954616556047778927562" + ], + "redemptionFee": "1571845340831256265", "reserves": [ - "6911444924567755954250943", - "3698706813589923179943658" + "5735058290165334565630165", + "3231107982326268047288510" ], - "LPTokenSupply": "10441941394085492687659737", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8861767418715569909589681" }, { - "type": "redeemBassets", - "inputQtys": [ - "2614954009295275425792", - "238270097829298470912" - ], - "expectedQty": "2804376218700851466426", - "swapFee": "1683635912768171782", + "type": "mint", + "inputIndex": 0, + "inputQty": "71139658013470679040", + "expectedQty": "70201176003527633641", "reserves": [ - "6908829970558460678825151", - "3698468543492093881472746" - ], - "LPTokenSupply": "10439135502594470344838706" + "5735129429823348036309205", + "3231107982326268047288510" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1049183803592078000128", - "264859270155131224064" + "429947262456697520128", + "336216237426535104512" ], - "expectedQty": "1292287670395490778071", - "swapFee": "775838105100354679", + "expectedQty": "757500890864903123783", + "swapFee": "454773398558076720", "reserves": [ - "6907780786754868600825023", - "3698203684221938750248682" + "5734699482560891338789077", + "3230771766088841512183998" ], - "LPTokenSupply": "10437842516669780263741422" + "LPTokenSupply": "8861079709704649831830490" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "29507307108541982048256", - "27551639795990779658240" + "342818661025903738880", + "363931932865186168832" ], - "expectedQty": "56190800235720845136071", + "expectedQty": "698990877911789135411", + "swapFee": "419646314535794958", "reserves": [ - "6937288093863410582873279", - "3725755324017929529906922" + "5734356663899865435050197", + "3230407834155976326015166" ], - "LPTokenSupply": "10494033316905501108877493" + "LPTokenSupply": "8860380341145054960479615" }, { - "type": "redeemBassets", - "inputQtys": [ - "69653602662886195200", - "43459732304163389440" - ], - "expectedQty": "111339155249505711314", - "swapFee": "66843599309289000", + "type": "mint", + "inputIndex": 0, + "inputQty": "313117723592402843729920", + "expectedQty": "308957959953631206758002", "reserves": [ - "6937218440260747696678079", - "3725711864285625366517482" - ], - "LPTokenSupply": "10493921917591012224806078" + "6047474387492268278780117", + "3230407834155976326015166" + ] }, { "type": "mintMulti", "inputQtys": [ - "14245399522697732423680", - "3714357377294646902784" + "61267816574244003840", + "380368059446014509056" ], - "expectedQty": "17662931485153420861025", + "expectedQty": "437560706464583174370", "reserves": [ - "6951463839783445429101759", - "3729426221662920013420266" + "6047535655308842522783957", + "3230788202215422340524222" ], - "LPTokenSupply": "10511584849076165645667103" + "LPTokenSupply": "9169775861805150750411987" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "281387844898762391552", - "expectedQty": "286231258677211912808", - "swapFee": "168832706939257434", + "inputQty": "1654462529354798989312", + "expectedQty": "1675886329372860642392", + "swapFee": "992677517612879393", "reserves": [ - "6951177608524768217188951", - "3729426221662920013420266" + "6045859768979469662141565", + "3230788202215422340524222" ], - "LPTokenSupply": "10511303478114537577201294" + "LPTokenSupply": "9168121498543547712710614" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "20335854803568635904", - "expectedQty": "20685886221524914861", - "swapFee": "12201512882141181", + "type": "redeemMasset", + "inputQty": "1391863987760355763814", + "expectedQtys": [ + "917305194977529926525", + "490189801783076245221" + ], + "redemptionFee": "835118392656213458", "reserves": [ - "6951156922638546692274090", - "3729426221662920013420266" + "6044942463784492132215040", + "3230298012413639264279001" ], - "LPTokenSupply": "10511283143479885296779508" + "LPTokenSupply": "9166729718067626622568145" }, { "type": "mint", "inputIndex": 1, - "inputQty": "117958956126056349696", - "expectedQty": "116454102608251714489", + "inputQty": "44903754063060238598144", + "expectedQty": "44517281066950570048980", "reserves": [ - "6951156922638546692274090", - "3729544180619046069769962" + "6044942463784492132215040", + "3275201766476699502877145" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1823426808015435333632", - "13475625845178331299840" - ], - "expectedQty": "15095070867861118685404", - "reserves": [ - "6952980349446562127607722", - "3743019806464224401069802" - ], - "LPTokenSupply": "10526494668450354667179401" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15982029029619095552", - "expectedQty": "16179197845431693118", - "swapFee": "9589217417771457", - "reserves": [ - "6952980349446562127607722", - "3743003627266378969376684" - ], - "LPTokenSupply": "10526478687380246789860994" - }, - { - "type": "redeemMasset", - "inputQty": "8706620751240527872", - "expectedQtys": [ - "5747471933629111575", - "3094041290782280605" - ], - "redemptionFee": "5223972450744316", - "reserves": [ - "6952974601974628498496147", - "3743000533225088187096079" - ], - "LPTokenSupply": "10526469981281892794407553" - }, - { - "type": "mintMulti", - "inputQtys": [ - "60272092976313702285312", - "173163009487885639352320" - ], - "expectedQty": "230151022932153094768760", + "type": "swap", + "inputIndex": 0, + "inputQty": "16963190721574239993856", + "outputIndex": 1, + "expectedQty": "16868998704146804668240", + "swapFee": "13389628553103935564", "reserves": [ - "7013246694950942200781459", - "3916163542712973826448399" + "6061905654506066372208896", + "3258332767772552698208905" ], - "LPTokenSupply": "10756621004214045889176313" + "LPTokenSupply": "9211248338097432503010681", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "64311494944613984108544", - "expectedQty": "65408202094273308614521", - "swapFee": "38586896966768390465", + "inputQty": "17411278844023367680", + "expectedQty": "17178727341277614388", "reserves": [ - "6947838492856668892166938", - "3916163542712973826448399" - ], - "LPTokenSupply": "10692313367959128581906815" + "6061923065784910395576576", + "3258332767772552698208905" + ] }, { "type": "mintMulti", "inputQtys": [ - "649945312670946164736", - "295834422081340833792" + "106757339580881289216", + "86685025468983237672960" ], - "expectedQty": "930640406465058849811", + "expectedQty": "86037433297209775841438", "reserves": [ - "6948488438169339838331674", - "3916459377135055167282191" + "6062029823124491276865792", + "3345017793241535935881865" ], - "LPTokenSupply": "10693244008365593640756626" + "LPTokenSupply": "9297302950121983556466507" }, { "type": "redeemBassets", "inputQtys": [ - "31458414819172580", - "5463785768569851" + "1990976983677829382144", + "113319688521950855168" ], - "expectedQty": "36305165376758201", - "swapFee": "21796176932214", + "expectedQty": "2076893463321139973380", + "swapFee": "1246884208517794660", "reserves": [ - "6948488406710925019159094", - "3916459371671269398712340" + "6060038846140813447483648", + "3344904473553013985026697" ], - "LPTokenSupply": "10693243972040811704759431" + "LPTokenSupply": "9295224934462874750477932" }, { - "type": "redeemMasset", - "inputQty": "27169381000726632726528", - "expectedQtys": [ - "17644117885745023250986", - "9944964545347567774580" - ], - "redemptionFee": "16301628600435979635", + "type": "mint", + "inputIndex": 1, + "inputQty": "59142285152048254025728", + "expectedQty": "58620346266493861260768", "reserves": [ - "6930844288825179995908108", - "3906514407125921830937760" - ], - "LPTokenSupply": "10666076221202945115630866" + "6060038846140813447483648", + "3404046758705062239052425" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "18910876118260113211392", - "expectedQty": "18663416210622099800249", + "inputQty": "184921111394567356416", + "expectedQty": "183279198654888561448", "reserves": [ - "6930844288825179995908108", - "3925425283244181944149152" + "6060038846140813447483648", + "3404231679816456806408841" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "49842356681107774111744", - "33973390533156744986624" - ], - "expectedQty": "82506986318733810352013", - "swapFee": "49533912138523400251", + "type": "redeem", + "inputIndex": 1, + "inputQty": "479239995437335969792", + "expectedQty": "483243032665206412417", + "swapFee": "287543997262401581", "reserves": [ - "6881001932144072221796364", - "3891451892711025199162528" + "6060038846140813447483648", + "3403748436783791599996424" ], - "LPTokenSupply": "10602188070573908734018875" + "LPTokenSupply": "9353549348686985890570514" }, { "type": "redeemBassets", "inputQtys": [ - "2139366008807736213504", - "1878993650942740267008" + "254198452343182000128", + "99850276865328529408" ], - "expectedQty": "3956660642082301852009", - "swapFee": "2375421638232320503", + "expectedQty": "349805724040974142918", + "swapFee": "210009440088637668", "reserves": [ - "6878862566135264485582860", - "3889572899060082458895520" + "6059784647688470265483520", + "3403648586506926271467016" ], - "LPTokenSupply": "10598229272052352023078412" + "LPTokenSupply": "9353199353954448836653693" }, { "type": "redeemMasset", - "inputQty": "459598651498042962739", + "inputQty": "32971271520699", "expectedQtys": [ - "298127070905376965461", - "168572487721790017644" + "21348729791425", + "11991114899770" ], - "redemptionFee": "275759190898825777", + "redemptionFee": "19782762912", "reserves": [ - "6878564439064359108617399", - "3889404326572360668877876" + "6059784647667121535692095", + "3403648586494935156567246" ], - "LPTokenSupply": "10597769700976773069998250" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1479996987801512706048", - "1734076308332423413760" - ], - "expectedQty": "3165703692399954933768", - "reserves": [ - "6880044436052160621323447", - "3891138402880693092291636" - ], - "LPTokenSupply": "10600935404669173024932018" + "LPTokenSupply": "9353199353921479543409285" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "462892523193014550528", - "expectedQty": "468753388990264941778", - "swapFee": "277735513915808730", + "inputQty": "842303742151859503104", + "expectedQty": "849338494438283110104", + "swapFee": "505382245291115701", "reserves": [ - "6880044436052160621323447", - "3890669649491702827349858" + "6059784647667121535692095", + "3402799248000496873457142" ], - "LPTokenSupply": "10600472539919531401962363" + "LPTokenSupply": "9352357100717552213017751" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "635314244599401545728", - "expectedQty": "646136230652926364125", - "swapFee": "381188546759640927", + "inputQty": "17086778533986632204288", + "expectedQty": "17304956371370645744392", + "swapFee": "10252067120391979322", "reserves": [ - "6879398299821507694959322", - "3890669649491702827349858" + "6042479691295750889947703", + "3402799248000496873457142" ], - "LPTokenSupply": "10599837263793786676380727" + "LPTokenSupply": "9335271347390277620011395" }, { "type": "mint", "inputIndex": 0, - "inputQty": "548525624980255670272", - "expectedQty": "539014889012080950675", - "reserves": [ - "6879946825446487950629594", - "3890669649491702827349858" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "8373961967464302510080", - "expectedQty": "8264247881129347731431", + "inputQty": "37600735436224110592", + "expectedQty": "37104542741120666641", "reserves": [ - "6879946825446487950629594", - "3899043611459167129859938" + "6042517292031187114058295", + "3402799248000496873457142" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "771268077494428980215808", - "154211590774802652069888" - ], - "expectedQty": "910155664946942143542987", - "swapFee": "546421251719196804208", + "type": "redeem", + "inputIndex": 0, + "inputQty": "173258360028877715144704", + "expectedQty": "175461112760356189177859", + "swapFee": "103955016017326629086", "reserves": [ - "6108678747952058970413786", - "3744832020684364477790050" + "5867056179270830924880436", + "3402799248000496873457142" ], - "LPTokenSupply": "9697993082490438684396057" + "LPTokenSupply": "9162060487405742758196240" }, { - "type": "redeemMasset", - "inputQty": "302492567530696081408", - "expectedQtys": [ - "190423029283370696813", - "116735923914013531020" - ], - "redemptionFee": "181495540518417648", + "type": "redeem", + "inputIndex": 1, + "inputQty": "658595830314957312", + "expectedQty": "664232005815363783", + "swapFee": "395157498188974", "reserves": [ - "6108488324922775599716973", - "3744715284760450464259030" + "5867056179270830924880436", + "3402798583768491058093359" ], - "LPTokenSupply": "9697690608072462040156413" + "LPTokenSupply": "9162059828849428193057825" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "8132974400841382363136", - "outputIndex": 1, - "expectedQty": "8097354792016724241797", - "swapFee": "6394974156276970790", - "reserves": [ - "6116621299323616982080109", - "3736617929968433740017233" + "type": "redeemBassets", + "inputQtys": [ + "298587589478292520960", + "156967146493531684864" ], - "LPTokenSupply": "9697691247569877667853492", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "61974637213178527744", - "expectedQty": "62790358777866119009", - "swapFee": "37184782327907116", + "expectedQty": "450215990441084523099", + "swapFee": "270291769326246461", "reserves": [ - "6116621299323616982080109", - "3736555139609655873898224" + "5866757591681352632359476", + "3402641616621997526408495" ], - "LPTokenSupply": "9697629276651142722116459" + "LPTokenSupply": "9161609369596394714912910" }, { "type": "mintMulti", "inputQtys": [ - "1471129931352345344", - "3409570759615768576" + "15593899963346717769728", + "2372645878891034968064" ], - "expectedQty": "4809183336837996688", + "expectedQty": "17740581123482967664185", "reserves": [ - "6116622770453548334425453", - "3736558549180415489666800" + "5882351491644699350129204", + "3405014262500888561376559" ], - "LPTokenSupply": "9697634085834479560113147" + "LPTokenSupply": "9179349950719877682577095" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "9505511439548989571072", - "expectedQty": "9376330102724907544095", + "inputIndex": 0, + "inputQty": "160542097615531376640", + "expectedQty": "158436874865020783422", "reserves": [ - "6116622770453548334425453", - "3746064060619964479237872" + "5882512033742314881505844", + "3405014262500888561376559" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "117288357350417888", - "57503884189586664" + "type": "redeemMasset", + "inputQty": "20893799197311025152", + "expectedQtys": [ + "13381357171550879226", + "7745621557490081043" ], - "expectedQty": "172001911821214503", - "swapFee": "103263104955702", + "redemptionFee": "12536279518386615", "reserves": [ - "6116622653165190984007565", - "3746064003116080289651208" + "5882498652385143330626618", + "3405006516879331071295516" ], - "LPTokenSupply": "9707010243842355851982606" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "11509847540727352918016", - "expectedQty": "11353254911992169859249", - "reserves": [ - "6116622653165190984007565", - "3757573850656807642569224" - ] + "LPTokenSupply": "9179487495049173344174026" }, { "type": "redeemBassets", "inputQtys": [ - "3561772651011701735424", - "12411287686007509483520" + "30665145825800753152", + "31661370278854000640" ], - "expectedQty": "15743220029885764651918", - "swapFee": "9451602979719290365", + "expectedQty": "61637269176034605825", + "swapFee": "37004564244167263", "reserves": [ - "6113060880514179282272141", - "3745162562970800133085704" + "5882467987239317529873466", + "3404974855509052217294876" ], - "LPTokenSupply": "9702611772281780509828607" + "LPTokenSupply": "9179425824475889489817663" }, { "type": "swap", "inputIndex": 1, - "inputQty": "667666212069835669504", + "inputQty": "16052484069985456488448", "outputIndex": 0, - "expectedQty": "670059350169947205163", + "expectedQty": "16117717136959509484880", "swapFee": "0", "reserves": [ - "6112390821164009335066978", - "3745830229182869968755208" + "5866350270102358020388586", + "3421027339579037673783324" ], - "LPTokenSupply": "9702611772281780509828607", + "LPTokenSupply": "9179425824475889489817663", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4294391527970333", - "expectedQty": "4220859216580699", - "reserves": [ - "6112390825458400863037311", - "3745830229182869968755208" - ] - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "118227218416657655398400", - "119684522825095793606656" + "9936408301381130240", + "64086201843802857472" ], - "expectedQty": "234261139267592930807055", - "swapFee": "140641068201476644470", + "expectedQty": "73308619950727126265", "reserves": [ - "5994163607041743207638911", - "3626145706357774175148552" + "5866360206510659401518826", + "3421091425780881476640796" ], - "LPTokenSupply": "9468224060273665466622227" + "LPTokenSupply": "9179499133095840216943928" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "18618183855806936514560", - "10404319651119725805568" + "724045414699099", + "972290150267276" ], - "expectedQty": "28561749932735481517968", - "swapFee": "17147338362658884241", + "expectedQty": "1677999763886098", "reserves": [ - "5975545423185936271124351", - "3615741386706654449342984" + "5866360207234704816217925", + "3421091426753171626908072" ], - "LPTokenSupply": "9439646877736403592108441" + "LPTokenSupply": "9179499134773839980830026" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "26983208223408840704", - "outputIndex": 0, - "expectedQty": "27082910349125951424", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "435621532713208905728", + "outputIndex": 1, + "expectedQty": "433525921138791557394", + "swapFee": "343935984070142792", "reserves": [ - "5975518340275587145172927", - "3615768369914877858183688" + "5866795828767418025123653", + "3420657900832032835350678" ], - "LPTokenSupply": "9439646877736403592108441", + "LPTokenSupply": "9179499169167438387844305", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "85819805215996736700416", - "135382850287616080740352" + "253853745216016160", + "2046374538381125376" ], - "expectedQty": "217899618228177046950346", - "swapFee": "130818261894042653762", + "expectedQty": "2278261668039079338", "reserves": [ - "5889698535059590408472511", - "3480385519627261777443336" + "5866796082621163241139813", + "3420659947206571216476054" ], - "LPTokenSupply": "9221629523072521906769708" + "LPTokenSupply": "9179501447429106426923643" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "148637460163646029824", - "126094047960632016896" + "41801070099785588736", + "29459165037594259456" ], - "expectedQty": "270471169448465050345", - "swapFee": "162380129746927186", + "expectedQty": "70444710865577987483", "reserves": [ - "5889549897599426762442687", - "3480259425579301145426440" + "5866837883691263026728549", + "3420689406371608810735510" ], - "LPTokenSupply": "9221358905760956669484894" + "LPTokenSupply": "9179571892139972004911126" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "12720929845223673036800", - "expectedQty": "12886218091063790480383", - "swapFee": "7632557907134203822", + "type": "mintMulti", + "inputQtys": [ + "19449259774274532", + "9674399654688412" + ], + "expectedQty": "28780949286026007", "reserves": [ - "5889549897599426762442687", - "3467373207488237354946057" + "5866837903140522801003081", + "3420689416046008465423922" ], - "LPTokenSupply": "9208638739171523709868476" + "LPTokenSupply": "9179571920920921290937133" }, { - "type": "mintMulti", - "inputQtys": [ - "3733388402963066", - "161613188207129" + "type": "redeemMasset", + "inputQty": "8227108281680411033", + "expectedQtys": [ + "5254945530068293064", + "3063922483179665386" ], - "expectedQty": "3828310224674020", + "redemptionFee": "4936264969008246", "reserves": [ - "5889549901332815165405753", - "3467373207649850543153186" + "5866832648194992732710017", + "3420686352123525285758536" ], - "LPTokenSupply": "9208638742999833934542496" + "LPTokenSupply": "9179563694306266107426924" }, { - "type": "mintMulti", - "inputQtys": [ - "31618113405616", - "108592290151636" + "type": "redeem", + "inputIndex": 0, + "inputQty": "783975988435469598720", + "expectedQty": "793896651277087744258", + "swapFee": "470385593061281759", + "reserves": [ + "5866038751543715644965759", + "3420686352123525285758536" ], - "expectedQty": "138207797711908", + "LPTokenSupply": "9178779765356389943956379" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "65164880622240", + "expectedQty": "65989484061487", + "swapFee": "39098928373", "reserves": [ - "5889549901364433278811369", - "3467373207758442833304822" + "5866038751477726160904272", + "3420686352123525285758536" ], - "LPTokenSupply": "9208638743138041732254404" + "LPTokenSupply": "9178779765291228973226976" }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "1372090642664867840", + "expectedQtys": [ + "876359150559554123", + "511034773700133332" + ], + "redemptionFee": "823254385598920", + "reserves": [ + "5866037875118575601350149", + "3420685841088751585625204" + ], + "LPTokenSupply": "9178778393282911746919028" + }, + { + "type": "redeemBassets", "inputQtys": [ - "54479597713778563612672", - "73730675106844724166656" + "20711705134378908647424", + "13235454432225282490368" ], - "expectedQty": "126278635541280922126428", + "expectedQty": "33555480257964023342809", + "swapFee": "20145375380006417856", "reserves": [ - "5944029499078211842424041", - "3541103882865287557471478" + "5845326169984196692702725", + "3407450386656526303134836" ], - "LPTokenSupply": "9334917378679322654380832" + "LPTokenSupply": "9145204782187105717800147" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "28435411790829793050624", - "expectedQty": "27944852789099600103359", + "type": "redeemBassets", + "inputQtys": [ + "4725636540229210865664", + "5136845989279300583424" + ], + "expectedQty": "9753816558711201823198", + "swapFee": "5855803417277087346", "reserves": [ - "5972464910869041635474665", - "3541103882865287557471478" - ] + "5840600533443967481837061", + "3402313540667247002551412" + ], + "LPTokenSupply": "9135445695405318966598336" }, { "type": "redeemMasset", - "inputQty": "2994225562303586107392", + "inputQty": "1386421610624481", "expectedQtys": [ - "1908836947504530742541", - "1131758834491247155176" + "885854565561332", + "516035117658357" ], - "redemptionFee": "1796535337382151664", + "redemptionFee": "831852966374", "reserves": [ - "5970556073921537104732124", - "3539972124030796310316302" + "5840600532558112916275729", + "3402313540151211884893055" ], - "LPTokenSupply": "9359868185559652406591965" + "LPTokenSupply": "9135445694018980541270492" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "448898490551014326272", - "outputIndex": 1, - "expectedQty": "446806462534137030072", - "swapFee": "352920444381079106", + "inputIndex": 1, + "inputQty": "5147065548090191872", + "outputIndex": 0, + "expectedQty": "5167855950532562123", + "swapFee": "0", "reserves": [ - "5971004972412088119058396", - "3539525317568262173286230" + "5840595364702162383713606", + "3402318687216759975084927" ], - "LPTokenSupply": "9359868220851696844699875", + "LPTokenSupply": "9135445694018980541270492", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2023419022792891564032", + "expectedQty": "1996922203550621957270", + "reserves": [ + "5842618783724955275277638", + "3402318687216759975084927" + ] + }, { "type": "redeemMasset", - "inputQty": "424008939218267851980", + "inputQty": "4616560240008146944", "expectedQtys": [ - "270328638077616274839", - "160246903655305599713" + "2950127188286378424", + "1717940744368354951" ], - "redemptionFee": "254405363530960711", + "redemptionFee": "2769936144004888", "reserves": [ - "5970734643774010502783557", - "3539365070664606867686517" + "5842615833597766988899214", + "3402316969276015606729976" ], - "LPTokenSupply": "9359444237353014929943966" + "LPTokenSupply": "9137437999939284769481306" }, { - "type": "mint", + "type": "redeem", + "inputIndex": 0, + "inputQty": "18850099802503983104", + "expectedQty": "19088769565466965535", + "swapFee": "11310059881502389", + "reserves": [ + "5842596744828201521933679", + "3402316969276015606729976" + ], + "LPTokenSupply": "9137419150970488253648440" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "3060351215274016374784", - "expectedQty": "3019187931224878932526", + "inputQty": "10673482795799669637120", + "expectedQty": "10765008001290734353796", + "swapFee": "6404089677479801782", "reserves": [ - "5970734643774010502783557", - "3542425421879880884061301" - ] + "5842596744828201521933679", + "3391551961274724872376180" + ], + "LPTokenSupply": "9126746308583656331991498" }, { "type": "mintMulti", "inputQtys": [ - "65675439539526918209536", - "30131377942596528635904" + "178868183713488512", + "196556817508191136" ], - "expectedQty": "94267999710203174153735", + "expectedQty": "371294192601416132", "reserves": [ - "6036410083313537420993093", - "3572556799822477412697205" + "5842596923696385235422191", + "3391552157831542380567316" ], - "LPTokenSupply": "9456731424994442983030227" + "LPTokenSupply": "9126746679877848933407630" }, { - "type": "redeemBassets", - "inputQtys": [ - "2062588181609372188672", - "1528759054017490059264" + "type": "redeem", + "inputIndex": 0, + "inputQty": "346652198989852917628928", + "expectedQty": "351009024360092960185096", + "swapFee": "207991319393911750577", + "reserves": [ + "5491587899336292275237095", + "3391552157831542380567316" + ], + "LPTokenSupply": "8780115280019935406953759" + }, + { + "type": "redeemMasset", + "inputQty": "20140898111122435787980", + "expectedQtys": [ + "12589714999863292221756", + "7775287559256040213213" ], - "expectedQty": "3535189905449649942207", - "swapFee": "2122387375695207089", + "redemptionFee": "12084538866673461472", "reserves": [ - "6034347495131928048804421", - "3571028040768459922637941" + "5478998184336428983015339", + "3383776870272286340354103" ], - "LPTokenSupply": "9453194324940355207401638" + "LPTokenSupply": "8759975590362699638511926" }, { "type": "redeemBassets", "inputQtys": [ - "2491309429378631335936", - "6285596743902448058368" + "1597563090953464709120", + "89229420054732193792" ], - "expectedQty": "8649437657545658324647", - "swapFee": "5192778261484285566", + "expectedQty": "1665302846278975976220", + "swapFee": "999781576713413633", "reserves": [ - "6031856185702549417468485", - "3564742444024557474579573" + "5477400621245475518306219", + "3383687640852231608160311" ], - "LPTokenSupply": "9444540213782374213219980" + "LPTokenSupply": "8758309387713001620463435" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1193183209247473139712", - "expectedQty": "1213424247686091782258", - "swapFee": "715909925548483883", + "type": "redeemBassets", + "inputQtys": [ + "19032723147997442048", + "6388861531700867072" + ], + "expectedQty": "25115213863360362713", + "swapFee": "15078175223150107", "reserves": [ - "6030642761454863325686227", - "3564742444024557474579573" + "5477381588522327520864171", + "3383681251990699907293239" ], - "LPTokenSupply": "9443347102164119294928656" + "LPTokenSupply": "8758284258928780559265624" }, { "type": "redeemMasset", - "inputQty": "14718393829143066601062", + "inputQty": "413425611070565305548", "expectedQtys": [ - "9393715747302231785942", - "5552671341359930294529" + "258398913473964817768", + "159627286309351081387" ], - "redemptionFee": "8831036297485839960", + "redemptionFee": "248055366642339183", "reserves": [ - "6021249045707561093900285", - "3559189772683197544285044" + "5477123189608853556046403", + "3383521624704390556211852" ], - "LPTokenSupply": "9428629591438605976911590" + "LPTokenSupply": "8757870858123246658193994" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1158783947504900112384", - "expectedQty": "1173856921126508862413", - "swapFee": "695270368502940067", + "inputIndex": 0, + "inputQty": "1454476367672525455360", + "expectedQty": "1472634110192254631605", + "swapFee": "872685820603515273", "reserves": [ - "6021249045707561093900285", - "3558015915762071035422631" + "5475650555498661301414798", + "3383521624704390556211852" ], - "LPTokenSupply": "9427470877018137927093212" + "LPTokenSupply": "8756416469024156193090161" }, { - "type": "mintMulti", - "inputQtys": [ - "43848035508793524224", - "302229083890402983936" + "type": "redeemMasset", + "inputQty": "3478025280360268221644", + "expectedQtys": [ + "2173608856446857282442", + "1343119414742703809748" + ], + "redemptionFee": "2086815168216160932", + "reserves": [ + "5473476946642214444132356", + "3382178505289647852402104" ], - "expectedQty": "341260150098203655386", + "LPTokenSupply": "8752938652425312746484610" + }, + { + "type": "redeemMasset", + "inputQty": "5683330826341888819", + "expectedQtys": [ + "3551826071733544257", + "2194749317746566526" + ], + "redemptionFee": "3409998495805133", "reserves": [ - "6021292893743069887424509", - "3558318144845961438406567" + "5473473394816142710588099", + "3382176310540330105835578" ], - "LPTokenSupply": "9427812137168236130748598" + "LPTokenSupply": "8752932969435486254176304" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5292346013736282112", - "expectedQty": "5361184291590691405", - "swapFee": "3175407608241769", + "inputQty": "719679631333392895705088", + "expectedQty": "725607863243284999666522", + "swapFee": "431807778800035737423", "reserves": [ - "6021292893743069887424509", - "3558312783661669847715162" + "5473473394816142710588099", + "2656568447297045106169056" ], - "LPTokenSupply": "9427806845139763155290662" + "LPTokenSupply": "8033296518879973362044958" }, { "type": "mintMulti", "inputQtys": [ - "21248307315585417478144", - "35803058272938678550528" + "10193665009960076967936", + "8697861397917595598848" ], - "expectedQty": "56203012359620928136374", + "expectedQty": "18681468191279597783343", "reserves": [ - "6042541201058655304902653", - "3594115841934608526265690" + "5483667059826102787556035", + "2665266308694962701767904" ], - "LPTokenSupply": "9484009857499384083427036" + "LPTokenSupply": "8051977987071252959828301" }, { "type": "redeemBassets", "inputQtys": [ - "2220082610982041344", - "7527007476902913024" + "21362265910727967506432", + "8506038783517398138880" ], - "expectedQty": "9607412845004642121", - "swapFee": "5767908452074029", + "expectedQty": "29505573125842511728927", + "swapFee": "17713972258860823531", "reserves": [ - "6042538980976044322861309", - "3594108314927131623352666" + "5462304793915374820049603", + "2656760269911445303629024" ], - "LPTokenSupply": "9484000244895421471918287" + "LPTokenSupply": "8022456471370377473358195" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3462946757931740672", - "2397638610382607872" + "1125997675278144765952", + "279497616412022467985408" + ], + "expectedQty": "278501775935398330000250", + "swapFee": "167201386393074842905", + "reserves": [ + "5461178796240096675283651", + "2377262653499422835643616" ], - "expectedQty": "5768553440017616511", + "LPTokenSupply": "7743804214187225375999329" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "3311346492999858176", + "expectedQty": "3332895578370695033", + "swapFee": "1986807895799914", "reserves": [ - "6042542443922802254601981", - "3594110712565742005960538" + "5461178796240096675283651", + "2377259320603844464948583" ], - "LPTokenSupply": "9484006013448861489534798" + "LPTokenSupply": "7743800903039413165721144" }, { "type": "swap", "inputIndex": 1, - "inputQty": "187797613632877952", + "inputQty": "1974895931742947901440", "outputIndex": 0, - "expectedQty": "188520372539631468", + "expectedQty": "1989291649846642340046", "swapFee": "0", "reserves": [ - "6042542255402429714970513", - "3594110900363355638838490" + "5459189504590250032943605", + "2379234216535587412850023" ], - "LPTokenSupply": "9484006013448861489534798", + "LPTokenSupply": "7743800903039413165721144", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "9149753443970500198", - "expectedQtys": [ - "5826082255775086857", - "3465360250178375214" - ], - "redemptionFee": "5489852066382300", - "reserves": [ - "6042536429320173939883656", - "3594107435003105460463276" - ], - "LPTokenSupply": "9483996864244402725672830" - }, { "type": "swap", "inputIndex": 1, - "inputQty": "29264767041574533070848", + "inputQty": "2265882705831594", "outputIndex": 0, - "expectedQty": "29375685509968602977423", + "expectedQty": "2282381190684706", "swapFee": "0", "reserves": [ - "6013160743810205336906233", - "3623372202044679993534124" + "5459189502307868842258899", + "2379234218801470118681617" ], - "LPTokenSupply": "9483996864244402725672830", + "LPTokenSupply": "7743800903039413165721144", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "298470839800522473472", - "expectedQty": "293334709911160473427", + "type": "redeemMasset", + "inputQty": "28769537164766802739", + "expectedQtys": [ + "20269648229382742986", + "8833956148623974374" + ], + "redemptionFee": "17261722298860081", "reserves": [ - "6013459214650005859379705", - "3623372202044679993534124" - ] + "5459169232659639459515913", + "2379225384845321494707243" + ], + "LPTokenSupply": "7743772135228420628804413" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "12497704521325946", - "expectedQty": "12661643790602371", - "swapFee": "7498622712795", + "type": "redeemMasset", + "inputQty": "44699747718639189911142", + "expectedQtys": [ + "31493317352574360939609", + "13725476698902363201478" + ], + "redemptionFee": "26819848631183513946", "reserves": [ - "6013459214650005859379705", - "3623372189383036202931753" + "5427675915307065098576304", + "2365499908146419131505765" ], - "LPTokenSupply": "9484290186457359227091590" + "LPTokenSupply": "7699075069494644557244665" }, { "type": "redeemMasset", - "inputQty": "28355702953546771", + "inputQty": "20674176257369492055654", "expectedQtys": [ - "17967981825280905", - "10826494921002284" + "14566087470449101661869", + "6348219589940410047957" ], - "redemptionFee": "17013421772128", + "redemptionFee": "12404505754421695233", "reserves": [ - "6013459196682024034098800", - "3623372178556541281929469" + "5413109827836615996914435", + "2359151688556478721457808" ], - "LPTokenSupply": "9484290158103357615722031" + "LPTokenSupply": "7678402133687850507358534" }, { "type": "swap", "inputIndex": 1, - "inputQty": "5546076187393756495872", + "inputQty": "139051049853866459136", "outputIndex": 0, - "expectedQty": "5566716374814134982194", + "expectedQty": "140063437077630895829", "swapFee": "0", "reserves": [ - "6007892480307209899116606", - "3628918254743935038425341" + "5412969764399538366018606", + "2359290739606332587916944" ], - "LPTokenSupply": "9484290158103357615722031", + "LPTokenSupply": "7678402133687850507358534", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "249204611596301795328", - "48564528812246914039808" + "type": "redeemMasset", + "inputQty": "3801138399281956467507", + "expectedQtys": [ + "2678044415915436830904", + "1167249341069361833050" ], - "expectedQty": "48153012457932424281650", - "swapFee": "28909152966539378195", + "redemptionFee": "2280683039569173880", "reserves": [ - "6007643275695613597321278", - "3580353725931688124385533" + "5410291719983622929187702", + "2358123490265263226083894" ], - "LPTokenSupply": "9436111127407755306000004" + "LPTokenSupply": "7674601223356872507808415" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "269343027971751378944", - "outputIndex": 0, - "expectedQty": "270374716544087252742", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "24397448978157430374", + "expectedQtys": [ + "17188921478297980005", + "7491943430810469628" + ], + "redemptionFee": "14638469386894458", "reserves": [ - "6007372900979069510068536", - "3580623068959659875764477" + "5410274531062144631207697", + "2358115998321832415614266" ], - "LPTokenSupply": "9436111127407755306000004", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "7674576827371741289067486" }, { "type": "mintMulti", "inputQtys": [ - "2344572035448708608", - "2820323485755071488" + "1961394769907719340032", + "2267559130735535194112" ], - "expectedQty": "5086433082217018099", + "expectedQty": "4184940136998168042386", "reserves": [ - "6007375245551104958777144", - "3580625889283145630835965" + "5412235925832052350547729", + "2360383557452567950808378" ], - "LPTokenSupply": "9436116213840837523018103" + "LPTokenSupply": "7678761767508739457109872" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "58498887588914339840", - "expectedQty": "57710148115972102082", + "type": "redeem", + "inputIndex": 0, + "inputQty": "39491610732422078922752", + "expectedQty": "40037950414334124600197", + "swapFee": "23694966439453247353", "reserves": [ - "6007375245551104958777144", - "3580684388170734545175805" - ] + "5372197975417718225947532", + "2360383557452567950808378" + ], + "LPTokenSupply": "7639272526272961323511855" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "67632252993628930048", - "expectedQty": "68777861704529731338", - "swapFee": "40579351796177358", + "type": "redeemBassets", + "inputQtys": [ + "7314291088338013126656", + "8264362294768197173248" + ], + "expectedQty": "15415524026081440360203", + "swapFee": "9254867336050494512", "reserves": [ - "6007306467689400429045806", - "3580684388170734545175805" + "5364883684329380212820876", + "2352119195157799753635130" ], - "LPTokenSupply": "9436106295793895045807872" + "LPTokenSupply": "7623848672866277437706590" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "4549957629268822851584", - "expectedQty": "4609359619474847369198", - "swapFee": "2729974577561293710", + "inputQty": "141592045334244800", + "expectedQty": "142524214141677354", + "swapFee": "84955227200546", "reserves": [ - "6007306467689400429045806", - "3576075028551259697806607" + "5364883684329380212820876", + "2352119052633585611957776" ], - "LPTokenSupply": "9431556611162083979085659" + "LPTokenSupply": "7623848531282727626181844" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "20713599185079733583872", + "expectedQty": "20564946041161931923477", + "reserves": [ + "5364883684329380212820876", + "2372832651818665345541648" + ] }, { "type": "mintMulti", "inputQtys": [ - "104832761570747432960", - "8287826082290509807616" + "12105490999198647058432", + "217605314037479253213184" ], - "expectedQty": "8279109480544542184934", + "expectedQty": "227889397091997730313464", "reserves": [ - "6007411300450971176478766", - "3584362854633550207614223" + "5376989175328578859879308", + "2590437965856144598754832" ], - "LPTokenSupply": "9439835720642628521270593" + "LPTokenSupply": "7872302874415887288418785" }, { - "type": "redeemMasset", - "inputQty": "1148519176973961081651", - "expectedQtys": [ - "730466875732778217281", - "435838034882053326642" - ], - "redemptionFee": "689111506184376648", + "type": "redeem", + "inputIndex": 1, + "inputQty": "80519570996070264602624", + "expectedQty": "81104609641158023228765", + "swapFee": "48311742597642158761", "reserves": [ - "6006680833575238398261485", - "3583927016598668154287581" + "5376989175328578859879308", + "2509333356214986575526067" ], - "LPTokenSupply": "9438687270376805178626606" + "LPTokenSupply": "7791788134594076788032037" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "33886077054463307153408", + "expectedQty": "33623792619453567425807", + "reserves": [ + "5376989175328578859879308", + "2543219433269449882679475" + ] }, { "type": "mintMulti", "inputQtys": [ - "42999790181133336", - "585271025191398912" + "1457723715932465408", + "6098044092333638656" ], - "expectedQty": "619634616332842332", + "expectedQty": "7487911057375855645", "reserves": [ - "6006680876575028579394821", - "3583927601869693345686493" + "5376990633052294792344716", + "2543225531313542216318131" ], - "LPTokenSupply": "9438687890011421511468938" + "LPTokenSupply": "7825419415124587731313489" }, { "type": "mintMulti", "inputQtys": [ - "16999997845306009976832", - "18564511109600839204864" + "98751907690366166368256", + "83325503757068032540672" ], - "expectedQty": "35020895960412257866747", + "expectedQty": "180048934899828819534673", "reserves": [ - "6023680874420334589371653", - "3602492112979294184891357" + "5475742540742660958712972", + "2626551035070610248858803" ], - "LPTokenSupply": "9473708785971833769335685" + "LPTokenSupply": "8005468350024416550848162" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2417560404091559477248", - "expectedQty": "2458482360872957065895", - "swapFee": "1450536242454935686", + "type": "mintMulti", + "inputQtys": [ + "1466983031220018", + "10174516195535878" + ], + "expectedQty": "11540680841551802", "reserves": [ - "6021222392059461632305758", - "3602492112979294184891357" + "5475742542209643989932990", + "2626551045245126444394681" ], - "LPTokenSupply": "9471291370621366455352005" + "LPTokenSupply": "8005468361565097392399964" }, { - "type": "redeemMasset", - "inputQty": "1487851954993908121", - "expectedQtys": [ - "945310617593944249", - "565578519187194895" - ], - "redemptionFee": "892711172996344", + "type": "mint", + "inputIndex": 1, + "inputQty": "348259996301372889759744", + "expectedQty": "345344132660336456326262", "reserves": [ - "6021221446748844038361509", - "3602491547400774997696462" - ], - "LPTokenSupply": "9471289882858682578743518" + "5475742542209643989932990", + "2974811041546499334154425" + ] }, { "type": "mintMulti", "inputQtys": [ - "90880424993268096", - "2942980330306247" + "338823104940539838464", + "49828869613632995328" ], - "expectedQty": "92217366784186801", + "expectedQty": "383660372285838051520", "reserves": [ - "6021221537629269031629605", - "3602491550343755328002709" + "5476081365314584529771454", + "2974860870416112967149753" ], - "LPTokenSupply": "9471289975076049362930319" + "LPTokenSupply": "8351196154597719686777746" }, { - "type": "mintMulti", - "inputQtys": [ - "5263507930246649217024", - "4473865145026900656128" - ], - "expectedQty": "9586240255535681582094", + "type": "swap", + "inputIndex": 1, + "inputQty": "1298910695548246", + "outputIndex": 0, + "expectedQty": "1305031569059667", + "swapFee": "0", "reserves": [ - "6026485045559515680846629", - "3606965415488782228658837" + "5476081364009552960711787", + "2974860871715023662697999" ], - "LPTokenSupply": "9480876215331585044512413" + "LPTokenSupply": "8351196154597719686777746", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "103396816191931180646", - "expectedQtys": [ - "65684381989100340506", - "39313346400321609029" + "type": "redeemBassets", + "inputQtys": [ + "3943302423106142339072", + "7859039716588872794112" ], - "redemptionFee": "62038089715158708", + "expectedQty": "11680296805021034888724", + "swapFee": "7012385514321213661", "reserves": [ - "6026419361177526580506123", - "3606926102142381907049808" + "5472138061586446818372715", + "2967001831998434789903887" ], - "LPTokenSupply": "9480772824719202084847637" + "LPTokenSupply": "8339509546645735762796726" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "80766519090177592262656", - "expectedQty": "82131621901380963867310", - "swapFee": "48459911454106555357", + "inputQty": "78236740247061712", + "expectedQty": "79255541424682151", + "swapFee": "46942044148237", "reserves": [ - "5944287739276145616638813", - "3606926102142381907049808" + "5472137982330905393690564", + "2967001831998434789903887" ], - "LPTokenSupply": "9400011151620169903240516" + "LPTokenSupply": "8339509468413689720149837" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9634823255586670379008", - "expectedQty": "9761590116009653956116", - "swapFee": "5780893953352002227", + "type": "redeemBassets", + "inputQtys": [ + "2699446371014342144", + "8173904882763556864" + ], + "expectedQty": "10765294403432390589", + "swapFee": "6463054474744280", "reserves": [ - "5944287739276145616638813", - "3597164512026372253093692" + "5472135282884534379348420", + "2966993658093552026347023" ], - "LPTokenSupply": "9390376906453978568061730" + "LPTokenSupply": "8339498697302537260489395" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1461762465740738265088", - "expectedQty": "1486455317143881070826", - "swapFee": "877057479444442959", + "inputIndex": 1, + "inputQty": "45417050348732702720", + "expectedQty": "45791797455155074564", + "swapFee": "27250230209239621", "reserves": [ - "5942801283959001735567987", - "3597164512026372253093692" + "5472135282884534379348420", + "2966947866296096871272459" ], - "LPTokenSupply": "9388915231693985774240937" + "LPTokenSupply": "8339453282977211548710637" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3754859486955840733184", - "expectedQty": "3690265973354399806294", + "type": "redeemBassets", + "inputQtys": [ + "5591613299525084160", + "17062944399062310912" + ], + "expectedQty": "22429576056667678310", + "swapFee": "13465825129078053", "reserves": [ - "5946556143445957576301171", - "3597164512026372253093692" - ] + "5472129691271234854264260", + "2966930803351697808961547" + ], + "LPTokenSupply": "8339430841281912264862078" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "2360826402362415906816", - "expectedQty": "2328786456173068284456", + "inputQty": "98217296342038637182976", + "expectedQty": "99016661678689401635173", + "swapFee": "58930377805223182309", "reserves": [ - "5946556143445957576301171", - "3599525338428734669000508" - ] + "5472129691271234854264260", + "2867914141673008407326374" + ], + "LPTokenSupply": "8241219437977654149997332" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "155545786529255948288", - "outputIndex": 0, - "expectedQty": "156119975775074269909", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "2769355887800566677504", + "2047388834078263607296" + ], + "expectedQty": "4761629654714562845448", + "swapFee": "2858693008633918058", "reserves": [ - "5946400023470182502031262", - "3599680884215263924948796" + "5469360335383434287586756", + "2865866752838930143719078" ], - "LPTokenSupply": "9394934284123513242331687", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8236455235499231816625630" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "461691520380609232896", - "expectedQty": "469490287784284275473", - "swapFee": "277014912228365539", + "type": "mintMulti", + "inputQtys": [ + "6347931679110620774400", + "5499975446749944741888" + ], + "expectedQty": "11714656932826965602067", "reserves": [ - "5945930533182398217755789", - "3599680884215263924948796" + "5475708267062544908361156", + "2871366728285680088460966" ], - "LPTokenSupply": "9394472620304623855935344" + "LPTokenSupply": "8248169892432058782227697" }, { - "type": "redeemMasset", - "inputQty": "6217248618299515522252", - "expectedQtys": [ - "3932647364903388142045", - "2380834331111078920873" + "type": "mint", + "inputIndex": 0, + "inputQty": "2592907565453736411136", + "expectedQty": "2557716261245808117820", + "reserves": [ + "5478301174627998644772292", + "2871366728285680088460966" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "14329454854506016669696", + "38523985176341956788224" ], - "redemptionFee": "3730349170979709313", + "expectedQty": "52330271926607927065521", + "swapFee": "31417013363983146126", "reserves": [ - "5941997885817494829613744", - "3597300049884152846027923" + "5463971719773492628102596", + "2832842743109338131672742" ], - "LPTokenSupply": "9388255744721241438384023" + "LPTokenSupply": "8198369061454669078448481" }, { "type": "redeemMasset", - "inputQty": "22790573918827865912115", + "inputQty": "1253062233322739", "expectedQtys": [ - "14415914180130350854889", - "8727429695504502666992" + "834628026225249", + "432720019163254" ], - "redemptionFee": "13674344351296719547", + "redemptionFee": "751837339993", "reserves": [ - "5927581971637364478758855", - "3588572620188648343360931" + "5463971718938864601877347", + "2832842742676618112509488" ], - "LPTokenSupply": "9365466538236848702143862" + "LPTokenSupply": "8198369060201682028859741" }, { - "type": "redeemBassets", - "inputQtys": [ - "196175730521786451755008", - "167825360424550424117248" - ], - "expectedQty": "358349883008779109229933", - "swapFee": "215139013213195382767", + "type": "redeem", + "inputIndex": 0, + "inputQty": "43108239784830115840", + "expectedQty": "43677048898075436981", + "swapFee": "25864943870898069", "reserves": [ - "5731406241115578027003847", - "3420747259764097919243683" + "5463928041889966526440366", + "2832842742676618112509488" ], - "LPTokenSupply": "9006923030116177717069437" + "LPTokenSupply": "8198325954548391585833707" }, { - "type": "redeemBassets", - "inputQtys": [ - "39548876641371029504", - "27981024002133708800" + "type": "redeemMasset", + "inputQty": "13978103782937637683", + "expectedQtys": [ + "9310379758413326161", + "4827084384709694698" ], - "expectedQty": "66468588634799093090", - "swapFee": "39905096238622629", + "redemptionFee": "8386862269762582", "reserves": [ - "5731366692238936655974343", - "3420719278740095785534883" + "5463918731510208113114205", + "2832837915592233402814790" ], - "LPTokenSupply": "9006856525612956303215979" + "LPTokenSupply": "8198311977283294875172282" }, { - "type": "mintMulti", - "inputQtys": [ - "4315770353259392794624", - "2960792093120270434304" + "type": "redeemMasset", + "inputQty": "7579839340658912", + "expectedQtys": [ + "5048695011151169", + "2617559915262012" ], - "expectedQty": "7161998998388290319180", + "redemptionFee": "4547903604395", "reserves": [ - "5735682462592196048768967", - "3423680070833216055969187" + "5463918726461513101963036", + "2832837912974673487552778" ], - "LPTokenSupply": "9014018524611344593535159" + "LPTokenSupply": "8198311969703910324873809" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "12896650975551709773824", - "outputIndex": 1, - "expectedQty": "12836991182621200383084", - "swapFee": "10139098671961467652", + "type": "redeemBassets", + "inputQtys": [ + "37068439603400", + "28793873479792" + ], + "expectedQty": "65113144108013", + "swapFee": "39091341269", "reserves": [ - "5748579113567747758542791", - "3410843079650594855586103" + "5463918726424444662359636", + "2832837912945879614072986" ], - "LPTokenSupply": "9014019538521211789681924", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8198311969638761998558652" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "93124873014316745359360", - "outputIndex": 1, - "expectedQty": "92673054455590408245305", - "swapFee": "73209712199751888723", + "inputQty": "45657341458611622117376", + "expectedQty": "46259073135416659787224", + "swapFee": "27394404875166973270", "reserves": [ - "5841703986582064503902151", - "3318170025195004447340798" + "5417659653289028002572412", + "2832837912945879614072986" ], - "LPTokenSupply": "9014026859492431764870796", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8152657367620637893138603" }, { "type": "redeemMasset", - "inputQty": "9942474910315418799308", + "inputQty": "7659115083007760793", "expectedQtys": [ - "6439535584671886690320", - "3657746781130001164745" + "5086633745035266788", + "2659747906729025207" ], - "redemptionFee": "5965484946189251279", + "redemptionFee": "4595469049804656", "reserves": [ - "5835264450997392617211831", - "3314512278413874446176053" + "5417654566655282967305624", + "2832835253197972885047779" ], - "LPTokenSupply": "9004084981130610964996615" + "LPTokenSupply": "8152649708965101790358275" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "27652101922708881408", - "expectedQty": "28006411319071155813", - "swapFee": "16591261153625328", + "type": "mintMulti", + "inputQtys": [ + "822490314776896995328", + "972041305238787981312" + ], + "expectedQty": "1775042682294460894399", "reserves": [ - "5835264450997392617211831", - "3314484272002555375020240" + "5418477056970059864300952", + "2833807294503211673029091" ], - "LPTokenSupply": "9004057330687814371477739" + "LPTokenSupply": "8154424751647396251252674" }, { "type": "mint", "inputIndex": 0, - "inputQty": "212823471903764352", - "expectedQty": "209110760007252128", + "inputQty": "215258483362881", + "expectedQty": "212333732003280", "reserves": [ - "5835264663820864520976183", - "3314484272002555375020240" + "5418477057185318347663833", + "2833807294503211673029091" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10972294794277384192", - "45622299205528764416" + "9879657283810326740992", + "13327683516154505068544" ], - "expectedQty": "55798989210969104936", - "swapFee": "33499493222514971", + "expectedQty": "22959031346205321341518", "reserves": [ - "5835253691526070243591991", - "3314438649703349846255824" + "5428356714469128674404825", + "2847134978019366178097635" ], - "LPTokenSupply": "9004001710659819509361456" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "7314336559777764605952", - "expectedQty": "7217422386907193865183", - "reserves": [ - "5835253691526070243591991", - "3321752986263127610861776" - ] + "LPTokenSupply": "8177383783205935304597472" }, { "type": "mintMulti", "inputQtys": [ - "19228411205779087360", - "81809123700871856128" + "1703314023572633026560", + "13442203345853396025344" ], - "expectedQty": "99617734672201933573", + "expectedQty": "15006969703734155845560", "reserves": [ - "5835272919937276022679351", - "3321834795386828482717904" + "5430060028492701307431385", + "2860577181365219574122979" ], - "LPTokenSupply": "9011318750781398905160212" + "LPTokenSupply": "8192390752909669460443032" }, { "type": "mintMulti", "inputQtys": [ - "646041489472541949952", - "958767123252929888256" + "45649768176434175541248", + "44463634008414655348736" ], - "expectedQty": "1580832959399258449091", + "expectedQty": "89111355875570863157218", "reserves": [ - "5835918961426748564629303", - "3322793562510081412606160" + "5475709796669135482972633", + "2905040815373634229471715" ], - "LPTokenSupply": "9012899583740798163609303" + "LPTokenSupply": "8281502108785240323600250" }, { - "type": "redeemMasset", - "inputQty": "47233300864387350528", - "expectedQtys": [ - "30565560365561936983", - "17403094163660671413" + "type": "mintMulti", + "inputQtys": [ + "750264338610440320", + "2792986095245413376" ], - "redemptionFee": "28339980518632410", + "expectedQty": "3508936434428440473", "reserves": [ - "5835888395866383002692320", - "3322776159415917751934747" + "5475710546933474093412953", + "2905043608359729474885091" ], - "LPTokenSupply": "9012852353273931828122016" + "LPTokenSupply": "8281505617721674752040723" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "67826112179078", - "expectedQty": "68696164871365", - "swapFee": "40695667307", + "inputQty": "36826142711587762176", + "expectedQty": "37125162653165731779", + "swapFee": "22095685626952657", "reserves": [ - "5835888395866383002692320", - "3322776159347221587063382" + "5475710546933474093412953", + "2905006483197076309153312" ], - "LPTokenSupply": "9012852353206109785509668" + "LPTokenSupply": "8281468793788531726973812" }, { "type": "redeemMasset", - "inputQty": "5297239423818733977", + "inputQty": "1856823318688483298508", "expectedQtys": [ - "3427943609189288121", - "1951766128404492715" + "1226995696866964887513", + "650953045034422417856" ], - "redemptionFee": "3178343654291240", + "redemptionFee": "1114093991213089979", "reserves": [ - "5835884967922773813404199", - "3322774207581093182570667" + "5474483551236607128525440", + "2904355530152041886735456" ], - "LPTokenSupply": "9012847056284520332204815" + "LPTokenSupply": "8279612081879242364984301" }, { - "type": "mintMulti", - "inputQtys": [ - "589947207261655138304", - "667250808050985074688" + "type": "redeemMasset", + "inputQty": "15267263856802208153", + "expectedQtys": [ + "10088665483296402475", + "5352298735402582061" ], - "expectedQty": "1238064875367592850348", + "redemptionFee": "9160358314081324", "reserves": [ - "5836474915130035468542503", - "3323441458389144167645355" + "5474473462571123832122965", + "2904350177853306484153395" ], - "LPTokenSupply": "9014085121159887925055163" + "LPTokenSupply": "8279596815531421394184280" }, { - "type": "redeemMasset", - "inputQty": "37681475755896445337", - "expectedQtys": [ - "24383509681488278904", - "13884608116179272623" - ], - "redemptionFee": "22608885453537867", + "type": "swap", + "inputIndex": 1, + "inputQty": "832899743872914292736", + "outputIndex": 0, + "expectedQty": "837023994780748642901", + "swapFee": "0", "reserves": [ - "5836450531620353980263599", - "3323427573781027988372732" + "5473636438576343083480064", + "2905183077597179398446131" ], - "LPTokenSupply": "9014047441945020573963612" + "LPTokenSupply": "8279596815531421394184280", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "15131186685534827184128", - "expectedQty": "15325080736076381137957", - "swapFee": "9078712011320896310", + "inputQty": "117862305401787", + "expectedQty": "116842496038232", "reserves": [ - "5836450531620353980263599", - "3308102493044951607234775" - ], - "LPTokenSupply": "8998917163130686878869115" + "5473636438576343083480064", + "2905183077715041703847918" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1741822237463729668096", - "expectedQty": "1771697937875549880578", - "swapFee": "1045093342478237800", + "type": "redeemMasset", + "inputQty": "67967420424873232983654", + "expectedQtys": [ + "44906260532091965233310", + "23834412395725074481956" + ], + "redemptionFee": "40780452254923939790", "reserves": [ - "5834678833682478430383021", - "3308102493044951607234775" + "5428730178044251118246754", + "2881348665319316629365962" ], - "LPTokenSupply": "8997175445402557397024799" + "LPTokenSupply": "8211633473268616149632837" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "29844868617868956139520", - "expectedQty": "30356481924688090348682", - "swapFee": "17906921170721373683", + "inputQty": "1256238909986735390720", + "expectedQty": "1239229711718162586198", + "reserves": [ + "5429986416954237853637474", + "2881348665319316629365962" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "72458537498270097408", + "60560001541908422656" + ], + "expectedQty": "131513263906100501791", + "swapFee": "78955331542585852", "reserves": [ - "5804322351757790340034339", - "3308102493044951607234775" + "5429913958416739583540066", + "2881288105317774720943306" ], - "LPTokenSupply": "8967332367476805513022647" + "LPTokenSupply": "8212741118656629823389976" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "14945192131941822889984", - "expectedQty": "14746724935434073160700", + "inputIndex": 0, + "inputQty": "23304842457550768046080", + "expectedQty": "22989113098365392522080", "reserves": [ - "5804322351757790340034339", - "3323047685176893430124759" + "5453218800874290351586146", + "2881288105317774720943306" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "61677102732244762624", - "expectedQty": "60602617355096694958", + "inputQty": "3664167741186459041792", + "expectedQty": "3614494221847858272975", "reserves": [ - "5804384028860522584796963", - "3323047685176893430124759" + "5456882968615476810627938", + "2881288105317774720943306" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1086087897205154", - "364033471402938" + "type": "redeem", + "inputIndex": 1, + "inputQty": "514779902118430912", + "expectedQty": "518945528906568229", + "swapFee": "308867941271058", + "reserves": [ + "5456882968615476810627938", + "2881287586372245814375077" + ], + "LPTokenSupply": "8239344211227827749881224" + }, + { + "type": "redeemMasset", + "inputQty": "509857454615259648", + "expectedQtys": [ + "337473838906528954", + "178189488094056814" ], - "expectedQty": "1426361401131377", - "swapFee": "856330639062", + "redemptionFee": "305914472769155", "reserves": [ - "5804384027774434687591809", - "3323047684812859958721821" + "5456882631141637904098984", + "2881287408182757720318263" ], - "LPTokenSupply": "8982139693602462584171771" + "LPTokenSupply": "8239343701400964581898491" }, { - "type": "redeemBassets", - "inputQtys": [ - "37033625228715772346368", - "102510312121773766737920" + "type": "redeemMasset", + "inputQty": "8093701518127186889932", + "expectedQtys": [ + "5357208171916186240616", + "2828658318701381752985" ], - "expectedQty": "137542129840296782540248", - "swapFee": "82574822797856783594", + "redemptionFee": "4856220910876312133", "reserves": [ - "5767350402545718915245441", - "3220537372691086191983901" + "5451525422969721717858368", + "2878458749864056338565278" ], - "LPTokenSupply": "8844523246421647730526287" + "LPTokenSupply": "8231250485504928482639772" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "6634679383830832", - "expectedQty": "6748898971464761", - "swapFee": "3980807630298", + "inputQty": "727009372162853760", + "expectedQty": "717152377723635934", "reserves": [ - "5767350395796819943780680", - "3220537372691086191983901" - ], - "LPTokenSupply": "8844523239787366427458484" + "5451526149979093880712128", + "2878458749864056338565278" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1124201661519680241664", - "1100688713561913425920" + "type": "redeemMasset", + "inputQty": "205391804968449638", + "expectedQtys": [ + "135948587760046249", + "71782174606475539" ], - "expectedQty": "2190725546789360822176", - "swapFee": "1315224462751267253", + "redemptionFee": "123235082981069", "reserves": [ - "5766226194135300263539016", - "3219436683977524278557981" + "5451526014030506120665879", + "2878458678081881732089739" ], - "LPTokenSupply": "8842331330538560590495779" + "LPTokenSupply": "8231250997277824746124174" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "329677835628680052736", - "expectedQty": "333870576686634627665", - "swapFee": "197806701377208031", + "inputQty": "60456801794052464", + "outputIndex": 0, + "expectedQty": "60759285687389964", + "swapFee": "0", "reserves": [ - "5766226194135300263539016", - "3219102813400837643930316" + "5451525953271220433275915", + "2878458738538683526142203" ], - "LPTokenSupply": "8842001672483602048163846" + "LPTokenSupply": "8231250997277824746124174", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "114226268899017498820608", - "expectedQty": "116188771300216060608355", - "swapFee": "68535761339410499292", + "inputIndex": 1, + "inputQty": "1634777169275878", + "expectedQty": "1648006747525923", + "swapFee": "980866301565", "reserves": [ - "5650037422835084202930661", - "3219102813400837643930316" + "5451525953271220433275915", + "2878458736890676778616280" ], - "LPTokenSupply": "8727782257160718490393167" + "LPTokenSupply": "8231250995643145663478452" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "22925755449353021947904", - "1033054179299688054784" + "60871121886886", + "148411068659134" ], - "expectedQty": "23544838923377988859199", + "expectedQty": "207177162966222", + "swapFee": "124380926335", "reserves": [ - "5672963178284437224878565", - "3220135867580137331985100" + "5451525953210349311389029", + "2878458736742265709957146" ], - "LPTokenSupply": "8751327096084096479252366" + "LPTokenSupply": "8231250995435856557678527" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "257724550923425344", - "expectedQty": "253223283170907150", + "inputIndex": 1, + "inputQty": "43500455055234008", + "expectedQty": "43125359013335692", "reserves": [ - "5672963436008988148303909", - "3220135867580137331985100" + "5451525953210349311389029", + "2878458780242720765191154" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "23181494254720417792", - "outputIndex": 1, - "expectedQty": "23064172667199645000", - "swapFee": "18221295631041049", + "type": "mintMulti", + "inputQtys": [ + "3932978278013078077440", + "7937171491949823131648" + ], + "expectedQty": "11748344725356366627516", "reserves": [ - "5672986617503242868721701", - "3220112803407470132340100" + "5455458931488362389466469", + "2886395951734670588322802" ], - "LPTokenSupply": "8751327351129509213263620", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8242999383286571937641735" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "129891982229105246208", - "outputIndex": 1, - "expectedQty": "129234553084736183890", - "swapFee": "102098683086292856", + "inputQty": "165688869826505824", + "expectedQty": "163443606654174333", "reserves": [ - "5673116509485471973967909", - "3219983568854385396156210" - ], - "LPTokenSupply": "8751327361339377521892905", - "hardLimitError": false, - "insufficientLiquidityError": false + "5455459097177232215972293", + "2886395951734670588322802" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "1704793215477522628608", - "1768331857465451479040" + "type": "redeemMasset", + "inputQty": "22042010183338029875", + "expectedQtys": [ + "14579296616782113571", + "7713672118922636013" ], - "expectedQty": "3419906031563064242390", + "redemptionFee": "13225206110002817", "reserves": [ - "5674821302700949496596517", - "3221751900711850847635250" + "5455444517880615433858722", + "2886388238062551665686789" ], - "LPTokenSupply": "8754747267370940586135295" + "LPTokenSupply": "8242977506042515864786474" }, { - "type": "redeemMasset", - "inputQty": "14101701884810785246412", - "expectedQtys": [ - "9135229268739733508568", - "5186320535942299697485" + "type": "mintMulti", + "inputQtys": [ + "59746086216768560300032", + "3309044355960234049536" ], - "redemptionFee": "8461021130886471147", + "expectedQty": "62216002368220957156198", "reserves": [ - "5665686073432209763087949", - "3216565580175908547937765" + "5515190604097383994158754", + "2889697282418511899736325" ], - "LPTokenSupply": "8740646411588242889535997" + "LPTokenSupply": "8305193508410736821942672" }, { "type": "swap", "inputIndex": 1, - "inputQty": "3929863842563581542400", + "inputQty": "621447539812612964352", "outputIndex": 0, - "expectedQty": "3946651544103196688517", + "expectedQty": "624605919455025446200", "swapFee": "0", "reserves": [ - "5661739421888106566399432", - "3220495444018472129480165" + "5514565998177928968712554", + "2890318729958324512700677" ], - "LPTokenSupply": "8740646411588242889535997", + "LPTokenSupply": "8305193508410736821942672", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "195048889795329097728", - "553384858997262843904" - ], - "expectedQty": "737684237626530616914", + "type": "mint", + "inputIndex": 1, + "inputQty": "105413111267226824998912", + "expectedQty": "104496756301471348282582", "reserves": [ - "5661934470777901895497160", - "3221048828877469392324069" - ], - "LPTokenSupply": "8741384095825869420152911" + "5514565998177928968712554", + "2995731841225551337699589" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2831016005524985479168", - "4669010776001851424768" + "287693298426814", + "455270491639603" ], - "expectedQty": "7388643518457903513276", - "swapFee": "4435847619646530025", + "expectedQty": "735081263532391", + "swapFee": "441313546247", "reserves": [ - "5659103454772376910017992", - "3216379818101467540899301" + "5514565997890235670285740", + "2995731840770280846059986" ], - "LPTokenSupply": "8733991460044553834762611" + "LPTokenSupply": "8409690263976729724501239" }, { "type": "redeemBassets", "inputQtys": [ - "2260414549776421879808", - "1801769038642193629184" + "268332279198983979008", + "133827406521327943680" ], - "expectedQty": "3998808309722566259142", - "swapFee": "2400725421086191470", + "expectedQty": "397369435794540041201", + "swapFee": "238564800356938187", "reserves": [ - "5656843040222600488138184", - "3214578049062825347270117" + "5514297665611036686306732", + "2995598013363759518116306" ], - "LPTokenSupply": "8729990491081952290931145" + "LPTokenSupply": "8409292679832614863215668" }, { - "type": "mintMulti", - "inputQtys": [ - "173592816394992906928128", - "69142518894995389284352" - ], - "expectedQty": "238785828871698974862902", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1938517439638222848", + "expectedQty": "1954572966151994458", + "swapFee": "1163110463782933", "reserves": [ - "5830435856617593395066312", - "3283720567957820736554469" + "5514297665611036686306732", + "2995596058790793366121848" ], - "LPTokenSupply": "8968776319953651265794047" + "LPTokenSupply": "8409290741431486271371113" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "990291359012820484096", + "expectedQty": "981566427650898834104", + "reserves": [ + "5514297665611036686306732", + "2996586350149806186605944" + ] }, { "type": "redeemBassets", "inputQtys": [ - "82077789869814688", - "1979181918384810752" + "13310197057758404018176", + "9317276802739475578880" ], - "expectedQty": "2033674553521864395", - "swapFee": "1220937294489812", + "expectedQty": "22366260615356991341047", + "swapFee": "13427813057048423858", "reserves": [ - "5830435774539803525251624", - "3283718588775902351743717" + "5500987468553278282288556", + "2987269073347066711027064" ], - "LPTokenSupply": "8968774285180254178888820" + "LPTokenSupply": "8387893962212028835282696" }, { "type": "redeemBassets", "inputQtys": [ - "978196243113890", - "600997209542080" + "1279918911392569098240", + "1548481338755882680320" ], - "expectedQty": "1554140847943436", - "swapFee": "933044335367", + "expectedQty": "2797532161273011149544", + "swapFee": "1679527012971589643", "reserves": [ - "5830435773561607282137734", - "3283718588174905142201637" + "5499707549641885713190316", + "2985720592008310828346744" ], - "LPTokenSupply": "8968774283625273591043552" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "36082034266678572875776", - "expectedQty": "35604125778978844935301", - "reserves": [ - "5830435773561607282137734", - "3319800622441583715077413" - ] + "LPTokenSupply": "8385094918476444149702472" }, { - "type": "mintMulti", - "inputQtys": [ - "654863126516373520384", - "2812563876710053838848" + "type": "redeemMasset", + "inputQty": "15665781491816668", + "expectedQtys": [ + "10268878676830113", + "5574842343070251" ], - "expectedQty": "3418645919228321202055", + "redemptionFee": "9399468895090", "reserves": [ - "5831090636688123655658118", - "3322613186318293768916261" + "5499707539373007036360203", + "2985720586433468485276493" ], - "LPTokenSupply": "9007797055323480757180908" + "LPTokenSupply": "8385094902811602604775313" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "721872119444734", - "2114062585558164" + "11645867821438406230016", + "14528643389047657463808" ], - "expectedQty": "2795256210016980", + "expectedQty": "25889852974670326173550", + "swapFee": "15543237727438658899", "reserves": [ - "5831090637409995775102852", - "3322613188432356354474425" + "5488061671551568630130187", + "2971191943044420827812685" ], - "LPTokenSupply": "9007797058118736967197888" + "LPTokenSupply": "8359191060922977583808752" }, { - "type": "mintMulti", - "inputQtys": [ - "49261549806274863104", - "104304855019909611520" - ], - "expectedQty": "151321213372711764629", + "type": "mint", + "inputIndex": 0, + "inputQty": "18070422188870736", + "expectedQty": "17826949765486567", "reserves": [ - "5831139898959802049965956", - "3322717493287376264085945" - ], - "LPTokenSupply": "9007948379332109678962517" + "5488061689621990819000923", + "2971191943044420827812685" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "328586576101793216", - "331855940509353344" + "type": "redeemMasset", + "inputQty": "1494881682004316363161", + "expectedQtys": [ + "980846162092754274681", + "531022131126365811490" ], - "expectedQty": "650299641308499469", + "redemptionFee": "896929009202589817", "reserves": [ - "5831140227546378151759172", - "3322717825143316773439289" + "5487080843459898064726242", + "2970660920913294462001195" ], - "LPTokenSupply": "9007949029631750987461986" + "LPTokenSupply": "8357696286760823953191139" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "180891796367795486720", - "18424043605279166464" + "12193036080416001359872", + "7547440541255295041536" ], - "expectedQty": "195913850918868134565", + "expectedQty": "19509844855053798510282", + "swapFee": "11712934673836581054", "reserves": [ - "5831321119342745947245892", - "3322736249186922052605753" + "5474887807379482063366370", + "2963113480372039166959659" ], - "LPTokenSupply": "9008144943482669855596551" + "LPTokenSupply": "8338175900264563701757907" }, { "type": "mint", "inputIndex": 1, - "inputQty": "899488367454410368", - "expectedQty": "887541394378951159", + "inputQty": "2235379824434632196096", + "expectedQty": "2215725333726577402118", "reserves": [ - "5831321119342745947245892", - "3322737148675289507016121" + "5474887807379482063366370", + "2965348860196473799155755" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "162091499329638105088", - "expectedQty": "159938582119190993920", + "inputQty": "3260810911718627082240", + "expectedQty": "3232120891122309118632", "reserves": [ - "5831321119342745947245892", - "3322899240174619145121209" + "5474887807379482063366370", + "2968609671108192426237995" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1801216378033586944", - "expectedQty": "1777292159556318075", - "reserves": [ - "5831321119342745947245892", - "3322901041390997178708153" - ] + "type": "redeemMasset", + "inputQty": "1449322134664129806336", + "expectedQtys": [ + "950440168364977945335", + "515350446417359062289" + ], + "redemptionFee": "869593280798477883", + "reserves": [ + "5473937367211117085421035", + "2968094320661775067175706" + ], + "LPTokenSupply": "8342174511314076538320109" }, { - "type": "redeemBassets", - "inputQtys": [ - "19865991620740231168", - "2666132297928648704" + "type": "redeemMasset", + "inputQty": "2781291244669699620864", + "expectedQtys": [ + "1823922441830317930882", + "988972558098934208518" ], - "expectedQty": "22149973759590049107", - "swapFee": "13297963033574173", + "redemptionFee": "1668774746801819772", "reserves": [ - "5831301253351125207014724", - "3322898375258699250059449" + "5472113444769286767490153", + "2967105348103676132967188" ], - "LPTokenSupply": "9008285384956416661593841" + "LPTokenSupply": "8339393386946881518881222" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "350884742785308884992", - "outputIndex": 1, - "expectedQty": "349121507518388962569", - "swapFee": "275808337046770783", + "type": "redeemMasset", + "inputQty": "4043587578959142007603", + "expectedQtys": [ + "2651714908732331198029", + "1437820609305309383290" + ], + "redemptionFee": "2426152547375485204", "reserves": [ - "5831652138093910515899716", - "3322549253751180861096880" + "5469461729860554436292124", + "2965667527494370823583898" ], - "LPTokenSupply": "9008285412537250366270919", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8335350041983177114422139" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "179955798748041960226816", - "expectedQty": "177538087338137498670268", + "type": "redeemMasset", + "inputQty": "17834464884243082248192", + "expectedQtys": [ + "11695537165445905380154", + "6341588350239866613725" + ], + "redemptionFee": "10700678930545849348", "reserves": [ - "5831652138093910515899716", - "3502505052499222821323696" - ] + "5457766192695108530911970", + "2959325939144130956970173" + ], + "LPTokenSupply": "8317516647166827086758881" }, { "type": "redeemBassets", "inputQtys": [ - "1433688274762766745600", - "2400399129544529805312" + "19851271480067173122048", + "949045823196755394560" ], - "expectedQty": "3776714710650136490314", - "swapFee": "2267389259946049523", + "expectedQty": "20524646691958554034661", + "swapFee": "12322181323969514129", "reserves": [ - "5830218449819147749154116", - "3500104653369678291518384" + "5437914921215041357789922", + "2958376893320934201575613" ], - "LPTokenSupply": "9182044744514403777006301" + "LPTokenSupply": "8296980910511676960161502" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3136100288660402", - "expectedQty": "3189330762407986", - "swapFee": "1881660173196", + "type": "mintMulti", + "inputQtys": [ + "20919229813790907301888", + "35605468738634314153984" + ], + "expectedQty": "55928214110666922794840", "reserves": [ - "5830218446629816986746130", - "3500104653369678291518384" + "5458834151028832265091810", + "2993982362059568515729597" ], - "LPTokenSupply": "9182044741378491654363218" + "LPTokenSupply": "8352909124622343882956342" }, { - "type": "redeemMasset", - "inputQty": "70950418758137", - "expectedQtys": [ - "45023549549115", - "27029370636905" + "type": "mintMulti", + "inputQtys": [ + "18806547958701040", + "695571231282642" ], - "redemptionFee": "42570251254", + "expectedQty": "19243320916929453", "reserves": [ - "5830218446584793437197015", - "3500104653342648920881479" + "5458834169835380223792850", + "2993982362755139747012239" ], - "LPTokenSupply": "9182044741307545492630206" + "LPTokenSupply": "8352909143865664799885795" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "53399449673123110060032", - "expectedQty": "54099758748802654230944", - "swapFee": "32039669803873866036", - "reserves": [ - "5830218446584793437197015", - "3446004894593846266650535" - ], - "LPTokenSupply": "9128648495601402769956777" - }, - { - "type": "mint", "inputIndex": 0, - "inputQty": "29293112566221959168", - "expectedQty": "28785323231900515947", + "inputQty": "2791311788897463", + "expectedQty": "2827619614720133", + "swapFee": "1674787073338", "reserves": [ - "5830247739697359659156183", - "3446004894593846266650535" - ] + "5458834167007760609072717", + "2993982362755139747012239" + ], + "LPTokenSupply": "8352909141074520489695665" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "25452968275675399061504", - "expectedQty": "25108915518539303692543", + "type": "redeemBassets", + "inputQtys": [ + "22656523297652314112", + "15151288833965072384" + ], + "expectedQty": "37368961145445340939", + "swapFee": "22434837589821097", "reserves": [ - "5830247739697359659156183", - "3471457862869521665712039" - ] + "5458811510484462956758605", + "2993967211466305781939855" + ], + "LPTokenSupply": "8352871751922021213515737" }, { - "type": "redeemMasset", - "inputQty": "2975422288901302753689", - "expectedQtys": [ - "1893974824516198162504", - "1127714308240522630763" + "type": "redeemBassets", + "inputQtys": [ + "171415356180254", + "27709776126862" ], - "redemptionFee": "1785253373340781652", + "expectedQty": "196576551631722", + "swapFee": "118016741023", "reserves": [ - "5828353764872843460993679", - "3470330148561281143081276" + "5458811510313047600578351", + "2993967211438596005812993" ], - "LPTokenSupply": "9150810952679610005489743" + "LPTokenSupply": "8352871751725338446817093" }, { "type": "mintMulti", "inputQtys": [ - "30936031547851437768704", - "17631905028897803075584" + "28050038809533869981696", + "32370553427494577373184" ], - "expectedQty": "47793717521452758739746", + "expectedQty": "59756118498302062771953", "reserves": [ - "5859289796420694898762383", - "3487962053590178946156860" + "5486861549122581470560047", + "3026337764866090583186177" ], - "LPTokenSupply": "9198604670201062764229489" + "LPTokenSupply": "8412627870223640509589046" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "43576054840852779892736", - "outputIndex": 1, - "expectedQty": "43370669781676632115621", - "swapFee": "34256928504525380910", + "inputQty": "336384526272662848", + "expectedQty": "340753304525950345", + "swapFee": "201830715763597", "reserves": [ - "5902865851261547678655119", - "3444591383808502314041239" + "5486861208369276944609702", + "3026337764866090583186177" ], - "LPTokenSupply": "9198608095893913216767580", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8412627533859297308502557" }, { - "type": "mintMulti", - "inputQtys": [ - "160972359320853610496", - "16667172843403290624" - ], - "expectedQty": "174617897204287018672", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9933067675905376124928", + "expectedQty": "10062040614767147511258", + "swapFee": "5959840605543225674", "reserves": [ - "5903026823620868532265615", - "3444608050981345717331863" + "5476799167754509797098444", + "3026337764866090583186177" ], - "LPTokenSupply": "9198782713791117503786252" + "LPTokenSupply": "8402695062167452486700196" }, { - "type": "redeemBassets", - "inputQtys": [ - "6827301820255695", - "10979972864234308" - ], - "expectedQty": "17541177018531529", - "swapFee": "10531024826014", + "type": "mint", + "inputIndex": 0, + "inputQty": "6241732984376138924032", + "expectedQty": "6158034417194482787288", + "reserves": [ + "5483040900738885936022476", + "3026337764866090583186177" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "53433526945130360078336", + "outputIndex": 0, + "expectedQty": "53669744215782849814551", + "swapFee": "0", "reserves": [ - "5903026816793566712009920", - "3444608040001372853097555" + "5429371156523103086207925", + "3079771291811220943264513" ], - "LPTokenSupply": "9198782696240462562911309" + "LPTokenSupply": "8408853096584646969487484", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "2347718853732505088", - "2004781744718577664" + "type": "redeemMasset", + "inputQty": "6399326056363370269900", + "expectedQtys": [ + "4129394261379402097160", + "2342368854906294302412" ], - "expectedQty": "4284776044454885411", + "redemptionFee": "3839595633818022161", "reserves": [ - "5903029164512420444515008", - "3444610044783117571675219" + "5425241762261723684110765", + "3077428922956314648962101" ], - "LPTokenSupply": "9198786981016507017796720" + "LPTokenSupply": "8402454154487846981019800" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "832144489323346788352", - "expectedQty": "820970329067385705615", + "inputIndex": 0, + "inputQty": "35203913209798916571136", + "expectedQty": "34734672732377487057325", + "reserves": [ + "5460445675471522600681901", + "3077428922956314648962101" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "40696138694599385088", + "expectedQty": "40153242381204064867", "reserves": [ - "5903029164512420444515008", - "3445442189272440918463571" + "5460486371610217200066989", + "3077428922956314648962101" ] }, { "type": "redeemBassets", "inputQtys": [ - "615682104181409447936", - "794487074665786507264" + "4265720927988173766656", + "4839326376682333405184" ], - "expectedQty": "1388799692925407706644", - "swapFee": "833780083805527940", + "expectedQty": "9004365115052245003294", + "swapFee": "5405862586583296980", "reserves": [ - "5902413482408239035067072", - "3444647702197775131956307" + "5456220650682229026300333", + "3072589596579632315556917" ], - "LPTokenSupply": "9198218401250573570820544" + "LPTokenSupply": "8428219750071225502171415" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "212653360887808768", - "expectedQty": "215418450410573609", - "swapFee": "127592016532685", + "inputQty": "208410129045072347136", + "expectedQty": "210185737530740667027", + "swapFee": "125046077427043408", "reserves": [ - "5902413482408239035067072", - "3444647486779324721382698" + "5456220650682229026300333", + "3072379410842101574889890" ], - "LPTokenSupply": "9198218188609971884665044" + "LPTokenSupply": "8428011352446788172528619" }, { - "type": "redeemMasset", - "inputQty": "20788505256634471573094", - "expectedQtys": [ - "13331792068761732186767", - "7780431543943189845093" - ], - "redemptionFee": "12473103153980682943", + "type": "swap", + "inputIndex": 1, + "inputQty": "1977174020657126572032", + "outputIndex": 0, + "expectedQty": "1985783737952992646070", + "swapFee": "0", "reserves": [ - "5889081690339477302880305", - "3436867055235381531537605" + "5454234866944276033654263", + "3074356584862758701461922" ], - "LPTokenSupply": "9177430930663652811160244" + "LPTokenSupply": "8428011352446788172528619", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "14727529673158679330816", - "6659944023139200008192" - ], - "expectedQty": "21042040786158219738243", + "type": "swap", + "inputIndex": 0, + "inputQty": "757958428633796706304", + "outputIndex": 1, + "expectedQty": "754070676963483448780", + "swapFee": "598277462908933413", "reserves": [ - "5903809220012635982211121", - "3443526999258520731545797" + "5454992825372909830360567", + "3073602514185795218013142" ], - "LPTokenSupply": "9198472971449811030898487" + "LPTokenSupply": "8428011412274534463421960", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "3537010911259466609459", + "inputQty": "572791953989059058073", "expectedQtys": [ - "2268779675863104180734", - "1323315808160019280029" + "370514597226824807046", + "208765553692741157424" ], - "redemptionFee": "2122206546755679965", + "redemptionFee": "343675172393435434", "reserves": [ - "5901540440336772878030387", - "3442203683450360712265768" + "5454622310775683005553521", + "3073393748632102476855718" ], - "LPTokenSupply": "9194936172759206239857024" + "LPTokenSupply": "8427438654688062643707430" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "42862448645452007997440", - "expectedQty": "42285448155521166417629", + "inputIndex": 0, + "inputQty": "177377672706922224025600", + "expectedQty": "175001346256052987581319", "reserves": [ - "5901540440336772878030387", - "3485066132095812720263208" + "5631999983482605229579121", + "3073393748632102476855718" ] }, { - "type": "redeemBassets", + "type": "redeemMasset", + "inputQty": "2630811900199236403", + "expectedQtys": [ + "1721353771406217646", + "939346224385602783" + ], + "redemptionFee": "1578487140119541", + "reserves": [ + "5631998262128833823361475", + "3073392809285878091252935" + ], + "LPTokenSupply": "8602437370290064146064300" + }, + { + "type": "mintMulti", "inputQtys": [ - "104400881848475123712", - "23823405546729410560" + "432850679325553524736", + "514170436290078572544" + ], + "expectedQty": "936649151239030352722", + "reserves": [ + "5632431112808159376886211", + "3073906979722168169825479" ], - "expectedQty": "126092164688577120551", - "swapFee": "75700719244693088", + "LPTokenSupply": "8603374019441303176417022" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1322450846268343296", + "expectedQty": "1339678259713004387", + "swapFee": "793470507761005", "reserves": [ - "5901436039454924402906675", - "3485042308690265990852648" + "5632429773129899663881824", + "3073906979722168169825479" ], - "LPTokenSupply": "9237095460619391508930321" + "LPTokenSupply": "8603372697069803958849826" }, { "type": "mintMulti", "inputQtys": [ - "411163946004395411374080", - "544679715992012410847232" + "27769584392612270080", + "268454334991334768640" + ], + "expectedQty": "293474965390512161209", + "reserves": [ + "5632457542714292276151904", + "3074175434057159504594119" ], - "expectedQty": "941297183782611836507610", + "LPTokenSupply": "8603666172035194471011035" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "564182397904215408640", + "outputIndex": 1, + "expectedQty": "561112454555012142839", + "swapFee": "445274621536644430", "reserves": [ - "6312599985459319814280755", - "4029722024682278401699880" + "5633021725112196491560544", + "3073614321602604492451280" ], - "LPTokenSupply": "10178392644402003345437931" + "LPTokenSupply": "8603666216562656624675478", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "56361659493726171955", + "inputQty": "62730344408170050355", "expectedQtys": [ - "34934311355101907014", - "22300726199827344224" + "41046382687351369836", + "22396638222678174787" + ], + "redemptionFee": "37638206644902030", + "reserves": [ + "5632980678729509140190708", + "3073591924964381814276493" + ], + "LPTokenSupply": "8603603489982069119115326" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "10090430495225638912", + "expectedQty": "10221885052805809710", + "swapFee": "6054258297135383", + "reserves": [ + "5632970456844456334380998", + "3073591924964381814276493" + ], + "LPTokenSupply": "8603593400156999723189952" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "20698253976034944745472", + "expectedQty": "20967765905467366436674", + "swapFee": "12418952385620966847", + "reserves": [ + "5612002690938988967944324", + "3073591924964381814276493" ], - "redemptionFee": "33816995696235703", + "LPTokenSupply": "8582896388076203340541164" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "386804977598382680834048", + "expectedQty": "389855674547062809103887", + "swapFee": "232082986559029608500", "reserves": [ - "6312565051147964712373741", - "4029699723956078574355656" + "5612002690938988967944324", + "2683736250417319005172606" ], - "LPTokenSupply": "10178336286124209188889546" + "LPTokenSupply": "8196114618776476562667966" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3421236547292399403008", - "expectedQty": "3373637625618834952438", + "inputQty": "632302059242436427776", + "expectedQty": "627282765310925629339", "reserves": [ - "6312565051147964712373741", - "4033120960503370973758664" + "5612002690938988967944324", + "2684368552476561441600382" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "3831969415692113920", - "5519851190474765312" + "type": "redeemMasset", + "inputQty": "143692983818924877414", + "expectedQtys": [ + "98322184386719628491", + "47030087887279933824" ], - "expectedQty": "9209539888124152209", - "swapFee": "5529041357689104", + "redemptionFee": "86215790291354926", "reserves": [ - "6312561219178549020259821", - "4033115440652180498993352" + "5611904368754602248315833", + "2684321522388674161666558" ], - "LPTokenSupply": "10181700709233802677769580" + "LPTokenSupply": "8196598217179547592555383" }, { "type": "mintMulti", "inputQtys": [ - "40688518749847945216", - "12045686528453062656" + "30149064909404793470976", + "176114697394226978619392" ], - "expectedQty": "51871392368288578350", + "expectedQty": "204408512184141888544295", "reserves": [ - "6312601907697298868205037", - "4033127486338708952056008" + "5642053433664007041786809", + "2860436219782901140285950" ], - "LPTokenSupply": "10181752580626170966347930" + "LPTokenSupply": "8401006729363689481099678" }, { - "type": "redeemMasset", - "inputQty": "216017335917933599129", - "expectedQtys": [ - "133848594056028125581", - "85515996666432709774" + "type": "redeemBassets", + "inputQtys": [ + "116101785797577506816", + "39123976920613445632" ], - "redemptionFee": "129610401550760159", + "expectedQty": "153302798412138528888", + "swapFee": "92036901187995914", "reserves": [ - "6312468059103242840079456", - "4033041970342042519346234" + "5641937331878209464279993", + "2860397095805980526840318" ], - "LPTokenSupply": "10181536576251293187824816" + "LPTokenSupply": "8400853343732066273374466" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "82558373006066650710016", - "31241940815310229602304" + "5351332714443167498240", + "21646727617195299307520" ], - "expectedQty": "111954717413964016435003", + "expectedQty": "26743650555742055768455", + "swapFee": "16055823827741878588", "reserves": [ - "6395026432109309490789472", - "4064283911157352748948538" + "5636585999163766296781753", + "2838750368188785227532798" ], - "LPTokenSupply": "10293491293665257204259819" + "LPTokenSupply": "8374095242934879249915280" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "92963972266516488912896", - "expectedQty": "94522543444290177831005", - "swapFee": "55778383359909893347", + "inputIndex": 1, + "inputQty": "136690862659689915613184", + "expectedQty": "137730958897371809771475", + "swapFee": "82014517595813949367", "reserves": [ - "6300503888665019312958467", - "4064283911157352748948538" + "5636585999163766296781753", + "2701019409291413417761323" ], - "LPTokenSupply": "10200532899237076706336257" + "LPTokenSupply": "8237412581726948915697032" }, { "type": "mintMulti", "inputQtys": [ - "2433579853407991103488", - "13637020709410104672256" + "23693359851399655981056", + "51360063246660267933696" ], - "expectedQty": "15838516899687958367949", + "expectedQty": "74311360522721457021862", "reserves": [ - "6302937468518427304061955", - "4077920931866762853620794" + "5660279359015165952762809", + "2752379472538073685695019" ], - "LPTokenSupply": "10216371416136764664704206" + "LPTokenSupply": "8311723942249670372718894" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "60798950188230000640", + "expectedQty": "60307819475033474416", + "reserves": [ + "5660279359015165952762809", + "2752440271488261915695659" + ] + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "22090046251563", - "expectedQty": "22459740549571", - "swapFee": "13254027750", + "inputQty": "4007951114319041134592", + "expectedQty": "3952218868228477900675", "reserves": [ - "6302937468495967563512384", - "4077920931866762853620794" - ], - "LPTokenSupply": "10216371416114675943855418" + "5664287310129484993897401", + "2752440271488261915695659" + ] }, { "type": "mintMulti", "inputQtys": [ - "259926943579216609280", - "116222178965174501376" + "429186342299641708544", + "5488924262624057622528" ], - "expectedQty": "370092187478193471224", + "expectedQty": "5867793291779626061154", "reserves": [ - "6303197395439546780121664", - "4078037154045728028122170" + "5664716496471784635605945", + "2757929195750885973318187" ], - "LPTokenSupply": "10216741508302154137326642" + "LPTokenSupply": "8321604262229153510155139" }, { - "type": "redeemMasset", - "inputQty": "13112778935947221585100", - "expectedQtys": [ - "8085047713940119179527", - "5230857119203558851976" + "type": "mintMulti", + "inputQtys": [ + "6349782664767940329472", + "23794735480676965941248" ], - "redemptionFee": "7867667361568332951", + "expectedQty": "29863232298127229782034", "reserves": [ - "6295112347725606660942137", - "4072806296926524469270194" + "5671066279136552575935417", + "2781723931231562939259435" ], - "LPTokenSupply": "10203629516132943072574837" + "LPTokenSupply": "8351467494527280739937173" }, { "type": "mintMulti", "inputQtys": [ - "3248169055582299881472", - "23603142147758714880" + "454336934922747392", + "260223765239292192" ], - "expectedQty": "3216054496373276965967", + "expectedQty": "706138921528142451", "reserves": [ - "6298360516781188960823609", - "4072829900068672227985074" + "5671066733473487498682809", + "2781724191455328178551627" ], - "LPTokenSupply": "10206845570629316349540804" + "LPTokenSupply": "8351468200666202268079624" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "28007518740832082460672", - "36423936752331217960960" + "35239351123908218585088", + "16325284095148253249536" ], - "expectedQty": "63444422095318690247617", + "expectedQty": "50942847501062462394533", + "swapFee": "30584058935999076882", "reserves": [ - "6326368035522021043284281", - "4109253836821003445946034" + "5635827382349579280097721", + "2765398907360179925302091" ], - "LPTokenSupply": "10270289992724635039788421" + "LPTokenSupply": "8300497827512097406515896" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "11301392181312717062144", - "expectedQty": "11143068027288726593159", + "inputQty": "159266469039239744", + "expectedQty": "160478834560736525", + "swapFee": "95559881423543", "reserves": [ - "6326368035522021043284281", - "4120555229002316163008178" - ] + "5635827382349579280097721", + "2765398746881345364565566" + ], + "LPTokenSupply": "8300497668255184355418506" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "17236699280789104640", + "expectedQty": "17367907771721927791", + "swapFee": "10342019568473462", + "reserves": [ + "5635827382349579280097721", + "2765381378973573642637775" + ], + "LPTokenSupply": "8300480432590105523161212" }, { "type": "redeemBassets", "inputQtys": [ - "2505832623767287758848", - "396853120131462529024" + "6005286750754705506304", + "13294420217328429957120" ], - "expectedQty": "2854450624407263374992", - "swapFee": "1713698593800638408", + "expectedQty": "19108187312991969969214", + "swapFee": "11471795465074226517", "reserves": [ - "6323862202898253755525433", - "4120158375882184700479154" + "5629822095598824574591417", + "2752086958756245212680655" ], - "LPTokenSupply": "10278577067798782082432019" + "LPTokenSupply": "8281361920661194986388131" }, { "type": "mintMulti", "inputQtys": [ - "17800614134563634937856", - "22178798485252333371392" + "24238487397795385344", + "1873878271986515200" ], - "expectedQty": "39365327009702193980825", + "expectedQty": "25760496990585431771", "reserves": [ - "6341662817032817390463289", - "4142337174367437033850546" + "5629846334086222369976761", + "2752088832634517199195855" ], - "LPTokenSupply": "10317942394808484276412844" + "LPTokenSupply": "8281387681158185571819902" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1145034925761674240", - "outputIndex": 1, - "expectedQty": "1140648476490245517", - "swapFee": "900436406505381", + "type": "redeemBassets", + "inputQtys": [ + "489243164998682542080", + "614455521149139943424" + ], + "expectedQty": "1091912687300848424952", + "swapFee": "655540936942674659", "reserves": [ - "6341663962067743152137529", - "4142336033718960543605029" + "5629357090921223687434681", + "2751474377113368059252431" ], - "LPTokenSupply": "10317942394898527917063382", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8280295178484041474987755" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "17689002437530500464640", - "expectedQty": "17984417068927282222016", - "swapFee": "10613401462518300278", + "type": "redeemBassets", + "inputQtys": [ + "109683269879820075008", + "161389517125013733376" + ], + "expectedQty": "268238570685377899614", + "swapFee": "161039766270989333", "reserves": [ - "6323679544998815869915513", - "4142336033718960543605029" + "5629247407651343867359673", + "2751312987596243045519055" ], - "LPTokenSupply": "10300254453801143668428769" + "LPTokenSupply": "8280026794977566453197740" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "1692509853052204744704", - "expectedQty": "1720768483376804064766", - "swapFee": "1015505911831322846", + "inputQty": "743674222951891200", + "expectedQty": "733344801981858980", + "reserves": [ + "5629248151325566819250873", + "2751312987596243045519055" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "321147765797737994387456", + "outputIndex": 0, + "expectedQty": "322732274105871939094938", + "swapFee": "0", "reserves": [ - "6321958776515439065850747", - "4142336033718960543605029" + "5306515877219694880155935", + "3072460753393981039906511" ], - "LPTokenSupply": "10298562045498682646816349" + "LPTokenSupply": "8280027528322368435056720", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "68237064566786781872128", - "76749801654189266305024" + "2721571052707702112256", + "1251314866735902621696" ], - "expectedQty": "142748590093990536086577", - "swapFee": "85700574401034942617", + "expectedQty": "3925138726853705151477", "reserves": [ - "6253721711948652283978619", - "4065586232064771277300005" + "5309237448272402582268191", + "3073712068260716942528207" ], - "LPTokenSupply": "10155736324887731179281415" + "LPTokenSupply": "8283952667049222140208197" }, { "type": "redeemMasset", - "inputQty": "25159841207918648098816", + "inputQty": "10408179833300864204", "expectedQtys": [ - "15483686717884624289771", - "10066048097656821897001" + "6666665619674867277", + "3859576967483578204" ], - "redemptionFee": "15095904724751188859", + "redemptionFee": "6244907899980518", "reserves": [ - "6238238025230767659688848", - "4055520183967114455403004" + "5309230781606782907400914", + "3073708208683749458950003" ], - "LPTokenSupply": "10130577993270285006301484" + "LPTokenSupply": "8283942259493879629342044" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "3329676617332872192", - "expectedQty": "3272919978016945079", + "inputQty": "43947590764747686936576", + "expectedQty": "44512225423750175411865", + "swapFee": "26368554458848612161", "reserves": [ - "6238241354907384992561040", - "4055520183967114455403004" - ] + "5264718556183032731989049", + "3073708208683749458950003" + ], + "LPTokenSupply": "8239997305584577827266684" }, { "type": "mintMulti", "inputQtys": [ - "41741450047440052813824", - "38820805844142582136832" + "12991955609428781170688", + "30883822308215291379712" ], - "expectedQty": "79306521371458438338363", + "expectedQty": "43415682815827401238114", "reserves": [ - "6279982804954825045374864", - "4094340989811257037539836" + "5277710511792461513159737", + "3104592030991964750329715" ], - "LPTokenSupply": "10209887787561721461584926" + "LPTokenSupply": "8283412988400405228504798" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "13127656633092431413248", - "expectedQty": "13347124164537582364431", - "swapFee": "7876593979855458847", + "inputQty": "75347335185315429089280", + "expectedQty": "76310695057855543851447", + "swapFee": "45208401111189257453", "reserves": [ - "6266635680790287463010433", - "4094340989811257037539836" + "5201399816734605969308290", + "3104592030991964750329715" ], - "LPTokenSupply": "10196760918588027015717562" + "LPTokenSupply": "8208070174055200918341263" }, { - "type": "redeemMasset", - "inputQty": "90449626135140853350", - "expectedQtys": [ - "55554383402997851035", - "36296762843232561247" - ], - "redemptionFee": "54269775681084512", + "type": "mint", + "inputIndex": 0, + "inputQty": "111039211775407570944", + "expectedQty": "109573798009595626067", "reserves": [ - "6266580126406884465159398", - "4094304693048413804978589" - ], - "LPTokenSupply": "10196670474388869442972663" + "5201510855946381376879234", + "3104592030991964750329715" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1085820709005782417408", - "outputIndex": 1, - "expectedQty": "1081661351771522206308", - "swapFee": "853862680484181672", + "type": "mintMulti", + "inputQtys": [ + "316575024311529570304", + "49423912117039652864" + ], + "expectedQty": "361354901224259719573", "reserves": [ - "6267665947115890247576806", - "4093223031696642282772281" + "5201827430970692906449538", + "3104641454904081789982579" ], - "LPTokenSupply": "10196670559775137491390830", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8208541102754434773686903" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "54101333029787664384", - "expectedQty": "53341762476235307388", + "type": "mintMulti", + "inputQtys": [ + "141591298097995284480", + "4663822106789326880768" + ], + "expectedQty": "4759545923934632016620", "reserves": [ - "6267665947115890247576806", - "4093277133029672070436665" - ] + "5201969022268790901734018", + "3109305277010871116863347" + ], + "LPTokenSupply": "8213300648678369405703523" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1886709498075429", - "outputIndex": 0, - "expectedQty": "1892452551733162", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "282945507032423858176", + "outputIndex": 1, + "expectedQty": "281647434512726332026", + "swapFee": "223370164461075886", "reserves": [ - "6267665945223437695843644", - "4093277134916381568512094" + "5202251967775823325592194", + "3109023629576358390531321" ], - "LPTokenSupply": "10196723901537613726698218", + "LPTokenSupply": "8213300671015385851811111", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "195157100982219649843", - "expectedQtys": [ - "119886114392189651610", - "78295029620954946037" + "type": "redeemBassets", + "inputQtys": [ + "2013926645904550658048", + "1241027814256157655040" ], - "redemptionFee": "117094260589331789", + "expectedQty": "3216672449234054785995", + "swapFee": "1931162166840537193", "reserves": [ - "6267546059109045506192034", - "4093198839886760613566057" + "5200238041129918774934146", + "3107782601762102232876281" ], - "LPTokenSupply": "10196528756146057565981553" + "LPTokenSupply": "8210082260520201640541641" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8401470577232143450112", - "2445025917811085017088" + "53664928563227304", + "76405309077804080" ], - "expectedQty": "10669081072190808661883", - "swapFee": "6405291818405528514", + "expectedQty": "128641136706687020", "reserves": [ - "6259144588531813362741922", - "4090753813968949528548969" + "5200238094794847338161450", + "3107782678167411310680361" ], - "LPTokenSupply": "10185853910311230192344006" + "LPTokenSupply": "8210082389161338347228661" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "99003444434317344768", - "expectedQty": "100658261351462733479", - "swapFee": "59402066660590406", + "type": "redeemBassets", + "inputQtys": [ + "3351591757127736098816", + "7033876645934609203200" + ], + "expectedQty": "10274889524182091716443", + "swapFee": "6168634895446522943", "reserves": [ - "6259043930270461900008443", - "4090753813968949528548969" + "5196886503037719602062634", + "3100748801521476701477161" ], - "LPTokenSupply": "10185754912807002541058278" + "LPTokenSupply": "8199801947865750353641568" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4819898692332918145024", - "expectedQty": "4900455732605510989652", - "swapFee": "2891939215399750887", + "inputIndex": 1, + "inputQty": "77472634524876439552", + "expectedQty": "78163166801565614457", + "swapFee": "46483580714925863", "reserves": [ - "6254143474537856389018791", - "4090753813968949528548969" + "5196886503037719602062634", + "3100670638354675135862704" ], - "LPTokenSupply": "10180935303308591162888342" + "LPTokenSupply": "8199724479879583548694602" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "19277393586514298929152", - "expectedQty": "19599465580563538044728", - "swapFee": "11566436151908579357", + "inputQty": "15470253153701662294016", + "expectedQty": "15265978014074374649460", "reserves": [ - "6234544008957292850974063", - "4090753813968949528548969" - ], - "LPTokenSupply": "10161659066365692054817125" + "5212356756191421264356650", + "3100670638354675135862704" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "127597639890889048064", - "expectedQty": "129340163836274604296", - "swapFee": "76558583934533428", + "type": "mintMulti", + "inputQtys": [ + "155895740778063456", + "318533834744700928" + ], + "expectedQty": "469372077982651787", "reserves": [ - "6234544008957292850974063", - "4090624473805113253944673" + "5212356912087162042420106", + "3100670956888509880563632" ], - "LPTokenSupply": "10161531476381659559222403" + "LPTokenSupply": "8214990927265735905995849" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "10041123521622716710912", - "expectedQty": "9870208415518155402988", + "inputIndex": 1, + "inputQty": "20347398530604942229504", + "expectedQty": "20155506412809481929461", "reserves": [ - "6244585132478915567684975", - "4090624473805113253944673" + "5212356912087162042420106", + "3121018355419114822793136" ] }, { "type": "redeemBassets", "inputQtys": [ - "159687833030244544", - "138210649643098256" + "187552134546997696", + "341940378310131392" ], - "expectedQty": "293237194505455221", - "swapFee": "176047945470555", + "expectedQty": "523788179226952161", + "swapFee": "314461584486863", "reserves": [ - "6244584972791082537440431", - "4090624335594463610846417" + "5212356724535027495422410", + "3121018013478736512661744" ], - "LPTokenSupply": "10171401391401540058246669" + "LPTokenSupply": "8235145909607350734934971" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8697750533673982099456", - "9322275906334403592192" + "151040664659708084224", + "9410071699690385047552" ], - "expectedQty": "17740925023588534929234", - "swapFee": "10650945581502022170", + "expectedQty": "9470128706823989111454", "reserves": [ - "6235887222257408555340975", - "4081302059688129207254225" + "5212507765199687203506634", + "3130428085178426897709296" ], - "LPTokenSupply": "10153650880526928171497481" + "LPTokenSupply": "8244616038314174724046425" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "8674646883960770002944", - "expectedQty": "8792964069184682646433", - "swapFee": "5204788130376462001", + "inputQty": "6046036638582516482048", + "expectedQty": "5988776527153726021683", "reserves": [ - "6235887222257408555340975", - "4072509095618944524607792" - ], - "LPTokenSupply": "10144976754121780439140737" + "5212507765199687203506634", + "3136474121817009414191344" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "371585992790500179968", - "expectedQty": "377798863077682434660", - "swapFee": "222951595674300107", + "type": "redeemMasset", + "inputQty": "10378435359895", + "expectedQtys": [ + "6552879154007", + "3943003409444" + ], + "redemptionFee": "6227061215", "reserves": [ - "6235509423394330872906315", - "4072509095618944524607792" + "5212507765193134324352627", + "3136474121813066410781900" ], - "LPTokenSupply": "10144605190424149506390779" + "LPTokenSupply": "8250604814830950637414334" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "89970785240428", - "expectedQty": "91475078096228", - "swapFee": "53982471144", + "type": "mint", + "inputIndex": 1, + "inputQty": "154116840299889600495616", + "expectedQty": "152636434514467695693310", "reserves": [ - "6235509423302855794810087", - "4072509095618944524607792" - ], - "LPTokenSupply": "10144605190334184119397465" + "5212507765193134324352627", + "3290590962112956011277516" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1468060529087628181504", - "expectedQty": "1488075913431638909307", - "swapFee": "880836317452576908", + "inputQty": "477734354549879936", + "expectedQty": "482139196507181323", + "swapFee": "286640612729927", "reserves": [ - "6235509423302855794810087", - "4071021019705512885698485" + "5212507765193134324352627", + "3290590479973759504096193" ], - "LPTokenSupply": "10143137217888728236473651" + "LPTokenSupply": "8403240771639727844500700" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "1608574043992400068608", - "expectedQty": "1581169374485796756922", + "inputQty": "4031148172848869376", + "outputIndex": 1, + "expectedQty": "4014565757273079214", + "swapFee": "3182947821650999", "reserves": [ - "6237117997346848194878695", - "4071021019705512885698485" - ] + "5212511796341307173222003", + "3290586465408002231016979" + ], + "LPTokenSupply": "8403240771958022626665799", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "346393076038541180928", - "237184204325244862464" - ], - "expectedQty": "574345615859735345720", + "type": "swap", + "inputIndex": 1, + "inputQty": "1092048553626952663040", + "outputIndex": 0, + "expectedQty": "1095679578409048505860", + "swapFee": "0", "reserves": [ - "6237464390422886736059623", - "4071258203909838130560949" + "5211416116762898124716143", + "3291678513961629183680019" ], - "LPTokenSupply": "10145292732879073768576293" + "LPTokenSupply": "8403240771958022626665799", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "236824252057491781713920", - "expectedQty": "240015855547642059126190", - "swapFee": "142094551234495069028", + "type": "mintMulti", + "inputQtys": [ + "14835410163139520495616", + "28956115263385566707712" + ], + "expectedQty": "43316340168038071655341", "reserves": [ - "6237464390422886736059623", - "3831242348362196071434759" + "5226251526926037645211759", + "3320634629225014750387731" ], - "LPTokenSupply": "9908482690276705436369275" + "LPTokenSupply": "8446557112126060698321140" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5931749572098885", - "expectedQty": "6032218954811959", - "swapFee": "3559049743259", + "type": "redeemMasset", + "inputQty": "2555765773863", + "expectedQtys": [ + "1580414405069", + "1004157334364" + ], + "redemptionFee": "1533459464", "reserves": [ - "6237464384390667781247664", - "3831242348362196071434759" + "5226251526924457230806690", + "3320634629224010593053367" ], - "LPTokenSupply": "9908482684345311769244715" + "LPTokenSupply": "8446557112123505085893223" }, { "type": "redeemBassets", "inputQtys": [ - "165353920318730895360", - "287275469675634753536" + "2773658843451426865152", + "4157630845270572924928" ], - "expectedQty": "445829534173369002051", - "swapFee": "267658315493317391", + "expectedQty": "6854661079940572170870", + "swapFee": "4115265807448812590", "reserves": [ - "6237299030470349050352304", - "3830955072892520436681223" + "5223477868081005803941538", + "3316476998378740020128439" ], - "LPTokenSupply": "9908036613918654456257011" + "LPTokenSupply": "8439698747304337809791021" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "424746788249876352", - "expectedQty": "430407297720576337", - "swapFee": "254848072949925", + "inputQty": "67364681197362675712", + "expectedQty": "66707179238621214484", "reserves": [ - "6237299030470349050352304", - "3830954642485222716104886" - ], - "LPTokenSupply": "9908036189197351013675651" + "5223477868081005803941538", + "3316544363059937382804151" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "45160673747550324391936", - "39566385580758750199808" + "32370728682546110922752", + "26296863796250739212288" ], - "expectedQty": "83404546443064479758259", - "swapFee": "50072771528755941419", + "expectedQty": "57990199249027285443399", "reserves": [ - "6192138356722798725960368", - "3791388256904463965905078" + "5255848596763551914864290", + "3342841226856188122016439" ], - "LPTokenSupply": "9824586577259910653570113" + "LPTokenSupply": "8497755653732603716448904" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "3224982493932272640", - "outputIndex": 1, - "expectedQty": "3210873134177621864", - "swapFee": "2535454604798003", + "inputIndex": 1, + "inputQty": "8738403217145955614720", + "outputIndex": 0, + "expectedQty": "8766768387915335581055", + "swapFee": "0", "reserves": [ - "6192141581705292658233008", - "3791385046031329788283214" + "5247081828375636579283235", + "3351579630073334077631159" ], - "LPTokenSupply": "9824586577513456114049913", + "LPTokenSupply": "8497755653732603716448904", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "4466519794137328045260", - "expectedQtys": [ - "2813424089751117302822", - "1722630834789327002013" + "type": "mintMulti", + "inputQtys": [ + "79037675087627412307968", + "229163030256125290217472" ], - "redemptionFee": "2679911876482396827", + "expectedQty": "304908602514309192196422", "reserves": [ - "6189328157615541540930186", - "3789662415196540461281201" + "5326119503463263991591203", + "3580742660329459367848631" ], - "LPTokenSupply": "9820120325710506434244335" + "LPTokenSupply": "8802664256246912908645326" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "801824547106082652160", - "expectedQty": "815417852043143751911", - "swapFee": "481094728263649591", + "type": "mintMulti", + "inputQtys": [ + "32365263274261486764032", + "20947849182434427928576" + ], + "expectedQty": "52688077474637021599439", "reserves": [ - "6188512739763498397178275", - "3789662415196540461281201" + "5358484766737525478355235", + "3601690509511893795777207" ], - "LPTokenSupply": "9819318549272873177957134" + "LPTokenSupply": "8855352333721549930244765" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "20770890928533968781312", - "expectedQty": "21047146504575735787989", - "swapFee": "12462534557120381268", + "type": "redeemMasset", + "inputQty": "729017760384027721728", + "expectedQtys": [ + "440873107950067232716", + "296331623196821025453" + ], + "redemptionFee": "437410656230416633", "reserves": [ - "6188512739763498397178275", - "3768615268691964725493212" + "5358043893629575411122519", + "3601394177888696974751754" ], - "LPTokenSupply": "9798548904597794921213948" + "LPTokenSupply": "8854623359702231525564700" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1441758766019309469696", - "expectedQty": "1466228861318551132191", - "swapFee": "865055259611585681", + "inputIndex": 1, + "inputQty": "271691446003758080", + "expectedQty": "274282061268978041", + "swapFee": "163014867602254", "reserves": [ - "6187046510902179846046084", - "3768615268691964725493212" + "5358043893629575411122519", + "3601393903606635705773713" ], - "LPTokenSupply": "9797107232337301572902820" + "LPTokenSupply": "8854623088027087008566845" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "136506040062216617984", - "expectedQty": "138822825186230591975", - "swapFee": "81903624037329970", + "type": "mintMulti", + "inputQtys": [ + "3425738786348866207744", + "4451512707252928643072" + ], + "expectedQty": "7788659942820574920808", "reserves": [ - "6186907688076993615454109", - "3768615268691964725493212" + "5361469632415924277330263", + "3605845416313888634416785" ], - "LPTokenSupply": "9796970734487601760017833" + "LPTokenSupply": "8862411747969907583487653" }, { "type": "redeemBassets", "inputQtys": [ - "306490517948693557018624", - "230687318168635722170368" + "9319287091681966424064", + "163895611843101807607808" ], - "expectedQty": "528721878852660866722789", - "swapFee": "317423581460472803715", + "expectedQty": "171466452407535055373328", + "swapFee": "102941636426376859339", "reserves": [ - "5880417170128300058435485", - "3537927950523329003322844" + "5352150345324242310906199", + "3441949804470786826808977" ], - "LPTokenSupply": "9267963174411626467771699" + "LPTokenSupply": "8690852648089588788940918" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "498468099225073221632", - "expectedQty": "505072536963439181360", - "swapFee": "299080859535043932", + "inputIndex": 0, + "inputQty": "7459534849511363969024", + "expectedQty": "7552971537716183892330", + "swapFee": "4475720909706818381", "reserves": [ - "5880417170128300058435485", - "3537422877986365564141484" + "5344597373786526127013869", + "3441949804470786826808977" ], - "LPTokenSupply": "9267464736220487348054460" + "LPTokenSupply": "8683393560812168395653732" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "152548011621654134784", - "outputIndex": 0, - "expectedQty": "153119576691267816893", - "swapFee": "0", + "inputQty": "45252931117282395947008", + "expectedQty": "45673816837574194985286", + "swapFee": "27151758670369437568", "reserves": [ - "5880264050551608790618592", - "3537575425997987218276268" + "5344597373786526127013869", + "3396275987633212631823691" ], - "LPTokenSupply": "9267464736220487348054460", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8638143344870753036650480" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3309562575936885882880", - "5255337581923274850304" + "12618824344064", + "16653840588698" ], - "expectedQty": "8435655953261371496678", - "swapFee": "5064432231295600258", + "expectedQty": "28945676856119", "reserves": [ - "5876954487975671904735712", - "3532320088416063943425964" + "5344597373799144951357933", + "3396275987649866472412389" ], - "LPTokenSupply": "9259024522278217810517548" + "LPTokenSupply": "8638143344899698713506599" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1513318511210179072", - "expectedQty": "1539119458869638828", - "swapFee": "907991106726107", + "type": "redeemMasset", + "inputQty": "40177462913718589849", + "expectedQtys": [ + "24843709439438577628", + "15787174956705447718" + ], + "redemptionFee": "24106477748231153", "reserves": [ - "5876952948856213035096884", - "3532320088416063943425964" + "5344572530089705512780305", + "3396260200474909766964671" ], - "LPTokenSupply": "9259023009050505711011086" + "LPTokenSupply": "8638103169847432769739865" }, { - "type": "redeemMasset", - "inputQty": "17809039202673235", - "expectedQtys": [ - "11297097720237529", - "6790077369219153" + "type": "mintMulti", + "inputQtys": [ + "1528027329233769988096", + "3824773175383361060864" ], - "redemptionFee": "10685423521603", + "expectedQty": "5295518170140482417284", "reserves": [ - "5876952937559115314859355", - "3532320081625986574206811" + "5346100557418939282768401", + "3400084973650293128025535" ], - "LPTokenSupply": "9259022991242535050690011" + "LPTokenSupply": "8643398688017573252157149" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "12595125932957917184", - "expectedQty": "12809863349436391821", - "swapFee": "7557075559774750", + "type": "redeemMasset", + "inputQty": "2574266778952909665075", + "expectedQtys": [ + "1591275860910524818158", + "1012041035424602759373" + ], + "redemptionFee": "1544560067371745799", "reserves": [ - "5876940127695765878467534", - "3532320081625986574206811" + "5344509281558028757950243", + "3399072932614868525266162" ], - "LPTokenSupply": "9259010396872309648750302" + "LPTokenSupply": "8640824575694627079666653" }, { "type": "redeemMasset", - "inputQty": "919123269058463635865", + "inputQty": "1048178926603332694835", "expectedQtys": [ - "583041946318456945564", - "350435895323383576439" + "647928997020957959273", + "412078602544443083023" ], - "redemptionFee": "551473961435078181", + "redemptionFee": "628907355961999616", "reserves": [ - "5876357085749447421521970", - "3531969645730663190630372" + "5343861352561007799990970", + "3398660854012324082183139" ], - "LPTokenSupply": "9258091328750647328622255" + "LPTokenSupply": "8639776459658759343171779" }, { "type": "mintMulti", "inputQtys": [ - "102125270305708793921536", - "138530081649185412612096" + "319326371457368768", + "169509273929493504" ], - "expectedQty": "236985810732235842624728", + "expectedQty": "483024512089763700", "reserves": [ - "5978482356055156215443506", - "3670499727379848603242468" + "5343861671887379257359738", + "3398661023521598011676643" ], - "LPTokenSupply": "9495077139482883171246983" + "LPTokenSupply": "8639776942683271432935479" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1068364244224280363008", - "expectedQty": "1086501819997655056411", - "swapFee": "641018546534568217", + "inputQty": "2839882527361016528896", + "expectedQty": "2875572816739018626360", + "swapFee": "1703929516416609917", "reserves": [ - "5977395854235158560387095", - "3670499727379848603242468" + "5340986099070640238733378", + "3398661023521598011676643" ], - "LPTokenSupply": "9494008839340513544340796" + "LPTokenSupply": "8636937230548862058067574" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "587803778509932695912448", + "expectedQty": "580058062567179115411589", + "reserves": [ + "5928789877580572934645826", + "3398661023521598011676643" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "230951926605808000", + "expectedQty": "228823768321832833", + "reserves": [ + "5928789877580572934645826", + "3398661254473524617484643" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "118391275661024731070464", + "expectedQty": "117288506710812970882485", + "reserves": [ + "5928789877580572934645826", + "3517052530134549348555107" + ] }, { "type": "mintMulti", "inputQtys": [ - "5163538805222635520", - "12211439045648779264" + "7312013169258167009280", + "619435489384649588736" ], - "expectedQty": "17117467395820236290", + "expectedQty": "7828846271436299674760", "reserves": [ - "5977401017773963783022615", - "3670511938818894252021732" + "5936101890749831101655106", + "3517671965623933998143843" ], - "LPTokenSupply": "9494025956807909364577086" + "LPTokenSupply": "9342112874922058765869241" }, { "type": "mintMulti", "inputQtys": [ - "10413534621932079104", - "4409106888551023104" + "511848327054943584256", + "489139645500091334656" ], - "expectedQty": "14581906042868548890", + "expectedQty": "989612012747779239801", "reserves": [ - "5977411431308585715101719", - "3670516347925782803044836" + "5936613739076886045239362", + "3518161105269434089478499" ], - "LPTokenSupply": "9494040538713952233125976" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "213972350567320289280", - "expectedQty": "211023885361657268298", - "reserves": [ - "5977411431308585715101719", - "3670730320276350123334116" - ] + "LPTokenSupply": "9343102486934806545109042" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "589228144226509651968", - "expectedQty": "599231082448048153299", - "swapFee": "353536886535905791", + "type": "redeemBassets", + "inputQtys": [ + "237047066194296384", + "532831499920451776" + ], + "expectedQty": "761729031710810280", + "swapFee": "457311806110152", "reserves": [ - "5976812200226137666948420", - "3670730320276350123334116" + "5936613502029819850942978", + "3518160572437934169026723" ], - "LPTokenSupply": "9493662369808776034332885" + "LPTokenSupply": "9343101724794194208799624" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "185023385086952013299712", - "49119273104807691288576" + "86725359319452666036224", + "277308177655188659634176" ], - "expectedQty": "230271113721290690009497", - "swapFee": "138245615602135695422", + "expectedQty": "360239039790517452971296", "reserves": [ - "5791788815139185653648708", - "3621611047171542432045540" + "6023338861349272516979202", + "3795468750093122828660899" ], - "LPTokenSupply": "9263266835033443422197507" + "LPTokenSupply": "9703340764584711661770920" }, { "type": "mint", "inputIndex": 1, - "inputQty": "24615339577194028", - "expectedQty": "24273485478495944", + "inputQty": "292626084496781181190144", + "expectedQty": "289722434527476862818380", "reserves": [ - "5791788815139185653648708", - "3621611071786882009239568" + "6023338861349272516979202", + "4088094834589904009851043" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "3751559535528878592", + "16549590839196434432" + ], + "expectedQty": "20086002779353804467", + "swapFee": "12058836969794159", + "reserves": [ + "6023335109789736988100610", + "4088078284999064813416611" + ], + "LPTokenSupply": "9993043102256455897970088" + }, { "type": "redeemMasset", - "inputQty": "104302211381776036659", + "inputQty": "5961828850196355481", "expectedQtys": [ - "65175054612607728550", - "40754023829797127776" + "3591353165285776579", + "2437475687664329778" ], - "redemptionFee": "62581326829065621", + "redemptionFee": "3577097310117813", "reserves": [ - "5791723640084573045920158", - "3621570317763052212111792" + "6023331518436571702324031", + "4088075847523377149086833" ], - "LPTokenSupply": "9263162563353679807563354" + "LPTokenSupply": "9993037140785315432626388" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "889921191892900118528", - "expectedQty": "904986833017769989864", - "swapFee": "533952715135740071", + "inputQty": "8523625623601410048", + "expectedQty": "8628941178970521997", + "swapFee": "5114175374160846", "reserves": [ - "5790818653251555275930294", - "3621570317763052212111792" + "6023322889495392731802034", + "4088075847523377149086833" ], - "LPTokenSupply": "9262272695557058421018833" + "LPTokenSupply": "9993028617671109368632424" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "33936985521618419712", - "5052317893757338624" + "2295182118021990973440", + "16248716908091574059008" ], - "expectedQty": "38334155843182112901", - "swapFee": "23014302087161564", + "expectedQty": "18350305572255240145445", "reserves": [ - "5790784716266033657510582", - "3621565265445158454773168" + "6025618071613414722775474", + "4104324564431468723145841" ], - "LPTokenSupply": "9262234340688343360460523" + "LPTokenSupply": "10011378923243364608777869" }, { "type": "redeemBassets", "inputQtys": [ - "3749443483725293056", - "2162973582214860544" + "7029901151024443", + "1929136042276820" ], - "expectedQty": "5817746343871344089", - "swapFee": "3492743452394242", + "expectedQty": "8849636221231676", + "swapFee": "5312969514447", "reserves": [ - "5790780966822549932217526", - "3621563102471576239912624" + "6025618064583513571751031", + "4104324562502332680869021" ], - "LPTokenSupply": "9262228519798530381961615" + "LPTokenSupply": "10011378914388946714983189" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "81841521421617577984", - "expectedQty": "83227011646018476339", - "swapFee": "49104912852970546", + "inputQty": "67711949893770909057024", + "expectedQty": "66844968623789532394547", "reserves": [ - "5790697739810903913741187", - "3621563102471576239912624" - ], - "LPTokenSupply": "9262146683187600049680685" + "6093330014477284480808055", + "4104324562502332680869021" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "1733320765007875276800", - "838279450659191914496" + "type": "redeemMasset", + "inputQty": "29282136434797", + "expectedQtys": [ + "17693461413794", + "11917901722667" ], - "expectedQty": "2530080011092766660530", + "redemptionFee": "17569281860", "reserves": [ - "5792431060575911789017987", - "3622401381922235431827120" + "6093330014459591019394261", + "4104324562490414779146354" ], - "LPTokenSupply": "9264676763198692816341215" + "LPTokenSupply": "10078223882983455867871125" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "28142887066656808960", - "expectedQty": "27657778478360965636", + "inputQty": "23112598821094889095168", + "expectedQty": "23398596462919993905272", + "swapFee": "13867559292656933457", "reserves": [ - "5792459203462978445826947", - "3622401381922235431827120" - ] + "6069931417996671025488989", + "4104324562490414779146354" + ], + "LPTokenSupply": "10055112670918290244469302" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "92694481103795879936", - "expectedQty": "94263718695067541151", - "swapFee": "55616688662277527", + "inputIndex": 1, + "inputQty": "125465180049223335936", + "expectedQty": "126667063927120893735", + "swapFee": "75279108029534001", "reserves": [ - "5792364939744283378285796", - "3622401381922235431827120" + "6069931417996671025488989", + "4104197895426487658252619" ], - "LPTokenSupply": "9264611732057736247654667" + "LPTokenSupply": "10054987213266151824086766" }, { "type": "redeemBassets", "inputQtys": [ - "6285980914408779415552", - "26400390344403320832000" + "73253790108150514319360", + "111589881223174359613440" ], - "expectedQty": "32211718064248128555331", - "swapFee": "19338634018960253285", + "expectedQty": "182782348390876094884172", + "swapFee": "109735250184636438793", "reserves": [ - "5786078958829874598870244", - "3596000991577832110995120" + "5996677627888520511169629", + "3992608014203313298639179" ], - "LPTokenSupply": "9232382609222871054871378" + "LPTokenSupply": "9872106103150109556407679" }, { "type": "redeemMasset", - "inputQty": "122708042269957", + "inputQty": "757669721709137920", "expectedQtys": [ - "76856912504436", - "47765945736671" + "459960105920162557", + "306242976372447027" ], - "redemptionFee": "73624825361", + "redemptionFee": "454601833025482", "reserves": [ - "5786078958753017686365808", - "3596000991530066165258449" + "5996677167928414591007072", + "3992607707960336926192152" ], - "LPTokenSupply": "9232382609100170375083957" + "LPTokenSupply": "9872105345525848030572307" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1283331363734686531584", - "876420751429029330944" + "237617571978692", + "371074369160920" ], - "expectedQty": "2125457215171680462014", - "swapFee": "1276039953074853189", + "expectedQty": "601915829439967", "reserves": [ - "5784795627389282999834224", - "3595124570778637135927505" + "5996677168166032162985764", + "3992607708331411295353072" ], - "LPTokenSupply": "9230256003449040927254071" + "LPTokenSupply": "9872105346127763860012274" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1941489048197186816", - "983902689879463936" + "5209065324662179758080", + "5463092775528801763328" + ], + "expectedQty": "10550383224993470193488", + "swapFee": "6334030353208006920", + "reserves": [ + "5991468102841369983227684", + "3987144615555882493589744" ], - "expectedQty": "2878247595871030483", + "LPTokenSupply": "9861549262275452502612557" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "4676817065912050909184", + "expectedQty": "4721295358368573156839", + "swapFee": "2806090239547230545", "reserves": [ - "5784797568878331197021040", - "3595125554681327015391441" + "5991468102841369983227684", + "3982423320197513920432905" ], - "LPTokenSupply": "9230258881696636798284554" + "LPTokenSupply": "9856872725818564406426427" }, { "type": "redeemMasset", - "inputQty": "42560860412705564419686", + "inputQty": "8069275728575091389235", "expectedQtys": [ - "26657782996272116231407", - "16567230873669134380745" + "4901940138614571469474", + "3258233272238077526984" ], - "redemptionFee": "25536516247623338651", + "redemptionFee": "4841565437145054833", "reserves": [ - "5758139785882059080789633", - "3578558323807657881010696" + "5986566162702755411758210", + "3979165086925275842905921" ], - "LPTokenSupply": "9187700574935555996198733" + "LPTokenSupply": "9848803934246533029542675" }, { "type": "mintMulti", "inputQtys": [ - "23237129232171520753664", - "15908497333940880670720" + "7138817311317510062080", + "7141802636032378667008" ], - "expectedQty": "38524006297776279484089", + "expectedQty": "14117185163856038327833", "reserves": [ - "5781376915114230601543297", - "3594466821141598761681416" + "5993704980014072921820290", + "3986306889561308221572929" ], - "LPTokenSupply": "9226224581233332275682822" + "LPTokenSupply": "9862921119410389067870508" }, { "type": "redeemMasset", - "inputQty": "63854686132212308377", + "inputQty": "5322116844217567641", "expectedQtys": [ - "39988892994443179065", - "24862372959447097115" + "3232314070901682588", + "2149754766546931856" ], - "redemptionFee": "38312811679327385", + "redemptionFee": "3193270106530540", "reserves": [ - "5781336926221236158364232", - "3594441958768639314584301" + "5993701747700002020137702", + "3986304739806541674641073" ], - "LPTokenSupply": "9226160730378481231307183" + "LPTokenSupply": "9862915797612871860955921" }, { "type": "redeemMasset", - "inputQty": "770304855099780995481", + "inputQty": "20799601714233998730854", "expectedQtys": [ - "482402160352493760361", - "299924842350432957302" + "12632350487138466144295", + "8401552286298045534704" ], - "redemptionFee": "462182913059868597", + "redemptionFee": "12479761028540399238", "reserves": [ - "5780854524060883664603871", - "3594142033926288881626999" + "5981069397212863553993407", + "3977903187520243629106369" ], - "LPTokenSupply": "9225390471741672756298561" + "LPTokenSupply": "9842117443874740716264990" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "559227444737159921664", - "6715687643856253222912" + "49239965661458254004224", + "54230005485278607704064" ], - "expectedQty": "7172194557436628249877", - "swapFee": "4305900274626753001", + "expectedQty": "102292492631620059002407", "reserves": [ - "5780295296616146504682207", - "3587426346282432628404087" + "6030309362874321807997631", + "4032133193005522236810433" ], - "LPTokenSupply": "9218214401873988963970982" + "LPTokenSupply": "9944409936506360775267397" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "736111381764358930432", - "outputIndex": 1, - "expectedQty": "732975790360065901826", - "swapFee": "578720703201176412", + "inputQty": "2521205584914946719744", + "expectedQty": "2488785229765586812477", "reserves": [ - "5781031407997910863612639", - "3586693370492072562502261" - ], - "LPTokenSupply": "9218214459746059284088623", - "hardLimitError": false, - "insufficientLiquidityError": false + "6032830568459236754717375", + "4032133193005522236810433" + ] }, { - "type": "redeemMasset", - "inputQty": "67157786820267356979", - "expectedQtys": [ - "42091484400694093344", - "26114587069234367584" + "type": "redeem", + "inputIndex": 0, + "inputQty": "106390656289154155937792", + "expectedQty": "107708863714339613467500", + "swapFee": "63834393773492493562", + "reserves": [ + "5925121704744897141249875", + "4032133193005522236810433" ], - "redemptionFee": "40294672092160414", + "LPTokenSupply": "9840514448886349555391438" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1043218999403513", + "expectedQty": "1053263484438553", + "swapFee": "625931399642", "reserves": [ - "5780989316513510169519295", - "3586667255905003328134677" + "5925121704744897141249875", + "4032133191952258752371880" ], - "LPTokenSupply": "9218147305988706225947685" + "LPTokenSupply": "9840514447843193149127889" }, { "type": "redeemBassets", "inputQtys": [ - "33012930289651605831680", - "996836877647212294701056" + "1037080308050963857408", + "2987235039317583724544" ], - "expectedQty": "1016382793972157074679387", - "swapFee": "610195793859610010814", + "expectedQty": "3980771825172223239136", + "swapFee": "2389897033323327940", "reserves": [ - "5747976386223858563687615", - "2589830378257791033433621" + "5924084624436846177392467", + "4029145956912941168647336" ], - "LPTokenSupply": "8201215335802075502258564" + "LPTokenSupply": "9836531525110690934893606" }, { "type": "redeemBassets", "inputQtys": [ - "42348785574116165943296", - "50950106411374777204736" + "26722645697924653056", + "177191151561555312640" ], - "expectedQty": "91919727221941856751153", - "swapFee": "55184947301546041675", + "expectedQty": "201776819182815570166", + "swapFee": "121138774774554074", "reserves": [ - "5705627600649742397744319", - "2538880271846416256228885" + "5924057901791148252739411", + "4028968765761379613334696" ], - "LPTokenSupply": "8109245942127562254069902" + "LPTokenSupply": "9836329639266610822224772" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "28120091705802104", - "expectedQty": "28633605593075950", - "swapFee": "16872055023481", + "type": "mintMulti", + "inputQtys": [ + "3249765349735780057088", + "3851207366552383913984" + ], + "expectedQty": "7020333823907500231488", "reserves": [ - "5705627572016136804668369", - "2538880271846416256228885" + "5927307667140884032796499", + "4032819973127931997248680" ], - "LPTokenSupply": "8109245914009157753770146" + "LPTokenSupply": "9843349973090518322456260" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6889822916076604751872", - "1955936953082963296256" + "846374979426221293568", + "417114895369327607808" ], - "expectedQty": "8695355733858228812550", - "swapFee": "5220345647703559423", + "expectedQty": "1248422957477634051827", "reserves": [ - "5698737749100060199916497", - "2536924334893333292932629" + "5928154042120310254090067", + "4033237088023301324856488" ], - "LPTokenSupply": "8100545859964216591754114" + "LPTokenSupply": "9844598396047995956508087" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4531010748006679969792", - "expectedQty": "4478172728834409655320", + "type": "redeemMasset", + "inputQty": "74569067066542412", + "expectedQtys": [ + "44876557115342321", + "30531897999677742" + ], + "redemptionFee": "44741440239925", "reserves": [ - "5698737749100060199916497", - "2541455345641339972902421" - ] + "5928153997243753138747746", + "4033237057491403325178746" + ], + "LPTokenSupply": "9844598321483403033989667" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "758839271176438400", - "expectedQty": "767338298536801122", - "swapFee": "455303562705863", + "type": "mint", + "inputIndex": 0, + "inputQty": "9903895970832520", + "expectedQty": "9777032672479886", "reserves": [ - "5698737749100060199916497", - "2541454578303041436101299" - ], - "LPTokenSupply": "8105023273899310181241620" + "5928154007147649109580266", + "4033237057491403325178746" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5510705619066796638208", - "expectedQty": "5572370772451960353283", - "swapFee": "3306423371440077982", + "type": "redeemBassets", + "inputQtys": [ + "3429239370128281088", + "1824690902145048832" + ], + "expectedQty": "5191519654054459729", + "swapFee": "3116781861549605", "reserves": [ - "5698737749100060199916497", - "2535882207530589475748016" + "5928150577908278981299178", + "4033235232800501180129914" ], - "LPTokenSupply": "8099512898922580528611210" + "LPTokenSupply": "9844593136935677976615178" }, { - "type": "redeemBassets", - "inputQtys": [ - "2956839177035047763968", - "4470639152553638494208" + "type": "redeemMasset", + "inputQty": "83428682100469897625", + "expectedQtys": [ + "50208376969845656134", + "34159421613066169299" ], - "expectedQty": "7320639475712827544270", - "swapFee": "4395020697846404369", + "redemptionFee": "50057209260281938", "reserves": [ - "5695780909923025152152529", - "2531411568378035837253808" + "5928100369531309135643044", + "4033201073378888113960615" ], - "LPTokenSupply": "8092188303928239639303006" + "LPTokenSupply": "9844509713259298432745746" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5531711677032321024", - "expectedQty": "5632764609582427136", - "swapFee": "3319027006219392", + "type": "redeemMasset", + "inputQty": "217941978237805343539", + "expectedQtys": [ + "131160085182890411283", + "89235161918475363213" + ], + "redemptionFee": "130765186942683206", "reserves": [ - "5695775277158415569725393", - "2531411568378035837253808" + "5927969209446126245231761", + "4033111838216969638597402" ], - "LPTokenSupply": "8092182772548465307603921" + "LPTokenSupply": "9844291784357579321670527" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "39659096219373690880", - "164369206008977227776" + "94329469085687365632", + "362080862509840334848" ], - "expectedQty": "201380290800431051922", - "swapFee": "120900714909204153", + "expectedQty": "451534109299487182277", "reserves": [ - "5695735618062196196034513", - "2531247199172026860026032" + "5928063538915211932597393", + "4033473919079479478932250" ], - "LPTokenSupply": "8091981283447021458268260" + "LPTokenSupply": "9844743318466878808852804" }, { "type": "mint", "inputIndex": 1, - "inputQty": "68555199656740520", - "expectedQty": "67757280398186245", + "inputQty": "2847400536360696152064", + "expectedQty": "2818550859869602695803", "reserves": [ - "5695735618062196196034513", - "2531247267727226516766552" + "5928063538915211932597393", + "4036321319615840175084314" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "637558592641569024", - "expectedQty": "625744836507856376", + "inputQty": "15841001426637046153216", + "expectedQty": "15638059121736620283110", "reserves": [ - "5695736255620788837603537", - "2531247267727226516766552" + "5943904540341848978750609", + "4036321319615840175084314" ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "7734151369384912896", - "outputIndex": 0, - "expectedQty": "7788450256370279432", - "swapFee": "0", + "inputQty": "17818182268093796352", + "expectedQty": "17989566713014643956", + "swapFee": "10690909360856277", "reserves": [ - "5695728467170532467324105", - "2531255001878595901679448" + "5943904540341848978750609", + "4036303330049127160440358" ], - "LPTokenSupply": "8091981976949138364310881", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9863182111335307874120992" }, { - "type": "redeemMasset", - "inputQty": "5146145376384119839129", - "expectedQtys": [ - "3620059976886338350153", - "1608801222953331734896" - ], - "redemptionFee": "3087687225830471903", + "type": "mint", + "inputIndex": 0, + "inputQty": "149080697933950707826688", + "expectedQty": "147164291298224960436503", "reserves": [ - "5692108407193646128973952", - "2529646200655642569944552" - ], - "LPTokenSupply": "8086836140341476827518942" + "6092985238275799686577297", + "4036303330049127160440358" + ] }, { - "type": "redeemMasset", - "inputQty": "880517637426218291", - "expectedQtys": [ - "619401031335420018", - "275269786432675530" - ], - "redemptionFee": "528310582455730", + "type": "swap", + "inputIndex": 0, + "inputQty": "861895785864055619584", + "outputIndex": 1, + "expectedQty": "858691024206329902547", + "swapFee": "680625850109563487", "reserves": [ - "5692107787792614793553934", - "2529645925385856137269022" + "6093847134061663742196881", + "4035444639024920830537811" ], - "LPTokenSupply": "8086835259876670459546224" + "LPTokenSupply": "10010346470696117845513843", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "10084476974243062271180", - "expectedQtys": [ - "7093935627399758369405", - "3152636250720128812865" + "type": "mintMulti", + "inputQtys": [ + "86231309477259323113472", + "62764432722147560914944" ], - "redemptionFee": "6050686184545837362", + "expectedQty": "147255961515778635276227", "reserves": [ - "5685013852165215035184529", - "2526493289135136008456157" + "6180078443538923065310353", + "4098209071747068391452755" ], - "LPTokenSupply": "8076751387971045851858780" + "LPTokenSupply": "10157602432211896480790070" + }, + { + "type": "mintMulti", + "inputQtys": [ + "2155762241045352939520", + "1180778426334563532800" + ], + "expectedQty": "3296932739990520357034", + "reserves": [ + "6182234205779968418249873", + "4099389850173402954985555" + ], + "LPTokenSupply": "10160899364951887001147104" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "17111952132314855636992", - "expectedQty": "17424465886044631206205", - "swapFee": "10267171279388913382", + "inputQty": "143663814652815239806976", + "expectedQty": "145447096579388482445920", + "swapFee": "86198288791689143884", "reserves": [ - "5667589386279170403978324", - "2526493289135136008456157" + "6036787109200579935803953", + "4099389850173402954985555" ], - "LPTokenSupply": "8059640462555858935113126" + "LPTokenSupply": "10017244170127950930254516" }, { "type": "redeemMasset", - "inputQty": "15580309531209693239705", + "inputQty": "1760704547529991546470", "expectedQtys": [ - "10949597028039413571920", - "4881102268461505083596" + "1060433482115553281711", + "720106602192934647930" ], - "redemptionFee": "9348185718725815943", + "redemptionFee": "1056422728517994927", "reserves": [ - "5656639789251130990406404", - "2521612186866674503372561" + "6035726675718464382522242", + "4098669743571210020337625" ], - "LPTokenSupply": "8044061087843221114455015" + "LPTokenSupply": "10015483571222693790507538" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "381951521352617472", - "216380492113401056" + "10382629907187774783488", + "6418677497480298364928" ], - "expectedQty": "588732946148258691", - "swapFee": "353451838792230", + "expectedQty": "16603153689793104054654", "reserves": [ - "5656639407299609637788932", - "2521611970486182389971505" + "6046109305625652157305730", + "4105088421068690318702553" ], - "LPTokenSupply": "8044060498792168311283316" + "LPTokenSupply": "10032086724912486894562192" }, { - "type": "redeemMasset", - "inputQty": "5474647087748489412608", - "expectedQtys": [ - "3847500102664408354948", - "1715135368679426362020" + "type": "redeemBassets", + "inputQtys": [ + "190512264638917083136", + "6446877151169541120" ], - "redemptionFee": "3284788252649093647", + "expectedQty": "194450780902381299195", + "swapFee": "116740512849138262", "reserves": [ - "5652791907196945229433984", - "2519896835117502963609485" + "6045918793361013240222594", + "4105081974191539149161433" ], - "LPTokenSupply": "8038586180183245086780072" + "LPTokenSupply": "10031892169065122949038560" }, { "type": "redeemBassets", "inputQtys": [ - "13280098241305991184384", - "27804187442713527844864" + "679078954045321344", + "641974849073716864" ], - "expectedQty": "40514702998532261150866", - "swapFee": "24323415848628533810", + "expectedQty": "1305843356766222530", + "swapFee": "783976399899673", "reserves": [ - "5639511808955639238249600", - "2492092647674789435764621" + "6045918114282059194901250", + "4105081332216690075444569" ], - "LPTokenSupply": "7998049586110449059948776" + "LPTokenSupply": "10031890862516187422906323" }, { "type": "mint", "inputIndex": 0, - "inputQty": "67320635237677521698816", - "expectedQty": "66069672258992280183685", + "inputQty": "48889641728179815055360", + "expectedQty": "48262075889911477751540", "reserves": [ - "5706832444193316759948416", - "2492092647674789435764621" + "6094807756010239009956610", + "4105081332216690075444569" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1337757727460136845312", - "3421308256350708957184" + "1382488336830155264", + "1077259828009204864" ], - "expectedQty": "4694892232233717707868", - "swapFee": "2818626515249380252", + "expectedQty": "2431114073583947792", "reserves": [ - "5705494686465856623103104", - "2488671339418438726807437" + "6094809138498575840111874", + "4105082409476518084649433" ], - "LPTokenSupply": "8059421829373343897982365" + "LPTokenSupply": "10080155369520172484605655" }, { - "type": "swap", + "type": "mintMulti", + "inputQtys": [ + "15726549813846150742016", + "84887076734683483996160" + ], + "expectedQty": "99551869910608007923710", + "reserves": [ + "6110535688312421990853890", + "4189969486211201568645593" + ], + "LPTokenSupply": "10179707239430780492529365" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "465045474716887023616", - "outputIndex": 0, - "expectedQty": "468425454043428953678", - "swapFee": "0", + "inputQty": "142148839030934847488", + "expectedQty": "143523737367941495958", + "swapFee": "85289303418560908", "reserves": [ - "5705026261011813194149426", - "2489136384893155613831053" + "6110535688312421990853890", + "4189825962473833627149635" ], - "LPTokenSupply": "8059421829373343897982365", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "10179565099120679899537967" }, { - "type": "redeemBassets", - "inputQtys": [ - "4550379131578288128", - "23919548783784677376" + "type": "redeemMasset", + "inputQty": "3932019486809706515660", + "expectedQtys": [ + "2358875759449098546546", + "1617416115921504491495" ], - "expectedQty": "28110682822201615164", - "swapFee": "16876535614689782", + "redemptionFee": "2359211692085823909", "reserves": [ - "5705021710632681615861298", - "2489112465344371829153677" + "6108176812552972892307344", + "4188208546357912122658140" ], - "LPTokenSupply": "8059393703501639643146396" + "LPTokenSupply": "10175633315555039401604697" }, { - "type": "mintMulti", - "inputQtys": [ - "39061461048915178553344", - "43380124197419422318592" - ], - "expectedQty": "81215455250762915749552", + "type": "mint", + "inputIndex": 1, + "inputQty": "98769270444952464", + "expectedQty": "97764394254710721", + "reserves": [ + "6108176812552972892307344", + "4188208645127182567610604" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "54101591770507839012864", + "expectedQty": "54769009809978509384164", + "swapFee": "32460955062304703407", "reserves": [ - "5744083171681596794414642", - "2532492589541791251472269" + "6053407802742994382923180", + "4188208645127182567610604" ], - "LPTokenSupply": "8140609158752402558895948" + "LPTokenSupply": "10121535067644432047772894" }, { - "type": "redeemBassets", - "inputQtys": [ - "308707496480139182080", - "772942562190443020288" + "type": "redeemMasset", + "inputQty": "2992202628790783207014", + "expectedQtys": [ + "1788479198647760530296", + "1237406149642270626739" ], - "expectedQty": "1066972643805338959088", - "swapFee": "640567927039427031", + "redemptionFee": "1795321577274469924", "reserves": [ - "5743774464185116655232562", - "2531719646979600808451981" + "6051619323544346622392884", + "4186971238977540296983865" ], - "LPTokenSupply": "8139541609597462884452531" + "LPTokenSupply": "10118543044547798992012872" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 0, + "inputQty": "18415624940228993613824", + "expectedQty": "18642504405983661414931", + "swapFee": "11049374964137396168", + "reserves": [ + "6032976819138362960977953", + "4186971238977540296983865" + ], + "LPTokenSupply": "10100128524545066412138664" + }, + { + "type": "mintMulti", "inputQtys": [ - "1784540214595064168448", - "1008543535181424754688" + "85589361461514387456", + "776832988408114970624" ], - "expectedQty": "2748276091303940853595", - "swapFee": "1649955628159260068", + "expectedQty": "853380620069495626024", "reserves": [ - "5741989923970521591064114", - "2530711103444419383697293" + "6033062408499824475365409", + "4187748071965948411954489" ], - "LPTokenSupply": "8136791848546093600264873" + "LPTokenSupply": "10100981905165135907764688" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "73274510799338106519552", - "expectedQty": "72417273783656334205142", + "type": "mintMulti", + "inputQtys": [ + "5598782160240666624", + "15832122490390245376" + ], + "expectedQty": "21197449264760694059", "reserves": [ - "5741989923970521591064114", - "2603985614243757490216845" - ] + "6033068007281984716032033", + "4187763904088438802199865" + ], + "LPTokenSupply": "10101003102614400668458747" }, { "type": "mintMulti", "inputQtys": [ - "23660458169990656294912", - "16789279290996278951936" + "44093402992869572608", + "106127501967776301056" ], - "expectedQty": "39814475613245126127512", + "expectedQty": "148572245804565345938", "reserves": [ - "5765650382140512247359026", - "2620774893534753769168781" + "6033112100684977585604641", + "4187870031590406578500921" ], - "LPTokenSupply": "8249023597942995060597527" + "LPTokenSupply": "10101151674860205233804685" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "80839851680651475419136", + "expectedQty": "80009055110546628339989", + "reserves": [ + "6033112100684977585604641", + "4268709883271058053920057" + ] }, { "type": "redeemBassets", "inputQtys": [ - "12580715530264342691840", - "15959436197940565114880" + "363302817701142464", + "244138846663824256" ], - "expectedQty": "28119226521406209867813", - "swapFee": "16881664911790800400", + "expectedQty": "600308943638206074", + "swapFee": "360401607147211", "reserves": [ - "5753069666610247904667186", - "2604815457336813204053901" + "6033111737382159884462177", + "4268709639132211390095801" ], - "LPTokenSupply": "8220889177923168239009353" + "LPTokenSupply": "10181160129337446777506109" }, { "type": "redeemMasset", - "inputQty": "14167674915823021260", + "inputQty": "388088564772212624588", "expectedQtys": [ - "9908747638988651709", - "4486380403610688453" + "229834008751431674172", + "162618345435011327103" ], - "redemptionFee": "8500604949493812", + "redemptionFee": "232853138863327574", "reserves": [ - "5753059757862608916015477", - "2604810970956409593365448" + "6032881903373408452788005", + "4268547020786776378768698" ], - "LPTokenSupply": "8220875011098312910937474" + "LPTokenSupply": "10180772064057988451214278" }, { "type": "mint", "inputIndex": 1, - "inputQty": "51547207416027128", - "expectedQty": "50938365334238392", + "inputQty": "11082621459824075866112", + "expectedQty": "10968190306293343872046", "reserves": [ - "5753059757862608916015477", - "2604811022503617009392576" + "6032881903373408452788005", + "4279629642246600454634810" ] }, { - "type": "redeemMasset", - "inputQty": "39746473393351711889817", - "expectedQtys": [ - "27798334918092601956346", - "12586243190492517162086" - ], - "redemptionFee": "23847884036011027133", + "type": "mint", + "inputIndex": 1, + "inputQty": "11917366124564144128", + "expectedQty": "11794247782435949855", "reserves": [ - "5725261422944516314059131", - "2592224779313124492230490" - ], - "LPTokenSupply": "8181130973431730134388762" + "6032881903373408452788005", + "4279641559612725018778938" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "553283455934593892352", - "6258032928718247165952" + "12335054626449180672", + "12546954858909980672" ], - "expectedQty": "6727226906905721223590", - "swapFee": "4038759399783302715", + "expectedQty": "24595852626177289643", "reserves": [ - "5724708139488581720166779", - "2585966746384406245064538" + "6032894238428034901968677", + "4279654106567583928759610" ], - "LPTokenSupply": "8174400111641364608192727" + "LPTokenSupply": "10191776644464690408325822" }, { - "type": "mintMulti", - "inputQtys": [ - "64692082025085736", - "122747042725024784" - ], - "expectedQty": "184796098154741682", + "type": "redeem", + "inputIndex": 0, + "inputQty": "620869940175829", + "expectedQty": "628472854507432", + "swapFee": "372521964105", "reserves": [ - "5724708204180663745252515", - "2585966869131448970089322" + "6032894237799562047461245", + "4279654106567583928759610" ], - "LPTokenSupply": "8174400296437462762934409" + "LPTokenSupply": "10191776643843857720346403" }, { - "type": "mintMulti", - "inputQtys": [ - "5470022097915130937344", - "413268545627463942144" + "type": "redeemMasset", + "inputQty": "448417101844589261619", + "expectedQtys": [ + "265275613129941082324", + "188182955370003462256" ], - "expectedQty": "5777340026342709049123", + "redemptionFee": "269050261106753556", "reserves": [ - "5730178226278578876189859", - "2586380137677076434031466" + "6032628962186432106378921", + "4279465923612213925297354" ], - "LPTokenSupply": "8180177636463805471983532" + "LPTokenSupply": "10191328253647039241760139" }, { - "type": "redeemBassets", - "inputQtys": [ - "103801507848303919104", - "164598292079828467712" + "type": "redeemMasset", + "inputQty": "1507162182798456012", + "expectedQtys": [ + "891610467091917262", + "632496484529842285" ], - "expectedQty": "264541380741410737927", - "swapFee": "158820120517156736", + "redemptionFee": "904297309679073", "reserves": [ - "5730074424770730572270755", - "2586215539384996605563754" + "6032628070575965014461659", + "4279465291115729395455069" ], - "LPTokenSupply": "8179912952144955595804541" + "LPTokenSupply": "10191326746575286174272034" }, { - "type": "redeemBassets", - "inputQtys": [ - "15261731640592351232", - "22385232972935557120" - ], - "expectedQty": "37101069289654746879", - "swapFee": "22274005977379275", + "type": "redeem", + "inputIndex": 1, + "inputQty": "706853403051119", + "expectedQty": "713803622201563", + "swapFee": "424112041830", "reserves": [ - "5730059163039089979919523", - "2586193154152023670006634" + "6032628070575965014461659", + "4279465290401925773253506" ], - "LPTokenSupply": "8179875831029060561416313" + "LPTokenSupply": "10191326745868475182425098" }, { "type": "mintMulti", "inputQtys": [ - "22686221004193488961536", - "25901980865168758800384" + "3029721140752493838336", + "3408163023084504219648" ], - "expectedQty": "47863240206347608887008", + "expectedQty": "6364225701343168533423", "reserves": [ - "5752745384043283468881059", - "2612095135017192428807018" + "6035657791716717508299995", + "4282873453425010277473154" ], - "LPTokenSupply": "8227739071235408170303321" + "LPTokenSupply": "10197690971569818350958521" }, { "type": "mintMulti", "inputQtys": [ - "14924234333959418281984", - "12568644527454743953408" + "4525264138919554560", + "16637260348921802752" ], - "expectedQty": "27068571533785205385078", + "expectedQty": "20933200315865248387", "reserves": [ - "5767669618377242887163043", - "2624663779544647172760426" + "6035662316980856427854555", + "4282890090685359199275906" ], - "LPTokenSupply": "8254807642769193375688399" + "LPTokenSupply": "10197711904770134216206908" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "37837951788684979208192", - "expectedQty": "38525470340629235368594", - "swapFee": "22702771073210987524", + "type": "redeemMasset", + "inputQty": "942486457497706", + "expectedQtys": [ + "557489457524967", + "395593051416698" + ], + "redemptionFee": "565491874498", "reserves": [ - "5729144148036613651794449", - "2624663779544647172760426" + "6035662316423366970329588", + "4282890090289766147859208" ], - "LPTokenSupply": "8216971961257615717578959" + "LPTokenSupply": "10197711903827704307896651" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "39287029961301266792448", - "expectedQty": "38816373523180378370989", + "type": "redeemMasset", + "inputQty": "505134703188669132", + "expectedQtys": [ + "298791849386744655", + "212021909727409268" + ], + "redemptionFee": "303080821913201", "reserves": [ - "5729144148036613651794449", - "2663950809505948439552874" - ] + "6035662017631517583584933", + "4282889878267856420449940" + ], + "LPTokenSupply": "10197711398723309201418839" }, { "type": "redeemBassets", "inputQtys": [ - "41696772052433361698816", - "959509555835241234432" + "14461716352038223216640", + "7454593020939533811712" ], - "expectedQty": "41879401264753257773397", - "swapFee": "25142726394688767924", + "expectedQty": "21655781251666143794615", + "swapFee": "13001269512707310663", "reserves": [ - "5687447375984180290095633", - "2662991299950113198318442" + "6021200301279479360368293", + "4275435285246916886638228" ], - "LPTokenSupply": "8213886305062287618285418" + "LPTokenSupply": "10176043916329081621044626" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "15125824971460529094656", - "10781692409974876012544" + "4422316569734696927232", + "4145589439679410733056" ], - "expectedQty": "25499565975946437296088", + "expectedQty": "8468944208971610697385", + "swapFee": "5084417175688379446", "reserves": [ - "5702573200955640819190289", - "2673772992360088074330986" + "6016777984709744663441061", + "4271289695807237475905172" ], - "LPTokenSupply": "8239385871038234055581506" + "LPTokenSupply": "10167570396144651890805738" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "6898286185137376256", - "expectedQty": "6978677030842738420", - "swapFee": "4138971711082425", + "inputIndex": 0, + "inputQty": "6909441926046961664", + "expectedQty": "6994047498365572871", + "swapFee": "4145665155628176", "reserves": [ - "5702573200955640819190289", - "2673766013683057231592566" + "6016770990662246297868190", + "4271289695807237475905172" ], - "LPTokenSupply": "8239378973165946089313492" + "LPTokenSupply": "10167563487117292359406891" }, { "type": "mintMulti", "inputQtys": [ - "139946798566113904", - "56193592121274032" + "98833967301214112", + "129689752203804064" ], - "expectedQty": "192893390744770097", + "expectedQty": "225929115967283489", "reserves": [ - "5702573340902439385304193", - "2673766069876649352866598" + "6016771089496213599082302", + "4271289825496989679709236" ], - "LPTokenSupply": "8239379166059336834083589" + "LPTokenSupply": "10167563713046408326690380" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "211111975194279586824192", - "4632461855373116047360" + "1994636969425037824", + "19665078136230133760" ], - "expectedQty": "211803468611495124644333", + "expectedQty": "21431150112430678865", + "swapFee": "12866409913406451", "reserves": [ - "5913685316096718972128385", - "2678398531732022468913958" + "6016769094859244174044478", + "4271270160418853449575476" ], - "LPTokenSupply": "8451182634670831958727922" + "LPTokenSupply": "10167542270316526973945708" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "16416108102238138368", - "expectedQty": "16112873468662682402", + "inputQty": "415212625792039845888", + "expectedQty": "420296830742834494146", + "swapFee": "249127575475223907", "reserves": [ - "5913701732204821210266753", - "2678398531732022468913958" - ] + "6016348798028501339550332", + "4271270160418853449575476" + ], + "LPTokenSupply": "10167127082603492481622210" }, { "type": "redeemMasset", - "inputQty": "19517692302520427216896", + "inputQty": "1369595122846964645888", "expectedQtys": [ - "13649253926859475017067", - "6181938713251249871874" + "809965089158167553940", + "575029778432385386790" ], - "redemptionFee": "11710615381512256330", + "redemptionFee": "821757073708178787", "reserves": [ - "5900052478277961735249686", - "2672216593018771219042084" + "6015538832939343171996392", + "4270695130640421064188686" ], - "LPTokenSupply": "8431682226303318345419061" + "LPTokenSupply": "10165757569656352887794200" }, { - "type": "redeemBassets", - "inputQtys": [ - "2786502618880961150976", - "9994156085481767436288" - ], - "expectedQty": "12611140651726563110029", - "swapFee": "7571227127312325261", + "type": "redeem", + "inputIndex": 1, + "inputQty": "59200913428497727488", + "expectedQty": "59783321922464165088", + "swapFee": "35520548057098636", "reserves": [ - "5897265975659080774098710", - "2662222436933289451605796" + "6015538832939343171996392", + "4270635347318498600023598" ], - "LPTokenSupply": "8419064271547177201216296" + "LPTokenSupply": "10165698372294979195776575" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "49369218406674600", - "expectedQty": "50268899086936784", - "swapFee": "29621531044004", + "type": "redeemMasset", + "inputQty": "5889434057239283997081", + "expectedQtys": [ + "3482973929296296394811", + "2472681498587135719789" + ], + "redemptionFee": "3533660434343570398", "reserves": [ - "5897265925390181687161926", - "2662222436933289451605796" + "6012055859010046875601581", + "4268162665819911464303809" ], - "LPTokenSupply": "8419064222180920947646096" + "LPTokenSupply": "10159809291603783346136533" }, { - "type": "redeemBassets", - "inputQtys": [ - "22087102337988825088", - "33682965452458287104" + "type": "redeemMasset", + "inputQty": "576921961267771084", + "expectedQtys": [ + "341188093762911548", + "242221016898686951" ], - "expectedQty": "54964428128975457375", - "swapFee": "32998455950955847", + "redemptionFee": "346153176760662", "reserves": [ - "5897243838287843698336838", - "2662188753967836993318692" + "6012055517821953112690033", + "4268162423598894565616858" ], - "LPTokenSupply": "8419009228054181616328457" + "LPTokenSupply": "10159808714716437396041515" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "154155099946172284928", - "expectedQty": "155901572397494208280", - "swapFee": "92493059967703370", + "inputQty": "19762443980058105217024", + "expectedQty": "19557970139979164649926", "reserves": [ - "5897243838287843698336838", - "2662032852395439499110412" - ], - "LPTokenSupply": "8418855082203541440813866" + "6012055517821953112690033", + "4287924867578952670833882" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "267708772559406671855616", - "expectedQty": "272562176043731386957797", - "swapFee": "160625263535644003113", + "inputQty": "5838260405112605696", + "expectedQty": "5764258414913800246", + "reserves": [ + "6012061356082358225295729", + "4287924867578952670833882" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "30167433722272072", + "11030906959481258" + ], + "expectedQty": "40701713988124816", + "swapFee": "24435689806758", "reserves": [ - "5624681662244112311379041", - "2662032852395439499110412" + "6012061325914924503023657", + "4287924856548045711352624" ], - "LPTokenSupply": "8151162372170488333358561" + "LPTokenSupply": "10179372408391125365540787" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "32504910657386474110976", + "outputIndex": 0, + "expectedQty": "32579644970328771277372", + "swapFee": "0", + "reserves": [ + "5979481680944595731746285", + "4320429767205432185463600" + ], + "LPTokenSupply": "10179372408391125365540787", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "110435870900622593097728", - "expectedQty": "112425188213571375346375", - "swapFee": "66261522540373555858", + "inputIndex": 1, + "inputQty": "3447130808613822529536", + "expectedQty": "3481307825671264566253", + "swapFee": "2068278485168293517", "reserves": [ - "5512256474030540936032666", - "2662032852395439499110412" + "5979481680944595731746285", + "4316948459379760920897347" ], - "LPTokenSupply": "8040733127422119777616418" + "LPTokenSupply": "10175925484410360059840602" }, { "type": "mint", "inputIndex": 0, - "inputQty": "3677718509344293888", - "expectedQty": "3610588287709208998", + "inputQty": "1060849703392004538368", + "expectedQty": "1047442886921281539829", "reserves": [ - "5512260151749050280326554", - "2662032852395439499110412" + "5980542530647987736284653", + "4316948459379760920897347" ] }, { "type": "redeemMasset", - "inputQty": "6395404588518314763878", + "inputQty": "460666113030350910259", "expectedQtys": [ - "4381685800099922926523", - "2116045184304213568064" + "270550023185399551127", + "195291731442435297340" ], - "redemptionFee": "3837242753110988858", + "redemptionFee": "276399667818210546", "reserves": [ - "5507878465948950357400031", - "2659916807211135285542348" + "5980271980624802336733526", + "4316753167648318485600007" ], - "LPTokenSupply": "8034341717146164483160423" + "LPTokenSupply": "10176512288824217772291226" }, { - "type": "redeemMasset", - "inputQty": "2959235506427787424563", - "expectedQtys": [ - "2027462937137590119289", - "979121593882299218357" - ], - "redemptionFee": "1775541303856672454", + "type": "redeem", + "inputIndex": 1, + "inputQty": "38023295180241461248", + "expectedQty": "38400191979997522418", + "swapFee": "22813977108144876", "reserves": [ - "5505851003011812767280742", - "2658937685617252986323991" + "5980271980624802336733526", + "4316714767456338488077589" ], - "LPTokenSupply": "8031382659193867081403105" + "LPTokenSupply": "10176474267810435241644465" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "164334026874304823296", - "expectedQty": "161334290168640103927", + "type": "redeemBassets", + "inputQtys": [ + "1055322219717011046400", + "682652960190749081600" + ], + "expectedQty": "1717532093888356613562", + "swapFee": "1031137939096471851", "reserves": [ - "5506015337038687072104038", - "2658937685617252986323991" - ] + "5979216658405085325687126", + "4316032114496147738995989" + ], + "LPTokenSupply": "10174755807692401698206236" }, { - "type": "redeemMasset", - "inputQty": "1788975454693192", - "expectedQtys": [ - "1225694116017838", - "591906138400255" + "type": "redeem", + "inputIndex": 1, + "inputQty": "24530766867023236431872", + "expectedQty": "24773614533014265421231", + "swapFee": "14718460120213941859", + "reserves": [ + "5979216658405085325687126", + "4291258499963133473574758" ], - "redemptionFee": "1073385272815", + "LPTokenSupply": "10150226512671390483168549" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "81605286633333114011648", + "expectedQty": "82600039358369620555880", + "swapFee": "48963171979999868406", "reserves": [ - "5506015335812992956086200", - "2658937685025346847923736" + "5896616619046715705131246", + "4291258499963133473574758" ], - "LPTokenSupply": "8031543991695167605341121" + "LPTokenSupply": "10068626122355255369143741" }, { "type": "mintMulti", "inputQtys": [ - "793295180579313418240", - "1240509265068492324864" + "291952399476862484480", + "192585502487449403392" ], - "expectedQty": "2003972176488677572959", + "expectedQty": "478841434874451301742", "reserves": [ - "5506808630993572269504440", - "2660178194290415340248600" + "5896908571446192567615726", + "4291451085465620922978150" ], - "LPTokenSupply": "8033547963871656282914080" + "LPTokenSupply": "10069104963790129820445483" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "6435156566923959861248", - "expectedQty": "6550851977324730683445", - "swapFee": "3861093940154375916", + "type": "redeemBassets", + "inputQtys": [ + "90138056688015264186368", + "32651469291645611016192" + ], + "expectedQty": "121311470137370298835254", + "swapFee": "72830580430680587653", "reserves": [ - "5500257779016247538820995", - "2660178194290415340248600" + "5806770514758177303429358", + "4258799616173975311961958" ], - "LPTokenSupply": "8027113193414126338490423" + "LPTokenSupply": "9947727946130371909081340" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "20111806524172231770112", - "expectedQty": "20473207164432887298551", - "swapFee": "12067083914503339062", + "type": "redeemBassets", + "inputQtys": [ + "31075029565231390720", + "21390381277238849536" + ], + "expectedQty": "51849468545556938483", + "swapFee": "31128358142219494", "reserves": [ - "5479784571851814651522444", - "2660178194290415340248600" + "5806739439728612072038638", + "4258778225792698073112422" ], - "LPTokenSupply": "8007002593598345557054217" + "LPTokenSupply": "9947676068646304024145311" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "22616120776193871872", - "expectedQty": "22335308205164950923", + "type": "redeemMasset", + "inputQty": "415039506413169664", + "expectedQtys": [ + "242124918277526011", + "177579231957126889" + ], + "redemptionFee": "249023703847901", "reserves": [ - "5479784571851814651522444", - "2660200810411191534120472" - ] + "5806739197603693794512627", + "4258778048213466115985533" + ], + "LPTokenSupply": "9947675653631699981360437" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1929584222745707413504", - "outputIndex": 1, - "expectedQty": "1916667139258264074483", - "swapFee": "1515515853601213330", + "type": "redeemBassets", + "inputQtys": [ + "13223051870277417828352", + "10954095330945222574080" + ], + "expectedQty": "23895624973919972298950", + "swapFee": "14345982573896321172", "reserves": [ - "5481714156074560358935948", - "2658284143271933270045989" + "5793516145733416376684275", + "4247823952882520893411453" ], - "LPTokenSupply": "8007025080458136082126473", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9923767117273463502372431" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "75134407787092782350336", - "72282350804578311602176" + "61132444888665979617280", + "58558700737190132973568" ], - "expectedQty": "145151280238342768531078", - "swapFee": "87143053975390895656", + "expectedQty": "118306351651863708790791", "reserves": [ - "5406579748287467576585612", - "2586001792467354958443813" + "5854648590622082356301555", + "4306382653619711026385021" ], - "LPTokenSupply": "7861795371471215461789303" + "LPTokenSupply": "10042073468925327211163222" }, { "type": "mint", "inputIndex": 1, - "inputQty": "191631988468150960128", - "expectedQty": "189272698933923306485", + "inputQty": "381021618590680809472", + "expectedQty": "377019670227213289721", "reserves": [ - "5406579748287467576585612", - "2586193424455823109403941" + "5854648590622082356301555", + "4306763675238301707194493" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "415310944227070050304", - "expectedQty": "420235366278869042633", - "swapFee": "249186566536242030", + "type": "redeemBassets", + "inputQtys": [ + "363504359864825544704", + "512474986874879344640" + ], + "expectedQty": "866019129405231490072", + "swapFee": "519923431702160190", "reserves": [ - "5406579748287467576585612", - "2585773189089544240361308" + "5854285086262217530756851", + "4306251200251426827849853" ], - "LPTokenSupply": "7861569358144578968669687" + "LPTokenSupply": "10041584001535060661018699" }, { "type": "mintMulti", "inputQtys": [ - "142192853227748003414016", - "35297455805515861852160" + "228232170414889500672", + "116842069563223826235392" ], - "expectedQty": "174451761143276881199435", + "expectedQty": "115833661364189935824246", "reserves": [ - "5548772601515215579999628", - "2621070644895060102213468" + "5854513318432632420257523", + "4423093269814650654085245" ], - "LPTokenSupply": "8036021119287855849869122" + "LPTokenSupply": "10157417662899250596842945" }, { - "type": "redeemMasset", - "inputQty": "518001463696775813529", - "expectedQtys": [ - "357458961750765940033", - "168852692060898382290" - ], - "redemptionFee": "310800878218065488", + "type": "swap", + "inputIndex": 0, + "inputQty": "2986708580999775744", + "outputIndex": 1, + "expectedQty": "2978601410966356211", + "swapFee": "2359475763095992", "reserves": [ - "5548415142553464814059595", - "2620901792202999203831178" + "5854516305141213420033267", + "4423090291213239687729034" ], - "LPTokenSupply": "8035503148904246895862141" + "LPTokenSupply": "10157417663135198173152544", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8783458780025746096128", - "3917296852549031165952" + "17426223284871942373376", + "16562410221620567212032" ], - "expectedQty": "12491750862641082548064", - "swapFee": "7499550247733289502", + "expectedQty": "33594824505804452828088", "reserves": [ - "5539631683773439067963467", - "2616984495350450172665226" + "5871942528426085362406643", + "4439652701434860254941066" ], - "LPTokenSupply": "8023004648446382853353524" + "LPTokenSupply": "10191012487641002625980632" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "714009725005911031808", - "4342421316334632042496" + "11201790595496833024", + "24483790049412997120" ], - "expectedQty": "4990317478655584978856", - "swapFee": "2995988080041375812", + "expectedQty": "35285513605767652877", "reserves": [ - "5538917674048433156931659", - "2612642074034115540622730" + "5871953730216680859239667", + "4439677185224909667938186" ], - "LPTokenSupply": "8018011634578455231136436" + "LPTokenSupply": "10191047773154608393633509" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "46083118278308752523264", - "expectedQty": "45517608223655362419012", + "type": "redeemMasset", + "inputQty": "1041692856942316", + "expectedQtys": [ + "599850214598294", + "453535813574273" + ], + "redemptionFee": "625015714165", "reserves": [ - "5538917674048433156931659", - "2658725192312424293145994" - ] + "5871953729616830644641373", + "4439677184771373854363913" + ], + "LPTokenSupply": "10191047772112978038262609" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "94433570703679062016", - "expectedQty": "96135171697486873439", - "swapFee": "56660142422207437", + "type": "redeemMasset", + "inputQty": "2985963689063608729", + "expectedQtys": [ + "1719442489915052667", + "1300039125734132370" + ], + "redemptionFee": "1791578213438165", "reserves": [ - "5538821538876735670058220", - "2658725192312424293145994" + "5871952010174340729588706", + "4439675884732248120231543" ], - "LPTokenSupply": "8063434814897421156714175" + "LPTokenSupply": "10191044786328446795997696" }, { "type": "mintMulti", "inputQtys": [ - "7235418133895375224832", - "5030803200087278223360" + "204025283951800090624000", + "65940285529158420791296" ], - "expectedQty": "12071803455145791368723", + "expectedQty": "266710035724263774150560", "reserves": [ - "5546056957010631045283052", - "2663755995512511571369354" + "6075977294126140820212706", + "4505616170261406541022839" ], - "LPTokenSupply": "8075506618352566948082898" + "LPTokenSupply": "10457754822052710570148256" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "192554764192526204928", - "236867818296931483648" + "6362843846963552583680", + "1894191693952706936832" ], - "expectedQty": "422977169702903536404", - "swapFee": "253938665020754574", + "expectedQty": "8157105018541265377191", "reserves": [ - "5545864402246438519078124", - "2663519127694214639885706" + "6082340137973104372796386", + "4507510361955359247959671" ], - "LPTokenSupply": "8075083412638065525867376" + "LPTokenSupply": "10465911927071251835525447" }, { - "type": "redeemMasset", - "inputQty": "15840039110457590756147", - "expectedQtys": [ - "10872209799103086362811", - "5221609592273031461579" + "type": "redeemBassets", + "inputQtys": [ + "12689140795785848291328", + "21193205568631243538432" + ], + "expectedQty": "33499649568622467916650", + "swapFee": "20111856855286652741", + "reserves": [ + "6069650997177318524505058", + "4486317156386728004421239" ], - "redemptionFee": "9504023466274554453", + "LPTokenSupply": "10432394176831459609621329" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "195559084828615770112", + "expectedQty": "197931653271175293605", + "swapFee": "117335450897169462", "reserves": [ - "5534992192447335432715313", - "2658297518101941608424127" + "6069453065524047349211453", + "4486317156386728004421239" ], - "LPTokenSupply": "8059244323929954562566674" + "LPTokenSupply": "10432198629480176083568163" }, { "type": "mint", "inputIndex": 0, - "inputQty": "21847721493283599286272", - "expectedQty": "21447997324502986813308", + "inputQty": "35245395260215800", + "expectedQty": "34802023207199686", "reserves": [ - "5556839913940619032001585", - "2658297518101941608424127" + "6069453100769442609427253", + "4486317156386728004421239" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1865900650467899211776", - "expectedQty": "1888026578829603891895", - "swapFee": "1119540390280739527", + "type": "redeemMasset", + "inputQty": "3258685171942540967936", + "expectedQtys": [ + "1894765465583218614924", + "1400541148344559092052" + ], + "redemptionFee": "1955211103165524580", "reserves": [ - "5556839913940619032001585", - "2656409491523112004532232" + "6067558335303859390812329", + "4484916615238383445329187" ], - "LPTokenSupply": "8078826532558028678242158" + "LPTokenSupply": "10428940174631367066352371" }, { "type": "mintMulti", "inputQtys": [ - "1043598532675423043584", - "1560329239985532436480" + "46182242813154", + "49207696364988" ], - "expectedQty": "2565615197486901123045", + "expectedQty": "94291037708549", "reserves": [ - "5557883512473294455045169", - "2657969820763097536968712" + "6067558335350041633625483", + "4484916615287591141694175" ], - "LPTokenSupply": "8081392147755515579365203" + "LPTokenSupply": "10428940174725658104060920" }, { - "type": "redeemBassets", - "inputQtys": [ - "45783094287488897777664", - "46065555760616663154688" - ], - "expectedQty": "90444304435976265493161", - "swapFee": "54299162158881087948", + "type": "mint", + "inputIndex": 1, + "inputQty": "122195100844988930457600", + "expectedQty": "120902062067431715679314", "reserves": [ - "5512100418185805557267505", - "2611904265002480873814024" - ], - "LPTokenSupply": "7990898974073596320892887" + "6067558335350041633625483", + "4607111716132580072151775" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "329735430670277672960", - "expectedQty": "325697481118414975632", + "inputQty": "6704892396289930559488", + "expectedQty": "6633553544057298604260", + "reserves": [ + "6067558335350041633625483", + "4613816608528870002711263" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "13141436641910244507648", + "expectedQty": "12977231148466085099716", "reserves": [ - "5512100418185805557267505", - "2612234000433151151486984" + "6080699771991951878133131", + "4613816608528870002711263" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "194902397215173643337728", + "inputQty": "10319146077730402304", "outputIndex": 0, - "expectedQty": "195991778065669647681619", + "expectedQty": "10338630872692670004", "swapFee": "0", "reserves": [ - "5316108640120135909585886", - "2807136397648324794824712" + "6080689433361079185463127", + "4613826927674947733113567" ], - "LPTokenSupply": "7991224671554714735868519", + "LPTokenSupply": "10569453021485613203444210", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "6066813663881551937536", - "expectedQty": "6173983275134695937099", - "swapFee": "3640088198328931162", + "inputIndex": 1, + "inputQty": "358821167034269630464", + "expectedQty": "362460210560054682075", + "swapFee": "215292700220561778", "reserves": [ - "5309934656845001213648787", - "2807136397648324794824712" + "6080689433361079185463127", + "4613464467464387678431492" ], - "LPTokenSupply": "7985158221899653016824099" + "LPTokenSupply": "10569094221847848955869923" }, { "type": "mintMulti", "inputQtys": [ - "108886848780364433850368", - "24885291982762658496512" + "72236611692228880891904", + "45103208727159041425408" ], - "expectedQty": "131492146596185320510235", + "expectedQty": "115957292114088939217367", "reserves": [ - "5418821505625365647499155", - "2832021689631087453321224" + "6152926045053308066355031", + "4658567676191546719856900" ], - "LPTokenSupply": "8116650368495838337334334" + "LPTokenSupply": "10685051513961937895087290" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "7215137182116922368", - "expectedQty": "7305546408973524410", - "swapFee": "4329082309270153", + "inputQty": "208653403910033184", + "expectedQty": "206436424919866739", + "reserves": [ + "6152926045053308066355031", + "4658567884844950629890084" + ] + }, + { + "type": "redeemMasset", + "inputQty": "3959373826723901813555", + "expectedQtys": [ + "2278614829113792301827", + "1725208752244804608444" + ], + "redemptionFee": "2375624296034341088", "reserves": [ - "5418821505625365647499155", - "2832014384084678479796814" + "6150647430224194274053204", + "4656842676092705825281640" ], - "LPTokenSupply": "8116643153791564451338981" + "LPTokenSupply": "10681092584134068516574582" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "46035741139561848832", + "expectedQty": "45546593268462442109", + "reserves": [ + "6150647430224194274053204", + "4656888711833845387130472" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "7897770201459290275840", - "expectedQty": "8037580650509001767579", - "swapFee": "4738662120875574165", + "inputQty": "77770878248208966877184", + "expectedQty": "78706915701462179093115", + "swapFee": "46662526948925380126", "reserves": [ - "5410783924974856645731576", - "2832014384084678479796814" + "6071940514522732094960089", + "4656888711833845387130472" ], - "LPTokenSupply": "8108745857456317248620557" + "LPTokenSupply": "10603371918731822904677519" }, { "type": "swap", "inputIndex": 1, - "inputQty": "1589644047887338569728", + "inputQty": "452404747976324672", "outputIndex": 0, - "expectedQty": "1597736249365403750977", + "expectedQty": "453223792699420880", "swapFee": "0", "reserves": [ - "5409186188725491241980599", - "2833604028132565818366542" + "6071940061298939395539209", + "4656889164238593363455144" ], - "LPTokenSupply": "8108745857456317248620557", + "LPTokenSupply": "10603371918731822904677519", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "330508847340948553728", - "expectedQty": "334655704083444051805", - "swapFee": "198305308404569132", + "inputIndex": 0, + "inputQty": "376564275517506707259392", + "expectedQty": "381052097296138139633035", + "swapFee": "225938565310504024355", "reserves": [ - "5409186188725491241980599", - "2833269372428482374314737" + "5690887964002801255906174", + "4656889164238593363455144" ], - "LPTokenSupply": "8108415368439507140523742" + "LPTokenSupply": "10226830237070847247820562" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5218868195664585", - "expectedQty": "5284346715332237", - "swapFee": "3131320917398", + "inputQty": "106399775270765106036736", + "expectedQty": "107508857850844225646018", + "swapFee": "63839865162459063622", "reserves": [ - "5409186188725491241980599", - "2833269367144135658982500" + "5690887964002801255906174", + "4549380306387749137809126" ], - "LPTokenSupply": "8108415363220952076950896" + "LPTokenSupply": "10120436845786598387690188" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6584010697767343095808", - "6233604764456512913408" + "90924455790448113352704", + "34261958649246776295424" ], - "expectedQty": "12618313268103460726198", - "swapFee": "7575533280830574780", + "expectedQty": "123688920284381449524480", "reserves": [ - "5402602178027723898884791", - "2827035762379679146069092" + "5781812419793249369258878", + "4583642265036995914104550" ], - "LPTokenSupply": "8095790231972895868707395" + "LPTokenSupply": "10244125766070979837214668" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "84333112992623239364608", - "expectedQty": "85381598840491154225612", - "swapFee": "50599867795573943618", + "type": "redeemMasset", + "inputQty": "2978132181392058", + "expectedQtys": [ + "1679857376426788", + "1331739031080383" + ], + "redemptionFee": "1786879308835", "reserves": [ - "5402602178027723898884791", - "2741654163539187991843480" + "5781812418113391992832090", + "4583642263705256883024167" ], - "LPTokenSupply": "8011462178967052186737148" + "LPTokenSupply": "10244125763093026343753493" }, { - "type": "redeemMasset", - "inputQty": "2534988845683933446144", - "expectedQtys": [ - "1708467022804741116896", - "866994380114060446725" - ], - "redemptionFee": "1520993307410360067", + "type": "swap", + "inputIndex": 0, + "inputQty": "111377784454326730752", + "outputIndex": 1, + "expectedQty": "111113809698150845829", + "swapFee": "87998036466874163", "reserves": [ - "5400893711004919157767895", - "2740787169159073931396755" + "5781923795897846319562842", + "4583531149895558732178338" ], - "LPTokenSupply": "8008927342220698994327010" + "LPTokenSupply": "10244125771892829990440909", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "499329644233363143262208", + "inputQty": "87438240861199687221248", "outputIndex": 0, - "expectedQty": "501380520701059852857717", + "expectedQty": "87565347957667379189012", "swapFee": "0", "reserves": [ - "4899513190303859304910178", - "3240116813392437074658963" + "5694358447940178940373830", + "4670969390756758419399586" ], - "LPTokenSupply": "8008927342220698994327010", + "LPTokenSupply": "10244125771892829990440909", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeemMasset", + "inputQty": "1548449155256077721", + "expectedQtys": [ + "860213381789921078", + "705615990386681955" + ], + "redemptionFee": "929069493153646", + "reserves": [ + "5694357587726797150452752", + "4670968685140768032717631" + ], + "LPTokenSupply": "10244124223536581683678552" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1778215862970221", + "2102448899070831" + ], + "expectedQty": "3835754153200458", + "swapFee": "2302834192435", + "reserves": [ + "5694357585948581287482531", + "4670968683038319133646800" + ], + "LPTokenSupply": "10244124219698754979704901" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "970792374389993111552", + "1666820347699926925312" + ], + "expectedQty": "2607401578415236272448", + "swapFee": "1565380175154234304", + "reserves": [ + "5693386793574191294370979", + "4669301862690619206721488" + ], + "LPTokenSupply": "10241515409278182104621578" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1026566507632954966016", + "1026252940162476802048" + ], + "expectedQty": "2028948981361307720388", + "swapFee": "1218100248966164330", + "reserves": [ + "5692360227066558339404963", + "4668275609750456729919440" + ], + "LPTokenSupply": "10239485364006596727353292" + }, + { + "type": "swap", "inputIndex": 0, - "inputQty": "350984864693410856960", - "expectedQty": "344944939572013281375", + "inputQty": "7696990364178480128", + "outputIndex": 1, + "expectedQty": "7680572797909902707", + "swapFee": "6081928766462416", "reserves": [ - "4899864175168552715767138", - "3240116813392437074658963" - ] + "5692367924056922517885091", + "4668267929177658820016733" + ], + "LPTokenSupply": "10239485364614789603999533", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "33149786963373490176", + "inputQty": "821641868125932303155", "expectedQtys": [ - "20268008136570064921", - "13402558028053164916" + "456495751109362761327", + "374368716699345036370" ], - "redemptionFee": "19889872178024094", + "redemptionFee": "492985120875559381", "reserves": [ - "4899843907160416145702217", - "3240103410834409021494047" + "5691911428305813155123764", + "4667893560460959474980363" ], - "LPTokenSupply": "8009239139362294851920618" + "LPTokenSupply": "10238663772045175759252316" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "181504448892037672992768", - "expectedQty": "178370432967284165648844", + "type": "redeemMasset", + "inputQty": "1008334753976215509401", + "expectedQtys": [ + "560220418030542790347", + "459432532410625025599" + ], + "redemptionFee": "605000852385729305", "reserves": [ - "5081348356052453818694985", - "3240103410834409021494047" - ] + "5691351207887782612333417", + "4667434127928548849954764" + ], + "LPTokenSupply": "10237655497791284782315845" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "443570599422893293568", - "expectedQty": "451119902295160116355", - "swapFee": "266142359653735976", + "inputQty": "28109352919100507029504", + "expectedQty": "28441757762170962660343", + "swapFee": "16865611751460304217", "reserves": [ - "5080897236150158658578630", - "3240103410834409021494047" + "5662909450125611649673074", + "4667434127928548849954764" ], - "LPTokenSupply": "8187166028344392089649491" + "LPTokenSupply": "10209547831433359421316762" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1663434291960143104", - "expectedQty": "1691744738979946381", - "swapFee": "998060575176085", + "type": "swap", + "inputIndex": 1, + "inputQty": "25013802614524066398208", + "outputIndex": 0, + "expectedQty": "25045498676697677854014", + "swapFee": "0", "reserves": [ - "5080895544405419678632249", - "3240103410834409021494047" + "5637863951448913971819060", + "4692447930543072916352972" ], - "LPTokenSupply": "8187164365009906187023995" + "LPTokenSupply": "10209547831433359421316762", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "2942926488474", - "36375741624501" - ], - "expectedQty": "38753376327383", + "type": "mint", + "inputIndex": 0, + "inputQty": "80825881783556814929920", + "expectedQty": "79834494042563447554036", "reserves": [ - "5080895544408362605120723", - "3240103410870784763118548" - ], - "LPTokenSupply": "8187164365048659563351378" + "5718689833232470786748980", + "4692447930543072916352972" + ] }, { "type": "mintMulti", "inputQtys": [ - "1027290889292785647616", - "2136150512496583376896" + "150260486890602671112192", + "14352166942706480709632" ], - "expectedQty": "3115439989183920102914", + "expectedQty": "162604107814488775256586", "reserves": [ - "5081922835297655390768339", - "3242239561383281346495444" + "5868950320123073457861172", + "4706800097485779397062604" ], - "LPTokenSupply": "8190279805037843483454292" + "LPTokenSupply": "10451986433290411644127384" }, { "type": "redeemMasset", - "inputQty": "1291465501040222", + "inputQty": "1448234410319367782", "expectedQtys": [ - "800850557008861", - "510938367787688" + "812717859020344469", + "651786143929256107" ], - "redemptionFee": "774879300624", + "redemptionFee": "868940646191620", "reserves": [ - "5081922834496804833759478", - "3242239560872342978707756" + "5868949507405214437516703", + "4706799445699635467806497" ], - "LPTokenSupply": "8190279803746455470344132" + "LPTokenSupply": "10451984985142895389378764" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "749043082559723648", + "expectedQty": "739786054355833102", + "reserves": [ + "5868950256448296997240351", + "4706799445699635467806497" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "3177294928739674619904", + "inputQty": "209934645880406212608", "outputIndex": 1, - "expectedQty": "3164485167872466598684", - "swapFee": "2497801272121468898", + "expectedQty": "209454116416775344164", + "swapFee": "165872130177210978", "reserves": [ - "5085100129425544508379382", - "3239075075704470512109072" + "5869160191094177403452959", + "4706589991583218692462333" ], - "LPTokenSupply": "8190280053526582682491021", + "LPTokenSupply": "10451985741516162762932963", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "21436057518511724743884", - "expectedQtys": [ - "13301022120181736550047", - "8472401355790316105358" - ], - "redemptionFee": "12861634511107034846", + "type": "mint", + "inputIndex": 1, + "inputQty": "173623708354612384", + "expectedQty": "171733894880991090", "reserves": [ - "5071799107305362771829335", - "3230602674348680196003714" - ], - "LPTokenSupply": "8168845282171522068450621" + "5869160191094177403452959", + "4706590165206927047074717" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "106473803183580381184", - "expectedQty": "104968825238192796476", + "inputQty": "7673356151029236736", + "expectedQty": "7589835206448524909", "reserves": [ - "5071799107305362771829335", - "3230709148151863776384898" + "5869160191094177403452959", + "4706597838563078076311453" ] }, { - "type": "redeemMasset", - "inputQty": "168954002259345670144", - "expectedQtys": [ - "104834353382850155886", - "66778927427688331613" + "type": "mint", + "inputIndex": 0, + "inputQty": "9148142857100669952", + "expectedQty": "9035083411008170251", + "reserves": [ + "5869169339237034504122911", + "4706597838563078076311453" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "63322207742225333354496", + "61170354532346893434880" ], - "redemptionFee": "101372401355607402", + "expectedQty": "123044125305710227278950", "reserves": [ - "5071694272951979921673449", - "3230642369224436088053285" + "5932491546979259837477407", + "4767768193095424969746333" ], - "LPTokenSupply": "8168781307131741051137693" + "LPTokenSupply": "10575046663474385327898163" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3623497653861766660096", - "expectedQty": "3673233505152192484006", - "swapFee": "2174098592317059996", + "type": "swap", + "inputIndex": 0, + "inputQty": "345648131973887295488", + "outputIndex": 1, + "expectedQty": "344861990797650188225", + "swapFee": "273102926987134885", "reserves": [ - "5071694272951979921673449", - "3226969135719283895569279" + "5932837195111233724772895", + "4767423331104627319558108" ], - "LPTokenSupply": "8165158026887738516183596" + "LPTokenSupply": "10575046690784678026611651", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "12871255082702", + "expectedQty": "12712263982452", + "reserves": [ + "5932837195124104979855597", + "4767423331104627319558108" + ] }, { "type": "redeemBassets", "inputQtys": [ - "193680420868403130007552", - "246805234948553784164352" + "176990502027819745280", + "49830116736893804544" ], - "expectedQty": "433654130964151640746514", - "swapFee": "260348687791165683858", + "expectedQty": "224091589378227240167", + "swapFee": "134535675031955517", "reserves": [ - "4878013852083576791665897", - "2980163900770730111404927" + "5932660204622077160110317", + "4767373500987890425753564" ], - "LPTokenSupply": "7731269582104574826321608" + "LPTokenSupply": "10574822478125904534593969" }, { "type": "mintMulti", "inputQtys": [ - "93133319382803", - "31916595482958" + "548773352609936310272", + "5417621594543745925120" ], - "expectedQty": "122975375478053", + "expectedQty": "5900594627754745408307", "reserves": [ - "4878013852176710111048700", - "2980163900802646706887885" + "5933208977974687096420589", + "4772791122582434171678684" ], - "LPTokenSupply": "7731269582227550201799661" + "LPTokenSupply": "10580723072753659280002276" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3177566521100710445056", - "expectedQty": "3220571266050663223445", - "swapFee": "1906539912660426267", + "inputQty": "1881536510870149922816", + "expectedQty": "1901121813579622898093", + "swapFee": "1128921906522089953", "reserves": [ - "4878013852176710111048700", - "2976943329536596043664440" + "5933208977974687096420589", + "4770890000768854548780591" ], - "LPTokenSupply": "7728092206360440757397231" + "LPTokenSupply": "10578841649134979782288455" }, { - "type": "redeemBassets", - "inputQtys": [ - "28467458397620836", - "6006264737386153" + "type": "redeemMasset", + "inputQty": "356772655023121707827", + "expectedQtys": [ + "199978098360146002363", + "160802276370326999177" ], - "expectedQty": "33891836504885882", - "swapFee": "20347310289104", + "redemptionFee": "214063593013873024", "reserves": [ - "4878013823709251713427864", - "2976943323530331306278287" + "5933008999876326950418226", + "4770729198492484221781414" ], - "LPTokenSupply": "7728092172450291673251154" + "LPTokenSupply": "10578484897886315961967930" }, { - "type": "redeemMasset", - "inputQty": "2612200915560", - "expectedQtys": [ - "1647846128245", - "1005643835169" + "type": "redeemBassets", + "inputQtys": [ + "8169473604587", + "13930845552337" ], - "redemptionFee": "1567320549", + "expectedQty": "21847643702609", + "swapFee": "13116456095", "reserves": [ - "4878013823707603867299619", - "2976943323529325662443118" + "5933008999868157476813639", + "4770729198478553376229077" ], - "LPTokenSupply": "7728092172447679629067648" + "LPTokenSupply": "10578484897864456513454834" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "277684218890161880039424", - "expectedQty": "281363240507527228173624", - "swapFee": "166610531334097128023", + "inputQty": "8355563213457994022912", + "expectedQty": "8442503356223946023123", + "swapFee": "5013337928074796413", "reserves": [ - "4878013823707603867299619", - "2695580083021798434269494" + "5933008999868157476813639", + "4762286695122329430205954" ], - "LPTokenSupply": "7450424614610651158741026" + "LPTokenSupply": "10570129835984791326911563" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "146257130558582472704", - "expectedQty": "144298805884813532295", + "type": "redeemMasset", + "inputQty": "22787659565682066771148", + "expectedQtys": [ + "12783028378284941022402", + "10260636039930215894273" + ], + "redemptionFee": "13672595739409240062", "reserves": [ - "4878013823707603867299619", - "2695726340152357016742198" - ] + "5920225971489872535791237", + "4752026059082399214311681" + ], + "LPTokenSupply": "10547343543678683201064421" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "334738749094235799552", + "outputIndex": 1, + "expectedQty": "333974522363735698829", + "swapFee": "264481738849017940", + "reserves": [ + "5920560710238966771590789", + "4751692084560035478612852" + ], + "LPTokenSupply": "10547343570126857085966215", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "40367648325400076288", + "inputQty": "7427442680538831257600", "outputIndex": 0, - "expectedQty": "40550995012466931876", + "expectedQty": "7438412884863734185705", "swapFee": "0", "reserves": [ - "4877973272712591400367743", - "2695766707800682416818486" + "5913122297354103037405084", + "4759119527240574309870452" ], - "LPTokenSupply": "7450568913416535972273321", + "LPTokenSupply": "10547343570126857085966215", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "41575054293736022016", - "expectedQty": "42114010222065615999", - "swapFee": "24945032576241613", + "inputQty": "4622882959210989486080", + "outputIndex": 0, + "expectedQty": "4629636614052048119476", + "swapFee": "0", "reserves": [ - "4877973272712591400367743", - "2695724593790460351202487" + "5908492660740050989285608", + "4763742410199785299356532" ], - "LPTokenSupply": "7450527340856745493875466" + "LPTokenSupply": "10547343570126857085966215", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "5775724145460", + "inputQty": "27687412929820960358", "expectedQtys": [ - "3779185341807", - "2088499116506" + "15500843456747802620", + "12497608037906656462" ], - "redemptionFee": "3465434487", + "redemptionFee": "16612447757892576", "reserves": [ - "4877973272708812215025936", - "2695724593788371852085981" + "5908477159896594241482988", + "4763729912591747392700070" ], - "LPTokenSupply": "7450527340850970116273454" + "LPTokenSupply": "10547315884375172040795114" }, { - "type": "redeemBassets", - "inputQtys": [ - "85505057259046412746752", - "125406279297774443823104" - ], - "expectedQty": "207713196455419640979490", - "swapFee": "124702739516961961764", + "type": "redeem", + "inputIndex": 0, + "inputQty": "40825682146868452130816", + "expectedQty": "41310670359744902470054", + "swapFee": "24495409288121071278", "reserves": [ - "4792468215449765802279184", - "2570318314490597408262877" + "5867166489536849339012934", + "4763729912591747392700070" ], - "LPTokenSupply": "7242701911929985209528375" + "LPTokenSupply": "10506492651769232400771425" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "96311138198475571200", - "expectedQty": "97542311961462602193", - "swapFee": "57786682919085342", + "type": "mintMulti", + "inputQtys": [ + "12675295025511309312", + "16049925394259550208" + ], + "expectedQty": "28393487276381491332", "reserves": [ - "4792468215449765802279184", - "2570220772178635945660684" + "5867179164831874850322246", + "4763745962517141652250278" ], - "LPTokenSupply": "7242605606570455025865709" + "LPTokenSupply": "10506521045256508782262757" }, { "type": "redeemMasset", - "inputQty": "24302278150843691905843", + "inputQty": "823754957186354", "expectedQtys": [ - "16071289973042498948816", - "8619100110305788317746" + "459735247297530", + "373273402194320" ], - "redemptionFee": "14581366890506215143", + "redemptionFee": "494252974311", "reserves": [ - "4776396925476723303330368", - "2561601672068330157342938" + "5867179164372139603024716", + "4763745962143868250055958" ], - "LPTokenSupply": "7218304786556300384581380" + "LPTokenSupply": "10506521044432803250373834" }, { "type": "mint", "inputIndex": 0, - "inputQty": "10422041702497333018624", - "expectedQty": "10234701085261074018929", + "inputQty": "1537170826691901", + "expectedQty": "1518226447247869", "reserves": [ - "4786818967179220636348992", - "2561601672068330157342938" + "5867179165909310429716617", + "4763745962143868250055958" ] }, { - "type": "redeemMasset", - "inputQty": "10476736160515276301926", - "expectedQtys": [ - "6933648119285454608040", - "3710448366164432037703" - ], - "redemptionFee": "6286041696309165781", + "type": "swap", + "inputIndex": 1, + "inputQty": "32111144227718742147072", + "outputIndex": 0, + "expectedQty": "32154911099591084628193", + "swapFee": "0", "reserves": [ - "4779885319059935181740952", - "2557891223702165725305235" + "5835024254809719345088424", + "4795857106371586992203030" ], - "LPTokenSupply": "7218063380085215813214961" + "LPTokenSupply": "10506521045951029697621703", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "51397667856856154112", - "107528885015951065088" - ], - "expectedQty": "156582770265411838160", - "swapFee": "94006065798726338", + "type": "mint", + "inputIndex": 0, + "inputQty": "23118816666957364854784", + "expectedQty": "22834628106291311755099", "reserves": [ - "4779833921392078325586840", - "2557783694817149774240147" - ], - "LPTokenSupply": "7217906712709491182523095" + "5858143071476676709943208", + "4795857106371586992203030" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "2945457215156201193472", - "15150208490582971514880" - ], - "expectedQty": "17842452549281674505585", + "type": "swap", + "inputIndex": 0, + "inputQty": "6617014867059011485696", + "outputIndex": 1, + "expectedQty": "6602763265787474411276", + "swapFee": "5228498440200051823", "reserves": [ - "4782779378607234526780312", - "2572933903307732745755027" + "5864760086343735721428904", + "4789254343105799517791754" ], - "LPTokenSupply": "7235749165258772857028680" + "LPTokenSupply": "10529356196907165029381984", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "34688855816816449028096", - "19165761668666653409280" + "76203622981001428992", + "212859056632221728768" ], - "expectedQty": "52977854648302446499242", - "swapFee": "31805796266741512807", + "expectedQty": "285792311081885486664", + "swapFee": "171578333649320884", "reserves": [ - "4748090522790418077752216", - "2553768141639066092345747" + "5864683882720754719999912", + "4789041484049167296062986" ], - "LPTokenSupply": "7182742685393830343167910" + "LPTokenSupply": "10529070250175582859506523" }, { - "type": "redeemMasset", - "inputQty": "2421453609732575232", - "expectedQtys": [ - "1599720757163170019", - "860412388001633579" - ], - "redemptionFee": "1452872165839545", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5677461460284843491328", + "expectedQty": "5736907538435004224482", + "swapFee": "3406476876170906094", "reserves": [ - "4748088923069660914582197", - "2553767281226678090712168" + "5864683882720754719999912", + "4783304576510732291838504" ], - "LPTokenSupply": "7182740264085507827176632" + "LPTokenSupply": "10523393129362985633105804" }, { "type": "redeemMasset", - "inputQty": "161354202011785206169", + "inputQty": "248849131592589312", "expectedQtys": [ - "106597815966108425256", - "57333807153821193350" + "138600337405967180", + "113044051730257848" ], - "redemptionFee": "96812521207071123", + "redemptionFee": "149309478955553", "reserves": [ - "4747982325253694806156941", - "2553709947419524269518818" + "5864683744120417314032732", + "4783304463466680561580656" ], - "LPTokenSupply": "7182578919564748162677575" + "LPTokenSupply": "10523392880528784988412047" }, { "type": "mint", "inputIndex": 0, - "inputQty": "56084588368766265458688", - "expectedQty": "55075804389658191513918", + "inputQty": "8489802374121205530624", + "expectedQty": "8385265921463861672372", "reserves": [ - "4804066913622461071615629", - "2553709947419524269518818" + "5873173546494538519563356", + "4783304463466680561580656" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "96564333837613120094208", - "expectedQty": "98272483252894721612192", - "swapFee": "57938600302567872056", + "inputQty": "17064726129265334026240", + "expectedQty": "16854490331970528286457", "reserves": [ - "4705794430369566350003437", - "2553709947419524269518818" - ], - "LPTokenSupply": "7141096183976823490884490" + "5890238272623803853589596", + "4783304463466680561580656" + ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "157078098102533816320", - "expectedQty": "154259734607651153035", + "type": "redeemBassets", + "inputQtys": [ + "448590902390254085341184", + "131594100763132247932928" + ], + "expectedQty": "573239682281857113306675", + "swapFee": "344150299548843574128", "reserves": [ - "4705951508467668883819757", - "2553709947419524269518818" - ] + "5441647370233549768248412", + "4651710362703548313647728" + ], + "LPTokenSupply": "9975083219230768305847484" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "108693877401227460608", - "outputIndex": 1, - "expectedQty": "108096320019287604162", - "swapFee": "85394907174224374", + "type": "mintMulti", + "inputQtys": [ + "4546557989542032", + "51792486698125040" + ], + "expectedQty": "55705645277300629", "reserves": [ - "4706060202345070111280365", - "2553601851099504981914656" + "5441647374780107757790444", + "4651710414496035011772768" ], - "LPTokenSupply": "7141250452250921859459962", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9975083274936413583148113" }, { "type": "redeemMasset", - "inputQty": "341195065260614719897", + "inputQty": "7849876824591858073", "expectedQtys": [ - "224711500860886930018", - "121932929008381066698" + "4279726863552494293", + "3658460141068963717" ], - "redemptionFee": "204717039156368831", + "redemptionFee": "4709926094755114", "reserves": [ - "4705835490844209224350347", - "2553479918170496600847958" + "5441643095053244205296151", + "4651706756035893942809051" ], - "LPTokenSupply": "7140909277657365160376948" + "LPTokenSupply": "9975075425530581600765551" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "88422507271318913024", + "expectedQty": "87435802138957201129", + "reserves": [ + "5441643095053244205296151", + "4651795178543165261722075" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "12454417376743475200", - "expectedQty": "12674357565324031180", - "swapFee": "7472650426046085", + "inputIndex": 1, + "inputQty": "40664597214935793664", + "expectedQty": "41098820195609232625", + "swapFee": "24398758328961476", "reserves": [ - "4705822816486643900319167", - "2553479918170496600847958" + "5441643095053244205296151", + "4651754079722969652489450" ], - "LPTokenSupply": "7140896823987253459506356" + "LPTokenSupply": "9975122199175381455069163" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "102979648767461488066560", - "289802232657184693420032" + "3866501261582887026688", + "2123953706480346595328" ], - "expectedQty": "387155007680426814222959", - "swapFee": "232432464086708113401", + "expectedQty": "5919597519309710571215", "reserves": [ - "4602843167719182412252607", - "2263677685513311907427926" + "5445509596314827092322839", + "4653878033429449999084778" ], - "LPTokenSupply": "6753532627089148607981335" + "LPTokenSupply": "9981041796694691165640378" }, { - "type": "redeemMasset", - "inputQty": "1462412381824976578150", - "expectedQtys": [ - "996103292695055170771", - "489883472883449648792" + "type": "redeemBassets", + "inputQtys": [ + "1582720387717453316096", + "2777948956013643169792" ], - "redemptionFee": "877447429094985946", + "expectedQty": "4310369549258872215473", + "swapFee": "2587774394191838432", "reserves": [ - "4601847064426487357081836", - "2263187802040428457779134" + "5443926875927109639006743", + "4651100084473436355914986" ], - "LPTokenSupply": "6752070302452066540901779" + "LPTokenSupply": "9976729098148477520770315" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "209269186311078996344832", - "expectedQty": "211741591998467195129155", - "swapFee": "125561511786647397806", + "inputQty": "62289808952588628918272", + "expectedQty": "61593324991375878835349", "reserves": [ - "4601847064426487357081836", - "2051446210041961262649979" - ], - "LPTokenSupply": "6542813672292166209296727" + "5443926875927109639006743", + "4713389893426024984833258" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "692896013698546008064", - "expectedQty": "700796083904676739595", - "swapFee": "415737608219127604", - "reserves": [ - "4601847064426487357081836", - "2050745413958056585910384" + "type": "redeemMasset", + "inputQty": "8602633102566446700953", + "expectedQtys": [ + "4662532673744458653831", + "4036853338235397890830" ], - "LPTokenSupply": "6542120817852228485201423" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "111646342401612512", - "expectedQty": "112919113887365750", - "swapFee": "66987805440967", + "redemptionFee": "5161579861539868020", "reserves": [ - "4601847064426487357081836", - "2050745301038942698544634" + "5439264343253365180352912", + "4709353040087789586942428" ], - "LPTokenSupply": "6542120706212584864133007" + "LPTokenSupply": "10029720306195273106891513" }, { - "type": "mintMulti", - "inputQtys": [ - "44289146751015068893184", - "98797317188608986185728" + "type": "redeemMasset", + "inputQty": "13849834239234", + "expectedQtys": [ + "7506461545612", + "6499146809068" ], - "expectedQty": "141072272800836588095372", + "redemptionFee": "8309900543", "reserves": [ - "4646136211177502425975020", - "2149542618227551684730362" + "5439264343245858718807300", + "4709353040081290440133360" ], - "LPTokenSupply": "6683192979013421452228379" + "LPTokenSupply": "10029720306181424103642333" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "12233108310001486659584", - "115170017019546187071488" + "2861277185946005504", + "222440174751590656" ], - "expectedQty": "125750213834136949838522", + "expectedQty": "3046440211621770177", + "swapFee": "1828961503875387", "reserves": [ - "4658369319487503912634604", - "2264712635247097871801850" + "5439261481968672772801796", + "4709352817641115688542704" ], - "LPTokenSupply": "6808943192847558402066901" + "LPTokenSupply": "10029717258095147128384306" }, { "type": "swap", "inputIndex": 1, - "inputQty": "1516549415277716832256", + "inputQty": "2894086880914937217024", "outputIndex": 0, - "expectedQty": "1525504831076517876433", + "expectedQty": "2896862374875688473076", "swapFee": "0", "reserves": [ - "4656843814656427394758171", - "2266229184662375588634106" + "5436364619593797084328720", + "4712246904522030625759728" ], - "LPTokenSupply": "6808943192847558402066901", + "LPTokenSupply": "10029717258095147128384306", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1682196622278791266304", - "3165797520337062592512" - ], - "expectedQty": "4777206508521534542195", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3442259390258870222848", + "expectedQty": "3479190813869065154208", + "swapFee": "2065355634155322133", "reserves": [ - "4658526011278706186024475", - "2269394982182712651226618" + "5436364619593797084328720", + "4708767713708161560605520" ], - "LPTokenSupply": "6813720399356079936609096" + "LPTokenSupply": "10026275205240451673693671" }, { "type": "redeemBassets", "inputQtys": [ - "3084416671755998", - "10534715886053758" + "314505545835428970496", + "2234774423807304400896" ], - "expectedQty": "13429732897221466", - "swapFee": "8062677344739", + "expectedQty": "2520412258758718621472", + "swapFee": "1513155248404273737", "reserves": [ - "4658526008194289514268477", - "2269394971647996765172860" + "5436050114047961655358224", + "4706532939284354256204624" ], - "LPTokenSupply": "6813720385919090629777363" + "LPTokenSupply": "10023753431141969391225834" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "44615979421621582561280", - "outputIndex": 0, - "expectedQty": "44871210078515168970909", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "37431578314772", + "expectedQtys": [ + "20287594762044", + "17565002346035" + ], + "redemptionFee": "22458946988", "reserves": [ - "4613654798115774345297568", - "2314010951069618347734140" + "5436050114027674060596180", + "4706532939266789253858589" ], - "LPTokenSupply": "6813720385919090629777363", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "10023753431104540058805760" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "3230548505521489969152", + "expectedQty": "3268341447247657233718", + "swapFee": "1938329103312893981", + "reserves": [ + "5432781772580426403362462", + "4706532939266789253858589" + ], + "LPTokenSupply": "10020523076431928900126006" }, { "type": "redeemBassets", "inputQtys": [ - "299005362713892093952", - "4972591192228443979776" + "555754037360702995300352", + "439770475822961511104512" ], - "expectedQty": "5202446798169895844486", - "swapFee": "3123342084152428964", + "expectedQty": "983840580180679314206071", + "swapFee": "590658743354420240668", "reserves": [ - "4613355792753060453203616", - "2309038359877389903754364" + "4877027735219723408062110", + "4266762463443827742754077" ], - "LPTokenSupply": "6808515128113044996746808" + "LPTokenSupply": "9036150903382230607703332" }, { "type": "redeemMasset", - "inputQty": "16827429982308454839091", + "inputQty": "23800955174725591708467", "expectedQtys": [ - "11395192868519018531383", - "5703426883515915750218" - ], - "redemptionFee": "10096457989385072903", - "reserves": [ - "4601960599884541434672233", - "2303334932993873988004146" + "12838239755085221789363", + "11231783466825418602294" ], - "LPTokenSupply": "6791688707776535480415007" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "43124273537292791971840", - "expectedQty": "43900098043814613744179", - "swapFee": "25874564122375675183", + "redemptionFee": "14280573104835355025", "reserves": [ - "4558060501840726820928054", - "2303334932993873988004146" + "4864189495464638186272747", + "4255530679977002324151783" ], - "LPTokenSupply": "6748567021695654926010685" + "LPTokenSupply": "9012351376264815499530367" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "2960523744880663461888", - "outputIndex": 1, - "expectedQty": "2942020859609285777794", - "swapFee": "2325197660568823538", + "inputIndex": 1, + "inputQty": "140771723077815156736", + "outputIndex": 0, + "expectedQty": "140897296496657505252", + "swapFee": "0", "reserves": [ - "4561021025585607484389942", - "2300392912134264702226352" + "4864048598168141528767495", + "4255671451700080139308519" ], - "LPTokenSupply": "6748567254215420982893038", + "LPTokenSupply": "9012351376264815499530367", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "9423595256430601437184", - "11986994989918175887360" - ], - "expectedQty": "21084318921945389665748", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4628651765085680697344", + "expectedQty": "4682925882947478583368", + "swapFee": "2777191059051408418", "reserves": [ - "4570444620842038085827126", - "2312379907124182878113712" + "4859365672285194050184127", + "4255671451700080139308519" ], - "LPTokenSupply": "6769651573137366372558786" + "LPTokenSupply": "9007723002218835723973864" }, { "type": "redeemBassets", "inputQtys": [ - "98116814393233539072", - "156604220438710353920" + "134234240770305130496", + "274666911712977321984" ], - "expectedQty": "250913473468998563582", - "swapFee": "150638467161696155", + "expectedQty": "404160291421551122469", + "swapFee": "242641759908875999", "reserves": [ - "4570346504027644852288054", - "2312223302903744167759792" + "4859231438044423745053631", + "4255396784788367161986535" ], - "LPTokenSupply": "6769400524089276928468663" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "119138375480506433536", - "expectedQty": "117603511752523980934", - "reserves": [ - "4570346504027644852288054", - "2312342441279224674193328" - ] + "LPTokenSupply": "9007318623549830254862994" }, { "type": "mintMulti", "inputQtys": [ - "409072825305047872", - "1768312692715134208" - ], - "expectedQty": "2147140920314264530", - "reserves": [ - "4570346913100470157335926", - "2312344209591917389327536" + "1985113537220472995840", + "39916412603080925184" ], - "LPTokenSupply": "6769520274741949766714127" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "19095935971441102848", - "expectedQty": "19333556352217615345", - "swapFee": "11457561582864661", + "expectedQty": "2000395263598776158180", "reserves": [ - "4570346913100470157335926", - "2312324876035565171712191" + "4861216551581644218049471", + "4255436701200970242911719" ], - "LPTokenSupply": "6769501179951734483897745" + "LPTokenSupply": "9009319018813429031021174" }, { "type": "redeemMasset", - "inputQty": "504908105369568972", + "inputQty": "2701877945117062882918", "expectedQtys": [ - "340678076027928890", - "172362931063565455" + "1456995041631126693246", + "1275431799393436350996" ], - "redemptionFee": "302944863221741", + "redemptionFee": "1621126767070237729", "reserves": [ - "4570346572422394129407036", - "2312324703672634108146736" + "4859759556540013091356225", + "4254161269401576806560723" ], - "LPTokenSupply": "6769500675073923600650947" + "LPTokenSupply": "9006617302980988675162028" }, { - "type": "redeemBassets", - "inputQtys": [ - "204495750820768219136", - "17697594443711137792" + "type": "redeemMasset", + "inputQty": "133397080016922502758", + "expectedQtys": [ + "71934750416416516835", + "62970611114650615581" ], - "expectedQty": "218234573724989767013", - "swapFee": "131019355848502961", + "redemptionFee": "80038248010153501", "reserves": [ - "4570142076671573361187900", - "2312307006078190397008944" + "4859687621789596674839390", + "4254098298790462155945142" ], - "LPTokenSupply": "6769282322582778347231268" + "LPTokenSupply": "9006483913904796553674620" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "814393918108636413952", - "outputIndex": 1, - "expectedQty": "809321273959253897231", - "swapFee": "639628881407069992", - "reserves": [ - "4570956470589681997601852", - "2311497684804231143111713" - ], - "LPTokenSupply": "6769282386545666487938267", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mintMulti", - "inputQtys": [ - "8237924109385590784", - "13911257252085080064" - ], - "expectedQty": "21819701104664332941", + "inputQty": "18647957394451588", + "expectedQty": "18420766395587205", "reserves": [ - "4570964708513791383192636", - "2311511596061483228191777" - ], - "LPTokenSupply": "6769304206246771152271208" + "4859687640437554069290978", + "4254098298790462155945142" + ] }, { - "type": "redeemMasset", - "inputQty": "268683507322947", - "expectedQtys": [ - "181319365571190", - "91692201282514" - ], - "redemptionFee": "161210104393", + "type": "mint", + "inputIndex": 0, + "inputQty": "5934494099081008250880", + "expectedQty": "5862181915557768774732", "reserves": [ - "4570964708332472017621446", - "2311511595969791026909263" - ], - "LPTokenSupply": "6769304205978103765958700" + "4865622134536635077541858", + "4254098298790462155945142" + ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "28190909514297712", - "expectedQty": "27676547310469966", + "inputQty": "143515734724006417268736", + "expectedQty": "145192232617571384453141", + "swapFee": "86109440834403850361", "reserves": [ - "4570964736523381531919158", - "2311511595969791026909263" - ] + "4720429901919063693088717", + "4254098298790462155945142" + ], + "LPTokenSupply": "8868838990461197741152857" }, { "type": "swap", "inputIndex": 1, - "inputQty": "11391254323878", + "inputQty": "574866530731025235968", "outputIndex": 0, - "expectedQty": "11453514612171", + "expectedQty": "575263942456641850226", "swapFee": "0", "reserves": [ - "4570964736511928017306987", - "2311511595981182281233141" + "4719854637976607051238491", + "4254673165321193181181110" ], - "LPTokenSupply": "6769304233654651076428666", + "LPTokenSupply": "8868838990461197741152857", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2872572204879471616", - "6452763259489052672" - ], - "expectedQty": "9189813321239124325", - "swapFee": "5517198311730512", + "type": "mint", + "inputIndex": 1, + "inputQty": "460456704650940252160", + "expectedQty": "455199211856211448993", "reserves": [ - "4570961863939723137835371", - "2311505143217922792180469" - ], - "LPTokenSupply": "6769295038875851356746879" + "4719854637976607051238491", + "4255133622025844121433270" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "3057414192083215872", - "2105599038516978944" - ], - "expectedQty": "5080108998274128433", - "swapFee": "3049895336166176", + "type": "redeem", + "inputIndex": 0, + "inputQty": "302528916088486848", + "expectedQty": "306050475079586366", + "swapFee": "181517349653092", "reserves": [ - "4570958806525531054619499", - "2311503037618884275201525" + "4719854331926131971652125", + "4255133622025844121433270" ], - "LPTokenSupply": "6769289956021947280068886" + "LPTokenSupply": "8869293887162289599080311" }, { "type": "redeemMasset", - "inputQty": "833314214033240985", + "inputQty": "12742325172270746828", "expectedQtys": [ - "562357284590020456", - "284380285751253604" + "6776845403550644192", + "6109591673807391857" ], - "redemptionFee": "499988528419944", + "redemptionFee": "7645395103362448", "reserves": [ - "4570958244168246464599043", - "2311502753238598523947921" + "4719847555080728421007933", + "4255127512434170314041413" ], - "LPTokenSupply": "6769289122757732099669895" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "10501926787565416873984", - "9348364803589172887552" - ], - "expectedQty": "19538297381729107696155", - "swapFee": "11730016438900805100", - "reserves": [ - "4560456317380681047725059", - "2302154388435009351060369" - ], - "LPTokenSupply": "6749740268361207981249149" + "LPTokenSupply": "8869281145601656838669727" }, { "type": "mint", "inputIndex": 1, - "inputQty": "64459918322034087559168", - "expectedQty": "63624071871224465525976", + "inputQty": "327062506868170686464", + "expectedQty": "323328002594579782925", "reserves": [ - "4560456317380681047725059", - "2366614306757043438619537" + "4719847555080728421007933", + "4255454574941038484727877" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "77164065086817032994816", - "40555880696090749566976" - ], - "expectedQty": "115789316932033412548124", - "swapFee": "69515299338823341533", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1238607401210448445440", + "expectedQty": "1253024457392800011061", + "swapFee": "743164440726269067", "reserves": [ - "4483292252293864014730243", - "2326058426060952689052561" + "4718594530623335620996872", + "4255454574941038484727877" ], - "LPTokenSupply": "6697512459530994093219620" + "LPTokenSupply": "8868365940519485042634118" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "923200461589555", + "expectedQty": "912658016189784", + "reserves": [ + "4718594530623335620996872", + "4255454575864238946317432" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "6551740615540314112", + "inputQty": "122976975862285516800", "outputIndex": 1, - "expectedQty": "6512711040789037292", - "swapFee": "5146186596218754", + "expectedQty": "122794160223944352096", + "swapFee": "97191301257250919", "reserves": [ - "4483298804034479555044355", - "2326051913349911900015269" + "4718717507599197906513672", + "4255331781704015001965336" ], - "LPTokenSupply": "6697512460045612752841495", + "LPTokenSupply": "8868365951151273184548993", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "61522398723771678720", - "expectedQty": "60404888962509071433", + "inputQty": "6865275099589940224", + "expectedQty": "6945183905789329614", + "swapFee": "4119165059753964", "reserves": [ - "4483360326433203326723075", - "2326051913349911900015269" - ] + "4718710562415292117184058", + "4255331781704015001965336" + ], + "LPTokenSupply": "8868359086288090100584165" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1929697300980643659776", - "expectedQty": "1894644221166301888050", + "inputIndex": 1, + "inputQty": "1400527686754774810624", + "expectedQty": "1384533868229326834026", "reserves": [ - "4485290023734183970382851", - "2326051913349911900015269" + "4718710562415292117184058", + "4256732309390769776775960" ] }, { "type": "redeemBassets", "inputQtys": [ - "130515817509815926784", - "314891740453998034944" + "4196351171148971", + "4026861410242724" ], - "expectedQty": "438921910825071187594", - "swapFee": "263511253246990907", + "expectedQty": "8126457901869830", + "swapFee": "4878802022335", "reserves": [ - "4485159507916674154456067", - "2325737021609457901980325" + "4718710558218940946035087", + "4256732305363908366533236" ], - "LPTokenSupply": "6699028350084788570321566" + "LPTokenSupply": "8869743612025470603728258" }, { - "type": "redeemBassets", - "inputQtys": [ - "56860431828242028036096", - "39362211113729804730368" - ], - "expectedQty": "94675515507333375930229", - "swapFee": "56839412952171328355", + "type": "mint", + "inputIndex": 0, + "inputQty": "4617797983932187", + "expectedQty": "4561933236171887", + "reserves": [ + "4718710562836738929967274", + "4256732305363908366533236" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "45003036500591932080128", + "expectedQty": "45494751270352251416011", + "swapFee": "27001821900355159248", "reserves": [ - "4428299076088432126419971", - "2286374810495728097249957" + "4718710562836738929967274", + "4211237554093556115117225" ], - "LPTokenSupply": "6604301679105798240195816" + "LPTokenSupply": "8824743280269001943335941" }, { "type": "mintMulti", "inputQtys": [ - "22413001890384454877184", - "1688734921107088343040" + "54185572180430344", + "12705708312961728" ], - "expectedQty": "23671884607782910485482", + "expectedQty": "66089122340863867", "reserves": [ - "4450712077978816581297155", - "2288063545416835185592997" + "4718710617022311110397618", + "4211237566799264428078953" ], - "LPTokenSupply": "6627973563713581150681298" + "LPTokenSupply": "8824743346358124284199808" }, { - "type": "redeemBassets", - "inputQtys": [ - "65603680551007289344", - "62560415914714464256" + "type": "redeem", + "inputIndex": 0, + "inputQty": "6287379310365039919104", + "expectedQty": "6360776153497408409927", + "swapFee": "3772427586219023951", + "reserves": [ + "4712349840868813701987691", + "4211237566799264428078953" ], - "expectedQty": "126155603886973002435", - "swapFee": "75738805615553133", + "LPTokenSupply": "8818456344290517866183099" + }, + { + "type": "redeemMasset", + "inputQty": "20644853204140992102", + "expectedQtys": [ + "11025444301464011188", + "9852996233492227312" + ], + "redemptionFee": "12386911922484595", "reserves": [ - "4450646474298265574007811", - "2288000985000920471128741" + "4712338815424512237976503", + "4211227713803030935851641" ], - "LPTokenSupply": "6627847339944769123681042" + "LPTokenSupply": "8818435700676004917439456" }, { - "type": "redeemBassets", - "inputQtys": [ - "1426812589092089364480", - "43231934588325355520" + "type": "redeem", + "inputIndex": 1, + "inputQty": "159408584881091609886720", + "expectedQty": "161137327119120278647365", + "swapFee": "95645150928654965932", + "reserves": [ + "4712338815424512237976503", + "4050090386683910657204276" + ], + "LPTokenSupply": "8659036680310006173049329" + }, + { + "type": "redeemMasset", + "inputQty": "65789002620964060109209", + "expectedQtys": [ + "35781585189604959298228", + "30753020925061689669076" ], - "expectedQty": "1443507860449951994034", - "swapFee": "866624691084621969", + "redemptionFee": "39473401572578436065", "reserves": [ - "4449219661709173484643331", - "2287957753066332145773221" + "4676557230234907278678275", + "4019337365758848967535200" ], - "LPTokenSupply": "6626403052122097195527234" + "LPTokenSupply": "8593251625029199370783726" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "527405107991616448", - "508896090773790656" + "62250051738029826048", + "120554335746861498368" ], - "expectedQty": "1020076260222896002", - "swapFee": "612413204056171", + "expectedQty": "180682713679648008843", "reserves": [ - "4449219134304065493026883", - "2287957244170241371982565" + "4676619480286645308504323", + "4019457920094595829033568" ], - "LPTokenSupply": "6626402031494665088980677" + "LPTokenSupply": "8593432307742879018792569" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "13695295360194109440", - "expectedQty": "13445989281588818248", + "inputQty": "82061158423781426855936", + "expectedQty": "83028036766373068564539", + "swapFee": "49236695054268856113", "reserves": [ - "4449232829599425687136323", - "2287957244170241371982565" - ] + "4593591443520272239939784", + "4019457920094595829033568" + ], + "LPTokenSupply": "8511376072988603018822244" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "752997457345483136", - "outputIndex": 0, - "expectedQty": "756975705408111752", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "7292745631763896729600", + "outputIndex": 1, + "expectedQty": "7280339862634548707669", + "swapFee": "5762915329490179137", "reserves": [ - "4449232072623720279024571", - "2287957997167698717465701" + "4600884189152036136669384", + "4012177580231961280325899" ], - "LPTokenSupply": "6626415477483946677798925", + "LPTokenSupply": "8511376649280135967840157", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "42542231335520184565760", - "expectedQty": "43304250617218655298755", - "swapFee": "25525338801312110739", - "reserves": [ - "4405927822006501623725816", - "2287957997167698717465701" - ], - "LPTokenSupply": "6583875798682306624444238" - }, { "type": "redeemMasset", - "inputQty": "65197828531216934", + "inputQty": "1303472737330428641280", "expectedQtys": [ - "43604190188636132", - "22643256921689109" + "704178545830926468793", + "614075307682087402436" ], - "redemptionFee": "39118697118730", + "redemptionFee": "782083642398257184", "reserves": [ - "4405927778402311435089684", - "2287957974524441795776592" + "4600180010606205210200591", + "4011563504924279192923463" ], - "LPTokenSupply": "6583875733488389962939177" + "LPTokenSupply": "8510073254751169779024595" }, { "type": "redeemBassets", "inputQtys": [ - "2957308280248029", - "3981796501500887" + "948390857816152064", + "1219892191863411456" ], - "expectedQty": "6833250771874755", - "swapFee": "4102411910271", + "expectedQty": "2142873790647375419", + "swapFee": "1286496172091680", "reserves": [ - "4405927775445003154841655", - "2287957970542645294275705" + "4600179062215347394048527", + "4011562285032087329512007" ], - "LPTokenSupply": "6583875726651447020345177" + "LPTokenSupply": "8510071110719532576766663" }, { "type": "mintMulti", "inputQtys": [ - "27969572822596339105792", - "34524969943308745834496" + "73879439349957301108736", + "81607547529301235597312" ], - "expectedQty": "61533824318827929461797", + "expectedQty": "153659465497561186267066", "reserves": [ - "4433897348267599493947447", - "2322482940485954040110201" + "4674058501565304695157263", + "4093169832561388565109319" ], - "LPTokenSupply": "6645409550970274949806974" + "LPTokenSupply": "8663730576217093763033729" }, { - "type": "redeemMasset", - "inputQty": "10244460408755083594956", - "expectedQtys": [ - "6831126322783072995138", - "3578155537400303651767" - ], - "redemptionFee": "6146676245253050156", + "type": "mint", + "inputIndex": 0, + "inputQty": "92109069016100698587136", + "expectedQty": "90981282207211311635785", "reserves": [ - "4427066221944816420952309", - "2318904784948553736458434" - ], - "LPTokenSupply": "6635165705229144391517033" + "4766167570581405393744399", + "4093169832561388565109319" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1554492994102995968", - "expectedQty": "1574257976755086820", - "swapFee": "932695796461797", + "type": "redeemMasset", + "inputQty": "353536448252708546150", + "expectedQtys": [ + "192353897368687738945", + "165192926649257120927" + ], + "redemptionFee": "212121868951625127", "reserves": [ - "4427066221944816420952309", - "2318903210690576981371614" + "4765975216684036706005454", + "4093004639634739307988392" ], - "LPTokenSupply": "6635164150829419868167244" + "LPTokenSupply": "8754358343188239261285876" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "68755060442592815611904", - "expectedQty": "69981470506815001991896", - "swapFee": "41253036265555689367", + "inputQty": "316894874964780946292736", + "expectedQty": "320605473086300403046676", + "swapFee": "190136924978868567775", "reserves": [ - "4357084751438001418960413", - "2318903210690576981371614" + "4445369743597736302958778", + "4093004639634739307988392" ], - "LPTokenSupply": "6566413215690453608124276" + "LPTokenSupply": "8437482481915956201849917" }, { "type": "redeemBassets", "inputQtys": [ - "24640339790853107712", - "411345544697863667712" + "12711377379076698112", + "26624956610365673472" ], - "expectedQty": "430086050057584953746", - "swapFee": "258206553966931130", + "expectedQty": "38875734919077251584", + "swapFee": "23339444618217281", "reserves": [ - "4357060111098210565852701", - "2318491865145879117703902" + "4445357032220357226260666", + "4092978014678128942314920" ], - "LPTokenSupply": "6565982897254497452932512" + "LPTokenSupply": "8437443585175536968202779" }, { "type": "mintMulti", "inputQtys": [ - "351849279674742976", - "4561709992906173440" + "1121593540639693602816", + "52697145001453969408" ], - "expectedQty": "4846712062340349195", + "expectedQty": "1160137982293405449684", "reserves": [ - "4357060462947490240595677", - "2318496426855872023877342" + "4446478625760996919863482", + "4093030711823130396284328" ], - "LPTokenSupply": "6565987743966559793281707" + "LPTokenSupply": "8438603723157830373652463" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "41998101779566758461440", - "expectedQty": "41237548951985612954012", + "inputIndex": 1, + "inputQty": "680009058584186060800", + "expectedQty": "672166126715625928900", "reserves": [ - "4399058564727056999057117", - "2318496426855872023877342" + "4446478625760996919863482", + "4093710720881714582345128" ] }, + { + "type": "redeemMasset", + "inputQty": "707814373122982071500", + "expectedQtys": [ + "372708885628783045138", + "343139479413397127248" + ], + "redemptionFee": "424688623873789242", + "reserves": [ + "4446105916875368136818344", + "4093367581402301185217880" + ], + "LPTokenSupply": "8438568117380285404888787" + }, { "type": "redeemBassets", "inputQtys": [ - "2015906321364720025600", - "6415413821593345851392" + "15197766754048675938304", + "14277256637046983753728" ], - "expectedQty": "8310171440492515834645", - "swapFee": "4989096322088762758", + "expectedQty": "29126816886632225237938", + "swapFee": "17486582081228071985", "reserves": [ - "4397042658405692279031517", - "2312081013034278678025950" + "4430908150121319460880040", + "4079090324765254201464152" ], - "LPTokenSupply": "6598910631291363010514590" + "LPTokenSupply": "8409425562569780074386061" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5076490960674326528", - "expectedQty": "4984429127742117471", + "type": "redeemMasset", + "inputQty": "302909211531195750", + "expectedQtys": [ + "159506447426597979", + "146841501649655898" + ], + "redemptionFee": "181745526918717", "reserves": [ - "4397047734896652953358045", - "2312081013034278678025950" - ] + "4430907990614872034282061", + "4079090177923752551808254" + ], + "LPTokenSupply": "8409425259678743095882182" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "33952872429999552987136", - "expectedQty": "34558740624234548774017", - "swapFee": "20371723457999731792", + "type": "redeemMasset", + "inputQty": "10732785101063920025", + "expectedQtys": [ + "5651688219857310460", + "5202939432535630445" + ], + "redemptionFee": "6439671060638352", "reserves": [ - "4362488994272418404584028", - "2312081013034278678025950" + "4430902338926652176971601", + "4079084974984320016177809" ], - "LPTokenSupply": "6564964780462836999618104" + "LPTokenSupply": "8409414527537609138025992" }, { "type": "redeemBassets", "inputQtys": [ - "3401606747028577792", - "2318771562460042240" + "131398472813213138944", + "995938515437887815680" ], - "expectedQty": "5628085962179690190", - "swapFee": "3378878904650604", + "expectedQty": "1114261561177873343057", + "swapFee": "668958311693740249", "reserves": [ - "4362485592665671376006236", - "2312078694262716217983710" + "4430770940453838963832657", + "4078089036468882128362129" ], - "LPTokenSupply": "6564959149335883805742369" + "LPTokenSupply": "8408299663913950740316709" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 1, + "inputQty": "28920227532462440316928", + "expectedQty": "28586286182665458284447", + "reserves": [ + "4430770940453838963832657", + "4107009264001344568679057" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "86319527289194168320", - "407443369178248118272" + "14957643658906629570560", + "8580591603302801604608" ], - "expectedQty": "486807192924261752789", - "swapFee": "292259671557491546", + "expectedQty": "23258698271848266824141", "reserves": [ - "4362399273138382181837916", - "2311671250893537969865438" + "4445728584112745593403217", + "4115589855604647370283665" ], - "LPTokenSupply": "6564472079109255142247187" + "LPTokenSupply": "8460144648368464465425297" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "159597214328706236416", - "expectedQty": "162443365966627371959", - "swapFee": "95758328597223741", + "type": "redeemBassets", + "inputQtys": [ + "95325745206392176", + "202734884910875584" + ], + "expectedQty": "294568379334772589", + "swapFee": "176847135882392", "reserves": [ - "4362236829772415554465957", - "2311671250893537969865438" + "4445728488787000387011041", + "4115589652869762459408081" ], - "LPTokenSupply": "6564312491470759295733145" + "LPTokenSupply": "8460144353640922708358554" }, { "type": "redeemBassets", "inputQtys": [ - "68193650888567431168", - "18496969960495403008" + "122255523477453340672", + "139870994514519588864" ], - "expectedQty": "85210812122258104389", - "swapFee": "51157181582304245", + "expectedQty": "259035842566827950925", + "swapFee": "155514814428754022", "reserves": [ - "4362168636121526987034789", - "2311652753923577474462430" + "4445606233263522933670369", + "4115449781875247939819217" ], - "LPTokenSupply": "6564227234617173613554934" + "LPTokenSupply": "8459885177835022894529008" }, { "type": "swap", "inputIndex": 0, - "inputQty": "695116086042660831232", + "inputQty": "35146587715975786790912", "outputIndex": 1, - "expectedQty": "691126524687760993654", - "swapFee": "546021703954242614", + "expectedQty": "35098556642355019907528", + "swapFee": "27777798703707468934", "reserves": [ - "4362863752207569647866021", - "2310961627398889713468776" + "4480752820979498720461281", + "4080351225232892919911689" ], - "LPTokenSupply": "6564227289219344008979195", + "LPTokenSupply": "8459887955614893265275901", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "10442027905414034620416", + "expectedQty": "10321887964452340966560", + "reserves": [ + "4480752820979498720461281", + "4090793253138306954532105" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "646167456403742261248", - "2123968316234437492736" + "82262108707712548864", + "19850920754386776064" ], - "expectedQty": "2730324117484309489409", + "expectedQty": "100888540414242793974", + "swapFee": "60569465928102537", "reserves": [ - "4363509919663973390127269", - "2313085595715124150961512" + "4480670558870791007912417", + "4090773402217552567756041" ], - "LPTokenSupply": "6566957613336828318468604" + "LPTokenSupply": "8470108900526412028156202" }, { "type": "redeemMasset", - "inputQty": "883933976528453369856", + "inputQty": "55078618712321582694", "expectedQtys": [ - "586990303436159424227", - "311162078395639134239" + "29118996543842313737", + "26585131621646190848" ], - "redemptionFee": "530360385917072021", + "redemptionFee": "33047171227392949", "reserves": [ - "4362922929360537230703042", - "2312774433636728511827273" + "4480641439874247165598680", + "4090746817085930921565193" ], - "LPTokenSupply": "6566073732396338456805950" + "LPTokenSupply": "8470053825212416829312802" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "116561805353521898323968", - "expectedQty": "118634566832660102835469", - "swapFee": "69937083212113138994", + "inputIndex": 1, + "inputQty": "67674743442421665759232", + "expectedQty": "68419644978819549608328", + "swapFee": "40604846065452999455", "reserves": [ - "4244288362527877127867573", - "2312774433636728511827273" + "4480641439874247165598680", + "4022327172107111371956865" ], - "LPTokenSupply": "6449518920751137769795881" + "LPTokenSupply": "8402383142254601708853515" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1488399598328828133376", - "expectedQty": "1514806561039688763719", - "swapFee": "893039758997296880", + "type": "redeemBassets", + "inputQtys": [ + "26885552043110978027520", + "11643993923250909347840" + ], + "expectedQty": "38069160005820059281569", + "swapFee": "22855209128969417219", "reserves": [ - "4242773555966837439103854", - "2312774433636728511827273" + "4453755887831136187571160", + "4010683178183860462609025" ], - "LPTokenSupply": "6448030610456784841392193" + "LPTokenSupply": "8364293412560565577096447" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "629607176034065", - "633548175537376" + "1091842460354278064128", + "2006863555707980218368" ], - "expectedQty": "1243301576859173", + "expectedQty": "3062415658122171179349", + "swapFee": "1838552526389136189", "reserves": [ - "4242773556596444615137919", - "2312774434270276687364649" + "4452664045370781909507032", + "4008676314628152482390657" ], - "LPTokenSupply": "6448030611700086418251366" + "LPTokenSupply": "8361229342205169655694526" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "72012456726479713075200", - "outputIndex": 0, - "expectedQty": "72332375820310151974718", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "85450245281603764224", + "expectedQty": "86450096694239750691", + "swapFee": "51270147168962258", "reserves": [ - "4170441180776134463163201", - "2384786890996756400439849" + "4452577595274087669756341", + "4008676314628152482390657" ], - "LPTokenSupply": "6448030611700086418251366", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8361143897086902768826527" }, { "type": "redeemMasset", - "inputQty": "95069864016427289", + "inputQty": "584169637904135697203", "expectedQtys": [ - "61452156455388576", - "35140238355074660" + "310902435980330070001", + "279906908887418418151" ], - "redemptionFee": "57041918409856", + "redemptionFee": "350501782742481418", "reserves": [ - "4170441119323978007774625", - "2384786855856518045365189" + "4452266692838107339686340", + "4008396407719265063972506" ], - "LPTokenSupply": "6448030516635926593665062" + "LPTokenSupply": "8360559762499176907377465" }, { "type": "redeemBassets", "inputQtys": [ - "4612764261985074", - "7828311901421682" + "2636383650427283439616", + "5014084120600946671616" ], - "expectedQty": "12251290283235767", - "swapFee": "7355187282310", + "expectedQty": "7560912765140531659270", + "swapFee": "4539271221817409441", "reserves": [ - "4170441114711213745789551", - "2384786848028206143943507" + "4449630309187680056246724", + "4003382323598664117300890" ], - "LPTokenSupply": "6448030504378016641875215" + "LPTokenSupply": "8352994764389936740049697" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "68573404870625558528", - "expectedQty": "69778371241161210726", - "swapFee": "41144042922375335", + "inputQty": "45066241871021656", + "expectedQty": "44518178845696561", + "reserves": [ + "4449630354253921927268380", + "4003382323598664117300890" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1637658970424991", + "779883369658664" + ], + "expectedQty": "2388683803299740", + "swapFee": "1434070724414", "reserves": [ - "4170371336339972584578825", - "2384786848028206143943507" + "4449630352616262956843389", + "4003382322818780747642226" ], - "LPTokenSupply": "6447961935087550308554220" + "LPTokenSupply": "8352994806518141118794544" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "5574597125776119693312", - "expectedQty": "5648718188155146631047", - "swapFee": "3344758275465671815", + "inputQty": "23075586820816756539392", + "outputIndex": 0, + "expectedQty": "23090968962098720678788", + "swapFee": "0", "reserves": [ - "4170371336339972584578825", - "2379138129840050997312460" + "4426539383654164236164601", + "4026457909639597504181618" ], - "LPTokenSupply": "6442387672437601735428089" + "LPTokenSupply": "8352994806518141118794544", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "20424264222307196928", + "expectedQty": "20176582822886010144", + "reserves": [ + "4426559807918386543361529", + "4026457909639597504181618" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "5105086328955462483968", - "99081953384864579321856" + "5930935098098535424", + "5247814443335255040" ], - "expectedQty": "102749605600742658920758", - "swapFee": "61686775425701015962", + "expectedQty": "11046452343528095667", "reserves": [ - "4165266250011017122094857", - "2280056176455186417990604" + "4426565738853484641896953", + "4026463157454040839436658" ], - "LPTokenSupply": "6339582548738975945592964" + "LPTokenSupply": "8353026029553307532900355" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "18734932140933865537536", - "41809498603668293812224" + "1703049110041993412608", + "6470175452393047588864" ], - "expectedQty": "59642639317032186712065", + "expectedQty": "8078145926620927496081", + "swapFee": "4849797434433216427", "reserves": [ - "4184001182151950987632393", - "2321865675058854711802828" + "4424862689743442648484345", + "4019992982001647791847794" ], - "LPTokenSupply": "6399225188056008132305029" + "LPTokenSupply": "8344943518808995615509488" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "403580674122591371264", - "expectedQty": "408878169987685893362", - "swapFee": "242148404473554822", + "type": "redeemMasset", + "inputQty": "2476341839367097958", + "expectedQtys": [ + "1312279478442990372", + "1192207456740646009" + ], + "redemptionFee": "1485805103620258", "reserves": [ - "4184001182151950987632393", - "2321456796888867025909466" + "4424861377463964205493973", + "4019991789794191051201785" ], - "LPTokenSupply": "6398821631596725988289247" + "LPTokenSupply": "8344941042615736758773555" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "216611474688918290432", - "expectedQty": "219454589935354490521", - "swapFee": "129966884813350974", + "type": "redeemBassets", + "inputQtys": [ + "2821444442794555867136", + "9665575601759668142080" + ], + "expectedQty": "12341652188357142246483", + "swapFee": "7409436975199404990", "reserves": [ - "4184001182151950987632393", - "2321237342298931671418945" + "4422039933021169649626837", + "4010326214192431383059705" ], - "LPTokenSupply": "6398605033118725551333912" + "LPTokenSupply": "8332592721934101937062580" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "589138694019804495872", - "expectedQty": "599559205583650054491", - "swapFee": "353483216411882697", + "type": "mintMulti", + "inputQtys": [ + "33306879330055110656", + "71441616721467817984" + ], + "expectedQty": "103522975182474500693", "reserves": [ - "4183401622946367337577902", - "2321237342298931671418945" + "4422073239900499704737493", + "4010397655809152850877689" ], - "LPTokenSupply": "6398015929773027388026309" + "LPTokenSupply": "8332696244909284411563273" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "634780301872872161280", - "expectedQty": "643111928590089915644", - "swapFee": "380868181123723296", + "type": "redeemMasset", + "inputQty": "1885588017782347687526", + "expectedQtys": [ + "1000061102072984662341", + "906959808632581216418" + ], + "redemptionFee": "1131352810669408612", "reserves": [ - "4183401622946367337577902", - "2320594230370341581503301" + "4421073178798426720075152", + "4009490696000520269661271" ], - "LPTokenSupply": "6397381187557972628237358" + "LPTokenSupply": "8330810770026783130816608" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "171652200499019253809152", - "expectedQty": "168555497725048026964048", + "inputIndex": 1, + "inputQty": "46993134651347476414464", + "expectedQty": "46451968652559341801189", "reserves": [ - "4355053823445386591387054", - "2320594230370341581503301" + "4421073178798426720075152", + "4056483830651867746075735" ] }, { "type": "redeemBassets", "inputQtys": [ - "51778093336259", - "1252122229490767" + "24487879064420290560", + "518641255430218907648" ], - "expectedQty": "1286321726246625", - "swapFee": "772256389581", + "expectedQty": "536849902307806103400", + "swapFee": "322303323378710888", "reserves": [ - "4355053823393608498050795", - "2320594229118219352012534" + "4421048690919362299784592", + "4055965189396437527168087" ], - "LPTokenSupply": "6565936683996003898204157" + "LPTokenSupply": "8376725598704043625674596" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "21074171095222681600", - "41536039810065309696" + "85461189500927344", + "40762941598837592" ], - "expectedQty": "61676537338145253312", - "swapFee": "37028139286459027", + "expectedQty": "124719715472347262", "reserves": [ - "4355032749222513275369195", - "2320552693078409286702838" + "4421048776380551800711936", + "4055965230159379126005679" ], - "LPTokenSupply": "6565874974133340395137719" + "LPTokenSupply": "8376725723423759098021858" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "215566411244547717726208", - "expectedQty": "219390743305904131845743", - "swapFee": "129339846746728630635", + "inputIndex": 1, + "inputQty": "13933301738407433601024", + "expectedQty": "14087362761511465380065", + "swapFee": "8359981043044460160", "reserves": [ - "4135642005916609143523452", - "2320552693078409286702838" + "4421048776380551800711936", + "4041877867397867660625614" ], - "LPTokenSupply": "6350321496873467350274574" + "LPTokenSupply": "8362793257683455968866850" }, { "type": "swap", "inputIndex": 0, - "inputQty": "42715751812357741871104", + "inputQty": "18894364165584191488", "outputIndex": 1, - "expectedQty": "42488940383787168157810", - "swapFee": "33558620089690925683", + "expectedQty": "18868003258659170641", + "swapFee": "14932394366775188", "reserves": [ - "4178357757728966885394556", - "2278063752694622118545028" + "4421067670744717384903424", + "4041858999394609001454973" ], - "LPTokenSupply": "6350324852735476319367142", + "LPTokenSupply": "8362793259176695405544368", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "102283131960936", - "expectedQty": "100906289155877", - "reserves": [ - "4178357757728966885394556", - "2278063752796905250505964" - ] - }, - { - "type": "redeemMasset", - "inputQty": "9419005682256187909734", - "expectedQtys": [ - "6193755876867145273845", - "3376869951038572395776" - ], - "redemptionFee": "5651403409353712745", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4791362603792330752", + "expectedQty": "4847203028126885583", + "swapFee": "2874817562275398", "reserves": [ - "4172164001852099740120711", - "2274686882845866678110188" + "4421062823541689258017841", + "4041858999394609001454973" ], - "LPTokenSupply": "6340906412294467355984559" + "LPTokenSupply": "8362788468101573369441155" }, { "type": "redeemBassets", "inputQtys": [ - "1262324775164473344", - "982134819236677248" + "30791272244605968", + "113114264289296464" ], - "expectedQty": "2208448605448978253", - "swapFee": "1325864682078634", + "expectedQty": "142228979669157130", + "swapFee": "85388620974078", "reserves": [ - "4172162739527324575647367", - "2274685900711047441432940" + "4421062792750417013411873", + "4041858886280344712158509" ], - "LPTokenSupply": "6340904202652583693135534" + "LPTokenSupply": "8362788325795743941407353" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "55181521413947042824192", - "expectedQty": "56161014682354839816637", - "swapFee": "33108912848368225694", - "reserves": [ - "4116001724844969735830730", - "2274685900711047441432940" - ], - "LPTokenSupply": "6285725992129921487133911" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "6499663144573129981952", - "6304879015334909050880" - ], - "expectedQty": "12602041146777148784792", - "swapFee": "7565764146554221803", + "inputQty": "985138155545114705920", + "expectedQty": "996618982742570985313", + "swapFee": "591082893327068823", "reserves": [ - "4109502061700396605848778", - "2268381021695712532382060" + "4420066173767674442426560", + "4041858886280344712158509" ], - "LPTokenSupply": "6273117141795412439549495" + "LPTokenSupply": "8361803246748488159408315" }, { "type": "redeemBassets", "inputQtys": [ - "272876339298640330752", - "16535311768871587840" + "428490869497909346304", + "446868285309907173376" ], - "expectedQty": "284271345748894566651", - "swapFee": "170665206573280708", + "expectedQty": "865018759781539520827", + "swapFee": "519322849578670915", "reserves": [ - "4109229185361097965518026", - "2268364486383943660794220" + "4419637682898176533080256", + "4041412017995034804985133" ], - "LPTokenSupply": "6272832716850977629030205" + "LPTokenSupply": "8360937760598141999083663" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "18806631985719273324544", - "expectedQty": "18551400960825584567863", + "inputIndex": 0, + "inputQty": "83853223714187493376", + "expectedQty": "82837534852055666539", "reserves": [ - "4109229185361097965518026", - "2287171118369662934118764" + "4419721536121890720573632", + "4041412017995034804985133" ] }, { "type": "redeemBassets", "inputQtys": [ - "1592059863777762048", - "4122694009448593408" + "2334563031862572482560", + "30636010027149193904128" ], - "expectedQty": "5630060092785049644", - "swapFee": "3380064094127506", + "expectedQty": "32589557648023365138436", + "swapFee": "19565473873137901824", "reserves": [ - "4109227593301234187755978", - "2287166995675653485525356" + "4417386973090028148091072", + "4010776007967885611081005" ], - "LPTokenSupply": "6291378484709652743833667" + "LPTokenSupply": "8328413431558484865500123" }, { - "type": "mintMulti", - "inputQtys": [ - "4632098373925260288", - "3789471392704453120" + "type": "redeemMasset", + "inputQty": "39277154083747371417", + "expectedQtys": [ + "20820086416372090706", + "18903642264374784615" ], - "expectedQty": "8286721617948253821", + "redemptionFee": "23566292450248422", "reserves": [ - "4109232225399608113016266", - "2287170785147046189978476" + "4417366153003611776000366", + "4010757104325621236296390" ], - "LPTokenSupply": "6291386771431270692087488" + "LPTokenSupply": "8328374156761030363153548" }, { "type": "mintMulti", "inputQtys": [ - "15327588383156264960", - "9233993196936765440" - ], - "expectedQty": "24160311830985653942", - "reserves": [ - "4109247552987991269281226", - "2287180019140243126743916" + "1205747601334244", + "2355604261989181" ], - "LPTokenSupply": "6291410931743101677741430" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "654637214770129536", - "expectedQty": "663262664266945600", - "swapFee": "392782328862077", + "expectedQty": "3519621522591088", "reserves": [ - "4109247552987991269281226", - "2287179355877578859798316" + "4417366154209359377334610", + "4010757106681225498285571" ], - "LPTokenSupply": "6291410277145165140498101" + "LPTokenSupply": "8328374160280651885744636" }, { "type": "mintMulti", "inputQtys": [ - "1942836245969628416", - "1033032525217616000" + "19861610235797497184256", + "31640909036181547646976" ], - "expectedQty": "2926874543299806261", + "expectedQty": "50897417880051482171598", "reserves": [ - "4109249495824237238909642", - "2287180388910104077414316" + "4437227764445156874518866", + "4042398015717407045932547" ], - "LPTokenSupply": "6291413204019708440304362" + "LPTokenSupply": "8379271578160703367916234" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "66546648318105234702336", - "outputIndex": 0, - "expectedQty": "66829834915331924489069", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "2078758241344537755648", + "3533142956127679938560" + ], + "expectedQty": "5546011982590288607112", + "swapFee": "3329604952525688577", "reserves": [ - "4042419660908905314420573", - "2353727037228209312116652" + "4435149006203812336763218", + "4038864872761279365993987" ], - "LPTokenSupply": "6291413204019708440304362", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8373722569533655806189401" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "165301507170750303305728", - "expectedQty": "168190383775103955139298", - "swapFee": "99180904302450181983", - "reserves": [ - "3874229277133801359281275", - "2353727037228209312116652" - ], - "LPTokenSupply": "6126121614939388382016832" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "108601627872555767431168", - "37642391817658130497536" - ], - "expectedQty": "143790325309723327638331", - "swapFee": "86325990780302177889", + "inputQty": "728145976935026", + "expectedQty": "736643213401886", + "swapFee": "436887586161", "reserves": [ - "3765627649261245591850107", - "2316084645410551181619116" + "4435149005467169123361332", + "4038864872761279365993987" ], - "LPTokenSupply": "5982253596237962782418399" + "LPTokenSupply": "8373722568805553518012991" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1113589562168082169856", - "expectedQty": "1132954027348622064502", - "swapFee": "668153737300849301", + "inputIndex": 1, + "inputQty": "4920113786111483969536", + "expectedQty": "4974423710262444515741", + "swapFee": "2952068271666890381", "reserves": [ - "3764494695233896969785605", - "2316084645410551181619116" + "4435149005467169123361332", + "4033890449051016921478246" ], - "LPTokenSupply": "5981140073491168430333473" + "LPTokenSupply": "8368802750226269200732493" }, { "type": "mint", "inputIndex": 1, - "inputQty": "52716698823901640", - "expectedQty": "51968361731186979", + "inputQty": "43932314641646911488", + "expectedQty": "43426676583017274821", "reserves": [ - "3764494695233896969785605", - "2316084698127250005520756" + "4435149005467169123361332", + "4033934381365658568389734" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "82528180321352826880", - "expectedQty": "81356648140823904668", + "inputQty": "1243708110018216722432", + "expectedQty": "1229392989721295700228", "reserves": [ - "3764494695233896969785605", - "2316167226307571358347636" + "4435149005467169123361332", + "4035178089475676785112166" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "292035328246944723107840", - "expectedQty": "295949358392883054293969", - "swapFee": "175221196948166833864", - "reserves": [ - "3764494695233896969785605", - "2020217867914688304053667" + "type": "redeemMasset", + "inputQty": "540537437854198608691", + "expectedQtys": [ + "286248988012377207958", + "260434461872259741467" ], - "LPTokenSupply": "5689203675980421079000666" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "50761727105496055808", - "expectedQty": "51670050552152939825", - "swapFee": "30457036263297633", + "redemptionFee": "324322462712519165", "reserves": [ - "3764443025183344816845780", - "2020217867914688304053667" + "4434862756479156746153374", + "4034917655013804525370699" ], - "LPTokenSupply": "5689152917299019209274621" + "LPTokenSupply": "8369535064886965586350767" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1579154236423986479104", - "318945472210041896960" + "57298506899864272896", + "35612696426437160960" ], - "expectedQty": "1865127540778381207533", + "expectedQty": "91806169755742551416", + "swapFee": "55116771916595488", "reserves": [ - "3766022179419768803324884", - "2020536813386898345950627" + "4434805457972256881880478", + "4034882042317378088209739" ], - "LPTokenSupply": "5691018044839797590482154" + "LPTokenSupply": "8369443209112115118863410" }, { "type": "mintMulti", "inputQtys": [ - "36799470708662435053568", - "6076270090838254551040" + "1658730383452590309376", + "237638997678973779968" ], - "expectedQty": "42125269916985075803444", + "expectedQty": "1873510632047958317652", "reserves": [ - "3802821650128431238378452", - "2026613083477736600501667" + "4436464188355709472189854", + "4035119681315057061989707" ], - "LPTokenSupply": "5733143314756782666285598" + "LPTokenSupply": "8371316719744163077181062" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "3872849526272605290496", - "expectedQty": "3821025703043805026792", + "inputQty": "306949199868767139528704", + "outputIndex": 0, + "expectedQty": "306994622598920553243800", + "swapFee": "0", "reserves": [ - "3802821650128431238378452", - "2030485933004009205792163" - ] + "4129469565756788918946054", + "4342068881183824201518411" + ], + "LPTokenSupply": "8371316719744163077181062", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "82773243249175296", - "2643762728025246720" + "type": "redeemMasset", + "inputQty": "3243412751378006461644", + "expectedQtys": [ + "1598976427434039761357", + "1681297240904944693921" ], - "expectedQty": "2689637014027552822", + "redemptionFee": "1946047650826803876", "reserves": [ - "3802821732901674487553748", - "2030488576766737231038883" + "4127870589329354879184697", + "4340387583942919256824490" ], - "LPTokenSupply": "5736967030096840498865212" + "LPTokenSupply": "8368073501597550153399805" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "155050128667690172416", + "expectedQty": "153190925906870027059", + "reserves": [ + "4127870589329354879184697", + "4340542634071586946996906" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "44271186678706782208", - "expectedQty": "44844987069980428990", - "swapFee": "26562712007224069", + "inputQty": "1001135585027350724608", + "expectedQty": "1012677578583679669408", + "swapFee": "600681351016410434", "reserves": [ - "3802821732901674487553748", - "2030443731779667250609893" + "4127870589329354879184697", + "4339529956493003267327498" ], - "LPTokenSupply": "5736922761566432992805410" + "LPTokenSupply": "8367225617006564774343299" }, { - "type": "mintMulti", - "inputQtys": [ - "2578184054575738650624", - "1599603671098325729280" - ], - "expectedQty": "4109484736488858450492", + "type": "mint", + "inputIndex": 1, + "inputQty": "8032174055664007512064", + "expectedQty": "7935841686500331847217", "reserves": [ - "3805399916956250226204372", - "2032043335450765576339173" - ], - "LPTokenSupply": "5741032246302921851255902" + "4127870589329354879184697", + "4347562130548667274839562" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1732125917282337554432", - "8313985054996943601664" + "232201297984316473344", + "1385496567799107813376" ], - "expectedQty": "9903213375709735135131", + "expectedQty": "1598370889183025718864", + "swapFee": "959598292485306615", "reserves": [ - "3807132042873532563758804", - "2040357320505762519940837" + "4127638388031370562711353", + "4346176633980868167026186" ], - "LPTokenSupply": "5750935459678631586391033" + "LPTokenSupply": "8373562224165418843695697" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "75427770113681145856", - "23032376649134080000" + "9549343059821244416", + "653217734000346267648" ], - "expectedQty": "96780453320253281531", + "expectedQty": "654820213836637890314", + "swapFee": "393128005105045761", "reserves": [ - "3807207470643646244904660", - "2040380352882411654020837" + "4127628838688310741466937", + "4345523416246867820758538" ], - "LPTokenSupply": "5751032240131951839672564" + "LPTokenSupply": "8372907050136377611264197" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1396867482673887313920", - "expectedQty": "1371480602812293309175", + "inputQty": "5413257219404107612160", + "expectedQty": "5350137099954519692606", "reserves": [ - "3808604338126320132218580", - "2040380352882411654020837" + "4133042095907714849079097", + "4345523416246867820758538" ] }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "53228719894445", + "expectedQty": "53824510447918", + "swapFee": "31937231936", + "reserves": [ + "4133042095853890338631179", + "4345523416246867820758538" + ], + "LPTokenSupply": "8378257187183106604785551" + }, { "type": "swap", "inputIndex": 1, - "inputQty": "11707740201724126691328", + "inputQty": "10984038039911441367040", "outputIndex": 0, - "expectedQty": "11764038429358712404960", + "expectedQty": "10980198994875239677473", "swapFee": "0", "reserves": [ - "3796840299696961419813620", - "2052088093084135780712165" + "4122061896859015098953706", + "4356507454286779262125578" ], - "LPTokenSupply": "5752403720734764132981739", + "LPTokenSupply": "8378257187183106604785551", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "13156530169693912170496", - "16249264742164196229120" - ], - "expectedQty": "28948392090453563619445", - "swapFee": "17379462932031356985", + "type": "swap", + "inputIndex": 1, + "inputQty": "53667725282446783021056", + "outputIndex": 0, + "expectedQty": "53643519455873293715454", + "swapFee": "0", "reserves": [ - "3783683769527267507643124", - "2035838828341971584483045" + "4068418377403141805238252", + "4410175179569226045146634" ], - "LPTokenSupply": "5723439687127671741141006" + "LPTokenSupply": "8378257187183106604785551", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "364371192225285734400", - "325246226735423881216" + "9957130286518690119680", + "11413552336676633706496" ], - "expectedQty": "678628138722266670952", + "expectedQty": "21117622617441126548512", "reserves": [ - "3784048140719492793377524", - "2036164074568707008364261" + "4078375507689660495357932", + "4421588731905902678853130" ], - "LPTokenSupply": "5724118315266394007811958" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "3457662003930904133632", - "expectedQty": "3394858047791408732638", - "reserves": [ - "3787505802723423697511156", - "2036164074568707008364261" - ] + "LPTokenSupply": "8399374809800547731334063" }, { "type": "mintMulti", "inputQtys": [ - "35844371728443846656", - "32117097434599407616" + "6773805028239268118528", + "121888057835386830848000" ], - "expectedQty": "66878857254016125818", + "expectedQty": "127105489242498618786643", "reserves": [ - "3787541647095152141357812", - "2036196191666141607771877" + "4085149312717899763476460", + "4543476789741289509701130" ], - "LPTokenSupply": "5727580052171439432670414" + "LPTokenSupply": "8526480299043046350120706" }, { "type": "mint", "inputIndex": 0, - "inputQty": "28875405444017253515264", - "expectedQty": "28350492110787274396515", + "inputQty": "933953043428911232", + "expectedQty": "923240711489052187", "reserves": [ - "3816417052539169394873076", - "2036196191666141607771877" + "4085150246670943192387692", + "4543476789741289509701130" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "198936870038673060528128", - "expectedQty": "201442209362251794790836", - "swapFee": "119362122023203836316", - "reserves": [ - "3816417052539169394873076", - "1834753982303889812981041" - ], - "LPTokenSupply": "5557005610455755966922432" - }, - { - "type": "redeemMasset", - "inputQty": "147629697763615232", - "expectedQtys": [ - "101327672775640835", - "48713583600356365" - ], - "redemptionFee": "88577818658169", + "inputIndex": 0, + "inputQty": "1062538641506430877696", + "expectedQty": "1074221823547532595893", + "swapFee": "637523184903858526", "reserves": [ - "3816416951211496619232241", - "1834753933590306212624676" + "4084076024847395659791799", + "4543476789741289509701130" ], - "LPTokenSupply": "5557005462834915985173016" + "LPTokenSupply": "8525418747394569898681049" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "136255487910186", - "expectedQty": "137919615405219", - "swapFee": "81753292746", - "reserves": [ - "3816416951211496619232241", - "1834753933452386597219457" + "type": "redeemBassets", + "inputQtys": [ + "362708359010768", + "340744216029065" ], - "LPTokenSupply": "5557005462698668672592104" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "84191933756503450714112", - "expectedQty": "85203893771294367191953", - "swapFee": "50515160253902070428", + "expectedQty": "695145837526460", + "swapFee": "417337905259", "reserves": [ - "3816416951211496619232241", - "1749550039681092230027504" + "4084076024484687300781031", + "4543476789400545293672065" ], - "LPTokenSupply": "5472818580458190612085034" + "LPTokenSupply": "8525418746699048457039854" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "54904346630345344417792", - "44693647428368430268416" + "22381173873448599552", + "19958672116591955968" ], - "expectedQty": "98017257772019554110817", + "expectedQty": "41840260515726166230", + "swapFee": "25119227846143385", "reserves": [ - "3871321297841841963650033", - "1794243687109460660295920" + "4084053643310813852181479", + "4543456830728428701716097" ], - "LPTokenSupply": "5570835838230210166195851" + "LPTokenSupply": "8525376883831227669344576" }, { "type": "redeemBassets", "inputQtys": [ - "6357182295900146368512", - "2304157558667020075008" + "6038483745966319992832", + "5632361573982516805632" ], - "expectedQty": "8513729696117273930362", - "swapFee": "5111304600430622731", + "expectedQty": "11533044848933185993796", + "swapFee": "6923981298138794873", "reserves": [ - "3864964115545941817281521", - "1791939529550793640220912" + "4078015159564847532188647", + "4537824469154446184910465" ], - "LPTokenSupply": "5562317508359952504705030" + "LPTokenSupply": "8513837607399126158435393" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "57515888102446563328", - "outputIndex": 1, - "expectedQty": "57099864835897495406", - "swapFee": "45150678366085448", + "type": "mint", + "inputIndex": 1, + "inputQty": "13306943487120254976", + "expectedQty": "13144979505858221885", "reserves": [ - "3865021631434044263844849", - "1791882429685957742725506" - ], - "LPTokenSupply": "5562317512875020341313574", - "hardLimitError": false, - "insufficientLiquidityError": false + "4078015159564847532188647", + "4537837776097933305165441" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "566282062475880693760", - "expectedQty": "576747380527891403967", - "swapFee": "339769237485528416", + "inputQty": "346888444394481123328", + "expectedQty": "342909961646407003371", "reserves": [ - "3864444884053516372440882", - "1791882429685957742725506" - ], - "LPTokenSupply": "5561751264789468209172655" + "4078362048009242013311975", + "4537837776097933305165441" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "127832418587588100096", - "399292599293744906240" - ], - "expectedQty": "519788327240559171534", - "swapFee": "312060232483825798", + "type": "mint", + "inputIndex": 0, + "inputQty": "139494960822926442496", + "expectedQty": "137895056328508301447", "reserves": [ - "3864317051634928784340786", - "1791483137086663997819266" - ], - "LPTokenSupply": "5561231195608018414557901" + "4078501542970064939754471", + "4537837776097933305165441" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "768944690996576256000", - "expectedQty": "783155491732944268130", - "swapFee": "461366814597945753", + "type": "redeemMasset", + "inputQty": "33544061765422112", + "expectedQtys": [ + "16058503364762456", + "17867072607050794" + ], + "redemptionFee": "20126437059253", "reserves": [ - "3863533896143195840072656", - "1791483137086663997819266" + "4078501526911561574992015", + "4537837758230860698114647" ], - "LPTokenSupply": "5560462297053703298096476" + "LPTokenSupply": "8514331523854557810245909" }, { "type": "mintMulti", "inputQtys": [ - "66421057541471536676864", - "10301279039484464201728" + "148416593706956488704", + "118472550776364154880" ], - "expectedQty": "75349511924991267990030", + "expectedQty": "263744974181233463948", "reserves": [ - "3929954953684667376749520", - "1801784416126148462020994" + "4078649943505268531480719", + "4537956230781637062269527" ], - "LPTokenSupply": "5635811808978694566086506" + "LPTokenSupply": "8514595268828739043709857" }, { "type": "mintMulti", "inputQtys": [ - "73098656109288990179328", - "252036559673507998334976" + "1204003699187742932992", + "7944922903378805129216" ], - "expectedQty": "320567548052064299261463", + "expectedQty": "9038404814789723187665", "reserves": [ - "4003053609793956366928848", - "2053820975799656460355970" + "4079853947204456274413711", + "4545901153685015867398743" ], - "LPTokenSupply": "5956379357030758865347969" + "LPTokenSupply": "8523633673643528766897522" }, { - "type": "swap", + "type": "mint", + "inputIndex": 0, + "inputQty": "62455810577876473872384", + "expectedQty": "61738141934631863405593", + "reserves": [ + "4142309757782332748286095", + "4545901153685015867398743" + ] + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "59612306780823197057024", - "outputIndex": 0, - "expectedQty": "59914879790858356446516", - "swapFee": "0", + "inputQty": "4382455030196384825344", + "expectedQty": "4329299071787873784331", + "reserves": [ + "4142309757782332748286095", + "4550283608715212252224087" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "8195805017429646", + "4327452357888004" + ], + "expectedQty": "12376397089044894", "reserves": [ - "3943138730003098010482332", - "2113433282580479657412994" + "4142309765978137765715741", + "4550283613042664610112091" ], - "LPTokenSupply": "5956379357030758865347969", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "8589701127026345593132340" }, { "type": "mintMulti", "inputQtys": [ - "2816457169907426", - "317791898532305" + "9742056484666536361984", + "19468572861993955885056" ], - "expectedQty": "3078706102447403", + "expectedQty": "28862265620566256437039", "reserves": [ - "3943138732819555180389758", - "2113433282898271555945299" + "4152051822462804302077725", + "4569752185904658565997147" ], - "LPTokenSupply": "5956379360109464967795372" + "LPTokenSupply": "8618563392646911849569379" }, { "type": "redeemBassets", "inputQtys": [ - "373659828059460534272", - "595169225213332160512" + "988442637361927", + "91350100341071" ], - "expectedQty": "954026074843047336450", - "swapFee": "572759300486120073", + "expectedQty": "1067309879323103", + "swapFee": "640770389827", "reserves": [ - "3942765072991495719855486", - "2112838113673058223784787" + "4152051821474361664715798", + "4569752185813308465656076" ], - "LPTokenSupply": "5955424818551251482950855" + "LPTokenSupply": "8618563391579025276895430" }, { "type": "mint", "inputIndex": 0, - "inputQty": "122931493943379127959552", - "expectedQty": "120686889124146743912097", + "inputQty": "60434406146796775538688", + "expectedQty": "59737465611773966652416", "reserves": [ - "4065696566934874847815038", - "2112838113673058223784787" + "4212486227621158440254486", + "4569752185813308465656076" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "246282146771119840", - "expectedQty": "243022098926369845", + "inputQty": "1968783166142391040", + "expectedQty": "1944978203160807767", "reserves": [ - "4065696566934874847815038", - "2112838359955204994904627" + "4212486227621158440254486", + "4569754154596474608047116" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "25828529314763284414464", - "outputIndex": 1, - "expectedQty": "25672572388273903278969", - "swapFee": "20284190943959919448", + "type": "mintMulti", + "inputQtys": [ + "168869109544816769761280", + "253681105332253627514880" + ], + "expectedQty": "417529638851279526363538", "reserves": [ - "4091525096249638132229502", - "2087165787566931091625658" + "4381355337165975210015766", + "4823435259928728235561996" ], - "LPTokenSupply": "6076113979116591549224741", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9095832441020281930719151" }, { "type": "redeemBassets", "inputQtys": [ - "3542592084669501", - "4214158553333565" + "24300477066715940782080", + "4098847622711861051392" ], - "expectedQty": "7636377649476485", - "swapFee": "4584577336087", + "expectedQty": "28070136034457033827655", + "swapFee": "16852192936436081945", "reserves": [ - "4091525092707046047560001", - "2087165783352772538292093" + "4357054860099259269233686", + "4819336412306016374510604" ], - "LPTokenSupply": "6076113971476087780145776" + "LPTokenSupply": "9067747138012182104417744" }, { "type": "mintMulti", "inputQtys": [ - "1059986471537701945344", - "2461187095040430702592" + "13630522367531628363776", + "7499712686237801250816" ], - "expectedQty": "3469413774840150725153", + "expectedQty": "20882428494298952371246", "reserves": [ - "4092585079178583749505345", - "2089626970447812968994685" + "4370685382466790897597462", + "4826836124992254175761420" ], - "LPTokenSupply": "6079583385250927930870929" + "LPTokenSupply": "9088629566506481056788990" }, { - "type": "mintMulti", - "inputQtys": [ - "1004663147695839510528", - "947833805111839555584" + "type": "swap", + "inputIndex": 0, + "inputQty": "5417368276401090", + "outputIndex": 1, + "expectedQty": "5416608723817362", + "swapFee": "4284068072066", + "reserves": [ + "4370685387884159173998552", + "4826836119575645451944058" ], - "expectedQty": "1921598673877837289349", + "LPTokenSupply": "9088629566506909463596196", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "20882002917639017463808", + "outputIndex": 1, + "expectedQty": "20878438495380116900766", + "swapFee": "16513400580881734343", "reserves": [ - "4093589742326279589015873", - "2090574804252924808550269" + "4391567390801798191462360", + "4805957681080265335043292" ], - "LPTokenSupply": "6081504983924805768160278" + "LPTokenSupply": "9088631217846967551769630", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "3784062302610526", - "2772079591794643" + "type": "redeemMasset", + "inputQty": "36066853730089402368", + "expectedQtys": [ + "17416812380703004716", + "19060270694306931131" ], - "expectedQty": "6450230375805687", - "swapFee": "3872461702504", + "redemptionFee": "21640112238053641", "reserves": [ - "4093589738542217286405347", - "2090574801480845216755626" + "4391549973989417488457644", + "4805938620809571028112161" ], - "LPTokenSupply": "6081504977471090176822336" + "LPTokenSupply": "9088595153157248686172626" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "394504638366099827589120", - "expectedQty": "401576421713018159726262", - "swapFee": "236702783019659896553", + "type": "mint", + "inputIndex": 1, + "inputQty": "17214222807388608512", + "expectedQty": "17005548900011520091", "reserves": [ - "3692013316829199126679085", - "2090574801480845216755626" - ], - "LPTokenSupply": "5687024009383292315222871" + "4391549973989417488457644", + "4805955835032378416720673" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "34672927509394731008", - "expectedQty": "35289264074286930911", - "swapFee": "20803756505636838", + "inputQty": "1306792703627806900224", + "expectedQty": "1291724596161398845570", + "reserves": [ + "4392856766693045295357868", + "4805955835032378416720673" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "729018589131685888000", + "401180255206327451648" + ], + "expectedQty": "1116929692929211210856", + "swapFee": "670560151848635908", "reserves": [ - "3691978027565124839748174", - "2090574801480845216755626" + "4392127748103913609469868", + "4805554654777172089269025" ], - "LPTokenSupply": "5686989338536158571055546" + "LPTokenSupply": "9088786350105244221555112" }, { "type": "redeemBassets", "inputQtys": [ - "16165779965507952181248", - "15669212024874377150464" + "2875436948952299520", + "8316677751911260160" + ], + "expectedQty": "11058147129286147605", + "swapFee": "6638871600532007", + "reserves": [ + "4392124872666964657170348", + "4805546338099420178008865" ], - "expectedQty": "31326530906148205171622", - "swapFee": "18807202865408168003", + "LPTokenSupply": "9088775285983130494928699" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "40311069722063325364224", + "expectedQty": "40756182088203548122513", + "swapFee": "24186641833237995218", "reserves": [ - "3675812247599616887566926", - "2074905589455970839605162" + "4351368690578761109047835", + "4805546338099420178008865" ], - "LPTokenSupply": "5655645881147431498532720" + "LPTokenSupply": "9048466634925250493363996" }, { "type": "redeemMasset", - "inputQty": "5376185470105601808793", + "inputQty": "56335266402046982", "expectedQtys": [ - "3492084140765991347202", - "1971195592826464773165" + "27075132502896865", + "29901121487259452" + ], + "redemptionFee": "33801159841228", + "reserves": [ + "4351368663503628606150970", + "4805546308198298690749413" ], - "redemptionFee": "3225711282063361085", + "LPTokenSupply": "9048466578593364207301136" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "123197951473354734043136", + "expectedQty": "124550179968095153291428", + "swapFee": "73918770884012840425", "reserves": [ - "3672320163458850896219724", - "2072934393863144374831997" + "4226818483535533452859542", + "4805546308198298690749413" ], - "LPTokenSupply": "5650270018248454103060035" + "LPTokenSupply": "8925276018997097874542042" }, { "type": "mintMulti", "inputQtys": [ - "115780561033044596621312", - "44418489665080912773120" + "1031612247861328347136", + "728005833124757766144" ], - "expectedQty": "157492929911988449956194", + "expectedQty": "1738931786021698781560", "reserves": [ - "3788100724491895492841036", - "2117352883528225287605117" + "4227850095783394781206678", + "4806274314031423448515557" ], - "LPTokenSupply": "5807762948160442553016229" + "LPTokenSupply": "8927014950783119573323602" }, { "type": "redeemBassets", "inputQtys": [ - "58488091260690904", - "64013888609729432" + "21217871809442073280512", + "22915132847463187087360" ], - "expectedQty": "120562909846398790", - "swapFee": "72381174612606", + "expectedQty": "43610236609196370330096", + "swapFee": "26181851076163520310", "reserves": [ - "3788100666003804232150132", - "2117352819514336677875685" + "4206632223973952707926166", + "4783359181183960261428197" ], - "LPTokenSupply": "5807762827532389649466092" - }, - { - "type": "redeemMasset", - "inputQty": "591867971084515645849", - "expectedQtys": [ - "385812969420161256096", - "215649543302331187593" - ], - "redemptionFee": "355120782650709387", - "reserves": [ - "3787714853034384070894036", - "2117137169971034346688092" - ], - "LPTokenSupply": "5807170995073383398891181" - }, - { - "type": "redeemMasset", - "inputQty": "1197072747155925080473", - "expectedQtys": [ - "780319664476001805171", - "436158430669087281327" - ], - "redemptionFee": "718243648293555048", - "reserves": [ - "3786934533369908069088865", - "2116701011540365259406765" - ], - "LPTokenSupply": "5805973994150592303166212" + "LPTokenSupply": "8883381150507954655825226" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "121435936343008362496", - "outputIndex": 0, - "expectedQty": "121973950764623061040", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "1455748436889985875968", + "outputIndex": 1, + "expectedQty": "1455827278348692692157", + "swapFee": "1151311885638435139", "reserves": [ - "3786812559419143446027825", - "2116822447476708267769261" + "4208087972410842693802134", + "4781903353905611568736040" ], - "LPTokenSupply": "5805973994150592303166212", + "LPTokenSupply": "8883381265639143219668739", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "22143909395704980701184", + "inputQty": "1699492907174887161856", "outputIndex": 0, - "expectedQty": "22240265299574691974451", + "expectedQty": "1698040725621698387166", "swapFee": "0", "reserves": [ - "3764572294119568754053374", - "2138966356872413248470445" + "4206389931685220995414968", + "4783602846812786455897896" ], - "LPTokenSupply": "5805973994150592303166212", + "LPTokenSupply": "8883381265639143219668739", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "7295695339908071686144", - "6147905357963103043584" + "2963718293233252958208", + "3242974684341513748480" ], - "expectedQty": "13226789690862526747310", - "swapFee": "7940838317508020860", + "expectedQty": "6133138889914182364258", + "swapFee": "3682092589502210745", "reserves": [ - "3757276598779660682367230", - "2132818451514450145426861" + "4203426213391987742456760", + "4780359872128444942149416" ], - "LPTokenSupply": "5792740057705244019200127" + "LPTokenSupply": "8877244812865898485314809" }, { "type": "mintMulti", "inputQtys": [ - "406142742383515639218176", - "224091995193683059146752" + "661894625111572217856", + "191069518302259937280" ], - "expectedQty": "619800476094456712246841", + "expectedQty": "843071204738689679946", "reserves": [ - "4163419341163176321585406", - "2356910446708133204573613" + "4204088108017099314674616", + "4780550941646747202086696" ], - "LPTokenSupply": "6412540533799700731446968" + "LPTokenSupply": "8878087884070637174994755" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "47805103986901197520896", + "expectedQty": "47218488053498916178996", + "reserves": [ + "4204088108017099314674616", + "4828356045633648399607592" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2682803193561251053568", + "expectedQty": "2652287881012509358587", + "reserves": [ + "4206770911210660565728184", + "4828356045633648399607592" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "2251520027869542", - "14045309347745380" + "284554005455442771968", + "261961901798892306432" ], - "expectedQty": "16061920318564450", + "expectedQty": "540060877692748437072", + "swapFee": "324231065254801943", "reserves": [ - "4163419343414696349454948", - "2356910460753442552318993" + "4206486357205205122956216", + "4828094083731849507301160" ], - "LPTokenSupply": "6412540549861621050011418" + "LPTokenSupply": "8927418307319497122773516" }, { - "type": "redeemMasset", - "inputQty": "82366699033898", - "expectedQtys": [ - "53445486867686", - "30255474332113" + "type": "mintMulti", + "inputQtys": [ + "780016318806900736000", + "144305732994022801408" ], - "redemptionFee": "49420019420", + "expectedQty": "913676028517339545515", "reserves": [ - "4163419343361250862587262", - "2356910460723187077986880" + "4207266373524012023692216", + "4828238389464843530102568" ], - "LPTokenSupply": "6412540549779259292979462" + "LPTokenSupply": "8928331983348014462319031" }, { "type": "redeemMasset", - "inputQty": "21565330544654119075840", + "inputQty": "31564027368857403392", "expectedQtys": [ - "13993150192255654652471", - "7921518191336407393999" + "14864880948304559231", + "17058864944011851549" ], - "redemptionFee": "12939198326792471445", + "redemptionFee": "18938416421314442", "reserves": [ - "4149426193168995207934791", - "2348988942531850670592881" + "4207251508643063719132985", + "4828221330599899518251019" ], - "LPTokenSupply": "6390976513154437853150766" + "LPTokenSupply": "8928300421214487247047083" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "392353071651951592079360", - "expectedQty": "385204266493158917902438", + "inputQty": "164901631464326594560", + "expectedQty": "166699063609053228887", + "swapFee": "98940978878595956", "reserves": [ - "4541779264820946800014151", - "2348988942531850670592881" - ] + "4207084809579454665904098", + "4828221330599899518251019" + ], + "LPTokenSupply": "8928135529477120808312118" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "467830594662688096256", - "871049145431089348608" + "151033037854143676416", + "22061222999593050112" ], - "expectedQty": "1318740073783306053241", + "expectedQty": "171105116463804302847", + "swapFee": "102724704701103243", "reserves": [ - "4542247095415609488110407", - "2349859991677281759941489" + "4206933776541600522227682", + "4828199269376899925200907" ], - "LPTokenSupply": "6777499519721380077106445" + "LPTokenSupply": "8927964331908422773016351" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "653686434083857760256", - "expectedQty": "665523343443704387667", - "swapFee": "392211860450314656", + "inputIndex": 1, + "inputQty": "33558299377288", + "expectedQty": "33955282378702", + "swapFee": "20134979626", "reserves": [ - "4541581572072165783722740", - "2349859991677281759941489" + "4206933776541600522227682", + "4828199269342944642822205" ], - "LPTokenSupply": "6776845872508482264377654" + "LPTokenSupply": "8927964331874866487137025" }, { - "type": "redeemMasset", - "inputQty": "4286053099728555212", - "expectedQtys": [ - "2870624603947837761", - "1485290047287139020" + "type": "mintMulti", + "inputQtys": [ + "1722195491424588", + "2139547970342933" ], - "redemptionFee": "2571631859837133", + "expectedQty": "3815869080452248", "reserves": [ - "4541578701447561835884979", - "2349858506387234472802469" + "4206933778263796013652270", + "4828199271482492613165138" ], - "LPTokenSupply": "6776841586712545721806155" + "LPTokenSupply": "8927964335690735567589273" }, { - "type": "redeemBassets", - "inputQtys": [ - "1274250130288343", - "2054754135782389" + "type": "redeemMasset", + "inputQty": "4049277787976319683788", + "expectedQtys": [ + "1906909776694513189115", + "2188515645810569625618" ], - "expectedQty": "3278356965451100", - "swapFee": "1968195096328", + "redemptionFee": "2429566672785791810", "reserves": [ - "4541578700173311705596636", - "2349858504332480337020080" + "4205026868487101500463155", + "4826010755836682043539520" ], - "LPTokenSupply": "6776841583432417380768358" + "LPTokenSupply": "8923915300859426526484666" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7009047898429265920", - "expectedQty": "6880256729925351822", + "inputIndex": 1, + "inputQty": "152582347835148515409920", + "expectedQty": "150700507099750433552810", "reserves": [ - "4541585709221210134862556", - "2349858504332480337020080" + "4205026868487101500463155", + "4978593103671830558949440" ] }, { - "type": "mintMulti", - "inputQtys": [ - "2983930851042236301312", - "9205136079606997057536" - ], - "expectedQty": "12012149881104412508625", - "reserves": [ - "4544569640072252371163868", - "2359063640412087334077616" - ], - "LPTokenSupply": "6788860613570251718628805" - }, - { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "82284821063886520320", - "expectedQty": "81192396504957088717", + "inputQty": "42786053154237", + "outputIndex": 0, + "expectedQty": "42737666388504", + "swapFee": "0", "reserves": [ - "4544569640072252371163868", - "2359145925233151220597936" - ] + "4205026868444363834074651", + "4978593103714616612103677" + ], + "LPTokenSupply": "9074615807959176960037476", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "32981005051685720", - "expectedQty": "33577814726990502", - "swapFee": "19788603031011", + "type": "mintMulti", + "inputQtys": [ + "527381558256923639808", + "2436794842795086970880" + ], + "expectedQty": "2928064423455708953180", "reserves": [ - "4544569606494437644173366", - "2359145925233151220597936" + "4205554250002620757714459", + "4981029898557411699074557" ], - "LPTokenSupply": "6788941772987730484334903" + "LPTokenSupply": "9077543872382632668990656" }, { - "type": "redeemMasset", - "inputQty": "5289072860446940", - "expectedQtys": [ - "3538421544259177", - "1836841217255640" + "type": "redeemBassets", + "inputQtys": [ + "2298244813938511839232", + "1895917021612494290944" ], - "redemptionFee": "3173443716268", + "expectedQty": "4144803198726995010269", + "swapFee": "2488374944202718637", "reserves": [ - "4544569602956016099914189", - "2359145923396310003342296" + "4203256005188682245875227", + "4979133981535799204783613" ], - "LPTokenSupply": "6788941767698974968259589" + "LPTokenSupply": "9073396829646455891533612" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "663582569044364099584", - "419728513882979958784" + "118746217234256768", + "170525832358918976" ], - "expectedQty": "1065553109231283397896", + "expectedQty": "285823114645809944", + "swapFee": "171596826883616", "reserves": [ - "4545233185525060464013773", - "2359565651910192983301080" + "4203255886442465011618459", + "4979133811009966845864637" ], - "LPTokenSupply": "6790007320808206251657485" + "LPTokenSupply": "9073396543668904101528412" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "6340665766749523673088", - "outputIndex": 1, - "expectedQty": "6302796551712753025279", - "swapFee": "4979372330029895823", + "inputIndex": 1, + "inputQty": "1187894027065373753344", + "outputIndex": 0, + "expectedQty": "1186544205229873224910", + "swapFee": "0", "reserves": [ - "4551573851291809987686861", - "2353262855358480230275801" + "4202069342237235138393549", + "4980321705037032219617981" ], - "LPTokenSupply": "6790007818745439254647067", + "LPTokenSupply": "9073396543668904101528412", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "77217237505789444096", - "expectedQty": "76194169153410064666", + "type": "mintMulti", + "inputQtys": [ + "168971724919086240", + "4096021060459133952" + ], + "expectedQty": "4212361396559724531", "reserves": [ - "4551573851291809987686861", - "2353340072595986019719897" - ] + "4202069511208960057479789", + "4980325801058092678751933" + ], + "LPTokenSupply": "9073400756030300661252943" }, { "type": "mintMulti", "inputQtys": [ - "26122157044910369275904", - "47229794738957210091520" + "12909056395384222384128", + "28690086487867982348288" ], - "expectedQty": "72244470871604856647572", + "expectedQty": "41098412212032024908904", "reserves": [ - "4577696008336720356962765", - "2400569867334943229811417" + "4214978567604344279863917", + "5009015887545960661100221" ], - "LPTokenSupply": "6862328483786197521359305" + "LPTokenSupply": "9114499168242332686161847" }, { - "type": "redeemMasset", - "inputQty": "6539847777802091967283", - "expectedQtys": [ - "4359959258322503924999", - "2286387475113252981082" + "type": "redeemBassets", + "inputQtys": [ + "28198602998951297024", + "4187994355718484918272" ], - "redemptionFee": "3923908666681255180", + "expectedQty": "4163978381611899783308", + "swapFee": "2499886961143826165", "reserves": [ - "4573336049078397853037766", - "2398283479859829976830335" + "4214950369001345328566893", + "5004827893190242176181949" ], - "LPTokenSupply": "6855789028399262097517540" + "LPTokenSupply": "9110332939962455756934989" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "296444124135990700802048", - "outputIndex": 0, - "expectedQty": "297680384451534829007509", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "282236078940250208", + "outputIndex": 1, + "expectedQty": "282335192293991032", + "swapFee": "223248047040700", "reserves": [ - "4275655664626863024030257", - "2694727603995820677632383" + "4214950651237424268817101", + "5004827610855049882190917" ], - "LPTokenSupply": "6855789028399262097517540", + "LPTokenSupply": "9110332939984780561639059", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2954094266284459425792", - "1312373395664347070464" - ], - "expectedQty": "4195220370790194875180", - "swapFee": "2518643408519228462", + "type": "redeem", + "inputIndex": 0, + "inputQty": "11420746590430804574208", + "expectedQty": "11543738224152473701317", + "swapFee": "6852447954258482744", "reserves": [ - "4272701570360578564604465", - "2693415230600156330561919" + "4203406913013271795115784", + "5004827610855049882190917" ], - "LPTokenSupply": "6851591541249404235336743" + "LPTokenSupply": "9098912878639145182913125" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "78933256864216596480", - "expectedQty": "80308042851006434058", - "swapFee": "47359954118529957", + "inputQty": "16313539137971458932736", + "outputIndex": 1, + "expectedQty": "16319175285573562403250", + "swapFee": "12903999457374089292", "reserves": [ - "4272621262317727558170407", - "2693415230600156330561919" + "4219720452151243254048520", + "4988508435569476319787667" ], - "LPTokenSupply": "6851512612728535430593258" + "LPTokenSupply": "9098914169039090920322054", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "12072449109637862103449", - "expectedQtys": [ - "7523893929154687039147", - "4742983114588617900702" + "type": "redeemBassets", + "inputQtys": [ + "3946646605671247118336", + "2496161607131731066880" ], - "redemptionFee": "7243469465782717262", + "expectedQty": "6367425994576362285985", + "swapFee": "3822749246293593527", "reserves": [ - "4265097368388572871131260", - "2688672247485567712661217" + "4215773805545572006930184", + "4986012273962344588720787" ], - "LPTokenSupply": "6839440887965844146761535" + "LPTokenSupply": "9092543302570192893801893" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7456749046027010441216", - "7262156937280626884608" + "9580283711868689711104", + "15829901088788865613824" ], - "expectedQty": "14482055931884772976280", + "expectedQty": "25106233650486027809057", + "swapFee": "15072783860607981474", "reserves": [ - "4272554117434599881572476", - "2695934404422848339545825" + "4206193521833703317219080", + "4970182372873555723106963" ], - "LPTokenSupply": "6853922943897728919737815" + "LPTokenSupply": "9067423503414232318809508" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "203540458529748263370752", - "expectedQty": "206353881776407723690585", - "swapFee": "122124275117848958022", + "inputIndex": 0, + "inputQty": "18644153141739564", + "expectedQty": "18845444051715093", + "swapFee": "11186491885043", "reserves": [ - "4272554117434599881572476", - "2489580522646440615855240" + "4206193502988259265503987", + "4970182372873555723106963" ], - "LPTokenSupply": "6650394697795492441262865" + "LPTokenSupply": "9067423484771197826258448" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "701096826322464014336", - "expectedQty": "691267090086356524571", + "inputIndex": 0, + "inputQty": "396647923445633376059392", + "expectedQty": "392110901821847339532701", + "reserves": [ + "4602841426433892641563379", + "4970182372873555723106963" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "389355966288637263872", + "expectedQty": "384841866529622731414", "reserves": [ - "4272554117434599881572476", - "2490281619472763079869576" + "4603230782400181278827251", + "4970182372873555723106963" ] }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "7596835433913376571392", + "expectedQty": "7681311779223778532836", + "swapFee": "4558101260348025942", + "reserves": [ + "4595549470620957500294415", + "4970182372873555723106963" + ], + "LPTokenSupply": "9452322848835787446753765" + }, + { + "type": "mintMulti", + "inputQtys": [ + "213486603643640840192", + "365476719193459130368" + ], + "expectedQty": "572066024812360081278", + "reserves": [ + "4595762957224601141134607", + "4970547849592749182237331" + ], + "LPTokenSupply": "9452894914860599806835043" + }, { "type": "redeem", "inputIndex": 1, - "inputQty": "87301852009021082435584", - "expectedQty": "88480808215816870117580", - "swapFee": "52381111205412649461", + "inputQty": "240399190876692832", + "expectedQty": "243198344119423347", + "swapFee": "144239514526015", "reserves": [ - "4272554117434599881572476", - "2401800811256946209751996" + "4595762957224601141134607", + "4970547606394405062813984" ], - "LPTokenSupply": "6563789350987678256616798" + "LPTokenSupply": "9452894674475832881594812" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "18342930605303350165504", - "54361032863350677045248" + "39770366406412615024640", + "43841763349369416843264" ], - "expectedQty": "71623214116789744232133", - "swapFee": "42999728307058081388", + "expectedQty": "82620639515440011422033", "reserves": [ - "4254211186829296531406972", - "2347439778393595532706748" + "4635533323631013756159247", + "5014389369743774479657248" ], - "LPTokenSupply": "6492127437115412160111414" + "LPTokenSupply": "9535515313991272893016845" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "37915801571772636069888", - "26412569613826179203072" + "2391415352440276385792", + "2495123818289259085824" ], - "expectedQty": "63277014454681508439295", - "swapFee": "37989002074053337065", + "expectedQty": "4828628138712866215178", "reserves": [ - "4216295385257523895337084", - "2321027208779769353503676" + "4637924738983454032545039", + "5016884493562063738743072" ], - "LPTokenSupply": "6428816232558864003668759" + "LPTokenSupply": "9540343942129985759232023" }, { - "type": "redeemMasset", - "inputQty": "17565450705963384307712", - "expectedQtys": [ - "11513269223564371381089", - "6337936194730688964011" + "type": "redeemBassets", + "inputQtys": [ + "160320456924725673984", + "260399699028846346240" ], - "redemptionFee": "10539270423578030584", + "expectedQty": "415710662456216256711", + "swapFee": "249576143159625529", "reserves": [ - "4204782116033959523955995", - "2314689272585038664539665" + "4637764418526529306871055", + "5016624093863034892396832" ], - "LPTokenSupply": "6411251835779942977164105" + "LPTokenSupply": "9539928006849000699312334" }, { "type": "redeemMasset", - "inputQty": "367373457673480516403", + "inputQty": "86384222995325260", "expectedQtys": [ - "240795175274278484006", - "132555265342339807109" + "41969844807727199", + "45398367764663178" ], - "redemptionFee": "220424074604088309", + "redemptionFee": "51830533797195", "reserves": [ - "4204541320858685245471989", - "2314556717319696324732556" + "4637764376556684499143856", + "5016624048464667127733654" ], - "LPTokenSupply": "6410884484364676957056532" + "LPTokenSupply": "9539927920469960757366793" }, { - "type": "redeemMasset", - "inputQty": "2806488295038038", - "expectedQtys": [ - "1839514662002299", - "1012633886227560" + "type": "mintMulti", + "inputQtys": [ + "6846458929540397056", + "1607132420739520512" ], - "redemptionFee": "1683892977022", + "expectedQty": "8354802296178669093", "reserves": [ - "4204541319019170583469690", - "2314556716307062438504996" + "4637771223015614039540912", + "5016625655597087867254166" ], - "LPTokenSupply": "6410884481558357051316196" + "LPTokenSupply": "9539936275272256936035886" }, { "type": "mintMulti", "inputQtys": [ - "2538177875208558346240", - "3010027695437999767552" + "2941636069315216", + "1604314669189114" ], - "expectedQty": "5460782423720573377015", + "expectedQty": "4492445279911841", "reserves": [ - "4207079496894379141815930", - "2317566744002500438272548" + "4637771225957250108856128", + "5016625657201402536443280" ], - "LPTokenSupply": "6416345263982077624693211" + "LPTokenSupply": "9539936279764702215947727" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "614608021526527475712", - "expectedQty": "606185241299774571369", + "inputIndex": 0, + "inputQty": "5165421596349517791232", + "expectedQty": "5105554291913150774474", "reserves": [ - "4207079496894379141815930", - "2318181352024026965748260" + "4642936647553599626647360", + "5016625657201402536443280" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "50856561389007978496", - "outputIndex": 0, - "expectedQty": "51089006891964616485", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "826050570366465474560", + "expectedQty": "816474807512945153724", "reserves": [ - "4207028407887487177199445", - "2318232208585415973726756" - ], - "LPTokenSupply": "6416951449223377399264580", - "hardLimitError": false, - "insufficientLiquidityError": false + "4643762698123966092121920", + "5016625657201402536443280" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3784576375818950803456", - "expectedQty": "3834843689985339497995", - "swapFee": "2270745825491370482", + "type": "redeemMasset", + "inputQty": "16691167702638976303104", + "expectedQtys": [ + "8114861290213768794041", + "8766430155779275589787" + ], + "redemptionFee": "10014700621583385781", "reserves": [ - "4207028407887487177199445", - "2314397364895430634228761" + "4635647836833752323327879", + "5007859227045623260853493" ], - "LPTokenSupply": "6413167099922140997598172" + "LPTokenSupply": "9529168142631551493911399" }, { "type": "redeemBassets", "inputQtys": [ - "838169251925695922176", - "5065878476955510112256" + "37898211397228691456", + "41446798434403401728" ], - "expectedQty": "5819444067608273715532", - "swapFee": "3493762698183874554", + "expectedQty": "78404126986259758329", + "swapFee": "47070718622929612", "reserves": [ - "4206190238635561481277269", - "2309331486418475124116505" + "4635609938622355094636423", + "5007817780247188857451765" ], - "LPTokenSupply": "6407344511468104358395540" + "LPTokenSupply": "9529089696140918473516418" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "131601038302597523439616", - "expectedQty": "133953447804953750319558", - "swapFee": "78960622981558514063", + "type": "redeemBassets", + "inputQtys": [ + "170787583003935309824", + "4646786388989503488" + ], + "expectedQty": "173398132601803407162", + "swapFee": "104101340365301225", "reserves": [ - "4072236790830607730957711", - "2309331486418475124116505" + "4635439151039351159326599", + "5007813133460799867948277" ], - "LPTokenSupply": "6275751369227804990807330" + "LPTokenSupply": "9528916204317110341338152" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1426830496310691364864", - "expectedQty": "1407005444097045633187", + "inputQty": "8210158119050233774080", + "expectedQty": "8110791840484462422897", "reserves": [ - "4072236790830607730957711", - "2310758316914785815481369" + "4635439151039351159326599", + "5016023291579850101722357" ] }, { - "type": "redeemMasset", - "inputQty": "35778097105714528", - "expectedQtys": [ - "23196716813347519", - "13162792110285588" - ], - "redemptionFee": "21466858263428", + "type": "redeem", + "inputIndex": 0, + "inputQty": "963270665140912652288", + "expectedQty": "973978565411486051083", + "swapFee": "577962399084547591", "reserves": [ - "4072236767633890917610192", - "2310758303751993705195781" + "4634465172473939673275516", + "5016023291579850101722357" ], - "LPTokenSupply": "6277158338895951616552331" + "LPTokenSupply": "9536063783288693799563520" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "475052653425998036992", - "expectedQty": "481457810378118232006", - "swapFee": "285031592055598822", + "type": "redeemMasset", + "inputQty": "1725771374825021269606", + "expectedQtys": [ + "838210471063255115167", + "907220809657092765557" + ], + "redemptionFee": "1035462824895012761", "reserves": [ - "4072236767633890917610192", - "2310276845941615586963775" + "4633626962002876418160349", + "5015116070770193008956800" ], - "LPTokenSupply": "6276683314745684824075221" + "LPTokenSupply": "9534338115460151267795190" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3562423777848941084672", - "expectedQty": "3497920030383147393275", + "inputIndex": 1, + "inputQty": "2418963056171300864", + "expectedQty": "2389678468625433915", "reserves": [ - "4075799191411739858694864", - "2310276845941615586963775" + "4633626962002876418160349", + "5015118489733249180257664" ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "81997643661176800804864", - "outputIndex": 0, - "expectedQty": "82328670770698234196738", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "336223380698909179904", + "outputIndex": 1, + "expectedQty": "336130771589652603662", + "swapFee": "265861968671165210", "reserves": [ - "3993470520641041624498126", - "2392274489602792387768639" + "4633963185383575327340253", + "5014782358961659527654002" ], - "LPTokenSupply": "6280181234776067971468496", + "LPTokenSupply": "9534340531724816760345626", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "1294408734766031962112", - "1235662368791090954240" + "37419420331266726166528", + "796031982307614261248" ], - "expectedQty": "2489315630541191180506", + "expectedQty": "37771716183831721445359", "reserves": [ - "3994764929375807656460238", - "2393510151971583478722879" + "4671382605714842053506781", + "5015578390943967141915250" ], - "LPTokenSupply": "6282670550406609162649002" + "LPTokenSupply": "9572112247908648481790985" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "62446561076429248", - "outputIndex": 0, - "expectedQty": "62682786406383946", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "41522586127219621888", + "714217766491665072128" + ], + "expectedQty": "746629876493757526063", + "swapFee": "448246874020666915", "reserves": [ - "3994764866693021250076292", - "2393510214418144555152127" + "4671341083128714833884893", + "5014864173177475476843122" ], - "LPTokenSupply": "6282670550406609162649002", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "9571365214609968105664697" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "412199897941479194624", - "expectedQty": "404812003775215719330", + "type": "redeemBassets", + "inputQtys": [ + "30492392922119233536", + "36383048399510695936" + ], + "expectedQty": "66081744655518999069", + "swapFee": "39672850503613567", "reserves": [ - "3995177066590962729270916", - "2393510214418144555152127" - ] + "4671310590735792714651357", + "5014827790129075966147186" + ], + "LPTokenSupply": "9571299097159747133413416" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "17158765238420", - "expectedQty": "16851224298807", + "type": "mintMulti", + "inputQtys": [ + "282561221593842592", + "299182936794046976" + ], + "expectedQty": "574847906918173102", "reserves": [ - "3995177066608121494509336", - "2393510214418144555152127" - ] + "4671310873297014308493949", + "5014828089312012760194162" + ], + "LPTokenSupply": "9571299672007654051586518" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "30980372302208293666816", - "44086369141891472031744" + "8726249305932575744", + "629288689140600012800" ], - "expectedQty": "73885884880934875786875", - "swapFee": "44358145816050555805", + "expectedQty": "630311365618719081740", "reserves": [ - "3964196694305913200842520", - "2349423845276253083120383" + "4671319599546320241069693", + "5015457378001153360206962" ], - "LPTokenSupply": "6209149555215066281380038" + "LPTokenSupply": "9571929983373272770668258" }, { - "type": "redeemMasset", - "inputQty": "4925195606499590", - "expectedQtys": [ - "3142576821848601", - "1862481983164130" - ], - "redemptionFee": "2955117363899", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3576368835862051840", + "expectedQty": "3617930684897453621", + "swapFee": "2145821301517231", "reserves": [ - "3964196691163336378993919", - "2349423843413771099956253" + "4671319599546320241069693", + "5015453760070468462753341" ], - "LPTokenSupply": "6209149550290166186616837" + "LPTokenSupply": "9571926407219019038768141" }, { "type": "mintMulti", "inputQtys": [ - "4504311001529367134208", - "6950521194537872785408" + "187144015267160609783808", + "176520987402602375282688" ], - "expectedQty": "11275513448892418467511", + "expectedQty": "359358674399166266363485", "reserves": [ - "3968701002164865746128127", - "2356374364608308972741661" + "4858463614813480850853501", + "5191974747473070838036029" ], - "LPTokenSupply": "6220425063739058605084348" + "LPTokenSupply": "9931285081618185305131626" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "182926060959721914368", + "expectedQty": "180718875824875966491", + "reserves": [ + "4858463614813480850853501", + "5192157673534030559950397" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "7648629586402481274880", - "expectedQty": "7783806451866957434081", - "swapFee": "4589177751841488764", + "inputQty": "39327998743050952114176", + "expectedQty": "39766351097383358181080", + "swapFee": "23596799245830571268", + "reserves": [ + "4818697263716097492672421", + "5192157673534030559950397" + ], + "LPTokenSupply": "9892140161430883812041067" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "7023091507564909568", + "1475533036999136256" + ], + "expectedQty": "8399278404088184457", + "swapFee": "5042592598011717", "reserves": [ - "3960917195712998788694046", - "2356374364608308972741661" + "4818690240624589927762853", + "5192156198000993560814141" ], - "LPTokenSupply": "6212776893070431307958344" + "LPTokenSupply": "9892131757614146385646063" + }, + { + "type": "redeemMasset", + "inputQty": "449828708428851353", + "expectedQtys": [ + "218990679584012597", + "235963250910106307" + ], + "redemptionFee": "269897225057310", + "reserves": [ + "4818690021633910343750256", + "5192155962037742650707834" + ], + "LPTokenSupply": "9892131307812427679300441" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "262076960364640206848", + "expectedQty": "258907306939248731066", + "reserves": [ + "4818690021633910343750256", + "5192418038998107290914682" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "1705934510622593777664", - "expectedQty": "1675305958699692590437", + "inputQty": "169617853754643939328", + "expectedQty": "167649514499540091175", "reserves": [ - "3962623130223621382471710", - "2356374364608308972741661" + "4818859639487664987689584", + "5192418038998107290914682" ] }, { - "type": "mintMulti", + "type": "swap", + "inputIndex": 1, + "inputQty": "1741960060817987338240", + "outputIndex": 0, + "expectedQty": "1741092932211217744868", + "swapFee": "0", + "reserves": [ + "4817118546555453769944716", + "5194159999058925278252922" + ], + "LPTokenSupply": "9892557864633866468122682", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", "inputQtys": [ - "9614783841248634470400", - "7995508716894800576512" + "754623459849053143040", + "449730752138578690048" ], - "expectedQty": "17324333703366420005129", + "expectedQty": "1190158751320197849203", + "swapFee": "714523965171221442", "reserves": [ - "3972237914064870016942110", - "2364369873325203773318173" + "4816363923095604716801676", + "5193710268306786699562874" ], - "LPTokenSupply": "6231776532732497420553910" + "LPTokenSupply": "9891367062810977616174180" }, { "type": "mintMulti", "inputQtys": [ - "6751154707817091072", - "9619346345886900224" + "43671416099985017536512", + "149149809658069459664896" ], - "expectedQty": "16112919462965032283", + "expectedQty": "190507184093388972471233", "reserves": [ - "3972244665219577834033182", - "2364379492671549660218397" + "4860035339195589734338188", + "5342860077964856159227770" ], - "LPTokenSupply": "6231792645651960385586193" + "LPTokenSupply": "10081874246904366588645413" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "110418913722735525888", + "expectedQty": "109076459742881729302", + "reserves": [ + "4860035339195589734338188", + "5342970496878578894753658" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "1755953754495426494464", + "inputQty": "375809867205217636843520", "outputIndex": 0, - "expectedQty": "1762691018613427663473", + "expectedQty": "375384163323180744061348", "swapFee": "0", "reserves": [ - "3970481974200964406369709", - "2366135446426045086712861" + "4484651175872408990276840", + "5718780364083796531597178" ], - "LPTokenSupply": "6231792645651960385586193", + "LPTokenSupply": "10081983323364109470374715", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "230660921568819281920", - "expectedQtys": [ - "146873553448773119170", - "87526583224856280497" - ], - "redemptionFee": "138396552941291569", - "reserves": [ - "3970335100647515633250539", - "2366047919842820230432364" - ], - "LPTokenSupply": "6231561998570046860433429" - }, { "type": "swap", "inputIndex": 0, - "inputQty": "383329923571273367552", + "inputQty": "637377734779257880576", "outputIndex": 1, - "expectedQty": "381560880805011969165", - "swapFee": "301159966301607635", + "expectedQty": "637918658616795945682", + "swapFee": "504298692844377601", "reserves": [ - "3970718430571086906618091", - "2365666358962015218463199" + "4485288553607188248157416", + "5718142445425179735651496" ], - "LPTokenSupply": "6231562028686043490594192", + "LPTokenSupply": "10081983373793978754812475", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "508123836022635311923", - "expectedQtys": [ - "323579561820441950442", - "192781557602459915124" - ], - "redemptionFee": "304874301613581187", + "type": "mint", + "inputIndex": 1, + "inputQty": "2106533685047791872", + "expectedQty": "2079952609628636517", "reserves": [ - "3970394851009266464667649", - "2365473577404412758548075" - ], - "LPTokenSupply": "6231053935337451016640387" + "4485288553607188248157416", + "5718144551958864783443368" + ] }, { - "type": "redeemMasset", - "inputQty": "10523752353256864153", - "expectedQtys": [ - "6701656335945713992", - "3992698858022838715" + "type": "redeemBassets", + "inputQtys": [ + "49694364118446891008", + "185687749304809095168" ], - "redemptionFee": "6314251411954118", + "expectedQty": "232492889087871322265", + "swapFee": "139579481141407637", "reserves": [ - "3970388149352930518953657", - "2365469584705554735709360" + "4485238859243069801266408", + "5717958864209559974348200" ], - "LPTokenSupply": "6231043412216522900971645" + "LPTokenSupply": "10081752835235967484859852" }, { "type": "mintMulti", "inputQtys": [ - "238306885794938778288128", - "96246509908520341602304" + "56502157983222916448256", + "94832930736345217761280" ], - "expectedQty": "328908623229361333055780", + "expectedQty": "149517345060553596724060", "reserves": [ - "4208695035147869297241785", - "2461716094614075077311664" + "4541741017226292717714664", + "5812791794945905192109480" ], - "LPTokenSupply": "6559952035445884234027425" + "LPTokenSupply": "10231270180296521081583912" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "190259421129519749136384", - "expectedQty": "186818668558545625979109", + "inputIndex": 1, + "inputQty": "2940399290573892616192", + "expectedQty": "2903258308988922706130", "reserves": [ - "4398954456277389046378169", - "2461716094614075077311664" + "4541741017226292717714664", + "5815732194236479084725672" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "28720559128173892075520", - "expectedQty": "29233846280822795990023", - "swapFee": "17232335476904335245", + "type": "redeemBassets", + "inputQtys": [ + "10651699546737367040", + "21361248372469977088" + ], + "expectedQty": "31626233671694333983", + "swapFee": "18987132482506104", "reserves": [ - "4369720609996566250388146", - "2461716094614075077311664" + "4541730365526745980347624", + "5815710832988106614748584" ], - "LPTokenSupply": "6718051868109803658364538" + "LPTokenSupply": "10234141795283419075700564" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "199476788471566368768", - "expectedQty": "196711512078752481632", + "type": "mintMulti", + "inputQtys": [ + "150748414305202372608", + "502971505810766692352" + ], + "expectedQty": "645712215830957193117", "reserves": [ - "4369720609996566250388146", - "2461915571402546643680432" - ] + "4541881113941051182720232", + "5816213804493917381440936" + ], + "LPTokenSupply": "10234787507499250032893681" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "117145928648348577824768", - "outputIndex": 0, - "expectedQty": "117615470913751714041964", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "1787528197043190", + "outputIndex": 1, + "expectedQty": "1789100532417040", + "swapFee": "1414331648935", "reserves": [ - "4252105139082814536346182", - "2579061500050895221505200" + "4541881115728579379763422", + "5816213802704816849023896" ], - "LPTokenSupply": "6718248579621882410846170", + "LPTokenSupply": "10234787507499391466058574", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "11829621337817324978176", - "expectedQty": "11617911214327437434362", + "inputIndex": 1, + "inputQty": "399403585188760256512", + "expectedQty": "394358190773226841771", "reserves": [ - "4263934760420631861324358", - "2579061500050895221505200" + "4541881115728579379763422", + "5816613206290005609280408" ] }, { "type": "redeemMasset", - "inputQty": "478722505626418380", + "inputQty": "11929865262998618112", "expectedQtys": [ - "303128864472208245", - "183348955329066878" + "5290723706129045429", + "6775627233687561205" ], - "redemptionFee": "287233503375851", + "redemptionFee": "7157919157799170", "reserves": [ - "4263934457291767389116113", - "2579061316701939892438322" + "4541875825004873250717993", + "5816606430662771921719203" ], - "LPTokenSupply": "6729866012142427572199737" + "LPTokenSupply": "10235169936540693610062150" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3119284492376057839616", - "expectedQty": "3174231482476933329774", - "swapFee": "1871570695425634703", - "reserves": [ - "4260760225809290455786339", - "2579061316701939892438322" - ], - "LPTokenSupply": "6726746914807121056923591" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "16374445057853376954368", - "expectedQty": "16081256287414932770313", - "reserves": [ - "4277134670867143832740707", - "2579061316701939892438322" - ] - }, - { - "type": "redeemMasset", - "inputQty": "508243331049514441113", - "expectedQtys": [ - "322197277201674253202", - "194281124613048538857" - ], - "redemptionFee": "304945998629708664", + "inputQty": "7284774740136499200", + "expectedQty": "7361172246862069228", + "swapFee": "4370864844081899", "reserves": [ - "4276812473589942158487505", - "2578867035577326843899465" + "4541868463832626388648765", + "5816606430662771921719203" ], - "LPTokenSupply": "6742319958258086338223657" + "LPTokenSupply": "10235162652203039957971139" }, { - "type": "mintMulti", - "inputQtys": [ - "10505631667106936832", - "57740087372281634816" - ], - "expectedQty": "67234609639508979401", + "type": "redeem", + "inputIndex": 1, + "inputQty": "8750574961153114374144", + "expectedQty": "8857191646284480565383", + "swapFee": "5250344976691868624", "reserves": [ - "4276822979221609265424337", - "2578924775664699125534281" + "4541868463832626388648765", + "5807749239016487441153820" ], - "LPTokenSupply": "6742387192867725847203058" + "LPTokenSupply": "10226412602276384512783857" }, { "type": "redeemBassets", "inputQtys": [ - "21741261409102295040", - "115779694282137354240" + "3376205198364927590400", + "1797077357204903821312" ], - "expectedQty": "135481398159520544922", - "swapFee": "81337641480600687", + "expectedQty": "5113524095234033060434", + "swapFee": "3069956430999019247", "reserves": [ - "4276801237960200163129297", - "2578808995970416988180041" + "4538492258634261461058365", + "5805952161659282537332508" ], - "LPTokenSupply": "6742251638265688994117516" + "LPTokenSupply": "10221296315220362580606099" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "197591617605638", - "357344740610868" + "46174353770653499260928", + "21386566892080603332608" ], - "expectedQty": "546304181655892", + "expectedQty": "66784326525124689676003", + "swapFee": "40094652706698833105", "reserves": [ - "4276801238157791780734935", - "2578808996327761728790909" + "4492317904863607961797437", + "5784565594767201933999900" ], - "LPTokenSupply": "6742251638811993175773408" + "LPTokenSupply": "10154475903507801861980300" }, { - "type": "mintMulti", - "inputQtys": [ - "16359906376306470", - "15380332157472178" - ], - "expectedQty": "31228000312676047", + "type": "swap", + "inputIndex": 0, + "inputQty": "15235383549318376", + "outputIndex": 1, + "expectedQty": "15249385744135296", + "swapFee": "12054785952375", "reserves": [ - "4276801254517698157041405", - "2578809011708093886263087" + "4492317920098991511115813", + "5784565579517816189864604" ], - "LPTokenSupply": "6742251670039993488449455" + "LPTokenSupply": "10154475903509007340575537", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "10946856507024", - "expectedQty": "10750779984580", + "inputQty": "2987166886794194059264", + "expectedQty": "2954439015557735476963", "reserves": [ - "4276801254528645013548429", - "2578809011708093886263087" + "4495305086985785705175077", + "5784565579517816189864604" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "25470091882783223840768", - "expectedQty": "25822123925461421326144", - "swapFee": "15282055129669934304", + "inputQty": "591067678404314191101952", + "expectedQty": "583499247945899729870165", "reserves": [ - "4276801254528645013548429", - "2552986887782632464936943" - ], - "LPTokenSupply": "6716783106373474011586697" + "4495305086985785705175077", + "6375633257922130380966556" + ] }, { "type": "redeemMasset", - "inputQty": "1624489911878587596", + "inputQty": "9622775276480874086", "expectedQtys": [ - "1033746632998623884", - "617083058638832427" + "4024917573545063187", + "5708488711162373029" ], - "redemptionFee": "974693947127152", + "redemptionFee": "5773665165888524", "reserves": [ - "4276800220782012014924545", - "2552986270699573826104516" + "4495301062068212160111890", + "6375627549433419218593527" ], - "LPTokenSupply": "6716781481981031527711816" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "410779683298692374200320", - "expectedQty": "403343398500005115965271", - "reserves": [ - "4687579904080704389124865", - "2552986270699573826104516" - ] + "LPTokenSupply": "10740919968272554841637431" }, { "type": "redeemMasset", - "inputQty": "1443592982807806", + "inputQty": "3424884611435008412876", "expectedQtys": [ - "949828464378191", - "517302974817820" - ], - "redemptionFee": "866155789684", - "reserves": [ - "4687579903130875924746674", - "2552986270182270851286696" - ], - "LPTokenSupply": "7120124879037530276448249" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "109674219937249411072", - "444850816604090531840" + "1432526258852735225088", + "2031733526881118894493" ], - "expectedQty": "546448344821254392428", - "swapFee": "328065846400592991", + "redemptionFee": "2054930766861005047", "reserves": [ - "4687470228910938675335602", - "2552541419365666760754856" + "4493868535809359424886802", + "6373595815906538099699034" ], - "LPTokenSupply": "7119578135433447261522128" + "LPTokenSupply": "10737495289154196519325059" }, { "type": "mint", "inputIndex": 0, - "inputQty": "158369063478496100352", - "expectedQty": "155477681417126107287", + "inputQty": "51758471137269072", + "expectedQty": "51212460727299970", "reserves": [ - "4687628597974417171435954", - "2552541419365666760754856" + "4493868587567830562155874", + "6373595815906538099699034" ] }, { "type": "redeemMasset", - "inputQty": "17356500852454906265", + "inputQty": "464911006344412", "expectedQtys": [ - "11420653872372500143", - "6218857026784611290" + "194458330537812", + "275797740350649" ], - "redemptionFee": "10413900511472943", + "redemptionFee": "278946603806", "reserves": [ - "4687617177320544798935811", - "2552535200508639976143566" + "4493868587373372231618062", + "6373595815630740359348385" ], - "LPTokenSupply": "7119716257655401983870444" + "LPTokenSupply": "10737495339901774134940997" }, { "type": "mintMulti", "inputQtys": [ - "3615739345981090816", - "8428770081684897792" - ], - "expectedQty": "11863407425987601489", - "reserves": [ - "4687620793059890780026627", - "2552543629278721661041358" - ], - "LPTokenSupply": "7119728121062827971471933" - }, - { - "type": "redeemMasset", - "inputQty": "4670689044406082", - "expectedQtys": [ - "3073331180483205", - "1673516752255311" + "10202282601976814370816", + "3941177576591622930432" ], - "redemptionFee": "2802413426643", + "expectedQty": "13984753834895346706768", "reserves": [ - "4687620789986559599543422", - "2552543627605204908786047" + "4504070869975349045988878", + "6377536993207331982278817" ], - "LPTokenSupply": "7119728116392419168408515" + "LPTokenSupply": "10751480093736669481647765" }, { - "type": "mintMulti", - "inputQtys": [ - "55919453681493928", - "12070534498217238" - ], - "expectedQty": "66804236447381709", + "type": "redeem", + "inputIndex": 1, + "inputQty": "110028234014151409664", + "expectedQty": "111404754975192774836", + "swapFee": "66016940408490845", "reserves": [ - "4687620845906013281037350", - "2552543639675739407003285" + "4504070869975349045988878", + "6377425588452356789503981" ], - "LPTokenSupply": "7119728183196655615790224" + "LPTokenSupply": "10751370072104349371087185" }, { - "type": "mintMulti", - "inputQtys": [ - "135264081194940399616", - "152431582952172060672" + "type": "redeemMasset", + "inputQty": "125042714939700255129", + "expectedQtys": [ + "52352707174784226902", + "74127495769854423507" ], - "expectedQty": "283144763308608529776", + "redemptionFee": "75025628963820153", "reserves": [ - "4687756109987208221436966", - "2552696071258691579063957" + "4504018517268174261761976", + "6377351460956586935080474" ], - "LPTokenSupply": "7120011327959964224320000" + "LPTokenSupply": "10751245036891972567214071" }, { "type": "mint", "inputIndex": 0, - "inputQty": "253910199669168053157888", - "expectedQty": "249250879500767038729993", + "inputQty": "6593014979072276561920", + "expectedQty": "6523393780025005167250", "reserves": [ - "4941666309656376274594854", - "2552696071258691579063957" + "4510611532247246538323896", + "6377351460956586935080474" ] }, { - "type": "redeemMasset", - "inputQty": "80895015209473330380", - "expectedQtys": [ - "54213882791760539629", - "28005040595270284854" + "type": "redeemBassets", + "inputQtys": [ + "3397565074731469635584", + "1982522587322884816896" ], - "redemptionFee": "48537009125683998", + "expectedQty": "5318539040841896725821", + "swapFee": "3193039248053970417", "reserves": [ - "4941612095773584514055225", - "2552668066218096308779103" + "4507213967172515068688312", + "6375368938369264050263578" ], - "LPTokenSupply": "7369181317299222702288012" + "LPTokenSupply": "10752447017895832427082123" }, { - "type": "redeemMasset", - "inputQty": "60041878448680271872", - "expectedQtys": [ - "40238615094894190271", - "20785894520014567526" + "type": "mintMulti", + "inputQtys": [ + "151395257782796222464", + "175784048275808780288" ], - "redemptionFee": "36025127069208163", + "expectedQty": "323304718634612986403", "reserves": [ - "4941571857158489619864954", - "2552647280323576294211577" + "4507365362430297864910776", + "6375544722417539859043866" ], - "LPTokenSupply": "7369121279023286728936956" + "LPTokenSupply": "10752770322614467040068526" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "2391916655864652800", - "expectedQty": "2422714684016696958", - "swapFee": "1435149993518791", + "inputQty": "27518846090305488289792", + "outputIndex": 0, + "expectedQty": "27451438833073278430176", + "swapFee": "0", "reserves": [ - "4941571857158489619864954", - "2552644857608892277514619" + "4479913923597224586480600", + "6403063568507845347333658" ], - "LPTokenSupply": "7369118887250145863636035" + "LPTokenSupply": "10752770322614467040068526", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "36422123436748002295808", - "46515225632412713091072" - ], - "expectedQty": "81645738744597583662206", + "type": "swap", + "inputIndex": 0, + "inputQty": "332224462059513864781824", + "outputIndex": 1, + "expectedQty": "332631458415474254677514", + "swapFee": "262942991584252236159", "reserves": [ - "4977993980595237622160762", - "2599160083241304990605691" + "4812138385656738451262424", + "6070432110092371092656144" ], - "LPTokenSupply": "7450764625994743447298241" + "LPTokenSupply": "10752796616913625465292141", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "91062696112949993406464", - "53294239410477477134336" + "8702100846607201206272", + "2666573258715300364288" ], - "expectedQty": "141968038557555077319990", - "swapFee": "85231962311920198511", + "expectedQty": "11238833033771122737146", + "swapFee": "6747348229200193758", "reserves": [ - "4886931284482287628754298", - "2545865843830827513471355" + "4803436284810131250056152", + "6067765536833655792291856" ], - "LPTokenSupply": "7308719878671107641799590" + "LPTokenSupply": "10741551711266448062380611" }, { "type": "swap", "inputIndex": 1, - "inputQty": "206569127192111349760", + "inputQty": "2624366792193766064128", "outputIndex": 0, - "expectedQty": "207631705543942586960", + "expectedQty": "2620207739973066335239", "swapFee": "0", "reserves": [ - "4886723652776743686167338", - "2546072412958019624821115" + "4800816077070158183720913", + "6070389903625849558355984" ], - "LPTokenSupply": "7308719878671107641799590", + "LPTokenSupply": "10741551711266448062380611", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1079974751553371242496", - "1546791562057038692352" + "type": "redeemMasset", + "inputQty": "55431110578289369", + "expectedQtys": [ + "24759448657222755", + "31307074617170584" ], - "expectedQty": "2586182641046197185802", + "redemptionFee": "33258666346973", "reserves": [ - "4887803627528297057409834", - "2547619204520076663513467" + "4800816052310709526498158", + "6070389872318774941185400" ], - "LPTokenSupply": "7311306061312153838985392" + "LPTokenSupply": "10741551655838663350725939" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "659097555607092854784", - "319483707153750425600" + "1739919412842012868608", + "2950440684525123534848" ], - "expectedQty": "962166412280146942170", - "swapFee": "577646435229225700", + "expectedQty": "4633900378279231076199", "reserves": [ - "4887144529972689964555050", - "2547299720812922913087867" + "4802555971723551539366766", + "6073340313003300064720248" ], - "LPTokenSupply": "7310343375018081985740091" + "LPTokenSupply": "10746185556216942581802138" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "6862531215968540033024", - "expectedQty": "6951334529879631992828", - "swapFee": "4117518729581124019", - "reserves": [ - "4887144529972689964555050", - "2540348386283043281095039" - ], - "LPTokenSupply": "7303481255553986403819468" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "861409778382763", - "545598745744290" - ], - "expectedQty": "1383843243990082", - "swapFee": "830804429051", + "inputQty": "409207026513694294016", + "expectedQty": "414188687456841148766", + "swapFee": "245524215908216576", "reserves": [ - "4887144529111280186172287", - "2540348385737444535350749" + "4802555971723551539366766", + "6072926124315843223571482" ], - "LPTokenSupply": "7303481254169395435843239" + "LPTokenSupply": "10745776373742850478329779" }, { "type": "redeemBassets", "inputQtys": [ - "50868884655524907319296", - "1788330485664227786752" - ], - "expectedQty": "51696566777798908206323", - "swapFee": "31036562003881673928", - "reserves": [ - "4836275644455755278852991", - "2538560055251780307563997" + "14625472091189149696", + "16402890042518036480" ], - "LPTokenSupply": "7251756754485793034130379" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "1421258577723830016", - "outputIndex": 1, - "expectedQty": "1412964831617069783", - "swapFee": "1116085426219866", + "expectedQty": "30659755319515012947", + "swapFee": "18406897330107072", "reserves": [ - "4836277065714333002683007", - "2538558642286948690494214" + "4802541346251460350217070", + "6072909721425800705535002" ], - "LPTokenSupply": "7251756754597401576752365", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "10745745697421323366220466" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4795612820757238784", - "expectedQty": "4731214450122356598", + "inputQty": "508267959408049233330176", + "expectedQty": "501789469342105945983171", "reserves": [ - "4836277065714333002683007", - "2538563437899769447732998" + "4802541346251460350217070", + "6581177680833849938865178" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "30175095217065411215360", - "outputIndex": 1, - "expectedQty": "29996154774253760577186", - "swapFee": "23695621782022214698", - "reserves": [ - "4866452160931398413898367", - "2508567283125515687155812" + "type": "redeemMasset", + "inputQty": "5895593330650319002009", + "expectedQtys": [ + "2515826091063157219040", + "3447570218690084334761" ], - "LPTokenSupply": "7251763855374029901330432", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "159792462794959037136896", - "expectedQty": "161811501602044988393385", - "swapFee": "95875477676975422282", + "redemptionFee": "3537355998390191401", "reserves": [ - "4866452160931398413898367", - "2346755781523470698762427" + "4800025520160397192998030", + "6577730110615159854530417" ], - "LPTokenSupply": "7091980980126838561735764" + "LPTokenSupply": "11241639927168378832220768" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "122251347382988570624", - "817576693662105731072" + "190036494703718760448", + "25337195985381703680" ], - "expectedQty": "927048288638070891395", + "expectedQty": "213010125543715497446", + "swapFee": "127882805009234839", "reserves": [ - "4866574412278781402468991", - "2347573358217132804493499" + "4799835483665693474237582", + "6577704773419174472826737" ], - "LPTokenSupply": "7092908028415476632627159" + "LPTokenSupply": "11241426801948310608411965" }, { - "type": "redeemMasset", - "inputQty": "21302980966420748592742", - "expectedQtys": [ - "14607596508529003466309", - "7046518040387020906972" + "type": "redeemBassets", + "inputQtys": [ + "15570506315070414848", + "88575286918323994624" ], - "redemptionFee": "12781788579852449155", + "expectedQty": "102838932128069448093", + "swapFee": "61740403518953040", "reserves": [ - "4851966815770252399002682", - "2340526840176745783586527" + "4799819913159378403822734", + "6577616198132256148832113" ], - "LPTokenSupply": "7071606325627913869279332" + "LPTokenSupply": "11241323907449819371906135" }, { "type": "mint", "inputIndex": 1, - "inputQty": "76083920903709113974784", - "expectedQty": "75098109431896537860279", + "inputQty": "564690236730954863345664", + "expectedQty": "557349243494217420580064", "reserves": [ - "4851966815770252399002682", - "2416610761080454897561311" + "4799819913159378403822734", + "7142306434863211012177777" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6430728684162727804928", - "expectedQty": "6511955031540707516261", - "swapFee": "3858437210497636682", + "type": "mint", + "inputIndex": 0, + "inputQty": "17971166496841051144192", + "expectedQty": "17784961227053317785502", "reserves": [ - "4851966815770252399002682", - "2410098806048914190045050" - ], - "LPTokenSupply": "7140274092219368729098351" + "4817791079656219454966926", + "7142306434863211012177777" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "9046493336560", - "55812512521499" + "2395574883188937326592", + "1487672562045557145600" ], - "expectedQty": "63961881988633", - "swapFee": "38400169294", + "expectedQty": "3838891835744652785530", "reserves": [ - "4851966815761205905666122", - "2410098805993101677523551" + "4820186654539408392293518", + "7143794107425256569323377" ], - "LPTokenSupply": "7140274092155372286957352" + "LPTokenSupply": "11820297004006834763057231" }, { "type": "mintMulti", "inputQtys": [ - "1921152920542438227968", - "2512882311046831276032" + "8351449551588815798272", + "2589120394358327083008" ], - "expectedQty": "4365457985796708179153", + "expectedQty": "10819975484953820265842", "reserves": [ - "4853887968681748343894090", - "2412611688304148508799583" + "4828538104090997208091790", + "7146383227819614896406385" ], - "LPTokenSupply": "7144639550141168995136505" + "LPTokenSupply": "11831116979491788583323073" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "8777159214077810049024", - "expectedQty": "8613755464392847686878", + "type": "redeemMasset", + "inputQty": "16914289182918137", + "expectedQtys": [ + "6898950216697673", + "10210656114818475" + ], + "redemptionFee": "10148573509750", "reserves": [ - "4862665127895826153943114", - "2412611688304148508799583" - ] + "4828538097192046991394117", + "7146383217608958781587910" + ], + "LPTokenSupply": "11831116962578514257755911" }, { "type": "mint", "inputIndex": 0, - "inputQty": "173137399108133376", - "expectedQty": "169913539201165385", + "inputQty": "313484648653063782400", + "expectedQty": "310231294874952344794", "reserves": [ - "4862665301033225262076490", - "2412611688304148508799583" + "4828851581840700055176517", + "7146383217608958781587910" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "159734577108165807046656", - "expectedQty": "161706045820323394834023", - "swapFee": "95840746264899484227", + "type": "redeemBassets", + "inputQtys": [ + "23685015558775201857536", + "62044384931310748041216" + ], + "expectedQty": "84670320268505437274169", + "swapFee": "50832691776168963742", "reserves": [ - "4862665301033225262076490", - "2250905642483825113965560" + "4805166566281924853318981", + "7084338832677648033546694" ], - "LPTokenSupply": "6993528482485561726890534" + "LPTokenSupply": "11746711124182285220759167" }, { - "type": "redeemMasset", - "inputQty": "422969163504573900390", - "expectedQtys": [ - "293917930761800617958", - "136053272808707102858" - ], - "redemptionFee": "253781498102744340", + "type": "swap", + "inputIndex": 1, + "inputQty": "8550925633362170880", + "outputIndex": 0, + "expectedQty": "8527573337552360910", + "swapFee": "0", "reserves": [ - "4862371383102463461458532", - "2250769589211016406862702" + "4805158038708587300958071", + "7084347383603281395717574" ], - "LPTokenSupply": "6993105538700206963264578" + "LPTokenSupply": "11746711124182285220759167", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2649432761155970400256", - "expectedQty": "2599374389606316306645", + "type": "redeem", + "inputIndex": 1, + "inputQty": "624335230148549410816", + "expectedQty": "632244435563331840073", + "swapFee": "374601138089129646", "reserves": [ - "4865020815863619431858788", - "2250769589211016406862702" - ] + "4805158038708587300958071", + "7083715139167718063877501" + ], + "LPTokenSupply": "11746086826412250480261315" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "199709160876806", - "expectedQty": "195935647487137", + "inputIndex": 1, + "inputQty": "263082481378350826782720", + "expectedQty": "259620241293313860313698", "reserves": [ - "4865020816063328592735594", - "2250769589211016406862702" + "4805158038708587300958071", + "7346797620546068890660221" ] }, { "type": "redeemMasset", - "inputQty": "27159846040022384902144", + "inputQty": "293605501945736550", "expectedQtys": [ - "18876430331586611381943", - "8733055201513965202489" + "117442007990817878", + "179561766316219132" ], - "redemptionFee": "16295907624013430941", + "redemptionFee": "176163301167441", "reserves": [ - "4846144385731741981353651", - "2242036534009502441660213" + "4805157921266579310140193", + "7346797440984302574441089" ], - "LPTokenSupply": "6968546696836488943499310" + "LPTokenSupply": "12005706774117678724955207" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2929139716061273260032", - "expectedQty": "2964462207185058338304", - "swapFee": "1757483829636763956", + "inputQty": "9992518870906370523136", + "expectedQty": "10120270527085206918503", + "swapFee": "5995511322543822313", "reserves": [ - "4846144385731741981353651", - "2239072071802317383321909" + "4805157921266579310140193", + "7336677170457217367522586" ], - "LPTokenSupply": "6965617732868810633915673" + "LPTokenSupply": "11995714854797904608814302" }, { "type": "mintMulti", "inputQtys": [ - "413646173265046272", - "295630904324044416" + "20431762902498655862784", + "15537240063340676382720" ], - "expectedQty": "697761925297829853", + "expectedQty": "35554553278798960596019", "reserves": [ - "4846144799377915246399923", - "2239072367433221707366325" + "4825589684169077966002977", + "7352214410520558043905306" ], - "LPTokenSupply": "6965618430630735931745526" + "LPTokenSupply": "12031269408076703569410321" }, { "type": "mintMulti", "inputQtys": [ - "93365142515562708992", - "123014689397246230528" + "6202810265114457", + "3835138266235161" ], - "expectedQty": "213076955171867588764", + "expectedQty": "9923756660257009", "reserves": [ - "4846238164520430809108915", - "2239195382122618953596853" + "4825589690371888231117434", + "7352214414355696310140467" ], - "LPTokenSupply": "6965831507585907799334290" + "LPTokenSupply": "12031269418000460229667330" }, { "type": "swap", "inputIndex": 1, - "inputQty": "200650554221945248", + "inputQty": "34142619075702104784896", "outputIndex": 0, - "expectedQty": "201959278675283414", + "expectedQty": "34038763586294723535392", "swapFee": "0", "reserves": [ - "4846237962561152133825501", - "2239195582773173175542101" + "4791550926785593507582042", + "7386357033431398414925363" ], - "LPTokenSupply": "6965831507585907799334290", + "LPTokenSupply": "12031269418000460229667330", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mintMulti", - "inputQtys": [ - "494119456464835136", - "2363301099408884736" - ], - "expectedQty": "2818531798838255938", - "reserves": [ - "4846238456680608598660637", - "2239197946074272584426837" - ], - "LPTokenSupply": "6965834326117706637590228" - }, { "type": "mint", "inputIndex": 0, - "inputQty": "9760503925854915526656", - "expectedQty": "9575970232703932400690", + "inputQty": "150563969607584528203776", + "expectedQty": "149018857756088145380391", "reserves": [ - "4855998960606463514187293", - "2239197946074272584426837" + "4942114896393178035785818", + "7386357033431398414925363" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "2984652029815355867136", - "3618814378464488980480" - ], - "expectedQty": "6501850053885994033846", - "swapFee": "3903452103593752671", - "reserves": [ - "4853014308576648158320157", - "2235579131695808095446357" + "type": "redeemMasset", + "inputQty": "118964030080806892339", + "expectedQtys": [ + "48240331554690345161", + "72098751191336530253" ], - "LPTokenSupply": "6968904933189631341579667" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9637367851415379116032", - "expectedQty": "9753110332052195354598", - "swapFee": "5782420710849227469", + "redemptionFee": "71378418048484135", "reserves": [ - "4853014308576648158320157", - "2225826021363755900091759" + "4942066656061623345440657", + "7386284934680207078395110" ], - "LPTokenSupply": "6959268143580287047386381" + "LPTokenSupply": "12180169318864309373003795" }, { "type": "redeemMasset", - "inputQty": "39266355234806005760", + "inputQty": "205419509148712855142", "expectedQtys": [ - "27365786712151264372", - "12551267374454054934" + "83298332064483934400", + "124495531531781728581" ], - "redemptionFee": "23559813140883603", + "redemptionFee": "123251705489227713", "reserves": [ - "4852986942789936007055785", - "2225813470096381446036825" + "4941983357729558861506257", + "7386160439148675296666529" ], - "LPTokenSupply": "6959228879581033555468981" + "LPTokenSupply": "12179963911680331209071424" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3720380414600697", - "562596727397179" + "23335215552804474060800", + "26676645387306994237440" ], - "expectedQty": "4205542632394189", + "expectedQty": "49419986768855944370124", + "swapFee": "29669793937676172325", "reserves": [ - "4852986946510316421656482", - "2225813470658978173434004" + "4918648142176754387445457", + "7359483793761368302429089" ], - "LPTokenSupply": "6959228883786576187863170" + "LPTokenSupply": "12130517222096931356146206" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "251506135731843146711040", - "expectedQty": "246719478672529365172925", + "type": "redeemMasset", + "inputQty": "219869752952083841024", + "expectedQtys": [ + "89098680206207081199", + "133313112479096323505" + ], + "redemptionFee": "131921851771250304", "reserves": [ - "5104493082242159568367522", - "2225813470658978173434004" - ] + "4918559043496548180364258", + "7359350480648889206105584" + ], + "LPTokenSupply": "12130297365536164449430212" }, { "type": "mint", "inputIndex": 1, - "inputQty": "927540862973807", - "expectedQty": "916413679163202", + "inputQty": "4772230699405213171712", + "expectedQty": "4709462522102613577539", "reserves": [ - "5104493082242159568367522", - "2225813471586519036407811" + "4918559043496548180364258", + "7364122711348294419277296" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1353869119449386450944", - "expectedQty": "1379446869742312869673", - "swapFee": "812321471669631870", + "inputIndex": 1, + "inputQty": "6688525524162551", + "expectedQty": "6773611305140218", + "swapFee": "4013115314497", "reserves": [ - "5103113635372417255497849", - "2225813471586519036407811" + "4918559043496548180364258", + "7364122704574683114137078" ], - "LPTokenSupply": "7204594575488217012711540" + "LPTokenSupply": "12135006821370142850376649" }, { - "type": "redeemBassets", - "inputQtys": [ - "686985428933067145216", - "19958542109324275712" + "type": "redeemMasset", + "inputQty": "2389489458007450320896", + "expectedQtys": [ + "967926384297343100985", + "1449190423440313166912" ], - "expectedQty": "693562299508337076989", - "swapFee": "416387212032221579", + "redemptionFee": "1433693674804470192", "reserves": [ - "5102426649943484188352633", - "2225793513044409712132099" + "4917591117112250837263273", + "7362673514151242800970166" ], - "LPTokenSupply": "7203900638440217846635128" + "LPTokenSupply": "12132617475281502880502772" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "641371144717956284416", - "expectedQty": "648770854442513117629", - "swapFee": "384822686830773770", + "type": "redeemBassets", + "inputQtys": [ + "91090434558082944", + "73667816123498432" + ], + "expectedQty": "162848258739562546", + "swapFee": "97767615813225", "reserves": [ - "5102426649943484188352633", - "2225144742189967199014470" + "4917591026021816279180329", + "7362673440483426677471734" ], - "LPTokenSupply": "7203259305777768573428089" + "LPTokenSupply": "12132617312345253286708322" }, { - "type": "mintMulti", - "inputQtys": [ - "1582922721343354437632", - "1000626495766281453568" - ], - "expectedQty": "2541260645922511620727", + "type": "swap", + "inputIndex": 1, + "inputQty": "2883758120941647360", + "outputIndex": 0, + "expectedQty": "2875529785024932204", + "swapFee": "0", "reserves": [ - "5104009572664827542790265", - "2226145368685733480468038" + "4917588150492031254248125", + "7362676324241547619119094" ], - "LPTokenSupply": "7205800566423691085048816" + "LPTokenSupply": "12132617312345253286708322", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "516375529206486466560", - "expectedQty": "526130829671679358999", - "swapFee": "309825317523891879", + "inputIndex": 1, + "inputQty": "36709072023225840435200", + "expectedQty": "37175755700536322022621", + "swapFee": "22025443213935504261", "reserves": [ - "5103483441835155863431266", - "2226145368685733480468038" + "4917588150492031254248125", + "7325500568541011297096473" ], - "LPTokenSupply": "7205284221877016350971443" + "LPTokenSupply": "12095910442866348839823548" }, { "type": "redeemMasset", - "inputQty": "1779528597748146451251", + "inputQty": "4713471034745389108428", "expectedQtys": [ - "1259679060054571028820", - "549473460143629228073" + "1915110240935040685643", + "2852849960073346590701" ], - "redemptionFee": "1067717158648887870", + "redemptionFee": "2828082620847233465", "reserves": [ - "5102223762775101292402446", - "2225595895225589851239965" + "4915673040251096213562482", + "7322647718580937950505772" ], - "LPTokenSupply": "7203504800050984069408979" - }, - { - "type": "redeemMasset", - "inputQty": "380930516453955469312", - "expectedQtys": [ - "269650209348649966479", - "117621732596585320604" - ], - "redemptionFee": "228558309872373281", - "reserves": [ - "5101954112565752642435967", - "2225478273492993265919361" - ], - "LPTokenSupply": "7203123892390361101176995" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2241454542429248028672", - "expectedQty": "2283797695637548877039", - "swapFee": "1344872725457548817", - "reserves": [ - "5099670314870115093558928", - "2225478273492993265919361" - ], - "LPTokenSupply": "7200882572335204398903204" + "LPTokenSupply": "12091197254639865535438466" }, { "type": "redeemBassets", "inputQtys": [ - "391232444476336373760", - "459869763716801363968" - ], - "expectedQty": "838098142811854425051", - "swapFee": "503160782156406498", - "reserves": [ - "5099279082425638757185168", - "2225018403729276464555393" - ], - "LPTokenSupply": "7200044021347688603712303" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4408614713414870528", - "expectedQty": "4355697245079369914", - "reserves": [ - "5099279082425638757185168", - "2225022812343989879425921" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1115967252210667008", - "expectedQty": "1128847457278556437", - "swapFee": "669580351326400", - "reserves": [ - "5099279082425638757185168", - "2225021683496532600869484" - ], - "LPTokenSupply": "7200047261144639507547849" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "82544947413644071665664", - "expectedQty": "81540503563252850464961", - "reserves": [ - "5099279082425638757185168", - "2307566630910176672535148" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2419726929444810240", - "expectedQty": "2465074441832877072", - "swapFee": "1451836157666886", - "reserves": [ - "5099276617351196924308096", - "2307566630910176672535148" - ], - "LPTokenSupply": "7281585345126146528969258" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "522581470561773", - "outputIndex": 1, - "expectedQty": "518644142425789", - "swapFee": "410128224614", - "reserves": [ - "5099276617873778394869869", - "2307566630391532530109359" + "3128420158522433", + "21985045581903" ], - "LPTokenSupply": "7281585345126187541791719", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1048835756028438904832", - "expectedQty": "1061288201578384350165", - "swapFee": "629301453617063342", + "expectedQty": "3117718797760652", + "swapFee": "1871754331255", "reserves": [ - "5099276617873778394869869", - "2306505342189954145759194" + "4915673037122676055040049", + "7322647718558952904923869" ], - "LPTokenSupply": "7280536572300304464593221" + "LPTokenSupply": "12091197251520462158779683" }, { "type": "redeemBassets", "inputQtys": [ - "1695211870608633", - "1723191496892136" + "78055808567766777856", + "2920904606433358336" ], - "expectedQty": "3364979389067283", - "swapFee": "2020199753292", + "expectedQty": "80129999911138023256", + "swapFee": "48106864065121887", "reserves": [ - "5099276616178566524261236", - "2306505340466762648867058" + "4915594981314108288262193", + "7322644797654346471565533" ], - "LPTokenSupply": "7280536568933506895747974" + "LPTokenSupply": "12091117078224373362146727" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2818885660074638311424", - "29428442663486551490560" + "1417961391831810834432", + "1919299610713656131584" ], - "expectedQty": "31832623303521964889794", - "swapFee": "19111040606477065172", - "reserves": [ - "5096457730518491885949812", - "2277076897803276097376498" - ], - "LPTokenSupply": "7248686745693439101499524" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "161168159963814660407296", - "expectedQty": "159151441910490064381523", - "reserves": [ - "5096457730518491885949812", - "2438245057767090757783794" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3285515992443006746624", - "expectedQty": "3326064954269561637272", - "swapFee": "1971309595465804047", + "expectedQty": "3297357736291080709592", "reserves": [ - "5096457730518491885949812", - "2434918992812821196146522" + "4917012942705940099096625", + "7324564097265060127697117" ], - "LPTokenSupply": "7404552868742445705714827" + "LPTokenSupply": "12094414435960664442856319" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "53546652268287844352", - "23963523142572838912" + "82753444769803", + "72753018170865" ], - "expectedQty": "76198375395919799732", - "swapFee": "45746473121424734", + "expectedQty": "153693523329865", "reserves": [ - "5096404183866223598105460", - "2434895029289678623307610" + "4917012942788693543866428", + "7324564097337813145867982" ], - "LPTokenSupply": "7404476629195223976632833" + "LPTokenSupply": "12094414436114357966186184" }, { "type": "mint", "inputIndex": 1, - "inputQty": "274832860007843616", - "expectedQty": "271320817032409778", + "inputQty": "570751211611566243840", + "expectedQty": "563251658116989935535", "reserves": [ - "5096404183866223598105460", - "2434895304122538631151226" + "4917012942788693543866428", + "7325134848549424712111822" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "22881453812807463075840", - "expectedQty": "23162843848351298878944", - "swapFee": "13728872287684477845", - "reserves": [ - "5096404183866223598105460", - "2411732460274187332272282" - ], - "LPTokenSupply": "7381596819590462314414555" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "17471634855162305052672", - "expectedQty": "17795902123143383609427", - "swapFee": "10482980913097383031", - "reserves": [ - "5078608281743080214496033", - "2411732460274187332272282" - ], - "LPTokenSupply": "7364126233033391319100186" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1898904642834058706944", - "expectedQty": "1922236522140392578693", - "swapFee": "1139342785700435224", - "reserves": [ - "5078608281743080214496033", - "2409810223752046939693589" - ], - "LPTokenSupply": "7362227442324835830436764" - }, - { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "13073441704932700", - "outputIndex": 1, - "expectedQty": "12982526160656326", - "swapFee": "10262041850641", - "reserves": [ - "5078608294816521919428733", - "2409810210769520779037263" - ], - "LPTokenSupply": "7362227442325862034621828", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1212510055014311133184", - "1574424830076873605120" - ], - "expectedQty": "2744092679435669989741", - "swapFee": "1647444074105865513", + "inputQty": "12359227239123", + "expectedQty": "12231240490632", "reserves": [ - "5077395784761507608295549", - "2408235785939443905432143" - ], - "LPTokenSupply": "7359481866946759669353124" - }, - { - "type": "mintMulti", - "inputQtys": [ - "49625702803225748439040", - "88736143471230064787456" - ], - "expectedQty": "136292458519381535716025", - "reserves": [ - "5127021487564733356734589", - "2496971929410673970219599" - ], - "LPTokenSupply": "7495774325466141205069149" - }, - { - "type": "mintMulti", - "inputQtys": [ - "2371375118922099982336", - "1172973762207324176384" - ], - "expectedQty": "3484810801393979934923", - "reserves": [ - "5129392862683655456716925", - "2498144903172881294395983" - ], - "LPTokenSupply": "7499259136267535185004072" + "4917012942801052771105551", + "7325134848549424712111822" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "849106825682030821376", - "297551291519043567616" + "type": "redeemMasset", + "inputQty": "1559623697025946825523", + "expectedQtys": [ + "633658770447640503081", + "943995062752633677143" ], - "expectedQty": "1126922960061298196831", + "redemptionFee": "935774218215568095", "reserves": [ - "5130241969509337487538301", - "2498442454464400337963599" + "4916379284030605130602470", + "7324190853486672078434679" ], - "LPTokenSupply": "7500386059227596483200903" + "LPTokenSupply": "12093418157665102071343637" }, { "type": "mintMulti", "inputQtys": [ - "3871452119163060879360", - "844989153758900518912" - ], - "expectedQty": "4633074491327791226021", - "reserves": [ - "5134113421628500548417661", - "2499287443618159238482511" - ], - "LPTokenSupply": "7505019133718924274426924" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "32999924150275361734656", - "expectedQty": "33608620591116152721396", - "swapFee": "19799954490165217040", - "reserves": [ - "5100504801037384395696265", - "2499287443618159238482511" + "70771816976246558949376", + "101557893958681929711616" ], - "LPTokenSupply": "7472021189564097929213972" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "62872052088922152960", - "outputIndex": 0, - "expectedQty": "63237947819914422523", - "swapFee": "0", + "expectedQty": "170262351537550320445600", "reserves": [ - "5100441563089564481273742", - "2499350315670248160635471" + "4987151101006851689551846", + "7425748747445354008146295" ], - "LPTokenSupply": "7472021189564097929213972", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12263680509202652391789237" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2433964591029170995200", + "inputQty": "178443342333110353920", "outputIndex": 1, - "expectedQty": "2417926291746393570578", - "swapFee": "1910776386542390700", + "expectedQty": "178802862925933070471", + "swapFee": "141275995541423921", "reserves": [ - "5102875527680593652268942", - "2496932389378501767064893" + "4987329544349184799905766", + "7425569944582428075075824" ], - "LPTokenSupply": "7472021380641736583453042", + "LPTokenSupply": "12263680523330251945931629", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "85256081605372044902", + "inputQty": "273925795353812889", "expectedQtys": [ - "58189092289401956015", - "28473010650131037256" + "111331872564907621", + "165760573758102951" ], - "redemptionFee": "51153648963223226", + "redemptionFee": "164355477212287", "reserves": [ - "5102817338588304250312927", - "2496903916367851636027637" + "4987329433017312234998145", + "7425569778821854316972873" ], - "LPTokenSupply": "7471936129675496107730462" + "LPTokenSupply": "12263680249420892139839968" }, { - "type": "redeemBassets", - "inputQtys": [ - "2424058002170041597952", - "209285762489587138560" + "type": "redeemMasset", + "inputQty": "626714172288595251", + "expectedQtys": [ + "254715925072245378", + "379243220405599300" ], - "expectedQty": "2585310641235300940843", - "swapFee": "1552117655334381193", + "redemptionFee": "376028503373157", "reserves": [ - "5100393280586134208714975", - "2496694630605362048889077" + "4987329178301387162752767", + "7425569399578633911373573" ], - "LPTokenSupply": "7469349422128371005846544" + "LPTokenSupply": "12263679622744322701582032" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "97660002762950961004544", - "expectedQty": "96379178688947616173808", + "inputIndex": 0, + "inputQty": "146754212112800464896", + "expectedQty": "145234065098293146947", "reserves": [ - "5100393280586134208714975", - "2594354633368313009893621" + "4987475932513499963217663", + "7425569399578633911373573" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "56529521239293672", - "1386775746287193600" - ], - "expectedQty": "1423877088163736424", - "swapFee": "854839156392077", - "reserves": [ - "5100393224056612969421303", - "2594353246592566722700021" + "type": "redeemMasset", + "inputQty": "19039209433287642316", + "expectedQtys": [ + "7738256650870180851", + "11521050441205698111" ], - "LPTokenSupply": "7565727176170875217531057" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "798766215772523069440", - "outputIndex": 1, - "expectedQty": "793837245554269559872", - "swapFee": "627156173469376314", + "redemptionFee": "11423525659972585", "reserves": [ - "5101191990272385492490743", - "2593559409347012453140149" + "4987468194256849093036812", + "7425557878528192705675462" ], - "LPTokenSupply": "7565727238886492564468688", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12263805818742340273083921" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3227460036646462816256", - "expectedQty": "3184681796724472287536", + "inputIndex": 0, + "inputQty": "4675552834519802880", + "expectedQty": "4627120988529129181", "reserves": [ - "5101191990272385492490743", - "2596786869383658915956405" + "4987472869809683612839692", + "7425557878528192705675462" ] }, { "type": "redeemBassets", "inputQtys": [ - "886780078551801921536", - "6659944101408909819904" + "77001778876944681533440", + "15143303959644496461824" ], - "expectedQty": "7442022167479115925926", - "swapFee": "4467894036909615324", + "expectedQty": "91150642874143608712145", + "swapFee": "54723219656279933187", "reserves": [ - "5100305210193833690569207", - "2590126925282250006136501" + "4910471090932738931306252", + "7410414574568548209213638" ], - "LPTokenSupply": "7561465877411104702176505" + "LPTokenSupply": "12172610552091494541561087" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "533489046636050880", - "769188351493288192" + "1650259415609296551936", + "1093058626403881713664" ], - "expectedQty": "1282589410163469126", + "expectedQty": "2711911822708195407319", + "swapFee": "1628123968005720676", "reserves": [ - "5100305743682880326620087", - "2590127694470601499424693" + "4908820831517129634754316", + "7409321515942144327499974" ], - "LPTokenSupply": "7561467160000514865645631" + "LPTokenSupply": "12169897174957215141005158" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "2200426967297927675904", - "expectedQty": "2240694464350109233371", - "swapFee": "1320256180378756605", + "inputQty": "24014799161321068691456", + "expectedQty": "24249811568552410184190", + "swapFee": "14408879496792641214", "reserves": [ - "5098065049218530217386716", - "2590127694470601499424693" + "4884571019948577224570126", + "7409321515942144327499974" ], - "LPTokenSupply": "7559266865058834975845387" + "LPTokenSupply": "12145883816683843751577823" }, { "type": "redeemMasset", - "inputQty": "1943158000248783667", + "inputQty": "1859568231560200060928", "expectedQtys": [ - "1309704003758429691", - "665409440433431673" + "747392558223758092751", + "1133706878226663809287" ], - "redemptionFee": "1165894800149270", + "redemptionFee": "1115740938936120036", "reserves": [ - "5098063739514526458957025", - "2590127029061161065993020" + "4883823627390353466477375", + "7408187809063917663690687" ], - "LPTokenSupply": "7559264922017424207076647" + "LPTokenSupply": "12144024360026377445128898" }, { "type": "redeemMasset", - "inputQty": "883075145055736116019", + "inputQty": "1125759621646063029452", "expectedQtys": [ - "595199697148415797280", - "302397714513458617190" + "452462253796216725207", + "686332187312382830180" ], - "redemptionFee": "529845087033441669", + "redemptionFee": "675455772987637817", "reserves": [ - "5097468539817378043159745", - "2589824631346647607375830" + "4883371165136557249752168", + "7407501476876605280860507" ], - "LPTokenSupply": "7558381899856877174304794" + "LPTokenSupply": "12142898667950308680863227" }, { "type": "mintMulti", "inputQtys": [ - "43178038469918891966464", - "18355584523062743138304" + "570430086559466944", + "4239502847928771584" ], - "expectedQty": "60489103817293282208316", + "expectedQty": "4748099234001179833", "reserves": [ - "5140646578287296935126209", - "2608180215869710350514134" + "4883371735566643809219112", + "7407505716379453209632091" ], - "LPTokenSupply": "7618871003674170456513110" + "LPTokenSupply": "12142903416049542682043060" }, { - "type": "mintMulti", - "inputQtys": [ - "93256349722613655797760", - "10151135614182761693184" + "type": "redeemMasset", + "inputQty": "76051584927708807902003", + "expectedQtys": [ + "30566439892313841291664", + "46365726488239766511155" ], - "expectedQty": "101539983649197178943039", + "redemptionFee": "45630950956625284741", "reserves": [ - "5233902928009910590923969", - "2618331351483893112207318" + "4852805295674329967927448", + "7361139989891213443120936" ], - "LPTokenSupply": "7720410987323367635456149" + "LPTokenSupply": "12066856394216929536669531" }, { - "type": "mintMulti", - "inputQtys": [ - "125422075690829616250880", - "114764456141950510170112" + "type": "redeemMasset", + "inputQty": "83455893462763569152", + "expectedQtys": [ + "33542472986109242951", + "50880021804704317770" ], - "expectedQty": "236340724787169124184817", + "redemptionFee": "50073536077658141", "reserves": [ - "5359325003700740207174849", - "2733095807625843622377430" + "4852771753201343858684497", + "7361089109869408738803166" ], - "LPTokenSupply": "7956751712110536759640966" + "LPTokenSupply": "12066772943330820380866193" }, { "type": "mintMulti", "inputQtys": [ - "19678826781730626600960", - "18047993776368261267456" + "52356644655269245091840", + "38471448925701622726656" ], - "expectedQty": "37122233875185150117078", + "expectedQty": "89781552780383809234832", "reserves": [ - "5379003830482470833775809", - "2751143801402211883644886" + "4905128397856613103776337", + "7399560558795110361529822" ], - "LPTokenSupply": "7993873945985721909758044" + "LPTokenSupply": "12156554496111204190101025" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "16304448633406798954496", - "expectedQty": "16002147028223850041925", + "type": "mintMulti", + "inputQtys": [ + "2654939663290817576960", + "3995812542363632402432" + ], + "expectedQty": "6570695356362287004515", "reserves": [ - "5395308279115877632730305", - "2751143801402211883644886" - ] + "4907783337519903921353297", + "7403556371337473993932254" + ], + "LPTokenSupply": "12163125191467566477105540" }, { "type": "redeemMasset", - "inputQty": "2074250893697300719206", + "inputQty": "34927778854026805248", "expectedQtys": [ - "1396339738098024111604", - "712013330172390800300" + "14084794622841220893", + "21247386813455272800" ], - "redemptionFee": "1244550536218380431", + "redemptionFee": "20956667312416083", "reserves": [ - "5393911939377779608618701", - "2750431788072039492844586" + "4907769252725281080132404", + "7403535123950660538659454" ], - "LPTokenSupply": "8007801966575302080918806" + "LPTokenSupply": "12163090265784379181541900" }, { "type": "mint", "inputIndex": 0, - "inputQty": "32591503232397138198528", - "expectedQty": "31986686054922650522160", + "inputQty": "246347474529935079505920", + "expectedQty": "243780360333934550465976", "reserves": [ - "5426503442610176746817229", - "2750431788072039492844586" + "5154116727255216159638324", + "7403535123950660538659454" ] }, - { - "type": "redeemMasset", - "inputQty": "6792313918765388739379", - "expectedQtys": [ - "4581762201236503461854", - "2322273363859925226301" - ], - "redemptionFee": "4075388351259233243", - "reserves": [ - "5421921680408940243355375", - "2748109514708179567618285" - ], - "LPTokenSupply": "8032996746250294468624911" - }, - { - "type": "redeemMasset", - "inputQty": "29480527962966825369", - "expectedQtys": [ - "19886128936707410273", - "10079315667569261235" - ], - "redemptionFee": "17688316777780095", - "reserves": [ - "5421901794280003535945102", - "2748099435392511998357050" - ], - "LPTokenSupply": "8032967267491163179577551" - }, { "type": "swap", "inputIndex": 1, - "inputQty": "84762425197631968903168", + "inputQty": "900010565077029486592", "outputIndex": 0, - "expectedQty": "85202448165017968304752", + "expectedQty": "897734445412858480451", "swapFee": "0", "reserves": [ - "5336699346114985567640350", - "2832861860590143967260218" - ], - "LPTokenSupply": "8032967267491163179577551", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemMasset", - "inputQty": "31423177091257511339622", - "expectedQtys": [ - "20863452498410452399967", - "11074875129701127265645" - ], - "redemptionFee": "18853906254754506803", - "reserves": [ - "5315835893616575115240383", - "2821786985460442839994573" - ], - "LPTokenSupply": "8001545975790531143688609" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "6238770009451128684544", - "expectedQty": "6154194456938094008567", - "reserves": [ - "5315835893616575115240383", - "2828025755469893968679117" - ] - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "3416303633815442", - "outputIndex": 1, - "expectedQty": "3396840199340885", - "swapFee": "2682759287954", - "reserves": [ - "5315835897032878749055825", - "2828025752073053769338232" + "5153218992809803301157873", + "7404435134515737568146046" ], - "LPTokenSupply": "8007700170247737513625971", + "LPTokenSupply": "12406870626118313732007876", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "42699555282405016", - "71638093735282488" - ], - "expectedQty": "112580365182178923", - "reserves": [ - "5315835939732434031460841", - "2828025823711147504620720" - ], - "LPTokenSupply": "8007700282828102695804894" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1917832601176471240704", - "19594730474862645608448" - ], - "expectedQty": "21211100236163586975404", - "reserves": [ - "5317753772333610502701545", - "2847620554186010150229168" - ], - "LPTokenSupply": "8028911383064266282780298" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "358366966705256", - "797014611478303" + "68475065068607867191296", + "103042885196730674970624" ], - "expectedQty": "1137951686187821", - "swapFee": "683180920264", + "expectedQty": "169453697197727653321448", "reserves": [ - "5317753771975243535996289", - "2847620553388995538750865" + "5221694057878411168349169", + "7507478019712468243116670" ], - "LPTokenSupply": "8028911381925699733764238" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "6615478932452985012224", - "expectedQty": "6525414114993208881901", - "reserves": [ - "5317753771975243535996289", - "2854236032321448523763089" - ] + "LPTokenSupply": "12576324323316041385329324" }, { "type": "redeemMasset", - "inputQty": "2692586211627983542681", + "inputQty": "530522925878591", "expectedQtys": [ - "1780851463359680291891", - "955849148510978252208" - ], - "redemptionFee": "1615551726976790125", - "reserves": [ - "5315972920511883855704398", - "2853280183172937545510881" - ], - "LPTokenSupply": "8032744371384237656782470" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "319904484116292894720", - "expectedQty": "325694719932099833038", - "swapFee": "191942690469775736", - "reserves": [ - "5315647225791951755871360", - "2853280183172937545510881" - ], - "LPTokenSupply": "8032424486094390410865323" - }, - { - "type": "mintMulti", - "inputQtys": [ - "157127906466712616960", - "261333148093836197888" - ], - "expectedQty": "412015008386057418681", - "reserves": [ - "5315804353698418468488320", - "2853541516321031381708769" - ], - "LPTokenSupply": "8032836501102776468284004" - }, - { - "type": "mintMulti", - "inputQtys": [ - "63097880073985859780608", - "149112922976349635739648" + "220141131972073", + "316507380784094" ], - "expectedQty": "209006077410197905559627", + "redemptionFee": "318313755527", "reserves": [ - "5378902233772404328268928", - "3002654439297381017448417" + "5221694057658270036377096", + "7507478019395960862332576" ], - "LPTokenSupply": "8241842578512974373843631" + "LPTokenSupply": "12576324322785550290826285" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "156940617205015212195840", - "expectedQty": "159750899563465752855895", - "swapFee": "94164370323009127317", + "type": "swap", + "inputIndex": 1, + "inputQty": "92282020098877", + "outputIndex": 0, + "expectedQty": "92048092402584", + "swapFee": "0", "reserves": [ - "5219151334208938575413033", - "3002654439297381017448417" + "5221694057566221943974512", + "7507478019488242882431453" ], - "LPTokenSupply": "8084911377744991462560522" + "LPTokenSupply": "12576324322785550290826285", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "49073681242494169251840", - "44822719771020019892224" + "3443674500051564494848", + "4859129142257459920896" ], - "expectedQty": "92376249636240163338783", - "swapFee": "55459025196862215332", + "expectedQty": "8203200946775505048286", + "swapFee": "4924875493361319820", "reserves": [ - "5170077652966444406161193", - "2957831719526360997556193" + "5218250383066170379479664", + "7502618890345985422510557" ], - "LPTokenSupply": "7992485214986074123227939" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "32670878567089", - "expectedQty": "32212390474307", - "reserves": [ - "5170077652966444406161193", - "2957831719559031876123282" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "798605225617500274688", - "expectedQty": "784098223136734183859", - "reserves": [ - "5170876258192061906435881", - "2957831719559031876123282" - ] + "LPTokenSupply": "12568116689450830760590160" }, { "type": "redeemBassets", "inputQtys": [ - "5756548812642956", - "125471416694796544" - ], - "expectedQty": "129362699856496929", - "swapFee": "77664218444965", - "reserves": [ - "5170876252435513093792925", - "2957831594087615181326738" - ], - "LPTokenSupply": "7993269183808825594788706" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "49181303814333470343168", - "expectedQty": "49848794159347378007365", - "swapFee": "29508782288600082205", - "reserves": [ - "5170876252435513093792925", - "2907982799928267803319373" - ], - "LPTokenSupply": "7944090830872720984453758" - }, - { - "type": "redeemMasset", - "inputQty": "32188619406978816409", - "expectedQtys": [ - "20939274891365179225", - "11775770344219656515" - ], - "redemptionFee": "19313171644187289", - "reserves": [ - "5170855313160621728613700", - "2907971024157923583662858" - ], - "LPTokenSupply": "7944058644184631170056077" - }, - { - "type": "redeemMasset", - "inputQty": "1467631709933925", - "expectedQtys": [ - "954720781661379", - "536913179946571" - ], - "redemptionFee": "880579025960", - "reserves": [ - "5170855312205900946952321", - "2907971023621010403716287" - ], - "LPTokenSupply": "7944058642717087518024748" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1216505443735183818752", - "expectedQty": "1232954533616887876041", - "swapFee": "729903266241110291", - "reserves": [ - "5170855312205900946952321", - "2906738069087393515840246" - ], - "LPTokenSupply": "7942842210263678958317025" - }, - { - "type": "redeemMasset", - "inputQty": "19020889518983", - "expectedQtys": [ - "12375325160623", - "6956649643010" - ], - "redemptionFee": "11412533711", - "reserves": [ - "5170855312193525621791698", - "2906738069080436866197236" - ], - "LPTokenSupply": "7942842210244659210051413" - }, - { - "type": "mintMulti", - "inputQtys": [ - "67812396445124872110080", - "81157752036211774455808" - ], - "expectedQty": "146601493019144037834597", - "reserves": [ - "5238667708638650493901778", - "2987895821116648640653044" + "493607039189692224", + "583264282644735744" ], - "LPTokenSupply": "8089443703263803247886010" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "2433822528207709536256", - "outputIndex": 1, - "expectedQty": "2421600300390891415866", - "swapFee": "1911661177245589152", + "expectedQty": "1064070304512368875", + "swapFee": "638825477994217", "reserves": [ - "5241101531166858203438034", - "2985474220816257749237178" + "5218249889459131189787440", + "7502618307081702777774813" ], - "LPTokenSupply": "8089443894429920972444925", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12568115624805583318026488" }, { "type": "swap", "inputIndex": 1, - "inputQty": "80803501188698781777920", + "inputQty": "44704146807097080676352", "outputIndex": 0, - "expectedQty": "81130852327787999754857", + "expectedQty": "44588305074362969921000", "swapFee": "0", "reserves": [ - "5159970678839070203683177", - "3066277722004956531015098" + "5173661584384768219866440", + "7547322453888799858451165" ], - "LPTokenSupply": "8089443894429920972444925", + "LPTokenSupply": "12568115624805583318026488", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "2569167520566761", - "5390677361472479" - ], - "expectedQty": "7836650498701712", - "swapFee": "4704813187133", - "reserves": [ - "5159970676269902683116416", - "3066277716614279169542619" - ], - "LPTokenSupply": "8089443886589036141874792" - }, - { - "type": "mintMulti", - "inputQtys": [ - "10781302963112626880512", - "7737627035526858014720" - ], - "expectedQty": "18214115989883364958434", - "reserves": [ - "5170751979233015309996928", - "3074015343649806027557339" - ], - "LPTokenSupply": "8107658002578919506833226" - }, { "type": "mintMulti", "inputQtys": [ - "37669491561712802856960", - "55045319603584944308224" + "2936316917785292177408", + "3624427846773402238976" ], - "expectedQty": "91249506109815551182806", + "expectedQty": "6482606336788187796870", "reserves": [ - "5208421470794728112853888", - "3129060663253390971865563" + "5176597901302553512043848", + "7550946881735573260690141" ], - "LPTokenSupply": "8198907508688735058016032" + "LPTokenSupply": "12574598231142371505823358" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "47793897646740283392", - "13609789939413471232" + "52978004625307828224", + "495263995411107086336" ], - "expectedQty": "60348290057483070814", + "expectedQty": "541208503441340157017", + "swapFee": "324920054097262451", "reserves": [ - "5208469264692374853137280", - "3129074273043330385336795" + "5176544923297928204215624", + "7550451617740162153603805" ], - "LPTokenSupply": "8198967856978792541086846" + "LPTokenSupply": "12574056730210881478130134" }, { "type": "redeemMasset", - "inputQty": "130658506157794997043", + "inputQty": "190956944830170529792", "expectedQtys": [ - "82952208969387809724", - "49834914979296909450" + "78566856043645037463", + "114596754032913181370" ], - "redemptionFee": "78395103694676998", + "redemptionFee": "114574166898102317", "reserves": [ - "5208386312483405465327556", - "3129024438128351088427345" + "5176466356441884559178161", + "7550337020986129240422435" ], - "LPTokenSupply": "8198837206312145115557502" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1260732212041519104", - "expectedQty": "1242685087602304297", - "reserves": [ - "5208386312483405465327556", - "3129025698860563129946449" - ] + "LPTokenSupply": "12573865784723467997410573" }, { "type": "redeemMasset", - "inputQty": "7898591014418708325990", + "inputQty": "25827192018765997670", "expectedQtys": [ - "5014640822009963277695", - "3012629836042797814175" + "10626276492826835634", + "15499370279723724936" ], - "redemptionFee": "4739154608651224995", + "redemptionFee": "15496315211259598", "reserves": [ - "5203371671661395502049861", - "3126013069024520332132274" + "5176455730165391732342527", + "7550321521615849516697499" ], - "LPTokenSupply": "8190940331898274874658308" + "LPTokenSupply": "12573839959081080752538862" }, { "type": "swap", "inputIndex": 0, - "inputQty": "136421500585378037760", + "inputQty": "1027131398431544320", "outputIndex": 1, - "expectedQty": "135801857722586828270", - "swapFee": "107172015723540085", + "expectedQty": "1029033274081243040", + "swapFee": "813107463519473", "reserves": [ - "5203508093161980880087621", - "3125877267166797745304004" + "5176456757296790163886847", + "7550320492582575435454459" ], - "LPTokenSupply": "8190940342615476447012316", + "LPTokenSupply": "12573839959162391498890809", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "3249957850385741312", - "3749305752253644288" - ], - "expectedQty": "6887071337551985216", - "swapFee": "4134723636713219", - "reserves": [ - "5203504843204130494346309", - "3125873517861045491659716" - ], - "LPTokenSupply": "8190933451822887621985201" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "5179524215853403865088", - "expectedQty": "5086249323095021270661", - "reserves": [ - "5208684367419983898211397", - "3125873517861045491659716" - ] - }, { "type": "redeemMasset", - "inputQty": "3222724139312654", + "inputQty": "360566434188194201", "expectedQtys": [ - "2046857104417673", - "1228374761497435" + "148350598292434543", + "216382482244318296" ], - "redemptionFee": "1933634483587", + "redemptionFee": "216339860512916", "reserves": [ - "5208684365373126793793724", - "3125873516632670730162281" + "5176456608946191871452304", + "7550320276200093191136163" ], - "LPTokenSupply": "8196019697923451867391566" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "391557990733093428789248", - "expectedQty": "385832737835884839199810", - "reserves": [ - "5208684365373126793793724", - "3517431507365764158951529" - ] + "LPTokenSupply": "12573839598617591296747899" }, { "type": "swap", "inputIndex": 1, - "inputQty": "77585526838988144640", + "inputQty": "6677214339185353728", "outputIndex": 0, - "expectedQty": "77800692061221879211", + "expectedQty": "6659541458893181155", "swapFee": "0", "reserves": [ - "5208606564681065571914513", - "3517509092892603147096169" + "5176449949404732978271149", + "7550326953414432376489891" ], - "LPTokenSupply": "8581852435759336706591376", + "LPTokenSupply": "12573839598617591296747899", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "454308547705964645580", - "expectedQtys": [ - "275569256519425977405", - "186099171341056851072" - ], - "redemptionFee": "272585128623578787", - "reserves": [ - "5208330995424546145937108", - "3517322993721262090245097" - ], - "LPTokenSupply": "8581398154470143604303674" - }, - { - "type": "redeemMasset", - "inputQty": "3645034211859113181184", - "expectedQtys": [ - "2210963015196582340011", - "1493121512140825892717" - ], - "redemptionFee": "2187020527115467908", - "reserves": [ - "5206120032409349563597097", - "3515829872209121264352380" - ], - "LPTokenSupply": "8577753338960337202669280" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "24288332209337655099392", - "31888494624909134135296" - ], - "expectedQty": "55273419289923860546661", - "swapFee": "33183961951124991322", - "reserves": [ - "5181831700200011908497705", - "3483941377584212130217084" - ], - "LPTokenSupply": "8522450054104657329630428" - }, - { - "type": "mintMulti", - "inputQtys": [ - "13283538034028219203584", - "4301443000689905631232" - ], - "expectedQty": "17286491383461592248900", - "reserves": [ - "5195115238234040127701289", - "3488242820584902035848316" - ], - "LPTokenSupply": "8539736545488118921879328" - }, { "type": "mint", - "inputIndex": 0, - "inputQty": "499124870932089995264", - "expectedQty": "490314068959430742713", + "inputIndex": 1, + "inputQty": "36207683169401685671936", + "expectedQty": "35733732382282303995044", "reserves": [ - "5195614363104972217696553", - "3488242820584902035848316" + "5176449949404732978271149", + "7586534636583834062161827" ] }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "33571938633209", - "expectedQty": "34154716797095", - "swapFee": "20143163179", - "reserves": [ - "5195614363070817500899458", - "3488242820584902035848316" - ], - "LPTokenSupply": "8540226859523508428305149" - }, - { - "type": "redeemMasset", - "inputQty": "6766160147133479308492", - "expectedQtys": [ - "4113856318559002348570", - "2761969762445912275367" - ], - "redemptionFee": "4059696088280087585", - "reserves": [ - "5191500506752258498550888", - "3485480850822456123572949" - ], - "LPTokenSupply": "8533461105345983777005415" - }, { "type": "mint", "inputIndex": 0, - "inputQty": "2528425893185139507200", - "expectedQty": "2483789465236264780058", - "reserves": [ - "5194028932645443638058088", - "3485480850822456123572949" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "5818398808253762895872", - "2689823154731585896448" - ], - "expectedQty": "8365473005020178630384", - "reserves": [ - "5199847331453697400953960", - "3488170673977187709469397" - ], - "LPTokenSupply": "8544310367816240220415857" - }, - { - "type": "redeemMasset", - "inputQty": "133161861069406", - "expectedQtys": [ - "80990257298115", - "54330025936775" - ], - "redemptionFee": "79897116641", - "reserves": [ - "5199847331372707143655845", - "3488170673922857683532622" - ], - "LPTokenSupply": "8544310367683086349058115" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "28508433518560108544", - "expectedQty": "28084254655009610930", + "inputQty": "199850788817523441664", + "expectedQty": "197764103732523901872", "reserves": [ - "5199847331372707143655845", - "3488199182356376243641166" + "5176649800193550501712813", + "7586534636583834062161827" ] }, { "type": "redeemBassets", "inputQtys": [ - "6365821008162626560", - "13001784285262874624" + "24056419085493274148864", + "162901389963360764690432" ], - "expectedQty": "19061757779619622953", - "swapFee": "11443921020384004", + "expectedQty": "184576494365357783499854", + "swapFee": "110812384049644456773", "reserves": [ - "5199840965551698981029285", - "3488186180572090980766542" + "5152593381108057227563949", + "7423633246620473297471395" ], - "LPTokenSupply": "8544319379880432820700487" + "LPTokenSupply": "12425094869592603661133864" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "229363076008870603128832", - "expectedQty": "232648560094977272689573", - "swapFee": "137617845605322361877", - "reserves": [ - "5199840965551698981029285", - "3255537620477113708076969" - ], - "LPTokenSupply": "8314970065656122749807842" - }, - { - "type": "redeemMasset", - "inputQty": "387311416372139602739", - "expectedQtys": [ - "242063336214465688696", - "151551999917901737164" - ], - "redemptionFee": "232386849823283761", + "inputQty": "209605969020862070784", + "expectedQty": "212250372390794447181", + "swapFee": "125763581412517242", "reserves": [ - "5199598902215484515340589", - "3255386068477195806339805" + "5152593381108057227563949", + "7423420996248082503024214" ], - "LPTokenSupply": "8314582777478435592533479" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "148150409776485321670656", - "expectedQty": "145493112260996359384980", - "reserves": [ - "5347749311991969837011245", - "3255386068477195806339805" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "38640890884425296904192", - "expectedQty": "37945592901185666812734", - "reserves": [ - "5386390202876395133915437", - "3255386068477195806339805" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "657525738296733859840", - "expectedQty": "645686444068391417351", - "reserves": [ - "5387047728614691867775277", - "3255386068477195806339805" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "10491244072995114713088", - "expectedQty": "10340433915223277776482", - "reserves": [ - "5387047728614691867775277", - "3265877312550190921052893" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "15901600125768909717504", - "expectedQty": "15672669994717032802039", - "reserves": [ - "5387047728614691867775277", - "3281778912675959830770397" - ] + "LPTokenSupply": "12424885276199940940314804" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1707036076645907955712", - "3112167879523338551296" + "32425905005956943577088", + "58760369569248577585152" ], - "expectedQty": "4743670193882451301843", - "swapFee": "2847910862847179088", + "expectedQty": "90077981010174259672165", "reserves": [ - "5385340692538045959819565", - "3278666744796436492219101" + "5185019286114014171141037", + "7482181365817331080609366" ], - "LPTokenSupply": "8519934039680967306964041" + "LPTokenSupply": "12514963257210115199986969" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5057812344497306624", - "1485293204879593728" + "8576749754059934662656", + "8603089643417987186688" ], - "expectedQty": "6430758216501082646", + "expectedQty": "16977288686693905015179", + "swapFee": "10192488705239486701", "reserves": [ - "5385345750350390457126189", - "3278668230089641371812829" + "5176442536359954236478381", + "7473578276173913093422678" ], - "LPTokenSupply": "8519940470439183808046687" + "LPTokenSupply": "12497976795283586579433758" }, { - "type": "mintMulti", - "inputQtys": [ - "30711263749957532778496", - "3698839065658730741760" - ], - "expectedQty": "33804383028151544209533", + "type": "swap", + "inputIndex": 0, + "inputQty": "374423444153070", + "outputIndex": 1, + "expectedQty": "375086845664948", + "swapFee": "296388055228", "reserves": [ - "5416057014100347989904685", - "3282367069155300102554589" + "5176442536734377680631451", + "7473578275798826247757730" ], - "LPTokenSupply": "8553744853467335352256220" + "LPTokenSupply": "12497976795283616218239280", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "6534769712279238656", - "3135477570486743040" - ], - "expectedQty": "9507547304603601989", - "swapFee": "5707953154654954", + "type": "redeem", + "inputIndex": 0, + "inputQty": "78706713039363268149248", + "expectedQty": "79492833050180269652025", + "swapFee": "47224027823617960889", "reserves": [ - "5416050479330635710666029", - "3282363933677729615811549" + "5096949703684197410979426", + "7473578275798826247757730" ], - "LPTokenSupply": "8553735340782872909464771" + "LPTokenSupply": "12419274804647035311886120" }, { - "type": "mintMulti", - "inputQtys": [ - "277838447327897780224", - "15783714084227729408" - ], - "expectedQty": "288394918930853147373", + "type": "mint", + "inputIndex": 1, + "inputQty": "586102975304732508160", + "expectedQty": "578418590564821332325", "reserves": [ - "5416328317777963608446253", - "3282379717391813843540957" - ], - "LPTokenSupply": "8554023735701803762612144" + "5096949703684197410979426", + "7474164378774130980265890" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "433114441999108866048", - "expectedQty": "440787372555274130726", - "swapFee": "259868665199465319", + "type": "swap", + "inputIndex": 1, + "inputQty": "60405476388522164224", + "outputIndex": 0, + "expectedQty": "60243066921166428024", + "swapFee": "0", "reserves": [ - "5415887530405408334315527", - "3282379717391813843540957" + "5096889460617276244551402", + "7474224784250519502430114" ], - "LPTokenSupply": "8553590647246671173692627" + "LPTokenSupply": "12419853223237600133218445", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "583066589877652291584", - "566129099192841666560" + "type": "redeemMasset", + "inputQty": "676355004782578380", + "expectedQtys": [ + "277397667232387890", + "406783889574582564" ], - "expectedQty": "1130560109444884298398", + "redemptionFee": "405813002869547", "reserves": [ - "5416470596995285986607111", - "3282945846491006685207517" + "5096889183219609012163512", + "7474224377466629927847550" ], - "LPTokenSupply": "8554721207356116057991025" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "173745975858762285056", - "expectedQty": "171247028233220852296", - "reserves": [ - "5416470596995285986607111", - "3283119592466865447492573" - ] + "LPTokenSupply": "12419852546923176650927019" }, { "type": "redeemMasset", - "inputQty": "350710162195288422", + "inputQty": "3124444907064", "expectedQtys": [ - "221916467676494192", - "134511632597785524" + "1281447941557", + "1879151988388" ], - "redemptionFee": "210426097317173", + "redemptionFee": "1874666944", "reserves": [ - "5416470375078818310112919", - "3283119457955232849707049" + "5096889183218327564221955", + "7474224377464750775859162" ], - "LPTokenSupply": "8554892103695229693286616" + "LPTokenSupply": "12419852546920052393486649" }, { "type": "mintMulti", "inputQtys": [ - "83099000683927781244928", - "84091338386300093857792" + "276677652122216497152", + "542698523488026689536" ], - "expectedQty": "164484464135539033226446", + "expectedQty": "809369331662319088577", "reserves": [ - "5499569375762746091357847", - "3367210796341532943564841" + "5097165860870449780719107", + "7474767075988238802548698" ], - "LPTokenSupply": "8719376567830768726513062" + "LPTokenSupply": "12420661916251714712575226" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "604123717415695548416", - "expectedQty": "612605088631572718063", - "swapFee": "362474230449417329", + "inputQty": "9804652882388533248", + "expectedQty": "9928950777154689498", + "swapFee": "5882791729433119", "reserves": [ - "5499569375762746091357847", - "3366598191252901370846778" + "5097165860870449780719107", + "7474757147037461647859200" ], - "LPTokenSupply": "8718772480360776075906378" + "LPTokenSupply": "12420652112187111496985289" }, { - "type": "mintMulti", - "inputQtys": [ - "692648575825942016", - "1082513581063919232" + "type": "redeemMasset", + "inputQty": "10982635552343520051", + "expectedQtys": [ + "4504330876145610020", + "6605392158720385021" ], - "expectedQty": "1747092170334243804", + "redemptionFee": "6589581331406112", "reserves": [ - "5499570068411321917299863", - "3366599273766482434766010" + "5097161356539573635109087", + "7474750541645302927474179" ], - "LPTokenSupply": "8718774227452946410150182" + "LPTokenSupply": "12420641130210517286605849" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2989422108049830051840", - "1329587004964392402944" + "83462411204774644940800", + "66713472155948966477824" ], - "expectedQty": "4246113086238439310456", - "swapFee": "2549197370165162683", + "expectedQty": "148428323060417013910936", "reserves": [ - "5496580646303272087248023", - "3365269686761518042363066" + "5180623767744348280049887", + "7541464013801251893952003" ], - "LPTokenSupply": "8714525820089074822193310" + "LPTokenSupply": "12569069453270934300516785" }, { - "type": "mintMulti", - "inputQtys": [ - "1071754737671009730560", - "1009614670386407538688" - ], - "expectedQty": "2047540568764470926668", + "type": "swap", + "inputIndex": 0, + "inputQty": "3681749893719022592", + "outputIndex": 1, + "expectedQty": "3688509999359029482", + "swapFee": "2914519350355587", "reserves": [ - "5497652401040943096978583", - "3366279301431904449901754" + "5180627449494241999072479", + "7541460325291252534922521" ], - "LPTokenSupply": "8716573360657839293119978" + "LPTokenSupply": "12569069453562386235552343", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "21920367079799988224", + "inputQty": "321302807055448894603264", "outputIndex": 0, - "expectedQty": "21999069278342247093", + "expectedQty": "320321311972741790596198", "swapFee": "0", "reserves": [ - "5497630401971664754731490", - "3366301221798984249889978" - ], - "LPTokenSupply": "8716573360657839293119978", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mintMulti", - "inputQtys": [ - "88896123924153962070016", - "104613482567467114954752" - ], - "expectedQty": "190400406920415335502963", - "reserves": [ - "5586526525895818716801506", - "3470914704366451364844730" - ], - "LPTokenSupply": "8906973767578254628622941" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "5718891710797687291904", - "expectedQty": "5635860429302456784590", - "reserves": [ - "5586526525895818716801506", - "3476633596077249052136634" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "20214229613506837086208", - "409968070704418424619008" - ], - "expectedQty": "423997299930990439861723", - "swapFee": "254551110624969245464", - "reserves": [ - "5566312296282311879715298", - "3066665525372830627517626" - ], - "LPTokenSupply": "8488383232077004173224889" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2425280751727343616", - "expectedQty": "2457879663225735026", - "swapFee": "1455168451036406", - "reserves": [ - "5566312296282311879715298", - "3066663067493167401782600" - ], - "LPTokenSupply": "8488380806941769290984913" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "391160477228948160", - "expectedQty": "383985217836619839", - "reserves": [ - "5566312687442789108663458", - "3066663067493167401782600" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2234517603498952192", - "expectedQty": "2203558220322350258", - "reserves": [ - "5566312687442789108663458", - "3066665302010770900734792" - ] - }, - { - "type": "redeemMasset", - "inputQty": "2280386682810805308620", - "expectedQtys": [ - "1494481190122989886829", - "823358993215926878142" - ], - "redemptionFee": "1368232009686483185", - "reserves": [ - "5564818206252666118776629", - "3065841943017554973856650" - ], - "LPTokenSupply": "8486103144625597613294708" - }, - { - "type": "redeemMasset", - "inputQty": "216237512912472652", - "expectedQtys": [ - "141714098304651682", - "78074972154730476" - ], - "redemptionFee": "129742507747483", - "reserves": [ - "5564818064538567814124947", - "3065841864942582819126174" - ], - "LPTokenSupply": "8486102928401058951596804" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2755465231772775088128", - "expectedQty": "2805268406153058916885", - "swapFee": "1653279139063665052", - "reserves": [ - "5562012796132414755208062", - "3065841864942582819126174" - ], - "LPTokenSupply": "8483347628497200082875181" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1850364120604995223552", - "expectedQty": "1816423504762699345459", - "reserves": [ - "5563863160253019750431614", - "3065841864942582819126174" - ] - }, - { - "type": "redeemMasset", - "inputQty": "1593294006117189222", - "expectedQtys": [ - "1044122523488821850", - "575340272116964296" - ], - "redemptionFee": "955976403670313", - "reserves": [ - "5563862116130496261609764", - "3065841289602310702161878" - ], - "LPTokenSupply": "8485162458803554305398449" - }, - { - "type": "mintMulti", - "inputQtys": [ - "269214462097856192", - "709429443184651776" - ], - "expectedQty": "963875463574679897", - "reserves": [ - "5563862385344958359465956", - "3065841999031753886813654" - ], - "LPTokenSupply": "8485163422679017880078346" - }, - { - "type": "mintMulti", - "inputQtys": [ - "6633992046998541312", - "5877499739654943744" - ], - "expectedQty": "12308361568201857866", - "reserves": [ - "5563869019337005358007268", - "3065847876531493541757398" - ], - "LPTokenSupply": "8485175731040586081936212" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "103330815448293638144", - "expectedQty": "101899005406096658168", - "reserves": [ - "5563869019337005358007268", - "3065951207346941835395542" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "114183845346983664418816", - "expectedQty": "112588775654922465241444", - "reserves": [ - "5563869019337005358007268", - "3180135052693925499814358" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "1080633469775061", - "776467778331144" - ], - "expectedQty": "1826482069543992", - "reserves": [ - "5563869020417638827782329", - "3180135053470393278145502" - ], - "LPTokenSupply": "8597866407527396713379816" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2122801176887198220288", - "expectedQty": "2151817606579806138180", - "swapFee": "1273680706132318932", - "reserves": [ - "5563869020417638827782329", - "3177983235863813472007322" - ], - "LPTokenSupply": "8595743733718580128391421" - }, - { - "type": "redeemMasset", - "inputQty": "6163041989482410462412", - "expectedQtys": [ - "3986831767371784254947", - "2277207546479190675702" - ], - "redemptionFee": "3697825193689446277", - "reserves": [ - "5559882188650267043527382", - "3175706028317334281331620" - ], - "LPTokenSupply": "8589581061511617086873636" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "283674186046042311491584", - "expectedQty": "288739721851439189375953", - "swapFee": "170204511627625386894", - "reserves": [ - "5271142466798827854151429", - "3175706028317334281331620" - ], - "LPTokenSupply": "8305923895916737537920741" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "4134723121424660692992", - "expectedQty": "4060036276684768555025", - "reserves": [ - "5275277189920252514844421", - "3175706028317334281331620" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "684617633712153984", - "397945558587818368" - ], - "expectedQty": "1064468772128847276", - "swapFee": "639064702098567", - "reserves": [ - "5275276505302618802690437", - "3175705630371775693513252" - ], - "LPTokenSupply": "8309982867149491945739778" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1733879415611876096", - "3391146449485847552" - ], - "expectedQty": "5044900024185266231", - "reserves": [ - "5275278239182034414566533", - "3175709021518225179360804" - ], - "LPTokenSupply": "8309987912049516131006009" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "48279005449806181040128", - "expectedQty": "49136923854300325520980", - "swapFee": "28967403269883708624", - "reserves": [ - "5226141315327734089045553", - "3175709021518225179360804" - ], - "LPTokenSupply": "8261711803340036938336743" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "27454742400935699415040", - "expectedQty": "27057511207974408236038", - "reserves": [ - "5226141315327734089045553", - "3203163763919160878775844" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "68257536565384637841408", - "expectedQty": "67026844350245228884751", - "reserves": [ - "5294398851893118726886961", - "3203163763919160878775844" - ] - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "153493004514850206908416", - "outputIndex": 1, - "expectedQty": "152751771971457079715789", - "swapFee": "120571994085377995975", - "reserves": [ - "5447891856407968933795377", - "3050411991947703799060055" - ], - "LPTokenSupply": "8355808216097665113257129", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10058132744355084288", - "expectedQty": "10194719854376669450", - "swapFee": "6034879646613050", - "reserves": [ - "5447891856407968933795377", - "3050401797227849422390605" - ], - "LPTokenSupply": "8355798158568408722834146" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "750042075475743", - "58906062765136" - ], - "expectedQty": "794381127866806", - "swapFee": "476914825615", - "reserves": [ - "5447891855657926858319634", - "3050401797168943359625469" - ], - "LPTokenSupply": "8355798157773598371624285" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "334554573978613252096", - "expectedQty": "340594475071498780048", - "swapFee": "200732744387167951", - "reserves": [ - "5447551261182855359539586", - "3050401797168943359625469" - ], - "LPTokenSupply": "8355463623272894197088984" - }, - { - "type": "mintMulti", - "inputQtys": [ - "699386682421653274624", - "963303013318462799872" - ], - "expectedQty": "1636397944130879644167", - "reserves": [ - "5448250647865277012814210", - "3051365100182261822425341" - ], - "LPTokenSupply": "8357100021217025076733151" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "3588166613576104960", - "outputIndex": 0, - "expectedQty": "3603995961469446625", - "swapFee": "0", - "reserves": [ - "5448247043869315543367585", - "3051368688348875398530301" - ], - "LPTokenSupply": "8357100021217025076733151", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemMasset", - "inputQty": "279959302405882777", - "expectedQtys": [ - "182404454344383191", - "102158223758981835" - ], - "redemptionFee": "167975581443529", - "reserves": [ - "5448246861464861198984394", - "3051368586190651639548466" - ], - "LPTokenSupply": "8357099741274520228994726" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3980017897057078272", - "expectedQty": "4034071916983577833", - "swapFee": "2388010738234246", - "reserves": [ - "5448246861464861198984394", - "3051364552118734655970633" - ], - "LPTokenSupply": "8357095761495424245739878" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "126420232499586252800", - "expectedQty": "124651429873523759051", - "reserves": [ - "5448246861464861198984394", - "3051490972351234242223433" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "703412897883408128", - "1672014641582481152" - ], - "expectedQty": "2339145555228504182", - "swapFee": "1404329931095759", - "reserves": [ - "5448246158051963315576266", - "3051489300336592659742281" - ], - "LPTokenSupply": "8357218072515845603008562" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10264541557956", - "expectedQty": "10403950494289", - "swapFee": "6158724934", - "reserves": [ - "5448246158051963315576266", - "3051489300326188709247992" - ], - "LPTokenSupply": "8357218072505581677323099" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "79613996478957360", - "outputIndex": 1, - "expectedQty": "79200938146561797", - "swapFee": "62524253191061", - "reserves": [ - "5448246237665959794533626", - "3051489221125250562686195" - ], - "LPTokenSupply": "8357218072511834102642205", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemBassets", - "inputQtys": [ - "12878622459665051648", - "20217428112673603584" - ], - "expectedQty": "32577216185009665872", - "swapFee": "19558064549735640", - "reserves": [ - "5448233359043500129481978", - "3051469003697137889082611" - ], - "LPTokenSupply": "8357185477693390998214256" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "140242592438929282039808", - "expectedQty": "142126037838712373048639", - "swapFee": "84145555463357569223", - "reserves": [ - "5448233359043500129481978", - "2909342965858425516033972" - ], - "LPTokenSupply": "8216951299810008051931370" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "51279306014719328911360", - "expectedQty": "51957229263369322395989", - "swapFee": "30767583608831597346", - "reserves": [ - "5448233359043500129481978", - "2857385736595056193637983" - ], - "LPTokenSupply": "8165675070553649606179744" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "206464789855807", - "expectedQty": "203660414778106", - "reserves": [ - "5448233359043500129481978", - "2857385736801520983493790" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1210118786213537120256", - "expectedQty": "1232266121578870976796", - "swapFee": "726071271728122272", - "reserves": [ - "5447001092921921258505182", - "2857385736801520983493790" - ], - "LPTokenSupply": "8164465024578223656649821" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "32853663705377942798336", - "outputIndex": 1, - "expectedQty": "32658731653310330965874", - "swapFee": "25794793575205971697", - "reserves": [ - "5479854756627299201303518", - "2824727005148210652527916" - ], - "LPTokenSupply": "8164467604057581177246990", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1509124342487923818496", - "251272149382066274304" - ], - "expectedQty": "1728902627823191473465", - "swapFee": "1037964355307099143", - "reserves": [ - "5478345632284811277485022", - "2824475732998828586253612" - ], - "LPTokenSupply": "8162737767261838209384295" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "105768679425225", - "expectedQty": "107711483021670", - "swapFee": "63461207655", - "reserves": [ - "5478345632177099794463352", - "2824475732998828586253612" - ], - "LPTokenSupply": "8162737767156075876079835" - }, - { - "type": "redeemMasset", - "inputQty": "503494668172929164902", - "expectedQtys": [ - "337713020331452978194", - "174115014766759648387" - ], - "redemptionFee": "302096800903757498", - "reserves": [ - "5478007919156768341485158", - "2824301617984061826605225" - ], - "LPTokenSupply": "8162234302697583037290682" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1956731082584594176", - "expectedQty": "1982255760460595604", - "swapFee": "1174038649550756", - "reserves": [ - "5478007919156768341485158", - "2824299635728301366009621" - ], - "LPTokenSupply": "8162232346083904317651581" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7613508954332402286592", - "expectedQty": "7471678371952438735286", - "reserves": [ - "5485621428111100743771750", - "2824299635728301366009621" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8494875404713562112", - "expectedQty": "8605602965023357860", - "swapFee": "5096925242828137", - "reserves": [ - "5485621428111100743771750", - "2824291030125336342651761" - ], - "LPTokenSupply": "8169695530090144567107568" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "7362322277278004224", - "outputIndex": 0, - "expectedQty": "7401123848042435816", - "swapFee": "0", - "reserves": [ - "5485614026987252701335934", - "2824298392447613620655985" - ], - "LPTokenSupply": "8169695530090144567107568", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mintMulti", - "inputQtys": [ - "7150527326376845901824", - "6544547141142737584128" - ], - "expectedQty": "13473756410712382624988", - "reserves": [ - "5492764554313629547237758", - "2830842939588756358240113" - ], - "LPTokenSupply": "8183169286500856949732556" - }, - { - "type": "mintMulti", - "inputQtys": [ - "2270928188745453928448", - "1161639573512445100032" - ], - "expectedQty": "3374622747538201934686", - "reserves": [ - "5495035482502375001166206", - "2832004579162268803340145" - ], - "LPTokenSupply": "8186543909248395151667242" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "24949550181337228378112", - "18295707185946531201024" - ], - "expectedQty": "42534167599833563496022", - "swapFee": "25535822053132017307", - "reserves": [ - "5470085932321037772788094", - "2813708871976322272139121" - ], - "LPTokenSupply": "8143986759408713769355642" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10584220167084462571520", - "expectedQty": "10721997577797342920062", - "swapFee": "6350532100250677542", - "reserves": [ - "5470085932321037772788094", - "2802986874398524929219059" - ], - "LPTokenSupply": "8133403174294839331851876" - }, - { - "type": "redeemMasset", - "inputQty": "1649668726890452582", - "expectedQtys": [ - "1108812043971709214", - "568178570479776186" - ], - "redemptionFee": "989801236134271", - "reserves": [ - "5470084823508993801078880", - "2802986306219954449442873" - ], - "LPTokenSupply": "8133401524725092565012721" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "38831517175430577651712", - "expectedQty": "39545293133039902666086", - "swapFee": "23298910305258346591", - "reserves": [ - "5430539530375953898412794", - "2802986306219954449442873" - ], - "LPTokenSupply": "8094572337440692513195668" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3741878585356442927104", - "expectedQty": "3810613893639010159747", - "swapFee": "2245127151213865756", - "reserves": [ - "5426728916482314888253047", - "2802986306219954449442873" - ], - "LPTokenSupply": "8090830683368051191655139" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "99942949473327631040512", - "88979524633613863747584" - ], - "expectedQty": "185862570862509967401274", - "swapFee": "111584493213434040865", - "reserves": [ - "5326785967008987257212535", - "2714006781586340585695289" - ], - "LPTokenSupply": "7904867686461649133617085" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4105702110323909066752", - "expectedQty": "4050644436190932955236", - "reserves": [ - "5326785967008987257212535", - "2718112483696664494762041" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "171051769596436545536", - "expectedQty": "173273632485337610233", - "swapFee": "102631061757861927", - "reserves": [ - "5326785967008987257212535", - "2717939210064179157151808" - ], - "LPTokenSupply": "7908747289391349805812977" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "27824697317022232477696", - "52626714518506216357888" - ], - "expectedQty": "79227548315451396438568", - "swapFee": "47565068030088891197", - "reserves": [ - "5298961269691965024734839", - "2665312495545672940793920" - ], - "LPTokenSupply": "7829476932514671329372330" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "4428578464757680128", - "expectedQty": "4345589108364818964", - "reserves": [ - "5298965698270429782414967", - "2665312495545672940793920" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "73472719124768992788480", - "expectedQty": "72487057603587298168388", - "reserves": [ - "5298965698270429782414967", - "2738785214670441933582400" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1674589753217442381824", - "9258704107510535553024" - ], - "expectedQty": "10777078475858182094373", - "swapFee": "6470129163012716886", - "reserves": [ - "5297291108517212340033143", - "2729526510562931398029376" - ], - "LPTokenSupply": "7891185434115262098820110" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "27034241074408", - "expectedQty": "26529965044953", - "reserves": [ - "5297291108544246581107551", - "2729526510562931398029376" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10369895878649610", - "expectedQty": "10505388790766424", - "swapFee": "6221937527189", - "reserves": [ - "5297291108544246581107551", - "2729526500057542607262952" - ], - "LPTokenSupply": "7891185423772518378968171" - }, - { - "type": "mintMulti", - "inputQtys": [ - "13199398177411924", - "58807370354225472" - ], - "expectedQty": "70967261564150367", - "reserves": [ - "5297291121743644758519475", - "2729526558864912961488424" - ], - "LPTokenSupply": "7891185494739779943118538" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "906108238528706904064", - "expectedQty": "917946348995033482892", - "swapFee": "543664943117224142", - "reserves": [ - "5297291121743644758519475", - "2728608612515917928005532" - ], - "LPTokenSupply": "7890279440867745547936888" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1334017281460574976", - "10947313224341164032" - ], - "expectedQty": "12108793835492535116", - "swapFee": "7269638084146008", - "reserves": [ - "5297289787726363297944499", - "2728597665202693586841500" - ], - "LPTokenSupply": "7890267325531235779670363" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "41930078242315203248128", - "expectedQty": "42700867432904885980668", - "swapFee": "25158046945389121948", - "reserves": [ - "5254588920293458411963831", - "2728597665202693586841500" - ], - "LPTokenSupply": "7848339763093615115334429" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "104876784448046448", - "outputIndex": 1, - "expectedQty": "104252980681947144", - "swapFee": "82338474238420", - "reserves": [ - "5254589025170242860010279", - "2728597560949712904894356" - ], - "LPTokenSupply": "7848339763101848962758271", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "150267449483871884673024", - "expectedQty": "153019846212835219785117", - "swapFee": "90160469690323130803", - "reserves": [ - "5101569178957407640225162", - "2728597560949712904894356" - ], - "LPTokenSupply": "7698081329664946110398327" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1253491905358020214784", - "expectedQty": "1236248893321620404632", - "reserves": [ - "5101569178957407640225162", - "2729851052855070925109140" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "206787862808944648912896", - "18651243243038186668032" - ], - "expectedQty": "221360387353533245016686", - "swapFee": "132895969994116416860", - "reserves": [ - "4894781316148462991312266", - "2711199809612032738441108" - ], - "LPTokenSupply": "7477837584831739781011098" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "65948694625164107776", - "expectedQty": "64733321236830338174", - "reserves": [ - "4894847264843088155420042", - "2711199809612032738441108" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "358681223200890154909696", - "expectedQty": "365148110916773983658194", - "swapFee": "215208733920534092945", - "reserves": [ - "4529699153926314171761848", - "2711199809612032738441108" - ], - "LPTokenSupply": "7119242615825478509848870" - }, - { - "type": "redeemMasset", - "inputQty": "12643475732198441615360", - "expectedQtys": [ - "8039728624334071393313", - "4812087949976363248375" - ], - "redemptionFee": "7586085439319064969", - "reserves": [ - "4521659425301980100368535", - "2706387721662056375192733" - ], - "LPTokenSupply": "7106599898701824000140006" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "581132592831292032", - "1489355368164319744" - ], - "expectedQty": "2038357902739569629", - "swapFee": "1223748991038364", - "reserves": [ - "4521658844169387269076503", - "2706386232306688210872989" - ], - "LPTokenSupply": "7106597859242547168635848" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "321617673159827128320", - "873685224239298641920" - ], - "expectedQty": "1176806181006605309880", - "swapFee": "706507613171866305", - "reserves": [ - "4521337226496227441948183", - "2705512547082448912231069" - ], - "LPTokenSupply": "7105420417204688708646292" - }, - { - "type": "mintMulti", - "inputQtys": [ - "79429479903943884800", - "51422527291943346176" - ], - "expectedQty": "128662435735673670007", - "reserves": [ - "4521416655976131385832983", - "2705563969609740855577245" - ], - "LPTokenSupply": "7105549079640424382316299" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "11757786137699678208", - "8155331251158946816" - ], - "expectedQty": "19581136150744763246", - "swapFee": "11755735131525773", - "reserves": [ - "4521404898189993686154775", - "2705555814278489696630429" - ], - "LPTokenSupply": "7105529487924112019179856" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "56008495084161228800", - "expectedQty": "56796840243146663071", - "swapFee": "33605097050496737", - "reserves": [ - "4521404898189993686154775", - "2705499017438246549967358" - ], - "LPTokenSupply": "7105473482789537563000729" - }, - { - "type": "mintMulti", - "inputQtys": [ - "179100117482526474240", - "943891919192836800512" - ], - "expectedQty": "1106072463272226915334", - "reserves": [ - "4521583998307476212629015", - "2706442909357439386767870" - ], - "LPTokenSupply": "7106579555252809789916063" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "12350953601988344938496", - "expectedQty": "12524657353550558498903", - "swapFee": "7410572161193006963", - "reserves": [ - "4521583998307476212629015", - "2693918252003888828268967" - ], - "LPTokenSupply": "7094229342708037564278263" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "111032878340165264", - "expectedQty": "109010694136624621", - "reserves": [ - "4521584109340354552794279", - "2693918252003888828268967" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3704757453025763655680", - "expectedQty": "3771212541121525257711", - "swapFee": "2222854471815458193", - "reserves": [ - "4517812896799233027536568", - "2693918252003888828268967" - ], - "LPTokenSupply": "7090524916551153118793023" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "56099475768345087705088", - "49101143037984355909632" - ], - "expectedQty": "103469614454484989017579", - "swapFee": "62119040096749042836", - "reserves": [ - "4461713421030887939831480", - "2644817108965904472359335" - ], - "LPTokenSupply": "6986999394960581055636890" - }, - { - "type": "mintMulti", - "inputQtys": [ - "90291555842021024", - "28533733026914500" - ], - "expectedQty": "116766904584359197", - "reserves": [ - "4461713511322443781852504", - "2644817137499637499273835" - ], - "LPTokenSupply": "6986999511727485639996087" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "13138869435501654016", - "expectedQty": "13323222583043440464", - "swapFee": "7883321661300992", - "reserves": [ - "4461713511322443781852504", - "2644803814277054455833371" + "4860306137521500208476281", + "7862763132346701429525785" ], - "LPTokenSupply": "6986986373646382304472170" + "LPTokenSupply": "12569069453562386235552343", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "88177708170897506304", - "expectedQty": "89414931054750984617", - "swapFee": "52906624902538503", + "type": "mintMulti", + "inputQtys": [ + "1939305220365298958336", + "3838033335784791605248" + ], + "expectedQty": "5706483280187579241900", "reserves": [ - "4461713511322443781852504", - "2644714399345999704848754" + "4862245442741865507434617", + "7866601165682486221131033" ], - "LPTokenSupply": "6986898201228873897219716" + "LPTokenSupply": "12574775936842573814794243" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4298206350377040896", - "expectedQty": "4375424215473364460", - "swapFee": "2578923810226224", + "inputIndex": 1, + "inputQty": "120981648463411743293440", + "expectedQty": "122551343398459853610286", + "swapFee": "72588989078047045976", "reserves": [ - "4461709135898228308488044", - "2644714399345999704848754" + "4862245442741865507434617", + "7744049822284026367520747" ], - "LPTokenSupply": "6986893903280415901201442" + "LPTokenSupply": "12453801547278069876205400" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4863672601862073221120", - "expectedQty": "4793472224130345233402", + "inputQty": "3703959157301793280", + "expectedQty": "3654398807917091430", "reserves": [ - "4461709135898228308488044", - "2649578071947861778069874" + "4862245442741865507434617", + "7744053526243183669314027" ] }, { "type": "redeemMasset", - "inputQty": "1328852763814067", + "inputQty": "7254264963461624836915", "expectedQtys": [ - "847491717753653", - "503281456303503" + "2830528740262566505618", + "4508157050130781625239" ], - "redemptionFee": "797311658288", + "redemptionFee": "4352558978076974902", "reserves": [ - "4461709135050736590734391", - "2649578071444580321766371" + "4859414914001602940928999", + "7739545369193052887688788" ], - "LPTokenSupply": "6991687374175773213786605" + "LPTokenSupply": "12446551371969313976157405" }, { - "type": "redeemBassets", - "inputQtys": [ - "46020831263712872497152", - "150107457855942356369408" - ], - "expectedQty": "193138560430674821233126", - "swapFee": "115952707883134773604", + "type": "redeem", + "inputIndex": 0, + "inputQty": "177898277517335015194624", + "expectedQty": "179579060007264226528886", + "swapFee": "106738966510401009116", "reserves": [ - "4415688303787023718237239", - "2499470613588637965396963" + "4679835853994338714400113", + "7739545369193052887688788" ], - "LPTokenSupply": "6798444456308003571257234" + "LPTokenSupply": "12268663768348630001063692" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "20287846202351783247872", - "5975731996603647524864" + "6518018626279869251584", + "12011650294523342356480" ], - "expectedQty": "25805386020874781538841", + "expectedQty": "18303104191274288341827", + "swapFee": "10988455588117443471", "reserves": [ - "4435976149989375501485111", - "2505446345585241612921827" + "4673317835368058845148529", + "7727533718898529545332308" ], - "LPTokenSupply": "6824249842328878352796075" + "LPTokenSupply": "12250350774547326407022740" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "52480483263624765243392", - "outputIndex": 1, - "expectedQty": "52204125622052142002213", - "swapFee": "41210427079310521675", + "type": "redeemMasset", + "inputQty": "478465052198834688", + "expectedQtys": [ + "182417441884758951", + "301635151457373163" + ], + "redemptionFee": "287079031319300", "reserves": [ - "4488456633253000266728503", - "2453242219963189470919614" + "4673317652950616960389578", + "7727533417263378087959145" ], - "LPTokenSupply": "6824253963371586283848242", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12250350296110982111319982" }, { "type": "redeemMasset", - "inputQty": "1963945767430862248345", + "inputQty": "27856058952604884926464", "expectedQtys": [ - "1290953766260091131541", - "705592710854477633033" + "10620276218461852597408", + "17561087320249986482347" ], - "redemptionFee": "1178367460458517349", + "redemptionFee": "16713635371562930955", "reserves": [ - "4487165679486740175596962", - "2452536627252334993286581" + "4662697376732155107792170", + "7709972329943128101476798" ], - "LPTokenSupply": "6822290135440901467451631" + "LPTokenSupply": "12222495908521914382686613" }, { "type": "redeemMasset", - "inputQty": "1646410477832105256550", + "inputQty": "735818548257618499993", "expectedQtys": [ - "1082229546668810092910", - "591510942962004866171" + "280535227898267183765", + "463877165921887064015" ], - "redemptionFee": "987846286699263153", + "redemptionFee": "441491128954571099", "reserves": [ - "4486083449940071365504052", - "2451945116309372988420410" + "4662416841504256840608405", + "7709508452777206214412783" ], - "LPTokenSupply": "6820643823747698032121396" + "LPTokenSupply": "12221760134122769659643729" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "29657778025894621741056", - "expectedQty": "30199296479889724427360", - "swapFee": "17794666815536773044", + "inputQty": "195368741347840472645632", + "expectedQty": "197172734044401582832194", + "swapFee": "117221244808704283587", "reserves": [ - "4455884153460181641076692", - "2451945116309372988420410" + "4465244107459855257776211", + "7709508452777206214412783" ], - "LPTokenSupply": "6790987825188484964057644" + "LPTokenSupply": "12026403114899410057426455" }, { "type": "mintMulti", "inputQtys": [ - "6551716713372961472512", - "4042313831718002884608" + "5242069525306839", + "12828755004136902" ], - "expectedQty": "10416107727543937581091", + "expectedQty": "17845037939774493", "reserves": [ - "4462435870173554602549204", - "2455987430141090991305018" + "4465244112701924783083050", + "7709508465605961218549685" ], - "LPTokenSupply": "6801403932916028901638735" + "LPTokenSupply": "12026403132744447997200948" + }, + { + "type": "mintMulti", + "inputQtys": [ + "124895167757644719980544", + "89597899954393274384384" + ], + "expectedQty": "212062695044032402073045", + "reserves": [ + "4590139280459569503063594", + "7799106365560354492934069" + ], + "LPTokenSupply": "12238465827788480399273993" }, { "type": "redeemMasset", - "inputQty": "1423879347403934085939", + "inputQty": "63230769235613948313", "expectedQtys": [ - "933653986018629667605", - "513854432976691399265" + "23701001323294137234", + "40270375035798620649" ], - "redemptionFee": "854327608442360451", + "redemptionFee": "37938461541368368", "reserves": [ - "4461502216187535972881599", - "2455473575708114299905753" + "4590115579458246208926360", + "7799066095185318694313420" ], - "LPTokenSupply": "6799980139001385811788841" + "LPTokenSupply": "12238402600813090939462516" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "13530696402403470", + "expectedQty": "13399167270944061", + "reserves": [ + "4590115592988942611329830", + "7799066095185318694313420" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "2082222906493566189568", + "expectedQty": "2053879131256789273585", + "reserves": [ + "4590115592988942611329830", + "7801148318091812260502988" + ] }, { "type": "redeemBassets", "inputQtys": [ - "4198480745328263823360", - "62899820046784831422464" + "19862811506150106726400", + "23360308244259721445376" ], - "expectedQty": "66143928849385387142012", - "swapFee": "39710183419683042110", + "expectedQty": "42712093552109894213448", + "swapFee": "25642641716295713956", "reserves": [ - "4457303735442207709058239", - "2392573755661329468483289" + "4570252781482792504603430", + "7777788009847552539057612" ], - "LPTokenSupply": "6733800470986922709908929" + "LPTokenSupply": "12197721321413860439324152" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "9933761843622848757760", - "9834639899810743713792" + "651720266144608157696", + "965924721852214935552" ], - "expectedQty": "19447335011419111263895", - "swapFee": "11675406250601827855", + "expectedQty": "1598159487550200616075", "reserves": [ - "4447369973598584860300479", - "2382739115761518724769497" + "4570904501748937112761126", + "7778753934569404753993164" ], - "LPTokenSupply": "6714342628109878056999963" + "LPTokenSupply": "12199319480901410639940227" }, { "type": "mint", "inputIndex": 1, - "inputQty": "291135458683816704", - "expectedQty": "287103722521632383", + "inputQty": "6404464022889029435392", + "expectedQty": "6317232919876893085707", "reserves": [ - "4447369973598584860300479", - "2382739406896977408586201" + "4570904501748937112761126", + "7785158398592293783428556" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "30815605598104001183744", - "expectedQty": "30387576021300939982489", + "inputIndex": 0, + "inputQty": "7964825373970954977280", + "expectedQty": "7887455593530031320630", "reserves": [ - "4447369973598584860300479", - "2413555012495081409769945" + "4578869327122908067738406", + "7785158398592293783428556" ] }, { - "type": "redeemMasset", - "inputQty": "46568525887956262", - "expectedQtys": [ - "30688134913556630", - "16654225370147982" - ], - "redemptionFee": "27941115532773", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1358735887762265856", + "expectedQty": "1371247632671721641", + "swapFee": "815241532657359", "reserves": [ - "4447369942910449946743849", - "2413554995840856039621963" + "4578867955875275396016765", + "7785158398592293783428556" ], - "LPTokenSupply": "6744730444669169742211850" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "89404391984216827494400", - "expectedQty": "88148617279927517633709", - "reserves": [ - "4447369942910449946743849", - "2502959387825072867116363" - ] + "LPTokenSupply": "12213522810760453955346443" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2881201919826125127680", + "inputQty": "36164118229876", "outputIndex": 1, - "expectedQty": "2866361796850523043372", - "swapFee": "2262452510705850848", + "expectedQty": "36277951230016", + "swapFee": "28650114926", "reserves": [ - "4450251144830276071871529", - "2500093026028222344072991" + "4578867955911439514246641", + "7785158398556015832198540" ], - "LPTokenSupply": "6832879288194348330430643", + "LPTokenSupply": "12213522810760456820357935", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "538291119475552", - "524105445349441" - ], - "expectedQty": "1045051982765940", - "swapFee": "627407634240", - "reserves": [ - "4450251144291984952395977", - "2500093025504116898723550" - ], - "LPTokenSupply": "6832879287148731680793886" - }, { "type": "mintMulti", "inputQtys": [ - "4965819160859213037568", - "2893922210982119604224" + "6329201111377844895744", + "2770473309382026723328" ], - "expectedQty": "7727194059786064692990", + "expectedQty": "9000425483196734843331", "reserves": [ - "4455216963452844165433545", - "2502986947715099018327774" + "4585197157022817359142385", + "7787928871865397858921868" ], - "LPTokenSupply": "6840606481208517745486876" + "LPTokenSupply": "12222523236243653555201266" }, { - "type": "redeemMasset", - "inputQty": "1672973620895451136", - "expectedQtys": [ - "1088936836143424592", - "611775971880121443" - ], - "redemptionFee": "1003784172537270", + "type": "redeem", + "inputIndex": 0, + "inputQty": "37872436970489865306112", + "expectedQty": "38220486824025271528706", + "swapFee": "22723462182293919183", "reserves": [ - "4455215874516008022008953", - "2502986335939127138206331" + "4546976670198792087613679", + "7787928871865397858921868" ], - "LPTokenSupply": "6840604808335275267289467" + "LPTokenSupply": "12184653071619381919287072" }, { - "type": "mintMulti", - "inputQtys": [ - "118460271216066272690176", - "73494509421555926171648" - ], - "expectedQty": "188729700166578778039938", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1843119201905081057280", + "expectedQty": "1860013498822971761736", + "swapFee": "1105871521143048634", "reserves": [ - "4573676145732074294699129", - "2576480845360683064377979" + "4545116656699969115851943", + "7787928871865397858921868" ], - "LPTokenSupply": "7029334508501854045329405" + "LPTokenSupply": "12182810063004628952534655" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "17416020714806956", - "expectedQty": "17094897544964584", + "inputIndex": 1, + "inputQty": "506834401271581310976", + "expectedQty": "499919302894533065701", "reserves": [ - "4573676163148095009506085", - "2576480845360683064377979" + "4545116656699969115851943", + "7788435706266669440232844" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "248650479905869800669184", - "179703021938183701004288" + "298362755840127795200", + "216671851836895494144" ], - "expectedQty": "421221891528144688817898", + "expectedQty": "509191446445235226897", + "swapFee": "305698286839244682", "reserves": [ - "4822326643053964810175269", - "2756183867298866765382267" + "4544818293944128988056743", + "7788219034414832544738700" ], - "LPTokenSupply": "7450556417124896279111887" + "LPTokenSupply": "12182800515732620095053244" }, { "type": "redeemBassets", "inputQtys": [ - "359356820399204", - "165711851920346" + "123136243022334525440", + "7597276654629328781312" ], - "expectedQty": "516098997693205", - "swapFee": "309845305799", + "expectedQty": "7615576247822450172804", + "swapFee": "4572089002094726939", "reserves": [ - "4822326642694607989776065", - "2756183867133154913461921" + "4544695157701106653531303", + "7780621757760203215957388" ], - "LPTokenSupply": "7450556416608518420643461" + "LPTokenSupply": "12175180824604695759626193" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "16878540056355532", - "expectedQty": "17184423627839959", - "swapFee": "10127124033813", + "inputQty": "1046054712771608704", + "expectedQty": "1055647390631420222", + "swapFee": "627632827662965", "reserves": [ - "4822326625510184361936106", - "2756183867133154913461921" + "4544694102053716022111081", + "7780621757760203215957388" ], - "LPTokenSupply": "7450556399730991076691310" + "LPTokenSupply": "12175179778612746270783785" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2958289506707969146880", - "expectedQty": "2903885372855337529461", + "inputQty": "87796765509216163069952", + "expectedQty": "86941968886377358817801", "reserves": [ - "4825284915016892331082986", - "2756183867133154913461921" + "4632490867562932185181033", + "7780621757760203215957388" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "53827274291975850819584", - "8514373518528140541952" + "9948289503401368092672", + "5746283071235402235904" ], - "expectedQty": "61230922876967665486261", - "swapFee": "36760610092235940856", + "expectedQty": "15519136600635039849460", "reserves": [ - "4771457640724916480263402", - "2747669493614626772919969" + "4642439157066333553273705", + "7786368040831438618193292" ], - "LPTokenSupply": "7392196277677795736387738" + "LPTokenSupply": "12277640884099758669451046" }, { - "type": "redeemBassets", - "inputQtys": [ - "60390611786530373632", - "37243348301063667712" + "type": "redeemMasset", + "inputQty": "615568079733169271603", + "expectedQtys": [ + "232619828331824831867", + "390153437817200504565" ], - "expectedQty": "95992167564238045557", - "swapFee": "57629878465622200", + "redemptionFee": "369340847839901562", "reserves": [ - "4771397250113129949889770", - "2747632250266325709252257" + "4642206537238001728441838", + "7785977887393621417688727" ], - "LPTokenSupply": "7392100233643340879282200" + "LPTokenSupply": "12277025352954110284169599" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "497047288616442944", - "expectedQty": "506044336557865059", - "swapFee": "298228373169865", + "inputIndex": 1, + "inputQty": "8916718829786542112768", + "expectedQty": "9033966459111721059026", + "swapFee": "5350031297871925267", "reserves": [ - "4771396744068793392024711", - "2747632250266325709252257" + "4642206537238001728441838", + "7776943920934509696629701" ], - "LPTokenSupply": "7392099736625875100156242" + "LPTokenSupply": "12268109169127453529249357" }, { - "type": "redeemMasset", - "inputQty": "25822765147592012", - "expectedQtys": [ - "16657882812840748", - "9592523634638770" + "type": "mint", + "inputIndex": 0, + "inputQty": "25239710816399647571968", + "expectedQty": "24991869708611403080002", + "reserves": [ + "4667446248054401376013806", + "7776943920934509696629701" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "3850373133636256923648", + "4251210602465644249088" ], - "redemptionFee": "15493659088555", + "expectedQty": "8006107184925500917853", "reserves": [ - "4771396727410910579183963", - "2747632240673802074613487" + "4671296621188037632937454", + "7781195131536975340878789" ], - "LPTokenSupply": "7392099710804659318473085" + "LPTokenSupply": "12301107146020990433247212" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "623861327224293031936", + "expectedQty": "617724805182460087363", + "reserves": [ + "4671920482515261925969390", + "7781195131536975340878789" + ] }, { "type": "redeemMasset", - "inputQty": "967049608113121604403", + "inputQty": "3611451667415866163", "expectedQtys": [ - "623829359641003125078", - "359235200749824168777" + "1370725792087370568", + "2282976540371279644" ], - "redemptionFee": "580229764867872962", + "redemptionFee": "2166871000449519", "reserves": [ - "4770772898051269576058885", - "2747273005473052250444710" + "4671919111789469838598822", + "7781192848560434969599145" ], - "LPTokenSupply": "7391132719219522683655978" + "LPTokenSupply": "12301721259591192577513363" }, { - "type": "redeemBassets", - "inputQtys": [ - "3955483722399258509312", - "8555479391056815980544" - ], - "expectedQty": "12316020998259073932561", - "swapFee": "7394049028372467840", + "type": "redeem", + "inputIndex": 1, + "inputQty": "53484657260816618225664", + "expectedQty": "54186158442966944015905", + "swapFee": "32090794356489970935", "reserves": [ - "4766817414328870317549573", - "2738717526081995434464166" + "4671919111789469838598822", + "7727006690117468025583240" ], - "LPTokenSupply": "7378810043577138074502360" + "LPTokenSupply": "12248239811409811608284792" }, { - "type": "mintMulti", - "inputQtys": [ - "937924835973923995648", - "2363518168718546829312" + "type": "redeemMasset", + "inputQty": "95534893484968103116", + "expectedQtys": [ + "36418579551556097155", + "60233621581616581579" ], - "expectedQty": "3250438653736650736966", + "redemptionFee": "57320936090980861", "reserves": [ - "4767755339164844241545221", - "2741081044250713981293478" + "4671882693209918282501667", + "7726946456495886409001661" ], - "LPTokenSupply": "7382060482230874725239326" + "LPTokenSupply": "12248144282248420249279762" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "95054402906221424", - "expectedQty": "93696118014527301", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1625655547197559668736", + "expectedQty": "1640886191851060517667", + "swapFee": "975393328318535801", "reserves": [ - "4767755339164844241545221", - "2741081139305116887514902" - ] + "4670241807018067221984000", + "7726946456495886409001661" + ], + "LPTokenSupply": "12246518724240555521464606" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "180876145886997676032", - "226951502782862589952" + "2026667212752233431040", + "1164714595127799054336" ], - "expectedQty": "401261046282376068134", - "swapFee": "240901168470507945", + "expectedQty": "3155607387902442989407", "reserves": [ - "4767574463018957243869189", - "2740854187802334024924950" + "4672268474230819455415040", + "7728111171091014208055997" ], - "LPTokenSupply": "7381659098069658740241341" + "LPTokenSupply": "12249674331628457964454013" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "427513058271660821446656", - "outputIndex": 0, - "expectedQty": "428846751784439684558955", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "69740881315213", + "expectedQtys": [ + "26584593471242", + "43971936740609" + ], + "redemptionFee": "41844528789", "reserves": [ - "4338727711234517559310234", - "3168367246073994846371606" + "4672268474204234861943798", + "7728111171047042271315388" ], - "LPTokenSupply": "7381659098069658740241341", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12249674331558721267591678" }, { "type": "mintMulti", "inputQtys": [ - "112936669732109750894592", - "47227679848858820542464" + "16941717258259566428160", + "16490486793366199599104" ], - "expectedQty": "157443917371126807848572", + "expectedQty": "33041734397388195266266", "reserves": [ - "4451664380966627310204826", - "3215594925922853666914070" + "4689210191462494428371958", + "7744601657840408470914492" ], - "LPTokenSupply": "7539103015440785548089913" + "LPTokenSupply": "12282716065956109462857944" }, { "type": "mint", "inputIndex": 1, - "inputQty": "80726699094822", - "expectedQty": "79481076237565", + "inputQty": "28272633699350156935168", + "expectedQty": "27890089299111010551356", "reserves": [ - "4451664380966627310204826", - "3215594926003580366008892" + "4689210191462494428371958", + "7772874291539758627849660" ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "146317978322262884352", + "inputQty": "12779136852527958016", "outputIndex": 1, - "expectedQty": "145872334317597183312", - "swapFee": "114989224265921356", + "expectedQty": "12816434841008345693", + "swapFee": "10122453619860867", "reserves": [ - "4451810698944949573089178", - "3215449053669262768825580" + "4689222970599346956329974", + "7772861475104917619503967" ], - "LPTokenSupply": "7539103027019189050919613", + "LPTokenSupply": "12310606156267465835395386", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "4255340490075055718", + "inputQty": "1421123602128325017", "expectedQtys": [ - "2511254173251765483", - "1813825969019539406" + "540994243123184401", + "896752689516122017" ], - "redemptionFee": "2553204294045033", + "redemptionFee": "852674161276995", "reserves": [ - "4451808187690776321323695", - "3215447239843293749286174" + "4689222429605103833145573", + "7772860578352228103381950" ], - "LPTokenSupply": "7539098771934019405268398" + "LPTokenSupply": "12310604735229131123198068" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11995716445438786666496", - "56315316302759499661312" + "139855448289456455680", + "205202202980982620160" ], - "expectedQty": "67231995327472599621709", - "swapFee": "40363415245630938336", + "expectedQty": "340900206018180702876", "reserves": [ - "4439812471245337534657199", - "3159131923540534249624862" + "4689362285053393289601253", + "7773065780555209086002110" ], - "LPTokenSupply": "7471830449532825737802185" + "LPTokenSupply": "12310945635435149303900944" }, { "type": "redeemBassets", "inputQtys": [ - "9909066412889475121152", - "183872197144927266668544" - ], - "expectedQty": "190802474232250275137555", - "swapFee": "114550214668151055715", - "reserves": [ - "4429903404832448059536047", - "2975259726395606982956318" - ], - "LPTokenSupply": "7280924880107374126714485" - }, - { - "type": "mintMulti", - "inputQtys": [ - "2495148690364418048", - "2559321360672765440" + "7752721380768180338688", + "4783497410566760169472" ], - "expectedQty": "4971132141458224221", + "expectedQty": "12394997565268524063932", + "swapFee": "7441463417211441303", "reserves": [ - "4429905899981138423954095", - "2975262285716967655721758" + "4681609563672625109262565", + "7768282283144642325832638" ], - "LPTokenSupply": "7280929851239515584938706" + "LPTokenSupply": "12298543940552805289539838" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "16454005631813810", - "expectedQty": "16696623970648621", - "swapFee": "9872403379088", + "inputQty": "373002647863195200", + "expectedQty": "367952005607317958", "reserves": [ - "4429905899981138423954095", - "2975262269020343685073137" - ], - "LPTokenSupply": "7280929834786497193462804" + "4681609563672625109262565", + "7768282656147290189027838" + ] }, { "type": "redeemMasset", - "inputQty": "18724579170297013338112", + "inputQty": "1251268315024352665", "expectedQtys": [ - "11385682426281594102993", - "7646977632212878763759" + "476026657599129082", + "789879971363982368" ], - "redemptionFee": "11234747502178208002", + "redemptionFee": "750760989014611", "reserves": [ - "4418520217554856829851102", - "2967615291388130806309378" + "4681609087645967510133483", + "7768281866267318825045470" ], - "LPTokenSupply": "7262206379090950397945492" + "LPTokenSupply": "12298543057311571971406592" }, { - "type": "mintMulti", - "inputQtys": [ - "1524434815763166789632", - "7525174138892265193472" - ], - "expectedQty": "8908495227894466434100", + "type": "swap", + "inputIndex": 0, + "inputQty": "10487985481647350874112", + "outputIndex": 1, + "expectedQty": "10518525239350534605742", + "swapFee": "8307606319766249542", "reserves": [ - "4420044652370619996640734", - "2975140465527023071502850" + "4692097073127614861007595", + "7757763341027968290439728" ], - "LPTokenSupply": "7271114874318844864379592" + "LPTokenSupply": "12298543888072203948031546", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "786101408657116626944", - "1572966756198362906624" - ], - "expectedQty": "2321204145987889022149", + "type": "redeem", + "inputIndex": 0, + "inputQty": "15297053154334690246656", + "expectedQty": "15440292420794994885679", + "swapFee": "9178231892600814147", "reserves": [ - "4420830753779277113267678", - "2976713432283221434409474" + "4676656780706819866121916", + "7757763341027968290439728" ], - "LPTokenSupply": "7273436078464832753401741" + "LPTokenSupply": "12283247752741058517866304" }, { - "type": "redeemBassets", - "inputQtys": [ - "4908921376519682523136", - "1217461627495798800384" - ], - "expectedQty": "6020177431364312542648", - "swapFee": "3614275023832887257", + "type": "mint", + "inputIndex": 1, + "inputQty": "106138442301162353852416", + "expectedQty": "104698854148209293654257", "reserves": [ - "4415921832402757430744542", - "2975495970655725635609090" - ], - "LPTokenSupply": "7267412648185946991260560" + "4676656780706819866121916", + "7863901783329130644292144" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "279656177249280384", - "260453878220500896" + "type": "redeemMasset", + "inputQty": "46786669318097818615808", + "expectedQtys": [ + "17652151574093125805091", + "29682483182382882469791" ], - "expectedQty": "531166618665568185", - "swapFee": "318891305982930", + "redemptionFee": "28072001590858691169", "reserves": [ - "4415921552746580181464158", - "2975495710201847415108194" + "4659004629132726740316825", + "7834219300146747761822353" ], - "LPTokenSupply": "7267412116732326150307737" + "LPTokenSupply": "12341162744771329078773869" }, { - "type": "redeemMasset", - "inputQty": "13725172485857478246", - "expectedQtys": [ - "8334867825233605624", - "5616124100677662549" - ], - "redemptionFee": "8235103491514486", + "type": "mint", + "inputIndex": 1, + "inputQty": "99256362174678306914304", + "expectedQty": "97905603750888950588240", "reserves": [ - "4415913217878754947858534", - "2975490094077746737445645" - ], - "LPTokenSupply": "7267398392383350641980939" + "4659004629132726740316825", + "7933475662321426068736657" + ] }, { - "type": "redeemMasset", - "inputQty": "13746034372282849", - "expectedQtys": [ - "8347536604658001", - "5624660461294697" + "type": "mintMulti", + "inputQtys": [ + "203169182893323584", + "141530877898041776" ], - "redemptionFee": "8247620623369", + "expectedQty": "340796434339512891", "reserves": [ - "4415913209531218343200533", - "2975490088453086276150948" + "4659004832301909633640409", + "7933475803852303966778433" ], - "LPTokenSupply": "7267398378638141031760426" + "LPTokenSupply": "12439068689318652368875000" }, { - "type": "redeemMasset", - "inputQty": "475231669817745203", - "expectedQtys": [ - "288593324595449161", - "194457303887691506" + "type": "mintMulti", + "inputQtys": [ + "95982305669658368", + "157507813180174752" ], - "redemptionFee": "285139001890647", + "expectedQty": "250410478976361516", "reserves": [ - "4415912920937893747751372", - "2975489893995782388459442" + "4659004928284215303298777", + "7933475961360117146953185" ], - "LPTokenSupply": "7267397903434985114204287" + "LPTokenSupply": "12439068939729131345236516" }, { - "type": "redeemBassets", - "inputQtys": [ - "383748299287351132160", - "797712707995141799936" - ], - "expectedQty": "1162522890774455345752", - "swapFee": "697932493961049837", + "type": "redeem", + "inputIndex": 0, + "inputQty": "6467776414226294784", + "expectedQty": "6527334807193529032", + "swapFee": "3880665848535776", "reserves": [ - "4415529172638606396619212", - "2974692181287787246659506" + "4658998400949408109769745", + "7933475961360117146953185" ], - "LPTokenSupply": "7266234752404966093913680" + "LPTokenSupply": "12439062472340783703795309" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "17166486464123988082688", - "expectedQty": "16859426869077324669014", + "inputIndex": 1, + "inputQty": "22358099601453367296", + "expectedQty": "22053364512209452928", "reserves": [ - "4432695659102730384701900", - "2974692181287787246659506" + "4658998400949408109769745", + "7933498319459718600320481" ] }, { - "type": "redeemMasset", - "inputQty": "9186770575525253061017", - "expectedQtys": [ - "5587971781593702275402", - "3749974563182240019744" - ], - "redemptionFee": "5512062345315151836", + "type": "swap", + "inputIndex": 1, + "inputQty": "2962621075115955191808", + "outputIndex": 0, + "expectedQty": "2950907628623726033085", + "swapFee": "0", "reserves": [ - "4427107687321136682426498", - "2970942206724605006639762" + "4656047493320784383736660", + "7936460940534834555512289" ], - "LPTokenSupply": "7273907959904752697036860" + "LPTokenSupply": "12439084525705295913248237", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "776467145103229568", - "695207003328459264" + "37786822253181392650240", + "23730295974271907790848" ], - "expectedQty": "1447267885622530050", - "swapFee": "868882060609883", + "expectedQty": "60826919420820088859944", + "swapFee": "36518062489986044942", "reserves": [ - "4427106910853991579196930", - "2970941511517601678180498" + "4618260671067602991086420", + "7912730644560562647721441" ], - "LPTokenSupply": "7273906511854873219957914" + "LPTokenSupply": "12378224740028234836947844" }, { - "type": "redeemBassets", - "inputQtys": [ - "17697642484436681359360", - "10107276275827649544192" - ], - "expectedQty": "27335408849620594795781", - "swapFee": "16411091964951327674", + "type": "mint", + "inputIndex": 1, + "inputQty": "350081425794699091771392", + "expectedQty": "345276003307863055293205", "reserves": [ - "4409409268369554897837570", - "2960834235241774028636306" - ], - "LPTokenSupply": "7246556333022484168967225" + "4618260671067602991086420", + "8262812070355261739492833" + ] }, { - "type": "redeemMasset", - "inputQty": "225380022861949952", - "expectedQtys": [ - "137057719613633612", - "92031644997713472" - ], - "redemptionFee": "135228013717169", + "type": "mint", + "inputIndex": 1, + "inputQty": "943967527747558965248", + "expectedQty": "930940892019372739002", "reserves": [ - "4409409131311835284203958", - "2960834143210129030922834" - ], - "LPTokenSupply": "7246556107655984108388989" + "4618260671067602991086420", + "8263756037883009298458081" + ] }, { - "type": "redeemMasset", - "inputQty": "1496105971337796", - "expectedQtys": [ - "909809441544610", - "610919689717882" - ], - "redemptionFee": "897663582802", + "type": "redeem", + "inputIndex": 1, + "inputQty": "10502493466916462526464", + "expectedQty": "10643043244563590961225", + "swapFee": "6301496080149877515", "reserves": [ - "4409409130402025842659348", - "2960834142599209341204952" + "4618260671067602991086420", + "8253112994638445707496856" ], - "LPTokenSupply": "7246556106159967903409473" + "LPTokenSupply": "12713929820910808817441338" }, { "type": "mint", "inputIndex": 1, - "inputQty": "47759394231836672000", - "expectedQty": "47036993808256802808", + "inputQty": "942092073675256233984", + "expectedQty": "929094696121980677861", "reserves": [ - "4409409130402025842659348", - "2960881901993441177876952" + "4618260671067602991086420", + "8254055086712120963730840" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "112232936868810405707776", - "expectedQty": "114204478816809103768430", - "swapFee": "67339762121286243424", + "inputQty": "4537773479156463960064", + "expectedQty": "4494939480607687712442", "reserves": [ - "4295204651585216738890918", - "2960881901993441177876952" - ], - "LPTokenSupply": "7134376940261177883128847" + "4622798444546759455046484", + "8254055086712120963730840" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8512613588962212", - "28477295589262436" + "36836713445639432699904", + "54228068192249270239232" ], - "expectedQty": "36403781766700341", + "expectedQty": "89969006781123971630087", + "swapFee": "54013812356088035799", "reserves": [ - "4295204660097830327853130", - "2960881930470736767139388" + "4585961731101120022346580", + "8199827018519871693491608" ], - "LPTokenSupply": "7134376976664959649829188" + "LPTokenSupply": "12629336235875294034969333" }, { "type": "swap", "inputIndex": 0, - "inputQty": "13544653023051920703488", + "inputQty": "937551941998495616", "outputIndex": 1, - "expectedQty": "13498165616859805802110", - "swapFee": "10642577602976842356", + "expectedQty": "940947431650109889", + "swapFee": "742962942506731", "reserves": [ - "4308749313120882248556618", - "2947383764853876961337278" + "4585962668653062020842196", + "8199826077572440043381719" ], - "LPTokenSupply": "7134378040922719947513423", + "LPTokenSupply": "12629336235949590329220006", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "108547834254705", - "18708278271466" - ], - "expectedQty": "125034264679603", + "type": "mint", + "inputIndex": 0, + "inputQty": "26623964090722945073152", + "expectedQty": "26372225913843115421819", "reserves": [ - "4308749313229430082811323", - "2947383764872585239608744" - ], - "LPTokenSupply": "7134378041047754212193026" + "4612586632743784965915348", + "8199826077572440043381719" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "330080848385798336", - "expectedQty": "324190424553508273", + "inputQty": "241045028106689455325184", + "expectedQty": "238724988628042582354467", "reserves": [ - "4308749643310278468609659", - "2947383764872585239608744" + "4853631660850474421240532", + "8199826077572440043381719" ] }, { - "type": "redeemMasset", - "inputQty": "822973722026483961036", - "expectedQtys": [ - "496730052314556949078", - "339786298326548352669" - ], - "redemptionFee": "493784233215890376", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2108111203802939129856", + "expectedQty": "2135915713886770052816", + "swapFee": "1264866722281763477", "reserves": [ - "4308252913257963911660581", - "2947043978574258691256075" + "4853631660850474421240532", + "8197690161858553273328903" ], - "LPTokenSupply": "7133555440894575603329300" + "LPTokenSupply": "12892325465774345316042783" }, { - "type": "mintMulti", - "inputQtys": [ - "12658162646569396994048", - "12215553095387867774976" - ], - "expectedQty": "24461875047801089467888", + "type": "swap", + "inputIndex": 1, + "inputQty": "107326675714800827236352", + "outputIndex": 0, + "expectedQty": "106893499879225000390989", + "swapFee": "0", "reserves": [ - "4320911075904533308654629", - "2959259531669646559031051" + "4746738160971249420849543", + "8305016837573354100565255" ], - "LPTokenSupply": "7158017315942376692797188" + "LPTokenSupply": "12892325465774345316042783", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1210597817660077670", - "expectedQtys": [ - "730334498610214671", - "500183708563596666" - ], - "redemptionFee": "726358690596046", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7328465176916728479744", + "expectedQty": "7426000050716976184795", + "swapFee": "4397079106150037087", "reserves": [ - "4320910345570034698439958", - "2959259031485937995434385" + "4746738160971249420849543", + "8297590837522637124380460" ], - "LPTokenSupply": "7158016105417194901779122" + "LPTokenSupply": "12884997440305339202566747" }, { - "type": "mintMulti", - "inputQtys": [ - "104339498459699167232", - "203664223391381028864" + "type": "redeemMasset", + "inputQty": "2644246463031447388160", + "expectedQtys": [ + "973536449956137036364", + "1701801711661610609818" ], - "expectedQty": "303040899340152256545", + "redemptionFee": "1586547877818868432", "reserves": [ - "4321014685068494397607190", - "2959462695709329376463249" + "4745764624521293283813179", + "8295889035810975513770642" ], - "LPTokenSupply": "7158319146316535054035667" + "LPTokenSupply": "12882353352497095537065430" }, { - "type": "redeemMasset", - "inputQty": "220046584014138140262", - "expectedQtys": [ - "132748206218308654857", - "90919238386986929188" - ], - "redemptionFee": "132027950408482884", + "type": "mint", + "inputIndex": 1, + "inputQty": "302795774082478464040960", + "expectedQty": "298621222242625086497003", "reserves": [ - "4320881936862276088952333", - "2959371776470942389534061" - ], - "LPTokenSupply": "7158099112935315956743693" + "4745764624521293283813179", + "8598684809893453977811602" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "36199282203462856704", - "expectedQty": "35648062934166146723", + "inputQty": "532663794304560463872", + "expectedQty": "525287522755409910458", "reserves": [ - "4320881936862276088952333", - "2959407975753145852390765" + "4745764624521293283813179", + "8599217473687758538275474" ] }, + { + "type": "redeemMasset", + "inputQty": "7325264173789132390", + "expectedQtys": [ + "2635748705119631224", + "4775916657181640026" + ], + "redemptionFee": "4395158504273479", + "reserves": [ + "4745761988772588164181955", + "8599212697771101356635448" + ], + "LPTokenSupply": "13181492537437818094767848" + }, { "type": "redeemBassets", "inputQtys": [ - "25314324587610052", - "10911253315093126" + "4633514607328952", + "6622987016173409" ], - "expectedQty": "35607781965055561", - "swapFee": "21377495676439", + "expectedQty": "11121436409594071", + "swapFee": "6676867966536", "reserves": [ - "4320881911547951501342281", - "2959407964841892537297639" + "4745761984139073556853003", + "8599212691148114340462039" ], - "LPTokenSupply": "7158134725371228411726058" + "LPTokenSupply": "13181492526310372504003893" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "107566989107374047232", - "expectedQty": "109164732735588825744", - "swapFee": "64540193464424428", + "inputIndex": 0, + "inputQty": "18977687268396802048", + "expectedQty": "19145420513570680138", + "swapFee": "11386612361038081", "reserves": [ - "4320881911547951501342281", - "2959298800109156948471895" + "4745742838718559986172865", + "8599212691148114340462039" ], - "LPTokenSupply": "7158027164836140384121268" + "LPTokenSupply": "13181473549761765343305653" }, { - "type": "redeemBassets", - "inputQtys": [ - "114650104265079242752", - "16289352502472607744" - ], - "expectedQty": "128645871478532877458", - "swapFee": "77233863205042752", + "type": "redeem", + "inputIndex": 0, + "inputQty": "62232177580137328410624", + "expectedQty": "62779561022413067280564", + "swapFee": "37339306548082397046", "reserves": [ - "4320767261443686422099529", - "2959282510756654475864151" + "4682963277696146918892301", + "8599212691148114340462039" ], - "LPTokenSupply": "7157898449454184966705332" + "LPTokenSupply": "13119245106112282823134733" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "19870900061713588224", - "expectedQty": "20219729514519685050", - "swapFee": "11922540037028152", + "inputQty": "133861438950772572160", + "outputIndex": 1, + "expectedQty": "134381320389362067046", + "swapFee": "106095983546492239", "reserves": [ - "4320747041714171902414479", - "2959282510756654475864151" + "4683097139135097691464461", + "8599078309827724978394993" ], - "LPTokenSupply": "7157878579746377256819923" + "LPTokenSupply": "13119245116721881177783956", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3878786221356765184", - "expectedQty": "3946877464737090404", - "swapFee": "2327271732814059", + "inputQty": "1535633090025403973632", + "expectedQty": "1549076849758262961913", + "swapFee": "921379854015242384", "reserves": [ - "4320743094836707165324075", - "2959282510756654475864151" + "4681548062285339428502548", + "8599078309827724978394993" ], - "LPTokenSupply": "7157874701192883073336144" + "LPTokenSupply": "13117709575769841175334562" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "260795452106333080256512", - "expectedQty": "264610095813559063991303", - "swapFee": "156477271263799848153", + "inputQty": "2954606026128755", + "expectedQty": "2994449354408168", + "swapFee": "1772763615677", "reserves": [ - "4320743094836707165324075", - "2694672414943095411872848" + "4681548062285339428502548", + "8599078306833275623986825" ], - "LPTokenSupply": "6897094896813676373064447" + "LPTokenSupply": "13117709572815412425567374" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "245689957509032017920", - "expectedQty": "249228826571266223890", - "swapFee": "147413974505419210", + "type": "redeemBassets", + "inputQtys": [ + "29128227611058376704", + "25053825703685910528" + ], + "expectedQty": "53563774370721329706", + "swapFee": "32157559157927554", "reserves": [ - "4320743094836707165324075", - "2694423186116524145648958" + "4681518934057728370125844", + "8599053253007571938076297" ], - "LPTokenSupply": "6896849221597564791588448" + "LPTokenSupply": "13117655980099238462102868" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "10536419227573828976640", + "expectedQty": "10438646339528761433508", + "reserves": [ + "4692055353285302199102484", + "8599053253007571938076297" + ] }, { "type": "redeemBassets", "inputQtys": [ - "3592485593442744795136", - "6617135792852657242112" + "9097422954808697946112", + "14565898478919876608000" ], - "expectedQty": "10046529021977805411944", - "swapFee": "6031536334987675852", + "expectedQty": "23376517970905778858085", + "swapFee": "14034331381372290689", "reserves": [ - "4317150609243264420528939", - "2687806050323671488406846" + "4682957930330493501156372", + "8584487354528652061468297" ], - "LPTokenSupply": "6886797264192885497268236" + "LPTokenSupply": "13104705477569618209616669" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "259858506164612300800", - "69337439227189460992" + "2476361975254618", + "2550942218631977" + ], + "expectedQty": "4968871476080356", + "swapFee": "2983112753300", + "reserves": [ + "4682957927854131525901754", + "8584487351977709842836320" + ], + "LPTokenSupply": "13104705472598061932058342" + }, + { + "type": "redeemMasset", + "inputQty": "75185698266044032", + "expectedQtys": [ + "26851439554665861", + "49222275064309111" ], - "expectedQty": "323450306807187421765", + "redemptionFee": "45111418959626", "reserves": [ - "4317410467749429032829739", - "2687875387762898677867838" + "4682957901002691971235893", + "8584487302755434778527209" ], - "LPTokenSupply": "6887120714499692684690001" + "LPTokenSupply": "13104705397416874807910272" }, { "type": "swap", "inputIndex": 1, - "inputQty": "40586745078274678849536", + "inputQty": "29216476986075624", "outputIndex": 0, - "expectedQty": "40722370942121986014100", + "expectedQty": "29080654113087287", "swapFee": "0", "reserves": [ - "4276688096807307046815639", - "2728462132841173356717374" + "4682957871922037858148606", + "8584487331971911764602833" ], - "LPTokenSupply": "6887120714499692684690001", + "LPTokenSupply": "13104705397416874807910272", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "434913014284716", - "873934554433479" + "152694685384479", + "300377857146656" ], - "expectedQty": "1287952673453516", + "expectedQty": "447481835612973", "reserves": [ - "4276688097242220061100355", - "2728462133715107911150853" + "4682957872074732543533085", + "8584487332272289621749489" ], - "LPTokenSupply": "6887120715787645358143517" + "LPTokenSupply": "13104705397864356643523245" }, { - "type": "redeemBassets", - "inputQtys": [ - "34095528818553736", - "10974007576760117248" + "type": "redeem", + "inputIndex": 0, + "inputQty": "678325135400459173888", + "expectedQty": "684272020713306874591", + "swapFee": "406995081240275504", + "reserves": [ + "4682273600054019236658494", + "8584487332272289621749489" ], - "expectedQty": "10843888019618597903", - "swapFee": "6510238955144245", + "LPTokenSupply": "13104027113428464308376907" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "7177560604308445069312", + "expectedQty": "7240447129499710971106", + "swapFee": "4306536362585067041", "reserves": [ - "4276688063146691242546619", - "2728451159707531151033605" + "4675033152924519525687388", + "8584487332272289621749489" ], - "LPTokenSupply": "6887109866040410679915792" + "LPTokenSupply": "13096849983477792121814299" }, { "type": "swap", "inputIndex": 1, - "inputQty": "16851801431370364928", + "inputQty": "229455841168147433390080", "outputIndex": 0, - "expectedQty": "16906369716863889807", + "expectedQty": "228295791388865438360046", "swapFee": "0", "reserves": [ - "4276671156776974378656812", - "2728468011508962521398533" + "4446737361535654087327342", + "8813943173440437055139569" ], - "LPTokenSupply": "6887109866040410679915792", + "LPTokenSupply": "13096849983477792121814299", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "301565633779358367744", - "outputIndex": 1, - "expectedQty": "300351589370256770905", - "swapFee": "236888857478494833", + "inputQty": "406673410123746773041152", + "expectedQty": "409869707739359080398145", + "swapFee": "244004046074248063824", "reserves": [ - "4276972722410753737024556", - "2728167659919592264627628" + "4036867653796295006929197", + "8813943173440437055139569" ], - "LPTokenSupply": "6887109889729296427765275", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12690200973758652773579529" + }, + { + "type": "mintMulti", + "inputQtys": [ + "104252939210595975168", + "54365443568852967424" + ], + "expectedQty": "156991679064417718179", + "reserves": [ + "4036971906735505602904365", + "8813997538884005908106993" + ], + "LPTokenSupply": "12690357965437717191297708" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "36046267424848744448", + "expectedQty": "35757339329724798413", + "reserves": [ + "4037007953002930451648813", + "8813997538884005908106993" + ] }, { "type": "redeemMasset", - "inputQty": "199964562508709760", + "inputQty": "2040055379039379206963", "expectedQtys": [ - "124105734799676392", - "79163762330518281" + "648583372405673963531", + "1416051767718811158278" ], - "redemptionFee": "119978737505225", + "redemptionFee": "1224033227423627524", "reserves": [ - "4276972598305018937348164", - "2728167580755829934109347" + "4036359369630524777685282", + "8812581487116287096948715" ], - "LPTokenSupply": "6887109689776731792806037" + "LPTokenSupply": "12688353789801330279251910" }, { "type": "redeemMasset", - "inputQty": "1532368103827414030745", + "inputQty": "1578396183177227264", "expectedQtys": [ - "951046861134639002239", - "606647612228184497073" + "501810695374878892", + "1095603051940939179" ], - "redemptionFee": "919420862296448418", + "redemptionFee": "947037709906336", "reserves": [ - "4276021551443884298345925", - "2727560933143601749612274" + "4036358867819829402806390", + "8812580391513235156009536" ], - "LPTokenSupply": "6885577413614990608420133" + "LPTokenSupply": "12688352211499850873015279" }, { "type": "mint", "inputIndex": 1, - "inputQty": "220716147736737939456", - "expectedQty": "217425867510911965938", + "inputQty": "3580347994776850661376", + "expectedQty": "3528246974125619215688", "reserves": [ - "4276021551443884298345925", - "2727781649291338487551730" + "4036358867819829402806390", + "8816160739508012006670912" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "199344328599110400", - "expectedQty": "196372603734303512", + "inputQty": "23844943555115655168", + "expectedQty": "23497934301716149510", "reserves": [ - "4276021551443884298345925", - "2727781848635667086662130" + "4036358867819829402806390", + "8816184584451567122326080" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1983936515873232388096", - "expectedQty": "2012747442530698351810", - "swapFee": "1190361909523939432", + "inputQty": "56298474385434198016", + "expectedQty": "57095592164178915805", + "swapFee": "33779084631260518", "reserves": [ - "4276021551443884298345925", - "2725769101193136388310320" + "4036358867819829402806390", + "8816127488859402943410275" ], - "LPTokenSupply": "6883811218375422974695430" + "LPTokenSupply": "12691847661311801237308512" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "2264886528789298544640", - "outputIndex": 0, - "expectedQty": "2272223406480919247950", - "swapFee": "0", + "inputQty": "16338491386840091721728", + "expectedQty": "16100662893592387078806", "reserves": [ - "4273749328037403379097975", - "2728033987721925686854960" - ], - "LPTokenSupply": "6883811218375422974695430", - "hardLimitError": false, - "insufficientLiquidityError": false + "4036358867819829402806390", + "8832465980246243035132003" + ] }, { "type": "redeemMasset", - "inputQty": "9414855577268716673433", + "inputQty": "39318812454661862195", "expectedQtys": [ - "5841617293333238994569", - "3728840719536409559812" + "12481134670575758669", + "27311545128363701615" ], - "redemptionFee": "5648913346361230004", + "redemptionFee": "23591287472797117", "reserves": [ - "4267907710744070140103406", - "2724305147002389277295148" + "4036346386685158827047721", + "8832438668701114671430388" ], - "LPTokenSupply": "6874396927689488894144997" + "LPTokenSupply": "12707909007752067709804834" }, { - "type": "redeemMasset", - "inputQty": "1744294652777946572390", - "expectedQtys": [ - "1082279941571867904402", - "690844557837837609266" + "type": "mintMulti", + "inputQtys": [ + "125841627608990752", + "67487931292679048" ], - "redemptionFee": "1046576791666767943", + "expectedQty": "191340658066005451", "reserves": [ - "4266825430802498272199004", - "2723614302444551439685882" + "4036346512526786436038473", + "8832438736189045964109436" ], - "LPTokenSupply": "6872652737694390114249401" + "LPTokenSupply": "12707909199092725775810285" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "813982278031375728640", - "outputIndex": 1, - "expectedQty": "810707858054733776156", - "swapFee": "639407726000245900", + "inputQty": "3403011091205551", + "expectedQty": "3428384028739382", + "swapFee": "2041806654723", "reserves": [ - "4267639413080529647927644", - "2722803594586496705909726" + "4036346509098402407299091", + "8832438736189045964109436" ], - "LPTokenSupply": "6872652801635162714273991", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12707909195689918865270206" }, { - "type": "mintMulti", - "inputQtys": [ - "1087134869439510144", - "430955442802244736" - ], - "expectedQty": "1492000444861463876", + "type": "swap", + "inputIndex": 1, + "inputQty": "37887004521858568", + "outputIndex": 0, + "expectedQty": "37636327229512706", + "swapFee": "0", "reserves": [ - "4267640500215399087437788", - "2722804025541939508154462" + "4036346471462075177786385", + "8832438774076050485968004" ], - "LPTokenSupply": "6872654293635607575737867" + "LPTokenSupply": "12707909195689918865270206", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "5436079323269984", + "inputQty": "143792679407649384562688", "outputIndex": 0, - "expectedQty": "5453680176514931", + "expectedQty": "142793464243289654698794", "swapFee": "0", "reserves": [ - "4267640494761718910922857", - "2722804030978018831424446" + "3893553007218785523087591", + "8976231453483699870530692" ], - "LPTokenSupply": "6872654293635607575737867", + "LPTokenSupply": "12707909195689918865270206", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "3988025649563401977856", - "84352234257716267188224" - ], - "expectedQty": "87016829450128333343888", - "swapFee": "52241442535598359021", + "type": "swap", + "inputIndex": 1, + "inputQty": "18840072200356286464", + "outputIndex": 0, + "expectedQty": "18702688390653936978", + "swapFee": "0", "reserves": [ - "4263652469112155508945001", - "2638451796720302564236222" + "3893534304530394869150613", + "8976250293555900226817156" ], - "LPTokenSupply": "6785590446887197203870859" + "LPTokenSupply": "12707909195689918865270206", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "40405834609073558913024", - "34861879600796439412736" + "13770389382344097792", + "349231824743704952832" ], - "expectedQty": "74018139227116544453367", - "swapFee": "44437546063908271635", + "expectedQty": "357741235374864249017", "reserves": [ - "4223246634503081950031977", - "2603589917119506124823486" + "3893548074919777213248405", + "8976599525380643931769988" ], - "LPTokenSupply": "6711532313868623141973019" + "LPTokenSupply": "12708266936925293729519223" }, { - "type": "redeemMasset", - "inputQty": "27827424930321517772", - "expectedQtys": [ - "17499962742331851831", - "10788554514828438073" - ], - "redemptionFee": "16696454958192910", + "type": "swap", + "inputIndex": 1, + "inputQty": "30195838814203599126528", + "outputIndex": 0, + "expectedQty": "29973371990740062245180", + "swapFee": "0", "reserves": [ - "4223229134540339618180146", - "2603579128564991296385413" + "3863574702929037151003225", + "9006795364194847530896516" ], - "LPTokenSupply": "6711504488113338316274538" + "LPTokenSupply": "12708266936925293729519223", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "685465387304946237440", + "inputQty": "5188706628329808068608", "outputIndex": 0, - "expectedQty": "687884532072766083239", + "expectedQty": "5150020349623622433573", "swapFee": "0", "reserves": [ - "4222541250008266852096907", - "2604264593952296242622853" + "3858424682579413528569652", + "9011984070823177338965124" ], - "LPTokenSupply": "6711504488113338316274538", + "LPTokenSupply": "12708266936925293729519223", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "8043019540705676414156", - "expectedQtys": [ - "5057227430346603117844", - "3119059722717978443010" + "type": "redeemBassets", + "inputQtys": [ + "43585636612152754176", + "46856869954952937472" ], - "redemptionFee": "4825811724423405848", + "expectedQty": "89425225435978552982", + "swapFee": "53687347670189245", "reserves": [ - "4217484022577920248979063", - "2601145534229578264179843" + "3858381096942801375815476", + "9011937213953222386027652" ], - "LPTokenSupply": "6703461951153805082200966" + "LPTokenSupply": "12708177463381244847795919" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "541656963500668157952", - "expectedQty": "549434795708118350686", - "swapFee": "324994178100400894", + "type": "mintMulti", + "inputQtys": [ + "40168201938987761664", + "590016108444120776704" + ], + "expectedQty": "621142347079524789422", "reserves": [ - "4217484022577920248979063", - "2600596099433870145829157" + "3858421265144740363577140", + "9012527230061666506804356" ], - "LPTokenSupply": "6702920326689722224083103" + "LPTokenSupply": "12708798605728324372585341" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "569435561867489574912", - "expectedQty": "559064896876797920638", + "type": "mintMulti", + "inputQtys": [ + "684462808427870945280", + "4883622827972022501376" + ], + "expectedQty": "5490634535911560176227", "reserves": [ - "4218053458139787738553975", - "2600596099433870145829157" - ] + "3859105727953168234522420", + "9017410852889638529305732" + ], + "LPTokenSupply": "12714289240264235932761568" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "22542972008541124", - "outputIndex": 1, - "expectedQty": "22445696268742649", - "swapFee": "17705928251618", + "type": "mintMulti", + "inputQtys": [ + "19568643988246585344", + "58018223803691974656" + ], + "expectedQty": "76582039461341248336", "reserves": [ - "4218053480682759747095099", - "2600596076988173877086508" + "3859125296597156481107764", + "9017468871113442221280388" ], - "LPTokenSupply": "6703479391588369614828902", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12714365822303697274009904" }, { - "type": "redeemBassets", - "inputQtys": [ - "241082997957999067136", - "810246652321535098880" - ], - "expectedQty": "1034991220499839947747", - "swapFee": "621367552831602930", + "type": "redeem", + "inputIndex": 1, + "inputQty": "57731042333839810560", + "expectedQty": "58564463656834639196", + "swapFee": "34638625400303886", "reserves": [ - "4217812397684801748027963", - "2599785830335852341987628" + "3859125296597156481107764", + "9017410306649785386641192" ], - "LPTokenSupply": "6702443841137072226438517" + "LPTokenSupply": "12714308094725225974229732" }, { - "type": "redeemMasset", - "inputQty": "2917109856506088102297", - "expectedQtys": [ - "1834620343916661246769", - "1130827908983935593622" + "type": "mintMulti", + "inputQtys": [ + "134864159604471414784", + "117082048898755428352" ], - "redemptionFee": "1750265913903652861", + "expectedQty": "249212384936237413660", "reserves": [ - "4215977777340885086781194", - "2598655002426868406394006" + "3859260160756760952522548", + "9017527388698684142069544" ], - "LPTokenSupply": "6699526906307157528701506" + "LPTokenSupply": "12714557307110162211643392" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "569134725821251846144", - "outputIndex": 1, - "expectedQty": "566676720958475116397", - "swapFee": "447014912599086687", + "type": "redeemBassets", + "inputQtys": [ + "457855329690994868224", + "489659081673163276288" + ], + "expectedQty": "936867093836123089819", + "swapFee": "562457730940237996", "reserves": [ - "4216546912066706338627338", - "2598088325705909931277609" + "3858802305427069957654324", + "9017037729617010978793256" ], - "LPTokenSupply": "6699526951008648788610174", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12713619933804368242339375" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1096342721830448640", - "1279609564431113472" + "267748180038330449920", + "320687206915882942464" ], - "expectedQty": "2337116743815513275", - "swapFee": "1403111913437370", + "expectedQty": "581699954765234560785", "reserves": [ - "4216545815723984508178698", - "2598087046096345500164137" + "3859070053607108288104244", + "9017358416823926861735720" ], - "LPTokenSupply": "6699524612629104251003265" + "LPTokenSupply": "12714201633759133476900160" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "20283423822342668288", + "expectedQty": "19982775484780493779", + "reserves": [ + "3859070053607108288104244", + "9017378700247749204404008" + ] }, { "type": "redeemMasset", - "inputQty": "6662205407793144188108", + "inputQty": "144172518417871903129", "expectedQtys": [ - "4190542025355001693817", - "2582064426193789305648" + "43733548308406350934", + "102190932407113380182" ], - "redemptionFee": "3997323244675886512", + "redemptionFee": "86503511050723141", "reserves": [ - "4212355273698629506484881", - "2595504981670151710858489" + "3859026320058799881753310", + "9017276509315342091023826" ], - "LPTokenSupply": "6692862806953635574403808" + "LPTokenSupply": "12714077452666551490563124" }, { "type": "redeemMasset", - "inputQty": "9224588749633100133171", + "inputQty": "1551563221729756", "expectedQtys": [ - "5802289967729608216791", - "3575166750622561971648" + "470653951746171", + "1099763637536561" ], - "redemptionFee": "5534753249779860079", + "redemptionFee": "930937933037", "reserves": [ - "4206552983730899898268090", - "2591929814919529148886841" + "3859026319588145930007139", + "9017276508215578453487265" ], - "LPTokenSupply": "6683638771679327452256644" + "LPTokenSupply": "12714077451115081362626671" }, { - "type": "redeemBassets", - "inputQtys": [ - "145431979113956065280", - "62214958201445089280" - ], - "expectedQty": "204080402217074446963", - "swapFee": "122521754382874392", + "type": "redeem", + "inputIndex": 1, + "inputQty": "280629974572197249024", + "expectedQty": "284681230681051300248", + "swapFee": "168377984743318349", "reserves": [ - "4206407551751785942202810", - "2591867599961327703797561" + "3859026319588145930007139", + "9016991826984897402187017" ], - "LPTokenSupply": "6683434581007531433222727" + "LPTokenSupply": "12713796837978307639709481" }, { - "type": "redeemMasset", - "inputQty": "836415729554252365824", - "expectedQtys": [ - "526105913855776495937", - "324171363686087338625" + "type": "redeemBassets", + "inputQtys": [ + "2833163852261693587456", + "6300526949883344584704" ], - "redemptionFee": "501849437732551419", + "expectedQty": "9019328321644733778393", + "swapFee": "5414845900527156560", "reserves": [ - "4205881445837930165706873", - "2591543428597641616458936" + "3856193155735884236419683", + "9010691300035014057602313" ], - "LPTokenSupply": "6682598215462920954112044" + "LPTokenSupply": "12704772636295352431490183" }, { "type": "mintMulti", "inputQtys": [ - "32900593607157", - "53696511661685" + "29582114749402009600", + "30898130633339973632" ], - "expectedQty": "85206035921318", + "expectedQty": "59803245447420052015", "reserves": [ - "4205881445870830759314030", - "2591543428651338128120621" + "3856222737850633638429283", + "9010722198165647397575945" ], - "LPTokenSupply": "6682598215548126990033362" + "LPTokenSupply": "12704832439540799851542198" }, { "type": "mint", "inputIndex": 0, - "inputQty": "8522360617866338", - "expectedQty": "8367116788627006", + "inputQty": "2244304797282071740416", + "expectedQty": "2227683341627701918079", "reserves": [ - "4205881454393191377180368", - "2591543428651338128120621" + "3858467042647915710169699", + "9010722198165647397575945" ] }, { - "type": "redeemMasset", - "inputQty": "103441775356294", - "expectedQtys": [ - "65064933085120", - "40091144175319" - ], - "redemptionFee": "62065065213", + "type": "swap", + "inputIndex": 0, + "inputQty": "993680154991555", + "outputIndex": 1, + "expectedQty": "1000354718814636", + "swapFee": "789054507747", "reserves": [ - "4205881454328126444095248", - "2591543428611246983945302" + "3858467043641595865161254", + "9010722197165292678761309" ], - "LPTokenSupply": "6682598223811808209810595" + "LPTokenSupply": "12707060122882506458911051", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "53731183524908000870400", - "expectedQty": "52751299241286662459631", + "type": "redeemBassets", + "inputQtys": [ + "3952498764562657280", + "2975547852731096576" + ], + "expectedQty": "6854664428625806846", + "swapFee": "4115267817866203", "reserves": [ - "4259612637853034444965648", - "2591543428611246983945302" - ] + "3858463091142831302503974", + "9010719221617439947664733" + ], + "LPTokenSupply": "12707053264514336797024621" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2859147857175742251008", - "expectedQty": "2899987551151763268152", - "swapFee": "1715488714305445350", + "type": "mintMulti", + "inputQtys": [ + "211300991576866029568", + "12958885824410312245248" + ], + "expectedQty": "12976530339360828424439", "reserves": [ - "4259612637853034444965648", - "2588643441060095220677150" + "3858674392134408168533542", + "9023678107441850259909981" ], - "LPTokenSupply": "6732490546744790560563753" + "LPTokenSupply": "12720029794853697625449060" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "15553711437792302596096", - "outputIndex": 0, - "expectedQty": "15609924483780534230993", - "swapFee": "0", + "inputQty": "21320128177913959809024", + "expectedQty": "21003931655304122853977", "reserves": [ - "4244002713369253910734655", - "2604197152497887523273246" - ], - "LPTokenSupply": "6732490546744790560563753", - "hardLimitError": false, - "insufficientLiquidityError": false + "3858674392134408168533542", + "9044998235619764219719005" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "6290734001292445745152", - "674343303928538595328" + "type": "mint", + "inputIndex": 0, + "inputQty": "257289473953995933351936", + "expectedQty": "255314678723209991391239", + "reserves": [ + "4115963866088404101885478", + "9044998235619764219719005" + ] + }, + { + "type": "redeemMasset", + "inputQty": "99383978499608153", + "expectedQtys": [ + "31456176389460682", + "69126228800548203" ], - "expectedQty": "6840480352248604778823", - "swapFee": "4106752262706786939", + "redemptionFee": "59630387099764", "reserves": [ - "4237711979367961464989503", - "2603522809193958984677918" + "4115963834632227712424796", + "9044998166493535419170802" ], - "LPTokenSupply": "6725646370315505519676683" + "LPTokenSupply": "12996348305854196278796099" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "680789119827938115584", - "758830478185909583872" + "23207111082243367370752", + "131975389703298439184384" ], - "expectedQty": "1416033697788157443952", - "swapFee": "850130296851005069", + "expectedQty": "153072549783251475889979", "reserves": [ - "4237031190248133526873919", - "2602763978715773075094046" + "4139170945714471079795548", + "9176973556196833858355186" ], - "LPTokenSupply": "6724229571500450196328167" + "LPTokenSupply": "13149420855637447754686078" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "160221434136768256", - "expectedQty": "163098072344472222", - "swapFee": "96132860482060", + "inputQty": "16521943767769147244544", + "outputIndex": 1, + "expectedQty": "16620830790170480520495", + "swapFee": "13113122888650359209", "reserves": [ - "4237031027150061182401697", - "2602763978715773075094046" + "4155692889482240227040092", + "9160352725406663377834691" ], - "LPTokenSupply": "6724229411288629345608117" + "LPTokenSupply": "13149422166949736619721998", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "23064666410755421110272", - "93173550449894331777024" + "90436462831725707264", + "182035015167326846976" ], - "expectedQty": "114439236039566479975021", + "expectedQty": "269098004708064420316", "reserves": [ - "4260095693560816603511969", - "2695937529165667406871070" + "4155783325945071952747356", + "9160534760421830704681667" ], - "LPTokenSupply": "6838668647328195825583138" + "LPTokenSupply": "13149691264954444684142314" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "159006464783686041600", - "outputIndex": 1, - "expectedQty": "158355593864531848453", - "swapFee": "124898858200702613", + "inputQty": "139084417076237531348992", + "expectedQty": "140091520397684433208157", + "swapFee": "83450650245742518809", "reserves": [ - "4260254700025600289553569", - "2695779173571802875022617" + "4015691805547387519539199", + "9160534760421830704681667" ], - "LPTokenSupply": "6838668659818081645653399", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13010615192943231727045202" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "84584879975507181568", - "expectedQty": "86095110190810219439", - "swapFee": "50750927985304308", + "inputQty": "258409159881997025280", + "expectedQty": "260241024607090065630", + "swapFee": "155045495929198215", "reserves": [ - "4260168604915409479334130", - "2695779173571802875022617" + "4015431564522780429473569", + "9160534760421830704681667" ], - "LPTokenSupply": "6838584080013198937002261" + "LPTokenSupply": "13010356799287899322939743" }, { - "type": "redeemMasset", - "inputQty": "2938064383302718", - "expectedQtys": [ - "1829200242158207", - "1157494074627242" + "type": "redeem", + "inputIndex": 1, + "inputQty": "250106783574075784560640", + "expectedQty": "253679773865357002029370", + "swapFee": "150064070144445470736", + "reserves": [ + "4015431564522780429473569", + "8906854986556473702652297" ], - "redemptionFee": "1762838629981", + "LPTokenSupply": "12760265022120837982926176" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1065465483559605", + "expectedQty": "1073301677477771", + "swapFee": "639279290135", "reserves": [ - "4260168603086209237175923", - "2695779172414308800395375" + "4015431563449478751995798", + "8906854986556473702652297" ], - "LPTokenSupply": "6838584077075310837562541" + "LPTokenSupply": "12760265021055436427295584" }, { "type": "redeemMasset", - "inputQty": "7932210871597000975974", + "inputQty": "228950083943263921766", "expectedQtys": [ - "4938490160269440533511", - "3125012213737953486646" + "72003347263400535650", + "159714681345694280952" ], - "redemptionFee": "4759326522958200585", + "redemptionFee": "137370050365958353", "reserves": [ - "4255230112925939796642412", - "2692654160200570846908729" + "4015359560102215351460148", + "8906695271875128008371345" ], - "LPTokenSupply": "6830652342136366132406625" + "LPTokenSupply": "12760036084708498199969653" }, { - "type": "redeemBassets", - "inputQtys": [ - "6461794582323661897728", - "3804612330870295494656" + "type": "swap", + "inputIndex": 0, + "inputQty": "6081370955950152744960", + "outputIndex": 1, + "expectedQty": "6117946581768837568165", + "swapFee": "4826646664470499426", + "reserves": [ + "4021440931058165504205108", + "8900577325293359170803180" + ], + "LPTokenSupply": "12760036567373164647019595", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "7873659493422184425062", + "expectedQtys": [ + "2479966128861862515992", + "5488861000933642709438" ], - "expectedQty": "10092616043237803271033", - "swapFee": "6059205149032101223", + "redemptionFee": "4724195696053310655", "reserves": [ - "4248768318343616134744684", - "2688849547869700551414073" + "4018960964929303641689116", + "8895088464292425528093742" ], - "LPTokenSupply": "6820554272808494200244490" + "LPTokenSupply": "12752163380299312067925598" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "3900973989114802601984", - "outputIndex": 1, - "expectedQty": "3884969664288864012797", - "swapFee": "3064188842760541922", + "inputIndex": 1, + "inputQty": "775633751745928626176", + "outputIndex": 0, + "expectedQty": "770389351736499179130", + "swapFee": "0", "reserves": [ - "4252669292332730937346668", - "2684964578205411687401276" + "4018190575577567142509986", + "8895864098044171456719918" ], - "LPTokenSupply": "6820554579227378476298682", + "LPTokenSupply": "12752163380299312067925598", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "5711405956269", + "inputQty": "776330737399799008460", "expectedQtys": [ - "3558969759990", - "2246990556661" + "244474062374062120732", + "541240638907184692824" ], - "redemptionFee": "3426843573", + "redemptionFee": "465798442439879405", "reserves": [ - "4252669292329171967586678", - "2684964578203164696844615" + "4017946101515193080389254", + "8895322857405264272027094" ], - "LPTokenSupply": "6820554579221667413026770" + "LPTokenSupply": "12751387096141756512905078" }, { "type": "redeemMasset", - "inputQty": "158633836697749395865", + "inputQty": "10783761021555934822", "expectedQtys": [ - "98850096113179740418", - "62409980266888412393" + "3395910820321710398", + "7518200189476421057" + ], + "redemptionFee": "6470256612933560", + "reserves": [ + "4017942705604372758678856", + "8895315339205074795606037" ], - "redemptionFee": "95180302018649637", + "LPTokenSupply": "12751376313027760618263612" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "64156498764456058880", + "expectedQty": "65069568023379625514", + "swapFee": "38493899258673635", "reserves": [ - "4252570442233058787846260", - "2684902168222897808432222" + "4017942705604372758678856", + "8895250269637051415980523" ], - "LPTokenSupply": "6820395954902999865495868" + "LPTokenSupply": "12751312160378386088072095" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "25617423230592520", - "expectedQty": "25152724558009487", + "type": "redeemBassets", + "inputQtys": [ + "136566986366280185937920", + "2926748690669016973312" + ], + "expectedQty": "138390581685020748525562", + "swapFee": "83084199530730887647", "reserves": [ - "4252570467850482018438780", - "2684902168222897808432222" - ] + "3881375719238092572740936", + "8892323520946382399007211" + ], + "LPTokenSupply": "12612846802913787681747649" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "201469669448759902208", - "expectedQty": "205068706981011580148", - "swapFee": "120881801669255941", + "inputQty": "49873109886345871884288", + "expectedQty": "50222471162420857500404", + "swapFee": "29923865931807523130", "reserves": [ - "4252365399143501006858632", - "2684902168222897808432222" + "3831153248075671715240532", + "8892323520946382399007211" ], - "LPTokenSupply": "6820194522474455830528741" + "LPTokenSupply": "12562976685414034990615674" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "21009563409224338243584", - "36972264449497999867904" + "240962763386954743808", + "3180221101970937610240" ], - "expectedQty": "57051323430775164598342", - "swapFee": "34251344865384329356", + "expectedQty": "3372242600980559347540", "reserves": [ - "4231355835734276668615048", - "2647929903773399808564318" + "3831394210839058669984340", + "8895503742048353336617451" ], - "LPTokenSupply": "6763112372833301820033977" + "LPTokenSupply": "12566348928015015549963214" }, { - "type": "mintMulti", - "inputQtys": [ - "168269277344050706382848", - "16672758019011026878464" + "type": "redeem", + "inputIndex": 1, + "inputQty": "1650986362863815", + "expectedQty": "1674820353849117", + "swapFee": "990591817718", + "reserves": [ + "3831394210839058669984340", + "8895503740373532982768334" + ], + "LPTokenSupply": "12566348926364128246281170" + }, + { + "type": "redeemMasset", + "inputQty": "11713492528061575987", + "expectedQtys": [ + "3569221284485094275", + "8286806196171827850" ], - "expectedQty": "181629198877578113848249", + "redemptionFee": "7028095516836945", "reserves": [ - "4399625113078327374997896", - "2664602661792410835442782" + "3831390641617774184890065", + "8895495453567336810940484" ], - "LPTokenSupply": "6944741571710879933882226" + "LPTokenSupply": "12566337213574409736388877" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "15720377311868784", - "outputIndex": 1, - "expectedQty": "15650100395382252", - "swapFee": "12346412916110", + "inputQty": "626361986856478179328", + "expectedQty": "621669948473584237147", + "reserves": [ + "3832017003604630663069393", + "8895495453567336810940484" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "541435225648527040", + "235275058102386656" + ], + "expectedQty": "769166861553316383", "reserves": [ - "4399625128798704686866680", - "2664602646142310440060530" + "3832017545039856311596433", + "8895495688842394913327140" ], - "LPTokenSupply": "6944741571712114575173837", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12566959652689744873942407" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2729969267164468215808", - "expectedQty": "2680063926129578300668", + "inputQty": "25173603710878802247680", + "expectedQty": "24984232508898660484350", "reserves": [ - "4402355098065869155082488", - "2664602646142310440060530" + "3857191148750735113844113", + "8895495688842394913327140" ] }, { "type": "redeemBassets", "inputQtys": [ - "14440267778554", - "141975035798337" + "300443845612164608", + "590804191534085632" ], - "expectedQty": "154070433918919", - "swapFee": "92497759006", + "expectedQty": "880237774096854036", + "swapFee": "528459740302293", "reserves": [ - "4402355098051428887303934", - "2664602646000335404262193" + "3857190848306889501679505", + "8895495098038203379241508" ], - "LPTokenSupply": "6947421635484090471572479" + "LPTokenSupply": "12591943004485255671300656" }, { "type": "mintMulti", "inputQtys": [ - "137984360587957824", - "305413095656235392" + "6376467487395299328", + "47873562799885312000" ], - "expectedQty": "436398551863491022", + "expectedQty": "53493579922432001464", "reserves": [ - "4402355236035789475261758", - "2664602951413431060497585" + "3857197224774376896978833", + "8895542971601003264553508" ], - "LPTokenSupply": "6947422071882642335063501" + "LPTokenSupply": "12591996498065178103302120" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "74530701401818", - "outputIndex": 1, - "expectedQty": "74197110252360", - "swapFee": "58534530719", - "reserves": [ - "4402355236110320176663576", - "2664602951339233950245225" + "type": "mintMulti", + "inputQtys": [ + "49219889794085464", + "202712040165591872" ], - "LPTokenSupply": "6947422071882648188516572", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "12968619349796498", - "outputIndex": 0, - "expectedQty": "13016504885411084", - "swapFee": "0", + "expectedQty": "248561041982183979", "reserves": [ - "4402355223093815291252492", - "2664602964307853300041723" + "3857197273994266691064297", + "8895543174313043430145380" ], - "LPTokenSupply": "6947422071882648188516572", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12591996746626220085486099" }, { "type": "mint", "inputIndex": 0, - "inputQty": "258154212832697614336", - "expectedQty": "253434724516789129777", + "inputQty": "73971542626930208", + "expectedQty": "73412814321933535", "reserves": [ - "4402613377306647988866828", - "2664602964307853300041723" + "3857197347965809317994505", + "8895543174313043430145380" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "323850467913710305280", - "outputIndex": 0, - "expectedQty": "325046146359184428424", - "swapFee": "0", - "reserves": [ - "4402288331160288804438404", - "2664926814775767010347003" - ], - "LPTokenSupply": "6947675506607164977646349", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemBassets", - "inputQtys": [ - "349961526649409417248768", - "20595737275758557528064" + "type": "redeemMasset", + "inputQty": "301151525333911574937", + "expectedQtys": [ + "92193789509812705158", + "212619101643989170240" ], - "expectedQty": "363895689935716113493512", - "swapFee": "218468495058464746944", + "redemptionFee": "180690915200346944", "reserves": [ - "4052326804510879387189636", - "2644331077500008452818939" + "3857105154176299505289347", + "8895330555211399440975140" ], - "LPTokenSupply": "6583583195025896245880586" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "20342715013949701488640", - "expectedQty": "20035718713145229114895", - "reserves": [ - "4052326804510879387189636", - "2664673792513958154307579" - ] + "LPTokenSupply": "12591695686582792015879391" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "81116590891002396672", - "expectedQty": "82557565301856911013", - "swapFee": "48669954534601438", + "inputQty": "69782876228794236928", + "expectedQty": "70271784389934301722", + "swapFee": "41869725737276542", "reserves": [ - "4052244246945577530278623", - "2664673792513958154307579" + "3857034882391909570987625", + "8895330555211399440975140" ], - "LPTokenSupply": "6603537802015145926058952" + "LPTokenSupply": "12591625907893535795370117" }, { - "type": "redeemMasset", - "inputQty": "1191543610922424115", - "expectedQtys": [ - "730749006301921942", - "480525754948280156" + "type": "mintMulti", + "inputQtys": [ + "22543599340343714119680", + "83048208531391575490560" ], - "redemptionFee": "714926166553454", + "expectedQty": "104192612338756193390442", "reserves": [ - "4052243516196571228356681", - "2664673311988203206027423" + "3879578481732253285107305", + "8978378763742791016465700" ], - "LPTokenSupply": "6603536610543027620290182" + "LPTokenSupply": "12695818520232291988760559" }, { "type": "redeemMasset", - "inputQty": "191212092688917734", + "inputQty": "85194892024293438259", "expectedQtys": [ - "117266414303361537", - "77112020375322672" + "26018169459703115586", + "60212979644158549930" ], - "redemptionFee": "114727255613350", + "redemptionFee": "51116935214576062", "reserves": [ - "4052243398930156924995144", - "2664673234876182830704751" + "3879552463562793581991719", + "8978318550763146857915770" ], - "LPTokenSupply": "6603536419342407656933783" + "LPTokenSupply": "12695733330451961216779906" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1379891187913607872512", - "6280522705142156361728" + "578493539016087680", + "1533465682837306112" ], - "expectedQty": "7540591672570900743568", + "expectedQty": "2084899306391951821", + "swapFee": "1251690598194087", "reserves": [ - "4053623290118070532867656", - "2670953757581324987066479" + "3879551885069254565904039", + "8978317017297464020609658" ], - "LPTokenSupply": "6611077011014978557677351" + "LPTokenSupply": "12695731244426133286453405" }, { "type": "redeemMasset", - "inputQty": "9098165777073132955238", + "inputQty": "170526321332961463500", "expectedQtys": [ - "5575250191137205701571", - "3673561745062941091298" + "52078037824301250594", + "120522459056386144010" ], - "redemptionFee": "5458899466243879773", + "redemptionFee": "102315792799776878", "reserves": [ - "4048048039926933327166085", - "2667280195836262045975181" + "3879499807031430264653445", + "8978196494838407634465648" ], - "LPTokenSupply": "6601979391127852049110090" + "LPTokenSupply": "12695560728336379604967592" }, { "type": "swap", "inputIndex": 1, - "inputQty": "3402774224196445696", + "inputQty": "167796558829216956416", "outputIndex": 0, - "expectedQty": "3412884919364894992", + "expectedQty": "166564235561668111530", "swapFee": "0", "reserves": [ - "4048044627042013962271093", - "2667283598610486242420877" + "3879333242795868596541915", + "8978364291397236851422064" ], - "LPTokenSupply": "6601979391127852049110090", + "LPTokenSupply": "12695560728336379604967592", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5086649340944681271296", - "expectedQty": "5009714315113519148401", - "reserves": [ - "4048044627042013962271093", - "2672370247951430923692173" - ] - }, - { - "type": "redeemMasset", - "inputQty": "212711660038048204", - "expectedQtys": [ - "130248383797357151", - "85985194772459678" + "type": "mintMulti", + "inputQtys": [ + "9712368990072908808192", + "4501808122022202441728" ], - "redemptionFee": "127626996022828", + "expectedQty": "14074397608514238269774", "reserves": [ - "4048044496793630164913942", - "2672370161966236151232495" + "3889045611785941505350107", + "8982866099519259053863792" ], - "LPTokenSupply": "6606988892744068229812569" + "LPTokenSupply": "12709635125944893843237366" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5834090826066210848768", - "6904806874408487485440" + "247271848338553632", + "1536298001107639040" ], - "expectedQty": "12529223116950042253445", + "expectedQty": "1758966565709176392", + "swapFee": "1056013547554038", "reserves": [ - "4053878587619696375762710", - "2679274968840644638717935" + "3889045364514093166796475", + "8982864563221257946224752" ], - "LPTokenSupply": "6619518115861018272066014" + "LPTokenSupply": "12709633366027915941262338" }, { "type": "redeemMasset", - "inputQty": "10752758935741118231347", + "inputQty": "988590128547583387238", "expectedQtys": [ - "6581177695628422236505", - "4349608476000998168354" + "302319110477937268175", + "698292606477769984610" ], - "redemptionFee": "6451655361444670938", + "redemptionFee": "593154077128550032", "reserves": [ - "4047297409924067953526205", - "2674925360364643640549581" + "3888743045403615229528300", + "8982166270614780176240142" ], - "LPTokenSupply": "6608766002090813298301760" + "LPTokenSupply": "12708644835214776070730103" }, { - "type": "redeemMasset", - "inputQty": "5268927540298976", - "expectedQtys": [ - "3224826212656789", - "2131340631862818" - ], - "redemptionFee": "3161356524179", + "type": "swap", + "inputIndex": 0, + "inputQty": "158961226972374269952", + "outputIndex": 1, + "expectedQty": "160004844243476510304", + "swapFee": "126210245886168121", "reserves": [ - "4047297406699241740869416", - "2674925358233303008686763" + "3888902006630587603798252", + "8982006265770536699729838" ], - "LPTokenSupply": "6608765996822201893655201" + "LPTokenSupply": "12708644847835800659346915", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "144361158988939", - "expectedQty": "142176136336571", + "type": "redeem", + "inputIndex": 0, + "inputQty": "527461363727299772416", + "expectedQty": "531149111587660699255", + "swapFee": "316476818236379863", "reserves": [ - "4047297406699241740869416", - "2674925358377664167675702" - ] + "3888370857518999943098997", + "8982006265770536699729838" + ], + "LPTokenSupply": "12708117418119755183212485" }, { "type": "mint", "inputIndex": 0, - "inputQty": "13645792784725604352", - "expectedQty": "13399769716412107481", + "inputQty": "1029764456424976154624", + "expectedQty": "1022000630373796781834", "reserves": [ - "4047311052492026466473768", - "2674925358377664167675702" + "3889400621975424919253621", + "8982006265770536699729838" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "52172675751012091297792", - "expectedQty": "52940111329686903832773", - "swapFee": "31303605450607254778", + "inputQty": "479053747119459598336", + "expectedQty": "485958727915526233668", + "swapFee": "287432248271675759", "reserves": [ - "4047311052492026466473768", - "2621985247047977263842929" + "3889400621975424919253621", + "8981520307042621173496170" ], - "LPTokenSupply": "6556609851343627411526938" + "LPTokenSupply": "12708660393746234347563558" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4188149263874402549760", - "expectedQty": "4112349372692192229958", + "inputQty": "15640101914636609126400", + "expectedQty": "15521863183876057811231", "reserves": [ - "4051499201755900869023528", - "2621985247047977263842929" + "3905040723890061528380021", + "8981520307042621173496170" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "52163476641183793152", - "19905920536169836544" + "679738678396826681344", + "694167334589219340288" ], - "expectedQty": "70825880890258072307", + "expectedQty": "1358492017847683041327", + "swapFee": "815584561445477111", "reserves": [ - "4051551365232542052816680", - "2622005152968513433679473" + "3904360985211664701698677", + "8980826139708031954155882" ], - "LPTokenSupply": "6560793026597209861829203" + "LPTokenSupply": "12722823030886157421404061" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "12554672105194535256064", - "outputIndex": 0, - "expectedQty": "12593421069759117475016", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "278473573875751190528", + "66336662230638395392" + ], + "expectedQty": "341719324076083087929", + "swapFee": "205154687258004655", "reserves": [ - "4038957944162782935341664", - "2634559825073707968935537" + "3904082511637788950508149", + "8980759803045801315760490" ], - "LPTokenSupply": "6560793026597209861829203", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12722481126922862806111941" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "18207877273104001024", - "expectedQty": "18475497434949630323", - "swapFee": "10924726363862400", + "type": "mint", + "inputIndex": 0, + "inputQty": "51115407246510371373056", + "expectedQty": "50725013096518774479438", "reserves": [ - "4038957944162782935341664", - "2634541349576273019305214" - ], - "LPTokenSupply": "6560774819812409394214419" + "3955197918884299321881205", + "8980759803045801315760490" + ] }, { - "type": "redeemMasset", - "inputQty": "20331662484751", - "expectedQtys": [ - "12509110696065", - "8159473267811" - ], - "redemptionFee": "12198997490", + "type": "redeem", + "inputIndex": 0, + "inputQty": "42297432515401472", + "expectedQty": "42599947229307462", + "swapFee": "25378459509240", "reserves": [ - "4038957944150273824645599", - "2634541349568113546037403" + "3955197876284352092573743", + "8980759803045801315760490" ], - "LPTokenSupply": "6560774819792078951629417" + "LPTokenSupply": "12773206097724486911140831" }, { - "type": "mintMulti", - "inputQtys": [ - "11350309284226250309632", - "28126768130017850294272" - ], - "expectedQty": "38847472734447445219057", + "type": "redeem", + "inputIndex": 0, + "inputQty": "131913384896401129472", + "expectedQty": "132856819791028220611", + "swapFee": "79148030937840677", "reserves": [ - "4050308253434500074955231", - "2662668117698131396331675" + "3955065019464561064353132", + "8980759803045801315760490" ], - "LPTokenSupply": "6599622292526526396848474" + "LPTokenSupply": "12773074192254393603795426" }, { - "type": "redeemMasset", - "inputQty": "589991034006374396723", - "expectedQtys": [ - "361870977049718919984", - "237893575752787032640" - ], - "redemptionFee": "353994620403824638", + "type": "swap", + "inputIndex": 0, + "inputQty": "4056499348917492", + "outputIndex": 1, + "expectedQty": "4082198560538464", + "swapFee": "3220222048166", "reserves": [ - "4049946382457450356035247", - "2662430224122378609299035" + "3955065023521060413270624", + "8980759798963602755222026" ], - "LPTokenSupply": "6599032336891982062834214" + "LPTokenSupply": "12773074192254715626000242", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "67017414506572450627584", - "expectedQty": "66000490384885299266931", + "inputQty": "198598726245868720095232", + "expectedQty": "201438192335040946511653", + "swapFee": "119159235747521232057", "reserves": [ - "4049946382457450356035247", - "2729447638628951059926619" - ] + "3955065023521060413270624", + "8779321606628561808710373" + ], + "LPTokenSupply": "12574487381932421658028215" }, { - "type": "redeemMasset", - "inputQty": "216471235752235945164", - "expectedQtys": [ - "131457849152103051352", - "88595571907233327389" - ], - "redemptionFee": "129882741451341567", + "type": "swap", + "inputIndex": 0, + "inputQty": "209948325959302414336", + "outputIndex": 1, + "expectedQty": "211215867044745735359", + "swapFee": "166630459899007705", "reserves": [ - "4049814924608298252983895", - "2729359043057043826599230" + "3955274971847019715684960", + "8779110390761517062975014" ], - "LPTokenSupply": "6664816369029389271290137" + "LPTokenSupply": "12574487398595467647928985", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "5741264237004283969536", + "expectedQty": "5695823856338200907028", + "reserves": [ + "3961016236084023999654496", + "8779110390761517062975014" + ] }, { "type": "redeemBassets", "inputQtys": [ - "85579010037439027740672", - "79581964721648713072640" + "36819781763182742208512", + "24115845074830680391680" ], - "expectedQty": "162411151675772192605731", - "swapFee": "97505194121936477449", + "expectedQty": "60291552836651690565485", + "swapFee": "36196649691806097998", "reserves": [ - "3964235914570859225243223", - "2649777078335395113526590" + "3924196454320841257445984", + "8754994545686686382583334" ], - "LPTokenSupply": "6502317462678907335854700" + "LPTokenSupply": "12519859092630431532782328" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "33512835220500033568768", - "142859476957896919482368" + "458387562349152014696448", + "40535173361108013547520" ], - "expectedQty": "173583825381702518545430", + "expectedQty": "494966747555529206091295", + "swapFee": "297158343539441188367", "reserves": [ - "3997748749791359258811991", - "2792636555293292033008958" + "3465808891971689242749536", + "8714459372325578369035814" ], - "LPTokenSupply": "6675901288060609854400130" + "LPTokenSupply": "12024624902565716829621501" }, { "type": "mint", "inputIndex": 0, - "inputQty": "92992907291782048", - "expectedQty": "91330877287978297", + "inputQty": "32728793591446688", + "expectedQty": "32509096856886236", "reserves": [ - "3997748842784266550594039", - "2792636555293292033008958" + "3465808924700482834196224", + "8714459372325578369035814" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "9914343701882964", - "expectedQty": "9761566826281904", + "inputQty": "957465282717884481536", + "expectedQty": "942920499356874030857", "reserves": [ - "3997748842784266550594039", - "2792636565207635734891922" + "3465808924700482834196224", + "8715416837608296253517350" ] }, { - "type": "redeemMasset", - "inputQty": "27695033794619385446", - "expectedQtys": [ - "16574744319847829576", - "11578325419347121653" + "type": "mintMulti", + "inputQtys": [ + "2432862825793284734976", + "6418123406426310180864" ], - "redemptionFee": "16617020276771631", + "expectedQty": "8737159423661712394912", "reserves": [ - "3997732268039946702764463", - "2792624986882216387770269" + "3468241787526276118931200", + "8721834961014722563698214" ], - "LPTokenSupply": "6675873695780961376952048" + "LPTokenSupply": "12034305014997832272933506" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "48062148035220774912", - "expectedQty": "48907415203834381931", - "swapFee": "28837288821132464", + "type": "mintMulti", + "inputQtys": [ + "119784765984203570413568", + "26214006390576969154560" + ], + "expectedQty": "144778428671901898070199", "reserves": [ - "3997683360624742868382532", - "2792624986882216387770269" + "3588026553510479689344768", + "8748048967405299532852774" ], - "LPTokenSupply": "6675825636516655038290382" + "LPTokenSupply": "12179083443669734171003705" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "54745687868888015962112", - "expectedQty": "55707259465591421429971", - "swapFee": "32847412721332809577", + "inputIndex": 1, + "inputQty": "39484702757791672", + "expectedQty": "40064323314425740", + "swapFee": "23690821654675", "reserves": [ - "3941976101159151446952561", - "2792624986882216387770269" + "3588026553510479689344768", + "8748048927340976218427034" ], - "LPTokenSupply": "6621083233389039155609227" + "LPTokenSupply": "12179083404187400495377500" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "107810862403330938765312", - "88957003733651060424704" + "78423459398926794752", + "29058847055825960960" ], - "expectedQty": "193468648284714468155609", - "swapFee": "116150879498527797571", + "expectedQty": "106492630212174138667", "reserves": [ - "3834165238755820508187249", - "2703667983148565327345565" + "3588104976969878616139520", + "8748077986188032044387994" ], - "LPTokenSupply": "6427510049312776012435803" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "3344876787308619628544", - "expectedQty": "3285120358443383868047", - "reserves": [ - "3837510115543129127815793", - "2703667983148565327345565" - ] + "LPTokenSupply": "12179189896817612669516167" }, { "type": "redeemMasset", - "inputQty": "37133348452758630", + "inputQty": "85160062433451599462", "expectedQtys": [ - "22145644013498136", - "15602426282341270" + "25073909553706379806", + "61132134539632770856" ], - "redemptionFee": "22280009071655", + "redemptionFee": "51096037460070959", "reserves": [ - "3837510093397485114317657", - "2703667967546139045004295" + "3588079903060324909759714", + "8748016854053492411617138" ], - "LPTokenSupply": "6430795132540098944452385" + "LPTokenSupply": "12179104741864782963923800" }, { "type": "mintMulti", "inputQtys": [ - "3241392816872560263168", - "5366200681189406146560" + "228498136235019501568", + "386913068373671346176" ], - "expectedQty": "8466669210665700752639", + "expectedQty": "607976244332115838838", "reserves": [ - "3840751486214357674580825", - "2709034168227328451150855" + "3588308401196559929261282", + "8748403767121866082963314" ], - "LPTokenSupply": "6439261801750764645205024" + "LPTokenSupply": "12179712718109115079762638" }, { - "type": "redeemMasset", - "inputQty": "2619709116367548658483", - "expectedQtys": [ - "1561609855402162726719", - "1101465291599678630956" + "type": "redeemBassets", + "inputQtys": [ + "8174149514140465", + "150657212316055680" ], - "redemptionFee": "1571825469820529195", + "expectedQty": "156505155895362923", + "swapFee": "93959469218749", "reserves": [ - "3839189876358955511854106", - "2707932702935728772519899" + "3588308393022410415120817", + "8748403616464653766907634" ], - "LPTokenSupply": "6436642249816944078599460" + "LPTokenSupply": "12179712561519395662102839" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2761139588205470810112", - "expectedQty": "2802845646467734134510", - "swapFee": "1656683752923282486", + "inputQty": "29534058572633722880", + "expectedQty": "29967602417423662687", + "swapFee": "17720435143580233", "reserves": [ - "3839189876358955511854106", - "2705129857289261038385389" + "3588308393022410415120817", + "8748373648862236343244947" ], - "LPTokenSupply": "6433881275897113900117596" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "52047833371451384", - "expectedQty": "51242710113396777", - "reserves": [ - "3839189876358955511854106", - "2705129909337094409836773" - ] + "LPTokenSupply": "12179683029232866542737982" }, { "type": "redeemBassets", "inputQtys": [ - "2201749327872814592", - "1975327238055420416" + "25394404398973021323264", + "23743447010458984251392" ], - "expectedQty": "4107182759726796965", - "swapFee": "2465789129313666", + "expectedQty": "48601885755423805114304", + "swapFee": "29178638636436144755", "reserves": [ - "3839187674609627639039514", - "2705127934009856354416357" + "3562913988623437393797553", + "8724630201851777358993555" ], - "LPTokenSupply": "6433877217737854070335107" + "LPTokenSupply": "12131054882702669945093397" }, { - "type": "redeemMasset", - "inputQty": "4091100013255779260825", - "expectedQtys": [ - "2439753870770642271368", - "1719073644557221712671" + "type": "mintMulti", + "inputQtys": [ + "12011694594047682281472", + "56715710962351883681792" ], - "redemptionFee": "2454660007953467556", + "expectedQty": "67787955924819209322812", "reserves": [ - "3836747920738856996768146", - "2703408860365299132703686" + "3574925683217485076079025", + "8781345912814129242675347" ], - "LPTokenSupply": "6429786363190599086421037" + "LPTokenSupply": "12198842838627489154416209" }, { - "type": "redeemMasset", - "inputQty": "4867918095373573501747", - "expectedQtys": [ - "2903015340110119310273", - "2045492055865570857651" + "type": "redeemBassets", + "inputQtys": [ + "14372417304724232192", + "102954810439411892224" ], - "redemptionFee": "2920750857224144101", + "expectedQty": "115673299567550657156", + "swapFee": "69445647128807678", "reserves": [ - "3833844905398746877457873", - "2701363368309433561846035" + "3574911310800180351846833", + "8781242958003689830783123" ], - "LPTokenSupply": "6424918737170311235333700" + "LPTokenSupply": "12198727102826839187832141" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "26278776840825880969216", - "expectedQty": "25808966488620470712570", + "inputQty": "568496535315727450112", + "expectedQty": "572139630711848136618", + "swapFee": "341097921189436470", "reserves": [ - "3860123682239572758427089", - "2701363368309433561846035" - ] + "3574339171169468503710215", + "8781242958003689830783123" + ], + "LPTokenSupply": "12198158640401315579325676" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4013898215431382", - "expectedQty": "3942095292961878", + "type": "redeemBassets", + "inputQtys": [ + "670340209859439872", + "624834695406588928" + ], + "expectedQty": "1281076750078678143", + "swapFee": "769107514555940", "reserves": [ - "3860123686253470973858471", - "2701363368309433561846035" - ] + "3574338500829258644270343", + "8781242333168994424194195" + ], + "LPTokenSupply": "12198157358632368737547186" }, { - "type": "redeemMasset", - "inputQty": "941252184282394053836", - "expectedQtys": [ - "562908559463272861068", - "393930528096054353797" + "type": "redeemBassets", + "inputQtys": [ + "35018283166934784", + "24421421394379324" ], - "redemptionFee": "564751310569436432", + "expectedQty": "58827283093923218", + "swapFee": "35317560392589", "reserves": [ - "3859560777694007700997403", - "2700969437781337507492238" + "3574338465810975477335559", + "8781242308747573029814871" ], - "LPTokenSupply": "6449786511891875661897955" + "LPTokenSupply": "12198157299773299839270636" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "143789155966976573440", - "expectedQty": "141216953267164169050", + "type": "redeemBassets", + "inputQtys": [ + "730532075936973324288", + "511299946083362996224" + ], + "expectedQty": "1229028746659145446895", + "swapFee": "737859963973871591", "reserves": [ - "3859704566849974677570843", - "2700969437781337507492238" - ] + "3573607933735038504011271", + "8780731008801489666818647" + ], + "LPTokenSupply": "12196927606952673117339308" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "22729801403887234580480", - "outputIndex": 1, - "expectedQty": "22653860292763363374885", - "swapFee": "17858387802199426286", + "type": "redeemMasset", + "inputQty": "2957551589419001472614", + "expectedQtys": [ + "866020418163557262466", + "2127903362940035532422" + ], + "redemptionFee": "1774530953651400883", "reserves": [ - "3882434368253861912151323", - "2678315577488574144117353" + "3572741913316874946748805", + "8778603105438549631286225" ], - "LPTokenSupply": "6449929514683923046009633", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12193970232816349481006782" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10744975247439162245120", - "3014741475951473328128" + "142504516900756537344", + "99462553092113448960" ], - "expectedQty": "13520620834031395138815", + "expectedQty": "239473763364953879687", + "swapFee": "143770520331171030", "reserves": [ - "3893179343501301074396443", - "2681330318964525617445481" + "3572599408799974190211461", + "8778503642885457517837265" ], - "LPTokenSupply": "6463450135517954441148448" + "LPTokenSupply": "12193730629659516229073167" }, { - "type": "redeemBassets", - "inputQtys": [ - "77376146541909540864", - "127870504517404344320" - ], - "expectedQty": "201893084825002513580", - "swapFee": "121208576040625883", + "type": "swap", + "inputIndex": 1, + "inputQty": "30319900948513184", + "outputIndex": 0, + "expectedQty": "30071587340019435", + "swapFee": "0", "reserves": [ - "3893101967354759164855579", - "2681202448460008213101161" + "3572599378728386850192026", + "8778503673205358466350449" ], - "LPTokenSupply": "6463248133345411002071572" + "LPTokenSupply": "12193730629659516229073167", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "819558812902999680", - "2665911839313984000" + "35249801201076762836992", + "20823936752700518039552" ], - "expectedQty": "3429792185942588031", + "expectedQty": "55515100308906864761628", + "swapFee": "33329057619916068498", "reserves": [ - "3893102786913572067855259", - "2681205114371847527085161" + "3537349577527310087355034", + "8757679736452657948310897" ], - "LPTokenSupply": "6463251563137596944659603" + "LPTokenSupply": "12138185533198751439849889" }, { "type": "mintMulti", "inputQtys": [ - "44408922296603750957056", - "23568510314530111225856" + "4042609453122205696", + "1591185183340298496" ], - "expectedQty": "66818401072040505913403", + "expectedQty": "5581892089540127416", "reserves": [ - "3937511709210175818812315", - "2704773624686377638311017" + "3537353620136763209560730", + "8757681327637841288609393" ], - "LPTokenSupply": "6530069964209637450573006" + "LPTokenSupply": "12138191115090840979977305" }, { - "type": "redeemMasset", - "inputQty": "25112491674460992307", - "expectedQtys": [ - "15133283734975206005", - "10395424756582336333" - ], - "redemptionFee": "15067495004676595", + "type": "redeem", + "inputIndex": 1, + "inputQty": "349794563269018752385024", + "expectedQty": "354923279421876381660170", + "swapFee": "209876737961411251431", "reserves": [ - "3937496575926440843606310", - "2704763229261621055974684" + "3537353620136763209560730", + "8402758048215964906949223" ], - "LPTokenSupply": "6530044853224712490048358" + "LPTokenSupply": "11788417539495618368717424" }, { - "type": "redeemMasset", - "inputQty": "343194868115524249", - "expectedQtys": [ - "206816009884316914", - "142067003226813392" + "type": "mintMulti", + "inputQtys": [ + "3387794295656228864", + "1634964967018320384" ], - "redemptionFee": "205916920869314", + "expectedQty": "4973473886521395854", "reserves": [ - "3937496369110430959289396", - "2704763087194617829161292" + "3537357007931058865789594", + "8402759683180931925269607" ], - "LPTokenSupply": "6530044510050436066611040" + "LPTokenSupply": "11788422512969504890113278" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "351484381202111397888", - "expectedQty": "356752406091226355235", - "swapFee": "210890628721266838", + "inputIndex": 0, + "inputQty": "5182235395026421022720", + "expectedQty": "5217296243854443740447", + "swapFee": "3109341237015852613", "reserves": [ - "3937496369110430959289396", - "2704406334788526602806057" + "3532139711687204422049147", + "8402759683180931925269607" ], - "LPTokenSupply": "6529693046758296827339835" + "LPTokenSupply": "11783240588508602170675819" }, { "type": "mintMulti", "inputQtys": [ - "3383329341255212597248", - "5879462747655359168512" + "1673148430406308593664", + "2397400591146517266432" ], - "expectedQty": "9111758036164604861749", + "expectedQty": "4022415106184663251713", "reserves": [ - "3940879698451686171886644", - "2710285797536181961974569" + "3533812860117610730642811", + "8405157083772078442536039" ], - "LPTokenSupply": "6538804804794461432201584" + "LPTokenSupply": "11787263003614786833927532" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "222906694039429283840", - "expectedQty": "226843768841506532462", - "swapFee": "133744016423657570", + "inputIndex": 1, + "inputQty": "22679659118486223847424", + "expectedQty": "23010514918947782567396", + "swapFee": "13607795471091734308", "reserves": [ - "3940652854682844665354182", - "2710285797536181961974569" + "3533812860117610730642811", + "8382146568853130659968643" ], - "LPTokenSupply": "6538581911474823645283501" + "LPTokenSupply": "11764584705275847719253538" }, { - "type": "mintMulti", - "inputQtys": [ - "333651033835670208512", - "174260925740157009920" + "type": "redeemMasset", + "inputQty": "30936523495290739", + "expectedQtys": [ + "9287050327857893", + "22028732171694450" ], - "expectedQty": "499247154632679510344", + "redemptionFee": "18561914097174", "reserves": [ - "3940986505716680335562694", - "2710460058461922118984489" + "3533812850830560402784918", + "8382146546824398488274193" ], - "LPTokenSupply": "6539081158629456324793845" + "LPTokenSupply": "11764584674341180415372516" }, { - "type": "redeemMasset", - "inputQty": "40121269783528950988", - "expectedQtys": [ - "24165858863960161282", - "16620355115192290137" + "type": "redeemBassets", + "inputQtys": [ + "1385197199290841956352", + "3252067028056834834432" ], - "redemptionFee": "24072761870117370", + "expectedQty": "4578430598977732699759", + "swapFee": "2748707583937001820", "reserves": [ - "3940962339857816375401412", - "2710443438106806926694352" + "3532427653631269560828566", + "8378894479796341653439761" ], - "LPTokenSupply": "6539041039766948982854594" + "LPTokenSupply": "11760003769905377139371118" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "133718906518103296", + "expectedQty": "131717750220362961", + "reserves": [ + "3532427653631269560828566", + "8378894613515248171543057" + ] }, { "type": "redeemMasset", - "inputQty": "21971916546016133120", + "inputQty": "29162519276766963", "expectedQtys": [ - "13234133387247746975", - "9101931687017849407" + "8754476759558835", + "20765559937061020" ], - "redemptionFee": "13183149927609679", + "redemptionFee": "17497511566060", "reserves": [ - "3940949105724429127654437", - "2710434336175119908844945" + "3532427644876792801269731", + "8378894592749688234482037" ], - "LPTokenSupply": "6539019069168717959482441" + "LPTokenSupply": "11760003872462357834123722" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "10382778548168454832128", - "outputIndex": 1, - "expectedQty": "10347007924702783675736", - "swapFee": "8157129509031322759", + "inputIndex": 1, + "inputQty": "53727634491985534976", + "outputIndex": 0, + "expectedQty": "53314855055438363638", + "swapFee": "0", "reserves": [ - "3951331884272597582486565", - "2700087328250417125169209" + "3532374330021737362906093", + "8378948320384180220017013" ], - "LPTokenSupply": "6539019884881668862614716", + "LPTokenSupply": "11760003872462357834123722", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "852196475341702561792", + "expectedQty": "839442762566830557162", + "reserves": [ + "3532374330021737362906093", + "8379800516859521922578805" + ] + }, + { + "type": "redeemMasset", + "inputQty": "444303042985670633062", + "expectedQtys": [ + "133366541408162121871", + "316383516640776414608" + ], + "redemptionFee": "266581825791402379", + "reserves": [ + "3532240963480329200784222", + "8379484133342881146164197" + ], + "LPTokenSupply": "11760399038840121573188059" + }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "5154540646217845571584", - "expectedQty": "5245685244863349807278", - "swapFee": "3092724387730707342", + "inputIndex": 1, + "inputQty": "127179972253232094248960", + "expectedQty": "129030603783716762124607", + "swapFee": "76307983351939256549", "reserves": [ - "3946086199027734232679287", - "2700087328250417125169209" + "3532240963480329200784222", + "8250453529559164384039590" ], - "LPTokenSupply": "6533865653507889790113866" + "LPTokenSupply": "11633226697385224672864753" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3810183058337362432", - "expectedQty": "3741740487573560705", + "inputIndex": 1, + "inputQty": "114533635611994087227392", + "expectedQty": "112822938607440109740598", "reserves": [ - "3946090009210792570041719", - "2700087328250417125169209" + "3532240963480329200784222", + "8364987165171158471266982" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "983342565304475136", - "expectedQty": "1000728717143471528", - "swapFee": "590005539182685", + "inputQty": "1195461199295134826496", + "expectedQty": "1203601364437237727763", + "swapFee": "717276719577080895", "reserves": [ - "3946089008482075426570191", - "2700087328250417125169209" + "3531037362115891963056459", + "8364987165171158471266982" ], - "LPTokenSupply": "6533868411964812613117703" + "LPTokenSupply": "11744854246521041605486944" }, { - "type": "redeemMasset", - "inputQty": "8240852120501144780", - "expectedQtys": [ - "4974024948549400422", - "3403446223618215785" + "type": "redeemBassets", + "inputQtys": [ + "69895649489030397952", + "144162996856246829056" + ], + "expectedQty": "211386841068354942699", + "swapFee": "126908249590767426", + "reserves": [ + "3530967466466402932658507", + "8364843002174302224437926" ], - "redemptionFee": "4944511272300686", + "LPTokenSupply": "11744642745462548618853560" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "9159668491724757401600", + "expectedQty": "9293234354716385058087", + "swapFee": "5495801095034854440", "reserves": [ - "3946084034457126877169769", - "2700083924804193506953424" + "3530967466466402932658507", + "8355549767819585839379839" ], - "LPTokenSupply": "6533860171607143239202991" + "LPTokenSupply": "11735483626550933364937404" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "422245630255203155968", + "expectedQty": "415928002904424559561", + "reserves": [ + "3530967466466402932658507", + "8355972013449841042535807" + ] }, { "type": "redeemBassets", "inputQtys": [ - "7150472628060", - "7859857516408" + "126809819374887108608", + "56825837221911945216" ], - "expectedQty": "14761301750375", - "swapFee": "8862098309", + "expectedQty": "181851065783951432611", + "swapFee": "109176145157465338", "reserves": [ - "3946084034449976404541709", - "2700083924796333649437016" + "3530840656647028045549899", + "8355915187612619130590591" ], - "LPTokenSupply": "6533860171592373961564136" + "LPTokenSupply": "11735717605229523196345548" }, { - "type": "mintMulti", - "inputQtys": [ - "15186062230194885754880", - "4591600963385050529792" + "type": "redeemMasset", + "inputQty": "2203251957740417633484", + "expectedQtys": [ + "662478789265433744883", + "1567789972700442786865" ], - "expectedQty": "19434403245064655072239", + "redemptionFee": "1321951174644250580", "reserves": [ - "3961270096680171290296589", - "2704675525759718699966808" + "3530178177857762611805016", + "8354347397639918687803726" ], - "LPTokenSupply": "6553294574837438616636375" + "LPTokenSupply": "11733514485466900243137122" }, { - "type": "mintMulti", - "inputQtys": [ - "162566902416360636416", - "140403717181715136512" - ], - "expectedQty": "297896667822255705203", + "type": "redeem", + "inputIndex": 0, + "inputQty": "23135569939919534030848", + "expectedQty": "23292553976051248496266", + "swapFee": "13881341963951720418", "reserves": [ - "3961432663582587650933005", - "2704815929476900415103320" + "3506885623881711363308750", + "8354347397639918687803726" ], - "LPTokenSupply": "6553592471505260872341578" + "LPTokenSupply": "11710380303661177104278315" }, { "type": "mint", "inputIndex": 1, - "inputQty": "132998408292977885184", - "expectedQty": "130959266040378166039", + "inputQty": "6211404682061830144", + "expectedQty": "6118290636443781204", "reserves": [ - "3961432663582587650933005", - "2704948927885193392988504" + "3506885623881711363308750", + "8354353609044600749633870" ] }, - { - "type": "redeemMasset", - "inputQty": "3487259034587835", - "expectedQtys": [ - "2106627364844001", - "1438449146030673" - ], - "redemptionFee": "2092355420752", - "reserves": [ - "3961432661475960286089004", - "2704948926446744246957831" - ], - "LPTokenSupply": "6553723427284251451461857" - }, { "type": "swap", - "inputIndex": 0, - "inputQty": "111985299015199358976", - "outputIndex": 1, - "expectedQty": "111595970511267282394", - "swapFee": "87978370393535907", + "inputIndex": 1, + "inputQty": "1717406227244116992", + "outputIndex": 0, + "expectedQty": "1704107643164489576", + "swapFee": "0", "reserves": [ - "3961544646774975485447980", - "2704837330476232979675437" + "3506883919774068198819174", + "8354355326450827993750862" ], - "LPTokenSupply": "6553723436082088490815447", + "LPTokenSupply": "11710386421951813548059519", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "183863513989742493696", - "expectedQty": "181044510931657925262", + "inputIndex": 0, + "inputQty": "96659589468185625100288", + "expectedQty": "95940721063406011884622", "reserves": [ - "3961544646774975485447980", - "2705021193990222722169133" + "3603543509242253823919462", + "8354355326450827993750862" ] }, { "type": "redeemMasset", - "inputQty": "9184755163472075318886", + "inputQty": "112760056212467259801", "expectedQtys": [ - "5548446161655288498284", - "3788588997276491431737" + "34396130336374573126", + "79743034584703211891" ], - "redemptionFee": "5510853098083245191", + "redemptionFee": "67656033727480355", "reserves": [ - "3955996200613320196949696", - "2701232604992946230737396" + "3603509113111917449346336", + "8354275583416243290538971" ], - "LPTokenSupply": "6544720276514857881746342" + "LPTokenSupply": "11806214389724610465432375" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1568716325161406562304", - "expectedQty": "1596463102764102997082", - "swapFee": "941229795096843937", + "type": "mint", + "inputIndex": 1, + "inputQty": "2669370673614001012736", + "expectedQty": "2629651557589434697172", "reserves": [ - "3954399737510556093952614", - "2701232604992946230737396" - ], - "LPTokenSupply": "6543151654312675984868431" + "3603509113111917449346336", + "8356944954089857291551707" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "39912420139907489464320", - "outputIndex": 1, - "expectedQty": "39769882378046849001634", - "swapFee": "31355675546810614253", - "reserves": [ - "3994312157650463583416934", - "2661462722614899381735762" + "type": "mintMulti", + "inputQtys": [ + "4568878096783706161152", + "13843520717362705727488" ], - "LPTokenSupply": "6543154789880230665929856", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "11747419310351783559168", - "outputIndex": 0, - "expectedQty": "11780913056054641090494", - "swapFee": "0", + "expectedQty": "18171842704929227143801", "reserves": [ - "3982531244594408942326440", - "2673210141925251165294930" + "3608077991208701155507488", + "8370788474807219997279195" ], - "LPTokenSupply": "6543154789880230665929856", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "11827015883987129127273348" }, { "type": "mint", "inputIndex": 1, - "inputQty": "49763714490556462661632", - "expectedQty": "49002284335347545545090", + "inputQty": "1242336807901123837952", + "expectedQty": "1223848209190582655961", "reserves": [ - "3982531244594408942326440", - "2722973856415807627956562" + "3608077991208701155507488", + "8372030811615121121117147" ] }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "139463197774847491964928", + "expectedQty": "140414092906306150568271", + "swapFee": "83677918664908495178", + "reserves": [ + "3467663898302395004939217", + "8372030811615121121117147" + ], + "LPTokenSupply": "11688784902213338708813898" + }, + { + "type": "redeemBassets", "inputQtys": [ - "13786407541989938", - "104441022961477488" + "1031519986175403491328", + "1520733881932479725568" ], - "expectedQty": "116377197433530352", + "expectedQty": "2521959843259968645709", + "swapFee": "1514084356569923141", "reserves": [ - "3982531258380816484316378", - "2722973960856830589434050" + "3466632378316219601447889", + "8370510077733188641391579" ], - "LPTokenSupply": "6592157190592775645005298" + "LPTokenSupply": "11686261579694157827237361" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "7723944263229930209280", - "expectedQty": "7860543809263607935031", - "swapFee": "4634366557937958125", + "inputQty": "97578092723807019073536", + "expectedQty": "96864353238690591193498", "reserves": [ - "3974670714571552876381347", - "2722973960856830589434050" - ], - "LPTokenSupply": "6584433709766201508591830" + "3564210471040026620521425", + "8370510077733188641391579" + ] }, { "type": "redeemBassets", "inputQtys": [ - "4434041177845531148288", - "5673224494800961536000" + "2658264846326304342016", + "19841402954392432279552" ], - "expectedQty": "9940512454099351673792", - "swapFee": "5967888205382840708", + "expectedQty": "22183513461792549902034", + "swapFee": "13318098936437392376", "reserves": [ - "3970236673393707345233059", - "2717300736362029627898050" + "3561552206193700316179409", + "8350668674778796209112027" ], - "LPTokenSupply": "6574487826212717312361399" + "LPTokenSupply": "11760930433182013074875685" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "9199581756825406537728", + "expectedQty": "9130775067696482066470", + "reserves": [ + "3570751787950525722717137", + "8350668674778796209112027" + ] }, { "type": "redeemMasset", - "inputQty": "801083424903105033011", + "inputQty": "15650830132759766866329", "expectedQtys": [ - "483472261496906405129", - "330897032154305257266" + "4745234332554483169438", + "11097349255432655921420" ], - "redemptionFee": "480650054941863019", + "redemptionFee": "9390498079655860119", "reserves": [ - "3969753201132210438827930", - "2716969839329875322640784" + "3566006553617971239547699", + "8339571325523363553190607" ], - "LPTokenSupply": "6573686790852819701514689" + "LPTokenSupply": "11754411317166757755661837" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "74880113532033443037184", - "expectedQty": "75996723308174457789925", - "swapFee": "44928068119220065822", + "type": "redeemMasset", + "inputQty": "81641778886748785868", + "expectedQtys": [ + "24753297263224583905", + "57888813428877080584" + ], + "redemptionFee": "48985067332049271", "reserves": [ - "3969753201132210438827930", - "2640973116021700864850859" + "3565981800320708014963794", + "8339513436709934676110023" ], - "LPTokenSupply": "6498811170127598180484087" + "LPTokenSupply": "11754329680286377740080896" }, { "type": "redeemMasset", - "inputQty": "6457780427226532249", + "inputQty": "2896875223959594231398", "expectedQtys": [ - "3942323045827858974", - "2622724550164651853" + "878315181269655711892", + "2054054581884255265852" ], - "redemptionFee": "3874668256335919", + "redemptionFee": "1738125134375756538", "reserves": [ - "3969749258809164610968956", - "2640970493297150700199006" + "3565103485139438359251902", + "8337459382128050420844171" ], - "LPTokenSupply": "6498804712734637779585429" + "LPTokenSupply": "11751432978874931583425151" }, { - "type": "redeemBassets", - "inputQtys": [ - "70371804038209871872", - "624443645961725542400" - ], - "expectedQty": "684038463825635959870", - "swapFee": "410669479983371598", + "type": "mint", + "inputIndex": 1, + "inputQty": "382579108559897680150528", + "expectedQty": "376834096227343180675329", + "reserves": [ + "3565103485139438359251902", + "8720038490687948100994699" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "22329626877083477082112", + "expectedQty": "22473811825366272770769", + "swapFee": "13397776126250086249", "reserves": [ - "3969678887005126401097084", - "2640346049651188974656606" + "3542629673314072086481133", + "8720038490687948100994699" ], - "LPTokenSupply": "6498120304668280158591119" + "LPTokenSupply": "12105938788002803912026992" }, { - "type": "mintMulti", - "inputQtys": [ - "670842276190183358464", - "78594050496728825856" + "type": "redeemMasset", + "inputQty": "4770139731577688064", + "expectedQtys": [ + "1395075553540975328", + "3433921591052117097" ], - "expectedQty": "736121006582187972175", + "redemptionFee": "2862083838946612", "reserves": [ - "3970349729281316584455548", - "2640424643701685703482462" + "3542628278238518545505805", + "8720035056766357048877602" ], - "LPTokenSupply": "6498856425674862346563294" + "LPTokenSupply": "12105934018149280718233589" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "362859984543609820020736", - "expectedQty": "356253297506819128439239", + "inputIndex": 1, + "inputQty": "877297610238117376", + "expectedQty": "864017185949076086", "reserves": [ - "4333209713824926404476284", - "2640424643701685703482462" + "3542628278238518545505805", + "8720035934063967286994978" ] }, { - "type": "mintMulti", - "inputQtys": [ - "21673047985156970774528", - "246153829242382665646080" - ], - "expectedQty": "263739841983530471939580", + "type": "redeem", + "inputIndex": 0, + "inputQty": "12025999457597190569984", + "expectedQty": "12103041595124511541300", + "swapFee": "7215599674558314341", "reserves": [ - "4354882761810083375250812", - "2886578472944068369128542" + "3530525236643394033964505", + "8720035934063967286994978" ], - "LPTokenSupply": "7118849565165211946942113" + "LPTokenSupply": "12093909604268836932571125" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1807903083162606592", - "expectedQty": "1775223431134322619", + "inputQty": "34247160057203053821952", + "expectedQty": "34464142368814225878303", + "swapFee": "20548296034321832293", "reserves": [ - "4354884569713166537857404", - "2886578472944068369128542" - ] + "3496061094274579808086202", + "8720035934063967286994978" + ], + "LPTokenSupply": "12059664499041237310932402" }, { "type": "mint", "inputIndex": 1, - "inputQty": "12103728398756229414912", - "expectedQty": "11919560368029012879582", + "inputQty": "316175960677175066624", + "expectedQty": "311371108378752326055", "reserves": [ - "4354884569713166537857404", - "2898682201342824598543454" + "3496061094274579808086202", + "8720352110024644462061602" ] }, { "type": "mintMulti", "inputQtys": [ - "42042924489817096192", - "12436649587077992448" + "3377086721845816197120", + "4382736315253756264448" ], - "expectedQty": "53530805216309579666", + "expectedQty": "7670113610359022908109", "reserves": [ - "4354926612637656354953596", - "2898694637992411676535902" + "3499438180996425624283322", + "8724734846339898218326050" ], - "LPTokenSupply": "7130824431561888403723980" + "LPTokenSupply": "12067645983759975086166566" }, { - "type": "redeemBassets", - "inputQtys": [ - "2975644404021508177920", - "1095367706850143764480" + "type": "redeemMasset", + "inputQty": "588638711427650551808", + "expectedQtys": [ + "170594069587719080427", + "425321993568437434724" ], - "expectedQty": "4000586576698501259157", - "swapFee": "2401793021832200075", + "redemptionFee": "353183226856590331", "reserves": [ - "4351950968233634846775676", - "2897599270285561532771422" + "3499267586926837905202895", + "8724309524346329780891326" ], - "LPTokenSupply": "7126821683371470253484754" + "LPTokenSupply": "12067057380366870121273791" }, { - "type": "redeemBassets", - "inputQtys": [ - "6606813041016130502656", - "3894571926321325146112" - ], - "expectedQty": "10322747673407846826987", - "swapFee": "6197367024259263654", + "type": "redeem", + "inputIndex": 1, + "inputQty": "22705556859179103158272", + "expectedQty": "23041921391983806683782", + "swapFee": "13623334115507461894", "reserves": [ - "4345344155192618716273020", - "2893704698359240207625310" + "3499267586926837905202895", + "8701267602954345974207544" ], - "LPTokenSupply": "7116493358067740573320477" + "LPTokenSupply": "12044353185841102568861708" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "10944221194575843164160", - "expectedQty": "11106698003266302869690", - "swapFee": "6566532716745505898", + "inputQty": "85029906427887140864", + "expectedQty": "83738769257226751109", "reserves": [ - "4345344155192618716273020", - "2882598000355973904755620" - ], - "LPTokenSupply": "7105549793526436404706906" + "3499267586926837905202895", + "8701352632860773861348408" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "43336764955515198373888", - "14264014624495696347136" + "54650866082940287188992", + "176143662809359774121984" ], - "expectedQty": "56600650419573018761792", - "swapFee": "33980778718975196374", + "expectedQty": "227743753197627686573032", "reserves": [ - "4302007390237103517899132", - "2868333985731478208408484" + "3553918453009778192391887", + "8877496295670133635470392" ], - "LPTokenSupply": "7048918560406016308268376" + "LPTokenSupply": "12272180677807987482185849" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "436867131805346103296", - "expectedQty": "443361657748831694809", - "swapFee": "262120279083207661", + "inputQty": "42714156233017090113536", + "outputIndex": 0, + "expectedQty": "42348379627030303335311", + "swapFee": "0", "reserves": [ - "4302007390237103517899132", - "2867890624073729376713675" + "3511570073382747889056576", + "8920210451903150725583928" ], - "LPTokenSupply": "7048481719486238870485846" + "LPTokenSupply": "12272180677807987482185849", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1075700092667622326272", - "695145459094103130112" - ], - "expectedQty": "1740820527412540034008", - "swapFee": "1045119388080372243", + "type": "redeem", + "inputIndex": 0, + "inputQty": "76888341438372719362048", + "expectedQty": "77346292491853783898561", + "swapFee": "46133004863023631617", "reserves": [ - "4300931690144435895572860", - "2867195478614635273583563" + "3434223780890894105158015", + "8920210451903150725583928" ], - "LPTokenSupply": "7046739958351377058116818" + "LPTokenSupply": "12195296949670101065186962" }, { "type": "mintMulti", "inputQtys": [ - "9809999522094861254656", - "135937646836422478397440" + "6694993793368470847488", + "1490916261842065555456" ], - "expectedQty": "143485473175558998008757", + "expectedQty": "8120117858639874039112", "reserves": [ - "4310741689666530756827516", - "3003133125451057751981003" + "3440918774684262576005503", + "8921701368164992791139384" ], - "LPTokenSupply": "7190225431526936056125575" + "LPTokenSupply": "12203417067528740939226074" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "223640469312352124928", - "expectedQty": "219631504106014124877", + "inputQty": "317499036639636160512", + "outputIndex": 1, + "expectedQty": "320130761589522928535", + "swapFee": "252370068521897665", "reserves": [ - "4310965330135843108952444", - "3003133125451057751981003" - ] + "3441236273720902212166015", + "8921381237403403268210849" + ], + "LPTokenSupply": "12203417092765747791415840", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "117396141499385872384", - "47438617528180047872" + "type": "redeemMasset", + "inputQty": "38536275845658169", + "expectedQtys": [ + "10860307553904980", + "28155272215317935" ], - "expectedQty": "161997758392848244822", - "swapFee": "97257009241253699", + "redemptionFee": "23121765507394", "reserves": [ - "4310847933994343723080060", - "3003085686833529571933131" + "3441236262860594658261035", + "8921381209248131052892914" ], - "LPTokenSupply": "7190282977741340904877299" + "LPTokenSupply": "12203417054231784122308410" }, { "type": "mintMulti", "inputQtys": [ - "33597262807329956429824", - "296539265927957681537024" + "8307287329284281", + "2701744560969969" ], - "expectedQty": "324903190368884272249826", + "expectedQty": "10914213817282137", "reserves": [ - "4344445196801673679509884", - "3299624952761487253470155" + "3441236271167881987545316", + "8921381211949875613862883" ], - "LPTokenSupply": "7515186168110225177127125" + "LPTokenSupply": "12203417065145997939590547" }, { - "type": "redeemMasset", - "inputQty": "15048246461161455616", - "expectedQtys": [ - "8694003691684365873", - "6603133477572969993" - ], - "redemptionFee": "9028947876696873", + "type": "redeem", + "inputIndex": 0, + "inputQty": "11753090837889644", + "expectedQty": "11821876359493032", + "swapFee": "7051854502733", "reserves": [ - "4344436502797981995144011", - "3299618349628009680500162" + "3441236259346005628052284", + "8921381211949875613862883" ], - "LPTokenSupply": "7515171120766658803341196" + "LPTokenSupply": "12203417053393612287151176" }, { "type": "redeemMasset", - "inputQty": "226072026353767705", + "inputQty": "94708176349323302", "expectedQtys": [ - "130611300054409112", - "99199848369457989" + "26690693365506457", + "69195438028482804" ], - "redemptionFee": "135643215812260", + "redemptionFee": "56824905809593", "reserves": [ - "4344436372186681940734899", - "3299618250428161311042173" + "3441236232655312262545827", + "8921381142754437585380079" ], - "LPTokenSupply": "7515170894708196771154717" + "LPTokenSupply": "12203416958691118428408833" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "647971093973475655680", - "outputIndex": 1, - "expectedQty": "646236244862793814876", - "swapFee": "509223090893779048", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1414791895795440384", + "expectedQty": "1436015094756935464", + "swapFee": "848875137477264", "reserves": [ - "4345084343280655416390579", - "3298972014183298517227297" + "3441236232655312262545827", + "8921379706739342828444615" ], - "LPTokenSupply": "7515170945630505860532621", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12203415543984110146716175" }, { - "type": "mintMulti", - "inputQtys": [ - "4994746820161905360896", - "4022891437735062536192" - ], - "expectedQty": "8865835651323420402975", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3284365468104214970368", + "expectedQty": "3303568946043606729849", + "swapFee": "1970619280862528982", "reserves": [ - "4350079090100817321751475", - "3302994905621033579763489" + "3437932663709268655815978", + "8921379706739342828444615" ], - "LPTokenSupply": "7524036781281829280935596" + "LPTokenSupply": "12200131375577934017998705" }, { "type": "redeemMasset", - "inputQty": "7514874038476301821542", + "inputQty": "33177133942296910233", "expectedQtys": [ - "4342174711711019633342", - "3296993147718972614695" - ], - "redemptionFee": "4508924423085781092", - "reserves": [ - "4345736915389106302118133", - "3299697912473314607148794" + "9343531844680563795", + "24246314149291657757" ], - "LPTokenSupply": "7516522358135795287692163" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "348609555591625625829376", - "expectedQty": "353912291758986607145920", - "swapFee": "209165733354975375497", + "redemptionFee": "19906280365378146", "reserves": [ - "4345736915389106302118133", - "2945785620714328000002874" + "3437923320177423975252183", + "8921355460425193536786858" ], - "LPTokenSupply": "7167933719117505159400336" + "LPTokenSupply": "12200098200434619757626286" }, { - "type": "mintMulti", - "inputQtys": [ - "3682980347338781884416", - "1203688415959402414080" + "type": "redeemMasset", + "inputQty": "8890878580655656638873", + "expectedQtys": [ + "2503899445082188967731", + "6497578597996994398488" ], - "expectedQty": "4801764337438082204121", + "redemptionFee": "5334527148393393983", "reserves": [ - "4349419895736445084002549", - "2946989309130287402416954" + "3435419420732341786284452", + "8914857881827196542388370" ], - "LPTokenSupply": "7172735483454943241604457" + "LPTokenSupply": "12191207855306678940326811" }, { "type": "mintMulti", "inputQtys": [ - "11105045959575430", - "4177587629408142" + "187326935368224068337664", + "227391915281375201067008" ], - "expectedQty": "15018212649381025", + "expectedQty": "410007049907526210577297", "reserves": [ - "4349419906841491043577979", - "2946989313307875031825096" + "3622746356100565854622116", + "9142249797108571743455378" ], - "LPTokenSupply": "7172735498473155890985482" + "LPTokenSupply": "12601214905214205150904108" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "10387939486191472082944", - "expectedQty": "10228482350175629406452", + "inputQty": "57973775231345366138880", + "expectedQty": "58835541926236163644714", + "swapFee": "34784265138807219683", "reserves": [ - "4349419906841491043577979", - "2957377252794066503908040" - ] + "3622746356100565854622116", + "9083414255182335579810664" + ], + "LPTokenSupply": "12543244608409373665487196" }, { - "type": "redeemBassets", - "inputQtys": [ - "69971028748899830464512", - "3195595091846684999680" - ], - "expectedQty": "71857631003028627654131", - "swapFee": "43140462879544903534", + "type": "redeem", + "inputIndex": 1, + "inputQty": "90168051148765043621888", + "expectedQty": "91505275068459881529576", + "swapFee": "54100830689259026173", "reserves": [ - "4279448878092591213113467", - "2954181657702219818908360" + "3622746356100565854622116", + "8991908980113875698281088" ], - "LPTokenSupply": "7111067523403711302324621" + "LPTokenSupply": "12453081967343677547767925" }, { "type": "redeemBassets", "inputQtys": [ - "750440495769355392", - "2230333766889129216" - ], - "expectedQty": "2932855905901665371", - "swapFee": "1760770005544325", - "reserves": [ - "4279448127652095443758075", - "2954179427368452929779144" + "155379757565537387806720", + "360545645244547904569344" ], - "LPTokenSupply": "7111064588963112395669356" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2614476207047105024", - "expectedQty": "2574126955576827285", + "expectedQty": "509377130778162519707760", + "swapFee": "305809764325492807509", "reserves": [ - "4279448127652095443758075", - "2954182041844659976884168" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "182183173094787774414848", - "expectedQty": "184899879277508423020585", - "swapFee": "109309903856872664648", - "reserves": [ - "4279448127652095443758075", - "2769282162567151553863583" + "3467366598535028466815396", + "8631363334869327793711744" ], - "LPTokenSupply": "6928894920985665885348257" + "LPTokenSupply": "11943429607777622084533405" }, { - "type": "redeemMasset", - "inputQty": "39050732585365", - "expectedQtys": [ - "24104177794552", - "15598102282974" + "type": "mintMulti", + "inputQtys": [ + "203209895387645838622720", + "233415656364748765659136" ], - "redemptionFee": "23430439551", + "expectedQty": "431653501835884430003930", "reserves": [ - "4279448127627991265963523", - "2769282162551553451580609" + "3670576493922674305438116", + "8864778991234076559370880" ], - "LPTokenSupply": "6928894920946617495806847" + "LPTokenSupply": "12375083109613506514537335" }, { "type": "redeemMasset", - "inputQty": "26601664694120231731", + "inputQty": "818804012803550085120", "expectedQtys": [ - "16419954581299499070", - "10625549364259559345" + "242719943475399035707", + "586190931924920556443" ], - "redemptionFee": "15960998816472139", + "redemptionFee": "491282407682130051", "reserves": [ - "4279431707673409966464453", - "2769271537002189192021264" + "3670333773979198906402409", + "8864192800302151638814437" ], - "LPTokenSupply": "6928868320878023257222329" + "LPTokenSupply": "12374264354728943732665220" }, { - "type": "redeemBassets", - "inputQtys": [ - "37344265279341020053504", - "22642882785805443530752" - ], - "expectedQty": "58964477187489155903064", - "swapFee": "35399926268254446209", + "type": "redeem", + "inputIndex": 0, + "inputQty": "918731967165850368", + "expectedQty": "924851127961331049", + "swapFee": "551239180299510", "reserves": [ - "4242087442394068946410949", - "2746628654216383748490512" + "3670332849128070945071360", + "8864192800302151638814437" ], - "LPTokenSupply": "6869871983756892672317675" + "LPTokenSupply": "12374263436052100484844803" }, { - "type": "redeemMasset", - "inputQty": "5568709037241898598", - "expectedQtys": [ - "3436567226091609248", - "2225077663650690413" - ], - "redemptionFee": "3341225422345139", + "type": "mint", + "inputIndex": 0, + "inputQty": "116764389085904257024", + "expectedQty": "115922218428058832247", "reserves": [ - "4242084005826842854801701", - "2746626429138720097800099" - ], - "LPTokenSupply": "6869866415381977972653590" + "3670449613517156849328384", + "8864192800302151638814437" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "11417104227404001280", + "inputQty": "62529205353979765063680", "outputIndex": 0, - "expectedQty": "11452668788148441310", + "expectedQty": "62021932548785835061327", "swapFee": "0", "reserves": [ - "4242072553158054706360391", - "2746637846242947501801379" + "3608427680968371014267057", + "8926722005656131403878117" ], - "LPTokenSupply": "6869866415381977972653590", + "LPTokenSupply": "12374379358270528543677050", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "249603380595122208768", - "1121741214781443538944" + "9802862057103558705152", + "11328653746640951181312" ], - "expectedQty": "1349806194769491676748", + "expectedQty": "20891155516141660668941", + "swapFee": "12542218640869518112", "reserves": [ - "4242322156538649828569159", - "2747759587457728945340323" + "3598624818911267455561905", + "8915393351909490452696805" ], - "LPTokenSupply": "6871216221576747464330338" + "LPTokenSupply": "12353476914757610100441807" }, { "type": "redeemMasset", - "inputQty": "1993672777897295462", + "inputQty": "6888392938214719488", "expectedQtys": [ - "1230164681865135527", - "796779846984734235" + "2005416670605788527", + "4968308549135297386" ], - "redemptionFee": "1196203666738377", + "redemptionFee": "4133035762928831", "reserves": [ - "4242320926373967963433632", - "2747758790677881960606088" + "3598622813494596849773378", + "8915388383600941317399419" ], - "LPTokenSupply": "6871214228023589933708713" + "LPTokenSupply": "12353470026777975462015202" }, { "type": "mint", "inputIndex": 1, - "inputQty": "284120700004882776064", - "expectedQty": "279816052490388487972", + "inputQty": "238893880015519949520896", + "expectedQty": "235248393003395206632618", "reserves": [ - "4242320926373967963433632", - "2748042911377886843382152" + "3598622813494596849773378", + "9154282263616461266920315" ] }, { - "type": "redeemMasset", - "inputQty": "400311151422298180812", - "expectedQtys": [ - "246995691887124986557", - "159996089878905366417" + "type": "mintMulti", + "inputQtys": [ + "41486862624502457565184", + "55826121804842715316224" ], - "redemptionFee": "240186690853378908", + "expectedQty": "96180972569178938585535", "reserves": [ - "4242073930682080838447075", - "2747882915288007938015735" + "3640109676119099307338562", + "9210108385421303982236539" ], - "LPTokenSupply": "6871093756943327109353763" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "125828581246644703461376", - "expectedQty": "123908443842890007660599", - "reserves": [ - "4242073930682080838447075", - "2873711496534652641477111" - ] + "LPTokenSupply": "12684899392350549607233355" }, { - "type": "redeemMasset", - "inputQty": "6458707853082625638", - "expectedQtys": [ - "3914491580381507938", - "2651797125992497892" + "type": "mintMulti", + "inputQtys": [ + "3062146450808401920", + "8016682788583122944" ], - "redemptionFee": "3875224711849575", + "expectedQty": "10935646482316319391", "reserves": [ - "4242070016190500456939137", - "2873708844737526648979219" + "3640112738265550115740482", + "9210116402104092565359483" ], - "LPTokenSupply": "6994995742465886505573681" + "LPTokenSupply": "12684910327997031923552746" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "31481937611231723520", - "expectedQty": "30913251690226414121", + "inputIndex": 1, + "inputQty": "68242139669511509377024", + "expectedQty": "67197369137322765666505", "reserves": [ - "4242101498128111688662657", - "2873708844737526648979219" + "3640112738265550115740482", + "9278358541773604074736507" ] }, { "type": "redeemBassets", "inputQtys": [ - "7191151191661", - "5258229846826" + "312826707834685184", + "91280409193968064" ], - "expectedQty": "12238687631880", - "swapFee": "7347621151", + "expectedQty": "400631510156512045", + "swapFee": "240523220025922", "reserves": [ - "4242101498120920537470996", - "2873708844732268419132393" + "3640112425438842281055298", + "9278358450493194880768443" ], - "LPTokenSupply": "6995026655705331431496885" + "LPTokenSupply": "12752107296286373634683875" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "735110297536436240384", - "467696623521346813952" + "522385479324370880", + "121762440858661552" ], - "expectedQty": "1182341761940057905643", + "expectedQty": "638814025496330105", + "swapFee": "383518526413646", "reserves": [ - "4242836608418456973711380", - "2874176541355789765946345" + "3640111903053362956684418", + "9278358328730754022106891" ], - "LPTokenSupply": "6996208997467271489402528" + "LPTokenSupply": "12752106657127181464581487" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "19244800198360928256", - "expectedQty": "19533384490622305748", - "swapFee": "11546880119016556", + "inputQty": "146021666947403668783104", + "expectedQty": "148200155202379297661886", + "swapFee": "87613000168442201269", "reserves": [ - "4242836608418456973711380", - "2874157007971299143640597" + "3640111903053362956684418", + "9130158173528374724445005" ], - "LPTokenSupply": "6996189753821761140375927" + "LPTokenSupply": "12606093751479794640018509" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2122873624367870464", - "8584557947637019648" + "377962081275145945088", + "648642527444779925504" ], - "expectedQty": "10537182210475023151", - "swapFee": "6326104989278581", + "expectedQty": "1014126605458985241361", "reserves": [ - "4242834485544832605840916", - "2874148423413351506620949" + "3640489865134638102629506", + "9130806816055819504370509" ], - "LPTokenSupply": "6996179210946056175002052" + "LPTokenSupply": "12607107878085253625259870" }, { - "type": "redeemBassets", - "inputQtys": [ - "3868273166115045113856", - "40055566372017771905024" - ], - "expectedQty": "43239653357817515354773", - "swapFee": "25959367635271672216", + "type": "swap", + "inputIndex": 1, + "inputQty": "112948613447911178240", + "outputIndex": 0, + "expectedQty": "111988827920584171219", + "swapFee": "0", "reserves": [ - "4238966212378717560727060", - "2834092857041333734715925" + "3640377876306717518458287", + "9130919764669267415548749" ], - "LPTokenSupply": "6952916194157366915142283" + "LPTokenSupply": "12607107878085253625259870", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "110118105391256715264", + "inputQty": "118563182757194852466688", "outputIndex": 1, - "expectedQty": "109716915506083106005", - "swapFee": "86499212251943159", + "expectedQty": "119443046545971955958537", + "swapFee": "94187186467821248564", "reserves": [ - "4239076330484108817442324", - "2833983140125827651609920" + "3758941059063912370924975", + "9011476718123295459590212" ], - "LPTokenSupply": "6952916202807288140336598", + "LPTokenSupply": "12607117296803900407384726", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "252642175668318464", + "inputQty": "447441951888119693312", "expectedQtys": [ - "153939275845903418", - "102914238465870618" + "133329351997969169480", + "319636390274066316042" ], - "redemptionFee": "151585305400991", + "redemptionFee": "268465171132871815", "reserves": [ - "4239076176544832971538906", - "2833983037211589185739302" + "3758807729711914401755495", + "9011157081733021393274170" ], - "LPTokenSupply": "6952915950180271002558233" + "LPTokenSupply": "12606669881698529400978595" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "7216002391204552507392", - "expectedQty": "7323729243603502801463", - "swapFee": "4329601434722731504", + "type": "mintMulti", + "inputQtys": [ + "810241464939006", + "708333196693342" + ], + "expectedQty": "1501980487058794", "reserves": [ - "4239076176544832971538906", - "2826659307967985682937839" + "3758807730522155866694501", + "9011157082441354589967512" ], - "LPTokenSupply": "6945700380749209922323991" + "LPTokenSupply": "12606669883200509888037389" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "117173147629354000", - "expectedQty": "115050257590303046", + "inputIndex": 1, + "inputQty": "2004862677737809379328", + "expectedQty": "1974636178299347862413", "reserves": [ - "4239076293717980600892906", - "2826659307967985682937839" + "3758807730522155866694501", + "9013161945119092399346840" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "265770108051409279647744", - "expectedQty": "269669306967645812047237", - "swapFee": "159462064830845567788", + "inputIndex": 0, + "inputQty": "55599225514298135543808", + "expectedQty": "55970121526068490982271", + "swapFee": "33359535308578881326", "reserves": [ - "4239076293717980600892906", - "2556990001000339870890602" + "3702837608996087375712230", + "9013161945119092399346840" ], - "LPTokenSupply": "6679946333954541317536071" + "LPTokenSupply": "12553048629818041958244126" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "20932620577196589056", - "14473379584361240576" + "146369711471508488192", + "308122756806571065344" ], - "expectedQty": "34805250582156506914", + "expectedQty": "448780420238732684612", + "swapFee": "269429910089293186", "reserves": [ - "4239097226338557797481962", - "2557004474379924232131178" + "3702691239284615867224038", + "9012853822362285828281496" ], - "LPTokenSupply": "6679981139205123474042985" + "LPTokenSupply": "12552599606910884145195645" + }, + { + "type": "redeemMasset", + "inputQty": "50902023852123370291", + "expectedQtys": [ + "15005767649016954893", + "36526078350257735858" + ], + "redemptionFee": "30541214311274022", + "reserves": [ + "3702676233516966850269145", + "9012817296283935570545638" + ], + "LPTokenSupply": "12552548707941153452952756" }, { "type": "mintMulti", "inputQtys": [ - "1276835520431862579200", - "60975592400665124864" + "131473415416095921143808", + "125167376965102104215552" ], - "expectedQty": "1313335779818331395879", + "expectedQty": "253797010927523571428133", "reserves": [ - "4240374061858989660061162", - "2557065449972324897256042" + "3834149648933062771412953", + "9137984673249037674761190" ], - "LPTokenSupply": "6681294474984941805438864" + "LPTokenSupply": "12806345718868677024380889" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2921775523986802737152", - "expectedQty": "2974942784652874121922", - "swapFee": "1753065314392081642", + "type": "mintMulti", + "inputQtys": [ + "2561291946647578214400", + "2482169231269092655104" + ], + "expectedQty": "4987236586504513619186", "reserves": [ - "4237399119074336785939240", - "2557065449972324897256042" + "3836710940879710349627353", + "9140466842480306767416294" ], - "LPTokenSupply": "6678372874767486441909876" + "LPTokenSupply": "12811332955455181538000075" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "17189707688617688694784", - "expectedQty": "16934822535388044636508", + "inputIndex": 0, + "inputQty": "94130301501102727626752", + "expectedQty": "93425804694369197522942", "reserves": [ - "4237399119074336785939240", - "2574255157660942585950826" + "3930841242380813077254105", + "9140466842480306767416294" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "3003419647097053380608", - "outputIndex": 1, - "expectedQty": "2990049481119171881330", - "swapFee": "2358431074976541539", + "inputQty": "1314258226218380034048", + "expectedQty": "1304267144662539587362", "reserves": [ - "4240402538721433839319848", - "2571265108179823414069496" - ], - "LPTokenSupply": "6695307933145981984200537", - "hardLimitError": false, - "insufficientLiquidityError": false + "3932155500607031457288153", + "9140466842480306767416294" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "3761123291353963298816", + "expectedQty": "3704886985347506915676", + "reserves": [ + "3932155500607031457288153", + "9144227965771660730715110" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "217133518313008656285696", - "expectedQty": "221061548397743155692352", - "swapFee": "130280110987805193771", + "inputQty": "1439284136359806369792", + "expectedQty": "1449433361652381817360", + "swapFee": "863570481815883821", "reserves": [ - "4019340990323690683627496", - "2571265108179823414069496" + "3930706067245379075470793", + "9144227965771660730715110" ], - "LPTokenSupply": "6478187442844072108434218" + "LPTokenSupply": "12908328716500249157244645" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11331998365647867215872", - "6275370167826532794368" + "499670148446291820544", + "256691295301075271680" ], - "expectedQty": "17305158477415954536634", - "swapFee": "10389328683659768583", + "expectedQty": "748726946705225950048", "reserves": [ - "4008008991958042816411624", - "2564989738011996881275128" + "3931205737393825367291337", + "9144484657066961805986790" ], - "LPTokenSupply": "6460872933970840860105858" + "LPTokenSupply": "12909077443446954383194693" }, { "type": "mint", "inputIndex": 0, - "inputQty": "205346038350386372280320", - "expectedQty": "201573763530482421614347", + "inputQty": "15525285027165339910144", + "expectedQty": "15407045462082506414747", "reserves": [ - "4213355030308429188691944", - "2564989738011996881275128" + "3946731022420990707201481", + "9144484657066961805986790" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3924018476095974400", - "expectedQty": "3851617316624413288", + "inputIndex": 1, + "inputQty": "7408634197210947584", + "expectedQty": "7297964530097230099", "reserves": [ - "4213358954326905284666344", - "2564989738011996881275128" + "3946731022420990707201481", + "9144492065701159016934374" ] }, { "type": "mintMulti", "inputQtys": [ - "28559159069185437696", - "9027291174225307648" - ], - "expectedQty": "36925215932711409444", - "reserves": [ - "4213387513485974470104040", - "2564998765303171106582776" - ], - "LPTokenSupply": "6662487474334572617542937" - }, - { - "type": "redeemMasset", - "inputQty": "1328277387286082969", - "expectedQtys": [ - "839504682172894151", - "511068223928478345" - ], - "redemptionFee": "796966432371649", - "reserves": [ - "4213386673981292297209889", - "2564998254234947178104431" - ], - "LPTokenSupply": "6662486146136881974697132" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "18062612112270264631296", - "23564211345694778195968" + "494495028640769441792", + "512291451831321624576" ], - "expectedQty": "40943165074523841946398", - "swapFee": "24580647433174209693", + "expectedQty": "995358571601827723566", "reserves": [ - "4195324061869022032578593", - "2541434042889252399908463" + "3947225517449631476643273", + "9145004357152990338558950" ], - "LPTokenSupply": "6621520858479668275962009" + "LPTokenSupply": "12925487145445168814563105" }, { "type": "mintMulti", "inputQtys": [ - "19054801851016", - "155968524439476" + "12423812988615264305152", + "21818795494021980487680" ], - "expectedQty": "172354729298151", + "expectedQty": "33821817903378211965044", "reserves": [ - "4195324061888076834429609", - "2541434043045220924347939" + "3959649330438246740948425", + "9166823152647012319046630" ], - "LPTokenSupply": "6621520858652023005260160" + "LPTokenSupply": "12959308963348547026528149" }, { - "type": "redeemMasset", - "inputQty": "91302921598765341081", - "expectedQtys": [ - "57813835351350107269", - "35022336094534628686" - ], - "redemptionFee": "54781752959259204", + "type": "swap", + "inputIndex": 1, + "inputQty": "98327513913464620843008", + "outputIndex": 0, + "expectedQty": "97580935104835898241898", + "swapFee": "0", "reserves": [ - "4195266248052725484322340", - "2541399020709126389719253" + "3862068395333410842706527", + "9265150666560476939889638" ], - "LPTokenSupply": "6621429561208599535844999" + "LPTokenSupply": "12959308963348547026528149", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "62357990346358614130688", - "expectedQty": "61204710427674027221780", + "inputQty": "15957318300087498047488", + "expectedQty": "15840562882479471017548", "reserves": [ - "4257624238399084098453028", - "2541399020709126389719253" + "3878025713633498340754015", + "9265150666560476939889638" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "9742251876334950400", - "expectedQty": "9920114330422872991", - "swapFee": "5845351125800970", + "inputQty": "8763374407921538048", + "expectedQty": "8699074816694748774", "reserves": [ - "4257614318284753675580037", - "2541399020709126389719253" - ], - "LPTokenSupply": "6682624529968932340696476" + "3878034477007906262292063", + "9265150666560476939889638" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "4799300141295375220736", - "18005102657290855514112" - ], - "expectedQty": "22449793152500661876774", - "swapFee": "13477962669101858241", + "type": "swap", + "inputIndex": 0, + "inputQty": "310319131247137325056", + "outputIndex": 1, + "expectedQty": "312503162109535744302", + "swapFee": "246433677266343946", "reserves": [ - "4252815018143458300359301", - "2523393918051835534205141" + "3878344796139153399617119", + "9264838163398367404145336" ], - "LPTokenSupply": "6660162606650029487147284" + "LPTokenSupply": "12975158249949210918928865", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "290701121371120893952", - "137963579144502214656" - ], - "expectedQty": "421241268718365149218", - "swapFee": "252896499130497387", + "type": "mint", + "inputIndex": 0, + "inputQty": "93371049931277598720", + "expectedQty": "92685838053747261307", "reserves": [ - "4252524317022087179465349", - "2523255954472691031990485" - ], - "LPTokenSupply": "6659741137774461904550416" + "3878438167189084677215839", + "9264838163398367404145336" + ] }, { - "type": "redeemMasset", - "inputQty": "6890069263058480608051", - "expectedQtys": [ - "4396958735945098064524", - "2608956818338297340645" - ], - "redemptionFee": "4134041557835088364", + "type": "mint", + "inputIndex": 1, + "inputQty": "1699992613928962304", + "expectedQty": "1674384449439151326", "reserves": [ - "4248127358286142081400825", - "2520646997654352734649840" - ], - "LPTokenSupply": "6652851481915559207451201" + "3878438167189084677215839", + "9264839863390981333107640" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1729244685587073990656", - "1911087029534427185152" + "43032452809143208", + "56944750080534360" ], - "expectedQty": "3580097898442499682556", - "swapFee": "2149348348074344416", + "expectedQty": "98803602096373238", + "swapFee": "59317751908969", "reserves": [ - "4246398113600555007410169", - "2518735910624818307464688" + "3878438124156631868072631", + "9264839806446231252573280" ], - "LPTokenSupply": "6649269449603603440858669" + "LPTokenSupply": "12975252511314726032250186" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2091653887362466316288", - "outputIndex": 0, - "expectedQty": "2099744034551217610574", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "23941426670710571008", + "expectedQty": "24103952946855143886", + "swapFee": "14364856002426342", "reserves": [ - "4244298369566003789799595", - "2520827564512180773780976" + "3878414020203685012928745", + "9264839806446231252573280" ], - "LPTokenSupply": "6649269449603603440858669", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12975228571324540921921812" }, { - "type": "redeemBassets", - "inputQtys": [ - "62155127919485585981440", - "81317595616941352943616" + "type": "redeemMasset", + "inputQty": "975171931442878663884", + "expectedQtys": [ + "291312881152328032864", + "695894549517146580961" ], - "expectedQty": "141123500314448393592527", - "swapFee": "84724935149758891490", + "redemptionFee": "585103158865727198", "reserves": [ - "4182143241646518203818155", - "2439509968895239420837360" + "3878122707322532684895881", + "9264143911896714105992319" ], - "LPTokenSupply": "6508069696847520264263800" + "LPTokenSupply": "12974253457903413929830647" }, { - "type": "redeemMasset", - "inputQty": "5156323393275435", - "expectedQtys": [ - "3311510992506980", - "1931656476487983" - ], - "redemptionFee": "3093794035965", + "type": "redeem", + "inputIndex": 1, + "inputQty": "31983580564892581625856", + "expectedQty": "32453017890093615541955", + "swapFee": "19190148338935548975", "reserves": [ - "4182143238335007211311175", - "2439509966963582944349377" + "3878122707322532684895881", + "9231690894006620490450364" ], - "LPTokenSupply": "6508069691691506250391961" + "LPTokenSupply": "12942271796353355241759688" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "106591109671043196780544", - "expectedQty": "108097360265995935486186", - "swapFee": "63954665802625918068", + "inputQty": "70915124167489819246592", + "expectedQty": "71954355661908082757103", + "swapFee": "42549074500493891547", "reserves": [ - "4182143238335007211311175", - "2331412606697587008863191" + "3878122707322532684895881", + "9159736538344712407693261" ], - "LPTokenSupply": "6401484977487043316203223" + "LPTokenSupply": "12871360927093315471902250" }, { - "type": "redeemBassets", - "inputQtys": [ - "13879565075051119116288", - "517707674976789594112" - ], - "expectedQty": "14129353619883373441812", - "swapFee": "8482701793005827561", + "type": "redeem", + "inputIndex": 0, + "inputQty": "98706510610382456881152", + "expectedQty": "99375372521382915916251", + "swapFee": "59223906366229474128", "reserves": [ - "4168263673259956092194887", - "2330894899022610219269079" + "3778747334801149768979630", + "9159736538344712407693261" ], - "LPTokenSupply": "6387347989435546237516605" + "LPTokenSupply": "12772660338873569637968510" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "18785758413834636230656", + "expectedQty": "18650033616646277923693", + "reserves": [ + "3797533093214984405210286", + "9159736538344712407693261" + ] }, { "type": "mintMulti", "inputQtys": [ - "339331311270695680", - "325939165627988736" + "147721510049441344", + "43316607255781696" ], - "expectedQty": "654204628995043088", + "expectedQty": "189312505155023957", "reserves": [ - "4168264012591267362890567", - "2330895224961775847257815" + "3797533240936494454651630", + "9159736581661319663474957" ], - "LPTokenSupply": "6387348643640175232559693" + "LPTokenSupply": "12791310561802721070916160" }, { "type": "mintMulti", "inputQtys": [ - "16466750429916907520", - "5578195019940292608" + "2756336311024729718784", + "3530180705745721360384" ], - "expectedQty": "21655575276535943242", + "expectedQty": "6213181194052555928839", "reserves": [ - "4168280479341697279798087", - "2330900803156795787550423" + "3800289577247519184370414", + "9163266762367065384835341" ], - "LPTokenSupply": "6387370299215451768502935" + "LPTokenSupply": "12797523742996773626844999" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "13196296497198362787840", - "2770797752386545778688" + "8512401004021740", + "1965069523963214" ], - "expectedQty": "15679532827274922807116", + "expectedQty": "10386031495748847", + "swapFee": "6235360113517", "reserves": [ - "4181476775838895642585927", - "2333671600909182333329111" + "3800289568735118180348674", + "9163266760401995860872127" ], - "LPTokenSupply": "6403049832042726691310051" + "LPTokenSupply": "12797523732605130306993985" }, { "type": "mint", "inputIndex": 0, - "inputQty": "111372801026417", - "expectedQty": "109282517404318", + "inputQty": "2405758842437105152", + "expectedQty": "2388308682972867550", "reserves": [ - "4181476775950268443612344", - "2333671600909182333329111" + "3800291974493960617453826", + "9163266760401995860872127" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4289771981526097", - "outputIndex": 0, - "expectedQty": "4308842925759122", - "swapFee": "0", + "type": "redeemMasset", + "inputQty": "1414267014265200", + "expectedQtys": [ + "419721964761229", + "1012033905321005" + ], + "redemptionFee": "848560208559", "reserves": [ - "4181476771641425517853222", - "2333671605198954314855208" + "3800291974074238652692597", + "9163266759389961955551122" ], - "LPTokenSupply": "6403049832152009208714369", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12797526119499631121617190" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "19914226242093555712", - "35049529646963466240" + "60026712433118680", + "55439874259178240" ], - "expectedQty": "54085070627453221070", + "expectedQty": "114193424579601311", + "swapFee": "68557189061197", "reserves": [ - "4181496685867667611408934", - "2333706654728601278321448" + "3800291914047526219573917", + "9163266703950087696372882" ], - "LPTokenSupply": "6403103917222636661935439" + "LPTokenSupply": "12797526005244505071860800" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "64356334987555577856", - "36196671859225931776" + "4201251092902698", + "21297098829011912" ], - "expectedQty": "98823691445872865356", + "expectedQty": "25146053185495619", + "swapFee": "15096689925252", "reserves": [ - "4181561042202655166986790", - "2333742851400460504253224" + "3800291909846275126671219", + "9163266682652988867360970" ], - "LPTokenSupply": "6403202740914082534800795" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "28607610673864276", - "expectedQty": "28195484488254881", - "reserves": [ - "4181561042202655166986790", - "2333742880008071178117500" - ] + "LPTokenSupply": "12797525980084864865432453" }, { "type": "redeemMasset", - "inputQty": "801065045816944099328", + "inputQty": "37230874968049424793", "expectedQtys": [ - "522815329630930216369", - "291784943654093960586" + "11049268447812612718", + "26642004308460019834" ], - "redemptionFee": "480639027490166459", + "redemptionFee": "22338524980829654", "reserves": [ - "4181038226873024236770421", - "2333451095064417084156914" + "3800280860577827314058501", + "9163240040648680407341136" ], - "LPTokenSupply": "6402401752127652827972993" + "LPTokenSupply": "12797488751443749314090625" }, { "type": "redeemBassets", "inputQtys": [ - "8218427493617098752", - "8314360224239630336" + "35263640540746285056", + "26721221433150963712" ], - "expectedQty": "16258762500612846073", - "swapFee": "9761114168869029", + "expectedQty": "61325290384030889870", + "swapFee": "36817264589172037", "reserves": [ - "4181030008445530619671669", - "2333442780704192844526578" + "3800245596937286567773445", + "9163213319427247256377424" ], - "LPTokenSupply": "6402385484580149463144792" + "LPTokenSupply": "12797427393017827152945920" }, { - "type": "redeemMasset", - "inputQty": "237703110508048914841", - "expectedQtys": [ - "155137102291685901242", - "86582385352572971496" + "type": "redeemBassets", + "inputQtys": [ + "956701816624320348160", + "1180743029141445804032" ], - "redemptionFee": "142621866304829348", + "expectedQty": "2112663375844018955537", + "swapFee": "1268359040930969955", "reserves": [ - "4180874871343238933770427", - "2333356198318840271555082" + "3799288895120662247425285", + "9162032576398105810573392" ], - "LPTokenSupply": "6402147795731828044712885" + "LPTokenSupply": "12795313588118846296117422" }, { - "type": "redeemMasset", - "inputQty": "41219925603778140569", - "expectedQtys": [ - "26902213981939592965", - "15014189535667895885" - ], - "redemptionFee": "24731955362266884", + "type": "mint", + "inputIndex": 1, + "inputQty": "2783648960850340872192", + "expectedQty": "2741581371062105681346", "reserves": [ - "4180847969129256994177462", - "2333341184129304603659197" - ], - "LPTokenSupply": "6402106578279419802799004" + "3799288895120662247425285", + "9164816225358956151445584" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5054451314228358807552", - "outputIndex": 0, - "expectedQty": "5076838389758296592178", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2209733082940083456", + "expectedQty": "2224533335242081095", + "swapFee": "1325839849764050", "reserves": [ - "4175771130739498697585284", - "2338395635443532962466749" + "3799286670587327005344190", + "9164816225358956151445584" ], - "LPTokenSupply": "6402106578279419802799004", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12798052959889409446691717" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "30843696132811651022848", - "24036932133516423987200" + "589998298282776199168", + "113505825339017543680" ], - "expectedQty": "53955260013920699049780", + "expectedQty": "697512084353657259524", + "swapFee": "418758505715623729", "reserves": [ - "4206614826872310348608132", - "2362432567577049386453949" + "3798696672289044229145022", + "9164702719533617133901904" ], - "LPTokenSupply": "6456061838293340501848784" + "LPTokenSupply": "12797355070922400645370835" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "5099100368355725410304", - "expectedQty": "5003496375775782958999", + "inputQty": "2126507954609261641728", + "expectedQty": "2140741559345134031201", + "swapFee": "1275904772765556985", "reserves": [ - "4211713927240666074018436", - "2362432567577049386453949" - ] + "3796555930729699095113821", + "9164702719533617133901904" + ], + "LPTokenSupply": "12795228690558268660284805" + }, + { + "type": "redeemMasset", + "inputQty": "9370545210785646", + "expectedQtys": [ + "2778727475267284", + "6707713968678517" + ], + "redemptionFee": "5622327126471", + "reserves": [ + "3796555927950971619846537", + "9164702712825903165223387" + ], + "LPTokenSupply": "12795228681188285682211806" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1554802026541367427072", - "expectedQty": "1576627606849977611484", - "swapFee": "932881215924820456", + "inputQty": "239556429578444463931392", + "expectedQty": "243073451078695211549281", + "swapFee": "143733857747066678358", "reserves": [ - "4211713927240666074018436", - "2360855939970199408842465" + "3796555927950971619846537", + "8921629261747207953674106" ], - "LPTokenSupply": "6459510625930696509862756" + "LPTokenSupply": "12555686624995615924948249" }, { - "type": "redeemMasset", - "inputQty": "37564995822372185702", - "expectedQtys": [ - "24478338596957006326", - "13721214706310587099" + "type": "redeemBassets", + "inputQtys": [ + "994584774343701", + "1830317904118919" ], - "redemptionFee": "22538997493423311", + "expectedQty": "2789943486754501", + "swapFee": "1674971074697", "reserves": [ - "4211689448902069117012110", - "2360842218755493098255366" + "3796555926956386845502836", + "8921629259916890049555187" ], - "LPTokenSupply": "6459473063188773887019385" + "LPTokenSupply": "12555686622204164964226519" }, { "type": "swap", "inputIndex": 0, - "inputQty": "87943038167734877683712", + "inputQty": "102908969483734240", "outputIndex": 1, - "expectedQty": "87462327532437359260808", - "swapFee": "69032534857441820309", + "expectedQty": "103609167265371288", + "swapFee": "81708189244191", "reserves": [ - "4299632487069803994695822", - "2273379891223055738994558" + "3796556029865356329237076", + "8921629156307722784183899" ], - "LPTokenSupply": "6459479966442259631201415", + "LPTokenSupply": "12555686622212335783150938", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "6178339695368381399040", - "7051943957631864930304" + "type": "redeemMasset", + "inputQty": "1269304171035425452851", + "expectedQtys": [ + "383578625251370018677", + "901381731195054117283" ], - "expectedQty": "13013903116725666768598", - "swapFee": "7813029687848108926", + "redemptionFee": "761582502621255271", "reserves": [ - "4293454147374435613296782", - "2266327947265423874064254" + "3796172451240104959218399", + "8920727774576527730066616" ], - "LPTokenSupply": "6446459031598814901134782" + "LPTokenSupply": "12554417394199550619823614" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "847333411919877505024", - "expectedQty": "863201576693782623763", - "swapFee": "508400047151926503", + "inputQty": "172949327950456989679616", + "expectedQty": "171612419339331233435888", "reserves": [ - "4292590945797741830673019", - "2266327947265423874064254" - ], - "LPTokenSupply": "6445611749026899738822408" + "3969121779190561948898015", + "8920727774576527730066616" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "5368631361481691103232", - "expectedQty": "5293093650074379904490", + "inputQty": "115087035645511136706560", + "expectedQty": "113376848932987974497538", "reserves": [ - "4292590945797741830673019", - "2271696578626905565167486" + "3969121779190561948898015", + "9035814810222038866773176" ] }, { - "type": "mintMulti", - "inputQtys": [ - "6616989490927783936", - "5977908001030924288" - ], - "expectedQty": "12385260285778093557", + "type": "mint", + "inputIndex": 1, + "inputQty": "121774786751577915392", + "expectedQty": "119962099184316626676", "reserves": [ - "4292597562787232758456955", - "2271702556534906596091774" - ], - "LPTokenSupply": "6450917227937259896820455" + "3969121779190561948898015", + "9035936585008790444688568" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "652457944949017542656", - "846328510413226639360" - ], - "expectedQty": "1474498672629794693048", + "type": "mint", + "inputIndex": 1, + "inputQty": "297821610011698528256", + "expectedQty": "293388336703602764366", "reserves": [ - "4293250020732181775999611", - "2272548885045319822731134" - ], - "LPTokenSupply": "6452391726609889691513503" + "3969121779190561948898015", + "9036234406618802143216824" + ] }, { "type": "redeemMasset", - "inputQty": "115267397600559064678", + "inputQty": "1281019026732973465", "expectedQtys": [ - "76649846295663960174", - "40573114050413345312" + "395758647795985217", + "900997275689615013" ], - "redemptionFee": "69160438560335438", + "redemptionFee": "768611416039784", "reserves": [ - "4293173370885886112039437", - "2272508311931269409385822" + "3969121383431914152912798", + "9036233505621526453601811" ], - "LPTokenSupply": "6452276466128332988482368" + "LPTokenSupply": "12839818731965592155778595" }, { - "type": "redeemMasset", - "inputQty": "1137028703270962585", - "expectedQtys": [ - "756094767422863404", - "400224145437118475" + "type": "mintMulti", + "inputQtys": [ + "30678887000762388316160", + "55494124689091951853568" ], - "redemptionFee": "682217221962577", + "expectedQty": "85107089695410590622039", "reserves": [ - "4293172614791118689176033", - "2272507911707123972267347" + "3999800270432676541228958", + "9091727630310618405455379" ], - "LPTokenSupply": "6452275329167851439716040" + "LPTokenSupply": "12924925821661002746400634" }, { - "type": "redeemMasset", - "inputQty": "389214115373206156083", - "expectedQtys": [ - "258817350188453266918", - "136999959881405810626" + "type": "redeem", + "inputIndex": 1, + "inputQty": "4070797708367015444480", + "expectedQty": "4129800429400796606667", + "swapFee": "2442478625020209266", + "reserves": [ + "3999800270432676541228958", + "9087597829881217608848712" ], - "redemptionFee": "233528469223923693", + "LPTokenSupply": "12920855268200498232977080" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "44353111131653339611136", + "expectedQty": "44674240959099280384466", + "swapFee": "26611866678992003766", "reserves": [ - "4292913797440930235909115", - "2272370911747242566456721" + "3955126029473577260844492", + "9087597829881217608848712" ], - "LPTokenSupply": "6451886138405325155952326" + "LPTokenSupply": "12876504818255512792566320" }, { - "type": "redeemBassets", - "inputQtys": [ - "67998118648774664192", - "262824696222594596864" + "type": "redeemMasset", + "inputQty": "9886190140503", + "expectedQtys": [ + "3034803918594", + "6972995879074" ], - "expectedQty": "325833010288366917851", - "swapFee": "195617176478907495", + "redemptionFee": "5931714084", "reserves": [ - "4292845799322281461244923", - "2272108087051019971859857" + "3955126029470542456925898", + "9087597829874244612969638" ], - "LPTokenSupply": "6451560129339577958017728" + "LPTokenSupply": "12876504818245627195597225" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "204046950761541", - "outputIndex": 1, - "expectedQty": "202873733328966", - "swapFee": "160142100988", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6463990589484520448", + "expectedQty": "6557988955838706467", + "swapFee": "3878394353690712", "reserves": [ - "4292845799526328412006464", - "2272108086848146238530891" + "3955126029470542456925898", + "9087591271885288774263171" ], - "LPTokenSupply": "6451560129339593972227826", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "12876498354642877146445848" }, { - "type": "redeemBassets", - "inputQtys": [ - "75684325114168426496", - "139384826469730172928" + "type": "redeemMasset", + "inputQty": "41694023253983631769", + "expectedQtys": [ + "12798989992164251820", + "29407909855481711440" ], - "expectedQty": "211671578729535693222", - "swapFee": "127079194754574160", + "redemptionFee": "25016413952390179", "reserves": [ - "4292770115201214243579968", - "2271968702021676508357963" + "3955113230480550292674078", + "9087561863975433292551731" ], - "LPTokenSupply": "6451348343389589157417859" + "LPTokenSupply": "12876456663121264558053096" }, { "type": "mintMulti", "inputQtys": [ - "1654501234631431684096", - "6853864409229512671232" + "35157976477743754248192", + "14027867877996756992000" ], - "expectedQty": "8380445702454169236884", + "expectedQty": "48703590998045917604548", "reserves": [ - "4294424616435845675264064", - "2278822566430906021029195" + "3990271206958294046922270", + "9101589731853430049543731" ], - "LPTokenSupply": "6459728789092043326654743" + "LPTokenSupply": "12925160254119310475657644" }, { - "type": "redeemMasset", - "inputQty": "1652680698401975487692", - "expectedQtys": [ - "1098042118842300235997", - "582672507449013104535" - ], - "redemptionFee": "991608419041185292", - "reserves": [ - "4293326574317003375028067", - "2278239893923457007924660" + "type": "redeemBassets", + "inputQtys": [ + "455371117070059136", + "10947761220164836" ], - "LPTokenSupply": "6458076207554483255285580" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "795928392899669120", - "expectedQty": "810819087489365025", - "swapFee": "477557035739801", + "expectedQty": "462603309334227893", + "swapFee": "277728622774201", "reserves": [ - "4293325763497915885663042", - "2278239893923457007924660" + "3990270751587176976863134", + "9101589720905668829378895" ], - "LPTokenSupply": "6458075411673846059190440" + "LPTokenSupply": "12925159791266045380932969" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "15341776988509933928448", - "expectedQty": "15125175579762173782636", + "inputIndex": 0, + "inputQty": "193663005946524481880064", + "expectedQty": "192110895105406603505668", "reserves": [ - "4293325763497915885663042", - "2293581670911966941853108" + "4183933757533701458743198", + "9101589720905668829378895" ] }, { - "type": "mintMulti", - "inputQtys": [ - "630645062500148183040", - "126179758952160051200" - ], - "expectedQty": "743102124831150643010", - "reserves": [ - "4293956408560416033846082", - "2293707850670919101904308" - ], - "LPTokenSupply": "6473943689378439383616086" - }, - { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "139383870340434961104896", - "97222006624870798983168" + "54470821202244776", + "9044235754811426" ], - "expectedQty": "232591818198929882252150", + "expectedQty": "62934358214975483", + "swapFee": "37783284899925", "reserves": [ - "4433340278900850994950978", - "2390929857295789900887476" + "4183933703062880256498422", + "9101589711861433074567469" ], - "LPTokenSupply": "6706535507577369265868236" + "LPTokenSupply": "13117270623403088813053220" }, { - "type": "redeemMasset", - "inputQty": "182543352445669401", - "expectedQtys": [ - "120597472428341421", - "65039017851978391" - ], - "redemptionFee": "109526011467401", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6344546529538397437952", + "expectedQty": "6435382852727306494751", + "swapFee": "3806727917723038462", "reserves": [ - "4433340158303378566609557", - "2390929792256772048909085" + "4183933703062880256498422", + "9095154329008705768072718" ], - "LPTokenSupply": "6706535325044969421345575" + "LPTokenSupply": "13110926457546342187919114" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "24944246445877", - "64539833340827" + "7271058486214584696832", + "1450688477659889664000" ], - "expectedQty": "88096101399861", - "swapFee": "52889394476", + "expectedQty": "8640566405237750140572", "reserves": [ - "4433340158278434320163680", - "2390929792192232215568258" + "4191204761549094841195254", + "9096605017486365657736718" ], - "LPTokenSupply": "6706535324956825719490684" + "LPTokenSupply": "13119567023951579938059686" }, { "type": "redeemMasset", - "inputQty": "4999770132650470604", + "inputQty": "1026682160553226613555", "expectedQtys": [ - "3303103797840100212", - "1781385816338076005" + "327789273149119918246", + "711434949244620745558" ], - "redemptionFee": "2999862079590282", + "redemptionFee": "616009296331935968", "reserves": [ - "4433336855174636480063468", - "2390928010806415877492253" + "4190876972275945721277008", + "9095893582537121036991160" ], - "LPTokenSupply": "6706530325486679276979108" + "LPTokenSupply": "13118540403391956344639727" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "11220666735184486", - "expectedQty": "11429930152393445", - "swapFee": "6732400041110", + "inputIndex": 1, + "inputQty": "28099360146201", + "expectedQty": "28501457080867", + "swapFee": "16859616087", "reserves": [ - "4433336843744706327670023", - "2390928010806415877492253" + "4190876972275945721277008", + "9095893582508619579910293" ], - "LPTokenSupply": "6706530314266685781798733" + "LPTokenSupply": "13118540403363858670455134" }, { "type": "redeemBassets", "inputQtys": [ - "435384961086145", - "1034010421803761" - ], - "expectedQty": "1446482686603150", - "swapFee": "868410658356", - "reserves": [ - "4433336843309321366583878", - "2390928009772405455688492" + "21665502241760657408", + "22500407762038800384" ], - "LPTokenSupply": "6706530312819421525603061" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "351781916409870076084224", - "outputIndex": 0, - "expectedQty": "353100992881623905011371", - "swapFee": "0", + "expectedQty": "43656681248114303046", + "swapFee": "26209734589622355", "reserves": [ - "4080235850427697461572507", - "2742709926182275531772716" + "4190855306773703960619600", + "9095871082100857541109909" ], - "LPTokenSupply": "6706530312819421525603061", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13118496723093849425491967" }, { "type": "mintMulti", "inputQtys": [ - "230676721082284", - "672271133048188" + "18413364787109853184", + "44812651388349521920" ], - "expectedQty": "888394852427599", + "expectedQty": "62415600523801383639", "reserves": [ - "4080235850658374182654791", - "2742709926854546664820904" + "4190873720138491070472784", + "9095915894752245890631829" ], - "LPTokenSupply": "6706530313707816378030660" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "9466610876230460768256", - "expectedQty": "9320631931281403649266", - "reserves": [ - "4080235850658374182654791", - "2752176537730777125589160" - ] + "LPTokenSupply": "13118559138694373226875606" }, { "type": "redeemMasset", - "inputQty": "273400355289428131840", + "inputQty": "8795119354807360421888", "expectedQtys": [ - "166005561692797061004", - "111973088994356772159" + "2808015624227163577554", + "6094546305794312175991" ], - "redemptionFee": "164040213173656879", + "redemptionFee": "5277071612884416253", "reserves": [ - "4080069845096681385593787", - "2752064564641782768817001" + "4188065704514263906895230", + "9089821348446451578455838" ], - "LPTokenSupply": "6715577561687829670913773" + "LPTokenSupply": "13109764547046727154895343" }, { "type": "redeemMasset", - "inputQty": "538191511714792755", + "inputQty": "86947757102160635494", "expectedQtys": [ - "326783723708235644", - "220420223295911646" + "27759799388175536645", + "60250157211058944932" ], - "redemptionFee": "322914907028875", + "redemptionFee": "52168654261296381", "reserves": [ - "4080069518312957677358143", - "2752064344221559472905355" + "4188037944714875731358585", + "9089761098289240519510906" ], - "LPTokenSupply": "6715577023528609446823905" + "LPTokenSupply": "13109677604506490420389487" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "225381154787554632925184", - "expectedQty": "229391225872996328512826", - "swapFee": "135228692872532779755", + "inputQty": "166021581530644256", + "outputIndex": 1, + "expectedQty": "166976616000804008", + "swapFee": "131723045881224", "reserves": [ - "3850678292439961348845317", - "2752064344221559472905355" + "4188038110736457262002841", + "9089760931312624518706898" ], - "LPTokenSupply": "6490209391610342067176696" + "LPTokenSupply": "13109677604519662724977609", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "58009983430965280768", + "expectedQty": "57157244490861661089", + "reserves": [ + "4188038110736457262002841", + "9089818941296055483987666" + ] }, { "type": "redeemMasset", - "inputQty": "57055566480327100805939", + "inputQty": "8119572587316842908876", "expectedQtys": [ - "33831082555472966691088", - "24178939126160413047992" + "2592323720387578411930", + "5626441935937024159656" ], - "redemptionFee": "34233339888196260483", + "redemptionFee": "4871743552390105745", "reserves": [ - "3816847209884488382154229", - "2727885405095399059857363" + "4185445787016069683590911", + "9084192499360118459828010" ], - "LPTokenSupply": "6433157248464003785996805" + "LPTokenSupply": "13101615676351191982740396" }, { - "type": "mintMulti", - "inputQtys": [ - "1138868226354423680", - "386391628031074048" + "type": "redeem", + "inputIndex": 0, + "inputQty": "635784878187946573824", + "expectedQty": "640681447858866976035", + "swapFee": "381470926912767944", + "reserves": [ + "4184805105568210816614876", + "9084192499360118459828010" ], - "expectedQty": "1498685867143636309", + "LPTokenSupply": "13100979929620096727443366" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "10701949315796", + "expectedQty": "10855107196883", + "swapFee": "6421169589", "reserves": [ - "3816848348752714736577909", - "2727885791487027090931411" + "4184805105568210816614876", + "9084192499349263352631127" ], - "LPTokenSupply": "6433158747149870929633114" + "LPTokenSupply": "13100979929609395420244528" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2137824734385142016", - "4488936351329276928" + "10348079276370010570752", + "1461072708171023253504" ], - "expectedQty": "6517743028041217613", - "swapFee": "3912993612992526", + "expectedQty": "11702336271594298362551", "reserves": [ - "3816846210927980351435893", - "2727881302550675761654483" + "4195153184844580827185628", + "9085653572057434375884631" ], - "LPTokenSupply": "6433152225885148636722226" + "LPTokenSupply": "13112682265880989718607079" }, { "type": "redeemMasset", - "inputQty": "4293034203471539496550", + "inputQty": "647095847258229833728", "expectedQtys": [ - "2545566970452283660378", - "1819304252606780955667" + "206901787886802877247", + "448097574832286636227" ], - "redemptionFee": "2575820522082923697", + "redemptionFee": "388257508354937900", "reserves": [ - "3814300643957528067775515", - "2726061998298068980698816" + "4194946283056694024308381", + "9085205474482602089248404" ], - "LPTokenSupply": "6428859449263729305518045" + "LPTokenSupply": "13112035208859482324267141" }, { "type": "redeemBassets", "inputQtys": [ - "84265810902110830592", - "233391822261354135552" + "3464625833681734656", + "3038850905071997440" ], - "expectedQty": "312473419409137703002", - "swapFee": "187596609611249371", + "expectedQty": "6430222909448286405", + "swapFee": "3860450015678378", "reserves": [ - "3814216378146625956944923", - "2725828606475807626563264" + "4194942818430860342573725", + "9085202435631697017250964" ], - "LPTokenSupply": "6428546807007371517690608" + "LPTokenSupply": "13112028775162167861870194" }, { - "type": "mintMulti", - "inputQtys": [ - "94791311620168617033728", - "101297557763710615814144" - ], - "expectedQty": "192789811187745583776896", + "type": "swap", + "inputIndex": 0, + "inputQty": "9690794720705355186176", + "outputIndex": 1, + "expectedQty": "9746077224702381244343", + "swapFee": "7688547587592694531", "reserves": [ - "3909007689766794573978651", - "2827126164239518242377408" + "4204633613151565697759901", + "9075456358406994636006621" ], - "LPTokenSupply": "6621336618195117101467504" + "LPTokenSupply": "13112029544016926621139647", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1270296625495375609856", - "3976936292078193213440" + "type": "redeemMasset", + "inputQty": "42488821471631", + "expectedQtys": [ + "13616712530068", + "29390879606032" ], - "expectedQty": "5161725641134982665454", - "swapFee": "3098894721513897938", + "redemptionFee": "25493292882", "reserves": [ - "3907737393141299198368795", - "2823149227947440049163968" + "4204633613137948985229833", + "9075456358377603756400589" ], - "LPTokenSupply": "6616172103548732756293904" + "LPTokenSupply": "13112029543974440348997304" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "10061842300076464", - "expectedQty": "10239816870689135", - "swapFee": "6037105380045", + "type": "redeemMasset", + "inputQty": "30011489435409448960", + "expectedQtys": [ + "9618007986265911264", + "20759909130046648992" + ], + "redemptionFee": "18006893661245669", "reserves": [ - "3907737382901482327679660", - "2823149227947440049163968" + "4204623995129962719318569", + "9075435598468473709751597" ], - "LPTokenSupply": "6616172093487494166755444" + "LPTokenSupply": "13111999534285694305672910" }, { "type": "redeemMasset", - "inputQty": "526372918305160901427", + "inputQty": "1108493956549489459", "expectedQtys": [ - "310707300971415709776", - "224470835909599172497" + "355247404929486995", + "766780798638561285" ], - "redemptionFee": "315823750983096540", + "redemptionFee": "665096373929693", "reserves": [ - "3907426675600510911969884", - "2822924757111530449991471" + "4204623639882557789831574", + "9075434831687675071190312" ], - "LPTokenSupply": "6615645752151564104163671" + "LPTokenSupply": "13111998425858247393576420" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "272093148308898578432", - "outputIndex": 1, - "expectedQty": "271264665245203321866", - "swapFee": "213762828813906892", + "type": "mint", + "inputIndex": 1, + "inputQty": "948282639991357824", + "expectedQty": "934362459121069502", "reserves": [ - "3907698768748819810548316", - "2822653492446285246669605" - ], - "LPTokenSupply": "6615645773527846985554360", - "hardLimitError": false, - "insufficientLiquidityError": false + "4204623639882557789831574", + "9075435779970315062548136" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "8766838011587112992768", - "20989046930740581761024" - ], - "expectedQty": "29267736982318134183675", - "swapFee": "17571184900331079157", + "type": "redeem", + "inputIndex": 1, + "inputQty": "67921886525967826944", + "expectedQty": "68892429065096700294", + "swapFee": "40753131915580696", "reserves": [ - "3898931930737232697555548", - "2801664445515544664908581" + "4204623639882557789831574", + "9075366887541249965847842" ], - "LPTokenSupply": "6586362222479118553399442" + "LPTokenSupply": "13111931442409493738377047" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "47405049575937237057536", - "expectedQty": "48243546680659918311108", - "swapFee": "28443029745562342234", + "inputIndex": 1, + "inputQty": "3502400409962784227328", + "expectedQty": "3552443786906451964254", + "swapFee": "2101440245977670536", "reserves": [ - "3850688384056572779244440", - "2801664445515544664908581" + "4204623639882557789831574", + "9071814443754343513883588" ], - "LPTokenSupply": "6538960017206155872576129" + "LPTokenSupply": "13108429252143555551916772" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "34448699770450149376", - "expectedQty": "35057472783798564544", - "swapFee": "20669219862270089", + "inputQty": "90685504311055122432", + "expectedQty": "89933783456853238009", "reserves": [ - "3850653326583788980679896", - "2801664445515544664908581" - ], - "LPTokenSupply": "6538925570573307408653761" + "4204714325386868844954006", + "9071814443754343513883588" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "14571324690555396423680", - "expectedQty": "14828737006841004688617", - "swapFee": "8742794814333237854", + "type": "redeemBassets", + "inputQtys": [ + "9689568261933377781760", + "16035197854326577954816" + ], + "expectedQty": "25409087707426187709306", + "swapFee": "15254605387688325620", "reserves": [ - "3835824589576947975991279", - "2801664445515544664908581" + "4195024757124935467172246", + "9055779245900016935928772" ], - "LPTokenSupply": "6524355120162233445553866" + "LPTokenSupply": "13083096369074737297952416" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "32516289073561009651712", - "expectedQty": "33018085211987800596088", - "swapFee": "19509773444136605791", + "type": "redeemMasset", + "inputQty": "487210577154127953920", + "expectedQtys": [ + "156127728422388560240", + "337032157046426996070" + ], + "redemptionFee": "292326346292476772", "reserves": [ - "3835824589576947975991279", - "2768646360303556864312493" + "4194868629396513078612006", + "9055442213742970508932702" ], - "LPTokenSupply": "6491840782066016849562733" + "LPTokenSupply": "13082609187730217799246173" }, { "type": "redeemBassets", "inputQtys": [ - "12987014971926", - "30610364117158" + "1591051843648086605824", + "6759783562660561920" ], - "expectedQty": "42881235294400", - "swapFee": "25744187689", + "expectedQty": "1584531463505317254395", + "swapFee": "951289651894326948", "reserves": [ - "3835824589563960961019353", - "2768646360272946500195335" + "4193277577552864992006182", + "9055435453959407848370782" ], - "LPTokenSupply": "6491840782023112444499411" + "LPTokenSupply": "13081023800106025777097523" }, { - "type": "redeemBassets", - "inputQtys": [ - "10935460457993476243456", - "21871580889899320999936" + "type": "redeemMasset", + "inputQty": "708015120122380078284", + "expectedQtys": [ + "226826480156458292908", + "489834625139293539711" ], - "expectedQty": "32265717208664984776209", - "swapFee": "19371052956973174770", + "redemptionFee": "424809072073428046", "reserves": [ - "3824889129105967484775897", - "2746774779383047179195399" + "4193050751072708533713274", + "9054945619334268554831071" ], - "LPTokenSupply": "6459557630866786183865908" + "LPTokenSupply": "13080315827466810604362043" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "9703446935024379904", - "outputIndex": 1, - "expectedQty": "9673470300631403096", - "swapFee": "7623015676416321", + "type": "redeemMasset", + "inputQty": "2532939859325083031961", + "expectedQtys": [ + "811476807773144230236", + "1752394330990861563020" + ], + "redemptionFee": "1519763915595049819", "reserves": [ - "3824898832552902509155801", - "2746765105912746547792303" + "4192239274264935389483038", + "9053193225003277693268051" ], - "LPTokenSupply": "6459557631629087751507540", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13077783039583877080835063" }, { - "type": "mintMulti", - "inputQtys": [ - "275252515331164274688", - "322054364521133309952" + "type": "redeemMasset", + "inputQty": "92356705835597732249", + "expectedQtys": [ + "29588279559986589719", + "63896260334267641765" ], - "expectedQty": "587280643232562998589", + "redemptionFee": "55414023501358639", "reserves": [ - "3825174085068233673430489", - "2747087160277267681102255" + "4192209685985375402893319", + "9053129328742943425626286" ], - "LPTokenSupply": "6460144912272320314506129" + "LPTokenSupply": "13077690688419443833238677" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "26314666699611234304", - "9569692277848098816" + "19040436137922199027712", + "3816617807158465003520" ], - "expectedQty": "35259965461202066644", - "swapFee": "21168680485012247", + "expectedQty": "22643007683022988649005", "reserves": [ - "3825147770401534062196185", - "2747077590584989833003439" + "4211250122123297601921031", + "9056945946550101890629806" ], - "LPTokenSupply": "6460109633255046675928461" + "LPTokenSupply": "13100333696102466821887682" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "187776239522971320320", - "expectedQty": "184395981764999173075", + "inputQty": "46526058932265033728", + "expectedQty": "46888118846902810158", + "swapFee": "27915635359359020", "reserves": [ - "3825335546641057033516505", - "2747077590584989833003439" - ] + "4211203234004450699110873", + "9056945946550101890629806" + ], + "LPTokenSupply": "13100287172835098092789856" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "17545005594967285956608", - "8520337565497520291840" + "2099048587473078976512", + "11534083819106438479872" ], - "expectedQty": "25615326194449337489247", + "expectedQty": "13446516057828956281891", + "swapFee": "8072753286669375394", "reserves": [ - "3842880552236024319473113", - "2755597928150487353295279" + "4209104185416977620134361", + "9045411862730995452149934" ], - "LPTokenSupply": "6485909355431261012590783" + "LPTokenSupply": "13086833391299311134070109" }, { - "type": "mintMulti", - "inputQtys": [ - "435366202257364353024", - "341886047374168752128" + "type": "redeemMasset", + "inputQty": "40583906113230399078", + "expectedQtys": [ + "13045126413989518863", + "28034122230746503411" ], - "expectedQty": "764031629163631690397", + "redemptionFee": "24350343667938239", "reserves": [ - "3843315918438281683826137", - "2755939814197861522047407" + "4209091140290563630615498", + "9045383828608764705646523" ], - "LPTokenSupply": "6486673387060424644281180" + "LPTokenSupply": "13086792809828232270464854" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1222389294197541961728", - "outputIndex": 0, - "expectedQty": "1225206445840673977191", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "6896499921796074569728", + "outputIndex": 1, + "expectedQty": "6935222113954091834554", + "swapFee": "5471236978565845843", "reserves": [ - "3842090711992441009848946", - "2757162203492059064009135" + "4215987640212359705185226", + "9038448606494810613811969" ], - "LPTokenSupply": "6486673387060424644281180", + "LPTokenSupply": "13086793356951930127049438", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "38331683302580649984", - "68064330276143226880" + "723835149609770680320", + "70214762893917932224512" ], - "expectedQty": "104634326987889909050", + "expectedQty": "69902520926810890957125", "reserves": [ - "3842129043675743590498930", - "2757230267822335207236015" + "4216711475361969475865546", + "9108663369388728546036481" ], - "LPTokenSupply": "6486778021387412534190230" + "LPTokenSupply": "13156695877878741018006563" }, { "type": "mintMulti", "inputQtys": [ - "266037022643536068608", - "158322230343082049536" + "7601796896522157162496", + "8953778189628882288640" ], - "expectedQty": "417077036445046004510", + "expectedQty": "16361124994361281964716", "reserves": [ - "3842395080698387126567538", - "2757388590052678289285551" + "4224313272258491633028042", + "9117617147578357428325121" ], - "LPTokenSupply": "6487195098423857580194740" + "LPTokenSupply": "13173057002873102299971279" }, { - "type": "redeemMasset", - "inputQty": "64469948376729", - "expectedQtys": [ - "38162931333492", - "27386572492386" + "type": "redeemBassets", + "inputQtys": [ + "9966614332904585560064", + "11242776600579376414720" ], - "redemptionFee": "38681969026", + "expectedQty": "20961744898981060005248", + "swapFee": "12584597698007440467", "reserves": [ - "3842395080660224195234046", - "2757388590025291716793165" + "4214346657925587047467978", + "9106374370977778051910401" ], - "LPTokenSupply": "6487195098359391500014913" + "LPTokenSupply": "13152083931836193033269609" }, { "type": "redeemMasset", - "inputQty": "1465774159140976640", + "inputQty": "679198737312113177395", "expectedQtys": [ - "867663771945843973", - "622654915623795025" + "217506329500894854159", + "469988405146373683055" ], - "redemptionFee": "879464495484585", + "redemptionFee": "407519242387267906", "reserves": [ - "3842394212996452249390073", - "2757387967370376092998140" + "4214129151596086152613819", + "9105904382572631678227346" ], - "LPTokenSupply": "6487193632673178808586731" + "LPTokenSupply": "13151404773850805158819004" }, { "type": "redeemBassets", "inputQtys": [ - "2456277870952764669952", - "1113577823060451786752" + "147959362315775", + "242649244124974" ], - "expectedQty": "3508102131014102277931", - "swapFee": "2106124953580609732", + "expectedQty": "385819789398336", + "swapFee": "231630852150", "reserves": [ - "3839937935125499484720121", - "2756274389547315641211388" + "4214129151448126790298044", + "9105904382329982434102372" ], - "LPTokenSupply": "6483683635029706483760040" + "LPTokenSupply": "13151404773464776901653732" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "91846047483473231347712", - "outputIndex": 0, - "expectedQty": "92037710809910765866529", - "swapFee": "0", - "reserves": [ - "3747900224315588718853592", - "2848120437030788872559100" + "type": "redeemMasset", + "inputQty": "2645621612496297984", + "expectedQtys": [ + "847232820991625771", + "1830703516732596543" ], - "LPTokenSupply": "6483683635029706483760040", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "6702280967865955778560", - "outputIndex": 1, - "expectedQty": "6684271381024747619585", - "swapFee": "5266224174854409752", + "redemptionFee": "1587372967497778", "reserves": [ - "3754602505283454674632152", - "2841436165649764124939515" + "4214128304215305798672273", + "9105902551626465701505829" ], - "LPTokenSupply": "6483684161652123969201015", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "13377630696271412985856", - "expectedQty": "13138892829720779167778", - "reserves": [ - "3767980135979726087618008", - "2841436165649764124939515" - ] + "LPTokenSupply": "13151402128001901702105525" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "100912092758578951094272", - "expectedQty": "102478624863648820516859", - "swapFee": "60547255655147370656", + "inputIndex": 0, + "inputQty": "1537241445049140248576", + "expectedQty": "1549143394440028834476", + "swapFee": "922344867029484149", "reserves": [ - "3767980135979726087618008", - "2738957540786115304422656" + "4212579160820865769837797", + "9105902551626465701505829" ], - "LPTokenSupply": "6395917016448831312011586" + "LPTokenSupply": "13149864978791339264805363" }, { - "type": "mintMulti", - "inputQtys": [ - "754464163796255", - "1281744403047969" - ], - "expectedQty": "2002386478926947", + "type": "redeem", + "inputIndex": 0, + "inputQty": "154903528822356800", + "expectedQty": "156102623083297955", + "swapFee": "92942117293414", "reserves": [ - "3767980136734190251414263", - "2738957542067859707470625" + "4212579004718242686539842", + "9105902551626465701505829" ], - "LPTokenSupply": "6395917018451217790938533" + "LPTokenSupply": "13149864823897104654177904" }, { - "type": "redeemBassets", - "inputQtys": [ - "24884004106964094976", - "107476765737511108608" + "type": "redeemMasset", + "inputQty": "401632724130115511910", + "expectedQtys": [ + "128586449988193619506", + "277952219232122453905" ], - "expectedQty": "130214531402344254597", - "swapFee": "78175624215936114", + "redemptionFee": "240979634478069307", "reserves": [ - "3767955252730083287319287", - "2738850065302122196362017" + "4212450418268254492920336", + "9105624599407233579051924" ], - "LPTokenSupply": "6395786733561753652341432" + "LPTokenSupply": "13149463215270937986472924" }, { - "type": "redeemBassets", - "inputQtys": [ - "14529084304085009563648", - "47150094418770244141056" + "type": "redeemMasset", + "inputQty": "722589285896969728", + "expectedQtys": [ + "231343680490032987", + "500072048053552922" ], - "expectedQty": "60673752136217077719813", - "swapFee": "36426106945897785303", + "redemptionFee": "433553571538181", "reserves": [ - "3753426168425998277755639", - "2691699970883351952220961" + "4212450186924574002887349", + "9105624099335185525499002" ], - "LPTokenSupply": "6335080197929285266614845" + "LPTokenSupply": "13149462492725007446657014" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "7054343533529530368000", - "expectedQty": "7162921693300245726375", - "swapFee": "4232606120117718220", - "reserves": [ - "3753426168425998277755639", - "2684537049190051706494586" - ], - "LPTokenSupply": "6328026277656367748018667" - }, - { - "type": "redeemMasset", - "inputQty": "2811817204803561881", - "expectedQtys": [ - "1666809751662428108", - "1192140815218296762" - ], - "redemptionFee": "1687090322882137", + "inputQty": "30923753478983270400", + "expectedQty": "31365910270259726300", + "swapFee": "18554252087389962", "reserves": [ - "3753424501616246615327531", - "2684535857049236488197824" + "4212450186924574002887349", + "9105592733424915265772702" ], - "LPTokenSupply": "6328023466007871976744999" + "LPTokenSupply": "13149431570826953672125610" }, { - "type": "redeemMasset", - "inputQty": "13204150085485476813209", - "expectedQtys": [ - "7827253525792393501771", - "5598232425657320923710" - ], - "redemptionFee": "7922490051291286087", + "type": "swap", + "inputIndex": 1, + "inputQty": "192076244576574701568", + "outputIndex": 0, + "expectedQty": "190834414437248929094", + "swapFee": "0", "reserves": [ - "3745597248090454221825760", - "2678937624623579167274114" + "4212259352510136753958255", + "9105784809669491840474270" ], - "LPTokenSupply": "6314820108171391629060398" + "LPTokenSupply": "13149431570826953672125610", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "93606164493634197520384", - "83331441182740353908736" - ], - "expectedQty": "173938009583437798291960", - "swapFee": "104425461026678686186", + "type": "mint", + "inputIndex": 0, + "inputQty": "23496919466921398272", + "expectedQty": "23302450635552699002", "reserves": [ - "3651991083596820024305376", - "2595606183440838813365378" - ], - "LPTokenSupply": "6140788115673029819950869" + "4212282849429603675356527", + "9105784809669491840474270" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "137332365061293441024", - "expectedQty": "134851460079993733678", + "inputQty": "36975048592180765523968", + "expectedQty": "36667683546621754095379", "reserves": [ - "3652128415961881317746400", - "2595606183440838813365378" + "4249257898021784440880495", + "9105784809669491840474270" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "22576907153635172352", - "13858461124791828480" - ], - "expectedQty": "35809485141027714999", - "reserves": [ - "3652150992869034952918752", - "2595620041901963605193858" + "32995145701625075597312", + "85333669488969495085056" ], - "LPTokenSupply": "6140958776618250841399546" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "77850823252875489050624", - "expectedQty": "79232767643634805580385", - "swapFee": "46710493951725293430", + "expectedQty": "116802838862879894716922", + "swapFee": "70123777584278503932", "reserves": [ - "3572918225225400147338367", - "2595620041901963605193858" + "4216262752320159365283183", + "9020451140180522345389214" ], - "LPTokenSupply": "6063112624414770524878265" + "LPTokenSupply": "13069256606561505233549529" }, { - "type": "mintMulti", - "inputQtys": [ - "218306550146030226112512", - "144831762491030634496000" - ], - "expectedQty": "356914524688949649455300", + "type": "mint", + "inputIndex": 1, + "inputQty": "236405118715588018176", + "expectedQty": "232940978510329147760", "reserves": [ - "3791224775371430373450879", - "2740451804392994239689858" - ], - "LPTokenSupply": "6420027149103720174333565" + "4216262752320159365283183", + "9020687545299237933407390" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "33727461835237", - "11823569870642" + "type": "redeemMasset", + "inputQty": "102690351222349653606", + "expectedQtys": [ + "33108387256117820515", + "70835342603317772457" ], - "expectedQty": "44756322482622", + "redemptionFee": "61614210733409792", "reserves": [ - "3791224775405157835286116", - "2740451804404817809560500" + "4216229643932903247462668", + "9020616709956634615634933" ], - "LPTokenSupply": "6420027149148476496816187" + "LPTokenSupply": "13069386863350214286384662" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "252723713253724618752", - "572593791827793543168" + "578105481873469440", + "331445788826041728" ], - "expectedQty": "811709178408113569855", + "expectedQty": "899857565324639958", + "swapFee": "540238682404226", "reserves": [ - "3791477499118411559904868", - "2741024398196645603103668" + "4216229065827421373993228", + "9020616378510845789593205" ], - "LPTokenSupply": "6420838858326884610386042" + "LPTokenSupply": "13069385963006434147580899" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "45902048489254216", - "expectedQty": "46716281995460765", - "swapFee": "27541229093552", + "inputQty": "663199037582765850624", + "outputIndex": 1, + "expectedQty": "666895483623631606022", + "swapFee": "526119818892241895", "reserves": [ - "3791477452402129564444103", - "2741024398196645603103668" + "4216892264865004139843852", + "9019949483027222157987183" ], - "LPTokenSupply": "6420838812427590244041181" + "LPTokenSupply": "13069386015618416036805088", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "169174339469553827840", - "expectedQty": "172175226221737517339", - "swapFee": "101504603681732296", + "inputQty": "1674971686930440960", + "expectedQty": "1660954337001039750", "reserves": [ - "3791305277175907826926764", - "2741024398196645603103668" - ], - "LPTokenSupply": "6420669648238581058386570" + "4216893939836691070284812", + "9019949483027222157987183" + ] }, { - "type": "redeemMasset", - "inputQty": "43446946910200", - "expectedQtys": [ - "25639351614908", - "18536647194697" + "type": "mintMulti", + "inputQtys": [ + "452823813189893824", + "81659405015688368" ], - "redemptionFee": "26068168146", + "expectedQty": "529497143527188922", "reserves": [ - "3791305277150268475311856", - "2741024398178108955908971" + "4216894392660504260178636", + "9019949564686627173675551" ], - "LPTokenSupply": "6420669648195136718293184" + "LPTokenSupply": "13069388206069896565033760" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "51600376594064400384", - "outputIndex": 1, - "expectedQty": "51443567837192426667", - "swapFee": "40536481146428751", + "inputQty": "11660321346143089852416", + "expectedQty": "11562607501584542779529", "reserves": [ - "3791356877526862539712240", - "2740972954610271763482304" - ], - "LPTokenSupply": "6420669652248784832936059", - "hardLimitError": false, - "insufficientLiquidityError": false + "4228554714006647350031052", + "9019949564686627173675551" + ] }, { "type": "redeemBassets", "inputQtys": [ - "4514921362204647751680", - "19041827629533856006144" + "885833196764117", + "1157328836072712" ], - "expectedQty": "23174473685128922620906", - "swapFee": "13913032030295530891", + "expectedQty": "2018783087148443", + "swapFee": "1211997050519", "reserves": [ - "3786841956164657891960560", - "2721931126980737907476160" + "4228554713120814153266935", + "9019949563529298337602839" ], - "LPTokenSupply": "6397482656834828644337350" + "LPTokenSupply": "13080950811551607223319377" }, { "type": "redeemBassets", "inputQtys": [ - "39906223110864293068800", - "21930987464292034412544" - ], - "expectedQty": "60771088932342809705461", - "swapFee": "36484544085857200143", - "reserves": [ - "3746935733053793598891760", - "2700000139516445873063616" - ], - "LPTokenSupply": "6336678731812808563151759" - }, - { - "type": "redeemMasset", - "inputQty": "4600752927489863240908", - "expectedQtys": [ - "2718834745581162286738", - "1959162023419180010211" - ], - "redemptionFee": "2760451756493917944", - "reserves": [ - "3744216898308212436605022", - "2698040977493026693053405" + "33576925473044483276800", + "1660131935650098970624" ], - "LPTokenSupply": "6332078254930494349302645" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2955476379356098985984", - "expectedQty": "2902166609237029589082", - "reserves": [ - "3747172374687568535591006", - "2698040977493026693053405" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1524444206973842882560", - "expectedQty": "1500350927558821959659", + "expectedQty": "34932041563300594191498", + "swapFee": "20971808022794032934", "reserves": [ - "3747172374687568535591006", - "2699565421700000535935965" - ] + "4194977787647769669990135", + "9018289431593648238632215" + ], + "LPTokenSupply": "13045999895361086114498237" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15072343903948554240", - "expectedQty": "15305212159790712460", - "swapFee": "9043406342369132", + "type": "redeemMasset", + "inputQty": "1093904593463982080", + "expectedQtys": [ + "351537035481288489", + "755728133109451330" + ], + "redemptionFee": "656342756078389", "reserves": [ - "3747172374687568535591006", - "2699550116487840745223505" + "4194977436110734188701646", + "9018288675865515129180885" ], - "LPTokenSupply": "6336465701027726886534059" + "LPTokenSupply": "13045998801522126926123995" }, { "type": "swap", "inputIndex": 1, - "inputQty": "174435998019142156288", + "inputQty": "59058290516971860525056", "outputIndex": 0, - "expectedQty": "174832291317493868542", + "expectedQty": "58672965682872696829324", "swapFee": "0", "reserves": [ - "3746997542396251041722464", - "2699724552485859887379793" + "4136304470427861491872322", + "9077346966382486989705941" ], - "LPTokenSupply": "6336465701027726886534059", + "LPTokenSupply": "13045998801522126926123995", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "20134666837902971895808", + "expectedQty": "19837526349893795693697", + "reserves": [ + "4136304470427861491872322", + "9097481633220389961601749" + ] + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "67554585408325554274304", - "expectedQty": "68752153721865213916879", - "swapFee": "40532751244995332564", + "inputQty": "873926040460863872", + "expectedQty": "866815803207730672", "reserves": [ - "3678245388674385827805585", - "2699724552485859887379793" - ], - "LPTokenSupply": "6268915168894525831793011" + "4136305344353901952736194", + "9097481633220389961601749" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "4621134360688006266880", - "2335657189192510996480" - ], - "expectedQty": "6836564990659267550079", - "swapFee": "4104401635376786602", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6856867641055649988608", + "expectedQty": "6955418923366949846807", + "swapFee": "4114120584633389993", "reserves": [ - "3673624254313697821538705", - "2697388895296667376383313" + "4136305344353901952736194", + "9090526214297023011754942" ], - "LPTokenSupply": "6262074909942394725134989" + "LPTokenSupply": "13058980738458826742898755" }, { - "type": "redeemMasset", - "inputQty": "10812085834342526156", - "expectedQtys": [ - "6339066460747746677", - "4654511810153246359" + "type": "redeemBassets", + "inputQtys": [ + "52278454941134438268928", + "55665471415850002022400" ], - "redemptionFee": "6487251500605515", + "expectedQty": "106697413748659606459584", + "swapFee": "64056882378622937638", "reserves": [ - "3673617915247237073792028", - "2697384240784857223136954" + "4084026889412767514467266", + "9034860742881173009732542" ], - "LPTokenSupply": "6262064098505285532669384" + "LPTokenSupply": "12952225673516026375795295" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "88712125781073", - "expectedQty": "90090719005205", - "swapFee": "53227275468", + "type": "swap", + "inputIndex": 0, + "inputQty": "16395605551701989261312", + "outputIndex": 1, + "expectedQty": "16493271786630744091548", + "swapFee": "13010139081467598856", "reserves": [ - "3673617915247237073792028", - "2697384240694766504131749" + "4100422494964469503728578", + "9018367471094542265640994" ], - "LPTokenSupply": "6262064098416578729615857" + "LPTokenSupply": "12952226974529934522555180", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1400655512178758", - "8965900092265100" + "1588650347723117568", + "1290613246295555584" ], - "expectedQty": "10198869565705111", - "swapFee": "6122995536745", + "expectedQty": "2847270121190448947", "reserves": [ - "3673617913846581561613270", - "2697384231728866411866649" + "4100424083614817226846146", + "9018368761707788561196578" ], - "LPTokenSupply": "6262064088212198467927674" + "LPTokenSupply": "12952229821800055713004127" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "34421744946942006263808", - "expectedQty": "33802189093030267147776", + "inputIndex": 1, + "inputQty": "18278729427761993089024", + "expectedQty": "18008726535567812712284", "reserves": [ - "3708039658793523567877078", - "2697384231728866411866649" + "4100424083614817226846146", + "9036647491135550554285602" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "2338072432839068483584", - "2164685754735219441664" - ], - "expectedQty": "4426323674978494384197", - "swapFee": "2657388638169998629", + "type": "mint", + "inputIndex": 0, + "inputQty": "14483399238993135616", + "expectedQty": "14365731725103738587", "reserves": [ - "3705701586360684499393494", - "2695219545974131192424985" - ], - "LPTokenSupply": "6291437561980475887692485" + "4100438567014056219981762", + "9036647491135550554285602" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "31059715059435173838848", - "expectedQty": "30499794720394991324816", + "inputQty": "1850195561806147092480", + "expectedQty": "1835160380377128129118", "reserves": [ - "3736761301420119673232342", - "2695219545974131192424985" + "4102288762575862367074242", + "9036647491135550554285602" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "319691845778631884800", - "25463684359772966912" + "267282285779222265856", + "875881722993459200000" ], - "expectedQty": "338985439514210812772", + "expectedQty": "1128051564741960041961", + "swapFee": "677237281213904367", "reserves": [ - "3737080993265898305117142", - "2695245009658490965391897" + "4102021480290083144808386", + "9035771609412557095085602" ], - "LPTokenSupply": "6322276342140385089830073" + "LPTokenSupply": "12970959413369430705028223" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "4313393786970589102080", - "outputIndex": 1, - "expectedQty": "4300162997370069640286", - "swapFee": "3388456685062308215", + "type": "mint", + "inputIndex": 1, + "inputQty": "112450119363921968", + "expectedQty": "110788834031760825", "reserves": [ - "3741394387052868894219222", - "2690944846661120895751611" - ], - "LPTokenSupply": "6322276680986053596060894", - "hardLimitError": false, - "insufficientLiquidityError": false + "4102021480290083144808386", + "9035771721862676459007570" + ] }, { - "type": "redeemMasset", - "inputQty": "29573991967485118853939", - "expectedQtys": [ - "17490784467236993216280", - "12579998646773688879362" + "type": "redeemBassets", + "inputQtys": [ + "1216941059451473664", + "1509501089828900096" ], - "redemptionFee": "17744395180491071312", + "expectedQty": "2694249540791106100", + "swapFee": "1617520236616633", "reserves": [ - "3723903602585631901002942", - "2678364848014347206872249" + "4102020263349023693334722", + "9035770212361586630107474" ], - "LPTokenSupply": "6292704463458086526314086" + "LPTokenSupply": "12970956828452955732727977" }, { "type": "mintMulti", "inputQtys": [ - "246806817685379776512", - "178438631061463498752" + "9406373936734969790464", + "10043750966237014786048" ], - "expectedQty": "417969301518832945282", + "expectedQty": "19225258537843389064388", "reserves": [ - "3724150409403317280779454", - "2678543286645408670371001" + "4111426637285758663125186", + "9045813963327823644893522" ], - "LPTokenSupply": "6293122432759605359259368" + "LPTokenSupply": "12990182086990799121792365" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "21815588626535880327168", - "expectedQty": "22152293636618175666953", - "swapFee": "13089353175921528196", + "inputQty": "25867119608242601197568", + "expectedQty": "25484945638344632552178", "reserves": [ - "3724150409403317280779454", - "2656390993008790494704048" - ], - "LPTokenSupply": "6271308153068387071085019" + "4111426637285758663125186", + "9071681082936066246091090" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "198814113786183616", - "3394496927340233728" - ], - "expectedQty": "3536170997382467430", - "swapFee": "2122976384260036", + "type": "mint", + "inputIndex": 1, + "inputQty": "9884331998221684441088", + "expectedQty": "9738219414999309390787", "reserves": [ - "3724150210589203494595838", - "2656387598511863154470320" - ], - "LPTokenSupply": "6271304614986710942783555" + "4111426637285758663125186", + "9081565414934287930532178" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "697132248879904980992", - "expectedQty": "684528253375075294654", + "inputIndex": 1, + "inputQty": "95671887508187680", + "expectedQty": "94257438072804201", "reserves": [ - "3724847342838083399576830", - "2656387598511863154470320" + "4111426637285758663125186", + "9081565510606175438719858" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "57074499825684348928", - "53895441265018191872" - ], - "expectedQty": "109087915208168056464", - "swapFee": "65492044351511740", + "type": "mint", + "inputIndex": 1, + "inputQty": "19703771034770707841024", + "expectedQty": "19412379091510966940448", "reserves": [ - "3724790268338257715227902", - "2656333703070598136278448" - ], - "LPTokenSupply": "6271879996382037933661178" + "4111426637285758663125186", + "9101269281640946146560882" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "108812547296218382336", - "expectedQty": "110490053967704705381", - "swapFee": "65287528377731029", + "type": "redeemMasset", + "inputQty": "1165840332972650905", + "expectedQtys": [ + "367225601802084075", + "812909820353708491" + ], + "redemptionFee": "699504199783590", "reserves": [ - "3724790268338257715227902", - "2656223213016630431573067" + "4111426270060156861041111", + "9101268468731125792852391" ], - "LPTokenSupply": "6271771190363494553051944" + "LPTokenSupply": "13044816559622709550807433" }, { "type": "redeemMasset", - "inputQty": "2272167299732646710476", + "inputQty": "1148363966227258173030", "expectedQtys": [ - "1348625193962586720038", - "961731879594023168781" + "361720757705058557523", + "800724009222816934157" ], - "redemptionFee": "1363300379839588026", + "redemptionFee": "689018379736354903", "reserves": [ - "3723441643144295128507864", - "2655261481137036408404286" + "4111064549302451802483588", + "9100467744721902975918234" ], - "LPTokenSupply": "6269499159393799890300270" + "LPTokenSupply": "13043668264558320266269893" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "53921579557326584", - "expectedQty": "54881507467316416", - "swapFee": "32352947734395", + "inputQty": "12100999638723014656", + "expectedQty": "12003152996802914119", "reserves": [ - "3723441588262787661191448", - "2655261481137036408404286" - ], - "LPTokenSupply": "6269499105475455627747125" + "4111076650302090525498244", + "9100467744721902975918234" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "67038269542438404096", - "expectedQty": "68071767651602247703", - "swapFee": "40222961725463042", + "type": "mint", + "inputIndex": 0, + "inputQty": "100701730503480303419392", + "expectedQty": "99876967225378971566709", "reserves": [ - "3723441588262787661191448", - "2655193409369384806156583" - ], - "LPTokenSupply": "6269432071228209361889333" + "4211778380805570828917636", + "9100467744721902975918234" + ] }, { "type": "redeemBassets", "inputQtys": [ - "37839528235350748037120", - "13342329162476313116672" + "12916743131885", + "11836069194699" ], - "expectedQty": "50287400326166848885665", - "swapFee": "30190554528417159627", + "expectedQty": "24471730613753", + "swapFee": "14691853480", "reserves": [ - "3685602060027436913154328", - "2641851080206908493039911" + "4211778380792654085785751", + "9100467744710066906723535" ], - "LPTokenSupply": "6219117499402966937560002" + "LPTokenSupply": "13143557234912211087468835" }, { "type": "mintMulti", "inputQtys": [ - "9004009314944572981248", - "20706599862319882174464" + "592071570573081444352", + "423043906836511850496" ], - "expectedQty": "29220586469321404995644", + "expectedQty": "1003987597262208570855", "reserves": [ - "3694606069342381486135576", - "2662557680069228375214375" + "4212370452363227167230103", + "9100890788616903418574031" ], - "LPTokenSupply": "6248338085872288342555646" + "LPTokenSupply": "13144561222509473296039690" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1782129932839483392", - "396091218613586880" + "172406328950663544832", + "57632234407258341376" ], - "expectedQty": "2139782550413861202", - "swapFee": "1284640314436978", + "expectedQty": "227761686932987605522", "reserves": [ - "3694604287212448646652184", - "2662557283978009761627495" + "4212542858692177830774935", + "9100948420851310676915407" ], - "LPTokenSupply": "6248335944933561645701162" + "LPTokenSupply": "13144788984196406283645212" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1320555208778832150528", - "71287655909119571787776" + "5045284070630026641408", + "5387745438701804584960" ], - "expectedQty": "71452448223432357902240", + "expectedQty": "10312004480862500559993", + "swapFee": "6190917238860816826", "reserves": [ - "3695924842421227478802712", - "2733844939887129333415271" + "4207497574621547804133527", + "9095560675412608872330447" ], - "LPTokenSupply": "6319788393156994003603402" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "26963748489523198164992", - "expectedQty": "26533564551858528864377", - "reserves": [ - "3695924842421227478802712", - "2760808688376652531580263" - ] + "LPTokenSupply": "13134471407890028808350074" }, { - "type": "redeemMasset", - "inputQty": "431831681582185526067", - "expectedQtys": [ - "251336103001014199600", - "187744861287102428573" + "type": "mintMulti", + "inputQtys": [ + "30708834735674823278592", + "117316964666623316197376" ], - "redemptionFee": "259099008949311315", + "expectedQty": "146046059555874322274753", "reserves": [ - "3695673506318226464603112", - "2760620943515365429151690" + "4238206409357222627412119", + "9212877640079232188527823" ], - "LPTokenSupply": "6345890151937171241872843" + "LPTokenSupply": "13280517467445903130624827" }, { - "type": "redeemBassets", - "inputQtys": [ - "1229711919662868463616", - "75742476771696054370304" + "type": "redeemMasset", + "inputQty": "22341304244425", + "expectedQtys": [ + "7125493930396", + "15489170975943" ], - "expectedQty": "75744448468519708158310", - "swapFee": "45473953453183735136", + "redemptionFee": "13404782546", "reserves": [ - "3694443794398563596139496", - "2684878466743669374781386" + "4238206409350097133481723", + "9212877640063743017551880" ], - "LPTokenSupply": "6270104776910543668352909" + "LPTokenSupply": "13280517467423563166858656" }, { "type": "redeemBassets", "inputQtys": [ - "32521210870896740", - "18487666446212620" + "18044743269354844", + "22822687281743084" ], - "expectedQty": "50129118993583381", - "swapFee": "30095528713378", + "expectedQty": "40382701365307083", + "swapFee": "24244167319575", "reserves": [ - "3694443761877352725242756", - "2684878448256002928568766" + "4238206391305353864126879", + "9212877617241055735808796" ], - "LPTokenSupply": "6270104726754338698927486" + "LPTokenSupply": "13280517427019042050963954" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1535551871680340736", - "expectedQty": "1562811982300040963", - "swapFee": "921331123008204", + "inputQty": "127969792263905918976", + "expectedQty": "128955858862447960848", + "swapFee": "76781875358343551", "reserves": [ - "3694442199065370425201793", - "2684878448256002928568766" + "4238077435446491416166031", + "9212877617241055735808796" ], - "LPTokenSupply": "6270103191294600130887570" + "LPTokenSupply": "13280389464904965680879333" }, { "type": "redeemMasset", - "inputQty": "352301956593507891", + "inputQty": "6760749274483443682508", "expectedQtys": [ - "207457236354450873", - "150766322170022733" + "2156215935925964598274", + "4687255916535176310075" ], - "redemptionFee": "211381173956104", + "redemptionFee": "4056449564690066209", "reserves": [ - "3694441991608134070750920", - "2684878297489680758546033" + "4235921219510565451567757", + "9208190361324520559498721" ], - "LPTokenSupply": "6270102839013781654775289" + "LPTokenSupply": "13273629121275438706203445" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "10255530877781696053248", - "expectedQty": "10070553761242680062717", + "inputQty": "32609967393549758496768", + "expectedQty": "32860155148813897201508", + "swapFee": "19565980436129855098", "reserves": [ - "3704697522485915766804168", - "2684878297489680758546033" - ] + "4203061064361751554366249", + "9208190361324520559498721" + ], + "LPTokenSupply": "13241021110479932560692186" }, { - "type": "redeemBassets", - "inputQtys": [ - "1503709730762682793984", - "1799451397471533268992" + "type": "redeemMasset", + "inputQty": "13456732590803178120806", + "expectedQtys": [ + "4268970848472599305580", + "9352587463691780485195" ], - "expectedQty": "3247504757580837756127", - "swapFee": "1949672658143388686", + "redemptionFee": "8074039554481906872", "reserves": [ - "3703193812755153084010184", - "2683078846092209225277041" + "4198792093513278955060669", + "9198837773860828779013526" ], - "LPTokenSupply": "6276924133312051168032060" + "LPTokenSupply": "13227565185293084830762067" }, { - "type": "redeemBassets", - "inputQtys": [ - "1508615627740451", - "399343691051023" + "type": "redeemMasset", + "inputQty": "30357986827454659742924", + "expectedQtys": [ + "9630676028169929083546", + "21099169585607714700753" ], - "expectedQty": "1874409791968141", - "swapFee": "1125321067821", + "redemptionFee": "18214792096472795845", "reserves": [ - "3703193811246537456269733", - "2683078845692865534226018" + "4189161417485109025977123", + "9177738604275221064312773" ], - "LPTokenSupply": "6276924131436628587102879" + "LPTokenSupply": "13197209019944839818298727" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "30752707492308869709824", - "expectedQty": "31228537349610066752467", - "swapFee": "18451624495385321825", + "inputQty": "1484407099947329257472", + "expectedQty": "1462502565709894074104", "reserves": [ - "3703193811246537456269733", - "2651850308343255467473551" - ], - "LPTokenSupply": "6246173269106769255925237" + "4189161417485109025977123", + "9179223011375168393570245" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "5239502061219938828288", - "outputIndex": 1, - "expectedQty": "5223137019985691758953", - "swapFee": "4115803640797350599", + "inputQty": "1736216374336204570624", + "expectedQty": "1722015109087367095268", "reserves": [ - "3708433313307757395098021", - "2646627171323269775714598" - ], - "LPTokenSupply": "6246173680687133335660296", - "hardLimitError": false, - "insufficientLiquidityError": false + "4190897633859445230547747", + "9179223011375168393570245" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "19891120898592961724416", - "27337874124441892421632" + "59081570252647693287424", + "63991462714182526304256" ], - "expectedQty": "46437285801220024421131", + "expectedQty": "121646395080355117890097", + "swapFee": "73031656041838173638", "reserves": [ - "3728324434206350356822437", - "2673965045447711668136230" + "4131816063606797537260323", + "9115231548660985867265989" ], - "LPTokenSupply": "6292610966488353360081427" + "LPTokenSupply": "13078681414048844307221726" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "9936932767495517896704", - "outputIndex": 1, - "expectedQty": "9905899300430458483358", - "swapFee": "7805810151681157618", + "type": "redeemMasset", + "inputQty": "3918681504066176614", + "expectedQtys": [ + "1237246776771058250", + "2729499735585497834" + ], + "redemptionFee": "2351208902439705", "reserves": [ - "3738261366973845874719141", - "2664059146147281209652872" + "4131814826360020766202073", + "9115228819161250281768155" ], - "LPTokenSupply": "6292611747069368528197188", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13078677495602461131289082" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "158350826176685473792", - "expectedQty": "160794068755399000830", - "swapFee": "95010495706011284", + "inputQty": "199623610236808630108160", + "expectedQty": "196662965962334336493028", + "reserves": [ + "4131814826360020766202073", + "9314852429398058911876315" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "16848097980972749815808", + "expectedQty": "16972318584653593868862", + "swapFee": "10108858788583649889", "reserves": [ - "3738261366973845874719141", - "2663898352078525810652042" + "4114842507775367172333211", + "9314852429398058911876315" ], - "LPTokenSupply": "6292453405744241413324524" + "LPTokenSupply": "13258493374469701576331290" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "138153781838776467718144", - "134485426984556517392384" + "74940318063282593202176", + "100923611955675004928000" ], - "expectedQty": "268014951729123165141683", + "expectedQty": "173770322651124784657944", + "swapFee": "104324788463753122668", "reserves": [ - "3876415148812622342437285", - "2798383779063082328044426" + "4039902189712084579131035", + "9213928817442383906948315" ], - "LPTokenSupply": "6560468357473364578466207" + "LPTokenSupply": "13084629159508959413862943" }, { - "type": "mintMulti", - "inputQtys": [ - "16530457994777138823168", - "4925860002588842262528" + "type": "redeemMasset", + "inputQty": "158830071033041439948", + "expectedQtys": [ + "49009639415070794783", + "111777787613012344905" ], - "expectedQty": "21079743175456666696168", + "redemptionFee": "95298042619824863", "reserves": [ - "3892945606807399481260453", - "2803309639065671170306954" + "4039853180072669508336252", + "9213817039654770894603410" ], - "LPTokenSupply": "6581548100648821245162375" + "LPTokenSupply": "13084470338967730634405481" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4823448938939473920", - "expectedQty": "4747089091986206237", + "type": "redeemBassets", + "inputQtys": [ + "28936420286766481408", + "5550199527335816192" + ], + "expectedQty": "34177031996512839856", + "swapFee": "20518530316097362", "reserves": [ - "3892945606807399481260453", - "2803314462514610109780874" - ] + "4039824243652382741854844", + "9213811489455243558787218" + ], + "LPTokenSupply": "13084436143469056837077998" }, { "type": "mint", "inputIndex": 1, - "inputQty": "20049151398277967511552", - "expectedQty": "19731446807212968564966", + "inputQty": "17295343420458823680", + "expectedQty": "17037155521119677587", "reserves": [ - "3892945606807399481260453", - "2823363613912888077292426" + "4039824243652382741854844", + "9213828784798664017610898" ] }, { "type": "redeemBassets", "inputQtys": [ - "26362978873599057723392", - "79393238121408920289280" + "619132774931234816000", + "908488577622413017088" ], - "expectedQty": "104024050476290099382082", - "swapFee": "62451901426630037651", + "expectedQty": "1509208094100172292197", + "swapFee": "906068497558638558", "reserves": [ - "3866582627933800423537061", - "2743970375791479157003146" + "4039205110877451507038844", + "9212920296221041604593810" ], - "LPTokenSupply": "6497204037357552133517609" + "LPTokenSupply": "13082943157068829981688684" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "44613842277120401408", - "expectedQty": "45409869964996702416", - "swapFee": "26768305366272240", + "inputQty": "161011820345439660539904", + "expectedQty": "162154705341965050743471", + "swapFee": "96607092207263796323", "reserves": [ - "3866537218063835426834645", - "2743970375791479157003146" + "3877050405535486456295373", + "9212920296221041604593810" ], - "LPTokenSupply": "6497159426192105549743425" + "LPTokenSupply": "12921940997432611047528412" }, { - "type": "mintMulti", - "inputQtys": [ - "143324274413631382224896", - "150904050463706988937216" + "type": "redeemMasset", + "inputQty": "1743155109402798489", + "expectedQtys": [ + "522695874019936007", + "1242066757665523610" ], - "expectedQty": "289248869068123773210578", + "redemptionFee": "1045893065641679", "reserves": [ - "4009861492477466809059541", - "2894874426255186145940362" + "3877049882839612436359366", + "9212919054154283939070200" ], - "LPTokenSupply": "6786408295260229322954003" + "LPTokenSupply": "12921939254382090951294090" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "179502347023512961024", - "expectedQty": "182283901595968764637", - "swapFee": "107701408214107776", + "inputIndex": 0, + "inputQty": "78499167348925992534016", + "expectedQty": "79032923105011018136303", + "swapFee": "47099500409355595520", "reserves": [ - "4009861492477466809059541", - "2894692142353590177175725" + "3798016959734601418223063", + "9212919054154283939070200" ], - "LPTokenSupply": "6786228803683346631403756" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "3837731666000476635136", - "expectedQty": "3776891990282475843594", - "reserves": [ - "4009861492477466809059541", - "2898529874019590653810861" - ] + "LPTokenSupply": "12843444796983205894319626" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "73640309218520940544", - "expectedQty": "72310200472752511316", + "type": "mintMulti", + "inputQtys": [ + "42417707969253795168256", + "37739467971594559684608" + ], + "expectedQty": "79275420661334658773314", "reserves": [ - "4009935132786685330000085", - "2898529874019590653810861" - ] + "3840434667703855213391319", + "9250658522125878498754808" + ], + "LPTokenSupply": "12922720217644540553092940" }, { - "type": "mintMulti", - "inputQtys": [ - "22997522287389577216", - "29100013235081031680" + "type": "redeemMasset", + "inputQty": "15910815737893552128", + "expectedQtys": [ + "4725613853255327448", + "11382836539705841751" ], - "expectedQty": "51220744291208358935", + "redemptionFee": "9546489442736131", "reserves": [ - "4009958130308972719577301", - "2898558974032825734842541" + "3840429942090001958063871", + "9250647139289338792913057" ], - "LPTokenSupply": "6790129226618393068117601" + "LPTokenSupply": "12922704307783451603814425" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "176806259138130336", - "expectedQty": "179950486493528242", - "swapFee": "106083755482878", + "type": "redeemBassets", + "inputQtys": [ + "3966503066789895208960", + "4316662504934071599104" + ], + "expectedQty": "8188687155464706293337", + "swapFee": "4916161990473107640", "reserves": [ - "4009957950358486226049059", - "2898558974032825734842541" + "3836463439023212062854911", + "9246330476784404721313953" ], - "LPTokenSupply": "6790129049822742305535552" + "LPTokenSupply": "12914511196082195471724211" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "140904998708307", - "expectedQty": "138359937061667", + "inputIndex": 1, + "inputQty": "14418212364676626432", + "expectedQty": "14199558750557399283", "reserves": [ - "4009957950499391224757366", - "2898558974032825734842541" + "3836463439023212062854911", + "9246344894996769397940385" ] }, { "type": "mintMulti", "inputQtys": [ - "1692268599136208289792", - "1714419269963389075456" + "82077546672623747072", + "7049521121381463040" ], - "expectedQty": "3348938001065305346700", + "expectedQty": "88419810241369992338", "reserves": [ - "4011650219098527433047158", - "2900273393302789123917997" + "3836545516569884686601983", + "9246351944517890779403425" ], - "LPTokenSupply": "6793477987962167547943919" + "LPTokenSupply": "12914613815451187399115832" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "185533275209560177508352", - "expectedQty": "188818385129369455815761", - "swapFee": "111319965125736106505", + "inputQty": "20928152683359170985984", + "expectedQty": "20774498421964031004752", "reserves": [ - "3822831833969157977231397", - "2900273393302789123917997" - ], - "LPTokenSupply": "6607955844749119944046217" + "3857473669253243857587967", + "9246351944517890779403425" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "2697361073453129216", - "2402399923887866880" - ], - "expectedQty": "5012790836556312133", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4308614335117981646848", + "expectedQty": "4372230183019779140423", + "swapFee": "2585168601070788988", "reserves": [ - "3822834531330231430360613", - "2900275795702713011784877" + "3857473669253243857587967", + "9241979714334871000263002" ], - "LPTokenSupply": "6607960857539956500358350" + "LPTokenSupply": "12931079958054893555552634" }, { "type": "redeemBassets", "inputQtys": [ - "1179785592902935642112", - "1453597617733251629056" + "737538831522030682112", + "107047552281321537536" ], - "expectedQty": "2588869594391353447077", - "swapFee": "1554254309220344274", + "expectedQty": "837527493433140043971", + "swapFee": "502818186972067266", "reserves": [ - "3821654745737328494718501", - "2898822198084979760155821" + "3856736130421721826905855", + "9241872666782589678725466" ], - "LPTokenSupply": "6605370589116686848601425" + "LPTokenSupply": "12930241978025092140648122" }, { - "type": "redeemBassets", - "inputQtys": [ - "13985503924067502080", - "15697173269163384832" + "type": "redeemMasset", + "inputQty": "177215244859204540825", + "expectedQtys": [ + "52826726321770534536", + "126588353872005861801" ], - "expectedQty": "29179653734984803882", - "swapFee": "17518303222924637", + "redemptionFee": "106329146915522724", "reserves": [ - "3821640760233404427216421", - "2898806500911710596770989" + "3856683303695400056371319", + "9241746078428717672863665" ], - "LPTokenSupply": "6605341393696478963165368" + "LPTokenSupply": "12930064773413147627659569" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1279656597589084078080", - "expectedQty": "1302235317185474502984", - "swapFee": "767793958553450446", + "type": "mint", + "inputIndex": 1, + "inputQty": "48003274096213565112320", + "expectedQty": "47275924944686592159828", "reserves": [ - "3820338524916218952713437", - "2898806500911710596770989" - ], - "LPTokenSupply": "6604061813878285734432332" + "3856683303695400056371319", + "9289749352524931237975985" + ] }, { "type": "mintMulti", "inputQtys": [ - "29983334133253527306240", - "15440121956061543399424" + "14117038410930036146176", + "30116342995132719562752" ], - "expectedQty": "44637714166756420261758", + "expectedQty": "43673384772537201538447", "reserves": [ - "3850321859049472480019677", - "2914246622867772140170413" + "3870800342106330092517495", + "9319865695520063957538737" ], - "LPTokenSupply": "6648699528045042154694090" + "LPTokenSupply": "13021014083130371421357844" }, { - "type": "redeemBassets", - "inputQtys": [ - "682280369587787923456", - "1160279828797041278976" - ], - "expectedQty": "1811685738595034635378", - "swapFee": "1087664041581969963", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1177979093398483200", + "expectedQty": "1185958935377281104", + "swapFee": "706787456039089", "reserves": [ - "3849639578679884692096221", - "2913086343038975098891437" + "3870799156147394715236391", + "9319865695520063957538737" ], - "LPTokenSupply": "6646886863408809696285744" + "LPTokenSupply": "13021012905221956768478552" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "242086597347664896", - "269976654613820448" + "351096251738674018910208", + "142919774279655103660032" ], - "expectedQty": "503384659989678553", - "swapFee": "302212123267767", + "expectedQty": "489175266644881436706804", "reserves": [ - "3849639336593287344431325", - "2913086073062320485070989" + "4221895407886068734146599", + "9462785469799719061198769" ], - "LPTokenSupply": "6646886359752158795666199" + "LPTokenSupply": "13510188171866838205185356" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2434783771948973817856", - "expectedQty": "2391110755193440539387", + "type": "redeemMasset", + "inputQty": "5252167894019792896", + "expectedQtys": [ + "1640302767747364615", + "3676508226072779674" + ], + "redemptionFee": "3151300736411875", "reserves": [ - "3852074120365236318249181", - "2913086073062320485070989" - ] + "4221893767583300986781984", + "9462781793291492988419095" + ], + "LPTokenSupply": "13510182920014074259033647" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8696655711406799192064", - "expectedQty": "8833243985047370457821", - "swapFee": "5217993426844079515", + "type": "redeemMasset", + "inputQty": "146808402589075", + "expectedQtys": [ + "45849682265520", + "102765621887906" + ], + "redemptionFee": "88085041553", "reserves": [ - "3852074120365236318249181", - "2904252829077273114613168" + "4221893767537451304516464", + "9462781793188727366531189" ], - "LPTokenSupply": "6640581336595288121421473" + "LPTokenSupply": "13510182919867274664948727" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2491641443254803628032", - "expectedQty": "2530756018525507515559", - "swapFee": "1494984865952882176", + "type": "redeemBassets", + "inputQtys": [ + "24281085851422615928832", + "8586738831265999355904" + ], + "expectedQty": "32546257391019156215368", + "swapFee": "19539478121484384359", "reserves": [ - "3852074120365236318249181", - "2901722073058747607097609" + "4197612681686028688587632", + "9454195054357461367175285" ], - "LPTokenSupply": "6638089844650519913081658" + "LPTokenSupply": "13477619076945946172787434" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "10148721502232", - "outputIndex": 0, - "expectedQty": "10168420628235", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "22467147894287472001024", + "outputIndex": 1, + "expectedQty": "22605919514028758338127", + "swapFee": "17830193497521416732", "reserves": [ - "3852074120355067897620946", - "2901722073068896328599841" + "4220079829580316160588656", + "9431589134843432608837158" ], - "LPTokenSupply": "6638089844650519913081658", + "LPTokenSupply": "13477620859965295924929107", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "163969558368068304896", - "expectedQty": "161338675529313697254", + "inputQty": "3375296117561888866304", + "expectedQty": "3325136362427077983289", "reserves": [ - "3852074120355067897620946", - "2901886042627264396904737" + "4220079829580316160588656", + "9434964430960994497703462" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "15890624507215896576", - "outputIndex": 1, - "expectedQty": "15847157949280739428", - "swapFee": "12484299244389040", + "inputQty": "46384789894157857456128", + "expectedQty": "46010163626011458710456", "reserves": [ - "3852090010979575113517522", - "2901870195469315116165309" - ], - "LPTokenSupply": "6638251184574479151217816", - "hardLimitError": false, - "insufficientLiquidityError": false + "4266464619474474018044784", + "9434964430960994497703462" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "6169242479459641065472", - "outputIndex": 0, - "expectedQty": "6181131118261958957915", - "swapFee": "0", + "inputQty": "29002348208497157472256", + "expectedQty": "28572404177601770188123", "reserves": [ - "3845908879861313154559607", - "2908039437948774757230781" - ], - "LPTokenSupply": "6638251184574479151217816", - "hardLimitError": false, - "insufficientLiquidityError": false + "4266464619474474018044784", + "9463966779169491655175718" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "23862629934985609216", - "expectedQty": "24237573418927170697", - "swapFee": "14317577960991365", + "type": "mintMulti", + "inputQtys": [ + "14852482152036421632", + "12505198192013111296" + ], + "expectedQty": "27051954578227175150", "reserves": [ - "3845908879861313154559607", - "2908015200375355830060084" + "4266479471956626054466416", + "9463979284367683668287014" ], - "LPTokenSupply": "6638227323376301961707736" + "LPTokenSupply": "13555555616085914458986125" }, { "type": "redeemBassets", "inputQtys": [ - "30475602068853181382656", - "25740005655263865470976" + "12901110626326198272", + "51457884386055176192" ], - "expectedQty": "55255507944160761623340", - "swapFee": "33173208691711483864", + "expectedQty": "63491383240928567957", + "swapFee": "38117700564896078", "reserves": [ - "3815433277792459973176951", - "2882275194720091964589108" + "4266466570845999728268144", + "9463927826483297613110822" ], - "LPTokenSupply": "6582941959544318659748917" + "LPTokenSupply": "13555492090396743022011696" }, { "type": "swap", "inputIndex": 1, - "inputQty": "10148292524599884", + "inputQty": "69201895529061233459200", "outputIndex": 0, - "expectedQty": "10167780867664149", + "expectedQty": "68721702895212514289030", "swapFee": "0", "reserves": [ - "3815433267624679105512802", - "2882275204868384489188992" - ], - "LPTokenSupply": "6582941959544318659748917", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "147898364071355968", - "expectedQty": "145244067440521518", - "reserves": [ - "3815433415523043176868770", - "2882275204868384489188992" - ] - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "13832051095147943936", - "outputIndex": 1, - "expectedQty": "13794494675019093133", - "swapFee": "10867048398666806", - "reserves": [ - "3815447247574138324812706", - "2882261410373709470095859" + "4197744867950787213979114", + "9533129722012358846570022" ], - "LPTokenSupply": "6582942105875090940137115", + "LPTokenSupply": "13555492090396743022011696", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "628460016920105687449", - "expectedQtys": [ - "364034392160978836191", - "274998502794540596999" + "type": "redeemBassets", + "inputQtys": [ + "25585834200786335170560", + "7820357326455441457152" ], - "redemptionFee": "377076010152063412", + "expectedQty": "33088202574084577490169", + "swapFee": "19864840448719978481", "reserves": [ - "3815083213181977345976515", - "2881986411870914929498860" + "4172159033750000878808554", + "9525309364685903405112870" ], - "LPTokenSupply": "6582313683565771849656007" + "LPTokenSupply": "13522386009466254596540893" }, { - "type": "redeemMasset", - "inputQty": "8793915279109170344755", - "expectedQtys": [ - "5093860678814484785543", - "3847999228321589788866" + "type": "mintMulti", + "inputQtys": [ + "108426879131561918464", + "185720687620602822656" ], - "redemptionFee": "5276349167465502206", + "expectedQty": "290521557984732154936", "reserves": [ - "3809989352503162861190972", - "2878138412642593339709994" + "4172267460629132440727018", + "9525495085373524007935526" ], - "LPTokenSupply": "6573520295921579425861472" + "LPTokenSupply": "13522676531024239328695829" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "67084264523541659648", - "outputIndex": 1, - "expectedQty": "66902107097833838458", - "swapFee": "52704211676564468", + "type": "mint", + "inputIndex": 1, + "inputQty": "93515279613176201216", + "expectedQty": "92117552164035369072", "reserves": [ - "3810056436767686402850620", - "2878071510535495505871536" - ], - "LPTokenSupply": "6573520301192000593517918", - "hardLimitError": false, - "insufficientLiquidityError": false + "4172267460629132440727018", + "9525588600653137184136742" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5734652489265460224", - "expectedQty": "5824765785875431646", - "swapFee": "3440791493559276", + "type": "mintMulti", + "inputQtys": [ + "120969808232799360", + "18354814331785540" + ], + "expectedQty": "138101811629531073", "reserves": [ - "3810056436767686402850620", - "2878065685769709630439890" + "4172267581598940673526378", + "9525588619007951515922282" ], - "LPTokenSupply": "6573514566883590477413621" + "LPTokenSupply": "13522768786678214993595974" }, { "type": "redeemMasset", - "inputQty": "2539047072501361278976", + "inputQty": "5276930183241007313715", "expectedQtys": [ - "1470766999279408363476", - "1110997724742272194158" + "1627148627782026280608", + "3714897989427363993815" ], - "redemptionFee": "1523428243500816767", + "redemptionFee": "3166158109944604388", "reserves": [ - "3808585669768406994487144", - "2876954688044967358245732" + "4170640432971158647245770", + "9521873721018524151928467" ], - "LPTokenSupply": "6570975672153913466216321" + "LPTokenSupply": "13517492173110784980742697" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1364004206731368333312", - "expectedQty": "1342094750649783801138", + "type": "redeemMasset", + "inputQty": "2262696880368558489", + "expectedQtys": [ + "697705819909811588", + "1592912843572113263" + ], + "redemptionFee": "1357618128221135", "reserves": [ - "3808585669768406994487144", - "2878318692251698726579044" - ] + "4170639735265338737434182", + "9521872128105680579815204" + ], + "LPTokenSupply": "13517489910549666425006321" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "284975385219687448576", - "expectedQty": "289454004651203680269", - "swapFee": "170985231131812469", + "inputQty": "117429351877900276596736", + "expectedQty": "119136595342177591606204", + "swapFee": "70457611126740165958", "reserves": [ - "3808585669768406994487144", - "2878029238247047522898775" + "4170639735265338737434182", + "9402735532763502988209000" ], - "LPTokenSupply": "6572032808617866675750129" + "LPTokenSupply": "13400067604432878822426180" }, { "type": "redeemBassets", "inputQtys": [ - "25864095578974142464", - "297981320545781874688" + "166282801749011365888", + "667988728618679009280" ], - "expectedQty": "318594766349852451311", - "swapFee": "191271622783581619", + "expectedQty": "822994278593376754106", + "swapFee": "494093022969807937", "reserves": [ - "3808559805672828020344680", - "2877731256926501741024087" + "4170473452463589726068294", + "9402067544034884309199720" ], - "LPTokenSupply": "6571714041707056318075359" + "LPTokenSupply": "13399244165470564772844929" }, { "type": "mint", "inputIndex": 0, - "inputQty": "38505295620348437331968", - "expectedQty": "37813639827227552110585", + "inputQty": "219387218404894605312", + "expectedQty": "217640800946989299978", "reserves": [ - "3847065101293176457676648", - "2877731256926501741024087" + "4170692839681994620673606", + "9402067544034884309199720" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "67616064145216225280", - "expectedQty": "66532745149522505459", + "inputQty": "162735341017687920738304", + "expectedQty": "160304869568247410320770", "reserves": [ - "3847065101293176457676648", - "2877798872990646957249367" + "4170692839681994620673606", + "9564802885052572229938024" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4210361246196179664896", - "2637784213092028121088" + "5254731962022892666880", + "1903999104872770699264" ], - "expectedQty": "6730189977134146046025", - "swapFee": "4040538309266047255", + "expectedQty": "7089198909600749007734", "reserves": [ - "3842854740046980278011752", - "2875161088777554929128279" + "4175947571644017513340486", + "9566706884157445000637288" ], - "LPTokenSupply": "6602860387817820907202847" + "LPTokenSupply": "13566855874749359921473411" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2175658002496361728", - "1662246292787173120" + "28873071332516849254400", + "1145695455188262715392" ], - "expectedQty": "3772156206173110379", + "expectedQty": "29776906165883475430570", + "swapFee": "17876869821422939021", "reserves": [ - "3842856915704982774373480", - "2875162751023847716301399" + "4147074500311500664086086", + "9565561188702256737921896" ], - "LPTokenSupply": "6602864159974027080313226" + "LPTokenSupply": "13537062879400637165397721" }, { - "type": "mintMulti", - "inputQtys": [ - "122897863443840761856", - "213907195933174562816" - ], - "expectedQty": "331168165984040499799", + "type": "mint", + "inputIndex": 0, + "inputQty": "18444503839857895800832", + "expectedQty": "18301145670758721441888", "reserves": [ - "3842979813568426615135336", - "2875376658219780890864215" - ], - "LPTokenSupply": "6603195328140011120813025" + "4165519004151358559886918", + "9565561188702256737921896" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "423532461060646961152", - "707646864450184019968" - ], - "expectedQty": "1112226507408263053235", - "swapFee": "667736546372781500", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5235280583597175", + "expectedQty": "5311687389084747", + "swapFee": "3141168350158", "reserves": [ - "3842556281107365968174184", - "2874669011355330706844247" + "4165519004151358559886918", + "9565561183390569348837149" ], - "LPTokenSupply": "6602082500669711122256439" + "LPTokenSupply": "13555364019836429420077449" }, { "type": "redeemBassets", "inputQtys": [ - "747452881077526069248", - "3277027514920662990848" + "295049359906236205629440", + "41612559867608968462336" ], - "expectedQty": "3958541031879552132401", - "swapFee": "2376550549457405722", + "expectedQty": "333830868740016527880529", + "swapFee": "200418772507514425383", "reserves": [ - "3841808828226288442104936", - "2871391983840410043853399" + "3870469644245122354257478", + "9523948623522960380374813" ], - "LPTokenSupply": "6598121820742337058458887" + "LPTokenSupply": "13221352774201156129214074" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "791439233642520576", - "1091938219692218752" + "208100997505369088", + "274207062194127040" ], - "expectedQty": "1851654257303284110", - "swapFee": "1111659550112037", + "expectedQty": "476636620960559210", "reserves": [ - "3841808036787054799584360", - "2871390891902190351634647" + "3870469852346119859626566", + "9523948897730022574501853" ], - "LPTokenSupply": "6598119968087586160073942" + "LPTokenSupply": "13221353250837777089773284" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "57944252488524087296", - "643543343917356928" + "2169650151792439808", + "17389218048097159168" ], - "expectedQty": "57535556254264087872", - "swapFee": "34542058987951223", + "expectedQty": "19277766439981818126", "reserves": [ - "3841750092534566275497064", - "2871390248358846434277719" + "3870472021996271652066374", + "9523966286948070671661021" ], - "LPTokenSupply": "6598062401443478806829968" + "LPTokenSupply": "13221372528604217071591410" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "542672984357761515520", + "expectedQty": "534382819495603548580", + "reserves": [ + "3870472021996271652066374", + "9524508959932428433176541" + ] + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "1262520409380732010496", - "expectedQty": "1284866165376349477848", - "swapFee": "757512245628439206", + "inputQty": "524255903019192877056", + "expectedQty": "520520983167737519864", "reserves": [ - "3840465226369189926019216", - "2871390248358846434277719" - ], - "LPTokenSupply": "6596799956785322637663392" + "3870996277899290844943430", + "9524508959932428433176541" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "15417189684873950920704", - "17686106684926248091648" + "type": "redeemMasset", + "inputQty": "1126182285279084150784", + "expectedQtys": [ + "329503170908887073643", + "810735965199884329377" ], - "expectedQty": "32542715803109227871618", + "redemptionFee": "675709371167450490", "reserves": [ - "3855882416054063876939920", - "2889076355043772682369367" + "3870666774728381957869787", + "9523698223967228548847164" ], - "LPTokenSupply": "6629342672588431865535010" + "LPTokenSupply": "13221301317692538445254119" }, { "type": "redeemBassets", "inputQtys": [ - "683720113392371499008", - "771383836208623124480" + "150971714076012675072", + "81691457848625627136" ], - "expectedQty": "1430449935877154961772", - "swapFee": "858785232665892512", + "expectedQty": "230339590095187776756", + "swapFee": "138286726092768327", "reserves": [ - "3855198695940671505440912", - "2888304971207564059244887" + "3870515803014305945194715", + "9523616532509379923220028" ], - "LPTokenSupply": "6627911449745845311269976" + "LPTokenSupply": "13221070853644389773985867" }, { - "type": "mintMulti", - "inputQtys": [ - "4528846965884196487168", - "1978294137235720110080" + "type": "redeemMasset", + "inputQty": "2732808243507337216", + "expectedQtys": [ + "799559368800534678", + "1967359703712180302" ], - "expectedQty": "6394025695117734323806", + "redemptionFee": "1639684946104402", "reserves": [ - "3859727542906555701928080", - "2890283265344799779354967" + "3870515003454937144660037", + "9523614565149676211039726" ], - "LPTokenSupply": "6634305475440963045593782" + "LPTokenSupply": "13221068121000114761259091" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "2193289802892189440", + "expectedQty": "2159784521303478356", + "reserves": [ + "3870515003454937144660037", + "9523616758439479103229166" + ] }, { "type": "mintMulti", "inputQtys": [ - "74935802455347259506688", - "72244639247530167631872" + "69566639638748271214592", + "76485729123503139979264" ], - "expectedQty": "144675341722689986227861", + "expectedQty": "144386338769787804713945", "reserves": [ - "3934663345361902961434768", - "2962527904592329946986839" + "3940081643093685415874629", + "9600102487562982243208430" ], - "LPTokenSupply": "6778980817163653031821643" + "LPTokenSupply": "13365456619554423869451392" }, { "type": "redeemBassets", "inputQtys": [ - "205096711394894784", - "227688587681139552" + "958540102414261551104", + "74581635408366682112" + ], + "expectedQty": "1025059475929757878462", + "swapFee": "615404928514963705", + "reserves": [ + "3939123102991271154323525", + "9600027905927573876526318" ], - "expectedQty": "425447637947949119", - "swapFee": "255421835870291", + "LPTokenSupply": "13364431006214058448105594" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "26756815800325212471296", + "expectedQty": "26934390463218392670931", + "swapFee": "16054089480195127482", "reserves": [ - "3934663140265191566539984", - "2962527676903742265847287" + "3912188712528052761652594", + "9600027905927573876526318" ], - "LPTokenSupply": "6778980391486135431589261" + "LPTokenSupply": "13337675795822681255147046" }, { "type": "redeemBassets", "inputQtys": [ - "700323755208746860544", - "6922578827368514715648" + "10978569446177167360", + "8680643031346206720" ], - "expectedQty": "7499249390930052400680", - "swapFee": "4502250985149120912", + "expectedQty": "19448152197794701147", + "swapFee": "11675896856790895", "reserves": [ - "3933962816509982819679440", - "2955605098076373751131639" + "3912177733958606584485234", + "9600019225284542530319598" ], - "LPTokenSupply": "6771477090069318744979759" + "LPTokenSupply": "13337656337162176289334092" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "882692715134376960", - "expectedQty": "866833908869669607", + "type": "redeemMasset", + "inputQty": "1440140026197688765644", + "expectedQtys": [ + "422165870201498292283", + "1035944874133431605303" + ], + "redemptionFee": "864084015718613259", "reserves": [ - "3933963699202697954056400", - "2955605098076373751131639" - ] + "3911755568088405086192951", + "9598983280410409098714295" + ], + "LPTokenSupply": "13336216283544380172429773" }, { "type": "mintMulti", "inputQtys": [ - "1008810017833867673600", - "1110261962321802166272" + "252265178037341093888", + "1463567286856197603328" ], - "expectedQty": "2083137189930015882339", + "expectedQty": "1691684916137754930142", "reserves": [ - "3934972509220531821730000", - "2956715360038695553297911" + "3912007833266442427286839", + "9600446847697265296317623" ], - "LPTokenSupply": "6773561094093157630531705" + "LPTokenSupply": "13337907968460517927359915" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1977485747341097172992", - "expectedQty": "1945760664711392186238", + "inputQty": "4179871541370163822592", + "expectedQty": "4116056772284852725060", "reserves": [ - "3934972509220531821730000", - "2958692845786036650470903" + "3912007833266442427286839", + "9604626719238635460140215" ] }, { "type": "redeemMasset", - "inputQty": "196382552659815799193", + "inputQty": "21734882536801287589068", "expectedQtys": [ - "113983544935388216190", - "85703851335029471725" + "6369049730381253349862", + "15637071249292928978280" ], - "redemptionFee": "117829531595889479", + "redemptionFee": "13040929522080772553", "reserves": [ - "3934858525675596433513810", - "2958607141934701620999178" + "3905638783536061173936977", + "9588989647989342531161935" ], - "LPTokenSupply": "6775310483988162366507697" + "LPTokenSupply": "13320290446788953700573162" }, { "type": "redeemBassets", "inputQtys": [ - "8420973277895474544640", - "8377785525455447654400" + "39873096970852999168", + "42706835122125742080" ], - "expectedQty": "16513069884961216999358", - "swapFee": "9913790205099790073", + "expectedQty": "81642763452025018388", + "swapFee": "49015067111481900", "reserves": [ - "3926437552397700958969170", - "2950229356409246173344778" + "3905598910439090320937809", + "9588946941154220405419855" ], - "LPTokenSupply": "6758788491692016559697272" + "LPTokenSupply": "13320208759911941275221063" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "21905765970351644", - "expectedQty": "22249572014079272", - "swapFee": "13143459582210", + "type": "mint", + "inputIndex": 0, + "inputQty": "12942255419396301258752", + "expectedQty": "12849499431531560289541", "reserves": [ - "3926437552397700958969170", - "2950229334159674159265506" - ], - "LPTokenSupply": "6758788469787564935303849" + "3918541165858486622196561", + "9588946941154220405419855" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "219418371992881496064", - "889473068931766681600" + "14780571312421504811008", + "21025186882792798027776" ], - "expectedQty": "1090679623577137857493", - "swapFee": "654800654539006118", + "expectedQty": "35378784692123827444998", "reserves": [ - "3926218134025708077473106", - "2949339861090742392583906" + "3933321737170908127007569", + "9609972128037013203447631" ], - "LPTokenSupply": "6757697200843398712340848" + "LPTokenSupply": "13368437044035596662955602" }, { - "type": "redeemMasset", - "inputQty": "178525463008087375872", - "expectedQtys": [ - "103660956015329047353", - "77869180768442312589" + "type": "redeemBassets", + "inputQtys": [ + "7522206545202553815040", + "5693170117844163100672" ], - "redemptionFee": "107115277804852425", + "expectedQty": "13074438059764747889071", + "swapFee": "7849372459334449403", "reserves": [ - "3926114473069692748425753", - "2949261991909973950271317" + "3925799530625705573192529", + "9604278957919169040346959" ], - "LPTokenSupply": "6757518686091918405450218" + "LPTokenSupply": "13355355541540618514062067" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10647574833191438", - "expectedQty": "10476765640031249", - "reserves": [ - "3926114473069692748425753", - "2949262002557548783462755" - ] - }, - { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8507619223138087206912", - "136207602033348396974080" + "97352218535921419550720", + "17563387898368844890112" ], - "expectedQty": "142365948726098154768078", + "expectedQty": "113959005236791039797126", + "swapFee": "68416453013882953650", "reserves": [ - "3934622092292830835632665", - "3085469604590897180436835" + "3828447312089784153641809", + "9586715570020800195456847" ], - "LPTokenSupply": "6899884645294782200249545" + "LPTokenSupply": "13241334961496114979606655" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "190278039631469721157632", - "expectedQty": "186870310318010310609268", - "reserves": [ - "4124900131924300556790297", - "3085469604590897180436835" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3918593812365787648", - "expectedQty": "3980020992703498567", - "swapFee": "2351156287419472", + "type": "redeemMasset", + "inputQty": "3023495477976228272537", + "expectedQtys": [ + "873654204317867127299", + "2187694822624167243238" + ], + "redemptionFee": "1814097286785736963", "reserves": [ - "4124900131924300556790297", - "3085465624569904476938268" + "3827573657885466286514510", + "9584527875198176028213609" ], - "LPTokenSupply": "7086751037254095773813112" + "LPTokenSupply": "13238311647427867429907814" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "7813972723049958473728", - "expectedQty": "7673444078898294000015", - "reserves": [ - "4132714104647350515264025", - "3085465624569904476938268" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "11233655517685649244160", - "20484149451853655965696" - ], - "expectedQty": "31187554853888909490642", + "inputQty": "173026265437345450819584", + "expectedQty": "174086686919737978427722", + "swapFee": "103815759262407270491", "reserves": [ - "4143947760165036164508185", - "3105949774021758132903964" + "3653486970965728308086788", + "9584527875198176028213609" ], - "LPTokenSupply": "7125612036186882977303769" + "LPTokenSupply": "13065295763566448219815279" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1357414586429860864", - "expectedQty": "1333014841219182970", + "inputQty": "936296398796283445248", + "expectedQty": "941785045436364218233", + "swapFee": "561777839277770067", "reserves": [ - "4143949117579622594369049", - "3105949774021758132903964" - ] + "3652545185920291943868555", + "9584527875198176028213609" + ], + "LPTokenSupply": "13064359523345435864147037" }, { "type": "redeemBassets", "inputQtys": [ - "856348059609607168", - "446986591828327744" + "39771008816515000", + "80272176039379152" ], - "expectedQty": "1280775167630181770", - "swapFee": "768926456451980", + "expectedQty": "118537713001064705", + "swapFee": "71165326996836", "reserves": [ - "4143948261231562984761881", - "3105949327035166304576220" + "3652545146149283127353555", + "9584527794925999988834457" ], - "LPTokenSupply": "7125612087734522755498186" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "309354340686765", - "expectedQty": "314827808636367", - "swapFee": "185612604412", - "reserves": [ - "4143948260916735176125514", - "3105949327035166304576220" - ], - "LPTokenSupply": "7125612087425186976071862" + "LPTokenSupply": "13064359404743674068785178" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "38816472335364250402816", - "outputIndex": 1, - "expectedQty": "38705748378037998278518", - "swapFee": "30494544856702618417", + "inputIndex": 1, + "inputQty": "2364547464260189184", + "outputIndex": 0, + "expectedQty": "2342773419926788310", + "swapFee": "0", "reserves": [ - "4182764733252099426528330", - "3067243578657128306297702" + "3652542803375863200565245", + "9584530159473464249023641" ], - "LPTokenSupply": "7125615136879672646333703", + "LPTokenSupply": "13064359404743674068785178", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "14535059739368536473", + "inputQty": "481018080092379152384", "expectedQtys": [ - "8527019220825632703", - "6252908451254979257" - ], - "redemptionFee": "8721035843621121", - "reserves": [ - "4182756206232878600895627", - "3067237325748677051318445" + "134402683580604071714", + "352682129584316459120" ], - "LPTokenSupply": "7125600602692036862159342" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "12974266149338054656", - "expectedQty": "13204780763483848291", - "swapFee": "7784559689602832", + "redemptionFee": "288610848055427491", "reserves": [ - "4182743001452115117047336", - "3067237325748677051318445" + "3652408400692282596493531", + "9584177477343879932564521" ], - "LPTokenSupply": "7125587629204343493064969" + "LPTokenSupply": "13063878415524666495175543" }, { - "type": "redeemBassets", - "inputQtys": [ - "2221121775078088376320", - "2496604663300872470528" + "type": "redeemMasset", + "inputQty": "7587270601419736678", + "expectedQtys": [ + "2119981747802341249", + "5562981761792070398" ], - "expectedQty": "4637833629455672007235", - "swapFee": "2784370800153495301", + "redemptionFee": "4552362360851842", "reserves": [ - "4180521879677037028671016", - "3064740721085376178847917" + "3652406280710534794152282", + "9584171914362118140494123" ], - "LPTokenSupply": "7120947289641167682911962" + "LPTokenSupply": "13063870828709301311524049" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1541613725928257024", - "expectedQty": "1517032979945590653", + "inputQty": "140673232425097920512", + "expectedQty": "138482614012153849810", "reserves": [ - "4180521879677037028671016", - "3064742262699102107104941" + "3652406280710534794152282", + "9584312587594543238414635" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "73092541461153154334720", - "expectedQty": "71771427285250977649814", + "inputQty": "7851245031448147968", + "expectedQty": "7800818140305857747", "reserves": [ - "4253614421138190183005736", - "3064742262699102107104941" + "3652414131955566242300250", + "9584312587594543238414635" ] }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "56434140317088317440", - "expectedQty": "57440017977412461517", - "swapFee": "33860484190252990", - "reserves": [ - "4253556981120212770544219", - "3064742262699102107104941" - ], - "LPTokenSupply": "7192663803205129936860288" - }, { "type": "mint", - "inputIndex": 0, - "inputQty": "495709719306770752", - "expectedQty": "486736744550056525", + "inputIndex": 1, + "inputQty": "81964337732174192", + "expectedQty": "80687955199936175", "reserves": [ - "4253557476829932077314971", - "3064742262699102107104941" + "3652414131955566242300250", + "9584312669558880970588827" ] }, { "type": "redeemMasset", - "inputQty": "148277850330019056844", + "inputQty": "287877661696688537", "expectedQtys": [ - "87635111065257891146", - "63142212146194081999" + "80436021729071930", + "211072445318267183" ], - "redemptionFee": "88966710198011434", + "redemptionFee": "172726597018013", "reserves": [ - "4253469841718866819423825", - "3064679120486955913022942" + "3652414051519544513228320", + "9584312458486435652321644" ], - "LPTokenSupply": "7192516020988215487661112" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "573274486802094292992", - "expectedQty": "564175784622214484312", - "reserves": [ - "4253469841718866819423825", - "3065252394973758007315934" - ] + "LPTokenSupply": "13064016904969019934181045" }, { "type": "mintMulti", "inputQtys": [ - "11036119250956515328", - "31910889641400885248" + "21452001644656056", + "26336997974973316" ], - "expectedQty": "42240761811164856057", + "expectedQty": "47241087051757153", "reserves": [ - "4253480877838117775939153", - "3065284305863399408201182" + "3652414072971546157884376", + "9584312484823433627294960" ], - "LPTokenSupply": "7193122437534648867001481" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1824591304564185235456", - "expectedQty": "1791563756226746116554", - "reserves": [ - "4255305469142681961174609", - "3065284305863399408201182" - ] + "LPTokenSupply": "13064016952210106985938198" }, { "type": "mintMulti", "inputQtys": [ - "102769220826946437120", - "1342478323573155692544" + "76171145250881241088", + "118504268657965711360" ], - "expectedQty": "1422080889483276540695", + "expectedQty": "192340782755656100065", "reserves": [ - "4255408238363508907611729", - "3066626784186972563893726" + "3652490244116797039125464", + "9584430989092091593006320" ], - "LPTokenSupply": "7196336082180358889658730" + "LPTokenSupply": "13064209292992862642038263" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "4261399035411814154240", - "expectedQty": "4193750113422002069250", + "inputQty": "842990864610184527872", + "expectedQty": "855811922538042171757", + "swapFee": "505794518766110716", "reserves": [ - "4255408238363508907611729", - "3070888183222384378047966" - ] + "3652490244116797039125464", + "9583575177169553550834563" + ], + "LPTokenSupply": "13063366352707704334121462" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "164515029493811999932416", - "expectedQty": "167048352993099865637961", - "swapFee": "98709017696287199959", + "type": "swap", + "inputIndex": 0, + "inputQty": "216250985550954102784000", + "outputIndex": 1, + "expectedQty": "217946618930836196300632", + "swapFee": "171832216469738936397", "reserves": [ - "4255408238363508907611729", - "2903839830229284512410005" + "3868741229667751141909464", + "9365628558238717354533931" ], - "LPTokenSupply": "7036024673701738520515559" + "LPTokenSupply": "13063383535929351308015101", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "126304331784436039680", - "79009857041501700096" + "165238506905961871966208", + "38244838167888680452096" ], - "expectedQty": "201769095247071623916", + "expectedQty": "201663032848172584594310", "reserves": [ - "4255534542695293343651409", - "2903918840086326014110101" + "4033979736573713013875672", + "9403873396406606034986027" ], - "LPTokenSupply": "7036226442796985592139475" + "LPTokenSupply": "13265046568777523892609411" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "239349914914858401792", - "expectedQty": "234973814590441669696", + "type": "redeemMasset", + "inputQty": "91749019420575753830", + "expectedQtys": [ + "27884682881749065056", + "65003803846976290057" + ], + "redemptionFee": "55049411652345452", "reserves": [ - "4255773892610208202053201", - "2903918840086326014110101" - ] + "4033951851890831264810616", + "9403808392602759058695970" + ], + "LPTokenSupply": "13264954825263044482090126" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1213767062822484705280", - "expectedQty": "1194780838693597793986", + "inputIndex": 0, + "inputQty": "207919687533104791552", + "expectedQty": "206320441311206266003", "reserves": [ - "4255773892610208202053201", - "2905132607149148498815381" + "4034159771578364369602168", + "9403808392602759058695970" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6384533486777118720", - "3291623247466520576" + "396713007988304445440", + "4319730754518437068800" ], - "expectedQty": "9507942328815550664", - "swapFee": "5708190311476216", + "expectedQty": "4648263290642998871453", "reserves": [ - "4255767508076721424934481", - "2905129315525901032294805" + "4034556484586352674047608", + "9408128123357277495764770" ], - "LPTokenSupply": "7037646684370569535723897" + "LPTokenSupply": "13269809408994998687227582" }, { "type": "redeemMasset", - "inputQty": "1529262002832690", + "inputQty": "6691416029058831155", "expectedQtys": [ - "924212158491957", - "630898147115618" + "2033239284903121668", + "4741283402746341310" ], - "redemptionFee": "917557201699", + "redemptionFee": "4014849617435298", "reserves": [ - "4255767507152509266442524", - "2905129314895002885179187" + "4034554451347067770925940", + "9408123382073874749423460" ], - "LPTokenSupply": "7037646682841399288611376" + "LPTokenSupply": "13269802717980454590139956" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "96167164045467037204480", - "expectedQty": "97628969581015821096233", - "swapFee": "57700298427280222322", + "type": "redeemMasset", + "inputQty": "7223441738065621968486", + "expectedQtys": [ + "2194899473334486686996", + "5118256626697696150897" + ], + "redemptionFee": "4334065042839373181", "reserves": [ - "4255767507152509266442524", - "2807500345313987064082954" + "4032359551873733284238944", + "9403005125447177053272563" ], - "LPTokenSupply": "6941485288825774979429128" + "LPTokenSupply": "13262579709648893252108788" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "149265236001538342912", - "expectedQty": "151522756890259549313", - "swapFee": "89559141600923005", + "inputIndex": 0, + "inputQty": "206731989265712746070016", + "expectedQty": "208154585263988355618966", + "swapFee": "124039193559427647642", "reserves": [ - "4255767507152509266442524", - "2807348822557096804533641" + "3824204966609744928619978", + "9403005125447177053272563" ], - "LPTokenSupply": "6941336032545687601178516" + "LPTokenSupply": "13055860124302536448803536" }, { "type": "redeemMasset", - "inputQty": "2670149311623718554828", + "inputQty": "1748362456492855105945", "expectedQtys": [ - "1636099521129374105075", - "1079265269192765694965" + "511807316262682856743", + "1258438514692322778974" ], - "redemptionFee": "1602089586974231132", + "redemptionFee": "1049017473895713063", "reserves": [ - "4254131407631379892337449", - "2806269557287904038838676" + "3823693159293482245763235", + "9401746686932484730493589" ], - "LPTokenSupply": "6938666043443022580046801" + "LPTokenSupply": "13054111866747790983268897" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "124439247424851378176", - "207532750279200571392" + "621692179258055589888", + "440234746040870830080" ], - "expectedQty": "326467913844929897161", + "expectedQty": "1050732235450785334060", + "swapFee": "630817831969652992", "reserves": [ - "4254255846878804743715625", - "2806477090038183239410068" + "3823071467114224190173347", + "9401306452186443859663509" ], - "LPTokenSupply": "6938992511356867509943962" + "LPTokenSupply": "13053060566776291425247143" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4687659588760689442816", - "expectedQty": "4758538542989921549719", - "swapFee": "2812595753256413665", + "type": "redeemMasset", + "inputQty": "81907776186340933632", + "expectedQtys": [ + "23975327234754703135", + "58957673316925824887" + ], + "redemptionFee": "49144665711804560", "reserves": [ - "4254255846878804743715625", - "2801718551495193317860349" + "3823047491786989435470212", + "9401247494513126933838622" ], - "LPTokenSupply": "6934305133027682146142512" + "LPTokenSupply": "13052978663914571655493967" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "748210496136755412992", - "expectedQty": "759520307407509202938", - "swapFee": "448926297682053247", + "type": "mint", + "inputIndex": 0, + "inputQty": "47143398902075364474880", + "expectedQty": "46802553415611424329564", "reserves": [ - "4254255846878804743715625", - "2800959031187785808657411" - ], - "LPTokenSupply": "6933556967424175158934844" + "3870190890689064799945092", + "9401247494513126933838622" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "4772394965936529997824", - "4138209566004756348928" - ], - "expectedQty": "8758709355179663087499", - "swapFee": "5258380641492693468", + "type": "swap", + "inputIndex": 1, + "inputQty": "3635392592746213015552", + "outputIndex": 0, + "expectedQty": "3606194815912372569594", + "swapFee": "0", "reserves": [ - "4249483451912868213717801", - "2796820821621781052308483" + "3866584695873152427375498", + "9404882887105873146854174" ], - "LPTokenSupply": "6924793525526418152423222" + "LPTokenSupply": "13099781217330183079823531", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "412801508154873512722432", - "expectedQty": "405141188838293526299072", + "inputIndex": 1, + "inputQty": "47600765398523532279808", + "expectedQty": "46873764472181275550246", "reserves": [ - "4662284960067741726440233", - "2796820821621781052308483" + "3866584695873152427375498", + "9452483652504396679133982" ] }, { - "type": "redeemMasset", - "inputQty": "64106159481553325496729", - "expectedQtys": [ - "40750957017837450932486", - "24445765555875852285048" + "type": "redeemBassets", + "inputQtys": [ + "38502384512767235194880", + "50992517279792790241280" + ], + "expectedQty": "88437700592154665055291", + "swapFee": "53094477041517709658", + "reserves": [ + "3828082311360385192180618", + "9401491135224603888892702" ], - "redemptionFee": "38463695688931995298", + "LPTokenSupply": "13058169496180872324379792" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1008321879136477511680", + "expectedQty": "1015006477852824094021", + "swapFee": "604993127481886507", "reserves": [ - "4621534003049904275507747", - "2772375056065905200023435" + "3827067304882532368086597", + "9401491135224603888892702" ], - "LPTokenSupply": "7265832401252727246425094" + "LPTokenSupply": "13057161234801048595056762" }, { "type": "mint", "inputIndex": 1, - "inputQty": "185795429623196909568", - "expectedQty": "183006920597352097509", + "inputQty": "4941198134177371783168", + "expectedQty": "4865553251522669230646", "reserves": [ - "4621534003049904275507747", - "2772560851495528396933003" + "3827067304882532368086597", + "9406432333358781260675870" ] }, { "type": "mintMulti", "inputQtys": [ - "718960419991205183488", - "1792167814778497007616" + "46842713500981636628480", + "71225979606759997702144" ], - "expectedQty": "2470776889288057898913", + "expectedQty": "116641687007036965036781", "reserves": [ - "4622252963469895480691235", - "2774353019310306893940619" + "3873910018383514004715077", + "9477658312965541258378014" ], - "LPTokenSupply": "7268486185062612656421516" + "LPTokenSupply": "13178668475059608229324189" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "81701949284320144", - "51422997391869232" + "26459998867991146496", + "39531723595830214656" ], - "expectedQty": "130824539639664419", + "expectedQty": "65196138320547937557", + "swapFee": "39141167692944529", "reserves": [ - "4622253045171844765011379", - "2774353070733304285809851" + "3873883558384646013568581", + "9477618781241945428163358" ], - "LPTokenSupply": "7268486315887152296085935" + "LPTokenSupply": "13178603243694236757736554" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "9287611626565624922112", - "expectedQty": "9458965252881129029647", - "swapFee": "5572566975939374953", + "inputQty": "127490971725108361560064", + "expectedQty": "126548935968685431534486", "reserves": [ - "4612794079918963635981732", - "2774353070733304285809851" - ], - "LPTokenSupply": "7259199261517284265101318" + "4001374530109754375128645", + "9477618781241945428163358" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "2024372023068829417472", - "1340043449713115004928" - ], - "expectedQty": "3306424013140850017240", + "type": "swap", + "inputIndex": 1, + "inputQty": "501376999495391", + "outputIndex": 0, + "expectedQty": "497535157197607", + "swapFee": "0", "reserves": [ - "4614818451942032465399204", - "2775693114183017400814779" + "4001374529612219217931038", + "9477618781743322427658749" ], - "LPTokenSupply": "7262505685530425115118558" + "LPTokenSupply": "13305152179662922189271040", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "67004602343733", - "45991130153829" + "5712426092556884992", + "5880717336650253312" ], - "expectedQty": "111051680372307", + "expectedQty": "11460893914256532584", "reserves": [ - "4614818452009037067742937", - "2775693114229008530968608" + "4001380242038311774816030", + "9477624662460659077912061" ], - "LPTokenSupply": "7262505685641476795490865" + "LPTokenSupply": "13305163640556836445803624" }, { - "type": "redeemMasset", - "inputQty": "1963839359865550851276", - "expectedQtys": [ - "1247134921398734581262", - "750119175833230477856" - ], - "redemptionFee": "1178303615919330510", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1434506346480628662272", + "expectedQty": "1444549445589234022359", + "swapFee": "860703807888377197", "reserves": [ - "4613571317087638333161675", - "2774942995053175300490752" + "3999935692592722540793671", + "9477624662460659077912061" ], - "LPTokenSupply": "7260541964111972836572640" + "LPTokenSupply": "13303729220280736605979071" }, { "type": "mintMulti", "inputQtys": [ - "7945860064935801782272", - "161173890380496928768" + "1319151808843428", + "1229204632222806" ], - "expectedQty": "7955988778492787512270", + "expectedQty": "2519771261337856", "reserves": [ - "4621517177152574134943947", - "2775104168943555797419520" + "3999935693911874349637099", + "9477624663689863710134867" ], - "LPTokenSupply": "7268497952890465624084910" + "LPTokenSupply": "13303729222800507867316927" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "277107428049083498496", - "expectedQty": "281162614194273168456", - "swapFee": "166264456829450099", + "inputQty": "29474823560629854404608", + "outputIndex": 0, + "expectedQty": "29246660295877328033146", + "swapFee": "0", "reserves": [ - "4621517177152574134943947", - "2774823006329361524251064" + "3970689033615997021603953", + "9507099487250493564539475" ], - "LPTokenSupply": "7268220862088862223531423" + "LPTokenSupply": "13303729222800507867316927", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "111552939193505304018944", + "expectedQty": "110707373928359518740475", + "reserves": [ + "4082241972809502325622897", + "9507099487250493564539475" + ] }, { "type": "redeem", + "inputIndex": 0, + "inputQty": "113198934194439977959424", + "expectedQty": "113994747210469844178635", + "swapFee": "67919360516663986775", + "reserves": [ + "3968247225599032481444262", + "9507099487250493564539475" + ], + "LPTokenSupply": "13301244454470479074496655" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "25374069327483543552", + "outputIndex": 1, + "expectedQty": "25553687814153822634", + "swapFee": "20148197720718409", + "reserves": [ + "3968272599668359964987814", + "9507073933562679410716841" + ], + "LPTokenSupply": "13301244456485298846568495", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "26778493786061216415744", - "expectedQty": "27169617003231294268039", - "swapFee": "16067096271636729849", + "inputQty": "156707372140936078295040", + "outputIndex": 0, + "expectedQty": "155417179328317759873199", + "swapFee": "0", "reserves": [ - "4621517177152574134943947", - "2747653389326130229983025" + "3812855420340042205114615", + "9663781305703615489011881" ], - "LPTokenSupply": "7241443975012428170788663" + "LPTokenSupply": "13301244456485298846568495", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2326673831686776553472", - "670161788424438677504" + "38054264342205469556736", + "35840574830396160606208" ], - "expectedQty": "2943201536280008576019", + "expectedQty": "73079752523924697335050", "reserves": [ - "4623843850984260911497419", - "2748323551114554668660529" + "3850909684682247674671351", + "9699621880534011649618089" ], - "LPTokenSupply": "7244387176548708179364682" + "LPTokenSupply": "13374324209009223543903545" }, { - "type": "redeemBassets", - "inputQtys": [ - "10436634099381430124544", - "52916222755892661059584" + "type": "redeemMasset", + "inputQty": "84710875839202158182", + "expectedQtys": [ + "24376424461744848329", + "61399025019677793729" ], - "expectedQty": "62367847425715423922871", - "swapFee": "37443174360045281522", + "redemptionFee": "50826525503521294", "reserves": [ - "4613407216884879481372875", - "2695407328358662007600945" + "3850885308257785929823022", + "9699560481508991971824360" ], - "LPTokenSupply": "7181985630266068714688440" + "LPTokenSupply": "13374239503216036892097492" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 0, + "inputQty": "48018047201463905550336", + "expectedQty": "48320127021598675223569", + "swapFee": "28810828320878343330", + "reserves": [ + "3802565181236187254599453", + "9699560481508991971824360" + ], + "LPTokenSupply": "13326224337097405074381489" + }, + { + "type": "mintMulti", "inputQtys": [ - "21949372000644978704384", - "20438967678359291559936" + "2077986247605243392", + "1032154156676582656" ], - "expectedQty": "41671763351735351981029", - "swapFee": "25018068852352622762", + "expectedQty": "3080077887397961369", "reserves": [ - "4591457844884234502668491", - "2674968360680302716041009" + "3802567259222434859842845", + "9699561513663148648407016" ], - "LPTokenSupply": "7140291350652366245346924" + "LPTokenSupply": "13326227417175292472342858" }, { "type": "redeemMasset", - "inputQty": "5390057682341659", + "inputQty": "959890572086760334950", "expectedQtys": [ - "3463916594121669", - "2018066506618348" + "273735267947987436455", + "698241974150773395106" + ], + "redemptionFee": "575934343252056200", + "reserves": [ + "3802293523954486872406390", + "9698863271688997875011910" ], - "redemptionFee": "3234034609404", + "LPTokenSupply": "13325267584196640037213528" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "19360267788700866314240", + "expectedQty": "19652733911181150709000", + "swapFee": "11616160673220519788", "reserves": [ - "4591457841420317908546822", - "2674968358662236209422661" + "3802293523954486872406390", + "9679210537777816724302910" ], - "LPTokenSupply": "7140291345262631966466205" + "LPTokenSupply": "13305908478024006492951266" }, { "type": "redeemBassets", "inputQtys": [ - "4431598157820074131456", - "50367713152574410457088" + "424764842389039360", + "273843534922627328" ], - "expectedQty": "53970194194219847816062", - "swapFee": "32401557451002510195", + "expectedQty": "691482596394063926", + "swapFee": "415138641021050", "reserves": [ - "4587026243262497834415366", - "2624600645509661798965573" + "3802293099189644483367030", + "9679210263934281801675582" ], - "LPTokenSupply": "7086291989666706216390966" + "LPTokenSupply": "13305907786167785321968394" }, { - "type": "redeemMasset", - "inputQty": "12405266625146480", - "expectedQtys": [ - "8025232614885733", - "4591870546267753" + "type": "mintMulti", + "inputQtys": [ + "25278273112454115360768", + "29273247505483021942784" + ], + "expectedQty": "53926445365009641051095", + "reserves": [ + "3827571372302098598727798", + "9708483511439764823618366" ], - "redemptionFee": "7443159975087", + "LPTokenSupply": "13359834231532794963019489" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "7430531049761196032", + "expectedQty": "7542631322524906491", + "swapFee": "4458318629856717", "reserves": [ - "4587026235237265219529633", - "2624600640917791252697820" + "3827571372302098598727798", + "9708475968808442298711875" ], - "LPTokenSupply": "7086291977262183907241994" + "LPTokenSupply": "13359826801447577064809128" }, { "type": "redeemBassets", "inputQtys": [ - "135427851793036820480", - "1621204640175200141312" + "9897353657993045999616", + "10917085631643257929728" ], - "expectedQty": "1730158362756971375133", - "swapFee": "1038718248603344831", + "expectedQty": "20578050961057547720718", + "swapFee": "12354243122508033452", "reserves": [ - "4586890807385472182709153", - "2622979436277616052556508" + "3817674018644105552728182", + "9697558883176799040782147" ], - "LPTokenSupply": "7084560884053003192856512" + "LPTokenSupply": "13339237631667709259858302" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "14797005201121489190912", - "expectedQty": "15072672953343587156044", - "swapFee": "8878203120672893514", + "inputQty": "61531510238937234800640", + "expectedQty": "61911637121268579862763", + "swapFee": "36918906143362340880", "reserves": [ - "4571818134432128595553109", - "2622979436277616052556508" + "3755762381522836972865419", + "9697558883176799040782147" ], - "LPTokenSupply": "7069764766672193770954951" + "LPTokenSupply": "13277709813319386361291750" }, { "type": "mintMulti", "inputQtys": [ - "3244732447894235774976", - "70122312237276360343552" + "654464168559331377152", + "564127904837281316864" ], - "expectedQty": "72264908314035556017929", + "expectedQty": "1205478683429906831315", "reserves": [ - "4575062866880022831328085", - "2693101748514892412900060" + "3756416845691396304242571", + "9698123011081636322099011" ], - "LPTokenSupply": "7142029674986229326972880" + "LPTokenSupply": "13278915292002816268123065" }, { - "type": "mintMulti", - "inputQtys": [ - "1615468118983168", - "130689176791257" - ], - "expectedQty": "1713856029585008", + "type": "mint", + "inputIndex": 1, + "inputQty": "309458413510366261673984", + "expectedQty": "304629269693596592796526", "reserves": [ - "4575062868495490950311253", - "2693101748645581589691317" - ], - "LPTokenSupply": "7142029676700085356557888" + "3756416845691396304242571", + "10007581424592002583772995" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "1559975548746453745664", - "2601708323364579835904" - ], - "expectedQty": "4093557111762886487904", + "type": "mint", + "inputIndex": 0, + "inputQty": "52296715584148768", + "expectedQty": "51968458303560607", "reserves": [ - "4576622844044237404056917", - "2695703456968946169527221" - ], - "LPTokenSupply": "7146123233811848243045792" + "3756416897988111888391339", + "10007581424592002583772995" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "33331257011947979145216", - "expectedQty": "33948597785957036262231", - "swapFee": "19998754207168787487", + "inputQty": "17461818212405239808", + "expectedQty": "17352212958733212687", "reserves": [ - "4542674246258280367794686", - "2695703456968946169527221" - ], - "LPTokenSupply": "7112793976675320980779324" + "3756434359806324293631147", + "10007581424592002583772995" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "17438930893673932521472", - "expectedQty": "17692947824395818025535", - "swapFee": "10463358536204359512", + "inputIndex": 0, + "inputQty": "989549186468427857920", + "expectedQty": "995200613124288267424", + "swapFee": "593729511881056714", "reserves": [ - "4542674246258280367794686", - "2678010509144550351501686" + "3755439159193200005363723", + "10007581424592002583772995" ], - "LPTokenSupply": "7095356092117500668693803" + "LPTokenSupply": "13582572476064312657940636" }, { "type": "redeemMasset", - "inputQty": "471887877131984594534", + "inputQty": "444503224795698", "expectedQtys": [ - "301936463654731963754", - "177998460582405639789" + "122826750001539", + "327311573867299" ], - "redemptionFee": "283132726279190756", + "redemptionFee": "266701934877", "reserves": [ - "4542372309794625635830932", - "2677832510683967945861897" + "3755439159070373255362184", + "10007581424264691009905696" ], - "LPTokenSupply": "7094884232553641312018344" + "LPTokenSupply": "13582572475619836103338425" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "297128304816283648000", - "expectedQty": "302635595239268475362", - "swapFee": "178276982889770188", - "reserves": [ - "4542069674199386367355570", - "2677832510683967945861897" - ], - "LPTokenSupply": "7094587122076523317347362" - }, - { - "type": "mintMulti", - "inputQtys": [ - "4433189709840885743616", - "6981507450718024368128" - ], - "expectedQty": "11227146863830005621874", + "inputIndex": 1, + "inputQty": "300001951912303552", + "expectedQty": "304597080635411182", + "swapFee": "180001171147382", "reserves": [ - "4546502863909227253099186", - "2684814018134685970230025" + "3755439159070373255362184", + "10007581119667610374494514" ], - "LPTokenSupply": "7105814268940353322969236" + "LPTokenSupply": "13582572175635884308149611" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1779317514218431744", - "4919290422672613376" + "394340856572662656", + "4252453632803887616" ], - "expectedQty": "6591692052782743883", + "expectedQty": "4577655335846009251", + "swapFee": "2748242146795682", "reserves": [ - "4546504643226741471530930", - "2684818937425108642843401" + "3755438764729516682699528", + "10007576867213977570606898" ], - "LPTokenSupply": "7105820860632406105713119" + "LPTokenSupply": "13582567595507130530024245" }, { "type": "swap", "inputIndex": 1, - "inputQty": "36003323615100916465664", + "inputQty": "289415920496848945545216", "outputIndex": 0, - "expectedQty": "36140774411777332478528", + "expectedQty": "286404279110889510113474", "swapFee": "0", "reserves": [ - "4510363868814964139052402", - "2720822261040209559309065" + "3469034485618627172586054", + "10296992787710826516152114" ], - "LPTokenSupply": "7105820860632406105713119", + "LPTokenSupply": "13582567595507130530024245", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "28471754901640699707392", - "10687191938884729569280" + "741119174748233216", + "763614573375572736" ], - "expectedQty": "38465234492074425644538", + "expectedQty": "1488793608147248038", + "swapFee": "893812452359764", "reserves": [ - "4538835623716604838759794", - "2731509452979094288878345" + "3469033744499452424352838", + "10296992024096253140579378" ], - "LPTokenSupply": "7144286095124480531357657" + "LPTokenSupply": "13582566105909091175652418" }, { "type": "redeemBassets", "inputQtys": [ - "3482152564545725399040", - "3530112260462945501184" + "72991430856246026240", + "826596270257887903744" ], - "expectedQty": "6893972413437150119085", - "swapFee": "4138866768123163969", + "expectedQty": "885852090832152922409", + "swapFee": "531830352710918304", "reserves": [ - "4535353471152059113360754", - "2727979340718631343377161" + "3468960753068596178326598", + "10296165427825995252675634" ], - "LPTokenSupply": "7137388397730952070390998" + "LPTokenSupply": "13581679775170941582903534" }, { - "type": "redeemMasset", - "inputQty": "76623093011969", - "expectedQtys": [ - "48659857614884", - "29268520555244" - ], - "redemptionFee": "45973855807", + "type": "redeem", + "inputIndex": 1, + "inputQty": "52815552853837864", + "expectedQty": "53652540789384726", + "swapFee": "31689331712302", "reserves": [ - "4535353471103399255745870", - "2727979340689362822821917" + "3468960753068596178326598", + "10296165374173454463290908" ], - "LPTokenSupply": "7137388397654333574764609" + "LPTokenSupply": "13581679722358557662236900" }, { "type": "mint", "inputIndex": 1, - "inputQty": "5305700252403733889024", - "expectedQty": "5225857457123376398630", + "inputQty": "7085934528543957450752", + "expectedQty": "6971195444170541797433", "reserves": [ - "4535353471103399255745870", - "2733285040941766556710941" + "3468960753068596178326598", + "10303251308701998420741660" ] }, { - "type": "redeemMasset", - "inputQty": "122335775899702", - "expectedQtys": [ - "77633071655591", - "46786499616966" - ], - "redemptionFee": "73401465539", - "reserves": [ - "4535353471025766184090279", - "2733285040894980057093975" - ], - "LPTokenSupply": "7142614254989128515410090" - }, - { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "32523876943719498252288", - "expectedQty": "33123869495899457419394", - "swapFee": "19514326166231698951", + "inputQty": "717941400780810354688", + "expectedQty": "714482402856254605609", "reserves": [ - "4502229601529866726670885", - "2733285040894980057093975" - ], - "LPTokenSupply": "7110092329478025640327697" + "3469678694469376988681286", + "10303251308701998420741660" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "32634756708279349248", - "41664183258193682432" - ], - "expectedQty": "73059933221343176769", - "reserves": [ - "4502262236286575006020133", - "2733326705078238250776407" + "14597847739490153529344", + "7641417354089577054208" ], - "LPTokenSupply": "7110165389411246983504466" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "332503496649139552256", - "outputIndex": 1, - "expectedQty": "331023795306099026214", - "swapFee": "261030346246583078", + "expectedQty": "22045482492197235308573", + "swapFee": "13235230633698560321", "reserves": [ - "4502594739783224145572389", - "2732995681282932151750193" + "3455080846729886835151942", + "10295609891347908843687452" ], - "LPTokenSupply": "7110165415514281608162773", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13567308006005816894627079" }, { - "type": "redeemMasset", - "inputQty": "2906296734557935616", - "expectedQtys": [ - "1839341857631060562", - "1116448102444732423" + "type": "redeemBassets", + "inputQtys": [ + "466946219815282147328", + "43867234760255619072" ], - "redemptionFee": "1743778040734761", + "expectedQty": "507876043668565131139", + "swapFee": "304908571343945445", "reserves": [ - "4502592900441366514511827", - "2732994564834829707017770" + "3454613900510071553004614", + "10295566024113148588068380" ], - "LPTokenSupply": "7110162509391924854300633" + "LPTokenSupply": "13566799855544434119945038" }, { - "type": "redeemMasset", - "inputQty": "457986524602899837747", - "expectedQtys": [ - "289851265048874177687", - "175934611346147043945" - ], - "redemptionFee": "274791914761739902", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2020730561296295680", + "expectedQty": "2052798327815553978", + "swapFee": "1212438336777777", "reserves": [ - "4502303049176317640334140", - "2732818630223483559973825" + "3454613900510071553004614", + "10295563971314820772514402" ], - "LPTokenSupply": "7109704550346513430636876" + "LPTokenSupply": "13566797834935116657327135" }, { - "type": "redeemMasset", - "inputQty": "446009510532779501158", - "expectedQtys": [ - "282271242501633813784", - "171333671203212364055" - ], - "redemptionFee": "267605706319667700", + "type": "mint", + "inputIndex": 1, + "inputQty": "99926254732107530240", + "expectedQty": "98306236299332621695", "reserves": [ - "4502020777933816006520356", - "2732647296552280347609770" - ], - "LPTokenSupply": "7109258567596551283102488" + "3454613900510071553004614", + "10295663897569552880044642" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "239856488135935229952", - "expectedQty": "244279067768634608636", - "swapFee": "143913892881561137", + "type": "mint", + "inputIndex": 1, + "inputQty": "26281475634373238784", + "expectedQty": "25855395864450115620", "reserves": [ - "4501776498866047371911720", - "2732647296552280347609770" - ], - "LPTokenSupply": "7109018725499804636028649" + "3454613900510071553004614", + "10295690179045187253283426" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "62408319486542292713472", - "expectedQty": "63557526592165955350187", - "swapFee": "37444991691925375628", + "inputQty": "18850548809378578825216", + "expectedQty": "18759932999017249818851", "reserves": [ - "4438218972273881416561533", - "2732647296552280347609770" - ], - "LPTokenSupply": "7046614150512431535852739" + "3473464449319450131829830", + "10295690179045187253283426" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "8490337852375111303168", - "1040303828727011213312" + "type": "redeemMasset", + "inputQty": "8086902485196751241216", + "expectedQtys": [ + "2066345634471050709417", + "6124851647612158550713" ], - "expectedQty": "9356475483133995584735", + "redemptionFee": "4852141491118050744", "reserves": [ - "4446709310126256527864701", - "2733687600381007358823082" + "3471398103684979081120413", + "10289565327397575094732713" ], - "LPTokenSupply": "7055970625995565531437474" + "LPTokenSupply": "13577595512295250050447159" }, { - "type": "redeemBassets", - "inputQtys": [ - "521398673147343077376", - "973481550714685489152" - ], - "expectedQty": "1470387291508614878179", - "swapFee": "882762032124443593", + "type": "redeem", + "inputIndex": 0, + "inputQty": "118893305042068381368320", + "expectedQty": "119369263269360528247367", + "swapFee": "71335983025241028820", "reserves": [ - "4446187911453109184787325", - "2732714118830292673333930" + "3352028840415618552873046", + "10289565327397575094732713" ], - "LPTokenSupply": "7054499444218228004560060" + "LPTokenSupply": "13458709340851484193181721" }, { - "type": "redeemBassets", - "inputQtys": [ - "5807834526037713920", - "35540477390478434304" - ], - "expectedQty": "40700919354279169420", - "swapFee": "24435212740211628", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3068416510159329280", + "expectedQty": "3079873828483988734", + "swapFee": "1841049906095597", "reserves": [ - "4446182103618583147073405", - "2732678578352902194899626" + "3352025760541790068884312", + "10289565327397575094732713" ], - "LPTokenSupply": "7054458721307182259200173" + "LPTokenSupply": "13458706272619079024462000" }, { "type": "swap", "inputIndex": 0, - "inputQty": "58877081784892109357056", + "inputQty": "108531060118580315029504", "outputIndex": 1, - "expectedQty": "58612449857210445097273", - "swapFee": "46221834816850382698", + "expectedQty": "109724335393005126031035", + "swapFee": "86428433284450388038", "reserves": [ - "4505059185403475256430461", - "2674066128495691749802353" + "3460556820660370383913816", + "10179840992004569968701678" ], - "LPTokenSupply": "7054463343490663944238442", + "LPTokenSupply": "13458714915462407469500803", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "57488408962323852558336", - "expectedQty": "58324191855006405721428", - "swapFee": "34493045377394311535", + "inputQty": "6530852142100414201856", + "expectedQty": "6425316725075017197865", "reserves": [ - "4505059185403475256430461", - "2615741936640685344080925" - ], - "LPTokenSupply": "6996978383832877831111259" + "3460556820660370383913816", + "10186371844146670382903534" + ] }, { "type": "redeemMasset", - "inputQty": "268884065327934970265", + "inputQty": "73288543619088357785", "expectedQtys": [ - "173019231835055551378", - "100458982208860639663" + "18823940458466793222", + "55409480907014475280" ], - "redemptionFee": "161330439196760982", + "redemptionFee": "43973126171453014", "reserves": [ - "4504886166171640200879083", - "2615641477658476483441262" + "3460537996719911917120594", + "10186316434665763368428254" ], - "LPTokenSupply": "6996709515900593815817092" + "LPTokenSupply": "13465066948041176015486184" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2891706599509359853568", - "896165570766280327168" + "38087439595855798272", + "137211952119442014208" ], - "expectedQty": "3720028376206779984424", - "swapFee": "2233357039948036812", + "expectedQty": "172892969047540049436", "reserves": [ - "4501994459572130841025515", - "2614745312087710203114094" + "3460576084159507772918866", + "10186453646617882810442462" ], - "LPTokenSupply": "6992987477503051082599536" + "LPTokenSupply": "13465239841010223555535620" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "8338727420340911", - "expectedQty": "8493875592332614", - "swapFee": "5003236452204", + "type": "redeemBassets", + "inputQtys": [ + "87486919134153359360", + "146226269182041096192" + ], + "expectedQty": "230916052493439590846", + "swapFee": "138632811182773418", "reserves": [ - "4501994451078255248692901", - "2614745312087710203114094" + "3460488597240373619559506", + "10186307420348700769346270" ], - "LPTokenSupply": "6992987469164823985903845" + "LPTokenSupply": "13465008800188200051448696" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "23655285513366154510336", - "outputIndex": 0, - "expectedQty": "23749926040157141133743", - "swapFee": "0", + "inputQty": "7008400082428399452160", + "expectedQty": "7119238029785815090001", + "swapFee": "4205040049457039671", "reserves": [ - "4478244525038098107559158", - "2638400597601076357624430" + "3460488597240373619559506", + "10179188182318914954256269" ], - "LPTokenSupply": "6992987469164823985903845", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13458000820609776597700503" }, { - "type": "redeemMasset", - "inputQty": "375538483284798183833", - "expectedQtys": [ - "240347078016137807744", - "141602780000954886638" + "type": "mintMulti", + "inputQtys": [ + "151209567845593415680", + "753234598959080013824" ], - "redemptionFee": "225323089970878910", + "expectedQty": "891521780741820314300", "reserves": [ - "4478004177960081969751414", - "2638258994821075402737792" + "3460639806808219212975186", + "10179941416917874034270093" ], - "LPTokenSupply": "6992611953213848184807903" + "LPTokenSupply": "13458892342390518418014803" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2343393633918820286464", - "3778233380781218594816" + "866220413935746940928", + "929693757960817082368" ], - "expectedQty": "6021090078486693810826", - "swapFee": "3614822940856530204", + "expectedQty": "1776586162421350722130", "reserves": [ - "4475660784326163149464950", - "2634480761440294184142976" + "3461506027222154959916114", + "10180871110675834851352461" ], - "LPTokenSupply": "6986587609794714720119892" + "LPTokenSupply": "13460668928552939768736933" }, { "type": "swap", "inputIndex": 0, - "inputQty": "7523397523118957568", + "inputQty": "222957349532998598656", "outputIndex": 1, - "expectedQty": "7487850131287963680", - "swapFee": "5905500934909154", + "expectedQty": "225311472726955495679", + "swapFee": "177478877921311082", "reserves": [ - "4475668307723686268422518", - "2634473273590162896179296" + "3461728984571687958514770", + "10180645799203107895856782" ], - "LPTokenSupply": "6986587610385264813610807", + "LPTokenSupply": "13460668946300827560868041", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "6243730283970012", - "6126537011727407" - ], - "expectedQty": "12161278059175146", - "swapFee": "7301147524019", + "type": "mint", + "inputIndex": 0, + "inputQty": "1177926874519112646656", + "expectedQty": "1172065257708611651015", "reserves": [ - "4475668301479955984452506", - "2634473267463625884451889" - ], - "LPTokenSupply": "6986587598217415721664042" + "3462906911446207071161426", + "10180645799203107895856782" + ] }, { "type": "mintMulti", "inputQtys": [ - "532987212877198393344", - "2626822758459983790080" + "740318951831527489536", + "861850337454323007488" ], - "expectedQty": "3110529744167242626815", + "expectedQty": "1584559635497031761913", "reserves": [ - "4476201288692833182845850", - "2637100090222085868241969" + "3463647230398038598650962", + "10181507649540562218864270" ], - "LPTokenSupply": "6989698127961582964290857" + "LPTokenSupply": "13463425571194033204280969" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "19892674041528753061888", - "expectedQty": "20261666152621254409612", - "swapFee": "11935604424917251837", + "type": "mintMulti", + "inputQtys": [ + "2229446514298499072", + "3954869440416525312" + ], + "expectedQty": "6109322631503998061", "reserves": [ - "4455939622540211928436238", - "2637100090222085868241969" + "3463649459844552897150034", + "10181511604410002635389582" ], - "LPTokenSupply": "6969806647480496702954152" + "LPTokenSupply": "13463431680516664708279030" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "327662985469430336", - "expectedQty": "332444205266608178", - "swapFee": "196597791281658", + "type": "mintMulti", + "inputQtys": [ + "167378431207691796873216", + "68301682184217650266112" + ], + "expectedQty": "233701373096357466635426", "reserves": [ - "4455939622540211928436238", - "2637099757777880601633791" + "3631027891052244694023250", + "10249813286594220285655694" ], - "LPTokenSupply": "6969806319837171012651981" + "LPTokenSupply": "13697133053613022174914456" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "342341034637606191104", - "outputIndex": 1, - "expectedQty": "340739932704478043903", - "swapFee": "268725516182813994", + "inputQty": "502147905979061504", + "expectedQty": "504646575516464891", + "swapFee": "301288743587436", "reserves": [ - "4456281963574849534627342", - "2636759017845176123589888" + "3631027386405669177558359", + "10249813286594220285655694" ], - "LPTokenSupply": "6969806346709722630933380", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13697132551495245070211695" }, { "type": "redeemBassets", "inputQtys": [ - "2812086779021613858816", - "2942182337765986271232" + "2883125362027694391296", + "3872379396043937153024" ], - "expectedQty": "5657366183706554393741", - "swapFee": "3396457584774797514", + "expectedQty": "6677718722422979814458", + "swapFee": "4009036655447056122", "reserves": [ - "4453469876795827920768526", - "2633816835507410137318656" + "3628144261043641483167063", + "10245940907198176348502670" ], - "LPTokenSupply": "6964145923714189779221875" + "LPTokenSupply": "13690451224639832188046726" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "384900380516993967587328", - "expectedQty": "378997497061198106482036", + "inputQty": "25045541025987635970048", + "expectedQty": "25436321276522939683338", + "swapFee": "15027324615592581582", "reserves": [ - "4453469876795827920768526", - "3018717216024404104905984" - ] + "3628144261043641483167063", + "10220504585921653408819332" + ], + "LPTokenSupply": "13665407186346306111334836" }, { - "type": "redeemMasset", - "inputQty": "179146914469371471462", - "expectedQtys": [ - "108583837491465438161", - "73601912370700945484" + "type": "mintMulti", + "inputQtys": [ + "72330164796199100416", + "47883788876337741824" ], - "redemptionFee": "107488148681622882", + "expectedQty": "119046834960009656367", "reserves": [ - "4453361292958336455330365", - "3018643614112033403960500" + "3628216591208437682267479", + "10220552469710529746561156" ], - "LPTokenSupply": "7342964284609733382394737" + "LPTokenSupply": "13665526233181266120991203" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "17774169121578090496", - "outputIndex": 0, - "expectedQty": "17822934419166818764", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "267794005557240987123712", + "expectedQty": "268989407706016123772895", + "swapFee": "160676403334344592274", "reserves": [ - "4453343470023917288511601", - "3018661388281154982050996" + "3359227183502421558494584", + "10220552469710529746561156" ], - "LPTokenSupply": "7342964284609733382394737", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13397748295264358568326718" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "191746243302390", - "94820708349495" + "4310337302094457344", + "152702747993873252352" ], - "expectedQty": "281561550958520", + "expectedQty": "154498705393263852451", + "swapFee": "92754876161655304", "reserves": [ - "4453343470215663531813991", - "3018661388375975690400491" + "3359222873165119464037240", + "10220399766962535873308804" ], - "LPTokenSupply": "7342964284891294933353257" + "LPTokenSupply": "13397593713079576758984492" }, { - "type": "redeemMasset", - "inputQty": "1122822844786691276", - "expectedQtys": [ - "680558341384244297", - "461310743582579813" - ], - "redemptionFee": "673693706872014", + "type": "redeem", + "inputIndex": 1, + "inputQty": "35312144915680813121536", + "expectedQty": "35876846124867873189181", + "swapFee": "21187286949408487872", "reserves": [ - "4453342789657322147569694", - "3018660927065232107820678" + "3359222873165119464037240", + "10184522920837668000119623" ], - "LPTokenSupply": "7342963162135819517349182" + "LPTokenSupply": "13362283686892590886711743" }, { - "type": "redeemBassets", - "inputQtys": [ - "13306402046883569598464", - "34447236850033421713408" - ], - "expectedQty": "46970256343945269604706", - "swapFee": "28199073250317352174", + "type": "mint", + "inputIndex": 0, + "inputQty": "158938882548897248", + "expectedQty": "158218750086338449", "reserves": [ - "4440036387610438577971230", - "2984213690215198686107270" - ], - "LPTokenSupply": "7295967526625948962127518" + "3359223032104002012934488", + "10184522920837668000119623" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "1748380041729994240", - "2693789517078494208" - ], - "expectedQty": "4367920195628738934", + "type": "redeem", + "inputIndex": 1, + "inputQty": "14711028843539194707968", + "expectedQty": "14946111691866194697624", + "swapFee": "8826617306123516824", "reserves": [ - "4440038135990480307965470", - "2984216384004715764601478" + "3359223032104002012934488", + "10169576809145801805421999" ], - "LPTokenSupply": "7295971894546144590866452" + "LPTokenSupply": "13347573698929532390693906" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "409118764056429", - "outputIndex": 1, - "expectedQty": "407645515971438", - "swapFee": "321276699236", + "type": "mint", + "inputIndex": 1, + "inputQty": "42162060356981163556864", + "expectedQty": "41473695551257107492513", "reserves": [ - "4440038136399599072021899", - "2984216383597070248630040" - ], - "LPTokenSupply": "7295971894546176718536375", - "hardLimitError": false, - "insufficientLiquidityError": false + "3359223032104002012934488", + "10211738869502782968978863" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "1660096611543236", - "expectedQty": "1634151666712882", + "inputQty": "104789006333532633563136", + "expectedQty": "103074310501950986880869", "reserves": [ - "4440038136399599072021899", - "2984216385257166860173276" + "3359223032104002012934488", + "10316527875836315602541999" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "32276667954943184896", - "27072427258012274688" + "type": "redeemMasset", + "inputQty": "662761540324118495232", + "expectedQtys": [ + "164913129410117542865", + "506465596476121660409" ], - "expectedQty": "58332487280012246748", - "swapFee": "35020504670809833", + "redemptionFee": "397656924194471097", "reserves": [ - "4440005859731644128837003", - "2984189312829908847898588" + "3359058118974591895391623", + "10316021410239839480881590" ], - "LPTokenSupply": "7295913532174594169273658" + "LPTokenSupply": "13491458983208108786019165" }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "3293052859446957021593", + "expectedQtys": [ + "819401298549760362431", + "2516467723993433323047" + ], + "redemptionFee": "1975831715668174212", + "reserves": [ + "3358238717676042135029192", + "10313504942515846047558543" + ], + "LPTokenSupply": "13488166127931833395814993" + }, + { + "type": "redeemBassets", "inputQtys": [ - "225657845640780239077376", - "16547018124799563005952" + "30593090752015832", + "34364636842015048" ], - "expectedQty": "237782731018595248624001", + "expectedQty": "64262018172358292", + "swapFee": "38580359118886", "reserves": [ - "4665663705372424367914379", - "3000736330954708410904540" + "3358238687082951383013360", + "10313504908151209205543495" ], - "LPTokenSupply": "7533696263193189417897659" + "LPTokenSupply": "13488166063635092900249702" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "45350026171063354785792", - "expectedQty": "44509085501953682611552", + "inputIndex": 1, + "inputQty": "55440710932645019648", + "expectedQty": "54532058353942302666", "reserves": [ - "4711013731543487722700171", - "3000736330954708410904540" + "3358238687082951383013360", + "10313560348862141850563143" ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "117774936760561248", + "inputQty": "1420438596702785", "outputIndex": 1, - "expectedQty": "117299303317473612", - "swapFee": "92471339283984", + "expectedQty": "1436702988016570", + "swapFee": "1131429897451", "reserves": [ - "4711013849318424483261419", - "3000736213655405093430928" + "3358238688503389979716145", + "10313560347425438862546573" ], - "LPTokenSupply": "7578205348704390234437609", + "LPTokenSupply": "13488220595693559985542113", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "9218912322241490", - "1172403129803773" - ], - "expectedQty": "10202206469635538", - "swapFee": "6124998881109", - "reserves": [ - "4711013840099512161019929", - "3000736212483001963627155" - ], - "LPTokenSupply": "7578205338496671265809071" - }, { "type": "redeemMasset", - "inputQty": "6959018376969906762547", + "inputQty": "342082833263052455936", "expectedQtys": [ - "4323498771119240702576", - "2753903887246745345008" + "85119198615434546617", + "261411434109827085851" ], - "redemptionFee": "4175411026181944057", + "redemptionFee": "205249699957831473", "reserves": [ - "4706690341328392920317353", - "2997982308595755218282147" + "3358153569304774545169528", + "10313298935991329035460722" ], - "LPTokenSupply": "7571246737660803977240929" + "LPTokenSupply": "13487878533385266928869324" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "115605921598240670613504", - "expectedQty": "113818388971598066211546", + "inputIndex": 0, + "inputQty": "76437961570936", + "expectedQty": "76106945099035", "reserves": [ - "4706690341328392920317353", - "3113588230193995888895651" + "3358153569381212506740464", + "10313298935991329035460722" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "429526848578162130944", - "expectedQty": "436051247317798926001", - "swapFee": "257716109146897278", + "type": "redeemMasset", + "inputQty": "3605436676524659336806", + "expectedQtys": [ + "897127405796503560683", + "2755187613815593633500" + ], + "redemptionFee": "2163262005914795602", "reserves": [ - "4706690341328392920317353", - "3113152178946678089969650" + "3357256441975416003179781", + "10310543748377513441827222" ], - "LPTokenSupply": "7684635625555434796011258" + "LPTokenSupply": "13484273313111049806111113" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "170715028860735902973952", - "expectedQty": "168038356970325310155843", + "type": "redeemMasset", + "inputQty": "8247977314032041118924", + "expectedQtys": [ + "2052313831321609985266", + "6302905931961178165027" + ], + "redemptionFee": "4948786388419224671", "reserves": [ - "4706690341328392920317353", - "3283867207807413992943602" - ] + "3355204128144094393194515", + "10304240842445552263662195" + ], + "LPTokenSupply": "13476025830675656606914656" }, { "type": "swap", "inputIndex": 1, - "inputQty": "2354617564768572014592", + "inputQty": "43619988528267786190848", "outputIndex": 0, - "expectedQty": "2360533548756169576250", + "expectedQty": "43083824735289302401109", "swapFee": "0", "reserves": [ - "4704329807779636750741103", - "3286221825372182564958194" + "3312120303408805090793406", + "10347860830973820049853043" ], - "LPTokenSupply": "7852673982525760106167101", + "LPTokenSupply": "13476025830675656606914656", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemMasset", + "inputQty": "140280861486188068864", + "expectedQtys": [ + "34457362956174713213", + "107653093429571437816" + ], + "redemptionFee": "84168516891712841", + "reserves": [ + "3312085846045848916080193", + "10347753177880390478415227" + ], + "LPTokenSupply": "13475885558231022108017076" + }, { "type": "mint", "inputIndex": 0, - "inputQty": "4565465619805084057600", - "expectedQty": "4482058578302149155980", + "inputQty": "224619005703298088960", + "expectedQty": "223707911564770095055", "reserves": [ - "4708895273399441834798703", - "3286221825372182564958194" + "3312310465051552214169153", + "10347753177880390478415227" ] }, { "type": "redeemBassets", "inputQtys": [ - "49958410438037225865216", - "6070075908127851544576" + "1403014818393420726272", + "239012332763017084928" ], - "expectedQty": "55020365871051075510641", - "swapFee": "33032038745878172209", + "expectedQty": "1632401230572490385226", + "swapFee": "980028755596852342", "reserves": [ - "4658936862961404608933487", - "3280151749464054713413618" + "3310907450233158793442881", + "10347514165547627461330299" ], - "LPTokenSupply": "7802105946398139889457450" + "LPTokenSupply": "13474475982886134350559796" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "23451874827591160", - "expectedQty": "23873419328889337", - "swapFee": "14071124896554", + "inputQty": "83365528415499718754304", + "expectedQty": "83011142996482127693541", + "reserves": [ + "3394272978648658512197185", + "10347514165547627461330299" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "1862786619153253138432", + "1141831924469731033088" + ], + "expectedQty": "2977658118937387273157", "reserves": [ - "4658936839087985280044150", - "3280151749464054713413618" + "3396135765267811765335617", + "10348655997472097192363387" ], - "LPTokenSupply": "7802105922947672174355945" + "LPTokenSupply": "13560464784001553865526494" }, { "type": "swap", "inputIndex": 0, - "inputQty": "193497315118747960213504", + "inputQty": "108872975887973171200", "outputIndex": 1, - "expectedQty": "192793699643691997380668", - "swapFee": "151963366246783834534", + "expectedQty": "110101486978262566163", + "swapFee": "86710440784815057", "reserves": [ - "4852434154206733240257654", - "3087358049820362716032950" + "3396244638243699738506817", + "10348545895985118929797224" ], - "LPTokenSupply": "7802121119284296852739398", + "LPTokenSupply": "13560464792672597944007999", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1546077174688708034560", - "expectedQty": "1574407276614814271394", - "swapFee": "927646304813224820", + "type": "mint", + "inputIndex": 1, + "inputQty": "40809265878136665407488", + "expectedQty": "40141628976747883729009", "reserves": [ - "4850859746930118425986260", - "3087358049820362716032950" - ], - "LPTokenSupply": "7800575134874238626027320" + "3396244638243699738506817", + "10389355161863255595204712" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "13507245462863543795712", - "1467605448888870764544" - ], - "expectedQty": "14701308978917386453191", - "swapFee": "8826081035972015080", + "type": "mint", + "inputIndex": 0, + "inputQty": "22154362914021314560", + "expectedQty": "22057038457898923407", "reserves": [ - "4837352501467254882190548", - "3085890444371473845268406" - ], - "LPTokenSupply": "7785865882422388864760556" + "3396266792606613759821377", + "10389355161863255595204712" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1357114190813521772544", - "1989178699328179404800" - ], - "expectedQty": "3290454483324432469738", - "swapFee": "1975457964773523596", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1451468800695201955840", + "expectedQty": "1474738815447969175716", + "swapFee": "870881280417121173", "reserves": [ - "4835995387276441360418004", - "3083901265672145665863606" + "3396266792606613759821377", + "10387880423047807626028996" ], - "LPTokenSupply": "7782573650026896136119580" + "LPTokenSupply": "13599177096975236566416692" }, { - "type": "redeemBassets", - "inputQtys": [ - "5253088352266439680", - "2317285477874188288" - ], - "expectedQty": "7437105089595641716", - "swapFee": "4464942018968766", + "type": "swap", + "inputIndex": 1, + "inputQty": "1837367633305190400", + "outputIndex": 0, + "expectedQty": "1815269943447402336", + "swapFee": "0", "reserves": [ - "4835990134188089093978324", - "3083898948386667791675318" + "3396264977336670312419041", + "10387882260415440931219396" ], - "LPTokenSupply": "7782566208903358723405973" + "LPTokenSupply": "13599177096975236566416692", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "81539345963527454720", - "2646362174548281917440" - ], - "expectedQty": "2685648247949434817007", - "swapFee": "1612356362587213218", + "type": "redeem", + "inputIndex": 0, + "inputQty": "26618856426487680", + "expectedQty": "26720330015548858", + "swapFee": "15971313855892", "reserves": [ - "4835908594842125566523604", - "3081252586212119509757878" + "3396264950616340296870183", + "10387882260415440931219396" ], - "LPTokenSupply": "7779879109534682960097068" + "LPTokenSupply": "13599177070357977271314601" }, { - "type": "redeemBassets", - "inputQtys": [ - "32589140053357450231808", - "15187285308896488456192" + "type": "redeemMasset", + "inputQty": "999658865646264934", + "expectedQtys": [ + "249505487471176890", + "763142353398485620" ], - "expectedQty": "46937154211807062401191", - "swapFee": "28179200047112504943", + "redemptionFee": "599795319387758", "reserves": [ - "4803319454788768116291796", - "3066065300903223021301686" + "3396264701110852825693293", + "10387881497273087532733776" ], - "LPTokenSupply": "7732916594042833496441427" + "LPTokenSupply": "13599176070759091156988442" }, { "type": "mint", "inputIndex": 0, - "inputQty": "33716107369053245440", - "expectedQty": "33089723741245803849", + "inputQty": "17026127206268618670080", + "expectedQty": "16950625648808194125110", "reserves": [ - "4803353170896137169537236", - "3066065300903223021301686" + "3413290828317121444363373", + "10387881497273087532733776" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "12445576926918369869824", - "expectedQty": "12632577017563039895256", - "swapFee": "7467346156151021921", - "reserves": [ - "4803353170896137169537236", - "3053432723885659981406430" - ], - "LPTokenSupply": "7720504853574271987477644" - }, - { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9368375656090706116608", - "403403724943348006912" + "78456582561518686568448", + "41732156969388680937472" ], - "expectedQty": "9591368198386993592854", + "expectedQty": "119165469285638448452581", + "swapFee": "71542206895520381300", "reserves": [ - "4812721546552227875653844", - "3053836127610603329413342" + "3334834245755602757794925", + "10346149340303698851796304" ], - "LPTokenSupply": "7730096221772658981070498" + "LPTokenSupply": "13496896839136054934317800" }, { - "type": "mintMulti", - "inputQtys": [ - "134902062791059095552", - "103581792857347620864" - ], - "expectedQty": "234382321573586454693", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9383199076080125214720", + "expectedQty": "9416659460258564745362", + "swapFee": "5629919445648075128", "reserves": [ - "4812856448615018934749396", - "3053939709403460677034206" + "3325417586295344193049563", + "10346149340303698851796304" ], - "LPTokenSupply": "7730330604094232567525191" + "LPTokenSupply": "13487514203051919373910592" }, { "type": "mintMulti", "inputQtys": [ - "1889144146752164593664", - "798493454859946557440" + "11284660493346630795264", + "293502859731486572544" ], - "expectedQty": "2640225814226817087632", + "expectedQty": "11526436760204581320258", "reserves": [ - "4814745592761771099343060", - "3054738202858320623591646" + "3336702246788690823844827", + "10346442843163430338368848" ], - "LPTokenSupply": "7732970829908459384612823" + "LPTokenSupply": "13499040639812123955230850" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "16537976230901394178048", - "expectedQty": "16785897689298721735578", - "swapFee": "9922785738540836506", + "type": "mint", + "inputIndex": 0, + "inputQty": "306389971241031365033984", + "expectedQty": "304900358462508493229533", "reserves": [ - "4814745592761771099343060", - "3037952305169021901856068" - ], - "LPTokenSupply": "7716433845956131844518425" + "3643092218029722188878811", + "10346442843163430338368848" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1667505418606611267584", - "2064744799320091918336" + "type": "redeemMasset", + "inputQty": "98635346040607155", + "expectedQtys": [ + "26015907995487793", + "73885613917807476" ], - "expectedQty": "3669517064187232283456", - "swapFee": "2203032057746987562", + "redemptionFee": "59181207624364", "reserves": [ - "4813078087343164488075476", - "3035887560369701809937732" + "3643092192013814193391018", + "10346442769277816420561372" ], - "LPTokenSupply": "7712762346163092639946162" + "LPTokenSupply": "13803940899645204528615664" }, { "type": "redeemBassets", "inputQtys": [ - "106596657447797140750336", - "119599594964486027476992" - ], - "expectedQty": "222378526731066593869666", - "swapFee": "133507220370862473806", - "reserves": [ - "4706481429895367347325140", - "2916287965405215782460740" - ], - "LPTokenSupply": "7490263662933692269850069" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "31901437727223173120", - "expectedQty": "31414295415905227910", - "reserves": [ - "4706481429895367347325140", - "2916319866842943005633860" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "47174268879421160030208", - "26192043053776512221184" + "21447371450896988766208", + "13191367677063098007552" ], - "expectedQty": "72084565922442597886582", + "expectedQty": "34310467254436125425141", + "swapFee": "20598639536383505358", "reserves": [ - "4753655698774788507355348", - "2942511909896719517855044" + "3621644820562917204624810", + "10333251401600753322553820" ], - "LPTokenSupply": "7562379643151550772964561" + "LPTokenSupply": "13769611893615185658035699" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "2523315575231825838080", - "expectedQty": "2476139292491674610062", - "reserves": [ - "4756179014350020333193428", - "2942511909896719517855044" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "1083733779659192960", - "5623964301976922112" - ], - "expectedQty": "6601602153357075712", + "inputQty": "163176132087629447168", + "expectedQty": "163967505214769997788", + "swapFee": "97905679252577668", "reserves": [ - "4756180098083799992386388", - "2942517533861021494777156" + "3621480853057702434627022", + "10333251401600753322553820" ], - "LPTokenSupply": "7564862384046195804650335" + "LPTokenSupply": "13769448727273665953846297" }, { "type": "redeemBassets", "inputQtys": [ - "63202010979274219061248", - "59380072747134850433024" + "16835798341503549440", + "18642893064485294080" ], - "expectedQty": "120494505902081216802328", - "swapFee": "72340107605812217411", + "expectedQty": "35088539426595226901", + "swapFee": "21065763113825431", "reserves": [ - "4692978087104525773325140", - "2883137461113886644344132" + "3621464017259360931077582", + "10333232758707688837259740" ], - "LPTokenSupply": "7444302772047269356852336" + "LPTokenSupply": "13769413619775052556176507" }, { - "type": "mintMulti", - "inputQtys": [ - "15777979990921535553536", - "11761673231841905082368" - ], - "expectedQty": "27064979273593963194769", + "type": "redeem", + "inputIndex": 1, + "inputQty": "86490519286371205120", + "expectedQty": "87846821704571964713", + "swapFee": "51894311571822723", "reserves": [ - "4708756067095447308878676", - "2894899134345728549426500" + "3621464017259360931077582", + "10333144911885984265295027" ], - "LPTokenSupply": "7471367751320863320047105" + "LPTokenSupply": "13769327134445197342153659" }, { "type": "mint", "inputIndex": 1, - "inputQty": "51983490790249994387456", - "expectedQty": "51188955877902136374848", + "inputQty": "1653869001528456773632", + "expectedQty": "1627356641982877978367", "reserves": [ - "4708756067095447308878676", - "2946882625135978543813956" + "3621464017259360931077582", + "10334798780887512722068659" ] }, { "type": "mintMulti", "inputQtys": [ - "53539563136844398854144", - "32214362487032903630848" + "11881865227793575444480", + "9639854993984148471808" ], - "expectedQty": "84260565587144998777023", + "expectedQty": "21302635129354457197687", "reserves": [ - "4762295630232291707732820", - "2979096987623011447444804" + "3633345882487154506522062", + "10344438635881496870540467" ], - "LPTokenSupply": "7606817272785910455198976" + "LPTokenSupply": "13792257126216534677329713" }, { "type": "mint", "inputIndex": 1, - "inputQty": "26289803349058991947776", - "expectedQty": "25886229895639479041971", + "inputQty": "26798259074887208960", + "expectedQty": "26368961577342517575", "reserves": [ - "4762295630232291707732820", - "3005386790972070439392580" + "3633345882487154506522062", + "10344465434140571757749427" ] }, { - "type": "mintMulti", - "inputQtys": [ - "3299892706210184429568", - "614558554941016506368" - ], - "expectedQty": "3843486960617242681975", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5752614416256801792", + "expectedQty": "5780686270470749165", + "swapFee": "3451568649754081", "reserves": [ - "4765595522938501892162388", - "3006001349527011455898948" + "3633340101800884035772897", + "10344465434140571757749427" ], - "LPTokenSupply": "7636546989642167176922922" + "LPTokenSupply": "13792277742908852628020904" }, { - "type": "redeemBassets", - "inputQtys": [ - "1308997816818671550464", - "2622284681249478410240" - ], - "expectedQty": "3866574678502756294705", - "swapFee": "2321337609667454249", + "type": "swap", + "inputIndex": 0, + "inputQty": "24858568482654699651072", + "outputIndex": 1, + "expectedQty": "25103250073982176123446", + "swapFee": "19777480644594627455", "reserves": [ - "4764286525121683220611924", - "3003379064845761977488708" + "3658198670283538735423969", + "10319362184066589581625981" ], - "LPTokenSupply": "7632678325759815719919391" + "LPTokenSupply": "13792279720656917087483649", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "28853004022689619", - "expectedQtys": [ - "17999120888399434", - "11346543197350253" + "type": "redeemBassets", + "inputQtys": [ + "293196292740029372956672", + "229682411078886667321344" ], - "redemptionFee": "17311802413613", + "expectedQty": "517662632989388032737843", + "swapFee": "310784050223767079890", "reserves": [ - "4764286507122562332212490", - "3003379053499218780138455" + "3365002377543509362467297", + "10089679772987702914304637" ], - "LPTokenSupply": "7632678296908542877471133" + "LPTokenSupply": "13274337382022327664373904" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "747213854424437371174912", - "expectedQty": "733098371866380365595307", + "inputQty": "216366847162630799360", + "expectedQty": "217264585044701942067", + "swapFee": "129820108297578479", "reserves": [ - "5511500361546999703387402", - "3003379053499218780138455" - ] + "3364785112958464660525230", + "10089679772987702914304637" + ], + "LPTokenSupply": "13274121028157175863332391" }, { "type": "mintMulti", "inputQtys": [ - "2236184603521700593664", - "2379785765049591136256" + "618255406327431561216", + "9268006165991330414592" ], - "expectedQty": "4538590699440558967771", + "expectedQty": "9732283281933517713792", "reserves": [ - "5513736546150521403981066", - "3005758839264268371274711" + "3365403368364792092086446", + "10098947779153694244719229" ], - "LPTokenSupply": "8370315259474363802034211" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "9595379254843209154560", - "expectedQty": "9411799326300203107915", - "reserves": [ - "5523331925405364613135626", - "3005758839264268371274711" - ] + "LPTokenSupply": "13283853311439109381046183" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "443469724355642261504", - "expectedQty": "451849780467830703404", - "swapFee": "266081834613385356", + "inputIndex": 1, + "inputQty": "2978241726005623390208", + "expectedQty": "3025774783872291056304", + "swapFee": "1786945035603374034", "reserves": [ - "5522880075624896782432222", - "3005758839264268371274711" + "3365403368364792092086446", + "10095922004369821953662925" ], - "LPTokenSupply": "8379283615684491824219157" + "LPTokenSupply": "13280875248407607317993378" }, { - "type": "redeemBassets", - "inputQtys": [ - "2763439938069498691584", - "3849843106863807201280" - ], - "expectedQty": "6504469985184030903832", - "swapFee": "3905025006114086994", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4020177176662832578560", + "expectedQty": "4036792563458412869708", + "swapFee": "2412106305997699547", "reserves": [ - "5520116635686827283740638", - "3001908996157404564073431" + "3361366575801333679216738", + "10095922004369821953662925" ], - "LPTokenSupply": "8372775631176802290637029" + "LPTokenSupply": "13276855312441575085184772" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "4947353758085080064", - "expectedQty": "5040857187681647216", - "swapFee": "2968412254851048", + "inputQty": "4253152712247653376", + "expectedQty": "4270692647800257078", + "swapFee": "2551891627348592", "reserves": [ - "5520111594829639602093422", - "3001908996157404564073431" + "3361362305108685878959660", + "10095922004369821953662925" ], - "LPTokenSupply": "8372770684119885431042069" + "LPTokenSupply": "13276851059544052000266255" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "69755509969061093376", - "271486900542590746624" + "267392941186349236224", + "325527597244938846208" ], - "expectedQty": "335963835650276095493", - "swapFee": "201699320982755310", + "expectedQty": "586354608022345884541", "reserves": [ - "5520041839319670541000046", - "3001637509256861973326807" + "3361629698049872228195884", + "10096247531967066892509133" ], - "LPTokenSupply": "8372434538754846270466796" + "LPTokenSupply": "13277437414152074346150796" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "64823134133731358408704", - "9505836428848122560512" + "64882475702572480", + "13699154831856588" ], - "expectedQty": "72950995203776787289412", - "swapFee": "43796875247414521086", + "expectedQty": "78052970790578824", "reserves": [ - "5455218705185939182591342", - "2992131672828013850766295" + "3361629762932347930768364", + "10096247545666221724365721" ], - "LPTokenSupply": "8299444126363346810108405" + "LPTokenSupply": "13277437492205045136729620" }, { - "type": "redeemBassets", - "inputQtys": [ - "483337708980037746688", - "653130451594018553856" + "type": "redeem", + "inputIndex": 1, + "inputQty": "95935925113715150553088", + "expectedQty": "97465188798797588147454", + "swapFee": "57561555068229090331", + "reserves": [ + "3361629762932347930768364", + "9998782356867424136218267" + ], + "LPTokenSupply": "13181507323246836809085565" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "111849325007989293187072", + "expectedQty": "111279484893820591879945", + "reserves": [ + "3473479087940337223955436", + "9998782356867424136218267" + ] + }, + { + "type": "redeemMasset", + "inputQty": "41251615304916288", + "expectedQtys": [ + "10772808832217582", + "31010686449635223" ], - "expectedQty": "1117704349943627574803", - "swapFee": "671025225101237287", + "redemptionFee": "24750969182949", "reserves": [ - "5454735367476959144844654", - "2991478542376419832212439" + "3473479077167528391737854", + "9998782325856737686583044" ], - "LPTokenSupply": "8298325818090700591420042" + "LPTokenSupply": "13292786766891517192967516" }, { "type": "redeemMasset", - "inputQty": "10344070277319266979020", + "inputQty": "503659259827027076710", "expectedQtys": [ - "6795384119871037911876", - "3726715305568038590723" + "131529999070247828785", + "378623219200729042413" ], - "redemptionFee": "6206442166391560187", + "redemptionFee": "302195555896216246", "reserves": [ - "5447939983357088106932778", - "2987751827070851793621716" + "3473347547168458143909069", + "9998403702637536957540631" ], - "LPTokenSupply": "8287982368457597963597040" + "LPTokenSupply": "13292283137851245755512430" }, { "type": "mint", "inputIndex": 1, - "inputQty": "24906781192949367570432", - "expectedQty": "24542870769835166813278", + "inputQty": "10283373844535286169600", + "expectedQty": "10117795517884698635220", "reserves": [ - "5447939983357088106932778", - "3012658608263801161192148" + "3473347547168458143909069", + "10008687076482072243710231" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "17697792966983252180992", + "11509091832626233212928" + ], + "expectedQty": "28927897679959860159770", + "swapFee": "17367158903317906839", + "reserves": [ + "3455649754201474891728077", + "9997177984649446010497303" + ], + "LPTokenSupply": "13273457405246157607871723" + }, { "type": "mintMulti", "inputQtys": [ - "43360141637295261351936", - "41819841908727231807488" + "1670037534982508800", + "5066919190273658880" ], - "expectedQty": "83739994931813703217324", + "expectedQty": "6646473629804259698", "reserves": [ - "5491300124994383368284714", - "3054478450172528392999636" + "3455651424239009874236877", + "9997183051568636284156183" ], - "LPTokenSupply": "8396265234159246833627642" + "LPTokenSupply": "13273464051719787412131421" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "485815839770941478404096", - "outputIndex": 0, - "expectedQty": "487463837618870609405929", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "336560212513903411200", + "outputIndex": 1, + "expectedQty": "340004637915800469596", + "swapFee": "267832202488715171", "reserves": [ - "5003836287375512758878785", - "3540294289943469871403732" + "3455987984451523777648077", + "9996843046930720483686587" ], - "LPTokenSupply": "8396265234159246833627642", + "LPTokenSupply": "13273464078503007661002938", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2380514688969300480", - "expectedQty": "2342615330055089227", - "reserves": [ - "5003836287375512758878785", - "3540296670458158840704212" - ] - }, { "type": "mintMulti", "inputQtys": [ - "2039335707662204796928", - "3144488911988221542400" + "35108696457088315392", + "8811384764194827264" ], - "expectedQty": "5096468634446749408071", + "expectedQty": "43593328232516619596", "reserves": [ - "5005875623083174963675713", - "3543441159370147062246612" + "3456023093147980865963469", + "9996851858315484678513851" ], - "LPTokenSupply": "8401364045409023638124940" + "LPTokenSupply": "13273507671831240177622534" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "38568249031239416152064", - "expectedQty": "39167809055465225569959", - "swapFee": "23140949418743649691", + "inputIndex": 0, + "inputQty": "126571426183096942592", + "expectedQty": "127164371142992688508", + "swapFee": "75942855709858165", "reserves": [ - "5005875623083174963675713", - "3504273350314681836676653" + "3455895928776837873274961", + "9996851858315484678513851" ], - "LPTokenSupply": "8362798110472726096337845" + "LPTokenSupply": "13273381107999342651665758" }, { "type": "swap", "inputIndex": 0, - "inputQty": "12519487793194", + "inputQty": "11976842783718201360384", "outputIndex": 1, - "expectedQty": "12478383060572", - "swapFee": "9832086192", + "expectedQty": "12098867077297757436107", + "swapFee": "9530844168841301980", "reserves": [ - "5005875623095694451468907", - "3504273350302203453616081" + "3467872771560556074635345", + "9984752991238186921077744" ], - "LPTokenSupply": "8362798110472727079546464", + "LPTokenSupply": "13273382061083759535795956", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "8500022217700476452864", - "expectedQty": "8653445924378708522959", - "swapFee": "5100013330620285871", + "type": "mintMulti", + "inputQtys": [ + "178724741566053600", + "165402837653195968" + ], + "expectedQty": "340512375329740945", "reserves": [ - "4997222177171315742945948", - "3504273350302203453616081" + "3467872950285297640688945", + "9984753156641024574273712" ], - "LPTokenSupply": "8354298598256359665122187" + "LPTokenSupply": "13273382401596134865536901" }, { - "type": "redeemBassets", - "inputQtys": [ - "49231924059319287808", - "38748656213884887040" + "type": "redeemMasset", + "inputQty": "138453527622186982", + "expectedQtys": [ + "36151385174352430", + "104087624434702840" ], - "expectedQty": "86463305076985009410", - "swapFee": "51909128523304988", + "redemptionFee": "83072116573312", "reserves": [ - "4997172945247256423658140", - "3504234601645989568729041" + "3467872914133912466336515", + "9984753052553400139570872" ], - "LPTokenSupply": "8354212088233067009138286" + "LPTokenSupply": "13273382263150914455007250" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "15532514217693492019200", - "expectedQty": "15773588594431346007008", - "swapFee": "9319508530616095211", + "inputIndex": 0, + "inputQty": "6997845249876296728576", + "expectedQty": "7030994261474246972297", + "swapFee": "4198707149925778037", + "reserves": [ + "3460841919872438219364218", + "9984753052553400139570872" + ], + "LPTokenSupply": "13266384837771753150856477" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "83627567063206442565632", + "outputIndex": 1, + "expectedQty": "84453391829151368105889", + "swapFee": "66536509686080632586", "reserves": [ - "4997172945247256423658140", - "3488461013051558222722033" + "3544469486935644661929850", + "9900299660724248771464983" ], - "LPTokenSupply": "8338680505966226578728607" + "LPTokenSupply": "13266391491422721758919735", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "10421052840881", - "3155666722535" + "81648902628469309440", + "66589818319180398592" ], - "expectedQty": "13335615107010", - "swapFee": "8006172767", + "expectedQty": "146706906460744267953", + "swapFee": "88076990070488854", "reserves": [ - "4997172945236835370817259", - "3488461013048402555999498" + "3544387838033016192620410", + "9900233070905929591066391" ], - "LPTokenSupply": "8338680505952883758066105" + "LPTokenSupply": "13266244705246969951211812" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2164555228720720248832", - "expectedQty": "2198127056528023684987", - "swapFee": "1298733137232432149", + "type": "swap", + "inputIndex": 0, + "inputQty": "1120774036074912546816", + "outputIndex": 1, + "expectedQty": "1131500859581187416485", + "swapFee": "891467478352545604", "reserves": [ - "4997172945236835370817259", - "3486262885991874532314511" + "3545508612069091105167226", + "9899101570046348403649906" ], - "LPTokenSupply": "8336516080597476761060487" + "LPTokenSupply": "13266244794393717786466372", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "36298555973764003135488", - "expectedQty": "35632641998735114369777", + "inputQty": "2060435947867873738752", + "expectedQty": "2048581738967101113317", "reserves": [ - "5033471501210599373952747", - "3486262885991874532314511" + "3547569048016958978905978", + "9899101570046348403649906" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "180765046532683587387392", - "expectedQty": "177883171251469429282143", + "type": "redeemBassets", + "inputQtys": [ + "1000092780073340108800", + "471288848919961206784" + ], + "expectedQty": "1458105239261431615075", + "swapFee": "875388376582808654", "reserves": [ - "5033471501210599373952747", - "3667027932524558119701903" - ] + "3546568955236885638797178", + "9898630281197428442443122" + ], + "LPTokenSupply": "13266834483043884531436824" }, { - "type": "redeemMasset", - "inputQty": "36937868290955608064", - "expectedQtys": [ - "21732568280509761592", - "15832797485981459790" + "type": "redeemBassets", + "inputQtys": [ + "27349701284169523396608", + "164773774053950030348288" ], - "redemptionFee": "22162720974573364", + "expectedQty": "189338608439356886580546", + "swapFee": "113671367884344738791", "reserves": [ - "5033449768642318864191155", - "3667012099727072138242113" + "3519219253952716115400570", + "9733856507143478412094834" ], - "LPTokenSupply": "8549994958195662446561679" + "LPTokenSupply": "13077393570373431734591365" }, { "type": "mintMulti", "inputQtys": [ - "5688456038922061824", - "5069756672405392384" + "15843332167369725952", + "19580627249854816256" ], - "expectedQty": "10573309151194698124", + "expectedQty": "35019021176191919777", "reserves": [ - "5033455457098357786252979", - "3667017169483744543634497" + "3519235097284883485126522", + "9733876087770728266911090" ], - "LPTokenSupply": "8550005531504813641259803" + "LPTokenSupply": "13077428589394607926511142" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "10826107083254438821888", - "expectedQty": "11020136221271970410928", - "swapFee": "6495664249952663293", + "inputIndex": 1, + "inputQty": "462871033250616180736", + "expectedQty": "470078100726630759862", + "swapFee": "277722619950369708", "reserves": [ - "5022435320877085815842051", - "3667017169483744543634497" + "3519235097284883485126522", + "9733406009670001636151228" ], - "LPTokenSupply": "8539180073987984197704244" + "LPTokenSupply": "13076965746133619305367376" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2001426087894727524352", - "2100005346365611704320" + "655950647269713379328", + "469795941177394790400" ], - "expectedQty": "4031289621750283525781", + "expectedQty": "1114409108737160266331", + "swapFee": "669046893378323153", "reserves": [ - "5024436746964980543366403", - "3669117174830110155338817" + "3518579146637613771747194", + "9732936213728824241360828" ], - "LPTokenSupply": "8543211363609734481230025" + "LPTokenSupply": "13075850734882678104610206" }, { "type": "mint", "inputIndex": 0, - "inputQty": "71483160490783809536", - "expectedQty": "70182668598728092737", + "inputQty": "487999704754677033730048", + "expectedQty": "484741743264208898680217", "reserves": [ - "5024508230125471327175939", - "3669117174830110155338817" + "4006578851392290805477242", + "9732936213728824241360828" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "42674931966097832", - "120365242090696096" + "85940361688770328657920", + "58610572932488116568064" ], - "expectedQty": "160330495516021511", - "swapFee": "96256050940177", + "expectedQty": "143012426429199178042568", "reserves": [ - "5024508187450539361078107", - "3669117054464868064642721" + "4092519213081061134135162", + "9791546786661312357928892" ], - "LPTokenSupply": "8543281385861207247455090" + "LPTokenSupply": "13703604904576086181332991" }, { - "type": "redeemBassets", - "inputQtys": [ - "8829162707377067008", - "20933637878356398080" - ], - "expectedQty": "29265937915626013688", - "swapFee": "17570104812262965", + "type": "mint", + "inputIndex": 0, + "inputQty": "398731146338979010314240", + "expectedQty": "395548666280280445736370", "reserves": [ - "5024499358287831984011099", - "3669096120826989708244641" - ], - "LPTokenSupply": "8543252104110197290404732" + "4491250359420040144449402", + "9791546786661312357928892" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1146117623590948962304", - "expectedQty": "1164127237148421963657", - "swapFee": "687670574154569377", - "reserves": [ - "5024499358287831984011099", - "3667931993589841286280984" - ], - "LPTokenSupply": "8542106055253663756899365" - }, - { - "type": "redeemMasset", - "inputQty": "1120522123754999193", - "expectedQtys": [ - "658699929238021057", - "480857170504408269" - ], - "redemptionFee": "672313274252999", + "inputIndex": 0, + "inputQty": "120273734773839344173056", + "expectedQty": "121204402526611866070000", + "swapFee": "72164240864303606503", "reserves": [ - "5024498699587902745990042", - "3667931512732670781872715" + "4370045956893428278379402", + "9791546786661312357928892" ], - "LPTokenSupply": "8542104934798771329325471" + "LPTokenSupply": "13978887052506613713256955" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2244658545644537905152", - "expectedQty": "2284881439396178450004", - "swapFee": "1346795127386722743", + "inputIndex": 1, + "inputQty": "160241221450907942912", + "expectedQty": "162586872753497939541", + "swapFee": "96144732870544765", "reserves": [ - "5022213818148506567540038", - "3667931512732670781872715" + "4370045956893428278379402", + "9791384199788558859989351" ], - "LPTokenSupply": "8539860410932639530092593" + "LPTokenSupply": "13978726820899636092368519" }, { "type": "swap", "inputIndex": 1, - "inputQty": "11434112945196760039424", + "inputQty": "37174598760826293714944", "outputIndex": 0, - "expectedQty": "11458690256569919003709", + "expectedQty": "36914526130198457158919", "swapFee": "0", "reserves": [ - "5010755127891936648536329", - "3679365625677867541912139" + "4333131430763229821220483", + "9828558798549385153704295" ], - "LPTokenSupply": "8539860410932639530092593", + "LPTokenSupply": "13978726820899636092368519", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "4268511707877647974", - "expectedQtys": [ - "2503042534652276320", - "1837968215677652072" - ], - "redemptionFee": "2561107024726588", + "type": "redeem", + "inputIndex": 1, + "inputQty": "32934126380602496", + "expectedQty": "33417883224934535", + "swapFee": "19760475828361", "reserves": [ - "5010752624849401996260009", - "3679363787709651864260067" + "4333131430763229821220483", + "9828558765131501928769760" ], - "LPTokenSupply": "8539856142677042354917277" + "LPTokenSupply": "13978726787967485759348859" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "16995864758821406638080", - "expectedQty": "16722313918839227534648", + "type": "redeemBassets", + "inputQtys": [ + "77054630514774523904", + "99816847159469883392" + ], + "expectedQty": "174747363584364608000", + "swapFee": "104911364969600525", "reserves": [ - "5010752624849401996260009", - "3696359652468473270898147" - ] + "4333054376132715046696579", + "9828458948284342458886368" + ], + "LPTokenSupply": "13978551946183672922100385" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3069441216248628117504", - "expectedQty": "3117805673091170758044", - "swapFee": "1841664729749176870", + "inputQty": "9150444729281889173504", + "expectedQty": "9284834646551843055296", + "swapFee": "5490266837569133504", "reserves": [ - "5010752624849401996260009", - "3693241846795382100140103" + "4333054376132715046696579", + "9819174113637790615831072" ], - "LPTokenSupply": "8553509199546105929252108" + "LPTokenSupply": "13969402050481074789840231" }, { - "type": "redeemMasset", - "inputQty": "22573765799424417805107", - "expectedQtys": [ - "13216059825417728105861", - "9741072619495162442012" + "type": "mintMulti", + "inputQtys": [ + "51839424171207641006080", + "10610212574320882876416" ], - "redemptionFee": "13544259479654650683", + "expectedQty": "61869834588398393101359", "reserves": [ - "4997536565023984268154148", - "3683500774175886937698091" + "4384893800303922687702659", + "9829784326212111498707488" ], - "LPTokenSupply": "8530936788172629476912069" + "LPTokenSupply": "14031271885069473182941590" }, { - "type": "redeemBassets", - "inputQtys": [ - "11516027975825335779328", - "12834171661092124622848" - ], - "expectedQty": "23934342450689246483776", - "swapFee": "14369227006617518401", + "type": "mint", + "inputIndex": 1, + "inputQty": "40151496272058981023744", + "expectedQty": "39548062910782416407282", "reserves": [ - "4986020537048158932374820", - "3670666602514794813075243" - ], - "LPTokenSupply": "8506989513417634274661731" + "4384893800303922687702659", + "9869935822484170479731232" + ] }, { "type": "redeemMasset", - "inputQty": "48155669091536586407936", + "inputQty": "1120480027440391074611", "expectedQtys": [ - "28207521778906515553729", - "20766141527936667906914" + "348966018489714916148", + "785485889414832270597" ], - "redemptionFee": "28893401454921951844", + "redemptionFee": "672288016464234644", "reserves": [ - "4957813015269252416821091", - "3649900460986858145168329" + "4384544834285432972786511", + "9869150336594755647460635" ], - "LPTokenSupply": "8458836733666243180448979" + "LPTokenSupply": "14069699535181616854697725" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "10666233575908061184", + "expectedQty": "10579647595105006403", + "reserves": [ + "4384555500519008880847695", + "9869150336594755647460635" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "26244163787554160640", - "105599624317554229248" + "72401770497182400512", + "67269420812637978624" + ], + "expectedQty": "138071914619741831598", + "reserves": [ + "4384627902289506063248207", + "9869217606015568285439259" ], - "expectedQty": "129666415172524297403", - "swapFee": "77846557037737220", + "LPTokenSupply": "14069848186743831701535726" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "16316626256597625077760", + "expectedQty": "16440016926693799089688", + "swapFee": "9789975753958575046", "reserves": [ - "4957786771105464862660451", - "3649794861362540590939081" + "4368187885362812264158519", + "9869217606015568285439259" ], - "LPTokenSupply": "8458706997189169322188077" + "LPTokenSupply": "14053532539484809472315470" }, { "type": "mint", "inputIndex": 1, - "inputQty": "11358242156770906", - "expectedQty": "11175348028138102", + "inputQty": "3559039783174864896000", + "expectedQty": "3505464404781253918949", "reserves": [ - "4957786771105464862660451", - "3649794872720782747709987" + "4368187885362812264158519", + "9872776645798743150335259" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "30361044726307086336", - "expectedQty": "30839413877706089810", - "swapFee": "18216626835784251", + "inputIndex": 0, + "inputQty": "264392224219127480320", + "expectedQty": "266386304632886324413", + "swapFee": "158635334531476488", "reserves": [ - "4957786771105464862660451", - "3649764033306905041620177" + "4367921499058179377834106", + "9872776645798743150335259" ], - "LPTokenSupply": "8458676649141453726818268" + "LPTokenSupply": "14056773627528905051901747" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "351985843156767801344", - "520343611627867013120" + "59343474226081854128128", + "50706469272169339682816" ], - "expectedQty": "857553652339778183210", - "swapFee": "514841096061503812", + "expectedQty": "108805653731812942749404", "reserves": [ - "4957434785262308094859107", - "3649243689695277174607057" + "4427264973284261231962234", + "9923483115070912490018075" ], - "LPTokenSupply": "8457818632132127493281626" + "LPTokenSupply": "14165579281260717994651151" }, { - "type": "mintMulti", - "inputQtys": [ - "837763723991155", - "956936832815428" - ], - "expectedQty": "1764065868182173", + "type": "redeem", + "inputIndex": 0, + "inputQty": "225490652557367672832", + "expectedQty": "227208404936507253812", + "swapFee": "135294391534420603", "reserves": [ - "4957434786100071818850262", - "3649243690652214007422485" + "4427037764879324724708422", + "9923483115070912490018075" ], - "LPTokenSupply": "8457818633896193361463799" + "LPTokenSupply": "14165353804137599780420379" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "19588204065538567045120", - "outputIndex": 0, - "expectedQty": "19628877080408276995771", - "swapFee": "0", + "inputQty": "23112818543669051392", + "expectedQty": "22765636701890085422", "reserves": [ - "4937805909019663541854491", - "3668831894717752574467605" - ], - "LPTokenSupply": "8457818633896193361463799", - "hardLimitError": false, - "insufficientLiquidityError": false + "4427037764879324724708422", + "9923506227889456159069467" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1349447689530785660928", - "116758058183692107776" + "94202898515307106664448", + "94509990195450972471296" ], - "expectedQty": "1439834723557883726622", - "swapFee": "864419485826225971", + "expectedQty": "186522299930199034458115", "reserves": [ - "4936456461330132756193563", - "3668715136659568882359829" + "4521240663394631831372870", + "10018016218084907131540763" ], - "LPTokenSupply": "8456378021195098234133802" + "LPTokenSupply": "14351898869704500704963916" }, { - "type": "mintMulti", - "inputQtys": [ - "4324923448256660766720", - "12072186840725086797824" + "type": "redeemMasset", + "inputQty": "17143761713968406383820", + "expectedQtys": [ + "5397513363525123857747", + "11959632419240907855734" ], - "expectedQty": "16123719545932044291105", + "redemptionFee": "10286257028381043830", "reserves": [ - "4940781384778389416960283", - "3680787323500293969157653" + "4515843150031106707515123", + "10006056585665666223685029" ], - "LPTokenSupply": "8472501740741030278424907" + "LPTokenSupply": "14334756136616235136684479" }, { - "type": "swap", + "type": "mint", + "inputIndex": 1, + "inputQty": "906026744263195008", + "expectedQty": "892458026922485263", + "reserves": [ + "4515843150031106707515123", + "10006057491692410486880037" + ] + }, + { + "type": "mint", "inputIndex": 0, - "inputQty": "905157380342035200", - "outputIndex": 1, - "expectedQty": "902607812473101456", - "swapFee": "710991877519203", + "inputQty": "16969288094164", + "expectedQty": "16829154249584", "reserves": [ - "4940782289935769758995483", - "3680786420892481496056197" - ], - "LPTokenSupply": "8472501740812129466176827", - "hardLimitError": false, - "insufficientLiquidityError": false + "4515843150048075995609287", + "10006057491692410486880037" + ] }, { "type": "mintMulti", "inputQtys": [ - "3363491802261751857152", - "1074059676174597750784" - ], - "expectedQty": "4359195838175134786047", - "reserves": [ - "4944145781738031510852635", - "3681860480568656093806981" + "145368263847584350208", + "71548333353009135616" ], - "LPTokenSupply": "8476860936650304600962874" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "816319397522137808896", - "expectedQty": "830901077808079199174", - "swapFee": "489791638513282685", + "expectedQty": "214644608539921895380", "reserves": [ - "4943314880660223431653461", - "3681860480568656093806981" + "4515988518311923579959495", + "10006129040025763496015653" ], - "LPTokenSupply": "8476044666231946314482246" + "LPTokenSupply": "14334971673699631135314706" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "43116535957708894896128", - "15283921111014940082176" + "24939645822496199933952", + "92156142605031329234944" ], - "expectedQty": "57371694668242903499727", - "swapFee": "34443683010752193415", + "expectedQty": "115509435566426359203534", "reserves": [ - "4900198344702514536757333", - "3666576559457641153724805" + "4540928164134419779893447", + "10098285182630794825250597" ], - "LPTokenSupply": "8418641972248993734008444" + "LPTokenSupply": "14450481109266057494518240" }, { - "type": "redeemBassets", - "inputQtys": [ - "21244100183200018432", - "643760913804030377984" + "type": "redeemMasset", + "inputQty": "264119170553407864832", + "expectedQtys": [ + "82947174110144092074", + "184461015233265768970" ], - "expectedQty": "654208060873749091413", - "swapFee": "392760492819941419", + "redemptionFee": "158471502332044718", "reserves": [ - "4900177100602331336738901", - "3665932798543837123346821" + "4540845216960309635801373", + "10098100721615561559481627" ], - "LPTokenSupply": "8417987410703676446969752" + "LPTokenSupply": "14450217005942654319857879" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "369503798641262002176", - "expectedQty": "376100182737608407023", - "swapFee": "221702279184757201", + "type": "mintMulti", + "inputQtys": [ + "208928647616829259776", + "89628288668395208704" + ], + "expectedQty": "295494635964374588526", "reserves": [ - "4899801000419593728331878", - "3665932798543837123346821" + "4541054145607926465061149", + "10098190349904229954690331" ], - "LPTokenSupply": "8417617929075263103443296" + "LPTokenSupply": "14450512500578618694446405" }, { "type": "redeemMasset", - "inputQty": "16988515104718754047590", + "inputQty": "32752372798168799641", "expectedQtys": [ - "9882890836897364073656", - "7394180633113027778198" + "10286213730392243336", + "22874015789871984155" ], - "redemptionFee": "10193109062831252428", + "redemptionFee": "19651423678901279", "reserves": [ - "4889918109582696364258222", - "3658538617910724095568623" + "4541043859394196072817813", + "10098167475888440082706176" ], - "LPTokenSupply": "8400630433281450632520948" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "96424256963425771454464", - "outputIndex": 1, - "expectedQty": "96139259081173628672585", - "swapFee": "75738586478881677653", - "reserves": [ - "4986342366546122135712686", - "3562399358829550466896038" - ], - "LPTokenSupply": "8400638007140098520688713", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "14450479750170962893536891" }, { "type": "redeemBassets", "inputQtys": [ - "24971824676718899200", - "5074110128119071744" - ], - "expectedQty": "29508326911243541107", - "swapFee": "17715625522059360", - "reserves": [ - "4986317394721445416813486", - "3562394284719422347824294" + "148764000614133824", + "88264478377353232" ], - "LPTokenSupply": "8400608482869124307294181" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "419713314263326523392", - "expectedQty": "427271990607564471815", - "swapFee": "251827988557995914", + "expectedQty": "234481546521921028", + "swapFee": "140773391948321", "reserves": [ - "4985890122730837852341671", - "3562394284719422347824294" + "4541043710630195458683989", + "10098167387623961705352944" ], - "LPTokenSupply": "8400188794737659836570380" + "LPTokenSupply": "14450479515562720318862373" }, { "type": "mintMulti", "inputQtys": [ - "11027705294294924394496", - "35049590196337433903104" + "10230743385953959673856", + "9983438530926906179584" ], - "expectedQty": "45314902793357876235230", + "expectedQty": "19980331363855488659541", "reserves": [ - "4996917828025132776736167", - "3597443874915759781727398" + "4551274454016149418357845", + "10108150826154888611532528" ], - "LPTokenSupply": "8445503697531017712805610" + "LPTokenSupply": "14470459846926575807521914" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "101059373662431824838656", - "expectedQty": "102636584675186126764281", - "swapFee": "60635624197459094903", + "inputQty": "70785725889997750272", + "expectedQty": "71819488560743369270", + "swapFee": "42471435533998650", "reserves": [ - "4996917828025132776736167", - "3494807290240573654963117" + "4551274454016149418357845", + "10108079006666327868163258" ], - "LPTokenSupply": "8344450387431005633876444" + "LPTokenSupply": "14470389065447829363171507" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "12169841670988564004864", - "expectedQty": "12358950305117860359160", - "swapFee": "7301905002593138402", + "inputQty": "632601397094127239168", + "outputIndex": 0, + "expectedQty": "628296653257706730124", + "swapFee": "0", "reserves": [ - "4996917828025132776736167", - "3482448339935455794603957" + "4550646157362891711627721", + "10108711608063421995402426" ], - "LPTokenSupply": "8332281275950517329185420" + "LPTokenSupply": "14470389065447829363171507", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "518323656181264678912", + "expectedQty": "510555982080255049319", + "reserves": [ + "4550646157362891711627721", + "10109229931719603260081338" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "3859197158211331584", - "expectedQty": "3797893723567405070", + "inputQty": "42852581537316597661696", + "expectedQty": "42210024171929525386192", "reserves": [ - "4996917828025132776736167", - "3482452199132614005935541" + "4550646157362891711627721", + "10152082513256919857743034" ] }, { "type": "redeemBassets", "inputQtys": [ - "884876953472057344000", - "662523690789553438720" + "21844350027582004002816", + "31906904308592335126528" ], - "expectedQty": "1520626079216619909022", - "swapFee": "912923401570914494", + "expectedQty": "53093524222667544312479", + "swapFee": "31875239677406970769", "reserves": [ - "4996032951071660719392167", - "3481789675441824452496821" + "4528801807335309707624905", + "10120175608948327522616506" ], - "LPTokenSupply": "8330763626133962862858422" + "LPTokenSupply": "14459987433663461933020845" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3083795675773404708864", - "expectedQty": "3139600072373355860853", - "swapFee": "1850277405464042825", + "type": "swap", + "inputIndex": 1, + "inputQty": "946600213775988", + "outputIndex": 0, + "expectedQty": "940085516014533", + "swapFee": "0", "reserves": [ - "4992893350999287363531314", - "3481789675441824452496821" + "4528801806395224191610372", + "10120175609894927736392494" ], - "LPTokenSupply": "8327680015485930004553840" + "LPTokenSupply": "14459987433663461933020845", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "26486981250503787151360", - "8239928217168539287552" + "67473655394434744320", + "8866297164331745280" ], - "expectedQty": "34109547627184068717123", + "expectedQty": "75654538538143114783", "reserves": [ - "5019380332249791150682674", - "3490029603658992991784373" + "4528869280050618626354692", + "10120184476192092068137774" ], - "LPTokenSupply": "8361789563113114073270963" + "LPTokenSupply": "14460063088202000076135628" }, { "type": "redeemBassets", "inputQtys": [ - "17824461725364178", - "23443245167678516" + "13655252320400508928", + "3121916109332799291392" ], - "expectedQty": "40568074554694186", - "swapFee": "24355458007621", + "expectedQty": "3088597009438649763648", + "swapFee": "1854270768124064296", "reserves": [ - "5019380314425329425318496", - "3490029580215747824105857" + "4528855624798298225845764", + "10117062560082759268846382" ], - "LPTokenSupply": "8361789522523119606369917" + "LPTokenSupply": "14456972822348870114714112" }, { "type": "redeemBassets", "inputQtys": [ - "13777626401743667462144", - "38859218542081800667136" + "99872548472950456320", + "60528439068780847104" ], - "expectedQty": "51767390082976457298366", - "swapFee": "31079081498685085430", + "expectedQty": "158674627723372324125", + "swapFee": "95261933794299974", "reserves": [ - "5005602688023585757856352", - "3451170361673666023438721" + "4528755752249825275389444", + "10117002031643690487999278" ], - "LPTokenSupply": "8309994161266794332494663" + "LPTokenSupply": "14456814061985406327520009" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "376146593349963939840", - "expectedQty": "370188292603856846918", + "inputIndex": 0, + "inputQty": "671910193106237128704", + "expectedQty": "666407865647978612818", "reserves": [ - "5005602688023585757856352", - "3451546508267015987378561" + "4529427662442931512518148", + "10117002031643690487999278" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "32128687086506178772992", + "105305291803505494851584" + ], + "expectedQty": "135590461439762309604281", + "swapFee": "81403118735098444829", + "reserves": [ + "4497298975356425333745156", + "10011696739840184993147694" + ], + "LPTokenSupply": "14321816745604430407928198" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "35945204493397221376", + "46606626151734796288" + ], + "expectedQty": "81557031060538955923", + "swapFee": "48963596794400013", + "reserves": [ + "4497263030151931936523780", + "10011650133214033258351406" + ], + "LPTokenSupply": "14321735144506132754012262" + }, + { + "type": "redeemMasset", + "inputQty": "3060170978835419470233", + "expectedQtys": [ + "960368016444647093007", + "2137937789119647494391" + ], + "redemptionFee": "1836102587301251682", + "reserves": [ + "4496302662135487289430773", + "10009512195424913610857015" + ], + "LPTokenSupply": "14318675157137556064667197" + }, { "type": "mint", "inputIndex": 1, - "inputQty": "37941120869263426453504", - "expectedQty": "37339171511480570082509", + "inputQty": "43521220922337960919040", + "expectedQty": "42867952252947936942450", "reserves": [ - "5005602688023585757856352", - "3489487629136279413832065" + "4496302662135487289430773", + "10053033416347251571776055" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "200804021321341444554752", - "outputIndex": 0, - "expectedQty": "201237037267584141123386", - "swapFee": "0", + "type": "mintMulti", + "inputQtys": [ + "108835180574686752800768", + "153090998603175298072576" + ], + "expectedQty": "258734412596205199958478", "reserves": [ - "4804365650756001616732966", - "3690291650457620858386817" + "4605137842710174042231541", + "10206124414950426869848631" ], - "LPTokenSupply": "8347703521070878759424090", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "14620277521986709201568125" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "215833719766661958991872", - "expectedQty": "219657126420484274908642", - "swapFee": "129500231859997175395", + "type": "redeemMasset", + "inputQty": "1551564374577367954227", + "expectedQtys": [ + "488423062102501441867", + "1082466303769859896381" + ], + "redemptionFee": "930938624746420772", "reserves": [ - "4584708524335517341824324", - "3690291650457620858386817" + "4604649419648071540789674", + "10205041948646657009952250" ], - "LPTokenSupply": "8131882751327402800149757" + "LPTokenSupply": "14618726050705994308255975" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "57057483968022698786816", - "expectedQty": "58063624433623224419712", - "swapFee": "34234490380813619272", + "inputIndex": 1, + "inputQty": "192152855928052064976896", + "expectedQty": "194951417099337775740797", + "swapFee": "115291713556831238986", "reserves": [ - "4526644899901894117404612", - "3690291650457620858386817" + "4604649419648071540789674", + "10010090531547319234211453" ], - "LPTokenSupply": "8074828690808418182724868" + "LPTokenSupply": "14426584723949297926402977" }, { "type": "swap", "inputIndex": 1, - "inputQty": "278952126821183160320", + "inputQty": "82673585334563684352", "outputIndex": 0, - "expectedQty": "279336170345715659230", + "expectedQty": "82133308876181625617", "swapFee": "0", "reserves": [ - "4526365563731548401745382", - "3690570602584442041547137" + "4604567286339195359164057", + "10010173205132653797895805" ], - "LPTokenSupply": "8074828690808418182724868", + "LPTokenSupply": "14426584723949297926402977", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "12771746568372485305139", + "inputQty": "2302325261998879539", "expectedQtys": [ - "7154939171061242369634", - "5833777187503497960311" + "734397715030481236", + "1596555739497825504" ], - "redemptionFee": "7663047941023491183", + "redemptionFee": "1381395157199327", "reserves": [ - "4519210624560487159375748", - "3684736825396938543586826" + "4604566551941480328682821", + "10010171608576914300070301" ], - "LPTokenSupply": "8062057710544839799768847" + "LPTokenSupply": "14426582421762175443243370" }, { - "type": "mintMulti", - "inputQtys": [ - "461762336274373869568", - "174997272134673596416" + "type": "redeem", + "inputIndex": 0, + "inputQty": "216699598377703975157760", + "expectedQty": "218366039311127890803345", + "swapFee": "130019759026622385094", + "reserves": [ + "4386200512630352437879476", + "10010171608576914300070301" ], - "expectedQty": "625596611381362574278", + "LPTokenSupply": "14209895825360374130324119" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "280198633415057702912", + "expectedQty": "284328433334634261161", + "swapFee": "168119180049034621", "reserves": [ - "4519672386896761533245316", - "3684911822669073217183242" + "4386200512630352437879476", + "10009887280143579665809140" ], - "LPTokenSupply": "8062683307156221162343125" + "LPTokenSupply": "14209615643538877077524669" }, { "type": "mintMulti", "inputQtys": [ - "85361635209034858496000", - "230221657588872186429440" + "128578371558028919963648", + "33296042553776044769280" ], - "expectedQty": "310232190469689304636107", + "expectedQty": "160327100373507445747544", "reserves": [ - "4605034022105796391741316", - "3915133480257945403612682" + "4514778884188381357843124", + "10043183322697355710578420" ], - "LPTokenSupply": "8372915497625910466979232" + "LPTokenSupply": "14369942743912384523272213" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "18741706924395040079872", + "expectedQty": "18586817333093395714199", + "reserves": [ + "4533520591112776397922996", + "10043183322697355710578420" + ] }, { "type": "redeemBassets", "inputQtys": [ - "7927803774387036160", - "24736165952081727488" + "421926019996479744", + "325343324007634496" ], - "expectedQty": "32109832805773454621", - "swapFee": "19277466163161969", + "expectedQty": "738895308474537854", + "swapFee": "443603347092978", "reserves": [ - "4605026094302022004705156", - "3915108744091993321885194" + "4533520169186756401443252", + "10043182997354031702943924" ], - "LPTokenSupply": "8372883370443385146678837" + "LPTokenSupply": "14388528821950926432064876" }, { - "type": "redeemMasset", - "inputQty": "1291468609196402073", - "expectedQtys": [ - "709872338400843170", - "603520445345796803" + "type": "redeemBassets", + "inputQtys": [ + "81054978944599119101952", + "90182394183977845915648" ], - "redemptionFee": "774881165517841", + "expectedQty": "169215090824869865968341", + "swapFee": "101590008500021932740", "reserves": [ - "4605025384429683603861986", - "3915108140571547976088391" + "4452465190242157282341300", + "9953000603170053857028276" ], - "LPTokenSupply": "8372882079052264066828548" + "LPTokenSupply": "14219222300118406546357068" }, { "type": "redeemBassets", "inputQtys": [ - "817327730245568", - "845660057766551" + "83451405570466849488896", + "7193204055234844819456" ], - "expectedQty": "1634333792061055", - "swapFee": "981188988629", + "expectedQty": "89857832394522892641223", + "swapFee": "53947067677320127661", "reserves": [ - "4605025383612355873616418", - "3915108139725887918321840" + "4369013784671690432852404", + "9945807399114819012208820" ], - "LPTokenSupply": "8372882077417047204677725" + "LPTokenSupply": "14129315915362974065600949" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "68368121297942114992128", - "expectedQty": "69561822383657016068828", - "swapFee": "41020872778765268995", + "type": "mintMulti", + "inputQtys": [ + "1825794579648404", + "2913777195751721" + ], + "expectedQty": "4680831625862615", "reserves": [ - "4535463561228698857547590", - "3915108139725887918321840" + "4369013786497485012500808", + "9945807402028596207960541" ], - "LPTokenSupply": "8304518058206382966212496" + "LPTokenSupply": "14129315920043805691463564" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "88677617081350809976832", - "expectedQty": "87102631686198465506388", + "inputQty": "260203790459760050176", + "expectedQty": "262157793236642392798", + "swapFee": "156122274275856030", "reserves": [ - "4624141178310049667524422", - "3915108139725887918321840" - ] + "4368751628704248370108010", + "9945807402028596207960541" + ], + "LPTokenSupply": "14129055731865573358998991" }, { - "type": "redeemMasset", - "inputQty": "5505293238856579442278", - "expectedQtys": [ - "3031831365211003929483", - "2566951829215533119235" + "type": "mintMulti", + "inputQtys": [ + "312007199374440267776", + "559537742698653745152" ], - "redemptionFee": "3303175943313947665", + "expectedQty": "860575722686571194175", "reserves": [ - "4621109346944838663594939", - "3912541187896672385202605" + "4369063635903622810375786", + "9946366939771294861705693" ], - "LPTokenSupply": "8386115726971319183671372" + "LPTokenSupply": "14129916307588259930193166" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1282024751696360", - "expectedQty": "1304463201092397", - "swapFee": "769214851017", + "inputIndex": 1, + "inputQty": "31216250386517116059648", + "expectedQty": "31676130163623859852568", + "swapFee": "18729750231910269635", "reserves": [ - "4621109345640375462502542", - "3912541187896672385202605" + "4369063635903622810375786", + "9914690809607671001853125" ], - "LPTokenSupply": "8386115725689371353460113" + "LPTokenSupply": "14098701930176766005160481" }, { - "type": "redeemMasset", - "inputQty": "18261940807807665176576", - "expectedQtys": [ - "10057074555139935824530", - "8514994016286322967357" + "type": "swap", + "inputIndex": 0, + "inputQty": "27040422629229717356544", + "outputIndex": 1, + "expectedQty": "27209909704129436003360", + "swapFee": "21456960995764044379", + "reserves": [ + "4396104058532852527732330", + "9887480899903541565849765" ], - "redemptionFee": "10957164484684599105", + "LPTokenSupply": "14098704075872865581564918", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "493715125884520300544", + "outputIndex": 1, + "expectedQty": "496780122558405811115", + "swapFee": "391748535272209706", "reserves": [ - "4611052271085235526678012", - "3904026193880386062235248" + "4396597773658737048032874", + "9886984119780983160038650" ], - "LPTokenSupply": "8367854880598012156743447" + "LPTokenSupply": "14098704115047719108785888", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "6603712030163435782144", + "inputQty": "2503483637149340794880", "expectedQtys": [ - "3636749412089543165776", - "3079116030501017236956" + "780228197525609843067", + "1754562094571949746263" ], - "redemptionFee": "3962227218098061469", + "redemptionFee": "1502090182289604476", "reserves": [ - "4607415521673145983512236", - "3900947077849885044998292" + "4395817545461211438189807", + "9885229557686411210292387" ], - "LPTokenSupply": "8361251564790570530767449" + "LPTokenSupply": "14096200781619587996951455" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "30557460628949308", - "outputIndex": 1, - "expectedQty": "30498990564007858", - "swapFee": "24011012500159", + "type": "redeemBassets", + "inputQtys": [ + "37967578907178436657152", + "126865252781325182566400" + ], + "expectedQty": "162611476301951677240373", + "swapFee": "97625461057805689758", "reserves": [ - "4607415552230606612461544", - "3900947047350894480990434" + "4357849966554033001532655", + "9758364304905086027725987" ], - "LPTokenSupply": "8361251564792971632017464", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13933501442402684294590298" }, { "type": "mint", "inputIndex": 1, - "inputQty": "649649997277744463872", - "expectedQty": "638802715343296807895", + "inputQty": "2733096331080133", + "expectedQty": "2691939107990295", "reserves": [ - "4607415552230606612461544", - "3901596697348172225454306" + "4357849966554033001532655", + "9758364307638182358806120" ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "66188397182681920569344", - "expectedQty": "67345366975201405563978", - "swapFee": "39713038309609152341", + "inputQty": "490984000888436424704", + "outputIndex": 1, + "expectedQty": "494003707470766115272", + "swapFee": "389563540210169974", "reserves": [ - "4540070185255405206897566", - "3901596697348172225454306" + "4358340950554921437957359", + "9757870303930711592690848" ], - "LPTokenSupply": "8295705941629463969171249" + "LPTokenSupply": "13933501484050977423597590", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "52535522919671906304", - "expectedQty": "51602976771314576246", + "inputQty": "47592820872688484352", + "expectedQty": "47957906952146119437", + "swapFee": "28555692523613090", "reserves": [ - "4540122720778324878803870", - "3901596697348172225454306" - ] + "4358292992647969291837922", + "9757870303930711592690848" + ], + "LPTokenSupply": "13933453894085673987474547" }, { "type": "mint", "inputIndex": 0, - "inputQty": "3222142099399725568", - "expectedQty": "3164946524795666403", + "inputQty": "1877078299748556603392", + "expectedQty": "1861667613754258602980", "reserves": [ - "4540125942920424278529438", - "3901596697348172225454306" + "4360170070947717848441314", + "9757870303930711592690848" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4642704324152142069760", - "9707481384713371779072" + "98093794264615347027968", + "150346348761969950982144" ], - "expectedQty": "14105110512698077025456", + "expectedQty": "245371910152847850636974", + "swapFee": "147311533011515619754", "reserves": [ - "4544768647244576420599198", - "3911304178732885597233378" + "4262076276683102501413346", + "9607523955168741641708704" ], - "LPTokenSupply": "8309865820065458156439354" + "LPTokenSupply": "13689811071166870031382773" }, { - "type": "mintMulti", - "inputQtys": [ - "651276794894684928", - "190066098325381408" - ], - "expectedQty": "826599611546979319", + "type": "redeem", + "inputIndex": 1, + "inputQty": "41670211250848186499072", + "expectedQty": "42283093291482048082928", + "swapFee": "25002126750508911899", "reserves": [ - "4544769298521371315284126", - "3911304368798983922614786" + "4262076276683102501413346", + "9565240861877259593625776" ], - "LPTokenSupply": "8309866646665069703418673" + "LPTokenSupply": "13648143360128696895774890" }, { "type": "mintMulti", "inputQtys": [ - "1826033875279125413888", - "3823050201724827992064" + "249220140987397046272", + "341482945213100916736" ], - "expectedQty": "5552601290329581328835", + "expectedQty": "583510780123161005753", "reserves": [ - "4546595332396650440698014", - "3915127419000708750606850" + "4262325496824089898459618", + "9565582344822472694542512" ], - "LPTokenSupply": "8315419247955399284747508" + "LPTokenSupply": "13648726870908820056780643" }, { "type": "mintMulti", "inputQtys": [ - "24842601244914634752", - "18663929529007771648" - ], - "expectedQty": "42752861357264559942", - "reserves": [ - "4546620174997895355332766", - "3915146082930237758378498" - ], - "LPTokenSupply": "8315462000816756549307450" - }, - { - "type": "redeemMasset", - "inputQty": "695352529664079298560", - "expectedQtys": [ - "379967696021233747699", - "327194482815633312065" + "746517159383874928640", + "607182140883523338240" ], - "redemptionFee": "417211517798447579", + "expectedQty": "1338423365174960417305", "reserves": [ - "4546240207301874121585067", - "3914818888447422125066433" + "4263072013983473773388258", + "9566189526963356217880752" ], - "LPTokenSupply": "8314766690008244249853647" + "LPTokenSupply": "13650065294273995017197948" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4363691604694354886656", - "7167636413247906643968" + "207269973195677532160", + "780958835964392505344" ], - "expectedQty": "11333744710219490253465", + "expectedQty": "974753806903998866507", + "swapFee": "585203406186110986", "reserves": [ - "4550603898906568476471723", - "3921986524860670031710401" + "4262864744010278095856098", + "9565408568127391825375408" ], - "LPTokenSupply": "8326100434718463740107112" + "LPTokenSupply": "13649090013784025450831552" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "21514691686892866371584", - "expectedQty": "21868193433986513655597", - "swapFee": "12908815012135719822", + "type": "swap", + "inputIndex": 0, + "inputQty": "27604344182855744618496", + "outputIndex": 1, + "expectedQty": "27773208506737484865507", + "swapFee": "21901766872471914603", "reserves": [ - "4550603898906568476471723", - "3900118331426683518054804" + "4290469088193133840474594", + "9537635359620654340509901" ], - "LPTokenSupply": "8304587033913072087307510" + "LPTokenSupply": "13649092203960712698023012", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4585687253353469837312", - "expectedQty": "4504235942063296812454", + "type": "mintMulti", + "inputQtys": [ + "27491343923491123200", + "106192635411651067904" + ], + "expectedQty": "131858831903753641501", "reserves": [ - "4555189586159921946309035", - "3900118331426683518054804" - ] + "4290496579537057331597794", + "9537741552256065991577805" + ], + "LPTokenSupply": "13649224062792616451664513" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1079197635917062078464", + "inputQty": "21688159138603302125568", "outputIndex": 1, - "expectedQty": "1077213145135633807252", - "swapFee": "848021418500822751", + "expectedQty": "21818491804386420277779", + "swapFee": "17206417494743542635", "reserves": [ - "4556268783795839008387499", - "3899041118281547884247552" + "4312184738675660633723362", + "9515923060451679571300026" ], - "LPTokenSupply": "8309091354657277234202239", + "LPTokenSupply": "13649225783434365926018776", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "327575879083516351217664", + "expectedQty": "330016972604075560129566", + "swapFee": "196545527450109810730", + "reserves": [ + "3982167766071585073593796", + "9515923060451679571300026" + ], + "LPTokenSupply": "13321669558903594585782185" + }, { "type": "redeemMasset", - "inputQty": "199492229522367709184", + "inputQty": "737938338692645099929", "expectedQtys": [ - "109325414185348963566", - "93555561668755321047" + "220455183649860878629", + "526807178683819840084" ], - "redemptionFee": "119695337713420625", + "redemptionFee": "442763003215587059", "reserves": [ - "4556159458381653659423933", - "3898947562719879128926505" + "3981947310887935212715167", + "9515396253272995751459942" ], - "LPTokenSupply": "8308891874397288637835117" + "LPTokenSupply": "13320931664841202262240961" }, { "type": "redeemBassets", "inputQtys": [ - "129549567575629627392", - "83930002887504216064" + "114184542491473707008", + "228324398210893119488" ], - "expectedQty": "209772982527583879722", - "swapFee": "125939353128427384", + "expectedQty": "338133838121388568257", + "swapFee": "203002104135314329", "reserves": [ - "4556029908814078029796541", - "3898863632716991624710441" + "3981833126345443739008159", + "9515167928874784858340454" ], - "LPTokenSupply": "8308681988069343238370748" + "LPTokenSupply": "13320593348301187151889806" }, { - "type": "mintMulti", - "inputQtys": [ - "1921242325566893064192", - "3809212289330067275776" + "type": "redeemMasset", + "inputQty": "564795999998636248268", + "expectedQtys": [ + "168729275761215042954", + "403203083213813967849" ], - "expectedQty": "5632549598625327774630", + "redemptionFee": "338877599999181748", "reserves": [ - "4557951151139644922860733", - "3902672845006321691986217" + "3981664397069682523965205", + "9514764725791571044372605" ], - "LPTokenSupply": "8314314537667968566145378" + "LPTokenSupply": "13320028586188948515559712" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "418573923633294671872", - "175901266106545537024" + "721128305624332672", + "839601806484758272" ], - "expectedQty": "584094648941102886370", - "swapFee": "350667189678468813", + "expectedQty": "1542345631822058676", "reserves": [ - "4557532577216011628188861", - "3902496943740215146449193" + "3981665118197988148297877", + "9514765565393377529130877" ], - "LPTokenSupply": "8313730127418556752637075" + "LPTokenSupply": "13320030128534580337618388" }, { "type": "mintMulti", "inputQtys": [ - "480508845617789992960", - "494736057012057145344" + "1191460331104831", + "581140211052662" + ], + "expectedQty": "1754598445206662", + "reserves": [ + "3981665119389448479402708", + "9514765565974517740183539" ], - "expectedQty": "958425740125743050037", + "LPTokenSupply": "13320030130289178782825050" + }, + { + "type": "redeemMasset", + "inputQty": "6997364594928068198", + "expectedQtys": [ + "2090419133094715914", + "4995359325716932627" + ], + "redemptionFee": "4198418756956840", "reserves": [ - "4558013086061629418181821", - "3902991679797227203594537" + "3981663028970315384686794", + "9514760570615192023250912" ], - "LPTokenSupply": "8314688553158682495687112" + "LPTokenSupply": "13320023133344425730452536" }, { "type": "mintMulti", "inputQtys": [ - "831282215404581552128", - "193747256607655464009728" + "4568472142502708117504", + "13051576303842651799552" ], - "expectedQty": "191302999661023713701053", + "expectedQty": "17384884189351026681912", "reserves": [ - "4558844368277033999733949", - "4096738936404882667604265" + "3986231501112818092804298", + "9527812146919034675050464" ], - "LPTokenSupply": "8505991552819706209388165" + "LPTokenSupply": "13337408017533776757134448" }, { "type": "redeemMasset", - "inputQty": "8381281480936995684352", + "inputQty": "107091629215200371", "expectedQtys": [ - "4489309948929904403431", - "4034252845600393939652" + "31987916250798253", + "76456888397952246" ], - "redemptionFee": "5028768888562197410", + "redemptionFee": "64254977529120", "reserves": [ - "4554355058328104095330518", - "4092704683559282273664613" + "3986231469124901842006045", + "9527812070462146277098218" ], - "LPTokenSupply": "8497610774215658069923554" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "21963046296146291982336", - "expectedQty": "21576024331109976508506", - "reserves": [ - "4576318104624250387312854", - "4092704683559282273664613" - ] + "LPTokenSupply": "13337407910448573039686989" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "6864543847797778022400", - "expectedQty": "6983521040759278539391", - "swapFee": "4118726308678666813", + "inputQty": "715546102450845184", + "expectedQty": "720607824486300265", + "swapFee": "429327661470507", "reserves": [ - "4569334583583491108773463", - "4092704683559282273664613" + "3986230748517077355705780", + "9527812070462146277098218" ], - "LPTokenSupply": "8512322666571601136276341" + "LPTokenSupply": "13337407194945403354988855" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "18319714996312252", - "655160232466117" + "1917943049470772510720", + "603156218700031983616" ], - "expectedQty": "18640921373293529", + "expectedQty": "2497228975956709205856", + "swapFee": "1499236927730663921", "reserves": [ - "4569334601903206105085715", - "4092704684214442506130730" + "3984312805467606583195060", + "9527208914243446245114602" ], - "LPTokenSupply": "8512322685212522509569870" + "LPTokenSupply": "13334908616656211688185469" }, { "type": "mint", "inputIndex": 1, - "inputQty": "14916306677257318957056", - "expectedQty": "14664065068981534209306", + "inputQty": "1206357782965519646720", + "expectedQty": "1187836569811194283657", "reserves": [ - "4569334601903206105085715", - "4107620990891699825087786" + "3984312805467606583195060", + "9528415272026411764761322" ] }, - { - "type": "redeemMasset", - "inputQty": "2220798208212913", - "expectedQtys": [ - "1189339429223238", - "1069161274102730" - ], - "redemptionFee": "1332478924927", - "reserves": [ - "4569334600713866675862477", - "4107620989822538550985056" - ], - "LPTokenSupply": "8526986748060839083458755" - }, { "type": "mintMulti", "inputQtys": [ - "415200304080665538723840", - "97234455695525781962752" + "81323914081424585523200", + "70117916056494939308032" ], - "expectedQty": "503446146695880339816469", + "expectedQty": "149742714222923413302037", "reserves": [ - "4984534904794532214586317", - "4204855445518064332947808" + "4065636719549031168718260", + "9598533188082906704069354" ], - "LPTokenSupply": "9030432894756719423275224" + "LPTokenSupply": "13485839167448946295771163" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "676972488133771310137344", - "expectedQty": "688676377306455009499361", - "swapFee": "406183492880262786082", - "reserves": [ - "4295858527488077205086956", - "4204855445518064332947808" - ], - "LPTokenSupply": "8353501024972236139416488" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "6062798859973620137984", - "1562200764976851058688" - ], - "expectedQty": "7492651601874785672909", - "swapFee": "4498289935085922957", + "inputQty": "28111273764442651754496", + "expectedQty": "27892705670886462055358", "reserves": [ - "4289795728628103584948972", - "4203293244753087481889120" - ], - "LPTokenSupply": "8346004324909419776412916" + "4093747993313473820472756", + "9598533188082906704069354" + ] }, { "type": "mintMulti", "inputQtys": [ - "2465416394029237010432", - "1483413580270760099840" + "4554988533458204622848", + "3989996872805556158464" ], - "expectedQty": "3880380740194204260585", + "expectedQty": "8448475634936456381865", "reserves": [ - "4292261145022132821959404", - "4204776658333358241988960" + "4098302981846932025095604", + "9602523184955712260227818" ], - "LPTokenSupply": "8349884705649613980673501" + "LPTokenSupply": "13522180348754769214208386" }, { - "type": "redeemMasset", - "inputQty": "690476946708688378265", - "expectedQtys": [ - "354726951315293717434", - "347496937995511800692" + "type": "redeemBassets", + "inputQtys": [ + "13384904262266470268928", + "33867901154426691256320" ], - "redemptionFee": "414286168025213026", + "expectedQty": "46631086638071596290565", + "swapFee": "27995449252394394410", "reserves": [ - "4291906418070817528241970", - "4204429161395362730188268" + "4084918077584665554826676", + "9568655283801285568971498" ], - "LPTokenSupply": "8349194270131522094816538" + "LPTokenSupply": "13475524066212370462962851" }, { - "type": "redeemMasset", - "inputQty": "7690653268799866588364", - "expectedQtys": [ - "3951011141644653896097", - "3870481982315828985387" - ], - "redemptionFee": "4614391961279919953", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1175217653118930518016", + "expectedQty": "1192724385664992135142", + "swapFee": "705130591871358310", "reserves": [ - "4287955406929172874345873", - "4200558679413046901202881" + "4084918077584665554826676", + "9567462559415620576836356" ], - "LPTokenSupply": "8341504078301918356220169" + "LPTokenSupply": "13474348919072310719580666" }, { "type": "mint", "inputIndex": 1, - "inputQty": "222448943467798691840", - "expectedQty": "218611459678941633340", + "inputQty": "261036678194227700563968", + "expectedQty": "257036348368436163561713", "reserves": [ - "4287955406929172874345873", - "4200781128356514699894721" + "4084918077584665554826676", + "9828499237609848277400324" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "282798453150359289856", - "234528658422848061440" + "type": "redeemMasset", + "inputQty": "31150099036295449804", + "expectedQtys": [ + "9261210929086005122", + "22282895966835751614" ], - "expectedQty": "508364809929712377374", - "swapFee": "305202007162124701", + "redemptionFee": "18690059421777269", "reserves": [ - "4287672608476022515056017", - "4200546599698091851833281" + "4084908816373736468821554", + "9828476954713881441648710" ], - "LPTokenSupply": "8341214050269861139563903" + "LPTokenSupply": "13731354119210716529870301" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "6439553111042178416640", - "outputIndex": 0, - "expectedQty": "6440364065279130226552", - "swapFee": "0", + "type": "mint", + "inputIndex": 0, + "inputQty": "4332619603265051951104", + "expectedQty": "4299860374569394939889", "reserves": [ - "4281232244410743384829465", - "4206986152809134030249921" - ], - "LPTokenSupply": "8341214050269861139563903", - "hardLimitError": false, - "insufficientLiquidityError": false + "4089241435977001520772658", + "9828476954713881441648710" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "68472758237593550848", - "16095170552809302016" + "type": "redeemMasset", + "inputQty": "936989191725789478912", + "expectedQtys": [ + "278783674118630662802", + "670055549256357599233" ], - "expectedQty": "83100386904175879194", + "redemptionFee": "562193515035473687", "reserves": [ - "4281300717168980978380313", - "4207002247979686839551937" + "4088962652302882890109856", + "9827806899164625084049477" ], - "LPTokenSupply": "8341297150656765315443097" + "LPTokenSupply": "13734717046612911638878646" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "118396653458318279311360", - "expectedQty": "116347595713671454530475", + "inputIndex": 0, + "inputQty": "55211597765633483210752", + "expectedQty": "54790138220160945829615", "reserves": [ - "4281300717168980978380313", - "4325398901438005118863297" + "4144174250068516373320608", + "9827806899164625084049477" ] }, { - "type": "redeemMasset", - "inputQty": "73919774661567681291878", - "expectedQtys": [ - "37396096677707792827496", - "37781283346708299407023" - ], - "redemptionFee": "44351864796940608775", + "type": "mint", + "inputIndex": 0, + "inputQty": "3100873310688123027456", + "expectedQty": "3076985826892361411459", "reserves": [ - "4243904620491273185552817", - "4287617618091296819456274" - ], - "LPTokenSupply": "8383729406895348782742571" + "4147275123379204496348064", + "9827806899164625084049477" + ] }, { - "type": "redeemMasset", - "inputQty": "2331740594390", - "expectedQtys": [ - "1179635791127", - "1191786256587" + "type": "redeemBassets", + "inputQtys": [ + "63851805149401872", + "25535041401805948" ], - "redemptionFee": "1399044356", + "expectedQty": "88503607080255563", + "swapFee": "53134044674958", "reserves": [ - "4243904620490093549761690", - "4287617618090105033199687" + "4147275059527399346946192", + "9827806873629583682243529" ], - "LPTokenSupply": "8383729406893017182052616" + "LPTokenSupply": "13792584082108537225656693" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "149191079423839267979264", - "expectedQty": "151726123870716567455064", - "swapFee": "89514647654303560787", + "inputQty": "9843866275933992960", + "expectedQty": "9693086050164342734", "reserves": [ - "4243904620490093549761690", - "4135891494219388465744623" - ], - "LPTokenSupply": "8234547278933943344429430" + "4147275059527399346946192", + "9827816717495859616236489" + ] }, { - "type": "redeemMasset", - "inputQty": "320198460372218316", - "expectedQtys": [ - "164924232554533528", - "160726687239776956" - ], - "redemptionFee": "192119076223330", + "type": "mint", + "inputIndex": 1, + "inputQty": "83861960092485651791872", + "expectedQty": "82575951041565011687327", "reserves": [ - "4243904455565860995228162", - "4135891333492701225967667" - ], - "LPTokenSupply": "8234546958754694879833447" + "4147275059527399346946192", + "9911678677588345268028361" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "235208798769118969856", - "164223232611404152832" + "type": "redeemMasset", + "inputQty": "853957269337275494", + "expectedQtys": [ + "255093868936313494", + "609655358091367570" ], - "expectedQty": "392503062659906391305", + "redemptionFee": "512374361602365", "reserves": [ - "4244139664364630114198018", - "4136055556725312630120499" + "4147274804433530410632698", + "9911678067932987176660791" ], - "LPTokenSupply": "8234939461817354786224752" + "LPTokenSupply": "13875168872330120500571496" }, { "type": "mint", "inputIndex": 1, - "inputQty": "137616974748330431086592", - "expectedQty": "135235907605094787994855", + "inputQty": "32641842185979213905920", + "expectedQty": "32140485141410265883898", "reserves": [ - "4244139664364630114198018", - "4273672531473643061207091" + "4147274804433530410632698", + "9944319910118966390566711" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "108070054786457304825856", - "64575880028244729135104" - ], - "expectedQty": "169655264818180059744702", - "swapFee": "101854271453780304029", + "type": "redeem", + "inputIndex": 1, + "inputQty": "44558483784611420700672", + "expectedQty": "45226274624853462194897", + "swapFee": "26735090270766852420", "reserves": [ - "4136069609578172809372162", - "4209096651445398332071987" + "4147274804433530410632698", + "9899093635494112928371814" ], - "LPTokenSupply": "8200428435759961112201277" + "LPTokenSupply": "13862753547195946422439964" }, { - "type": "redeemMasset", - "inputQty": "17896213156233438717542", - "expectedQtys": [ - "9020939814488780067397", - "9180214829587372741722" + "type": "mintMulti", + "inputQtys": [ + "9616403843824431923200", + "3370268964300009766912" ], - "redemptionFee": "10737727893740063230", + "expectedQty": "12861417229928932085711", "reserves": [ - "4127048669763684029304765", - "4199916436615810959330265" + "4156891208277354842555898", + "9902463904458412938138726" ], - "LPTokenSupply": "8182533296376517047490058" + "LPTokenSupply": "13875614964425875354525675" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "399200895156807", - "outputIndex": 0, - "expectedQty": "399154621473774", - "swapFee": "0", + "inputIndex": 0, + "inputQty": "12222333734394030718976", + "outputIndex": 1, + "expectedQty": "12307489242674428097017", + "swapFee": "9702854980054172981", "reserves": [ - "4127048669364529407830991", - "4199916437015011854487072" + "4169113542011748873274874", + "9890156415215738510041709" ], - "LPTokenSupply": "8182533296376517047490058", + "LPTokenSupply": "13875615934711373359942973", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "777838766033867161", + "inputQty": "5834074792401985496678", "expectedQtys": [ - "392085460708645062", - "399008178257902628" + "1751873688660500544742", + "4155872615595097654062" ], - "redemptionFee": "466703259620320", + "redemptionFee": "3500444875441191298", "reserves": [ - "4127048277279068699185929", - "4199916038006833596584444" + "4167361668323088372730132", + "9886000542600143412387647" ], - "LPTokenSupply": "8182532518584421339584929" + "LPTokenSupply": "13869782209963458918565424" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "2764531726725087744", - "expectedQty": "2716424642954368046", - "reserves": [ - "4127048277279068699185929", - "4199918802538560321672188" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "3434168669373928960", - "1762277477278164736" - ], - "expectedQty": "5106411232328124603", - "swapFee": "3065686151087527", + "inputQty": "1597242685257652633600", + "expectedQty": "1621126197620597264598", + "swapFee": "958345611154591580", "reserves": [ - "4127044843110399325256969", - "4199917040261083043507452" + "4167361668323088372730132", + "9884379416402522815123049" ], - "LPTokenSupply": "8182530125838714429849596" + "LPTokenSupply": "13868185063112762381390982" }, { "type": "mint", "inputIndex": 1, - "inputQty": "154989833538181825298432", - "expectedQty": "152283705352619034493095", + "inputQty": "13300228767277299793920", + "expectedQty": "13096384990205992038302", "reserves": [ - "4127044843110399325256969", - "4354906873799264868805884" + "4167361668323088372730132", + "9897679645169800114916969" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2062019823165730979840", - "expectedQty": "2096777024752044611904", - "swapFee": "1237211893899438587", - "reserves": [ - "4124948066085647280645065", - "4354906873799264868805884" + "type": "redeemMasset", + "inputQty": "2032016941250835487129", + "expectedQtys": [ + "609674881406732246927", + "1448006471273923407600" ], - "LPTokenSupply": "8332751935089357123306709" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "85922804214472048640", - "expectedQty": "87402477146095565569", - "swapFee": "51553682528683229", + "redemptionFee": "1219210164750501292", "reserves": [ - "4124948066085647280645065", - "4354819471322118773240315" + "4166751993441681640483205", + "9896231638698526191509369" ], - "LPTokenSupply": "8332666017440510904126391" + "LPTokenSupply": "13879249553082734012992284" }, { "type": "redeemBassets", "inputQtys": [ - "39919093545364357120", - "78712720238197686272" + "62368448577598603264", + "36854408259639189504" ], - "expectedQty": "116567580864014762755", - "swapFee": "69982538041233597", + "expectedQty": "98178440647861362507", + "swapFee": "58942429846624792", "reserves": [ - "4124908146992101916287945", - "4354740758601880575554043" + "4166689624993104041879941", + "9896194784290266552319865" ], - "LPTokenSupply": "8332549386875362652253397" + "LPTokenSupply": "13879151321593899289667463" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "13618279317674804641792", - "11205077751380542750720" + "790819053557934194688", + "2298770915417654034432" ], - "expectedQty": "24393278825644068971101", + "expectedQty": "3048272070694562437030", + "swapFee": "1830061279184248011", "reserves": [ - "4138526426309776720929737", - "4365945836353261118304763" + "4165898805939546107685253", + "9893896013374848898285433" ], - "LPTokenSupply": "8356942665701006721224498" + "LPTokenSupply": "13876101402468053461407222" }, { - "type": "redeemMasset", - "inputQty": "128070174261967948", - "expectedQtys": [ - "63384877546058427", - "66867989642567756" + "type": "mintMulti", + "inputQtys": [ + "1735461559797706391552", + "2387221563666473156608" ], - "redemptionFee": "76842104557180", + "expectedQty": "4072745855800544473671", "reserves": [ - "4138526362924899174871310", - "4365945769485271475737007" + "4167634267499343814076805", + "9896283234938515371442041" ], - "LPTokenSupply": "8356942537638516669712268" + "LPTokenSupply": "13880174148323854005880893" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "9233852895184893771776", - "expectedQty": "9389478839763357640531", - "swapFee": "5540311737110936263", + "inputQty": "21067267887676482650112", + "outputIndex": 1, + "expectedQty": "21212638441263074334951", + "swapFee": "16723793331423033671", "reserves": [ - "4129136884085135817230779", - "4365945769485271475737007" + "4188701535387020296726917", + "9875070596497252297107090" ], - "LPTokenSupply": "8347709238774505487034118" + "LPTokenSupply": "13880175820703187148184260", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "312980851759817", - "expectedQtys": [ - "154720934522635", - "163594288223645" - ], - "redemptionFee": "187788511055", + "type": "mint", + "inputIndex": 0, + "inputQty": "151368051069422716059648", + "expectedQty": "150167510153695967466815", "reserves": [ - "4129136883930414882708144", - "4365945769321677187513362" - ], - "LPTokenSupply": "8347709238461543414125406" + "4340069586456443012786565", + "9875070596497252297107090" + ] }, { "type": "mintMulti", "inputQtys": [ - "49836784841423175680", - "35762938866345615360" + "338407836397957021696", + "1157363532244850573312" ], - "expectedQty": "84117722912611547052", + "expectedQty": "1475491364069300039752", "reserves": [ - "4129186720715256305883824", - "4365981532260543533128722" + "4340407994292840969808261", + "9876227960029497147680402" ], - "LPTokenSupply": "8347793356184456025672458" + "LPTokenSupply": "14031818822220952415690827" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "92347815659226038272", - "expectedQty": "90729445225683140647", + "type": "redeemBassets", + "inputQtys": [ + "10288454077443112", + "47462429409208512" + ], + "expectedQty": "56948274967855098", + "swapFee": "34189478667913", "reserves": [ - "4129186720715256305883824", - "4366073880076202759166994" - ] + "4340407984004386892365149", + "9876227912567067738471890" + ], + "LPTokenSupply": "14031818765241906917034606" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "11903188744018285559808", - "outputIndex": 1, - "expectedQty": "11897844751227987295643", - "swapFee": "9359085871449371483", + "inputQty": "10912914371731479592960", + "expectedQty": "10995250568917408155416", + "swapFee": "6547748623038887755", "reserves": [ - "4141089909459274591443632", - "4354176035324974771871351" + "4329412733435469484209733", + "9876227912567067738471890" ], - "LPTokenSupply": "8347885021538268853750253", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "14020906505645037741330421" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "28459075779781407539200", - "41988228101991735230464" + "1180522933382645940224", + "331012348821740519424" ], - "expectedQty": "69223273463892520165248", - "swapFee": "41558899417986303881", + "expectedQty": "1496984022881522753423", "reserves": [ - "4112630833679493183904432", - "4312187807222983036640887" + "4330593256368852130149957", + "9876558924915889478991314" ], - "LPTokenSupply": "8278624345064900145911511" + "LPTokenSupply": "14022403489667919264083844" }, { - "type": "redeemBassets", - "inputQtys": [ - "219281060505337", - "180252062568430" + "type": "redeemMasset", + "inputQty": "17891776497431804", + "expectedQtys": [ + "5522271377892305", + "12594357270315845" ], - "expectedQty": "392607583026830", - "swapFee": "235705973400", + "redemptionFee": "10735065898459", "reserves": [ - "4112630833460212123399095", - "4312187807042730974072457" + "4330593250846580752257652", + "9876558912321532208675469" ], - "LPTokenSupply": "8278624344672080427508620" + "LPTokenSupply": "14022403471777216273241885" }, { - "type": "redeemMasset", - "inputQty": "184108675086749516", - "expectedQtys": [ - "91406093543543475", - "95841386700941484" + "type": "mintMulti", + "inputQtys": [ + "15462906209894446", + "638534224360791" ], - "redemptionFee": "110465205052049", + "expectedQty": "15966896491296696", "reserves": [ - "4112630742054118579855620", - "4312187711201344273130973" + "4330593266309486962152098", + "9876558912960066433036260" ], - "LPTokenSupply": "8278624160574451861264308" + "LPTokenSupply": "14022403487744112764538581" }, { "type": "redeemBassets", "inputQtys": [ - "82633075166830158413824", - "198117314023181953007616" + "4402029144499003850752", + "11571275845445036802048" ], - "expectedQty": "275866528621999911611315", - "swapFee": "165619288746447815656", + "expectedQty": "15762279245523756048564", + "swapFee": "9463045374538977015", "reserves": [ - "4029997666887288421441796", - "4114070397178162320123357" + "4326191237164987958301346", + "9864987637114621396234212" ], - "LPTokenSupply": "8002608574592580146618901" + "LPTokenSupply": "14006632691757751923410702" }, { - "type": "redeemMasset", - "inputQty": "1239969463684", - "expectedQtys": [ - "624055988078", - "637074876700" + "type": "redeemBassets", + "inputQtys": [ + "96632972151686709641216", + "31490634749035944083456" ], - "redemptionFee": "743981678", + "expectedQty": "126872977139595556346528", + "swapFee": "76169487976543259763", "reserves": [ - "4029997666886664365453718", - "4114070397177525245246657" + "4229558265013301248660130", + "9833497002365585452150756" ], - "LPTokenSupply": "8002608574591340251553384" + "LPTokenSupply": "13879691162078977478130386" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4035918557712682496", - "2518952178053769728" + "8034018262938701266944", + "8800976549048066506752" ], - "expectedQty": "6441121497855001945", + "expectedQty": "16637336697991523892339", + "swapFee": "9988395055828411382", "reserves": [ - "4030001702805222078136214", - "4114072916129703299016385" + "4221524246750362547393186", + "9824696025816537385644004" ], - "LPTokenSupply": "8002615015712838106555329" + "LPTokenSupply": "13863044835825435708667802" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "16937212716285127819264", - "expectedQty": "17227311627948310603025", - "swapFee": "10162327629771076691", + "inputQty": "795983387407511040", + "expectedQty": "807827843383505745", + "swapFee": "477590032444506", "reserves": [ - "4030001702805222078136214", - "4096845604501754988413360" + "4221524246750362547393186", + "9824695217988694002138259" ], - "LPTokenSupply": "7985678819229315955843734" + "LPTokenSupply": "13863044039889807304401212" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "4537369364310245507072", - "expectedQty": "4614546814125496271704", - "swapFee": "2722421618586147304", + "inputQty": "35955493832953534873600", + "expectedQty": "36218267534765048470046", + "swapFee": "21573296299772120924", "reserves": [ - "4025387155991096581864510", - "4096845604501754988413360" + "4185305979215597498923140", + "9824695217988694002138259" ], - "LPTokenSupply": "7981141722107167568951392" + "LPTokenSupply": "13827090703386483746739704" }, { - "type": "redeemBassets", - "inputQtys": [ - "191684063723143593984", - "1471508373482623729664" - ], - "expectedQty": "1634229371755890758660", - "swapFee": "981126298832834155", + "type": "redeem", + "inputIndex": 1, + "inputQty": "208243895623782261325824", + "expectedQty": "211340991947886391844146", + "swapFee": "124946337374269356795", "reserves": [ - "4025195471927373438270526", - "4095374096128272364683696" + "4185305979215597498923140", + "9613354226040807610294113" ], - "LPTokenSupply": "7979506609721742728641991" + "LPTokenSupply": "13618859302396438912349559" }, { "type": "mintMulti", "inputQtys": [ - "1254875740857478152192", - "535939144894931664896" + "17424856785297929666560", + "15630771630647889887232" ], - "expectedQty": "1759747612324300679640", + "expectedQty": "32677934686131232656239", "reserves": [ - "4026450347668230916422718", - "4095910035273167296348592" + "4202730836000895428589700", + "9628984997671455500181345" ], - "LPTokenSupply": "7981266357334067029321631" + "LPTokenSupply": "13651537237082570145005798" }, { "type": "redeemMasset", - "inputQty": "8922463953137439539", + "inputQty": "70592535655088243", "expectedQtys": [ - "4498572151814351018", - "4576176341448589599" + "21719416090950312", + "49761914302593708" ], - "redemptionFee": "5353478371882463", + "redemptionFee": "42355521393052", "reserves": [ - "4026445849096079102071700", - "4095905459096825847758993" + "4202730814281479337639388", + "9628984947909541197587637" ], - "LPTokenSupply": "7981257435405461729070338" + "LPTokenSupply": "13651537166494270042056860" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "12364485765393899585536", - "expectedQty": "12574733119438690296668", - "swapFee": "7418691459236339751", - "reserves": [ - "4013871115976640411775032", - "4095905459096825847758993" + "type": "mintMulti", + "inputQtys": [ + "4684554534407500", + "1119095451598365" ], - "LPTokenSupply": "7968893691509213753118777" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "21455088621422988", - "expectedQty": "21822742093914456", - "swapFee": "12873053172853", + "expectedQty": "5748937549545661", "reserves": [ - "4013871115976640411775032", - "4095905437274083753844537" + "4202730818966033872046888", + "9628984949028636649186002" ], - "LPTokenSupply": "7968893670055412437013074" + "LPTokenSupply": "13651537172243207591602521" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "166565619316254244864", - "expectedQty": "169397166665943632077", - "swapFee": "99939371589752546", + "inputQty": "13952430564325168", + "expectedQty": "14057196569828503", + "swapFee": "8371458338595", "reserves": [ - "4013701718809974468142955", - "4095905437274083753844537" + "4202730804908837302218385", + "9628984949028636649186002" ], - "LPTokenSupply": "7968727114430033341743464" + "LPTokenSupply": "13651537158291614173111212" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "54493227053448593408", - "outputIndex": 0, - "expectedQty": "54485904973667876980", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "138853113581450993598464", + "47267286090163461029888" + ], + "expectedQty": "184300290142966238931419", + "swapFee": "110646562022993539482", "reserves": [ - "4013647232905000800265975", - "4095959930501137202437945" + "4063877691327386308619921", + "9581717662938473188156114" ], - "LPTokenSupply": "7968727114430033341743464", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13467137286242827239994258" }, { "type": "mintMulti", "inputQtys": [ - "10691445335312960", - "7125973779338091" + "44513749866596379131904", + "9314358489002472898560" ], - "expectedQty": "17508142511049658", + "expectedQty": "53336944183733593781318", "reserves": [ - "4013647243596446135578935", - "4095959937627110981776036" + "4108391441193982687751825", + "9591032021427475661054674" ], - "LPTokenSupply": "7968727131938175852793122" + "LPTokenSupply": "13520474230426560833775576" }, { "type": "redeemMasset", - "inputQty": "29894036850273065369", + "inputQty": "21567235217379800226201", "expectedQtys": [ - "15047839654630171087", - "15356443810934699838" + "6549583918533931453948", + "15289991226208327131819" ], - "redemptionFee": "17936422110163839", + "redemptionFee": "12940341130427880135", "reserves": [ - "4013632195756791505407848", - "4095944581183300047076198" + "4101841857275448756297877", + "9575742030201267333922855" ], - "LPTokenSupply": "7968697239694967790744136" + "LPTokenSupply": "13498908289243294076337388" }, { "type": "redeemBassets", "inputQtys": [ - "19466889418425696780288", - "8303823248694299328512" + "154270744748176145645568", + "77441835002297373949952" ], - "expectedQty": "27289088826290170822499", - "swapFee": "16383283265733542619", + "expectedQty": "229330994051943315457470", + "swapFee": "137681205154258544401", "reserves": [ - "3994165306338365808627560", - "4087640757934605747747686" + "3947571112527272610652309", + "9498300195198969959972903" ], - "LPTokenSupply": "7941393405913738459733278" + "LPTokenSupply": "13269453382106711928189956" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "28428903427874194718720", - "expectedQty": "27932549267967584256619", + "type": "redeemMasset", + "inputQty": "1022079978970780427878", + "expectedQtys": [ + "303879326715532148364", + "731167846248426440683" + ], + "redemptionFee": "613247987382468256", + "reserves": [ + "3947267233200557078503945", + "9497569027352721533532220" + ], + "LPTokenSupply": "13268431363452539886008903" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "14672128204793448497152", + "expectedQty": "14775234268914760465781", + "swapFee": "8803276922876069098", + "reserves": [ + "3932491998931642318038164", + "9497569027352721533532220" + ], + "LPTokenSupply": "13253760115575438725118660" + }, + { + "type": "mintMulti", + "inputQtys": [ + "1584699964663227482112", + "1246817840380361048064" + ], + "expectedQty": "2800299063974028155602", + "reserves": [ + "3934076698896305545520276", + "9498815845193101894580284" + ], + "LPTokenSupply": "13256560414639412753274262" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "2009116417209513", + "expectedQty": "2023203259173842", + "swapFee": "1205469850325", "reserves": [ - "3994165306338365808627560", - "4116069661362479942466406" - ] + "3934076696873102286346434", + "9498815845193101894580284" + ], + "LPTokenSupply": "13256560412630416883049781" }, { "type": "redeemBassets", "inputQtys": [ - "353264917096420526260224", - "492535548629102207434752" + "36708183854286662270976", + "12147713029235978272768" ], - "expectedQty": "831100135453246038113190", - "swapFee": "498959456946115292043", + "expectedQty": "48392267161187206140800", + "swapFee": "29052791971895460961", "reserves": [ - "3640900389241945282367336", - "3623534112733377735031654" + "3897368513018815624075458", + "9486668132163865916307516" ], - "LPTokenSupply": "7137776756217208502113867" + "LPTokenSupply": "13208141997956454970994115" }, { "type": "redeemMasset", - "inputQty": "130252502695813369036", + "inputQty": "254230643431008665", "expectedQtys": [ - "66400486050427368922", - "66083770656492878026" + "74971635420249369", + "182490062764576391" ], - "redemptionFee": "78151501617488021", + "redemptionFee": "152538386058605", "reserves": [ - "3640833988755894854998414", - "3623468028962721242153628" + "3897368438047180203826089", + "9486667949673803151731125" ], - "LPTokenSupply": "7137646511529662850493633" + "LPTokenSupply": "13208141743741065378591310" }, { "type": "redeemBassets", "inputQtys": [ - "84507867714933179285504", - "42309286681647788326912" + "132968731642202062848", + "128026380644377280512" ], - "expectedQty": "124606203789160398474460", - "swapFee": "74808607437959014493", + "expectedQty": "258020351939730164508", + "swapFee": "154905154256391933", "reserves": [ - "3556326121040961675712910", - "3581158742281073453826716" + "3897235469315538001763241", + "9486539923293158774450613" ], - "LPTokenSupply": "7012972979993808288906128" + "LPTokenSupply": "13207883583974486817674061" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2773514250759562067968", - "expectedQty": "2725064839463070706243", + "inputIndex": 0, + "inputQty": "26979147434623726780416", + "expectedQty": "26776455488215334133521", "reserves": [ - "3556326121040961675712910", - "3583932256531833015894684" + "3924214616750161728543657", + "9486539923293158774450613" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "21957242682678972514304", - "31753214229694335942656" - ], - "expectedQty": "52773290068146472723459", - "swapFee": "31682983831186595591", - "reserves": [ - "3534368878358282703198606", - "3552179042302138679952028" - ], - "LPTokenSupply": "6962896240079676818952879" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "121447072759732240", - "expectedQty": "123527586100856790", - "swapFee": "72868243655839", + "type": "mint", + "inputIndex": 1, + "inputQty": "771232100782789888", + "expectedQty": "759324112479448946", "reserves": [ - "3534368754830696602341816", - "3552179042302138679952028" - ], - "LPTokenSupply": "6962896118639890883586222" + "3924214616750161728543657", + "9486540694525259557240501" + ] }, { "type": "redeemMasset", - "inputQty": "634705334142189646643", + "inputQty": "368871757888003139174", "expectedQtys": [ - "321983366360139613498", - "323605895505707345512" + "109308689269666369581", + "264246844348351695517" ], - "redemptionFee": "380823200485313787", + "redemptionFee": "221323054732801883", "reserves": [ - "3534046771464336462728318", - "3551855436406632972606516" + "3924105308060892062174076", + "9486276447680911205544984" ], - "LPTokenSupply": "6962261451388068742470957" + "LPTokenSupply": "13234291949161232101397542" }, { "type": "mintMulti", "inputQtys": [ - "13278331563932987162624", - "72805368471486019403776" + "1091946184546118400", + "10520660878843842560" ], - "expectedQty": "84579073493869394318418", + "expectedQty": "11441923525084541983", "reserves": [ - "3547325103028269449890942", - "3624660804878118992010292" + "3924106400007076608292476", + "9486286968341790049387544" ], - "LPTokenSupply": "7046840524881938136789375" + "LPTokenSupply": "13234303391084757185939525" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "38009367638472900608", - "outputIndex": 0, - "expectedQty": "38003935549100519216", - "swapFee": "0", + "inputQty": "1150702389556144640", + "expectedQty": "1168046882669889624", + "swapFee": "690421433733686", "reserves": [ - "3547287099092720349371726", - "3624698814245757464910900" + "3924106400007076608292476", + "9486285800294907379497920" ], - "LPTokenSupply": "7046840524881938136789375", + "LPTokenSupply": "13234302240451409773168253" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "921893567748567728128", + "outputIndex": 1, + "expectedQty": "928537712693526210911", + "swapFee": "731947144678431587", + "reserves": [ + "3925028293574825176020604", + "9485357262582213853287009" + ], + "LPTokenSupply": "13234302313646124241011411", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "21169380545122235580416", - "expectedQty": "20798322268793485295305", + "inputQty": "34872512156769916", + "expectedQty": "34334119584876310", "reserves": [ - "3547287099092720349371726", - "3645868194790879700491316" + "3925028293574825176020604", + "9485357297454726010056925" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "46942733905812307968", - "expectedQty": "46127854179790755038", + "type": "redeemBassets", + "inputQtys": [ + "1408695896553614999552", + "754022384548545167360" + ], + "expectedQty": "2140440777836689429432", + "swapFee": "1285035487994810543", "reserves": [ - "3547334041826626161679694", - "3645868194790879700491316" - ] + "3923619597678271561021052", + "9484603275070177464889565" + ], + "LPTokenSupply": "13232160750670467941128799" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "35256266762616586240", - "57089096743366148096" + "5189430363490659328", + "132265878743730176" ], - "expectedQty": "90732155986478380055", - "swapFee": "54471976777953800", + "expectedQty": "5280480194012333217", "reserves": [ - "3547298785559863545093454", - "3645811105694136334343220" + "3923624787108635051680380", + "9484603407336056208619741" ], - "LPTokenSupply": "7067594193824145834301242" + "LPTokenSupply": "13232166031150661953462016" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "9322203701506217984", + "expectedQty": "9387474262932323336", + "swapFee": "5593322220903730", + "reserves": [ + "3923615399634372119357044", + "9484603407336056208619741" + ], + "LPTokenSupply": "13232156709506292669334405" }, { "type": "swap", "inputIndex": 1, - "inputQty": "40401838652152298340352", + "inputQty": "2235585118000337408", "outputIndex": 0, - "expectedQty": "40391497702141183211969", + "expectedQty": "2217809045842872537", "swapFee": "0", "reserves": [ - "3506907287857722361881485", - "3686212944346288632683572" + "3923613181825326276484507", + "9484605642921174208957149" ], - "LPTokenSupply": "7067594193824145834301242", + "LPTokenSupply": "13232156709506292669334405", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "14523589243928435490816", - "13760558563535603367936" + "type": "redeemMasset", + "inputQty": "8729720486875262196121", + "expectedQtys": [ + "2586992876492771576073", + "6253574472691879318304" ], - "expectedQty": "27790802924895067130199", + "redemptionFee": "5237832292125157317", "reserves": [ - "3521430877101650797372301", - "3699973502909824236051508" + "3921026188948833504908434", + "9478352068448482329638845" ], - "LPTokenSupply": "7095384996749040901431441" + "LPTokenSupply": "13223427512802646619654015" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7290177209292490752", - "18857764208523530240" + "1876842948761189613568", + "2227421959716079403008" ], - "expectedQty": "25689879398406308781", + "expectedQty": "4055705097508654127732", + "swapFee": "2434883988898531595", "reserves": [ - "3521438167278860089863053", - "3699992360674032759581748" + "3919149346000072315294866", + "9476124646488766250235837" ], - "LPTokenSupply": "7095410686628439307740222" + "LPTokenSupply": "13219369616309547956847846" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "87074495766125057409024", - "outputIndex": 1, - "expectedQty": "87019446002273343822834", - "swapFee": "68452635737588878179", + "type": "redeemMasset", + "inputQty": "84149413463140", + "expectedQtys": [ + "24932825984565", + "60285165468394" + ], + "redemptionFee": "50489648077", "reserves": [ - "3608512663044985147272077", - "3612972914671759415758914" + "3919149345975139489310301", + "9476124646428481084767443" ], - "LPTokenSupply": "7095417531892013066628039", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "13219369616225403592349513" }, { "type": "redeemMasset", - "inputQty": "325084581879289059737", + "inputQty": "18757208825579434803", "expectedQtys": [ - "165228893423741957382", - "165433122287403886018" + "5557617152129063826", + "13437781574919844108" ], - "redemptionFee": "195050749127573435", + "redemptionFee": "11254325295347660", "reserves": [ - "3608347434151561405314695", - "3612807481549472011872896" + "3919143788357987360246475", + "9476111208646906164923335" ], - "LPTokenSupply": "7095092466815208690325645" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2401351928492051456", - "expectedQty": "2359440268365583721", - "reserves": [ - "3608349835503489897366151", - "3612807481549472011872896" - ] + "LPTokenSupply": "13219350860142010542449476" }, { "type": "redeemBassets", "inputQtys": [ - "30482186111626564861952", - "67403262878508751257600" + "354271278952072519614464", + "154606698266413496270848" ], - "expectedQty": "96177097984250809470771", - "swapFee": "57740903332550015691", + "expectedQty": "503936570514315525720536", + "swapFee": "302543468389623089285", "reserves": [ - "3577867649391863332504199", - "3545404218670963260615296" + "3564872509405914840632011", + "9321504510380492668652487" ], - "LPTokenSupply": "6998865761458226951424472" + "LPTokenSupply": "12715142000506144355948582" }, { - "type": "redeemMasset", - "inputQty": "17230727710916576752435", - "expectedQtys": [ - "8803179800033752817584", - "8723305012711589721387" + "type": "mintMulti", + "inputQtys": [ + "2746217813674876", + "1609380495530412" ], - "redemptionFee": "10338436626549946051", + "expectedQty": "4311730803507641", "reserves": [ - "3569064469591829579686615", - "3536680913658251670893909" + "3564872512152132654306887", + "9321504511989873164182899" ], - "LPTokenSupply": "6981636067590973029666642" + "LPTokenSupply": "12715142004817875159456223" }, { "type": "mint", "inputIndex": 0, - "inputQty": "8266725167214873280512", - "expectedQty": "8122063109709617145694", + "inputQty": "23453118232787276529664", + "expectedQty": "23294781880363582377127", "reserves": [ - "3577331194759044452967127", - "3536680913658251670893909" + "3588325630384919930836551", + "9321504511989873164182899" ] }, { - "type": "redeem", + "type": "mint", + "inputIndex": 0, + "inputQty": "1543070789538107621376", + "expectedQty": "1532590649309108760397", + "reserves": [ + "3589868701174458038457927", + "9321504511989873164182899" + ] + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "71272328500018407276544", - "expectedQty": "72490523211790477351499", - "swapFee": "42763397100011044365", + "inputQty": "941373695333572", + "expectedQty": "926526887480978", + "reserves": [ + "3589868701174458038457927", + "9321504512931246859516471" + ] + }, + { + "type": "redeemMasset", + "inputQty": "3238012867763337848422", + "expectedQtys": [ + "911859854480181450439", + "2367748365258322770980" + ], + "redemptionFee": "1942807720658002709", "reserves": [ - "3577331194759044452967127", - "3464190390446461193542410" + "3588956841319977857007488", + "9319136764565988536745491" ], - "LPTokenSupply": "6918490078540374240640228" + "LPTokenSupply": "12736731559687083466026573" }, { "type": "mint", "inputIndex": 0, - "inputQty": "6055671567986158592", - "expectedQty": "5949241839263359894", + "inputQty": "566818288849954112", + "expectedQty": "562967117064667698", "reserves": [ - "3577337250430612439125719", - "3464190390446461193542410" + "3588957408138266706961600", + "9319136764565988536745491" ] }, { "type": "mintMulti", "inputQtys": [ - "117023668365174509666304", - "113760085943245896417280" + "4812956476301344768", + "5295420467867566080" ], - "expectedQty": "226751480060157365413778", + "expectedQty": "9992158875458440000", "reserves": [ - "3694360918795786948792023", - "3577950476389707089959690" + "3588962221094743008306368", + "9319142059986456404311571" ], - "LPTokenSupply": "7145247507842370869413900" + "LPTokenSupply": "12736742114813075989134271" }, { - "type": "redeemMasset", - "inputQty": "689022137778146639872", - "expectedQtys": [ - "356036534399367545069", - "344817714312978233751" - ], - "redemptionFee": "413413282666887983", + "type": "mint", + "inputIndex": 1, + "inputQty": "240987301813497039421440", + "expectedQty": "237172694973352046056611", "reserves": [ - "3694004882261387581246954", - "3577605658675394111725939" - ], - "LPTokenSupply": "7144558527045920989462826" + "3588962221094743008306368", + "9560129361799953443733011" + ] }, { "type": "mintMulti", "inputQtys": [ - "4959362622508083707904", - "535754628100734255104" + "12334777948581867520", + "227708139534230112" ], - "expectedQty": "5398644488044419315355", + "expectedQty": "12478790609688936403", + "reserves": [ + "3588974555872691590173888", + "9560129589508092977963123" + ], + "LPTokenSupply": "12973927288577037724127285" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "2974872943543179776", + "outputIndex": 0, + "expectedQty": "2946743065506329462", + "swapFee": "0", "reserves": [ - "3698964244883895664954858", - "3578141413303494845981043" + "3588971609129626083844426", + "9560132564381036521142899" ], - "LPTokenSupply": "7149957171533965408778181" + "LPTokenSupply": "12973927288577037724127285", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "3001045529564097536", - "23666293574727782400" + "1403812761168363913216", + "95633744866671912288256" ], - "expectedQty": "26203678562346678413", - "swapFee": "15731646125083056", + "expectedQty": "95511169823845228161539", + "swapFee": "57341106558242082146", "reserves": [ - "3698961243838366100857322", - "3578117747009920118198643" + "3587567796368457719931210", + "9464498819514364608854643" ], - "LPTokenSupply": "7149930953696921549525016" + "LPTokenSupply": "12878364511757290078091813" }, { - "type": "redeemMasset", - "inputQty": "15934931249615451088486", - "expectedQtys": [ - "8238866624191474323504", - "7969706341847630086933" + "type": "mintMulti", + "inputQtys": [ + "411594092739334242304", + "4564545159821583187968" ], - "redemptionFee": "9560958749769270653", + "expectedQty": "4901082085962954123672", "reserves": [ - "3690722377214174626533818", - "3570148040668072488111710" + "3587979390461197054173514", + "9469063364674186192042611" ], - "LPTokenSupply": "7133996978543181075363595" + "LPTokenSupply": "12883265593843253032215485" }, { - "type": "redeemBassets", - "inputQtys": [ - "830686408950997843968", - "1115180313029140676608" + "type": "redeem", + "inputIndex": 1, + "inputQty": "323791194970904768", + "expectedQty": "328807971806782379", + "swapFee": "194274716982542", + "reserves": [ + "3587979390461197054173514", + "9469063035866214385260232" ], - "expectedQty": "1911899749173099214143", - "swapFee": "1147828546631838631", + "LPTokenSupply": "12883265270071485533008971" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "288449258039201728", + "expectedQty": "292918451660073276", + "swapFee": "173069554823521", "reserves": [ - "3689891690805223628689850", - "3569032860355043347435102" + "3587979390461197054173514", + "9469062742947762725186956" ], - "LPTokenSupply": "7132084045748316007494683" + "LPTokenSupply": "12883264981639534449289595" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "326153887363985899520", - "12261415054068921925632" + "1343269561139447726080", + "1407680118632307490816" ], - "expectedQty": "12368999919949368980602", - "swapFee": "7425855465248770650", + "expectedQty": "2719763241275112630508", "reserves": [ - "3689565536917859642790330", - "3556771445300974425509470" + "3589322660022336501899594", + "9470470423066395032677772" ], - "LPTokenSupply": "7119708362558447914620495" + "LPTokenSupply": "12885984744880809561920103" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "57642303219813761155072", + "expectedQty": "57985361124301088804686", + "swapFee": "34585381931888256693", + "reserves": [ + "3531337298898035413094908", + "9470470423066395032677772" + ], + "LPTokenSupply": "12828345900199188989590700" + }, + { + "type": "redeemBassets", "inputQtys": [ - "72636067359188", - "247731048799992" + "131436677524973984", + "87155368418992912" ], - "expectedQty": "314790343335014", + "expectedQty": "216360921511881930", + "swapFee": "129894489600889", "reserves": [ - "3689565536990495710149518", - "3556771445548705474309462" + "3531337167461357888120924", + "9470470335911026613684860" ], - "LPTokenSupply": "7119708362873238257955509" + "LPTokenSupply": "12828345683721362437067968" }, { "type": "redeemBassets", "inputQtys": [ - "861868573855396003840", - "3284152744904043266048" + "23359347475807836569600", + "32876264533459107577856" ], - "expectedQty": "4073871141457170443856", - "swapFee": "2445790158969684076", + "expectedQty": "55562443623617651674818", + "swapFee": "33357480662568131884", "reserves": [ - "3688703668416640314145678", - "3553487292803801431043414" + "3507977819985550051551324", + "9437594071377567506107004" ], - "LPTokenSupply": "7115632290520638014795983" + "LPTokenSupply": "12772753218365148474074453" }, { "type": "redeemBassets", "inputQtys": [ - "55371482086432006144", - "302620495238483083264" + "124037387644938815012864", + "220098652608493227343872" ], - "expectedQty": "351766898841305424957", - "swapFee": "211186851415632634", + "expectedQty": "339839527022330562109735", + "swapFee": "204026131892533857580", "reserves": [ - "3688648296934553882139534", - "3553184672308562947960150" + "3383940432340611236538460", + "9217495418769074278763132" ], - "LPTokenSupply": "7115280333553630435301654" + "LPTokenSupply": "12432730067824114631492895" }, { - "type": "redeemMasset", - "inputQty": "353705035214657106739", - "expectedQtys": [ - "183254994680588190607", - "176525053571570170127" + "type": "swap", + "inputIndex": 1, + "inputQty": "45935533412080970366976", + "outputIndex": 0, + "expectedQty": "45476395137501872718186", + "swapFee": "0", + "reserves": [ + "3338464037203109363820274", + "9263430952181155249130108" ], - "redemptionFee": "212223021128794264", + "LPTokenSupply": "12432730067824114631492895", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "99540898517173686763520", + "expectedQty": "100061520850326709119892", + "swapFee": "59724539110304212058", "reserves": [ - "3688465041939873293948927", - "3553008147254991377790023" + "3238402516352782654700382", + "9263430952181155249130108" ], - "LPTokenSupply": "7114926649740717891074341" + "LPTokenSupply": "12333195141760851975150580" }, { "type": "mintMulti", "inputQtys": [ - "1928384301196185436160", - "1631876706955073159168" + "2233445323402922426368", + "4888264550853656969216" ], - "expectedQty": "3498016537683891471014", + "expectedQty": "7029783923573616728066", "reserves": [ - "3690393426241069479385087", - "3554640023961946450949191" + "3240635961676185577126750", + "9268319216732008906099324" ], - "LPTokenSupply": "7118424666278401782545355" + "LPTokenSupply": "12340224925684425591878646" }, { - "type": "redeemMasset", - "inputQty": "570403790926138415513", - "expectedQtys": [ - "295536089840572985408", - "284664612179994265488" + "type": "redeemBassets", + "inputQtys": [ + "12372182728384391938048", + "3040100127825630593024" ], - "redemptionFee": "342242274555683049", + "expectedQty": "15293891768501094007460", + "swapFee": "9181844167601217134", "reserves": [ - "3690097890151228906399679", - "3554355359349766456683703" + "3228263778947801185188702", + "9265279116604183275506300" ], - "LPTokenSupply": "7117854296711703099698146" + "LPTokenSupply": "12324922770256173656775764" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "20208071932369556209664", - "13240899144301338951680" + "97377773658170114048", + "87426469152411418624" ], - "expectedQty": "32863648884112325785061", + "expectedQty": "182841707102590453083", + "swapFee": "109770886793630450", "reserves": [ - "3710305962083598462609343", - "3567596258494067795635383" + "3228166401174143015074654", + "9265191690135030864087676" ], - "LPTokenSupply": "7150717945595815425483207" + "LPTokenSupply": "12324739829755272952055275" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "251376493094230441328640", - "expectedQty": "246925719858907643342591", + "inputQty": "11247381840650752229376", + "expectedQty": "11303098693177132947262", + "swapFee": "6748429104390451337", "reserves": [ - "3961682455177828903937983", - "3567596258494067795635383" - ] + "3216863302480965882127392", + "9265191690135030864087676" + ], + "LPTokenSupply": "12313493122757532638871032" }, { "type": "mint", "inputIndex": 1, - "inputQty": "217631714287044032", - "expectedQty": "213905263930115130", + "inputQty": "227600876019723605639168", + "expectedQty": "223881358531575376578684", "reserves": [ - "3961682455177828903937983", - "3567596476125782082679415" + "3216863302480965882127392", + "9492792566154754469726844" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "43680467117123890577408", - "30434518887664841654272" - ], - "expectedQty": "72816058582002964600934", - "swapFee": "43715864668002580308", + "type": "redeem", + "inputIndex": 0, + "inputQty": "49458357022786381152256", + "expectedQty": "49679052225898848324869", + "swapFee": "29675014213671828691", "reserves": [ - "3918001988060705013360575", - "3537161957238117241025143" + "3167184250255067033802523", + "9492792566154754469726844" ], - "LPTokenSupply": "7324788476499782832017715" + "LPTokenSupply": "12487919091767743001480329" }, { "type": "redeemMasset", - "inputQty": "1094108896517076377", + "inputQty": "118150946737528792678", "expectedQtys": [ - "584883619909936814", - "528031403777096037" + "29947446922183029775", + "89759508464125020587" ], - "redemptionFee": "656465337910245", + "redemptionFee": "70890568042517275", "reserves": [ - "3918001403177085103423761", - "3537161429206713463929106" + "3167154302808144850772748", + "9492702806646290344706257" ], - "LPTokenSupply": "7324787382456532848732362" + "LPTokenSupply": "12487800947910062276939378" }, { "type": "redeemBassets", "inputQtys": [ - "314217169605832667561984", - "139403080671335360233472" + "465752116793186568896512", + "73195433995707250376704" ], - "expectedQty": "445647509185696768125257", - "swapFee": "267549034932377487367", + "expectedQty": "535987997860525012530387", + "swapFee": "321785870238458082367", "reserves": [ - "3603784233571252435861777", - "3397758348535378103695634" + "2701402186014958281876236", + "9419507372650583094329553" ], - "LPTokenSupply": "6878899079139396940868473" + "LPTokenSupply": "11951523342766322652134859" }, { "type": "mint", "inputIndex": 0, - "inputQty": "11264054606394231357440", - "expectedQty": "11064593711005002506739", + "inputQty": "2211606870108695953408", + "expectedQty": "2206489019365840454059", "reserves": [ - "3615048288177646667219217", - "3397758348535378103695634" + "2703613792885066977829644", + "9419507372650583094329553" ] }, { - "type": "redeemMasset", - "inputQty": "3890689747925127187660", - "expectedQtys": [ - "2040154776093899097420", - "1917527061933599375905" + "type": "redeemBassets", + "inputQtys": [ + "965496475191814656", + "3915830606071298048" ], - "redemptionFee": "2334413848755076312", + "expectedQty": "4811276498641970644", + "swapFee": "2888498998584332", "reserves": [ - "3613008133401552768121797", - "3395840821473444504319729" + "2703612827388591786014988", + "9419503456819977023031505" ], - "LPTokenSupply": "6886073216543861691695183" + "LPTokenSupply": "11953725017909540751892374" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "106752232701259361026048", - "expectedQty": "108561315726157821452043", - "swapFee": "64051339620755616615", + "type": "redeemMasset", + "inputQty": "224858443173018075136", + "expectedQtys": [ + "50826450524513194429", + "177081541248631284461" + ], + "redemptionFee": "134915065903810845", "reserves": [ - "3613008133401552768121797", - "3287279505747286682867686" + "2703562000938067272820559", + "9419326375278728391747044" ], - "LPTokenSupply": "6779327388976564406230796" + "LPTokenSupply": "11953500172957874324198322" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1955295882981862539264", - "expectedQty": "1921649740800046239095", + "type": "redeemBassets", + "inputQtys": [ + "125744303611045455331328", + "229853260343040330956800" + ], + "expectedQty": "351339194923299495818125", + "swapFee": "210930074998979084941", "reserves": [ - "3613008133401552768121797", - "3289234801630268545406950" - ] + "2577817697327021817489231", + "9189473114935688060790244" + ], + "LPTokenSupply": "11601971140967075747203749" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2227335201125155995648", - "expectedQty": "2264973412381975397617", - "swapFee": "1336401120675093597", + "type": "mintMulti", + "inputQtys": [ + "14097480413410517581824", + "56276325355007269404672" + ], + "expectedQty": "69364532355905975607412", "reserves": [ - "3613008133401552768121797", - "3286969828217886570009333" + "2591915177740432335071055", + "9245749440290695330194916" ], - "LPTokenSupply": "6779021837156351363983602" + "LPTokenSupply": "11671335673322981722811161" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "77442029956531138592768", - "expectedQty": "76059114034578828352294", + "type": "mintMulti", + "inputQtys": [ + "8593594151628949159936", + "1503521212471917674496" + ], + "expectedQty": "10054641671910676961392", "reserves": [ - "3690450163358083906714565", - "3286969828217886570009333" - ] + "2600508771892061284230991", + "9247252961503167247869412" + ], + "LPTokenSupply": "11681390314994892399772553" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1365063525582244151296", - "expectedQty": "1340641177921453332416", + "type": "redeemBassets", + "inputQtys": [ + "22537677871084300402688", + "344591339498375024214016" + ], + "expectedQty": "361094555528959357383262", + "swapFee": "216786805400615984020", "reserves": [ - "3691815226883666150865861", - "3286969828217886570009333" - ] + "2577971094020976983828303", + "8902661622004792223655396" + ], + "LPTokenSupply": "11320100651341072488003672" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2342075851392307712", - "expectedQty": "2300172427256974095", + "inputQty": "5729302917246483431424", + "expectedQty": "5714671501057763834011", "reserves": [ - "3691817568959517543173573", - "3286969828217886570009333" + "2583700396938223467259727", + "8902661622004792223655396" ] }, { - "type": "mintMulti", - "inputQtys": [ - "153308333693047228334080", - "74637706279101529063424" + "type": "redeemMasset", + "inputQty": "559241983445801579315", + "expectedQtys": [ + "127500470845598772333", + "439328627239357616652" ], - "expectedQty": "223922471625171956600517", + "redemptionFee": "335545190067480947", "reserves": [ - "3845125902652564771507653", - "3361607534496988099072757" + "2583572896467377868487394", + "8902222293377552866038744" ], - "LPTokenSupply": "7080346364166450859242924" + "LPTokenSupply": "11325256114413203457006462" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1520799062486868", - "expectedQty": "1493503344753479", + "inputQty": "2377791595344575332352", + "expectedQty": "2382479745641420205905", + "swapFee": "1426674957206745199", "reserves": [ - "3845125904173363833994521", - "3361607534496988099072757" - ] + "2581190416721736448281489", + "8902222293377552866038744" + ], + "LPTokenSupply": "11322878465485354602348629" }, { - "type": "mintMulti", - "inputQtys": [ - "1356166976869167267840", - "1235563584948140769280" + "type": "redeemMasset", + "inputQty": "303368063056791417651", + "expectedQtys": [ + "69115014264689380268", + "238369558792823821151" ], - "expectedQty": "2546301919834499848772", + "redemptionFee": "182020837834074850", "reserves": [ - "3846482071150233001262361", - "3362843098081936239842037" + "2581121301707471758901221", + "8901983923818760042217593" ], - "LPTokenSupply": "7082892667579788703845175" + "LPTokenSupply": "11322575115624381594338463" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "141195595701682771591168", - "expectedQty": "143549732404754231815402", - "swapFee": "84717357421009662954", - "reserves": [ - "3846482071150233001262361", - "3219293365677182008026635" + "type": "redeemMasset", + "inputQty": "388807299528038195", + "expectedQtys": [ + "88580261782085445", + "305502909076820356" ], - "LPTokenSupply": "6941705543613848033220302" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "2966323892932864114688", - "outputIndex": 1, - "expectedQty": "2960395930156176913974", - "swapFee": "2330118442280914403", + "redemptionFee": "233284379716822", "reserves": [ - "3849448395043165865377049", - "3216332969747025831112661" + "2581121213127209976815776", + "8901983618315850965397237" ], - "LPTokenSupply": "6941705776625692261311742", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "11322574726840410504271950" }, { "type": "redeemBassets", "inputQtys": [ - "38011657464938187718656", - "93477880377936657252352" + "4420202704055758749696", + "2542124432898266759168" ], - "expectedQty": "129222644015967555830918", - "swapFee": "77580134490274698317", + "expectedQty": "6907116598633384282643", + "swapFee": "4146758013988423623", + "reserves": [ + "2576701010423154218066080", + "8899441493882952698638069" + ], + "LPTokenSupply": "11315663878159564530408045" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "4529047362471231488", + "expectedQty": "4606013837846476627", + "swapFee": "2717428417482738", "reserves": [ - "3811436737578227677658393", - "3122855089369089173860309" + "2576701010423154218066080", + "8899436887869114852161442" ], - "LPTokenSupply": "6812413310488683458252337" + "LPTokenSupply": "11315659349383944900924830" }, { "type": "redeemMasset", - "inputQty": "1992141588678", + "inputQty": "10656246130406304461619", "expectedQtys": [ - "1113902744695", - "912662886684" + "2425089387029560866631", + "8375799077971611394091" ], - "redemptionFee": "1195284953", + "redemptionFee": "6393747678243782676", "reserves": [ - "3811436737577113774913698", - "3122855089368176510973625" + "2574275921036124657199449", + "8891061088791143240767351" ], - "LPTokenSupply": "6812413310486691436192154" + "LPTokenSupply": "11305003742628306420841478" }, { - "type": "mintMulti", - "inputQtys": [ - "7995728948011834368", - "225833733530099154944" - ], - "expectedQty": "229878439812691239245", + "type": "swap", + "inputIndex": 1, + "inputQty": "527596144597102166016", + "outputIndex": 0, + "expectedQty": "519781962473923779011", + "swapFee": "0", "reserves": [ - "3811444733306061786748066", - "3123080923101706610128569" + "2573756139073650733420438", + "8891588684935740342933367" ], - "LPTokenSupply": "6812643188926504127431399" + "LPTokenSupply": "11305003742628306420841478", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "207542992737523793920", - "expectedQty": "203772026126941615585", + "inputQty": "90117948625642013589504", + "expectedQty": "89860248421416609947396", "reserves": [ - "3811652276298799310541986", - "3123080923101706610128569" + "2663874087699292747009942", + "8891588684935740342933367" ] }, { - "type": "redeemMasset", - "inputQty": "3796533510034234225459", - "expectedQtys": [ - "2122810484236543617010", - "1739326792190247472019" + "type": "redeem", + "inputIndex": 1, + "inputQty": "49643832733895382532096", + "expectedQty": "50476822612689493169448", + "swapFee": "29786299640337229519", + "reserves": [ + "2663874087699292747009942", + "8841111862323050849763919" ], - "redemptionFee": "2277920106020540535", + "LPTokenSupply": "11345223136945791681979729" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "30165699505994732666880", + "expectedQty": "30243930432494500537349", + "swapFee": "18099419703596839600", "reserves": [ - "3809529465814562766924976", - "3121341596309516362656550" + "2633630157266798246472593", + "8841111862323050849763919" ], - "LPTokenSupply": "6809050655234607436875578" + "LPTokenSupply": "11315059247381767308996809" }, { "type": "mintMulti", "inputQtys": [ - "4403346096189317054464", - "72021877770129432903680" + "2058738923165535488", + "8944190435592676352" ], - "expectedQty": "75128715927741861062212", + "expectedQty": "10843250301270997805", "reserves": [ - "3813932811910752083979440", - "3193363474079645795560230" + "2633632216005721412008081", + "8841120806513486442440271" ], - "LPTokenSupply": "6884179371162349297937790" + "LPTokenSupply": "11315070090632068579994614" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "218263595967638044672", - "expectedQty": "214312291485680089584", + "inputQty": "11257275453132230656", + "expectedQty": "11285283367135422853", + "swapFee": "6754365271879338", "reserves": [ - "3814151075506719722024112", - "3193363474079645795560230" - ] + "2633620930722354276585228", + "8841120806513486442440271" + ], + "LPTokenSupply": "11315058834032051974951891" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3710377645854589190144", - "outputIndex": 0, - "expectedQty": "3714775169069076984904", - "swapFee": "0", + "type": "redeemBassets", + "inputQtys": [ + "4906809472433796415488", + "1610048581780698300416" + ], + "expectedQty": "6474211025362036578867", + "swapFee": "3886858730455495244", "reserves": [ - "3810436300337650645039208", - "3197073851725500384750374" + "2628714121249920480169740", + "8839510757931705744139855" ], - "LPTokenSupply": "6884393683453834978027374", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "11308581124833832528427303" }, { "type": "redeemBassets", "inputQtys": [ - "17040437631793368137728", - "7044025101377883602944" + "13569721245297637376", + "21685457862256979968" ], - "expectedQty": "23656786376554285297612", - "swapFee": "14202593381961748227", + "expectedQty": "34841822559798511035", + "swapFee": "20917644122352518", "reserves": [ - "3793395862705857276901480", - "3190029826624122501147430" + "2628700551528675182532364", + "8839489072473843487159887" ], - "LPTokenSupply": "6860724114743236927156356" + "LPTokenSupply": "11308546264185393019799000" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2380679287344318976", - "expectedQty": "2337608806013126834", + "inputIndex": 1, + "inputQty": "42494259833097984933888", + "expectedQty": "41764763796567937712520", "reserves": [ - "3793398243385144621220456", - "3190029826624122501147430" + "2628700551528675182532364", + "8881983332306941472093775" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "53804435391353678987264", - "expectedQty": "52829852388452094761868", + "type": "redeemMasset", + "inputQty": "1914071621566216116633", + "expectedQtys": [ + "443027702254444674364", + "1496923894540178639979" + ], + "redemptionFee": "1148442972939729669", "reserves": [ - "3847202678776498300207720", - "3190029826624122501147430" - ] + "2628257523826420737858000", + "8880486408412401293453796" + ], + "LPTokenSupply": "11348397071204692035367853" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "467206801672320192", - "expectedQty": "474952488491099880", - "swapFee": "280324081003392", + "inputIndex": 0, + "inputQty": "15473554963171825942528", + "expectedQty": "15509287466297451567400", + "swapFee": "9284132977903095565", "reserves": [ - "3847202678776498300207720", - "3190029351671634010047550" + "2612748236360123286290600", + "8880486408412401293453796" ], - "LPTokenSupply": "6913555837561725770825205" + "LPTokenSupply": "11332924444654817999734881" }, { "type": "redeemMasset", - "inputQty": "4167301096234557636608", + "inputQty": "111636691522715174", "expectedQtys": [ - "2317596450510240281134", - "1921708139590107375341" + "25721830509971115", + "87426091448254544" ], - "redemptionFee": "2500380657740734581", + "redemptionFee": "66982014913629", "reserves": [ - "3844885082325988059926586", - "3188107643532043902672209" + "2612748210638292776319485", + "8880486320986309845199252" ], - "LPTokenSupply": "6909388786503556987262055" + "LPTokenSupply": "11332924333024824678511069" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1209564345521288249344", - "1874806583032394285056" + "821548276413029248", + "752938322751670144" ], - "expectedQty": "3030752437497367214111", + "expectedQty": "1559186440198538941", + "swapFee": "936073508224057", "reserves": [ - "3846094646671509348175930", - "3189982450115076296957265" + "2612747389090016363290237", + "8880485568047987093529108" ], - "LPTokenSupply": "6912419538941054354476166" + "LPTokenSupply": "11332922772995918322570475" }, { - "type": "redeemBassets", - "inputQtys": [ - "409277731810237632", - "1768446239107548672" + "type": "swap", + "inputIndex": 1, + "inputQty": "1775302126404383539200", + "outputIndex": 0, + "expectedQty": "1749703475910131096072", + "swapFee": "0", + "reserves": [ + "2610997685614106232194165", + "8882260870174391477068308" ], - "expectedQty": "2140415356459477529", - "swapFee": "1285020226011293", + "LPTokenSupply": "11332922772995918322570475", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "4469006951452428992512", + "expectedQty": "4544573377454364770717", + "swapFee": "2681404170871457395", "reserves": [ - "3846094237393777537938298", - "3189980681668837189408593" + "2610997685614106232194165", + "8877716296796937112297591" ], - "LPTokenSupply": "6912417397369179691588472" + "LPTokenSupply": "11328454034184882980723702" }, { "type": "mintMulti", "inputQtys": [ - "1182211880713411362816", - "717823189601397112832" + "2285325038599665876992", + "751825921753681756160" ], - "expectedQty": "1866465013080830389589", + "expectedQty": "3017700778041226252205", "reserves": [ - "3847276449274490949301114", - "3190698504858438586521425" + "2613283010652705898071157", + "8878468122718690794053751" ], - "LPTokenSupply": "6914283862382260521978061" + "LPTokenSupply": "11331471734962924206975907" }, { "type": "redeemMasset", - "inputQty": "970271795754516768358", + "inputQty": "396424480594881075", "expectedQtys": [ - "539559000057994479941", - "447477616299864863195" - ], - "redemptionFee": "582163077452710061", - "reserves": [ - "3846736890274432954821173", - "3190251027242138721658230" + "91369223940682258", + "310421312520712807" ], - "LPTokenSupply": "6913313648802813750480709" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "176297337621315168", - "expectedQty": "179220321245919568", - "swapFee": "105778402572789", + "redemptionFee": "237854688356928", "reserves": [ - "3846736890274432954821173", - "3190250848021817475738662" + "2613282919283481957388899", + "8878467812297378273340944" ], - "LPTokenSupply": "6913313472516053969422819" + "LPTokenSupply": "11331471338562229080930524" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1223755772707788554240", - "expectedQty": "1244044544977223896279", - "swapFee": "734253463624673132", + "inputQty": "40294446401782824", + "expectedQty": "40975548099032496", + "swapFee": "24176667841069", "reserves": [ - "3846736890274432954821173", - "3189006803476840251842383" + "2613282919283481957388899", + "8878467771321830174308448" ], - "LPTokenSupply": "6912089790168692543335892" + "LPTokenSupply": "11331471298270200345931806" }, { "type": "mintMulti", "inputQtys": [ - "12913877955363973120", - "44580119459182493696" + "91103208277931424", + "99914366572476736" ], - "expectedQty": "56506460005596279990", + "expectedQty": "189037706521714070", "reserves": [ - "3846749804152388318794293", - "3189051383596299434336079" + "2613283010386690235320323", + "8878467871236196746785184" ], - "LPTokenSupply": "6912146296628698139615882" + "LPTokenSupply": "11331471487307906867645876" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "143464798441166166032384", - "expectedQty": "145830248633902652404105", - "swapFee": "86078879064699699619", + "inputIndex": 0, + "inputQty": "208257894091363574611968", + "expectedQty": "208555843110499057381411", + "swapFee": "124954736454818144767", "reserves": [ - "3846749804152388318794293", - "3043221134962396781931974" + "2404727167276191177938912", + "8878467871236196746785184" ], - "LPTokenSupply": "6768690106075438443553459" + "LPTokenSupply": "11123226088690188774848384" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "12591696290735926018048", - "expectedQty": "12380912620605965953933", + "type": "redeemMasset", + "inputQty": "13771831032886109143040", + "expectedQtys": [ + "2975541939566851185769", + "10985967085772894270850" + ], + "redemptionFee": "8263098619731665485", "reserves": [ - "3846749804152388318794293", - "3055812831253132707950022" - ] + "2401751625336624326753143", + "8867481904150423852514334" + ], + "LPTokenSupply": "11109455083967164638871892" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10842848957727246336", - "expectedQty": "11020920278205191766", - "swapFee": "6505709374636347", + "type": "redeemBassets", + "inputQtys": [ + "370499205046458580992", + "523928461039833776128" + ], + "expectedQty": "884726612709538004921", + "swapFee": "531154660421975988", "reserves": [ - "3846749804152388318794293", - "3055801810332854502758256" + "2401381126131577868172151", + "8866957975689384018738206" ], - "LPTokenSupply": "6781060176497657619724690" + "LPTokenSupply": "11108569879315260721088580" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "8232778354145639792640", - "expectedQty": "8082267516365664890441", - "reserves": [ - "3854982582506533958586933", - "3055801810332854502758256" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "2750492213667736059904", - "777552358841395052544" - ], - "expectedQty": "3464734157861652990169", + "inputQty": "40955421329902764032", + "expectedQty": "40977524829884359651", + "swapFee": "24573252797941658", "reserves": [ - "3857733074720201694646837", - "3056579362691695897810800" + "2401340148606747983812500", + "8866957975689384018738206" ], - "LPTokenSupply": "6792607178171884937605300" + "LPTokenSupply": "11108528926351256098118713" }, { - "type": "redeemMasset", - "inputQty": "1189784704906410188", - "expectedQtys": [ - "675310343216913423", - "535065443489444654" - ], - "redemptionFee": "713870822943846", + "type": "redeem", + "inputIndex": 0, + "inputQty": "339922670069722", + "expectedQty": "340106060652986", + "swapFee": "203953602041", "reserves": [ - "3857732399409858477733414", - "3056578827626252408366146" + "2401340148266641923159514", + "8866957975689384018738206" ], - "LPTokenSupply": "6792605988458567113489496" + "LPTokenSupply": "11108528926011353823409195" }, { - "type": "redeemMasset", - "inputQty": "2258632098260222", - "expectedQtys": [ - "1281977832906413", - "1015743420188336" + "type": "redeemBassets", + "inputQtys": [ + "975439121023193710592", + "1577395482689786609664" ], - "redemptionFee": "1355179258956", + "expectedQty": "2523789324802039608223", + "swapFee": "1515182704503926120", "reserves": [ - "3857732398127880644827001", - "3056578826610508988177810" + "2400364709145618729448922", + "8865380580206694232128542" ], - "LPTokenSupply": "6792605986200070533155169" + "LPTokenSupply": "11106003773022117730267463" }, { "type": "redeemBassets", "inputQtys": [ - "3686985696503384768512", - "3641205214338178613248" + "147727449251275870306304", + "242195584405865261694976" ], - "expectedQty": "7199823008172688477433", - "swapFee": "4322487297281982275", + "expectedQty": "385499461907805272849315", + "swapFee": "231438540268844470391", "reserves": [ - "3854045412431377260058489", - "3052937621396170809564562" + "2252637259894342859142618", + "8623184995800828970433566" ], - "LPTokenSupply": "6785402272953330290893687" + "LPTokenSupply": "10720296016428070497394795" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "143774599674725518016512", - "expectedQty": "141355440143172361388053", + "inputIndex": 0, + "inputQty": "771530368324119429120", + "expectedQty": "771279664452655580348", "reserves": [ - "3854045412431377260058489", - "3196712221070896327581074" + "2253408790262666978571738", + "8623184995800828970433566" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3685755788588313214976", - "484789843616085114880" + "2674771082936253415424", + "1074485109434266943488" ], - "expectedQty": "4095467524295591539082", - "swapFee": "2458755768038177830", + "expectedQty": "3729058643062445158442", "reserves": [ - "3850359656642788946843513", - "3196227431227280242466194" + "2256083561345603231987162", + "8624259480910263237377054" ], - "LPTokenSupply": "6922660032692015826382610" + "LPTokenSupply": "10724796354735585598133585" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "18650524767020511232", - "expectedQty": "18960049826663580449", - "swapFee": "11190314860212306", + "type": "redeemMasset", + "inputQty": "84656698179811042918", + "expectedQtys": [ + "17797819488284463890", + "68035163276407369344" + ], + "redemptionFee": "50794018907886625", "reserves": [ - "3850359656642788946843513", - "3196208471177453578885745" + "2256065763526114947523272", + "8624191445746986830007710" ], - "LPTokenSupply": "6922641383286280291892608" + "LPTokenSupply": "10724711703116807677879329" }, { - "type": "redeemBassets", - "inputQtys": [ - "86021003999925743124480", - "163190407651261029548032" - ], - "expectedQty": "244895304667496181393767", - "swapFee": "147025398039321301617", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2257196006585892864000", + "expectedQty": "2256614688802455639453", + "swapFee": "1354317603951535718", "reserves": [ - "3764338652642863203719033", - "3033018063526192549337713" + "2253809148837312491883819", + "8624191445746986830007710" ], - "LPTokenSupply": "6677613755760548721327384" + "LPTokenSupply": "10722454642541982180168900" }, { - "type": "redeemBassets", - "inputQtys": [ - "28495423549729328", - "8807593258164861" - ], - "expectedQty": "36634654265773098", - "swapFee": "21993988952835", + "type": "mint", + "inputIndex": 1, + "inputQty": "78749793247982354432", + "expectedQty": "77336264062235085069", "reserves": [ - "3764338624147439653989705", - "3033018054718599291172852" - ], - "LPTokenSupply": "6677613719106099865496733" + "2253809148837312491883819", + "8624270195540234812362142" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "795134164123479552", - "1036600418854812928" - ], - "expectedQty": "1799780706528660052", + "type": "mint", + "inputIndex": 0, + "inputQty": "10461267728196723277824", + "expectedQty": "10457230223135232120896", "reserves": [ - "3764339419281603777469257", - "3033019091319018145985780" - ], - "LPTokenSupply": "6677615518886806394156785" + "2264270416565509215161643", + "8624270195540234812362142" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10381311455128228", - "7483006286949119" + "22270075783931462942720", + "4652617863214839889920" ], - "expectedQty": "17548918628470951", + "expectedQty": "26831842721752137339325", + "swapFee": "16108770895588635584", "reserves": [ - "3764339429662915232597485", - "3033019098802024432934899" + "2242000340781577752218923", + "8619617577677019972472222" ], - "LPTokenSupply": "6677615536435725022627736" + "LPTokenSupply": "10706142868413621480263513" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "348096356727087693824", + "expectedQty": "348019824840521413733", + "reserves": [ + "2242348437138304839912747", + "8619617577677019972472222" + ] }, { "type": "redeemBassets", "inputQtys": [ - "36724438095444093960192", - "29755969773677781712896" + "3077815628764686581760", + "1396357492760138743808" ], - "expectedQty": "65309413811298849434962", - "swapFee": "39209173791053942026", + "expectedQty": "4448424485275130839549", + "swapFee": "2670657085416328300", "reserves": [ - "3727614991567471138637293", - "3003263129028346651222003" + "2239270621509540153330987", + "8618221220184259833728414" ], - "LPTokenSupply": "6612270834368014224644949" + "LPTokenSupply": "10702040060161809996142226" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "1914471228076678400", - "outputIndex": 0, - "expectedQty": "1917265887852414610", - "swapFee": "0", + "inputQty": "1154260710431886934016", + "expectedQty": "1133497912227400661988", "reserves": [ - "3727613074301583286222683", - "3003265043499574727900403" - ], - "LPTokenSupply": "6612270834368014224644949", - "hardLimitError": false, - "insufficientLiquidityError": false + "2239270621509540153330987", + "8619375480894691720662430" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "54511219327927", - "outputIndex": 1, - "expectedQty": "54388217077005", - "swapFee": "42812640495", + "inputQty": "183800841388313", + "expectedQty": "183725340420550", + "swapFee": "110280504832", "reserves": [ - "3727613074356094505550610", - "3003265043445186510823398" + "2239270621325814812910437", + "8619375480894691720662430" ], - "LPTokenSupply": "6612270834368018505908998", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "10703173557890247583466384" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5057957099961225216", - "expectedQty": "4965594724699537769", + "inputIndex": 1, + "inputQty": "10126488046131015057408", + "expectedQty": "9944291312908457951531", "reserves": [ - "3727618132313194466775826", - "3003265043445186510823398" + "2239270621325814812910437", + "8629501968940822735719838" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "113747667885410702327808", - "expectedQty": "115616264083651167646131", - "swapFee": "68248600731246421396", + "type": "redeemBassets", + "inputQtys": [ + "143911314550770204672", + "205985134678786998272" + ], + "expectedQty": "346166495085087455930", + "swapFee": "207824591806136155", "reserves": [ - "3727618132313194466775826", - "2887648779361535343177267" + "2239126710011264042705765", + "8629295983806143948721566" ], - "LPTokenSupply": "6498534956937405627761098" + "LPTokenSupply": "10712771495665938328439444" }, { "type": "redeemMasset", - "inputQty": "69025900203225664", + "inputQty": "9053153703765379278438", "expectedQtys": [ - "39570121201541424", - "30653518716497806" + "1891106851403847647548", + "7288073821282499723127" ], - "redemptionFee": "41415540121935", + "redemptionFee": "5431892222259227567", "reserves": [ - "3727618092743073265234402", - "2887648748708016626679461" + "2237235603159860195058217", + "8622007909984861448998439" ], - "LPTokenSupply": "6498534887915646978547627" + "LPTokenSupply": "10703718885151395175083762" }, { - "type": "redeemMasset", - "inputQty": "17847411894620226846720", - "expectedQtys": [ - "10231293611944846059770", - "7925807167240083013274" + "type": "redeemBassets", + "inputQtys": [ + "18652596068740386816", + "677588762075898183680" ], - "redemptionFee": "10708447136772136108", + "expectedQty": "684044260812369557750", + "swapFee": "410672960263579882", "reserves": [ - "3717386799131128419174632", - "2879722941540776543666187" + "2237216950563791454671401", + "8621330321222785550814759" ], - "LPTokenSupply": "6480688546865740428914517" + "LPTokenSupply": "10703034471284918568304117" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1205466898393980207104", - "expectedQty": "1183295141086736749596", + "inputIndex": 1, + "inputQty": "49663657630666453942272", + "expectedQty": "48769000527889219698594", "reserves": [ - "3718592266029522399381736", - "2879722941540776543666187" + "2237216950563791454671401", + "8670993978853452004757031" ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "922242460248547786752", - "outputIndex": 1, - "expectedQty": "919901507265160564785", - "swapFee": "724223316894491123", + "inputQty": "89624018218860691456", + "expectedQty": "89572102855558070587", + "swapFee": "53774410931316414", "reserves": [ - "3719514508489770947168488", - "2878803040033511383101402" + "2237127378460935896600814", + "8670993978853452004757031" ], - "LPTokenSupply": "6481871914429158855113225", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "13063149474091735449600", - "expectedQty": "12822782231698693593546", - "reserves": [ - "3732577657963862682618088", - "2878803040033511383101402" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "149836563025676160", - "expectedQty": "147339031573605761", - "reserves": [ - "3732577657963862682618088", - "2878803189870074408777562" - ] + "LPTokenSupply": "10751713853172030020442896" }, { "type": "mintMulti", "inputQtys": [ - "1491932362374519717888", - "9560531087915720114176" + "576627614151518976", + "211198613509412896" ], - "expectedQty": "10865595924736897266897", + "expectedQty": "784006041075984834", "reserves": [ - "3734069590326237202335976", - "2888363720957990128891738" + "2237127955088550048119790", + "8670994190052065514169927" ], - "LPTokenSupply": "6505560439924626019579429" + "LPTokenSupply": "10751714637178071096427730" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2263651870497950400512", - "expectedQty": "2225890686777537570697", - "reserves": [ - "3734069590326237202335976", - "2890627372828488079292250" - ] - }, - { - "type": "redeemMasset", - "inputQty": "1916405880772709580", - "expectedQtys": [ - "1098945011873273211", - "850718085378980709" + "type": "mintMulti", + "inputQtys": [ + "1351363398366041997312", + "5929502028216266653696" ], - "redemptionFee": "1149843528463625", + "expectedQty": "7173912432906771521951", "reserves": [ - "3734068491381225329062765", - "2890626522110402700311541" + "2238479318486916090117102", + "8676923692080281780823623" ], - "LPTokenSupply": "6507784414320507137286908" + "LPTokenSupply": "10758888549610977867949681" }, { "type": "mint", "inputIndex": 0, - "inputQty": "35064496717892698505216", - "expectedQty": "34419001113347068188377", + "inputQty": "4647570147698682626048", + "expectedQty": "4647366424399642597846", "reserves": [ - "3769132988099118027567981", - "2890626522110402700311541" + "2243126888634614772743150", + "8676923692080281780823623" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "54400905270255", - "expectedQty": "53398668921830", + "inputIndex": 1, + "inputQty": "10094504363131404288000", + "expectedQty": "9912562944697736221664", "reserves": [ - "3769132988153518932838236", - "2890626522110402700311541" + "2243126888634614772743150", + "8687018196443413185111623" ] }, { - "type": "redeemMasset", - "inputQty": "700673596362827264", - "expectedQtys": [ - "403434017436942344", - "309401943202879938" + "type": "mintMulti", + "inputQtys": [ + "209852180115073833893888", + "18165670363712339312640" ], - "redemptionFee": "420404157817696", + "expectedQty": "227470351851581091820560", "reserves": [ - "3769132584719501495895892", - "2890626212708459497431603" + "2452979068749688606637038", + "8705183866807125524424263" ], - "LPTokenSupply": "6542202714855696927351620" + "LPTokenSupply": "11000918830831656338589751" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "299458238648795267072", - "expectedQty": "304344555963044740356", - "swapFee": "179674943189277160", + "type": "mintMulti", + "inputQtys": [ + "4214443303729680896", + "20470497343201247232" + ], + "expectedQty": "24318312235315981441", "reserves": [ - "3769132584719501495895892", - "2890321868152496452691247" + "2452983283192992336317934", + "8705204337304468725671495" ], - "LPTokenSupply": "6541903274584542451012264" + "LPTokenSupply": "11000943149143891654571192" }, { "type": "mintMulti", "inputQtys": [ - "3078101882765067157504", - "2156872483672228888576" + "28313623161058193408", + "38972027768892760064" ], - "expectedQty": "5142362921055788440829", + "expectedQty": "66546709745345286490", "reserves": [ - "3772210686602266563053396", - "2892478740636168681579823" + "2453011596816153394511342", + "8705243309332237618431559" ], - "LPTokenSupply": "6547045637505598239453093" + "LPTokenSupply": "11001009695853636999857682" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "205706886099593062252544", - "expectedQty": "201900029268073739092850", + "type": "mintMulti", + "inputQtys": [ + "127071456737949614080", + "1497984606108687794176" + ], + "expectedQty": "1598592646039278761859", "reserves": [ - "3977917572701859625305940", - "2892478740636168681579823" - ] + "2453138668272891344125422", + "8706741293938346306225735" + ], + "LPTokenSupply": "11002608288499676278619541" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5584035544023004348416", - "expectedQty": "5673859265766110703038", - "swapFee": "3350421326413802609", + "type": "mintMulti", + "inputQtys": [ + "5221344356395164672", + "4377203124795447808" + ], + "expectedQty": "9511442173579935968", "reserves": [ - "3977917572701859625305940", - "2886804881370402570876785" + "2453143889617247739290094", + "8706745671141471101673543" ], - "LPTokenSupply": "6743361966271781615577787" + "LPTokenSupply": "11002617799941849858555509" }, { - "type": "redeemMasset", - "inputQty": "11281521108951255482368", - "expectedQtys": [ - "6650990279595038791350", - "4826673970532039219504" - ], - "redemptionFee": "6768912665370753289", + "type": "redeem", + "inputIndex": 0, + "inputQty": "17044547883139848192", + "expectedQty": "17068726696917195763", + "swapFee": "10226728729883908", "reserves": [ - "3971266582422264586514590", - "2881978207399870531657281" + "2453126820890550822094331", + "8706745671141471101673543" ], - "LPTokenSupply": "6732081122054096897170747" + "LPTokenSupply": "11002600756416639591695707" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "8296371906963584319488", - "expectedQty": "8429747714152695261498", - "swapFee": "4977823144178150591", + "inputQty": "24477103081560666537984", + "expectedQty": "24048667227168776730806", "reserves": [ - "3971266582422264586514590", - "2873548459685717836395783" - ], - "LPTokenSupply": "6723785247929447730666318" + "2453126820890550822094331", + "8731222774223031768211527" + ] }, { "type": "redeemMasset", - "inputQty": "393353579851655782", + "inputQty": "22821505818688110592", "expectedQtys": [ - "232186871236816915", - "168006909723709396" + "5074112310866805360", + "18059891804339106852" ], - "redemptionFee": "236012147910993", + "redemptionFee": "13692903491212866", "reserves": [ - "3971266350235393349697675", - "2873548291678808112686387" + "2453121746778239955288971", + "8731204714331227429104675" ], - "LPTokenSupply": "6723784854599469093801635" + "LPTokenSupply": "11026626603507280029437207" }, { - "type": "redeemMasset", - "inputQty": "219435238782419456", - "expectedQtys": [ - "129527184048554910", - "93723912128590806" - ], - "redemptionFee": "131661143269451", + "type": "mint", + "inputIndex": 1, + "inputQty": "10301528721536144", + "expectedQty": "10121130695031599", "reserves": [ - "3971266220708209301142765", - "2873548197954895984095581" - ], - "LPTokenSupply": "6723784635177396425709124" + "2453121746778239955288971", + "8731204724632756150640819" + ] }, { "type": "redeemBassets", "inputQtys": [ - "247729928584841134080", - "436426943386462519296" + "66094283304325697503232", + "35317032903212949045248" ], - "expectedQty": "672387585097172729259", - "swapFee": "403674755911850748", + "expectedQty": "100677310385426605348189", + "swapFee": "60442651822349372832", "reserves": [ - "3971018490779624460008685", - "2873111771011509521576285" + "2387027463473914257785739", + "8695887691729543201595571" ], - "LPTokenSupply": "6723111884285018932314190" + "LPTokenSupply": "10925894904856344004685067" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "70808707466427960918016", - "expectedQty": "69643307470858253198629", + "inputQty": "203028328555337155084288", + "expectedQty": "206538166748153337049481", + "swapFee": "121816997133202293050", "reserves": [ - "3971018490779624460008685", - "2943920478477937482494301" - ] + "2387027463473914257785739", + "8489349524981389864546090" + ], + "LPTokenSupply": "10722878758000720169830084" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "7870272190034601836544", - "outputIndex": 0, - "expectedQty": "7886337319356509429369", - "swapFee": "0", + "type": "redeem", + "inputIndex": 0, + "inputQty": "104665597075143209779200", + "expectedQty": "104760980889226412436843", + "swapFee": "62799358245085925867", "reserves": [ - "3963132153460267950579316", - "2951790750667972084330845" + "2282266482584687845348896", + "8489349524981389864546090" ], - "LPTokenSupply": "6792755191755877185512819", - "hardLimitError": false, - "insufficientLiquidityError": false + "LPTokenSupply": "10618219440861401468643470" }, { - "type": "redeemMasset", - "inputQty": "456104279723031244", - "expectedQtys": [ - "265947605114917912", - "198081126377554476" - ], - "redemptionFee": "273662567833818", + "type": "mint", + "inputIndex": 1, + "inputQty": "42422110723264869302272", + "expectedQty": "41666503885342814230738", "reserves": [ - "3963131887512662835661404", - "2951790552586845706776369" - ], - "LPTokenSupply": "6792754735678963719264956" + "2282266482584687845348896", + "8531771635704654733848362" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "261082642368252018688", + "inputQty": "1201393501770394112", "outputIndex": 1, - "expectedQty": "260346668469376700909", - "swapFee": "204998878418543173", + "expectedQty": "1221119185221414485", + "swapFee": "960248525167968", "reserves": [ - "3963392970155031087680092", - "2951530205918376330075460" + "2282267683978189615743008", + "8531770414585469512433877" ], - "LPTokenSupply": "6792754756178851561119273", + "LPTokenSupply": "10659885944842769135391004", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "610540684596153363202048", - "expectedQty": "600219804115855192742095", + "type": "swap", + "inputIndex": 0, + "inputQty": "4234473173510792413184", + "outputIndex": 1, + "expectedQty": "4303850638329862719609", + "swapFee": "3384453123229297127", "reserves": [ - "3963392970155031087680092", - "3562070890514529693277508" - ] + "2286502157151700408156192", + "8527466563947139649714268" + ], + "LPTokenSupply": "10659886283288081458320716", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3929777585742658142208", - "expectedQty": "3996299882453652120998", - "swapFee": "2357866551445594885", + "type": "swap", + "inputIndex": 0, + "inputQty": "18070935363241558147072", + "outputIndex": 1, + "expectedQty": "18363706403459274466752", + "swapFee": "14441635576817458927", "reserves": [ - "3963392970155031087680092", - "3558074590632076041156510" + "2304573092514941966303264", + "8509102857543680375247516" ], - "LPTokenSupply": "7389045018495619240278648" + "LPTokenSupply": "10659887727451639140066608", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "638808076320612039000064", - "682996053240016925622272" + "27394021464053158772736", + "29724705393424174415872" ], - "expectedQty": "1298580360861864334987857", - "swapFee": "779615986108783871315", + "expectedQty": "56560439885974666975893", + "swapFee": "33956637914333400225", "reserves": [ - "3324584893834419048680028", - "2875078537392059115534238" + "2277179071050888807530528", + "8479378152150256200831644" ], - "LPTokenSupply": "6089763003246256999806606" + "LPTokenSupply": "10603296726591541573030511" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "473636815460289", - "expectedQty": "465482848333649", + "inputIndex": 0, + "inputQty": "138821590992059", + "expectedQty": "138683377344783", "reserves": [ - "3324584893834419048680028", - "2875078537865695930994527" + "2277179071189710398522587", + "8479378152150256200831644" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1842794623482452480", - "410033315560315264" + "1723150550282030284800", + "8434619215694728790016" ], - "expectedQty": "2212287384781417063", - "swapFee": "1328169332468331", + "expectedQty": "10005856429510905394496", "reserves": [ - "3324583051039795566227548", - "2875078127832380370679263" + "2278902221739992428807387", + "8487812771365950929621660" ], - "LPTokenSupply": "6089760790229002667501693" + "LPTokenSupply": "10613302583159735855769790" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "15527560344304755933184", - "expectedQty": "15260093592999477743705", - "reserves": [ - "3324583051039795566227548", - "2890605688176685126612447" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "101535237018829152", - "expectedQty": "103253885920782662", - "swapFee": "60921142211297", + "type": "swap", + "inputIndex": 0, + "inputQty": "8980990070752274432", + "outputIndex": 1, + "expectedQty": "9127465954090146526", + "swapFee": "7177677377202268", "reserves": [ - "3324583051039795566227548", - "2890605584922799205829785" + "2278911202730063181081819", + "8487803643899996839475134" ], - "LPTokenSupply": "6105020782292857240637375" + "LPTokenSupply": "10613302583877503593490016", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "64337436523296780", + "inputQty": "7276334470678198616064", "expectedQtys": [ - "35014919939684357", - "30444215584152883" + "1561452784087204342145", + "5815630119627359921369" ], - "redemptionFee": "38602461913978", + "redemptionFee": "4365800682406919169", "reserves": [ - "3324583016024875626543191", - "2890605554478583621676902" + "2277349749945975976739674", + "8481988013780369479553765" ], - "LPTokenSupply": "6105020717959280963531992" + "LPTokenSupply": "10606026685986893635565868" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "25107685371792162816", - "expectedQty": "25556528198556487185", - "swapFee": "15064611223075297", + "inputQty": "21912665885092645699584", + "expectedQty": "21888574687901632973445", "reserves": [ - "3324557459496677070056006", - "2890605554478583621676902" - ], - "LPTokenSupply": "6104995611780370293676705" + "2299262415831068622439258", + "8481988013780369479553765" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9777729643166933450752", - "expectedQty": "9952476108066923423950", - "swapFee": "5866637785900160070", + "type": "mint", + "inputIndex": 1, + "inputQty": "25142931175938269184", + "expectedQty": "24696631067170229611", "reserves": [ - "3314604983388610146632056", - "2890605554478583621676902" - ], - "LPTokenSupply": "6095218468800981950241960" + "2299262415831068622439258", + "8482013156711545417822949" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "7396440251434307584", - "expectedQty": "7268877868938120438", + "inputIndex": 0, + "inputQty": "69964467817685385216", + "expectedQty": "69879991297182909665", "reserves": [ - "3314604983388610146632056", - "2890612950918835055984486" + "2299332380298886307824474", + "8482013156711545417822949" ] }, { "type": "redeemBassets", "inputQtys": [ - "1074907882599243136", - "614648684514054784" + "2312537849024968130560", + "4174122038188136464384" + ], + "expectedQty": "6409781589335366485691", + "swapFee": "3848177860317410337", + "reserves": [ + "2297019842449861339693914", + "8477839034673357281358565" + ], + "LPTokenSupply": "10621596592347749969523593" + }, + { + "type": "redeemMasset", + "inputQty": "2602160609521527527833", + "expectedQtys": [ + "562403982550423990258", + "2075720178122846156254" ], - "expectedQty": "1659453196208412701", - "swapFee": "996269679532767", + "redemptionFee": "1561296365712916516", "reserves": [ - "3314603908480727547388920", - "2890612336270150541929702" + "2296457438467310915703656", + "8475763314495234435202311" ], - "LPTokenSupply": "6095224077329011968370205" + "LPTokenSupply": "10618994587867865013287411" } ] } \ No newline at end of file diff --git a/test-utils/validator-data/masset/integrationData.json b/test-utils/validator-data/masset/integrationData.json index ed323a70..481fa910 100644 --- a/test-utils/validator-data/masset/integrationData.json +++ b/test-utils/validator-data/masset/integrationData.json @@ -1,135740 +1,136487 @@ { - "reserve0": "3333333333333333330000000", - "reserve1": "3333333333333333330000000", - "reserve2": "3333333333333333330000000", - "A": 120, + "reserve0": "33333333333333333333333333", + "reserve1": "33333333333333333333333333", + "reserve2": "33333333333333333333333333", + "A": 12000, "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, "redemptionFeeRate": 300000000000000, "actions": [ { - "type": "redeemBassets", - "inputQtys": [ - "7273078205549974528", - "155969121455495380992", - "144531542372101226496" - ], - "expectedQty": "307773759009220050661", - "swapFee": "184775120477818721", + "type": "mint", + "inputIndex": 2, + "inputQty": "1580688553832070170804224", + "expectedQty": "1580487238844062947676520", "reserves": [ - "3333326060255127780025472", - "3333177364211877834619008", - "3333188801790961228773504" - ], - "mAssetSupply": "9999692226240990769949339" + "33333333333333333333333333", + "33333333333333333333333333", + "34914021887165403504137557" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "734048361118712268324864", - "48623817237249994522624", - "311219938026755327000576" + "3198672409289250035466240", + "24952442294574386484609024", + "14831448440282939098398720" ], - "expectedQty": "1094235429070908550838837", - "swapFee": "656935418693761387335", + "expectedQty": "42960325089829682182613285", "reserves": [ - "2599277699136415511700608", - "3284553546974627840096384", - "3021968863764205901772928" + "36532005742622583368799573", + "58285775627907719817942357", + "49745470327448342602536277" ], - "mAssetSupply": "8905456797170082219110502" + "mAssetSupply": "144540812328673745130289804" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5917110544627535872", - "expectedQty": "5906756900185624322", - "swapFee": "3550266326776521", + "type": "mintMulti", + "inputQtys": [ + "1221155074557634412544", + "103881400639893176320", + "2001770431298018476032" + ], + "expectedQty": "3328984131683290095075", "reserves": [ - "2599271792379515326076286", - "3284553546974627840096384", - "3021968863764205901772928" + "36533226897697141003212117", + "58285879509308359711118677", + "49747472097879640621012309" ], - "mAssetSupply": "8905450883609803918351151" + "mAssetSupply": "144544141312805428420384879" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "121789446577382156664832", - "expectedQty": "121725315346367419990412", - "swapFee": "73073667946429293998", + "type": "mintMulti", + "inputQtys": [ + "5520564689527117635911680", + "22902077986316658352848896", + "9127287569320982221946880" + ], + "expectedQty": "37515793027798517338015571", "reserves": [ - "2599271792379515326076286", - "3284553546974627840096384", - "2900243548417838481782516" + "42053791587224258639123797", + "81187957495625018063967573", + "58874759667200622842959189" ], - "mAssetSupply": "8783734510700368190980317" + "mAssetSupply": "182059934340603945758400450" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "295340756022743793664", - "expectedQty": "295353123656581259674", + "type": "mintMulti", + "inputQtys": [ + "6007650134110187520", + "20355950764685103104", + "8600944200925764608" + ], + "expectedQty": "34933466427283723510", "reserves": [ - "2599271792379515326076286", - "3284553546974627840096384", - "2900538889173861225576180" - ] + "42053797594874392749311317", + "81187977851575782749070677", + "58874768268144823768723797" + ], + "mAssetSupply": "182059969274070373042123960" }, { "type": "redeemMasset", - "inputQty": "15123009034654849590886", + "inputQty": "9717033664978300908339", "expectedQtys": [ - "4473689043143975981877", - "5653149185013976573362", - "4992209389473296852951" + "2243851721761601666290", + "4331922306840722377076", + "3141363151538387288304" ], - "redemptionFee": "4536902710396454877", + "redemptionFee": "2915110099493490272", "reserves": [ - "2594798103336371350094409", - "3278900397789613863523022", - "2895546679784387928723229" + "42051553743152631147645027", + "81183645929268942026693601", + "58871626904993285381435493" ], - "mAssetSupply": "8768911391692080319103982" + "mAssetSupply": "182050255155515494234705893" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "301324324015181066665984", - "expectedQty": "300713716118922601156584", - "swapFee": "180794594409108639999", - "reserves": [ - "2294084387217448748937825", - "3278900397789613863523022", - "2895546679784387928723229" - ], - "mAssetSupply": "8467767862271308361077997" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "56051756230399240437760", - "outputIndex": 1, - "expectedQty": "56064585403996278447371", - "swapFee": "33619030323132013007", + "inputQty": "129283642561547160518656", + "expectedQty": "128720200394112015219866", + "swapFee": "77570185536928296311", "reserves": [ - "2294084387217448748937825", - "3222835812385617585075651", - "2951598436014787169160989" + "41922833542758519132425161", + "81183645929268942026693601", + "58871626904993285381435493" ], - "mAssetSupply": "8467801481301631493091004", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "181921049083139484002483548" }, { "type": "redeemMasset", - "inputQty": "9908604724032924182118", + "inputQty": "38182901198701349096652", "expectedQtys": [ - "2683619366145195855729", - "3770072560632675127971", - "3452779142785017378377" + "8796426793790536991259", + "17034297014810892134082", + "12352694523211077197600" ], - "redemptionFee": "2972581417209877254", + "redemptionFee": "11454870359610404728", "reserves": [ - "2291400767851303553082096", - "3219065739824984909947680", - "2948145656872002151782612" + "41914037115964728595433902", + "81166611632254131134559519", + "58859274210470074304237893" ], - "mAssetSupply": "8457895849159015778786140" + "mAssetSupply": "181882877636811142263791624" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "90734708768013959168", - "expectedQty": "90721633474467029817", - "swapFee": "54440825260808375", + "inputIndex": 1, + "inputQty": "476438756831732608", + "expectedQty": "477410964090409044", + "swapFee": "285863254099039", "reserves": [ - "2291400767851303553082096", - "3219065739824984909947680", - "2948054935238527684752795" + "41914037115964728595433902", + "81166611154843167044150475", + "58859274210470074304237893" ], - "mAssetSupply": "8457805168891073025635347" + "mAssetSupply": "181882877160658248686158055" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "30755205619031701574385664", + "expectedQty": "30796718492197693750357334", + "reserves": [ + "72669242734996430169819566", + "81166611154843167044150475", + "58859274210470074304237893" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "1209345053528237015040", - "expectedQty": "1211612977780551471601", + "inputQty": "22488083000693876588544", + "expectedQty": "22481775169696910927763", "reserves": [ - "2292610112904831790097136", - "3219065739824984909947680", - "2948054935238527684752795" + "72691730817997124046408110", + "81166611154843167044150475", + "58859274210470074304237893" ] }, { "type": "redeemMasset", - "inputQty": "291186238385344256", + "inputQty": "391003758195588988928", "expectedQtys": [ - "78895249780915482", - "110777229052213532", - "101450974666078849" + "133586909263789162367", + "149161350233069648011", + "108166753423071071321" ], - "redemptionFee": "87355871515603", + "redemptionFee": "117301127458676696", "reserves": [ - "2292610034009582009181654", - "3219065629047755857734148", - "2948054833787553018673946" + "72691597231087860257245743", + "81166461993492933974502464", + "58859166043716651233166572" ], - "mAssetSupply": "8459016490769971063278295" + "mAssetSupply": "212701686541568571217130920" }, { - "type": "redeemBassets", - "inputQtys": [ - "3850933973332442742784", - "5745025913465163743232", - "115434005736064204800" - ], - "expectedQty": "9712030143821573040308", - "swapFee": "5830716516202665423", + "type": "redeem", + "inputIndex": 2, + "inputQty": "172357203138471968", + "expectedQty": "171967930707461762", + "swapFee": "103414321883083", "reserves": [ - "2288759100036249566438870", - "3213320603134290693990916", - "2947939399781816954469146" + "72691597231087860257245743", + "81166461993492933974502464", + "58859165871748720525704810" ], - "mAssetSupply": "8449304460626149490237987" + "mAssetSupply": "212701686369314782400542035" }, { - "type": "redeemMasset", - "inputQty": "5403265076163042187673", - "expectedQtys": [ - "1463204709802366875219", - "2054277289618033480738", - "1884618968376532263438" + "type": "mintMulti", + "inputQtys": [ + "17819445570896224256", + "22499868046383206400", + "53325260864385982464" ], - "redemptionFee": "1620979522848912656", + "expectedQty": "93702442184236612418", "reserves": [ - "2287295895326447199563651", - "3211266325844672660510178", - "2946054780813440422205708" + "72691615050533431153469999", + "81166484493360980357708864", + "58859219197009584911687274" ], - "mAssetSupply": "8443902816529509296962970" + "mAssetSupply": "212701780071756966637154453" }, { - "type": "redeemMasset", - "inputQty": "1711578172521137255219", - "expectedQtys": [ - "463495536111337495607", - "650728054177368777646", - "596985830664296318825" + "type": "mintMulti", + "inputQtys": [ + "29650993750284222464", + "33772606328811958272", + "47158981234934964224" ], - "redemptionFee": "513473451756341176", + "expectedQty": "110613963996458888295", "reserves": [ - "2286832399790335862068044", - "3210615597790495291732532", - "2945457794982776125886883" + "72691644701527181437692463", + "81166518265967309169667136", + "58859266355990819846651498" ], - "mAssetSupply": "8442191751830439916048927" + "mAssetSupply": "212701890685720963096042748" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "358800792615223488", - "expectedQty": "358393429115469163", + "type": "mintMulti", + "inputQtys": [ + "1894178331169772743426048", + "1437642474770123733336064", + "2340315478284889724289024" + ], + "expectedQty": "5673770811016243441062508", "reserves": [ - "2286832399790335862068044", - "3210615956591287906956020", - "2945457794982776125886883" - ] + "74585823032696954181118511", + "82604160740737432903003200", + "61199581834275709570940522" + ], + "mAssetSupply": "218375661496737206537105256" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "123309140047431217446912", - "29225268438406097010688", - "162492634658043297005568" + "26623131843195463270400", + "24988546011101638164480", + "21371118611554348564480" ], - "expectedQty": "315168004878843302905384", - "swapFee": "189214331526221714772", + "expectedQty": "72981902588144132123210", "reserves": [ - "2163523259742904644621132", - "3181390688152881809945332", - "2782965160324732828881315" + "74612446164540149644388911", + "82629149286748534541167680", + "61220952952887263919505002" ], - "mAssetSupply": "8127024105345025728612706" + "mAssetSupply": "218448643399325350669228466" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2004770994211215988752384", - "hardLimitError": true + "type": "swap", + "inputIndex": 2, + "inputQty": "1042202481849138839289856", + "outputIndex": 0, + "expectedQty": "1043305599868101616212958", + "swapFee": "626246028291250816543", + "reserves": [ + "73569140564672048028175953", + "82629149286748534541167680", + "62263155434736402758794858" + ], + "mAssetSupply": "218449269645353641920045009", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "541400345217920", + "expectedQty": "540828522454239", + "reserves": [ + "73569140564672048028175953", + "82629149287289934886385600", + "62263155434736402758794858" + ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "21288465480056983552", - "expectedQty": "21282760857608373529", - "swapFee": "12773079288034190", + "inputIndex": 0, + "inputQty": "58412756508192587776", + "expectedQty": "58385970263779600801", + "swapFee": "35047653904915552", "reserves": [ - "2163523259742904644621132", - "3181390688152881809945332", - "2782943877563875220507786" + "73569082178701784248575152", + "82629149287289934886385600", + "62263155434736402758794858" ], - "mAssetSupply": "8127002829652624959663344" + "mAssetSupply": "218449211268185616154827024" }, { - "type": "redeemMasset", - "inputQty": "41963284353312544", - "expectedQtys": [ - "11167869274010150", - "16421989065681038", - "14365250422698717" - ], - "redemptionFee": "12588985305993", + "type": "mint", + "inputIndex": 2, + "inputQty": "317139849355701914697728", + "expectedQty": "317569873068872898468274", "reserves": [ - "2163523248575035370610982", - "3181390671730892744264294", - "2782943863198624797809069" - ], - "mAssetSupply": "8127002787701929591656793" + "73569082178701784248575152", + "82629149287289934886385600", + "62580295284092104673492586" + ] }, { - "type": "redeemMasset", - "inputQty": "68662288952151286323609", - "expectedQtys": [ - "18273390152584793524462", - "26870426749803508987426", - "23505094765431322173933" + "type": "redeemBassets", + "inputQtys": [ + "4926257351208164141301760", + "1415598891351240934948864", + "4353793471103147186323456" ], - "redemptionFee": "20598686685645385897", + "expectedQty": "10699960235380139856729195", + "swapFee": "6423830439491778981426", "reserves": [ - "2145249858422450577086520", - "3154520244981089235276868", - "2759438768433193475635136" + "68642824827493620107273392", + "81213550395938693951436736", + "58226501812988957487169130" ], - "mAssetSupply": "8058361097436463950719081" + "mAssetSupply": "208066820905874349196566103" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "817206035558604415696896", - "outputIndex": 2, - "expectedQty": "816055084064554311968936", - "swapFee": "490766500324224353762", + "type": "redeem", + "inputIndex": 1, + "inputQty": "41188863202437776", + "expectedQty": "41218407295157123", + "swapFee": "24713317921462", "reserves": [ - "2962455893981054992783416", - "3154520244981089235276868", - "1943383684368639163666200" + "68642824827493620107273392", + "81213550354720286656279613", + "58226501812988957487169130" ], - "mAssetSupply": "8058851863936788175072843", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "208066820864710199312049789" }, { "type": "redeemMasset", - "inputQty": "390366989468777267", + "inputQty": "529011255827031566739046", "expectedQtys": [ - "143456918527601511", - "152757634197140784", - "94108349576705901" + "174472474595178418912839", + "206424038297631865455611", + "147996850127645924922148" ], - "redemptionFee": "117110096840633", + "redemptionFee": "158703376748109470021", "reserves": [ - "2962455750524136465181905", - "3154520092223455038136084", - "1943383590260289586960299" + "68468352352898441688360553", + "81007126316422654790824002", + "58078504962861311562246982" ], - "mAssetSupply": "8058851473686908803136209" + "mAssetSupply": "207537968312259915854780764" }, { "type": "redeemBassets", "inputQtys": [ - "31626296670497", - "40391349933409", - "10361514912368" + "42417037315902598545408", + "200559567454801368186880", + "200329472362544556408832" ], - "expectedQty": "82319963637528", - "swapFee": "49421631161", + "expectedQty": "443353601981738710980973", + "swapFee": "266171864307627803270", "reserves": [ - "2962455750492510168511408", - "3154520092183063688202675", - "1943383590249928072047931" + "68425935315582539089815145", + "80806566748967853422637122", + "57878175490498767005838150" ], - "mAssetSupply": "8058851473604588839498681" + "mAssetSupply": "207094614710278177143799791" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "41352735484718514176", - "2786143862716305920", - "20176704195146088448" + "1739372832491811110912", + "734345913032238170112", + "1532959519007624921088" ], - "expectedQty": "64334016863795542477", + "expectedQty": "4008100961257320965157", + "swapFee": "2406304359370014587", "reserves": [ - "2962497103227994887025584", - "3154522878326926404508595", - "1943403766954123218136379" + "68424195942750047278704233", + "80805832403054821184467010", + "57876642530979759380917062" ], - "mAssetSupply": "8058915807621452635041158" + "mAssetSupply": "207090606609316919822834634" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "137693195249614011236352", - "expectedQty": "137800222272376116090390", - "swapFee": "82615917149768406741", + "inputQty": "221003253166301052928", + "expectedQty": "221161370144401864616", + "swapFee": "132601951899780631", "reserves": [ - "2962497103227994887025584", - "3016722656054550288418205", - "1943403766954123218136379" + "68424195942750047278704233", + "80805611241684676782602394", + "57876642530979759380917062" ], - "mAssetSupply": "7921305228288988392211547" + "mAssetSupply": "207090385738665705421562337" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "545567435996840260009984", - "expectedQty": "545555890716041351940295", - "swapFee": "327340461598104156005", - "reserves": [ - "2416941212511953535085289", - "3016722656054550288418205", - "1943403766954123218136379" - ], - "mAssetSupply": "7376065132753746236357568" - }, - { - "type": "mintMulti", - "inputQtys": [ - "666114235388421256249344", - "545054779485157328945152", - "1196313873163898138394624" - ], - "expectedQty": "2408316044099353844884075", + "inputQty": "8628046743743446908928", + "expectedQty": "8628028982983470825561", "reserves": [ - "3083055447900374791334633", - "3561777435539707617363357", - "3139717640118021356531003" - ], - "mAssetSupply": "9784381176853100081241643" + "68432823989493790725613161", + "80805611241684676782602394", + "57876642530979759380917062" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "71127153735251632128", - "outputIndex": 0, - "expectedQty": "71000460116592538259", - "swapFee": "42645636133682555", + "inputQty": "642275531392418816", + "outputIndex": 2, + "expectedQty": "640048027982504795", + "swapFee": "384858872993558", "reserves": [ - "3082984447440258198796374", - "3561848562693442868995485", - "3139717640118021356531003" + "68432823989493790725613161", + "80805611883960208175021210", + "57876641890931731398412267" ], - "mAssetSupply": "9784381219498736214924198", + "mAssetSupply": "207099013768033547765381456", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1667322653332190923849728", - "expectedQty": "1660944546190015720710383", - "swapFee": "1000393591999314554309", + "type": "mintMulti", + "inputQtys": [ + "504757211219328925433856", + "246509088746452132298752", + "1158362674480171207098368" + ], + "expectedQty": "1911063241654168950161121", "reserves": [ - "1422039901250242478085991", - "3561848562693442868995485", - "3139717640118021356531003" + "68937581200713119651047017", + "81052120972706660307319962", + "59035004565411902605510635" ], - "mAssetSupply": "8118058959758544605628779" + "mAssetSupply": "209010077009687716715542577" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "694339394638019662184448", - "expectedQty": "694853343123431192025931", - "swapFee": "416603636782811797310", + "type": "redeemBassets", + "inputQtys": [ + "7907312368391908130553856", + "8797532899794447063056384", + "8444281518952582744113152" + ], + "expectedQty": "25150757450466162744936239", + "swapFee": "15099514178786969828859", "reserves": [ - "1422039901250242478085991", - "3561848562693442868995485", - "2444864296994590164505072" + "61030268832321211520493161", + "72254588072912213244263578", + "50590723046459319861397483" ], - "mAssetSupply": "7424136168757307755241641" + "mAssetSupply": "183859319559221553970606338" }, { "type": "mintMulti", "inputQtys": [ - "136178307463526970556416", - "33823881941116832972800", - "69274577206037767520256" + "89534108943696478208", + "102607482243672719360", + "17992279421582499840" ], - "expectedQty": "239983471456530457180944", + "expectedQty": "210018300067840717986", "reserves": [ - "1558218208713769448642407", - "3595672444634559701968285", - "2514138874200627932025328" + "61030358366430155216971369", + "72254690680394456916982938", + "50590741038738741443897323" ], - "mAssetSupply": "7664119640213838212422585" + "mAssetSupply": "183859529577521621811324324" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "18076767285165498368", - "11045863185563906048", - "10868197050903506944" + "167784772009637088", + "106002209206586112", + "137505884881885312" ], - "expectedQty": "40053985824790099495", - "swapFee": "24046819586626035", + "expectedQty": "411373458272787713", "reserves": [ - "1558200131946484283144039", - "3595661398771374138062237", - "2514128006003577028518384" + "61030358534214927226608457", + "72254690786396666123569050", + "50590741176244626325782635" ], - "mAssetSupply": "7664079586228013422323090" + "mAssetSupply": "183859529988895080084112037" }, { - "type": "mintMulti", - "inputQtys": [ - "30164655958507884544", - "20369638325277392896", - "9213618988052046848" + "type": "redeemMasset", + "inputQty": "2492027478136114659301785", + "expectedQtys": [ + "826955794338240054116612", + "979044473094986564045510", + "685499930859940036015115" ], - "expectedQty": "59849949827842235931", + "redemptionFee": "747608243440834397790", "reserves": [ - "1558230296602442791028583", - "3595681768409699415455133", - "2514137219622565080565232" + "60203402739876687172491845", + "71275646313301679559523540", + "49905241245384686289767520" ], - "mAssetSupply": "7664139436177841264559021" + "mAssetSupply": "181368250119002406259208042" }, { "type": "redeemMasset", - "inputQty": "19446764098466573031833", + "inputQty": "45337686790978781839360", "expectedQtys": [ - "3952622010635302250720", - "9120841079810105534432", - "6377384738125757890698" + "15044883382158422183747", + "17811846805484903345306", + "12471363752301304346238" ], - "redemptionFee": "5834029229539971909", + "redemptionFee": "13601306037293634551", "reserves": [ - "1554277674591807488777863", - "3586560927329889309920701", - "2507759834884439322674534" + "60188357856494528750308098", + "71257834466496194656178234", + "49892769881632384985421282" ], - "mAssetSupply": "7644698506108604231499097" + "mAssetSupply": "181322926033517464771003233" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "9487306187281740595200", - "outputIndex": 0, - "expectedQty": "9395426758618060362579", - "swapFee": "5673375108423775257", + "inputIndex": 2, + "inputQty": "9327958097294644977074176", + "outputIndex": 1, + "expectedQty": "9338136520934899667366277", + "swapFee": "5603009308255878624750", "reserves": [ - "1544882247833189428415284", - "3596048233517171050515901", - "2507759834884439322674534" + "60188357856494528750308098", + "61919697945561294988811957", + "59220727978927029962495458" ], - "mAssetSupply": "7644704179483712655274354", + "mAssetSupply": "181328529042825720649627983", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "12433589650730920391475", - "expectedQtys": [ - "2511891755107134291492", - "5846972428745710789776", - "4077476624428930451347" - ], - "redemptionFee": "3730076895219276117", - "reserves": [ - "1542370356078082294123792", - "3590201261088425339726125", - "2503682358260010392223187" - ], - "mAssetSupply": "7632274319909876954158996" - }, { "type": "mint", - "inputIndex": 1, - "inputQty": "71134567957281581826048", - "expectedQty": "70890493263008435889385", + "inputIndex": 0, + "inputQty": "18818942670526537778855936", + "expectedQty": "18805423985753092171995295", "reserves": [ - "1542370356078082294123792", - "3661335829045706921552173", - "2503682358260010392223187" + "79007300527021066529164034", + "61919697945561294988811957", + "59220727978927029962495458" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "2405982357208262569361408", - "hardLimitError": true - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "232737354977212897427456", - "expectedQty": "233365898433554516193628", - "swapFee": "139642412986327738456", + "inputQty": "171054850219554635776", + "expectedQty": "171189475861744904329", + "swapFee": "102632910131732781", "reserves": [ - "1542370356078082294123792", - "3427969930612152405358545", - "2503682358260010392223187" + "79007129337545204784259705", + "61919697945561294988811957", + "59220727978927029962495458" ], - "mAssetSupply": "7470567100608658820359381" + "mAssetSupply": "200133782076361503398720283" }, { - "type": "redeemMasset", - "inputQty": "7744196965767415280435", - "expectedQtys": [ - "1598384211649358358340", - "3552462606342925891882", - "2594607927115295368327" + "type": "redeemBassets", + "inputQtys": [ + "1577960422701230488289280", + "3667476752842470402818048", + "4181896106141929286139904" ], - "redemptionFee": "2323259089730224584", + "expectedQty": "9431941814964353728696234", + "swapFee": "5662562626554544964196", "reserves": [ - "1540771971866432935765452", - "3424417468005809479466663", - "2501087750332895096854860" + "77429168914843974295970425", + "58252221192718824585993909", + "55038831872785100676355554" ], - "mAssetSupply": "7462825226901981135303530" + "mAssetSupply": "190701840261397149670024049" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "128049032356046850490368", - "191620114957392569958400", - "94547891439582834589696" + "2237647284527252499333120", + "7130706888479440109568000", + "7139501040482522973077504" ], - "expectedQty": "414262064257465162277992", + "expectedQty": "16519966943440541135532307", + "swapFee": "9917930924619096139002", "reserves": [ - "1668821004222479786255820", - "3616037582963202049425063", - "2595635641772477931444556" + "75191521630316721796637305", + "51121514304239384476425909", + "47899330832302577703278050" ], - "mAssetSupply": "7877087291159446297581522" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2502476695581235347456", - "expectedQty": "2494865115595518722180", - "reserves": [ - "1668821004222479786255820", - "3618540059658783284772519", - "2595635641772477931444556" - ] + "mAssetSupply": "174181873317956608534491742" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3319259101849882984448", - "892201999830101786624", - "847220923742197776384" + "1905403394556377570476032", + "1415273292506919245709312", + "306557594017247440928768" ], - "expectedQty": "5072473403464615399614", - "swapFee": "3045311228816058875", + "expectedQty": "3624979632867932594765768", "reserves": [ - "1665501745120629903271372", - "3617647857658953182985895", - "2594788420848735733668172" + "77096925024873099367113337", + "52536787596746303722135221", + "48205888426319825144206818" ], - "mAssetSupply": "7874509682871577200904088" + "mAssetSupply": "177806852950824541129257510" }, { - "type": "mintMulti", - "inputQtys": [ - "79090084482260257472512", - "93104087638600497233920", - "52357028037842601771008" + "type": "redeemMasset", + "inputQty": "1092681922978919953203", + "expectedQtys": [ + "473643969112619252060", + "322759080128312845604", + "296152256675295060549" ], - "expectedQty": "224645137052112526738586", + "redemptionFee": "327804576893675985", "reserves": [ - "1744591829602890160743884", - "3710751945297553680219815", - "2647145448886578335439180" + "77096451380903986747861277", + "52536464837666175409289617", + "48205592274063149849146269" ], - "mAssetSupply": "8099154819923689727642674" + "mAssetSupply": "177805760596706139102980292" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "607107027923552174080", - "expectedQty": "606875510140973405608", - "swapFee": "364264216754131304", + "type": "redeemMasset", + "inputQty": "465682372462545297054105", + "expectedQtys": [ + "201858969751800547864018", + "137554407194929990834480", + "126215033486326550994347" + ], + "redemptionFee": "139704711738763589116", "reserves": [ - "1744591829602890160743884", - "3710751945297553680219815", - "2646538573376437362033572" + "76894592411152186199997259", + "52398910430471245418455137", + "48079377240576823298151922" ], - "mAssetSupply": "8098548077159982929599898" + "mAssetSupply": "177340217928955332569515303" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "679592281064666243792896", - "expectedQty": "680843848772351286845860", - "swapFee": "407755368638799746275", + "type": "swap", + "inputIndex": 0, + "inputQty": "1666177993866786635776", + "outputIndex": 2, + "expectedQty": "1658434166994951336578", + "swapFee": "997488559040770900", "reserves": [ - "1744591829602890160743884", - "3029908096525202393373955", - "2646538573376437362033572" + "76896258589146052986633035", + "52398910430471245418455137", + "48077718806409828346815344" ], - "mAssetSupply": "7419363551463955485553277" + "mAssetSupply": "177340218926443891610286203", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "218772838972175987769344", - "expectedQty": "218765587694121154083988", - "swapFee": "131263703383305592661", + "inputQty": "50894739814622559643631616", + "outputIndex": 0, + "expectedQty": "50641727476631352905754275", + "swapFee": "30517003285910805577688", "reserves": [ - "1744591829602890160743884", - "3029908096525202393373955", - "2427772985682316207949584" + "26254531112514700080878760", + "52398910430471245418455137", + "98972458621032387990446960" ], - "mAssetSupply": "7200721976195162803376594" + "mAssetSupply": "177370735929729802415863891", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "136491275302280757248", - "expectedQtys": [ - "33059202677494752237", - "57415347336579696422", - "46005167413220868635" - ], - "redemptionFee": "40947382590684227", + "type": "redeem", + "inputIndex": 2, + "inputQty": "9302907477184408197267456", + "expectedQty": "9353469437930999177915377", + "swapFee": "5581744486310644918360", "reserves": [ - "1744558770400212665991647", - "3029850681177865813677533", - "2427726980514902987080949" + "26254531112514700080878760", + "52398910430471245418455137", + "89618989183101388812531583" ], - "mAssetSupply": "7200585525867243113303573" + "mAssetSupply": "168073410197031704863514795" }, { "type": "mintMulti", "inputQtys": [ - "478059257416337384800256", - "19651726114616246272000", - "66820529752799801507840" + "4902752562936293789532160", + "511206751434943382945792", + "10876512816746529367785472" ], - "expectedQty": "565520856816563256904398", + "expectedQty": "16284243315438939047212398", "reserves": [ - "2222618027816550050791903", - "3049502407292482059949533", - "2494547510267702788588789" + "31157283675450993870410920", + "52910117181906188801400929", + "100495501999847918180317055" ], - "mAssetSupply": "7766106382683806370207971" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "3173226448094203282980864", - "expectedQty": "3161620621057727003591834", - "reserves": [ - "2222618027816550050791903", - "6222728855386685342930397", - "2494547510267702788588789" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "336513233567333604130816", - "expectedQty": "334453766843499392293160", - "reserves": [ - "2222618027816550050791903", - "6559242088954018947061213", - "2494547510267702788588789" - ] + "mAssetSupply": "184357653512470643910727193" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "406473423465423634432", - "362829301080640716800", - "156588650767507816448" + "14341467646675", + "87012296392472", + "153625869054542" ], - "expectedQty": "927176873572347554735", + "expectedQty": "254334070710083", + "swapFee": "152692057660", "reserves": [ - "2223024501240015474426335", - "6559604918255099587778013", - "2494704098918470296405237" + "31157283675436652402764245", + "52910117181819176505008457", + "100495501999694292311262513" ], - "mAssetSupply": "11263107947458605113647700" + "mAssetSupply": "184357653512216309840017110" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "11079786313743078", - "outputIndex": 1, - "expectedQty": "11221978257123481", - "swapFee": "6694366709617", + "inputQty": "1488018918134243651485696", + "expectedQty": "1471439236613313429069194", + "swapFee": "892811350880546190891", "reserves": [ - "2223024512319801788169413", - "6559604907033121330654532", - "2494704098918470296405237" + "29685844438823338973695051", + "52910117181819176505008457", + "100495501999694292311262513" ], - "mAssetSupply": "11263107947465299480357317", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "182870527405432946734722305" }, { "type": "redeemMasset", - "inputQty": "3717531749450651166310", + "inputQty": "12275081974521", "expectedQtys": [ - "733517337632713835523", - "2164431341473769361720", - "823161732441052866298" + "1992047927490", + "3550496584072", + "6743680709276" ], - "redemptionFee": "1115259524835195349", + "redemptionFee": "3682524592", "reserves": [ - "2222290994982169074333890", - "6557440475691647561292812", - "2493880937186029243538939" + "29685844438821346925767561", + "52910117181815626008424385", + "100495501999687548630553237" ], - "mAssetSupply": "11259391530975373664386356" + "mAssetSupply": "182870527405420675335272376" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "27744279367341353992192", - "outputIndex": 1, - "expectedQty": "28034717527392457034996", - "swapFee": "16725025110633706053", + "type": "redeemMasset", + "inputQty": "789408824111615197157785", + "expectedQtys": [ + "128108326712522479817084", + "228331944280545099375075", + "433685173748289473845649" + ], + "redemptionFee": "236822647233484559147", "reserves": [ - "2222290994982169074333890", - "6529405758164255104257816", - "2521625216553370597531131" + "29557736112108824445950477", + "52681785237535080909049310", + "100061816825939259156707588" ], - "mAssetSupply": "11259408256000484298092409", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "182081355403956293622673738" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "66497874436608153878528", - "expectedQty": "66943922470213726860559", + "type": "redeem", + "inputIndex": 2, + "inputQty": "8929188395222206251008", + "expectedQty": "8976212240867565055037", + "swapFee": "5357513037133323750", "reserves": [ - "2288788869418777228212418", - "6529405758164255104257816", - "2521625216553370597531131" - ] + "29557736112108824445950477", + "52681785237535080909049310", + "100052840613698391591652551" + ], + "mAssetSupply": "182072431573074108549746480" }, { "type": "redeemMasset", - "inputQty": "42778549449420971389747", + "inputQty": "2305177997412652072042496", "expectedQtys": [ - "8641943404816740092798", - "24653543095685025619738", - "9521080210053124599811" + "374111564269097436545422", + "666792105083745755528391", + "1266366428389053086689654" ], - "redemptionFee": "12833564834826291416", + "redemptionFee": "691553399223795621612", "reserves": [ - "2280146926013960488119620", - "6504752215068570078638078", - "2512104136343317472931320" + "29183624547839727009405055", + "52014993132451335153520919", + "98786474185309338504962897" ], - "mAssetSupply": "11283586462586111879854637" + "mAssetSupply": "179767945129060680273325596" }, { - "type": "mintMulti", - "inputQtys": [ - "72924996141066674176", - "2610408488017192960", - "4560305431174331392" - ], - "expectedQty": "80571802944130401747", + "type": "redeem", + "inputIndex": 2, + "inputQty": "7038644723109544853504", + "expectedQty": "7075707408229307771534", + "swapFee": "4223186833865726912", "reserves": [ - "2280219851010101554793796", - "6504754825477058095831038", - "2512108696648748647262712" + "29183624547839727009405055", + "52014993132451335153520919", + "98779398477901109197191363" ], - "mAssetSupply": "11283667034389056010256384" + "mAssetSupply": "179760910707524404594199004" }, { "type": "redeemBassets", "inputQtys": [ - "80086277263270395904", - "274084131519848218624", - "720740761028219264" + "733141918414071723458560", + "586615588651450784284672", + "1569608993372362825007104" ], - "expectedQty": "353731962534506695086", - "swapFee": "212366597479191531", + "expectedQty": "2888843823257119580267512", + "swapFee": "1734346902095529065599", "reserves": [ - "2280139764732838284397892", - "6504480741345538247612414", - "2512107975907987619043448" + "28450482629425655285946495", + "51428377543799884369236247", + "97209789484528746372184259" ], - "mAssetSupply": "11283313302426521503561298" + "mAssetSupply": "176872066884267285013931492" }, { "type": "redeemBassets", "inputQtys": [ - "1007169083700320241975296", - "299176736478277721391104", - "474187104246107817902080" + "18694866602653476", + "32056264773918064", + "7221718381458784" ], - "expectedQty": "1792605925496218170380620", - "swapFee": "1076209280866250652619", + "expectedQty": "58162273054789855", + "swapFee": "34918314821766", "reserves": [ - "1272970681032518042422596", - "6205304004867260526221310", - "2037920871661879801141368" + "28450482610730788683293019", + "51428377511743619595318183", + "97209789477307027990725475" ], - "mAssetSupply": "9490707376930303333180678" + "mAssetSupply": "176872066826105011959141637" }, { - "type": "redeemMasset", - "inputQty": "7781017044710064128", - "expectedQtys": [ - "1043340045298391616", - "5085931874155327826", - "1670301198790868675" + "type": "redeemBassets", + "inputQtys": [ + "67820450630668503174086656", + "55277072853323017650962432", + "948480911162844316172288" ], - "redemptionFee": "2334305113413019", + "insufficientLiquidityError": true + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "13704083430536392998912", + "expectedQty": "13540095401836800013988", + "swapFee": "8222450058321835799", "reserves": [ - "1272969637692472744030980", - "6205298918935386370893484", - "2037919201360681010272693" + "28436942515328951883279031", + "51428377511743619595318183", + "97209789477307027990725475" ], - "mAssetSupply": "9490699598247563736529569" + "mAssetSupply": "176858370965124533887978524" }, { "type": "redeemBassets", "inputQtys": [ - "157722652094670412185600", - "236859317664397419085824", - "154673058908341440348160" + "27260949787120402169856", + "48164310400672232112128", + "12703867826105728630784" ], - "expectedQty": "551345946805465839769677", - "swapFee": "331006171786351314650", + "expectedQty": "88393832169574034459026", + "swapFee": "53068140185855934235", "reserves": [ - "1115246985597802331845380", - "5968439601270988951807660", - "1883246142452339569924533" + "28409681565541831481109175", + "51380213201342947363206055", + "97197085609480922262094691" ], - "mAssetSupply": "8939353651442097896759892" + "mAssetSupply": "176769977132954959853519498" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "1077065453544859893760", - "expectedQty": "1064514204517026746047", + "inputQty": "9490453952937309010657280", + "expectedQty": "9470255078658604059193846", + "swapFee": "5694272371762385406394", "reserves": [ - "1115246985597802331845380", - "5969516666724533811701420", - "1883246142452339569924533" - ] + "28409681565541831481109175", + "41909958122684343304012209", + "97197085609480922262094691" + ], + "mAssetSupply": "167285217452389413228268612" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "117592968511631151595520", - "expectedQty": "116616387544818894323173", - "swapFee": "70555781106978690957", + "type": "mint", + "inputIndex": 1, + "inputQty": "748290300527096448", + "expectedQty": "750314461628054970", "reserves": [ - "1115246985597802331845380", - "5969516666724533811701420", - "1766629754907520675601360" - ], - "mAssetSupply": "8822895752916090750601376" + "28409681565541831481109175", + "41909958870974643831108657", + "97197085609480922262094691" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "84841783274341352341504", - "115456751558910447452160", - "183701926149258246881280" + "3134888388135888294510592", + "3777782592033004321767424", + "4028293137662571700027392" ], - "expectedQty": "386645228029495421380125", - "swapFee": "232126412665296430686", + "expectedQty": "10955797960784970098371882", "reserves": [ - "1030405202323460979503876", - "5854059915165623364249260", - "1582927828758262428720080" + "31544569953677719775619767", + "45687741463007648152876081", + "101225378747143493962122083" ], - "mAssetSupply": "8436250524886595329221251" + "mAssetSupply": "178241016163488844954695464" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "23455628750610067619840", - "outputIndex": 1, - "expectedQty": "24016435111127788184540", - "swapFee": "14226731669308432324", + "type": "mintMulti", + "inputQtys": [ + "31081788775134780295479296", + "37140161845739304840593408", + "15169458083610854745440256" + ], + "expectedQty": "83535061566479847358885151", "reserves": [ - "1030405202323460979503876", - "5830043480054495576064720", - "1606383457508872496339920" + "62626358728812500071099063", + "82827903308746952993469489", + "116394836830754348707562339" ], - "mAssetSupply": "8436264751618264637653575", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "261776077729968692313580615" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1701876139838482321244160", - "expectedQty": "1719015988040708933203062", - "swapFee": "1021125683903089392746", + "inputQty": "20591330675777965584809984", + "expectedQty": "20554925034442433690433484", + "swapFee": "12354798405466779350885", "reserves": [ - "1030405202323460979503876", - "4111027492013786642861658", - "1606383457508872496339920" + "62626358728812500071099063", + "62272978274304519303036005", + "116394836830754348707562339" ], - "mAssetSupply": "6735409737463685405802161" + "mAssetSupply": "241197101852596193508121516" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2012307768815537094656", - "expectedQty": "2019558122603942107391", + "type": "redeemBassets", + "inputQtys": [ + "570987847979944577597440", + "1269711665993887686590464", + "379415318833060907057152" + ], + "expectedQty": "2223215894248343262910941", + "swapFee": "1334730374773870279914", "reserves": [ - "1030405202323460979503876", - "4111027492013786642861658", - "1608395765277688033434576" - ] + "62055370880832555493501623", + "61003266608310631616445541", + "116015421511921287800505187" + ], + "mAssetSupply": "238973885958347850245210575" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "178113383824631201792", - "outputIndex": 1, - "expectedQty": "182003381441958591554", - "swapFee": "108393535116040236", + "type": "redeemBassets", + "inputQtys": [ + "277503347063871336611840", + "17945716814277051940864", + "66978599057481439117312" + ], + "expectedQty": "362881967891614035474080", + "swapFee": "217859896672972204607", "reserves": [ - "1030583315707285610705668", - "4110845488632344684270104", - "1608395765277688033434576" + "61777867533768684156889783", + "60985320891496354564504677", + "115948442912863806361387875" ], - "mAssetSupply": "6737429403979824463949788", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "238611003990456236209736495" }, { - "type": "mintMulti", - "inputQtys": [ - "610417500926156566691840", - "1435648899744822942760960", - "595337380972156332015616" - ], - "expectedQty": "2640182060869153036515720", + "type": "redeem", + "inputIndex": 0, + "inputQty": "28760667857188595150356480", + "expectedQty": "28576896086431493372615807", + "swapFee": "17256400714313157090213", "reserves": [ - "1641000816633442177397508", - "5546494388377167627031064", - "2203733146249844365450192" + "33200971447337190784273976", + "60985320891496354564504677", + "115948442912863806361387875" ], - "mAssetSupply": "9377611464848977500465508" + "mAssetSupply": "209867592533981954216470228" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "329823967768117706752", - "expectedQty": "327550521743329575196", + "type": "swap", + "inputIndex": 0, + "inputQty": "2468588156508035072", + "outputIndex": 2, + "expectedQty": "2511860674880839574", + "swapFee": "1498954269677609", "reserves": [ - "1641000816633442177397508", - "5546824212344935744737816", - "2203733146249844365450192" - ] + "33200973915925347292309048", + "60985320891496354564504677", + "115948440401003131480548301" + ], + "mAssetSupply": "209867592535480908486147837", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "778703813423478670884864", - "336300575891834372358144", - "555988608222827361861632" + "8009394187274882864119808", + "46010740155264152274731008", + "2989505346867666161238016" ], - "expectedQty": "1684683204244682619577295", - "swapFee": "1011416772610375797224", + "expectedQty": "57616878387777486304762655", + "swapFee": "34590881561603453855170", "reserves": [ - "862297003209963506512644", - "5210523636453101372379672", - "1647744538027017003588560" + "25191579728650464428189240", + "14974580736232202289773669", + "112958935054135465319310285" ], - "mAssetSupply": "7693255811126038210463409" + "mAssetSupply": "152250714147703422181385182" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "21246592409485332", - "118031323729715392", - "117766338337406528" + "6975963957664127293325312", + "11583642915170387197165568", + "3533041971031152705667072" ], - "expectedQty": "257033986438627448", - "swapFee": "154312979650967", + "expectedQty": "22488624752903122106719331", "reserves": [ - "862296981963371097027312", - "5210523518421777642664280", - "1647744420260678666182032" + "32167543686314591721514552", + "26558223651402589486939237", + "116491977025166618024977357" ], - "mAssetSupply": "7693255554092051771835961" + "mAssetSupply": "174739338900606544288104513" }, { "type": "mint", "inputIndex": 2, - "inputQty": "532302322661583908503552", - "expectedQty": "534335593707293779997208", + "inputQty": "8272323463496451911319552", + "expectedQty": "8178274174941185001057581", "reserves": [ - "862296981963371097027312", - "5210523518421777642664280", - "2180046742922262574685584" + "32167543686314591721514552", + "26558223651402589486939237", + "124764300488663069936296909" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "3427431940015150730313728", - "hardLimitError": true + "inputQty": "2534465861846207341527040", + "expectedQty": "2503748556665013909482653", + "reserves": [ + "32167543686314591721514552", + "26558223651402589486939237", + "127298766350509277277823949" + ] }, { "type": "mintMulti", "inputQtys": [ - "22840319556047278702592", - "208313487341895689437184", - "105975241759318234628096" + "5647534867683164028928", + "3929894228716132761600", + "3534610842165720383488" ], - "expectedQty": "335736851908445274932050", + "expectedQty": "13222619388781574129856", "reserves": [ - "885137301519418375729904", - "5418837005763673332101464", - "2286021984681580809313680" + "32173191221182274885543480", + "26562153545631305619700837", + "127302300961351442998207437" ], - "mAssetSupply": "8563327999707790826765219" + "mAssetSupply": "185434584251601524772774603" }, { - "type": "redeemMasset", - "inputQty": "283034887487408884940", - "expectedQtys": [ - "29246757701449661524", - "179049524473963530035", - "75534870094617178679" - ], - "redemptionFee": "84910466246222665", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1957958562014238081024", + "expectedQty": "1981143727803555224137", + "swapFee": "1174775137208542848", "reserves": [ - "885108054761716926068380", - "5418657956239199368571429", - "2285946449811486192135001" + "32173191221182274885543480", + "26562153545631305619700837", + "127300319817623639442983300" ], - "mAssetSupply": "8563045049730769664102944" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "167298545495576182784", - "expectedQty": "173232324812953997202", - "reserves": [ - "885275353307212502251164", - "5418657956239199368571429", - "2285946449811486192135001" - ] + "mAssetSupply": "185432627467814647743236427" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "63948933607080975138816", - "expectedQty": "61563188335711803450321", - "swapFee": "38369360164248585083", + "inputQty": "287905317345205686370304", + "expectedQty": "283962222764401403219838", + "swapFee": "172743190407123411822", "reserves": [ - "823712164971500698800843", - "5418657956239199368571429", - "2285946449811486192135001" + "31889228998417873482323642", + "26562153545631305619700837", + "127300319817623639442983300" ], - "mAssetSupply": "8499307717808665891546413" + "mAssetSupply": "185144894893659849180277945" }, { "type": "redeemMasset", - "inputQty": "689478124769262855782", + "inputQty": "402888910650556915751321", "expectedQtys": [ - "66800868758862487193", - "439438768026965445122", - "185384185492669083309" + "69372490097639530791608", + "57783859682142515220313", + "276931755747766191587503" ], - "redemptionFee": "206843437430778856", + "redemptionFee": "120866673195167074725", "reserves": [ - "823645364102741836313650", - "5418218517471172403126307", - "2285761065625993523051692" + "31819856508320233951532034", + "26504369685949163104480524", + "127023388061875873251395797" ], - "mAssetSupply": "8498618446527334059469487" + "mAssetSupply": "184742126849682487431601349" }, { - "type": "redeemMasset", - "inputQty": "728430778336682180608", - "expectedQtys": [ - "70574840702696688599", - "464265235292734488688", - "195857622857764246030" + "type": "swap", + "inputIndex": 2, + "inputQty": "934468053477278850482176", + "outputIndex": 1, + "expectedQty": "902907056731535304897062", + "swapFee": "553707118737747626869", + "reserves": [ + "31819856508320233951532034", + "25601462629217627799583462", + "127957856115353152101877973" ], - "redemptionFee": "218529233501004654", + "mAssetSupply": "184742680556801225179228218", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "15462145941671485101834240", + "outputIndex": 0, + "expectedQty": "15227575504841624731239897", + "swapFee": "9397667251821988166630", "reserves": [ - "823574789262039139625051", - "5417754252235879668637619", - "2285565208003135758805662" + "16592281003478609220292137", + "41063608570889112901417702", + "127957856115353152101877973" ], - "mAssetSupply": "8497890234278230878293533" + "mAssetSupply": "184752078224053047167394848", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "145069190424394598658867", - "expectedQtys": [ - "14055192764436825701450", - "92459824363679602891770", - "39005637366533349013942" + "type": "mintMulti", + "inputQtys": [ + "400893280319058496", + "7258119897058422784", + "6149675511542403072" ], - "redemptionFee": "43520757127318379597", + "expectedQty": "13779111737074822152", "reserves": [ - "809519596497602313923601", - "5325294427872200065745849", - "2246559570636602409791720" + "16592281404371889539350633", + "41063615829009009959840486", + "127957862265028663644281045" ], - "mAssetSupply": "8352864564610963598014263" + "mAssetSupply": "184752092003164784242217000" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "258900394266450236276736", - "outputIndex": 2, - "expectedQty": "266005727002437978633769", - "swapFee": "160151545824754648752", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3263962321202217863872512", + "expectedQty": "3237905291342694388078307", + "swapFee": "1958377392721330718323", "reserves": [ - "1068419990764052550200337", - "5325294427872200065745849", - "1980553843634164431157951" + "16592281404371889539350633", + "37825710537666315571762179", + "127957862265028663644281045" ], - "mAssetSupply": "8353024716156788352663015", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "181490088059355287709062811" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2450226992579134095360", - "expectedQty": "2425777213590348150120", + "inputIndex": 2, + "inputQty": "10693414930712287074320384", + "expectedQty": "10505983875458153194377542", "reserves": [ - "1068419990764052550200337", - "5327744654864779199841209", - "1980553843634164431157951" + "16592281404371889539350633", + "37825710537666315571762179", + "138651277195740950718601429" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "9488571908290083028992", - "6437382599435136008192", - "10212587236063904268288" + "type": "redeemMasset", + "inputQty": "219954235273422", + "expectedQtys": [ + "19002720567159", + "43320830335734", + "158793803734327" ], - "expectedQty": "26330782198948881703373", - "swapFee": "15807954091824423676", + "redemptionFee": "65986270582", "reserves": [ - "1058931418855762467171345", - "5321307272265344063833017", - "1970341256398100526889663" + "16592281404352886818783474", + "37825710537622994741426445", + "138651277195582156914867102" ], - "mAssetSupply": "8329119711171429819109762" + "mAssetSupply": "191996071934593552654437513" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "115447724213879340793856", - "outputIndex": 1, - "expectedQty": "116899117334945199192315", - "swapFee": "69506895503247804825", + "type": "mintMulti", + "inputQtys": [ + "914520800739211272519680", + "1799983395206155382816768", + "1185545632916324820713472" + ], + "expectedQty": "3954008248122707821701798", "reserves": [ - "1058931418855762467171345", - "5204408154930398864640702", - "2085788980611979867683519" + "17506802205092098091303154", + "39625693932829150124243213", + "139836822828498481735580574" ], - "mAssetSupply": "8329189218066933066914587", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "195950080182716260476139311" }, { - "type": "redeemBassets", - "inputQtys": [ - "13426645720632215470080", - "32586969545503804489728", - "4858202670983985233920" + "type": "redeemMasset", + "inputQty": "5524375799458676342784", + "expectedQtys": [ + "493417201418018891341", + "1116822979749925874439", + "3941204850943940855140" ], - "expectedQty": "50878307966845106823264", - "swapFee": "30545311967287436555", + "redemptionFee": "1657312739837602902", "reserves": [ - "1045504773135130251701265", - "5171821185384895060150974", - "2080930777940995882449599" + "17506308787890680072411813", + "39624577109849400198368774", + "139832881623647537794725434" ], - "mAssetSupply": "8278310910100087960091323" + "mAssetSupply": "195944557464229541637399429" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "3418941529872006991839232", + "expectedQty": "3585946428087811202254658", + "reserves": [ + "20925250317762687064251045", + "39624577109849400198368774", + "139832881623647537794725434" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1060047634790708890566656", - "expectedQty": "1049321996510545843496137", - "swapFee": "636028580874425334339", + "inputQty": "4369504828287763", + "expectedQty": "4433287994415555", + "swapFee": "2621702896972", "reserves": [ - "1045504773135130251701265", - "5171821185384895060150974", - "1031608781430450038953462" + "20925250317762687064251045", + "39624577109849400198368774", + "139832881619214249800309879" ], - "mAssetSupply": "7218899303890253494859006" + "mAssetSupply": "199530503887950469714263296" }, { "type": "redeemBassets", "inputQtys": [ - "63432239315466846208", - "79891373025438023680", - "27022881109869289472" + "2472466567949454049017856", + "2161973823737708048023552", + "1736727089695171008266240" ], - "expectedQty": "171195459149119021154", - "swapFee": "102778942855184523", + "expectedQty": "6479565541525714564082071", + "swapFee": "3890073368936790812937", "reserves": [ - "1045441340895814784855057", - "5171741294011869622127294", - "1031581758549340169663990" + "18452783749813233015233189", + "37462603286111692150345222", + "138096154529519078792043639" ], - "mAssetSupply": "7218728108431104375837852" + "mAssetSupply": "193050938346424755150181225" }, { - "type": "redeemMasset", - "inputQty": "707236863968490", - "expectedQtys": [ - "102393777947980", - "506536434851233", - "101036327327154" + "type": "redeemBassets", + "inputQtys": [ + "18276453743007253921792", + "15538246446248668168192", + "14367987111171297640448" ], - "redemptionFee": "212171059190", + "expectedQty": "49057450941642797573703", + "swapFee": "29452141850095735985", "reserves": [ - "1045441340793421006907077", - "5171741293505333187276061", - "1031581758448303842336836" + "18434507296070225761311397", + "37447065039665443482177030", + "138081786542407907494403191" ], - "mAssetSupply": "7218728107724079682928552" + "mAssetSupply": "193001880895483112352607522" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "34583408805710110130176", - "expectedQty": "33756773295395772702102", - "swapFee": "20750045283426066078", + "type": "mintMulti", + "inputQtys": [ + "1032713530941371779645440", + "186704006557306368032768", + "1045855249782665193193472" + ], + "expectedQty": "2300767526507936757033484", "reserves": [ - "1045441340793421006907077", - "5171741293505333187276061", - "997824985152908069634734" + "19467220827011597540956837", + "37633769046222749850209798", + "139127641792190572687596663" ], - "mAssetSupply": "7184165448963652998864454" + "mAssetSupply": "195302648421991049109641006" }, { "type": "redeemBassets", "inputQtys": [ - "345274635610540153503744", - "638493561237653872967680", - "333085268888336639983616" + "873861305890445312", + "6762230213970733056", + "25141044439947255808" ], - "hardLimitError": true + "expectedQty": "32485481708215460844", + "swapFee": "19502990819420929", + "reserves": [ + "19467219953150291650511525", + "37633762283992535879476742", + "139127616651146132740340855" + ], + "mAssetSupply": "195302615936509340894180162" }, { - "type": "redeemMasset", - "inputQty": "642948392811460701873766", - "expectedQtys": [ - "93533923343840817184744", - "462707217349738973171071", - "89273766045093953877641" + "type": "redeemBassets", + "inputQtys": [ + "22512950146468046438400", + "40138138086632369160192", + "13957426182227731939328" ], - "redemptionFee": "192884517843438210562", + "expectedQty": "77895610397888082493485", + "swapFee": "46765425494029267056", "reserves": [ - "951907417449580189722333", - "4709034076155594214104990", - "908551219107814115757093" + "19444707003003823604073125", + "37593624145905903510316550", + "139113659224963905008401527" ], - "mAssetSupply": "6541409940670035735201250" + "mAssetSupply": "195224720326111452811686677" }, { "type": "redeemMasset", - "inputQty": "214564677366852997454233", + "inputQty": "68981429879479383726489", "expectedQtys": [ - "31214132128660994388954", - "154414609190996594463108", - "29792432834351208483603" + "6868604003155968809515", + "13279486148174973465728", + "49140192058366005642274" ], - "redemptionFee": "64369403210055899236", + "redemptionFee": "20694428963843815117", "reserves": [ - "920693285320919195333379", - "4554619466964597619641882", - "878758786273462907273490" + "19437838399000667635263610", + "37580344659757728536850822", + "139064519032905539002759253" ], - "mAssetSupply": "6326909632706392793646253" + "mAssetSupply": "195155759590660937271775305" }, { - "type": "redeemMasset", - "inputQty": "12502770783229876319027", - "expectedQtys": [ - "1818860140408131450706", - "8997801912176723980942", - "1736017145850160832377" + "type": "redeemBassets", + "inputQtys": [ + "106019531588034", + "177886984303956", + "253401168491001" ], - "redemptionFee": "3750831234968962895", + "expectedQty": "540186282290834", + "swapFee": "324306353186", "reserves": [ - "918874425180511063882673", - "4545621665052420895660940", - "877022769127612746441113" + "19437838398894648103675576", + "37580344659579841552546866", + "139064519032652137834268252" ], - "mAssetSupply": "6314410612754397886290121" + "mAssetSupply": "195155759590120750989484471" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "113989566877181323247616", - "outputIndex": 1, - "expectedQty": "118000635340378593305835", - "swapFee": "69871315611072477922", + "inputIndex": 1, + "inputQty": "2575408256661830414368768", + "outputIndex": 2, + "expectedQty": "2641405060362699704043727", + "swapFee": "1561230667288376010780", "reserves": [ - "918874425180511063882673", - "4427621029712042302355105", - "991012336004794069688729" + "19437838398894648103675576", + "40155752916241671966915634", + "136423113972289438130224525" ], - "mAssetSupply": "6314480484070008958768043", + "mAssetSupply": "195157320820788039365495251", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "4636575714962904711168", - "expectedQtys": [ - "674505642448948457833", - "3250123504721238214742", - "727458936775209966681" + "type": "mint", + "inputIndex": 2, + "inputQty": "10490412830818687778816", + "expectedQty": "10330131534002900032514", + "reserves": [ + "19437838398894648103675576", + "40155752916241671966915634", + "136433604385120256818003341" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "5317733563731372", + "outputIndex": 2, + "expectedQty": "5444121176434877", + "swapFee": "3218493160549", + "reserves": [ + "19437838398894648103675576", + "40155752921559405530647006", + "136433604379676135641568464" ], - "redemptionFee": "1390972714488871413", + "mAssetSupply": "195167650952325260758688314", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "1611263591482749091840", + "expectedQty": "1635283215449977718304", + "swapFee": "966758154889649455", "reserves": [ - "918199919538062115424840", - "4424370906207321064140363", - "990284877068018859722048" + "19437838398894648103675576", + "40155752921559405530647006", + "136431969096460685663850160" ], - "mAssetSupply": "6309845299327760542928288" + "mAssetSupply": "195166040655491932899245929" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1183882260626913735213056", - "898639076765920934232064", - "653030498021131943936000" + "541824010355887537389568", + "526615981903577524207616", + "993665385486727371554816" ], - "insufficientLiquidityError": true + "expectedQty": "2075510416414547090975704", + "reserves": [ + "19979662409250535641065144", + "40682368903462983054854622", + "137425634481947413035404976" + ], + "mAssetSupply": "197241551071906479990221633" }, { - "type": "redeemMasset", - "inputQty": "35050776532630707057459", - "expectedQtys": [ - "5099010130942237904661", - "24569716892533494235411", - "5499317211037286707032" - ], - "redemptionFee": "10515232959789212117", + "type": "redeem", + "inputIndex": 2, + "inputQty": "94622262423615847792640", + "expectedQty": "96001630366146825693126", + "swapFee": "56773357454169508675", "reserves": [ - "913100909407119877520179", - "4399801189314787569904952", - "984785559856981573015016" + "19979662409250535641065144", + "40682368903462983054854622", + "137329632851581266209711850" ], - "mAssetSupply": "6274805038028089625082946" + "mAssetSupply": "197146985582840318311937668" }, { "type": "mintMulti", "inputQtys": [ - "1740056605959494645579776", - "2341066300943664754458624", - "1818065349888175090171904" + "302375055207228571648", + "3128674751468427804672", + "305901794214043779072" ], - "expectedQty": "5910668789057422113699187", + "expectedQty": "3772115343725632397452", "reserves": [ - "2653157515366614523099955", - "6740867490258452324363576", - "2802850909745156663186920" + "19979964784305742869636792", + "40685497578214451482659294", + "137329938753375480253490922" ], - "mAssetSupply": "12185473827085511738782133" + "mAssetSupply": "197150757698184043944335120" }, { - "type": "redeemMasset", - "inputQty": "770036035732808366083276", - "expectedQtys": [ - "167610551400898798074894", - "425847508268460314224280", - "177067280685738367151876" + "type": "redeemBassets", + "inputQtys": [ + "205590500211211320164352", + "3060473041259083767742464", + "513250531686409358540800" ], - "redemptionFee": "231010810719842509824", + "expectedQty": "3809857656979509035234990", + "swapFee": "2287286966367525936703", "reserves": [ - "2485546963965715725025061", - "6315019981989992010139296", - "2625783629059418296035044" + "19774374284094531549472440", + "37625024536955367714916830", + "136816688221689070894950122" ], - "mAssetSupply": "11415668802163423215208681" + "mAssetSupply": "193340900041204534909100130" }, { - "type": "redeemBassets", - "inputQtys": [ - "368832558301584621568", - "10025327924084492730368", - "30427733533298809372672" + "type": "redeemMasset", + "inputQty": "11738398066292726903603", + "expectedQtys": [ + "1200210824331800343766", + "2283660714934788599863", + "8304124711798408319220" ], - "expectedQty": "40894723293488810061952", - "swapFee": "24551564915042311424", + "redemptionFee": "3521519419887818071", "reserves": [ - "2485178131407414140403493", - "6304994654065907517408928", - "2595355895526119486662372" + "19773174073270199749128674", + "37622740876240432926316967", + "136808384096977272486630902" ], - "mAssetSupply": "11374774078869934405146729" + "mAssetSupply": "193329165164657662070014598" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2594707768525922269921280", - "expectedQty": "2597108373680765282729286", + "inputQty": "7146281501794221804224512", + "expectedQty": "7374104628590684806451990", "reserves": [ - "5079885899933336410324773", - "6304994654065907517408928", - "2595355895526119486662372" + "26919455575064421553353186", + "37622740876240432926316967", + "136808384096977272486630902" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "535122096831515324317696", - "171878770833454595571712", - "321959410139553954004992" + "193460386630180667392", + "30872987189674774528", + "200459152655896608768" ], - "expectedQty": "1030200926939149501728537", - "swapFee": "618491651154182210363", + "expectedQty": "427135274809148022206", "reserves": [ - "4544763803101821086007077", - "6133115883232452921837216", - "2273396485386565532657380" + "26919649035451051734020578", + "37622771749227622601091495", + "136808584556129928383239670" ], - "mAssetSupply": "12941681525611550186147478" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "33259959236553015296", - "expectedQty": "33282051329923209811", - "swapFee": "19955975541931809", - "reserves": [ - "4544730521050491162797266", - "6133115883232452921837216", - "2273396485386565532657380" - ], - "mAssetSupply": "12941648285608289175063991" + "mAssetSupply": "200703696928523156024488794" }, { "type": "redeemBassets", "inputQtys": [ - "1761247965812440956928", - "848885233671465074688", - "1429950348234602315776" + "7606351316275049791488", + "20478253635723373576192", + "30799650010631652769792" ], - "expectedQty": "4046961909197856828723", - "swapFee": "2429634926474598856", + "expectedQty": "58901061329022662829475", + "swapFee": "35361853909759453369", "reserves": [ - "4542969273084678721840338", - "6132266997998781456762528", - "2271966535038330930341604" + "26912042684134776684229090", + "37602293495591899227515303", + "136777784906119296730469878" ], - "mAssetSupply": "12937601323699091318235268" + "mAssetSupply": "200644795867194133361659319" }, { - "type": "mintMulti", - "inputQtys": [ - "1802071590571198967185408", - "2995890766359809182662656", - "1913847388084281580453888" + "type": "redeemMasset", + "inputQty": "20685211678409098264576", + "expectedQtys": [ + "2773629352431234524469", + "3875396088740294910811", + "14096695796331564815801" ], - "expectedQty": "6712722940098256230669058", + "redemptionFee": "6205563503522729479", "reserves": [ - "6345040863655877689025746", - "9128157764358590639425184", - "4185813923122612510795492" + "26909269054782345449704621", + "37598418099503158932604492", + "136763688210322965165654077" ], - "mAssetSupply": "19650324263797347548904326" + "mAssetSupply": "200624116861079227786124222" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "21122340350159459696246784", + "expectedQty": "21374525081081017787253097", + "reserves": [ + "48031609404941805145951405", + "37598418099503158932604492", + "136763688210322965165654077" + ] }, { "type": "redeemBassets", "inputQtys": [ - "140911284962372054155264", - "116115707101534039834624", - "38768748294126889336832" + "56178037043266088", + "1825127003553795", + "12506621115170226" ], - "expectedQty": "295608507425540771077952", - "swapFee": "177471587407769124121", + "expectedQty": "70741662922507531", + "swapFee": "42470480041529", "reserves": [ - "6204129578693505634870482", - "9012042057257056599590560", - "4147045174828485621458660" + "48031609348763768102685317", + "37598418097678031929050697", + "136763688197816344050483851" ], - "mAssetSupply": "19354715756371806777826374" + "mAssetSupply": "221998641871418582650869788" }, { - "type": "mintMulti", - "inputQtys": [ - "174406769436154170179584", - "118122564071653933842432", - "138708871441596488351744" - ], - "expectedQty": "431523903857727688330515", + "type": "mint", + "inputIndex": 2, + "inputQty": "2710001374925223886848", + "expectedQty": "2688506506991369712383", "reserves": [ - "6378536348129659805050066", - "9130164621328710533432992", - "4285754046270082109810404" - ], - "mAssetSupply": "19786239660229534466156889" + "48031609348763768102685317", + "37598418097678031929050697", + "136766398199191269274370699" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "53817702002959725887488", - "expectedQty": "53948699166610223651719", - "swapFee": "32290621201775835532", + "inputQty": "1009070318099696382377984", + "expectedQty": "1020112415929764395747001", + "reserves": [ + "48031609348763768102685317", + "38607488415777728311428681", + "136766398199191269274370699" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1321422732528598569189376", + "1825462385884153249792000", + "655569561560134205833216" + ], + "expectedQty": "3825132396588991177206494", + "swapFee": "2296457312340799185835", "reserves": [ - "6378536348129659805050066", - "9076215922162100309781273", - "4285754046270082109810404" + "46710186616235169533495941", + "36782026029893575061636681", + "136110828637631135068537483" ], - "mAssetSupply": "19732454248847776516104933" + "mAssetSupply": "219196310397266347239122678" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1236476077785970791940096", - "358568127347979725045760", - "696304851269978261815296" + "1076267686277127635730432", + "1388365912001213995417600", + "741350000160296637825024" ], - "expectedQty": "2292940671745915206514659", + "expectedQty": "3223089919892175265667644", + "swapFee": "1935014960911852270763", "reserves": [ - "7615012425915630596990162", - "9434784049510080034827033", - "4982058897540060371625700" + "45633918929958041897765509", + "35393660117892361066219081", + "135369478637470838430712459" ], - "mAssetSupply": "22025394920593691722619592" + "mAssetSupply": "215973220477374171973455034" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7263531728532696727552", - "expectedQty": "7259022494168841830801", + "inputIndex": 1, + "inputQty": "1417718025507739667529728", + "expectedQty": "1434713963166530353911697", "reserves": [ - "7622275957644163293717714", - "9434784049510080034827033", - "4982058897540060371625700" + "45633918929958041897765509", + "36811378143400100733748809", + "135369478637470838430712459" ] }, { "type": "redeemBassets", "inputQtys": [ - "1209388782657806794752", - "12265166644408588697600", - "9401440672641821179904" + "417540264211918077558784", + "421148630198739689013248", + "436375168981144505942016" ], - "expectedQty": "22884877409265884664415", - "swapFee": "13739169947528047627", + "expectedQty": "1278947305362357815654807", + "swapFee": "767829080665814177899", "reserves": [ - "7621066568861505486922962", - "9422518882865671446129433", - "4972657456867418550445796" + "45216378665746123820206725", + "36390229513201361044735561", + "134933103468489693924770443" ], - "mAssetSupply": "22009769065678594679785978" + "mAssetSupply": "216128987135178344511711924" }, { "type": "mintMulti", "inputQtys": [ - "263779017474432105971712", - "104367976867117236486144", - "6104698527473364631552" + "996836807286595939991552", + "1930363764860168444051456", + "2219416580772314960887808" ], - "expectedQty": "373848186987529270657346", + "expectedQty": "5156377386496579561346756", "reserves": [ - "7884845586335937592894674", - "9526886859732788682615577", - "4978762155394891915077348" + "46213215473032719760198277", + "38320593278061529488787017", + "137152520049262008885658251" ], - "mAssetSupply": "22383617252666123950443324" + "mAssetSupply": "221285364521674924073058680" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4045521662060541155213312", - "expectedQty": "4037134476925053548950509", - "swapFee": "2427312997236324693127", + "inputIndex": 2, + "inputQty": "1424834856298049968275456", + "expectedQty": "1435447674680887613099906", + "swapFee": "854900913778829980965", "reserves": [ - "3847711109410884043944165", - "9526886859732788682615577", - "4978762155394891915077348" + "46213215473032719760198277", + "38320593278061529488787017", + "135717072374581121272558345" ], - "mAssetSupply": "18340522903602819119923139" + "mAssetSupply": "219861384566290652934764189" }, { - "type": "redeemBassets", - "inputQtys": [ - "20891515792420679712768", - "13368296839699830407168", - "6429070069085478322176" - ], - "expectedQty": "40753795668836143367188", - "swapFee": "24466957575847194336", + "type": "swap", + "inputIndex": 1, + "inputQty": "1316509436441587613696", + "outputIndex": 0, + "expectedQty": "1321459482912682855253", + "swapFee": "798214877946511004", "reserves": [ - "3826819593618463364231397", - "9513518562893088852208409", - "4972333085325806436755172" + "46211894013549807077343024", + "38321909787497971076400713", + "135717072374581121272558345" ], - "mAssetSupply": "18299769107933982976555951" + "mAssetSupply": "219861385364505530881275193", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "883075050254733521453056", - "842807633757021317103616", - "453325422878400566001664" + "5014995974775308862619648", + "2884422910038779076018176", + "5583202897384529163452416" ], - "expectedQty": "2180606483310042338169728", + "expectedQty": "13497449051644388961517460", "reserves": [ - "4709894643873196885684453", - "10356326196650110169312025", - "5425658508204207002756836" + "51226889988325115939962672", + "41206332697536750152418889", + "141300275271965650436010761" ], - "mAssetSupply": "20480375591244025314725679" + "mAssetSupply": "233358834416149919842792653" }, { "type": "mintMulti", "inputQtys": [ - "8393947988211931283456", - "31382033405201799446528", - "82243572855215889580032" + "1406960025931671928832", + "1136847864509145939968", + "1609454424391749992448" ], - "expectedQty": "122089812273259038238575", + "expectedQty": "4159846914764431559560", "reserves": [ - "4718288591861408816967909", - "10387708230055311968758553", - "5507902081059422892336868" + "51228296948351047611891504", + "41207469545401259298358857", + "141301884726390042186003209" ], - "mAssetSupply": "20602465403517284352964254" + "mAssetSupply": "233362994263064684274352213" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "36114743852477370597376", - "expectedQty": "36234043301964027691085", - "swapFee": "21668846311486422358", + "inputIndex": 0, + "inputQty": "58144593823132456040005632", + "hardLimitError": true + }, + { + "type": "redeemBassets", + "inputQtys": [ + "63380906898277439373312", + "358754198334121850175488", + "475955285111943592935424" + ], + "expectedQty": "898467008987846013381635", + "swapFee": "539403847701328405072", "reserves": [ - "4718288591861408816967909", - "10351474186753347941067468", - "5507902081059422892336868" + "51164916041452770172518192", + "40848715347067137448183369", + "140825929441278098593067785" ], - "mAssetSupply": "20566372328511118468789236" + "mAssetSupply": "232464527254076838260970578" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "327876993807676879142912", - "expectedQty": "326978007277115306803163", - "swapFee": "196726196284606127485", + "type": "redeemMasset", + "inputQty": "79723843427708297648537", + "expectedQtys": [ + "17541773295574764392996", + "14004887713549182093059", + "48281844660823677306367" + ], + "redemptionFee": "23917153028312489294", "reserves": [ - "4718288591861408816967909", - "10351474186753347941067468", - "5180924073782307585533705" + "51147374268157195408125196", + "40834710459353588266090310", + "140777647596617274915761418" ], - "mAssetSupply": "20238692060899726195773809" + "mAssetSupply": "232384827327802158275811335" }, { "type": "redeemBassets", "inputQtys": [ - "80008315554733909606400", - "75827299962386395430912", - "61541726049709550731264" + "189208890570794485153792", + "367002282703607165878272", + "33072340165046501900288" ], - "expectedQty": "217518002067766180418981", - "swapFee": "130589154733499808136", + "expectedQty": "593728867501938881668315", + "swapFee": "356451191215892864719", "reserves": [ - "4638280276306674907361509", - "10275646886790961545636556", - "5119382347732598034802441" + "50958165377586400922971404", + "40467708176649981100212038", + "140744575256452228413861130" ], - "mAssetSupply": "20021174058831960015354828" + "mAssetSupply": "231791098460300219394143020" }, { - "type": "redeemMasset", - "inputQty": "7237674554496620324454", - "expectedQtys": [ - "1676239960997899396868", - "3713542285214809538190", - "1850106667924274330053" + "type": "redeem", + "inputIndex": 2, + "inputQty": "12213987568457612691243008", + "expectedQty": "12292986358035154215030659", + "swapFee": "7328392541074567614745", + "reserves": [ + "50958165377586400922971404", + "40467708176649981100212038", + "128451588898417074198830471" ], - "redemptionFee": "2171302366348986097", + "mAssetSupply": "219584439284383681270514757" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "1348443806840108127092736", + "expectedQty": "1356452322360082247339552", + "swapFee": "809066284104064876255", "reserves": [ - "4636604036345677007964641", - "10271933344505746736098366", - "5117532241064673760472388" + "50958165377586400922971404", + "40467708176649981100212038", + "127095136576056991951490919" ], - "mAssetSupply": "20013938555579829744016471" + "mAssetSupply": "218236804543827677208298276" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6007342313783044341760", - "8593966818053238816768", - "1506068400269188661248" + "110267406533532550430720", + "137872476719828627881984", + "157200160557225864069120" ], - "expectedQty": "16098549326745974820787", - "swapFee": "9664928553179492588", + "expectedQty": "405902905368625605290230", "reserves": [ - "4630596694031893963622881", - "10263339377687693497281598", - "5116026172664404571811140" + "51068432784119933473402124", + "40605580653369809728094022", + "127252336736614217815560039" ], - "mAssetSupply": "19997840006253083769195684" + "mAssetSupply": "218642707449196302813588506" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "5227147015007544", - "expectedQty": "5245623600779992", - "swapFee": "3136288209004", + "inputQty": "20248086974466599243743232", + "expectedQty": "20346908109749212408028407", "reserves": [ - "4630596694031893963622881", - "10263339372442069896501606", - "5116026172664404571811140" - ], - "mAssetSupply": "19997840001029073042397144" + "51068432784119933473402124", + "60853667627836408971837254", + "127252336736614217815560039" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "317822177339211", - "outputIndex": 2, - "expectedQty": "318066175115405", - "swapFee": "191420795708", + "inputIndex": 1, + "inputQty": "31086717914189213030416384", + "outputIndex": 0, + "expectedQty": "30520288521672253740015613", + "swapFee": "18663254168682264128480", "reserves": [ - "4630596694349716140962092", - "10263339372442069896501606", - "5116026172346338396695735" + "20548144262447679733386511", + "91940385542025622002253638", + "127252336736614217815560039" ], - "mAssetSupply": "19997840001029264463192852", + "mAssetSupply": "239008278813114197485745393", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1388503086446213595136", - "expectedQty": "1382393839086573122138", - "swapFee": "833101851867728157", + "inputQty": "605992742661088477184", + "expectedQty": "578766283149727783041", + "swapFee": "363595645596653086", "reserves": [ - "4629214300510629567839954", - "10263339372442069896501606", - "5116026172346338396695735" + "20547565496164530005603470", + "91940385542025622002253638", + "127252336736614217815560039" ], - "mAssetSupply": "19996452331044670117325873" + "mAssetSupply": "239007673183967181993921295" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "8094929841515997954048", - "expectedQty": "8059219577740304847218", - "swapFee": "4856957904909598772", + "inputQty": "66389186417608512", + "expectedQty": "63406329018051091", + "swapFee": "39833511850565", "reserves": [ - "4621155080932889262992736", - "10263339372442069896501606", - "5116026172346338396695735" + "20547565432758200987552379", + "91940385542025622002253638", + "127252336736614217815560039" ], - "mAssetSupply": "19988362258161059028970597" + "mAssetSupply": "239007673117617829088163348" }, { "type": "mintMulti", "inputQtys": [ - "511714135324754640896", - "1756725139914169778176", - "1672650599959820763136" + "5155886874094093729792", + "4979879199620037869568", + "766571044693421588480" ], - "expectedQty": "3939877981345786621866", + "expectedQty": "11108001585802345851214", "reserves": [ - "4621666795068214017633632", - "10265096097581984066279782", - "5117698822946298217458871" + "20552721319632295081282171", + "91945365421225242040123206", + "127253103307658911237148519" ], - "mAssetSupply": "19992302136142404815592463" + "mAssetSupply": "239018781119203631434014562" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3122707143627501444530176", - "expectedQty": "3130461333317285834468225", - "swapFee": "1873624286176500866718", + "type": "redeemBassets", + "inputQtys": [ + "1412643686245250306670592", + "726588189041757786210304", + "278663968423111718600704" + ], + "expectedQty": "2481185749434836528940378", + "swapFee": "1489605212788575062401", "reserves": [ - "4621666795068214017633632", - "7134634764264698231811557", - "5117698822946298217458871" + "19140077633387044774611579", + "91218777232183484253912902", + "126974439339235799518547815" ], - "mAssetSupply": "16871468616801079871929005" + "mAssetSupply": "236537595369768794905074184" }, { "type": "redeemMasset", - "inputQty": "278155086410087672053760", + "inputQty": "9543176670737", "expectedQtys": [ - "76173242169506040958308", - "117591398468891594188165", - "84348727218256898992097" + "771980221235", + "3679143479845", + "5121283082023" ], - "redemptionFee": "83446525923026301616", + "redemptionFee": "2862953001", "reserves": [ - "4545493552898707976675324", - "7017043365795806637623392", - "5033350095728041318466774" + "19140077633386272794390344", + "91218777232179805110433057", + "126974439339230678235465792" ], - "mAssetSupply": "16593396976916915226176861" + "mAssetSupply": "236537595369759254591356448" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "138939518989627780235264", - "expectedQty": "139026274306390636745134", + "type": "redeemMasset", + "inputQty": "36983869520034094959820", + "expectedQtys": [ + "2991751778190329690600", + "14258246189800808098093", + "19847150672745503705021" + ], + "redemptionFee": "11095160856010228487", "reserves": [ - "4545493552898707976675324", - "7017043365795806637623392", - "5172289614717669098702038" - ] + "19137085881608082464699744", + "91204518985990004302334964", + "126954592188557932731760771" + ], + "mAssetSupply": "236500622595400076506625115" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "208061533676269174784", - "expectedQty": "207661104072782567184", + "inputQty": "383787831625827299098624", + "expectedQty": "385762228675754911607469", + "swapFee": "230272698975496379459", "reserves": [ - "4545493552898707976675324", - "7017251427329482906798176", - "5172289614717669098702038" - ] - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "5903681829135909388288", - "expectedQty": "5896944398863468087062", - "swapFee": "3542209097481545632", - "reserves": [ - "4545493552898707976675324", - "7017251427329482906798176", - "5166392670318805630614976" - ], - "mAssetSupply": "16726730772707340217646523" - }, - { - "type": "mintMulti", - "inputQtys": [ - "292506689826341768921088", - "297655506341376737411072", - "222776460097723348025344" - ], - "expectedQty": "813012993426418529667190", - "reserves": [ - "4838000242725049745596412", - "7314906933670859644209248", - "5389169130416528978640320" - ], - "mAssetSupply": "17539743766133758747313713" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "31173313736418800", - "2505002658599088", - "83633008923935264" - ], - "expectedQty": "117409200465877838", - "swapFee": "70487812967307", - "reserves": [ - "4838000211551736009177612", - "7314906931165856985610160", - "5389169046783520054705056" - ], - "mAssetSupply": "17539743648724558281435875" - }, - { - "type": "redeemMasset", - "inputQty": "190793423507277004", - "expectedQtys": [ - "52610900374875260", - "79546056837318108", - "58604593515044594" - ], - "redemptionFee": "57238027052183", - "reserves": [ - "4838000158940835634302352", - "7314906851619800148292052", - "5389168988178926539660462" - ], - "mAssetSupply": "17539743457988372801211054" + "19137085881608082464699744", + "90818756757314249390727495", + "126954592188557932731760771" + ], + "mAssetSupply": "236117065036473224703905950" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "1944128800000415851610112", - "outputIndex": 1, - "expectedQty": "1944401022949055055850227", - "swapFee": "1167071999164112806537", + "inputIndex": 1, + "inputQty": "21152836977587376", + "outputIndex": 0, + "expectedQty": "19965504866185305", + "swapFee": "12619460220739", "reserves": [ - "6782128958941251485912464", - "5370505828670745092441825", - "5389168988178926539660462" + "19137085861642577598514439", + "90818756778467086368314871", + "126954592188557932731760771" ], - "mAssetSupply": "17540910529987536914017591", + "mAssetSupply": "236117065036485844164126689", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "39569948875611791425536", - "expectedQty": "39517798158268754381477", - "swapFee": "23741969325367074855", - "reserves": [ - "6782128958941251485912464", - "5330988030512476338060348", - "5389168988178926539660462" - ], - "mAssetSupply": "17501364323081250489666910" + "inputQty": "79612542616676466864160768", + "hardLimitError": true }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1729315072275292094464", - "expectedQty": "1726994532369377679057", - "swapFee": "1037589043365175256", - "reserves": [ - "6782128958941251485912464", - "5329261035980106960381291", - "5389168988178926539660462" + "type": "redeemMasset", + "inputQty": "413958583563160807014", + "expectedQtys": [ + "33540923301335037542", + "159174964122134573268", + "222509020972914293700" ], - "mAssetSupply": "17499636045598018562747702" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "41612799691485986816", - "expectedQty": "41639060657891671960", - "swapFee": "24967679814891592", + "redemptionFee": "124187575068948242", "reserves": [ - "6782087319880593594240504", - "5329261035980106960381291", - "5389168988178926539660462" + "19137052320719276263476897", + "90818597603502964233741603", + "126954369679536959817467071" ], - "mAssetSupply": "17499594457766006891652478" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "10637499324804719815163904", - "outputIndex": 2, - "hardLimitError": true + "mAssetSupply": "236116651202089856072267917" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "22257205270709094318080", - "outputIndex": 0, - "expectedQty": "22287105587323414346728", - "swapFee": "13364083683661679002", - "reserves": [ - "6759800214293270179893776", - "5351518241250816054699371", - "5389168988178926539660462" + "type": "redeemBassets", + "inputQtys": [ + "38046377385835550998528", + "157452281814631739031552", + "101274958082750178918400" ], - "mAssetSupply": "17499607821849690553331480", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "649407180015115882725376", - "outputIndex": 2, - "expectedQty": "647189933961586012640077", - "swapFee": "389083342349058766953", + "expectedQty": "296860912144693776795040", + "swapFee": "178223481375641651067", "reserves": [ - "7409207394308386062619152", - "5351518241250816054699371", - "4741979054217340527020385" + "19099005943333440712478369", + "90661145321688332494710051", + "126853094721454209638548671" ], - "mAssetSupply": "17499996905192039612098433", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "235819790289945162295472877" }, { "type": "redeemMasset", - "inputQty": "3342283925090307198156", + "inputQty": "590305693887062815539", "expectedQtys": [ - "1414642859844208376792", - "1021767466669512941638", - "905387911766712254270" - ], - "redemptionFee": "1002685177527092159", - "reserves": [ - "7407792751448541854242360", - "5350496473784146541757733", - "4741073666305573814766115" + "47794418214383293763", + "226875509026805167902", + "317444262748251635156" ], - "mAssetSupply": "17496655623952126831992436" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "4963570519173841033363456", - "outputIndex": 2, - "hardLimitError": true - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "104250687031708915597312", - "expectedQty": "104115778124662355364085", - "swapFee": "62550412219025349358", + "redemptionFee": "177091708166118844", "reserves": [ - "7407792751448541854242360", - "5246380695659484186393648", - "4741073666305573814766115" + "19098958148915226329184606", + "90660918446179305689542149", + "126852777277191461386913515" ], - "mAssetSupply": "17392467487332636941744482" + "mAssetSupply": "235819200161342983398776182" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "29231274848572294561792", - "expectedQty": "29160917986223099997347", - "swapFee": "17538764909143376737", - "reserves": [ - "7407792751448541854242360", - "5246380695659484186393648", - "4711912748319350714768768" + "type": "mintMulti", + "inputQtys": [ + "1781231828399925672017920", + "1525129196696735492079616", + "166485910532253456269312" ], - "mAssetSupply": "17363253751248973790559427" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "5245998798399087711354880", - "expectedQty": "5242206481364809558069864", - "reserves": [ - "7407792751448541854242360", - "5246380695659484186393648", - "9957911546718438426123648" - ] - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "250722587260250976", - "outputIndex": 0, - "expectedQty": "249976415225203016", - "swapFee": "150055874081940", + "expectedQty": "3549762258556575495583004", "reserves": [ - "7407792501472126629039344", - "5246380695659484186393648", - "9957911797441025686374624" + "20880189977315152001202526", + "92186047642876041181621765", + "127019263187723714843182827" ], - "mAssetSupply": "22605460232763839222711231", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "239368962419899558894359186" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1446209611947401969401856", - "1030120406313229122273280", - "614461453308110382825472" + "303958155045456729604096", + "220747430680358291505152", + "162332597657228246253568" ], - "expectedQty": "3093462429123324956597848", - "swapFee": "1857191772537517484449", + "expectedQty": "697894115311044776029519", "reserves": [ - "5961582889524724659637488", - "4216260289346255064120368", - "9343450344132915303549152" + "21184148132360608730806622", + "92406795073556399473126917", + "127181595785380943089436395" ], - "mAssetSupply": "19511997803640514266113383" + "mAssetSupply": "240066856535210603670388705" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "5418042696656833478656", - "expectedQty": "5399566541231053781176", + "inputIndex": 0, + "inputQty": "30949026879317564", + "expectedQty": "32305177325043202", "reserves": [ - "5961582889524724659637488", - "4216260289346255064120368", - "9348868386829572137027808" + "21184148163309635610124186", + "92406795073556399473126917", + "127181595785380943089436395" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "28739037058119403307008", - "expectedQty": "28640710299809214259332", + "type": "mintMulti", + "inputQtys": [ + "2191240187335429058461696", + "1325130727305486484373504", + "1612131151401602246508544" + ], + "expectedQty": "5196238023300338513485014", "reserves": [ - "5961582889524724659637488", - "4216260289346255064120368", - "9377607423887691540334816" - ] + "23375388350645064668585882", + "93731925800861885957500421", + "128793726936782545335944939" + ], + "mAssetSupply": "245263094590816119508916921" }, { "type": "swap", "inputIndex": 0, - "inputQty": "15912835714833591566336", + "inputQty": "44035957582877993992192", "outputIndex": 2, - "expectedQty": "15964431724471288489937", - "swapFee": "9551643157259816261", + "expectedQty": "46017980933459917188561", + "swapFee": "27397500954368704003", "reserves": [ - "5977495725239558251203824", - "4216260289346255064120368", - "9361642992163220251844879" + "23419424308227942662578074", + "93731925800861885957500421", + "128747708955849085418756378" ], - "mAssetSupply": "19546047632124711793970152", + "mAssetSupply": "245263121988317073877620924", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1312895222920114339840", - "expectedQty": "1308413115327115839088", + "type": "mintMulti", + "inputQtys": [ + "1914865550161940070793216", + "1205361263995599271755776", + "2941502123081955532603392" + ], + "expectedQty": "6099197142781692222909801", "reserves": [ - "5977495725239558251203824", - "4216260289346255064120368", - "9362955887386140366184719" - ] + "25334289858389882733371290", + "94937287064857485229256197", + "131689211078931040951359770" + ], + "mAssetSupply": "251362319131098766100530725" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "38041933215196577792", - "43935902526048763904", - "35896251009242992640" + "39640026827800444928000", + "83940924348642015313920", + "170423887043824365600768" ], - "expectedQty": "117977533668247959349", - "swapFee": "70829017611515685", + "expectedQty": "293615093961590447556792", "reserves": [ - "5977457683306343054626032", - "4216216353443729015356464", - "9362919991135131123192079" + "25373929885217683178299290", + "95021227989206127244570117", + "131859634965974865316960538" ], - "mAssetSupply": "19547238067706370661849891" + "mAssetSupply": "251655934225060356548087517" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 1, + "inputQty": "126393035721336395137024", + "expectedQty": "126838917387963896209974", + "swapFee": "75835821432801837082", + "reserves": [ + "25373929885217683178299290", + "94894389071818163348360143", + "131859634965974865316960538" + ], + "mAssetSupply": "251529617025160452954787575" + }, + { + "type": "redeemBassets", "inputQtys": [ - "52540151757604962304", - "179372119354980794368", - "136753625980771221504" + "107673513068242075648", + "2498169494725083004928", + "1211288414540872548352" ], - "expectedQty": "369080850523033310493", + "expectedQty": "3800856049954022640508", + "swapFee": "2281882759628190498", "reserves": [ - "5977510223458100659588336", - "4216395725563083996150832", - "9363056744761111894413583" + "25373822211704614936223642", + "94891890902323438265355215", + "131858423677560324444412186" ], - "mAssetSupply": "19547607148556893695160384" + "mAssetSupply": "251525816169110498932147067" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3435154477113481006940160", - "expectedQty": "3418539695862410350414160", - "swapFee": "2061092686268088604164", + "inputQty": "10581353379334152192", + "expectedQty": "10240309535664718919", + "swapFee": "6348812027600491", "reserves": [ - "2558970527595690309174176", - "4216395725563083996150832", - "9363056744761111894413583" + "25373811971395079271504723", + "94891890902323438265355215", + "131858423677560324444412186" ], - "mAssetSupply": "16114513764129680776824388" + "mAssetSupply": "251525805594105931625595366" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "93001376467468", - "840958550645088", - "241203443890433" + "250143881219708041560064", + "205630263711794424971264", + "192318229292907780636672" ], - "expectedQty": "1176340532367936", - "swapFee": "706228056254", + "expectedQty": "653855179248330377737380", "reserves": [ - "2558970527502688932706708", - "4216395724722125445505744", - "9363056744519908450523150" + "25623955852614787313064787", + "95097521166035232690326479", + "132050741906853232225048858" ], - "mAssetSupply": "16114513762953340244456452" + "mAssetSupply": "252179660773354262003332746" }, { "type": "redeemMasset", - "inputQty": "76265462422024395056742", + "inputQty": "223193086216588046106624", "expectedQtys": [ - "12107254686869690986935", - "19949028857967430854267", - "44299420972286447838673" + "22671828661173529813325", + "84141368271935349946316", + "116837221087684599639179" ], - "redemptionFee": "22879638726607318517", + "redemptionFee": "66957925864976413831", "reserves": [ - "2546863272815819241719773", - "4196446695864158014651477", - "9318757323547622002684477" + "25601284023953613783251462", + "95013379797763297340380163", + "131933904685765547625409679" ], - "mAssetSupply": "16038271180170042456718227" + "mAssetSupply": "251956534645063538933639953" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "17782470902356273396711424", + "outputIndex": 0, + "hardLimitError": true }, { "type": "redeemMasset", - "inputQty": "268854945108710161540710", + "inputQty": "201310002045991219", "expectedQtys": [ - "42681119223313052043408", - "70325346339630078392590", - "156166605637891492686078" + "20448957230414412", + "75891683322746719", + "105381853958438771" ], - "redemptionFee": "80656483532613048462", + "redemptionFee": "60393000613797", "reserves": [ - "2504182153592506189676365", - "4126121349524527936258887", - "9162590717909730509998399" + "25601284003504656552837050", + "95013379721871614017633444", + "131933904580383693666970908" ], - "mAssetSupply": "15769496891544864908225979" + "mAssetSupply": "251956534443813929888262531" }, { "type": "redeemBassets", "inputQtys": [ - "847272619888325", - "97927373818426624", - "212047361724904864" + "2237620780517692018786304", + "16148570263204690606948352", + "19779449034494583257432064" ], - "expectedQty": "309577791719927476", - "swapFee": "185858189945924", + "expectedQty": "38022178031849169986868530", + "swapFee": "22827003020922055225256", "reserves": [ - "2504182152745233569788040", - "4126121251597154117832263", - "9162590505862368785093535" + "23363663222986964534050746", + "78864809458666923410685092", + "112154455545889110409538844" ], - "mAssetSupply": "15769496581967073188298503" + "mAssetSupply": "213934356411964759901394001" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "190812112053754488946688", - "expectedQty": "189487802819330244780296", + "inputIndex": 0, + "inputQty": "809236884713613819904", + "expectedQty": "831454013226169029398", "reserves": [ - "2504182152745233569788040", - "4126121251597154117832263", - "9353402617916123274040223" + "23364472459871678147870650", + "78864809458666923410685092", + "112154455545889110409538844" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "12791337809796847894528", - "56113556469454299201536", - "49325247196271095054336" + "9073368116686517532884992", + "10143818581037617581654016", + "4031216768593826854993920" ], - "expectedQty": "118170901210144804379706", - "swapFee": "70945107790761339431", + "expectedQty": "23383370472751125270902684", "reserves": [ - "2491390814935436721893512", - "4070007695127699818630727", - "9304077370719852178985887" + "32437840576558195680755642", + "89008628039704540992339108", + "116185672314482937264532764" ], - "mAssetSupply": "15840813483576258628699093" + "mAssetSupply": "237318558338729111341326083" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "1200371397690996293632", - "expectedQty": "1208201743541034387500", - "swapFee": "720222838614597776", + "inputIndex": 1, + "inputQty": "159034994641031596605440", + "expectedQty": "159361356714704377031948", + "swapFee": "95420996784618957963", "reserves": [ - "2491390814935436721893512", - "4070007695127699818630727", - "9302869168976311144598387" + "32437840576558195680755642", + "88849266682989836615307160", + "116185672314482937264532764" ], - "mAssetSupply": "15839613832401406247003237" + "mAssetSupply": "237159618765084864363678606" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "121603501128308429422592", - "expectedQty": "121232027360046131587790", - "swapFee": "72962100676985057653", + "type": "mintMulti", + "inputQtys": [ + "1702695258905895763968", + "15169004824130263973888", + "2587045035505399889920" + ], + "expectedQty": "19432754464490914932204", "reserves": [ - "2491390814935436721893512", - "3948775667767653687042937", - "9302869168976311144598387" + "32439543271817101576519610", + "88864435687813966879281048", + "116188259359518442664422684" ], - "mAssetSupply": "15718083293373774802638298" + "mAssetSupply": "237179051519549355278610810" }, { "type": "mint", "inputIndex": 0, - "inputQty": "154949293648929743699968", - "expectedQty": "156786120207749520872336", + "inputQty": "5732068661897719541923840", + "expectedQty": "5810204878356471770593111", "reserves": [ - "2646340108584366465593480", - "3948775667767653687042937", - "9302869168976311144598387" + "38171611933714821118443450", + "88864435687813966879281048", + "116188259359518442664422684" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "114937870572312380571648", - "expectedQty": "116152211221470810668732", - "reserves": [ - "2761277979156678846165128", - "3948775667767653687042937", - "9302869168976311144598387" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1580024902340112547840", - "expectedQty": "1574439537906103369662", - "swapFee": "948014941404067528", - "reserves": [ - "2761277979156678846165128", - "3947201228229747583673275", - "9302869168976311144598387" - ], - "mAssetSupply": "15989442547915596425699054" - }, - { - "type": "redeem", "inputIndex": 1, - "inputQty": "734086628044465774788608", - "expectedQty": "730486709576312811105434", - "swapFee": "440451976826679464873", + "inputQty": "23569322536896382894080", + "expectedQty": "23523613238136089853993", "reserves": [ - "2761277979156678846165128", - "3216714518653434772567841", - "9302869168976311144598387" - ], - "mAssetSupply": "15255796371847957330375319" + "38171611933714821118443450", + "88888005010350863262175128", + "116188259359518442664422684" + ] }, { "type": "redeemBassets", "inputQtys": [ - "132564238362937514786816", - "471555012362947495198720", - "415196388606410613587968" - ], - "expectedQty": "1020578618129310067258180", - "swapFee": "612714799757440504657", - "reserves": [ - "2628713740793741331378312", - "2745159506290487277369121", - "8887672780369900531010419" - ], - "mAssetSupply": "14235217753718647263117139" - }, - { - "type": "mintMulti", - "inputQtys": [ - "17874299603693006", - "6818982472059892", - "10289372645346994" + "46762906955037672522907648", + "3050371895566893167149056", + "33356813904120878414692352" ], - "expectedQty": "35117977324763119", - "reserves": [ - "2628713758668040935071318", - "2745159513109469749429013", - "8887672790659273176357413" - ], - "mAssetSupply": "14235217788836624587880258" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "684747418057660331720704", - "expectedQty": "676528486321371012286286", - "swapFee": "410848450834596199032", - "reserves": [ - "2628713758668040935071318", - "2068631026788098737142727", - "8887672790659273176357413" - ], - "mAssetSupply": "13550881219229798852358586" + "insufficientLiquidityError": true }, { "type": "redeemMasset", - "inputQty": "176986574845615430801817", + "inputQty": "13307745515419020", "expectedQtys": [ - "34323042373277999437842", - "27010057733749520355659", - "116046096227760001414984" + "2089707809089968", + "4866180619438187", + "6360735127711632" ], - "redemptionFee": "53095972453684629240", + "redemptionFee": "3992323654625", "reserves": [ - "2594390716294762935633476", - "2041620969054349216787068", - "8771626694431513174942429" + "38171611931625113309353482", + "88888005005484682642736941", + "116188259353157707536711052" ], - "mAssetSupply": "13373947740356637106186009" + "mAssetSupply": "243012779997840209947293519" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "399117728110874638417920", - "expectedQty": "390985028820326034804472", - "swapFee": "239470636866524783050", + "inputQty": "5207609005714306393702400", + "outputIndex": 0, + "expectedQty": "5121586290712868710962486", + "swapFee": "3117889272246772494555", "reserves": [ - "2594390716294762935633476", - "1650635940234023181982596", - "8771626694431513174942429" + "33050025640912244598390996", + "94095614011198989036439341", + "116188259353157707536711052" ], - "mAssetSupply": "12975069482882628992551139" + "mAssetSupply": "243015897887112456719788074", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "59293314576997828421222", + "inputQty": "56281606415260871714406", "expectedQtys": [ - "11852258369199836349751", - "7540793109636611814122", - "40072447549091801987261" + "7651970586053486174538", + "21785667536639862516049", + "26900709629542562822557" ], - "redemptionFee": "17787994373099348526", + "redemptionFee": "16884481924578261514", "reserves": [ - "2582538457925563099283725", - "1643095147124386570168474", - "8731554246882421372955168" + "33042373670326191112216458", + "94073828343662349173923292", + "116161358643528164973888495" ], - "mAssetSupply": "12915793956300004263478443" + "mAssetSupply": "242959633165179120426335182" }, { - "type": "mintMulti", - "inputQtys": [ - "833292494337536585367552", - "321317851300018476023808", - "1528244916707818989420544" - ], - "expectedQty": "2679178321631428870459843", + "type": "mint", + "inputIndex": 2, + "inputQty": "749047766845662561304576", + "expectedQty": "745318828830244175168137", "reserves": [ - "3415830952263099684651277", - "1964412998424405046192282", - "10259799163590240362375712" - ], - "mAssetSupply": "15594972277931433133938286" + "33042373670326191112216458", + "94073828343662349173923292", + "116910406410373827535193071" + ] }, { "type": "mintMulti", "inputQtys": [ - "30349652475477644804096", - "3943099881373984882688", - "55929277804567867686912" + "148121450785075013615616", + "169150990338880404717568", + "235664649061711675916288" ], - "expectedQty": "89877552436644453143883", + "expectedQty": "553681403161125012405676", "reserves": [ - "3446180604738577329455373", - "1968356098305779031074970", - "10315728441394808230062624" + "33190495121111266125832074", + "94242979334001229578640860", + "117146071059435539211109359" ], - "mAssetSupply": "15684849830368077587082169" + "mAssetSupply": "244258633397170489613908995" }, { "type": "redeemBassets", "inputQtys": [ - "6867712825247198609408", - "1736762684727023894528", - "17469410680263822802944" + "1964701447054630525599744", + "1414420314490734855061504", + "1908518730882878797774848" ], - "expectedQty": "25963395837263402594203", - "swapFee": "15587389936319833456", + "expectedQty": "5307090286766398803778457", + "swapFee": "3186165871582788955640", "reserves": [ - "3439312891913330130845965", - "1966619335621052007180442", - "10298259030714544407259680" + "31225793674056635600232330", + "92828559019510494723579356", + "115237552328552660413334511" ], - "mAssetSupply": "15658886434530814184487966" + "mAssetSupply": "238951543110404090810130538" }, { - "type": "redeemBassets", - "inputQtys": [ - "2005688343635898112", - "34436429218833564", - "865222577676753536" + "type": "redeemMasset", + "inputQty": "3431025140187827431014", + "expectedQtys": [ + "448226200086035582262", + "1332494305928462576605", + "1654161003131117915193" ], - "expectedQty": "2908256677956026921", - "swapFee": "1746001607738259", + "redemptionFee": "1029307542056348229", "reserves": [ - "3439310886224986494947853", - "1966619301184622788346878", - "10298258165491966730506144" + "31225345447856549564650068", + "92827226525204566261002751", + "115235898167549529295419318" ], - "mAssetSupply": "15658883526274136228461045" + "mAssetSupply": "238948113114571445039047753" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "74404993834545305354240", - "expectedQty": "73915021129882810372782", - "swapFee": "44642996300727183212", + "type": "mintMulti", + "inputQtys": [ + "3324438335739001026117632", + "1350158780838985685008384", + "1736656777422262197288960" + ], + "expectedQty": "6452969998255874713816744", "reserves": [ - "3365395865095103684575071", - "1966619301184622788346878", - "10298258165491966730506144" + "34549783783595550590767700", + "94177385306043551946011135", + "116972554944971791492708278" ], - "mAssetSupply": "15584523175435891650290017" + "mAssetSupply": "245401083112827319752864497" }, { "type": "mint", "inputIndex": 1, - "inputQty": "5558592551754578944", - "expectedQty": "5695912571355707952", + "inputQty": "827381500281764846764032", + "expectedQty": "825075693080431158981346", "reserves": [ - "3365395865095103684575071", - "1966624859777174542925822", - "10298258165491966730506144" + "34549783783595550590767700", + "95004766806325316792775167", + "116972554944971791492708278" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "26599267344005875105792", - "13991950772787036028928", - "39049959935518240145408" - ], - "expectedQty": "79716830113948808063451", - "swapFee": "47858813356383114706", - "reserves": [ - "3338796597751097809469279", - "1952632909004387506896894", - "10259208205556448490360736" - ], - "mAssetSupply": "15504812041234514197934518" - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "154168949070397739892736", - "39972173485864975859712", - "186340656845994443407360" + "273598699543991058169856", + "170281232036158509154304", + "194265531263344384671744" ], - "expectedQty": "380384251146685263982215", - "swapFee": "228367571230749608154", + "expectedQty": "640851638645158021297059", "reserves": [ - "3184627648680700069576543", - "1912660735518522531037182", - "10072867548710454046953376" + "34823382483139541648937556", + "95175048038361475301929471", + "117166820476235135877380022" ], - "mAssetSupply": "15124427790087828933952303" + "mAssetSupply": "246867010444552908933142902" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "6185376649753795789586432", - "outputIndex": 0, - "hardLimitError": true - }, - { - "type": "redeemMasset", - "inputQty": "1099227700399926", - "expectedQtys": [ - "231385992659158", - "138968492310706", - "731865923995273" - ], - "redemptionFee": "329768310119", - "reserves": [ - "3184627648449314076917385", - "1912660735379554038726476", - "10072867547978588122958103" - ], - "mAssetSupply": "15124427788988931001862496" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "83944778146489", - "77544963846111", - "5237051930864" - ], - "expectedQty": "169186450555499", - "swapFee": "101572814021", + "inputIndex": 1, + "inputQty": "17405441224458874388480", + "outputIndex": 2, + "expectedQty": "17428444638870858110345", + "swapFee": "10414117601099988295", "reserves": [ - "3184627648365369298770896", - "1912660735302009074880365", - "10072867547973351071027239" + "34823382483139541648937556", + "95192453479585934176317951", + "117149392031596265019269677" ], - "mAssetSupply": "15124427788819744551306997" + "mAssetSupply": "246867020858670510033131197", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "206103232040387156639744", - "expectedQty": "210716398321316852833211", + "inputIndex": 0, + "inputQty": "642238484460827114995712", + "expectedQty": "651625470039993850712923", "reserves": [ - "3184627648365369298770896", - "2118763967342396231520109", - "10072867547973351071027239" + "35465620967600368763933268", + "95192453479585934176317951", + "117149392031596265019269677" ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "62639455936348184576", - "expectedQty": "63269106994495664202", - "swapFee": "37583673561808910", + "inputIndex": 0, + "inputQty": "76914291093259507728384", + "expectedQty": "75778853280113920750643", + "swapFee": "46148574655955704637", "reserves": [ - "3184627648365369298770896", - "2118763967342396231520109", - "10072804278866356575363037" + "35389842114320254843182625", + "95192453479585934176317951", + "117149392031596265019269677" ], - "mAssetSupply": "15335081585268798617764542" + "mAssetSupply": "247441778186191900331820373" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3169319834712187338752", - "expectedQty": "3105003768977479394124", - "swapFee": "1901591900827312403", - "reserves": [ - "3184627648365369298770896", - "2115658963573418752125985", - "10072804278866356575363037" - ], - "mAssetSupply": "15331914167025987257738193" - }, - { - "type": "mintMulti", - "inputQtys": [ - "472719408324707425976320", - "1457707813876788847706112", - "1061637954204897913077760" - ], - "expectedQty": "3004255611204908444004307", + "inputQty": "21044745185620022855204864", + "expectedQty": "21071207891272103198777792", + "swapFee": "12626847111372013713122", "reserves": [ - "3657347056690076724747216", - "3573366777450207599832097", - "11134442233071254488440797" + "35389842114320254843182625", + "74121245588313830977540159", + "117149392031596265019269677" ], - "mAssetSupply": "18336169778230895701742500" + "mAssetSupply": "226409659847683249490328631" }, { - "type": "redeemMasset", - "inputQty": "125235438217579567513", - "expectedQtys": [ - "24972066579770034341", - "24398656101612231159", - "76025060915191303793" - ], - "redemptionFee": "37570631465273870", + "type": "mint", + "inputIndex": 2, + "inputQty": "1702490135351574272", + "expectedQty": "1693656189020398212", "reserves": [ - "3657322084623496954712875", - "3573342378794105987600938", - "11134366208010339297137004" - ], - "mAssetSupply": "18336044580363309587448857" + "35389842114320254843182625", + "74121245588313830977540159", + "117149393734086400370843949" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "70561428023721276211200", - "expectedQty": "69973749203812239026598", - "swapFee": "42336856814232765726", + "inputQty": "21688064275221837791625216", + "expectedQty": "21663446470970162072228951", + "swapFee": "13012838565133102674975", "reserves": [ - "3657322084623496954712875", - "3503368629590293748574340", - "11134366208010339297137004" + "35389842114320254843182625", + "52457799117343668905311208", + "117149393734086400370843949" ], - "mAssetSupply": "18265525489196402544003383" + "mAssetSupply": "204734610104682733821776602" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "304976679816525119488", - "expectedQty": "307414140564391003311", + "inputQty": "7026481749779281568858112", + "outputIndex": 2, + "expectedQty": "7073283979823859527949551", + "swapFee": "4222862669925585295699", "reserves": [ - "3657322084623496954712875", - "3503673606270110273693828", - "11134366208010339297137004" - ] + "35389842114320254843182625", + "59484280867122950474169320", + "110076109754262540842894398" + ], + "mAssetSupply": "204738832967352659407072301", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "543305581233904", - "286757252089779", - "274224118752495" + "type": "redeemMasset", + "inputQty": "430035769367473", + "expectedQtys": [ + "74310926225004", + "124903976479612", + "231135749197780" ], - "expectedQty": "1108353797588211", + "redemptionFee": "129010730810", "reserves": [ - "3657322085166802535946779", - "3503673606556867525783607", - "11134366208284563415889499" + "35389842114245943916957621", + "59484280866998046497689708", + "110076109754031405093696618" ], - "mAssetSupply": "18265832904445320732594905" + "mAssetSupply": "204738832966922752648435638" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "5067181410053364121600", - "expectedQty": "5107600782380989626430", + "inputQty": "901056682184236466176", + "outputIndex": 0, + "expectedQty": "892648505420839203216", + "swapFee": "540981718796729419", "reserves": [ - "3657322085166802535946779", - "3508740787966920889905207", - "11134366208284563415889499" - ] + "35388949465740523077754405", + "59485181923680230734155884", + "110076109754031405093696618" + ], + "mAssetSupply": "204738833507904471445165057", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "2154986726423396142284", - "expectedQtys": [ - "431237576487695240557", - "413718244850008025197", - "1312861429093449678053" - ], - "redemptionFee": "646496017927018842", + "type": "redeem", + "inputIndex": 1, + "inputQty": "14929084908437193621504", + "expectedQty": "14910523302196245751581", + "swapFee": "8957450945062316172", "reserves": [ - "3656890847590314840706222", - "3508327069722070881880010", - "11133053346855469966211446" + "35388949465740523077754405", + "59470271400378034488404303", + "110076109754031405093696618" ], - "mAssetSupply": "18268786164997296253097893" + "mAssetSupply": "204723913380446979313859725" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "16163276944260198301696", - "expectedQty": "16276498287385541207717", + "inputIndex": 2, + "inputQty": "225918429994703053127680", + "expectedQty": "224716694138754719504273", "reserves": [ - "3673054124534575039007918", - "3508327069722070881880010", - "11133053346855469966211446" + "35388949465740523077754405", + "59470271400378034488404303", + "110302028184026108146824298" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1416070010762572884606976", - "662107099757440948764672", - "202789414297593645629440" - ], - "expectedQty": "2290847299407186188731665", + "type": "swap", + "inputIndex": 2, + "inputQty": "4920637060061213126295552", + "outputIndex": 0, + "expectedQty": "4832667246529616066990531", + "swapFee": "2936118597492612252713", "reserves": [ - "5089124135297147923614894", - "4170434169479511830644682", - "11335842761153063611840886" + "30556282219210907010763874", + "59470271400378034488404303", + "115222665244087321273119850" ], - "mAssetSupply": "20575909962691867983037275" + "mAssetSupply": "204951566193183226645616711", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "82709566430393", - "expectedQty": "82271469322718", + "inputQty": "13746922143410613649408", + "expectedQty": "13657201536780086016409", "reserves": [ - "5089124135297147923614894", - "4170434169479511830644682", - "11335842761235773178271279" + "30556282219210907010763874", + "59470271400378034488404303", + "115236412166230731886769258" ] }, { - "type": "redeemMasset", - "inputQty": "566537791135642521", - "expectedQtys": [ - "140082076432929618", - "114794424847217723", - "312027836204153250" - ], - "redemptionFee": "169961337340692", + "type": "swap", + "inputIndex": 2, + "inputQty": "6353790845989563913994240", + "outputIndex": 1, + "expectedQty": "6297922997732626663528141", + "swapFee": "3786392037644781361254", "reserves": [ - "5089123995215071490685276", - "4170434054685086983426959", - "11335842449207936974118029" + "30556282219210907010763874", + "53172348402645407824876162", + "121590203012220295800763498" ], - "mAssetSupply": "20575909396406309654058164" + "mAssetSupply": "204969009786757651512994374", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 1, - "inputQty": "2746680885327091466240", - "outputIndex": 0, - "expectedQty": "2753976996473383591100", - "swapFee": "1658186566439262887", + "inputIndex": 2, + "inputQty": "18576359760348561014784", + "outputIndex": 1, + "expectedQty": "18387614170855145506392", + "swapFee": "11062357734333938373", "reserves": [ - "5086370018218598107094176", - "4173180735570414074893199", - "11335842449207936974118029" + "30556282219210907010763874", + "53153960788474552679369770", + "121608779371980644361778282" ], - "mAssetSupply": "20575911054592876093321051", + "mAssetSupply": "204969020849115385846932747", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "820253170228952054104064", - "712875810616501554118656", - "501671338297093821300736" + "type": "redeemMasset", + "inputQty": "5085610816722814422220", + "expectedQtys": [ + "757923024276927487662", + "1318439541305500533273", + "3016404063132043813554" ], - "expectedQty": "2038340082402764252106759", + "redemptionFee": "1525683245016844326", "reserves": [ - "5906623188447550161198240", - "4886056546186915629011855", - "11837513787505030795418765" + "30555524296186630083276212", + "53152642348933247178836497", + "121605762967917512317964728" ], - "mAssetSupply": "22614251136995640345427810" + "mAssetSupply": "204963936763981908049354853" }, { "type": "swap", "inputIndex": 0, - "inputQty": "234385764832163435380736", - "outputIndex": 2, - "expectedQty": "235710303537104396754675", - "swapFee": "140908807801337541193", + "inputQty": "1699951928765677830144", + "outputIndex": 1, + "expectedQty": "1720291838289948335134", + "swapFee": "1034964700112054061", "reserves": [ - "6141008953279713596578976", - "4886056546186915629011855", - "11601803483967926398664090" + "30557224248115395761106356", + "53150922057094957230501363", + "121605762967917512317964728" ], - "mAssetSupply": "22614392045803441682969003", + "mAssetSupply": "204963937798946608161408914", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "380703105457619059343360", - "expectedQty": "379066408487652758646160", + "inputIndex": 0, + "inputQty": "276817887894791421952", + "expectedQty": "280886773503587443300", "reserves": [ - "6141008953279713596578976", - "4886056546186915629011855", - "11982506589425545458007450" + "30557501066003290552528308", + "53150922057094957230501363", + "121605762967917512317964728" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3098870529184239104", - "expectedQty": "3114909580670080997", + "inputIndex": 0, + "inputQty": "19852019258387275658035200", + "expectedQty": "20017937125582382406472825", "reserves": [ - "6141008953279713596578976", - "4886059645057444813250959", - "11982506589425545458007450" + "50409520324390566210563508", + "53150922057094957230501363", + "121605762967917512317964728" ] }, { - "type": "redeemMasset", - "inputQty": "7221663177922792", - "expectedQtys": [ - "1928156559215522", - "1534127050621588", - "3762272429826846" + "type": "redeemBassets", + "inputQtys": [ + "592521971604399652339712", + "522356525673365972713472", + "425867172880128109707264" ], - "redemptionFee": "2166498953376", + "expectedQty": "1543155734855065041391420", + "swapFee": "926449310499338628011", "reserves": [ - "6141008951351557037363454", - "4886059643523317762629371", - "11982506585663273028180604" + "49816998352786166558223796", + "52628565531421591257787891", + "121179895795037384208257464" ], - "mAssetSupply": "22993461561981178432726744" + "mAssetSupply": "223439000076447429113933619" }, { - "type": "redeemMasset", - "inputQty": "5980941917458468044", - "expectedQtys": [ - "1596888708918114211", - "1270555626551500770", - "3115893434249321078" - ], - "redemptionFee": "1794282575237540", + "type": "redeem", + "inputIndex": 1, + "inputQty": "64614603338195297894400", + "expectedQty": "64342282058420857317223", + "swapFee": "38768762002917178736", "reserves": [ - "6141007354462848119249243", - "4886058372967691211128601", - "11982503469769838778859526" + "49816998352786166558223796", + "52564223249363170400470668", + "121179895795037384208257464" ], - "mAssetSupply": "22993455582833543549496240" + "mAssetSupply": "223374424241871236733217955" }, { - "type": "mintMulti", - "inputQtys": [ - "13039260564271772", - "6997765481415004", - "13110904080333184" - ], - "expectedQty": "33150648741308435", + "type": "swap", + "inputIndex": 2, + "inputQty": "21272385454492367192064", + "outputIndex": 0, + "expectedQty": "21059892366440605009716", + "swapFee": "12700146566036443590", "reserves": [ - "6141007367502108683521015", - "4886058379965456692543605", - "11982503482880742859192710" + "49795938460419725953214080", + "52564223249363170400470668", + "121201168180491876575449528" ], - "mAssetSupply": "22993455615984192290804675" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "206418562804494421196800", - "expectedQty": "207429898019372890526947", - "reserves": [ - "6141007367502108683521015", - "5092476942769951113740405", - "11982503482880742859192710" - ] + "mAssetSupply": "223374436942017802769661545", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "298826379610281109094", - "expectedQtys": [ - "79072174602292168262", - "65571200599396500758", - "154287814827409060319" + "type": "mintMulti", + "inputQtys": [ + "2109206780790970515456", + "1555812884990039425024", + "1628430062125867335680" ], - "redemptionFee": "89647913883084332", + "expectedQty": "5300482374895538233419", "reserves": [ - "6140928295327506391352753", - "5092411371569351717239647", - "11982349195065915450132391" + "49798047667200516923729536", + "52565779062248160439895692", + "121202796610554002442785208" ], - "mAssetSupply": "23200586777271868783306860" + "mAssetSupply": "223379737424392698307894964" }, { "type": "mintMulti", "inputQtys": [ - "221646021082455375872", - "1953374297045629927424", - "1474618085018754088960" + "759046863962097076666368", + "296191681879648818429952", + "155555351551919590998016" ], - "expectedQty": "3652858274955109731801", + "expectedQty": "1214442772069243430745278", "reserves": [ - "6141149941348588846728625", - "5094364745866397347167071", - "11983823813150934204221351" + "50557094531162614000395904", + "52861970744127809258325644", + "121358351962105922033783224" ], - "mAssetSupply": "23204239635546823893038661" + "mAssetSupply": "224594180196461941738640242" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "951860702466969369051136", - "3004528310103500052758528", - "1739766228998810903773184" + "4586727870040", + "4742872304765", + "1638484448210" ], - "expectedQty": "5719047580587042614928536", - "swapFee": "3433488641537147857671", + "expectedQty": "10997090250637", "reserves": [ - "5189289238881619477677489", - "2089836435762897294408543", - "10244057584152123300448167" + "50557094531167200728265944", + "52861970744132552130630409", + "121358351962107560518231434" ], - "mAssetSupply": "17485192054959781278110125" + "mAssetSupply": "224594180196472938828890879" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4279261875198459117568", - "expectedQty": "4277796168208948509956", + "inputIndex": 2, + "inputQty": "1527918706993115430912", + "expectedQty": "1520447977024529852029", "reserves": [ - "5193568500756817936795057", - "2089836435762897294408543", - "10244057584152123300448167" + "50557094531167200728265944", + "52861970744132552130630409", + "121359879880814553633662346" ] }, { "type": "mintMulti", "inputQtys": [ - "495688396424291175890944", - "82112750081463524786176", - "110336135150516211548160" + "2133973954077406619762688", + "78670516157410288963944448", + "14131104457026266395049984" ], - "expectedQty": "688820853113361185346340", + "expectedQty": "94865130114473760556880782", "reserves": [ - "5689256897181109112686001", - "2171949185844360819194719", - "10354393719302639511996327" + "52691068485244607348028632", + "131532486901542841094574857", + "135490984337840820028712330" ], - "mAssetSupply": "18178290704241351411966421" + "mAssetSupply": "319460830758923723915623690" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "465312485721832427618304", - "outputIndex": 0, - "expectedQty": "461390892867763039261659", - "swapFee": "276904141500572747998", + "inputQty": "15271453596461674952392704", + "expectedQty": "15303368753524034046335336", + "swapFee": "9162872157877004971435", "reserves": [ - "5227866004313346073424342", - "2171949185844360819194719", - "10819706205024471939614631" + "52691068485244607348028632", + "131532486901542841094574857", + "120187615584316785982376994" ], - "mAssetSupply": "18178567608382851984714419", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "304198540034619925968202421" }, { - "type": "mintMulti", - "inputQtys": [ - "5172154078426675487440896", - "4014685008332744579612672", - "7094127032574059806195712" + "type": "redeem", + "inputIndex": 1, + "inputQty": "4742943250642384191488", + "expectedQty": "4754619866174794577160", + "swapFee": "2845765950385430514", + "reserves": [ + "52691068485244607348028632", + "131527732281676666299997697", + "120187615584316785982376994" ], - "expectedQty": "16291652449629501090915691", + "mAssetSupply": "304193799937135233969441447" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "41243570141857599459426304", + "expectedQty": "41300816533707373803709329", + "swapFee": "24746142085114559675655", "reserves": [ - "10400020082740021560865238", - "6186634194177105398807391", - "17913833237598531745810343" + "52691068485244607348028632", + "90226915747969292496288368", + "120187615584316785982376994" ], - "mAssetSupply": "34470220058012353075630110" + "mAssetSupply": "262974975937362749069690798" }, { - "type": "redeemMasset", - "inputQty": "331000763172411884018073", - "expectedQtys": [ - "99836376275761965141962", - "59389417941165419609619", - "171966225201648557245393" + "type": "mintMulti", + "inputQtys": [ + "39045944318224711680", + "57079071548573859840", + "85824659948559106048" ], - "redemptionFee": "99300228951723565205", + "expectedQty": "181870510992655699916", "reserves": [ - "10300183706464259595723276", - "6127244776235939979197772", - "17741867012396883188564950" + "52691107531188925572740312", + "90226972827040841070148208", + "120187701408976734541483042" ], - "mAssetSupply": "34139318595068892915177242" + "mAssetSupply": "262975157807873741725390714" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "398721335564906895769600", - "expectedQty": "400351968061472915669018", - "swapFee": "239232801338944137461", + "type": "mintMulti", + "inputQtys": [ + "7900530605703919241789440", + "4982931695444892755951616", + "9497230254730719992479744" + ], + "expectedQty": "22392064336917398112354540", "reserves": [ - "10300183706464259595723276", - "6127244776235939979197772", - "17341515044335410272895932" + "60591638136892844814529752", + "95209904522485733826099824", + "129684931663707454533962786" ], - "mAssetSupply": "33740836492305324963545103" + "mAssetSupply": "285367222144791139837745254" }, { "type": "redeemBassets", "inputQtys": [ - "14750814455396185407488", - "45042924627291608711168", - "25142128653032159707136" + "648676000971637280210944", + "1060162725859536203153408", + "15725116936595575712776192" ], - "expectedQty": "85190809138325061708774", - "swapFee": "51145172586546965204", + "expectedQty": "17395200996621931118262849", + "swapFee": "10443386629951129348566", "reserves": [ - "10285432892008863410315788", - "6082201851608648370486604", - "17316372915682378113188796" + "59942962135921207534318808", + "94149741796626197622946416", + "113959814727111878821186594" ], - "mAssetSupply": "33655645683166999901836329" + "mAssetSupply": "267972021148169208719482405" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "229922564441678752", - "expectedQty": "227908173759523793", - "swapFee": "137953538665007", + "type": "mintMulti", + "inputQtys": [ + "4416040420384734491705344", + "1867058415639056986669056", + "1669233798928771277914112" + ], + "expectedQty": "7964587807954430150897883", "reserves": [ - "10285432892008863410315788", - "6082201623700474610962811", - "17316372915682378113188796" + "64359002556305942026024152", + "96016800212265254609615472", + "115629048526040650099100706" ], - "mAssetSupply": "33655645453382388998822584" + "mAssetSupply": "275936608956123638870380288" }, { "type": "mintMulti", "inputQtys": [ - "424589024180911144960", - "164861443236067737600", - "304795602701659865088" + "160712005155607604625408", + "61098987677394562711552", + "352971692122071948591104" ], - "expectedQty": "894257104327868141543", + "expectedQty": "574588422405393325504013", "reserves": [ - "10285857481033044321460748", - "6082366485143710678700411", - "17316677711285079773053884" + "64519714561461549630649560", + "96077899199942649172327024", + "115982020218162722047691810" ], - "mAssetSupply": "33656539710486716866964127" + "mAssetSupply": "276511197378529032195884301" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "769863208251061698560", + "expectedQty": "769392865788669422440", + "reserves": [ + "64519714561461549630649560", + "96078669063150900234025584", + "115982020218162722047691810" + ] }, { "type": "redeemMasset", - "inputQty": "1686547260143022637056", + "inputQty": "8912591157082588604006", "expectedQtys": [ - "515275207332989456288", - "304699210297913253275", - "867487685344131715948" + "2078988959570075983118", + "3095898572864872383660", + "3737235063439367455190" ], - "redemptionFee": "505964178042906791", + "redemptionFee": "2673777347124776581", "reserves": [ - "10285342205825711332004460", - "6082061785933412765447136", - "17315810223599735641337936" + "64517635572501979554666442", + "96075573164578035361641924", + "115978282983099282680236620" ], - "mAssetSupply": "33654853669190751887233862" + "mAssetSupply": "276503056854015085401479316" }, { "type": "redeemMasset", - "inputQty": "24470290414546571598233", + "inputQty": "9692198173897996651357798", "expectedQtys": [ - "7476181821186965109187", - "4420912678391618928449", - "12586469465204045747543" + "2260843411569099369125604", + "3366704695149103270294763", + "4064140519730893926135456" ], - "redemptionFee": "7341087124363971479", + "redemptionFee": "2907659452169398995407", "reserves": [ - "10277866024004524366895273", - "6077640873255021146518687", - "17303223754134531595590393" + "62256792160932880185540838", + "92708868469428932091347161", + "111914142463368388754101164" ], - "mAssetSupply": "33630390719863329679607108" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "38306549010262474752", - "expectedQty": "38621934518885039670", - "reserves": [ - "10277866024004524366895273", - "6077679179804031408993439", - "17303223754134531595590393" - ] + "mAssetSupply": "266813766339569258149116925" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "1039789924306180224", - "expectedQty": "1043982312691483766", - "swapFee": "623873954583708", + "inputIndex": 0, + "inputQty": "1991059064671725944832", + "expectedQty": "1982709604384160567942", + "swapFee": "1194635438803035566", "reserves": [ - "10277866024004524366895273", - "6077679179804031408993439", - "17303222710152218904106627" + "62254809451328496024972896", + "92708868469428932091347161", + "111914142463368388754101164" ], - "mAssetSupply": "33630428302631798213050262" + "mAssetSupply": "266811776475140025226207659" }, { "type": "mintMulti", "inputQtys": [ - "596768551747695149056", - "394957366695340670976", - "1519784107008912523264" + "6416465778913171210240", + "113186173037776662953984", + "117033769165122613280768" ], - "expectedQty": "2507834489157692198521", + "expectedQty": "236345303144491287538545", "reserves": [ - "10278462792556272062044329", - "6078074137170726749664415", - "17304742494259227816629891" + "62261225917107409196183136", + "92822054642466708754301145", + "112031176232533511367381932" ], - "mAssetSupply": "33632936137120955905248783" + "mAssetSupply": "267048121778284516513746204" }, { - "type": "mintMulti", - "inputQtys": [ - "133395083220264733900800", - "199509639965419163877376", - "107210575108671618940928" + "type": "redeemMasset", + "inputQty": "221689416754353284736614", + "expectedQtys": [ + "51670515305000823594012", + "77032909718653087381642", + "92974536252583068232541" ], - "expectedQty": "441247367387388909393055", + "redemptionFee": "66506825026305985420", "reserves": [ - "10411857875776536795945129", - "6277583777136145913541791", - "17411953069367899435570819" + "62209555401802408372589124", + "92745021732748055666919503", + "111938201696280928299149391" ], - "mAssetSupply": "34074183504508344814641838" + "mAssetSupply": "266826498868355189534995010" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "35142546620568", + "expectedQty": "35068960901110", + "reserves": [ + "62209555401802408372589124", + "92745021732748055666919503", + "111938201696316070845769959" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2632654538819476947730432", - "expectedQty": "2594999603409184792806562", - "swapFee": "1579592723291686168638", + "inputQty": "3540609166518641290641408", + "expectedQty": "3540264075404130131599457", + "swapFee": "2124365499911184774384", "reserves": [ - "10411857875776536795945129", - "3682584173726961120735229", - "17411953069367899435570819" + "62209555401802408372589124", + "89204757657343925535320046", + "111938201696316070845769959" ], - "mAssetSupply": "31443108558412159553080044" + "mAssetSupply": "263288014067371528390029096" }, { - "type": "redeemMasset", - "inputQty": "48981861915331742872371", - "expectedQtys": [ - "16214655944426949217429", - "5734983715278676844348", - "27116085496821347697506" + "type": "redeemBassets", + "inputQtys": [ + "402145643120474881785856", + "238598089428841388834816", + "197495958135135805636608" ], - "redemptionFee": "14694558574599522861", + "expectedQty": "839108352210519055309751", + "swapFee": "503767271689325028202", "reserves": [ - "10395643219832109846727700", - "3676849190011682443890881", - "17384836983871078087873313" + "61807409758681933490803268", + "88966159567915084146485230", + "111740705738180935040133351" ], - "mAssetSupply": "31394141391055402409730534" + "mAssetSupply": "262448905715161009334719345" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "19650540925058842624", - "81957524576380715008", - "303233921131180608" + "3143840716183663108161536", + "2612683655511296928907264", + "1411896041827437568327680" ], - "expectedQty": "103849064336614185507", - "swapFee": "62346846709994508", + "expectedQty": "7174915600956621843413604", "reserves": [ - "10395623569291184787885076", - "3676767232487106063175873", - "17384836680637156956692705" + "64951250474865596598964804", + "91578843223426381075392494", + "113152601780008372608461031" ], - "mAssetSupply": "31394037541991065795545027" + "mAssetSupply": "269623821316117631178132949" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "9341312046229462450176", - "expectedQty": "9115253378517400629254", - "swapFee": "5604787227737677470", + "inputQty": "305625952952554994270208", + "expectedQty": "305506202198979346127136", "reserves": [ - "10395623569291184787885076", - "3667651979108588662546619", - "17384836680637156956692705" - ], - "mAssetSupply": "31384701834732064070772321" + "64951250474865596598964804", + "91884469176378936069662702", + "113152601780008372608461031" + ] }, { - "type": "redeemMasset", - "inputQty": "13714401941560624152576", - "expectedQtys": [ - "4541288615228243367668", - "1602199816713912851311", - "7594499778598945794189" + "type": "redeemBassets", + "inputQtys": [ + "1455951351689828118822912", + "5310109990833391293956096", + "5108138919055465996353536" ], - "redemptionFee": "4114320582468187245", + "expectedQty": "11866613414273368709101825", + "swapFee": "7124242594120493521574", "reserves": [ - "10391082280675956544517408", - "3666049779291874749695308", - "17377242180858558010898516" + "63495299123175768480141892", + "86574359185545544775706606", + "108044462860952906612107495" ], - "mAssetSupply": "31370991547111085914806990" + "mAssetSupply": "258062714104043241815158260" }, { - "type": "redeemMasset", - "inputQty": "230649156919659234276147", - "expectedQtys": [ - "76375506193750044851908", - "26945836830260220989301", - "127724488360814050897297" + "type": "redeemBassets", + "inputQtys": [ + "2648219049438313", + "4061020054179215", + "8530526700863049" ], - "redemptionFee": "69194747075897770282", + "expectedQty": "15229453223272669", + "swapFee": "9143157828660", "reserves": [ - "10314706774482206499665500", - "3639103942461614528706007", - "17249517692497743960001219" + "63495299120527549430703579", + "86574359181484524721527391", + "108044462852422379911244446" ], - "mAssetSupply": "31140411584938502578301125" + "mAssetSupply": "258062714088813788591885591" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "29377565780397148862414848", + "expectedQty": "29344848046819174802718108", + "reserves": [ + "63495299120527549430703579", + "115951924961881673583942239", + "108044462852422379911244446" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "835772391560836013883392", - "outputIndex": 1, - "expectedQty": "807072018709664894328725", - "swapFee": "500326782390186907792", + "inputQty": "62564806369124296396111872", + "outputIndex": 2, + "expectedQty": "62358057586427385106226545", + "swapFee": "37585894631910407898500", "reserves": [ - "11150479166043042513548892", - "2832031923751949634377282", - "17249517692497743960001219" + "126060105489651845826815451", + "115951924961881673583942239", + "45686405265994994805017901" ], - "mAssetSupply": "31140911911720892765208917", + "mAssetSupply": "287445148030264873802502199", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "5579074947080022", - "39440124293242720", - "50253750763403080" + "type": "redeemMasset", + "inputQty": "243957956702977618293555", + "expectedQtys": [ + "106956544432794338473310", + "98380190672389890889978", + "38762937852754436787840" ], - "expectedQty": "96420893216218442", + "redemptionFee": "73187387010893285488", "reserves": [ - "11150479171622117460628914", - "2832031963192073927620002", - "17249517742751494723404299" + "125953148945219051488342141", + "115853544771209283693052261", + "45647642328142240368230061" ], - "mAssetSupply": "31140912008141785981427359" + "mAssetSupply": "287201263260948907077494132" }, { - "type": "redeemBassets", - "inputQtys": [ - "92397429705222544", - "3665257657306858", - "126487441576653072" + "type": "redeemMasset", + "inputQty": "915650508162649187942", + "expectedQtys": [ + "401441361391816263880", + "369251623516375487418", + "145489428680391048805" ], - "expectedQty": "221123596649525797", - "swapFee": "132753810275881", + "redemptionFee": "274695152448794756", "reserves": [ - "11150479079224687755406370", - "2832031959526816270313144", - "17249517616264053146751227" + "125952747503857659672078261", + "115853175519585767317564843", + "45647496838713559977181256" ], - "mAssetSupply": "31140911787018189331901562" + "mAssetSupply": "287200347885135896877100946" }, { "type": "redeemBassets", "inputQtys": [ - "25803555971909514428416", - "146579297352290222080", - "1771088137288265236480" + "72430283684139830870016", + "40459984105302216671232", + "48562902334552829591552" ], - "expectedQty": "27606825286745083594667", - "swapFee": "16574039595804532876", + "expectedQty": "161626071693762181207910", + "swapFee": "97033863334257863442", "reserves": [ - "11124675523252778240977954", - "2831885380229463980091064", - "17247746528126764881514747" + "125880317220173519841208245", + "115812715535480465100893611", + "45598933936379007147589704" ], - "mAssetSupply": "31113304961731444248306895" + "mAssetSupply": "287038721813442134695893036" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "728161574294033025466368", - "expectedQty": "730388270912977507761812", - "swapFee": "436896944576419815279", + "inputQty": "735363945159346358321152", + "outputIndex": 2, + "expectedQty": "724165402239987056726882", + "swapFee": "439676526932652708696", "reserves": [ - "10394287252339800733216142", - "2831885380229463980091064", - "17247746528126764881514747" + "126615681165332866199529397", + "115812715535480465100893611", + "44874768534139020090862822" ], - "mAssetSupply": "30385580284381987642655806" + "mAssetSupply": "287039161489969067348601732", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "46582871979172516855808", - "107065368104491745804288", - "110913101488224590626816" - ], - "expectedQty": "267523393963731121458147", + "type": "swap", + "inputIndex": 1, + "inputQty": "1181535283980592742400", + "outputIndex": 0, + "expectedQty": "1181741875882550798145", + "swapFee": "706926039361046409", "reserves": [ - "10440870124318973250071950", - "2938950748333955725895352", - "17358659629614989472141563" + "126614499423456983648731252", + "115813897070764445693636011", + "44874768534139020090862822" ], - "mAssetSupply": "30653103678345718764113953" + "mAssetSupply": "287039162196895106709648141", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "116695149910108352", - "1068553358914128384", - "1127234116231562880" + "67916302849650422972416", + "52119566548960098123776", + "50377861390522625556480" ], - "expectedQty": "2341855668651449492", - "swapFee": "1405956975376095", + "expectedQty": "170603031316925860230184", + "swapFee": "102423272753807800818", "reserves": [ - "10440870007623823339963598", - "2938949679780596811766968", - "17358658502380873240578683" + "126546583120607333225758836", + "115761777504215485595512235", + "44824390672748497465306342" ], - "mAssetSupply": "30653101336490050112664461" + "mAssetSupply": "286868559165578180849417957" }, { "type": "redeemMasset", - "inputQty": "912524658100248929894", + "inputQty": "6288337700001260", "expectedQtys": [ - "310725266067531622956", - "87464542757653201805", - "516601947710222890006" - ], - "redemptionFee": "273757397430074678", - "reserves": [ - "10440559282357755808340642", - "2938862215237839158565163", - "17358141900433163017688677" - ], - "mAssetSupply": "30652189085589347293809245" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1348430301170171136", - "1717494406639789056", - "2746868376071871488" + "2773147818857527", + "2536809077546786", + "982283821186064" ], - "expectedQty": "5847575224282987866", - "reserves": [ - "10440560630788056978511778", - "2938863932732245798354219", - "17358144647301539089560165" - ], - "mAssetSupply": "30652194933164571576797111" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "658903375009563017216", - "outputIndex": 0, - "expectedQty": "685513241404603539815", - "swapFee": "410287144474276512", + "redemptionFee": "1886501310000", "reserves": [ - "10439875117546652374971963", - "2939522836107255361371435", - "17358144647301539089560165" + "126546583117834185406901309", + "115761777501678676517965449", + "44824390671766213644120278" ], - "mAssetSupply": "30652195343451716051073623", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "286868559159291729650726697" }, { "type": "mint", "inputIndex": 2, - "inputQty": "556624967154045158424576", - "expectedQty": "551245709229444121602882", + "inputQty": "9632308276972079707848704", + "expectedQty": "9722437532017300310405502", "reserves": [ - "10439875117546652374971963", - "2939522836107255361371435", - "17914769614455584247984741" + "126546583117834185406901309", + "115761777501678676517965449", + "54456698948738293351968982" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2024114925692976384442368", - "expectedQty": "2002656501955419421024471", + "type": "redeem", + "inputIndex": 0, + "inputQty": "52121934766716474928136192", + "expectedQty": "52159849619533142081739617", + "swapFee": "31273160860029884956881", "reserves": [ - "10439875117546652374971963", - "2939522836107255361371435", - "19938884540148560632427109" - ] + "74386733498301043325161692", + "115761777501678676517965449", + "54456698948738293351968982" + ], + "mAssetSupply": "244500335085452584917952888" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "95071181241155443490816", - "expectedQty": "93989071660789321872935", + "type": "redeemMasset", + "inputQty": "4209044068710768954677657", + "expectedQtys": [ + "1280174565816328683961284", + "1992227327131156443068592", + "937184329166487770940902" + ], + "redemptionFee": "1262713220613230686403", "reserves": [ - "10439875117546652374971963", - "2939522836107255361371435", - "20033955721389716075917925" - ] + "73106558932484714641200408", + "113769550174547520074896857", + "53519514619571805581028080" + ], + "mAssetSupply": "240292553729962429193961634" }, { "type": "swap", "inputIndex": 2, - "inputQty": "25599692057794696", - "outputIndex": 1, - "expectedQty": "24156169488509356", - "swapFee": "15184444020244", + "inputQty": "46987546319347228384165888", + "outputIndex": 0, + "expectedQty": "46597836704935837494088481", + "swapFee": "28229883651737725884208", "reserves": [ - "10439875117546652374971963", - "2939522811951085872862079", - "20033955746989408133712621" + "26508722227548877147111927", + "113769550174547520074896857", + "100507060938919033965193968" ], - "mAssetSupply": "33300086626312553359594155", + "mAssetSupply": "240320783613614166919845842", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "188390261120588752879616", - "expectedQty": "186226059375809970682036", + "inputQty": "9262489527417769532850176", + "expectedQty": "9297208034839570482843006", + "swapFee": "5557493716450661719710", "reserves": [ - "10439875117546652374971963", - "2939522811951085872862079", - "20222346008109996886592237" - ] + "26508722227548877147111927", + "113769550174547520074896857", + "91209852904079463482350962" + ], + "mAssetSupply": "231063851579912848048715376" }, { - "type": "redeemBassets", - "inputQtys": [ - "1102033837188967594721280", - "542861498421071006662656", - "438191707112841783803904" - ], - "expectedQty": "2105809268849842666852156", - "swapFee": "1264244107774570342316", + "type": "redeem", + "inputIndex": 0, + "inputQty": "147509606710562584002560", + "expectedQty": "143924702316938316441858", + "swapFee": "88505764026337550401", "reserves": [ - "9337841280357684780250683", - "2396661313530014866199423", - "19784154300997155102788333" + "26364797525231938830670069", + "113769550174547520074896857", + "91209852904079463482350962" ], - "mAssetSupply": "31380503416838520663424035" + "mAssetSupply": "230916430478966311802263217" }, { "type": "mintMulti", "inputQtys": [ - "1305266532781833472", - "954437676413168256", - "296268288102226304" + "2595401330094222848", + "18022976154829724", + "3952733508339750912" ], - "expectedQty": "2612789173954207524", + "expectedQty": "6613794664887470840", "reserves": [ - "9337842585624217562084155", - "2396662267967691279367679", - "19784154597265443205014637" + "26364800120633268924892917", + "113769550192570496229726581", + "91209856856812971822101874" ], - "mAssetSupply": "31380506029627694617631559" + "mAssetSupply": "230916437092760976689734057" }, { - "type": "mintMulti", - "inputQtys": [ - "473889408995926608969728", - "491068587070567611367424", - "361812222647455499419648" - ], - "expectedQty": "1349014559133792677520434", + "type": "swap", + "inputIndex": 2, + "inputQty": "275283867818297844039680", + "outputIndex": 1, + "expectedQty": "275744142257582899813297", + "swapFee": "164514453525975390580", "reserves": [ - "9811731994620144171053883", - "2887730855038258890735103", - "20145966819912898704434285" + "26364800120633268924892917", + "113493806050312913329913284", + "91485140724631269666141554" ], - "mAssetSupply": "32729520588761487295151993" + "mAssetSupply": "230916601607214502665124637", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "9523658104895084848742", + "inputQty": "26352092906352809", "expectedQtys": [ - "2854167924824999386137", - "840021801094533022766", - "5860328466320911789551" + "3007835846809805", + "12947973687153115", + "10437108738276908" ], - "redemptionFee": "2857097431468525454", + "redemptionFee": "7905627871905", "reserves": [ - "9808877826695319171667746", - "2886890833237164357712337", - "20140106491446577792644734" + "26364800117625433078083112", + "113493806037364939642760169", + "91485140714194160927864646" ], - "mAssetSupply": "32719999787754023678828705" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "6084965590449611941609472", - "expectedQty": "6176026383160945554208732", - "reserves": [ - "9808877826695319171667746", - "8971856423686776299321809", - "20140106491446577792644734" - ] + "mAssetSupply": "230916601580870315386643733" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "225713476212111469182976", - "expectedQty": "226530202854954278579935", - "swapFee": "135428085727266881509", + "type": "redeemBassets", + "inputQtys": [ + "43929105548757860089856", + "40848906182126347485184", + "26657004644377382879232" + ], + "expectedQty": "112148259850787198339419", + "swapFee": "67329353522585870525", "reserves": [ - "9808877826695319171667746", - "8971856423686776299321809", - "19913576288591623514064799" + "26320871012076675217993256", + "113452957131182813295274985", + "91458483709549783544985414" ], - "mAssetSupply": "38670448122788585030735970" + "mAssetSupply": "230804453321019528188304314" }, { "type": "redeemBassets", "inputQtys": [ - "37484207042197970747392", - "14060652705568335593472", - "28840360312761841876992" + "18594706951290318848", + "14123503242555459584", + "16787895455677288448" ], - "expectedQty": "80414435339099821222400", - "swapFee": "48277627780127969515", + "expectedQty": "49806227200393585230", + "swapFee": "29901677326632130", "reserves": [ - "9771393619653121200920354", - "8957795770981207963728337", - "19884735928278861672187807" + "26320852417369723927674408", + "113452943007679570739815401", + "91458466921654327867696966" ], - "mAssetSupply": "38590033687449485209513570" + "mAssetSupply": "230804403514792327794719084" }, { - "type": "redeemBassets", - "inputQtys": [ - "412525713389432495669248", - "367369514437379385982976", - "219112533068339709214720" - ], - "expectedQty": "1000613440147831181550716", - "swapFee": "600728501189412356344", + "type": "redeem", + "inputIndex": 0, + "inputQty": "6585849790078992487809024", + "expectedQty": "6376043907170396444545373", + "swapFee": "3951509874047395492685", "reserves": [ - "9358867906263688705251106", - "8590426256543828577745361", - "19665623395210521962973087" + "19944808510199327483129035", + "113452943007679570739815401", + "91458466921654327867696966" ], - "mAssetSupply": "37589420247301654027962854" + "mAssetSupply": "224222505234587382702402745" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3059780703429210112", - "outputIndex": 2, - "expectedQty": "3083817992143633834", - "swapFee": "1843270290964837", + "type": "redeemBassets", + "inputQtys": [ + "177920326127076392304640", + "242137783968751568289792", + "410352267736742704971776" + ], + "expectedQty": "833600044795819361910865", + "swapFee": "500460303059327213474", "reserves": [ - "9358867906263688705251106", - "8590429316324532006955473", - "19665620311392529819339253" + "19766888184072251090824395", + "113210805223710819171525609", + "91048114653917585162725190" ], - "mAssetSupply": "37589420249144924318927691", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "223388905189791563340491880" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "216056494244446018207744", + "inputIndex": 1, + "inputQty": "267960505399323385659392", "outputIndex": 0, - "expectedQty": "214326016103250200520107", - "swapFee": "129059477902837636570", + "expectedQty": "254411005518662388220339", + "swapFee": "159413447630396950778", "reserves": [ - "9144541890160438504730999", - "8590429316324532006955473", - "19881676805636975837546997" + "19512477178553588702604056", + "113478765729110142557185001", + "91048114653917585162725190" ], - "mAssetSupply": "37589549308622827156564261", + "mAssetSupply": "223389064603239193737442658", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "233967763712080177266688", - "expectedQty": "232892915316509905767925", + "inputIndex": 1, + "inputQty": "10684602260247892220444672", + "expectedQty": "10587035774005238200111993", "reserves": [ - "9144541890160438504730999", - "8590429316324532006955473", - "20115644569349056014813685" + "19512477178553588702604056", + "124163367989358034777629673", + "91048114653917585162725190" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "14451298704449167425536", - "288624929860885625700352", - "237734528662029778026496" - ], - "expectedQty": "540990344169695801807994", - "swapFee": "324789079949787353496", + "type": "redeem", + "inputIndex": 2, + "inputQty": "14398257503475408987750400", + "expectedQty": "14458361322978201772120124", + "swapFee": "8638954502085245392650", "reserves": [ - "9130090591455989337305463", - "8301804386463646381255121", - "19877910040687026236787189" + "19512477178553588702604056", + "124163367989358034777629673", + "76589753330939383390605066" ], - "mAssetSupply": "37281451879769641260524192" + "mAssetSupply": "219586481828271108195196901" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1806107151839171302129664", - "expectedQty": "1793944436864383113081573", - "swapFee": "1083664291103502781277", + "type": "redeemMasset", + "inputQty": "4738177753347005821747", + "expectedQtys": [ + "420908648087052587525", + "2678359845554470045240", + "1652137206201524360129" + ], + "redemptionFee": "1421453326004101746", "reserves": [ - "9130090591455989337305463", - "6507859949599263268173548", - "19877910040687026236787189" + "19512056269905501650016531", + "124160689629512480307584433", + "76588101193733181866244937" ], - "mAssetSupply": "35476428392221573461175805" + "mAssetSupply": "219581745071971087193476900" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2198594794391619288170496", - "expectedQty": "2168902307749953505214718", - "swapFee": "1319156876634971572902", + "type": "redeemMasset", + "inputQty": "1856058239108676893383065", + "expectedQtys": [ + "164880045634044462757836", + "1049177999944728245845548", + "647181898471877451215851" + ], + "redemptionFee": "556817471732603068014", "reserves": [ - "9130090591455989337305463", - "4338957641849309762958830", - "19877910040687026236787189" + "19347176224271457187258695", + "123111511629567752061738885", + "75940919295261304415029086" ], - "mAssetSupply": "33279152754706589144578211" + "mAssetSupply": "217726243650334142903161849" }, { "type": "mintMulti", "inputQtys": [ - "175598312627810729984", - "385080473767243087872", - "26197796342312808448" + "36569118059469350109184", + "57373372959060387692544", + "5846686485618646581248" ], - "expectedQty": "594590260540373805637", + "expectedQty": "100809881357226965999983", "reserves": [ - "9130266189768617148035447", - "4339342722323077006046702", - "19877936238483368549595637" + "19383745342330926537367879", + "123168885002526812449431429", + "75946765981746923061610334" ], - "mAssetSupply": "33279747344967129518383848" + "mAssetSupply": "217827053531691369869161832" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "8970473810572112560128", - "outputIndex": 0, - "expectedQty": "8881374213066147029732", - "swapFee": "5337681389573472347", + "type": "mintMulti", + "inputQtys": [ + "429395918493432128995328", + "1610860454920470979936256", + "8161547396193350429179904" + ], + "expectedQty": "10170513700991917644648290", "reserves": [ - "9121384815555551001005715", - "4339342722323077006046702", - "19886906712293940662155765" + "19813141260824358666363207", + "124779745457447283429367685", + "84108313377940273490790238" ], - "mAssetSupply": "33279752682648519091856195", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "227997567232683287513810122" }, { - "type": "redeemMasset", - "inputQty": "7613107378639332", - "expectedQtys": [ - "2085990544463898", - "992374301818429", - "4547982592482496" + "type": "redeemBassets", + "inputQtys": [ + "682626272204615803994112", + "106825649212462725070848", + "358663897393077365506048" ], - "redemptionFee": "2283932213591", + "expectedQty": "1177680709675360862410077", + "swapFee": "707032645392451988639", "reserves": [ - "9121384813469560456541817", - "4339342721330702704228273", - "19886906707745958069673269" + "19130514988619742862369095", + "124672919808234820704296837", + "83749649480547196125284190" ], - "mAssetSupply": "33279752675037695645430454" + "mAssetSupply": "226819886523007926651400045" }, { - "type": "redeemMasset", - "inputQty": "21833630412031547801", - "expectedQtys": [ - "5982412216935960976", - "2846030229009323107", - "13043159134104232672" + "type": "mintMulti", + "inputQtys": [ + "5087003460878850834038784", + "5960878724002424117264384", + "5812801526672271496708096" ], - "redemptionFee": "6550089123609464", + "expectedQty": "16988161309257541562829697", "reserves": [ - "9121378831057343520580841", - "4339339875300473694905166", - "19886893664586823965440597" + "24217518449498593696407879", + "130633798532237244821561221", + "89562451007219467621992286" ], - "mAssetSupply": "33279730847957372737492117" + "mAssetSupply": "243808047832265468214229742" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1682878842708978565120", - "outputIndex": 0, - "expectedQty": "1713866521408532902041", - "swapFee": "1030037686299551437", + "type": "redeem", + "inputIndex": 0, + "inputQty": "315894825101726203248640", + "expectedQty": "305171948010190496337727", + "swapFee": "189536895061035721949", "reserves": [ - "9119664964535934987678800", - "4341022754143182673470286", - "19886893664586823965440597" + "23912346501488403200070152", + "130633798532237244821561221", + "89562451007219467621992286" ], - "mAssetSupply": "33279731877995059037043554", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "243492342544058803046703051" }, { "type": "redeemMasset", - "inputQty": "758745383304490490265", + "inputQty": "55318253246471936409", "expectedQtys": [ - "207857078397692734995", - "98941387698229196098", - "453265731976037258546" + "5430940410274281870", + "29669374996393450163", + "20341305040391694792" ], - "redemptionFee": "227623614991347147", + "redemptionFee": "16595475973941580", "reserves": [ - "9119457107457537294943805", - "4340923812755484444274188", - "19886440398854847928182051" + "23912341070547992925788282", + "130633768862862248428111058", + "89562430665914427230297494" ], - "mAssetSupply": "33278973360235369537900436" + "mAssetSupply": "243492287242401032548708222" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "338777404326429851648", - "expectedQty": "339140027297089669488", + "type": "mintMulti", + "inputQtys": [ + "405852252403198052007936", + "1214354596957220683907072", + "2842408979053136148692992" + ], + "expectedQty": "4455193048610764431547320", "reserves": [ - "9119795884861863724795453", - "4340923812755484444274188", - "19886440398854847928182051" - ] + "24318193322951190977796218", + "131848123459819469112018130", + "92404839644967563378990486" + ], + "mAssetSupply": "247947480291011796980255542" }, { - "type": "redeemBassets", - "inputQtys": [ - "17709189263418787364864", - "17148090207028570488832", - "6752253131143993360384" - ], - "expectedQty": "41918424983120596804701", - "swapFee": "25166154682681967263", + "type": "swap", + "inputIndex": 2, + "inputQty": "144604398985718104326144", + "outputIndex": 1, + "expectedQty": "145123111354631496213128", + "swapFee": "86404867343651116754", "reserves": [ - "9102086695598444937430589", - "4323775722548455873785356", - "19879688145723703934821667" + "24318193322951190977796218", + "131703000348464837615805002", + "92549444043953281483316630" ], - "mAssetSupply": "33237394075279546030765223" + "mAssetSupply": "247947566695879140631372296", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "13677724670696175435776", - "9335504055252731035648", - "13281008782139048591360" + "type": "redeemMasset", + "inputQty": "16751690329487785984", + "expectedQtys": [ + "1642478843783259958", + "8895372648056605977", + "6250896266320507727" ], - "expectedQty": "36387619468623397217354", - "swapFee": "21845679088627214659", + "redemptionFee": "5025507098846335", "reserves": [ - "9088408970927748761994813", - "4314440218493203142749708", - "19866407136941564886230307" + "24318191680472347194536260", + "131702991453092189559199025", + "92549437793057015162808903" ], - "mAssetSupply": "33201006455810922633547869" + "mAssetSupply": "247947549949214318242432647" }, { "type": "redeemMasset", - "inputQty": "155194957652960946946048", + "inputQty": "11497474202104365056", "expectedQtys": [ - "42470161399445128817289", - "20161391615826343872938", - "92835777992819417341958" + "1127310603435543637", + "6105313286451066204", + "4290284571195752165" ], - "redemptionFee": "46558487295888284083", + "redemptionFee": "3449242260631309", "reserves": [ - "9045938809528303633177524", - "4294278826877376798876770", - "19773571358948745468888349" + "24318190553161743758992623", + "131702985347778903108132821", + "92549433502772443967056738" ], - "mAssetSupply": "33045858056645257574885904" + "mAssetSupply": "247947538455189358398698900" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "77453350361358609154048", - "expectedQty": "77319031008216132604620", - "swapFee": "46472010216815165492", + "inputQty": "105832221924391976960", + "expectedQty": "102200203376309436275", + "swapFee": "63499333154635186", "reserves": [ - "8968619778520087500572904", - "4294278826877376798876770", - "19773571358948745468888349" + "24318088352958367449556348", + "131702985347778903108132821", + "92549433502772443967056738" ], - "mAssetSupply": "32968451178294115780897348" + "mAssetSupply": "247947432686466767161357126" }, { - "type": "redeemMasset", - "inputQty": "661263440372279908761", - "expectedQtys": [ - "179833779632556072319", - "86106492560090183925", - "396488664045091175593" + "type": "redeem", + "inputIndex": 2, + "inputQty": "216402619445035585765376", + "expectedQty": "217168296091497873271100", + "swapFee": "129841571667021351459", + "reserves": [ + "24318088352958367449556348", + "131702985347778903108132821", + "92332265206680946093785638" ], - "redemptionFee": "198379032111683972", + "mAssetSupply": "247731159908593398596943209" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "68488168448072441703432192", + "outputIndex": 0, + "hardLimitError": true + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "2925682471768254159257600", + "outputIndex": 0, + "expectedQty": "2786492254144398973316818", + "swapFee": "1740664811685498030436", "reserves": [ - "8968439944740454944500585", - "4294192720384816708692845", - "19773174870284700377712756" + "21531596098813968476239530", + "134628667819547157267390421", + "92332265206680946093785638" ], - "mAssetSupply": "32967790113232775612672559" + "mAssetSupply": "247732900573405084094973645", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "13430113379481432", - "expectedQty": "13535424451267188", - "swapFee": "8058068027688", + "inputIndex": 0, + "inputQty": "4012644097277045350858752", + "expectedQty": "3799935582063499116366556", + "swapFee": "2407586458366227210515", "reserves": [ - "8968439944740454944500585", - "4294192720384816708692845", - "19773174856749275926445568" + "17731660516750469359872974", + "134628667819547157267390421", + "92332265206680946093785638" ], - "mAssetSupply": "32967790099810720301218815" + "mAssetSupply": "243722664062586404971325408" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1632326250614581916336128", + "expectedQty": "1613029300478584450860368", + "reserves": [ + "17731660516750469359872974", + "136260994070161739183726549", + "92332265206680946093785638" + ] }, { "type": "redeemBassets", "inputQtys": [ - "438043472992642138112", - "1624800837080475238400", - "297736223467806130176" + "803114191173627", + "2748296089096263", + "3849864651854298" ], - "expectedQty": "2391511147490143575993", - "swapFee": "1435768149383716375", + "expectedQty": "7399304180606976", + "swapFee": "4442247857078", "reserves": [ - "8968001901267462302362473", - "4292567919547736233454445", - "19772877120525808120315392" + "17731660515947355168699347", + "136260994067413443094630286", + "92332265202831081441931340" ], - "mAssetSupply": "32965398588663230157642822" + "mAssetSupply": "245335693355665685241578800" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "380292706830390784", - "expectedQty": "379613278315994425", - "swapFee": "228175624098234", + "inputIndex": 1, + "inputQty": "2927169948579377809719296", + "expectedQty": "2960197546162669865549838", + "swapFee": "1756301969147626685831", "reserves": [ - "8968001521654183986368048", - "4292567919547736233454445", - "19772877120525808120315392" + "17731660515947355168699347", + "133300796521250773229080448", + "92332265202831081441931340" ], - "mAssetSupply": "32965398208598698951350272" + "mAssetSupply": "242410279709055455058545335" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "83777527947151420686336", - "expectedQty": "83872277344423662767643", + "inputIndex": 1, + "inputQty": "470975711679099392", + "expectedQty": "465516223630845537", + "reserves": [ + "17731660515947355168699347", + "133300796992226484908179840", + "92332265202831081441931340" + ] + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "3136287926622286249984", + "outputIndex": 0, + "expectedQty": "2921434376532117080996", + "swapFee": "1869915429618654051", + "reserves": [ + "17728739081570823051618351", + "133300796992226484908179840", + "92335401490757703728181324" + ], + "mAssetSupply": "242410282044487108308044923", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "2950298544265425920", + "3075376554681771520", + "14307531492873738240" + ], + "expectedQty": "20402537787396941529", + "swapFee": "12248871995635546", + "reserves": [ + "17728736131272278786192431", + "133300793916849930226408320", + "92335387183226210854443084" + ], + "mAssetSupply": "242410261641949320911103394" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "937030872677084926312448", + "expectedQty": "926120190746618935939561", + "reserves": [ + "17728736131272278786192431", + "134237824789527015152720768", + "92335387183226210854443084" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "35647416657014441604284416", + "outputIndex": 0, + "hardLimitError": true + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "6376848470751752409317376", + "outputIndex": 0, + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "69016272438698760", + "expectedQty": "68583129465831691", "reserves": [ - "9051779049601335407054384", - "4292567919547736233454445", - "19772877120525808120315392" + "17728736131272278786192431", + "134237824789527015152720768", + "92335387252242483293141844" ] }, { "type": "redeemMasset", - "inputQty": "76692220884607161073664", + "inputQty": "185411377413872076", "expectedQtys": [ - "20998732127971795695727", - "9958095904658437220000", - "45870027071806452308132" + "13504446919999304", + "102252499337990927", + "70334305093862565" ], - "redemptionFee": "23007666265382148322", + "redemptionFee": "55623413224161", "reserves": [ - "9030780317473363611358657", - "4282609823643077796234445", - "19727007093454001668007260" + "17728736117767831866193127", + "134237824687274515814729841", + "92335387181908178199279279" ], - "mAssetSupply": "32972601272724780835192573" + "mAssetSupply": "243336381715923315312226731" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "207314314133973225177088", - "expectedQty": "202855189288055103260310", - "swapFee": "124388588480383935106", + "inputQty": "8893683065525446125813760", + "expectedQty": "8989151259173551458427858", + "swapFee": "5336209839315267675488", "reserves": [ - "9030780317473363611358657", - "4079754634355022692974135", - "19727007093454001668007260" + "17728736117767831866193127", + "125248673428100964356301983", + "92335387181908178199279279" ], - "mAssetSupply": "32765411347179287993950591" + "mAssetSupply": "234448034860237184454088459" }, { "type": "mintMulti", "inputQtys": [ - "1245595266112300544", - "1757482043558545664", - "1433765459706231552" + "171148901081920405766144", + "19049736257223314636800", + "146401864582212297424896" ], - "expectedQty": "4464957586363489901", + "expectedQty": "345798384648835184393166", "reserves": [ - "9030781563068629723659201", - "4079756391837066251519799", - "19727008527219461374238812" + "17899885018849752271959271", + "125267723164358187670938783", + "92481789046490390496704175" ], - "mAssetSupply": "32765415812136874357440492" + "mAssetSupply": "234793833244886019638481625" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "333931085260650547511296", + "expectedQty": "330375848788882263027964", + "reserves": [ + "17899885018849752271959271", + "125601654249618838218450079", + "92481789046490390496704175" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "198843167129808381411328", - "54405808556659689127936", - "122979367454648439930880" + "8272566938263479123968", + "6999787526653394026496", + "5627165884770125086720" ], - "expectedQty": "376544263103104567785975", + "expectedQty": "21286383954078865439516", + "swapFee": "12779498071290093319", "reserves": [ - "9229624730198438105070529", - "4134162200393725940647735", - "19849987894674109814169692" + "17891612451911488792835303", + "125594654462092184824423583", + "92476161880605620371617455" ], - "mAssetSupply": "33141960075239978925226467" + "mAssetSupply": "235102922709720823036070073" }, { - "type": "redeemMasset", - "inputQty": "1808937989750720036864", - "expectedQtys": [ - "503615658882727009667", - "225581091468123742553", - "1083117139062221141161" + "type": "mintMulti", + "inputQtys": [ + "1714887512539125975613440", + "3098852887113096138588160", + "3778513193598977778384896" ], - "redemptionFee": "542681396925216011", + "expectedQty": "8633813178040287575108888", "reserves": [ - "9229121114539555378060862", - "4133936619302257816905182", - "19848904777535047593028531" + "19606499964450614768448743", + "128693507349205280963011743", + "96254675074204598150002351" ], - "mAssetSupply": "33140151679931625130405614" + "mAssetSupply": "243736735887761110611178961" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "539176217414247232", - "expectedQty": "538453217466573347", - "swapFee": "323505730448548", + "inputQty": "242972944431477850112", + "outputIndex": 2, + "expectedQty": "257345510541601092875", + "swapFee": "153558719681394776", "reserves": [ - "9229120576086337911487515", - "4133936619302257816905182", - "19848904777535047593028531" + "19606742937395046246298855", + "128693507349205280963011743", + "96254417728694056548909476" ], - "mAssetSupply": "33140151141078913446606930" + "mAssetSupply": "243736736041319830292573737", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "439637499793008558080", - "expectedQty": "435857013618459723196", + "inputIndex": 0, + "inputQty": "8816000750081022887985152", + "expectedQty": "9141460034781159980070016", "reserves": [ - "9229120576086337911487515", - "4133936619302257816905182", - "19849344415034840601586611" + "28422743687476069134284007", + "128693507349205280963011743", + "96254417728694056548909476" ] }, { "type": "mintMulti", "inputQtys": [ - "5631589388506665844736", - "130824371048313585664", - "7292112653205872050176" + "10653189104822047385583616", + "4881619797019491007725568", + "3894254058569596416294912" ], - "expectedQty": "12998894851308831157430", + "expectedQty": "19593626054377119951471126", "reserves": [ - "9234752165474844577332251", - "4134067443673306130490846", - "19856636527688046473636787" + "39075932792298116519867623", + "133575127146224771970737311", + "100148671787263652965204388" ], - "mAssetSupply": "33153585892943840737487556" + "mAssetSupply": "272471822130478110224114879" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "481095468293444730880", - "expectedQty": "481450355954055308024", + "type": "redeemMasset", + "inputQty": "913946316023165114489241", + "expectedQtys": [ + "131032231333435317229155", + "447913733848650169138679", + "335825737010979522331289" + ], + "redemptionFee": "274183894806949534346", "reserves": [ - "9235233260943138022063131", - "4134067443673306130490846", - "19856636527688046473636787" - ] + "38944900560964681202638468", + "133127213412376121801598632", + "99812846050252673442873099" + ], + "mAssetSupply": "271558149998349752059159984" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "794962035310474559488", - "1057837838809488293888", - "262056981432020467712" + "18981179521750743908352", + "19876683177894267060224", + "13317446151702428254208" ], - "expectedQty": "2136761615435973565370", - "swapFee": "1282826665260740583", + "expectedQty": "52319980120582730192269", "reserves": [ - "9234438298907827547503643", - "4133009605834496642196958", - "19856374470706614453169075" + "38963881740486431946546820", + "133147090095554016068658856", + "99826163496404375871127307" ], - "mAssetSupply": "33151930581684358819230210" + "mAssetSupply": "271610469978470334789352253" }, { "type": "redeemMasset", - "inputQty": "30631978685615852", + "inputQty": "647128637769445277696", "expectedQtys": [ - "8529948375521363", - "3817704708414343", - "18341543218733716" + "92805992794809971642", + "317135955969658866274", + "237770617206096865889" ], - "redemptionFee": "9189593605684", + "redemptionFee": "194138591330833583", "reserves": [ - "9234438290377879171982280", - "4133009602016791933782615", - "19856374452365071234435359" + "38963788934493637136575178", + "133146772959598046409792582", + "99825925725787169774261418" ], - "mAssetSupply": "33151930551061569727220042" + "mAssetSupply": "271609823043971156674908140" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1948260696278210420146176", - "expectedQty": "1962824215889404457020366", - "swapFee": "1168956417766926252087", + "type": "mintMulti", + "inputQtys": [ + "79938718005740483641344", + "76481692057900991643648", + "631718288057298845696" + ], + "expectedQty": "157821866667915363051480", "reserves": [ - "9234438290377879171982280", - "4133009602016791933782615", - "17893550236475666777414993" + "39043727652499377620216522", + "133223254651655947401436230", + "99826557444075227073107114" ], - "mAssetSupply": "31204838811201126233325953" + "mAssetSupply": "271767644910639072037959620" }, { "type": "mint", "inputIndex": 2, - "inputQty": "5858621865769087554027520", - "expectedQty": "5804670111550945200490919", + "inputQty": "2790212150909395724664832", + "expectedQty": "2783589030353838228517721", "reserves": [ - "9234438290377879171982280", - "4133009602016791933782615", - "23752172102244754331442513" + "39043727652499377620216522", + "133223254651655947401436230", + "102616769594984622797771946" ] }, + { + "type": "redeemMasset", + "inputQty": "4211514727049769779", + "expectedQtys": [ + "598736715466917002", + "2042982540598655397", + "1573631189264619038" + ], + "redemptionFee": "1263454418114930", + "reserves": [ + "39043727053762662153299520", + "133223252608673406802780833", + "102616768021353433533152908" + ], + "mAssetSupply": "274551229730741637634822492" + }, { "type": "mint", - "inputIndex": 2, - "inputQty": "33507714222098793627648", - "expectedQty": "33137202338636813380290", + "inputIndex": 0, + "inputQty": "5530422242524487468711936", + "expectedQty": "5601150272120533455509716", "reserves": [ - "9234438290377879171982280", - "4133009602016791933782615", - "23785679816466853125070161" + "44574149296287149622011456", + "133223252608673406802780833", + "102616768021353433533152908" ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "4973009404082378179084288", + "inputQty": "132293868655844039589888", "outputIndex": 1, - "hardLimitError": true - }, - { - "type": "redeemBassets", - "inputQtys": [ - "5575507584274637258752", - "4405851180887420960768", - "8622464624383741657088" - ], - "expectedQty": "18659430003023935881591", - "swapFee": "11202379429472044755", + "expectedQty": "134244239313460704815754", + "swapFee": "80256709976896817304", "reserves": [ - "9228862782793604534723528", - "4128603750835904512821847", - "23777057351842469383413073" + "44706443164942993661601344", + "133089008369359946097965079", + "102616768021353433533152908" ], - "mAssetSupply": "37023986695087684311315571" + "mAssetSupply": "280152460259572147987149512", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "940769206081928806006784", - "outputIndex": 2, - "expectedQty": "972370180162735965832741", - "swapFee": "578534260749971097168", + "inputQty": "265697809583279607644160", + "outputIndex": 0, + "expectedQty": "261510086231595754524155", + "swapFee": "158749190042134734919", "reserves": [ - "9228862782793604534723528", - "5069372956917833318828631", - "22804687171679733417580332" + "44444933078711397907077189", + "133354706178943225705609239", + "102616768021353433533152908" ], - "mAssetSupply": "37024565229348434282412739", + "mAssetSupply": "280152619008762190121884431", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "16173504724748254314496", - "expectedQty": "16118644874947494733181", - "swapFee": "9704102834848952588", + "type": "redeemMasset", + "inputQty": "298901847903084390", + "expectedQtys": [ + "47405186759836209", + "142236793123756777", + "109451555346657013" + ], + "redemptionFee": "89670554370925", "reserves": [ - "9212744137918657039990347", - "5069372956917833318828631", - "22804687171679733417580332" + "44444933031306211147240980", + "133354706036706432581852462", + "102616767911901878186495895" ], - "mAssetSupply": "37008401428726520877050831" + "mAssetSupply": "280152618709950012773170966" }, { - "type": "redeemBassets", - "inputQtys": [ - "36114460230122133782528", - "16798937666761091186688", - "3147594128105466232832" + "type": "redeemMasset", + "inputQty": "266191975161176978253414", + "expectedQtys": [ + "42217471671760317927641", + "126671324275254937460276", + "97473889527896972360987" ], - "expectedQty": "56449733607981344120031", - "swapFee": "33890174269350416722", + "redemptionFee": "79857592548353093476", "reserves": [ - "9176629677688534906207819", - "5052574019251072227641943", - "22801539577551627951347500" + "44402715559634450829313339", + "133228034712431177644392186", + "102519294022373981214134908" ], - "mAssetSupply": "36951951695118539532930800" + "mAssetSupply": "279886506592381384148011028" }, { - "type": "redeemBassets", - "inputQtys": [ - "169390779680484491264", - "4467651164991102386176", - "4754460450258869551104" - ], - "expectedQty": "9434085673415858553852", - "swapFee": "5663849713877841837", + "type": "mint", + "inputIndex": 0, + "inputQty": "916993813006368896", + "expectedQty": "927272584319746418", "reserves": [ - "9176460286908854421716555", - "5048106368086081125255767", - "22796785117101369081796396" - ], - "mAssetSupply": "36942517609445123674376948" + "44402716476628263835682235", + "133228034712431177644392186", + "102519294022373981214134908" + ] }, { "type": "redeemBassets", "inputQtys": [ - "7061776401878284763136", - "671484101963830132736", - "2667622829402995818496" + "15863458775823747072", + "14668706450643292160", + "3312203529533296640" ], - "expectedQty": "10410305118073977520774", - "swapFee": "6249933030662784182", + "expectedQty": "33953700076334380922", + "swapFee": "20384450716230366", "reserves": [ - "9169398510506976136953419", - "5047434883984117295123031", - "22794117494271966085977900" + "44402700613169488011935163", + "133228020043724727001100026", + "102519290710170451680838268" ], - "mAssetSupply": "36932107304327049696856174" + "mAssetSupply": "279886473565953892133376524" }, { - "type": "redeemBassets", - "inputQtys": [ - "652145154212604663562240", - "1045006692061766192463872", - "533908326323566820720640" - ], - "expectedQty": "2251994585853520072765236", - "swapFee": "1352007956285883573803", + "type": "redeem", + "inputIndex": 2, + "inputQty": "953827363832980198916096", + "expectedQty": "955060488451435453534927", + "swapFee": "572296418299788119349", "reserves": [ - "8517253356294371473391179", - "4002428191922351102659159", - "22260209167948399265257260" + "44402700613169488011935163", + "133228020043724727001100026", + "101564230221719016227303341" ], - "mAssetSupply": "34680112718473529624090938" + "mAssetSupply": "278933218498539211722579777" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "691458908608923172864", - "expectedQty": "688893129641434325836", - "swapFee": "414875345165353903", + "inputQty": "3886729620451133", + "outputIndex": 2, + "expectedQty": "3934916778493630", + "swapFee": "2357977312203", "reserves": [ - "8516564463164730039065343", - "4002428191922351102659159", - "22260209167948399265257260" + "44402700617056217632386296", + "133228020043724727001100026", + "101564230217784099448809711" ], - "mAssetSupply": "34679421674440265866271977" + "mAssetSupply": "278933218498541569699891980", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "90672204812861138534", - "expectedQtys": [ - "22260579194484948903", - "10461538819071975276", - "58183690291094160278" + "type": "mintMulti", + "inputQtys": [ + "2017828820040406007808", + "1736391788536113659904", + "1662888169099139481600" ], - "redemptionFee": "27201661443858341", + "expectedQty": "5429074212593552735570", "reserves": [ - "8516542202585535554116440", - "4002417730383532030683883", - "22260150984258108171096982" + "44404718445876258038394104", + "133229756435513263114759930", + "101565893105953198588291311" ], - "mAssetSupply": "34679331029437114448991784" + "mAssetSupply": "278938647572754163252627550" }, { "type": "mint", "inputIndex": 1, - "inputQty": "614036348741741730332672", - "expectedQty": "629189841629850146924796", + "inputQty": "2995768387856675553411072", + "expectedQty": "2982786713680988881337133", "reserves": [ - "8516542202585535554116440", - "4616454079125273761016555", - "22260150984258108171096982" + "44404718445876258038394104", + "136225524823369938668171002", + "101565893105953198588291311" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "3952451526504690483200", - "outputIndex": 2, - "expectedQty": "4001944323268352989380", - "swapFee": "2379692038229707445", + "type": "redeem", + "inputIndex": 2, + "inputQty": "486172321868255558893568", + "expectedQty": "486745663831350300087363", + "swapFee": "291703393120953335336", "reserves": [ - "8520494654112040244599640", - "4616454079125273761016555", - "22256149039934839818107602" + "44404718445876258038394104", + "136225524823369938668171002", + "101079147442121848288203948" ], - "mAssetSupply": "35308523250759002825624025", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "281435553667960017528406451" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "29536973994122203365376", - "expectedQty": "29255019861153449253491", - "reserves": [ - "8520494654112040244599640", - "4616454079125273761016555", - "22285686013928962021472978" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6308597578220112730652672", - "hardLimitError": true - }, - { - "type": "redeemMasset", - "inputQty": "289466218022081501593", - "expectedQtys": [ - "69773923694692537465", - "37803921923885922364", - "182496418170900849487" - ], - "redemptionFee": "86839865406624450", + "inputQty": "392751442996489353166848", + "outputIndex": 0, + "expectedQty": "387345892625079246011523", + "swapFee": "235232825842950289873", "reserves": [ - "8520424880188345552062175", - "4616416275203349875094191", - "22285503517510791120623491" + "44017372553251178792382581", + "136225524823369938668171002", + "101471898885118337641370796" ], - "mAssetSupply": "35337488891241999600000373" + "mAssetSupply": "281435788900785860478696324", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "453430948490065100564070", - "expectedQtys": [ - "109296541119504428725239", - "59217508321763297840381", - "285869365180840200420789" - ], - "redemptionFee": "136029284547019530169", + "type": "redeem", + "inputIndex": 2, + "inputQty": "123352567784054382919680", + "expectedQty": "123503121243040321618238", + "swapFee": "74011540670432629751", "reserves": [ - "8411128339068841123336936", - "4557198766881586577253810", - "21999634152329950920202702" + "44017372553251178792382581", + "136225524823369938668171002", + "101348395763875297319752558" ], - "mAssetSupply": "34884193972036481518966472" + "mAssetSupply": "281312510344542476528406395" }, { "type": "redeemBassets", "inputQtys": [ - "3400873902978998730752", - "2732640882417535025152", - "6631362876440069537792" + "11715550038054246400", + "9843049315914061824", + "14697045921742702592" ], - "expectedQty": "12771625376689278700535", - "swapFee": "7667575771476453092", + "expectedQty": "36321519889805432075", + "swapFee": "21805995531201980", "reserves": [ - "8407727465165862124606184", - "4554466125999169042228658", - "21993002789453510850664910" + "44017360837701140738136181", + "136225514980320622754109178", + "101348381066829375577049966" ], - "mAssetSupply": "34871422346659792240265937" + "mAssetSupply": "281312474023022586722974320" }, { - "type": "redeemBassets", - "inputQtys": [ - "10816729869031936360448", - "21702041365864597422080", - "15001391454986067509248" - ], - "expectedQty": "47879140388985467907933", - "swapFee": "28744731072034501445", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5906214780743526121472", + "expectedQty": "5929112730418711822157", + "swapFee": "3543728868446115672", "reserves": [ - "8396910735296830188245736", - "4532764084633304444806578", - "21978001397998524783155662" + "44017360837701140738136181", + "136219585867590204042287021", + "101348381066829375577049966" ], - "mAssetSupply": "34823543206270806772358004" + "mAssetSupply": "281306571351970711642968520" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4736671979440877600768", - "expectedQty": "4691215696654232682154", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3166713102270747836940288", + "expectedQty": "3125485966081405485896663", + "swapFee": "1900027861362448702164", "reserves": [ - "8396910735296830188245736", - "4532764084633304444806578", - "21982738069977965660756430" - ] + "40891874871619735252239518", + "136219585867590204042287021", + "101348381066829375577049966" + ], + "mAssetSupply": "278141758277561326254730396" }, { "type": "redeemMasset", - "inputQty": "120031871870049996", + "inputQty": "878613153845244258261401", "expectedQtys": [ - "28930394007392578", - "15617011427758622", - "75738482136346039" + "129133291341360620043802", + "430170627379263841799204", + "320050133684655822217500" ], - "redemptionFee": "36009561561014", + "redemptionFee": "263583946153573277478", "reserves": [ - "8396910706366436180853158", - "4532764069016293017047956", - "21982737994239483524410391" + "40762741580278374632195716", + "135789415240210940200487817", + "101028330933144719754832466" ], - "mAssetSupply": "34828234301971598696551176" + "mAssetSupply": "277263408707662235569746473" }, { - "type": "redeemBassets", - "inputQtys": [ - "3407561549512836221239296", - "429792589014081248165888", - "2299547634219674874413056" - ], - "expectedQty": "6145855122781697843538141", - "swapFee": "3689726909814907650713", + "type": "swap", + "inputIndex": 2, + "inputQty": "32033071779555464708096", + "outputIndex": 0, + "expectedQty": "31517236142841072780586", + "swapFee": "19179103646546749340", "reserves": [ - "4989349156853599959613862", - "4102971480002211768882068", - "19683190360019808649997335" + "40731224344135533559415130", + "135789415240210940200487817", + "101060364004924275219540562" ], - "mAssetSupply": "28682379179189900853013035" + "mAssetSupply": "277263427886765882116495813", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2954733743142800", - "expectedQty": "2993250204627314", + "type": "mintMulti", + "inputQtys": [ + "781740150318864151871488", + "1510944719096447819055104", + "11048720468706955154685952" + ], + "expectedQty": "13318235748497043092413988", "reserves": [ - "4989349159808333702756662", - "4102971480002211768882068", - "19683190360019808649997335" - ] + "41512964494454397711286618", + "137300359959307388019542921", + "112109084473631230374226514" + ], + "mAssetSupply": "290581663635262925208909801" }, { - "type": "redeemMasset", - "inputQty": "746096239095298654208", - "expectedQtys": [ - "129745787810547013941", - "106695933675153539190", - "511852539897977286701" + "type": "mintMulti", + "inputQtys": [ + "26591209975730913280", + "56646996750815035392", + "46868459382630006784" ], - "redemptionFee": "223828871728589596", + "expectedQty": "130101051918317234982", "reserves": [ - "4989219414020523155742721", - "4102864784068536615342878", - "19682678507479910672710634" + "41512991085664373442199898", + "137300416606304138834578313", + "112109131342090613004233298" ], - "mAssetSupply": "28681633309772927487575737" + "mAssetSupply": "290581793736314843526144783" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10110295201377979203584", - "3317140386770876628992", - "2745888591930055458816" + "584123978462990696448", + "212959884769654931456", + "1424337446211802103808" ], - "expectedQty": "16339275305290453362035", - "swapFee": "9809450853686483907", + "expectedQty": "2224960523948161810983", "reserves": [ - "4979109118819145176539137", - "4099547643681765738713886", - "19679932618887980617251818" + "41513575209642836432896346", + "137300629566188908489509769", + "112110555679536824806337106" ], - "mAssetSupply": "28665294034467637034213702" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "4792252239589629237395456", - "outputIndex": 0, - "hardLimitError": true + "mAssetSupply": "290584018696838791687955766" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1080746522509588589182976", - "expectedQty": "1050623120856190684900758", - "swapFee": "648447913505753153509", + "type": "mintMulti", + "inputQtys": [ + "160058059679434047488", + "155711222697504604160", + "9151224836067416064" + ], + "expectedQty": "326489788498126219276", "reserves": [ - "4979109118819145176539137", - "3048924522825575053813128", - "19679932618887980617251818" + "41513735267702515866943834", + "137300785277411605994113929", + "112110564830761660873753170" ], - "mAssetSupply": "27585195959871554198184235" + "mAssetSupply": "290584345186627289814175042" }, { "type": "redeemBassets", "inputQtys": [ - "37454405598496751616", - "23588889200688992256", - "26817522934787330048" + "510278729577782310862848", + "945033397482959671394304", + "1112697947258428575449088" ], - "expectedQty": "88852910373103169652", - "swapFee": "53343752475347110", + "expectedQty": "2567983195846995092397794", + "swapFee": "1541714946476082705061", "reserves": [ - "4979071664413546679787521", - "3048900933936374364820872", - "19679905801365045829921770" + "41003456538124733556080986", + "136355751879928646322719625", + "110997866883503232298304082" ], - "mAssetSupply": "27585107106961181095014583" + "mAssetSupply": "288016361990780294721777248" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "6249547867164318720", - "expectedQty": "6015618651639793016", - "swapFee": "3749728720298591", + "inputIndex": 2, + "inputQty": "33191297086043902181376", + "expectedQty": "33262884340893396373050", + "swapFee": "19914778251626341308", "reserves": [ - "4979071664413546679787521", - "3048894918317722725027856", - "19679905801365045829921770" + "41003456538124733556080986", + "136355751879928646322719625", + "110964603999162338901931032" ], - "mAssetSupply": "27585100861163042650994454" + "mAssetSupply": "287983190608472502445937180" }, { - "type": "redeemBassets", - "inputQtys": [ - "152126217497905440", - "301344821838192576", - "248378766261962848" + "type": "redeemMasset", + "inputQty": "440121995067875498393", + "expectedQtys": [ + "62646396483040903144", + "208328692657183280798", + "169535282257281471370" ], - "expectedQty": "711568929218049065", - "swapFee": "427197676136511", + "redemptionFee": "132036598520362649", "reserves": [ - "4979071512287329181882081", - "3048894616972900886835280", - "19679905552986279567958922" + "41003393891728250515177842", + "136355543551235989139438827", + "110964434463880081620459662" ], - "mAssetSupply": "27585100149594113432945389" + "mAssetSupply": "287982750618514033090801436" }, { "type": "mint", "inputIndex": 2, - "inputQty": "74574536717923713024", - "expectedQty": "73411446969912757828", + "inputQty": "1003248183315003510620160", + "expectedQty": "1000457429641237125748242", "reserves": [ - "4979071512287329181882081", - "3048894616972900886835280", - "19679980127522997491671946" + "41003393891728250515177842", + "136355543551235989139438827", + "111967682647195085131079822" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "148501326331408099049472", - "621353255646068765360128", - "595457665445109354725376" - ], - "expectedQty": "1386343354884468286609857", - "swapFee": "832305396168382001166", + "type": "redeem", + "inputIndex": 1, + "inputQty": "28839916741560048287744", + "expectedQty": "28956388845979486172626", + "swapFee": "17303950044936028972", "reserves": [ - "4830570185955921082832609", - "2427541361326832121475152", - "19084522462077888136946570" + "41003393891728250515177842", + "136326587162390009653266201", + "111967682647195085131079822" ], - "mAssetSupply": "26198830206156615059093360" + "mAssetSupply": "288954385435363755104290906" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "12542764255776310558720", + "expectedQty": "12507463296899712988653", + "reserves": [ + "41003393891728250515177842", + "136326587162390009653266201", + "111980225411450861441638542" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "20156990838668107776", - "expectedQty": "19864444393710833172", - "swapFee": "12094194503200864", + "inputIndex": 2, + "inputQty": "57659166264773715165184", + "expectedQty": "57787127007434456121918", + "swapFee": "34595499758864229099", "reserves": [ - "4830550321511527371999437", - "2427541361326832121475152", - "19084522462077888136946570" + "41003393891728250515177842", + "136326587162390009653266201", + "111922438284443426985516624" ], - "mAssetSupply": "26198810061259970894186448" + "mAssetSupply": "288909268327895639966343474" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "35085151555971824222208", - "expectedQty": "37063042500980907448679", + "inputIndex": 2, + "inputQty": "9215815388346209703821312", + "expectedQty": "9187292342403342032168362", "reserves": [ - "4830550321511527371999437", - "2462626512882803945697360", - "19084522462077888136946570" + "41003393891728250515177842", + "136326587162390009653266201", + "121138253672789636689337936" ] }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "141812528051246765965312", + "expectedQty": "142206364343476091950699", + "swapFee": "85087516830748059579", + "reserves": [ + "41003393891728250515177842", + "136326587162390009653266201", + "120996047308446160597387237" + ], + "mAssetSupply": "297954833229764565980606103" + }, { "type": "redeemBassets", "inputQtys": [ - "1595155314239121391616", - "1290834385460955447296", - "604946729384774074368" + "420989497736035696640", + "851019986374527942656", + "438417456692254932992" + ], + "expectedQty": "1711768582976553307048", + "swapFee": "1027677756439795861", + "reserves": [ + "41002972902230514479481202", + "136325736142403635125323545", + "120995608890989468342454245" + ], + "mAssetSupply": "297953121461181589427299055" + }, + { + "type": "redeemMasset", + "inputQty": "364102387367749987650764", + "expectedQtys": [ + "50091106498862052282788", + "166541752568224981127351", + "147813768170051711592362" ], - "expectedQty": "3574159494064555815064", - "swapFee": "2145783166338536611", + "redemptionFee": "109230716210324996295", "reserves": [ - "4828955166197288250607821", - "2461335678497342990250064", - "19083917515348503362872202" + "40952881795731652427198414", + "136159194389835410144196194", + "120847795122819416630861883" ], - "mAssetSupply": "26232298944266887245820063" + "mAssetSupply": "297589128304530049764644586" }, { "type": "swap", "inputIndex": 0, - "inputQty": "8674845342901542912", + "inputQty": "2094793576610698100736", "outputIndex": 1, - "expectedQty": "8328490577456907590", - "swapFee": "5278205581553339", + "expectedQty": "2135961441764647946143", + "swapFee": "1276623306652805742", "reserves": [ - "4828963841042631152150733", - "2461327350006765533342474", - "19083917515348503362872202" + "40954976589308263125299150", + "136157058428393645496250051", + "120847795122819416630861883" ], - "mAssetSupply": "26232298949545092827373402", + "mAssetSupply": "297589129581153356417450328", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "22774840674818315413094", - "expectedQtys": [ - "4191241059391783361475", - "2136279456531398508655", - "16563656572567105204681" - ], - "redemptionFee": "6832452202445494623", + "type": "swap", + "inputIndex": 1, + "inputQty": "51551153616158678543499264", + "outputIndex": 2, + "expectedQty": "51210015493168024075474183", + "swapFee": "30750587780072827356670", "reserves": [ - "4824772599983239368789258", - "2459191070550234134833819", - "19067353858775936257667521" + "40954976589308263125299150", + "187708212044552324039749315", + "69637779629651392555387700" ], - "mAssetSupply": "26209530941322476957454931" + "mAssetSupply": "297619880168933429244806998", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "17007363323959070162944", + "expectedQty": "16849322182242529664183", + "reserves": [ + "40954976589308263125299150", + "187725219407876283109912259", + "69637779629651392555387700" + ] }, { "type": "redeemMasset", - "inputQty": "1788755127812675862528", + "inputQty": "11640729707428153026150", "expectedQtys": [ - "329183595351140344169", - "167785183961200178652", - "1300923508205569417373" + "1601290236326886419369", + "7339829881104860605182", + "2722753274129695803574" ], - "redemptionFee": "536626538343802758", + "redemptionFee": "3492218912228445907", "reserves": [ - "4824443416387888228445089", - "2459023285366272934655167", - "19066052935267730688250148" + "40953375299071936238879781", + "187717879577995178249307077", + "69635056876377262859584126" ], - "mAssetSupply": "26207742722821202625395161" + "mAssetSupply": "297625092253627155849890938" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "644465252963878144", + "expectedQty": "656710257648340128", + "reserves": [ + "40953375943537189202757925", + "187717879577995178249307077", + "69635056876377262859584126" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "219213760143508809711616", - "expectedQty": "206534029279899502216120", - "swapFee": "131528256086105285826", + "inputIndex": 2, + "inputQty": "262805471064058021019648", + "expectedQty": "261568511626736729831791", + "swapFee": "157683282638434812611", "reserves": [ - "4824443416387888228445089", - "2252489256086373432439047", - "19066052935267730688250148" + "40953375943537189202757925", + "187717879577995178249307077", + "69373488364750526129752335" ], - "mAssetSupply": "25988660490933779920969371" + "mAssetSupply": "297362445122555993912024029" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6167871193275934179328", - "58131651699236006789120", - "39393757156187570176000" + "1040520156159674433929216", + "1783404399294861189054464", + "628518081596056104075264" ], - "expectedQty": "106785822980083882976413", + "expectedQty": "3458417162272726628712541", + "swapFee": "2076296075008641161924", "reserves": [ - "4830611287581164162624417", - "2310620907785609439228167", - "19105446692423918258426148" + "39912855787377514768828709", + "185934475178700317060252613", + "68744970283154470025677071" ], - "mAssetSupply": "26095446313913863803945784" + "mAssetSupply": "293904027960283267283311488" }, { - "type": "redeemMasset", - "inputQty": "21145906299412423272038", - "expectedQtys": [ - "3913211835182545897049", - "1871802251241471187057", - "15477059871376852130251" + "type": "redeemBassets", + "inputQtys": [ + "872169381013289208643584", + "830906018719744166723584", + "248920965692271542403072" ], - "redemptionFee": "6343771889823726981", + "expectedQty": "1962573283922673079726765", + "swapFee": "1178250920906147536357", "reserves": [ - "4826698075745981616727368", - "2308749105534367968041110", - "19089969632552541406295897" + "39040686406364225560185125", + "185103569159980572893529029", + "68496049317462198483273999" ], - "mAssetSupply": "26074306751386341204400727" + "mAssetSupply": "291941454676360594203584723" }, { "type": "redeemMasset", - "inputQty": "7803652773317434775961", + "inputQty": "108551312748908963587686", "expectedQtys": [ - "1444125683610421437308", - "690767027063210011446", - "5711630396821817638856" + "14511972578193662884757", + "68805601720606989401499", + "25460945513692940173856" ], - "redemptionFee": "2341095831995230432", + "redemptionFee": "32565393824672689076", "reserves": [ - "4825253950062371195290060", - "2308058338507304758029664", - "19084258002155719588657041" + "39026174433786031897300368", + "185034763558259965904127530", + "68470588371948505543100143" ], - "mAssetSupply": "26066505439708855764855198" + "mAssetSupply": "291832935929005509912686113" }, { - "type": "mintMulti", - "inputQtys": [ - "54328540513870962688", - "51742305491512000512", - "49246071405737582592" - ], - "expectedQty": "158426655429219199593", + "type": "mint", + "inputIndex": 2, + "inputQty": "20562371509091500556288", + "expectedQty": "20645820201860791004301", "reserves": [ - "4825308278602885066252748", - "2308110080812796270030176", - "19084307248227125326239633" - ], - "mAssetSupply": "26066663866364284984054791" + "39026174433786031897300368", + "185034763558259965904127530", + "68491150743457597043656431" + ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "787226844437070592606208", - "expectedQty": "771658952000492670647555", + "inputIndex": 1, + "inputQty": "15523536003663984066560", + "expectedQty": "15374829771705039068990", "reserves": [ - "4825308278602885066252748", - "2308110080812796270030176", - "19871534092664195918845841" + "39026174433786031897300368", + "185050287094263629888194090", + "68491150743457597043656431" ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "14357632215548094840832", + "inputQty": "35970466983580", "outputIndex": 1, - "expectedQty": "13142845894231117910590", - "swapFee": "8439131122382103318", + "expectedQty": "36443861245576", + "swapFee": "21669839801", "reserves": [ - "4825308278602885066252748", - "2294967234918565152119586", - "19885891724879744013686673" + "39026174433786031897300368", + "185050287094227186026948514", + "68491150743493567510640011" ], - "mAssetSupply": "26838331257495900036805664", + "mAssetSupply": "291868956578979097412599205", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "296679598219282257805312", - "expectedQty": "315044902442008205273692", + "inputQty": "77089060820081600723156992", + "expectedQty": "77575447386094618358551020", + "swapFee": "46253436492048960433894", "reserves": [ - "4825308278602885066252748", - "2591646833137847409924898", - "19885891724879744013686673" - ] + "39026174433786031897300368", + "107474839708132567668397494", + "68491150743493567510640011" + ], + "mAssetSupply": "214826149195389545649876107" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "983865452080830215094272", - "expectedQty": "995773832007489149113741", + "inputIndex": 2, + "inputQty": "1205905280320305092362240", + "expectedQty": "1205484565614957962056312", "reserves": [ - "5809173730683715281347020", - "2591646833137847409924898", - "19885891724879744013686673" + "39026174433786031897300368", + "107474839708132567668397494", + "69697056023813872603002251" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "64342287781579120967680", - "132673364491950845067264", - "66365337234640428072960" - ], - "expectedQty": "269694988037543973909506", - "reserves": [ - "5873516018465294402314700", - "2724320197629798254992162", - "19952257062114384441759633" - ], - "mAssetSupply": "28418844979982941365102603" - }, { "type": "swap", - "inputIndex": 1, - "inputQty": "4444183292324316971008", - "outputIndex": 0, - "expectedQty": "4618496958924988924027", - "swapFee": "2797039124261210174", + "inputIndex": 0, + "inputQty": "1339880821079105123385344", + "outputIndex": 2, + "expectedQty": "1349868476865110242775024", + "swapFee": "810222854619330241812", "reserves": [ - "5868897521506369413390673", - "2728764380922122571963170", - "19952257062114384441759633" + "40366055254865137020685712", + "107474839708132567668397494", + "68347187546948762360227227" ], - "mAssetSupply": "28418847777022065626312777", + "mAssetSupply": "216032443983859122942174231", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "17094706776339774439424", - "expectedQty": "16283810629337080177017", - "swapFee": "10256824065803864663", + "type": "mintMulti", + "inputQtys": [ + "92160071807238548750336", + "26147390062669066141696", + "32531966919450342457344" + ], + "expectedQty": "151408998106712552816770", "reserves": [ - "5868897521506369413390673", - "2712480570292785491786153", - "19952257062114384441759633" + "40458215326672375569436048", + "107500987098195236734539190", + "68379719513868212702684571" ], - "mAssetSupply": "28401763327069791655738016" + "mAssetSupply": "216183852981965835494991001" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "524959144471551191023616", - "62445126453425740972032", - "464612706732916699299840" + "21777532078352603545600", + "395080846906432914718720", + "1390350546660594108334080" ], - "expectedQty": "1052734606972434592730375", - "swapFee": "632019976169162252990", + "expectedQty": "1805445251201607966302099", "reserves": [ - "5343938377034818222367057", - "2650035443839359750814121", - "19487644355381467742459793" + "40479992858750728172981648", + "107896067945101669649257910", + "69770070060528806811018651" ], - "mAssetSupply": "27349028720097357063007641" + "mAssetSupply": "217989298233167443461293100" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "52128602583823313534976", - "expectedQty": "49590235498679896753368", - "swapFee": "31277161550293988120", - "reserves": [ - "5343938377034818222367057", - "2600445208340679854060753", - "19487644355381467742459793" + "type": "redeemMasset", + "inputQty": "231502029994493561169510", + "expectedQtys": [ + "42976371944582419073887", + "114549959619477311662978", + "74072752235495256382911" ], - "mAssetSupply": "27296931394675084043460785" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "81798235724031568379904", - "expectedQty": "83144448075280347391217", - "swapFee": "49078941434418941027", + "redemptionFee": "69450608998348068350", "reserves": [ - "5343938377034818222367057", - "2600445208340679854060753", - "19404499907306187395068576" + "40437016486806145753907761", + "107781517985482192337594932", + "69695997308293311554635740" ], - "mAssetSupply": "27215182237892486894021908" + "mAssetSupply": "217757865653781948248191940" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "319228165136450400026624", - "expectedQty": "301599355826092126015970", - "swapFee": "191536899081870240015", + "inputQty": "415027262412063456100352", + "expectedQty": "416480140455785042168308", + "swapFee": "249016357447238073660", "reserves": [ - "5343938377034818222367057", - "2298845852514587728044783", - "19404499907306187395068576" + "40437016486806145753907761", + "107365037845026407295426624", + "69695997308293311554635740" ], - "mAssetSupply": "26896145609655118364235299" + "mAssetSupply": "217343087407727332030165248" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "301719787232652100108288", - "737766263356418804416512", - "5540109368373263990784" + "13804514008640102858752", + "20126887228586342744064", + "13039532738674537005056" ], - "expectedQty": "1084380645909347210304401", + "expectedQty": "46988538754695613104113", + "swapFee": "28210049282386799942", "reserves": [ - "5645658164267470322475345", - "3036612115871006532461295", - "19410040016674560659059360" + "40423211972797505651049009", + "107344910957797820952682560", + "69682957775554637017630684" ], - "mAssetSupply": "27980526255564465574539700" + "mAssetSupply": "217296098868972636417061135" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2003842884433664823787520", + "expectedQty": "2018051138068731494286592", + "reserves": [ + "42427054857231170474836529", + "107344910957797820952682560", + "69682957775554637017630684" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "174891128208264053915648", + "expectedQty": "176057788812745468867257", + "reserves": [ + "42601945985439434528752177", + "107344910957797820952682560", + "69682957775554637017630684" + ] }, { "type": "mintMulti", "inputQtys": [ - "23987543581404729344", - "4768318220431024128", - "32997981196013031424" + "39080269039248220160", + "378472695328946847744", + "125669613248518881280" ], - "expectedQty": "61679141667272661194", + "expectedQty": "542007419504433265572", "reserves": [ - "5645682151811051727204689", - "3036616884189226963485423", - "19410073014655756672090784" + "42601985065708473776972337", + "107345289430493149899530304", + "69683083445167885536511964" ], - "mAssetSupply": "27980587934706132847200894" + "mAssetSupply": "219490749803273617813480556" }, { "type": "mintMulti", "inputQtys": [ - "141920415750624836059136", - "136150392074321598087168", - "130591378640796987162624" + "2029499291464532492288", + "1785963367081014460416", + "3497303168740514856960" ], - "expectedQty": "412964273190864882443848", + "expectedQty": "7318922553828658407265", "reserves": [ - "5787602567561676563263825", - "3172767276263548561572591", - "19540664393296553659253408" + "42604014564999938309464625", + "107347075393860230913990720", + "69686580748336626051368924" ], - "mAssetSupply": "28393552207896997729644742" + "mAssetSupply": "219498068725827446471887821" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "65333883774679419715584", - "expectedQty": "65880850715140793479906", + "inputIndex": 1, + "inputQty": "205714701277861280", + "expectedQty": "204921653712401448", "reserves": [ - "5852936451336355982979409", - "3172767276263548561572591", - "19540664393296553659253408" + "42604014564999938309464625", + "107347075599574932191852000", + "69686580748336626051368924" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "114168989432251687108608", - "9924719520808802713600", - "32724800674046444306432" - ], - "expectedQty": "157681833640253344256026", - "swapFee": "94665899723986398392", - "reserves": [ - "5738767461904104295870801", - "3162842556742739758858991", - "19507939592622507214946976" - ], - "mAssetSupply": "28301751224971885178868622" - }, { "type": "redeemMasset", - "inputQty": "8474747769951666176", + "inputQty": "1111847583132560362412441", "expectedQtys": [ - "1717915473906024245", - "946805425699202119", - "5839754182873039262" + "215742034111435210536419", + "543593759466792702026668", + "352885164330685567353141" ], - "redemptionFee": "2542424330985499", + "redemptionFee": "333554274939768108723", "reserves": [ - "5738765743988630389846556", - "3162841609937314059656872", - "19507933752868324341907714" + "42388272530888503098928206", + "106803481840108139489825332", + "69333695584005940484015783" ], - "mAssetSupply": "28301742752766539558187945" + "mAssetSupply": "218386554901891479589985551" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1803172098208524218138624", - "expectedQty": "1776003646137010665235910", - "swapFee": "1081903258925114530883", + "inputIndex": 1, + "inputQty": "314476731303219976732672", + "expectedQty": "315501269952739588043503", + "swapFee": "188686038781931986039", "reserves": [ - "3962762097851619724610646", - "3162841609937314059656872", - "19507933752868324341907714" + "42388272530888503098928206", + "106487980570155399901781829", + "69333695584005940484015783" ], - "mAssetSupply": "26499652557816940454580204" + "mAssetSupply": "218072266856627041545238918" }, { - "type": "redeemMasset", - "inputQty": "31929059744336176742", - "expectedQtys": [ - "4773244076260565738", - "3809720242092868267", - "23497784355120498598" + "type": "mintMulti", + "inputQtys": [ + "95329656935841001373696", + "94593781967535822864384", + "40780143782524400697344" ], - "redemptionFee": "9578717923300853", + "expectedQty": "230964497086357102697746", "reserves": [ - "3962757324607543464044908", - "3162837800217071966788605", - "19507910255083969221409116" + "42483602187824344100301902", + "106582574352122935724646213", + "69374475727788464884713127" ], - "mAssetSupply": "26499620638335914041704315" + "mAssetSupply": "218303231353713398647936664" }, { - "type": "redeemMasset", - "inputQty": "13137614506129473352499", - "expectedQtys": [ - "1964011502991446550182", - "1567557463877173007946", - "9668459863134356862557" + "type": "mintMulti", + "inputQtys": [ + "57725855741885726851072", + "5848256634725346574336", + "48517617556882987155456" ], - "redemptionFee": "3941284351838842005", + "expectedQty": "112442797758375634122251", "reserves": [ - "3960793313104552017494726", - "3161270242753194793780659", - "19498241795220834864546559" + "42541328043566229827152974", + "106588422608757661071220549", + "69422993345345347871868583" ], - "mAssetSupply": "26486486965114136407193821" + "mAssetSupply": "218415674151471774282058915" }, { - "type": "mintMulti", - "inputQtys": [ - "39398871545114645233664", - "118651126494171962015744", - "153215737813201691082752" - ], - "expectedQty": "313681912472120911329928", + "type": "swap", + "inputIndex": 1, + "inputQty": "22982866218743580590080", + "outputIndex": 0, + "expectedQty": "22731759250462460654388", + "swapFee": "13736977206349851225", "reserves": [ - "4000192184649666662728390", - "3279921369247366755796403", - "19651457533034036555629311" + "42518596284315767366498586", + "106611405474976404651810629", + "69422993345345347871868583" ], - "mAssetSupply": "26800168877586257318523749" + "mAssetSupply": "218415687888448980631910140", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "17948618493878471753728", - "5283455007759993405440", - "17255819382903139205120" + "24964775110932012340346880", + "6709652931187033348505600", + "11074395448976852060733440" ], - "expectedQty": "40782628073700554071875", + "expectedQty": "42833314324965243524332522", "reserves": [ - "4018140803143545134482118", - "3285204824255126749201843", - "19668713352416939694834431" + "67483371395247779706845466", + "113321058406163438000316229", + "80497388794322199932602023" ], - "mAssetSupply": "26840951505659957872595624" + "mAssetSupply": "261249002213414224156242662" }, { "type": "redeemMasset", - "inputQty": "28691630943248102457344", + "inputQty": "7731772817131474570444", "expectedQtys": [ - "4293902430157786122378", - "3510665670899147045878", - "21018560622850050391737" + "1996599268567131828441", + "3352777693956948396480", + "2381638976614997799427" ], - "redemptionFee": "8607489282974430737", + "redemptionFee": "2319531845139442371", "reserves": [ - "4013846900713387348359740", - "3281694158584227602155965", - "19647694791794089644442694" + "67481374795979212575017025", + "113317705628469481051919749", + "80495007155345584934802596" ], - "mAssetSupply": "26812268482205992744569017" + "mAssetSupply": "261241272760128937821114589" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 1, + "inputQty": "8110027018889057009664", + "expectedQty": "8091765803477637790742", + "reserves": [ + "67481374795979212575017025", + "113325815655488370108929413", + "80495007155345584934802596" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "1213449568565438976", - "1267685218795633664", - "1322578695621929728" + "5513378505708654691352576", + "6884203372208528392454144", + "9386399180321134324219904" ], - "expectedQty": "3851661670465323085", - "swapFee": "2312384432938957", + "expectedQty": "21785891631396186204063495", "reserves": [ - "4013845687263818782920764", - "3281692890899008806522301", - "19647693469215394022512966" + "72994753301687867266369601", + "120210019027696898501383557", + "89881406335666719259022500" ], - "mAssetSupply": "26812264630544322279245932" + "mAssetSupply": "283035256157328601662968826" }, { "type": "mintMulti", "inputQtys": [ - "608750042818862433435648", - "1200116823386170954088448", - "60135354961018751025152" + "35697079567349457092608", + "86097026628004719099904", + "64692433787678940463104" ], - "expectedQty": "1908302859236366869602446", + "expectedQty": "186410438501475320884361", "reserves": [ - "4622595730082681216356412", - "4481809714285179760610749", - "19707828824176412773538118" + "73030450381255216723462209", + "120296116054324903220483461", + "89946098769454398199485604" ], - "mAssetSupply": "28720567489780689148848378" + "mAssetSupply": "283221666595830076983853187" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3274150066827603476480", - "782835206899250364416", - "6732890086017455882240" + "15401882186250335551488", + "49014267225405040623616", + "33189422719335791591424" ], - "expectedQty": "10772540680194556551895", - "swapFee": "6467404851027350341", + "expectedQty": "97549504304414379851998", "reserves": [ - "4619321580015853612879932", - "4481026879078280510246333", - "19701095934090395317655878" + "73045852263441467059013697", + "120345130321550308261107077", + "89979288192173733991077028" ], - "mAssetSupply": "28709794949100494592296483" + "mAssetSupply": "283319216100134491363705185" }, { - "type": "redeemBassets", - "inputQtys": [ - "44418567967334933200896", - "544068114273386564157440", - "1000860035798903174463488" - ], - "expectedQty": "1587645582446246660381461", - "swapFee": "953159245014756850339", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1220302541284393105752064", + "expectedQty": "1222069218167515423735042", + "swapFee": "732181524770635863451", "reserves": [ - "4574903012048518679679036", - "3936958764804893946088893", - "18700235898291492143192390" + "73045852263441467059013697", + "119123061103382792837372035", + "89979288192173733991077028" ], - "mAssetSupply": "27122149366654247931915022" + "mAssetSupply": "282099645740374868893816572" }, { - "type": "redeemBassets", - "inputQtys": [ - "14095088636976500310016", - "80632540921348505993216", - "63169762436428442107904" + "type": "redeemMasset", + "inputQty": "179067028357699258548224", + "expectedQtys": [ + "46353052423166812730718", + "75592485062930211266838", + "57098583058883743224190" ], - "expectedQty": "158943782846258570050005", - "swapFee": "95423523822048371052", + "redemptionFee": "53720108507309777564", "reserves": [ - "4560807923411542179369020", - "3856326223883545440095677", - "18637066135855063701084486" + "72999499211018300246282979", + "119047468618319862626105197", + "89922189609114850247852838" ], - "mAssetSupply": "26963205583807989361865017" + "mAssetSupply": "281920632432125676945045912" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "48792353348291328475136", - "expectedQty": "49386851646133303554527", - "swapFee": "29275412008974797085", + "inputQty": "10077989421099740299264", + "expectedQty": "10080249127273121670345", "reserves": [ - "4560807923411542179369020", - "3856326223883545440095677", - "18587679284208930397529959" - ], - "mAssetSupply": "26914442505871707008186966" + "72999499211018300246282979", + "119047468618319862626105197", + "89932267598535949988152102" + ] }, { "type": "mintMulti", "inputQtys": [ - "30182251968742780043264", - "76836279021800039383040", - "183207692053642215424000" + "205711299707204576", + "102539499071892016", + "151452602246984608" ], - "expectedQty": "289917462682906528327569", + "expectedQty": "460013798825141488", "reserves": [ - "4590990175380284959412284", - "3933162502905345479478717", - "18770886976262572612953959" + "72999499416729599953487555", + "119047468720859361697997213", + "89932267749988552235136710" ], - "mAssetSupply": "27204359968554613536514535" + "mAssetSupply": "281930713141266748891857745" }, { - "type": "redeemMasset", - "inputQty": "14377863917219889964646", - "expectedQtys": [ - "2425671086310845207044", - "2078104765334031726746", - "9917685741716357356402" - ], - "redemptionFee": "4313359175165966989", + "type": "swap", + "inputIndex": 1, + "inputQty": "550389969634643056525312", + "outputIndex": 0, + "expectedQty": "547627540219713926906238", + "swapFee": "329563695782445077718", "reserves": [ - "4588564504293974114205240", - "3931084398140011447751971", - "18760969290520856255597557" + "72451871876509886026581317", + "119597858690494004754522525", + "89932267749988552235136710" ], - "mAssetSupply": "27189986417996568812516878" + "mAssetSupply": "281931042704962531336935463", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "3436200374268402176", - "expectedQty": "3505490493661085092", + "inputQty": "34191120360142568161280", + "expectedQty": "34120544104685206668919", "reserves": [ - "4588564504293974114205240", - "3931087834340385716154147", - "18760969290520856255597557" + "72451871876509886026581317", + "119632049810854147322683805", + "89932267749988552235136710" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1286492127529209167872", - "267006425755919613952", - "6725233661064925675520" + "1352502839041196032000", + "1303176673394897977344", + "131843679517347364864" ], - "expectedQty": "8218101997381509641661", + "expectedQty": "2788154922502654488176", + "swapFee": "1673897291876718724", "reserves": [ - "4589850996421503323373112", - "3931354840766141635768099", - "18767694524181921181273077" + "72450519373670844830549317", + "119630746634180752424706461", + "89932135906309034887771846" ], - "mAssetSupply": "27198208025484443983243631" + "mAssetSupply": "281962375094144713889116206" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3335332140977132832555008", - "expectedQty": "3287890954530913580806902", + "type": "swap", + "inputIndex": 1, + "inputQty": "25991444891461454126907392", + "outputIndex": 2, + "expectedQty": "25848187928745274620769620", + "swapFee": "15554025193299734186890", "reserves": [ - "4589850996421503323373112", - "3931354840766141635768099", - "22103026665159054013828085" - ] + "72450519373670844830549317", + "145622191525642206551613853", + "64083947977563760267002226" + ], + "mAssetSupply": "281977929119338013623303096", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "1658631725999037952", - "2020261656157258496", - "237243298925195328" + "17967171646615346741248", + "13803075896927034802176", + "3540161893155697328128" ], - "expectedQty": "4007521021052727772", - "swapFee": "2405956186343442", + "expectedQty": "35309548302756247205241", + "swapFee": "21198448050484038746", "reserves": [ - "4589849337789777324335160", - "3931352820504485478509603", - "22103026427915755088632757" + "72432552202024229483808069", + "145608388449745279516811677", + "64080407815670604569674098" ], - "mAssetSupply": "30486094972494336511322761" + "mAssetSupply": "281942619571035257376097855" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "4723813471571015303692288", - "outputIndex": 0, - "hardLimitError": true + "type": "redeemBassets", + "inputQtys": [ + "9801995788217471234736128", + "446294316446910664146944", + "12801856420047628324044800" + ], + "expectedQty": "23142485704809864092620280", + "swapFee": "13893827719517629032991", + "reserves": [ + "62630556413806758249071941", + "145162094133298368852664733", + "51278551395622976245629298" + ], + "mAssetSupply": "258800133866225393283477575" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "47065061890906205978624", - "expectedQty": "46034598465715226522820", - "swapFee": "28239037134543723587", + "inputQty": "6340081992401164267683840", + "expectedQty": "6357106727442637805486577", "reserves": [ - "4543814739324062097812340", - "3931352820504485478509603", - "22103026427915755088632757" - ], - "mAssetSupply": "30439058149640564849067724" + "68970638406207922516755781", + "145162094133298368852664733", + "51278551395622976245629298" + ] }, { "type": "redeemMasset", - "inputQty": "107732824007165452746752", + "inputQty": "1114398382445199849475276", "expectedQtys": [ - "16077078857988659184381", - "13910045400140824082179", - "78205675025974135712557" + "289781676237442888611057", + "609901777570010903423010", + "215447977890748480219902" + ], + "redemptionFee": "334319514733559954842", + "reserves": [ + "68680856729970479628144724", + "144552192355728357949241723", + "51063103417732227765409396" ], - "redemptionFee": "32319847202149635824", + "mAssetSupply": "264043176530737564799443718" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "4224315692289700097163264", + "outputIndex": 1, + "expectedQty": "4250748456482227430443279", + "swapFee": "2539320648677112319431", "reserves": [ - "4527737660466073438627959", - "3917442775104344654427424", - "22024820752889780952920200" + "72905172422260179725307988", + "140301443899246130518798444", + "51063103417732227765409396" ], - "mAssetSupply": "30331357645480601545956796" + "mAssetSupply": "264045715851386241911763149", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "60254721732362133540175872", + "expectedQty": "59861712200974378585850458", + "reserves": [ + "72905172422260179725307988", + "200556165631608264058974316", + "51063103417732227765409396" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "32051266915767992320", - "expectedQty": "31114270024008849485", - "swapFee": "19230760149460795", + "inputQty": "36559771123426997043200", + "expectedQty": "36842053358870816302309", + "swapFee": "21935862674056198225", "reserves": [ - "4527737660466073438627959", - "3917411660834320645577939", - "22024820752889780952920200" + "72905172422260179725307988", + "200519323578249393242672007", + "51063103417732227765409396" ], - "mAssetSupply": "30331325613444445927425271" + "mAssetSupply": "323870890217099867556768632" }, { "type": "redeemMasset", - "inputQty": "224118454330314521", + "inputQty": "9795653160133426413568", "expectedQtys": [ - "33445460120520813", - "28937108397885989", - "162692788185207621" + "2204395510861821605906", + "6062997755176813241877", + "1543968311229901857556" ], - "redemptionFee": "67235536299094", + "redemptionFee": "2938695948040027924", "reserves": [ - "4527737627020613318107146", - "3917411631897212247691950", - "22024820590196992767712579" + "72902968026749317903702082", + "200513260580494216429430130", + "51061559449420997863551840" ], - "mAssetSupply": "30331325389393227133409844" + "mAssetSupply": "323861097502635682170382988" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "29157781063622123520", + "expectedQty": "29552278538212443256", + "reserves": [ + "72902968026749317903702082", + "200513260580494216429430130", + "51061588607202061485675360" + ] }, { "type": "redeemBassets", "inputQtys": [ - "132006028639902336286720", - "109209960484369179082752", - "25549650536040782364672" + "4421931020344967680", + "225286707814677184", + "1040212453256382208" ], - "expectedQty": "272686261697518171584815", - "swapFee": "163709983008315892486", + "expectedQty": "5720748765392633085", + "swapFee": "3434509965214708", "reserves": [ - "4395731598380710981820426", - "3808201671412843068609198", - "21999270939660951985347907" + "72902963604818297558734402", + "200513260355207508614752946", + "51061587566989608229293152" ], - "mAssetSupply": "30058639127695708961825029" + "mAssetSupply": "323861121334165454990193159" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "1539017697354786680078336", - "expectedQty": "1562902758095526012722544", - "swapFee": "923410618412872008047", + "inputIndex": 1, + "inputQty": "174343007223756032573440", + "expectedQty": "175688002754455456869987", + "swapFee": "104605804334253619544", "reserves": [ - "4395731598380710981820426", - "3808201671412843068609198", - "20436368181565425972625363" + "72902963604818297558734402", + "200337572352453053157882959", + "51061587566989608229293152" ], - "mAssetSupply": "28520544840959335153754740" + "mAssetSupply": "323686882932746033211239263" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2053998107750207062016", - "outputIndex": 2, - "expectedQty": "2124961927318041362683", - "swapFee": "1256594794136312428", + "type": "mintMulti", + "inputQtys": [ + "483068731168976474734592", + "475552574769401119637504", + "88405019246324512456704" + ], + "expectedQty": "1046587081156333527087170", "reserves": [ - "4397785596488461188882442", - "3808201671412843068609198", - "20434243219638107931262680" + "73386032335987274033468994", + "200813124927222454277520463", + "51149992586235932741749856" ], - "mAssetSupply": "28520546097554129290067168", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "324733470013902366738326433" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "50896868256439566336", + "expectedQty": "50186837804423313357", + "swapFee": "30538120953863739", + "reserves": [ + "73386032335987274033468994", + "200813124927222454277520463", + "51149942399398128318436499" + ], + "mAssetSupply": "324733419147572231252623836" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "977190243069263744", - "expectedQty": "957814153127971298", - "swapFee": "586314145841558", + "inputQty": "1230360982977447133708288", + "expectedQty": "1223715070452501694493444", + "swapFee": "738216589786468280224", "reserves": [ - "4397784638674308060911144", - "3808201671412843068609198", - "20434243219638107931262680" + "72162317265534772338975550", + "200813124927222454277520463", + "51149942399398128318436499" ], - "mAssetSupply": "28520545120950200366644982" + "mAssetSupply": "323503796381184570587195772" }, { "type": "mintMulti", "inputQtys": [ - "8482477482219702059008", - "5400363913573768888320", - "6887709356824165613568" + "16849842342787085762560", + "804358216172463587328", + "10078692041904091037696" ], - "expectedQty": "20976003525831813867264", + "expectedQty": "27945776337604730990360", "reserves": [ - "4406267116156527762970152", - "3813602035326416837497518", - "20441130928994932096876248" + "72179167107877559424738110", + "200813929285438626741107791", + "51160021091440032409474195" ], - "mAssetSupply": "28541521124476032180512246" + "mAssetSupply": "323531742157522175318186132" }, { "type": "mintMulti", "inputQtys": [ - "1518738093674468994973696", - "3686562719309066001186816", - "6241394974557582758248448" + "160035418820409696", + "329075257134766848", + "4021864455913485824" ], - "expectedQty": "11455229227376429599000578", + "expectedQty": "4563250836526171474", "reserves": [ - "5925005209830996757943848", - "7500164754635482838684334", - "26682525903552514855124696" + "72179167267912978245147806", + "200813929614513883875874639", + "51160025113304488322960019" ], - "mAssetSupply": "39996750351852461779512824" + "mAssetSupply": "323531746720773011844357606" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1806305631329428015415296", - "outputIndex": 2, - "expectedQty": "1835077309254081374915603", - "swapFee": "1091761663526095940508", + "type": "mintMulti", + "inputQtys": [ + "127327748183758143488", + "220501028015672459264", + "120169376111383494656" + ], + "expectedQty": "468417182956029669705", "reserves": [ - "5925005209830996757943848", - "9306470385964910854099630", - "24847448594298433480209093" + "72179294595661162003291294", + "200814150115541899548333903", + "51160145282680599706454675" ], - "mAssetSupply": "39997842113515987875453332", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "323532215137955967874027311" }, { "type": "redeemBassets", "inputQtys": [ - "188029007105795559522304", - "221082487839137929887744", - "311843975744566090268672" + "137364341079439", + "241240939335738", + "175224667557099" ], - "expectedQty": "722201552172090184473778", - "swapFee": "433581079951224845591", + "expectedQty": "554868564485504", + "swapFee": "333121011298", "reserves": [ - "5736976202725201198421544", - "9085387898125772924211886", - "24535604618553867389940421" + "72179294595523797662211855", + "200814150115300658608998165", + "51160145282505375038897576" ], - "mAssetSupply": "39275640561343897690979554" + "mAssetSupply": "323532215137401099309541807" }, { - "type": "swap", + "type": "mintMulti", + "inputQtys": [ + "763599951958729054748672", + "28641373320303060451328", + "789769813160118378823680" + ], + "expectedQty": "1595993727309082284286729", + "reserves": [ + "72942894547482526716960527", + "200842791488620961669449493", + "51949915095665493417721256" + ], + "mAssetSupply": "325128208864710181593828536" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "147792351632737058160640", + "expectedQty": "146586292638679851346951", + "reserves": [ + "72942894547482526716960527", + "200990583840253698727610133", + "51949915095665493417721256" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "18032753598532342224257024", + "5759988397893911557701632", + "44082283953532593766400" + ], + "expectedQty": "23852278396266231859877751", + "reserves": [ + "90975648146014868941217551", + "206750572238147610285311765", + "51993997379619026011487656" + ], + "mAssetSupply": "349127073553615093305053238" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "56296566917969592975360", + "expectedQty": "57123641418092421919342", + "reserves": [ + "90975648146014868941217551", + "206750572238147610285311765", + "52050293946536995604463016" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "14314283879712776192", + "9029783818541281280", + "4761621330628426752" + ], + "expectedQty": "28137257840022713884", + "swapFee": "16892490198132507", + "reserves": [ + "90975633831730989228441359", + "206750563208363791744030485", + "52050289184915664976036264" + ], + "mAssetSupply": "349184169057775345704258696" + }, + { + "type": "mintMulti", + "inputQtys": [ + "27041747020411612", + "10395061102915902", + "23573226538868356" + ], + "expectedQty": "61333232992575465", + "reserves": [ + "90975633858772736248852971", + "206750563218758852846946387", + "52050289208488891514904620" + ], + "mAssetSupply": "349184169119108578696834161" + }, + { + "type": "mintMulti", + "inputQtys": [ + "9443365933266989781876736", + "2682999809136992700071936", + "15069481500568098432876544" + ], + "expectedQty": "27368848130559099228104984", + "reserves": [ + "100418999792039726030729707", + "209433563027895845547018323", + "67119770709056989947781164" + ], + "mAssetSupply": "376553017249667677924939145" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "2935323834784706124054528", + "1631702622304880738435072", + "1151379285633189522964480" + ], + "expectedQty": "5724830432984309384808767", + "swapFee": "3436960436052216961061", + "reserves": [ + "97483675957255019906675179", + "207801860405590964808583251", + "65968391423423800424816684" + ], + "mAssetSupply": "370828186816683368540130378" + }, + { + "type": "redeemMasset", + "inputQty": "279961848806276220321792", + "expectedQtys": [ + "73574565273992152395738", + "156835812686957983604486", + "49788804875712523975541" + ], + "redemptionFee": "83988554641882866096", + "reserves": [ + "97410101391981027754279441", + "207645024592904006824978765", + "65918602618548087900841143" + ], + "mAssetSupply": "370548308956431734202674682" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "61490612695625042342445056", + "expectedQty": "61468370026753454581580984", + "reserves": [ + "158900714087606070096724497", + "207645024592904006824978765", + "65918602618548087900841143" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1547996896137365", + "expectedQty": "1541051054611666", + "reserves": [ + "158900714087606070096724497", + "207645024594452003721116130", + "65918602618548087900841143" + ] + }, + { + "type": "redeemMasset", + "inputQty": "883114131532435640496947", + "expectedQtys": [ + "324722110755551212304847", + "424333717197926433673617", + "134708191232860571776682" + ], + "redemptionFee": "264934239459730692149", + "reserves": [ + "158575991976850518884419650", + "207220690877254077287442513", + "65783894427315227329064461" + ], + "mAssetSupply": "431133829787433263929062534" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "29205334481372173939245056", + "96389364817014338600566784", + "59048299155216087874797568" + ], + "hardLimitError": true + }, + { + "type": "redeemBassets", + "inputQtys": [ + "12325601870432459292672", + "8754402637742990163968", + "4503244107404264079360" + ], + "expectedQty": "25573973330222925637356", + "swapFee": "15353596155827251733", + "reserves": [ + "158563666374980086425126978", + "207211936474616334297278545", + "65779391183207823064985101" + ], + "mAssetSupply": "431108255814103041003425178" + }, + { + "type": "mintMulti", + "inputQtys": [ + "53289051862217527394304", + "413748186200642273935360", + "459596145019899353235456" + ], + "expectedQty": "930320219792346335537174", + "reserves": [ + "158616955426842303952521282", + "207625684660816976571213905", + "66238987328227722418220557" + ], + "mAssetSupply": "432038576033895387338962352" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "1725819772739053416349696", + "expectedQty": "1746345129551899060493205", + "reserves": [ + "158616955426842303952521282", + "207625684660816976571213905", + "67964807100966775834570253" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "20272104574974680891392", + "expectedQty": "20184158942936182417462", + "reserves": [ + "158616955426842303952521282", + "207645956765391951252105297", + "67964807100966775834570253" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "7154137985665530289192960", + "expectedQty": "7058178201789871449016354", + "swapFee": "4292482791399318173515", + "reserves": [ + "158616955426842303952521282", + "207645956765391951252105297", + "60906628899176904385553899" + ], + "mAssetSupply": "426655259819516091610853574" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "608117246930843598848", + "expectedQty": "599032787587197687579", + "swapFee": "364870348158506159", + "reserves": [ + "158616955426842303952521282", + "207645956765391951252105297", + "60906029866389317187866320" + ], + "mAssetSupply": "426654652067139508925760885" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1070342376066822914965504", + "expectedQty": "1065070250375078025123793", + "reserves": [ + "158616955426842303952521282", + "208716299141458774167070801", + "60906029866389317187866320" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "102016891679140144", + "378003177752062080", + "959549883564861696" + ], + "expectedQty": "1451515958671410134", + "swapFee": "871432434663644", + "reserves": [ + "158616955324825412273381138", + "208716298763455596415008721", + "60906028906839433623004624" + ], + "mAssetSupply": "427719720865998628279474544" + }, + { + "type": "mintMulti", + "inputQtys": [ + "3702263090057520831528960", + "803079288119482248069120", + "912636627667706745716736" + ], + "expectedQty": "5418336782867565847407423", + "reserves": [ + "162319218414882933104910098", + "209519378051575078663077841", + "61818665534507140368721360" + ], + "mAssetSupply": "433138057648866194126881967" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "734858491887321612288", + "expectedQty": "733032684171550473935", + "reserves": [ + "162319953273374820426522386", + "209519378051575078663077841", + "61818665534507140368721360" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "7311222485334457", + "outputIndex": 2, + "expectedQty": "7184204517273341", + "swapFee": "4375834271284", + "reserves": [ + "162319953280686042911856843", + "209519378051575078663077841", + "61818665527322935851448019" + ], + "mAssetSupply": "433138790681554741511627186", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "18566783516362249844293632", + "outputIndex": 2, + "expectedQty": "18092747286961451116096456", + "swapFee": "11107993789040505401079", + "reserves": [ + "180886736797048292756150475", + "209519378051575078663077841", + "43725918240361484735351563" + ], + "mAssetSupply": "433149898675343782017028265", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "20185952779651957353611264", + "3323767683949172050886656", + "17989593039740516350033920" + ], + "expectedQty": "41818431909148839464899701", + "reserves": [ + "201072689576700250109761739", + "212843145735524250713964497", + "61715511280102001085385483" + ], + "mAssetSupply": "474968330584492621481927966" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "580797327606444130304", + "291171259225147342848", + "419384201123687497728" + ], + "expectedQty": "1295236088287928428570", + "swapFee": "777608217903499156", + "reserves": [ + "201072108779372643665631435", + "212842854564265025566621649", + "61715091895900877397887755" + ], + "mAssetSupply": "474967035348404333553499396" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "134588088060602833986125824", + "outputIndex": 1, + "expectedQty": "133310309895809378053346535", + "swapFee": "80243127873859135003553", + "reserves": [ + "335660196839975477651757259", + "79532544668455647513275114", + "61715091895900877397887755" + ], + "mAssetSupply": "475047278476278192688502949", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "4261898378992403347406848", + "1573983528548070450003968", + "3720630136983859457163264" + ], + "expectedQty": "9625087522749174731649438", + "swapFee": "5778519625424759694806", + "reserves": [ + "331398298460983074304350411", + "77958561139907577063271146", + "57994461758917017940724491" + ], + "mAssetSupply": "465422190953529017956853511" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "62639306571595728814080", + "outputIndex": 2, + "expectedQty": "61755128720080773034059", + "swapFee": "38184970590479297067", + "reserves": [ + "331398298460983074304350411", + "78021200446479172792085226", + "57932706630196937167690432" + ], + "mAssetSupply": "465422229138499608436150578", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1859235052911749758976", + "expectedQty": "1888960133732701399931", + "reserves": [ + "331398298460983074304350411", + "78023059681532084541844202", + "57932706630196937167690432" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "155141488126488341381120", + "expectedQty": "152602754435990253606929", + "swapFee": "93084892875893004828", + "reserves": [ + "331398298460983074304350411", + "77870456927096094288237273", + "57932706630196937167690432" + ], + "mAssetSupply": "465269069695399728689174217" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "6773650864351944376320", + "expectedQty": "6673093109860192679030", + "reserves": [ + "331405072111847426248726731", + "77870456927096094288237273", + "57932706630196937167690432" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "397033464769335651205120", + "579814552825000338915328", + "355621306363173530501120" + ], + "expectedQty": "1346437782373535973675546", + "reserves": [ + "331802105576616761899931851", + "78450271479921094627152601", + "58288327936560110698191552" + ], + "mAssetSupply": "466622180570883124855528793" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "21487049475387", + "4202135917433", + "28013340571359" + ], + "expectedQty": "54282785585458", + "swapFee": "32589224886", + "reserves": [ + "331802105576595274850456464", + "78450271479916892491235168", + "58288327936532097357620193" + ], + "mAssetSupply": "466622180570828842069943335" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "378157161239544791040", + "111246063525801541632", + "2143373155923482116096" + ], + "expectedQty": "2692493364490283141227", + "swapFee": "1616465898233109750", + "reserves": [ + "331801727419434035305665424", + "78450160233853366689693536", + "58286184563376173875504097" + ], + "mAssetSupply": "466619488077464351786802108" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "28916487655840747505057792", + "2832307751758450267258880", + "387048443162978404007936" + ], + "expectedQty": "31783101477621730771354768", + "swapFee": "19081309672376464341417", + "reserves": [ + "302885239763593287800607632", + "75617852482094916422434656", + "57899136120213195471496161" + ], + "mAssetSupply": "434836386599842621015447340" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "3708820459535979945918464", + "outputIndex": 0, + "expectedQty": "3802582539318832564371692", + "swapFee": "2253829634758705171410", + "reserves": [ + "299082657224274455236235940", + "79326672941630896368353120", + "57899136120213195471496161" + ], + "mAssetSupply": "434838640429477379720618750", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "20184973027699443225329664", + "expectedQty": "19917454940016063819120675", + "reserves": [ + "319267630251973898461565604", + "79326672941630896368353120", + "57899136120213195471496161" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "5499644019596759040", + "expectedQty": "5651204153229704838", + "reserves": [ + "319267630251973898461565604", + "79326672941630896368353120", + "57899141619857215068255201" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "1401128873453960250261504", + "331254977015627915460608", + "474059579636637277093888" + ], + "expectedQty": "2204622256027535007744396", + "reserves": [ + "320668759125427858711827108", + "79657927918646524283813728", + "58373201199493852345349089" + ], + "mAssetSupply": "456960723276725131777188659" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "11096848959520978763776", + "outputIndex": 0, + "expectedQty": "11553284583888957907972", + "swapFee": "6840091723208160026", + "reserves": [ + "320657205840843969753919136", + "79657927918646524283813728", + "58384298048453373324112865" + ], + "mAssetSupply": "456960730116816854985348685", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "32441939655191695360", + "expectedQty": "31978550233060715169", + "swapFee": "19465163793115017", + "reserves": [ + "320657205840843969753919136", + "79657895940096291223098559", + "58384298048453373324112865" + ], + "mAssetSupply": "456960697694342363586768342" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "27390417183258537325756416", + "outputIndex": 1, + "expectedQty": "27268148642142213283565789", + "swapFee": "16728657931556173852844", + "reserves": [ + "320657205840843969753919136", + "52389747297954077939532770", + "85774715231711910649869281" + ], + "mAssetSupply": "456977426352273919760621186", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "13474134711310074511360", + "outputIndex": 0, + "expectedQty": "13820606710008423840727", + "swapFee": "8177765198883469674", + "reserves": [ + "320643385234133961330078409", + "52389747297954077939532770", + "85788189366423220724380641" + ], + "mAssetSupply": "456977434530039118644090860", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "67664524484030079434752", + "expectedQty": "66689257707562370002268", + "reserves": [ + "320711049758617991409513161", + "52389747297954077939532770", + "85788189366423220724380641" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "7920179121144164289347584", + "expectedQty": "7812666531532397331936563", + "swapFee": "4752107472686498573608", + "reserves": [ + "320711049758617991409513161", + "52389747297954077939532770", + "77975522834890823392444078" + ], + "mAssetSupply": "449128696774075203223319152" + }, + { + "type": "redeemMasset", + "inputQty": "1077635891173388492", + "expectedQtys": [ + "769280737294339709", + "125665839884119138", + "187037733007590409" + ], + "redemptionFee": "323290767352016", + "reserves": [ + "320711048989337254115173452", + "52389747172288238055413632", + "77975522647853090384853669" + ], + "mAssetSupply": "449128695696762602817282676" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "3717080502529298432", + "expectedQty": "3772520281695893280", + "reserves": [ + "320711048989337254115173452", + "52389747172288238055413632", + "77975526364933592914152101" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "3865263539857166969077760", + "expectedQty": "3922511608599598147925640", + "swapFee": "2319158123914300181446", + "reserves": [ + "316788537380737655967247812", + "52389747172288238055413632", + "77975526364933592914152101" + ], + "mAssetSupply": "445265755087549631844279642" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "7948559723607085314736128", + "expectedQty": "7826734567921230860352049", + "reserves": [ + "324737097104344741281983940", + "52389747172288238055413632", + "77975526364933592914152101" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "994476878631489310294016", + "expectedQty": "1009580780824751090621618", + "reserves": [ + "324737097104344741281983940", + "52389747172288238055413632", + "78970003243565082224446117" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1753118844659633750016", + "1056259958774681567232", + "6078553844786599559168" + ], + "expectedQty": "8988952314323153365107", + "swapFee": "5396609354206415868", + "reserves": [ + "324735343985500081648233924", + "52388690912329463373846400", + "78963924689720295624886949" + ], + "mAssetSupply": "454093081483981290641888202" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "574465212195769109446656", + "expectedQty": "565589370395482982266037", + "swapFee": "344679127317461465667", + "reserves": [ + "324735343985500081648233924", + "52388690912329463373846400", + "78398335319324812642620912" + ], + "mAssetSupply": "453518960950912838993907213" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "577182986737843701809152", + "outputIndex": 0, + "expectedQty": "594727478355476330132897", + "swapFee": "351532424755730855215", + "reserves": [ + "324140616507144605318101027", + "52388690912329463373846400", + "78975518306062656344430064" + ], + "mAssetSupply": "453519312483337594724762428", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "424104113470871068213248", + "563921660943910861537280", + "838400633703687797080064" + ], + "expectedQty": "1851868182124480464694727", + "reserves": [ + "324564720620615476386314275", + "52952612573273374235383680", + "79813918939766344141510128" + ], + "mAssetSupply": "455371180665462075189457155" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "15735452013889232058712064", + "outputIndex": 2, + "expectedQty": "15848338181980322007824689", + "swapFee": "9688358312436737226846", + "reserves": [ + "324564720620615476386314275", + "68688064587162606294095744", + "63965580757786022133685439" + ], + "mAssetSupply": "455380869023774511926684001", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "2351834422033597878763520", + "11801252101329835127734272", + "8777649493020198519701504" + ], + "expectedQty": "23276435926027615020550453", + "reserves": [ + "326916555042649074265077795", + "80489316688492441421830016", + "72743230250806220653386943" + ], + "mAssetSupply": "478657304949802126947234454" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "13631692900556642029928448", + "outputIndex": 2, + "expectedQty": "13139287975214965175370542", + "swapFee": "8078509760221216733227", + "reserves": [ + "340548247943205716295006243", + "80489316688492441421830016", + "59603942275591255478016401" + ], + "mAssetSupply": "478665383459562348163967681", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "33537156793146264399118336", + "expectedQty": "33982947284609991039231012", + "swapFee": "20122294075887758639471", + "reserves": [ + "306565300658595725255775231", + "80489316688492441421830016", + "59603942275591255478016401" + ], + "mAssetSupply": "445148348960491971523488816" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "8754938227773769837969408", + "expectedQty": "8641720962569905265774487", + "reserves": [ + "315320238886369495093744639", + "80489316688492441421830016", + "59603942275591255478016401" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "565643246533336", + "expectedQty": "558107054233908", + "swapFee": "339385947920", + "reserves": [ + "315320238886369495093744639", + "80489316687934334367596108", + "59603942275591255478016401" + ], + "mAssetSupply": "453790069922496572928677887" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "20509156159669535735021568", + "expectedQty": "19739707579098572287653417", + "swapFee": "12305493695801721441012", + "reserves": [ + "315320238886369495093744639", + "80489316687934334367596108", + "39864234696492683190362984" + ], + "mAssetSupply": "433293219256522838915097331" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "794425522101538563031040", + "expectedQty": "779792723093279152955061", + "reserves": [ + "316114664408471033656775679", + "80489316687934334367596108", + "39864234696492683190362984" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "18778851463907357598154752", + "expectedQty": "19515374877619322366997974", + "reserves": [ + "316114664408471033656775679", + "80489316687934334367596108", + "58643086160400040788517736" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "7150474404636360320221184", + "outputIndex": 2, + "expectedQty": "7019668012496192552149264", + "swapFee": "4340144863962945029839", + "reserves": [ + "316114664408471033656775679", + "87639791092570694687817292", + "51623418147903848236368472" + ], + "mAssetSupply": "453592727002099403380080205", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "2662038058674833717827993", + "expectedQtys": [ + "1854652344935881099766381", + "514184763821957345169407", + "302875836844757654211579" + ], + "redemptionFee": "798611417602450115348", + "reserves": [ + "314260012063535152557009298", + "87125606328748737342647885", + "51320542311059090582156893" + ], + "mAssetSupply": "450931487554842172112367560" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "206576765718312672", + "expectedQty": "209406094368585801", + "swapFee": "123946059430987", + "reserves": [ + "314260011854129058188423497", + "87125606328748737342647885", + "51320542311059090582156893" + ], + "mAssetSupply": "450931487348389352453485875" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "14845426687829096708177920", + "expectedQty": "14628851274757545694594265", + "reserves": [ + "329105438541958154896601417", + "87125606328748737342647885", + "51320542311059090582156893" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "54311940223599435055104", + "138161864157308141961216", + "95836225601886811586560" + ], + "expectedQty": "292755067236427483868264", + "swapFee": "175758495439119962298", + "reserves": [ + "329051126601734555461546313", + "86987444464591429200686669", + "51224706085457203770570333" + ], + "mAssetSupply": "465267583555910470664211876" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "21140458079432594161664", + "expectedQty": "21451957576653304345062", + "swapFee": "12684274847659556496", + "reserves": [ + "329029674644157902157201251", + "86987444464591429200686669", + "51224706085457203770570333" + ], + "mAssetSupply": "465246455782105885729606708" + }, + { + "type": "mintMulti", + "inputQtys": [ + "80352138784593493884928", + "1719187956059797192704", + "51403463360653993967616" + ], + "expectedQty": "134219543762263957950955", + "reserves": [ + "329110026782942495651086179", + "86989163652547488997879373", + "51276109548817857764537949" + ], + "mAssetSupply": "465380675325868149687557663" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "9924236134553903104", + "6625688527751055360", + "7417057364366375936" + ], + "expectedQty": "24176068765119982476", + "swapFee": "14514349868993385", + "reserves": [ + "329110016858706361097183075", + "86989157026858961246824013", + "51276102131760493398162013" + ], + "mAssetSupply": "465380651149799384567575187" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "23117735426517483420385280", + "expectedQty": "22698698679543947524472024", + "swapFee": "13870641255910490052231", + "reserves": [ + "329110016858706361097183075", + "64290458347315013722351989", + "51276102131760493398162013" + ], + "mAssetSupply": "442276786364537811637242138" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "7622965985371077465866240", + "8155023474614932137312256", + "7202400117882597857558528" + ], + "hardLimitError": true + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "71768913414869273804800", + "outputIndex": 1, + "expectedQty": "68639364157984504060272", + "swapFee": "42266385429875273018", + "reserves": [ + "329181785772121230370987875", + "64221818983157029218291717", + "51276102131760493398162013" + ], + "mAssetSupply": "442276828630923241512515156", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "270151322986111431606272", + "52411947824677612683264", + "574545231967825216667648" + ], + "expectedQty": "915969048917717744684990", + "reserves": [ + "329451937095107341802594147", + "64274230930981706830974981", + "51850647363728318614829661" + ], + "mAssetSupply": "443192797679840959257200146" + }, + { + "type": "redeemMasset", + "inputQty": "21848235089144535449", + "expectedQtys": [ + "16236238555515680133", + "3167599363868550333", + "2555333221830115491" + ], + "redemptionFee": "6554470526743360", + "reserves": [ + "329451920858868786286914014", + "64274227763382342962424648", + "51850644808395096784714170" + ], + "mAssetSupply": "443192775838160340639408057" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "37129096781864306691014656", + "hardLimitError": true + }, + { + "type": "redeemBassets", + "inputQtys": [ + "15369319321028980188905472", + "6024076824117379483041792", + "24997571528434331477344256" + ], + "hardLimitError": true + }, + { + "type": "redeemBassets", + "inputQtys": [ + "21980113308975938649718784", + "31710895325501010797920256", + "115298059550955982146240512" + ], + "insufficientLiquidityError": true + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "86965262767113289859072", + "expectedQty": "89190724814444012679613", + "reserves": [ + "329451920858868786286914014", + "64361193026149456252283720", + "51850644808395096784714170" + ] + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "313081143885495664640", + "outputIndex": 1, + "expectedQty": "316906079138894100779", + "swapFee": "195119023001885610", + "reserves": [ + "329451920858868786286914014", + "64360876120070317358182941", + "51850957889538982280378810" + ], + "mAssetSupply": "443281966758093807653973280", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "7669392916842691", + "expectedQtys": [ + "5698265232578680", + "1113198374370404", + "896824367718380" + ], + "redemptionFee": "2300817875052", + "reserves": [ + "329451920853170521054335334", + "64360876118957118983812537", + "51850957888642157912660430" + ], + "mAssetSupply": "443281966750426715555005641" + }, + { + "type": "mintMulti", + "inputQtys": [ + "309472727539553736327168", + "360098031805256886648832", + "927266698634132853882880" + ], + "expectedQty": "1635585440218745962110600", + "reserves": [ + "329761393580710074790662502", + "64720974150762375870461369", + "52778224587276290766543310" + ], + "mAssetSupply": "444917552190645461517116241" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "45644684512107295670272", + "56791191505320673280", + "15551639199694129725440" + ], + "expectedQty": "61012618888561249681982", + "swapFee": "36629549062574294385", + "reserves": [ + "329715748896197967494992230", + "64720917359570870549788089", + "52762672948076596636817870" + ], + "mAssetSupply": "444856539571756900267434259" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "48243577193596313600", + "expectedQty": "47031644835284827378", + "swapFee": "28946146316157788", + "reserves": [ + "329715748896197967494992230", + "64720870327926035264960711", + "52762672948076596636817870" + ], + "mAssetSupply": "444856491357125852987278447" + }, + { + "type": "mintMulti", + "inputQtys": [ + "6094287501433021399040", + "2153825876503929028608", + "1162482415637137063936" + ], + "expectedQty": "9398367009674503577200", + "reserves": [ + "329721843183699400516391270", + "64723024153802539193989319", + "52763835430492233773881806" + ], + "mAssetSupply": "444865889724135527490855647" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "11224188669065636610048", + "outputIndex": 0, + "expectedQty": "11710483158118893558544", + "swapFee": "6903866858341765048", + "reserves": [ + "329710132700541281622832726", + "64734248342471604830599367", + "52763835430492233773881806" + ], + "mAssetSupply": "444865896628002385832620695", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "12909392636763532569870336", + "6720207029725446075842560", + "11533565222428786953289728" + ], + "hardLimitError": true + }, + { + "type": "redeemBassets", + "inputQtys": [ + "411501822968496755048448", + "1534409779952914570149888", + "2055647351921563880390656" + ], + "expectedQty": "4113903455650234698939605", + "swapFee": "2469823967770803301344", + "reserves": [ + "329298630877572784867784278", + "63199838562518690260449479", + "50708188078570669893491150" + ], + "mAssetSupply": "440751993172352151133681090" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "31374472953791151865856", + "expectedQty": "32650452982407475737188", + "reserves": [ + "329298630877572784867784278", + "63199838562518690260449479", + "50739562551524461045357006" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "16316892454822172688384", + "1273060103724178866176", + "5037069360837020352512" + ], + "expectedQty": "22558235098565787954135", + "swapFee": "13543066899279040196", + "reserves": [ + "329282313985117962695095894", + "63198565502414966081583303", + "50734525482163624025004494" + ], + "mAssetSupply": "440762085390235992821464143" + }, + { + "type": "mintMulti", + "inputQtys": [ + "7337462195578906607616", + "690180742725456625664", + "106408099624120884396032" + ], + "expectedQty": "118631760171453809191464", + "reserves": [ + "329289651447313541601703510", + "63199255683157691538208967", + "50840933581787744909400526" + ], + "mAssetSupply": "440880717150407446630655607" + }, + { + "type": "redeemMasset", + "inputQty": "1616505050793386514474598", + "expectedQtys": [ + "1206990177893432871881130", + "231652833681449651991181", + "186354193636019982772141" + ], + "redemptionFee": "484951515238015954342", + "reserves": [ + "328082661269420108729822380", + "62967602849476241886217786", + "50654579388151724926628385" + ], + "mAssetSupply": "439264697051129298132135351" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "1395256346141936384", + "expectedQty": "1451722906909248650", + "reserves": [ + "328082661269420108729822380", + "62967602849476241886217786", + "50654580783408071068564769" + ] + }, + { + "type": "redeemMasset", + "inputQty": "28759669914342328264294", + "expectedQtys": [ + "21473882172103207037694", + "4121396964465171024852", + "3315476944168445772143" + ], + "redemptionFee": "8627900974302698479", + "reserves": [ + "328061187387248005522784686", + "62963481452511776715192934", + "50651265306463902622792626" + ], + "mAssetSupply": "439235947460838837015818186" + }, + { + "type": "mintMulti", + "inputQtys": [ + "560033956376532414889984", + "1438225950498181338890240", + "1512942412056903712505856" + ], + "expectedQty": "3597594388459174729536750", + "reserves": [ + "328621221343624537937674670", + "64401707403009958054083174", + "52164207718520806335298482" + ], + "mAssetSupply": "442833541849298011745354936" + }, + { + "type": "mintMulti", + "inputQtys": [ + "7973685526168088870912", + "7642341589503969329152", + "2122777416881857888256" + ], + "expectedQty": "17868075255038005471119", + "reserves": [ + "328629195029150706026545582", + "64409349744599462023412326", + "52166330495937688193186738" + ], + "mAssetSupply": "442851409924553049750826055" + }, + { + "type": "redeemMasset", + "inputQty": "274483025159469767065", + "expectedQtys": [ + "203626030415040196750", + "39909479767746691129", + "32323430056981382434" + ], + "redemptionFee": "82344907547840930", + "reserves": [ + "328628991403120290986348832", + "64409309835119694276721197", + "52166298172507631211804304" + ], + "mAssetSupply": "442851135523872797828899920" + }, + { + "type": "redeemMasset", + "inputQty": "3216507438930808066067660", + "expectedQtys": [ + "2386175397219572819565252", + "467676055676796838499998", + "378779537166775268850308" + ], + "redemptionFee": "964952231679242419820", + "reserves": [ + "326242816005900718166783580", + "63941633779442897438221199", + "51787518635340855942953996" + ], + "mAssetSupply": "439635593037173669005252080" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "4688671162744934236160", + "5204381868813798342656", + "3105966696228954046464" + ], + "expectedQty": "13163571680916424975756", + "swapFee": "7902884739393491080", + "reserves": [ + "326238127334737973232547420", + "63936429397574083639878543", + "51784412668644626988907532" + ], + "mAssetSupply": "439622429465492752580276324" + }, + { + "type": "mintMulti", + "inputQtys": [ + "45916141712488505344", + "14372380070526267392", + "54176629726991392768" + ], + "expectedQty": "116053337486032232514", + "reserves": [ + "326238173250879685721052764", + "63936443769954154166145935", + "51784466845274353980300300" + ], + "mAssetSupply": "439622545518830238612508838" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "2007679820919753582575616", + "expectedQty": "2056703820966445682535849", + "reserves": [ + "326238173250879685721052764", + "65944123590873907748721551", + "51784466845274353980300300" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "50231053719992160", + "expectedQty": "51414465740437994", + "reserves": [ + "326238173250879685721052764", + "65944123641104961468713711", + "51784466845274353980300300" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "159565385687085888", + "1113360421150920960", + "331096248823662400" + ], + "expectedQty": "1639907076318921192", + "reserves": [ + "326238173410445071408138652", + "65944124754465382619634671", + "51784467176370602803962700" + ], + "mAssetSupply": "441679251031118226354403873" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "374004918255731293028352", + "1525375524372463977758720", + "2275971321860941544423424" + ], + "expectedQty": "4295768910365332648951342", + "swapFee": "2579008751470081638353", + "reserves": [ + "325864168492189340115110300", + "64418749230092918641875951", + "49508495854509661259539276" + ], + "mAssetSupply": "437383482120752893705452531" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "78877681177982566137856", + "expectedQty": "82150457496530726520774", + "reserves": [ + "325864168492189340115110300", + "64418749230092918641875951", + "49587373535687643825677132" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "1507080582091710933237760", + "2777577607289472462880768", + "2738777356974813194747904" + ], + "expectedQty": "7169817614326464867010090", + "reserves": [ + "327371249074281051048348060", + "67196326837382391104756719", + "52326150892662457020425036" + ], + "mAssetSupply": "444635450192575889298983395" + }, + { + "type": "mintMulti", + "inputQtys": [ + "12017676067641434161807360", + "7984655903232037234933760", + "10673247977953785943162880" + ], + "expectedQty": "30979979597391221269203739", + "reserves": [ + "339388925141922485210155420", + "75180982740614428339690479", + "62999398870616242963587916" + ], + "mAssetSupply": "475615429789967110568187134" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "187304633907802298908672", + "expectedQty": "184540646722842278360967", + "reserves": [ + "339576229775830287509064092", + "75180982740614428339690479", + "62999398870616242963587916" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "2037061361021616652288", + "expectedQty": "1999118683802462324985", + "swapFee": "1222236816612969991", + "reserves": [ + "339576229775830287509064092", + "75178983621930625877365494", + "62999398870616242963587916" + ], + "mAssetSupply": "475797934597565747842865804" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "8689105887250763218944", + "expectedQty": "8527235481505416515226", + "swapFee": "5213463532350457931", + "reserves": [ + "339576229775830287509064092", + "75170456386449120460850268", + "62999398870616242963587916" + ], + "mAssetSupply": "475789250705142029430104791" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "31915362212363155110100992", + "6928379303715347707723776", + "22953988851585758957404160" + ], + "expectedQty": "62270217013900320263471698", + "swapFee": "37384560944907136439946", + "reserves": [ + "307660867563467132398963100", + "68242077082733772753126492", + "40045410019030484006183756" + ], + "mAssetSupply": "413519033691241709166633093" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "2028488765244655978676224", + "outputIndex": 1, + "expectedQty": "2091973695941290702348779", + "swapFee": "1281609159266832152812", + "reserves": [ + "307660867563467132398963100", + "66150103386792482050777713", + "42073898784275139984859980" + ], + "mAssetSupply": "413520315300400975998785905", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "4252346346944475204419584", + "expectedQty": "4332058071681542697875840", + "swapFee": "2551407808166685122651", + "reserves": [ + "303328809491785589701087260", + "66150103386792482050777713", + "42073898784275139984859980" + ], + "mAssetSupply": "409270520361264667479488972" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "83445236179456439091200", + "expectedQty": "84991959188705726875731", + "swapFee": "50067141707673863454", + "reserves": [ + "303243817532596883974211529", + "66150103386792482050777713", + "42073898784275139984859980" + ], + "mAssetSupply": "409187125192226918714261226" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "4699282688668832767148032", + "10725602244895683427434496", + "9406016800496223923470336" + ], + "hardLimitError": true + }, + { + "type": "redeemBassets", + "inputQtys": [ + "280133626777389460619264", + "637226837627188849672192", + "381163271063962013138944" + ], + "expectedQty": "1325275685972337607946473", + "swapFee": "795642797261759620540", + "reserves": [ + "302963683905819494513592265", + "65512876549165293201105521", + "41692735513211177971721036" + ], + "mAssetSupply": "407861849506254581106314753" + }, + { + "type": "redeemMasset", + "inputQty": "1370111772572535855513", + "expectedQtys": [ + "1017426813149264233480", + "220008406117674863869", + "140014494403455426248" + ], + "redemptionFee": "411033531771760756", + "reserves": [ + "302962666479006345249358785", + "65512656540759175526241652", + "41692595498716774516294788" + ], + "mAssetSupply": "407860479805515540342219996" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "4378973351225910456483840", + "expectedQty": "4576574923550366028706206", + "reserves": [ + "302962666479006345249358785", + "65512656540759175526241652", + "46071568849942684972778628" + ] + }, + { + "type": "redeemMasset", + "inputQty": "2534097305781699168593510", + "expectedQtys": [ + "1860905917675145057868730", + "402402354244416263071219", + "282988184999280021350068" + ], + "redemptionFee": "760229191734509750578", + "reserves": [ + "301101760561331200191490055", + "65110254186514759263170433", + "45788580664943404951428560" + ], + "mAssetSupply": "409903717652475941712083270" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "28997283560718684949315584", + "expectedQty": "29362125131013600305713086", + "reserves": [ + "301101760561331200191490055", + "94107537747233444212486017", + "45788580664943404951428560" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "24091624849356808519680", + "64590962252477339009024", + "20970599289851255717888" + ], + "expectedQty": "110602334206583703942584", + "swapFee": "66401241268711449235", + "reserves": [ + "301077668936481843382970375", + "94042946784980966873476993", + "45767610065653553695710672" + ], + "mAssetSupply": "439155240449282958313853772" + }, + { + "type": "mintMulti", + "inputQtys": [ + "29917878202096611837870080", + "9462431100049870532116480", + "29859601110468078304493568" + ], + "expectedQty": "69723709816963688678122675", + "reserves": [ + "330995547138578455220840455", + "103505377885030837405593473", + "75627211176121632000204240" + ], + "mAssetSupply": "508878950266246646991976447" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "36306993885496972069044224", + "expectedQty": "35146705503331524542766732", + "swapFee": "21784196331298183241426", + "reserves": [ + "330995547138578455220840455", + "103505377885030837405593473", + "40480505672790107457437508" + ], + "mAssetSupply": "472593740577080973106173649" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "30280069941818034225152", + "expectedQty": "28517517671540939226521", + "swapFee": "18168041965090820535", + "reserves": [ + "330995547138578455220840455", + "103505377885030837405593473", + "40451988155118566518210987" + ], + "mAssetSupply": "472563478675181120162769032" + }, + { + "type": "mintMulti", + "inputQtys": [ + "34536427471589708136448", + "130242780597337817350144", + "161768383935510791323648" + ], + "expectedQty": "336739991477323115557028", + "reserves": [ + "331030083566050044928976903", + "103635620665628175222943617", + "40613756539054077309534635" + ], + "mAssetSupply": "472900218666658443278326060" + }, + { + "type": "redeemMasset", + "inputQty": "6242923909956766924", + "expectedQtys": [ + "4368734805721624031", + "1367720233270445486", + "535995791898675594" + ], + "redemptionFee": "1872877172987030", + "reserves": [ + "331030079197315239207352872", + "103635619297907941952498131", + "40613756003058285410859041" + ], + "mAssetSupply": "472900212425607410494546166" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "213615893398292", + "expectedQty": "215106184424737", + "reserves": [ + "331030079197315239207352872", + "103635619298121557845896423", + "40613756003058285410859041" + ] + }, + { + "type": "swap", "inputIndex": 2, - "inputQty": "623534651608842236854272", - "outputIndex": 1, - "expectedQty": "614362394427958399409879", - "swapFee": "370779680470268316914", + "inputQty": "3151871202834332", + "outputIndex": 0, + "expectedQty": "3398483470131505", + "swapFee": "2005988821941", "reserves": [ - "5736976202725201198421544", - "8471025503697814524802007", - "25159139270162709626794693" + "331030079193916755737221367", + "103635619298121557845896423", + "40613756006210156613693373" ], - "mAssetSupply": "39276011341024367959296468", + "mAssetSupply": "472900212425824522667792844", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mintMulti", + "inputQtys": [ + "226265232134780800", + "272969068725628256", + "70863502570749400" + ], + "expectedQty": "572499797247590225", + "reserves": [ + "331030079420181987872002167", + "103635619571090626571524679", + "40613756077073659184442773" + ], + "mAssetSupply": "472900212998324319915383069" + }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2948608062967717036032", - "expectedQty": "2929491018535257581419", - "swapFee": "1769164837780630221", + "inputQty": "19524503587246963385434112", + "expectedQty": "19316615627335806253354788", + "swapFee": "11714702152348178031260", + "reserves": [ + "331030079420181987872002167", + "84319003943754820318169891", + "40613756077073659184442773" + ], + "mAssetSupply": "453387424113229704707980217" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "48726033957725519872", + "outputIndex": 0, + "expectedQty": "52684509080089974566", + "swapFee": "31032391632740219", "reserves": [ - "5736976202725201198421544", - "8468096012679279267220588", - "25159139270162709626794693" + "331030026735672907782027601", + "84319003943754820318169891", + "40613804803107616909962645" ], - "mAssetSupply": "39273064502126238022890657" + "mAssetSupply": "453387424144262096340720436", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "101012337740131153320345", + "inputQty": "36484654992936291532", "expectedQtys": [ - "14751370526536557861234", - "21773843488836638644007", - "64691184412898590494581" + "26630410152303690241", + "6783220485460348312", + "3267263367066044687" + ], + "redemptionFee": "10945396497880887", + "reserves": [ + "331030000105262755478337360", + "84318997160534334857821579", + "40613801535844249843917958" + ], + "mAssetSupply": "453387387670552499902309791" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "15719823892818320949248", + "expectedQty": "14800450056620896086042", + "swapFee": "9431894335690992569", + "reserves": [ + "331030000105262755478337360", + "84318997160534334857821579", + "40599001085787628947831916" ], - "redemptionFee": "30303701322039345996", + "mAssetSupply": "453371677278554017272353112" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "88032923849280387547136", + "expectedQty": "82872699835784524985830", + "swapFee": "52819754309568232528", + "reserves": [ + "331030000105262755478337360", + "84318997160534334857821579", + "40516128385951844422846086" + ], + "mAssetSupply": "453283697174459046453038504" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "54198712378912313180160", + "expectedQty": "53417703423469124014687", + "swapFee": "32519227427347387908", "reserves": [ - "5722224832198664640560310", - "8446322169190442628576581", - "25094448085749811036300112" + "331030000105262755478337360", + "84265579457110865733806892", + "40516128385951844422846086" ], - "mAssetSupply": "39172082468087428908916308" + "mAssetSupply": "453229530981307561487246252" }, { "type": "redeemBassets", "inputQtys": [ - "7325898559655438712832", - "7215424373804717047808", - "7905443751126214115328" + "1364534285110970155008", + "38609813995131951382528", + "8693440854148811587584" + ], + "expectedQty": "49720863467378652477300", + "swapFee": "29850428337429649275", + "reserves": [ + "331028635570977644508182352", + "84226969643115733782424364", + "40507434945097695611258502" + ], + "mAssetSupply": "453179810117840182834768952" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "17366811956871700676608", + "expectedQty": "17115943579052887045708", + "swapFee": "10420087174123020405", + "reserves": [ + "331028635570977644508182352", + "84209853699536680895378656", + "40507434945097695611258502" + ], + "mAssetSupply": "453162453725970485257112749" + }, + { + "type": "redeemMasset", + "inputQty": "524846854232502300783411", + "expectedQtys": [ + "383278038175515823126404", + "97501497008965545388060", + "46901109236365287259005" ], - "expectedQty": "22539052249346508506569", - "swapFee": "13531550279775770566", + "redemptionFee": "157454056269750690235", "reserves": [ - "5714898933639009201847478", - "8439106744816637911528773", - "25086542641998684822184784" + "330645357532802128685055948", + "84112352202527715349990596", + "40460533835861330323999497" ], - "mAssetSupply": "39149543415838082400409739" + "mAssetSupply": "452637764325794252707019573" }, { "type": "mintMulti", "inputQtys": [ - "2339753337378708480", - "2082113588812246272", - "1337538854761854976" + "26996216044248593596416", + "57815099322980999626752", + "100833872727821382582272" + ], + "expectedQty": "192161394656573762575076", + "reserves": [ + "330672353748846377278652364", + "84170167301850696349617348", + "40561367708589151706581769" + ], + "mAssetSupply": "452829925720450826469594649" + }, + { + "type": "redeemMasset", + "inputQty": "460894073783891659010867", + "expectedQtys": [ + "336460110241497085620330", + "85643397303590695979083", + "41271313117223116336660" ], - "expectedQty": "5798878347833403723", + "redemptionFee": "138268222135167497703", "reserves": [ - "5714901273392346580555958", - "8439108826930226723775045", - "25086543979537539584039760" + "330335893638604880193032034", + "84084523904547105653638265", + "40520096395471928590245109" ], - "mAssetSupply": "39149549214716430233813462" + "mAssetSupply": "452369169914889069978081485" }, { "type": "redeemMasset", - "inputQty": "14206673003514432", + "inputQty": "8426550253209555", "expectedQtys": [ - "2073213570690398", - "3061483323602415", - "9100728242191650" + "6151517644550570", + "1565822674414958", + "754565558075052" + ], + "redemptionFee": "2527965075962", + "reserves": [ + "330335893632453362548481464", + "84084523902981282979223307", + "40520096394717363032170057" + ], + "mAssetSupply": "452369169906465047689947892" + }, + { + "type": "mintMulti", + "inputQtys": [ + "22515791030870786514616320", + "11245365097850912160874496", + "10290430670267168898154496" + ], + "expectedQty": "44338614326774653619806433", + "reserves": [ + "352851684663324149063097784", + "95329889000832195140097803", + "50810527064984531930324553" + ], + "mAssetSupply": "496707784233239701309754325" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "353050589232420999921664", + "expectedQty": "348839785293656368094340", + "swapFee": "211830353539452599952", + "reserves": [ + "352851684663324149063097784", + "94981049215538538772003463", + "50810527064984531930324553" + ], + "mAssetSupply": "496354945474360819762432613" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "65823628328594765644824576", + "hardLimitError": true + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "4426788246210317287161856", + "outputIndex": 2, + "expectedQty": "4147626079796387798319594", + "swapFee": "2613312163994494290013", + "reserves": [ + "357278472909534466350259640", + "94981049215538538772003463", + "46662900985188144132004959" + ], + "mAssetSupply": "496357558786524814256722626", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "1247428559537415651328", + "874979921335411277824", + "849210233027806756864" ], - "redemptionFee": "4262001901054", + "expectedQty": "3006295051191757117340", "reserves": [ - "5714901271319133009865560", - "8439108823868743400172630", - "25086543970436811341848110" + "357279720338094003765910968", + "94981924195459874183281287", + "46663750195421171938761823" ], - "mAssetSupply": "39149549200514019232200084" + "mAssetSupply": "496360565081576006013839966" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "344670565264875454464", + "1304766719823599108096", + "1019992598097343283200" + ], + "expectedQty": "2734308396086739039957", + "swapFee": "1641569979639827320", + "reserves": [ + "357279375667528738890456504", + "94980619428740050584173191", + "46662730202823074595478623" + ], + "mAssetSupply": "496357830773179919274800009" }, { "type": "mint", "inputIndex": 0, - "inputQty": "680792099896838656", - "expectedQty": "692380195337395046", + "inputQty": "73777340719375600410689536", + "hardLimitError": true + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "5573082166808516187127808", + "expectedQty": "5667558938954554701429750", + "swapFee": "3343849300085109712276", "reserves": [ - "5714901952111232906704216", - "8439108823868743400172630", - "25086543970436811341848110" - ] + "351611816728574184189026754", + "94980619428740050584173191", + "46662730202823074595478623" + ], + "mAssetSupply": "490788092455671488197384477" }, { "type": "mintMulti", "inputQtys": [ - "132471824406571941888", - "319345618945506344960", - "332068909953436286976" + "19487278385164887913398272", + "25306048219534181510676480", + "18584423440154477182582784" + ], + "expectedQty": "64038710512175721749245883", + "reserves": [ + "371099095113739072102425026", + "120286667648274232094849671", + "65247153642977551778061407" ], - "expectedQty": "784880993882669876984", + "mAssetSupply": "554826802967847209946630360" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "196198180150576316416", + "expectedQty": "190494892233658780928", + "swapFee": "117718908090345789", "reserves": [ - "5715034423935639478646104", - "8439428169487688906517590", - "25086876039346764778135086" + "371099095113739072102425026", + "120286667648274232094849671", + "65246963148085318119280479" ], - "mAssetSupply": "39150334773888097239472114" + "mAssetSupply": "554826606887385967460659733" }, { "type": "mintMulti", "inputQtys": [ - "7076498112927492997120", - "27179966784386298281984", - "17056769208742660014080" + "752679090751474354880512", + "700152553953315879124992", + "892039834068360907194368" + ], + "expectedQty": "2366096874144520893944880", + "reserves": [ + "371851774204490546457305538", + "120986820202227547973974663", + "66139002982153679026474847" + ], + "mAssetSupply": "557192703761530488354604613" + }, + { + "type": "redeemMasset", + "inputQty": "35052140168962282985881", + "expectedQtys": [ + "23385608180749657828691", + "7608812350934677325273", + "4159455235933632570124" ], - "expectedQty": "51432358596215494130062", + "redemptionFee": "10515642050688684895", "reserves": [ - "5722110922048566971643224", - "8466608136272075204799574", - "25103932808555507438149166" + "371828388596309796799476847", + "120979211389876613296649390", + "66134843526917745393904723" ], - "mAssetSupply": "39201767132484312733602176" + "mAssetSupply": "557157662137003576760303627" }, { "type": "redeemBassets", "inputQtys": [ - "1060388716722178530213888", - "410330589021235729924096", - "210997850352807089012736" + "1092872920857671943323648", + "3297474552164222809145344", + "1157321768411902244814848" ], - "expectedQty": "1704236838094630397613788", - "swapFee": "1023155996454651029185", + "expectedQty": "5589628221780828383924160", + "swapFee": "3355790407312884761211", "reserves": [ - "4661722205326388441429336", - "8056277547250839474875478", - "24892934958202700349136430" + "370735515675452124856153199", + "117681736837712390487504046", + "64977521758505843149089875" ], - "mAssetSupply": "37497530294389682335988388" + "mAssetSupply": "551568033915222748376379467" }, { "type": "redeemBassets", "inputQtys": [ - "604411756964729728", - "424600314448108160", - "858738118088376448" + "292175559577269285421056", + "284626141779754712301568", + "585242135322940724477952" + ], + "expectedQty": "1177790149299067182516230", + "swapFee": "707098348588593465589", + "reserves": [ + "370443340115874855570732143", + "117397110695932635775202478", + "64392279623182902424611923" ], - "expectedQty": "1896189936767324747", - "swapFee": "1138397000260551", + "mAssetSupply": "550390243765923681193863237" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "16199770145041229847461888", + "expectedQty": "16386131510531136335987036", + "swapFee": "9719862087024737908477", "reserves": [ - "4661721600914631476699608", - "8056277122650525026767318", - "24892934099464582260759982" + "354057208605343719234745107", + "117397110695932635775202478", + "64392279623182902424611923" ], - "mAssetSupply": "37497528398199745568663641" + "mAssetSupply": "534200193482969476084309826" }, { "type": "mint", "inputIndex": 0, - "inputQty": "449263262790112426065920", - "expectedQty": "459751939361457580364370", + "inputQty": "98066084364701004726272", + "expectedQty": "96930171269723538877035", "reserves": [ - "5110984863704743902765528", - "8056277122650525026767318", - "24892934099464582260759982" + "354155274689708420239471379", + "117397110695932635775202478", + "64392279623182902424611923" ] }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "141043127322801380261888", + "outputIndex": 0, + "expectedQty": "143446763420029998977997", + "swapFee": "85122970835948535154", + "reserves": [ + "354011827926288390240493382", + "117538153823255437155464366", + "64392279623182902424611923" + ], + "mAssetSupply": "534297208777210035571722015", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "redeemMasset", - "inputQty": "5626427597615617644953", + "inputQty": "41477765601437274026803", "expectedQtys": [ - "757376689177850403490", - "1193827932769397194204", - "3688785726222811376371" + "27473874637249285362100", + "9121809635993930544781", + "4997305961038081981053" ], - "redemptionFee": "1687928279284685293", + "redemptionFee": "12443329680431182208", "reserves": [ - "5110227487015566052362038", - "8055083294717755629573114", - "24889245313738359449383611" + "353984354051651140955131282", + "117529032013619443224919585", + "64387282317221864342630870" ], - "mAssetSupply": "37951655597891866816068351" + "mAssetSupply": "534255743454938278728877420" }, { "type": "redeemMasset", - "inputQty": "4821380253770220516147", + "inputQty": "10032448576590194278", "expectedQtys": [ - "649008798303107807124", - "1023011195219670798628", - "3160982408862258562519" + "6645252715549797695", + "2206340789374221024", + "1208725068687521809" ], - "redemptionFee": "1446414076131066154", + "redemptionFee": "3009734572977058", "reserves": [ - "5109578478217262944554914", - "8054060283522535958774486", - "24886084331329497190821092" + "353984347406398425405333587", + "117529029807278653850698561", + "64387281108496795655109061" ], - "mAssetSupply": "37946835664052172726618358" + "mAssetSupply": "534255733425499436711660200" }, { - "type": "redeemMasset", - "inputQty": "52044373021177184256", - "expectedQtys": [ - "7005723302263862500", - "11042890924692929297", - "34121214038565428633" + "type": "redeemBassets", + "inputQtys": [ + "2702657136001133907542016", + "2085719390350431928451072", + "455207836343008629882880" + ], + "expectedQty": "5237116600810773637073450", + "swapFee": "3144156454359079630022", + "reserves": [ + "351281690270397291497791571", + "115443310416928221922247489", + "63932073272153787025226181" ], - "redemptionFee": "15613311906353155", + "mAssetSupply": "529018616824688663074586750" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "464295044692954316800", + "134400095774171348992", + "611273414528495517696" + ], + "expectedQty": "1222086813245944619438", + "swapFee": "733692303329564510", "reserves": [ - "5109571472493960680692414", - "8054049240631611265845189", - "24886050210115458625392459" + "351281225975352598543474771", + "115443176016832447750898497", + "63931461998739258529708485" ], - "mAssetSupply": "37946783635292463455787257" + "mAssetSupply": "529017394737875417129967312" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "2799185197576153297059840", - "outputIndex": 1, - "expectedQty": "2722909048625488425455940", - "swapFee": "1660230283086392995402", + "inputIndex": 1, + "inputQty": "66698074285104469339275264", + "outputIndex": 2, + "hardLimitError": true + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "49098587699619494363136", + "outputIndex": 2, + "expectedQty": "47206916407649662671256", + "swapFee": "29116404383527248219", "reserves": [ - "5109571472493960680692414", - "5331140192006122840389249", - "27685235407691611922452299" + "351330324563052218037837907", + "115443176016832447750898497", + "63884255082331608867037229" ], - "mAssetSupply": "37948443865575549848782659", + "mAssetSupply": "529017423854279800657215531", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2106198369355678976", - "expectedQty": "2164288529789080625", + "type": "mintMulti", + "inputQtys": [ + "3803296468242558091264", + "10151183925207380262912", + "9314929841406443782144" + ], + "expectedQty": "23541764977294909961560", "reserves": [ - "5109573578692330036371390", - "5331140192006122840389249", - "27685235407691611922452299" - ] + "351334127859520460595929171", + "115453327200757655131161409", + "63893570012173015310819373" + ], + "mAssetSupply": "529040965619257095567177091" }, { "type": "redeemMasset", - "inputQty": "342636230980328209199923", + "inputQty": "17606337246792", "expectedQtys": [ - "46120460743836160114195", - "48120383855638915816111", - "249894789289067012034402" + "11688795067166", + "3841102171581", + "2125722458366" ], - "redemptionFee": "102790869294098462759", + "redemptionFee": "5281901174", "reserves": [ - "5063453117948493876257195", - "5283019808150483924573138", - "27435340618402544910417897" + "351334127859508771800862005", + "115453327200753814028989828", + "63893570012170889588361007" ], - "mAssetSupply": "37605912589753045527126120" + "mAssetSupply": "529040965619239494511831473" }, { "type": "swap", "inputIndex": 1, - "inputQty": "432209890807689726918656", + "inputQty": "877020969084052832256", "outputIndex": 2, - "expectedQty": "448829752457391585636779", - "swapFee": "265339925099600156420", + "expectedQty": "858328103685708158214", + "swapFee": "529408993669294997", "reserves": [ - "5063453117948493876257195", - "5715229698958173651491794", - "26986510865945153324781118" + "351334127859508771800862005", + "115454204221722898081822084", + "63892711684067203880202793" ], - "mAssetSupply": "37606177929678145127282540", + "mAssetSupply": "529040966148648488181126470", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemMasset", + "inputQty": "444891226961052227233382", + "expectedQtys": [ + "295361965469112532347315", + "97060826081309640496195", + "53713759654182335431333" + ], + "redemptionFee": "133467368088315668170", + "reserves": [ + "351038765894039659268514690", + "115357143395641588441325889", + "63838997924413021544771460" + ], + "mAssetSupply": "528596208389055524269561258" + }, + { + "type": "redeemMasset", + "inputQty": "101911602166803", + "expectedQtys": [ + "67658810279771", + "22233803892125", + "12304255451724" + ], + "redemptionFee": "30573480650", + "reserves": [ + "351038765893972000458234919", + "115357143395619354637433764", + "63838997924400717289319736" + ], + "mAssetSupply": "528596208388953643240875105" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "148007320481334118385188864", + "hardLimitError": true + }, { "type": "swap", "inputIndex": 1, - "inputQty": "37383376504876584", + "inputQty": "18341229031323831631872", "outputIndex": 0, - "expectedQty": "37150205385501071", - "swapFee": "22886258571056", + "expectedQty": "18658721181749276538118", + "swapFee": "11071564248461947003", + "reserves": [ + "351020107172790251181696801", + "115375484624650678469065636", + "63838997924400717289319736" + ], + "mAssetSupply": "528596219460517891702822108", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "6267345592449608187904", + "outputIndex": 2, + "expectedQty": "6025756952798938278667", + "swapFee": "3716637690731214861", "reserves": [ - "5063453080798288490756124", - "5715229736341550156368378", - "26986510865945153324781118" + "351026374518382700789884705", + "115375484624650678469065636", + "63832972167447918351041069" ], - "mAssetSupply": "37606177929701031385853596", + "mAssetSupply": "528596223177155582434036969", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "161446339171481808797696", + "expectedQty": "159566374248377674491794", + "reserves": [ + "351187820857554182598682401", + "115375484624650678469065636", + "63832972167447918351041069" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "30909763218413538439593984", + "26961385605370616098062336", + "10229806866537803532992512" + ], + "expectedQty": "68156993338873160385657917", + "reserves": [ + "382097584075967721038276385", + "142336870230021294567127972", + "74062779033985721884033581" + ], + "mAssetSupply": "596912782890277120494186680" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "29846557837929740", + "25875183715008528", + "2123137168432544" + ], + "expectedQty": "57687339770479178", + "swapFee": "34633183772551", + "reserves": [ + "382097584046121163200346645", + "142336870204146110852119444", + "74062779031862584715601037" + ], + "mAssetSupply": "596912782832589780723707502" + }, + { + "type": "mintMulti", + "inputQtys": [ + "74284893027093859794944", + "109369400998764841271296", + "134744969826912322977792" + ], + "expectedQty": "321325868950695346776245", + "reserves": [ + "382171868939148257060141589", + "142446239605144875693390740", + "74197524001689497038578829" + ], + "mAssetSupply": "597234108701540476070483747" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1091564253765474688", + "13548446331966610", + "223264063578868736" + ], + "expectedQty": "1322659214770482071", + "swapFee": "794071972045516", + "reserves": [ + "382171867847584003294666901", + "142446239591596429361424130", + "74197523778425433459710093" + ], + "mAssetSupply": "597234107378881261300001676" + }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1055143244338102", - "expectedQty": "1033488724118637", - "swapFee": "633085946602", + "inputQty": "928484534127385322192896", + "expectedQty": "924406753939098857045565", + "swapFee": "557090720476431193315", "reserves": [ - "5063453080798288490756124", - "5715229735308061432249741", - "26986510865945153324781118" + "382171867847584003294666901", + "141521832837657330504378565", + "74197523778425433459710093" ], - "mAssetSupply": "37606177928646521227462096" + "mAssetSupply": "596306179935474352409002095" }, { - "type": "redeem", + "type": "redeemBassets", + "inputQtys": [ + "952641793718605888618496", + "3511945729011410557468672", + "9035772938051237319802880" + ], + "expectedQty": "13753301852410985445664305", + "swapFee": "8256935272610157361815", + "reserves": [ + "381219226053865397406048405", + "138009887108645919946909893", + "65161750840374196139907213" + ], + "mAssetSupply": "582552878083063366963337790" + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "129773350883328819200", - "expectedQty": "127109969820726577602", - "swapFee": "77864010529997291", + "inputQty": "39813423296046043578236928", + "expectedQty": "39884492727587538177513569", + "reserves": [ + "381219226053865397406048405", + "177823310404691963525146821", + "65161750840374196139907213" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "200586618091766251520", + "541256932951022632960", + "1738511550742579642368" + ], + "expectedQty": "2536174887481185828087", + "swapFee": "1522618503590866016", + "reserves": [ + "381219025467247305639796885", + "177822769147759012502513861", + "65160012328823453560264845" + ], + "mAssetSupply": "622434834635763423955023272" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "451841245150841443188736", + "expectedQty": "447176744719088136937133", + "reserves": [ + "381670866712398147082985621", + "177822769147759012502513861", + "65160012328823453560264845" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "8512363038710918685917184", + "2882706629294239573344256", + "1063725324045862670696448" + ], + "expectedQty": "12406204957569512090098912", + "reserves": [ + "390183229751109065768902805", + "180705475777053252075858117", + "66223737652869316230961293" + ], + "mAssetSupply": "635288216338052024182059317" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "8332101294483800049319936", + "expectedQty": "8413445510049455798833257", + "swapFee": "4999260776690280029591", "reserves": [ - "5063453080798288490756124", - "5715102625338240705672139", - "26986510865945153324781118" + "381769784241059609970069548", + "180705475777053252075858117", + "66223737652869316230961293" ], - "mAssetSupply": "37606048233159648428640187" + "mAssetSupply": "626961114304344914412768972" }, { "type": "redeemMasset", - "inputQty": "3889460855902877568204", + "inputQty": "150743503452378968883", "expectedQtys": [ - "523537974546854900138", - "590915567904358735040", - "2790282246797508918143" + "91763346532512076489", + "43434917792189127852", + "15917739008599200850" + ], + "redemptionFee": "45223051035713690", + "reserves": [ + "381769692477713077457993059", + "180705432342135459886730265", + "66223721735130307631760443" + ], + "mAssetSupply": "626960963606064513069513779" + }, + { + "type": "mintMulti", + "inputQtys": [ + "5375750913927493451776", + "15885758667044025270272", + "26743997120370031198208" + ], + "expectedQty": "48817128113766794648110", + "reserves": [ + "381775068228627004951444835", + "180721318100802503912000537", + "66250465732250677662958651" ], - "redemptionFee": "1166838256770863270", + "mAssetSupply": "627009780734178279864161889" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "235038554717317922816", + "expectedQty": "237295797197008599345", + "swapFee": "141023132830390753", + "reserves": [ + "381774830932829807942845490", + "180721318100802503912000537", + "66250465732250677662958651" + ], + "mAssetSupply": "627009545836646695376629826" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "29013431685176144064151552", + "expectedQty": "28981342481700030026839426", + "reserves": [ + "381774830932829807942845490", + "209734749785978647976152089", + "66250465732250677662958651" + ] + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "16937849415303661568", + "outputIndex": 1, + "expectedQty": "17544888562400757384", + "swapFee": "10512605487666895", "reserves": [ - "5062929542823741635855986", - "5714511709770336346937099", - "26983720583698355815862975" + "381774830932829807942845490", + "209734732241090085575394705", + "66250482670100092966620219" ], - "mAssetSupply": "37602159939142002321935253" + "mAssetSupply": "655990888328859330891136147", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "310278321282002565726208", + "inputQty": "9392159443715533622476", "expectedQtys": [ - "41764781775151569617092", - "47139770066204762511721", - "222592313822973760150135" + "5464427083469694885676", + "3001979330073020995707", + "948257722780916556989" ], - "redemptionFee": "93083496384600769717", + "redemptionFee": "2817647833114660086", "reserves": [ - "5021164761048590066238894", - "5667371939704131584425378", - "26761128269875382055712840" + "381769366505746338247959814", + "209731730261760012554398998", + "66249534412377312050063230" ], - "mAssetSupply": "37291974701356384356978762" + "mAssetSupply": "655981498987063448472173757" }, { - "type": "redeemBassets", - "inputQtys": [ - "1962184911503428419584", - "123026697604898619392", - "2093736083124451016704" + "type": "redeemMasset", + "inputQty": "197667791089733369174425", + "expectedQtys": [ + "115004567121473964290513", + "63179785929807962194765", + "19957072765763582290624" ], - "expectedQty": "4201111835360901849118", - "swapFee": "2522180409462218440", + "redemptionFee": "59300337326920010752", "reserves": [ - "5019202576137086637819310", - "5667248913006526685805986", - "26759034533792257604696136" + "381654361938624864283669301", + "209668550475830204592204233", + "66229577339611548467772606" ], - "mAssetSupply": "37287773589521023455129644" + "mAssetSupply": "655783890496311042023010084" }, { "type": "mint", "inputIndex": 2, - "inputQty": "93209332281701247746048", - "expectedQty": "91797714120173873169318", + "inputQty": "811872452430156136448", + "expectedQty": "839824370255785803503", "reserves": [ - "5019202576137086637819310", - "5667248913006526685805986", - "26852243866073958852442184" + "381654361938624864283669301", + "209668550475830204592204233", + "66230389212063978623909054" ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "27798863850446855864320", - "expectedQty": "28210180954200653130053", - "swapFee": "16679318310268113518", + "inputIndex": 0, + "inputQty": "6358594000886405017894912", + "expectedQty": "6415243169349632849738691", + "swapFee": "3815156400531843010736", "reserves": [ - "5019202576137086637819310", - "5667248913006526685805986", - "26824033685119758199312131" + "375239118769275231433930610", + "209668550475830204592204233", + "66230389212063978623909054" ], - "mAssetSupply": "37351789119109060740548160" + "mAssetSupply": "649429951476195424633929411" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1989861178082463842304", - "expectedQty": "2042162547796909682287", + "inputQty": "67140605728978748047360", + "expectedQty": "66514866823870014975186", "reserves": [ - "5021192437315169101661614", - "5667248913006526685805986", - "26824033685119758199312131" + "375306259375004210181977970", + "209668550475830204592204233", + "66230389212063978623909054" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "1905099984935143", - "expectedQty": "1865778955375641", - "swapFee": "1143059990961", + "inputQty": "3855778130546027546017792", + "expectedQty": "3847436909914174652527815", + "reserves": [ + "375306259375004210181977970", + "213524328606376232138222025", + "66230389212063978623909054" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "565600834228830284546048", + "outputIndex": 1, + "expectedQty": "561278401047974361719033", + "swapFee": "336214676435515459328", "reserves": [ - "5021192437315169101661614", - "5667248911140747730430345", - "26824033685119758199312131" + "375871860209233040466524018", + "212963050205328257776502992", + "66230389212063978623909054" ], - "mAssetSupply": "37353831279752900725286265" + "mAssetSupply": "653344239467609904816891740", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "24517262198658207580160", - "expectedQty": "24879349270342380948837", - "swapFee": "14710357319194924548", + "type": "redeemMasset", + "inputQty": "32727316016638105904742", + "expectedQtys": [ + "18822522683761423435003", + "10664543605529392684258", + "3316617005073155104818" + ], + "redemptionFee": "9818194804991431771", "reserves": [ - "5021192437315169101661614", - "5667248911140747730430345", - "26799154335849415818363294" + "375853037686549279043089015", + "212952385661722728383818734", + "66227072595058905468804236" ], - "mAssetSupply": "37329328727911561712630653" + "mAssetSupply": "653311521969788071702418769" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "49887840823089739857920", + "expectedQty": "49776781739988529583291", + "reserves": [ + "375853037686549279043089015", + "213002273502545818123676654", + "66227072595058905468804236" + ] }, { "type": "redeemBassets", "inputQtys": [ - "38960367692074237952", - "292289700820380712960", - "241221378999975280640" + "310985289203179712", + "75270881675235840", + "351541022870510400" ], - "expectedQty": "575809276385709584310", - "swapFee": "345692981620397989", + "expectedQty": "746652397343684738", + "swapFee": "448260394642996", "reserves": [ - "5021153476947477027423662", - "5666956621439927349717385", - "26798913114470415843082654" + "375853037375563989839909303", + "213002273427274936448440814", + "66227072243517882598293836" ], - "mAssetSupply": "37328752918635176003046343" + "mAssetSupply": "653361298004875662888317322" }, { - "type": "mintMulti", - "inputQtys": [ - "342611157849173888", - "400214299588538688", - "152912997483260192" + "type": "swap", + "inputIndex": 1, + "inputQty": "1975827784200152919572480", + "outputIndex": 0, + "expectedQty": "1988487263145137609544603", + "swapFee": "1182796565602337547038", + "reserves": [ + "373864550112418852230364700", + "214978101211475089368013294", + "66227072243517882598293836" + ], + "mAssetSupply": "653362480801441265225864360", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "51599993736435711531286528", + "expectedQty": "51419240853892025944688321", + "reserves": [ + "373864550112418852230364700", + "266578094947910800899299822", + "66227072243517882598293836" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "90803496924859629568", + "expectedQty": "91536086540872872995", + "swapFee": "54482098154915777", + "reserves": [ + "373864458576332311357491705", + "266578094947910800899299822", + "66227072243517882598293836" + ], + "mAssetSupply": "704781630906318464465838890" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "424523052248215041605632", + "outputIndex": 1, + "expectedQty": "422529316300851992385683", + "swapFee": "252522055666826309723", + "reserves": [ + "374288981628580526399097337", + "266155565631609948906914139", + "66227072243517882598293836" ], - "expectedQty": "910576910315002453", + "mAssetSupply": "704781883428374131292148613", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "42052114908995334963200", + "expectedQty": "40475472879425507837780", + "swapFee": "25231268945397200977", "reserves": [ - "5021153819558634876597550", - "5666957021654226938256073", - "26798913267383413326342846" + "374288981628580526399097337", + "266155565631609948906914139", + "66186596770638457090456056" ], - "mAssetSupply": "37328753829212086318048796" + "mAssetSupply": "704739856544734081354386390" }, { "type": "mintMulti", "inputQtys": [ - "430562303852342816014336", - "244998423327816997142528", - "223123263498846621138944" + "107901960265730009071616", + "18892414260847948333056", + "134543268612073546842112" ], - "expectedQty": "910597948545861048266621", + "expectedQty": "265473842547530479959542", "reserves": [ - "5451716123410977692611886", - "5911955444982043935398601", - "27022036530882259947481790" + "374396883588846256408168953", + "266174458045870796855247195", + "66321140039250530637298168" ], - "mAssetSupply": "38239351777757947366315417" + "mAssetSupply": "705005330387281611834345932" + }, + { + "type": "redeemMasset", + "inputQty": "7159375452001249689", + "expectedQtys": [ + "3800884344863664060", + "2702208204543025732", + "673293486025714918" + ], + "redemptionFee": "2147812635600374", + "reserves": [ + "374396879787961911544504893", + "266174455343662592312221463", + "66321139365957044611583250" + ], + "mAssetSupply": "705005323230053972468696617" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "465427871556419996090368", - "expectedQty": "471651116414609459629960", - "swapFee": "279256722933851997654", + "inputIndex": 1, + "inputQty": "20002286133177421104414720", + "expectedQty": "20073140859795011337135521", + "swapFee": "12001371679906452662648", + "reserves": [ + "374396879787961911544504893", + "246101314483867580975085942", + "66321139365957044611583250" + ], + "mAssetSupply": "685015038468556457816944545" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "10206508444603383287906304", + "3203996483966763056234496", + "2287459780850528003555328" + ], + "expectedQty": "15679835109347786146509126", + "swapFee": "9413549195125747136187", "reserves": [ - "5451716123410977692611886", - "5911955444982043935398601", - "26550385414467650487851830" + "364190371343358528256598589", + "242897317999900817918851446", + "64033679585106516608027922" ], - "mAssetSupply": "37774203162924461222222703" + "mAssetSupply": "669335203359208671670435419" + }, + { + "type": "mintMulti", + "inputQtys": [ + "5220534290204142592", + "2401265801598120448", + "248570121773932704" + ], + "expectedQty": "7824098308897589729", + "reserves": [ + "364190376563892818460741181", + "242897320401166619516971894", + "64033679833676638381960626" + ], + "mAssetSupply": "669335211183306980568025148" }, { "type": "redeemMasset", - "inputQty": "285030877357301411977625", + "inputQty": "17571541252983949466009", "expectedQtys": [ - "41124395154801267810764", - "44596157678309934049490", - "200279786507608876074398" + "9557940928513985867839", + "6374683103910597515055", + "1680522519732987126132" ], - "redemptionFee": "85509263207190423593", + "redemptionFee": "5271462375895184839", "reserves": [ - "5410591728256176424801122", - "5867359287303734001349111", - "26350105627960041611777432" + "364180818622964304474873342", + "242890945718062708919456839", + "64031999311156905394834494" ], - "mAssetSupply": "37489257794830367000668671" + "mAssetSupply": "669317644913516372513743978" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "461433679665420288", - "expectedQty": "453070085803164989", - "swapFee": "276860207799252", + "inputQty": "432275285961335439360", + "expectedQty": "433718211313157588565", + "swapFee": "259365171576801263", "reserves": [ - "5410591728256176424801122", - "5867358834233648198184122", - "26350105627960041611777432" + "364180818622964304474873342", + "242890511999851395761868274", + "64031999311156905394834494" ], - "mAssetSupply": "37489257333673547543047635" + "mAssetSupply": "669317212897595582755105881" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1283973988544005103681536", - "expectedQty": "1302041861084887148873495", + "inputQty": "8499731783635776307200", + "expectedQty": "8466369978520481223196", "reserves": [ - "5410591728256176424801122", - "7151332822777653301865658", - "26350105627960041611777432" + "364180818622964304474873342", + "242899011731635031538175474", + "64031999311156905394834494" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "21991179374954416", + "850796480126366848", + "202605134250627808" + ], + "expectedQty": "1079399140397709788", + "swapFee": "648028301219357", + "reserves": [ + "364180818600973125099918926", + "242899010880838551411808626", + "64031999108551771144206686" + ], + "mAssetSupply": "669325678188174962838619289" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "40664521658024660566016", + "expectedQty": "41002144925591982749739", + "swapFee": "24398712994814796339", + "reserves": [ + "364139816456047533117169187", + "242899010880838551411808626", + "64031999108551771144206686" + ], + "mAssetSupply": "669285038065229932992849612" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "313626749641342620532736", + "outputIndex": 0, + "expectedQty": "327924217945006860848245", + "swapFee": "195144141736164359616", + "reserves": [ + "363811892238102526256320942", + "242899010880838551411808626", + "64345625858193113764739422" + ], + "mAssetSupply": "669285233209371669157209228", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "40644360407818464", + "8720229606512126", + "37251584904492192" + ], + "expectedQty": "87596565708405225", + "swapFee": "52589493120915", + "reserves": [ + "363811892197458165848502478", + "242899010872118321805296500", + "64345625820941528860247230" + ], + "mAssetSupply": "669285233121775103448804003" + }, { "type": "redeemMasset", - "inputQty": "19446629599317370470", + "inputQty": "78965779633788715794432", "expectedQtys": [ - "2711592808285356924", - "3583989261401682322", - "13205719541763392804" + "42911556507146772423335", + "28649900825429331278315", + "7589556629733353827124" ], - "redemptionFee": "5833988879795211", + "redemptionFee": "23689733890136614738", "reserves": [ - "5410589016663368139444198", - "7151329238788391900183336", - "26350092422240499848384628" + "363768980640951019076079143", + "242870360971292892474018185", + "64338036264311795506420106" ], - "mAssetSupply": "38791279753962824254345871" + "mAssetSupply": "669206291031875204869624309" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "63003512109021044736", + "expectedQty": "62757827798195547943", + "reserves": [ + "363768980640951019076079143", + "242870423974805001495062921", + "64338036264311795506420106" + ] }, { "type": "redeemBassets", "inputQtys": [ - "307578784679178587340800", - "487460855827892644347904", - "20771745989433476775936" + "4123700790764775082557440", + "2238411554604337636311040", + "4166328338427209559572480" ], - "expectedQty": "828289497353701462637557", - "swapFee": "497272061649210403824", + "expectedQty": "10644227641550810935655861", + "swapFee": "6390370807414935522707", "reserves": [ - "5103010231984189552103398", - "6663868382960499255835432", - "26329320676251066371608692" + "359645279850186243993521703", + "240632012420200663858751881", + "60171707925884585946847626" ], - "mAssetSupply": "37962990256609122791708314" + "mAssetSupply": "658562126148152192129516391" }, { "type": "mint", "inputIndex": 0, - "inputQty": "200535070381917530488832", - "expectedQty": "205125450326458101406260", + "inputQty": "1590498672497305415843840", + "expectedQty": "1575700968044402472881314", "reserves": [ - "5303545302366107082592230", - "6663868382960499255835432", - "26329320676251066371608692" + "361235778522683549409365543", + "240632012420200663858751881", + "60171707925884585946847626" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1469310449744268230656", - "13660223625458853347328", - "16664037343631629090816" + "5715364393697817600", + "10591415837567557632", + "3147464438920362496" ], - "expectedQty": "31794320032047458235954", + "expectedQty": "19486226165663928877", + "swapFee": "11698754952369779", "reserves": [ - "5305014612815851350822886", - "6677528606585958109182760", - "26345984713594698000699508" + "361235772807319155711547943", + "240632001828784826291194249", + "60171704778420147026485130" ], - "mAssetSupply": "38199910026967628351350528" + "mAssetSupply": "660137807629970428938468828" }, { "type": "redeem", + "inputIndex": 1, + "inputQty": "2065572374471963385528320", + "expectedQty": "2073048212223758187944600", + "swapFee": "1239343424683178031316", + "reserves": [ + "361235772807319155711547943", + "238558953616561068103249649", + "60171704778420147026485130" + ], + "mAssetSupply": "658073474598923148730971824" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "129822240288853096136704", + "273591318212841717104640", + "181429884138749067001856" + ], + "expectedQty": "589977924130677914650912", + "swapFee": "354199274042832448259", + "reserves": [ + "361105950567030302615411239", + "238285362298348226386145009", + "59990274894281397959483274" + ], + "mAssetSupply": "657483496674792470816320912" + }, + { + "type": "mint", "inputIndex": 2, - "inputQty": "8947768866912910442496", - "expectedQty": "9056636148746050553834", - "swapFee": "5368661320147746265", + "inputQty": "1592997490715172462919680", + "expectedQty": "1657224432449896633061604", + "reserves": [ + "361105950567030302615411239", + "238285362298348226386145009", + "61583272384996570422402954" + ] + }, + { + "type": "redeemMasset", + "inputQty": "2260399442541955933798", + "expectedQtys": [ + "1237973607339497209214", + "816909799125360766973", + "211124922606539209121" + ], + "redemptionFee": "678119832762586780", "reserves": [ - "5305014612815851350822886", - "6677528606585958109182760", - "26336928077445951950145674" + "361104712593422963118202025", + "238284545388549101025378036", + "61583061260073963883193833" ], - "mAssetSupply": "38190967626762035588654297" + "mAssetSupply": "659138461385919658256035498" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "5091302451768596627456", + "10162057493207014440960", + "18038358698320428269568" + ], + "expectedQty": "33913294823182812583154", + "swapFee": "20360193009715516860", + "reserves": [ + "361099621290971194521574569", + "238274383331055894010937076", + "61565022901375643454924265" + ], + "mAssetSupply": "659104548091096475443452344" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "528447642904941566099456", + "774499024791265678983168", + "383295537078640213753856" + ], + "expectedQty": "1693422005237659038591102", + "swapFee": "1016663201063233363172", + "reserves": [ + "360571173648066252955475113", + "237499884306264628331953908", + "61181727364297003241170409" + ], + "mAssetSupply": "657411126085858816404861242" + }, + { + "type": "mintMulti", + "inputQtys": [ + "1665161635831584640729088", + "2538223444433080500092928", + "1906126526039620698767360" + ], + "expectedQty": "6158109986748325489817360", + "reserves": [ + "362236335283897837596204201", + "240038107750697708832046836", + "63087853890336623939937769" + ], + "mAssetSupply": "663569236072607141894678602" + }, + { + "type": "redeemMasset", + "inputQty": "65946735683504731638988", + "expectedQtys": [ + "35988915803441765799227", + "23848273648989047067369", + "6267906448699343547233" + ], + "redemptionFee": "19784020705051419491", + "reserves": [ + "362200346368094395830404974", + "240014259477048719784979467", + "63081585983887924596390536" + ], + "mAssetSupply": "663503309120944342214459105" + }, + { + "type": "redeemMasset", + "inputQty": "2290768120875053377126", + "expectedQtys": [ + "1250134069153055935718", + "828408934070614193059", + "217726019771727283441" + ], + "redemptionFee": "687230436262516013", + "reserves": [ + "362199096234025242774469256", + "240013431068114649170786408", + "63081368257868152869107095" + ], + "mAssetSupply": "663501019040053903423597992" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "79992723839102430121820160", + "outputIndex": 1, + "expectedQty": "79136818773984672841627959", + "swapFee": "47504157163911825991567", + "reserves": [ + "442191820073127672896289416", + "160876612294129976329158449", + "63081368257868152869107095" + ], + "mAssetSupply": "663548523197217815249589559", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "10820260809977655296", + "expectedQty": "10775757052845462202", + "swapFee": "6492156485986593", + "reserves": [ + "442191820073127672896289416", + "160876601518372923483696247", + "63081368257868152869107095" + ], + "mAssetSupply": "663548512383449161757920856" }, { "type": "redeem", + "inputIndex": 0, + "inputQty": "4000383086758677832531968", + "expectedQty": "4052897048614795298607337", + "swapFee": "2400229852055206699519", + "reserves": [ + "438138923024512877597682079", + "160876601518372923483696247", + "63081368257868152869107095" + ], + "mAssetSupply": "659550529526542539132088407" + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "403563392508629056", - "expectedQty": "398124011017539759", - "swapFee": "242138035505177", + "inputQty": "12570340382554680459264", + "expectedQty": "12612566130657952704931", "reserves": [ - "5305014612815851350822886", - "6677528208461947091643001", - "26336928077445951950145674" + "438138923024512877597682079", + "160889171858755478164155511", + "63081368257868152869107095" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "6290874679551207560708096", + "outputIndex": 2, + "expectedQty": "5903374976291098316412711", + "swapFee": "3723203878291912157270", + "reserves": [ + "444429797704064085158390175", + "160889171858755478164155511", + "57177993281577054552694384" ], - "mAssetSupply": "38190967223440781115530418" + "mAssetSupply": "659566865296551488996950608", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "136135685848454551044096", - "69680092584141974929408", - "89947779334802891603968" + "454916722927746752", + "410553723699523776", + "221957377988041408" ], - "expectedQty": "298459555916520144029260", + "expectedQty": "1094374286135334211", + "swapFee": "657018782950971", "reserves": [ - "5441150298664305901866982", - "6747208301046089066572409", - "26426875856780754841749642" + "444429797249147362230643423", + "160889171448201754464631735", + "57177993059619676564652976" ], - "mAssetSupply": "38489426779357301259559678" + "mAssetSupply": "659566864202177202861616397" }, { "type": "redeemMasset", - "inputQty": "25740761793143376", + "inputQty": "23430593481483078336512", "expectedQtys": [ - "3637812969134356", - "4511009715909112", - "17668328652693191" + "15783282179922516038996", + "5713746486798535581445", + "2030593818253170472581" ], - "redemptionFee": "7722228537943", + "redemptionFee": "7029178044444923500", "reserves": [ - "5441150295026492932732626", - "6747208296535079350663297", - "26426875839112426189056451" + "444414013966967439714604427", + "160883457701714955929050290", + "57175962465801423394180395" ], - "mAssetSupply": "38489426753624261694954245" + "mAssetSupply": "659543440637873764228203385" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "610267910776731008499712", - "expectedQty": "601253567433943178470785", - "swapFee": "366160746466038605099", + "type": "mintMulti", + "inputQtys": [ + "46175624456911607300096", + "611278353656652782108672", + "1013567414871613304209408" + ], + "expectedQty": "1727927339182407788604875", "reserves": [ - "5441150295026492932732626", - "6145954729101136172192512", - "26426875839112426189056451" + "444460189591424351321904523", + "161494736055371608711158962", + "58189529880673036698389803" ], - "mAssetSupply": "37879525003593996725059632" + "mAssetSupply": "661271367977056172016808260" }, { - "type": "redeemMasset", - "inputQty": "7500018072212089706905", - "expectedQtys": [ - "1077006190673884841776", - "1216513224582989307161", - "5230862471288457079358" - ], - "redemptionFee": "2250005421663626912", + "type": "mint", + "inputIndex": 0, + "inputQty": "203231932092600958320640", + "expectedQty": "200236046183043036756462", + "reserves": [ + "444663421523516952280225163", + "161494736055371608711158962", + "58189529880673036698389803" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "272982419585493154922496", + "expectedQty": "258809028894741130467024", + "swapFee": "163789451751295892953", "reserves": [ - "5440073288835819047890850", - "6144738215876553182885351", - "26421644976641137731977093" + "444663421523516952280225163", + "161494736055371608711158962", + "57930720851778295567922779" ], - "mAssetSupply": "37872027235527206298979639" + "mAssetSupply": "661198785393105473194535179" }, { "type": "mint", "inputIndex": 0, - "inputQty": "309671076258899065569280", - "expectedQty": "315797033039395430147938", + "inputQty": "62582897602557795893248", + "expectedQty": "61656261768116278335354", "reserves": [ - "5749744365094718113460130", - "6144738215876553182885351", - "26421644976641137731977093" + "444726004421119510076118411", + "161494736055371608711158962", + "57930720851778295567922779" ] }, { - "type": "mintMulti", + "type": "swap", + "inputIndex": 0, + "inputQty": "29891292432918195004768256", + "outputIndex": 2, + "hardLimitError": true + }, + { + "type": "redeemBassets", "inputQtys": [ - "54885670406056216363008", - "411666200247570905694208", - "122999852237207954784256" + "428087714714908098560", + "25236816937715240960", + "767887744659439616000" ], - "expectedQty": "595185540123240080578658", + "expectedQty": "1256721441692847305868", + "swapFee": "754485556349518094", "reserves": [ - "5804630035500774329823138", - "6556404416124124088579559", - "26544644828878345686761349" + "444725576333404795168019851", + "161494710818554670995918002", + "57929952964033636128306779" ], - "mAssetSupply": "38783009808689841809706235" + "mAssetSupply": "661259184933431896625564665" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "686471969411162502594560", - "outputIndex": 0, - "expectedQty": "662907814183541582376213", - "swapFee": "406824474034139236208", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4069903117498528038912", + "expectedQty": "4128597583178393146343", + "swapFee": "2441941870499116823", "reserves": [ - "5141722221317232747446925", - "6556404416124124088579559", - "27231116798289508189355909" + "444721447735821616774873508", + "161494710818554670995918002", + "57929952964033636128306779" ], - "mAssetSupply": "38783416633163875948942443", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "661255117472256268596642576" }, { "type": "redeemMasset", - "inputQty": "3778405968371075", + "inputQty": "10803798794124660834304", "expectedQtys": [ - "500772942679448", - "638554513747708", - "2652147647142582" + "7263822251869283418056", + "2637760962452730508858", + "946194260547228084914" ], - "redemptionFee": "1133521790511", + "redemptionFee": "3241139638237398250", "reserves": [ - "5141722220816459804767477", - "6556404415485569574831851", - "27231116795637360542213327" + "444714183913569747491455452", + "161492073057592218265409144", + "57929006769773088900221865" ], - "mAssetSupply": "38783416629386603502361879" + "mAssetSupply": "661244316914601782173206522" }, { "type": "redeemMasset", - "inputQty": "516981906593945497", + "inputQty": "47594499046706716973465", "expectedQtys": [ - "68518458006960531", - "87370476530286796", - "362881161703099210" + "31999668619342351522094", + "11620256356603903226659", + "4168315486965999524641" ], - "redemptionFee": "155094571978183", + "redemptionFee": "14278349714012015092", "reserves": [ - "5141722152298001797806946", - "6556404328115093044545055", - "27231116432756198839114117" + "444682184244950405139933358", + "161480452801235614362182485", + "57924838454286122900697224" ], - "mAssetSupply": "38783416112559791480394565" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "28423089953075871350784", - "expectedQty": "29139287505021903084907", - "reserves": [ - "5170145242251077669157730", - "6556404328115093044545055", - "27231116432756198839114117" - ] + "mAssetSupply": "661196736693904789468248149" }, { - "type": "redeemMasset", - "inputQty": "39024195936625638", - "expectedQtys": [ - "5196777966487506", - "6590178023102662", - "27371390792686547" - ], - "redemptionFee": "11707258780987", - "reserves": [ - "5170145237054299702670224", - "6556404321524915021442393", - "27231116405384808046427570" + "type": "mintMulti", + "inputQtys": [ + "7574070724681520704913408", + "4342682928037094865502208", + "10290439447548361051209728" ], - "mAssetSupply": "38812555361052324705634821" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "219897416895157606809600", - "expectedQty": "214151453274711361055915", - "swapFee": "131938450137094564085", + "expectedQty": "22600616308441955761380057", "reserves": [ - "4955993783779588341614309", - "6556404321524915021442393", - "27231116405384808046427570" + "452256254969631925844846766", + "165823135729272709227684693", + "68215277901834483951906952" ], - "mAssetSupply": "38592789882607304193389306" + "mAssetSupply": "683797353002346745229628206" }, { "type": "redeemBassets", "inputQtys": [ - "49786434209558808", - "132402253753233776", - "129163240599505824" + "86186199634147715055616", + "10385208745605434703872", + "1587128526115875586048" ], - "expectedQty": "312879892591657979", - "swapFee": "187840639938958", + "expectedQty": "97145483737747687136189", + "swapFee": "58322283612816302062", "reserves": [ - "4955993733993154132055501", - "6556404189122661268208617", - "27231116276221567446921746" + "452170068769997778129791150", + "165812750520527103792980821", + "68213690773308368076320904" ], - "mAssetSupply": "38592789569727411601731327" + "mAssetSupply": "683700207518608997542492017" }, { "type": "redeemBassets", "inputQtys": [ - "2194636052985044533248", - "439229474409999920791552", - "195197039526236404056064" + "12417362313157643138498560", + "16305298667855057252253696", + "2727132284277623093198848" ], - "expectedQty": "640989905824102051113621", - "swapFee": "384824838397499730506", + "expectedQty": "31466112789765779347768433", + "swapFee": "18891002275224602370083", "reserves": [ - "4953799097940169087522253", - "6117174714712661347417065", - "27035919236695331042865682" + "439752706456840134991292590", + "149507451852672046540727125", + "65486558489030744983122056" ], - "mAssetSupply": "37951799663903309550617706" + "mAssetSupply": "652234094728843218194723584" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "8067673871018312597504", - "expectedQty": "8208445189078596314178", - "reserves": [ - "4953799097940169087522253", - "6125242388583679660014569", - "27035919236695331042865682" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1019101095570674871697408", - "expectedQty": "1003735670218169971185872", - "reserves": [ - "4953799097940169087522253", - "6125242388583679660014569", - "28055020332266005914563090" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1140325755228787943931904", - "expectedQty": "1122129776817038106395885", + "inputQty": "903375625051120730112", + "expectedQty": "898286976770989860577", + "swapFee": "542025375030672438", "reserves": [ - "4953799097940169087522253", - "6125242388583679660014569", - "29195346087494793858494994" - ] + "439752706456840134991292590", + "149506553565695275550866548", + "65486558489030744983122056" + ], + "mAssetSupply": "652233191895243542104665910" }, { - "type": "mintMulti", - "inputQtys": [ - "796632658058753081344", - "8334433080389736071168", - "3351917384593779982336" + "type": "redeemMasset", + "inputQty": "4798070489349970", + "expectedQtys": [ + "3234014337706520", + "1099495991072428", + "481599012287983" ], - "expectedQty": "12630554780669642176860", + "redemptionFee": "1439421146804", "reserves": [ - "4954595730598227840603597", - "6133576821664069396085737", - "29198698004879387638477330" + "439752706453606120653586070", + "149506553564595779559794120", + "65486558488549145970834073" ], - "mAssetSupply": "40098504110908265866690501" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "88393317019046838272", - "expectedQty": "90264797513107677366", - "reserves": [ - "4954595730598227840603597", - "6133665214981088442924009", - "29198698004879387638477330" - ] + "mAssetSupply": "652233191890446911036462744" }, { - "type": "mintMulti", - "inputQtys": [ - "506824688956938584064", - "1508602453646693629952", - "1543039108341469020160" + "type": "redeemMasset", + "inputQty": "39941058236513484800", + "expectedQtys": [ + "26921229124659094114", + "9152644486510346217", + "4009022843482180173" ], - "expectedQty": "3581543679678090429137", + "redemptionFee": "11982317470954045", "reserves": [ - "4955102555287184779187661", - "6135173817434735136553961", - "29200241043987729107497490" + "439752679532376995994491956", + "149506544411951293049447903", + "65486554479526302488653900" ], - "mAssetSupply": "40102175919385457064797004" + "mAssetSupply": "652233151961370991993931989" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1446564975574953754624", - "expectedQty": "1477168740218068091664", + "inputIndex": 2, + "inputQty": "3490300591317534720", + "expectedQty": "3634488934366157461", "reserves": [ - "4955102555287184779187661", - "6136620382410310090308585", - "29200241043987729107497490" + "439752679532376995994491956", + "149506544411951293049447903", + "65486557969826893806188620" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "924998174173924687872", - "expectedQty": "909821455797547708133", + "inputIndex": 0, + "inputQty": "18290471089919894749184", + "expectedQty": "18041961189322532056176", "reserves": [ - "4955102555287184779187661", - "6136620382410310090308585", - "29201166042161903032185362" + "439770970003466915889241140", + "149506544411951293049447903", + "65486557969826893806188620" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "125965189660255396560896", - "expectedQty": "129949790756329187554701", + "type": "redeem", + "inputIndex": 2, + "inputQty": "477969706843215878946816", + "expectedQty": "458601016340739513613171", + "swapFee": "286781824105929527368", "reserves": [ - "5081067744947440175748557", - "6136620382410310090308585", - "29201166042161903032185362" - ] + "439770970003466915889241140", + "149506544411951293049447903", + "65027956953486154292575449" + ], + "mAssetSupply": "651773514632030138942726178" }, { - "type": "redeemBassets", - "inputQtys": [ - "846938174793234018992128", - "1084816641499382671212544", - "564725156242377156853760" + "type": "swap", + "inputIndex": 2, + "inputQty": "116239467987587582394368", + "outputIndex": 0, + "expectedQty": "122703676388999289535862", + "swapFee": "72661052632252658768", + "reserves": [ + "439648266327077916599705278", + "149506544411951293049447903", + "65144196421473741874969817" ], - "hardLimitError": true + "mAssetSupply": "651773587293082771195384946", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 1, - "inputQty": "6569518871614373943574528", - "outputIndex": 2, - "expectedQty": "6676194010205990049321311", - "swapFee": "3972590035850588500314", + "inputIndex": 2, + "inputQty": "28854575304050711029874688", + "outputIndex": 1, + "expectedQty": "29430873689061467958447468", + "swapFee": "17809250692727765185506", "reserves": [ - "5081067744947440175748557", - "12706139254024684033883113", - "22524972031955912982864051" + "439648266327077916599705278", + "120075670722889825091000435", + "93998771725524452904844505" ], - "mAssetSupply": "40238485290373652456651816", + "mAssetSupply": "651791396543775498960570452", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "42201221975374471168", - "expectedQty": "42220062007914468350", - "swapFee": "25320733185224682", + "inputQty": "250394675256713904128", + "expectedQty": "247580581327841626373", + "swapFee": "150236805154028342", "reserves": [ - "5081067744947440175748557", - "12706097033962676119414763", - "22524972031955912982864051" + "439648266327077916599705278", + "120075423142308497249374062", + "93998771725524452904844505" ], - "mAssetSupply": "40238443114472410267405330" + "mAssetSupply": "651791146299337047400694666" }, { "type": "redeemBassets", "inputQtys": [ - "75081205453790192", - "439434605255024256", - "3434254118103800832" + "224966064783181873152", + "7816848964899431424", + "101785498760270020608" ], - "expectedQty": "3924744229345185662", - "swapFee": "2356260293783381", + "expectedQty": "334035765220437915299", + "swapFee": "200541784202784419", "reserves": [ - "5081067669866234721958365", - "12706096594528070864390507", - "22524968597701794879063219" + "439648041361013133417832126", + "120075415325459532349942638", + "93998669940025692634823897" ], - "mAssetSupply": "40238439189728180922219668" + "mAssetSupply": "651790812263571826962779367" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "98122187023462367756288", - "expectedQty": "98783277575044364850186", - "swapFee": "58873312214077420653", + "type": "redeemBassets", + "inputQtys": [ + "407906169996192040091648", + "295932016709742324875264", + "45772508182646443999232" + ], + "expectedQty": "749011627778371548510523", + "swapFee": "449676782736664928063", "reserves": [ - "5081067669866234721958365", - "12706096594528070864390507", - "22426185320126750514213033" + "439240135191016941377740478", + "119779483308749790025067374", + "93952897431843046190824665" ], - "mAssetSupply": "40140375876016932631884033" + "mAssetSupply": "651041800635793455414268844" }, { - "type": "redeemMasset", - "inputQty": "590002753121352217211699", - "expectedQtys": [ - "74661596844522362094702", - "186704354880829191257950", - "329532081822466471020367" + "type": "redeemBassets", + "inputQtys": [ + "8413278529151", + "7066958600797", + "7672728797885" ], - "redemptionFee": "177000825936405665163", + "expectedQty": "23280395146477", + "swapFee": "13976623061", "reserves": [ - "5006406073021712359863663", - "12519392239647241673132557", - "22096653238304284043192666" + "439240135191008528099211327", + "119779483308742723066466577", + "93952897431835373462026780" ], - "mAssetSupply": "39550550123721516820337497" + "mAssetSupply": "651041800635770175019122367" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "16908230890289", - "outputIndex": 2, - "expectedQty": "17003553606083", - "swapFee": "10134084595", + "type": "mintMulti", + "inputQtys": [ + "501251127059796939767808", + "395272424255482708885504", + "318666481712536787877888" + ], + "expectedQty": "1219825358613407524529479", "reserves": [ - "5006406073021712359863663", - "12519392239664149904022846", - "22096653238287280489586583" + "439741386318068325038979135", + "120174755732998205775352081", + "94271563913547910249904668" ], - "mAssetSupply": "39550550123721526954422092", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "652261625994383582543651846" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "6200358259197923557376", - "outputIndex": 1, - "expectedQty": "6329508356866782615062", - "swapFee": "3795948232337730312", + "inputQty": "764641745704006451200", + "expectedQty": "773006681009186192653", + "swapFee": "458785047422403870", "reserves": [ - "5012606431280910283421039", - "12513062731307283121407784", - "22096653238287280489586583" + "439740613311387315852786482", + "120174755732998205775352081", + "94271563913547910249904668" ], - "mAssetSupply": "39550553919669759292152404", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "652260861811422925959604516" }, { - "type": "redeemMasset", - "inputQty": "350634528158447619276", - "expectedQtys": [ - "44425815541740719220", - "110900990210243466694", - "195838602992636463004" - ], - "redemptionFee": "105190358447534285", + "type": "swap", + "inputIndex": 1, + "inputQty": "6705571049975273211559936", + "outputIndex": 2, + "expectedQty": "6631098116631240201966632", + "swapFee": "4063549704271078716925", "reserves": [ - "5012562005465368542701819", - "12512951830317072877941090", - "22096457399684287853123579" + "439740613311387315852786482", + "126880326782973478986912017", + "87640465796916670047938036" ], - "mAssetSupply": "39550203390331959292067413" + "mAssetSupply": "652264925361127197038321441", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "98796427403242730684416", - "194769874947932193554432", - "5238850526940579758080" + "314924873459312491495424", + "396525368557627399733248", + "672221505723090478301184" ], - "expectedQty": "300531499077140929552309", + "expectedQty": "1398841843421254470814449", + "swapFee": "839808991447621255241", "reserves": [ - "5111358432868611273386235", - "12707721705265005071495522", - "22101696250211228432881659" + "439425688437928003361291058", + "126483801414415851587178769", + "86968244291193579569636852" ], - "mAssetSupply": "39850734889409100221619722" + "mAssetSupply": "650866083517705942567506992" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "30603287251072344653824", - "outputIndex": 0, - "expectedQty": "29955949435867740101743", - "swapFee": "18341130865665899419", + "inputIndex": 0, + "inputQty": "35708356095196228", + "outputIndex": 2, + "expectedQty": "34482666448051507", + "swapFee": "21173043338941", "reserves": [ - "5081402483432743533284492", - "12738324992516077416149346", - "22101696250211228432881659" + "439425688473636359456487286", + "126483801414415851587178769", + "86968244256710913121585345" ], - "mAssetSupply": "39850753230539965887519141", + "mAssetSupply": "650866083517727115610845933", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "10059796869887633129472", - "expectedQty": "10125743292820406097524", - "swapFee": "6035878121932579877", + "inputIndex": 1, + "inputQty": "11237796423365496832", + "expectedQty": "11127462540932929901", + "swapFee": "6742677854019298", "reserves": [ - "5081402483432743533284492", - "12738324992516077416149346", - "22091570506918408026784135" + "439425688473636359456487286", + "126483790286953310654248868", + "86968244256710913121585345" ], - "mAssetSupply": "39840699469548200186969546" + "mAssetSupply": "650866072286673370099368399" }, { "type": "redeemBassets", "inputQtys": [ - "76020944638995767230464", - "146909654714935920295936", - "302741782925584451502080" + "460194055131916029394944", + "151354332006663304773632", + "489971161390047710674944" ], - "expectedQty": "524865304071448102242690", - "swapFee": "315108247391303643531", + "expectedQty": "1108709268818986733999241", + "swapFee": "665624936253143926755", "reserves": [ - "5005381538793747766054028", - "12591415337801141495853410", - "21788828723992823575282055" + "438965494418504443427092342", + "126332435954946647349475236", + "86478273095320865410910401" ], - "mAssetSupply": "39315834165476752084726856" + "mAssetSupply": "649757363017854383365369158" }, { "type": "redeemBassets", "inputQtys": [ - "31886111530978350465024", - "2745018061514255892480", - "334468548379121385734144" + "845281698529392164077568", + "2498970456447581901815808", + "800711423422887467417600" ], - "expectedQty": "367371614154770824849146", - "swapFee": "220555301673866814998", + "expectedQty": "4177308649729459009991031", + "swapFee": "2507889923791950576340", "reserves": [ - "4973495427262769415589004", - "12588670319739627239960930", - "21454360175613702189547911" + "438120212719975051263014774", + "123833465498499065447659428", + "85677561671897977943492801" ], - "mAssetSupply": "38948462551321981259877710" + "mAssetSupply": "645580054368124924355378127" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "12440917440297894412288", - "expectedQty": "12449611823217042855930", - "swapFee": "7464550464178736647", + "type": "redeemBassets", + "inputQtys": [ + "536555890107731410944", + "79876377247448154112", + "81753901116672983040" + ], + "expectedQty": "694430097093987337485", + "swapFee": "416908203178299382", "reserves": [ - "4973495427262769415589004", - "12576220707916410197105000", - "21454360175613702189547911" + "438119676164084943531603830", + "123833385622121817999505316", + "85677479917996861270509761" ], - "mAssetSupply": "38936029098432147544202069" + "mAssetSupply": "645579359938027830368040642" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1895664234827344462741504", - "expectedQty": "1891997702242148519298009", + "inputQty": "17640903852737645208666112", + "expectedQty": "17783295115287310086542938", "reserves": [ - "4973495427262769415589004", - "14471884942743754659846504", - "21454360175613702189547911" + "438119676164084943531603830", + "141474289474859463208171428", + "85677479917996861270509761" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "46447630897270824960", - "129387477403495153664", - "100337544529827774464" - ], - "expectedQty": "276180532438273524585", - "swapFee": "165807804145451385", + "type": "swap", + "inputIndex": 1, + "inputQty": "188132795004443084980224", + "outputIndex": 0, + "expectedQty": "191361902400784624067469", + "swapFee": "113616728656068929853", "reserves": [ - "4973448979631872144764044", - "14471755555266351164692840", - "21454259838069172361773447" + "437928314261684158907536361", + "141662422269863906293151652", + "85677479917996861270509761" ], - "mAssetSupply": "40827750620141857789975493" + "mAssetSupply": "663362768670043796523513433", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "638133567893250944", - "338985290994643648", - "690747575453311616" - ], - "expectedQty": "1676171161406690520", + "type": "swap", + "inputIndex": 0, + "inputQty": "899952565645651607552", + "outputIndex": 1, + "expectedQty": "883728534088956719925", + "swapFee": "534007407797206716", "reserves": [ - "4973449617765440038014988", - "14471755894251642159336488", - "21454260528816747815085063" + "437929214214249804559143913", + "141661538541329817336431727", + "85677479917996861270509761" ], - "mAssetSupply": "40827752296313019196666013" + "mAssetSupply": "663362769204051204320720149", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "12261531405900492800", - "9714967675799019520", - "15932676809009608704" - ], - "expectedQty": "38043020715954427782", - "swapFee": "22839516139256210", + "type": "redeem", + "inputIndex": 0, + "inputQty": "7957456368397317046272", + "expectedQty": "8041501745092054817847", + "swapFee": "4774473821038390227", "reserves": [ - "4973437356234034137522188", - "14471746179283966360316968", - "21454244596139938805476359" + "437921172712504712504326066", + "141661538541329817336431727", + "85677479917996861270509761" ], - "mAssetSupply": "40827714253292303242238231" + "mAssetSupply": "663354816522156628042064104" }, { "type": "redeemBassets", "inputQtys": [ - "39591895703582765219840", - "51285677286534336741376", - "47958007023822069301248" + "426083239840283951104", + "238117067458327379968", + "236128773785764757504" ], - "expectedQty": "139243684766491885494866", - "swapFee": "83596368681103793573", + "expectedQty": "902711305598129991220", + "swapFee": "541951954531596952", "reserves": [ - "4933845460530451372302348", - "14420460501997432023575592", - "21406286589116116736175111" + "437920746629264872220374962", + "141661300424262359009051759", + "85677243789223075505752257" ], - "mAssetSupply": "40688470568525811356743365" + "mAssetSupply": "663353913810851029912072884" }, { - "type": "mintMulti", - "inputQtys": [ - "543495719095170170880", - "1118546028150591848448", - "999351797235443695616" - ], - "expectedQty": "2663709091839485307269", + "type": "redeem", + "inputIndex": 0, + "inputQty": "10219677404386577363238912", + "expectedQty": "10325667435947260345405356", + "swapFee": "6131806442631946417943", "reserves": [ - "4934388956249546542473228", - "14421579048025582615424040", - "21407285940913352179870727" + "427595079193317611874969606", + "141661300424262359009051759", + "85677243789223075505752257" ], - "mAssetSupply": "40691134277617650842050634" + "mAssetSupply": "653140368212907084495251915" }, { - "type": "redeemMasset", - "inputQty": "3110677837668007333068", - "expectedQtys": [ - "377101544420919761448", - "1102142490228893322093", - "1636012211796626430734" - ], - "redemptionFee": "933203351300402199", - "reserves": [ - "4934011854705125622711780", - "14420476905535353722101947", - "21405649928701555553439993" + "type": "mintMulti", + "inputQtys": [ + "3133468862798297600", + "34111731691399127040", + "61127562255847899136" ], - "mAssetSupply": "40688024532983334135119765" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "273084604922824092549120", - "expectedQty": "272367812678246818407170", - "reserves": [ - "4934011854705125622711780", - "14693561510458177814651067", - "21405649928701555553439993" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "38468291828630603956224", - "expectedQty": "37610031420736885124049", - "swapFee": "23080975097178362373", + "expectedQty": "99911860735634003989", "reserves": [ - "4896401823284388737587731", - "14693561510458177814651067", - "21405649928701555553439993" + "427595082326786474673267206", + "141661334535994050408178799", + "85677304916785331353651393" ], - "mAssetSupply": "40921947134808047527933084" + "mAssetSupply": "653140468124767820129255904" }, { "type": "mint", "inputIndex": 1, - "inputQty": "18315356177391142912", - "expectedQty": "18265140661897934558", + "inputQty": "29344438980509290496", + "expectedQty": "29521493626511200092", "reserves": [ - "4896401823284388737587731", - "14693579825814355205793979", - "21405649928701555553439993" + "427595082326786474673267206", + "141661363880433030917469295", + "85677304916785331353651393" ] }, { "type": "redeemBassets", "inputQtys": [ - "25986259641977", - "22557614797741", - "34958129340245" + "14922505824691413843968", + "53973338402317676838912", + "203949930340031332352" ], - "expectedQty": "83788232863373", - "swapFee": "50303121590", + "expectedQty": "69270927005192780650309", + "swapFee": "41587508708340672793", "reserves": [ - "4896401823258402477945754", - "14693579825791797590996238", - "21405649928666597424099748" + "427580159820961783259423238", + "141607390542030713240630383", + "85677100966854991322319041" ], - "mAssetSupply": "40921965399864921193004269" + "mAssetSupply": "653071226719256253859805687" }, { - "type": "redeemMasset", - "inputQty": "103896251837999434275225", - "expectedQtys": [ - "12427682214693786620907", - "37294149308533833108755", - "54330225442041326148359" + "type": "redeemBassets", + "inputQtys": [ + "697947762274838859743232", + "780581471372703594184704", + "379477863996389909856256" ], - "redemptionFee": "31168875551399830282", + "expectedQty": "1863791592678503481250746", + "swapFee": "1118946323401142774415", "reserves": [ - "4883974141043708691324847", - "14656285676483263757887483", - "21351319703224556097951389" + "426882212058686944399680006", + "140826809070658009646445679", + "85297623102858601412462785" ], - "mAssetSupply": "40818100316902473158559326" + "mAssetSupply": "651207435126577750378554941" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "28440994681022536744960", - "expectedQty": "28501839479090099872045", - "swapFee": "17064596808613522046", + "inputIndex": 2, + "inputQty": "44821273179148339118080", + "expectedQty": "43809031587340882625755", + "swapFee": "26892763907489003470", "reserves": [ - "4883974141043708691324847", - "14627783837004173658015438", - "21351319703224556097951389" + "426882212058686944399680006", + "140826809070658009646445679", + "85253814071271260529837030" ], - "mAssetSupply": "40789676386818259235336412" + "mAssetSupply": "651162640746162509528440331" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "186765761229769070870528", - "expectedQty": "185509957795095971196108", + "type": "redeemBassets", + "inputQtys": [ + "57747865821457942577152", + "68545911072780523143168", + "20756182276902490210304" + ], + "expectedQty": "147316940267311257860946", + "swapFee": "88443230098445822209", "reserves": [ - "4883974141043708691324847", - "14627783837004173658015438", - "21538085464454325168821917" - ] + "426824464192865486457102854", + "140758263159585229123302511", + "85233057888994358039626726" + ], + "mAssetSupply": "651015323805895198270579385" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "230391024063289059442688", - "expectedQty": "235364108972678997058384", + "inputIndex": 1, + "inputQty": "29053432203397931466752", + "expectedQty": "29231291626453141827264", "reserves": [ - "5114365165106997750767535", - "14627783837004173658015438", - "21538085464454325168821917" + "426824464192865486457102854", + "140787316591788627054769263", + "85233057888994358039626726" ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "2543709313120274", - "outputIndex": 0, - "expectedQty": "2484718523386912", - "swapFee": "1522455566680", + "inputIndex": 0, + "inputQty": "190745499131433554280448", + "outputIndex": 2, + "expectedQty": "184420350839676279571641", + "swapFee": "113218743307824458183", "reserves": [ - "5114365162622279227380623", - "14627783839547882971135712", - "21538085464454325168821917" + "427015209691996920011383302", + "140787316591788627054769263", + "85048637538154681760055085" ], - "mAssetSupply": "41210550453587556659157584", + "mAssetSupply": "651044668316264959236864832", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1102421889391596301975552", - "expectedQty": "1095054573982897517827980", + "type": "mintMulti", + "inputQtys": [ + "9573070699111004965437440", + "16480614104605348151164928", + "16204812449623575952883712" + ], + "expectedQty": "42566567898328900330054957", "reserves": [ - "5114365162622279227380623", - "14627783839547882971135712", - "22640507353845921470797469" - ] + "436588280391107924976820742", + "157267930696393975205934191", + "101253449987778257712938797" + ], + "mAssetSupply": "693611236214593859566919789" + }, + { + "type": "mintMulti", + "inputQtys": [ + "5532407156562468607623168", + "2759471812394989670891520", + "307062355306754493906944" + ], + "expectedQty": "8567185972846120757802049", + "reserves": [ + "442120687547670393584443910", + "160027402508788964876825711", + "101560512343085012206845741" + ], + "mAssetSupply": "702178422187439980324721838" }, { "type": "redeemMasset", - "inputQty": "528610235830006474971545", + "inputQty": "9720983444283832506777", "expectedQtys": [ - "63885027084254506404364", - "182719914800333545519662", - "282809181493819142335295" + "6118898550423064651256", + "2214760514081166109814", + "1405585599722297156021" ], - "redemptionFee": "158583070749001942491", + "redemptionFee": "2916295033285149752", "reserves": [ - "5050480135538024720976259", - "14445063924747549425616050", - "22357698172352102328462174" + "442114568649119970519792654", + "160025187748274883710715897", + "101559106757485289909689720" ], - "mAssetSupply": "41777153374811196703956510" + "mAssetSupply": "702168704120290729777364813" }, { "type": "mint", "inputIndex": 2, - "inputQty": "693979109956163821633536", - "expectedQty": "689075180128341076650261", + "inputQty": "10742137476068465967104", + "expectedQty": "10924014815896770298408", "reserves": [ - "5050480135538024720976259", - "14445063924747549425616050", - "23051677282308266150095710" + "442114568649119970519792654", + "160025187748274883710715897", + "101569848894961358375656824" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "81312278846782379655168", - "expectedQty": "81135014286770201302827", + "inputIndex": 0, + "inputQty": "94500385413140729298944", + "expectedQty": "93647600360935184269300", "reserves": [ - "5050480135538024720976259", - "14526376203594331805271218", - "23051677282308266150095710" + "442209069034533111249091598", + "160025187748274883710715897", + "101569848894961358375656824" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "63803939970676087062528", - "91392829875444378501120", - "86205010023115051237376" + "2281835147134968126242816", + "3136659660822709606023168", + "1388602636252608873889792" ], - "expectedQty": "242064138433151216001206", - "swapFee": "145325678466970912148", + "expectedQty": "6824157880473863965515450", "reserves": [ - "4986676195567348633913731", - "14434983373718887426770098", - "22965472272285151098858334" + "444490904181668079375334414", + "163161847409097593316739065", + "102958451531213967249546616" ], - "mAssetSupply": "42305299430793156765908392" + "mAssetSupply": "709097433615941425697447971" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "780462651248233762783232", + "expectedQty": "773519054031706167660700", + "reserves": [ + "445271366832916313138117646", + "163161847409097593316739065", + "102958451531213967249546616" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "723021811044652863717376", + "expectedQty": "716573581919425233214430", + "reserves": [ + "445994388643960966001835022", + "163161847409097593316739065", + "102958451531213967249546616" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "50432175992728998379520", - "22905426178884623138816", - "18423477519862303031296" + "348065789556942176256", + "173436365513592766464", + "854445969338177683456" ], - "expectedQty": "92752916310208112809615", + "expectedQty": "1387958647460887886964", + "swapFee": "833275153568673936", "reserves": [ - "5037108371560077632293251", - "14457888799897772049908914", - "22983895749805013401889630" + "445994040578171409059658766", + "163161673972732079723972601", + "102957597085244629071863160" ], - "mAssetSupply": "42398052347103364878718007" + "mAssetSupply": "710586138293245096210436137" }, { "type": "swap", "inputIndex": 2, - "inputQty": "285810281201987649536", - "outputIndex": 0, - "expectedQty": "277177520236627733136", - "swapFee": "170250808862109198", + "inputQty": "87897916914520953693667328", + "outputIndex": 1, + "expectedQty": "87283537580202933515980516", + "swapFee": "53173748441901114447701", "reserves": [ - "5036831194039841004560115", - "14457888799897772049908914", - "22984181560086215389539166" + "445994040578171409059658766", + "75878136392529146207992085", + "190855513999765582765530488" ], - "mAssetSupply": "42398052517354173740827205", + "mAssetSupply": "710639312041686997324883838", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "48689740905896491352064", - "expectedQty": "49013112416081463583541", - "swapFee": "29213844543537894811", - "reserves": [ - "5036831194039841004560115", - "14457888799897772049908914", - "22935168447670133925955625" - ], - "mAssetSupply": "42349391990292820787369952" - }, { "type": "swap", "inputIndex": 2, - "inputQty": "2327691144535450570457088", - "outputIndex": 0, - "expectedQty": "2204516166787881622557640", - "swapFee": "1385874640563732203921", + "inputQty": "1241826057132074", + "outputIndex": 1, + "expectedQty": "1203086429942206", + "swapFee": "745969824161", "reserves": [ - "2832315027251959382002475", - "14457888799897772049908914", - "25262859592205584496412713" + "445994040578171409059658766", + "75878136391326059778049879", + "190855514001007408822662562" ], - "mAssetSupply": "42350777864933384519573873", + "mAssetSupply": "710639312041687743294707999", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "154449051472740604706816", - "53742163997803734368256", - "1394252816179875337469952" + "30793877507778654983159808", + "68146527497207441694654464", + "68365921451260658636029952" ], - "expectedQty": "1594706766383577583736152", + "expectedQty": "168385753244047044687971984", "reserves": [ - "2986764078724699986709291", - "14511630963895575784277170", - "26657112408385459833882665" + "476787918085950064042818574", + "144024663888533501472704343", + "259221435452268067458692514" ], - "mAssetSupply": "43945484631316962103310025" + "mAssetSupply": "879025065285734787982679983" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2902907835727462023561216", - "outputIndex": 0, - "hardLimitError": true + "type": "redeemBassets", + "inputQtys": [ + "547616628766090305994752", + "1552236840498060421234688", + "202559359667237967364096" + ], + "expectedQty": "2316488624633528546213076", + "swapFee": "1390727611346925282897", + "reserves": [ + "476240301457183973736823822", + "142472427048035441051469655", + "259018876092600829491328418" + ], + "mAssetSupply": "876708576661101259436466907" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "124592820439921796841472", - "expectedQty": "134348203197789232590416", + "type": "redeem", + "inputIndex": 1, + "inputQty": "218724554899204256", + "expectedQty": "216187567085307740", + "swapFee": "131234732939522", "reserves": [ - "3111356899164621783550763", - "14511630963895575784277170", - "26657112408385459833882665" - ] + "476240301457183973736823822", + "142472426831847873966161915", + "259018876092600829491328418" + ], + "mAssetSupply": "876708576442507939270202173" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "622666633232955239038976", - "312959821114573701775360", - "41785596629656048500736" + "62938926628366119337984", + "107347486595330848325632", + "145880690596513539162112" ], - "expectedQty": "1033183733887526223543176", - "swapFee": "620282409778382763784", + "expectedQty": "317054954753305672510845", "reserves": [ - "2488690265931666544511787", - "14198671142781002082501810", - "26615326811755803785381929" + "476303240383812339856161806", + "142579774318443204814487547", + "259164756783197343030490530" ], - "mAssetSupply": "43046649100627225112357265" + "mAssetSupply": "877025631397261244942713018" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10757948730069070381056", - "8269237203606986293248", - "693008442345802301440" + "6949196350191597256704", + "6908867575315382140928", + "4384314819884937117696" ], - "expectedQty": "20905896989910579936924", - "swapFee": "12551068835247496460", + "expectedQty": "18281345606641855802761", "reserves": [ - "2477932317201597474130731", - "14190401905577395096208562", - "26614633803313457983080489" + "476310189580162531453418510", + "142586683186018520196628475", + "259169141098017227967608226" ], - "mAssetSupply": "43025743203637314532420341" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "3361727147060789760", - "expectedQty": "3751852472022239467", - "reserves": [ - "2477935678928744534920491", - "14190401905577395096208562", - "26614633803313457983080489" - ] + "mAssetSupply": "877043912742867886798515779" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "57026190129246748672", - "expectedQty": "56026729853310383241", + "type": "redeemBassets", + "inputQtys": [ + "438191028670426841088", + "190513089029157126144", + "210098503172172480512" + ], + "expectedQty": "838512091020347231464", + "swapFee": "503409300192323733", "reserves": [ - "2477935678928744534920491", - "14190401905577395096208562", - "26614690829503587229829161" - ] + "476309751389133861026577422", + "142586492672929491039502331", + "259168930999514055795127714" + ], + "mAssetSupply": "877043074230776866451284315" }, { "type": "redeemMasset", - "inputQty": "6292421712867", + "inputQty": "1978047557942263152640", "expectedQtys": [ - "362283502546", - "2074690052941", - "3891167755043" + "1073927517623105113304", + "321487346576960213556", + "584343792881859325972" ], - "redemptionFee": "1887726513", + "redemptionFee": "593414267382678945", "reserves": [ - "2477935678928382251417945", - "14190401905575320406155621", - "26614690829499696062074118" + "476308677461616237921464118", + "142586171185582914079288775", + "259168346655721173935801742" ], - "mAssetSupply": "43025802982213349331056695" + "mAssetSupply": "877041096776633191570810620" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "67875373006314509697024", - "expectedQty": "67497931173724610399292", + "type": "redeemBassets", + "inputQtys": [ + "1088462273228114334056448", + "739563027081703536459776", + "1208904087300601479692288" + ], + "expectedQty": "3039419799837174895650627", + "swapFee": "1824746727939068378417", "reserves": [ - "2477935678928382251417945", - "14258277278581634915852645", - "26614690829499696062074118" - ] + "475220215188388123587407670", + "141846608158501210542828999", + "257959442568420572456109454" + ], + "mAssetSupply": "874001676976796016675159993" }, { "type": "redeemMasset", - "inputQty": "1178378838703258311065", + "inputQty": "7334549997654238", "expectedQtys": [ - "67738393712138747734", - "389773151969421910951", - "727555772034874078056" + "3986812453632499", + "1190007928614017", + "2164124936806783" ], - "redemptionFee": "353513651610977493", + "redemptionFee": "2200364999296", "reserves": [ - "2477867940534670112670211", - "14257887505429665493941694", - "26613963273727661187996062" + "475220215184401311133775171", + "141846608157311202614214982", + "257959442566256447519302671" ], - "mAssetSupply": "43092122888062022294122415" + "mAssetSupply": "874001676969463667042505051" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "24466176345476201185280", - "expectedQty": "24037691214733762961580", + "type": "redeem", + "inputIndex": 0, + "inputQty": "227616410225633348550656", + "expectedQty": "228779693159177232195566", + "swapFee": "136569846135380009130", "reserves": [ - "2477867940534670112670211", - "14257887505429665493941694", - "26638429450073137389181342" - ] + "474991435491242133901579605", + "141846608157311202614214982", + "257959442566256447519302671" + ], + "mAssetSupply": "873774197129084169073963525" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "82508197417760358400", - "44938256511403253760", - "149924490498499215360" + "1182132953419157447114752", + "2670245640907150046789632", + "67947822642962624413696" ], - "expectedQty": "284099723380862749566", - "swapFee": "170562171331316439", + "expectedQty": "3942953833532107461168542", "reserves": [ - "2477785432337252352311811", - "14257842567173154090687934", - "26638279525582638889965982" + "476173568444661291348694357", + "144516853798218352661004614", + "258027390388899410143716367" ], - "mAssetSupply": "43115876479553375194334429" + "mAssetSupply": "877717150962616276535132067" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3691032516125321886433280", - "expectedQty": "3865633816937272758119229", + "inputIndex": 1, + "inputQty": "1691518224518468639653888", + "expectedQty": "1709493001507096692948748", "reserves": [ - "6168817948462574238745091", - "14257842567173154090687934", - "26638279525582638889965982" + "476173568444661291348694357", + "146208372022736821300658502", + "258027390388899410143716367" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "366801053098741334016", - "67331551249323376640", - "163295920888018894848" - ], - "expectedQty": "603160519959177097926", - "swapFee": "362113580123580406", - "reserves": [ - "6168451147409475497411075", - "14257775235621904767311294", - "26638116229661750871071134" - ], - "mAssetSupply": "46980907135970688775355732" - }, { "type": "mint", "inputIndex": 2, - "inputQty": "2321448457957221335040", - "expectedQty": "2304516513556819644572", + "inputQty": "30672641933630381295140864", + "expectedQty": "30671797688393112197889199", "reserves": [ - "6168451147409475497411075", - "14257775235621904767311294", - "26640437678119708092406174" + "476173568444661291348694357", + "146208372022736821300658502", + "288700032322529791438857231" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "864225822793729441792", - "2069866911720016445440", - "855881329682151899136" + "type": "redeemMasset", + "inputQty": "7134462916136442160742", + "expectedQtys": [ + "3731710040890046720983", + "1145815908517489162470", + "2262504432873555289872" ], - "expectedQty": "3799234968799277911254", - "swapFee": "2280909526995764205", + "redemptionFee": "2140338874840932648", "reserves": [ - "6167586921586681767969283", - "14255705368710184750865854", - "26639581796790025940507038" + "476169836734620401301973374", + "146207226206828303811496032", + "288697769818096917883567359" ], - "mAssetSupply": "46979412417515446317089050" + "mAssetSupply": "910091309329939223824741920" }, { - "type": "redeemBassets", - "inputQtys": [ - "1604621178954849976320", - "1738318165405206839296", - "2692942837830177521664" - ], - "expectedQty": "6045923421619692457621", - "swapFee": "3629731892107079722", + "type": "swap", + "inputIndex": 0, + "inputQty": "89240165238026827389206528", + "outputIndex": 2, + "expectedQty": "88434405833895961460962410", + "swapFee": "53224798004025316972591", "reserves": [ - "6165982300407726917992963", - "14253967050544779544026558", - "26636888853952195762985374" + "565410001972647228691179902", + "146207226206828303811496032", + "200263363984200956422604949" ], - "mAssetSupply": "46973366494093826624631429" + "mAssetSupply": "910144534127943249141714511", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "8761725709794641182720", - "expectedQty": "8593264599595104408977", - "swapFee": "5257035425876784709", + "type": "mintMulti", + "inputQtys": [ + "12885986150946212", + "12405599828480892", + "8746939647463005" + ], + "expectedQty": "34138814896484951", "reserves": [ - "6157389035808131813583986", - "14253967050544779544026558", - "26636888853952195762985374" + "565410001985533214842126114", + "146207226219233903639976924", + "200263363992947896070067954" ], - "mAssetSupply": "46964610025419457860233418" + "mAssetSupply": "910144534162082064038199462" }, { "type": "redeemBassets", "inputQtys": [ - "53646032278675114688512", - "42986925164251391721472", - "97812353751244800524288" + "569649825396783811919872", + "498056518754575442771968", + "705960356088900023746560" ], - "expectedQty": "194735811755900340840011", - "swapFee": "116911634033960580852", + "expectedQty": "1779141431642369434885148", + "swapFee": "1068125734426077307315", "reserves": [ - "6103743003529456698895474", - "14210980125380528152305086", - "26539076500200950962461086" + "564840352160136431030206242", + "145709169700479328197204956", + "199557403636858996046321394" ], - "mAssetSupply": "46769874213663557519393407" + "mAssetSupply": "908365392730439694603314314" }, { "type": "mintMulti", "inputQtys": [ - "8607866465131568300032", - "18980611917612278874112", - "13423668214355244089344" + "14637903667492848402432", + "10624475630161664933888", + "8271216205351769604096" ], - "expectedQty": "41070342473658280627371", + "expectedQty": "33594264294130517346738", "reserves": [ - "6112350869994588267195506", - "14229960737298140431179198", - "26552500168415306206550430" + "564854990063803923878608674", + "145719794176109489862138844", + "199565674853064347815925490" ], - "mAssetSupply": "46810944556137215800020778" + "mAssetSupply": "908398986994733825120661052" }, { - "type": "redeemBassets", - "inputQtys": [ - "1523321229712484990976", - "178451616684045893632", - "6371638161858317254656" + "type": "redeemMasset", + "inputQty": "608436421710365900", + "expectedQtys": [ + "378220639117660113", + "97572358667056331", + "133626963409400390" ], - "expectedQty": "8055868250475545516974", - "swapFee": "4836422803967707934", + "redemptionFee": "182530926513109", "reserves": [ - "6110827548764875782204530", - "14229782285681456385285566", - "26546128530253447889295774" + "564854989685583284760948561", + "145719794078537131195082513", + "199565674719437384406525100" ], - "mAssetSupply": "46802888687886740254503804" + "mAssetSupply": "908398986386479934336808261" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1826221501183206621184", - "outputIndex": 1, - "expectedQty": "1861015454692134877857", - "swapFee": "1116763849023742964", + "type": "redeemMasset", + "inputQty": "126234255838264184065228", + "expectedQtys": [ + "78470649057262178562163", + "20243650194536372109693", + "27724014677646033361748" + ], + "redemptionFee": "37870276751479255219", "reserves": [ - "6112653770266058988825714", - "14227921270226764250407709", - "26546128530253447889295774" + "564776519036526022582386398", + "145699550428342594822972820", + "199537950704759738373163352" ], - "mAssetSupply": "46802889804650589278246768", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "908272790000918421631998252" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10195129034568468480", - "expectedQty": "10193711162464816517", - "swapFee": "6117077420741081", + "type": "mintMulti", + "inputQtys": [ + "13885805264989484929253376", + "2212077726930729303015424", + "16478919957363757410156544" + ], + "expectedQty": "32571459351907697972327983", "reserves": [ - "6112653770266058988825714", - "14227911076515601785591192", - "26546128530253447889295774" + "578662324301515507511639774", + "147911628155273324125988244", + "216016870662123495783319896" ], - "mAssetSupply": "46802879615638632130519369" + "mAssetSupply": "940844249352826119604326235" }, { "type": "redeemMasset", - "inputQty": "1308235278752383028428", + "inputQty": "6817232358008325424336076", "expectedQtys": [ - "170809794993829246684", - "397579621798910212725", - "741795452932233028024" + "4191652403301449997803579", + "1071426470319554017166705", + "1564759959372694608134527" ], - "redemptionFee": "392470583625714908", + "redemptionFee": "2045169707402497627300", "reserves": [ - "6112482960471065159579030", - "14227513496893802875378467", - "26545386734800515656267750" + "574470671898214057513836195", + "146840201684953770108821539", + "214452110702750801175185369" ], - "mAssetSupply": "46801571772830463373205849" + "mAssetSupply": "934029062164525196677617459" }, { - "type": "mintMulti", - "inputQtys": [ - "322814578435342961999872", - "703218752280204679315456", - "1595135486534052785160192" - ], - "expectedQty": "2615339129068406373304888", + "type": "mint", + "inputIndex": 0, + "inputQty": "243643593100872912994304", + "expectedQty": "241670293723749449937706", "reserves": [ - "6435297538906408121578902", - "14930732249174007554693923", - "28140522221334568441427942" - ], - "mAssetSupply": "49416910901898869746510737" + "574714315491314930426830499", + "146840201684953770108821539", + "214452110702750801175185369" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3914978165842100", - "expectedQty": "3941839180571707", - "swapFee": "2348986899505", + "type": "redeemBassets", + "inputQtys": [ + "3823137084339533643776", + "1646196486122700013568", + "649005074940506406912" + ], + "expectedQty": "6112447253403852665118", + "swapFee": "3669670154134792474", "reserves": [ - "6435297538906408121578902", - "14930732249174007554693923", - "28140522217392729260856235" + "574710492354230590893186723", + "146838555488467647408807971", + "214451461697675860668778457" ], - "mAssetSupply": "49416910897986240567568142" + "mAssetSupply": "934264620010995542274890047" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "52141404678097819664384", - "expectedQty": "52129299659076929139198", - "swapFee": "31284842806858691798", + "type": "redeemBassets", + "inputQtys": [ + "118002176916406770073600", + "119613315076766398676992", + "109353069460656792535040" + ], + "expectedQty": "348107211035712568978192", + "swapFee": "208989720453699761243", "reserves": [ - "6435297538906408121578902", - "14878602949514930625554725", - "28140522217392729260856235" + "574592490177314184123113123", + "146718942173390881010130979", + "214342108628215203876243417" ], - "mAssetSupply": "49364800778150949606595556" + "mAssetSupply": "933916512799959829705911855" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "130044524230636", - "expectedQty": "130938315127262", - "swapFee": "78026714538", + "inputQty": "1688072534809946657652736", + "expectedQty": "1679623207087821905490738", + "swapFee": "1012843520885967994591", "reserves": [ - "6435297538906408121578902", - "14878602949514930625554725", - "28140522217261790945728973" + "574592490177314184123113123", + "146718942173390881010130979", + "212662485421127381970752679" ], - "mAssetSupply": "49364800778020983109079458" + "mAssetSupply": "932229453108670769016253710" }, { "type": "redeemBassets", "inputQtys": [ - "21452207086983377321984", - "240773612844501040103424", - "64890809702220023463936" + "271533516396974084980736", + "357879488568631526162432", + "244747536083646419042304" ], - "expectedQty": "326979645583554821333054", - "swapFee": "196305570692548421852", + "expectedQty": "877889965894533984849431", + "swapFee": "527050209662517901650", "reserves": [ - "6413845331819424744256918", - "14637829336670429585451301", - "28075631407559570922265037" + "574320956660917210038132387", + "146361062684822249483968547", + "212417737885043735551710375" ], - "mAssetSupply": "49037821132437428287746404" + "mAssetSupply": "931351563142776235031404279" }, { "type": "mintMulti", "inputQtys": [ - "2809674027777160192", - "2535647146116590080", - "1789510368877215744" - ], - "expectedQty": "7175021998427978719", - "reserves": [ - "6413848141493452521417110", - "14637831872317575702041381", - "28075633197069939799480781" - ], - "mAssetSupply": "49037828307459426715725123" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "457801859356865450737664", - "579687912259407696625664", - "680301012266867744571392" + "154239517690038983852032", + "191446800420870457131008", + "220776680643117298221056" ], - "expectedQty": "1721678548648558403841047", - "swapFee": "1033627305572478529422", + "expectedQty": "568790357754796269043013", "reserves": [ - "5956046282136587070679446", - "14058143960058168005415717", - "27395332184803072054909389" + "574475196178607249021984419", + "146552509485243119941099555", + "212638514565686852849931431" ], - "mAssetSupply": "47316149758810868311884076" + "mAssetSupply": "931920353500531031300447292" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "355755517444035585245184", - "outputIndex": 0, - "expectedQty": "347501991933489143770674", - "swapFee": "213375300717959305579", + "type": "redeem", + "inputIndex": 0, + "inputQty": "32081832217064350389633024", + "expectedQty": "32315354716369034227403662", + "swapFee": "19249099330238610233779", "reserves": [ - "5608544290203097926908772", - "14413899477502203590660901", - "27395332184803072054909389" + "542159841462238214794580757", + "146552509485243119941099555", + "212638514565686852849931431" ], - "mAssetSupply": "47316363134111586271189655", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "899857770382796919521048047" }, { - "type": "redeemBassets", - "inputQtys": [ - "100515407890719", - "164596732994268", - "225336958647363" + "type": "redeemMasset", + "inputQty": "68144950041195584", + "expectedQtys": [ + "41044677158793359", + "11094883793697154", + "16097981654884124" ], - "expectedQty": "490897004598605", - "swapFee": "294715031778", + "redemptionFee": "20443485012358", "reserves": [ - "5608544290102582519018053", - "14413899477337606857666633", - "27395332184577735096262026" + "542159841421193537635787398", + "146552509474148236147402401", + "212638514549588871195047307" ], - "mAssetSupply": "47316363133620689266591050" + "mAssetSupply": "899857770314672412964864821" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "751558190599475719831552", - "expectedQty": "751444782131684066231044", - "swapFee": "450934914359685431898", + "inputQty": "28981593440940113933631488", + "expectedQty": "29266815637604176953017183", "reserves": [ - "5608544290102582519018053", - "13662454695205922791435589", - "27395332184577735096262026" - ], - "mAssetSupply": "46565255877935573232191396" + "542159841421193537635787398", + "175534102915088350081033889", + "212638514549588871195047307" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "50943052576177036197888", - "85472975892391149961216", - "27800472038017442250752" + "type": "redeemMasset", + "inputQty": "762454076294040125440", + "expectedQtys": [ + "444771321035107170937", + "144002799313944858525", + "174442121665167015919" ], - "expectedQty": "165165610917269533439598", + "redemptionFee": "228736222888212037", "reserves": [ - "5659487342678759555215941", - "13747927671098313941396805", - "27423132656615752538512778" + "542159396649872502528616461", + "175533958912289036136175364", + "212638340107467206028031388" ], - "mAssetSupply": "46730421488852842765630994" + "mAssetSupply": "929123823726936518765968601" }, { "type": "redeemBassets", "inputQtys": [ - "94241096571478", - "119036153411274", - "199308736026695" + "8536444019334083172630528", + "5629303169589387448025088", + "4969804241178178789310464" ], - "expectedQty": "413093915685947", - "swapFee": "248005152503", + "expectedQty": "19146633646552675875733175", + "swapFee": "11494877114200125600800", "reserves": [ - "5659487342584518458644463", - "13747927670979277787985531", - "27423132656416443802486083" + "533622952630538419355985933", + "169904655742699648688150276", + "207668535866289027238720924" ], - "mAssetSupply": "46730421488439748849945047" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1347473049757465706496000", - "expectedQty": "1335798030329105630084191", - "reserves": [ - "5659487342584518458644463", - "13747927670979277787985531", - "28770605706173909508982083" - ] + "mAssetSupply": "909977190080383842890235426" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "782539806903590584320", - "expectedQty": "781911140077838660143", - "swapFee": "469523884142154350", + "type": "mintMulti", + "inputQtys": [ + "3141483921481157574656", + "6961114550851350822912", + "8999430670571529043968" + ], + "expectedQty": "19177382973104404347029", "reserves": [ - "5659487342584518458644463", - "13747145759839199949325388", - "28770605706173909508982083" + "533626094114459900513560589", + "169911616857250500038973188", + "207677535296959598767764892" ], - "mAssetSupply": "48065437448485835031599268" + "mAssetSupply": "909996367463356947294582455" }, { "type": "mint", "inputIndex": 2, - "inputQty": "3896673117607191642112", - "expectedQty": "3861783373788791115993", + "inputQty": "4840510364715106611232768", + "expectedQty": "4860496404544520730583610", "reserves": [ - "5659487342584518458644463", - "13747145759839199949325388", - "28774502379291516700624195" + "533626094114459900513560589", + "169911616857250500038973188", + "212518045661674705378997660" ] }, { "type": "redeemMasset", - "inputQty": "237548993054761", + "inputQty": "369418849382412462535475", "expectedQtys": [ - "27959679447343", - "67915301421187", - "142155254368753" + "215413367937898589876453", + "68589662392228121618428", + "85788960600832369712178" ], - "redemptionFee": "71264697916", + "redemptionFee": "110825654814723738760", "reserves": [ - "5659487342556558779197120", - "13747145759771284647904201", - "28774502379149361446255442" + "533410680746522001923684136", + "169843027194858271917354760", + "212432256701073873009285482" ], - "mAssetSupply": "48069299231622146094358416" + "mAssetSupply": "914487555844173870286369350" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "661365727495491780870144", - "expectedQty": "661314269369289277835447", + "inputIndex": 0, + "inputQty": "24304332941417809161748480", + "expectedQty": "24141518768772679170156732", "reserves": [ - "5659487342556558779197120", - "14408511487266776428774345", - "28774502379149361446255442" + "557715013687939811085432616", + "169843027194858271917354760", + "212432256701073873009285482" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "724210137662943859310592", - "expectedQty": "703094149571170548442776", - "swapFee": "434526082597766315586", + "inputIndex": 1, + "inputQty": "935249932433947434680320", + "expectedQty": "926202667236057809908408", + "swapFee": "561149959460368460808", "reserves": [ - "4956393192985388230754344", - "14408511487266776428774345", - "28774502379149361446255442" + "557715013687939811085432616", + "168916824527622214107446352", + "212432256701073873009285482" ], - "mAssetSupply": "48006837889411089279198857" + "mAssetSupply": "937694385830472062390306570" }, { "type": "redeemBassets", "inputQtys": [ - "188191551737739513692160", - "347102655723813715574784", - "245162241828609698299904" + "305222588139183538176", + "469082448810873913344", + "228251639675375812608" ], - "expectedQty": "784174224477915823045173", - "swapFee": "470787006890884024241", + "expectedQty": "1005780956247784219378", + "swapFee": "603830872272033751", "reserves": [ - "4768201641247648717062184", - "14061408831542962713199561", - "28529340137320751747955538" + "557714708465351671901894440", + "168916355445173403233533008", + "212432028449434197633472874" ], - "mAssetSupply": "47222663664933173456153684" + "mAssetSupply": "937693380049515814606087192" }, { "type": "mintMulti", "inputQtys": [ - "13044873679289831424", - "16210039732695590912", - "3544725434171073536" + "23075317301242941669376", + "251246506398993816223744", + "130935980225246147903488" + ], + "expectedQty": "407995683465334656412894", + "reserves": [ + "557737783782652914843563816", + "169167601951572397049756752", + "212562964429659443781376362" + ], + "mAssetSupply": "938101375732981149262500086" + }, + { + "type": "redeemMasset", + "inputQty": "741570520786375330181939", + "expectedQtys": [ + "440760272725575281721085", + "133687120615739235956484", + "167980927413523805737305" ], - "expectedQty": "33212733536029873593", + "redemptionFee": "222471156235912599054", "reserves": [ - "4768214686121328006893608", - "14061425041582695408790473", - "28529343682046185919029074" + "557297023509927339561842731", + "169033914830956657813800268", + "212394983502245919975639057" ], - "mAssetSupply": "47222696877666709486027277" + "mAssetSupply": "937360027683351009844917201" }, { "type": "redeemBassets", "inputQtys": [ - "899964409456926336", - "1125843482617944832", - "997255028773753728" + "477834911445433637142528", + "378080598218766588837888", + "228786197511594185850880" + ], + "expectedQty": "1085885549584239342762688", + "swapFee": "651922483240487898396", + "reserves": [ + "556819188598481905924700203", + "168655834232737891224962380", + "212166197304734325789788177" + ], + "mAssetSupply": "936274142133766770502154513" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "13553767722792523923456", + "outputIndex": 1, + "expectedQty": "13328569564402289566275", + "swapFee": "8075745014820708264", + "reserves": [ + "556832742366204698448623659", + "168642505663173488935396105", + "212166197304734325789788177" + ], + "mAssetSupply": "936274150209511785322862777", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "4599449190421", + "6050235683534", + "52918231663" ], - "expectedQty": "3043804647153983680", - "swapFee": "1827379215821883", + "expectedQty": "10726679294811", "reserves": [ - "4768213786156918549967272", - "14061423915739212790845641", - "28529342684791157145275346" + "556832742366209297897814080", + "168642505663179539171079639", + "212166197304734378708019840" ], - "mAssetSupply": "47222693833862062332043597" + "mAssetSupply": "936274150209522512002157588" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "10342465298876046", - "expectedQty": "10333778536320104", + "inputIndex": 2, + "inputQty": "763067945924966861504512", + "expectedQty": "766454492291383457373596", "reserves": [ - "4768213786156918549967272", - "14061423926081678089721687", - "28529342684791157145275346" + "556832742366209297897814080", + "168642505663179539171079639", + "212929265250659345569524352" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1375998167614558", - "expectedQty": "1376328563841388", - "swapFee": "825598900568", + "type": "mint", + "inputIndex": 0, + "inputQty": "10373332235720939536384", + "expectedQty": "10301407531517642599960", "reserves": [ - "4768213786156918549967272", - "14061423924705349525880299", - "28529342684791157145275346" - ], - "mAssetSupply": "47222693842820668299649711" + "556843115698445018837350464", + "168642505663179539171079639", + "212929265250659345569524352" + ] }, { "type": "redeemBassets", "inputQtys": [ - "88026188169573346312192", - "42370325404217226821632", - "50282404666591949094912" + "2541957509266944672399360", + "1977684225113149247848448", + "3405386791428536867487744" ], - "expectedQty": "183298304788573137693755", - "swapFee": "110045009879071325411", + "expectedQty": "7940950773153716560573954", + "swapFee": "4767430922445697354757", + "reserves": [ + "554301158189178074164951104", + "166664821438066389923231191", + "209523878459230808702036608" + ], + "mAssetSupply": "929109955336191696541557190" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "359456977160358592512", + "expectedQty": "361784011631890559506", + "swapFee": "215674186296215155", "reserves": [ - "4680187597987345203655080", - "14019053599301132299058667", - "28479060280124565196180434" + "554300796405166442274391598", + "166664821438066389923231191", + "209523878459230808702036608" ], - "mAssetSupply": "47039395538032095161955956" + "mAssetSupply": "929109596094888722479179833" }, { "type": "mintMulti", "inputQtys": [ - "5834407827335503937536", - "6298696548265343582208", - "2201012247739979005952" + "10180829090101636104192", + "7534125822778415251456", + "13396189330206860771328" ], - "expectedQty": "14519398221931376338920", + "expectedQty": "31171230612693144821372", "reserves": [ - "4686022005814680707592616", - "14025352295849397642640875", - "28481261292372305175186386" + "554310977234256543910495790", + "166672355563889168338482647", + "209537274648561015562807936" ], - "mAssetSupply": "47053914936254026538294876" + "mAssetSupply": "929140767325501415624001205" }, { - "type": "redeemMasset", - "inputQty": "10060241612621776053862", - "expectedQtys": [ - "1001582352718809639925", - "2997754883087618982058", - "6087536221173596459689" + "type": "mintMulti", + "inputQtys": [ + "4493338805618360864210944", + "1319681491012331990155264", + "2414825152219792805986304" ], - "redemptionFee": "3018072483786532816", + "expectedQty": "8219616900929985780739350", "reserves": [ - "4685020423461961897952691", - "14022354540966310023658817", - "28475173756151131578726697" + "558804316039874904774706734", + "167992037054901500328637911", + "211952099800780808368794240" ], - "mAssetSupply": "47043857712713888548773830" + "mAssetSupply": "937360384226431401404740555" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "214939905445590532096", - "expectedQty": "222813349139781890765", + "inputIndex": 2, + "inputQty": "4497717181053204778975232", + "expectedQty": "4517316511930549517758904", "reserves": [ - "4685235363367407488484787", - "14022354540966310023658817", - "28475173756151131578726697" + "558804316039874904774706734", + "167992037054901500328637911", + "216449816981834013147769472" ] }, { "type": "redeemMasset", - "inputQty": "20518809084189503756697", + "inputQty": "2892188816093138874741555", "expectedQtys": [ - "2042905467080053557849", - "6114174108957884647270", - "12416043940359429714517" + "1715384854838963249919704", + "515692144505485119299995", + "664445007358906690690018" ], - "redemptionFee": "6155642725256851127", + "redemptionFee": "867656644827941662422", "reserves": [ - "4683192457900327434926938", - "14016240366857352139011547", - "28462757712210772149012180" + "557088931185035941524787030", + "167476344910396015209337916", + "215785371974475106457079454" ], - "mAssetSupply": "47023567872621564083759025" + "mAssetSupply": "938986379578913639989420326" }, { - "type": "redeemMasset", - "inputQty": "1872170059555777664149094", - "expectedQtys": [ - "186398071850921098069671", - "557867352765723446310452", - "1132860373518507494115896" - ], - "redemptionFee": "561651017866733299244", + "type": "swap", + "inputIndex": 0, + "inputQty": "43008635971680308559872", + "outputIndex": 1, + "expectedQty": "42286106105659001695582", + "swapFee": "25626696721615531184", "reserves": [ - "4496794386049406336857267", - "13458373014091628692701095", - "27329897338692264654896284" + "557131939821007621833346902", + "167434058804290356207642334", + "215785371974475106457079454" ], - "mAssetSupply": "45151959464083653152909175" + "mAssetSupply": "938986405205610361604951510", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "130098369475567616000", - "300945770285846888448", - "257481026856582610944" + "type": "redeemMasset", + "inputQty": "181539809241153535790284", + "expectedQtys": [ + "107681307236068007458840", + "32361308047926842777477", + "41706549698259675111533" ], - "expectedQty": "690328362434266501421", + "redemptionFee": "54461942772346060737", "reserves": [ - "4496924484418881904473267", - "13458673959861914539589543", - "27330154819719121237507228" + "557024258513771553825888062", + "167401697496242429364864857", + "215743665424776846781967921" ], - "mAssetSupply": "45152649792446087419410596" + "mAssetSupply": "938804919858311980415221963" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "38465864564423680", - "expectedQty": "38431333736250791", + "inputIndex": 0, + "inputQty": "139622672874344529920", + "expectedQty": "138656700103807972623", "reserves": [ - "4496924484418881904473267", - "13458673998327779104013223", - "27330154819719121237507228" + "557024398136444428170417982", + "167401697496242429364864857", + "215743665424776846781967921" ] }, + { + "type": "mintMulti", + "inputQtys": [ + "7769896897618189152681984", + "4765836649375852488818688", + "6720880016530868222820352" + ], + "expectedQty": "19275465686478362374749488", + "reserves": [ + "564794295034062617323099966", + "172167534145618281853683545", + "222464545441307715004788273" + ], + "mAssetSupply": "958080524201490446597944074" + }, { "type": "swap", "inputIndex": 1, - "inputQty": "45521770948438742007808", - "outputIndex": 0, - "expectedQty": "43829438569274667263396", - "swapFee": "27287951963424743484", + "inputQty": "58373652930395461648384", + "outputIndex": 2, + "expectedQty": "58639813941229684577113", + "swapFee": "35346088094806097204", "reserves": [ - "4453095045849607237209871", - "13504195769276217846021031", - "27330154819719121237507228" + "564794295034062617323099966", + "172225907798548677315331929", + "222405905627366485320211160" ], - "mAssetSupply": "45152677118829384580404871", + "mAssetSupply": "958080559547578541404041278", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemBassets", + "inputQtys": [ + "15824643232204280823808", + "31465032077207060611072", + "22807802743536876519424" + ], + "expectedQty": "70370994623678453117325", + "swapFee": "42247945541531991065", + "reserves": [ + "564778470390830413042276158", + "172194442766471470254720857", + "222383097824622948443691736" + ], + "mAssetSupply": "958010188552954862950923953" + }, { "type": "mintMulti", "inputQtys": [ - "6285651525495115743232", - "12488755009532494610432", - "2796867463703477878784" + "745916050550816667336704", + "1452467989432315808841728", + "1953343613101072241917952" ], - "expectedQty": "21764301114246572122886", + "expectedQty": "4167714093762671296310808", "reserves": [ - "4459380697375102352953103", - "13516684524285750340631463", - "27332951687182824715386012" + "565524386441381229709612862", + "173646910755903786063562585", + "224336441437724020685609688" ], - "mAssetSupply": "45174441419943631152527757" + "mAssetSupply": "962177902646717534247234761" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "350321123419078640271360", - "expectedQty": "336530132728722541260792", - "swapFee": "210192674051447184162", + "inputQty": "812076461587346061524992", + "expectedQty": "817050600205684751320236", + "swapFee": "487245876952407636914", + "reserves": [ + "564707335841175544958292626", + "173646910755903786063562585", + "224336441437724020685609688" + ], + "mAssetSupply": "961366313431007140593346683" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1435301489806323", + "expectedQty": "1448271871840103", + "reserves": [ + "564707335841175544958292626", + "173646910757339087553368908", + "224336441437724020685609688" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "58428266419146878615552", + "expectedQty": "58956055123953658937668", + "reserves": [ + "564707335841175544958292626", + "173705339023758234431984460", + "224336441437724020685609688" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "10819982075199376", + "18867688407157136", + "34791252465009136" + ], + "expectedQty": "64713111027485979", + "reserves": [ + "564707335851995527033492002", + "173705339042625922839141596", + "224336441472515273150618824" + ], + "mAssetSupply": "961425269552292477151610433" + }, + { + "type": "redeemMasset", + "inputQty": "23629261236714953", + "expectedQtys": [ + "13874831979608415", + "4267931794335714", + "5511935536729413" + ], + "redemptionFee": "7088778371014", "reserves": [ - "4122850564646379811692311", - "13516684524285750340631463", - "27332951687182824715386012" + "564707335838120695053883587", + "173705339038357991044805882", + "224336441467003337613889411" ], - "mAssetSupply": "44824330489198603959440559" + "mAssetSupply": "961425269528670304693266494" }, { "type": "mintMulti", "inputQtys": [ - "80730285065859137536", - "43802441254380314624", - "84477994882550382592" + "19358999701218748", + "25120061320498980", + "61388841637473528" ], - "expectedQty": "211517068185884115168", + "expectedQty": "106205554034524693", "reserves": [ - "4122931294931445670829847", - "13516728326727004720946087", - "27333036165177707265768604" + "564707335857479694755102335", + "173705339063478052365304862", + "224336441528392179251362939" ], - "mAssetSupply": "44824542006266789843555727" + "mAssetSupply": "961425269634875858727791187" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "16904322240707904", - "expectedQty": "16917058985602843", - "swapFee": "10142593344424", + "inputIndex": 0, + "inputQty": "24411462010683396", + "expectedQty": "24560764720698914", + "swapFee": "14646877206410", "reserves": [ - "4122931294931445670829847", - "13516728309809945735343244", - "27333036165177707265768604" + "564707335832918930034403421", + "173705339063478052365304862", + "224336441528392179251362939" ], - "mAssetSupply": "44824541989372610196192247" + "mAssetSupply": "961425269610479043594314201" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8505514080363303", - "expectedQty": "8511922652069510", - "swapFee": "5103308448217", + "type": "redeemMasset", + "inputQty": "24431685885748426099916", + "expectedQtys": [ + "14346006555831279250540", + "4412866231517944643771", + "5699115022352726947618" + ], + "redemptionFee": "7329505765724527829", + "reserves": [ + "564692989826363098755152881", + "173700926197246534420661091", + "224330742413369826524415321" + ], + "mAssetSupply": "961400845254099060892742114" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "14638060580051647201280", + "outputIndex": 1, + "expectedQty": "14555036425352010348934", + "swapFee": "8817176925619411501", "reserves": [ - "4122931294931445670829847", - "13516728301298023083273734", - "27333036165177707265768604" + "564692989826363098755152881", + "173686371160821182410312157", + "224345380473949878171616601" ], - "mAssetSupply": "44824541980872199424277161" + "mAssetSupply": "961400854071275986512153615", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "2386941925240152", - "expectedQtys": [ - "219483451893070", - "719560422827512", - "1455068905859878" - ], - "redemptionFee": "716082577572", + "type": "redeem", + "inputIndex": 2, + "inputQty": "2646151987301877547008", + "expectedQty": "2634265976928009622814", + "swapFee": "1587691192381126528", "reserves": [ - "4122931294711962218936777", - "13516728300578462660446222", - "27333036163722638359908726" + "564692989826363098755152881", + "173686371160821182410312157", + "224342746207972950161993787" ], - "mAssetSupply": "44824541978485973581614581" + "mAssetSupply": "961398209506979877015733135" }, { - "type": "redeemBassets", - "inputQtys": [ - "88677962224574354423808", - "93591896085962768252928", - "29145619241238226010112" - ], - "expectedQty": "214900187136643451577125", - "swapFee": "129017522795663469027", + "type": "mint", + "inputIndex": 0, + "inputQty": "6978831676082049997864960", + "expectedQty": "6931817537713048965971520", "reserves": [ - "4034253332487387864512969", - "13423136404492499892193294", - "27303890544481400133898614" - ], - "mAssetSupply": "44609641791349330130037456" + "571671821502445148753017841", + "173686371160821182410312157", + "224342746207972950161993787" + ] }, { "type": "redeemMasset", - "inputQty": "9063262240745342", + "inputQty": "10559437724814893056", "expectedQtys": [ - "819386244348925", - "2726336801233797", - "5545619098630739" + "6232092230687976644", + "1893445581142942833", + "2445677105405365361" ], - "redemptionFee": "2718978672223", + "redemptionFee": "3167831317444467", "reserves": [ - "4034253331668001620164044", - "13423136401766163090959497", - "27303890538935781035267875" + "571671815270352918065041197", + "173686369267375601267369324", + "224342743762295844756628426" ], - "mAssetSupply": "44609641782288786867964337" + "mAssetSupply": "968330016488423032484256066" }, { "type": "redeemMasset", - "inputQty": "11187998795941299827507", + "inputQty": "26424124215956820564377", "expectedQtys": [ - "1011478215203089089714", - "3365482763193858066906", - "6845700604281247349763" + "15595298113459476059133", + "4738191799237373030376", + "6120105758423417424249" ], - "redemptionFee": "3356399638782389948", + "redemptionFee": "7927237264787046169", "reserves": [ - "4033241853452798531074330", - "13419770919002969232892591", - "27297044838331499787918112" + "571656219972239458588982064", + "173681631075576363894338948", + "224336623656537421339204177" ], - "mAssetSupply": "44598457139892484350526778" + "mAssetSupply": "968303600291444340450737858" }, { - "type": "redeemMasset", - "inputQty": "58477391717000576", - "expectedQtys": [ - "5286790683701283", - "17590693156983183", - "35781083204896905" - ], - "redemptionFee": "17543217515100", + "type": "redeem", + "inputIndex": 0, + "inputQty": "48117917384489780117504", + "expectedQty": "48418170294802980461234", + "swapFee": "28870750430693868070", "reserves": [ - "4033241848166007847373047", - "13419770901412276075909408", - "27297044802550416583021207" + "571607801801944655608520830", + "173681631075576363894338948", + "224336623656537421339204177" ], - "mAssetSupply": "44598457081432635851041302" + "mAssetSupply": "968255511244810281364488424" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "953854470515166334156800", - "expectedQty": "942548388415251382967189", + "type": "redeemBassets", + "inputQtys": [ + "97231838538175561728", + "2101242489688872976384", + "277510813846648258560" + ], + "expectedQty": "2495888586606077211136", + "swapFee": "1498432211290420579", "reserves": [ - "4033241848166007847373047", - "13419770901412276075909408", - "28250899273065582917178007" - ] + "571607704570106117432959102", + "173679529833086675021362564", + "224336346145723574690945617" + ], + "mAssetSupply": "968253015356223675287277288" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "251138494649959284736", - "expectedQty": "248093887122119829472", + "inputIndex": 1, + "inputQty": "87876700153119376", + "expectedQty": "88689775255117293", "reserves": [ - "4033241848166007847373047", - "13419770901412276075909408", - "28251150411560232876462743" + "571607704570106117432959102", + "173679529920963375174481940", + "224336346145723574690945617" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1243469464430005333262336", - "outputIndex": 2, - "expectedQty": "1254938637760885655825352", - "swapFee": "744827030147927128394", - "reserves": [ - "4033241848166007847373047", - "14663240365842281409171744", - "26996211773799347220637391" + "type": "mintMulti", + "inputQtys": [ + "6446570118303607867572224", + "25111924874278223770288128", + "14658165213492941955268608" ], - "mAssetSupply": "45541998390765157280966357", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "2861661311775873955790848", - "outputIndex": 2, - "expectedQty": "2877509432849627385528468", - "swapFee": "1710648158408317125912", + "expectedQty": "46434718015806012259060727", "reserves": [ - "4033241848166007847373047", - "17524901677618155364962592", - "24118702340949719835108923" + "578054274688409725300531326", + "198791454795241598944770068", + "238994511359216516646214225" ], - "mAssetSupply": "45543709038923565598092269", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1014687733460719462801455308" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "377585081790637914718208", - "expectedQty": "392609343447660135545881", + "inputIndex": 2, + "inputQty": "15053617104991268372480", + "expectedQty": "15109183423705875319522", "reserves": [ - "4410826929956645762091255", - "17524901677618155364962592", - "24118702340949719835108923" + "578054274688409725300531326", + "198791454795241598944770068", + "239009564976321507914586705" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "254179325546682548224", - "outputIndex": 1, - "expectedQty": "253066519426727753846", - "swapFee": "151245363039930619", + "type": "redeemMasset", + "inputQty": "974126507851456055135436", + "expectedQtys": [ + "554772332248862308218287", + "190784851590877290822064", + "229383121270357233361589" + ], + "redemptionFee": "292237952355436816540", "reserves": [ - "4410826929956645762091255", - "17524648611098728637208746", - "24118956520275266517657147" + "577499502356160862992313039", + "198600669943650721653948004", + "238780181855051150681225116" ], - "mAssetSupply": "45936318533616588773568769", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1013729008374244068058455934" + }, + { + "type": "redeemMasset", + "inputQty": "577806864380605455820390", + "expectedQtys": [ + "329065330999812230401191", + "113164764515220352019045", + "136059475822489462397281" + ], + "redemptionFee": "173342059314181636746", + "reserves": [ + "577170437025161050761911848", + "198487505179135501301928959", + "238644122379228661218827835" + ], + "mAssetSupply": "1013151374851922776784272290" }, { "type": "swap", "inputIndex": 1, - "inputQty": "123990247598879248744448", + "inputQty": "1176123857444170498048", "outputIndex": 0, - "expectedQty": "118882801895777356753303", - "swapFee": "74055889860562500605", + "expectedQty": "1190718402803333067392", + "swapFee": "710620675347118121", "reserves": [ - "4291944128060868405337952", - "17648638858697607885953194", - "24118956520275266517657147" + "577169246306758247428844456", + "198488681302992945472427007", + "238644122379228661218827835" ], - "mAssetSupply": "45936392589506449336069374", + "mAssetSupply": "1013151375562543452131390411", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "9112423722007397990", - "expectedQtys": [ - "851139549233081684", - "3499918469245342591", - "4783053359530650883" + "type": "mintMulti", + "inputQtys": [ + "43168469811306535321600", + "49699478755935445319680", + "1680909039749818220544" ], - "redemptionFee": "2733727116602219", + "expectedQty": "94647354322693159260175", "reserves": [ - "4291943276921319172256268", - "17648635358779138640610603", - "24118951737221906987006264" + "577212414776569553964166056", + "198538380781748880917746687", + "238645803288268411037048379" ], - "mAssetSupply": "45936383479816454445273603" + "mAssetSupply": "1013246022916866145290650586" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "357593304615181462011904", - "381640382116452764745728", - "657591496288975454208" + "1002495784239691512938496", + "598983609314344110653440", + "1030786530934682262962176" ], - "expectedQty": "752941405784559252366647", - "swapFee": "452036065109801432279", + "expectedQty": "2634313115466410146250605", "reserves": [ - "3934349972306137710244364", - "17266994976662685875864875", - "24118294145725618011552056" + "578214910560809245477104552", + "199137364391063225028400127", + "239676589819203093300010555" ], - "mAssetSupply": "45183442074031895192906956" + "mAssetSupply": "1015880336032332555436901191" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "195138905774366975328256", - "expectedQty": "196015789216352144363787", - "swapFee": "117083343464620185196", + "inputIndex": 2, + "inputQty": "1242583079004157490757632", + "expectedQty": "1237264572023066454338823", + "swapFee": "745549847402494494454", "reserves": [ - "3934349972306137710244364", - "17070979187446333731501088", - "24118294145725618011552056" + "578214910560809245477104552", + "199137364391063225028400127", + "238439325247180026845671732" ], - "mAssetSupply": "44988420251600992837763896" + "mAssetSupply": "1014638498503175800440638013" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "15415546365025366048768", - "expectedQty": "15552058233725534082790", - "swapFee": "9249327819015219629", + "type": "redeemMasset", + "inputQty": "289467808653180710735052", + "expectedQtys": [ + "164910350786557915305281", + "56795167361889005164909", + "68004321662485633607455" + ], + "redemptionFee": "86840342595954213220", "reserves": [ - "3934349972306137710244364", - "17070979187446333731501088", - "24102742087491892477469266" + "578050000210022687561799271", + "199080569223701336023235218", + "238371320925517541212064277" ], - "mAssetSupply": "44973013954563786486934757" + "mAssetSupply": "1014349117534865215684116181" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "582098103613248652705792", - "1148738200994318234157056", - "1127176092128622350958592" + "21522151694705920835584", + "70367131421259893571584", + "109536901831706523205632" + ], + "expectedQty": "202198097988220246599348", + "swapFee": "121391693809217678566", + "reserves": [ + "578028478058327981640963687", + "199010202092280076129663634", + "238261784023685834688858645" ], - "expectedQty": "2866405879898586621111818", + "mAssetSupply": "1014146919436876995437516833" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "2551558301721224770748416", + "outputIndex": 1, + "expectedQty": "2516831828537225109493160", + "swapFee": "1521814944722039933871", "reserves": [ - "4516448075919386362950156", - "18219717388440651965658144", - "25229918179620514828427858" + "580580036360049206411712103", + "196493370263742851020170474", + "238261784023685834688858645" ], - "mAssetSupply": "47839419834462373108046575" + "mAssetSupply": "1014148441251821717477450704", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2156353384380531583483904", - "expectedQty": "2145266012825657845732285", + "inputIndex": 0, + "inputQty": "1735039074034398930141184", + "expectedQty": "1724537194612204904626791", "reserves": [ - "4516448075919386362950156", - "20376070772821183549142048", - "25229918179620514828427858" + "582315075434083605341853287", + "196493370263742851020170474", + "238261784023685834688858645" ] }, { - "type": "mintMulti", - "inputQtys": [ - "85594786604902026051584", - "119060948554430501879808", - "34017174176551458045952" + "type": "redeemMasset", + "inputQty": "55173551791209728", + "expectedQtys": [ + "31616898113671230", + "10668641650758485", + "12936464927072181" ], - "expectedQty": "241188086114712639818731", + "redemptionFee": "16552065537362", "reserves": [ - "4602042862524288389001740", - "20495131721375614051021856", - "25263935353797066286473810" + "582315075402466707228182057", + "196493370253074209369411989", + "238261784010749369761786464" ], - "mAssetSupply": "50225873933402743593597591" + "mAssetSupply": "1015872978391276922656405129" }, { "type": "mintMulti", "inputQtys": [ - "5404822696732269740032", - "247300249506757541888", - "735855815823874850816" + "9114954924564488192", + "19345109347254476800", + "4050849848858734592" ], - "expectedQty": "6595729486330280185714", + "expectedQty": "32612336558632225921", "reserves": [ - "4607447685221020658741772", - "20495379021625120808563744", - "25264671209612890161324626" + "582315084517421631792670249", + "196493389598183556623888789", + "238261788061599218620521056" ], - "mAssetSupply": "50232469662889073873783305" + "mAssetSupply": "1015873011003613481288631050" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3434885092376303894528", - "expectedQty": "3415706326905269251822", - "reserves": [ - "4607447685221020658741772", - "20498813906717497112458272", - "25264671209612890161324626" - ] - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "622801118347643441905664", - "expectedQty": "627404013875442573110756", - "swapFee": "373680671008586065143", + "type": "swap", + "inputIndex": 0, + "inputQty": "1205572548707031040", + "outputIndex": 2, + "expectedQty": "1193040229432635487", + "swapFee": "718955445557233", "reserves": [ - "4607447685221020658741772", - "20498813906717497112458272", - "24637267195737447588213870" + "582315085722994180499701289", + "196493389598183556623888789", + "238261786868558989187885569" ], - "mAssetSupply": "49613457931539344287194606" + "mAssetSupply": "1015873011004332436734188283", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "573259120221509451776", - "expectedQty": "595381622458007946197", + "type": "redeemMasset", + "inputQty": "139941540241124997726208", + "expectedQtys": [ + "80192723005976774875918", + "27059817529866191624163", + "32811895047397950063951" + ], + "redemptionFee": "41982462072337499317", "reserves": [ - "4608020944341242168193548", - "20498813906717497112458272", - "24637267195737447588213870" - ] + "582234892999988203724825371", + "196466329780653690432264626", + "238228974973511591237821618" + ], + "mAssetSupply": "1015733111446553384073961392" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "45746717458497674412032", - "expectedQty": "45389497257412051926917", + "type": "redeemBassets", + "inputQtys": [ + "107062526104806363234304", + "283304191226003230556160", + "280298825500714147512320" + ], + "expectedQty": "673148118707686207552011", + "swapFee": "404131350034632504033", "reserves": [ - "4608020944341242168193548", - "20498813906717497112458272", - "24683013913195945262625902" - ] + "582127830473883397361591067", + "196183025589427687201708466", + "237948676148010877090309298" + ], + "mAssetSupply": "1015059963327845697866409381" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "830513051005903471378432", - "expectedQty": "834558923035729912079737", - "swapFee": "498307830603542082827", - "reserves": [ - "4608020944341242168193548", - "19664254983681767200378535", - "24683013913195945262625902" - ], - "mAssetSupply": "48829428067243914417772115" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "19132269310882315501568", - "outputIndex": 1, - "expectedQty": "19069563889338360185560", - "swapFee": "11388604672933419096", + "inputQty": "137989641053130842963968", + "expectedQty": "136902385794410460716844", + "swapFee": "82793784631878505778", "reserves": [ - "4608020944341242168193548", - "19645185419792428840192975", - "24702146182506827578127470" + "582127830473883397361591067", + "196046123203633276740991622", + "237948676148010877090309298" ], - "mAssetSupply": "48829439455848587351191211", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1014922056480577198901951191" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "2909435945698703966208", - "expectedQty": "2894198683492077694027", + "inputQty": "40466855498818592768", + "expectedQty": "40147754166829770054", + "swapFee": "24280113299291155", "reserves": [ - "4608020944341242168193548", - "19648094855738127544159183", - "24702146182506827578127470" - ] + "582127830473883397361591067", + "196046083055879109911221568", + "237948676148010877090309298" + ], + "mAssetSupply": "1014922016038001813382649578" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "33427497195914328539136", - "expectedQty": "33673620650915464685583", - "swapFee": "20056498317548597123", + "inputQty": "206184059675760450863104", + "expectedQty": "205283393207823640850630", + "swapFee": "123710435805456270517", "reserves": [ - "4608020944341242168193548", - "19648094855738127544159183", - "24668472561855912113441887" + "582127830473883397361591067", + "196046083055879109911221568", + "237743392754803053449458668" ], - "mAssetSupply": "48798926213834482648943225" + "mAssetSupply": "1014715955688761858388056991" }, { "type": "redeemMasset", - "inputQty": "63901947708370360729", + "inputQty": "3931151021628472418526822", "expectedQtys": [ - "6032369927166295670", - "25721362373453713982", - "32293549406282080242" + "2254567766413278581345431", + "759281993491969512007040", + "920774719783404455430093" ], - "redemptionFee": "19170584312511108", + "redemptionFee": "1179345306488541725558", "reserves": [ - "4608014911971315001897878", - "19648069134375754090445201", - "24668440268306505831361645" + "579873262707470118780245636", + "195286801062387140399214528", + "236822618035019648994028575" ], - "mAssetSupply": "48798862331057358591093604" + "mAssetSupply": "1010785984012439874511255727" }, { "type": "redeemBassets", "inputQtys": [ - "737042684498109848879104", - "619528191946840787124224", - "651941308566886923894784" + "75658391525244467675136", + "158322931651318462283776", + "104597465042431915327488" ], - "expectedQty": "2031156331058973881528235", - "swapFee": "1219425453907728966296", + "expectedQty": "339677953520625598868418", + "swapFee": "203929129590129436983", "reserves": [ - "3870972227473205153018774", - "19028540942428913303320977", - "24016498959739618907466861" + "579797604315944874312570500", + "195128478130735821936930752", + "236718020569977217078701087" ], - "mAssetSupply": "46767705999998384709565369" + "mAssetSupply": "1010446306058919248912387309" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "349561211007536159784960", - "expectedQty": "365547589471788103999673", + "type": "swap", + "inputIndex": 1, + "inputQty": "96467441237422915584", + "outputIndex": 0, + "expectedQty": "97713265094057345364", + "swapFee": "58305986409880343", "reserves": [ - "4220533438480741312803734", - "19028540942428913303320977", - "24016498959739618907466861" - ] + "579797506602679780255225136", + "195128574598177059359846336", + "236718020569977217078701087" + ], + "mAssetSupply": "1010446306117225235322267652", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "4242950080010812620", + "inputQty": "155243862688784657154048", "expectedQtys": [ - "379819746640245956", - "1712441260100177799", - "2161324079772637233" + "89052729428787886959941", + "29970346473780783944343", + "36358186430046635430137" ], - "redemptionFee": "1272885024003243", + "redemptionFee": "46573158806635397146", "reserves": [ - "4220533058660994672557778", - "19028539229987653203143178", - "24016496798415539134829628" + "579708453873250992368265195", + "195098604251703278575901993", + "236681662383547170443270950" ], - "mAssetSupply": "47133249347792977826755665" + "mAssetSupply": "1010291108827695257300510750" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "305406367098262580625408", - "expectedQty": "307798261858921625349858", - "swapFee": "183243820258957548375", + "inputIndex": 0, + "inputQty": "5329463782290745313984512", + "expectedQty": "5358666169851950555107030", + "swapFee": "3197678269374447188390", "reserves": [ - "4220533058660994672557778", - "19028539229987653203143178", - "23708698536556617509479770" + "574349787703399041813158165", + "195098604251703278575901993", + "236681662383547170443270950" ], - "mAssetSupply": "46828026224514974203678632" + "mAssetSupply": "1004964842723673886433714628" }, { - "type": "redeemMasset", - "inputQty": "30078982678706540", - "expectedQtys": [ - "2710155994097889", - "12218909065822856", - "15224207596064678" + "type": "mintMulti", + "inputQtys": [ + "133017654838625058816", + "307532857284056449024", + "90089488600666341376" ], - "redemptionFee": "9023694803611", + "expectedQty": "532393758108870140948", "reserves": [ - "4220533055950838678459889", - "19028539217768744137320322", - "23708698521332409913415092" + "574349920721053880438216981", + "195098911784560562632351017", + "236681752473035771109612326" ], - "mAssetSupply": "46828026194445015219775703" + "mAssetSupply": "1004965375117431995303855576" }, { - "type": "redeemMasset", - "inputQty": "455854954324893685409382", - "expectedQtys": [ - "41073132362864783826042", - "185180805268518876947824", - "230726900988235143764589" + "type": "mintMulti", + "inputQtys": [ + "16464652060239247441920", + "46256583806525647093760", + "54525297736474230259712" ], - "redemptionFee": "136756486297468105622", + "expectedQty": "117683030393860150099565", "reserves": [ - "4179459923587973894633847", - "18843358412500225260372498", - "23477971620344174769650503" + "574366385373114119685658901", + "195145168368367088279444777", + "236736277770772245339872038" ], - "mAssetSupply": "46372307996606419002471943" + "mAssetSupply": "1005083058147825855453955141" }, { - "type": "redeemMasset", - "inputQty": "980474563895157738124083", - "expectedQtys": [ - "88342050819494141432921", - "398295702536121644607932", - "496258416145434422107702" + "type": "redeemBassets", + "inputQtys": [ + "171069465089040722165760", + "271190853930331574108160", + "137282877427088749494272" ], - "redemptionFee": "294142369168547321437", + "expectedQty": "580982001960890164797835", + "swapFee": "348798480264692914627", "reserves": [ - "4091117872768479753200926", - "18445062709964103615764566", - "22981713204198740347542801" + "574195315908025078963493141", + "194873977514436756705336617", + "236598994893345156590377766" ], - "mAssetSupply": "45392127575080429811669297" + "mAssetSupply": "1004502076145864965289157306" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "158907401001458762514432", - "expectedQty": "160134476423051486204896", - "swapFee": "95344440600875257508", + "inputIndex": 0, + "inputQty": "397762076954575327199232", + "expectedQty": "399925228628672549732346", + "swapFee": "238657246172745196319", "reserves": [ - "4091117872768479753200926", - "18445062709964103615764566", - "22821578727775688861337905" + "573795390679396406413760795", + "194873977514436756705336617", + "236598994893345156590377766" ], - "mAssetSupply": "45233315518519571924412373" + "mAssetSupply": "1004104552726156562707154393" }, { "type": "redeemMasset", - "inputQty": "2072270074113276090777", + "inputQty": "106778966355625983449497", "expectedQtys": [ - "187369810722737201313", - "844768597780896360063", - "1045209407208728357205" + "61000518089930637810532", + "20717164661345516397079", + "25152975263468162085231" ], - "redemptionFee": "621681022233982827", + "redemptionFee": "32033689906687795034", "reserves": [ - "4090930502957757015999613", - "18444217941366322719404503", - "22820533518368480132980700" + "573734390161306475775950263", + "194853260349775411188939538", + "236573841918081688428292535" ], - "mAssetSupply": "45231243870126480882304423" + "mAssetSupply": "1003997805793490843411499930" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "15685661191785282535424", - "outputIndex": 2, - "expectedQty": "16451163498996025639619", - "swapFee": "9795802062292305530", + "inputQty": "2261819816206650593771520", + "expectedQty": "2248202977492213051017573", "reserves": [ - "4106616164149542298535037", - "18444217941366322719404503", - "22804082354869484107341081" - ], - "mAssetSupply": "45231253665928543174609953", - "hardLimitError": false, - "insufficientLiquidityError": false + "575996209977513126369721783", + "194853260349775411188939538", + "236573841918081688428292535" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "6041493384995214983168", - "620640794942571413504", - "3369613191432837791744" - ], - "expectedQty": "10246613712418399458377", - "swapFee": "6151659222984830573", + "type": "mint", + "inputIndex": 2, + "inputQty": "15801970634659336164474880", + "expectedQty": "15854447655150498651280267", "reserves": [ - "4100574670764547083551869", - "18443597300571380147990999", - "22800712741678051269549337" - ], - "mAssetSupply": "45221007052216124775151576" + "575996209977513126369721783", + "194853260349775411188939538", + "252375812552741024592767415" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "238946270529728380928", - "expectedQty": "240774978575321727028", - "swapFee": "143367762317837028", + "type": "redeemBassets", + "inputQtys": [ + "54922236264604221046784", + "38994192077459560595456", + "8727336727944582135808" + ], + "expectedQty": "102644905272004112110339", + "swapFee": "61623917513710693682", "reserves": [ - "4100574670764547083551869", - "18443597300571380147990999", - "22800471966699475947822309" + "575941287741248522148674999", + "194814266157697951628344082", + "252367085216013080010631607" ], - "mAssetSupply": "45220768249313357364607676" + "mAssetSupply": "1021997811520861551001687431" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "131091724691654104317952", - "expectedQty": "132090847817687710197501", - "swapFee": "78655034814992462590", + "inputQty": "2171709965677135700951040", + "expectedQty": "2163950741920433863937628", + "swapFee": "1303025979406281420570", "reserves": [ - "4100574670764547083551869", - "18443597300571380147990999", - "22668381118881788237624808" + "575941287741248522148674999", + "194814266157697951628344082", + "250203134474092646146693979" ], - "mAssetSupply": "45089755179656518252752314" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1814735835432399142912", - "expectedQty": "1888174075871747623447", - "reserves": [ - "4102389406599979482694781", - "18443597300571380147990999", - "22668381118881788237624808" - ] + "mAssetSupply": "1019827404581163821582156961" }, { "type": "mintMulti", "inputQtys": [ - "5870047160536092639232", - "5261253181533379887104", - "3382823252133051629568" + "2634957483299510658531328", + "15942740986044480269320192", + "150143370857768450240020480" ], - "expectedQty": "14694026060724972634577", + "expectedQty": "168945770896189216066549921", "reserves": [ - "4108259453760515575334013", - "18448858553752913527878103", - "22671763942133921289254376" + "578576245224548032807206327", + "210757007143742431897664274", + "400346505331861096386714459" ], - "mAssetSupply": "45106337379793114973010338" + "mAssetSupply": "1188773175477353037648706882" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "130690953429944848", - "outputIndex": 1, - "expectedQty": "130290048067823511", - "swapFee": "77778388985313", + "type": "redeemBassets", + "inputQtys": [ + "1155542471369263284224", + "984806625392787718144", + "174531918415192915968" + ], + "expectedQty": "2318395588540190732841", + "swapFee": "1391872476610080487", "reserves": [ - "4108259453760515575334013", - "18448858423462865460054592", - "22671764072824874719199224" + "578575089682076663543922103", + "210756022337117039109946130", + "400346330799942681193798491" ], - "mAssetSupply": "45106337379870893361995651", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1188770857081764497457974041" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "601500634807620599808", - "expectedQty": "604560227035013917330", - "swapFee": "360900380884572359", + "type": "mintMulti", + "inputQtys": [ + "35417079461097572950605824", + "29889924658186521675825152", + "28915814735842253157171200" + ], + "expectedQty": "94297370857917780536363669", "reserves": [ - "4108259453760515575334013", - "18448253863235830446137262", - "22671764072824874719199224" + "613992169143174236494527927", + "240645946995303560785771282", + "429262145535784934350969691" ], - "mAssetSupply": "45105736240136466625968202" + "mAssetSupply": "1283068227939682277994337710" }, { "type": "redeemMasset", - "inputQty": "1044196673770027692851", + "inputQty": "2096783249521646146630451", "expectedQtys": [ - "95077572495711601655", - "426948495790729532490", - "524693320006008712101" + "1003081710716862684187378", + "393144343397709386788347", + "701287457608632359777734" ], - "redemptionFee": "313259002131008307", + "redemptionFee": "629034974856493843989", "reserves": [ - "4108164376188019863732358", - "18447826914740039716604772", - "22671239379504868710487123" + "612989087432457373810340549", + "240252802651905851398982935", + "428560858078176301991191957" ], - "mAssetSupply": "45104692356721698729283658" + "mAssetSupply": "1280972073725135488341551248" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "777769851201157765005312", - "expectedQty": "740922221340017855000022", - "swapFee": "466661910720694659003", + "inputQty": "2309892596848850632704", + "expectedQty": "2317141731384486716747", + "swapFee": "1385935558109310379", "reserves": [ - "3367242154848002008732336", - "18447826914740039716604772", - "22671239379504868710487123" + "612986770290725989323623802", + "240252802651905851398982935", + "428560858078176301991191957" ], - "mAssetSupply": "44327389167431261658937349" + "mAssetSupply": "1280969765218474197600228923" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1334216408623137423360", - "expectedQty": "1258228102004678564303", - "swapFee": "800529845173882454", + "type": "swap", + "inputIndex": 1, + "inputQty": "18014101122786837659648", + "outputIndex": 2, + "expectedQty": "18146319044674630585241", + "swapFee": "10886938072965072976", "reserves": [ - "3365983926745997330168033", - "18447826914740039716604772", - "22671239379504868710487123" + "612986770290725989323623802", + "240270816753028638236642583", + "428542711759131627360606716" ], - "mAssetSupply": "44326055751552483695396443" + "mAssetSupply": "1280969776105412270565301899", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "737162705633186651570176", - "expectedQty": "773416145766836510938863", + "type": "redeemMasset", + "inputQty": "6555069187390815436", + "expectedQtys": [ + "3135878233768199637", + "1229161967244710466", + "2192311200139113153" + ], + "redemptionFee": "1966520756217244", "reserves": [ - "4103146632379183981738209", - "18447826914740039716604772", - "22671239379504868710487123" - ] + "612986767154847755555424165", + "240270815523866670991932117", + "428542709566820427221493563" + ], + "mAssetSupply": "1280969769552309603930703707" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1986640349660322988032", - "outputIndex": 2, - "expectedQty": "2082627532513185879121", - "swapFee": "1240175270673742764", + "type": "redeemMasset", + "inputQty": "451984052062844983705", + "expectedQtys": [ + "216224560009319764648", + "84752973723827059595", + "151163881157454198275" + ], + "redemptionFee": "135595215618853495", "reserves": [ - "4105133272728844304726241", - "18447826914740039716604772", - "22669156751972355524608002" + "612986550930287746235659517", + "240270730770892947164872522", + "428542558402939269767295288" ], - "mAssetSupply": "45099473137494590880078070", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1280969317703852756704573497" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "8689477036374980608", - "outputIndex": 2, - "expectedQty": "8705760885380221576", - "swapFee": "5184160182815494", + "type": "redeemMasset", + "inputQty": "18884565755353340", + "expectedQtys": [ + "9034183623918194", + "3541105262330815", + "6315851722032532" + ], + "redemptionFee": "5665369726606", "reserves": [ - "4105133272728844304726241", - "18447835604217076091585380", - "22669148046211470144386426" + "612986550921253562611741323", + "240270730767351841902541707", + "428542558396623418045262756" ], - "mAssetSupply": "45099473142678751062893564", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1280969317684973856318946763" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "122768456963261726720", - "expectedQty": "123393592324278313496", - "swapFee": "73661074177957036", + "type": "redeemMasset", + "inputQty": "3908784373607041115095040", + "expectedQtys": [ + "1869922572482649841026605", + "732948646741989963442156", + "1307274037270441564377987" + ], + "redemptionFee": "1172635312082112334528", "reserves": [ - "4105133272728844304726241", - "18447712210624751813271884", - "22669148046211470144386426" + "611116628348770912770714718", + "239537782120609851939099551", + "427235284359352976480884769" ], - "mAssetSupply": "45099350447882861979123880" + "mAssetSupply": "1277061705946678897316186251" }, { - "type": "redeemBassets", - "inputQtys": [ - "95285094691096936579072", - "276328978883424727072768", - "269158615273481292480512" + "type": "redeemMasset", + "inputQty": "1450469227109723588788224", + "expectedQtys": [ + "693889682628117597250463", + "271982119128746239937927", + "485102420912126443922720" ], - "expectedQty": "640890365024517042259523", - "swapFee": "384765078061547153647", + "redemptionFee": "435140768132917076636", "reserves": [ - "4009848178037747368147169", - "18171383231741327086199116", - "22399989430937988851905914" + "610422738666142795173464255", + "239265800001481105699161624", + "426750181938440850036962049" ], - "mAssetSupply": "44458460082858344936864357" + "mAssetSupply": "1275611671860337306644474663" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "21524770416103125891940352", + "expectedQty": "21442110112406086134020813", + "reserves": [ + "631947509082245921065404607", + "239265800001481105699161624", + "426750181938440850036962049" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "568648304371855251210240", - "outputIndex": 0, - "expectedQty": "537244229766422827523193", - "swapFee": "338335952983669926071", + "inputIndex": 0, + "inputQty": "3565102241193938386944", + "outputIndex": 2, + "expectedQty": "3550857226193814757994", + "swapFee": "2130603639757408911", "reserves": [ - "3472603948271324540623976", - "18171383231741327086199116", - "22968637735309844103116154" + "631951074184487115003791551", + "239265800001481105699161624", + "426746631081214656222204055" ], - "mAssetSupply": "44458798418811328606790428", + "mAssetSupply": "1297053784103347032535904387", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "139190882298507777015808", - "expectedQty": "146748083217868407989700", + "type": "redeemBassets", + "inputQtys": [ + "1481029111837190258688000", + "1171531408953819782971392", + "1748383992897391871131648" + ], + "expectedQty": "4403070851373434125710328", + "swapFee": "2643428567964839379053", "reserves": [ - "3611794830569832317639784", - "18171383231741327086199116", - "22968637735309844103116154" - ] + "630470045072649924745103551", + "238094268592527285916190232", + "424998247088317264351072407" + ], + "mAssetSupply": "1292650713251973598410194059" }, { - "type": "redeemMasset", - "inputQty": "23442598321277727539", - "expectedQtys": [ - "1897621733463924767", - "9547167922108684019", - "12067625155692207129" + "type": "mintMulti", + "inputQtys": [ + "3500229197132680184987648", + "1605094414398624758759424", + "2588868638629225874587648" ], - "redemptionFee": "7032779496383318", + "expectedQty": "7691172849164240678570551", "reserves": [ - "3611792932948098853715017", - "18171373684573404977515097", - "22968625667684688410909025" + "633970274269782604930091199", + "239699363006925910674949656", + "427587115726946490225660055" ], - "mAssetSupply": "44605523066463655233435907" + "mAssetSupply": "1300341886101137839088764610" }, { "type": "redeemMasset", - "inputQty": "39970261104252330757324", + "inputQty": "22373985010236460", "expectedQtys": [ - "3235496130768618363969", - "16278178272860804706047", - "20575625695188346351472" + "10904967557063430", + "4123085707843393", + "7354956240166614" ], - "redemptionFee": "11991078331275699227", + "redemptionFee": "6712195503070", "reserves": [ - "3608557436817330235351048", - "18155095506300544172809050", - "22948050041989500064557553" + "633970274258877637373027769", + "239699363002802824967106263", + "427587115719591533985493441" ], - "mAssetSupply": "44565564796437734178377810" + "mAssetSupply": "1300341886078770566274031220" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "121474361142081633648640", - "10698549620305171578880", - "43585847242002362531840" + "3867085962862916894982144", + "3679417561540824458592256", + "3553428209692725215232" ], - "expectedQty": "181434031822799402617746", + "expectedQty": "7563208217165805959953167", + "swapFee": "4540649319891418427028", "reserves": [ - "3730031797959411868999688", - "18165794055920849344387930", - "22991635889231502427089393" + "630103188296014720478045625", + "236019945441262000508514007", + "427583562291381841260278209" ], - "mAssetSupply": "44746998828260533580995556" + "mAssetSupply": "1292778677861604760314078053" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "387429066132113300914176", - "outputIndex": 0, - "expectedQty": "364634291762093284799545", - "swapFee": "230994007783644625978", + "type": "redeem", + "inputIndex": 2, + "inputQty": "34703659641834102784", + "expectedQty": "34704660422460860768", + "swapFee": "20822195785100461", "reserves": [ - "3365397506197318584200143", - "18553223122052962645302106", - "22991635889231502427089393" + "630103188296014720478045625", + "236019945441262000508514007", + "427583527586721418799417441" ], - "mAssetSupply": "44747229822268317225621534", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1292778643178767314265075730" }, { "type": "mintMulti", "inputQtys": [ - "444861859502780701474816", - "44025414806980729503744", - "253860069649476136992768" + "391645113769960734720", + "558291887058065031168", + "682103565160092663808" ], - "expectedQty": "764231775046867987546382", + "expectedQty": "1634434692652277412178", "reserves": [ - "3810259365700099285674959", - "18597248536859943374805850", - "23245495958880978564082161" + "630103579941128490438780345", + "236020503733149058573545175", + "427584209690286578892081249" ], - "mAssetSupply": "45511461597315185213167916" + "mAssetSupply": "1292780277613459966542487908" }, { "type": "swap", "inputIndex": 1, - "inputQty": "389240881643843289088", + "inputQty": "34142242995429236702969856", "outputIndex": 2, - "expectedQty": "390115282595751650602", - "swapFee": "232088305817298179", + "expectedQty": "34347668616678823375827993", + "swapFee": "20623148367923325068580", "reserves": [ - "3810259365700099285674959", - "18597637777741587218094938", - "23245105843598382812431559" + "630103579941128490438780345", + "270162746728578295276515031", + "393236541073607755516253256" ], - "mAssetSupply": "45511461829403491030466095", + "mAssetSupply": "1292800900761827889867556488", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1395693648304743330611200", - "outputIndex": 0, - "expectedQty": "1281858894367861018469469", - "swapFee": "829540141768855422484", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4017144642827379539968", + "expectedQty": "3993450971851427545284", + "swapFee": "2410286785696427723", "reserves": [ - "2528400471332238267205490", - "18597637777741587218094938", - "24640799491903126143042759" + "630103579941128490438780345", + "270158753277606443848969747", + "393236541073607755516253256" ], - "mAssetSupply": "45512291369545259885888579", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1292796886027471848184444243" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "48589073966212969398272", - "expectedQty": "49288040040098672196701", - "swapFee": "29153444379727781638", + "inputQty": "40029368234620508465790976", + "expectedQty": "40031704878212137919356807", "reserves": [ - "2528400471332238267205490", - "18597637777741587218094938", - "24591511451863027470846058" - ], - "mAssetSupply": "45463731449023426644271945" + "630103579941128490438780345", + "270158753277606443848969747", + "433265909308228263982044232" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "3155332583584922408583168", - "expectedQty": "3197058640342581377710829", - "swapFee": "1893199550150953445149", + "inputQty": "8927654248156371091456", + "expectedQty": "8924709639428484433552", + "swapFee": "5356592548893822654", "reserves": [ - "2528400471332238267205490", - "18597637777741587218094938", - "21394452811520446093135229" + "630103579941128490438780345", + "270158753277606443848969747", + "433256984598588835497610680" ], - "mAssetSupply": "42310292064988655189133926" + "mAssetSupply": "1332819668608028378626532248" }, { "type": "redeemBassets", "inputQtys": [ - "1403602858748632239177728", - "766351270205178536525824", - "1480228243218990274445312" + "627077036106303930368", + "1780231020403245187072", + "34050645816949927936" ], - "hardLimitError": true + "expectedQty": "2449536096449563294744", + "swapFee": "1470604020281907121", + "reserves": [ + "630102952864092384134849977", + "270156973046586040603782675", + "433256950547943018547682744" + ], + "mAssetSupply": "1332817219071931929063237504" }, { "type": "mintMulti", "inputQtys": [ - "5710849690368480378880", - "14721989597883753562112", - "34511382757405444014080" + "1478164573673609314172928", + "446462531124273520574464", + "1281968359355357757177856" ], - "expectedQty": "54923104377463849513911", + "expectedQty": "3203793912794930958239188", "reserves": [ - "2534111321022606747584370", - "18612359767339470971657050", - "21428964194277851537149309" - ], - "mAssetSupply": "42365215169366119038647837" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1813924754880927845318656", - "4124440483477878195879936", - "1910104849196735730286592" + "631581117437765993449022905", + "270603435577710314124357139", + "434538918907298376304860600" ], - "hardLimitError": true + "mAssetSupply": "1336021012984726860021476692" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "4385780756361144715706368", - "expectedQty": "4545786999723517360625967", + "inputQty": "73681373357160654088175616", + "expectedQty": "73862219800241096817953031", + "swapFee": "44208824014296392452905", "reserves": [ - "6919892077383751463290738", - "18612359767339470971657050", - "21428964194277851537149309" - ] + "557718897637524896631069874", + "270603435577710314124357139", + "434538918907298376304860600" + ], + "mAssetSupply": "1262383848451580502325753981" }, { - "type": "mintMulti", - "inputQtys": [ - "3869846205555786240", - "13213865968491214848", - "4118996677186481152" + "type": "redeemMasset", + "inputQty": "11785313992100931174", + "expectedQtys": [ + "5205168355368311557", + "2525531133496730465", + "4055534498567872949" ], - "expectedQty": "21199098628659732242", + "redemptionFee": "3535594197630279", "reserves": [ - "6919895947229957019076978", - "18612372981205439462871898", - "21428968313274528723630461" + "557718892432356541262758317", + "270603433052179180627626674", + "434538914851763877736987651" ], - "mAssetSupply": "46911023368188265059006046" + "mAssetSupply": "1262383836669802104422453086" }, { - "type": "redeemMasset", - "inputQty": "17564104422635454464", - "expectedQtys": [ - "2590122827309963795", - "6966626737837765899", - "8020880720920728969" - ], - "redemptionFee": "5269231326790636", + "type": "swap", + "inputIndex": 1, + "inputQty": "66069852649002365064577024", + "outputIndex": 0, + "expectedQty": "66378949523112675190321346", + "swapFee": "39784917506581389617698", "reserves": [ - "6919893357107129709113183", - "18612366014578701625105999", - "21428960292393807802901492" + "491339942909243866072436971", + "336673285701181545692203698", + "434538914851763877736987651" ], - "mAssetSupply": "46911005809353073750342218" + "mAssetSupply": "1262423621587308685812070784", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "7210529586619887616", - "expectedQtys": [ - "1063313951563021525", - "2859984602880141789", - "3292783756991009073" + "type": "mintMulti", + "inputQtys": [ + "186304382234804682752", + "221112262681931120640", + "187233498265883738112" ], - "redemptionFee": "2163158875985966", + "expectedQty": "594783633775419909492", "reserves": [ - "6919892293793178146091658", - "18612363154594098744964210", - "21428956999610050811892419" + "491340129213626100877119723", + "336673506813444227623324338", + "434539102085262143620725763" ], - "mAssetSupply": "46910998600986646006440568" + "mAssetSupply": "1262424216370942461231980276" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "109873995480043333091328", - "expectedQty": "109417301228278918857629", + "inputIndex": 1, + "inputQty": "267941342398461088", + "expectedQty": "268487725897996705", "reserves": [ - "6919892293793178146091658", - "18612363154594098744964210", - "21538830995090094144983747" + "491340129213626100877119723", + "336673507081385570021785426", + "434539102085262143620725763" ] }, { "type": "redeemBassets", "inputQtys": [ - "14867716368442819870720", - "18952907882198988750848", - "29651354837070592868352" - ], - "expectedQty": "63492930852988442715997", - "swapFee": "38118629689606829727", - "reserves": [ - "6905024577424735326220938", - "18593410246711899756213362", - "21509179640253023552115395" + "23966555569852715630592", + "7562597528298564091904", + "25248316504082837667840" ], - "mAssetSupply": "46956922971361936482582200" - }, - { - "type": "redeemMasset", - "inputQty": "12316944845545", - "expectedQtys": [ - "1810665751821", - "4875645374727", - "5640231180599" - ], - "redemptionFee": "3695083453", - "reserves": [ - "6905024577422924660469117", - "18593410246707024110838635", - "21509179640247383320934796" - ], - "mAssetSupply": "46956922971349623232820108" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "21506718712746176512", - "outputIndex": 1, - "expectedQty": "21844821891650749070", - "swapFee": "13077075359207546", + "expectedQty": "56751629780516643527923", + "swapFee": "34071420720742431575", "reserves": [ - "6905046084141637406645629", - "18593388401885132460089565", - "21509179640247383320934796" + "491316162658056248161489131", + "336665944483857271457693522", + "434513853768758060783057923" ], - "mAssetSupply": "46956922984426698592027654", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1262367465009649670486449058" }, { "type": "mintMulti", "inputQtys": [ - "11874380376427196317696", - "10543266175504059727872", - "10388677554483601866752" + "1756848204130957393920", + "2431994660265238462464", + "2073085081756562358272" ], - "expectedQty": "32891723934706760631948", + "expectedQty": "6263779696397340557915", "reserves": [ - "6916920464518064602963325", - "18603931668060636519817437", - "21519568317801866922801548" + "491317919506260379118883051", + "336668376478517536696155986", + "434515926853839817345416195" ], - "mAssetSupply": "46989814708361405352659602" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1231366829455446466625536", - "expectedQty": "1225983720364523461167699", - "reserves": [ - "6916920464518064602963325", - "18603931668060636519817437", - "22750935147257313389427084" - ] + "mAssetSupply": "1262373728789346067827006973" }, { "type": "redeemBassets", "inputQtys": [ - "208307807780866516582400", - "50945339745685892759552", - "1075165251185095213056" + "3821590865807519232", + "1905662642012796928", + "6507548330841631744" ], - "expectedQty": "263250263181736654097981", - "swapFee": "158044984899981981647", + "expectedQty": "12231186899114046022", + "swapFee": "7343118010274592", "reserves": [ - "6708612656737198086380925", - "18552986328314950627057885", - "22749859982006128294214028" + "491317915684669513311363819", + "336668374572854894683359058", + "434515920346291486503784451" ], - "mAssetSupply": "47952548165544192159729320" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "195594245483627839488", - "expectedQty": "194667106593634194774", - "reserves": [ - "6708612656737198086380925", - "18552986328314950627057885", - "22750055576251611922053516" - ] + "mAssetSupply": "1262373716558159168712960951" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "774384684942842496", - "1926305005584850688", - "4088360507601636864" + "1226802838416463058960384", + "1263575810252344947376128", + "789484617134247816200192" ], - "expectedQty": "6775933084641163970", + "expectedQty": "3280518150110911197180680", + "swapFee": "1969492585617917468789", "reserves": [ - "6708613431121883029223421", - "18552988254619956211908573", - "22750059664612119523690380" + "490091112846253050252403435", + "335404798762602549735982930", + "433726435729157238687584259" ], - "mAssetSupply": "47952749608583870435088064" + "mAssetSupply": "1259093198408048257515780271" }, { "type": "mint", "inputIndex": 0, - "inputQty": "20622384285102528", - "expectedQty": "20935601219853694", + "inputQty": "16723714396289867110678528", + "expectedQty": "16699980883779915123891392", "reserves": [ - "6708613451744267314325949", - "18552988254619956211908573", - "22750059664612119523690380" + "506814827242542917363081963", + "335404798762602549735982930", + "433726435729157238687584259" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "66819258248856348917760", - "expectedQty": "66969485255555215088570", - "swapFee": "40091554949313809350", + "inputQty": "13306579640154806272", + "expectedQty": "13269538065831549327", + "swapFee": "7983947784092883", "reserves": [ - "6708613451744267314325949", - "18486018769364400996820003", - "22750059664612119523690380" + "506814827242542917363081963", + "335404785493064483904433603", + "433726435729157238687584259" ], - "mAssetSupply": "47885970462825564619833348" + "mAssetSupply": "1275793165993232480268958274" }, { "type": "swap", "inputIndex": 2, - "inputQty": "183539344384775104", + "inputQty": "69382588082301427712", "outputIndex": 0, - "expectedQty": "179835316448536874", - "swapFee": "109600787608356", + "expectedQty": "69425571451358947809", + "swapFee": "41617609188828141", "reserves": [ - "6708613271908950865789075", - "18486018769364400996820003", - "22750059848151463908465484" + "506814757816971466004134154", + "335404785493064483904433603", + "433726505111745320989011971" ], - "mAssetSupply": "47885970462935165407441704", + "mAssetSupply": "1275793166034850089457786415", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mintMulti", + "inputQtys": [ + "8437361324638402221441024", + "6358006576431761171939328", + "1080607649054737540579328" + ], + "expectedQty": "15876597831142906823137845", + "reserves": [ + "515252119141609868225575178", + "341762792069496245076372931", + "434807112760800058529591299" + ], + "mAssetSupply": "1291669763865992996280924260" + }, { "type": "mint", "inputIndex": 2, - "inputQty": "1349950780219371980587008", - "expectedQty": "1343242932195348619870235", + "inputQty": "58044315305065257631744000", + "expectedQty": "58012014532155951559741972", "reserves": [ - "6708613271908950865789075", - "18486018769364400996820003", - "24100010628370835889052492" + "515252119141609868225575178", + "341762792069496245076372931", + "492851428065865316161335299" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1852935429093380434427904", - "outputIndex": 2, - "expectedQty": "1882133030719509961929788", - "swapFee": "1125801047723940183987", + "type": "redeemBassets", + "inputQtys": [ + "20868899677407744000", + "28305953590869762048", + "4379591745050691072" + ], + "expectedQty": "53598552315583895461", + "swapFee": "32178438452421790", "reserves": [ - "8561548701002331300216979", - "18486018769364400996820003", - "22217877597651325927122704" + "515252098272710190817831178", + "341762763763542654206610883", + "492851423686273571110644227" ], - "mAssetSupply": "49230339196178237967495926", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1349681724799596632256770771" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "569991619025818697596928", - "expectedQty": "574659084834485509877519", + "inputQty": "10787633801893534236672", + "expectedQty": "10794490453918242854288", + "swapFee": "6472580281136120542", "reserves": [ - "9131540320028149997813907", - "18486018769364400996820003", - "22217877597651325927122704" - ] + "515241303782256272574976890", + "341762763763542654206610883", + "492851423686273571110644227" + ], + "mAssetSupply": "1349670943638375019858654641" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "607468689172959365955584", - "expectedQty": "605506165225100535236275", + "type": "redeem", + "inputIndex": 1, + "inputQty": "265884688665948798844928", + "expectedQty": "265033499191277894539379", + "swapFee": "159530813199569279306", "reserves": [ - "9131540320028149997813907", - "18486018769364400996820003", - "22825346286824285293078288" - ] + "515241303782256272574976890", + "341497730264351376312071504", + "492851423686273571110644227" + ], + "mAssetSupply": "1349405218480522270629089019" }, { - "type": "redeemBassets", - "inputQtys": [ - "10744267432161822720", - "25160663282271539200", - "41977481435780038656" - ], - "expectedQty": "77788862274349521321", - "swapFee": "46701338167510218", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1166897937074045694509056", + "expectedQty": "1167232959732430009602375", + "swapFee": "700138762244427416705", "reserves": [ - "9131529575760717835991187", - "18485993608701118725280803", - "22825304309342849513039632" + "515241303782256272574976890", + "341497730264351376312071504", + "491684190726541141101041852" ], - "mAssetSupply": "50410426657375549663088399" + "mAssetSupply": "1348239020682210469361996668" }, { "type": "redeemMasset", - "inputQty": "32674785350888608", + "inputQty": "7612483107903358301424844", "expectedQtys": [ - "5917054811100012", - "11978566844998335", - "14790356375445204" + "2908304077889684680487017", + "1927600202521045454865942", + "2775334831324394047268624" ], - "redemptionFee": "9802435605266", + "redemptionFee": "2283744932371007490427", "reserves": [ - "9131529569843663024891175", - "18485993596722551880282468", - "22825304294552493137594428" + "512332999704366587894489873", + "339570130061830330857205562", + "488908855895216747053773228" ], - "mAssetSupply": "50410426624710566747805057" + "mAssetSupply": "1340628821319239482068062251" }, { "type": "redeemBassets", "inputQtys": [ - "977671971016324284416", - "2845845653791980912640", - "2570725153476701061120" - ], - "expectedQty": "6389001598542030369994", - "swapFee": "3835702380553550352", - "reserves": [ - "9130551897872646700606759", - "18483147751068759899369828", - "22822733569399016436533308" + "13154265984098265718587392", + "1015443825304274909265920", + "13552878814958038657531904" ], - "mAssetSupply": "50404037623112024717435063" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "22893662914707935232", - "outputIndex": 1, - "expectedQty": "23096514725751852531", - "swapFee": "13844605505170917", + "expectedQty": "27697769372846273020835518", + "swapFee": "16628638806991958987894", "reserves": [ - "9130574791535561408541991", - "18483124654554034147517297", - "22822733569399016436533308" + "499178733720268322175902481", + "338554686236526055947939642", + "475355977080258708396241324" ], - "mAssetSupply": "50404037636956630222605980", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1312931051946393209047226733" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "70333457913300826193920", - "expectedQty": "70524288751425185839340", - "swapFee": "42200074747980495716", - "reserves": [ - "9130574791535561408541991", - "18483124654554034147517297", - "22752209280647591250693968" - ], - "mAssetSupply": "50333746379118077376907776" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "37051326138518806528", - "expectedQty": "37087232254235826526", - "swapFee": "22230795683111283", + "inputQty": "788249769301358208", + "expectedQty": "788410188928947171", + "swapFee": "472949861580814", "reserves": [ - "9130574791535561408541991", - "18483087567321779911690771", - "22752209280647591250693968" + "499178733720268322175902481", + "338554686236526055947939642", + "475355976291848519467294153" ], - "mAssetSupply": "50333709350022734541212531" + "mAssetSupply": "1312931051158616389607449339" }, { "type": "redeemBassets", "inputQtys": [ - "115948346385952480952320", - "34880987554050465595392", - "119914623122126212694016" + "13820016498867678857920512", + "4094871910449355557961728", + "7154791383620938215981056" ], - "expectedQty": "271212451104784608699146", - "swapFee": "162825165762328162116", + "expectedQty": "25057714837717941785663765", + "swapFee": "15043655095688177978185", "reserves": [ - "9014626445149608927589671", - "18448206579767729446095379", - "22632294657525465037999952" + "485358717221400643317981969", + "334459814326076700389977914", + "468201184908227581251313097" ], - "mAssetSupply": "50062496898917949932513385" + "mAssetSupply": "1287873336320898447821785574" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "19647403317517459914752", - "outputIndex": 0, - "expectedQty": "19414204177796617766937", - "swapFee": "11749295668754542378", + "inputIndex": 1, + "inputQty": "58705992926498452930560", + "outputIndex": 2, + "expectedQty": "58855800551895810189683", + "swapFee": "35305479147959465966", "reserves": [ - "8995212240971812309822734", - "18448206579767729446095379", - "22651942060842982497914704" + "485358717221400643317981969", + "334518520319003198842908474", + "468142329107675685441123414" ], - "mAssetSupply": "50062508648213618687055763", + "mAssetSupply": "1287873371626377595781251540", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "48880808597303681089536", - "expectedQty": "49272682181855843239368", + "inputQty": "8421043451457347233251328", + "expectedQty": "8424921279291954309928051", + "swapFee": "5052626070874408339950", "reserves": [ - "9044093049569115990912270", - "18448206579767729446095379", - "22651942060842982497914704" - ] + "476933795942108689008053918", + "334518520319003198842908474", + "468142329107675685441123414" + ], + "mAssetSupply": "1279457380800991122956340162" }, { - "type": "redeemMasset", - "inputQty": "120618952726031529672704", - "expectedQtys": [ - "21762582297682656422919", - "44391473167779213622350", - "54506820153173987825731" + "type": "mintMulti", + "inputQtys": [ + "23135581878416096362496", + "41556193085996897665024", + "58418293052919102046208" ], - "redemptionFee": "36185685817809458901", + "expectedQty": "123129395202711589488081", "reserves": [ - "9022330467271433334489351", - "18403815106599950232473029", - "22597435240689808510088973" + "476956931523987105104416414", + "334560076512089195740573498", + "468200747400728604543169622" ], - "mAssetSupply": "49991198563355260810081328" + "mAssetSupply": "1279580510196193834545828243" }, { - "type": "redeemBassets", - "inputQtys": [ - "12342734197295161344", - "17734424296818208768", - "20238697235994456064" + "type": "redeemMasset", + "inputQty": "128523107548166784", + "expectedQtys": [ + "47891943118610863", + "33593666629141460", + "47012721863502445" ], - "expectedQty": "50318813309535980394", - "swapFee": "30209413633901929", + "redemptionFee": "38556932264450", "reserves": [ - "9022318124537236039328007", - "18403797372175653414264261", - "22597415001992572515632909" + "476956931476095161985805551", + "334560076478495529111432038", + "468200747353715882679667177" ], - "mAssetSupply": "49991148244541951274100934" + "mAssetSupply": "1279580510067709283929925909" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "2756118270623927500800", - "outputIndex": 0, - "expectedQty": "2723631074911787360356", - "swapFee": "1648196577049823467", + "inputQty": "4430333541789290815553536", + "expectedQty": "4426368264668055561215110", "reserves": [ - "9019594493462324251967651", - "18403797372175653414264261", - "22600171120263196443133709" - ], - "mAssetSupply": "49991149892738528323924401", - "hardLimitError": false, - "insufficientLiquidityError": false + "476956931476095161985805551", + "334560076478495529111432038", + "472631080895505173495220713" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "178181203212023571152896", - "expectedQty": "176634368724749783507581", - "swapFee": "106908721927214142691", + "type": "redeemBassets", + "inputQtys": [ + "7085712558441277675274240", + "4407711973290098171052032", + "722233179030101948366848" + ], + "expectedQty": "12218264692880101080834250", + "swapFee": "7335360031747108913848", "reserves": [ - "8842960124737574468460070", - "18403797372175653414264261", - "22600171120263196443133709" + "469871218917653884310531311", + "330152364505205430940380006", + "471908847716475071546853865" ], - "mAssetSupply": "49813075598248431966914196" + "mAssetSupply": "1271788613639497238410306769" }, { - "type": "mintMulti", - "inputQtys": [ - "1481213286972021301837824", - "2311188600425395488030720", - "2259781477294963593052160" - ], - "expectedQty": "6052733714472487375735718", + "type": "redeem", + "inputIndex": 0, + "inputQty": "43307856014821621235712", + "expectedQty": "43323133605691864369825", + "swapFee": "25984713608892972741", "reserves": [ - "10324173411709595770297894", - "20714985972601048902294981", - "24859952597558160036185869" + "469827895784048192446161486", + "330152364505205430940380006", + "471908847716475071546853865" ], - "mAssetSupply": "55865809312720919342649914" + "mAssetSupply": "1271745331768196025682043798" }, { "type": "redeemBassets", "inputQtys": [ - "2379589498608577150976", - "4504685547117665058816", - "3716710502120901050368" + "3384185225932280688541696", + "6860635223167175604830208", + "416288453091586356543488" ], - "expectedQty": "10599988622265740230554", - "swapFee": "6363811460235585489", + "expectedQty": "10673873999777603136735885", + "swapFee": "6408169301447430340245", "reserves": [ - "10321793822210987193146918", - "20710481287053931237236165", - "24856235887056039135135501" + "466443710558115911757619790", + "323291729282038255335549798", + "471492559263383485190310377" ], - "mAssetSupply": "55855209324098653602419360" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "267531819957865412558848", - "expectedQty": "269470907096887446626215", - "reserves": [ - "10589325642168852605705766", - "20710481287053931237236165", - "24856235887056039135135501" - ] + "mAssetSupply": "1261071457768418422545307913" }, { - "type": "redeemMasset", - "inputQty": "15003394122579283148", - "expectedQtys": [ - "2829916583928845961", - "5534718303683969238", - "6642639628600590307" + "type": "redeemBassets", + "inputQtys": [ + "518394367975601995776", + "538131977935077113856", + "97931516570050183168" ], - "redemptionFee": "4501018236773784", + "expectedQty": "1155176424117882627770", + "swapFee": "693521967651320368", "reserves": [ - "10589322812252268676859805", - "20710475752335627553266927", - "24856229244416410534545194" + "466443192163747936155624014", + "323291191150060320258435942", + "471492461331866915140127209" ], - "mAssetSupply": "56124665232302436706536211" + "mAssetSupply": "1261070302591994304662680143" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "1826920120632178959712256", - "expectedQty": "1823685448632714601262890", - "reserves": [ - "10589322812252268676859805", - "22537395872967806512979183", - "24856229244416410534545194" - ] - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "182259281903081469509632", - "expectedQty": "182661599043434287425670", - "swapFee": "109355569141848881705", + "inputQty": "3323702712976296210595840", + "outputIndex": 0, + "expectedQty": "3332857716921433664375269", + "swapFee": "1999059146183823513437", "reserves": [ - "10589322812252268676859805", - "22537395872967806512979183", - "24673567645372976247119524" + "463110334446826502491248745", + "326614893863036616469031782", + "471492461331866915140127209" ], - "mAssetSupply": "57766200754601211687171174" + "mAssetSupply": "1261072301651140488486193580", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "683059692124632543920128", - "524244380264273406853120", - "361991792629488495362048" + "705634731268111872294912", + "987220482547596073631744", + "769015710447254607233024" ], - "expectedQty": "1572229071863120995351025", + "expectedQty": "2462746563631114384195889", "reserves": [ - "11272382504376901220779933", - "23061640253232079919832303", - "25035559438002464742481572" + "463815969178094614363543657", + "327602114345584212542663526", + "472261477042314169747360233" ], - "mAssetSupply": "59338429826464332682522199" + "mAssetSupply": "1263535048214771602870389469" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1074716830152849656643584", - "491600946366127494135808", - "609327242949329120395264" + "211039596885141159936", + "112732710879460311040", + "307189171616302759936" ], - "expectedQty": "2180103009385418831777618", + "expectedQty": "630714253210725152759", + "swapFee": "378655745373659287", "reserves": [ - "12347099334529750877423517", - "23553241199598207413968111", - "25644886680951793862876836" + "463815758138497729222383721", + "327602001612873333082352486", + "472261169853142553444600297" ], - "mAssetSupply": "61518532835849751514299817" + "mAssetSupply": "1263534417500518392145236710" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "113102055933188581097472", - "expectedQty": "113297998419047058347711", - "swapFee": "67861233559913148658", + "type": "redeemMasset", + "inputQty": "26063372025556110619443", + "expectedQtys": [ + "9564421758125444044419", + "6755535268588235903558", + "9738575995325286021864" + ], + "redemptionFee": "7819011607666833185", "reserves": [ - "12347099334529750877423517", - "23553241199598207413968111", - "25531588682532746804529125" + "463806193716739603778339302", + "327595246077604744846448928", + "472251431277147228158578433" ], - "mAssetSupply": "61405498641150122846351003" + "mAssetSupply": "1263508361947504443701450452" }, { "type": "redeemBassets", "inputQtys": [ - "2405322929898107961344", - "610305759638853779456", - "2002901867137633615872" + "493117955626987927109632", + "2320151532964048317448192", + "5215521747285224095481856" ], - "expectedQty": "5026923102057755345818", - "swapFee": "3017964640018664406", + "expectedQty": "8028431036340573467737542", + "swapFee": "4819950592159639864561", "reserves": [ - "12344694011599852769462173", - "23552630893838568560188655", - "25529585780665609170913253" + "463313075761112615851229670", + "325275094544640696529000736", + "467035909529862004063096577" ], - "mAssetSupply": "61400471718048065091005185" + "mAssetSupply": "1255479930911163870233712910" }, { "type": "redeemBassets", "inputQtys": [ - "348010889665848384", - "1330264703234956032", - "660000547764276480" + "144327042766394143801344", + "76269892235224349147136", + "100070013169004078694400" ], - "expectedQty": "2336553169092737388", - "swapFee": "1402773565594999", + "expectedQty": "320608910486243104256126", + "swapFee": "192480834792621435414", "reserves": [ - "12344693663588963103613789", - "23552629563573865325232623", - "25529585120665061406636773" + "463168748718346221707428326", + "325198824652405472179853600", + "466935839516692999984402177" ], - "mAssetSupply": "61400469381494895998267797" + "mAssetSupply": "1255159322000677627129456784" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "124794355042849631764480", - "expectedQty": "124926794306451376707479", - "swapFee": "74876613025709779058", + "inputQty": "9855530058195413237760", + "expectedQty": "9826511617534417838396", + "swapFee": "5913318034917247942", "reserves": [ - "12344693663588963103613789", - "23427702769267413948525144", - "25529585120665061406636773" + "463168748718346221707428326", + "325188998140787937762015204", + "466935839516692999984402177" ], - "mAssetSupply": "61275749903065072076282375" + "mAssetSupply": "1255149472383937466633466966" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "159667615771659010048", - "expectedQty": "159944103842426685054", - "swapFee": "95800569462995406", + "inputIndex": 1, + "inputQty": "3695337483463069876092928", + "expectedQty": "3684286366857170523549226", + "swapFee": "2217202490077841925655", "reserves": [ - "12344693663588963103613789", - "23427702769267413948525144", - "25529425176561218979951719" + "463168748718346221707428326", + "321504711773930767238465978", + "466935839516692999984402177" ], - "mAssetSupply": "61275590331249869880267733" + "mAssetSupply": "1251456352102964474599299693" }, { "type": "mint", "inputIndex": 1, - "inputQty": "149472153234187468406784", - "expectedQty": "149223652436924770268196", + "inputQty": "7611657072295774292803584", + "expectedQty": "7629535697232446024370177", "reserves": [ - "12344693663588963103613789", - "23577174922501601416931928", - "25529425176561218979951719" + "463168748718346221707428326", + "329116368846226541531269562", + "466935839516692999984402177" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5589950468095377145856", - "2100728926274736619520", - "3068494182297667371008" - ], - "expectedQty": "10781234706103410444812", - "reserves": [ - "12350283614057058480759645", - "23579275651427876153551448", - "25532493670743516647322727" - ], - "mAssetSupply": "61435595218392898060980741" - }, - { - "type": "redeemMasset", - "inputQty": "15082850623220726366208", - "expectedQtys": [ - "3031167827028876876100", - "5787133637797877341587", - "6266517901701250720391" - ], - "redemptionFee": "4524855186966217909", - "reserves": [ - "12347252446230029603883545", - "23573488517790078276209861", - "25526227152841815396602336" - ], - "mAssetSupply": "61420516892624864300832442" - }, - { - "type": "redeemMasset", - "inputQty": "5859818777720018016665", - "expectedQtys": [ - "1177635090007392508580", - "2248351800801819061951", - "2434596760825472196318" + "7293511221619666714624", + "30693397118863487795200", + "10613033464685368705024" ], - "redemptionFee": "1757945633316005404", + "expectedQty": "48652172895385970978341", + "swapFee": "29208829034652374011", "reserves": [ - "12346074811140022211374965", - "23571240165989276457147910", - "25523792556080989924406018" + "463161455207124602040713702", + "329085675449107678043474362", + "466925226483228314615697153" ], - "mAssetSupply": "61414658831792777598821181" + "mAssetSupply": "1259037235627301534652691529" }, { - "type": "redeemMasset", - "inputQty": "20287159288302349058048", - "expectedQtys": [ - "4077066469241542632490", - "7783972994597497546767", - "8428767878870945179200" - ], - "redemptionFee": "6086147786490704717", + "type": "redeem", + "inputIndex": 1, + "inputQty": "791902547871878917128192", + "expectedQty": "789638726699354094338049", + "swapFee": "475141528723127350276", "reserves": [ - "12341997744670780668742475", - "23563456192994678959601143", - "25515363788202118979226818" + "463161455207124602040713702", + "328296036722408323949136313", + "466925226483228314615697153" ], - "mAssetSupply": "61394377758652261740467850" + "mAssetSupply": "1258245808220958378862913613" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "579527952332956434432", - "expectedQty": "582915329158648837022", + "inputIndex": 2, + "inputQty": "3552042551398564750163968", + "expectedQty": "3548485796803007260503403", "reserves": [ - "12342577272623113625176907", - "23563456192994678959601143", - "25515363788202118979226818" + "463161455207124602040713702", + "328296036722408323949136313", + "470477269034626879365861121" ] }, - { - "type": "redeemMasset", - "inputQty": "219293940057276992716800", - "expectedQtys": [ - "44072679176769282720161", - "84140015667003635669316", - "91109856351500647845830" - ], - "redemptionFee": "65788182017183097815", - "reserves": [ - "12298504593446344342456746", - "23479316177327675323931827", - "25424253931850618331380988" - ], - "mAssetSupply": "61175732522106160579685887" - }, { "type": "redeemBassets", "inputQtys": [ - "404560705991685505024", - "138750511614956060672", - "179234452538054541312" - ], - "expectedQty": "724262789695597943511", - "swapFee": "434818564956332565", - "reserves": [ - "12298100032740352656951722", - "23479177426816060367871155", - "25424074697398080276839676" - ], - "mAssetSupply": "61175008259316464981742376" - }, - { - "type": "mintMulti", - "inputQtys": [ - "154376680365211549696", - "204816633653205794816", - "236560082891784880128" + "5829741309001465856000", + "31940000143546001653760", + "22571152041318186745856" ], - "expectedQty": "595764697811882173701", + "expectedQty": "60386234511183150357477", + "swapFee": "36253492802391325009", "reserves": [ - "12298254409420717868501418", - "23479382243449713573665971", - "25424311257480972061719804" + "463155625465815600574857702", + "328264096722264777947482553", + "470454697882585561179115265" ], - "mAssetSupply": "61175604024014276863916077" + "mAssetSupply": "1261733907783250202973059539" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "7231954213097901947617280", - "expectedQty": "7121802983616985708043076", - "swapFee": "4339172527858741168570", + "inputIndex": 1, + "inputQty": "435072785741074885771264", + "expectedQty": "433809145523363356807386", + "swapFee": "261043671444644931462", "reserves": [ - "5176451425803732160458342", - "23479382243449713573665971", - "25424311257480972061719804" + "463155625465815600574857702", + "327830287576741414590675167", + "470454697882585561179115265" ], - "mAssetSupply": "53947988983444233657467367" + "mAssetSupply": "1261299096041180572732219737" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "137365286566313567715328", - "expectedQty": "142143459265486035831416", + "inputIndex": 1, + "inputQty": "2029975927119711830016", + "expectedQty": "2034678248272177536764", "reserves": [ - "5313816712370045728173670", - "23479382243449713573665971", - "25424311257480972061719804" + "463155625465815600574857702", + "327832317552668534302505183", + "470454697882585561179115265" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "25865055644138956", - "expectedQty": "26024263968966623", - "swapFee": "15519033386483", - "reserves": [ - "5313816712370045728173670", - "23479382243449713573665971", - "25424311231456708092753181" - ], - "mAssetSupply": "54090132416860183082546310" - }, - { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "153672072024541544579072", - "311778232933873694539776", - "221389043272162843033600" - ], - "expectedQty": "688686626264127355822673", - "reserves": [ - "5467488784394587272752742", - "23791160476383587268205747", - "25645700274728870935786781" + "17512422212931386605568", + "14104149546879089115136", + "7984982626816978059264" ], - "mAssetSupply": "54778819043124310438368983" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "52343172425267464372224", - "expectedQty": "52656524293560799061523", - "swapFee": "31405903455160478623", + "expectedQty": "39610210625959021683116", + "swapFee": "23780394612342818701", "reserves": [ - "5467488784394587272752742", - "23791160476383587268205747", - "25593043750435310136725258" + "463138113043602669188252134", + "327818213403121655213390047", + "470446712899958744201056001" ], - "mAssetSupply": "54726507276602498134475382" + "mAssetSupply": "1261261520508802885888073385" }, { - "type": "redeemMasset", - "inputQty": "8186781199840270981529", - "expectedQtys": [ - "817660550196179472879", - "3557957616748808040281", - "3827428470252088896915" + "type": "mintMulti", + "inputQtys": [ + "1487638003228553246670848", + "21266341550050779332608", + "1018730491312451822288896" ], - "redemptionFee": "2456034359952081294", + "expectedQty": "2525284981054307357295871", "reserves": [ - "5466671123844391093279863", - "23787602518766838460165466", - "25589216321965058047828343" + "464625751046831222434922982", + "327839479744671705992722655", + "471465443391271196023344897" ], - "mAssetSupply": "54718322951437017815575147" + "mAssetSupply": "1263786805489857193245369256" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "483955261820806430195712", - "expectedQty": "486804356283118886976528", - "swapFee": "290373157092483858117", - "reserves": [ - "5466671123844391093279863", - "23787602518766838460165466", - "25102411965681939160851815" + "type": "redeemBassets", + "inputQtys": [ + "5304630317919751168", + "7885504900434281472", + "1029716311878303232" ], - "mAssetSupply": "54234658062773303869237552" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "131147555535670296576", - "outputIndex": 1, - "expectedQty": "130991055842701404809", - "swapFee": "78188042567789256", + "expectedQty": "14232370002570729379", + "swapFee": "8544548730780906", "reserves": [ - "5466671123844391093279863", - "23787471527710995758760657", - "25102543113237474831148391" - ], - "mAssetSupply": "54234658140961346437026808", - "hardLimitError": false, - "insufficientLiquidityError": false + "464625745742200904515171814", + "327839471859166805558441183", + "471465442361554884145041665" + ], + "mAssetSupply": "1263786791257487190674639877" }, { "type": "swap", "inputIndex": 2, - "inputQty": "4964117724255828240760832", + "inputQty": "22016022438229122744320", "outputIndex": 0, - "hardLimitError": true + "expectedQty": "22000313805609557200714", + "swapFee": "13196025401990774688", + "reserves": [ + "464603745428395294957971100", + "327839471859166805558441183", + "471487458383993113267785985" + ], + "mAssetSupply": "1263786804453512592665414565", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "2475652929473458688", - "2062924411255140096", - "2247832617065702144" + "4132854378836557037568", + "12289237784520317468672", + "1163136527132783149056" ], - "expectedQty": "6839411762240576661", - "swapFee": "4106110723778613", + "expectedQty": "17608979438377283546739", + "swapFee": "10571730701447238471", "reserves": [ - "5466668648191461619821175", - "23787469464786584503620561", - "25102540865404857765446247" + "464599612574016458400933532", + "327827182621382285240972511", + "471486295247465980484636929" ], - "mAssetSupply": "54234651301549584196450147" + "mAssetSupply": "1263769195474074215381867826" }, { "type": "redeemMasset", - "inputQty": "96022544617190350389248", + "inputQty": "476610077511372", "expectedQtys": [ - "9675842741762280698356", - "42103121403177101030677", - "44430759108231914975325" + "175163651951815", + "123597620322783", + "177760073589430" ], - "redemptionFee": "28806763385157105116", + "redemptionFee": "142983023253", "reserves": [ - "5456992805449699339122819", - "23745366343383407402589884", - "25058110106296625850470922" + "464599612573841294748981717", + "327827182621258687620649728", + "471486295247288220411047499" ], - "mAssetSupply": "54138657563695779003166015" + "mAssetSupply": "1263769195473597748287379707" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1769248141368481021952", - "2268208063972970594304", - "3471852911779987324928" + "2288134966516358527844352", + "2119222566469059183902720", + "357267712528970009280512" ], - "expectedQty": "7530748947744737932273", - "swapFee": "4521162065886374584", + "expectedQty": "4767085142657767773505248", "reserves": [ - "5455223557308330858100867", - "23743098135319434431995580", - "25054638253384845863145994" + "466887747540357653276826069", + "329946405187727746804552448", + "471843562959817190420328011" ], - "mAssetSupply": "54131126814748034265233742" + "mAssetSupply": "1268536280616255516060884955" }, { "type": "redeemMasset", - "inputQty": "113578092068277072586342", + "inputQty": "4639036302599314877710336", "expectedQtys": [ - "11442732522449694473476", - "49802894118382804191447", - "52553945950782779523422" + "1706895948032038571792782", + "1206251791891343626139036", + "1725013924576152063511393" ], - "redemptionFee": "34073427620483121775", + "redemptionFee": "1391710890779794463313", "reserves": [ - "5443780824785881163627391", - "23693295241201051627804133", - "25002084307434063083622572" + "465180851592325614705033287", + "328740153395836403178413412", + "470118549035241038356816618" ], - "mAssetSupply": "54017582796107377675769175" + "mAssetSupply": "1263898636024546980977637932" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "9980374579431959380885504", - "outputIndex": 2, - "expectedQty": "9928920850947010166831712", - "swapFee": "5942840456101695747380", + "inputIndex": 2, + "inputQty": "5378826573970558976", + "outputIndex": 0, + "expectedQty": "5375159506211122697", + "swapFee": "3224059637888868", "reserves": [ - "5443780824785881163627391", - "33673669820633011008689637", - "15073163456487052916790860" + "465180846217166108493910590", + "328740153395836403178413412", + "470118554414067612327375594" ], - "mAssetSupply": "54023525636563479371516555", + "mAssetSupply": "1263898636027771040615526800", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "15416222991416511430656", - "expectedQtys": [ - "1552978287903164214443", - "9606279126331282735160", - "4300006986203475008756" - ], - "redemptionFee": "4624866897424953429", - "reserves": [ - "5442227846497977999412948", - "33664063541506679725954477", - "15068863449500849441782104" - ], - "mAssetSupply": "54008114038438960285039328" - }, - { - "type": "redeemMasset", - "inputQty": "12630290162209798907494", - "expectedQtys": [ - "1272332814772451456268", - "7870286568396023925303", - "3522933987496043649177" - ], - "redemptionFee": "3789087048662939672", + "type": "redeem", + "inputIndex": 1, + "inputQty": "42617754385055143946092544", + "expectedQty": "42469450998822360079220799", + "swapFee": "25570652631033086367655", "reserves": [ - "5440955513683205547956680", - "33656193254938283702029174", - "15065340515513353398132927" + "465180846217166108493910590", + "286270702397014043099192613", + "470118554414067612327375594" ], - "mAssetSupply": "53995487537363799149071506" + "mAssetSupply": "1221306452295346929755801911" }, { "type": "swap", "inputIndex": 1, - "inputQty": "280007276274491213217792", + "inputQty": "17484443170726418", "outputIndex": 2, - "expectedQty": "276573838195157397399860", - "swapFee": "166136149940659142104", + "expectedQty": "17560554349361608", + "swapFee": "10527827016097", "reserves": [ - "5440955513683205547956680", - "33936200531212774915246966", - "14788766677318196000733067" + "465180846217166108493910590", + "286270702414498486269919031", + "470118554396507057978013986" ], - "mAssetSupply": "53995653673513739808213610", + "mAssetSupply": "1221306452295357457582818008", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "5066856825432023708467", - "expectedQtys": [ - "510416489913193945262", - "3183557798362919271390", - "1387335433748496164359" + "type": "mintMulti", + "inputQtys": [ + "13004201963041304084480", + "7436021936076468781056", + "5178162215816154578944" + ], + "expectedQty": "25620211596637880674635", + "reserves": [ + "465193850419129149797995070", + "286278138436434562738700087", + "470123732558722874132592930" + ], + "mAssetSupply": "1221332072506954095463492643" + }, + { + "type": "mintMulti", + "inputQtys": [ + "6327055933307016571781120", + "26205825162009181180395520", + "6296748548425497039601664" ], - "redemptionFee": "1520057047629607112", + "expectedQty": "38897226511952203773277985", "reserves": [ - "5440445097193292354011418", - "33933016973414411995975576", - "14787379341884447504568708" + "471520906352436166369776190", + "312483963598443743919095607", + "476420481107148371172194594" ], - "mAssetSupply": "53990588336745355414112255" + "mAssetSupply": "1260229299018906299236770628" }, { "type": "redeemBassets", "inputQtys": [ - "5118420735278336442368", - "7923855534468493213696", - "15728446248123451310080" + "45006941197119384", + "2899799134939920", + "29218932122677092" ], - "expectedQty": "28882530155733818728943", - "swapFee": "17339922046668292212", + "expectedQty": "77049521357520512", + "swapFee": "46257467294889", "reserves": [ - "5435326676458014017569050", - "33925093117879943502761880", - "14771650895636324053258628" + "471520906307429225172656806", + "312483963595543944784155687", + "476420481077929439049517502" ], - "mAssetSupply": "53961705806589621595383312" + "mAssetSupply": "1260229298941856777879250116" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "652495621027272", - "805773549963914", - "1529453956006124" + "39444908689152234487808", + "4480705584746374627328", + "24244022848412973006848" + ], + "expectedQty": "68110043766081887074881", + "swapFee": "40890560596006736286", + "reserves": [ + "471481461398740072938168998", + "312479482889959198409528359", + "476396237055081026076510654" + ], + "mAssetSupply": "1260161188898090695992175235" + }, + { + "type": "redeemMasset", + "inputQty": "47424256603930070142156", + "expectedQtys": [ + "17738167235235073318272", + "11756163876810883367770", + "17923071880811602478356" ], - "expectedQty": "3003966523382448", + "redemptionFee": "14227276981179021042", "reserves": [ - "5435326677110509638596322", - "33925093118685717052725794", - "14771650897165778009264752" + "471463723231504837864850726", + "312467726726082387526160589", + "476378313983200214474032298" ], - "mAssetSupply": "53961705809593588118765760" + "mAssetSupply": "1260113778868763747101054121" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "32656750000610538946560", + "inputIndex": 0, + "inputQty": "6566776557310602794500096", "outputIndex": 1, - "expectedQty": "33031748159913064582847", - "swapFee": "19607517708151364543", + "expectedQty": "6535701806463880341790642", + "swapFee": "3935564668222105320578", "reserves": [ - "5435326677110509638596322", - "33892061370525803988142947", - "14804307647166388548211312" + "478030499788815440659350822", + "305932024919618507184369947", + "476378313983200214474032298" ], - "mAssetSupply": "53961725417111296270130303", + "mAssetSupply": "1260117714433431969206374699", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2096855697394109184", - "202474416944035104", - "2134337745398510080" + "862104063511365550080", + "695854245538669920256", + "1174271737392238428160" ], - "expectedQty": "4510671231187384893", + "expectedQty": "2731891871373641396246", + "swapFee": "1640119194340789311", "reserves": [ - "5435328773966207032705506", - "33892061573000220932178051", - "14804309781504133946721392" + "478029637684751929293800742", + "305931329065372968514449691", + "476377139711462822235604138" ], - "mAssetSupply": "53961729927782527457515196" + "mAssetSupply": "1260114982541560595564978453" }, { - "type": "mintMulti", - "inputQtys": [ - "329539732204158606901248", - "188545707582164939309056", - "241488070953950227988480" - ], - "expectedQty": "769285935472218264333524", + "type": "mint", + "inputIndex": 2, + "inputQty": "857785456326540309561344", + "expectedQty": "856739592066965783237253", "reserves": [ - "5764868506170365639606754", - "34080607280582385871487107", - "15045797852458084174709872" - ], - "mAssetSupply": "54731015863254745721848720" + "478029637684751929293800742", + "305931329065372968514449691", + "477234925167789362545165482" + ] }, { "type": "redeemBassets", "inputQtys": [ - "198324719313259040", - "142716370904711760", - "213244966818867520" + "13489214796449045282816", + "14863399156623173746688", + "10749680539159708565504" ], - "expectedQty": "559546797312457060", - "swapFee": "335929636169175", + "expectedQty": "39118669206602721832946", + "swapFee": "23485292699581381928", "reserves": [ - "5764868307845646326347714", - "34080607137866014966775347", - "15045797639213117355842352" + "478016148469955480248517926", + "305916465666216345340703003", + "477224175487250202836599978" ], - "mAssetSupply": "54731015303707948409391660" + "mAssetSupply": "1260932603464420958626382760" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "679424180958373740544", - "expectedQty": "672175552129270732347", + "type": "mintMulti", + "inputQtys": [ + "1018978916575080240644096", + "3652375074410304276267008", + "218445177926623082577920" + ], + "expectedQty": "4899468341534684488033515", "reserves": [ - "5764868307845646326347714", - "34081286562046973340515891", - "15045797639213117355842352" - ] + "479035127386530560489162022", + "309568840740626649616970011", + "477442620665176825919177898" + ], + "mAssetSupply": "1265832071805955643114416275" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "33388248488183532", - "outputIndex": 0, - "expectedQty": "32310481087927384", - "swapFee": "20046899806050", + "inputQty": "303058321223189973172224", + "expectedQty": "303235776668679360333610", + "swapFee": "181834992733913983903", "reserves": [ - "5764868275535165238420330", - "34081286562046973340515891", - "15045797672601365844025884" + "479035127386530560489162022", + "309568840740626649616970011", + "477139384888508146558844288" ], - "mAssetSupply": "54731687479280124579930057", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1265529195319725187055227954" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1246540882401549090816", - "expectedQty": "1233241294340163956400", + "inputQty": "12077191981762347008000", + "expectedQty": "12113543452602876483025", "reserves": [ - "5764868275535165238420330", - "34082533102929374889606707", - "15045797672601365844025884" + "479035127386530560489162022", + "309580917932608411963978011", + "477139384888508146558844288" ] }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "407693924915067234549760", - "expectedQty": "411806785487522253299543", - "swapFee": "244616354949040340729", - "reserves": [ - "5764868275535165238420330", - "33670726317441852636307164", - "15045797672601365844025884" - ], - "mAssetSupply": "54325471412014346549677426" - }, { "type": "redeemMasset", - "inputQty": "988826020398393344", + "inputQty": "271966158779628953", "expectedQtys": [ - "104899993895526059", - "612686850130966832", - "273779730702118441" + "102914269333306418", + "66509306201381789", + "102506994495044610" ], - "redemptionFee": "296647806119518", + "redemptionFee": "81589847633888", "reserves": [ - "5764868170635171342894271", - "33670725704755002505340332", - "15045797398821635141907443" + "479035127283616291155855604", + "309580917866099105762596222", + "477139384786001152063799678" ], - "mAssetSupply": "54325470423484973957403600" + "mAssetSupply": "1265541308591293220999715914" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "13082692786878115840", - "expectedQty": "12660093806539579123", - "swapFee": "7849615672126869", + "type": "mintMulti", + "inputQtys": [ + "121140988495702486155264", + "1027150023048279890067456", + "1277829518847856397516800" + ], + "expectedQty": "2427542995492043298466410", "reserves": [ - "5764855510541364803315148", - "33670725704755002505340332", - "15045797398821635141907443" + "479156268272111993642010868", + "310608067889147385652663678", + "478417214304849008461316478" ], - "mAssetSupply": "54325457348641802751414629" + "mAssetSupply": "1267968851586785264298182324" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "1043824754306308767744", - "expectedQty": "1032871226331787759600", + "inputQty": "18307756443931162624", + "outputIndex": 0, + "expectedQty": "18373562373995035361", + "swapFee": "11017530863033935", "reserves": [ - "5764855510541364803315148", - "33671769529509308814108076", - "15045797398821635141907443" - ] + "479156249898549619646975507", + "310608086196903829583826302", + "478417214304849008461316478" + ], + "mAssetSupply": "1267968851597802795161216259", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3700714882341862375424", - "expectedQty": "3581096247844952059601", - "swapFee": "2220428929405117425", + "type": "mintMulti", + "inputQtys": [ + "20312817004740904", + "16443511909868568", + "718083976898546" + ], + "expectedQty": "37498422370417476", "reserves": [ - "5761274414293519851255547", - "33671769529509308814108076", - "15045797398821635141907443" + "479156249918862436651716411", + "310608086213347341493694870", + "478417214305567092438215024" ], - "mAssetSupply": "54322791725414722081916230" + "mAssetSupply": "1267968851635301217531633735" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "22644132392699489681408", - "expectedQty": "22656702386881321262013", + "type": "redeem", + "inputIndex": 0, + "inputQty": "944046149023382716284928", + "expectedQty": "944607264778094968050699", + "swapFee": "566427689414029629770", "reserves": [ - "5761274414293519851255547", - "33671769529509308814108076", - "15068441531214334631588851" - ] + "478211642654084341683665712", + "310608086213347341493694870", + "478417214305567092438215024" + ], + "mAssetSupply": "1267025371913967248844978577" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "3488173861487799", - "expectedQty": "3602647659258940", + "inputQty": "1277651539707055277342720", + "expectedQty": "1278395075677415509466320", + "swapFee": "766590923824233166405", "reserves": [ - "5761274417781693712743346", - "33671769529509308814108076", - "15068441531214334631588851" - ] + "476933247578406926174199392", + "310608086213347341493694870", + "478417214305567092438215024" + ], + "mAssetSupply": "1265748486965184017800802262" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2978631328336238346240", - "3881140919701353791488", - "218890347850193436672" + "3089934635050294312960", + "3830097837682420875264", + "3923257597586947178496" ], - "expectedQty": "7135775128585164449273", + "expectedQty": "10846344608917712714996", + "swapFee": "6511713793626803711", "reserves": [ - "5764253049110029951089586", - "33675650670429010167899564", - "15068660421562184825025523" + "476930157643771875879886432", + "310604256115509659072819606", + "478413291047969505491036528" ], - "mAssetSupply": "54352584206532836226886456" + "mAssetSupply": "1265737640620575100088087266" }, { - "type": "mintMulti", - "inputQtys": [ - "4517582052250780958720", - "4093934546118317703168", - "3849500771214431879168" + "type": "redeem", + "inputIndex": 1, + "inputQty": "1575933574397291741052928", + "expectedQty": "1570285115265273031229962", + "swapFee": "945560144638375044631", + "reserves": [ + "476930157643771875879886432", + "309033971000244386041589644", + "478413291047969505491036528" + ], + "mAssetSupply": "1264162652606322446722078969" + }, + { + "type": "redeemMasset", + "inputQty": "78237045097808591952281", + "expectedQtys": [ + "29507604969422869753689", + "19119890391201340118260", + "29599366234477337071620" ], - "expectedQty": "12568232971935555346001", + "redemptionFee": "23471113529342577585", "reserves": [ - "5768770631162280732048306", - "33679744604975128485602732", - "15072509922333399256904691" + "476900650038802453010132743", + "309014851109853184701471384", + "478383691681735028153964908" ], - "mAssetSupply": "54365152439504771782232457" + "mAssetSupply": "1264084439032338167472704273" }, { - "type": "mintMulti", - "inputQtys": [ - "1712697051086540505088", - "2735131791691214225408", - "2336967539173555699712" + "type": "redeemMasset", + "inputQty": "19726890681985086259", + "expectedQtys": [ + "7440123752006441543", + "4820938560847188048", + "7463260674449091891" ], - "expectedQty": "6813484311189700537656", + "redemptionFee": "5918067204595525", "reserves": [ - "5770483328213367272553394", - "33682479736766819699828140", - "15074846889872572812604403" + "476900642598678701003691200", + "309014846288914623854283336", + "478383684218474353704873017" ], - "mAssetSupply": "54371965923815961482770113" + "mAssetSupply": "1264084419311365552692213539" }, { - "type": "mintMulti", - "inputQtys": [ - "1536972473385265659904", - "529965054709355315200", - "931779591447765975040" + "type": "redeemMasset", + "inputQty": "1079965287562212754744934", + "expectedQtys": [ + "407315857165054702213539", + "263926352262888749299336", + "408582507520749129750521" ], - "expectedQty": "3043973235405423938128", + "redemptionFee": "323989586268663826423", "reserves": [ - "5772020300686752538213298", - "33683009701821529055143340", - "15075778669464020578579443" + "476493326741513646301477661", + "308750919936651735104984000", + "477975101710953604575122496" ], - "mAssetSupply": "54375009897051366906708241" + "mAssetSupply": "1263004778013389608601295028" }, { - "type": "mintMulti", - "inputQtys": [ - "1067350129188101051908096", - "2518544731968246403563520", - "2217477767219134672666624" + "type": "redeemMasset", + "inputQty": "172491076892458405068", + "expectedQtys": [ + "65056119531737944881", + "42154077771227888033", + "65258427778508664477" ], - "expectedQty": "5811073860597699326726200", + "redemptionFee": "51747323067737521", "reserves": [ - "6839370429874853590121394", - "36201554433789775458706860", - "17293256436683155251246067" + "476493261685394114563532780", + "308750877782573963877095967", + "477975036452525826066458019" ], - "mAssetSupply": "60186083757649066233434441" + "mAssetSupply": "1263004605574060039210627481" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "92150261056580565860352", - "expectedQty": "89604596476951636757620", - "swapFee": "55290156633948339516", + "inputIndex": 2, + "inputQty": "4541580120188113263788032", + "expectedQty": "4544251870567041031002229", + "swapFee": "2724948072112867958272", "reserves": [ - "6749765833397901953363774", - "36201554433789775458706860", - "17293256436683155251246067" + "476493261685394114563532780", + "308750877782573963877095967", + "473430784581958785035455790" ], - "mAssetSupply": "60093988786749119615913605" + "mAssetSupply": "1258465750401944038814797721" }, { "type": "redeemMasset", - "inputQty": "1352108797226103550771", + "inputQty": "404374293326052300", "expectedQtys": [ - "151823502174255982743", - "814287030684005343414", - "388979828488807880737" + "153062426545453326", + "99179069992057482", + "152078676691292332" ], - "redemptionFee": "405632639167831065", + "redemptionFee": "121312287997815", "reserves": [ - "6749614009895727697381031", - "36200740146759091453363446", - "17292867456854666443365330" + "476493261532331688018079454", + "308750877683394893885038485", + "473430784429880108344163458" ], - "mAssetSupply": "60092637083584532680193899" + "mAssetSupply": "1258465749997691057776743236" }, { - "type": "redeemMasset", - "inputQty": "1888623273031916689817", - "expectedQtys": [ - "212066810147055492695", - "1137394742370497244189", - "543326364217921667690" + "type": "redeemBassets", + "inputQtys": [ + "4008171255099790848", + "17884036272003614720", + "2155546254444148992" + ], + "expectedQty": "24093591487191328320", + "swapFee": "14464833792590351", + "reserves": [ + "476493257524160432918288606", + "308750859799358621881423765", + "473430782274333853900014466" + ], + "mAssetSupply": "1258465725904099570585414916" + }, + { + "type": "mintMulti", + "inputQtys": [ + "1996051892461750791962624", + "1596957274734356816986112", + "2773169098124344401330176" ], - "redemptionFee": "566586981909575006", + "expectedQty": "6365284570930175785353548", "reserves": [ - "6749401943085580641888336", - "36199602752016720956119257", - "17292324130490448521697640" + "478489309416622183710251230", + "310347817074092978698409877", + "476203951372458198301344642" ], - "mAssetSupply": "60090749026898482673079088" + "mAssetSupply": "1264831010475029746370768464" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "17550799892082971377664", - "outputIndex": 1, - "expectedQty": "18203912585921895334720", - "swapFee": "10826313231617901539", + "inputIndex": 2, + "inputQty": "3173808328106724294656", + "outputIndex": 0, + "expectedQty": "3172021421711248531758", + "swapFee": "1902060651746808340", "reserves": [ - "6766952742977663613266000", - "36181398839430799060784537", - "17292324130490448521697640" + "478486137395200472461719472", + "310347817074092978698409877", + "476207125180786305025639298" ], - "mAssetSupply": "60090759853211714290980627", + "mAssetSupply": "1264831012377090398117576804", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2034063211060278", - "expectedQty": "2032823525814493", - "swapFee": "1220437926636", + "type": "redeemMasset", + "inputQty": "925594037473038250803", + "expectedQtys": [ + "350047592349646609140", + "227042118187904035963", + "348380328292773395379" + ], + "redemptionFee": "277678211241911475", "reserves": [ - "6766952742977663613266000", - "36181398839430799060784537", - "17292324128457624995883147" + "478485787347608122815110332", + "310347590031974790794373914", + "476206776800458012252243919" ], - "mAssetSupply": "60090759851178871517846985" + "mAssetSupply": "1264830087060731136321237476" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "235610624232264331952128", - "expectedQty": "235446884601103373405192", - "swapFee": "141366374539358599171", + "inputQty": "33798271797691687695810560", + "expectedQty": "33752552916421927358831172", + "reserves": [ + "478485787347608122815110332", + "310347590031974790794373914", + "510005048598149699948054479" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "31955798161018646528", + "expectedQty": "32061121764333684636", + "reserves": [ + "478485787347608122815110332", + "310347621987772951813020442", + "510005048598149699948054479" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "136465413404749767639040", + "expectedQty": "135935219774376898811388", + "swapFee": "81879248042849860583", "reserves": [ - "6766952742977663613266000", - "36181398839430799060784537", - "17056877243856521622477955" + "478485787347608122815110332", + "310211686767998574914209054", + "510005048598149699948054479" ], - "mAssetSupply": "59855290593321146544494028" + "mAssetSupply": "1298446288504118121095974827" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "100096134196055523328", - "outputIndex": 0, - "expectedQty": "97341961945770286311", - "swapFee": "60068574958981773", + "inputIndex": 0, + "inputQty": "37075985729073268805074944", + "outputIndex": 1, + "expectedQty": "36848085203139808196038899", + "swapFee": "22217903403158975124876", "reserves": [ - "6766855401015717842979689", - "36181398839430799060784537", - "17056977339990717678001283" + "515561773076681391620185276", + "273363601564858766718170155", + "510005048598149699948054479" ], - "mAssetSupply": "59855290653389721503475801", + "mAssetSupply": "1298468506407521280071099703", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "31384166691752804089856", - "25053789674622729322496", - "125962575298169652903936" + "2000478355482641078157312", + "2632913250254321077977088", + "4515072356347467282776064" ], - "expectedQty": "183055252264856619291466", + "expectedQty": "9150232669066820601972118", + "swapFee": "5493435662837795038206", "reserves": [ - "6798239567707470647069545", - "36206452629105421790107033", - "17182939915288887330905219" + "513561294721198750542027964", + "270730688314604445640193067", + "505489976241802232665278415" ], - "mAssetSupply": "60038345905654578122767267" + "mAssetSupply": "1289318273738454459469127585" }, { "type": "redeemMasset", - "inputQty": "275170120308596055579033", + "inputQty": "5770990867392511973785", "expectedQtys": [ - "31148612937330617834941", - "165893062100210160319428", - "78729903413396877528558" + "2298011650628975932556", + "1211427501107750866065", + "2261895253049482631978" ], - "redemptionFee": "82551036092578816673", + "redemptionFee": "1731297260217753592", "reserves": [ - "6767090954770140029234604", - "36040559567005211629787605", - "17104210011875490453376661" + "513558996709548121566095408", + "270729476887103337889327002", + "505487714346549183182646437" ], - "mAssetSupply": "59763258336382074646004907" + "mAssetSupply": "1289312504478884327174907392" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "20553709238069047066624", - "outputIndex": 2, - "expectedQty": "21105960284192869173558", - "swapFee": "12672846397672854244", + "type": "redeem", + "inputIndex": 1, + "inputQty": "327149495160370599297024", + "expectedQty": "325285423920645198578860", + "swapFee": "196289697096222359578", "reserves": [ - "6787644664008209076301228", - "36040559567005211629787605", - "17083104051591297584203103" + "513558996709548121566095408", + "270404191463182692690748142", + "505487714346549183182646437" ], - "mAssetSupply": "59763271009228472318859151", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1288985551273421052797969946" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "3852793312625297742364672", + "expectedQty": "3872236177447214747927291", + "reserves": [ + "513558996709548121566095408", + "274256984775807990433112814", + "505487714346549183182646437" + ] }, { "type": "mintMulti", "inputQtys": [ - "62689961515181200", - "175056422835002016", - "144819483908742112" + "345973129467031", + "396087366484491", + "296895105880556" ], - "expectedQty": "382673468453603365", + "expectedQty": "1039777848776449", "reserves": [ - "6787644726698170591482428", - "36040559742061634464789621", - "17083104196410781492945215" + "513558996709894094695562439", + "274256984776204077799597305", + "505487714346846078288526993" ], - "mAssetSupply": "59763271391901940772462516" + "mAssetSupply": "1292857787451908045394673686" }, { "type": "mintMulti", "inputQtys": [ - "1272080129671457536", - "2270918608681417728", - "3195871742838458880" + "1698589387201923686334464", + "74728161828673029144576", + "274955034009008800268288" ], - "expectedQty": "6753078679364861616", + "expectedQty": "2045045700652635411977462", "reserves": [ - "6787645998778300262939964", - "36040562012980243146207349", - "17083107392282524331404095" + "515257586097096018381896903", + "274331712938032750828741881", + "505762669380855087088795281" ], - "mAssetSupply": "59763278144980620137324132" + "mAssetSupply": "1294902833152560680806651148" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "716087712063279320793088", - "695768105269300928970752", - "164932404881589083832320" + "12122483540001262575550464", + "15054088288991002258046976", + "13560770502878167216160768" ], - "expectedQty": "1591651699138149225434895", - "swapFee": "955564358097748184171", + "expectedQty": "40765343573659487011931077", "reserves": [ - "6071558286715020942146876", - "35344793907710942217236597", - "16918174987400935247571775" + "527380069637097280957447367", + "289385801227023753086788857", + "519323439883733254304956049" ], - "mAssetSupply": "58171626445842470911889237" + "mAssetSupply": "1335668176726220167818582225" }, { - "type": "redeemBassets", - "inputQtys": [ - "87957008762141772087296", - "16612604257407674089472", - "78133586297872707485696" + "type": "redeemMasset", + "inputQty": "5951366969770675", + "expectedQtys": [ + "2349154372267898", + "1289036046986959", + "2313267033893730" ], - "expectedQty": "185471020548124729868455", - "swapFee": "111349421982064076366", + "redemptionFee": "1785410090931", "reserves": [ - "5983601277952879170059580", - "35328181303453534543147125", - "16840041401103062540086079" + "527380069634748126585179469", + "289385801225734717039801898", + "519323439881419987271062319" ], - "mAssetSupply": "57986155425294346182020782" + "mAssetSupply": "1335668176720270586258902481" }, { - "type": "mintMulti", - "inputQtys": [ - "22761378775832940", - "6366091226565284", - "20940418599265776" - ], - "expectedQty": "50772634361284156", + "type": "redeem", + "inputIndex": 0, + "inputQty": "64490380193257452950519808", + "expectedQty": "64541489192883108206156882", + "swapFee": "38694228115954471770311", "reserves": [ - "5983601300714257945892520", - "35328181309819625769712409", - "16840041422043481139351855" + "462838580441865018379022587", + "289385801225734717039801898", + "519323439881419987271062319" ], - "mAssetSupply": "57986155476066980543304938" + "mAssetSupply": "1271216490755129087780152984" }, { "type": "mintMulti", "inputQtys": [ - "121738746705527862984704", - "17582711257263939518464", - "18628797244563913703424" + "114694482522543939911680", + "44715407882774929997824", + "189103354616906422157312" ], - "expectedQty": "161843575361777055727581", + "expectedQty": "348208863024148122432761", "reserves": [ - "6105340047419785808877224", - "35345764021076889709230873", - "16858670219288045053055279" + "462953274924387562318934267", + "289430516633617491969799722", + "519512543236036893693219631" ], - "mAssetSupply": "58147999051428757599032519" + "mAssetSupply": "1271564699618153235902585745" }, { - "type": "mintMulti", - "inputQtys": [ - "296789080735360875495424", - "177762105366461143842816", - "109617263000724959133696" - ], - "expectedQty": "591727150948350053095041", + "type": "mint", + "inputIndex": 2, + "inputQty": "4817217557691994254344192", + "expectedQty": "4807841997438012949948723", "reserves": [ - "6402129128155146684372648", - "35523526126443350853073689", - "16968287482288770012188975" - ], - "mAssetSupply": "58739726202377107652127560" + "462953274924387562318934267", + "289430516633617491969799722", + "524329760793728887947563823" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "161182634957615281471488", + "inputQty": "594748301583596384157696", + "expectedQty": "593574116418416415521467", + "reserves": [ + "462953274924387562318934267", + "289430516633617491969799722", + "524924509095312484331721519" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "4589210636738706432", "outputIndex": 1, - "expectedQty": "162624689807734091160108", - "swapFee": "96691404134155006972", + "expectedQty": "4563662713463323551", + "swapFee": "2750787300612220", "reserves": [ - "6402129128155146684372648", - "35360901436635616761913581", - "17129470117246385293660463" + "462953279513598199057640699", + "289430512069954778506476171", + "524924509095312484331721519" ], - "mAssetSupply": "58739822893781241807134532", + "mAssetSupply": "1276966115734760452568668155", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mintMulti", + "inputQtys": [ + "5081479793131835621376", + "10467375340806224216064", + "321523918691809689600" + ], + "expectedQty": "15906504457765763278757", + "reserves": [ + "462958360993391330893262075", + "289440979445295584730692235", + "524924830619231176141411119" + ], + "mAssetSupply": "1276982022239218218331946912" + }, { "type": "mint", - "inputIndex": 1, - "inputQty": "16846390496167714619392", - "expectedQty": "16684308294141538342076", + "inputIndex": 0, + "inputQty": "13094149099705012224", + "expectedQty": "13081124309359497855", "reserves": [ - "6402129128155146684372648", - "35377747827131784476532973", - "17129470117246385293660463" + "462958374087540430598274299", + "289440979445295584730692235", + "524924830619231176141411119" ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "3355231027896677920931840", - "expectedQty": "3349378830409054987642031", - "swapFee": "2013138616738006752559", + "inputIndex": 1, + "inputQty": "13373816547376891181400064", + "expectedQty": "13309225161603399552638361", + "swapFee": "8024289928426134708840", "reserves": [ - "6402129128155146684372648", - "35377747827131784476532973", - "13780091286837330306018432" + "462958374087540430598274299", + "276131754283692185178053874", + "524924830619231176141411119" ], - "mAssetSupply": "55403289312795443431297327" + "mAssetSupply": "1263616243062894062644753543" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "423321977502707528761344", - "expectedQty": "434543823872018604571668", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7708635967652954636288", + "expectedQty": "7669370039023552539022", + "swapFee": "4625181580591772781", "reserves": [ - "6825451105657854213133992", - "35377747827131784476532973", - "13780091286837330306018432" - ] + "462958374087540430598274299", + "276124084913653161625514852", + "524924830619231176141411119" + ], + "mAssetSupply": "1263608539052107990281890036" }, { - "type": "redeemMasset", - "inputQty": "38509166095687577", - "expectedQtys": [ - "4705834070128519", - "24391327177090081", - "9500738055734729" - ], - "redemptionFee": "11552749828706", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7408568313103165423616", + "expectedQty": "7370828552949080348676", + "swapFee": "4445140987861899254", "reserves": [ - "6825451100952020143005473", - "35377747802740457299442892", - "13780091277336592250283703" + "462958374087540430598274299", + "276116714085100212545166176", + "524924830619231176141411119" ], - "mAssetSupply": "55837833098169848690010124" + "mAssetSupply": "1263601134928935874978365674" }, { "type": "redeemBassets", "inputQtys": [ - "96991099140239", - "6573597501412", - "423486637680514" + "717477069524335984640", + "846774153026882371584", + "290902971200053903360" ], - "expectedQty": "530663353880566", - "swapFee": "318589165827", + "expectedQty": "1857540839564279230809", + "swapFee": "1115193619910513846", "reserves": [ - "6825451100855029043865234", - "35377747802733883701941480", - "13780091276913105612603189" + "462957656610470906262289659", + "276115867310947185662794592", + "524924539716259976087507759" ], - "mAssetSupply": "55837833097639185336129558" + "mAssetSupply": "1263599277388096310699134865" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "53470501035491647488", - "expectedQty": "52144352205902978470", - "swapFee": "32082300621294988", + "type": "redeemMasset", + "inputQty": "824050271165939828601651", + "expectedQtys": [ + "301825063671929396222210", + "180013632007121527850936", + "342224348945425777762756" + ], + "redemptionFee": "247215081349781948580", "reserves": [ - "6825398956502823140886764", - "35377747802733883701941480", - "13780091276913105612603189" + "462655831546798976866067449", + "275935853678940064134943656", + "524582315367314550309745003" ], - "mAssetSupply": "55837779659220450465777058" + "mAssetSupply": "1262775474332011720652481794" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1172111024530482266112", - "expectedQty": "1143035900941761132159", - "swapFee": "703266614718289359", + "inputIndex": 1, + "inputQty": "95337084941812528", + "expectedQty": "94851414461724133", + "swapFee": "57202250965087", "reserves": [ - "6824255920601881379754605", - "35377747802733883701941480", - "13780091276913105612603189" + "462655831546798976866067449", + "275935853584088649673219523", + "524582315367314550309745003" ], - "mAssetSupply": "55836608251462534701800305" + "mAssetSupply": "1262775474236731837961634353" }, { - "type": "redeemBassets", - "inputQtys": [ - "71668492134804715732992", - "24459108301836929466368", - "67614055946970934018048" + "type": "redeemMasset", + "inputQty": "555539958372550731366", + "expectedQtys": [ + "203477735749670879910", + "121357602932891278119", + "230713231017523228852" ], - "expectedQty": "165495054316204802641647", - "swapFee": "99356646577669483274", + "redemptionFee": "166661987511765219", "reserves": [ - "6752587428467076664021613", - "35353288694432046772475112", - "13712477220966134678585141" + "462655628069063227195187539", + "275935732226485716781941404", + "524582084654083532786516151" ], - "mAssetSupply": "55671113197146329899158658" + "mAssetSupply": "1262774918863435452922668206" }, { "type": "mintMulti", "inputQtys": [ - "72141458752423774388224", - "224165131127182587854848", - "279886098315942920454144" + "7016981625894275645440", + "2727497690004647313408", + "1382770588125637640192" ], - "expectedQty": "576565996223057779814225", + "expectedQty": "11128615543875537824736", "reserves": [ - "6824728887219500438409837", - "35577453825559229360329960", - "13992363319282077599039285" + "462662645050689121470832979", + "275938459724175721429254812", + "524583467424671658424156343" ], - "mAssetSupply": "56247679193369387678972883" + "mAssetSupply": "1262786047478979328460492942" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "412882481676799311872", - "expectedQty": "411469474123538816741", - "swapFee": "247729489006079587", - "reserves": [ - "6824728887219500438409837", - "35577453825559229360329960", - "13991951849807954060222544" - ], - "mAssetSupply": "56247266558617199885740598" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "1349706951306831724544", - "outputIndex": 0, - "expectedQty": "1302530103167621495029", - "swapFee": "801669848355407830", + "inputQty": "1305310993014548552744960", + "expectedQty": "1307301905695321395389699", + "swapFee": "783186595808729131646", "reserves": [ - "6823426357116332816914808", - "35578803532510536192054504", - "13991951849807954060222544" + "462662645050689121470832979", + "275938459724175721429254812", + "523276165518976337028766644" ], - "mAssetSupply": "56247267360287048241148428", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1261481519672560588636879628" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "4734226906500387831808", - "outputIndex": 0, - "expectedQty": "4568608883403129063923", - "swapFee": "2811925788652281415", + "inputIndex": 0, + "inputQty": "618756740291143898497024", + "outputIndex": 1, + "expectedQty": "614892880522354376692418", + "swapFee": "370826427821566002314", "reserves": [ - "6818857748232929687850885", - "35583537759417036579886312", - "13991951849807954060222544" + "463281401790980265369330003", + "275323566843653367052562394", + "523276165518976337028766644" ], - "mAssetSupply": "56247270172212836893429843", + "mAssetSupply": "1261481890498988410202881942", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "450403608970950185320448", - "191348137051035124367360", - "2389249181360291993092096" + "13800920167907466764353536", + "12860270691227634394726400", + "11192403545372609082294272" ], - "expectedQty": "3044313167496477965093625", + "expectedQty": "37871374509938508441182871", "reserves": [ - "7269261357203879873171333", - "35774885896468071704253672", - "16381201031168246053314640" + "477082321958887732133683539", + "288183837534881001447288794", + "534468569064348946111060916" ], - "mAssetSupply": "59291583339709314858523468" + "mAssetSupply": "1299353265008926918644064813" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "15068728302174667276288", - "expectedQty": "15046845410734245395573", - "swapFee": "9041236981304800365", - "reserves": [ - "7269261357203879873171333", - "35774885896468071704253672", - "16366154185757511807919067" + "type": "redeemBassets", + "inputQtys": [ + "66640617598963400", + "904924835414098944", + "1080539448084092032" ], - "mAssetSupply": "59276523652644121496047545" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1939742404990133390540800", - "expectedQty": "1940071752411192995984687", + "expectedQty": "2053735757901202447", + "swapFee": "1232981243486813", "reserves": [ - "7269261357203879873171333", - "35774885896468071704253672", - "18305896590747645198459867" - ] + "477082321892247114534720139", + "288183836629956166033189850", + "534468567983809498026968884" + ], + "mAssetSupply": "1299353262955191160742862366" }, { - "type": "redeemMasset", - "inputQty": "845359737130406917229772", - "expectedQtys": [ - "100353462768525038969449", - "493878745507147984320418", - "252716200682965691289094" - ], - "redemptionFee": "253607921139122075168", + "type": "redeem", + "inputIndex": 0, + "inputQty": "20243572484776072", + "expectedQty": "20254352689029872", + "swapFee": "12146143490865", "reserves": [ - "7168907894435354834201884", - "35281007150960923719933254", - "18053180390064679507170773" + "477082321871992761845690267", + "288183836629956166033189850", + "534468567983809498026968884" ], - "mAssetSupply": "60371489275846046696877628" + "mAssetSupply": "1299353262934959734401577159" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "876006715643193458688", - "1697335026077198974976", - "118840244883433521152" + "454714709971701816360960", + "408618241894911578210304", + "25472865900298915282944" ], - "expectedQty": "2699098557287405589925", - "swapFee": "1620431393208368374", + "expectedQty": "889994207826464106564149", "reserves": [ - "7168031887719711640743196", - "35279309815934846520958278", - "18053061549819796073649621" + "477537036581964463662051227", + "288592454871851077611400154", + "534494040849709796942251828" ], - "mAssetSupply": "60368790177288759291287703" + "mAssetSupply": "1300243257142786198508141308" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "225929951413975616", - "outputIndex": 2, - "expectedQty": "223996332190724059", - "swapFee": "134415706500768", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1689940436842600862842880", + "expectedQty": "1692322172565806889719806", + "swapFee": "1013964262105560517705", "reserves": [ - "7168031887719711640743196", - "35279310041864797934933894", - "18053061325823463882925562" + "477537036581964463662051227", + "288592454871851077611400154", + "532801718677143990052532022" ], - "mAssetSupply": "60368790177423174997788471", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1298554330670205703205816133" }, { "type": "redeemBassets", "inputQtys": [ - "54408996623607903813632", - "14244415093960708456448", - "12674807076751639838720" + "259870866754738174558208", + "41441278217707640061952", + "675571722664510566170624" ], - "expectedQty": "82532794976736955203860", - "swapFee": "49549406630020185233", + "expectedQty": "975416202609960081983470", + "swapFee": "585601082215305232329", "reserves": [ - "7113622891096103736929564", - "35265065626770837226477446", - "18040386518746712243086842" + "477277165715209725487493019", + "288551013593633369971338202", + "532126146954479479486361398" ], - "mAssetSupply": "60286257382446438042584611" + "mAssetSupply": "1297578914467595743123832663" }, { - "type": "redeemBassets", - "inputQtys": [ - "617750316323156902543360", - "1003927875805710724890624", - "443956905155070431068160" - ], - "expectedQty": "2072805081323197658502997", - "swapFee": "1244429706617889328699", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4683389082997439122636800", + "expectedQty": "4685796746752216340133497", + "swapFee": "2810033449798463473582", "reserves": [ - "6495872574772946834386204", - "34261137750965126501586822", - "17596429613591641812018682" + "472591368968457509147359522", + "288551013593633369971338202", + "532126146954479479486361398" ], - "mAssetSupply": "58213452301123240384081614" + "mAssetSupply": "1292898335418048102464669445" }, { "type": "mint", "inputIndex": 2, - "inputQty": "165701098473943501635584", - "expectedQty": "165560844126527418526782", + "inputQty": "24884229093731813285691392", + "expectedQty": "24830959783535908600711466", "reserves": [ - "6495872574772946834386204", - "34261137750965126501586822", - "17762130712065585313654266" + "472591368968457509147359522", + "288551013593633369971338202", + "557010376048211292772052790" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "167449684945322752", - "expectedQty": "162775629670977626", - "swapFee": "100469810967193", + "inputIndex": 2, + "inputQty": "13770499533100896223232", + "expectedQty": "13793482616203513390383", + "swapFee": "8262299719860537733", "reserves": [ - "6495872411997317163408578", - "34261137750965126501586822", - "17762130712065585313654266" + "472591368968457509147359522", + "288551013593633369971338202", + "556996582565595089258662407" ], - "mAssetSupply": "58379012977900552668252837" + "mAssetSupply": "1317715532964350630029695412" }, { "type": "mintMulti", "inputQtys": [ - "1352643303813306", - "1294062085371108", - "526594917089064" + "32303228325217899118592", + "25497012948748371755008", + "9463949179490461024256" ], - "expectedQty": "3199249475821002", + "expectedQty": "67325971603709849128765", "reserves": [ - "6495872413349960467221884", - "34261137752259188586957930", - "17762130712592180230743330" + "472623672196782727046478114", + "288576510606582118343093210", + "557006046514774579719686663" ], - "mAssetSupply": "58379012981099802144073839" + "mAssetSupply": "1317782858935954339878824177" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1763682059205340741763072", - "outputIndex": 0, - "expectedQty": "1692975718583406395613675", - "swapFee": "1056698341336216474647", + "type": "redeemBassets", + "inputQtys": [ + "9225528995545901694976", + "3016016908474211368960", + "8870636865580790972416" + ], + "expectedQty": "21096702388214208467434", + "swapFee": "12665620805411772143", "reserves": [ - "4802896694766554071608209", - "34261137752259188586957930", - "19525812771797520972506402" + "472614446667787181144783138", + "288573494589673644131724250", + "556997175877908998928714247" ], - "mAssetSupply": "58380069679441138360548486", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1317761762233566125670356743" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "14351893335451379269894144", + "expectedQty": "14336757143408784444804830", + "reserves": [ + "486966340003238560414677282", + "288573494589673644131724250", + "556997175877908998928714247" + ] }, { "type": "redeemMasset", - "inputQty": "1901031383324615822540", + "inputQty": "977536525734875136", "expectedQtys": [ - "156349902638560540112", - "1115311423976484248111", - "635628688232214673283" + "357244279622740618", + "211700936438890605", + "408619730979930191" ], - "redemptionFee": "570309414997384746", + "redemptionFee": "293260957720462", "reserves": [ - "4802740344863915511068097", - "34260022440835212102709819", - "19525177143109288757833119" + "486966339645994280791936664", + "288573494377972707692833645", + "556997175469289267948784056" ], - "mAssetSupply": "58378169218367228742110692" + "mAssetSupply": "1332098518399731645338006899" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "21803609974149010685952", - "outputIndex": 0, - "expectedQty": "20438400040853157161424", - "swapFee": "12930517320175605176", + "type": "mintMulti", + "inputQtys": [ + "10051744976419342336", + "2636200813589553152", + "219673859548556640" + ], + "expectedQty": "12907929432598352161", "reserves": [ - "4782301944823062353906673", - "34281826050809361113395771", - "19525177143109288757833119" + "486966349697739257211279000", + "288573497014173521282386797", + "556997175688963127497340696" ], - "mAssetSupply": "58378182148884548917715868", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1332098531307661077936359060" }, { - "type": "redeemMasset", - "inputQty": "4304108021801982256742", - "expectedQtys": [ - "352483896255346558506", - "2526773038707493224502", - "1439120865617704760230" + "type": "mint", + "inputIndex": 2, + "inputQty": "1281232559550381056", + "expectedQty": "1278416004129232119", + "reserves": [ + "486966349697739257211279000", + "288573497014173521282386797", + "556997176970195687047721752" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "13962805122698532838440960", + "4064179620166010557956096", + "8183732482335555928981504" ], - "redemptionFee": "1291232406540594677", + "expectedQty": "26195988946001451178158279", + "swapFee": "15727029585352081956068", "reserves": [ - "4781949460926807007348167", - "34279299277770653620171269", - "19523738022243671053072889" + "473003544575040724372838040", + "284509317394007510724430701", + "548813444487860131118740248" ], - "mAssetSupply": "58373879332095153476053803" + "mAssetSupply": "1305902543640075630887432900" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8084511784990004641529856", - "expectedQty": "7975812647573620840826356", + "type": "redeemBassets", + "inputQtys": [ + "1396402402041314672640", + "833342681792070942720", + "399650774345956327424" + ], + "expectedQty": "2630834167730312203676", + "swapFee": "1579448169539911268", "reserves": [ - "4781949460926807007348167", - "42363811062760658261701125", - "19523738022243671053072889" - ] + "473002148172638683058165400", + "284508484051325718653487981", + "548813044837085785162412824" + ], + "mAssetSupply": "1305899912805907900575229224" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "869073618693700452352", - "expectedQty": "870069929399063430791", - "swapFee": "521444171216220271", + "inputIndex": 1, + "inputQty": "129821605182573199360", + "expectedQty": "129154222680029906153", + "swapFee": "77892963109543919", "reserves": [ - "4781949460926807007348167", - "42363811062760658261701125", - "19522867952314271989642098" + "473002148172638683058165400", + "284508354897103038623581828", + "548813044837085785162412824" ], - "mAssetSupply": "66348823427494251832648078" + "mAssetSupply": "1305899783062195681111573783" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "300731222723385728", - "outputIndex": 1, - "expectedQty": "328327555526110143", - "swapFee": "194100559138386", + "type": "mintMulti", + "inputQtys": [ + "3907490060017558232236032", + "3660795207511758648377344", + "3060385002741788240248832" + ], + "expectedQty": "10634365894461749528940899", "reserves": [ - "4781949761658029730733895", - "42363810734433102735590982", - "19522867952314271989642098" + "476909638232656241290401432", + "288169150104614797271959172", + "551873429839827573402661656" ], - "mAssetSupply": "66348823427688352391786464", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1316534148956657430640514682" }, { "type": "redeemMasset", - "inputQty": "2384450773717137699635", + "inputQty": "1018777151581440914227", "expectedQtys": [ - "171802641298418572098", - "1522018202282065206335", - "701404332354359810569" + "368937550000118954588", + "222927807915988395631", + "426929579091334476371" ], - "redemptionFee": "715335232115141309", + "redemptionFee": "305633145474432274", "reserves": [ - "4781777959016731312161797", - "42362288716230820670384647", - "19522166547981917629831529" + "476909269295106241171446844", + "288168927176806881283563541", + "551873002910248482068185285" ], - "mAssetSupply": "66346439692249867369228138" + "mAssetSupply": "1316533130485138994674032729" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "935107020885926477824", - "61016794760576715718656", - "56419454726115212394496" + "347832601163178191093760", + "312360231693594759528448", + "1123956372969343219138560" ], - "expectedQty": "117411796739956694707869", - "swapFee": "70489371666974201345", + "expectedQty": "1782715651971137778403383", "reserves": [ - "4780842851995845385683973", - "42301271921470243954665991", - "19465747093255802417437033" + "477257101896269419362540604", + "288481287408500476043091989", + "552996959283217825287323845" ], - "mAssetSupply": "66229027895509910674520269" + "mAssetSupply": "1318315846137110132452436112" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "538407362024121594544128", - "expectedQty": "530111368913345173348774", + "inputIndex": 2, + "inputQty": "7360047647161282916777984", + "expectedQty": "7343554587344446936110012", "reserves": [ - "4780842851995845385683973", - "42839679283494365549210119", - "19465747093255802417437033" + "477257101896269419362540604", + "288481287408500476043091989", + "560357006930379108204101829" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "173774206063059310477312", - "expectedQty": "173489808841523569082655", + "inputIndex": 1, + "inputQty": "1104521397754740571373568", + "expectedQty": "1109558817255337120142449", "reserves": [ - "4780842851995845385683973", - "42839679283494365549210119", - "19639521299318861727914345" + "477257101896269419362540604", + "289585808806255216614465557", + "560357006930379108204101829" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "697996801194623963758592", - "expectedQty": "640548695984075990581267", - "swapFee": "418798080716774378255", + "type": "redeemMasset", + "inputQty": "430417904771775279923", + "expectedQtys": [ + "154780811201692388565", + "93916520511563582719", + "181731213114744862066" + ], + "redemptionFee": "129125371431532583", "reserves": [ - "4140294156011769395102706", - "42839679283494365549210119", - "19639521299318861727914345" + "477256947115458217670152039", + "289585714889734705050882838", + "560356825199165993459239763" ], - "mAssetSupply": "66235051070150872227571361" + "mAssetSupply": "1326768529252930516164941233" }, { "type": "redeemMasset", - "inputQty": "1907700025426420799897", + "inputQty": "221619038328738335948", "expectedQtys": [ - "119212857955731309100", - "1233497043652514217533", - "565487227417085874197" + "79695510223835978545", + "48356931085360393661", + "93572075506850063022" ], - "redemptionFee": "572310007627926239", + "redemptionFee": "66485711498621500", "reserves": [ - "4140174943153813663793606", - "42838445786450713034992586", - "19638955812091444642040148" + "477256867419947993834173494", + "289585666532803619690489177", + "560356731627090486609176741" ], - "mAssetSupply": "66233143942435453434697703" + "mAssetSupply": "1326768307700377898925226785" }, { "type": "redeemMasset", - "inputQty": "952649908064860294768230", + "inputQty": "2515164739481225501081", "expectedQtys": [ - "59531434008494726044004", - "615972547870140709659933", - "282387874419786486425995" + "904468039937184656638", + "548805052547014439725", + "1061953822603449654454" ], - "redemptionFee": "285794972419458088430", + "redemptionFee": "754549421844367650", "reserves": [ - "4080643509145318937749602", - "42222473238580572325332653", - "19356567937671658155614153" + "477255962951908056649516856", + "289585117727751072676049452", + "560355669673267883159522287" ], - "mAssetSupply": "65280779829343012598017903" + "mAssetSupply": "1326765793290187839544093354" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "474223621645648510582784", - "outputIndex": 1, - "expectedQty": "525902311779692915649343", - "swapFee": "310724146872140468458", + "type": "redeemMasset", + "inputQty": "1550806249875253388902", + "expectedQtys": [ + "557679052639834606293", + "338383522992840454693", + "654782010625685721341" + ], + "redemptionFee": "465241874962576016", "reserves": [ - "4554867130790967448332386", - "41696570926800879409683310", - "19356567937671658155614153" + "477255405272855416814910563", + "289584779344228079835594759", + "560355014891257257473800946" ], - "mAssetSupply": "65281090553489884738486361", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1326764242949179839253280468" }, { "type": "redeemBassets", "inputQtys": [ - "91520577741928624", - "169003506035358816", - "11534887975568424" + "3709151604178061484883968", + "2365162252988018625347584", + "1160755415731821512491008" ], - "expectedQty": "276783300650573957", - "swapFee": "166169682199664", + "expectedQty": "7239529013573114033444256", + "swapFee": "4346325203265827916816", "reserves": [ - "4554867039270389706403762", - "41696570757797373374324494", - "19356567926136770180045729" + "473546253668677355330026595", + "287219617091240061210247175", + "559194259475525435961309938" ], - "mAssetSupply": "65281090276706584087912404" + "mAssetSupply": "1319524713935606725219836212" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3729761950901738961633280", - "expectedQty": "3727859356887209788755851", - "swapFee": "2237857170541043376979", + "type": "redeemBassets", + "inputQtys": [ + "7282667466684717810581504", + "7096422237422742396731392", + "3014761876117476494802944" + ], + "expectedQty": "17412742682891674800305860", + "swapFee": "10453917960511311667183", "reserves": [ - "4554867039270389706403762", - "41696570757797373374324494", - "15628708569249560391289878" + "466263586201992637519445091", + "280123194853817318813515783", + "556179497599407959466506994" ], - "mAssetSupply": "61553566182975386169656103" + "mAssetSupply": "1302111971252715050419530352" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "704242752283145255518208", - "expectedQty": "751524303932219710616082", + "type": "redeemBassets", + "inputQtys": [ + "9333575094464925401088", + "15892308903478060646400", + "16408070820114873712640" + ], + "expectedQty": "41661221437454770322817", + "swapFee": "25011739906416712221", "reserves": [ - "5259109791553534961921970", - "41696570757797373374324494", - "15628708569249560391289878" - ] + "466254252626898172594044003", + "280107302544913840752869383", + "556163089528587844592794354" + ], + "mAssetSupply": "1302070310031277595649207535" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1166080842943238556876800", - "expectedQty": "1182805172237041891645567", - "swapFee": "699648505765943134126", + "type": "redeemBassets", + "inputQtys": [ + "566812880314339508092928", + "1094681159579758307049472", + "1511489291335822452195328" + ], + "expectedQty": "3174035261492768776480753", + "swapFee": "1905564495593017076134", "reserves": [ - "5259109791553534961921970", - "40513765585560331482678927", - "15628708569249560391289878" + "465687439746583833085951075", + "279012621385334082445819911", + "554651600237252022140599026" ], - "mAssetSupply": "61139709292470133266529511" + "mAssetSupply": "1298896274769784826872726782" }, { "type": "redeemBassets", "inputQtys": [ - "1063927181759289990578176", - "6229887585424657640062976", - "2726824717950944857292800" + "220037936691771344945152", + "813267413516314600275968", + "55404410909287256162304" ], - "expectedQty": "9996020981010517677922269", - "swapFee": "6001213316596268367774", + "expectedQty": "1092257889854574148575889", + "swapFee": "655748182822437951916", "reserves": [ - "4195182609794244971343794", - "34283878000135673842615951", - "12901883851298615533997078" + "465467401809892061741005923", + "278199353971817767845543943", + "554596195826342734884436722" ], - "mAssetSupply": "51143688311459615588607242" + "mAssetSupply": "1297804016879930252724150893" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "128039264270180690165760", + "expectedQty": "128269783293090556329653", + "swapFee": "76823558562108414099", + "reserves": [ + "465467401809892061741005923", + "278199353971817767845543943", + "554467926043049644328107069" + ], + "mAssetSupply": "1297676054439218634142399232" + }, + { + "type": "redeemMasset", + "inputQty": "757941281662635211751424", + "expectedQtys": [ + "271786721197263162049266", + "162440785243385195315171", + "323754185668699748728053" + ], + "redemptionFee": "227382384498790563525", + "reserves": [ + "465195615088694798578956657", + "278036913186574382650228772", + "554144171857380944579379016" + ], + "mAssetSupply": "1296918340539940497721211333" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1062180967968016240214016", - "outputIndex": 2, - "expectedQty": "1040654736966583835709508", - "swapFee": "627279001674910011019", + "inputIndex": 2, + "inputQty": "154851786235289127616512", + "outputIndex": 1, + "expectedQty": "153647928796946038022142", + "swapFee": "92688438396131308553", "reserves": [ - "4195182609794244971343794", - "35346058968103690082829967", - "11861229114332031698287570" + "465195615088694798578956657", + "277883265257777436612206630", + "554299023643616233706995528" ], - "mAssetSupply": "51144315590461290498618261", + "mAssetSupply": "1296918433228378893852519886", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "688477689266868370538496", + "expectedQty": "688756414659533212590364", + "swapFee": "413086613560121022323", + "reserves": [ + "464506858674035265366366293", + "277883265257777436612206630", + "554299023643616233706995528" + ], + "mAssetSupply": "1296230368625725585603003713" + }, { "type": "mintMulti", "inputQtys": [ - "2835647819848683618304", - "248405966519648307380224", - "179023623822384551690240" + "237013533686458256195584", + "43143345150828879020032", + "424011325734912486539264" ], - "expectedQty": "427182145850272059353525", + "expectedQty": "703119775048091820217586", "reserves": [ - "4198018257614093654962098", - "35594464934623338390210191", - "12040252738154416249977810" + "464743872207721723622561877", + "277926408602928265491226662", + "554723034969351146193534792" ], - "mAssetSupply": "51571497736311562557971786" + "mAssetSupply": "1296933488400773677423221299" }, { - "type": "redeemMasset", - "inputQty": "503765973625459943302758", - "expectedQtys": [ - "40995208633030787486668", - "347593180074759155650879", - "117577543189530935720299" + "type": "redeemBassets", + "inputQtys": [ + "1873286246179793797120", + "300500450799047475200", + "516195160261944279040" ], - "redemptionFee": "151129792087637982990", + "expectedQty": "2688314113884424290442", + "swapFee": "1613956842436116244", "reserves": [ - "4157023048981062867475430", - "35246871754548579234559312", - "11922675194964885314257511" + "464741998921475543828764757", + "277926108102477466443751462", + "554722518774190884249255752" ], - "mAssetSupply": "51067882892478190252652018" + "mAssetSupply": "1296930800086659792998930857" }, { "type": "redeemMasset", - "inputQty": "204893001491091", + "inputQty": "689010324143743828597145", "expectedQtys": [ - "16673677428280", - "141373998427890", - "47821442878875" + "246825791852665853895113", + "147607343145490920752741", + "294614700786014875953848" ], - "redemptionFee": "61467900447", + "redemptionFee": "206703097243123148579", "reserves": [ - "4157023048964389190047150", - "35246871754407205236131422", - "11922675194917063871378636" + "464495173129622877974869644", + "277778500759331975522998721", + "554427904073404869373301904" ], - "mAssetSupply": "51067882892273358719061374" + "mAssetSupply": "1296241996465613292293482291" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1831367294421815263232", - "outputIndex": 1, - "expectedQty": "1984005576340332674737", - "swapFee": "1171172336776998013", + "type": "redeemMasset", + "inputQty": "201991196017761600510361", + "expectedQtys": [ + "72359782077735283128887", + "43272767821025657709511", + "86369643082107156229430" + ], + "redemptionFee": "60597358805328480153", "reserves": [ - "4158854416258811005310382", - "35244887748830864903456685", - "11922675194917063871378636" + "464422813347545142691740757", + "277735227991510949865289210", + "554341534430322762217072474" ], - "mAssetSupply": "51067884063445695496059387", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1296040065866954336021452083" }, { "type": "redeemMasset", - "inputQty": "23817284760445603597516", + "inputQty": "21739175773137558044672", "expectedQtys": [ - "1939044586227149372940", - "16432748526704161121585", - "5558886288413408762229" + "7787676158695028208077", + "4657204494045018128911", + "9295478661654041600769" ], - "redemptionFee": "7145185428133681079", + "redemptionFee": "6521752731941267413", "reserves": [ - "4156915371672583855937442", - "35228455000304160742335100", - "11917116308628650462616407" + "464415025671386447663532680", + "277730570787016904847160299", + "554332238951661108175471705" ], - "mAssetSupply": "51044073923870678026142950" + "mAssetSupply": "1296018333212933930404674824" }, { - "type": "redeemBassets", - "inputQtys": [ - "571013192142529163689984", - "974878171272373029830656", - "33459602601265067982848" - ], - "expectedQty": "1604693138548338003217244", - "swapFee": "963393919480691216660", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1436509966163281497292800", + "expectedQty": "1439098289715340038088642", + "swapFee": "861905979697968898375", "reserves": [ - "3585902179530054692247458", - "34253576829031787712504444", - "11883656706027385394633559" + "464415025671386447663532680", + "277730570787016904847160299", + "552893140661945768137383063" ], - "mAssetSupply": "49439380785322340022925706" + "mAssetSupply": "1294582685152750346876280399" }, { - "type": "mintMulti", - "inputQtys": [ - "139693184274616211734528", - "2117803726370445849526272", - "609824470216558006763520" - ], - "expectedQty": "2842265508670991656237673", + "type": "redeem", + "inputIndex": 2, + "inputQty": "202109690370147615768576", + "expectedQty": "202472171588219979389614", + "swapFee": "121265814222088569461", "reserves": [ - "3725595363804670903981986", - "36371380555402233562030716", - "12493481176243943401397079" + "464415025671386447663532680", + "277730570787016904847160299", + "552690668490357548157993449" ], - "mAssetSupply": "52281646293993331679163379" + "mAssetSupply": "1294380696728194421349081284" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "297426450742863298822144", - "expectedQty": "291781605252183730285625", + "type": "redeem", + "inputIndex": 0, + "inputQty": "24480293707465131374411776", + "expectedQty": "24486441964422641282163669", + "swapFee": "14688176224479078824647", "reserves": [ - "3725595363804670903981986", - "36668807006145096860852860", - "12493481176243943401397079" - ] + "439928583706963806381369011", + "277730570787016904847160299", + "552690668490357548157993449" + ], + "mAssetSupply": "1269915091196953769053494155" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "580612446031690112", - "outputIndex": 0, - "expectedQty": "522917238354660559", - "swapFee": "341719016305837", + "type": "redeemMasset", + "inputQty": "1968597521765658951417856", + "expectedQtys": [ + "681764090327860643577602", + "430403335817278567368115", + "856513226899153208148185" + ], + "redemptionFee": "590579256529697685425", "reserves": [ - "3725594840887432549321427", - "36668807586757542892542972", - "12493481176243943401397079" + "439246819616635945737791409", + "277300167451199626279792184", + "551834155263458394949845264" ], - "mAssetSupply": "52573427899587234425754841", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1267947084254444639799761724" }, { "type": "mintMulti", "inputQtys": [ - "20533352830972440576", - "50105299458388615168", - "8590336789826117632" + "32869316704780582649856", + "124281059737637429968896", + "168133940545073212030976" ], - "expectedQty": "80128015247587278182", + "expectedQty": "325401383100360541864612", "reserves": [ - "3725615374240263521762003", - "36668857692057001281158140", - "12493489766580733227514711" + "439279688933340726320441265", + "277424448510937263709761080", + "552002289204003468161876240" ], - "mAssetSupply": "52573508027602482013033023" + "mAssetSupply": "1268272485637545000341626336" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1395917361191110358073344", - "outputIndex": 2, - "expectedQty": "1475648625335194949264531", - "swapFee": "891627400141069378573", + "type": "mint", + "inputIndex": 1, + "inputQty": "247232694078722805858304", + "expectedQty": "248348238451239041319619", "reserves": [ - "5121532735431373879835347", - "36668857692057001281158140", - "11017841141245538278250180" - ], - "mAssetSupply": "52574399655002623082411596", - "hardLimitError": false, - "insufficientLiquidityError": false + "439279688933340726320441265", + "277671681205015986515619384", + "552002289204003468161876240" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "49208616774706249728", - "13965914956217151488", - "106014742101547778048" - ], - "expectedQty": "172141945285810714435", + "type": "mint", + "inputIndex": 1, + "inputQty": "9796450694707360403816448", + "expectedQty": "9838661295883151536208180", "reserves": [ - "5121581944048148586085075", - "36668871657971957498309628", - "11017947155987639826028228" - ], - "mAssetSupply": "52574571796947908893126031" + "439279688933340726320441265", + "287468131899723346919435832", + "552002289204003468161876240" + ] }, { "type": "redeemMasset", - "inputQty": "1543383456728", + "inputQty": "4840066368696050887163904", "expectedQtys": [ - "150304476196", - "1076131478032", - "323346730393" + "1662681752692021328491900", + "1088072199629205446477734", + "2089338880958355307973584" ], - "redemptionFee": "463015037", + "redemptionFee": "1452019910608815266149", "reserves": [ - "5121581944047998281608879", - "36668871657970881366831596", - "11017947155987316479297835" + "437617007180648704991949365", + "286380059700094141472958098", + "549912950323045112853902656" ], - "mAssetSupply": "52574571796946365972684340" + "mAssetSupply": "1273520880823093948847256380" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "2143072407038723358720", - "outputIndex": 2, - "expectedQty": "2091842371811429126331", - "swapFee": "1266088442839650317", + "inputIndex": 2, + "inputQty": "40445581203080158258397184", + "outputIndex": 0, + "expectedQty": "40318964717028022166013182", + "swapFee": "24204430851025411388173", "reserves": [ - "5121581944047998281608879", - "36671014730377920090190316", - "11015855313615505050171504" + "397298042463620682825936183", + "286380059700094141472958098", + "590358531526125271112299840" ], - "mAssetSupply": "52574573063034808812334657", + "mAssetSupply": "1273545085253944974258644553", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "8846867134672778821632", - "5865039137383864336384", - "901395202191719399424" - ], - "expectedQty": "15944221870048195184788", + "type": "mint", + "inputIndex": 1, + "inputQty": "3417314906894933262598144", + "expectedQty": "3431274165530042545459473", "reserves": [ - "5130428811182671060430511", - "36676879769515303954526700", - "11016756708817696769570928" - ], - "mAssetSupply": "52590517284904857007519445" + "397298042463620682825936183", + "289797374606989074735556242", + "590358531526125271112299840" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "38933978582309677301760", - "expectedQty": "39516559834665632812647", - "swapFee": "23360387149385806381", + "inputQty": "641206800268267749376", + "expectedQty": "643783992972992875768", "reserves": [ - "5130428811182671060430511", - "36637363209680638321714053", - "11016756708817696769570928" - ], - "mAssetSupply": "52551606666709696716024066" + "397298042463620682825936183", + "289798015813789343003305618", + "590358531526125271112299840" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "778545838939240495316992", - "222230211349749082095616", - "35888010411840559382528" + "type": "redeemMasset", + "inputQty": "42864869867801129097625", + "expectedQtys": [ + "13332283829355581679778", + "9724863923454394335056", + "19810889211991458386140" ], - "expectedQty": "1075830676005648259093070", - "swapFee": "645885937165688368476", + "redemptionFee": "12859460960340338729", "reserves": [ - "4351882972243430565113519", - "36415132998330889239618437", - "10980868698405856210188400" + "397284710179791327244256405", + "289788290949865888608970562", + "590338720636913279653913700" ], - "mAssetSupply": "51475775990704048456930996" + "mAssetSupply": "1276934151193061149008220898" }, { "type": "redeemBassets", "inputQtys": [ - "24896033676884099072", - "20035040011647258624", - "144286482738549456896" + "9640116653257411002368", + "5952172731347097354240", + "6771223391356664676352" ], - "expectedQty": "191626186737756425382", - "swapFee": "115044738885985446", + "expectedQty": "22370113996468151183214", + "swapFee": "13430126473765149799", "reserves": [ - "4351858076209753681014447", - "36415112963290877592359813", - "10980724411923117660731504" + "397275070063138069833254037", + "289782338777134541511616322", + "590331949413521922989237348" ], - "mAssetSupply": "51475584364517310700505614" + "mAssetSupply": "1276911781079064680857037684" }, { "type": "redeemBassets", "inputQtys": [ - "29927292626690641920", - "34442701626256445440", - "38801694298642235392" + "3169084388955729920", + "5877127370038373376", + "4710340310925539328" ], - "expectedQty": "104796497002680308540", - "swapFee": "62915647590162282", + "expectedQty": "13767069694127512395", + "swapFee": "8265200937038730", "reserves": [ - "4351828148917126990372527", - "36415078520589251335914373", - "10980685610228819018496112" + "397275066894053680877524117", + "289782332900007171473242946", + "590331944703181612063698020" ], - "mAssetSupply": "51475479568020308020197074" + "mAssetSupply": "1276911767311994986729525289" }, { - "type": "redeemMasset", - "inputQty": "891085968715275147673", - "expectedQtys": [ - "75311384729053162581", - "630188025481932410070", - "190028330688218246576" - ], - "redemptionFee": "267325790614582544", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2985960056085879581573120", + "expectedQty": "2972053598456963697836343", + "swapFee": "1791576033651527748943", "reserves": [ - "4351752837532397937209946", - "36414448332563769403504303", - "10980495581898130800249536" + "397275066894053680877524117", + "286810279301550207775406603", + "590331944703181612063698020" ], - "mAssetSupply": "51474588749377383359631945" + "mAssetSupply": "1273927598831942758675701112" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1293539117489365504", - "3149175310602912768", - "195355235024485920" - ], - "expectedQty": "4667156832292946785", - "reserves": [ - "4351754131071515426575450", - "36414451481739080006417071", - "10980495777253365824735456" + "9641352908226168881152", + "9859787930331303116800", + "9224961359002122321920" ], - "mAssetSupply": "51474593416534215652578730" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "274019823761711614132224", - "expectedQty": "271554381147589926968210", - "swapFee": "164411894257026968479", + "expectedQty": "28741595982906473352395", + "swapFee": "17255310776209609777", "reserves": [ - "4351754131071515426575450", - "36414451481739080006417071", - "10708941396105775897767246" + "397265425541145454708642965", + "286800419513619876472289803", + "590322719741822609941376100" ], - "mAssetSupply": "51200738004666761065414985" + "mAssetSupply": "1273898857235959852202348717" }, { - "type": "mintMulti", - "inputQtys": [ - "31214709472931570778112", - "22415242082286204616704", - "22981276282437091983360" + "type": "redeemMasset", + "inputQty": "5666940542115559833", + "expectedQtys": [ + "1766705535005627093", + "1275449248840229507", + "2625263487218411150" ], - "expectedQty": "78403352762127210213429", + "redemptionFee": "1700082162634667", "reserves": [ - "4382968840544446997353562", - "36436866723821366211033775", - "10731922672388212989750606" + "397265423774439919703015872", + "286800418238170627632060296", + "590322717116559122722964950" ], - "mAssetSupply": "51279141357428888275628414" + "mAssetSupply": "1273898851570719392249423551" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "1982496788434179840", - "expectedQty": "1863482930309291551", - "swapFee": "1189498073060507", + "inputQty": "3086199122587483576991744", + "outputIndex": 2, + "expectedQty": "3094318873789357937349598", + "swapFee": "1852164617246499469272", "reserves": [ - "4382966977061516688062011", - "36436866723821366211033775", - "10731922672388212989750606" + "400351622897027403280007616", + "286800418238170627632060296", + "587228398242769764785615352" ], - "mAssetSupply": "51279139376121597914509081" + "mAssetSupply": "1273900703735336638748892823", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "1684780782595494903808", - "86862507809587101696", - "389224949389732347904" + "18831825726625092902846464", + "99341918642331888086155264", + "29294544271225498477002752" ], - "expectedQty": "2269329509594329287445", - "swapFee": "1362415154849507276", + "expectedQty": "148004137432859958660250117", + "swapFee": "88855795937278342201470", "reserves": [ - "4381282196278921193158203", - "36436779861313556623932079", - "10731533447438823257402702" + "381519797170402310377161152", + "187458499595838739545905032", + "557933853971544266308612600" ], - "mAssetSupply": "51276870046612003585221636" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "25847067526754070528", - "expectedQty": "27482566382338878530", - "reserves": [ - "4381308043346447947228731", - "36436779861313556623932079", - "10731533447438823257402702" - ] + "mAssetSupply": "1125896566302476680088642706" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "1373191855596906389438464", - "outputIndex": 1, - "expectedQty": "1404678333901721499519168", - "swapFee": "829675349657722276540", + "inputIndex": 1, + "inputQty": "4135284858248069382144", + "outputIndex": 0, + "expectedQty": "4178763621556290338082", + "swapFee": "2506081214520906233", "reserves": [ - "4381308043346447947228731", - "35032101527411835124412911", - "12104725303035729646841166" + "381515618406780754086823070", + "187462634880696987615287176", + "557933853971544266308612600" ], - "mAssetSupply": "51277727204528043646376706", + "mAssetSupply": "1125896568808557894609548939", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "1160035217832603", + "inputQty": "24887284046097648844", "expectedQtys": [ - "99086819287054", - "792279264308727", - "273758137240043" - ], - "redemptionFee": "348010565349", - "reserves": [ - "4381308043247361127941677", - "35032101526619555860104184", - "12104725302761971509601123" + "8430649279878159713", + "4142508593385861529", + "12329101135748536857" ], - "mAssetSupply": "51277727203368356439109452" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "370540260799411193380864", - "expectedQty": "368550471244408418294760", - "swapFee": "222324156479646716028", - "reserves": [ - "4381308043247361127941677", - "35032101526619555860104184", - "11736174831517563091306363" - ], - "mAssetSupply": "50907409266725424892444616" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "286742053956259479552", - "expectedQty": "282161216744933208959", - "reserves": [ - "4381308043247361127941677", - "35032388268673512119583736", - "11736174831517563091306363" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "56812983560577974272", - "expectedQty": "55905363625180933213", + "redemptionFee": "7466185213829294", "reserves": [ - "4381308043247361127941677", - "35032445081657072697558008", - "11736174831517563091306363" - ] + "381515609976131474208663357", + "187462630738188394229425647", + "557933841642443130560075743" + ], + "mAssetSupply": "1125896543928740033725729389" }, { "type": "redeemMasset", - "inputQty": "58667081837105779", + "inputQty": "29680760546895200465715", "expectedQtys": [ - "5047590188525011", - "40359961985952987", - "13520939487850953" + "10054455201597384853236", + "4940386640663609679772", + "14703777957080265853107" ], - "redemptionFee": "17600124551131", + "redemptionFee": "8904228164068560139", "reserves": [ - "4381308038199770939416666", - "35032445041297110711605021", - "11736174817996623603455410" + "381505555520929876823810121", + "187457690351547730619745875", + "557919137864486050294222636" ], - "mAssetSupply": "50907747274656313294032140" + "mAssetSupply": "1125866872072421302593823813" }, { "type": "mintMulti", "inputQtys": [ - "832706195531327770460160", - "989472418179842014445568", - "416421470300467055558656" + "1461776066865402466009088", + "19287811687789329041588224", + "14368506090101835328126976" ], - "expectedQty": "2268092799942809559608893", + "expectedQty": "35232220562152233488643863", "reserves": [ - "5214014233731098709876826", - "36021917459476952726050589", - "12152596288297090659014066" + "382967331587795279289819209", + "206745502039337059661334099", + "572287643954587885622349612" ], - "mAssetSupply": "53175840074599122853641033" + "mAssetSupply": "1161099092634573536082467676" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "315264354099919060992", - "outputIndex": 0, - "expectedQty": "303443797557473498377", - "swapFee": "190141700381411375", + "type": "redeemBassets", + "inputQtys": [ + "2304307287397962752", + "7660920581684411392", + "14163293402902446080" + ], + "expectedQty": "24132352223855452205", + "swapFee": "14488104196831370", "reserves": [ - "5213710789933541236378449", - "36021917459476952726050589", - "12152911552651190578075058" + "382967329283487991891856457", + "206745494378416477976922707", + "572287629791294482719903532" ], - "mAssetSupply": "53175840264740823235052408", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1161099068502221312227015471" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "62387477491520188186624", - "expectedQty": "62024057918620744627758", - "swapFee": "37432486494912112911", + "type": "redeemBassets", + "inputQtys": [ + "14665447076786482362449920", + "24321506262890274822815744", + "7855934013616027087142912" + ], + "expectedQty": "47026035359024889919262931", + "swapFee": "28232560751866053583707", "reserves": [ - "5213710789933541236378449", - "36021917459476952726050589", - "12090887494732569833447300" + "368301882206701509529406537", + "182423988115526203154106963", + "564431695777678455632760620" ], - "mAssetSupply": "53113490219735797958978695" + "mAssetSupply": "1114073033143196422307752540" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "5565098447623536246784", + "inputIndex": 2, + "inputQty": "3093907586644796447391744", "outputIndex": 0, - "expectedQty": "5253777218598085487633", - "swapFee": "3292223831642007589", + "expectedQty": "3079771335476523708457632", + "swapFee": "1847461617126651789284", "reserves": [ - "5208457012714943150890816", - "36027482557924576262297373", - "12090887494732569833447300" + "365222110871224985820948905", + "182423988115526203154106963", + "567525603364323252080152364" ], - "mAssetSupply": "53113493511959629600986284", + "mAssetSupply": "1114074880604813548959541824", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "632394491925224620032", - "expectedQty": "605481613890753378678", - "swapFee": "379436695155134772", - "reserves": [ - "5207851531101052397512138", - "36027482557924576262297373", - "12090887494732569833447300" + "type": "redeemBassets", + "inputQtys": [ + "214485781898113696", + "159054661817363520", + "135762849005406192" ], - "mAssetSupply": "53112861496904399531501024" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "292645618856994275328", - "outputIndex": 0, - "expectedQty": "276254866795781875973", - "swapFee": "173121780255775992", + "expectedQty": "510161656573802323", + "swapFee": "306280762401722", "reserves": [ - "5207575276234256615636165", - "36027775203543433256572701", - "12090887494732569833447300" + "365222110656739203922835209", + "182423987956471541336743443", + "567525603228560403074746172" ], - "mAssetSupply": "53112861670026179787277016", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1114074880094651892385739501" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10874833350324557709312", - "expectedQty": "11023068799579941681922", - "swapFee": "6524900010194734625", + "type": "redeemMasset", + "inputQty": "43763336966109915827404", + "expectedQtys": [ + "14342432075390102382415", + "7163869820155962101823", + "22286978739358602073417" + ], + "redemptionFee": "13129001089832974748", "reserves": [ - "5207575276234256615636165", - "36016752134743853314890779", - "12090887494732569833447300" + "365207768224663813820452794", + "182416824086651385374641620", + "567503316249821044472672755" ], - "mAssetSupply": "53101993361575865424302329" + "mAssetSupply": "1114031129886686872302886845" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1607862416109306051035136", - "expectedQty": "1661430768765590879167698", + "type": "redeemMasset", + "inputQty": "8448304699790011976908", + "expectedQtys": [ + "2768738508280801311620", + "1382951101676176378848", + "4302395573117559622860" + ], + "redemptionFee": "2534491409937003593", "reserves": [ - "6815437692343562666671301", - "36016752134743853314890779", - "12090887494732569833447300" - ] + "365204999486155533019141174", + "182415441135549709198262772", + "567499013854247926913049895" + ], + "mAssetSupply": "1114022684116478492227913530" }, { "type": "mintMulti", "inputQtys": [ - "402108213553246505009152", - "1053152136803687484882944", - "694634594558522513424384" + "51006111550212235264", + "437809281862642237440", + "688165431003415707648" ], - "expectedQty": "2152054803763872346947801", + "expectedQty": "1178249247475121095469", "reserves": [ - "7217545905896809171680453", - "37069904271547540799773723", - "12785522089291092346871684" + "365205050492267083231376438", + "182415878944831571840500212", + "567499702019678930328757543" ], - "mAssetSupply": "56915478934105328650417828" + "mAssetSupply": "1114023862365725967349008999" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "7498006702799188205240320", - "expectedQty": "7405989922979669592551068", + "inputIndex": 2, + "inputQty": "2352377417273137512316928", + "expectedQty": "2340986778627757312382058", "reserves": [ - "7217545905896809171680453", - "44567910974346729005014043", - "12785522089291092346871684" + "365205050492267083231376438", + "182415878944831571840500212", + "569852079436952067841074471" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "4863582026199768064", - "expectedQty": "4815326673203984374", - "swapFee": "2918149215719860", + "type": "redeemMasset", + "inputQty": "67103574520068520384921", + "expectedQtys": [ + "21945524682450001341062", + "10961546584469749806233", + "34242962570677506134547" + ], + "redemptionFee": "20131072356020556115", "reserves": [ - "7217545905896809171680453", - "44567910974346729005014043", - "12785517273964419142887310" + "365183104967584633230035376", + "182404917398247102090693979", + "569817836474381390334939924" ], - "mAssetSupply": "64321463996421121258920692" + "mAssetSupply": "1116297765700906012161562251" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1131455048513433728", - "expectedQty": "1092908159998119843", - "swapFee": "678873029108060", + "type": "redeemMasset", + "inputQty": "583919631403835090534", + "expectedQtys": [ + "190964829745509135692", + "95384817977249656511", + "297974261810232302074" + ], + "redemptionFee": "175175889421150527", "reserves": [ - "7217544812988649173560610", - "44567910974346729005014043", - "12785517273964419142887310" + "365182914002754887720899684", + "182404822013429124841037468", + "569817538500119580102637850" ], - "mAssetSupply": "64321462865644945774595024" + "mAssetSupply": "1116297181956450497747622244" }, { "type": "mintMulti", "inputQtys": [ - "1102703616877470848", - "1552103532722369792", - "1482746985273827072" + "15477752420581816494194688", + "29945718842406362006159360", + "3233248806669654851321856" ], - "expectedQty": "4168131153979264297", + "expectedQty": "48907396445771914645069724", "reserves": [ - "7217545915692266051031458", - "44567912526450261727383835", - "12785518756711404416714382" + "380660666423336704215094372", + "212350540855835486847196828", + "573050787306789234953959706" ], - "mAssetSupply": "64321467033776099753859321" + "mAssetSupply": "1165204578402222412392691968" }, { "type": "redeemMasset", - "inputQty": "917345864595003287168614", + "inputQty": "1350461426841257779", "expectedQtys": [ - "102904985034617478596667", - "635432101870960799066045", - "182290993599174668563391" + "441049868823109865", + "246038496882221992", + "663961362085044031" ], - "redemptionFee": "275203759378500986150", + "redemptionFee": "405138428052377", "reserves": [ - "7114640930657648572434791", - "43932480424579300928317790", - "12603227763112229748150991" + "380660665982286835391984507", + "212350540609796989964974836", + "573050786642827872868915675" ], - "mAssetSupply": "63404396372940474967676857" + "mAssetSupply": "1165204577052166123979486566" }, { - "type": "redeemMasset", - "inputQty": "1781649760945372564081868", - "expectedQtys": [ - "199859888252677707073683", - "1234122805900726018633277", - "354041717201014167261242" - ], - "redemptionFee": "534494928283611769224", + "type": "redeem", + "inputIndex": 2, + "inputQty": "35438279374283978661953536", + "expectedQty": "35554801830017770818944783", + "swapFee": "21262967624570387197172", "reserves": [ - "6914781042404970865361108", - "42698357618678574909684513", - "12249186045911215580889749" + "380660665982286835391984507", + "212350540609796989964974836", + "537495984812810102049970892" ], - "mAssetSupply": "61623281106923386015364213" + "mAssetSupply": "1129787560645506715704730202" }, { "type": "redeemBassets", "inputQtys": [ - "3058533031393372", - "1937134989713067", - "1844122965844661" + "165823692532250607616", + "84090900340637040640", + "152151560840044904448" ], - "expectedQty": "6936181635386359", - "swapFee": "4164207505735", + "expectedQty": "401992421195243094729", + "swapFee": "241340256871268618", "reserves": [ - "6914781039346437833967736", - "42698357616741439919971446", - "12249186044067092615045088" + "380660500158594303141376891", + "212350456518896649327934196", + "537495832661249262005066444" ], - "mAssetSupply": "61623281099987204379977854" + "mAssetSupply": "1129787158653085520461635473" }, { - "type": "mintMulti", - "inputQtys": [ - "111101769029080", - "230144698161970", - "229223679713001" + "type": "redeemMasset", + "inputQty": "1731656622376193957140889", + "expectedQtys": [ + "583274043209600036744521", + "325377887381480712432350", + "823587862134424532320483" ], - "expectedQty": "573276421459246", + "redemptionFee": "519496986712858187142", "reserves": [ - "6914781039457539602996816", - "42698357616971584618133416", - "12249186044296316294758089" + "380077226115384703104632370", + "212025078631515168615501846", + "536672244799114837472745961" ], - "mAssetSupply": "61623281100560480801437100" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "8089868682619587133440", - "expectedQty": "7977318116006482419422", - "reserves": [ - "6914781039457539602996816", - "42706447485654204205266856", - "12249186044296316294758089" - ] + "mAssetSupply": "1128056021527696039362681726" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "215748416881003331584", - "246686563428362911744", - "235590733890290450432" + "52266452710091961401344", + "26406526022166746497024", + "44758485600234410868736" ], - "expectedQty": "704291221327557382801", - "swapFee": "422828429854447097", + "expectedQty": "123419230596997804317057", "reserves": [ - "6914565291040658599665232", - "42706200799090775842355112", - "12248950453562426004307657" + "380129492568094795066033714", + "212051485157537335361998870", + "536717003284715071883614697" ], - "mAssetSupply": "61630554127455159726473721" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "4225934000229438671814656", - "expectedQty": "4249735556267187232294729", - "reserves": [ - "6914565291040658599665232", - "42706200799090775842355112", - "16474884453791864676122313" - ] + "mAssetSupply": "1128179440758293037166998783" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "427934348807299475177472", - "outputIndex": 0, - "expectedQty": "413086631357112634127259", - "swapFee": "257399254374887276630", - "reserves": [ - "6501478659683545965537973", - "42706200799090775842355112", - "16902818802599164151299785" + "type": "redeemBassets", + "inputQtys": [ + "369805945076556805177344", + "3606162213955092678180864", + "1435355030725844476624896" ], - "mAssetSupply": "65880547082976721846045080", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "88328008870027241455616", - "expectedQty": "84809815880100740408630", - "swapFee": "52996805322016344873", + "expectedQty": "5432184050929184958181451", + "swapFee": "3261267190872034195426", "reserves": [ - "6416668843803445225129343", - "42706200799090775842355112", - "16902818802599164151299785" + "379759686623018238260856370", + "208445322943582242683818006", + "535281648253989227406989801" ], - "mAssetSupply": "65792272070912016620934337" + "mAssetSupply": "1122747256707363852208817332" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "6654384637295486", - "expectedQty": "6734559990544750", - "swapFee": "3992630782377", + "inputQty": "1368990039457409890516992", + "expectedQty": "1357963352600944694708495", + "swapFee": "821394023674445934310", "reserves": [ - "6416668843803445225129343", - "42706200792356215851810362", - "16902818802599164151299785" + "379759686623018238260856370", + "207087359590981297989109511", + "535281648253989227406989801" ], - "mAssetSupply": "65792272064261624614421228" + "mAssetSupply": "1121379088061930116764234650" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "4693122414916293632", - "outputIndex": 0, - "expectedQty": "4447553783541250662", - "swapFee": "2780680888531061", + "inputIndex": 0, + "inputQty": "219996095939372000477184", + "outputIndex": 2, + "expectedQty": "220508476688403701857464", + "swapFee": "131888917274600186643", "reserves": [ - "6416664396249661683878681", - "42706205485478630768103994", - "16902818802599164151299785" + "379979682718957610261333554", + "207087359590981297989109511", + "535061139777300823705132337" ], - "mAssetSupply": "65792272067042305502952289", + "mAssetSupply": "1121379219950847391364421293", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1430740241048912737075200", - "expectedQty": "1412445223484445033175222", - "reserves": [ - "6416664396249661683878681", - "44136945726527543505179194", - "16902818802599164151299785" - ] - }, - { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "29835336813659583152128", - "expectedQty": "28555908019027451728760", - "swapFee": "17901202088195749891", + "inputQty": "103207390535361153204224", + "outputIndex": 1, + "expectedQty": "102285143020096432284378", + "swapFee": "61873160649709512618", "reserves": [ - "6388108488230634232149921", - "44136945726527543505179194", - "16902818802599164151299785" + "380082890109492971414537778", + "206985074447961201556825133", + "535061139777300823705132337" ], - "mAssetSupply": "67174899854915179148725274" + "mAssetSupply": "1121379281824008041073933911", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "2394864676822371314696192", - "expectedQty": "2471868961738536241201756", + "inputQty": "124770541866229200", + "expectedQty": "124666905266673239", "reserves": [ - "8782973165053005546846113", - "44136945726527543505179194", - "16902818802599164151299785" + "380082890234263513280766978", + "206985074447961201556825133", + "535061139777300823705132337" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1462172638843233552564224", - "expectedQty": "1421730230414110186800466", - "swapFee": "877303583305940131538", - "reserves": [ - "7361242934638895360045647", - "44136945726527543505179194", - "16902818802599164151299785" - ], - "mAssetSupply": "68185473481393787777494344" - }, - { - "type": "redeemMasset", - "inputQty": "1052011282913150212505", - "expectedQtys": [ - "113540128051326465232", - "680770151736639154401", - "260709805166839164013" + "type": "redeemBassets", + "inputQtys": [ + "275225884179630192066560", + "244559576577701480235008", + "137818624659370023059456" ], - "redemptionFee": "315603384873945063", + "expectedQty": "658714580961814054904246", + "swapFee": "395466028194004835844", "reserves": [ - "7361129394510844033580415", - "44136264956375806866024793", - "16902558092793997312135772" + "379807664350083883088700418", + "206740514871383500076590125", + "534923321152641453682072881" ], - "mAssetSupply": "68184421785714259501226902" + "mAssetSupply": "1120720567367713132285702904" }, { - "type": "mintMulti", - "inputQtys": [ - "7106422645620474904576", - "2794122992353078149120", - "29016820743981500465152" - ], - "expectedQty": "39206077161325965797230", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2160666325809956913152", + "expectedQty": "2143096823018749114641", + "swapFee": "1296399795485974147", "reserves": [ - "7368235817156464508484991", - "44139059079368159944173913", - "16931574913537978812600924" + "379807664350083883088700418", + "206738371774560481327475484", + "534923321152641453682072881" ], - "mAssetSupply": "68223627862875585467024132" + "mAssetSupply": "1120718407997787117814763899" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2750935418458977299595264", - "expectedQty": "2755410001318197013170628", + "type": "swap", + "inputIndex": 0, + "inputQty": "727643111566790549831680", + "outputIndex": 1, + "expectedQty": "721091835076893785128200", + "swapFee": "436220386974694516369", "reserves": [ - "7368235817156464508484991", - "44139059079368159944173913", - "19682510331996956112196188" - ] + "380535307461650673638532098", + "206017279939483587542347284", + "534923321152641453682072881" + ], + "mAssetSupply": "1120718844218174092509280268", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1470853362553102592", - "1183196777958624000", - "1019315054884650752" + "2323951325116670733713408", + "1187979768960580596006912", + "7706480987938675822166016" ], - "expectedQty": "3711837583001108110", - "swapFee": "2228439613568806", + "expectedQty": "11196436690859863593578989", "reserves": [ - "7368234346303101955382399", - "44139057896171381985549913", - "19682509312681901227545436" + "382859258786767344372245506", + "207205259708444168138354196", + "542629802140580129504238897" ], - "mAssetSupply": "70979034152356199479086650" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "764689585814436608737280", - "expectedQty": "756370377132379279044027", - "reserves": [ - "7368234346303101955382399", - "44903747481985818594287193", - "19682509312681901227545436" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1130191346032103837925376", - "expectedQty": "1117536961006979653112594", - "reserves": [ - "7368234346303101955382399", - "46033938828017922432212569", - "19682509312681901227545436" - ] + "mAssetSupply": "1131915280909033956102859257" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "54303052268425483124736", - "expectedQty": "54216295700455951023213", - "swapFee": "32581831361055289874", + "inputQty": "243440187990889", + "outputIndex": 1, + "expectedQty": "240499510145329", + "swapFee": "145507026943", "reserves": [ - "7368234346303101955382399", - "46033938828017922432212569", - "19628293016981445276522223" + "382859258786767344372245506", + "207205259708203668628208867", + "542629802140823569692229786" ], - "mAssetSupply": "72798671020058493983408409" + "mAssetSupply": "1131915280909034101609886200", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "892377878044081389568", - "expectedQty": "902127670534443036094", - "swapFee": "535426726826448833", + "inputQty": "150681341879273050341376", + "expectedQty": "149430153621428406880363", + "swapFee": "90408805127563830204", "reserves": [ - "7368234346303101955382399", - "46033036700347387989176475", - "19628293016981445276522223" + "382859258786767344372245506", + "207055829554582240221328504", + "542629802140823569692229786" ], - "mAssetSupply": "72797779177607176728467674" + "mAssetSupply": "1131764689975959956123375028" }, { "type": "redeemBassets", "inputQtys": [ - "1024890324708636772794368", - "1099233276123599748464640", - "852823205850623206490112" + "170214260001119418712064", + "806724505961151166676992", + "123920336071450744061952" ], - "expectedQty": "3007372706048776648002316", - "swapFee": "1805506927785937551332", + "expectedQty": "1106539614218571570273466", + "swapFee": "664322361948311929321", "reserves": [ - "6343344021594465182588031", - "44933803424223788240711835", - "18775469811130822070032111" + "382689044526766224953533442", + "206249105048621089054651512", + "542505881804752118948167834" ], - "mAssetSupply": "69790406471558400080465358" + "mAssetSupply": "1130658150361741384553101562" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2030249757560684150784", - "expectedQty": "2004037802362344431735", + "type": "redeemMasset", + "inputQty": "4510266615302796712345", + "expectedQtys": [ + "1526112744274358846662", + "822493855550825925613", + "2163440923922566249695" + ], + "redemptionFee": "1353079984590839013", "reserves": [ - "6343344021594465182588031", - "44935833673981348924862619", - "18775469811130822070032111" - ] + "382687518414021950594686780", + "206248282554765538228725899", + "542503718363828196381918139" + ], + "mAssetSupply": "1130653641448206066347228230" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "16199455263542791372800", - "expectedQty": "16401443942641345732254", - "swapFee": "9719673158125674823", + "inputQty": "15903671533073800326283264", + "expectedQty": "16018249902100313204651817", "reserves": [ - "6343344021594465182588031", - "44919432230038707579130365", - "18775469811130822070032111" - ], - "mAssetSupply": "69776220773770377759199116" + "382687518414021950594686780", + "222151954087839338555009163", + "542503718363828196381918139" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "98493866864408199692288", - "82367799569401377718272", - "65750610446518807691264" - ], - "expectedQty": "250333503609379438544819", - "swapFee": "150290276331426519038", + "type": "mint", + "inputIndex": 2, + "inputQty": "53331790329671", + "expectedQty": "53143598944030", "reserves": [ - "6244850154730056982895743", - "44837064430469306201412093", - "18709719200684303262340847" - ], - "mAssetSupply": "69525887270160998320654297" + "382687518414021950594686780", + "222151954087839338555009163", + "542503718363881528172247810" + ] }, { "type": "redeemBassets", "inputQtys": [ - "34504343112726102016", - "12282038126200629248", - "952825897628289280" + "4266001878340287488", + "3663927827445861376", + "9370675302871164928" ], - "expectedQty": "49260034292456740966", - "swapFee": "29573764834374669", + "expectedQty": "17289249585590645914", + "swapFee": "10379777617925142", "reserves": [ - "6244815650386944256793727", - "44837052148431180000782845", - "18709718247858405634051567" + "382687514148020072254399292", + "222151950423911511109147787", + "542503708993206225301082882" ], - "mAssetSupply": "69525838010126705863913331" + "mAssetSupply": "1146671874061109937560178163" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2052407804268334358200320", - "expectedQty": "2024727463558169528474803", + "inputQty": "628628196839005824", + "expectedQty": "632785984588582934", "reserves": [ - "6244815650386944256793727", - "46889459952699514358983165", - "18709718247858405634051567" + "382687514148020072254399292", + "222151951052539707948153611", + "542503708993206225301082882" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "460702687884501061730304", - "expectedQty": "461304032044953420433152", + "type": "mintMulti", + "inputQtys": [ + "76153442364167139885056", + "190774062952914207375360", + "182623628144708704796672" + ], + "expectedQty": "450122889223735615502561", "reserves": [ - "6244815650386944256793727", - "46889459952699514358983165", - "19170420935742906695781871" - ] + "382763667590384239394284348", + "222342725115492622155528971", + "542686332621350934005879554" + ], + "mAssetSupply": "1147121997583119657764263658" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "44982077387114127360", - "expectedQty": "44363596149039045195", + "inputIndex": 2, + "inputQty": "8531323032031271223033856", + "expectedQty": "8500811643635145004626805", "reserves": [ - "6244815650386944256793727", - "46889504934776901473110525", - "19170420935742906695781871" + "382763667590384239394284348", + "222342725115492622155528971", + "551217655653382205228913410" ] }, { "type": "redeemMasset", - "inputQty": "1733383547323037900", + "inputQty": "8041527145714619829452800", "expectedQtys": [ - "150272541372411362", - "1128328755358302428", - "461308713414857352" + "2662703606597457587170890", + "1546731903246614003484555", + "3834557362688747630080509" ], - "redemptionFee": "520015064196911", + "redemptionFee": "2412458143714385948835", "reserves": [ - "6244815500114402884382365", - "46889503806448146114808097", - "19170420474434193280924519" + "380100963983786781807113458", + "220795993212246008152044416", + "547383098290693457598832901" ], - "mAssetSupply": "72011912136462445593025492" + "mAssetSupply": "1147583694539183897325386498" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "26297041906142673895424", + "expectedQty": "26282935170732997976135", + "reserves": [ + "380127261025692924481008882", + "220795993212246008152044416", + "547383098290693457598832901" + ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "156924146159561536", - "outputIndex": 1, - "expectedQty": "159188752082427479", - "swapFee": "94256544534044", + "inputQty": "11601100299819164893184", + "outputIndex": 0, + "expectedQty": "11558303793712756808011", + "swapFee": "6935422936042041577", "reserves": [ - "6244815500114402884382365", - "46889503647259394032380618", - "19170420631358339440486055" + "380115702721899211724200871", + "220795993212246008152044416", + "547394699390993276763726085" ], - "mAssetSupply": "72011912136556702137559536", + "mAssetSupply": "1147609984409777566365404210", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "2681247636781390102528", - "3806283695545176293376", - "2345572107186304712704" + "8574823397255794393088", + "8123269129603476619264", + "3664284032712871772160" ], - "expectedQty": "8925510648740032498187", - "swapFee": "5358521502145306682", + "expectedQty": "20399393189711479856730", + "swapFee": "12246984104289461590", "reserves": [ - "6242134252477621494279837", - "46885697363563848856087242", - "19168075059251153135773351" + "380107127898501955929807783", + "220787869943116404675425152", + "547391035106960563891953925" ], - "mAssetSupply": "72002986625907962105061349" + "mAssetSupply": "1147589585016587854885547480" }, { - "type": "mintMulti", - "inputQtys": [ - "23630729961244209152", - "9806067068656453632", - "101139981866492362752" + "type": "mint", + "inputIndex": 0, + "inputQty": "33132115764658094253015040", + "expectedQty": "33105049285389522246210127", + "reserves": [ + "413239243663160050182822823", + "220787869943116404675425152", + "547391035106960563891953925" + ] + }, + { + "type": "redeemMasset", + "inputQty": "621159742396713192652", + "expectedQtys": [ + "217338648294176231573", + "116120958861064700358", + "287894311788720341832" ], - "expectedQty": "135805239990670417233", + "redemptionFee": "186347922719013957", "reserves": [ - "6242157883207582738488989", - "46885707169630917512540874", - "19168176199233019628136103" + "413239026324511756006591250", + "220787753822157543610724794", + "547390747212648775171612093" ], - "mAssetSupply": "72003122431147952775478582" + "mAssetSupply": "1180694013328582903137578912" }, { - "type": "redeemBassets", - "inputQtys": [ - "394167145024509483941888", - "329666951975333131190272", - "84330266551040249692160" - ], - "expectedQty": "825751946600944374768445", - "swapFee": "495748617130845131940", + "type": "redeem", + "inputIndex": 0, + "inputQty": "45445928323715153920", + "expectedQty": "45468009798204102571", + "swapFee": "27267556994229092", "reserves": [ - "5847990738183073254547101", - "46556040217655584381350602", - "19083845932681979378443943" + "413238980856501957802488679", + "220787753822157543610724794", + "547390747212648775171612093" ], - "mAssetSupply": "71177370484547008400710137" + "mAssetSupply": "1180693967909922136416654084" }, { "type": "redeemBassets", "inputQtys": [ - "3778759726891005440", - "5573305687150920704", - "5068740987326482432" + "125642120527595424", + "137421905024669840", + "362926078495423" ], - "expectedQty": "14569382993382475481", - "swapFee": "8746877922783155", + "expectedQty": "264288211605519396", + "swapFee": "158668127840015", "reserves": [ - "5847986959423346363541661", - "46556034644349897230429898", - "19083840863940992051961511" + "413238980730859837274893255", + "220787753684735638586054954", + "547390747212285849093116670" ], - "mAssetSupply": "71177355915164015018234656" + "mAssetSupply": "1180693967645633924811134688" }, { "type": "mintMulti", "inputQtys": [ - "1909104875138683136", - "6397224356281821184", - "5047775334618534912" + "123164569916571872395264", + "455800718495225909084160", + "188527982997539645292544" ], - "expectedQty": "13379317587313091978", + "expectedQty": "770019726721571853239557", "reserves": [ - "5847988868528221502224797", - "46556041041574253512251082", - "19083845911716326670496423" + "413362145300776409147288519", + "221243554403230864495139114", + "547579275195283388738409214" ], - "mAssetSupply": "71177369294481602331326634" + "mAssetSupply": "1181463987372355496664374245" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3489159123784755937542144", - "expectedQty": "3535724036503884779765867", - "swapFee": "2093495474270853562525", + "type": "mint", + "inputIndex": 0, + "inputQty": "34173416031213215285248", + "expectedQty": "34136530163423157376446", "reserves": [ - "5847988868528221502224797", - "43020317005070368732485215", - "19083845911716326670496423" - ], - "mAssetSupply": "67690303666171117247347015" + "413396318716807622362573767", + "221243554403230864495139114", + "547579275195283388738409214" + ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "1783217116881039357116416", - "outputIndex": 0, - "expectedQty": "1657783487453206718452315", - "swapFee": "1068933658311523933732", + "inputQty": "1069839798542186446848", + "outputIndex": 1, + "expectedQty": "1057873841967021438651", + "swapFee": "639703962466778402", "reserves": [ - "4190205381075014783772482", - "43020317005070368732485215", - "20867063028597366027612839" + "413396318716807622362573767", + "221242496529388897473700463", + "547580345035081930924856062" ], - "mAssetSupply": "67691372599829428771280747", + "mAssetSupply": "1181498124542222882288529093", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "3658358152942299648", - "57910399203662456", - "2382833173774778368" + "type": "redeem", + "inputIndex": 2, + "inputQty": "7331778874296932505747456", + "expectedQty": "7352268333152664145365111", + "swapFee": "4399067324578159503448", + "reserves": [ + "413396318716807622362573767", + "221242496529388897473700463", + "540228076701929266779490951" + ], + "mAssetSupply": "1174170744735250527942285085" + }, + { + "type": "redeemMasset", + "inputQty": "297299426274544688981606", + "expectedQtys": [ + "104640332918280675275377", + "56001680335150880013476", + "136744434428835173318211" ], - "expectedQty": "6465374918120802265", + "redemptionFee": "89189827882363406694", "reserves": [ - "4190209039433167726072130", - "43020317062980767936147671", - "20867065411430539802391207" + "413291678383889341687298390", + "221186494849053746593686987", + "540091332267500431606172740" ], - "mAssetSupply": "67691379065204346892083012" + "mAssetSupply": "1173873534498803865616710173" }, { "type": "swap", "inputIndex": 0, - "inputQty": "108771463589482907828224", - "outputIndex": 2, - "expectedQty": "119989735958736721356787", - "swapFee": "71798908164442660679", + "inputQty": "21460029601913656836096", + "outputIndex": 1, + "expectedQty": "21271928328024443958429", + "swapFee": "12861604946974915453", "reserves": [ - "4298980503022650633900354", - "43020317062980767936147671", - "20747075675471803081034420" + "413313138413491255344134486", + "221165222920725722149728558", + "540091332267500431606172740" ], - "mAssetSupply": "67691450864112511334743691", + "mAssetSupply": "1173873547360408812591625626", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 0, - "inputQty": "3881927085407743488", - "outputIndex": 1, - "expectedQty": "4330959331949091147", - "swapFee": "2556225992874050", + "inputIndex": 1, + "inputQty": "3442120199765074596855808", + "outputIndex": 0, + "expectedQty": "3467692030444901564121291", + "swapFee": "2079699051592554372968", "reserves": [ - "4298984384949736041643842", - "43020312732021435987056524", - "20747075675471803081034420" + "409845446383046353780013195", + "224607343120490796746584366", + "540091332267500431606172740" ], - "mAssetSupply": "67691450866668737327617741", + "mAssetSupply": "1173875627059460405145998594", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "9129368328199762944", - "9058586782516996096", - "70546842825231417344" + "type": "redeemMasset", + "inputQty": "19923794166411694178304", + "expectedQtys": [ + "6954081354710084762277", + "3811040846517958324377", + "9164037557835161951436" ], - "expectedQty": "89242229866106672017", + "redemptionFee": "5977138249923508253", "reserves": [ - "4298993514318064241406786", - "43020321790608218504052620", - "20747146222314628312451764" + "409838492301691643695250918", + "224603532079644278788259989", + "540082168229942596444221304" ], - "mAssetSupply": "67691540108898603434289758" + "mAssetSupply": "1173855709242432243375328543" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "289997686912710934003712", - "expectedQty": "290733364051012018167363", - "swapFee": "173998612147626560402", + "inputQty": "5165830634576964768235520", + "expectedQty": "5179676415077320572984444", + "swapFee": "3099498380746178860941", "reserves": [ - "4298993514318064241406786", - "43020321790608218504052620", - "20456412858263616294284401" + "409838492301691643695250918", + "224603532079644278788259989", + "534902491814865275871236860" ], - "mAssetSupply": "67401716420598040126846448" + "mAssetSupply": "1168692978106236024785953964" + }, + { + "type": "redeemMasset", + "inputQty": "1658180940705096509318758", + "expectedQtys": [ + "581318202056665369530277", + "318579449945864570442006", + "758709981268794989285880" + ], + "redemptionFee": "497454282211528952795", + "reserves": [ + "409257174099634978325720641", + "224284952629698414217817983", + "534143781833596480881950980" + ], + "mAssetSupply": "1167035294619813139805588001" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "15119370924849769742336", - "outputIndex": 0, - "expectedQty": "13535343081829604257455", - "swapFee": "8917683825846938196", + "inputIndex": 2, + "inputQty": "17399044896255", + "outputIndex": 1, + "expectedQty": "17216532347521", + "swapFee": "10405583116", "reserves": [ - "4285458171236234637149331", - "43035441161533068273794956", - "20456412858263616294284401" + "409257174099634978325720641", + "224284952629681197685470462", + "534143781833613879926847235" ], - "mAssetSupply": "67401725338281865973784644", + "mAssetSupply": "1167035294619813150211171117", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1101015624486160487677952", - "1460321479440313129893888", - "1219741910159865092767744" - ], - "expectedQty": "3844334881364276943465487", + "type": "swap", + "inputIndex": 2, + "inputQty": "135551520501076557037568", + "outputIndex": 1, + "expectedQty": "134128576866274838030107", + "swapFee": "81067180638754366788", "reserves": [ - "5386473795722395124827283", - "44495762640973381403688844", - "21676154768423481387052145" + "409257174099634978325720641", + "224150824052814922847440355", + "534279333354114956483884803" ], - "mAssetSupply": "71246060219646142917250131" + "mAssetSupply": "1167035375686993788965537905", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "670514918820994", - "1952363709240007", - "432087738547944" + "type": "mint", + "inputIndex": 2, + "inputQty": "55395074837545079537664", + "expectedQty": "55215255760279834016280", + "reserves": [ + "409257174099634978325720641", + "224150824052814922847440355", + "534334728428952501563422467" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1619083241842759067238", + "expectedQtys": [ + "567584599601556352390", + "310867014122036225304", + "741050327476284685636" ], - "expectedQty": "3071582368334947", + "redemptionFee": "485724972552827720", "reserves": [ - "5386473796392910043648277", - "44495762642925745112928851", - "21676154768855569125600089" + "409256606515035376769368251", + "224150513185800800811215051", + "534333987378625025278736831" ], - "mAssetSupply": "71246060222717725285585078" + "mAssetSupply": "1167088972345237198593314667" }, { - "type": "redeemBassets", - "inputQtys": [ - "1718388315259542784", - "1935194057053305088", - "1772970588118136320" - ], - "expectedQty": "5510698925192491543", - "swapFee": "3308404397754147", + "type": "swap", + "inputIndex": 1, + "inputQty": "30786314331582598479872", + "outputIndex": 2, + "expectedQty": "31075830228493583877327", + "swapFee": "18596137664486399276", "reserves": [ - "5386472078004594784105493", - "44495760707731688059623763", - "21676152995884981007463769" + "409256606515035376769368251", + "224181299500132383409694923", + "534302911548396531694859504" ], - "mAssetSupply": "71246054712018800093093535" + "mAssetSupply": "1167088990941374863079713943", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "42434106885130936123392", - "45149390842387366936576", - "8823931212758239936512" + "963678127801881849757696", + "1356898247083148691111936", + "639639938168277434368000" ], - "expectedQty": "98584550422914194353092", + "expectedQty": "2966233607085028049914563", "reserves": [ - "5428906184889725720228885", - "44540910098574075426560339", - "21684976927097739247400281" + "410220284642837258619125947", + "225538197747215532100806859", + "534942551486564809129227504" ], - "mAssetSupply": "71344639262441714287446627" + "mAssetSupply": "1170055224548459891129628506" }, { "type": "swap", "inputIndex": 0, - "inputQty": "4533377246099446207348736", + "inputQty": "2932068697965174", "outputIndex": 2, - "expectedQty": "4685478162946593449734134", - "swapFee": "2818358841207331054161", + "expectedQty": "2936751097699491", + "swapFee": "1757423940291", "reserves": [ - "9962283430989171927577621", - "44540910098574075426560339", - "16999498764151145797666147" + "410220284645769327317091121", + "225538197747215532100806859", + "534942551483628058031528013" ], - "mAssetSupply": "71347457621282921618500788", + "mAssetSupply": "1170055224548461648553568797", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "165342181716911194112", + "expectedQty": "166443808412438241340", + "reserves": [ + "410220284645769327317091121", + "225538363089397249012000971", + "534942551483628058031528013" + ] + }, { "type": "redeemMasset", - "inputQty": "13944647073264036111974", + "inputQty": "6336012249788487769994035", "expectedQtys": [ - "1946514353296251904575", - "8702775966608276916048", - "3321504409353726058686" + "2220733326307876222668202", + "1220955125868654795996993", + "2895919085926438352012610" ], - "redemptionFee": "4183394121979210833", + "redemptionFee": "1900803674936546330998", "reserves": [ - "9960336916635875675673046", - "44532207322607467149644291", - "16996177259741792071607461" + "407999551319461451094422919", + "224317407963528594216003978", + "532046632397701619679515403" ], - "mAssetSupply": "71333517157603779561599647" + "mAssetSupply": "1163721279546156509768147100" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "645574409135793242112", - "557620543670243622912", - "385780419284152549376" + "1045491639323796856373248", + "1184164520626020151197696", + "286815077550351777267712" ], - "expectedQty": "1597113279821697340767", + "expectedQty": "2522387105692413406190317", + "swapFee": "1514340867936209769575", "reserves": [ - "9960982491045011468915158", - "44532764943151137393267203", - "16996563040161076224156837" + "406954059680137654238049671", + "223133243442902574064806282", + "531759817320151267902247691" ], - "mAssetSupply": "71335114270883601258940414" + "mAssetSupply": "1161198892440464096361956783" }, { - "type": "mintMulti", - "inputQtys": [ - "171160184251773344", - "179973891372593504", - "181083130588594784" - ], - "expectedQty": "534377961979714022", + "type": "redeem", + "inputIndex": 0, + "inputQty": "38982058060140727104438272", + "expectedQty": "38986672837043917295231523", + "swapFee": "23389234836084436262662", "reserves": [ - "9960982662205195720688502", - "44532765123125028765860707", - "16996563221244206812751621" + "367967386843093736942818148", + "223133243442902574064806282", + "531759817320151267902247691" ], - "mAssetSupply": "71335114805261563238654436" + "mAssetSupply": "1122240223615159453693781173" }, { - "type": "redeemBassets", - "inputQtys": [ - "322326938383905015726080", - "124536238666657887682560", - "213046763108404056555520" - ], - "expectedQty": "665599540631609628161619", - "swapFee": "399599484069407421349", + "type": "mint", + "inputIndex": 2, + "inputQty": "356068897785704087552", + "expectedQty": "354830254349869516540", "reserves": [ - "9638655723821290704962422", - "44408228884458370878178147", - "16783516458135802756196101" - ], - "mAssetSupply": "70669515264629953610492817" + "367967386843093736942818148", + "223133243442902574064806282", + "531760173389049053606335243" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "17575147877856", - "expectedQty": "17498517562378", - "swapFee": "10545088726", + "type": "mint", + "inputIndex": 0, + "inputQty": "12272355109781753334595584", + "expectedQty": "12266312472602645616881797", "reserves": [ - "9638655723821290704962422", - "44408228884458370878178147", - "16783516458118304238633723" - ], - "mAssetSupply": "70669515264612389007703687" + "380239741952875490277413732", + "223133243442902574064806282", + "531760173389049053606335243" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "196807552848662708092928", - "1159642467630231601545216", - "1803566741737715754074112" - ], - "expectedQty": "3160932715004447252862850", - "swapFee": "1897698247951439215246", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3389020946969273095421952", + "expectedQty": "3388921729486512625486177", + "swapFee": "2033412568181563857253", "reserves": [ - "9441848170972627996869494", - "43248586416828139276632931", - "14979949716380588484559611" + "376850820223388977651927555", + "223133243442902574064806282", + "531760173389049053606335243" ], - "mAssetSupply": "67508582549607941754840837" + "mAssetSupply": "1131119903383615357648614811" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "8199814082669462945792", - "expectedQty": "8243265170393863372470", + "inputIndex": 1, + "inputQty": "8653590639500933946408960", + "expectedQty": "8705471629761658547865143", "reserves": [ - "9441848170972627996869494", - "43248586416828139276632931", - "14988149530463257947505403" + "376850820223388977651927555", + "231786834082403508011215242", + "531760173389049053606335243" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "13720536606877295837184", - "expectedQty": "13977300933330431373381", + "inputQty": "120098774671802976", + "expectedQty": "120048668902113434", "reserves": [ - "9455568707579505292706678", - "43248586416828139276632931", - "14988149530463257947505403" + "376850820343487752323730531", + "231786834082403508011215242", + "531760173389049053606335243" ] }, { - "type": "redeemMasset", - "inputQty": "709650607815685671642726", - "expectedQtys": [ - "99334477394833324227028", - "454343452270323175359526", - "157456420313538880841616" + "type": "mintMulti", + "inputQtys": [ + "596556382858426357645312", + "272640751510785724776448", + "898560895034694041600000" ], - "redemptionFee": "212895182344705701492", + "expectedQty": "1766125309874140258783447", "reserves": [ - "9356234230184671968479650", - "42794242964557816101273405", - "14830693110149719066663787" + "377447376726346178681375843", + "232059474833914293735991690", + "532658734284083747647935243" ], - "mAssetSupply": "66821365403078325083645454" + "mAssetSupply": "1141591500443299825357376835" }, { - "type": "redeemMasset", - "inputQty": "81679633997263245882163", - "expectedQtys": [ - "11433237240355770704445", - "52294194469472798706875", - "18122978603957493057570" - ], - "redemptionFee": "24503890199178973764", + "type": "mint", + "inputIndex": 0, + "inputQty": "312393227423389897981952", + "expectedQty": "312261750002496563458099", "reserves": [ - "9344800992944316197775205", - "42741948770088343302566530", - "14812570131545761573606217" - ], - "mAssetSupply": "66739710272971261016737055" + "377759769953769568579357795", + "232059474833914293735991690", + "532658734284083747647935243" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "172059196149863456", - "expectedQty": "173632375856461110", - "swapFee": "103235517689918", - "reserves": [ - "9344800992944316197775205", - "42741948596455967446105420", - "14812570131545761573606217" + "type": "mintMulti", + "inputQtys": [ + "113414414838562258944", + "353810312261511675904", + "109108234601099722752" ], - "mAssetSupply": "66739710101015300384563517" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "479616402054798385348608", - "expectedQty": "476657195739159617076559", - "swapFee": "287769841232879031209", + "expectedQty": "577957796476980644758", "reserves": [ - "9344800992944316197775205", - "42741948596455967446105420", - "14335912935806601956529658" + "377759883368184407141616739", + "232059828644226555247667594", + "532658843392318348747657995" ], - "mAssetSupply": "66260381468801734878246118" + "mAssetSupply": "1141904340151098798901479692" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "4870149526316600262656", - "expectedQty": "4898971832684886997365", + "inputIndex": 1, + "inputQty": "23918050651364808196096", + "expectedQty": "24055299210137452493096", "reserves": [ - "9344800992944316197775205", - "42741948596455967446105420", - "14340783085332918556792314" + "377759883368184407141616739", + "232083746694877920055863690", + "532658843392318348747657995" ] }, { - "type": "redeemMasset", - "inputQty": "121708695412844183683072", - "expectedQtys": [ - "17158341851449574992564", - "78480105244489171583442", - "26331653160020828359738" + "type": "redeemBassets", + "inputQtys": [ + "1220574756892304211968", + "2663260003067709358080", + "2518958163406887583744" ], - "redemptionFee": "36512608623853255104", + "expectedQty": "6409301162014902080433", + "swapFee": "3847889430867461725", "reserves": [ - "9327642651092866622782641", - "42663468491211478274521978", - "14314451432172897728432576" + "377758662793427514837404771", + "232081083434874852346505610", + "532656324434154941860074251" ], - "mAssetSupply": "66143608257830199434815515" + "mAssetSupply": "1141921986149146921451892355" }, { "type": "swap", "inputIndex": 0, - "inputQty": "207007273003610865664", - "outputIndex": 2, - "expectedQty": "209491015575079586445", - "swapFee": "126514001920808096", + "inputQty": "156003912627753244950528", + "outputIndex": 1, + "expectedQty": "154953978844760218083160", + "swapFee": "93562601708795563875", "reserves": [ - "9327849658365870233648305", - "42663468491211478274521978", - "14314241941157322648846131" + "377914666706055268082355299", + "231926129456030092128422450", + "532656324434154941860074251" ], - "mAssetSupply": "66143608384344201355623611", + "mAssetSupply": "1141922079711748630247456230", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "43340390765385501114368", - "expectedQty": "42519838833550353908607", - "swapFee": "26004234459231300668", - "reserves": [ - "9285329819532319879739698", - "42663468491211478274521978", - "14314241941157322648846131" - ], - "mAssetSupply": "66100293997813275085809911" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "91803890028137007808512", - "expectedQty": "90040217807015053426531", - "swapFee": "55082334016882204685", + "inputIndex": 1, + "inputQty": "3937590932690631655424", + "expectedQty": "3912733251430635923866", + "swapFee": "2362554559614378993", "reserves": [ - "9195289601725304826313167", - "42663468491211478274521978", - "14314241941157322648846131" + "377914666706055268082355299", + "231922216722778661492498584", + "532656324434154941860074251" ], - "mAssetSupply": "66008545190119154960206084" + "mAssetSupply": "1141918144483370499230179799" }, { "type": "redeemBassets", "inputQtys": [ - "61636247230257322524672", - "114587742216605168304128", - "64918545721983160549376" + "63869477213568931725312", + "26756230356326833717248", + "77782588826496486342656" ], - "expectedQty": "241568486901992077087104", - "swapFee": "145028109006599205775", + "expectedQty": "168279723507684015615241", + "swapFee": "101028451175315598728", "reserves": [ - "9133653354495047503788495", - "42548880748994873106217850", - "14249323395435339488296755" + "377850797228841699150629987", + "231895460492422334658781336", + "532578541845328445373731595" ], - "mAssetSupply": "65766976703217162883118980" + "mAssetSupply": "1141749864759862815214564558" }, { "type": "redeemMasset", - "inputQty": "26813016252291", + "inputQty": "350114579784435404", "expectedQtys": [ - "3722648323989", - "17341858012373", - "5807667293383" + "115832188689488076", + "71088797305688653", + "163264808764287745" ], - "redemptionFee": "8043904875", + "redemptionFee": "105034373935330", "reserves": [ - "9133653354491324855464506", - "42548880748977531248205477", - "14249323395429531821003372" + "377850797113009510461141911", + "231895460421333537353092683", + "532578541682063636609443850" ], - "mAssetSupply": "65766976703190357910771564" + "mAssetSupply": "1141749864409853269804064484" }, { - "type": "redeemBassets", - "inputQtys": [ - "43742112898818760507392", - "35947787257460077625344", - "66058764673663434227712" - ], - "expectedQty": "146630514128711618246825", - "swapFee": "88031127153519082397", + "type": "swap", + "inputIndex": 2, + "inputQty": "279602823758204775694336", + "outputIndex": 0, + "expectedQty": "278636415026202701623644", + "swapFee": "167211326444241017903", "reserves": [ - "9089911241592506094957114", - "42512932961720071170580133", - "14183264630755868386775660" + "377572160697983307759518267", + "231895460421333537353092683", + "532858144505821841385138186" ], - "mAssetSupply": "65620346189061646292524739" + "mAssetSupply": "1141750031621179714045082387", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "385705666911135546212352", - "34891886956134168264704", - "330407592685449043247104" + "type": "redeemMasset", + "inputQty": "2797152215659778460876", + "expectedQtys": [ + "924729527992130500269", + "567945950417850587189", + "1305047648493812740675" ], - "expectedQty": "759788058884452535259567", + "redemptionFee": "839145664697933538", "reserves": [ - "9475616908503641641169466", - "42547824848676205338844837", - "14513672223441317430022764" + "377571235968455315629017998", + "231894892475383119502505494", + "532856839458173347572397511" ], - "mAssetSupply": "66380134247946098827784306" + "mAssetSupply": "1141747235308109718964555049" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "34141946450144376389632", - "46749515520091956969472", - "46736493811273620783104" + "58064723375987999375360", + "29139261026918803177472", + "20464715318498741452800" ], - "expectedQty": "128052244488469403082808", + "expectedQty": "107744577051549191822233", + "swapFee": "64685557565468796371", "reserves": [ - "9509758854953786017559098", - "42594574364196297295814309", - "14560408717252591050805868" + "377513171245079327629642638", + "231865753214356200699328022", + "532836374742854848830944711" ], - "mAssetSupply": "66508186492434568230867114" + "mAssetSupply": "1141639490731058169772732816" }, { - "type": "redeemBassets", - "inputQtys": [ - "218770797389699847553024", - "169283740831471124873216", - "80609511728399641477120" + "type": "redeemMasset", + "inputQty": "186924785394884711075020", + "expectedQtys": [ + "61793060875109422280650", + "37952833687824777778195", + "87217064327492687223948" ], - "expectedQty": "471462011244048070392900", - "swapFee": "283047034967409287808", + "redemptionFee": "56077435618465413322", "reserves": [ - "9290988057564086170006074", - "42425290623364826170941093", - "14479799205524191409328748" + "377451378184204218207361988", + "231827800380668375921549827", + "532749157678527356143720763" ], - "mAssetSupply": "66036724481190520160474214" + "mAssetSupply": "1141452622023098903527071118" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3290661888908688478961664", - "expectedQty": "3319185600835700277651697", - "swapFee": "1974397133345213087376", + "type": "redeemMasset", + "inputQty": "47864231345145404142387", + "expectedQtys": [ + "15822820686955453937753", + "9718257576170446511485", + "22332927842589771008389" + ], + "redemptionFee": "14359269403543621242", "reserves": [ - "9290988057564086170006074", - "39106105022529125893289396", - "14479799205524191409328748" + "377435555363517262753424235", + "231818082123092205475038342", + "532726824750684766372712374" ], - "mAssetSupply": "62748036989415176894599926" + "mAssetSupply": "1141404772151023161666549973" }, { "type": "redeemMasset", - "inputQty": "109878896482561464729", + "inputQty": "16232881002464224", "expectedQtys": [ - "16264688090807662237", - "68458660876221444496", - "25348156324842106170" + "5366219369168411", + "3295891615760198", + "7574085071819478" ], - "redemptionFee": "32963668944768439", + "redemptionFee": "4869864300739", "reserves": [ - "9290971792875995362343837", - "39106036563868249671844900", - "14479773857367866567222578" + "377435555358151043384255824", + "231818082119796313859278144", + "532726824743110681300892896" ], - "mAssetSupply": "62747927143482363277903636" + "mAssetSupply": "1141404772134795150528386488" }, { - "type": "mintMulti", - "inputQtys": [ - "1713400904403303", - "544614938148458", - "927755433181069" + "type": "redeemMasset", + "inputQty": "94754929244761305907", + "expectedQtys": [ + "31323813472188433536", + "19238850873258471585", + "44211615606934488825" ], - "expectedQty": "3212170299772145", + "redemptionFee": "28426478773428391", "reserves": [ - "9290971794589396266747140", - "39106036564412864609993358", - "14479773858295622000403647" + "377435524034337571195822288", + "231818062880945440600806559", + "532726780531495074366404071" ], - "mAssetSupply": "62747927146694533577675781" + "mAssetSupply": "1141404677408292384540508972" }, { - "type": "redeemBassets", - "inputQtys": [ - "79161346478768098639872", - "51052357479109339643904", - "411364152686334516920320" - ], - "expectedQty": "544255408981613135564163", - "swapFee": "326749294965947449808", + "type": "mint", + "inputIndex": 2, + "inputQty": "135478009967745095723646976", + "expectedQty": "134929345318167458176796705", "reserves": [ - "9211810448110628168107268", - "39054984206933755270349454", - "14068409705609287483483327" - ], - "mAssetSupply": "62203671737712920442111618" + "377435524034337571195822288", + "231818062880945440600806559", + "668204790499240170090051047" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "435195458953277800448", - "expectedQty": "432873734554685615035", - "swapFee": "261117275371966680", + "type": "redeemMasset", + "inputQty": "356563003156345703628", + "expectedQtys": [ + "105410627381843498754", + "64742415301907321676", + "186617002642470478818" + ], + "redemptionFee": "106968900946903711", "reserves": [ - "9211810448110628168107268", - "39054984206933755270349454", - "14067976831874732797868292" + "377435418623710189352323534", + "231817998138530138693484883", + "668204603882237527619572229" ], - "mAssetSupply": "62203236803371242536277850" + "mAssetSupply": "1276333666270425587318505760" }, { "type": "mintMulti", "inputQtys": [ - "32986102767906021376", - "1639423781919782144", - "24238532663773110272" + "1021083436053517959168", + "572390555742508351488", + "276035748812960038912" ], - "expectedQty": "59491922449359409977", + "expectedQty": "1873389251877595813621", "reserves": [ - "9211843434213396074128644", - "39054985846357537190131598", - "14068001070407396570978564" + "377436439707146242870282702", + "231818570529085881201836371", + "668204879917986340579611141" ], - "mAssetSupply": "62203296295293691895687827" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "59547136141644733087744", - "expectedQty": "60491818995253710863492", - "reserves": [ - "9271390570355040807216388", - "39054985846357537190131598", - "14068001070407396570978564" - ] + "mAssetSupply": "1276335539659677464914319381" }, { "type": "mintMulti", "inputQtys": [ - "17948550370141", - "40411932046931", - "30617224959207" + "95423949603178253647872", + "83950883525615855599616", + "66610734474946162982912" ], - "expectedQty": "89050881180340", + "expectedQty": "246401058046873326464986", "reserves": [ - "9271390570372989357586529", - "39054985846397949122178529", - "14068001070438013795937771" + "377531863656749421123930574", + "231902521412611497057435987", + "668271490652461286742594053" ], - "mAssetSupply": "62263788114377996487731659" + "mAssetSupply": "1276581940717724338240784367" }, { "type": "redeemBassets", "inputQtys": [ - "1274632615054385920", - "1500646843632736512", - "1103214726696544640" + "2939324605611988370849792", + "6786698813391247926886400", + "3863138051109206257303552" ], - "expectedQty": "3890630802274553109", - "swapFee": "2335779949334332", + "expectedQty": "13628804036810302584420423", + "swapFee": "8182191737128458625827", "reserves": [ - "9271389295740374303200609", - "39054984345751105489442017", - "14067999967223287099393131" + "374592539051137432753080782", + "225115822599220249130549587", + "664408352601352080485290501" ], - "mAssetSupply": "62263784223747194213178550" + "mAssetSupply": "1262953136680914035656363944" }, { - "type": "redeemBassets", - "inputQtys": [ - "3911367360884269121536", - "955366549220908335104", - "801531322933168570368" - ], - "expectedQty": "5725324938196321178487", - "swapFee": "3437257317308177613", + "type": "redeem", + "inputIndex": 0, + "inputQty": "517896278136064518914048", + "expectedQty": "517350934344681875486587", + "swapFee": "310737766881638711348", "reserves": [ - "9267477928379490034079073", - "39054028979201884581106913", - "14067198435900353930822763" + "374075188116792750877594195", + "225115822599220249130549587", + "664408352601352080485290501" ], - "mAssetSupply": "62258058898808997892000063" + "mAssetSupply": "1262435551140544852776161244" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1420855556619369971712", - "expectedQty": "1397957526471760765388", - "swapFee": "852513333971621983", + "inputQty": "195831670221601807269888", + "expectedQty": "195623890604776202299369", + "swapFee": "117499002132961084361", "reserves": [ - "9266079970853018273313685", - "39054028979201884581106913", - "14067198435900353930822763" + "373879564226187974675294826", + "225115822599220249130549587", + "664408352601352080485290501" ], - "mAssetSupply": "62256638895765712493650334" + "mAssetSupply": "1262239836969325383929975717" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "17595175178525222912", - "77788369751759454208", - "17751636494728945664" + "41040407669435899904", + "8141128691032534016", + "49478432388149911552" ], - "expectedQty": "112812317361755714105", - "swapFee": "67728027233393464", + "expectedQty": "98505079805852880498", "reserves": [ - "9266062375677839748090773", - "39053951190832132821652705", - "14067180684263859201877099" + "373879605266595644111194730", + "225115830740348940163083603", + "664408402079784468635202053" ], - "mAssetSupply": "62256526083448350737936229" + "mAssetSupply": "1262239935474405189782856215" }, { - "type": "redeemBassets", - "inputQtys": [ - "11251398671576221089792", - "36651015857272684544", - "5256920075663028781056" - ], - "expectedQty": "16747440716020099875008", - "swapFee": "10054497127888793200", + "type": "redeem", + "inputIndex": 2, + "inputQty": "44600759629359175696384", + "expectedQty": "44794979188388113649987", + "swapFee": "26760455777615505417", "reserves": [ - "9254810977006263527000981", - "39053914539816275548968161", - "14061923764188196173096043" + "373879605266595644111194730", + "225115830740348940163083603", + "664363607100596080521552066" ], - "mAssetSupply": "62239778642732330638061221" + "mAssetSupply": "1262195361475231608222665248" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "146814379777445786025984", - "184096579938339264659456", - "107802937248434117148672" + "54379989760154520", + "480374798289229760", + "462909896027862144" ], - "expectedQty": "439907493659269314180895", + "expectedQty": "999546823274322525", + "swapFee": "600088146852705", "reserves": [ - "9401625356783709313026965", - "39238011119754614813627617", - "14169726701436630290244715" + "373879605212215654351040210", + "225115830259974141873853843", + "664363606637686184493689922" ], - "mAssetSupply": "62679686136391599952242116" + "mAssetSupply": "1262195360475684784948342723" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "230634908711530784", - "670961283876619648", - "254592156951932640" + "1579247464311543040", + "4774367167343778816", + "5064566182807556096" ], - "expectedQty": "1155108564019759023", - "swapFee": "693481227148144", + "expectedQty": "11435080641426874657", "reserves": [ - "9401625126148800601496181", - "39238010448793330937007969", - "14169726446844473338312075" + "373879606791463118662583250", + "225115835034341309217632659", + "664363611702252367301246018" ], - "mAssetSupply": "62679684981283035932483093" + "mAssetSupply": "1262195371910765426375217380" }, { "type": "redeemMasset", - "inputQty": "7812544943106422944563", + "inputQty": "49015867774557978624", "expectedQtys": [ - "1171489353728435922167", - "4889251686327978317185", - "1765618545197441603710" + "14514817569286952491", + "8739485166153139462", + "25792036924092996587" ], - "redemptionFee": "2343763482931926883", + "redemptionFee": "14704760332367393", "reserves": [ - "9400453636795072165574014", - "39233121197107002958690784", - "14167960828299275896708365" + "373879592276645549375630759", + "225115826294856143064493197", + "664363585910215443208249431" ], - "mAssetSupply": "62671874780103412441465413" + "mAssetSupply": "1262195322909602412149606149" }, { "type": "redeemBassets", "inputQtys": [ - "2183811517627970355200", - "59320293871659261952", - "2730871460816165011456" + "111559493716817727193088", + "21769999984247558897664", + "118767528831138654060544" ], - "expectedQty": "5020205653653223461911", - "swapFee": "3013931751242679684", + "expectedQty": "251750536222683035434839", + "swapFee": "151141006337412268622", "reserves": [ - "9398269825277444195218814", - "39233061876813131299428832", - "14165229956838459731696909" + "373768032782928731648437671", + "225094056294871895505595533", + "664244818381384304554188887" ], - "mAssetSupply": "62666854574449759218003502" + "mAssetSupply": "1261943572373379729114171310" }, { - "type": "redeemMasset", - "inputQty": "257369011219156330086", - "expectedQtys": [ - "38586550761153949050", - "161079492477803289956", - "58158296679551877773" + "type": "mintMulti", + "inputQtys": [ + "2118068240474162772049920", + "2060304859515568204546048", + "1247834951422302683660288" ], - "redemptionFee": "77210703365746899", + "expectedQty": "5438686408969368213622503", "reserves": [ - "9398231238726683041269764", - "39232900797320653496138876", - "14165171798541780179819136" + "375886101023402894420487591", + "227154361154387463710141581", + "665492653332806607237849175" ], - "mAssetSupply": "62666597282649243427420315" + "mAssetSupply": "1267382258782349097327793813" }, { "type": "mintMulti", "inputQtys": [ - "719932927537703628570624", - "973640784120833401421824", - "2162207008095930723336192" + "567786593069037082640384", + "749984130224552713125888", + "539521625529025382318080" ], - "expectedQty": "3866789202180447701814898", + "expectedQty": "1861275403490779559594600", "reserves": [ - "10118164166264386669840388", - "40206541581441486897560700", - "16327378806637710903155328" + "376453887616471931503127975", + "227904345284612016423267469", + "666032174958335632620167255" ], - "mAssetSupply": "66533386484829691129235213" + "mAssetSupply": "1269243534185839876887388413" }, { - "type": "redeemBassets", - "inputQtys": [ - "568876904341092375199744", - "167439645336190159159296", - "244332531481689777504256" + "type": "swap", + "inputIndex": 2, + "inputQty": "3583537608728155978203136", + "outputIndex": 1, + "expectedQty": "3533192598650580319918084", + "swapFee": "2139599066196434122008", + "reserves": [ + "376453887616471931503127975", + "224371152685961436103349385", + "669615712567063788598370391" ], - "expectedQty": "988670685108266968542069", - "swapFee": "593558546192675786597", + "mAssetSupply": "1269245673784906073321510421", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "11139293753642870483451904", + "expectedQty": "11126347569279557147703850", + "swapFee": "6683576252185722290071", "reserves": [ - "9549287261923294294640644", - "40039101936105296738401404", - "16083046275156021125651072" + "365327540047192374355424125", + "224371152685961436103349385", + "669615712567063788598370391" ], - "mAssetSupply": "65544715799721424160693144" + "mAssetSupply": "1258113063607515388560348588" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1654765278051852282232832", - "expectedQty": "1622135662637775405198581", - "swapFee": "992859166831111369339", + "inputQty": "6220572632355373563510784", + "expectedQty": "6212066300765171282312762", + "swapFee": "3732343579413224138106", "reserves": [ - "7927151599285518889442063", - "40039101936105296738401404", - "16083046275156021125651072" + "359115473746427203073111363", + "224371152685961436103349385", + "669615712567063788598370391" ], - "mAssetSupply": "63890943380836402989829651" + "mAssetSupply": "1251896223318739428220975910" }, { "type": "redeemMasset", - "inputQty": "13671678668906404249", + "inputQty": "2909033828259602110192025", "expectedQtys": [ - "1695779565164611592", - "8565181329055175194", - "3440491944352946420" + "834227021544033182919870", + "521215297332960735794752", + "1555520611925357376172956" ], - "redemptionFee": "4101503600671921", + "redemptionFee": "872710148477880633057", "reserves": [ - "7927149903505953724830471", - "40039093370923967683226210", - "16083042834664076772704652" + "358281246724883169890191493", + "223849937388628475367554633", + "668060191955138431222197435" ], - "mAssetSupply": "63890929713259237684097323" + "mAssetSupply": "1248988062200628303991416942" }, { - "type": "mintMulti", - "inputQtys": [ - "64306525040226879930368", - "57899722630256845127680", - "69020226539650566586368" + "type": "redeemMasset", + "inputQty": "423834807472747776", + "expectedQtys": [ + "121543601738111564", + "75939022451701949", + "226633245949465865" ], - "expectedQty": "192358706728368669467405", + "redemptionFee": "127150442241824", "reserves": [ - "7991456428546180604760839", - "40096993093554224528353890", - "16152063061203727339291020" + "358281246603339568152079929", + "223849937312689452915852684", + "668060191728505185272731570" ], - "mAssetSupply": "64083288419987606353564728" + "mAssetSupply": "1248988061776920646960910990" }, { - "type": "redeemBassets", - "inputQtys": [ - "10747910898173085359276032", - "1783777594390817336721408", - "4190222368818933144748032" + "type": "redeemMasset", + "inputQty": "54051359867365300633", + "expectedQtys": [ + "15500371468534505495", + "9684451012855517198", + "28902381113451478508" ], - "insufficientLiquidityError": true + "redemptionFee": "16215407960209590", + "reserves": [ + "358281231102968099617574434", + "223849927628238440060335486", + "668060162826124071821253062" + ], + "mAssetSupply": "1248988007741776187555819947" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "35992212368596442021888", - "expectedQty": "35878117240068940377567", - "swapFee": "21595327421157865213", + "inputIndex": 0, + "inputQty": "190839455294784012539658240", + "expectedQty": "189748114572611492462941981", + "swapFee": "114503673176870407523794", "reserves": [ - "7991456428546180604760839", - "40096993093554224528353890", - "16116184943963658398913453" + "168533116530356607154632453", + "223849927628238440060335486", + "668060162826124071821253062" ], - "mAssetSupply": "64047317802946431069408053" + "mAssetSupply": "1058263056120169045423685501" }, { "type": "redeemBassets", "inputQtys": [ - "48368209683096641536", - "117742375255438655488", - "107118669145990250496" - ], - "expectedQty": "273504318422005944549", - "swapFee": "164201111720235708", - "reserves": [ - "7991408060336497508119303", - "40096875351178969089698402", - "16116077825294512408662957" - ], - "mAssetSupply": "64047044298628009063463504" - }, - { - "type": "redeemMasset", - "inputQty": "5528544370340", - "expectedQtys": [ - "689611835650", - "3460126126215", - "1390723377994" + "153045784969799424", + "688675002698863360", + "595124981143674752" ], - "redemptionFee": "1658563311", + "expectedQty": "1437974144343357274", + "swapFee": "863302468086866", "reserves": [ - "7991408060335807896283653", - "40096875351175508963572187", - "16116077825293121685284963" + "168533116377310822184833029", + "223849926939563437361472126", + "668060162230999090677578310" ], - "mAssetSupply": "64047044298622482177656475" + "mAssetSupply": "1058263054682194901080328227" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "55196492143672640", - "outputIndex": 2, - "expectedQty": "54491109218505161", - "swapFee": "32799192202939", + "inputQty": "72275065542051700736", + "expectedQty": "72722805488110989180", "reserves": [ - "7991408060335807896283653", - "40096875406372001107244827", - "16116077770802012466779802" - ], - "mAssetSupply": "64047044298655281369859414", - "hardLimitError": false, - "insufficientLiquidityError": false + "168533116377310822184833029", + "223849999214628979413172862", + "668060162230999090677578310" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "423874820902252707840", - "1297179245801721561088", - "13156356327771232796672" - ], - "expectedQty": "14909048733797192112401", - "swapFee": "8950799720110381496", + "type": "redeem", + "inputIndex": 2, + "inputQty": "978244247299470384955392", + "expectedQty": "986292783374347910638285", + "swapFee": "586946548379682230973", "reserves": [ - "7990984185514905643575813", - "40095578227126199385683739", - "16102921414474241233983130" + "168533116377310822184833029", + "223849999214628979413172862", + "667073869447624742766940025" ], - "mAssetSupply": "64032135249921484177747013" + "mAssetSupply": "1057285470104249298488592988" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1777319157724751706718208", - "expectedQty": "1810977477571551354476788", + "inputQty": "18856130849512438183755776", + "expectedQty": "19082399865782687804405234", "reserves": [ - "9768303343239657350294021", - "40095578227126199385683739", - "16102921414474241233983130" + "187389247226823260368588805", + "223849999214628979413172862", + "667073869447624742766940025" ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "2789891048733259857920", - "outputIndex": 1, - "expectedQty": "2819734853926073707306", - "swapFee": "1679191899152736616", + "inputQty": "9174772672115510345728", + "outputIndex": 0, + "expectedQty": "9000065713946249022756", + "swapFee": "5460609893875923773", "reserves": [ - "9768303343239657350294021", - "40092758492272273311976433", - "16105711305522974493841050" + "187380247161109314119566049", + "223849999214628979413172862", + "667083044220296858277285753" ], - "mAssetSupply": "65843114406684934684960417", + "mAssetSupply": "1076367875430641880168921995", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "114165921154565819439513", - "expectedQtys": [ - "16932260831516801763709", - "69496310709472726517548", - "27917448416562074948525" - ], - "redemptionFee": "34249776346369745831", + "type": "redeem", + "inputIndex": 1, + "inputQty": "231057297666539096375296", + "expectedQty": "229451392954469620850140", + "swapFee": "138634378599923457825", "reserves": [ - "9751371082408140548530312", - "40023262181562800585458885", - "16077793857106412418892525" + "187380247161109314119566049", + "223620547821674509792322722", + "667083044220296858277285753" ], - "mAssetSupply": "65728982735306715235266735" + "mAssetSupply": "1076136956767353940996004524" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1380749188366861312", - "expectedQty": "1369604354960099945", + "inputIndex": 2, + "inputQty": "24537836213043032060067840", + "expectedQty": "24335081821986140735427917", "reserves": [ - "9751371082408140548530312", - "40023263562311988952320197", - "16077793857106412418892525" + "187380247161109314119566049", + "223620547821674509792322722", + "691620880433339890337353593" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "29443604915252468121600", - "expectedQty": "29665256472987837619378", - "swapFee": "17666162949151480872", + "type": "redeemMasset", + "inputQty": "1157341383223575597966950", + "expectedQtys": [ + "197004419886750146747100", + "235106084903861162703482", + "727143721900333946306231" + ], + "redemptionFee": "347202414967072679390", "reserves": [ - "9751371082408140548530312", - "39993598305839001114700819", - "16077793857106412418892525" + "187183242741222563972818949", + "223385441736770648629619240", + "690893736711439556391047362" ], - "mAssetSupply": "65699558166158766878725952" + "mAssetSupply": "1099315044408531473206144881" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "567121463224945260625920", - "306227564720585349005312", - "190302670588080474292224" + "2869325323325617664", + "3180165969827367936", + "4157807713953122816" ], - "expectedQty": "1070866917623445312040931", - "swapFee": "642905894110533507328", + "expectedQty": "10227230839216490284", "reserves": [ - "9184249619183195287904392", - "39687370741118415765695507", - "15887491186518331944600301" + "187183245610547887298436613", + "223385444916936618456987176", + "690893740869247270344170178" ], - "mAssetSupply": "64628691248535321566685021" + "mAssetSupply": "1099315054635762312422635165" }, { "type": "mintMulti", "inputQtys": [ - "524083318247074496512", - "346463527789703725056", - "8790385940417022976" + "72437747218898832", + "13703512188492244", + "11318606306323528" ], - "expectedQty": "885375641671432512524", + "expectedQty": "98289795946593555", "reserves": [ - "9184773702501442362400904", - "39687717204646205469420563", - "15887499976904272361623277" + "187183245682985634517335445", + "223385444930640130645479420", + "690893740880565876650493706" ], - "mAssetSupply": "64629576624176992999197545" + "mAssetSupply": "1099315054734052108369228720" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2561048264182813687808", - "816095757009726734336", - "7771455754638298447872" + "1716505751860476580462592", + "459427569309660064251904", + "991346306496810413195264" ], - "expectedQty": "11209152837256043964800", - "swapFee": "6729529420005629756", + "expectedQty": "3181611024868093935494280", "reserves": [ - "9182212654237259548713096", - "39686901108889195742686227", - "15879728521149634063175405" + "188899751434846111097798037", + "223844872499949790709731324", + "691885087187062687063688970" ], - "mAssetSupply": "64618367471339736955232745" + "mAssetSupply": "1102496665758920202304723000" }, { "type": "redeemBassets", "inputQtys": [ - "1600723612241740322308096", - "401587017307673134628864", - "995042586246375486259200" + "1301975714573238101082112", + "2143233556317721170280448", + "622500854203260162015232" ], - "expectedQty": "3029695873988654994716888", - "swapFee": "1818908869715022010036", + "expectedQty": "4092404761251451348009481", + "swapFee": "2456917006955043835106", "reserves": [ - "7581489041995519226405000", - "39285314091581522608057363", - "14884685934903258576916205" + "187597775720272872996715925", + "221701638943632069539450876", + "691262586332859426901673738" ], - "mAssetSupply": "61588671597351081960515857" + "mAssetSupply": "1098404260997668750956713519" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "476084430588183763222528", - "691724401879482942619648", - "539686127988067639754752" - ], - "expectedQty": "1713653488500188293684404", - "reserves": [ - "8057573472583702989627528", - "39977038493461005550677011", - "15424372062891326216670957" - ], - "mAssetSupply": "63302325085851270254200261" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "3147750207719174832128", - "expectedQty": "3158021672867714871368", - "reserves": [ - "8057573472583702989627528", - "39977038493461005550677011", - "15427519813099045391503085" - ] - }, - { - "type": "redeemMasset", - "inputQty": "493424533884878035353", - "expectedQtys": [ - "62784635682685211866", - "311501198968255331949", - "120211278773762291934" - ], - "redemptionFee": "148027360165463410", - "reserves": [ - "8057510687948020304415662", - "39976726992262037295345062", - "15427399601820271629211151" - ], - "mAssetSupply": "63304989831017613256499686" - }, - { - "type": "redeemMasset", - "inputQty": "10932945155505375097651", - "expectedQtys": [ - "1391136701539314998944", - "6902019032942283875568", - "2663554865339031249975" - ], - "redemptionFee": "3279883546651612529", - "reserves": [ - "8056119551246480989416718", - "39969824973229095011469494", - "15424736046954932597961176" - ], - "mAssetSupply": "63294060165745654533014564" - }, - { - "type": "redeemMasset", - "inputQty": "4262202407266837489254", - "expectedQtys": [ - "542333846351764159903", - "2690748167011023018197", - "1038385338759210309554" + "116237928099978346496", + "43552675962826014720", + "59776050663301644288" ], - "redemptionFee": "1278660722180051246", + "expectedQty": "220694550020840880542", + "swapFee": "132496227749154020", "reserves": [ - "8055577217400129225256815", - "39967134225062083988451297", - "15423697661616173387651622" + "187597659482344773018369429", + "221701595390956106713436156", + "691262526556808763600029450" ], - "mAssetSupply": "63289799241999109875576556" + "mAssetSupply": "1098404040303118730115832977" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1160830405248893976576", - "expectedQty": "1134466829082976308553", - "swapFee": "696498243149336385", - "reserves": [ - "8054442750571046248948262", - "39967134225062083988451297", - "15423697661616173387651622" - ], - "mAssetSupply": "63288639108092104130936365" - }, - { - "type": "redeemMasset", - "inputQty": "438129790898159284440268", - "expectedQtys": [ - "55741957805226136033388", - "276598441203306034557773", - "106741972210730426515620" - ], - "redemptionFee": "131438937269447785332", + "inputIndex": 2, + "inputQty": "2982531017609589760", + "expectedQty": "3006349166888842365", + "swapFee": "1789518610565753", "reserves": [ - "7998700792765820112914874", - "39690535783858777953893524", - "15316955689405442961136002" + "187597659482344773018369429", + "221701595390956106713436156", + "691262523550459596711187085" ], - "mAssetSupply": "62850640756131214294281429" + "mAssetSupply": "1098404037322377231116808970" }, { "type": "mintMulti", "inputQtys": [ - "190438605697204617216", - "297053379429612060672", - "80223708177302224896" - ], - "expectedQty": "569393887661376877493", - "reserves": [ - "7998891231371517317532090", - "39690832837238207565954196", - "15317035913113620263360898" - ], - "mAssetSupply": "62851210150018875671158922" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "2420421542779947057152", - "22498558372275493535744", - "8334022391269549932544" + "168151846369001058861056", + "250150270426263253417984", + "214859231535236988796928" ], - "expectedQty": "33115878882246581432980", - "swapFee": "19881456203069790734", + "expectedQty": "635042377151438578749401", "reserves": [ - "7996470809828737370474938", - "39668334278865932072418452", - "15308701890722350713428354" + "187765811328713774077230485", + "221951745661382369966854140", + "691477382781994833699984013" ], - "mAssetSupply": "62818094271136629089725942" + "mAssetSupply": "1099039079699528669695558371" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "431322370046360513675264", - "expectedQty": "429563089177326869730169", - "swapFee": "258793422027816308205", + "inputQty": "2903027562553152399998976", + "expectedQty": "2926107629106531176677976", + "swapFee": "1741816537531891439999", "reserves": [ - "7996470809828737370474938", - "39668334278865932072418452", - "14879138801545023843698185" + "187765811328713774077230485", + "221951745661382369966854140", + "688551275152888302523306037" ], - "mAssetSupply": "62387030694512296392358883" + "mAssetSupply": "1096137793953513049186999394" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "3866324048024156241920", - "expectedQty": "3902589588799597076004", - "swapFee": "2319794428814493745", + "inputIndex": 2, + "inputQty": "471474402460808127709184", + "expectedQty": "475208132084437545182436", + "swapFee": "282884641476484876625", "reserves": [ - "7996470809828737370474938", - "39664431689277132475342448", - "14879138801545023843698185" + "187765811328713774077230485", + "221951745661382369966854140", + "688076067020803864978123601" ], - "mAssetSupply": "62383166690258701050610708" + "mAssetSupply": "1095666602435693717544166835" }, { - "type": "mintMulti", - "inputQtys": [ - "171114892564163952640", - "357464612130482094080", - "296033385955463659520" + "type": "redeemMasset", + "inputQty": "3154535999084376", + "expectedQtys": [ + "540434759728924", + "638830027091206", + "1980446926541978" ], - "expectedQty": "826029801216817571042", + "redemptionFee": "946360799725", "reserves": [ - "7996641924721301534427578", - "39664789153889262957436528", - "14879434834930979307357705" + "187765811328173339317501561", + "221951745660743539939762934", + "688076067018823418051581623" ], - "mAssetSupply": "62383992720059917868181750" + "mAssetSupply": "1095666602432540127905882184" }, { "type": "redeemMasset", - "inputQty": "266583225113781731328", + "inputQty": "1622567209324614891706777", "expectedQtys": [ - "34161504743005891120", - "169447237423744138521", - "63564667328086858595" + "277978035492352922714370", + "328588627484679995367319", + "1018662726862981225562905" + ], + "redemptionFee": "486770162797384467512", + "reserves": [ + "187487833292680986394787191", + "221623157033258859944395615", + "687057404291960436826018718" + ], + "mAssetSupply": "1094044521993378310398642919" + }, + { + "type": "mintMulti", + "inputQtys": [ + "201928057221954928640", + "32646236415123849216", + "283252880350954684416" ], - "redemptionFee": "79974967534134519", + "expectedQty": "517938660711291387362", "reserves": [ - "7996607763216558528536458", - "39664619706651839213298007", - "14879371270263651220499110" + "187488035220738208349715831", + "221623189679495275068244831", + "687057687544840787780703134" ], - "mAssetSupply": "62383726216809771620584941" + "mAssetSupply": "1094045039932039021690030281" }, { "type": "redeemBassets", "inputQtys": [ - "574061222781655632052224", - "528658483211439502786560", - "817934509977765643550720" + "21496781747026284544", + "159350540170828513280", + "44864338361357221888" ], - "expectedQty": "1932220266740895567875477", - "swapFee": "1160028176950707765384", + "expectedQty": "226703356134303026892", + "swapFee": "136103675886113484", "reserves": [ - "7422546540434902896484234", - "39135961223440399710511447", - "14061436760285885576948390" + "187488013723956461323431287", + "221623030328955104239731551", + "687057642680502426423481246" ], - "mAssetSupply": "60451505950068876052709464" + "mAssetSupply": "1094044813228682887387003389" }, { - "type": "redeemMasset", - "inputQty": "16320612836296", - "expectedQtys": [ - "2003327531547", - "10562702189257", - "3795148099313" + "type": "redeemBassets", + "inputQtys": [ + "593806436949269413888", + "659117134391512137728", + "829829415263002165248" ], - "redemptionFee": "4896183850", + "expectedQty": "2087095934381711266867", + "swapFee": "1253009366248776025", "reserves": [ - "7422546540432899568952687", - "39135961223429837008322190", - "14061436760282090428849077" + "187487419917519512054017399", + "221622371211820712727593823", + "687056812851087163421315998" ], - "mAssetSupply": "60451505950052560336057018" + "mAssetSupply": "1094042726132748505675736522" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3364492625852189504438272", - "expectedQty": "3326351758784264374581058", + "inputIndex": 2, + "inputQty": "504962787407249342464", + "expectedQty": "500696818066899049820", "reserves": [ - "7422546540432899568952687", - "42500453849282026512760462", - "14061436760282090428849077" + "187487419917519512054017399", + "221622371211820712727593823", + "687057317813874570670658462" ] }, { - "type": "redeemMasset", - "inputQty": "25327479371358958387", - "expectedQtys": [ - "2946759311443763674", - "16872727902579586017", - "5582406183636035319" - ], - "redemptionFee": "7598243811407687", + "type": "mint", + "inputIndex": 0, + "inputQty": "1331254850075499429888", + "expectedQty": "1346241254653485416368", "reserves": [ - "7422543593673588125189013", - "42500436976554123933174445", - "14061431177875906792813758" - ], - "mAssetSupply": "63777832388955697163087376" + "187488751172369587553447287", + "221622371211820712727593823", + "687057317813874570670658462" + ] }, { "type": "mintMulti", "inputQtys": [ - "5176912599637947318272", - "98369758257867685888", - "4511026292772548116480" + "60049741520647726563328", + "152337426743092525924352", + "17210421784533840953344" ], - "expectedQty": "9965658086009434599226", + "expectedQty": "231206143240509379518065", "reserves": [ - "7427720506273226072507285", - "42500535346312381800860333", - "14065942204168679340930238" + "187548800913890235280010615", + "221774708638563805253518175", + "687074528235659104511611806" ], - "mAssetSupply": "63787798047041706597686602" + "mAssetSupply": "1094275779214061735439720775" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "147737536293661369696256", - "expectedQty": "145960954933958086449768", + "inputIndex": 0, + "inputQty": "74199090810527057757339648", + "expectedQty": "74751025914685288836151269", "reserves": [ - "7427720506273226072507285", - "42648272882606043170556589", - "14065942204168679340930238" + "261747891724417293037350263", + "221774708638563805253518175", + "687074528235659104511611806" ] }, { "type": "redeemBassets", "inputQtys": [ - "604205572962014976", - "357360573491940480", - "376836799207793408" + "766504288713967329607680", + "399681126528637223305216", + "1730486157915139505913856" ], - "expectedQty": "1354423279530537020", - "swapFee": "813141852830020", + "expectedQty": "2891958845390189313392323", + "swapFee": "1736217037456587540559", "reserves": [ - "7427719902067653110492309", - "42648272525245469678616109", - "14065941827331880133136830" + "260981387435703325707742583", + "221375027512035168030212959", + "685344042077743965005697950" ], - "mAssetSupply": "63933757647552385153599350" + "mAssetSupply": "1166134846283356834962479721" }, { "type": "redeemMasset", - "inputQty": "4711415542529591450009", + "inputQty": "4420407227090682354073", "expectedQtys": [ - "547200379845022360457", - "3141899699132703335939", - "1036238416670964012413" + "988991900575923352264", + "838903154552022084488", + "2597118949296105267330" ], - "redemptionFee": "1413424662758877435", + "redemptionFee": "1326122168127204706", "reserves": [ - "7427172701687808088131852", - "42645130625546336975280170", - "14064905588915209169124417" + "260980398443802749784390319", + "221374188608880616008128471", + "685341444958794668900430620" ], - "mAssetSupply": "63929047645434518321026776" + "mAssetSupply": "1166130427202251912407330354" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "13718328778479070347264", - "101395544334372175872000", - "32809555899931462467584" + "4471217290033055137792", + "3115456241198600552448", + "2608610336272694116352" ], - "expectedQty": "147306813355813815875818", - "swapFee": "88437150303670491820", + "expectedQty": "10223413256512892448084", "reserves": [ - "7413454372909329017784588", - "42543735081211964799408170", - "14032096033015277706656833" + "260984869661092782839528111", + "221377304065121814608680919", + "685344053569130941594546972" ], - "mAssetSupply": "63781740832078704505150958" + "mAssetSupply": "1166140650615508425299778438" }, { - "type": "redeemBassets", - "inputQtys": [ - "44580177230513079058432", - "41801972712241444683776", - "12487749591326168973312" - ], - "expectedQty": "99779479050535687980914", - "swapFee": "59903629608086264547", + "type": "mint", + "inputIndex": 1, + "inputQty": "29457688423791757099008", + "expectedQty": "29690153114340399652435", "reserves": [ - "7368874195678815938726156", - "42501933108499723354724394", - "14019608283423951537683521" - ], - "mAssetSupply": "63681961353028168817170044" + "260984869661092782839528111", + "221406761753545606365779927", + "685344053569130941594546972" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3816404010352454771146752", - "expectedQty": "3767226683995723187800577", + "inputIndex": 2, + "inputQty": "1618757446054160145317888", + "expectedQty": "1608052595738787384112639", "reserves": [ - "7368874195678815938726156", - "46318337118852178125871146", - "14019608283423951537683521" + "260984869661092782839528111", + "221406761753545606365779927", + "686962811015185101739864860" ] }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "42641008840089387008", + "outputIndex": 2, + "expectedQty": "43100048168694327000", + "swapFee": "25704138948739138", + "reserves": [ + "260984912302101622928915119", + "221406761753545606365779927", + "686962767915136933045537860" + ], + "mAssetSupply": "1167778393390065692032282650", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "2863159429890862743552", - "expectedQty": "2838889821898269559958", - "swapFee": "1717895657934517646", + "inputIndex": 0, + "inputQty": "10393792267740", + "expectedQty": "10339250079027", + "swapFee": "6236275360", "reserves": [ - "7368874195678815938726156", - "46318337118852178125871146", - "14016769393602053268123563" + "260984912302091283678836092", + "221406761753545606365779927", + "686962767915136933045537860" ], - "mAssetSupply": "67446326595489659076744715" + "mAssetSupply": "1167778393390055304476290270" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "3812706869374428905472", + "expectedQty": "3780444702837451550600", + "swapFee": "2287624121624657343", + "reserves": [ + "260984912302091283678836092", + "221402981308842768914229327", + "686962767915136933045537860" + ], + "mAssetSupply": "1167774582970810051672042141" }, { "type": "swap", "inputIndex": 2, - "inputQty": "701519713654217526738944", + "inputQty": "30794830353339438677884928", "outputIndex": 1, - "expectedQty": "715645773161482598737111", - "swapFee": "423990657675938724215", + "expectedQty": "30252883857011950246654538", + "swapFee": "18350395611560493709710", "reserves": [ - "7368874195678815938726156", - "45602691345690695527134035", - "14718289107256270794862507" + "260984912302091283678836092", + "191150097451830818667574789", + "717757598268476371723422788" ], - "mAssetSupply": "67446750586147335015468930", + "mAssetSupply": "1167792933366421612165751851", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "25567164281341068967936", - "17308908223051906154496", - "12856264433154134114304" - ], - "expectedQty": "56477739324783147468979", + "type": "swap", + "inputIndex": 1, + "inputQty": "2015225941798610347753472", + "outputIndex": 2, + "expectedQty": "2054551120753687293223757", + "swapFee": "1223760280507484957176", "reserves": [ - "7394441359960157007694092", - "45620000253913747433288531", - "14731145371689424928976811" + "260984912302091283678836092", + "193165323393629429015328261", + "715703047147722684430199031" ], - "mAssetSupply": "67503228325472118162937909" + "mAssetSupply": "1167794157126702119650709027", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "849909941838160513204224", - "2131142709001115867807744", - "197257286534903141236736" + "type": "redeemMasset", + "inputQty": "11832908369658184", + "expectedQtys": [ + "2643688591116166", + "1956699171421453", + "7249828979314330" ], - "expectedQty": "3180045907735234411001972", + "redemptionFee": "3549872510897", "reserves": [ - "8244351301798317520898316", - "47751142962914863301096275", - "14928402658224328070213547" + "260984912299447595087719926", + "193165323391672729843906808", + "715703047140472855450884701" ], - "mAssetSupply": "70683274233207352573939881" + "mAssetSupply": "1167794157114872761153561740" }, { - "type": "redeemMasset", - "inputQty": "290491519370689721139", - "expectedQtys": [ - "33872166896868884005", - "196187016388213811778", - "61333794234694717691" + "type": "redeemBassets", + "inputQtys": [ + "1719079358569510082707456", + "4064517468947538172182528", + "4266838656596736779223040" ], - "redemptionFee": "87147455811206916", + "expectedQty": "10074168471558259802875683", + "swapFee": "6048129960911502783395", "reserves": [ - "8244317429631420652014311", - "47750946775898475087284497", - "14928341324430093375495856" + "259265832940878085005012470", + "189100805922725191671724280", + "711436208483876118671661661" ], - "mAssetSupply": "70682983828835437695425658" + "mAssetSupply": "1157719988643314501350686057" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "2076519442176879886336", - "expectedQty": "2060510252822474749695", - "swapFee": "1245911665306127931", + "inputQty": "558747320572867248128", + "expectedQty": "554300694088904597550", "reserves": [ - "8244317429631420652014311", - "47750946775898475087284497", - "14926280814177270900746161" + "259265832940878085005012470", + "189100805922725191671724280", + "711436767231196691538909789" + ] + }, + { + "type": "redeemMasset", + "inputQty": "4666778878551821543014", + "expectedQtys": [ + "1044788692380665947245", + "762037872507432484614", + "2866945795809930456539" + ], + "redemptionFee": "1400033663565546462", + "reserves": [ + "259264788152185704339065225", + "189100043884852684239239666", + "711433900285400881608453250" ], - "mAssetSupply": "70680908555304926121667253" + "mAssetSupply": "1157715877565163701999287055" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11346814023151126528", - "2183072784090550528", - "9591187813439358976" + "1643179294724313153798144", + "8828282025723464406532096", + "12178140441550508575948800" ], - "expectedQty": "23507232117490387446", - "swapFee": "14112806954667032", + "expectedQty": "22666592664839832097320153", "reserves": [ - "8244306082817397500887783", - "47750944592825690996733969", - "14926271222989457461387185" + "260907967446910017492863369", + "197928325910576148645771762", + "723612040726951390184402050" ], - "mAssetSupply": "70680885048072808631279807" + "mAssetSupply": "1180382470230003534096607208" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "4037432277736639488", - "expectedQty": "3986861359377883035", + "inputQty": "80384681954473383297024", + "outputIndex": 0, + "expectedQty": "80848882421235627221662", + "swapFee": "48784868694848892999", "reserves": [ - "8244306082817397500887783", - "47750948630257968733373457", - "14926271222989457461387185" - ] + "260827118564488781865641707", + "198008710592530622029068786", + "723612040726951390184402050" + ], + "mAssetSupply": "1180382519014872228945500207", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "3281912780337105600512", - "expectedQty": "3321545632002773331692", - "swapFee": "1969147668202263360", + "inputQty": "893944117539885023232", + "outputIndex": 0, + "expectedQty": "899098460617892100650", + "swapFee": "542524670200182733", + "reserves": [ + "260826219466028163973541057", + "198009604536648161914092018", + "723612040726951390184402050" + ], + "mAssetSupply": "1180382519557396899145682940", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "226921597284022", + "553573936383649", + "22417595219330" + ], + "expectedQty": "810246007597117", + "swapFee": "486439468239", "reserves": [ - "8244306082817397500887783", - "47747627084625965960041765", - "14926271222989457461387185" + "260826219465801242376257035", + "198009604536094587977708369", + "723612040726928972589182720" ], - "mAssetSupply": "70677609091301499105825690" + "mAssetSupply": "1180382519556586653138085823" }, { "type": "swap", "inputIndex": 2, - "inputQty": "41185933950098", - "outputIndex": 1, - "expectedQty": "41981932073575", - "swapFee": "24888616640", + "inputQty": "215393345590574203273216", + "outputIndex": 0, + "expectedQty": "212497248152233500220935", + "swapFee": "128224282428125881332", "reserves": [ - "8244306082817397500887783", - "47747627084583984027968190", - "14926271223030643395337283" + "260613722217649008876036100", + "198009604536094587977708369", + "723827434072519546792455936" ], - "mAssetSupply": "70677609091301523994442330", + "mAssetSupply": "1180382647780869081263967155", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1219386546373862096896", - "expectedQtys": [ - "142194680210767544792", - "823533053711560246301", - "257442693414981277033" - ], - "redemptionFee": "365815963912158629", + "type": "redeem", + "inputIndex": 1, + "inputQty": "320795938135361080786944", + "expectedQty": "316956323846347379787257", + "swapFee": "192477562881216648472", "reserves": [ - "8244163888137186733342991", - "47746803551530272467721889", - "14926013780337228414060250" + "260613722217649008876036100", + "197692648212248240597921112", + "723827434072519546792455936" ], - "mAssetSupply": "70676390070571114044504063" + "mAssetSupply": "1180062044320296601399828683" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1310120070633998254080", - "2352165784381053730816", - "2562014766850240413696" + "565316464806907392", + "649759173935252766720", + "83016157293953974272" ], - "expectedQty": "6252994072661154490511", + "expectedQty": "740182651410440992905", + "swapFee": "444376216576210321", "reserves": [ - "8245474008207820731597071", - "47749155717314653521452705", - "14928575795104078654473946" + "260613721652332544069128708", + "197691998453074305345154392", + "723827351056362252838481664" ], - "mAssetSupply": "70682643064643775198994574" + "mAssetSupply": "1180061304137645190958835778" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1669430830011621398544384", - "expectedQty": "1647999456259228026996669", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5891747358879788176506880", + "expectedQty": "5857272453994271907112782", + "swapFee": "3535048415327872905904", "reserves": [ - "8245474008207820731597071", - "49418586547326274919997089", - "14928575795104078654473946" - ] + "254756449198338272162015926", + "197691998453074305345154392", + "723827351056362252838481664" + ], + "mAssetSupply": "1174173091827180730655234802" }, { - "type": "redeemMasset", - "inputQty": "30531962446914373917081", - "expectedQtys": [ - "3479507009108136922106", - "20854145935148393687479", - "6299708672098152314686" + "type": "redeemBassets", + "inputQtys": [ + "2545543973200922624", + "1423464439582921984", + "577259242932384896" ], - "redemptionFee": "9159588734074312175", + "expectedQty": "4571922443401074472", + "swapFee": "2744800346248393", "reserves": [ - "8241994501198712594674965", - "49397732401391126526309610", - "14922276086431980502159260" + "254756446652794298961093302", + "197691997029609865762232408", + "723827350479103009906096768" ], - "mAssetSupply": "72300119718044822926386337" + "mAssetSupply": "1174173087255258287254160330" }, { "type": "mint", "inputIndex": 2, - "inputQty": "637155019120404352", - "expectedQty": "642254677571021145", + "inputQty": "198000685398588418686976", + "expectedQty": "196423864709548982078680", "reserves": [ - "8241994501198712594674965", - "49397732401391126526309610", - "14922276723586999622563612" + "254756446652794298961093302", + "197691997029609865762232408", + "724025351164501598324783744" ] }, { - "type": "redeemMasset", - "inputQty": "61381068869655973068", - "expectedQtys": [ - "6995156562000480369", - "41924909305057042813", - "12664854596518489315" + "type": "redeemBassets", + "inputQtys": [ + "17949793826420201357312", + "25684782113027010854912", + "21122545429194297311232" ], - "redemptionFee": "18414320660896791", + "expectedQty": "64981778881919231149203", + "swapFee": "39012474814039962667", "reserves": [ - "8241987506042150594194596", - "49397690476481821469266797", - "14922264058732403104074297" + "254738496858967878759735990", + "197666312247496838751377496", + "724004228619072404027472512" ], - "mAssetSupply": "72300058997644951502331205" + "mAssetSupply": "1174304529341085917005089807" }, { "type": "redeemMasset", - "inputQty": "10849884190903989226700", + "inputQty": "68942157721309749549465", "expectedQtys": [ - "1236482843857207277012", - "7410760663682321168858", - "2238674043924869869347" + "14950936935841738196169", + "11601295466499050364083", + "42492759032645700221575" ], - "redemptionFee": "3254965257271196768", + "redemptionFee": "20682647316392924864", "reserves": [ - "8240751023198293386917584", - "49390279715818139148097939", - "14920025384688478234204950" + "254723545922032037021539821", + "197654710952030339701013413", + "723961735860039758327250937" ], - "mAssetSupply": "72289212368419304784301273" + "mAssetSupply": "1174235607866011923648465206" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "934169217183883722752", - "expectedQty": "926194896424535375719", - "swapFee": "560501530310330233", + "inputQty": "3029310951969984346062848", + "expectedQty": "3005105078067990486372847", "reserves": [ - "8240751023198293386917584", - "49390279715818139148097939", - "14919099189792053698829231" - ], - "mAssetSupply": "72288278759703651210908754" + "254723545922032037021539821", + "197654710952030339701013413", + "726991046812009742673313785" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "139546646454597809340416", - "outputIndex": 2, - "expectedQty": "142766611327675309591957", - "swapFee": "86408623513357372953", + "inputQty": "136917906976192971407360", + "outputIndex": 1, + "expectedQty": "136018596724915750791815", + "swapFee": "82605666135205033338", "reserves": [ - "8380297669652891196258000", - "49390279715818139148097939", - "14776332578464378389237274" + "254860463829008229992947181", + "197518692355305423950221598", + "726991046812009742673313785" ], - "mAssetSupply": "72288365168327164568281707", + "mAssetSupply": "1177240795549746049339871391", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "690847900531560808448", - "303105076504042995712", - "673559289480777826304" + "type": "redeemMasset", + "inputQty": "218218152489027142837862", + "expectedQtys": [ + "47227801835929095628101", + "36601886072477797152118", + "134717596364290732366213" ], - "expectedQty": "1690858568712342926907", - "swapFee": "1015124215756859872", + "redemptionFee": "65465445746708142851", "reserves": [ - "8379606821752359635449552", - "49389976610741635105102227", - "14775659019174897611410970" + "254813236027172300897319080", + "197482090469232946153069480", + "726856329215645451940947572" ], - "mAssetSupply": "72286674309758452225354800" + "mAssetSupply": "1177022642862702768905176380" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "73394856460592800071680", - "outputIndex": 2, - "expectedQty": "75013288825636775180250", - "swapFee": "45410109263527979390", + "type": "redeem", + "inputIndex": 1, + "inputQty": "10301738298811734164504576", + "expectedQty": "10170381589613804719511342", + "swapFee": "6181042979287040498702", "reserves": [ - "8453001678212952435521232", - "49389976610741635105102227", - "14700645730349260836230720" + "254813236027172300897319080", + "187311708879619141433558138", + "726856329215645451940947572" ], - "mAssetSupply": "72286719719867715753334190", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1166727085606870321781170506" + }, + { + "type": "redeemMasset", + "inputQty": "30135034619202922086", + "expectedQtys": [ + "6579518159904820631", + "4836565044073450658", + "18768116179043867176" + ], + "redemptionFee": "9040510385760876", + "reserves": [ + "254813229447654140992498449", + "187311704043054097360107480", + "726856310447529272897080396" + ], + "mAssetSupply": "1166727055480876212964009296" }, { "type": "mintMulti", "inputQtys": [ - "38637105702967816749056", - "4372924283097443729408", - "570894143110661734400" + "34954219741276471820288", + "2921001788134673874944", + "72779023019066154549248" ], - "expectedQty": "44717407595018786634174", + "expectedQty": "110272767648800575462883", "reserves": [ - "8491638783915920252270288", - "49394349535024732548831635", - "14701216624492371497965120" + "254848183667395417464318737", + "187314625044842232033982424", + "726929089470548339051629644" ], - "mAssetSupply": "72331437127462734539968364" + "mAssetSupply": "1166837328248525013539472179" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "893693104558286315716608", - "expectedQty": "900522494792968231652209", + "type": "redeemMasset", + "inputQty": "1232169369702907711691161", + "expectedQtys": [ + "269036577251813233365612", + "197743161697559550773074", + "767400070589375720310477" + ], + "redemptionFee": "369650810910872313507", "reserves": [ - "8491638783915920252270288", - "49394349535024732548831635", - "15594909729050657813681728" - ] + "254579147090143604230953125", + "187116881883144672483209350", + "726161689399958963331319167" + ], + "mAssetSupply": "1165605528529633016700094525" }, { - "type": "redeemBassets", - "inputQtys": [ - "52264133925303287283712", - "34842429121641794502656", - "56614017381479036747776" - ], - "expectedQty": "145289403401720445467168", - "swapFee": "87225977627608832579", + "type": "swap", + "inputIndex": 2, + "inputQty": "13080550104629833105408", + "outputIndex": 1, + "expectedQty": "12796079149380672009843", + "swapFee": "7782658450618433562", "reserves": [ - "8439374649990616964986576", - "49359507105903090754328979", - "15538295711669178776933952" + "254579147090143604230953125", + "187104085803995291811199507", + "726174769950063593164424575" ], - "mAssetSupply": "73086670218853982326153405" + "mAssetSupply": "1165605536312291467318528087", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "120852653021861", - "122816100438726", - "45004291908787" + "446831136486911956221952", + "293517089782247140098048", + "41871674897602346745856" ], - "expectedQty": "291190749030965", - "swapFee": "174819341023", + "expectedQty": "788137166496794433668738", + "swapFee": "473166199617847368622", "reserves": [ - "8439374649869764311964715", - "49359507105780274653890253", - "15538295711624174485025165" + "254132315953656692274731173", + "186810568714213044671101459", + "726132898275165990817678719" ], - "mAssetSupply": "73086670218562791577122440" + "mAssetSupply": "1164817399145794672884859349" }, { "type": "mint", "inputIndex": 0, - "inputQty": "3958521212266575254519808", - "expectedQty": "4040411105488954539286129", + "inputQty": "15610340816667790343667712", + "expectedQty": "15687340606085793067015867", "reserves": [ - "12397895862136339566484523", - "49359507105780274653890253", - "15538295711624174485025165" + "269742656770324482618398885", + "186810568714213044671101459", + "726132898275165990817678719" ] }, { "type": "mintMulti", "inputQtys": [ - "312920687851050536796160", - "7443115172612888391057408", - "2545487481763701073117184" + "589724410699679006720", + "2887576308419094118400", + "4411618118883606003712" ], - "expectedQty": "10253494947835269509888592", + "expectedQty": "7894302099331018637699", "reserves": [ - "12710816549987390103280683", - "56802622278393163044947661", - "18083783193387875558142349" + "269743246494735182297405605", + "186813456290521463765219859", + "726137309893284874423682431" ], - "mAssetSupply": "87380576271887015626297161" + "mAssetSupply": "1180512634053979796970512915" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "399086300829814464970752", - "expectedQty": "395082560630245776110850", + "type": "redeemMasset", + "inputQty": "86883267625011004414361", + "expectedQtys": [ + "19846584565877252052831", + "13744956014630055304604", + "53426158817722147562096" + ], + "redemptionFee": "26064980287503301324", "reserves": [ - "12710816549987390103280683", - "57201708579222977509918413", - "18083783193387875558142349" - ] + "269723399910169305045352774", + "186799711334506833709915255", + "726083883734467152276120335" + ], + "mAssetSupply": "1180425776851335073469399878" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "34633356327318064201728", - "12632840767466090004480", - "320794929720335666249728" + "169204588925397434368", + "177938985006319075328", + "117499495134569103360" + ], + "expectedQty": "466812708725744530784", + "swapFee": "280255778702668319", + "reserves": [ + "269723230705580379647918406", + "186799533395521827390839927", + "726083766234972017707016975" + ], + "mAssetSupply": "1180425310038626347724869094" + }, + { + "type": "redeemMasset", + "inputQty": "4098118017031609937140121", + "expectedQtys": [ + "936125322525440813082490", + "648322997578075629486700", + "2520010597786219295722854" ], - "expectedQty": "370789863445377353333677", + "redemptionFee": "1229435405109482981142", "reserves": [ - "12745449906314708167482411", - "57214341419990443599922893", - "18404578123108211224392077" + "268787105383054938834835916", + "186151210397943751761353227", + "723563755637185798411294121" ], - "mAssetSupply": "88146448695962638755741688" + "mAssetSupply": "1176328421456999847270710115" }, { "type": "mint", "inputIndex": 2, - "inputQty": "989849767030917699731456", - "expectedQty": "996046897657436129811530", + "inputQty": "1201283805225118859264", + "expectedQty": "1191580329077136855958", "reserves": [ - "12745449906314708167482411", - "57214341419990443599922893", - "19394427890139128924123533" + "268787105383054938834835916", + "186151210397943751761353227", + "723564956920991023530153385" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "507323205544597541355520", - "expectedQty": "510114914824392773297325", + "inputIndex": 0, + "inputQty": "10843106300204490726309888", + "expectedQty": "10887995642958007982121771", "reserves": [ - "12745449906314708167482411", - "57214341419990443599922893", - "19901751095683726465479053" + "279630211683259429561145804", + "186151210397943751761353227", + "723564956920991023530153385" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1222369943358264997576704", - "1103354567851806379999232", - "1586805708503578780368896" + "7421357028812703924224", + "26785598821884613361664", + "63750823076127506956288" ], - "expectedQty": "3934523463841222483055227", - "swapFee": "2362131357119004892768", + "expectedQty": "97843614496053709875182", "reserves": [ - "11523079962956443169905707", - "56110986852138637219923661", - "18314945387180147685110157" + "279637633040288242265070028", + "186177995996765636374714891", + "723628707744067151037109673" ], - "mAssetSupply": "85718087044603245175795316" + "mAssetSupply": "1187315452294782986099563026" }, { "type": "mintMulti", "inputQtys": [ - "28058796367954782978048", - "42580694945077422718976", - "40942734229048129486848" - ], - "expectedQty": "111987645873142270159937", - "reserves": [ - "11551138759324397952883755", - "56153567547083714642642637", - "18355888121409195814597005" + "12423403831062964469760", + "26465021735180349472768", + "28196389398081825669120" ], - "mAssetSupply": "85830074690476387445955253" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "15336525413123708944384", - "outputIndex": 2, - "expectedQty": "15551629043060251055679", - "swapFee": "9395961063536470253", + "expectedQty": "67265808100170751105631", "reserves": [ - "11566475284737521661828139", - "56153567547083714642642637", - "18340336492366135563541326" + "279650056444119305229539788", + "186204461018500816724187659", + "723656904133465232862778793" ], - "mAssetSupply": "85830084086437450982425506", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1187382718102883156850668657" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "58305814389950339088384", - "expectedQty": "57900147778394445267816", - "swapFee": "34983488633970203453", + "inputQty": "58831600539009726428479488", + "expectedQty": "59235775351491664691764017", + "swapFee": "35298960323405835857087", "reserves": [ - "11566475284737521661828139", - "56153567547083714642642637", - "18282436344587741118273510" + "279650056444119305229539788", + "186204461018500816724187659", + "664421128781973568171014776" ], - "mAssetSupply": "85771813255536134613540575" + "mAssetSupply": "1128586416524196836258046256" }, { - "type": "redeemBassets", - "inputQtys": [ - "2059235629716653320699904", - "1443627980946698542252032", - "2100392125192283294269440" - ], - "expectedQty": "5653659886614667949794507", - "swapFee": "3394232471451671772940", + "type": "swap", + "inputIndex": 1, + "inputQty": "38325594483095488", + "outputIndex": 0, + "expectedQty": "38628569870312245", + "swapFee": "23258056624762", "reserves": [ - "9507239655020868341128235", - "54709939566137016100390605", - "16182044219395457824004070" + "279650056405490735359227543", + "186204461056826411207283147", + "664421128781973568171014776" ], - "mAssetSupply": "80118153368921466663746068" + "mAssetSupply": "1128586416524220094314671018", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "15513725747997437853696", - "expectedQty": "15053037173866141869623", - "swapFee": "9308235448798462712", + "inputIndex": 2, + "inputQty": "4524985129462740660781056", + "expectedQty": "4553805548685827763181441", + "swapFee": "2714991077677644396468", "reserves": [ - "9492186617847002199258612", - "54709939566137016100390605", - "16182044219395457824004070" + "279650056405490735359227543", + "186204461056826411207283147", + "659867323233287740407833335" ], - "mAssetSupply": "80102648951408918024355084" + "mAssetSupply": "1124064146385835031298286430" }, { "type": "redeemMasset", - "inputQty": "21883786693577972855603", + "inputQty": "12417125209592741180211", "expectedQtys": [ - "2592456958950374264343", - "14942095985061514407163", - "4419556297780597843892" + "3088265061641342662748", + "2056315449369107733874", + "7287126009748752071254" ], - "redemptionFee": "6565136008073391856", + "redemptionFee": "3725137562877822354", "reserves": [ - "9489594160888051824994269", - "54694997470151954585983442", - "16177624663097677226160178" + "279646968140429094016564795", + "186202404741377042099549273", + "659860036107277991655762081" ], - "mAssetSupply": "80080771729851348124891337" + "mAssetSupply": "1124051732985763001434928573" }, { "type": "redeemBassets", "inputQtys": [ - "1237663233997414144", - "709750351385353856", - "717026561501131648" + "817143967738986850418688", + "813467045099689740337152", + "550566680870063098036224" ], - "expectedQty": "2698606039398402704", - "swapFee": "1620135705062078", + "expectedQty": "2188895152765723242999407", + "swapFee": "1314125566999633726035", "reserves": [ - "9489592923224817827580125", - "54694996760401603200629586", - "16177623946071115725028530" + "278829824172690107166146107", + "185388937696277352359212121", + "659309469426407928557725857" ], - "mAssetSupply": "80080769031245308726488633" + "mAssetSupply": "1121862837832997278191929166" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "463588295349676141445120", - "expectedQty": "459200452247333042509321", - "swapFee": "278152977209805684867", + "type": "mintMulti", + "inputQtys": [ + "37074862678296616", + "29991292794076396", + "17904242841579252" + ], + "expectedQty": "85292373982882344", "reserves": [ - "9489592923224817827580125", - "54694996760401603200629586", - "15718423493823782682519209" + "278829824209764969844442723", + "185388937726268645153288517", + "659309469444312171399305109" ], - "mAssetSupply": "79617458888872842390728380" + "mAssetSupply": "1121862837918289652174811510" }, { "type": "mintMulti", "inputQtys": [ - "508744023551989298233344", - "80279720254974956929024", - "2280082811226911445876736" + "1252216202370286878720", + "35972058118851341058048", + "160385181694199158800384" ], - "expectedQty": "2899962647211009795336085", + "expectedQty": "196911666490912654442926", "reserves": [ - "9998336946776807125813469", - "54775276480656578157558610", - "17998506305050694128395945" + "278831076425967340131321443", + "185424909784387496494346565", + "659469854626006370558105493" ], - "mAssetSupply": "82517421536083852186064465" + "mAssetSupply": "1122059749584780564829254436" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "376141984259523330703360", - "expectedQty": "378345649819727824713841", + "inputQty": "2045145873438990080", + "expectedQty": "2058163895412500561", + "swapFee": "1227087524063394", "reserves": [ - "9998336946776807125813469", - "54775276480656578157558610", - "18374648289310217459099305" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "11148020420607913984", - "expectedQty": "11451344282332344053", - "reserves": [ - "9998348094797227733727453", - "54775276480656578157558610", - "18374648289310217459099305" - ] + "278831076425967340131321443", + "185424909784387496494346565", + "659469852567842475145604932" + ], + "mAssetSupply": "1122059747540861778914327750" }, { - "type": "mintMulti", - "inputQtys": [ - "141364196072281526501376", - "173834188926969442205696", - "213876997030314107731968" + "type": "redeemMasset", + "inputQty": "75636261930042840108236", + "expectedQtys": [ + "18789920460918443642730", + "12495448322980205594638", + "44440477133880087729437" ], - "expectedQty": "532089897080105355444889", + "redemptionFee": "22690878579012852032", "reserves": [ - "10139712290869509260228829", - "54949110669583547599764306", - "18588525286340531566831273" + "278812286505506421687678713", + "185412414336064516288751927", + "659425412090708595057875495" ], - "mAssetSupply": "83427868534327967698567248" + "mAssetSupply": "1121984133969810315087071546" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "381946558237178003456", - "expectedQty": "379636081772143770088", - "swapFee": "229167934942306802", - "reserves": [ - "10139712290869509260228829", - "54949110669583547599764306", - "18588145650258759423061185" + "type": "redeemMasset", + "inputQty": "229287934422796887654", + "expectedQtys": [ + "56960800818494354279", + "37879390950241133462", + "134719312493463553524" ], - "mAssetSupply": "83427486816937665462870594" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "178201148323282833899520", - "expectedQty": "179160741882784724587884", + "redemptionFee": "68786380326839066", "reserves": [ - "10139712290869509260228829", - "54949110669583547599764306", - "18766346798582042256960705" - ] + "278812229544705603193324434", + "185412376456673566047618465", + "659425277371396101594321971" + ], + "mAssetSupply": "1121983904750662272617022958" }, { "type": "redeemBassets", "inputQtys": [ - "4022403123434697523200", - "7029322218980603068416", - "6800346896401389584384" + "4512361179368663285760", + "5725939528075349852160", + "6878883135866002210816" ], - "expectedQty": "17916207523348857536290", - "swapFee": "10756178220941879649", + "expectedQty": "17147434208722952520714", + "swapFee": "10294637307618342517", "reserves": [ - "10135689887746074562705629", - "54942081347364566996695890", - "18759546451685640867376321" + "278807717183526234530038674", + "185406650517145490697766305", + "659418398488260235592111155" ], - "mAssetSupply": "83588731351297101329922188" + "mAssetSupply": "1121966757316453549664502244" }, { "type": "mintMulti", "inputQtys": [ - "233661999774978720", - "22167437440129544", - "242970026108291168" + "96382323327047920", + "37585281434260048", + "116443454080565776" ], - "expectedQty": "506066688167260190", + "expectedQty": "250305822319519060", "reserves": [ - "10135690121408074337684349", - "54942081369532004436825434", - "18759546694655666975667489" + "278807717279908557857086594", + "185406650554730772132026353", + "659418398604703689672676931" ], - "mAssetSupply": "83588731857363789497182378" + "mAssetSupply": "1121966757566759371984021304" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "4690046566837002923147264", - "expectedQty": "4647613810663935881899899", - "swapFee": "2814027940102201753888", + "type": "redeemBassets", + "inputQtys": [ + "1218173132090332938240", + "1935316116074670850048", + "1349294126231795793920" + ], + "expectedQty": "4518889631563636090284", + "swapFee": "2712961555871704676", "reserves": [ - "10135690121408074337684349", - "54942081369532004436825434", - "14111932883991731093767590" + "278806499106776467524148354", + "185404715238614697461176305", + "659417049310577457876883011" ], - "mAssetSupply": "78901499318466888775789002" + "mAssetSupply": "1121962238677127808347931020" }, { "type": "mintMulti", "inputQtys": [ - "47032858423979799478272", - "87488196073155557588992", - "21450285503741163470848" + "251208150311415488446464", + "308651768216586488381440", + "416376392677446486327296" ], - "expectedQty": "156315631430524656708364", + "expectedQty": "977571795224189803637394", "reserves": [ - "10182722979832054137162621", - "55029569565605159994414426", - "14133383169495472257238438" + "279057707257087883012594818", + "185713367006831283949557745", + "659833425703254904363210307" ], - "mAssetSupply": "79057814949897413432497366" + "mAssetSupply": "1122939810472351998151568414" }, { - "type": "redeemMasset", - "inputQty": "228007632970629513216", - "expectedQtys": [ - "29358793229093736113", - "158661073031496529167", - "40749323626165731062" + "type": "redeemBassets", + "inputQtys": [ + "12289914980704458899456", + "17438650173570441805824", + "25709894321799799242752" ], - "redemptionFee": "68402289891188853", + "expectedQty": "55493272864402275375564", + "swapFee": "33315953290615734666", "reserves": [ - "10182693621038825043426508", - "55029410904532128497885259", - "14133342420171846091507376" + "279045417342107178553695362", + "185695928356657713507751921", + "659807715808933104563967555" ], - "mAssetSupply": "79057587010666732694173003" + "mAssetSupply": "1122884317199487595876192850" }, { "type": "mintMulti", "inputQtys": [ - "49977743672600957026304", - "11712291929414006996992", - "7811258003295546900480" + "91740377677710426112", + "95404014807366729728", + "24636926076213198848" ], - "expectedQty": "70753872131304900100118", + "expectedQty": "212953024279692093030", "reserves": [ - "10232671364711426000452812", - "55041123196461542504882251", - "14141153678175141638407856" + "279045509082484856264121474", + "185696023760672520874481649", + "659807740445859180777166403" ], - "mAssetSupply": "79128340882798037594273121" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "585124362614318957592576", - "outputIndex": 1, - "expectedQty": "606808144910827503616083", - "swapFee": "359698983671231068546", - "reserves": [ - "10817795727325744958045388", - "54434315051550715001266168", - "14141153678175141638407856" - ], - "mAssetSupply": "79128700581781708825341667", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1122884530152511875568285880" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2193339914537173459664896", - "expectedQty": "2233760645214886235290478", + "inputIndex": 1, + "inputQty": "3489614294771483627487232", + "expectedQty": "3528358212153878309126944", "reserves": [ - "13011135641862918417710284", - "54434315051550715001266168", - "14141153678175141638407856" + "279045509082484856264121474", + "189185638055444004501968881", + "659807740445859180777166403" ] }, { - "type": "mintMulti", - "inputQtys": [ - "30984878554638995947520", - "56145700428089349111808", - "64012067369419941085184" + "type": "redeemMasset", + "inputQty": "1603198308691545669238784", + "expectedQtys": [ + "397040093594669025976494", + "269182914597981047584445", + "938807895108154500546871" ], - "expectedQty": "151776281597236087935592", + "redemptionFee": "480959492607463700771", "reserves": [ - "13042120520417557413657804", - "54490460751978804350377976", - "14205165745544561579493040" + "278648468988890187238144980", + "188916455140846023454384436", + "658868932550751026276619532" ], - "mAssetSupply": "81514237508593831148567737" + "mAssetSupply": "1124810171015466815671874811" }, { "type": "redeemMasset", - "inputQty": "56432033441195667908198", + "inputQty": "7532401031619574077849", "expectedQtys": [ - "9026307622154124814546", - "37712246290799453325695", - "9831238381997903113221" + "1865436854800362251286", + "1264717940768676219610", + "4410856423231052458916" ], - "redemptionFee": "16929610032358700372", + "redemptionFee": "2259720309485872223", "reserves": [ - "13033094212795403288843258", - "54452748505688004897052281", - "14195334507162563676379819" + "278646603552035386875893694", + "188915190422905254778164826", + "658864521694327795224160616" ], - "mAssetSupply": "81457822404762667839359911" + "mAssetSupply": "1124802640874155505583669185" }, { - "type": "redeemMasset", - "inputQty": "7184950864140546867", - "expectedQtys": [ - "1149233383861217501", - "4801539481261329837", - "1251717515760157007" - ], - "redemptionFee": "2155485259242164", + "type": "swap", + "inputIndex": 1, + "inputQty": "62704613817325984159891456", + "outputIndex": 0, + "expectedQty": "62811987775945122686661227", + "swapFee": "37915329400407022012527", "reserves": [ - "13033093063562019427625757", - "54452743704148523635722444", - "14195333255445047916222812" + "215834615776090264189232467", + "251619804240231238938056282", + "658864521694327795224160616" ], - "mAssetSupply": "81457815221967288958055208" + "mAssetSupply": "1124840556203555912605681712", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "11845911478410112139264", - "24957777081287665778688", - "26984817971922160582656" + "491830446082234", + "2482716471666235", + "1676528688538092" ], - "expectedQty": "64021791126462057413540", + "expectedQty": "4655424143978526", "reserves": [ - "13044938975040429539765021", - "54477701481229811301501132", - "14222318073416970076805468" + "215834615776582094635314701", + "251619804242713955409722517", + "658864521696004323912698708" ], - "mAssetSupply": "81521837013093751015468748" + "mAssetSupply": "1124840556208211336749660238" }, { "type": "mintMulti", "inputQtys": [ - "10435155828940698812416", - "4379496236762487324672", - "13419094855819947147264" + "51458745219758914797568", + "4674395649794903113728", + "39710512200751725412352" ], - "expectedQty": "28503836062885253147731", + "expectedQty": "95999251625891141985205", "reserves": [ - "13055374130869370238577437", - "54482080977466573788825804", - "14235737168272790023952732" + "215886074521801853550112269", + "251624478638363750312836245", + "658904232208205075638111060" ], - "mAssetSupply": "81550340849156636268616479" + "mAssetSupply": "1124936555459837227891645443" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "22578373043294", - "outputIndex": 1, - "expectedQty": "23150580762940", - "swapFee": "13748475432", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7670843530058358287499264", + "expectedQty": "7629102855938666968579002", + "swapFee": "4602506118035014972499", "reserves": [ - "13055374130891948611620731", - "54482080977443423208062864", - "14235737168272790023952732" + "215886074521801853550112269", + "243995375782425083344257243", + "658904232208205075638111060" ], - "mAssetSupply": "81550340849156650017091911", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1117270314435896904619118678" }, { "type": "mint", "inputIndex": 2, - "inputQty": "13739476050314564468736", - "expectedQty": "13905120431873735009402", + "inputQty": "7664302202083157737472", + "expectedQty": "7613280296127119203259", "reserves": [ - "13055374130891948611620731", - "54482080977443423208062864", - "14249476644323104588421468" + "215886074521801853550112269", + "243995375782425083344257243", + "658911896510407158795848532" ] }, { - "type": "redeemMasset", - "inputQty": "24770086370567213652377", - "expectedQtys": [ - "3963571613465952029268", - "16540592972650008827739", - "4326097480465423541538" + "type": "redeemBassets", + "inputQtys": [ + "185361745184510330273792", + "152967402850382193360896", + "59832530981763499950080" ], - "redemptionFee": "7431025911170164095", + "expectedQty": "399941558918785207255578", + "swapFee": "240109000751722157647", "reserves": [ - "13051410559278482659591463", - "54465540384470773199235125", - "14245150546842639164879930" + "215700712776617343219838477", + "243842408379574701150896347", + "658852063979425395295898452" ], - "mAssetSupply": "81539483314243867708613031" + "mAssetSupply": "1116877986157274246531066359" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "646547090935420032", - "expectedQty": "653214038353656160", - "swapFee": "387928254561252", + "type": "redeemMasset", + "inputQty": "7712470608776588333731020", + "expectedQtys": [ + "1489049253877368785670307", + "1683320150347815003919931", + "4548261160824862407291491" + ], + "redemptionFee": "2313741182632976500119", "reserves": [ - "13051410559278482659591463", - "54465539731256734845578965", - "14245150546842639164879930" + "214211663522739974434168170", + "242159088229226886146976416", + "654303802818600532888606961" ], - "mAssetSupply": "81539482668084705027754251" + "mAssetSupply": "1109167829289680291173835458" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "215607070062907162624", - "46220866408330878976", - "15015640976259223552" + "374398691991244578488320", + "2438593972338978010955776", + "1518041438801441109049344" ], - "expectedQty": "279731530258059333875", - "swapFee": "167939681964014008", + "expectedQty": "4336085172973341696986822", "reserves": [ - "13051194952208419752428839", - "54465493510390326514699989", - "14245135531201662905656378" + "214586062214731219012656490", + "244597682201565864157932192", + "655821844257401973997656305" ], - "mAssetSupply": "81539202936554446968420376" + "mAssetSupply": "1113503914462653632870822280" }, { "type": "mintMulti", "inputQtys": [ - "7387023425565102178304", - "2659314433837933527040", - "2650501289721113608192" + "272742007768550014976", + "814669104071283965952", + "1159422368361289613312" ], - "expectedQty": "12809826687129652094381", + "expectedQty": "2245277341597239362851", "reserves": [ - "13058581975633984854607143", - "54468152824824164448227029", - "14247786032491384019264570" + "214586334956738987562671466", + "244598496870669935441898144", + "655823003679770335287269617" ], - "mAssetSupply": "81552012763241576620514757" + "mAssetSupply": "1113506159739995230110185131" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "40452973374759745093632", + "expectedQty": "40654727899295214356555", + "reserves": [ + "214586334956738987562671466", + "244638949844044695186991776", + "655823003679770335287269617" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "3517738269681648640", - "682100901659945088", - "1697141515361928960" + "246760414899572517634048", + "73670507878563813785600", + "237280007017419130273792" ], - "expectedQty": "5962299029953826120", + "expectedQty": "558377080008597004593630", + "swapFee": "335227384435819694572", "reserves": [ - "13058585493372254536255783", - "54468153506925066108172117", - "14247787729632899381193530" + "214339574541839415045037418", + "244565279336166131373206176", + "655585723672752916156995825" ], - "mAssetSupply": "81552018725540606574340877" + "mAssetSupply": "1112988437387885928319948056" }, { "type": "redeemBassets", "inputQtys": [ - "71209419122839883087872", - "55808097494034892718080", - "23427621450377615900672" + "606508474636925824", + "1828921719907526144", + "2153484128216224000" + ], + "expectedQty": "4588349485578851772", + "swapFee": "2754662488840615", + "reserves": [ + "214339573935330940408111594", + "244565277507244411465680032", + "655585721519268787940771825" + ], + "mAssetSupply": "1112988432799536442741096284" + }, + { + "type": "mintMulti", + "inputQtys": [ + "68934719754681834274816", + "60192518021353970860032", + "23460095081922303098880" ], - "expectedQty": "151186913576995014571700", - "swapFee": "90766608111063646931", + "expectedQty": "153255069792387236554912", "reserves": [ - "12987376074249414653167911", - "54412345409431031215454037", - "14224360108182521765292858" + "214408508655085622242386410", + "244625470025265765436540064", + "655609181614350710243870705" ], - "mAssetSupply": "81400831811963611559769177" + "mAssetSupply": "1113141687869328829977651196" }, { "type": "mint", "inputIndex": 2, - "inputQty": "7777301715454198", - "expectedQty": "7871054558446561", + "inputQty": "29031919712283749657870336", + "expectedQty": "28833030801571325895705056", "reserves": [ - "12987376074249414653167911", - "54412345409431031215454037", - "14224360115959823480747056" + "214408508655085622242386410", + "244625470025265765436540064", + "684641101326634459901741041" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "263768142616841472", - "98598792608511248", - "155249237936491552" + "type": "redeemMasset", + "inputQty": "4378855813826643335577", + "expectedQtys": [ + "821894101620046115849", + "937725056626517469559", + "2624441009532045345130" ], - "expectedQty": "522377489103664254", - "swapFee": "313614662259554", + "redemptionFee": "1313656744147993000", "reserves": [ - "12987375810481272036326439", - "54412345310832238606942789", - "14224359960710585544255504" + "214407686760984002196270561", + "244624532300209138919070505", + "684638476885624927856395911" ], - "mAssetSupply": "81400831297457177014551484" + "mAssetSupply": "1141970341128743073378013675" }, { "type": "mint", "inputIndex": 0, - "inputQty": "37948815675112237826048", - "expectedQty": "38516385288913002701448", + "inputQty": "447334795725148480", + "expectedQty": "451055426114443052", "reserves": [ - "13025324626156384274152487", - "54412345310832238606942789", - "14224359960710585544255504" + "214407687208318797921419041", + "244624532300209138919070505", + "684638476885624927856395911" ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "115027006469998135738368", - "outputIndex": 1, - "expectedQty": "117592374346441985500080", - "swapFee": "69840006500608673224", + "inputIndex": 1, + "inputQty": "392760031242014865489920", + "outputIndex": 0, + "expectedQty": "391432798471113316348509", + "swapFee": "236960760862123560299", "reserves": [ - "13025324626156384274152487", - "54294752936485796621442709", - "14339386967180583679993872" + "214016254409847684605070532", + "245017292331451153784560425", + "684638476885624927856395911" ], - "mAssetSupply": "81439417522752590625926156", + "mAssetSupply": "1141970578540559361616017026", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "197341481999247631974", + "inputQty": "1890565298186", "expectedQtys": [ - "31553095691892789265", - "131525899287943380305", - "34736335724788949873" + "354203801677", + "405511519019", + "1133098754375" ], - "redemptionFee": "59202444599774289", + "redemptionFee": "567169589", "reserves": [ - "13025293073060692381363222", - "54294621410586508678062404", - "14339352230844858891043999" + "214016254409847330401268855", + "245017292331450748273041406", + "684638476885623794757641536" ], - "mAssetSupply": "81439220240473035978068471" + "mAssetSupply": "1141970578540557471617888429" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "6390090248695583254511616", - "outputIndex": 0, - "expectedQty": "6083279691598466334377919", - "swapFee": "3789362286191215739212", + "inputQty": "13575466644846008", + "expectedQty": "13492855827703162", + "swapFee": "8145279986907", "reserves": [ - "6942013381462226046985303", - "60684711659282091932574020", - "14339352230844858891043999" + "214016254409847330401268855", + "245017292317957892445338244", + "684638476885623794757641536" ], - "mAssetSupply": "81443009602759227193807683", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1141970578526990150253029328" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "26581178498572416450560", - "expectedQty": "27133844040029687997294", - "swapFee": "15948707099143449870", + "type": "redeemMasset", + "inputQty": "15825141423603987985203", + "expectedQtys": [ + "2964893759439290118534", + "3394369474185135522141", + "9484701772711744419026" + ], + "redemptionFee": "4747542427081196395", "reserves": [ - "6942013381462226046985303", - "60657577815242062244576726", - "14339352230844858891043999" + "214013289516087891111150321", + "245013897948483707309816103", + "684628992183851083013222510" ], - "mAssetSupply": "81416444372967753920806993" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "7760865607727153573527552", - "hardLimitError": true + "mAssetSupply": "1141954758133108973346240520" }, { "type": "redeemMasset", - "inputQty": "14723665130752039924531", + "inputQty": "5969628062282608196924211", "expectedQtys": [ - "1255043960525344921959", - "10966260436836055909889", - "2592406039323535284206" + "1118430004147448475639394", + "1280438684524334607698698", + "3577860086628348438620299" ], - "redemptionFee": "4417099539225611977", + "redemptionFee": "1790888418684782459077", "reserves": [ - "6940758337501700702063344", - "60646611554805226188666837", - "14336759824805535355759793" + "212894859511940442635510927", + "243733459263959372702117405", + "681051132097222734574602211" ], - "mAssetSupply": "81401725124936541106494439" + "mAssetSupply": "1135986920959245049931775386" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "874418709458387074023424", - "expectedQty": "888602530176225882946016", + "inputQty": "2026079540503679793627136", + "outputIndex": 0, + "expectedQty": "1993544694296332961317307", + "swapFee": "1207030004745844554325", "reserves": [ - "6940758337501700702063344", - "60646611554805226188666837", - "15211178534263922429783217" - ] + "210901314817644109674193620", + "243733459263959372702117405", + "683077211637726414368229347" + ], + "mAssetSupply": "1135988127989249795776329711", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1016620176598184360935424", - "expectedQty": "995814894224700418744375", + "type": "redeemMasset", + "inputQty": "4264305827643986410051993", + "expectedQtys": [ + "791450085939117008375343", + "914659386772872643712078", + "2563386189987386082752021" + ], + "redemptionFee": "1279291748293195923015", "reserves": [ - "6940758337501700702063344", - "61663231731403410549602261", - "15211178534263922429783217" - ] + "210109864731704992665818277", + "242818799877186500058405327", + "680513825447739028285477326" + ], + "mAssetSupply": "1131725101453354102562200733" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8109329680603578105856", - "expectedQty": "8275848952742116977047", - "swapFee": "4865597808362146863", + "type": "swap", + "inputIndex": 0, + "inputQty": "1398157955941022660820992", + "outputIndex": 1, + "expectedQty": "1401402007891103401532514", + "swapFee": "846058051680184393874", "reserves": [ - "6940758337501700702063344", - "61654955882450668432625214", - "15211178534263922429783217" + "211508022687646015326639269", + "241417397869295396656872813", + "680513825447739028285477326" ], - "mAssetSupply": "83278038085254672192225837" + "mAssetSupply": "1131725947511405782746594607", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "495984788155648770048", - "expectedQty": "503776376729063209518", + "type": "redeemMasset", + "inputQty": "1064753947431191288217", + "expectedQtys": [ + "198931942282031201811", + "227062932405816331593", + "640051073835702108349" + ], + "redemptionFee": "319426184229357386", "reserves": [ - "6940758337501700702063344", - "61654955882450668432625214", - "15211674519052078078553265" - ] + "211507823755703733295437458", + "241417170806362990840541220", + "680513185396665192583368977" + ], + "mAssetSupply": "1131724883076884535784663776" }, { "type": "redeemBassets", "inputQtys": [ - "258141038238384764485632", - "240715147468919659298816", - "184887494337359656255488" + "4623881434764164988928", + "1278956560525504020480", + "628326263515556872192" ], - "expectedQty": "701217770299751293354574", - "swapFee": "420983252131129453684", + "expectedQty": "6572983701105140346509", + "swapFee": "3946157915412331606", "reserves": [ - "6682617299263315937577712", - "61414240734981748773326398", - "15026787024714718422297777" + "211503199874268969130448530", + "241415891849802465336520740", + "680512557070401677026496785" ], - "mAssetSupply": "82577324091331649962080781" + "mAssetSupply": "1131718310093183430644317267" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4196134220027399680", - "expectedQty": "4264358038275575708", + "type": "redeemBassets", + "inputQtys": [ + "797189847585596884647936", + "708364240414233241583616", + "917944758269564099231744" + ], + "expectedQty": "2427692433516173677270279", + "swapFee": "1457489954082153498461", "reserves": [ - "6682617299263315937577712", - "61414240734981748773326398", - "15026791220848938449697457" - ] + "210706010026683372245800594", + "240707527609388232094937124", + "679594612312132112927265041" + ], + "mAssetSupply": "1129290617659667256967046988" }, { - "type": "redeemMasset", - "inputQty": "69375506826435940161945", - "expectedQtys": [ - "5612568101968005457145", - "51580330448332135604430", - "12620637289878478651879" + "type": "redeemBassets", + "inputQtys": [ + "6674414439799863916888064", + "11475559888359832061739008", + "9473097717630987948523520" ], - "redemptionFee": "20812652047930782048", + "expectedQty": "27679664067457635269294545", + "swapFee": "16617769101935742607141", "reserves": [ - "6677004731161347932120567", - "61362660404533416637721968", - "15014170583559059971045578" + "204031595586883508328912530", + "229231967721028400033198116", + "670121514594501124978741521" ], - "mAssetSupply": "82507973661515300228276592" + "mAssetSupply": "1101610953592209621697752443" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "14268924585238660644864", - "expectedQty": "14572463251728683223994", - "swapFee": "8561354751143196386", + "type": "mint", + "inputIndex": 0, + "inputQty": "979288995536180665647104", + "expectedQty": "987844562046174873587399", "reserves": [ - "6677004731161347932120567", - "61348087941281687954497974", - "15014170583559059971045578" - ], - "mAssetSupply": "82493713298284812710828114" + "205010884582419688994559634", + "229231967721028400033198116", + "670121514594501124978741521" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "1278493913444066263040", + "expectedQty": "1269002541349411560161", + "reserves": [ + "205010884582419688994559634", + "229231967721028400033198116", + "670122793088414569045004561" + ] }, { "type": "mintMulti", "inputQtys": [ - "1031743471210713866829824", - "630726946711149261881344", - "889585333265035664818176" + "3999036999619367804076032", + "6557573208678339815931904", + "243501416361180390227968" ], - "expectedQty": "2623362692749107963261671", + "expectedQty": "10871846341505160931366690", "reserves": [ - "7708748202372061798950391", - "61978814887992837216379318", - "15903755916824095635863754" + "209009921582039056798635666", + "235789540929706739849130020", + "670366294504775749435232529" ], - "mAssetSupply": "85117075991033920674089785" + "mAssetSupply": "1113471913498302306914266693" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "2696164391980594364416", - "outputIndex": 1, - "expectedQty": "2909521643663553738763", - "swapFee": "1714309258100554070", + "inputIndex": 1, + "inputQty": "279730076700568818024448", + "outputIndex": 0, + "expectedQty": "278843835451132061851373", + "swapFee": "168809730877613242766", "reserves": [ - "7711444366764042393314807", - "61975905366349173662640555", - "15903755916824095635863754" + "208731077746587924736784293", + "236069271006407308667154468", + "670366294504775749435232529" ], - "mAssetSupply": "85117077705343178774643855", + "mAssetSupply": "1113472082308033184527509459", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "25824121173416742912", - "expectedQty": "25344369990272438334", + "type": "redeemMasset", + "inputQty": "495311324085654152177254", + "expectedQtys": [ + "92823028146606522280310", + "104980364322077235743780", + "298112912054708634817549" + ], + "redemptionFee": "148593397225696245653", "reserves": [ - "7711444366764042393314807", - "61975931190470347079383467", - "15903755916824095635863754" - ] + "208638254718441318214503983", + "235964290642085231431410688", + "670068181592721040800414980" + ], + "mAssetSupply": "1112976919577344756071577858" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "82805074675418116653056", - "outputIndex": 1, - "expectedQty": "89284640259466876503556", - "swapFee": "52617147318492594236", + "type": "mintMulti", + "inputQtys": [ + "5879371341375881609216", + "51070168755286147334144", + "34651280139356364341248" + ], + "expectedQty": "91696458834506928652878", "reserves": [ - "7794249441439460509967863", - "61886646550210880202879911", - "15903755916824095635863754" + "208644134089782694096113199", + "236015360810840517578744832", + "670102832872860397164756228" ], - "mAssetSupply": "85117155666860487539676425", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1113068616036179263000230736" + }, + { + "type": "mintMulti", + "inputQtys": [ + "4411368470236324954112", + "2438275074543568027648", + "2238855422647150575616" + ], + "expectedQty": "9123546971871060932714", + "reserves": [ + "208648545458252930421067311", + "236017799085915061146772480", + "670105071728283044315331844" + ], + "mAssetSupply": "1113077739583151134061163450" }, { "type": "redeemBassets", "inputQtys": [ - "56682792235362328510464", - "113411133749412111581184", - "166083740333725888544768" + "352050691018637639680", + "3835612520314630045696", + "3205805889000260501504" ], - "expectedQty": "339685418706645101972042", - "swapFee": "203933611390821554115", + "expectedQty": "7395567629563540026834", + "swapFee": "4440004580486415865", "reserves": [ - "7737566649204098181457399", - "61773235416461468091298727", - "15737672176490369747318986" + "208648193407561911783427631", + "236013963473394746516726784", + "670101865922394044054830340" ], - "mAssetSupply": "84777470248153842437704383" + "mAssetSupply": "1113070344015521570521136616" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "106853131968906944", - "70242910520353568", - "51403052726251360" + "18968266770546436341760", + "11705645838956891209728", + "10622337186083993812992" ], - "expectedQty": "234209916044974228", + "expectedQty": "41446869652303746580205", + "swapFee": "24883051622355661344", "reserves": [ - "7737566756057230150364343", - "61773235486704378611652295", - "15737672227893422473570346" + "208629225140791365347085871", + "236002257827555789625517056", + "670091243585207960061017348" ], - "mAssetSupply": "84777470482363758482678611" + "mAssetSupply": "1113028897145869266774556411" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "3122832643406906831929344", - "expectedQty": "3155775671640489619475707", + "inputIndex": 1, + "inputQty": "41315854562794271670272", + "expectedQty": "41554343255107118951604", "reserves": [ - "7737566756057230150364343", - "61773235486704378611652295", - "18860504871300329305499690" + "208629225140791365347085871", + "236043573682118583897187328", + "670091243585207960061017348" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "3033816414304584335360", - "expectedQty": "3210544473511610021843", + "inputQty": "208401882950130189991936", + "expectedQty": "210149675969200270870600", "reserves": [ - "7740600572471534734699703", - "61773235486704378611652295", - "18860504871300329305499690" + "208837627023741495537077807", + "236043573682118583897187328", + "670091243585207960061017348" ] }, { "type": "mintMulti", "inputQtys": [ - "1418386401890790679773184", - "83069800745092199219200", - "1805329212087793124114432" + "53904614233543819264", + "144098885137715609600", + "110559325340671623168" ], - "expectedQty": "3387148817469482668510891", + "expectedQty": "309053679499280670292", "reserves": [ - "9158986974362325414472887", - "61856305287449470810871495", - "20665834083388122429614122" + "208837680928355729080897071", + "236043717781003721612796928", + "670091354144533300732640516" ], - "mAssetSupply": "91323605515947242380687052" + "mAssetSupply": "1113280910218773073445048907" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8263222071935741460480", - "expectedQty": "8373652718520208222566", - "swapFee": "4957933243161444876", + "type": "mintMulti", + "inputQtys": [ + "19996437740907", + "17781266481107", + "20258846815310" + ], + "expectedQty": "58161469025167", "reserves": [ - "9158986974362325414472887", - "61847931634730950602648929", - "20665834083388122429614122" + "208837680928375725518637978", + "236043717781021502879278035", + "670091354144553559579455826" ], - "mAssetSupply": "91315347251808549800671448" + "mAssetSupply": "1113280910218831234914074074" }, { "type": "redeemMasset", - "inputQty": "205394432737086365761536", + "inputQty": "909550614826056679424", "expectedQtys": [ - "20595010906318949107223", - "139072020750333622109581", - "46469449026068587770544" + "170569220052107013811", + "192789886677188957928", + "547300463843480075789" ], - "redemptionFee": "61618329821125909728", + "redemptionFee": "272865184447817003", "reserves": [ - "9138391963456006465365664", - "61708859613980616980539348", - "20619364634362053841843578" + "208837510359155673411624167", + "236043524991134825690320107", + "670090806844089716099380037" ], - "mAssetSupply": "91110014437401284560819640" + "mAssetSupply": "1113280000941081593305211653" }, { - "type": "mint", + "type": "redeem", + "inputIndex": 2, + "inputQty": "453537911939170159296512", + "expectedQty": "456537064877291365191444", + "swapFee": "272122747163502095577", + "reserves": [ + "208837510359155673411624167", + "236043524991134825690320107", + "669634269779212424734188593" + ], + "mAssetSupply": "1112826735151889586648010718" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "7177988697128340291584", - "expectedQty": "7079077644610156983298", + "inputQty": "19702731265494097068032", + "expectedQty": "19578055161064190233740", + "swapFee": "11821638759296458240", "reserves": [ - "9138391963456006465365664", - "61716037602677745320830932", - "20619364634362053841843578" - ] + "208837510359155673411624167", + "236023946935973761500086367", + "669634269779212424734188593" + ], + "mAssetSupply": "1112807044242262851847400926" }, { "type": "redeemMasset", - "inputQty": "1419145131537326489", + "inputQty": "6720762294246576128", "expectedQtys": [ - "142287394752534274", - "960936479858919809", - "321049445789625458" + "1260889035818416130", + "1425031386221511936", + "4043021329457558929" + ], + "redemptionFee": "2016228688273972", + "reserves": [ + "208837509098266637593208037", + "236023945510942375278574431", + "669634265736191095276629664" + ], + "mAssetSupply": "1112807037523516786289098770" + }, + { + "type": "mintMulti", + "inputQtys": [ + "438221790836992830865408", + "543417543033564359032832", + "477895444429479096614912" ], - "redemptionFee": "425743539461197", + "expectedQty": "1462902249830126872334341", "reserves": [ - "9138391821168611712831390", - "61716036641741265461911123", - "20619364313312608052218120" + "209275730889103630424073445", + "236567363053975939637607263", + "670112161180620574373244576" ], - "mAssetSupply": "91117092096326506719937646" + "mAssetSupply": "1114269939773346913161433111" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "11520886459957602083143680", - "expectedQty": "11653869758075945980001791", - "swapFee": "6912531875974561249886", + "inputIndex": 0, + "inputQty": "2955823327861881344", + "expectedQty": "2929617144799156443", + "swapFee": "1773493996717128", "reserves": [ - "9138391821168611712831390", - "50062166883665319481909332", - "20619364313312608052218120" + "209275727959486485624917002", + "236567363053975939637607263", + "670112161180620574373244576" ], - "mAssetSupply": "79603118168244879198043852" + "mAssetSupply": "1114269936819297079296268895" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6130018787259176714240", - "33680045468279736631296", - "73223230113689746014208" + "34082591102099536803266560", + "26512400238147565030211584", + "19401570360048391003570176" ], - "expectedQty": "113005334507108084361814", - "swapFee": "67843907048493946985", + "expectedQty": "80254982016828864612483222", "reserves": [ - "9132261802381352536117150", - "50028486838197039745278036", - "20546141083198918306203912" + "243358319061586022428183562", + "263079763292123504667818847", + "689513731540668965376814752" ], - "mAssetSupply": "79490112833737771113682038" + "mAssetSupply": "1194524918836125943908752117" }, { - "type": "redeemMasset", - "inputQty": "5065329037127124726579", - "expectedQtys": [ - "581758307548372904843", - "3186996656688729275813", - "1308863950888380076696" + "type": "redeem", + "inputIndex": 1, + "inputQty": "16360172920847114627448832", + "expectedQty": "16263553302875886052546829", + "swapFee": "9816103752508268776469", + "reserves": [ + "243358319061586022428183562", + "246816209989247618615272018", + "689513731540668965376814752" + ], + "mAssetSupply": "1178174562019031337550079754" + }, + { + "type": "mintMulti", + "inputQtys": [ + "51827369921367501709508608", + "4267635878142478917828608", + "55336061597601102437548032" ], - "redemptionFee": "1519598711138137417", + "expectedQty": "111373359831560613368355695", "reserves": [ - "9131680044073804163212307", - "50025299841540351016002223", - "20544832219248029926127216" + "295185688982953524137692170", + "251083845867390097533100626", + "744849793138270067814362784" ], - "mAssetSupply": "79485049024299355127092876" + "mAssetSupply": "1289547921850591950918435449" }, { "type": "redeemMasset", - "inputQty": "2502372153257865982771", + "inputQty": "268400937964120999723008", "expectedQtys": [ - "287400044116608506753", - "1574439020203702755777", - "646604530347305447925" + "61420243497587304258340", + "52243829992640167461411", + "154983311763200011003486" ], - "redemptionFee": "750711645977359794", + "redemptionFee": "80520281389236299916", "reserves": [ - "9131392644029687554705554", - "50023725402520147313246446", - "20544185614717682620679291" + "295124268739455936833433830", + "251031602037397457365639215", + "744694809826506867803359298" ], - "mAssetSupply": "79482547402857743238469899" + "mAssetSupply": "1289279601432909219155012357" }, { "type": "swap", "inputIndex": 0, - "inputQty": "608608769931532288", - "outputIndex": 2, - "expectedQty": "624096554086854909", - "swapFee": "375438495872067", + "inputQty": "72417246979563806720", + "outputIndex": 1, + "expectedQty": "72156325290013380963", + "swapFee": "43632640436275516", "reserves": [ - "9131393252638457486237842", - "50023725402520147313246446", - "20544184990621128533824382" + "295124341156702916397240550", + "251031529881072167352258252", + "744694809826506867803359298" ], - "mAssetSupply": "79482547403233181734341966", + "mAssetSupply": "1289279601476541859591287873", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "321322494708498982502", - "expectedQtys": [ - "36904225132633272372", - "202169238926843342116", - "83028647117051929086" - ], - "redemptionFee": "96396748412549694", - "reserves": [ - "9131356348413324852965470", - "50023523233281220469904330", - "20544101961974011481895296" - ], - "mAssetSupply": "79482226177135221647909158" - }, - { - "type": "redeemMasset", - "inputQty": "20146366328693325824", - "expectedQtys": [ - "2313831278053175568", - "12675662659435908088", - "5205752999376584138" + "type": "redeemBassets", + "inputQtys": [ + "1354263827521698952904704", + "7279752821766034567462912", + "9338741976256733524262912" ], - "redemptionFee": "6043909898607997", + "expectedQty": "17973921891249887792872220", + "swapFee": "10790827631328729913671", "reserves": [ - "9131354034582046799789902", - "50023510557618561033996242", - "20544096756221012105311158" + "293770077329181217444335846", + "243751777059306132784795340", + "735356067850250134279096386" ], - "mAssetSupply": "79482206036812802853191331" + "mAssetSupply": "1271305679585291971798415653" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1029235206789285806080", - "expectedQty": "1039319278439059372738", - "swapFee": "617541124073571483", + "inputQty": "69416923662664436677607424", + "expectedQty": "68611298157272548409228289", + "swapFee": "41650154197598662006564", "reserves": [ - "9131354034582046799789902", - "50022471238340121974623504", - "20544096756221012105311158" + "293770077329181217444335846", + "175140478902033584375567051", + "735356067850250134279096386" ], - "mAssetSupply": "79481177419147137640956734" + "mAssetSupply": "1201930406076825133782814793" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "219597211094143762432", - "expectedQty": "220040075293393421744", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5077335092871353866387456", + "expectedQty": "5057676102887524091116946", + "swapFee": "3046401055722812319832", "reserves": [ - "9131354034582046799789902", - "50022471238340121974623504", - "20544316353432106249073590" - ] + "288712401226293693353218900", + "175140478902033584375567051", + "735356067850250134279096386" + ], + "mAssetSupply": "1196856117385009502728747169" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "4927518609657759847677952", - "expectedQty": "4903447134172692152296118", - "swapFee": "2956511165794655908606", + "inputQty": "47638094187956758902734848", + "expectedQty": "47991156241448605205210522", + "swapFee": "28582856512774055341640", "reserves": [ - "9131354034582046799789902", - "50022471238340121974623504", - "15640869219259414096777472" + "288712401226293693353218900", + "175140478902033584375567051", + "687364911608801529073885864" ], - "mAssetSupply": "74556835360730465842609132" + "mAssetSupply": "1149246606053565517881353961" }, { "type": "redeemBassets", "inputQtys": [ - "7820553902602500177920", - "10208667731774809309184", - "17034624610936568152064" + "49430007058843456", + "41104362446089864", + "123260496845679632" ], - "expectedQty": "35276464799934889653524", - "swapFee": "21178586031579881721", + "expectedQty": "213571664625706435", + "swapFee": "128219930733864", "reserves": [ - "9123533480679444299611982", - "50012262570608347165314320", - "15623834594648477528625408" + "288712401176863686294375444", + "175140478860929221929477187", + "687364911485541032228206232" ], - "mAssetSupply": "74521558895930530952955608" + "mAssetSupply": "1149246605839993853255647526" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "91625106038173917511680", - "outputIndex": 1, - "expectedQty": "93336148897510020618140", - "swapFee": "55368337617146173983", + "inputQty": "60483143779365223940489216", + "expectedQty": "60878311041149677630615658", + "swapFee": "36289886267619134364293", + "reserves": [ + "288712401176863686294375444", + "175140478860929221929477187", + "626486600444391354597590574" + ], + "mAssetSupply": "1088799751946896248449522603" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "9646042359887573286912", + "outputIndex": 2, + "expectedQty": "9819927801880857823054", + "swapFee": "5856514790287961734", "reserves": [ - "9123533480679444299611982", - "49918926421710837144696180", - "15715459700686651446137088" + "288712401176863686294375444", + "175150124903289109502764099", + "626476780516589473739767520" ], - "mAssetSupply": "74521614264268148099129591", + "mAssetSupply": "1088799757803411038737484337", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1680403925226549464268", - "expectedQtys": [ - "205666802279356639428", - "1125294930096226220866", - "354264973086898290152" + "type": "redeemBassets", + "inputQtys": [ + "1530283603579185678778368", + "8098171306118784730791936", + "3390112634043632671784960" ], - "redemptionFee": "504121177567964839", + "expectedQty": "13099272858417833502262540", + "swapFee": "7864282284421352913105", "reserves": [ - "9123327813877164942972554", - "49917801126780740918475314", - "15715105435713564547846936" + "287182117573284500615597076", + "167051953597170324771972163", + "623086667882545841067982560" ], - "mAssetSupply": "74519934364464099117630162" + "mAssetSupply": "1075700484944993205235221797" }, { - "type": "redeemMasset", - "inputQty": "7509505188954965960294", - "expectedQtys": [ - "919098019069660611869", - "5028795749523767337899", - "1583163793968399095225" + "type": "mintMulti", + "inputQtys": [ + "297253123565939706560512", + "339860148429473500364800", + "79848330707304483651584" ], - "redemptionFee": "2252851556686489788", + "expectedQty": "721331921904803845108461", "reserves": [ - "9122408715858095282360685", - "49912772331031217151137415", - "15713522271919596148751711" + "287479370696850440322157588", + "167391813745599798272336963", + "623166516213253145551634144" ], - "mAssetSupply": "74512427112126700838159656" + "mAssetSupply": "1076421816866898009080330258" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "134175050375102208", - "expectedQty": "135120085351235554", + "inputIndex": 0, + "inputQty": "25664288254853329715200", + "expectedQty": "25706879043718531296981", "reserves": [ - "9122408715858095282360685", - "49912772331031217151137415", - "15713522406094646523853919" + "287505034985105293651872788", + "167391813745599798272336963", + "623166516213253145551634144" ] }, { - "type": "mintMulti", - "inputQtys": [ - "8147553822195465584640", - "14599290786726539165696", - "4378380971227833434112" - ], - "expectedQty": "27202456989039497213902", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1887349265071452649947136", + "expectedQty": "1883022516356318866115624", + "swapFee": "1132409559042871589968", "reserves": [ - "9130556269680290747945325", - "49927371621817943690303111", - "15717900787065874357288031" + "285622012468748974785757164", + "167391813745599798272336963", + "623166516213253145551634144" ], - "mAssetSupply": "74539629704235825686609112" + "mAssetSupply": "1074561306890429317833270071" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "999785481670203801600", - "expectedQty": "1011199344774447120812", - "swapFee": "599871289002122280", + "type": "swap", + "inputIndex": 0, + "inputQty": "98238720993110720512", + "outputIndex": 1, + "expectedQty": "97091925096687841871", + "swapFee": "59045436699475640", "reserves": [ - "9130556269680290747945325", - "49926360422473169243182299", - "15717900787065874357288031" + "285622110707469967896477676", + "167391716653674701584495092", + "623166516213253145551634144" ], - "mAssetSupply": "74538630518625444484929792" + "mAssetSupply": "1074561306949474754532745711", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "309826921417396518912", - "expectedQty": "307475192691433078381", - "swapFee": "185896152850437911", + "type": "redeemBassets", + "inputQtys": [ + "48384923604319", + "225981807640551", + "105858067344330" + ], + "expectedQty": "382509297051165", + "swapFee": "229643364249", "reserves": [ - "9130556269680290747945325", - "49926360422473169243182299", - "15717593311873182924209650" + "285622110707421582972873357", + "167391716653448719776854541", + "623166516213147287484289814" ], - "mAssetSupply": "74538320877600179938848791" + "mAssetSupply": "1074561306949092245235694546" }, { "type": "redeemMasset", - "inputQty": "438029488425566470144", + "inputQty": "1002056223021584298803", "expectedQtys": [ - "53640235101980721228", - "293307618040829343994", - "92337791431815859167" + "266270103708886677900", + "156050277910659749778", + "580944565142410073777" ], - "redemptionFee": "131408846527669941", + "redemptionFee": "300616866906475289", "reserves": [ - "9130502629445188767224097", - "49926067114855128413838305", - "15717500974081751108350483" + "285621844437317874086195457", + "167391560603170809117104763", + "623165935268582145074216037" ], - "mAssetSupply": "74537882979520600900048588" + "mAssetSupply": "1074560305193486090557871032" }, { - "type": "redeemMasset", - "inputQty": "25161098278644056064", - "expectedQtys": [ - "3081178922317812447", - "16848047901812343776", - "5304027026581461162" + "type": "redeemBassets", + "inputQtys": [ + "619596866458447380480", + "3372703673688078680064", + "1529525443841934491648" ], - "redemptionFee": "7548329483593216", + "expectedQty": "5556090547788394447321", + "swapFee": "3335655722106300448", "reserves": [ - "9130499548266266449411650", - "49926050266807226601494529", - "15717495670054724526889321" + "285621224840451415638814977", + "167388187899497121038424699", + "623164405743138303139724389" ], - "mAssetSupply": "74537857825970651739585740" + "mAssetSupply": "1074554749102938302163423711" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3443252413527642158923776", - "expectedQty": "3406467207702665162348065", - "swapFee": "2065951448116585295354", + "type": "redeemBassets", + "inputQtys": [ + "1233219063007065757712384", + "4077970094153376571850752", + "778622586863688032976896" + ], + "expectedQty": "6140680795415680318340422", + "swapFee": "3686620449519119662801", "reserves": [ - "9130499548266266449411650", - "49926050266807226601494529", - "12311028462352059364541256" + "284388005777444349881102593", + "163310217805343744466573947", + "622385783156274615106747493" ], - "mAssetSupply": "71096671363891126165957318" + "mAssetSupply": "1068414068307522621845083289" }, { - "type": "redeemMasset", - "inputQty": "158747221576154349568", - "expectedQtys": [ - "20380793849584677298", - "111443249389899270241", - "27480263466549342657" + "type": "mintMulti", + "inputQtys": [ + "121615830588692067516416", + "6951039021763130294272", + "109989636777267989315584" ], - "redemptionFee": "47624166472846304", + "expectedQty": "238084072644535489283180", "reserves": [ - "9130479167472416864734352", - "49925938823557836702224288", - "12311000982088592815198599" + "284509621608033041948619009", + "163317168844365507596868219", + "622495772793051883096063077" ], - "mAssetSupply": "71096512664293716484454054" + "mAssetSupply": "1068652152380167157334366469" }, { - "type": "redeemBassets", + "type": "swap", + "inputIndex": 0, + "inputQty": "66168227561960525954809856", + "outputIndex": 1, + "expectedQty": "64543662363961880249460354", + "swapFee": "39722690318520299572382", + "reserves": [ + "350677849169993567903428865", + "98773506480403627347407865", + "622495772793051883096063077" + ], + "mAssetSupply": "1068691875070485677633938851", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", "inputQtys": [ - "4880988021214695915520", - "3907291420095362891776", - "1973757201964474564608" + "42880780602053578719232", + "327408893101007796436992", + "407840709857390123548672" + ], + "expectedQty": "787411132682992613562848", + "reserves": [ + "350720729950595621482148097", + "99100915373504635143844857", + "622903613502909273219611749" + ], + "mAssetSupply": "1069479286203168670247501699" + }, + { + "type": "redeemMasset", + "inputQty": "168789752702217292", + "expectedQtys": [ + "55335626056320768", + "15635834231183942", + "98279794954759018" ], - "expectedQty": "10868031464720208600153", - "swapFee": "6524733719063563298", + "redemptionFee": "50636925810665", "reserves": [ - "9125598179451202168818832", - "49922031532137741339332512", - "12309027224886628340633991" + "350720729895259995425827329", + "99100915357868800912660915", + "622903613404629478264852731" ], - "mAssetSupply": "71085644632828996275853901" + "mAssetSupply": "1069479286034429554471095072" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "16351441849137017913344", - "outputIndex": 0, - "expectedQty": "15688426512418886407843", - "swapFee": "9674736079943520604", + "inputIndex": 2, + "inputQty": "84199756191514446790656", + "outputIndex": 1, + "expectedQty": "79969006412798225578618", + "swapFee": "50000316379355766835", "reserves": [ - "9109909752938783282410989", - "49938382973986878357245856", - "12309027224886628340633991" + "350720729895259995425827329", + "99020946351456002687082297", + "622987813160820992711643387" ], - "mAssetSupply": "71085654307565076219374505", + "mAssetSupply": "1069479336034745933826861907", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "189864230265585477353472", - "expectedQtys": [ - "24324557831997696331463", - "133341505857984064492125", - "32866587343612391699182" - ], - "redemptionFee": "56959269079675643206", + "type": "redeem", + "inputIndex": 0, + "inputQty": "7783906256043472572121088", + "expectedQty": "7799248083597885556352943", + "swapFee": "4670343753626083543272", "reserves": [ - "9085585195106785586079526", - "49805041468128894292753731", - "12276160637543015948934809" + "342921481811662109869474386", + "99020946351456002687082297", + "622987813160820992711643387" ], - "mAssetSupply": "70895847036568570417664239" + "mAssetSupply": "1061700100122456087338284091" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "396335077485906644434944", + "inputIndex": 0, + "inputQty": "236831125156367108669440", "outputIndex": 1, - "expectedQty": "406987118930439220272477", - "swapFee": "241033936012861203901", + "expectedQty": "226776641829906089260831", + "swapFee": "141752294828824102349", "reserves": [ - "9085585195106785586079526", - "49398054349198455072481254", - "12672495715028922593369753" + "343158312936818476978143826", + "98794169709626096597821466", + "622987813160820992711643387" ], - "mAssetSupply": "70896088070504583278868140", + "mAssetSupply": "1061700241874750916162386440", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemMasset", + "inputQty": "306631470263502243679436", + "expectedQtys": [ + "99078409270966752034245", + "28524353952858758365226", + "179872202409786846919023" + ], + "redemptionFee": "91989441079050673103", + "reserves": [ + "343059234527547510226109581", + "98765645355673237839456240", + "622807940958411205864724364" + ], + "mAssetSupply": "1061393702393928492969380107" + }, { "type": "mint", "inputIndex": 1, - "inputQty": "894415337276870651543552", - "expectedQty": "882230413939243163563677", + "inputQty": "392406768396919635968", + "expectedQty": "408597318956200705533", "reserves": [ - "9085585195106785586079526", - "50292469686475325724024806", - "12672495715028922593369753" + "343059234527547510226109581", + "98766037762441634759092208", + "622807940958411205864724364" ] }, { - "type": "mintMulti", - "inputQtys": [ - "3044432790485288961966080", - "334401675388976132784128", - "1144617161628035420520448" - ], - "expectedQty": "4595310249413968305043487", + "type": "redeem", + "inputIndex": 2, + "inputQty": "7662320085167956295680", + "expectedQty": "7738137800714835069155", + "swapFee": "4597392051100773777", "reserves": [ - "12130017985592074548045606", - "50626871361864301856808934", - "13817112876656958013890201" + "343059234527547510226109581", + "98766037762441634759092208", + "622800202820610491029655209" ], - "mAssetSupply": "76373628733857794747475304" + "mAssetSupply": "1061386453268554332314563737" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "105448092604451684352", - "98101002049857388544", - "109514423119257288704" + "8840096579805803184128", + "9116516257189242863616", + "11021139420091684749312" ], - "expectedQty": "314791851494963173615", - "swapFee": "188988503999377530", + "expectedQty": "29217641233240823636198", "reserves": [ - "12129912537499470096361254", - "50626773260862251999420390", - "13817003362233838756601497" + "343068074624127316029293709", + "98775154278698824001955824", + "622811223960030582714404521" ], - "mAssetSupply": "76373313942006299784301689" + "mAssetSupply": "1061415670909787573138199935" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "547173383315276311822336", - "expectedQty": "538396935868644635978471", - "swapFee": "328304029989165787093", + "type": "redeemBassets", + "inputQtys": [ + "2313726521532034758737920", + "4463986609836919562960896", + "7671196433920180491386880" + ], + "expectedQty": "14552672804155728846164605", + "swapFee": "8736845789967417758353", "reserves": [ - "11591515601630825460382783", - "50626773260862251999420390", - "13817003362233838756601497" + "340754348102595281270555789", + "94311167668861904438994928", + "615140027526110402223017641" ], - "mAssetSupply": "75826468862721012638266446" + "mAssetSupply": "1046862998105631844292035330" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "6228188487015643620573184", - "expectedQty": "6008385178303957454533643", - "swapFee": "3736913092209386172343", + "inputQty": "1097185579283759767748608", + "expectedQty": "1094196778476571657662832", "reserves": [ - "5583130423326868005849140", - "50626773260862251999420390", - "13817003362233838756601497" - ], - "mAssetSupply": "69602017288797578403865605" + "341851533681879041038304397", + "94311167668861904438994928", + "615140027526110402223017641" + ] }, { "type": "redeemBassets", "inputQtys": [ - "35270325526170873856", - "878898164625737646080", - "2638423557430507470848" + "292320563270051537354752", + "510028392179757842694144", + "76638368397255231143936" ], - "expectedQty": "3568420753264102867819", - "swapFee": "2142337854671264479", + "expectedQty": "900069914928053930702288", + "swapFee": "540366168658027174726", "reserves": [ - "5583095153001341834975284", - "50625894362697626261774310", - "13814364938676408249130649" + "341559213118608989500949645", + "93801139276682146596300784", + "615063389157713146991873705" ], - "mAssetSupply": "69598448868044314300997786" + "mAssetSupply": "1047057124969180362018995874" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "914128669292699451392", - "expectedQty": "895946025882450388490", + "inputQty": "105009169123170585212354560", + "hardLimitError": true + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "312070416927371034624", + "expectedQty": "308711268296395794249", "reserves": [ - "5583095153001341834975284", - "50626808491366918961225702", - "13814364938676408249130649" + "341559213118608989500949645", + "93801139276682146596300784", + "615063701228130074362908329" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "330490889927769", - "expectedQty": "334331016249545", + "inputIndex": 1, + "inputQty": "11115149396376258560", + "expectedQty": "11612606603134426166", "reserves": [ - "5583095153001341834975284", - "50626808491366918961225702", - "13814364939006899139058418" + "341559213118608989500949645", + "93801150391831542972559344", + "615063701228130074362908329" ] }, + { + "type": "redeemMasset", + "inputQty": "70625449190195488987545", + "expectedQtys": [ + "23031722020701967248817", + "6325117104355512622829", + "41474437367295192664212" + ], + "redemptionFee": "21187634757058646696", + "reserves": [ + "341536181396588287533700828", + "93794825274727187459936515", + "615022226790762779170244117" + ], + "mAssetSupply": "1046986841031499823118875440" + }, { "type": "mint", "inputIndex": 1, - "inputQty": "480773289774372855218176", - "expectedQty": "471145480867732915266456", + "inputQty": "2300180847064701726621696", + "expectedQty": "2400677785392300015890790", "reserves": [ - "5583095153001341834975284", - "51107581781141291816443878", - "13814364939006899139058418" + "341536181396588287533700828", + "96095006121791889186558211", + "615022226790762779170244117" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "57278001687615112216576", - "expectedQty": "56559925507383023158759", - "swapFee": "34366801012569067329", + "type": "redeemMasset", + "inputQty": "381990743826598304153", + "expectedQtys": [ + "124286327537448020569", + "34969341627959668728", + "223808949345157003413" + ], + "redemptionFee": "114597223147979491", "reserves": [ - "5583095153001341834975284", - "51107581781141291816443878", - "13757805013499516115899659" + "341536057110260750085680259", + "96094971152450261226889483", + "615022002981813434013240704" ], - "mAssetSupply": "70013246660385658139753030" + "mAssetSupply": "1049387136940745519684441568" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "7035448752789797023514624", - "hardLimitError": true + "type": "redeemBassets", + "inputQtys": [ + "144261469629075242876928", + "23289927099047959592960", + "315101849542578795446272" + ], + "expectedQty": "479954521389667893005156", + "swapFee": "288145600193917086054", + "reserves": [ + "341391795640631674842803331", + "96071681225351213267296523", + "614706901132270855217794432" + ], + "mAssetSupply": "1048907182419355851791436412" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4614494590394086398623744", - "expectedQty": "4700579180590254128369560", - "swapFee": "2768696754236451839174", + "type": "redeemBassets", + "inputQtys": [ + "7248925390991064026841088", + "1118565865077316371087360", + "1393790396780491552325632" + ], + "expectedQty": "9776021015646305928576110", + "swapFee": "5869134089841688570287", "reserves": [ - "5583095153001341834975284", - "46407002600551037688074318", - "13757805013499516115899659" + "334142870249640610815962243", + "94953115360273896896209163", + "613313110735490363665468800" ], - "mAssetSupply": "65401520766745808192968460" + "mAssetSupply": "1039131161403709545862860302" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "6325826285542569515417600", - "hardLimitError": true + "inputQty": "51109244293836905119744", + "expectedQty": "51204059476894774699154", + "swapFee": "30665546576302143071", + "reserves": [ + "334091666190163716041263089", + "94953115360273896896209163", + "613313110735490363665468800" + ], + "mAssetSupply": "1039080082824962285259883629" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4717992388830562210545664", - "hardLimitError": true + "type": "mintMulti", + "inputQtys": [ + "4975322175625909764096", + "146005573079042103443456", + "201769154039378266292224" + ], + "expectedQty": "356864316287339325776322", + "reserves": [ + "334096641512339341951027185", + "95099120933352938999652619", + "613514879889529741931761024" + ], + "mAssetSupply": "1039436947141249624585659951" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "8119436055625866", - "expectedQty": "8632559430855803", + "type": "swap", + "inputIndex": 2, + "inputQty": "21353210298618967891116032", + "outputIndex": 0, + "expectedQty": "21145203049031221257403537", + "swapFee": "12672149555501718141458", "reserves": [ - "5583095161120777890601150", - "46407002600551037688074318", - "13757805013499516115899659" - ] + "312951438463308120693623648", + "95099120933352938999652619", + "634868090188148709822877056" + ], + "mAssetSupply": "1039449619290805126303801409", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10292503676001195172823040", - "expectedQty": "10081674218749970391331280", + "type": "mintMulti", + "inputQtys": [ + "19014026554018055145390080", + "7557654276472118632775680", + "20103795878361047387602944" + ], + "expectedQty": "46745746198516891600105042", "reserves": [ - "5583095161120777890601150", - "56699506276552232860897358", - "13757805013499516115899659" - ] + "331965465017326175839013728", + "102656775209825057632428299", + "654971886066509757210480000" + ], + "mAssetSupply": "1086195365489322017903906451" }, { "type": "mint", "inputIndex": 2, - "inputQty": "31802827379307316248576", - "expectedQty": "32348915639824665753073", + "inputQty": "281380977229513", + "expectedQty": "278334188360832", "reserves": [ - "5583095161120777890601150", - "56699506276552232860897358", - "13789607840878823432148235" + "331965465017326175839013728", + "102656775209825057632428299", + "654971886066791138187709513" ] }, { - "type": "mintMulti", - "inputQtys": [ - "551124535686785644101632", - "2228505315074709664038912", - "969436173720621892501504" - ], - "expectedQty": "3764150494265324716842262", + "type": "redeem", + "inputIndex": 2, + "inputQty": "11276138928526045531340800", + "expectedQty": "11391297405906478995081010", + "swapFee": "6765683357115627318804", "reserves": [ - "6134219696807563534702782", - "58928011591626942524936270", - "14759044014599445324649739" + "331965465017326175839013728", + "102656775209825057632428299", + "643580588660884659192628503" ], - "mAssetSupply": "79279694404033487397750878" + "mAssetSupply": "1074925992244431422188245287" }, { "type": "redeemMasset", - "inputQty": "992500274558831427584", + "inputQty": "10118848048818142209638", "expectedQtys": [ - "76771086400101683093", - "737496811801735307716", - "184712628375113619439" + "3124029365523591884083", + "966072721777578354578", + "6056547653089837117718" ], - "redemptionFee": "297750082367649428", + "redemptionFee": "3035654414645442662", "reserves": [ - "6134142925721163433019689", - "58927274094815140789628554", - "14758859301971070211030300" + "331962340987960652247129645", + "102655809137103280054073721", + "643574532113231569355510785" ], - "mAssetSupply": "79278702201509010933972722" + "mAssetSupply": "1074915876432037018691478311" }, { "type": "redeemMasset", - "inputQty": "3627656832688192487424", + "inputQty": "505449463348329657139", "expectedQtys": [ - "280603606136046595472", - "2695601620470621836937", - "675137373343926997603" + "156049281367828264629", + "48256573912577882075", + "302532338288783161457" ], - "redemptionFee": "1088297049806457746", + "redemptionFee": "151634839004498897", "reserves": [ - "6133862322115027386424217", - "58924578493194670167791617", - "14758184164597726284032697" + "331962184938679284418865016", + "102655760880529367476191646", + "643574229580893280572349328" ], - "mAssetSupply": "79275075632973372547943044" + "mAssetSupply": "1074915371134208509366320069" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "24014972996981524267008", - "expectedQty": "22104268027055979050971", - "swapFee": "14408983798188914560", + "type": "swap", + "inputIndex": 2, + "inputQty": "30937659050068602257408", + "outputIndex": 0, + "expectedQty": "30641854668985699218961", + "swapFee": "18366219013249241112", "reserves": [ - "6111758054087971407373246", - "58924578493194670167791617", - "14758184164597726284032697" + "331931543084010298719646055", + "102655760880529367476191646", + "643605167239943349174606736" ], - "mAssetSupply": "79251075068960189212590596" + "mAssetSupply": "1074915389500427522615561181", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 2, - "inputQty": "3416496366872657687216128", - "outputIndex": 0, - "hardLimitError": true + "inputIndex": 0, + "inputQty": "204785798464693048705024", + "outputIndex": 1, + "expectedQty": "196517197677288328852798", + "swapFee": "122671159316613182620", + "reserves": [ + "332136328882474991768351079", + "102459243682852079147338848", + "643605167239943349174606736" + ], + "mAssetSupply": "1074915512171586839228743801", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "1567697301437907315195904", - "expectedQty": "1532519835459364032255019", + "inputQty": "75459231275873697792", + "expectedQty": "78464666875138055878", "reserves": [ - "6111758054087971407373246", - "60492275794632577482987521", - "14758184164597726284032697" + "332136328882474991768351079", + "102459319142083355021036640", + "643605167239943349174606736" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1954188433617875028148224", - "hardLimitError": true + "type": "mint", + "inputIndex": 1, + "inputQty": "516204191867737407488", + "expectedQty": "536763764124767167155", + "reserves": [ + "332136328882474991768351079", + "102459835346275222758444128", + "643605167239943349174606736" + ] }, { "type": "redeemBassets", "inputQtys": [ - "3752886325249506816", - "4863313128014606336", - "25915493892270702592" - ], - "expectedQty": "35197710743192049531", - "swapFee": "21131305229052661", - "reserves": [ - "6111754301201646157866430", - "60492270931319449468381185", - "14758158249103834013330105" + "81840229463056709582848", + "60091860288161219346432", + "29202072495616683933696" ], - "mAssetSupply": "80783559706708810052796084" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "96315270548285898752", - "expectedQty": "94666442499058289319", - "swapFee": "57789162328971539", + "expectedQty": "173084661939531384355160", + "swapFee": "103913145050749280181", "reserves": [ - "6111754301201646157866430", - "60492270931319449468381185", - "14758063582661334955040786" + "332054488653011935058768231", + "102399743485987061539097696", + "643575965167447732490673040" ], - "mAssetSupply": "80783463449227424095868871" + "mAssetSupply": "1074743042738078307749611674" }, { "type": "mintMulti", "inputQtys": [ - "302195080004532544", - "83471640945038352", - "32195075278266524" + "43877787148126179557376", + "39494847390410898145280", + "31993502648091870756864" ], - "expectedQty": "444005991882305338", + "expectedQty": "116528943969259501090652", "reserves": [ - "6111754603396726162398974", - "60492271014791090413419537", - "14758063614856410233307310" + "332098366440160061238325607", + "102439238333377472437242976", + "643607958670095824361429904" ], - "mAssetSupply": "80783463893233415978174209" + "mAssetSupply": "1074859571682047567250702326" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "718114676962059194728448", - "expectedQty": "729369883227319843920868", + "inputIndex": 1, + "inputQty": "1468281803558159908864000", + "expectedQty": "1525957125309495260066208", "reserves": [ - "6111754603396726162398974", - "60492271014791090413419537", - "15476178291818469428035758" + "332098366440160061238325607", + "103907520136935632346106976", + "643607958670095824361429904" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1419091440579553280", - "171754960060981968896", - "51528851325686177792" + "15954531628514163510214656", + "4351825603249085249224704", + "26565222351762898833899520" ], - "expectedQty": "221761704184155591921", + "expectedQty": "46737325314407374981145817", + "swapFee": "28059230727080673392723", "reserves": [ - "6111756022488166741952254", - "60492442769751151395388433", - "15476229820669795114213550" + "316143834811645897728110951", + "99555694533686547096882272", + "617042736318332925527530384" ], - "mAssetSupply": "81513055538164919977686998" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "73129541748974700986368", - "outputIndex": 1, - "expectedQty": "75825142082667440250020", - "swapFee": "44513206632943527204", - "reserves": [ - "6111756022488166741952254", - "60416617627668483955138413", - "15549359362418769815199918" - ], - "mAssetSupply": "81513100051371552921214202", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1029648203492949687529622717" }, { "type": "mintMulti", "inputQtys": [ - "35281112322193358848", - "33194139209600749568", - "449044496349096192" + "1340708277840854858596352", + "225839314616492343951360", + "1011856178752716065996800" ], - "expectedQty": "71375811967921076829", + "expectedQty": "2574513130914183467915395", "reserves": [ - "6111791303600488935311102", - "60416650821807693555887981", - "15549359811463266164296110" + "317484543089486752586707303", + "99781533848303039440833632", + "618054592497085641593527184" ], - "mAssetSupply": "81513171427183520842291031" + "mAssetSupply": "1032222716623863870997538112" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "9106783542641330181111808", - "outputIndex": 1, - "expectedQty": "9302528319403229984783237", - "swapFee": "5495680224889638091058", - "reserves": [ - "6111791303600488935311102", - "51114122502404463571104744", - "24656143354104596345407918" + "type": "redeemBassets", + "inputQtys": [ + "441050505867400052736", + "1199878449855300632576", + "531224849539003580416" ], - "mAssetSupply": "81518667107408410480382089", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "695379192118770304", - "expectedQty": "705009737036621764", - "swapFee": "417227515271262", + "expectedQty": "2212306148853812859287", + "swapFee": "1328180597670890249", "reserves": [ - "6111791303600488935311102", - "51114121797394726534482980", - "24656143354104596345407918" + "317484102038980885186654567", + "99780333969853184140201056", + "618054061272236102589946768" ], - "mAssetSupply": "81518666412446445876883047" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "500369262019766321152", - "expectedQty": "534666376520802797987", - "reserves": [ - "6112291672862508701632254", - "51114121797394726534482980", - "24656143354104596345407918" - ] + "mAssetSupply": "1032220504317715017184678825" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "49524890202118385827840", - "expectedQty": "48818675553514973910437", + "type": "mintMulti", + "inputQtys": [ + "4240428560700642722578432", + "4270871628862371234054144", + "4026601629403108085858304" + ], + "expectedQty": "12649803978190318381113649", "reserves": [ - "6112291672862508701632254", - "51163646687596844920310820", - "24656143354104596345407918" - ] + "321724530599681527909232999", + "104051205598715555374255200", + "622080662901639210675805072" + ], + "mAssetSupply": "1044870308295905335565792474" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "222505409370059647746048", - "146162741700162932965376", - "109917563100261131485184" + "235093088369216094208", + "240237495594906124288", + "128261028940905381888" ], - "expectedQty": "492010807341553485561501", - "swapFee": "295383714633712318728", + "expectedQty": "610635149608060874008", "reserves": [ - "5889786263492449053886206", - "51017483945896681987345444", - "24546225791004335213922734" + "321724765692769897125327207", + "104051445836211150280379488", + "622080791162668151581186960" ], - "mAssetSupply": "81076008947034928168029970" + "mAssetSupply": "1044870918931054943626666482" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3791604046976917440561152", - "expectedQty": "3732988253083884177410286", + "type": "redeemMasset", + "inputQty": "118651472687210943427379", + "expectedQtys": [ + "36522851409493845189396", + "11812132295864283944005", + "70619879857278546619122" + ], + "redemptionFee": "35595441806163283028", "reserves": [ - "5889786263492449053886206", - "54809087992873599427906596", - "24546225791004335213922734" - ] + "321688242841360403280137811", + "104039633703915285996435483", + "622010171282810873034567838" + ], + "mAssetSupply": "1044752303053809538846522131" }, { "type": "redeemMasset", - "inputQty": "85295697751942994329", + "inputQty": "637607421267907472418406", "expectedQtys": [ - "5921809401196500785", - "55107088445472116690", - "24679685161761531067" + "196265925547744055757712", + "63475851097912161097792", + "379496001745810707825400" ], - "redemptionFee": "25588709325582898", + "redemptionFee": "191282226380372241725", "reserves": [ - "5889780341683047857385421", - "54809032885785153955789906", - "24546201111319173452391667" + "321491976915812659224380099", + "103976157852817373835337691", + "621630675281065062326742438" ], - "mAssetSupply": "84808911930009769728028825" + "mAssetSupply": "1044114886914768011746345450" }, { "type": "mint", "inputIndex": 2, - "inputQty": "3390751212213900419268608", - "expectedQty": "3381756336306760696216749", + "inputQty": "9882172286399074516598784", + "expectedQty": "9781307788235014072927188", "reserves": [ - "5889780341683047857385421", - "54809032885785153955789906", - "27936952323533073871660275" + "321491976915812659224380099", + "103976157852817373835337691", + "631512847567464136843341222" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1093492440282347339776", - "expectedQty": "1187717729391330723426", + "inputIndex": 1, + "inputQty": "2006222863557058405335040", + "expectedQty": "2079125405427135083392397", "reserves": [ - "5890873834123330204725197", - "54809032885785153955789906", - "27936952323533073871660275" + "321491976915812659224380099", + "105982380716374432240672731", + "631512847567464136843341222" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4138110015294846370054144", - "outputIndex": 2, - "expectedQty": "4074485161800774252910951", - "swapFee": "2442565867725098574234", + "type": "mintMulti", + "inputQtys": [ + "38083700670254477737984", + "102359914069537723514880", + "606453957801757974200320" + ], + "expectedQty": "744356312610107104649322", "reserves": [ - "5890873834123330204725197", - "58947142901080000325844050", - "23862467161732299618749324" + "321530060616482913702118083", + "106084740630443969964187611", + "632119301525265894817541542" ], - "mAssetSupply": "88194298549913646853543234", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1056719676421040268007314357" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "242095909391989145600", + "expectedQty": "239643136529753665103", + "reserves": [ + "321530060616482913702118083", + "106084740630443969964187611", + "632119543621175286806687142" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "19805754616500636", - "expectedQty": "19790262468486876", - "swapFee": "11883452769900", + "inputQty": "27259064083958806414884864", + "expectedQty": "27513370884659167973418619", + "swapFee": "16355438450375283848930", "reserves": [ - "5890873834123330204725197", - "58947142901080000325844050", - "23862467141942037150262448" + "321530060616482913702118083", + "106084740630443969964187611", + "604606172736516118833268523" ], - "mAssetSupply": "88194298530119775689812498" + "mAssetSupply": "1029477207418668366629943526" }, { - "type": "redeemBassets", - "inputQtys": [ - "1859024731799865786368", - "1983632193741451165696", - "2387039081774331199488" + "type": "redeemMasset", + "inputQty": "1457306981359037542563840", + "expectedQtys": [ + "455014864124212502502974", + "150126348220951595596536", + "855611431817280806981211" ], - "expectedQty": "6367950855593756876753", - "swapFee": "3823064351967434586", + "redemptionFee": "437192094407711262769", "reserves": [ - "5889014809391530338938829", - "58945159268886258874678354", - "23860080102860262819062960" + "321075045752358701199615109", + "105934614282223018368591075", + "603750561304698838026287312" ], - "mAssetSupply": "88187930579264181932935745" + "mAssetSupply": "1028020337629403736798642455" }, { "type": "mintMulti", "inputQtys": [ - "83998721544391344128", - "85940055713960165376", - "55351945968124674048" + "1676299028932205215744", + "2171809450209658798080", + "1267251132789109293056" ], - "expectedQty": "231596265131640031708", + "expectedQty": "5172779739846155095992", "reserves": [ - "5889098808113074730282957", - "58945245208941972834843730", - "23860135454806230943737008" + "321076722051387633404830853", + "105936786091673228027389155", + "603751828555831627135580368" ], - "mAssetSupply": "88188162175529313572967453" + "mAssetSupply": "1028025510409143582953738447" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1140615338891426505162752", - "outputIndex": 2, - "expectedQty": "1117953107170683142126781", - "swapFee": "671899839065217756588", - "reserves": [ - "5889098808113074730282957", - "60085860547833399340006482", - "22742182347635547801610227" + "type": "redeemBassets", + "inputQtys": [ + "3669387362727002269286400", + "2350596722981903118893056", + "10011327458800317918871552" ], - "mAssetSupply": "88188834075368378790724041", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "4961642755651277824", - "expectedQty": "4950484604629765558", - "swapFee": "2976985653390766", + "expectedQty": "16008348372153795403391286", + "swapFee": "9610775488585428499134", "reserves": [ - "5889098808113074730282957", - "60085860547833399340006482", - "22742177397150943171844669" + "317407334688660631135544453", + "103586189368691324908496099", + "593740501097031309216708816" ], - "mAssetSupply": "88188829116702608792836983" + "mAssetSupply": "1012017162036989787550347161" }, { "type": "redeemMasset", - "inputQty": "10164375702530143027", + "inputQty": "2246585717348637527454515", "expectedQtys": [ - "678555954654347622", - "6923235590663611765", - "2620407705400140564" + "704403923766443003783872", + "229882898928254350004013", + "1317654297693027693957706" ], - "redemptionFee": "3049312710759042", + "redemptionFee": "673975715204591258236", "reserves": [ - "5889098129557120075935335", - "60085853624597808676394717", - "22742174776743237771704105" + "316702930764894188131760581", + "103356306469763070558492086", + "592422846799338281522751110" ], - "mAssetSupply": "88188818955376218973452998" + "mAssetSupply": "1009771250295356354614150882" }, { "type": "redeemBassets", "inputQtys": [ - "68683584454322292785152", - "15542324106185280585728", - "51103385806781687005184" + "134218500349200433152", + "171329744993397243904", + "205489895416194859008" ], - "expectedQty": "141781164455709754650997", - "swapFee": "85119770535747301171", + "expectedQty": "514617533104964274458", + "swapFee": "308955893399017975", "reserves": [ - "5820414545102797783150183", - "60070311300491623395808989", - "22691071390936456084698921" + "316702796546393838931327429", + "103356135140018077161248182", + "592422641309442865327892102" ], - "mAssetSupply": "88047037790920509218802001" + "mAssetSupply": "1009770735677823249649876424" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "233299476021943482712064", - "expectedQty": "237671134674201257302051", - "swapFee": "139979685613166089627", + "type": "mintMulti", + "inputQtys": [ + "3107999712424844488343552", + "2861392719723234966110208", + "182830115077180543205376" + ], + "expectedQty": "6239394449326516574986725", "reserves": [ - "5820414545102797783150183", - "59832640165817422138506938", - "22691071390936456084698921" + "319810796258818683419670981", + "106217527859741312127358390", + "592605471424520045871097478" ], - "mAssetSupply": "87813878294584178902179564" + "mAssetSupply": "1016010130127149766224863149" }, { - "type": "redeemMasset", - "inputQty": "747213076183291289", - "expectedQtys": [ - "49511366704086291", - "508966460235369407", - "193021639238827460" + "type": "redeemBassets", + "inputQtys": [ + "15758574601654348283904", + "175382263380017254760448", + "321537319391077462966272" ], - "redemptionFee": "224163922854987", + "expectedQty": "515282488389859159717018", + "swapFee": "309355106097574040254", "reserves": [ - "5820414495591431079063892", - "59832639656850961903137531", - "22691071197914816845871461" + "319795037684217029071387077", + "106042145596361294872597942", + "592283934105128968408131206" ], - "mAssetSupply": "87813877547595266641743262" + "mAssetSupply": "1015494847638759907065146131" }, { "type": "mintMulti", "inputQtys": [ - "8060619997970771738624", - "21988263990884476911616", - "15776491007631167586304" + "7724146350480793639321600", + "12232614377893561785909248", + "9885929919354638694350848" ], - "expectedQty": "46218220464589934733731", + "expectedQty": "30101793473955397698609152", "reserves": [ - "5828475115589401850802516", - "59854627920841846380049147", - "22706847688922448013457765" + "327519184034697822710708677", + "118274759974254856658507190", + "602169864024483607102482054" ], - "mAssetSupply": "87860095768059856576476993" + "mAssetSupply": "1045596641112715304763755283" }, { - "type": "redeemMasset", - "inputQty": "51328885992432", - "expectedQtys": [ - "3404041178908", - "34957276843454", - "13261623845587" - ], - "redemptionFee": "15398665797", + "type": "redeem", + "inputIndex": 0, + "inputQty": "13832592913788472441962496", + "expectedQty": "13838694353340813945179199", + "swapFee": "8299555748273083465177", "reserves": [ - "5828475115585997809623608", - "59854627920806889103205693", - "22706847688909186389612178" + "313680489681357008765529478", + "118274759974254856658507190", + "602169864024483607102482054" ], - "mAssetSupply": "87860095768008543089150358" + "mAssetSupply": "1031772347754675105405257964" }, { - "type": "mintMulti", - "inputQtys": [ - "1301452946854387019415552", - "2269295490847903982813184", - "1227002350173725537599488" - ], - "expectedQty": "4867691479927480717873903", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4276334050711001600", + "expectedQty": "4164604547008277294", + "swapFee": "2565800430426600", "reserves": [ - "7129928062440384829039160", - "62123923411654793086018877", - "23933850039082911927211666" + "313680489681357008765529478", + "118274755809650309650229896", + "602169864024483607102482054" ], - "mAssetSupply": "92727787247936023807024261" + "mAssetSupply": "1031772343480906855124682964" }, { - "type": "redeemBassets", - "inputQtys": [ - "1923751873110025198108672", - "286229958527945432629248", - "3012629741112253034266624" + "type": "redeemMasset", + "inputQty": "24813350733253567735398", + "expectedQtys": [ + "7541517291681153432745", + "2843565811230166360298", + "14477388908322129142612" ], - "expectedQty": "5408161354394753517909497", - "swapFee": "3246844919588605273910", + "redemptionFee": "7444005219976070320", "reserves": [ - "5206176189330359630930488", - "61837693453126847653389629", - "20921220297970658892945042" + "313672948164065327612096733", + "118271912243839079483869598", + "602155386635575284973339442" ], - "mAssetSupply": "87319625893541270289114764" + "mAssetSupply": "1031747537574178821533017886" }, { - "type": "redeemBassets", - "inputQtys": [ - "967404145806016380928", - "677129374003514834944", - "1608933964980896399360" + "type": "redeemMasset", + "inputQty": "250380262805952790528", + "expectedQtys": [ + "76098028909744686923", + "28693132288969033838", + "146084762133791190586" ], - "expectedQty": "3368833084240529286209", - "swapFee": "2022513358559453243", + "redemptionFee": "75114078841785837", "reserves": [ - "5205208785184553614549560", - "61837016323752844138554685", - "20919611364005677996545682" + "313672872066036417867409810", + "118271883550706790514835760", + "602155240550813151182148856" ], - "mAssetSupply": "87316257060457029759828555" + "mAssetSupply": "1031747287269030094422013195" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "165422404815014382796800", - "59358488963689182396416", - "83909392446258864455680" + "1084697191648698368", + "524794246640688576", + "819244469385281280" ], - "expectedQty": "329499300713122263091809", - "swapFee": "197818271390707782524", + "expectedQty": "2434544698014364321", "reserves": [ - "5039786380369539231752760", - "61777657834789154956158269", - "20835701971559419132090002" + "313672873150733609516108178", + "118271884075501037155524336", + "602155241370057620567430136" ], - "mAssetSupply": "86986757759743907496736746" + "mAssetSupply": "1031747289703574792436377516" }, { "type": "redeemMasset", - "inputQty": "34226149813345294116454", + "inputQty": "697421441135207130333184", "expectedQtys": [ - "1982379161814022272127", - "24299986609429067235199", - "8195637333175642078933" + "211967175260975704065460", + "79923255487351018043859", + "406911647474427506882916" ], - "redemptionFee": "10267844944003588234", + "redemptionFee": "209226432340562139099", "reserves": [ - "5037804001207725209480633", - "61753357848179725888923070", - "20827506334226243490011069" + "313460905975472633812042718", + "118191960820013686137480477", + "601748329722583193060547220" ], - "mAssetSupply": "86952541877775506206208526" + "mAssetSupply": "1031050077488871925868183431" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1286570307915501056", - "46695000739550617600", - "118129912268443254784" + "2149543607359258899775488", + "2680838016734436844896256", + "3169783777890548785872896" ], - "expectedQty": "165718562349078211662", + "expectedQty": "8042272601818756232696391", + "swapFee": "4828260517401694756471", "reserves": [ - "5037805287778033124981689", - "61753404543180465439540670", - "20827624464138511933265853" + "311311362368113374912267230", + "115511122803279249292584221", + "598578545944692644274674324" ], - "mAssetSupply": "86952707596337855284420188" + "mAssetSupply": "1023007804887053169635487040" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "93050232457995573264384", - "expectedQty": "81711918906520888114085", - "swapFee": "55830139474797343958", + "inputQty": "294437637540597007908864", + "expectedQty": "294182853512987498764131", "reserves": [ - "4956093368871512236867604", - "61753404543180465439540670", - "20827624464138511933265853" - ], - "mAssetSupply": "86859713194019334508499762" + "311605800005653971920176094", + "115511122803279249292584221", + "598578545944692644274674324" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "315748984018564546560", + "inputIndex": 0, + "inputQty": "783682640136369304764416", "outputIndex": 2, - "expectedQty": "306724541571058777471", - "swapFee": "184956624652946638", + "expectedQty": "789442601230173061862790", + "swapFee": "469793619574744088073", "reserves": [ - "4956093368871512236867604", - "61753720292164484004087230", - "20827317739596940874488382" + "312389482645790341224940510", + "115511122803279249292584221", + "597789103343462471212811534" ], - "mAssetSupply": "86859713378975959161446400", + "mAssetSupply": "1023302457534185731878339244", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "6784204875450928647372", - "expectedQtys": [ - "386981081825503129897", - "4821846504246293489323", - "1626236099790812497122" + "type": "mintMulti", + "inputQtys": [ + "1260384526540201525248", + "12829092180505841893376", + "13016401263025417355264" ], - "redemptionFee": "2035261462635278594", + "expectedQty": "27338724512040032759336", "reserves": [ - "4955706387789686733737707", - "61748898445660237710597907", - "20825691503497150061991260" + "312390743030316881426465758", + "115523951895459755134477597", + "597802119744725496630166798" ], - "mAssetSupply": "86852931209361970868077622" + "mAssetSupply": "1023329796258697771911098580" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "386666490129235584", - "expectedQty": "440912638200190891", + "type": "mintMulti", + "inputQtys": [ + "1858393047184131183607808", + "4703707975724419407413248", + "3797799816367456380780544" + ], + "expectedQty": "10448916329469600305079461", "reserves": [ - "4955706774456176862973291", - "61748898445660237710597907", - "20825691503497150061991260" - ] + "314249136077501012610073566", + "120227659871184174541890845", + "601599919561092953010947342" + ], + "mAssetSupply": "1033778712588167372216178041" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "202910071111307789074432", - "expectedQty": "201866574851729320050652", - "swapFee": "121746042666784673444", + "inputQty": "398552373875520265256960", + "outputIndex": 0, + "expectedQty": "395228073889245961490192", + "swapFee": "237101297689987167750", "reserves": [ - "4955706774456176862973291", - "61748898445660237710597907", - "20623824928645420741940608" + "313853908003611766648583374", + "120227659871184174541890845", + "601998471934968473276204302" ], - "mAssetSupply": "86650143325205968063867525" + "mAssetSupply": "1033778949689465062203345791", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "56856107454612761477120", + "expectedQty": "58296735038542391113623", + "reserves": [ + "313853908003611766648583374", + "120284515978638787303367965", + "601998471934968473276204302" + ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "4452968984903245312", - "expectedQty": "4429359708268269825", - "swapFee": "2671781390941947", + "inputIndex": 0, + "inputQty": "2212093199005744103424", + "expectedQty": "2212405118989966410754", + "swapFee": "1327255919403446462", "reserves": [ - "4955706774456176862973291", - "61748898445660237710597907", - "20623820499285712473670783" + "313851695598492776682172620", + "120284515978638787303367965", + "601998471934968473276204302" ], - "mAssetSupply": "86650138874908764551564160" + "mAssetSupply": "1033835035658560518253802452" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "8674800239745916993536", - "expectedQty": "8468164037735886610047", + "type": "mintMulti", + "inputQtys": [ + "936563556576791139188736", + "1713835187422234127892480", + "328298131059208926265344" + ], + "expectedQty": "3018079081812971756959541", "reserves": [ - "4955706774456176862973291", - "61757573245899983627591443", - "20623820499285712473670783" - ] + "314788259155069567821361356", + "121998351166061021431260445", + "602326770066027682202469646" + ], + "mAssetSupply": "1036853114740373490010761993" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "13837061188676", - "expectedQty": "15778016314495", + "inputIndex": 2, + "inputQty": "1268006733993625518080", + "expectedQty": "1257385955173982177481", "reserves": [ - "4955706774470013924161967", - "61757573245899983627591443", - "20623820499285712473670783" + "314788259155069567821361356", + "121998351166061021431260445", + "602328038072761675827987726" ] }, { "type": "mintMulti", "inputQtys": [ - "16745247863273611591680", - "11533758713920843939840", - "3719859884738837217280" + "1725679067512823821107200", + "85433189398257791401984", + "877140835108982240575488" ], - "expectedQty": "34083728598170492417886", + "expectedQty": "2681752536338450953348934", "reserves": [ - "4972452022333287535753647", - "61769107004613904471531283", - "20627540359170451310888063" + "316513938222582391642468556", + "122083784355459279222662429", + "603205178907870658068563214" ], - "mAssetSupply": "86692690767560448946906588" + "mAssetSupply": "1039536124662667114946288408" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "1019600305797799004340224", + "expectedQty": "1011058478061501980378585", + "reserves": [ + "316513938222582391642468556", + "122083784355459279222662429", + "604224779213668457072903438" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "140753554200645886541824", - "expectedQty": "123086848861823734248348", - "swapFee": "84452132520387531925", + "inputIndex": 2, + "inputQty": "15115563267272655583051776", + "expectedQty": "15232041369540728278718370", + "swapFee": "9069337960363593349831", "reserves": [ - "4849365173471463801505299", - "61769107004613904471531283", - "20627540359170451310888063" + "316513938222582391642468556", + "122083784355459279222662429", + "588992737844127728794185068" ], - "mAssetSupply": "86552021665492323447896689" + "mAssetSupply": "1025440689211416324936965048" }, { - "type": "redeemMasset", - "inputQty": "166516233042445729792", - "expectedQtys": [ - "9326827454674482383", - "118801076522959644781", - "39673133051886264375" + "type": "redeemBassets", + "inputQtys": [ + "73524190084378203783168", + "3662880113247078318080", + "71075028912533063860224" ], - "redemptionFee": "49954869912733718", + "expectedQty": "147706798511221336036556", + "swapFee": "88677285478019613389", "reserves": [ - "4849355846644009127022916", - "61768988203537381511886502", - "20627500686037399424623688" + "316440414032498013438685388", + "122080121475346032144344349", + "588921662815215195730324844" ], - "mAssetSupply": "86551855199214150914900615" + "mAssetSupply": "1025292982412905103600928492" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "607617882333753", - "1366113880835213", - "8766690684627496" + "113446048344974053867520", + "39295790558206427660288", + "84341557618806395764736" ], - "expectedQty": "10837396798528670", + "expectedQty": "237233190409948997513813", + "swapFee": "142425369467649988501", "reserves": [ - "4849355847251627009356669", - "61768988204903495392721715", - "20627500694804090109251184" + "316326967984153039384817868", + "122040825684787825716684061", + "588837321257596389334560108" ], - "mAssetSupply": "86551855210051547713429285" + "mAssetSupply": "1025055749222495154603414679" }, { - "type": "redeemMasset", - "inputQty": "933472295563116748", - "expectedQtys": [ - "52285202922033160", - "665986201943177793", - "222403365224983288" + "type": "mintMulti", + "inputQtys": [ + "571970894850991717351424", + "390442343138169158893568", + "733994029823228110700544" ], - "redemptionFee": "280041688668935", + "expectedQty": "1699233898217805383693044", "reserves": [ - "4849355794966424087323509", - "61768987538917293449543922", - "20627500472400724884267896" + "316898938879004031102169292", + "122431268027925994875577629", + "589571315287419617445260652" ], - "mAssetSupply": "86551854276859293838981472" + "mAssetSupply": "1026754983120712959987107723" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1592247152864498359992320", - "expectedQty": "1768838882860592926335860", + "type": "swap", + "inputIndex": 2, + "inputQty": "215485625541246016552960", + "outputIndex": 0, + "expectedQty": "213807983754153365070053", + "swapFee": "128246129131597570541", "reserves": [ - "6441602947830922447315829", - "61768987538917293449543922", - "20627500472400724884267896" - ] + "316685130895249877737099239", + "122431268027925994875577629", + "589786800912960863461813612" + ], + "mAssetSupply": "1026755111366842091584678264", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "15477065572446170513408", - "expectedQty": "15764414022467696883691", - "swapFee": "9286239343467702308", + "inputQty": "7905732584760249", + "expectedQty": "8093433890534143", "reserves": [ - "6441602947830922447315829", - "61753223124894825752660231", - "20627500472400724884267896" - ], - "mAssetSupply": "88305225380386784062506232" + "316685130895249877737099239", + "122431268035831727460337878", + "589786800912960863461813612" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "697375972094493058924544", - "124083130890584928026624", - "182181286536612421828608" + "type": "redeemMasset", + "inputQty": "973197210954894587566489", + "expectedQtys": [ + "300076058642373082008860", + "116010158932698412171416", + "558854462654880172876726" ], - "expectedQty": "1067477652987153245445016", - "swapFee": "640871114460968528384", + "redemptionFee": "291959163286468376269", "reserves": [ - "5744226975736429388391285", - "61629139994004240824633607", - "20445319185864112462439288" + "316385054836607504655090379", + "122315257876899029048166462", + "589227946450305983288936886" ], - "mAssetSupply": "87237747727399630817061216" + "mAssetSupply": "1025782206123143917356022187" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "39282210918547536740352", - "expectedQty": "38461573532045323642166", + "inputIndex": 0, + "inputQty": "28236929845723389755392", + "expectedQty": "28211569619656256466792", + "reserves": [ + "316413291766453228044845771", + "122315257876899029048166462", + "589227946450305983288936886" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "3337215234287620436525056", + "expectedQty": "3334033431611092318117090", "reserves": [ - "5744226975736429388391285", - "61668422204922788361373959", - "20445319185864112462439288" + "319750507000740848481370827", + "122315257876899029048166462", + "589227946450305983288936886" ] }, { "type": "redeemMasset", - "inputQty": "66258309021405250846720", + "inputQty": "5765883516242755793715", "expectedQtys": [ - "4359591098940642262295", - "46803356772967258434233", - "15517010716009588167437" + "1790896392006884226038", + "685077737870866169891", + "3300217451617781516302" ], - "redemptionFee": "19877492706421575254", + "redemptionFee": "1729765054872826738", "reserves": [ - "5739867384637488746128990", - "61621618848149821102939726", - "20429802175148102874271851" + "319748716104348841597144789", + "122314572799161158181996571", + "589224646232854365507420584" ], - "mAssetSupply": "87209970869402977311431916" + "mAssetSupply": "1029138686970623478047639092" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "298773799078463503597568", - "expectedQty": "269037844833111095487077", - "swapFee": "179264279447078102158", + "type": "mintMulti", + "inputQtys": [ + "32354208297692584334065664", + "10659380467510087790886912", + "7257603041553914114605056" + ], + "expectedQty": "50415654478768615113647391", "reserves": [ - "5470829539804377650641913", - "61621618848149821102939726", - "20429802175148102874271851" + "352102924402041425931210453", + "132973953266671245972883483", + "596482249274408279622025640" ], - "mAssetSupply": "86911376334603960885936506" + "mAssetSupply": "1079554341449392093161286483" }, { "type": "redeemBassets", "inputQtys": [ - "5876542733386", - "199048997106", - "13100209110690" + "21789372917053666413772800", + "31321487375089372034498560", + "5922779326143118455078912" ], - "expectedQty": "19914717011144", - "swapFee": "11956003808", + "expectedQty": "59806658745627651269680508", + "swapFee": "35905538570518902103070", "reserves": [ - "5470829539798501107908527", - "61621618848149622053942620", - "20429802175135002665161161" + "330313551484987759517437653", + "101652465891581873938384923", + "590559469948265161166946728" ], - "mAssetSupply": "86911376334584046168925362" + "mAssetSupply": "1019747682703764441891605975" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "9878359078145862936821760", - "expectedQty": "9638708700878698786057962", + "inputIndex": 0, + "inputQty": "577840952654831904882688", + "expectedQty": "576563011505853588758119", "reserves": [ - "5470829539798501107908527", - "71499977926295484990764380", - "20429802175135002665161161" + "330891392437642591422320341", + "101652465891581873938384923", + "590559469948265161166946728" ] }, { - "type": "redeemMasset", - "inputQty": "663051725853238283468", - "expectedQtys": [ - "37559311666994944077", - "490874361114877949042", - "140258310299905393423" - ], - "redemptionFee": "198915517755971485", + "type": "redeem", + "inputIndex": 0, + "inputQty": "40272693946344745327394816", + "expectedQty": "40308519806040797247733344", + "swapFee": "24163616367806847196436", "reserves": [ - "5470791980486834112964450", - "71499487051934370112815338", - "20429661916824702759767738" + "290582872631601794174586997", + "101652465891581873938384923", + "590559469948265161166946728" ], - "mAssetSupply": "96549422182652409472671341" + "mAssetSupply": "980075715385293357000165714" }, { "type": "mintMulti", "inputQtys": [ - "288708184792987008", - "235572874451955392", - "27061243023276804" + "307163205412515968", + "271629141035121440", + "302949002342423488" ], - "expectedQty": "589847762691771901", + "expectedQty": "887578901783479655", "reserves": [ - "5470792269195018905951458", - "71499487287507244564770730", - "20429661943885945783044542" + "290582872938764999587102965", + "101652466163211014973506363", + "590559470251214163509370216" ], - "mAssetSupply": "96549422772500172164443242" + "mAssetSupply": "980075716272872258783645369" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "31553678942820536122605568", + "expectedQty": "31511828413980179810892250", + "reserves": [ + "322136551881585535709708533", + "101652466163211014973506363", + "590559470251214163509370216" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "170617301337244897902592", - "357145550156450907553792", - "318699333972503891542016" + "2817815345976749064192", + "6864341226213309677568", + "6730246565039516418048" ], - "expectedQty": "867279202631550297671098", - "swapFee": "520679929536652169904", + "expectedQty": "16581594098136494164479", "reserves": [ - "5300174967857774008048866", - "71142341737350793657216938", - "20110962609913441891502526" + "322139369696931512458772725", + "101659330504437228283183931", + "590566200497779203025788264" ], - "mAssetSupply": "95682143569868621866772144" + "mAssetSupply": "1011604126280950575088702098" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "427265516058000752640", - "354878856402942099456", - "384500983961291653120" + "45146349550900770504704", + "147615531048403210338304", + "282705023443032478842880" ], - "expectedQty": "1230637365213397562185", + "expectedQty": "477809941929793468980590", + "swapFee": "286858080005879609153", "reserves": [ - "5300602233373832008801506", - "71142696616207196599316394", - "20111347110897403183155646" + "322094223347380611688268021", + "101511714973388825072845627", + "590283495474336170546945384" ], - "mAssetSupply": "95683374207233835264334329" + "mAssetSupply": "1011126316339020781619721508" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "91735175454891383455744", - "expectedQty": "90648547128058240858513", - "swapFee": "55041105272934830073", + "type": "mintMulti", + "inputQtys": [ + "1559243070244337425055744", + "2459995234228507796045824", + "1177379734845952733741056" + ], + "expectedQty": "5266610445447410308560730", "reserves": [ - "5300602233373832008801506", - "71142696616207196599316394", - "20020698563769344942297133" + "323653466417624949113323765", + "103971710207617332868891451", + "591460875209182123280686440" ], - "mAssetSupply": "95591694072884216815708658" + "mAssetSupply": "1016392926784468191928282238" }, { "type": "redeemMasset", - "inputQty": "100994326968864106086", + "inputQty": "387884728741811191808", "expectedQtys": [ - "5598500592056450101", - "75140976740074187183", - "21145878869560781002" + "123478402544267755024", + "39666686806518944343", + "225650739498111626724" + ], + "redemptionFee": "116365418622543357", + "reserves": [ + "323653342939222404845568741", + "103971670540930526349947108", + "591460649558442625169059716" ], - "redemptionFee": "30298298090659231", + "mAssetSupply": "1016392539016104868739633787" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "981815517241071501312", + "outputIndex": 0, + "expectedQty": "1015970604007988175522", + "swapFee": "608818295978775525", "reserves": [ - "5300596634873239952351405", - "71142621475230456525129211", - "20020677417890475381516131" + "323652326968618396857393219", + "103972652356447767421448420", + "591460649558442625169059716" ], - "mAssetSupply": "95591593108855546042261803" + "mAssetSupply": "1016392539624923164718409312", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "322246992693327569092608", - "expectedQty": "274990388351653391004798", - "swapFee": "193348195615996541455", + "inputQty": "270744377898540007424", + "expectedQty": "271084155806720132986", + "swapFee": "162446626739124004", "reserves": [ - "5025606246521586561346607", - "71142621475230456525129211", - "20020677417890475381516131" + "323652055884462590137260233", + "103972652356447767421448420", + "591460649558442625169059716" ], - "mAssetSupply": "95269539464357834469710650" + "mAssetSupply": "1016392269042991892917525892" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "253143541405164624674816", - "expectedQty": "245801285938342836972793", + "type": "redeemBassets", + "inputQtys": [ + "38202559703527511293952", + "26027843297434530742272", + "23503102889643609161728" + ], + "expectedQty": "88312991772856678573496", + "swapFee": "53019606827810693560", "reserves": [ - "5025606246521586561346607", - "71395765016635621149804027", - "20020677417890475381516131" - ] + "323613853324759062625966281", + "103946624513150332890706148", + "591437146455552981559897988" + ], + "mAssetSupply": "1016303956051219036238952396" }, { - "type": "redeemMasset", - "inputQty": "166549098459542368079052", - "expectedQtys": [ - "8760468003788689604809", - "124454699463802425549650", - "34899372400095752717605" + "type": "redeemBassets", + "inputQtys": [ + "2526918421814002438897664", + "7090214304589560420499456", + "1956692472852939320328192" ], - "redemptionFee": "49964729537862710423", + "expectedQty": "11803530491019076776893509", + "swapFee": "7086370116681454939099", "reserves": [ - "5016845778517797871741798", - "71271310317171818724254377", - "19985778045490379628798526" + "321086934902945060187068617", + "96856410208560772470206692", + "589480453982700042239569796" ], - "mAssetSupply": "95348841616566172801314814" + "mAssetSupply": "1004500425560199959462058887" }, { "type": "redeemMasset", - "inputQty": "173055486239796048691", + "inputQty": "63285491181713083596", "expectedQtys": [ - "9102703431637613803", - "129316632330903058271", - "36262747238042801033" + "20223036075587981407", + "6100312609704091562", + "37127279845097122492" ], - "redemptionFee": "51916645871938814", + "redemptionFee": "18985647354513925", "reserves": [ - "5016836675814366234127995", - "71271181000539487821196106", - "19985741782743141585997493" + "321086914679908984599087210", + "96856404108248162766115130", + "589480416855420197142447304" ], - "mAssetSupply": "95348668612996578877204937" + "mAssetSupply": "1004500362293694425103489216" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "26678409840297728", - "outputIndex": 0, - "expectedQty": "21910570855226443", - "swapFee": "15541635388822", + "type": "redeemMasset", + "inputQty": "111877423670534366822", + "expectedQtys": [ + "35750708933216393926", + "10784261062285611055", + "65634386956684834571" + ], + "redemptionFee": "33563227101160310", "reserves": [ - "5016836653903795378901552", - "71271181027217897661493834", - "19985741782743141585997493" + "321086878929200051382693284", + "96856393323987100480504075", + "589480351221033240457612733" ], - "mAssetSupply": "95348668613012120512593759", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1004500250449833981670282704" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "12131597837920651706368", - "expectedQty": "12487349110233839871189", - "swapFee": "7278958702752391023", + "type": "mintMulti", + "inputQtys": [ + "1298050818349477008506880", + "499092351174647362879488", + "1505590512578565379194880" + ], + "expectedQty": "3303851622546911798301484", "reserves": [ - "5016836653903795378901552", - "71258693678107663821622645", - "19985741782743141585997493" + "322384929747549528391200164", + "97355485675161747843383563", + "590985941733611805836807613" ], - "mAssetSupply": "95336544294132902613278414" + "mAssetSupply": "1007804102072380893468584188" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "36677370863894598254592", - "expectedQty": "37752361711591554705536", - "swapFee": "22006422518336758952", + "type": "mint", + "inputIndex": 2, + "inputQty": "488932425346998618554368", + "expectedQty": "484016021118460458693430", "reserves": [ - "5016836653903795378901552", - "71220941316396072266917109", - "19985741782743141585997493" - ], - "mAssetSupply": "95299888929691526351782774" + "322384929747549528391200164", + "97355485675161747843383563", + "591474874158958804455361981" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "171911802758688799719424", - "97072984054214420332544", - "94275357465252970102784" + "3876799697671423", + "1089786918829300", + "2989644693994179" ], - "expectedQty": "391775947341287231850364", + "expectedQty": "7959426083378669", + "swapFee": "4778522763685", "reserves": [ - "5188748456662484178620976", - "71318014300450286687249653", - "20080017140208394556100277" + "322384929743672728693528741", + "97355485674071960924554263", + "591474874155969159761367802" ], - "mAssetSupply": "95691664877032813583633138" + "mAssetSupply": "1008288118085539927843898949" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "138372259743321952", - "expectedQty": "136711968794653059", - "swapFee": "83023355845993", + "type": "mintMulti", + "inputQtys": [ + "2221406136590739395575808", + "4234516051555372098387968", + "4004285160414771083739136" + ], + "expectedQty": "10571853071256367915186029", "reserves": [ - "5188748456662484178620976", - "71318014300450286687249653", - "20080017003496425761447218" + "324606335880263468089104549", + "101590001725627333022942231", + "595479159316383930845106938" ], - "mAssetSupply": "95691664738743577196157179" + "mAssetSupply": "1018859971156796295759084978" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "6073501345801652142080", - "expectedQty": "6245870679739371249374", - "swapFee": "3644100807480991285", + "inputQty": "10022136426366905614336", + "expectedQty": "9672726647657774028265", + "swapFee": "6013281855820143368", "reserves": [ - "5188748456662484178620976", - "71311768429770547316000279", - "20080017003496425761447218" + "324606335880263468089104549", + "101580328998979675248913966", + "595479159316383930845106938" ], - "mAssetSupply": "95685594881498583025006384" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "38670959465704095744", - "expectedQty": "45251637310362584131", - "reserves": [ - "5188787127621949882716720", - "71311768429770547316000279", - "20080017003496425761447218" - ] + "mAssetSupply": "1018849955033651784673614010" }, { "type": "redeemBassets", "inputQtys": [ - "147193564741599762579456", - "296486993060421619941376", - "6528995556861185884160" + "657580799189181136896", + "1325124938542596489216", + "1158370760393074540544" ], - "expectedQty": "467494140157398082927119", - "swapFee": "280664883024253401797", + "expectedQty": "3175580758004325757121", + "swapFee": "1906492350212723088", "reserves": [ - "5041593562880350120137264", - "71015281436710125696058903", - "20073488007939564575563058" + "324605678299464278907967653", + "101579003874041132652424750", + "595478000945623537770566394" ], - "mAssetSupply": "95218145992978495304663396" + "mAssetSupply": "1018846779452893780347856889" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1381445595028673347452928", - "expectedQty": "1420897288608340591228054", - "swapFee": "828867357017204008471", + "type": "mintMulti", + "inputQtys": [ + "74990928796593", + "171408186511921", + "150906710995608" + ], + "expectedQty": "401778415559899", "reserves": [ - "5041593562880350120137264", - "69594384148101785104830849", - "20073488007939564575563058" + "324605678299539269836764246", + "101579003874212540838936671", + "595478000945774444481562002" ], - "mAssetSupply": "93837529265306839161218939" + "mAssetSupply": "1018846779453295558763416788" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1161962375169164531728384", - "expectedQty": "1172664425562601642474766", + "type": "redeemMasset", + "inputQty": "401936181117404618896179", + "expectedQtys": [ + "128018881842781760489404", + "40061007443869916007982", + "234846254823390083574017" + ], + "redemptionFee": "120580854335221385668", "reserves": [ - "5041593562880350120137264", - "69594384148101785104830849", - "21235450383108729107291442" - ] + "324477659417696488076274842", + "101538942866768670922928689", + "595243154690951054397987985" + ], + "mAssetSupply": "1018444963853032489365906277" }, { "type": "redeemBassets", "inputQtys": [ - "154726000737255200", - "5695666492273224704", - "7862530488666048512" + "494207738818762989633536", + "1685537056187704846319616", + "3055356845309567793364992" ], - "expectedQty": "13647558983680936365", - "swapFee": "8193451461085212", + "expectedQty": "5264860531895463403617490", + "swapFee": "3160812806821370864689", "reserves": [ - "5041593408154349382882064", - "69594378452435292831606145", - "21235442520578240441242930" + "323983451678877725086641306", + "99853405810580966076609073", + "592187797845641486604622993" ], - "mAssetSupply": "95010180043310457122757340" + "mAssetSupply": "1013180103321137025962288787" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "94752969384747232919552", - "expectedQty": "93932890428910741090309", - "swapFee": "56851781630848339751", + "inputIndex": 1, + "inputQty": "4511494151476130873344", + "expectedQty": "4350437859082517150164", + "swapFee": "2706896490885678524", "reserves": [ - "5041593408154349382882064", - "69594378452435292831606145", - "21141509630149329700152621" + "323983451678877725086641306", + "99849055372721883559458909", + "592187797845641486604622993" ], - "mAssetSupply": "94915483925707340738177539" + "mAssetSupply": "1013175594533882040717093967" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "726241312257578368", - "expectedQty": "850411739742884261", + "type": "redeemBassets", + "inputQtys": [ + "10792282049625302289612800", + "4421935814634078663081984", + "2413983147382141072965632" + ], + "expectedQty": "17749065426157475439058350", + "swapFee": "10655832755347693879762", "reserves": [ - "5041594134395661640460432", - "69594378452435292831606145", - "21141509630149329700152621" - ] + "313191169629252422797028506", + "95427119558087804896376925", + "589773814698259345531657361" + ], + "mAssetSupply": "995426529107724565278035617" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "13646875954164193860517888", + "10478533473895999187451904", + "14480226570228069704925184" + ], + "expectedQty": "38866983504169572875069027", + "swapFee": "23334190616871866845148", + "reserves": [ + "299544293675088228936510618", + "84948586084191805708925021", + "575293588128031275826732177" + ], + "mAssetSupply": "956559545603554992402966590" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1858415542322413051052032", - "expectedQty": "2092444827556704164390652", + "inputQty": "46428962678972086172516352", + "expectedQty": "46287197682926320154213388", "reserves": [ - "6900009676718074691512464", - "69594378452435292831606145", - "21141509630149329700152621" + "345973256354060315109026970", + "84948586084191805708925021", + "575293588128031275826732177" ] }, { "type": "mintMulti", "inputQtys": [ - "143301578619230682611712", - "441388716860691374407680", - "222025344355486452940800" + "169022434199305696837632", + "27372963704975237578752", + "284751252960175921823744" ], - "expectedQty": "812520566601406995074281", + "expectedQty": "478760002857770295541473", "reserves": [ - "7043311255337305374124176", - "70035767169295984206013825", - "21363534974504816153093421" + "346142278788259620805864602", + "84975959047896780946503773", + "575578339380991451748555921" ], - "mAssetSupply": "97820450170277191640526733" + "mAssetSupply": "1003325503289339082852721451" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "50176560060139772575744", - "expectedQty": "45977294114135012533987", - "swapFee": "30105936036083863545", - "reserves": [ - "6997333961223170361590189", - "70035767169295984206013825", - "21363534974504816153093421" + "type": "redeemBassets", + "inputQtys": [ + "989627360519650410496", + "103966461928471216128", + "1090198573969972396032" ], - "mAssetSupply": "97770303716153087951814534" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "32732321829114217496576", - "expectedQty": "29966218346138897325947", - "swapFee": "19639393097468530497", + "expectedQty": "2173278145430574052640", + "swapFee": "1304749737100604794", "reserves": [ - "6967367742877031464264242", - "70035767169295984206013825", - "21363534974504816153093421" + "346141289160899101155454106", + "84975855081434852475287645", + "575577249182417481776159889" ], - "mAssetSupply": "97737591033717071202848455" + "mAssetSupply": "1003323330011193652278668811" }, { - "type": "mintMulti", - "inputQtys": [ - "2141494295033243500544", - "2077590829896194064384", - "6153413012035745087488" + "type": "redeemMasset", + "inputQty": "83051130209246719770624", + "expectedQtys": [ + "28643608884281256968010", + "7031854429907565514249", + "47629711116630418865175" ], - "expectedQty": "10574949569652580538480", + "redemptionFee": "24915339062774015931", "reserves": [ - "6969509237172064707764786", - "70037844760125880400078209", - "21369688387516851898180909" + "346112645552014819898486096", + "84968823227004944909773396", + "575529619471300851357294714" ], - "mAssetSupply": "97748165983286723783386935" + "mAssetSupply": "1003240303796323468332914118" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "5294452663528455143424", - "outputIndex": 2, - "expectedQty": "5142579612215159914262", - "swapFee": "3111504612868662459", + "inputIndex": 0, + "inputQty": "3358849950780018393088", + "outputIndex": 1, + "expectedQty": "3185685976758379883869", + "swapFee": "2007455324658322143", "reserves": [ - "6969509237172064707764786", - "70043139212789408855221633", - "21364545807904636738266647" + "346116004401965599916879184", + "84965637541028186529889527", + "575529619471300851357294714" ], - "mAssetSupply": "97748169094791336652049394", + "mAssetSupply": "1003240305803778792991236261", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "12681242852948143243264", - "13352347351577031344128", - "2689792435356356313088" + "142299345622797201178624", + "1954664590190308690493440", + "1676884887507571977486336" ], - "expectedQty": "29635480497932107295792", + "expectedQty": "3850342252834836505977132", "reserves": [ - "6982190480025012851008050", - "70056491560140985886565761", - "21367235600339993094579735" + "346258303747588397118057808", + "86920302131218495220382967", + "577206504358808423334781050" ], - "mAssetSupply": "97777804575289268759345186" + "mAssetSupply": "1007090648056613629497213393" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1304115880288442029965312", - "expectedQty": "1277048793318183258721952", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1173248419265817322979328", + "expectedQty": "1185133421946872523894943", + "swapFee": "703949051559490393787", "reserves": [ - "6982190480025012851008050", - "71360607440429427916531073", - "21367235600339993094579735" - ] + "346258303747588397118057808", + "86920302131218495220382967", + "576021370936861550810886107" + ], + "mAssetSupply": "1005918103586399371664627852" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "505027035512529408", - "expectedQty": "500492168944549556", - "swapFee": "303016221307517", + "inputIndex": 0, + "inputQty": "7583504660467660701564928", + "expectedQty": "7606550768155977179085418", + "swapFee": "4550102796280596420938", "reserves": [ - "6982190480025012851008050", - "71360607440429427916531073", - "21367235099847824150030179" + "338651752979432419938972390", + "86920302131218495220382967", + "576021370936861550810886107" ], - "mAssetSupply": "99054852863883432726845247" + "mAssetSupply": "998339149028727991559483862" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "3157071662536117394079744", - "expectedQty": "3220770381660485754946805", - "swapFee": "1894242997521670436447", + "inputIndex": 2, + "inputQty": "7909186969388719385083904", + "expectedQty": "7989001833256886024554088", + "swapFee": "4745512181633231631050", "reserves": [ - "6982190480025012851008050", - "68139837058768942161584268", - "21367235099847824150030179" + "338651752979432419938972390", + "86920302131218495220382967", + "568032369103604664786332019" ], - "mAssetSupply": "95899675444344837003201950" + "mAssetSupply": "990434707571520905406031008" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "25019759168988175663104", - "57398785810428036382720", - "23949694581497535660032" + "323519145089275264", + "347737990514479936", + "189731700061926272" ], - "expectedQty": "107569594548545688409467", + "expectedQty": "873842085022562914", + "swapFee": "524620023027354", "reserves": [ - "7007210239194001026671154", - "68197235844579370197966988", - "21391184794429321685690211" + "338651752655913274849697126", + "86920301783480504705903031", + "568032368913872964724405747" ], - "mAssetSupply": "96007245038893382691611417" + "mAssetSupply": "990434706697678820383468094" }, { - "type": "mintMulti", - "inputQtys": [ - "221055026685735203766272", - "124990607672448854786048", - "43021156974202877640704" + "type": "redeemMasset", + "inputQty": "1408793873626439165254041", + "expectedQtys": [ + "481553588595881380982406", + "123598306866583862848544", + "807726590941412014672754" ], - "expectedQty": "405481552365595548562624", + "redemptionFee": "422638162087931749576", "reserves": [ - "7228265265879736230437426", - "68322226452251819052753036", - "21434205951403524563330915" + "338170199067317393468714720", + "86796703476613920843054487", + "567224642322931552709732993" ], - "mAssetSupply": "96412726591258978240174041" + "mAssetSupply": "989026335462214469149963629" }, { - "type": "redeemBassets", - "inputQtys": [ - "1206701923023614", - "1324208617350379", - "885176606026605" + "type": "redeem", + "inputIndex": 2, + "inputQty": "32329523415983759360", + "expectedQty": "32652631894218123276", + "swapFee": "19397714049590255", + "reserves": [ + "338170199067317393468714720", + "86796703476613920843054487", + "567224609670299658491609717" ], - "expectedQty": "3495172671932352", - "swapFee": "2098362620731", + "mAssetSupply": "989026303152088767215794524" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "15339651652620255257165824", + "outputIndex": 2, + "expectedQty": "15428705598955660256386081", + "swapFee": "9168554177081567176874", "reserves": [ - "7228265264673034307413812", - "68322226450927610435402657", - "21434205950518347957304310" + "353509850719937648725880544", + "86796703476613920843054487", + "551795904071343998235223636" ], - "mAssetSupply": "96412726587763805568241689" + "mAssetSupply": "989035471706265848782971398", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "97898743301975266295808", + "inputQty": "121918775881019649582694", "expectedQtys": [ - "7337473166420054323432", - "69354469557701316065142", - "21758043631034834000573" + "43564219532840570378405", + "10696252557832378070471", + "67999683328005524293111" ], - "redemptionFee": "29369622990592579888", + "redemptionFee": "36575632764305894874", "reserves": [ - "7220927791506614253090380", - "68252871981369909119337515", - "21412447906887313123303737" + "353466286500404808155502139", + "86786007224056088464984016", + "551727904388015992710930525" ], - "mAssetSupply": "96314857214084820894525769" + "mAssetSupply": "988913589506017593439283578" }, { - "type": "redeemBassets", - "inputQtys": [ - "1247245084991858520621056", - "246692390860085782380544", - "2356151883385945540526080" - ], - "expectedQty": "3987883675632485938623456", - "swapFee": "2394166705402733203095", + "type": "mint", + "inputIndex": 0, + "inputQty": "4872823696848881451008", + "expectedQty": "4852344028002507928673", "reserves": [ - "5973682706514755732469324", - "68006179590509823336956971", - "19056296023501367582777657" - ], - "mAssetSupply": "92326973538452334955902313" + "353471159324101657036953147", + "86786007224056088464984016", + "551727904388015992710930525" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "8391983784888756224", - "expectedQty": "8592519333932369924", - "swapFee": "5035190270933253", + "inputQty": "2077466402084295245037568", + "expectedQty": "1984230532419823712852793", + "swapFee": "1246479841250577147022", "reserves": [ - "5973682706514755732469324", - "68006170997990489404587047", - "19056296023501367582777657" + "353471159324101657036953147", + "84801776691636264752131223", + "551727904388015992710930525" ], - "mAssetSupply": "92326965151503740338079342" + "mAssetSupply": "986842221927802551279321705" }, { "type": "redeemBassets", "inputQtys": [ - "302730297803192670355456", - "1139876044399857593483264", - "511328317994789196791808" + "24862453435399916", + "25263840014123164", + "6059175396216008" ], - "expectedQty": "1968992996358060876957457", - "swapFee": "1182105060851347334575", + "expectedQty": "57213624236243302", + "swapFee": "34348783812033", "reserves": [ - "5670952408711563062113868", - "66866294953590631811103783", - "18544967705506578385985849" + "353471159299239203601553231", + "84801776666372424738008059", + "551727904381956817314714517" ], - "mAssetSupply": "90357972155145679461121885" + "mAssetSupply": "986842221870588927043078403" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "1617793534497285632", - "expectedQty": "1636753911181662099", + "inputQty": "1143813873182711", + "outputIndex": 1, + "expectedQty": "1080199631006987", + "swapFee": "679269851255", "reserves": [ - "5670952408711563062113868", - "66866294953590631811103783", - "18544969323300112883271481" - ] + "353471159299239203601553231", + "84801776665292225107001072", + "551727904383100631187897228" + ], + "mAssetSupply": "986842221870589606312929658", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "37051816458892168396", + "inputQty": "3781356189318852588339", "expectedQtys": [ - "2324709632733995313", - "27410690265193325401", - "7602191963100455638" + "1354015207539755361382", + "324843745268591070181", + "2113462310305004330714" ], - "redemptionFee": "11115544937667650", + "redemptionFee": "1134406856795655776", "reserves": [ - "5670950084001930328118555", - "66866267542900366617778382", - "18544961721108149782815843" + "353469805284031663846191849", + "84801451821546956515930891", + "551725790920790326183566514" ], - "mAssetSupply": "90357936751198676688283238" + "mAssetSupply": "986838441648807144255997095" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1521830042135000252416", - "outputIndex": 1, - "expectedQty": "1756783534888933714295", - "swapFee": "1028545143763045161", + "type": "mintMulti", + "inputQtys": [ + "1253287682089488209674240", + "1276049368508298155786240", + "1573545153183800648269824" + ], + "expectedQty": "4141297004692739038421532", "reserves": [ - "5672471914044065328370971", - "66864510759365477684064087", - "18544961721108149782815843" + "354723092966121152055866089", + "86077501190055254671717131", + "553299336073974126831836338" ], - "mAssetSupply": "90357937779743820451328399", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "990979738653499883294418627" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "11528031934760259420160", - "expectedQty": "12982227165312322259904", + "type": "redeemMasset", + "inputQty": "1113723821477864570198425", + "expectedQtys": [ + "398539974322493202970986", + "96710154467742611659668", + "621645186242878211530407" + ], + "redemptionFee": "334117146443359371059", "reserves": [ - "5683999945978825587791131", - "66864510759365477684064087", - "18544961721108149782815843" - ] + "354324552991798658852895103", + "85980791035587512060057463", + "552677690887731248620305931" + ], + "mAssetSupply": "989866348949168462083591261" }, { "type": "mintMulti", "inputQtys": [ - "775680756620578390016", - "1274001312350469357568", - "1112159335356956147712" + "1806501577655485714137088", + "2412840194223636094124032", + "1060223305093652313800704" + ], + "expectedQty": "5370453750814689767554180", + "reserves": [ + "356131054569454144567032191", + "88393631229811148154181495", + "553737914192824900934106635" + ], + "mAssetSupply": "995236802699983151851145441" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "551440656678846644355072", + "979517668013861054185472", + "238849777441271384637440" ], - "expectedQty": "3240969947847096928962", + "expectedQty": "1808792571609803511504880", + "swapFee": "1085927099225417357317", "reserves": [ - "5684775626735446166181147", - "66865784760677828153421655", - "18546073880443506738963555" + "355579613912775297922677119", + "87414113561797287099996023", + "553499064415383629549469195" ], - "mAssetSupply": "90374160976856979870517265" + "mAssetSupply": "993428010128373348339640561" }, { "type": "mintMulti", "inputQtys": [ - "19438885569641", - "19543918289232", - "10042931143023" + "4578013352449762394112", + "2988448433407388024832", + "4397539000914967265280" ], - "expectedQty": "51106231120890", + "expectedQty": "12035558100447745656751", "reserves": [ - "5684775626754885051750788", - "66865784760697372071710887", - "18546073880453549670106578" + "355584191926127747685071231", + "87417102010230694488020855", + "553503461954384544516734475" ], - "mAssetSupply": "90374160976908086101638155" + "mAssetSupply": "993440045686473796085297312" }, { "type": "redeemBassets", "inputQtys": [ - "42608603171647163203584", - "103067525392424322990080", - "98231041240091301249024" + "23030756243184656", + "20333605446520396", + "19288193436925712" ], - "expectedQty": "247901033276979534042347", - "swapFee": "148829917916937883155", + "expectedQty": "63279315678633244", + "swapFee": "37990383637362", "reserves": [ - "5642167023583237888547204", - "66762717235304947748720807", - "18447842839213458368857554" + "355584191903096991441886575", + "87417101989897089041500459", + "553503461935096351079808763" ], - "mAssetSupply": "90126259943631106567595808" + "mAssetSupply": "993440045623194480406664068" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "90130155440693034614784", - "outputIndex": 0, - "expectedQty": "77760017038372866655201", - "swapFee": "52728506902224603684", - "reserves": [ - "5564407006544865021892003", - "66852847390745640783335591", - "18447842839213458368857554" - ], - "mAssetSupply": "90126312672138008792199492", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2684099267953389056", - "5872796207540169728", - "12661917057832683520" + "3626703948427892006846464", + "3174902359863529742270464", + "4711919887611254810869760" ], - "expectedQty": "21574546537033801772", + "expectedQty": "11597370360580143917509608", + "swapFee": "6962599776213814639289", "reserves": [ - "5564409690644132975281059", - "66852853263541848323505319", - "18447855501130516201541074" + "351957487954669099435040111", + "84242199630033559299229995", + "548791542047485096268939003" ], - "mAssetSupply": "90126334246684545826001264" + "mAssetSupply": "981842675262614336489154460" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "1096322351861760945815552", - "expectedQty": "1108114391833390439107380", + "inputQty": "7819511001952714372415488", + "expectedQty": "7894896653807307197409788", + "swapFee": "4691706601171628623449", "reserves": [ - "5564409690644132975281059", - "66852853263541848323505319", - "19544177852992277147356626" - ] + "351957487954669099435040111", + "84242199630033559299229995", + "540896645393677789071529215" + ], + "mAssetSupply": "974027855967262793745362421" }, { - "type": "mintMulti", - "inputQtys": [ - "61318624667510627106816", - "20309904372012238766080", - "347705025622326968320" + "type": "redeemMasset", + "inputQty": "378100135331154970961510", + "expectedQtys": [ + "136582594080140067897197", + "32691499826731728924791", + "209903381759075592804434" ], - "expectedQty": "89416629824405255903068", + "redemptionFee": "113430040599346491288", "reserves": [ - "5625728315311643602387875", - "66873163167913860562271399", - "19544525558017899474324946" + "351820905360588959367142914", + "84209508130206827570305204", + "540686742011918713478724781" ], - "mAssetSupply": "91323865268342341521011712" + "mAssetSupply": "973649869261972238120892199" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "280457249994334831378432", - "outputIndex": 2, - "expectedQty": "311463065180081544298206", - "swapFee": "188820835229547643183", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3246310671011826106368", + "expectedQty": "3099810199348471086953", + "swapFee": "1947786402607095663", "reserves": [ - "5906185565305978433766307", - "66873163167913860562271399", - "19233062492837817930026740" + "351820905360588959367142914", + "84206408320007479099218251", + "540686742011918713478724781" ], - "mAssetSupply": "91324054089177571068654895", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "110156300310887645184", - "expectedQty": "122992775164847211385", - "reserves": [ - "5906295721606289321411491", - "66873163167913860562271399", - "19233062492837817930026740" - ] + "mAssetSupply": "973646624899087628901881494" }, { "type": "redeemMasset", - "inputQty": "32487817324184888934", + "inputQty": "188383409502451922475417", "expectedQtys": [ - "2100485301905097165", - "23782435378617123737", - "6839949603106074528" + "68050704254665855218514", + "16287563648497088599733", + "104581942159920265996527" ], - "redemptionFee": "9746345197255466", + "redemptionFee": "56515022850735576742", "reserves": [ - "5906293621120987416314326", - "66873139385478481945147662", - "19233055652888214823952212" + "351752854656334293511924400", + "84190120756358982010618518", + "540582160069758793212728254" ], - "mAssetSupply": "91324144603881756928232812" + "mAssetSupply": "973458298004608027714982819" }, { - "type": "mintMulti", - "inputQtys": [ - "178006791507673939968", - "166269068114275401728", - "219720170339352838144" - ], - "expectedQty": "583052990698951819521", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1283592738799184037019648", + "expectedQty": "1224867601834668107582207", + "swapFee": "770155643279510422211", "reserves": [ - "5906471627912495090254294", - "66873305654546596220549390", - "19233275373058554176790356" + "351752854656334293511924400", + "82965253154524313903036311", + "540582160069758793212728254" ], - "mAssetSupply": "91324727656872455880052333" + "mAssetSupply": "972175475421452123188385382" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "264224778070809049563136", - "outputIndex": 1, - "expectedQty": "273015139054428530123557", - "swapFee": "160094519868306318641", + "type": "redeemMasset", + "inputQty": "20243096220872188572467", + "expectedQtys": [ + "7322166514871062694409", + "1727023364570494930371", + "11252879795010293739896" + ], + "redemptionFee": "6072928866261656571", "reserves": [ - "5906471627912495090254294", - "66600290515492167690425833", - "19497500151129363226353492" + "351745532489819422449229991", + "82963526131159743408105940", + "540570907189963782918988358" ], - "mAssetSupply": "91324887751392324186370974", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "972155238398160117261469486" }, { "type": "redeemBassets", "inputQtys": [ - "2580990386717801316352", - "2582851662469971574784", - "1090178272383833079808" + "6740053834653156029497344", + "1434484776530881328185344", + "1289087132807125337636864" ], - "expectedQty": "6502530005519112556768", - "swapFee": "3903860319503169435", + "expectedQty": "9489632990074673570898990", + "swapFee": "5697198112912551673543", "reserves": [ - "5903890637525777288937942", - "66597707663829697718851049", - "19496409972856979393273684" + "345005478655166266419732647", + "81529041354628862079920596", + "539281820057156657581351494" ], - "mAssetSupply": "91318385221386805073814206" + "mAssetSupply": "962665605408085443690570496" }, { - "type": "redeemBassets", - "inputQtys": [ - "5690571512604309585920", - "1111460648958529241088", - "6471656200529194778624" + "type": "redeemMasset", + "inputQty": "5424319314142274404116070", + "expectedQtys": [ + "1943414665362052799375873", + "459252807344143291315540", + "3037772623053746791440774" ], - "expectedQty": "13967109803707099102309", - "swapFee": "8385297060460535782", + "redemptionFee": "1627295794242682321234", "reserves": [ - "5898200066013172979352022", - "66596596203180739189609961", - "19489938316656450198495060" + "343062063989804213620356774", + "81069788547284718788605056", + "536244047434102910789910720" ], - "mAssetSupply": "91304418111583097974711897" + "mAssetSupply": "957242913389737411968775660" }, { - "type": "redeemMasset", - "inputQty": "1849260377169462886", - "expectedQtys": [ - "119425058632617800", - "1348428726947810017", - "394626665789943119" + "type": "mintMulti", + "inputQtys": [ + "144406785585548591104", + "38128660171556077568", + "251473071878581125120" ], - "redemptionFee": "554778113150838", + "expectedQty": "432617967909511172291", "reserves": [ - "5898199946588114346734222", - "66596594854752012241799944", - "19489937922029784408551941" + "343062208396589799168947878", + "81069826675944890344682624", + "536244298907174789371035840" ], - "mAssetSupply": "91304416262877498918399849" + "mAssetSupply": "957243346007705321479947951" }, { "type": "redeemBassets", "inputQtys": [ - "1420740958876380168192", - "781584460708729978880", - "1511565468617004285952" + "6041268179246825603072", + "3494573365279463047168", + "159695089856578060288" ], - "expectedQty": "3874522629718471664842", - "swapFee": "2326109243377109264", + "expectedQty": "9838149265746462298764", + "swapFee": "5906433419499577125", "reserves": [ - "5896779205629237966566030", - "66595813270291303511821064", - "19488426356561167404265989" + "343056167128410552343344806", + "81066332102579610881635456", + "536244139212084932792975552" ], - "mAssetSupply": "91300541740247780446735007" + "mAssetSupply": "957233507858439575017649187" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "2701058005892805007769600", - "outputIndex": 1, - "expectedQty": "2962881313620255145312280", - "swapFee": "1750042398776758537376", + "inputQty": "7132293536322660859904", + "expectedQty": "7159850606568749335786", + "swapFee": "4279376121793596515", "reserves": [ - "8597837211522042974335630", - "63632931956671048366508784", - "19488426356561167404265989" + "343049007277803983594009020", + "81066332102579610881635456", + "536244139212084932792975552" ], - "mAssetSupply": "91302291782646557205272383", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "957226379844279374150385798" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "537686126265559148396544", - "188871286259741058138112", - "814325728076160789643264" + "15015764056796905472", + "11137616733041563648", + "4490735191122961920" ], - "expectedQty": "1569207272487431694644209", + "expectedQty": "31076085308758509028", + "swapFee": "18656845292430563", "reserves": [ - "9135523337787602122732174", - "63821803242930789424646896", - "20302752084637328193909253" + "343048992262039926797103548", + "81066320964962877840071808", + "536244134721349741670013632" ], - "mAssetSupply": "92871499055133988899916592" + "mAssetSupply": "957226348768194065391876770" }, { "type": "mintMulti", "inputQtys": [ - "9568349390517219360768", - "3401381365908147011584", - "53091342351906335883264" + "620882974733261827211264", + "1709480530081196615401472", + "2531253349580273832951808" ], - "expectedQty": "66787012060230209013303", + "expectedQty": "4915093604687083658097440", "reserves": [ - "9145091687178119342092942", - "63825204624296697571658480", - "20355843426989234529792517" + "343669875236773188624314812", + "82775801495044074455473280", + "538775388070930015502965440" ], - "mAssetSupply": "92938286067194219108929895" + "mAssetSupply": "962141442372881149049974210" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2857968577584180024573952", - "expectedQty": "2815086484815904275264913", + "inputIndex": 2, + "inputQty": "4847734237732022081552384", + "expectedQty": "4797790653129934836628338", "reserves": [ - "9145091687178119342092942", - "66683173201880877596232432", - "20355843426989234529792517" + "343669875236773188624314812", + "82775801495044074455473280", + "543623122308662037584517824" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "237272922979316678000640", - "551347737631083596873728", - "401420591506742539452416" + "6788544342728896212369408", + "1369724647304088816451584", + "4117218626630923252137984" ], - "expectedQty": "1196309451357571489431140", - "swapFee": "718216600775007898397", + "expectedQty": "12269198565074767243910781", "reserves": [ - "8907818764198802664092302", - "66131825464249793999358704", - "19954422835482491990340101" + "350458419579502084836684220", + "84145526142348163271924864", + "547740340935292960836655808" ], - "mAssetSupply": "94557063100652551894763668" + "mAssetSupply": "979208431591085851130513329" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "389452694480026016415744", - "expectedQty": "408242808612023082287420", - "reserves": [ - "9297271458678828680508046", - "66131825464249793999358704", - "19954422835482491990340101" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "13150046847043018686464", - "55511061965708992512", - "15911791117603241459712" - ], - "expectedQty": "29850723287821682840982", + "inputQty": "57127357011722676207616", + "expectedQty": "57342012950221931367572", + "swapFee": "34276414207033605724", "reserves": [ - "9310421505525871699194510", - "66131880975311759708351216", - "19970334626600095231799813" + "350401077566551862905316648", + "84145526142348163271924864", + "547740340935292960836655808" ], - "mAssetSupply": "94995156632552396659892070" + "mAssetSupply": "979151338510488335487911437" }, { - "type": "mintMulti", - "inputQtys": [ - "1948029754645797888", - "3977593360682724352", - "3818789779877111808" - ], - "expectedQty": "9804196020965008696", + "type": "swap", + "inputIndex": 1, + "inputQty": "69046082062089994240", + "outputIndex": 0, + "expectedQty": "72593416114781562165", + "swapFee": "43393040105148086", "reserves": [ - "9310423453555626344992398", - "66131884952905120391075568", - "19970338445389875108911621" + "350401004973135748123754483", + "84145595188430225361919104", + "547740340935292960836655808" ], - "mAssetSupply": "94995166436748417624900766" + "mAssetSupply": "979151338553881375593059523", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "3150497016199546880", - "7411338505108680704", - "4261577419908139520" + "type": "redeemMasset", + "inputQty": "1256633587733", + "expectedQtys": [ + "449566432674", + "107959265290", + "702753895141" ], - "expectedQty": "14889897645504560538", - "swapFee": "8939302168603898", + "redemptionFee": "376990076", "reserves": [ - "9310420303058610145445518", - "66131877541566615282394864", - "19970334183812455200772101" + "350401004973135298557321809", + "84145595188430117402653814", + "547740340935292258082760667" ], - "mAssetSupply": "94995151546850772120340228" + "mAssetSupply": "979151338553880119336461866" }, { - "type": "redeemBassets", - "inputQtys": [ - "23913576429755506688", - "33335468498068697088", - "62662688002564104192" - ], - "expectedQty": "121007595865219253079", - "swapFee": "72648146406975737", + "type": "swap", + "inputIndex": 2, + "inputQty": "451676597338602288971776", + "outputIndex": 1, + "expectedQty": "426426744281768607388180", + "swapFee": "268230437143413053772", "reserves": [ - "9310396389482180389938830", - "66131844206098117213697776", - "19970271521124452636667909" + "350401004973135298557321809", + "83719168444148348795265634", + "548192017532630860371732443" ], - "mAssetSupply": "94995030539254906901087149" + "mAssetSupply": "979151606784317262749515638", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "11661368497096236204032", - "expectedQty": "12197998006342305847332", - "reserves": [ - "9322057757979276626142862", - "66131844206098117213697776", - "19970271521124452636667909" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2183087301681943788126208", - "expectedQty": "2214639683394078969552233", - "swapFee": "1309852381009166272875", + "inputQty": "14274620781582053376", + "outputIndex": 1, + "expectedQty": "13553471341423268706", + "swapFee": "8527344770603351", "reserves": [ - "9322057757979276626142862", - "63917204522704038244145543", - "19970271521124452636667909" + "350401019247756080139375185", + "83719154890677007371996928", + "548192017532630860371732443" ], - "mAssetSupply": "92825451087960314585081148" + "mAssetSupply": "979151606792844607520118989", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "170638915465973367570432", - "21614373463551530500096", - "27261469514249109766144" + "type": "redeemMasset", + "inputQty": "91166762714338728345", + "expectedQtys": [ + "32615320117026646259", + "7792577323400161471", + "51025702424636816629" ], - "expectedQty": "226850243799135819228120", - "swapFee": "136191861396319283106", + "redemptionFee": "27350028814301618", "reserves": [ - "9151418842513303258572430", - "63895590149240486713645447", - "19943010051610203526901765" + "350400986632435963112728926", + "83719147098099683971835457", + "548191966506928435734915814" ], - "mAssetSupply": "92598600844161178765853028" + "mAssetSupply": "979151515653431921995692262" }, { - "type": "mintMulti", - "inputQtys": [ - "461715336677712396288", - "484593820745276325888", - "634991949871289991168" + "type": "redeemMasset", + "inputQty": "14183519035924950", + "expectedQtys": [ + "5074217839588544", + "1212351579837106", + "7938463537736770" ], - "expectedQty": "1599230920705345266403", + "redemptionFee": "4255055710777", "reserves": [ - "9151880557849980970968718", - "63896074743061231989971335", - "19943645043560074816892933" + "350400986627361745273140382", + "83719147096887332391998351", + "548191966498989972197179044" ], - "mAssetSupply": "92600200075081884111119431" + "mAssetSupply": "979151515639252658015478089" }, { - "type": "redeemBassets", - "inputQtys": [ - "11705489839970282635264", - "1386523678585131892736", - "8582437401875574685696" - ], - "expectedQty": "22236701525090481709441", - "swapFee": "13350030933614457700", + "type": "mint", + "inputIndex": 2, + "inputQty": "1090181894763160320", + "expectedQty": "1078954040645884792", "reserves": [ - "9140175068010010688333454", - "63894688219382646858078599", - "19935062606158199242207237" - ], - "mAssetSupply": "92577963373556793629409990" + "350400986627361745273140382", + "83719147096887332391998351", + "548191967589171866960339364" + ] }, { - "type": "redeemMasset", - "inputQty": "262453871027063881728", - "expectedQtys": [ - "25904163137496001940", - "181083886789784106208", - "56497945615230815447" + "type": "redeemBassets", + "inputQtys": [ + "698869521013320712192", + "2085061519463038320640", + "3814356819501451837440" ], - "redemptionFee": "78736161308119164", + "expectedQty": "6655984173509378169735", + "swapFee": "3995988096963805184", "reserves": [ - "9140149163846873192331514", - "63894507135495857073972391", - "19935006108212584011391790" + "350400287757840731952428190", + "83717062035367869353677711", + "548188153232352365508501924" ], - "mAssetSupply": "92577700998421927873647426" + "mAssetSupply": "979144860734033189283193146" }, { "type": "redeemMasset", - "inputQty": "351850101099886595276", + "inputQty": "22706838496768199884", "expectedQtys": [ - "34727559487572051343", - "242764123177957687395", - "75742102026778571271" + "8123512789060102301", + "1940856351627328566", + "12708932124712863250" ], - "redemptionFee": "105555030329965978", + "redemptionFee": "6812051549030459", "reserves": [ - "9140114436287385620280171", - "63894264371372679116284996", - "19934930366110557232820519" + "350400279634327942892325889", + "83717060094511517726349145", + "548188140523420240795638674" ], - "mAssetSupply": "92577349253875858317018128" + "mAssetSupply": "979144838034006744064023721" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "57732633063843608657920", - "expectedQty": "55218858053930733923895", - "swapFee": "34639579838306165194", + "inputQty": "604754488323856230514688", + "expectedQty": "607038655080509523909219", + "swapFee": "362852692994313738308", "reserves": [ - "9084895578233454886356276", - "63894264371372679116284996", - "19934930366110557232820519" + "349793240979247433368416670", + "83717060094511517726349145", + "548188140523420240795638674" ], - "mAssetSupply": "92519651260391853014525402" + "mAssetSupply": "978540446398375882147247341" }, { "type": "redeemBassets", "inputQtys": [ - "377087880407617848213504", - "60657815667089017405440", - "510164232844435622199296" + "4708796649709518721122304", + "3867563897719749691310080", + "2371577353215870123376640" ], - "expectedQty": "968544385277066787796233", - "swapFee": "581475516476125748126", + "expectedQty": "11094921532254470546742244", + "swapFee": "6660949489046109994041", "reserves": [ - "8707807697825837038142772", - "63833606555705590098879556", - "19424766133266121610621223" + "345084444329537914647294366", + "79849496196791768035039065", + "545816563170204370672262034" ], - "mAssetSupply": "91551106875114786226729169" + "mAssetSupply": "967445524866121411600505097" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2391337017731137312653312", - "expectedQty": "2353108175467649154679752", + "type": "redeemMasset", + "inputQty": "266235399448433996595", + "expectedQtys": [ + "94936748799123913481", + "21967526171455841156", + "150160492017447376007" + ], + "redemptionFee": "79870619834530198", "reserves": [ - "8707807697825837038142772", - "66224943573436727411532868", - "19424766133266121610621223" - ] + "345084349392789115523380885", + "79849474229265596579197909", + "545816413009712353224886027" + ], + "mAssetSupply": "967445258710592583001038700" }, { - "type": "redeemBassets", - "inputQtys": [ - "16155462364028563619840", - "1220616201029148475392", - "967448401141135572992" - ], - "expectedQty": "19188399988581215935887", - "swapFee": "11519951964327325957", + "type": "redeem", + "inputIndex": 2, + "inputQty": "190559037436866428928", + "expectedQty": "192520507992285663296", + "swapFee": "114335422462119857", "reserves": [ - "8691652235461808474522932", - "66223722957235698263057476", - "19423798684864980475048231" + "345084349392789115523380885", + "79849474229265596579197909", + "545816220489204360939222731" ], - "mAssetSupply": "93885026650593854165473034" + "mAssetSupply": "967445068265890568596729629" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "36854448193671512064", - "outputIndex": 1, - "expectedQty": "39436251709582600985", - "swapFee": "23286921265918476", + "inputQty": "43107207086506669567377408", + "expectedQty": "43244338798399053411563500", + "swapFee": "25864324251904001740426", "reserves": [ - "8691689089910002146034996", - "66223683520983988680456491", - "19423798684864980475048231" + "301840010594390062111817385", + "79849474229265596579197909", + "545816220489204360939222731" ], - "mAssetSupply": "93885026673880775431391510", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "924363725503635803031092647" }, { - "type": "redeemMasset", - "inputQty": "92832275915686065628774", - "expectedQtys": [ - "8591649249734521106108", - "65461460361970891242261", - "19200234116927273468067" + "type": "redeemBassets", + "inputQtys": [ + "11964199443430021005312", + "30238607019648630128640", + "39038000961465427689472" ], - "redemptionFee": "27849682774705819688", + "expectedQty": "82234723790101578821716", + "swapFee": "49370456547989741137", "reserves": [ - "8683097440660267624928888", - "66158222060622017789214230", - "19404598450748053201580164" + "301828046394946632090812073", + "79819235622245947949069269", + "545777182488242895511533259" ], - "mAssetSupply": "93792222247647864071582424" + "mAssetSupply": "924281490779845701452270931" }, { "type": "redeemMasset", - "inputQty": "32965695776147478937", + "inputQty": "12869559628582753075", "expectedQtys": [ - "3050982996898129901", - "23246037717690281831", - "6818200571795756194" + "4201348573116839323", + "1111057887741788034", + "7597041475351439576" ], - "redemptionFee": "9889708732844243", + "redemptionFee": "3860867888574825", "reserves": [ - "8683094389677270726798987", - "66158198814584300098932399", - "19404591632547481405823970" + "301828042193598058973972750", + "79819234511188060207281235", + "545777174891201420160093683" ], - "mAssetSupply": "93792189291841796656947730" + "mAssetSupply": "924281477914146940758092681" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11805584228293002919936", - "18547718710592945520640", - "12123215810961183080448" + "8429243548735424180518912", + "10536400012869543265304576", + "8247480407554218696638464" ], - "expectedQty": "42906883919424245457884", - "swapFee": "25759586103316537197", + "expectedQty": "27562714444711305260399026", "reserves": [ - "8671288805448977723879051", - "66139651095873707153411759", - "19392468416736520222743522" + "310257285742333483154491662", + "90355634524057603472585811", + "554024655298755638856732147" ], - "mAssetSupply": "93749282407922372411489846" + "mAssetSupply": "951844192358858246018491707" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "13392758460414116757504", - "11366567392183576428544", - "11287281838785545895936" + "2096325085546954323132416", + "3618969946205503711346688", + "2775682542128515537436672" ], - "expectedQty": "36673654640540557415237", - "swapFee": "22017403226260090503", + "expectedQty": "8596028353321627077121566", "reserves": [ - "8657896046988563607121547", - "66128284528481523576983215", - "19381181134897734676847586" + "312353610827880437477624078", + "93974604470263107183932499", + "556800337840884154394168819" ], - "mAssetSupply": "93712608753281831854074609" + "mAssetSupply": "960440220712179873095613273" }, { "type": "redeemMasset", - "inputQty": "152042597967095472219750", + "inputQty": "4159597939260763878195", "expectedQtys": [ - "14042657810064728437191", - "107256643664953701438975", - "31435269395145505963127" + "1352375325688046997390", + "406875195039472898622", + "2410739021825221200903" ], - "redemptionFee": "45612779390128641665", + "redemptionFee": "1247879381778229163", "reserves": [ - "8643853389178498878684356", - "66021027884816569875544240", - "19349745865502589170884459" + "312352258452554749430626688", + "93974197595068067711033877", + "556797927101862329172967916" ], - "mAssetSupply": "93560611768094126510496524" + "mAssetSupply": "960436062362119994109964241" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "277221787465337179996160", - "expectedQty": "291553678518300721819003", + "type": "mintMulti", + "inputQtys": [ + "29800081848629280768", + "8453104833204974592", + "109227483744017154048" + ], + "expectedQty": "146659998621492012207", "reserves": [ - "8921075176643836058680516", - "66021027884816569875544240", - "19349745865502589170884459" - ] + "312352288252636598059907456", + "93974206048172900916008469", + "556798036329346073190121964" + ], + "mAssetSupply": "960436209022118615601976448" }, { "type": "mint", "inputIndex": 2, - "inputQty": "2510012879471929458688", - "expectedQty": "2532303930388208248328", + "inputQty": "3656390511968377022447616", + "expectedQty": "3620695582029332445299896", "reserves": [ - "8921075176643836058680516", - "66021027884816569875544240", - "19352255878382061100343147" + "312352288252636598059907456", + "93974206048172900916008469", + "560454426841314450212569580" ] }, - { - "type": "redeemMasset", - "inputQty": "2691396636729352074035", - "expectedQtys": [ - "255745841776707222415", - "1892664619122508810733", - "554782789282243537696" - ], - "redemptionFee": "807418991018805622", - "reserves": [ - "8920819430802059351458101", - "66019135220197447366733507", - "19351701095592778856805451" - ], - "mAssetSupply": "93852007161325077107295442" - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1018847731137944972427264", - "expectedQty": "1034635975730001545955237", - "swapFee": "611308638682766983456", + "inputQty": "206359441392310016", + "expectedQty": "198854377840996916", + "swapFee": "123815664835386", "reserves": [ - "8920819430802059351458101", - "64984499244467445820778270", - "19351701095592778856805451" + "312352288252636598059907456", + "93974205849318523075011553", + "560454426841314450212569580" ], - "mAssetSupply": "92833770738825814901851634" + "mAssetSupply": "964056904397912322319801714" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "37321746670437051400192", - "expectedQty": "37892984616704416504571", - "swapFee": "22393048002262230840", + "type": "mintMulti", + "inputQtys": [ + "94115857598658476244992", + "61186249328514811559936", + "30323811795680150683648" + ], + "expectedQty": "187382558294465162159350", "reserves": [ - "8920819430802059351458101", - "64946606259850741404273699", - "19351701095592778856805451" + "312446404110235256536152448", + "94035392098647037886571489", + "560484750653110130363253228" ], - "mAssetSupply": "92796471385203380112682282" + "mAssetSupply": "964244286956206787481961064" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5231678002690234368", - "27521430298982461440", - "23231653934194655232" + "1899244868619013080481792", + "1844629737700204212125696", + "1958850919775099420672000" ], - "expectedQty": "56002018457076091791", - "swapFee": "33621383904588408", + "expectedQty": "5746736530502834499992902", "reserves": [ - "8920814199124056661223733", - "64946578738420442421812259", - "19351677863938844662150219" + "314345648978854269616634240", + "95880021836347242098697185", + "562443601572885229783925228" ], - "mAssetSupply": "92796415383184923036590491" + "mAssetSupply": "969991023486709621981953966" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "80997563737723764736", - "outputIndex": 2, - "expectedQty": "79018660460640098858", - "swapFee": "47837509105762806", + "type": "redeem", + "inputIndex": 0, + "inputQty": "150803096207414341402624", + "expectedQty": "151050971003533357626313", + "swapFee": "90481857724448604841", "reserves": [ - "8920814199124056661223733", - "64946659735984180145576995", - "19351598845278384022051361" + "314194598007850736259007927", + "95880021836347242098697185", + "562443601572885229783925228" ], - "mAssetSupply": "92796415431022432142353297", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "969840310872359932089156183" }, { - "type": "redeemMasset", - "inputQty": "593309808111979593728", - "expectedQtys": [ - "57019645577256030675", - "415123041116144639020", - "123690650077585577421" - ], - "redemptionFee": "177992942433593878", + "type": "redeem", + "inputIndex": 0, + "inputQty": "373572641277769567698944", + "expectedQty": "374183169105386844148895", + "swapFee": "224143584766661740619", "reserves": [ - "8920757179478479405193058", - "64946244612943064000937975", - "19351475154628306436473940" + "313820414838745349414859032", + "95880021836347242098697185", + "562443601572885229783925228" ], - "mAssetSupply": "92795822299207262596353447" + "mAssetSupply": "969466962374666929183197858" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2795262207752985378816", - "outputIndex": 2, - "expectedQty": "2904487333451761612198", - "swapFee": "1758366090609000606", + "type": "mintMulti", + "inputQtys": [ + "240115067160378080", + "329224616064548544", + "478181374374496256" + ], + "expectedQty": "1054205247847466970", "reserves": [ - "8923552441686232390571874", - "64946244612943064000937975", - "19348570667294854674861742" + "313820415078860416575237112", + "95880022165571858163245729", + "562443602051066604158421484" ], - "mAssetSupply": "92795824057573353205354053", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "969466963428872177030664828" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "3956171620410803940753408", + "expectedQty": "4092696596601378579776699", + "reserves": [ + "313820415078860416575237112", + "99836193785982662103999137", + "562443602051066604158421484" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2088107495250682707968", - "714203299413561049088", - "2489251274075093860352" + "323929875819336680079360", + "345876667834433745715200", + "60469295637960098578432" ], - "expectedQty": "5402367894559803855462", - "swapFee": "3243366756789956287", + "expectedQty": "740557509842409630441772", + "swapFee": "444601266665445045292", "reserves": [ - "8921464334190981707863906", - "64945530409643650439888887", - "19346081416020779581001390" + "313496485203041079895157752", + "99490317118148228358283937", + "562383132755428644059843052" ], - "mAssetSupply": "92790421689678793401498591" + "mAssetSupply": "972819102515631145979999755" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "908939509634549441101824", - "expectedQty": "862148136078398246117926", - "swapFee": "545363705780729664661", + "inputIndex": 2, + "inputQty": "2951666772142941223780352", + "expectedQty": "2977506019348999692602458", + "swapFee": "1771000063285764734268", "reserves": [ - "8059316198112583461745980", - "64945530409643650439888887", - "19346081416020779581001390" + "313496485203041079895157752", + "99490317118148228358283937", + "559405626736079644367240594" ], - "mAssetSupply": "91882027543750024690061428" + "mAssetSupply": "969869206743551490520953671" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "20655788263915672", - "expectedQty": "20302471031885941", + "type": "mintMulti", + "inputQtys": [ + "428853174545652465532928", + "13377948969436738224128", + "28675297465992950579200" + ], + "expectedQty": "470198231486859971424846", "reserves": [ - "8059316198112583461745980", - "64945530430299438703804559", - "19346081416020779581001390" - ] + "313925338377586732360690680", + "99503695067117665096508065", + "559434302033545637317819794" + ], + "mAssetSupply": "970339404975038350492378517" }, { "type": "redeemMasset", - "inputQty": "139999639983508868300", + "inputQty": "159083854841904626873139", "expectedQtys": [ - "12276207934710916735", - "98927107014261076616", - "29468569336011058503" + "51451554548639213933018", + "16308399382464412548512", + "91689841464272027814491" ], - "redemptionFee": "41999891995052660", + "redemptionFee": "47725156452571388061", "reserves": [ - "8059303921904648750829245", - "64945431503192424442727943", - "19346051947451443569942887" + "313873886823038093146757662", + "99487386667735200683959553", + "559342612192081365290005303" ], - "mAssetSupply": "91881887606412404208131729" + "mAssetSupply": "970180368845352898436893439" }, { "type": "redeemMasset", - "inputQty": "21205565254813858188492", + "inputQty": "20407203111751417856", "expectedQtys": [ - "1859461413413924720739", - "14984361556272402448793", - "4463566264130382397840" + "6600181552885402163", + "2092033908508525533", + "11761930334823688238" ], - "redemptionFee": "6361669576444157456", + "redemptionFee": "6122160933525425", "reserves": [ - "8057444460491234826108506", - "64930447141636152040279150", - "19341588381187313187545047" + "313873880222856540261355499", + "99487384575701292175434020", + "559342600430151030466317065" ], - "mAssetSupply": "91860688402827166794100693" + "mAssetSupply": "970180348444271947619001008" }, { - "type": "redeemBassets", - "inputQtys": [ - "39634331042444088442880", - "9531643283502870298624", - "13826196281040559931392" - ], - "expectedQty": "65311036975495378787902", - "swapFee": "39210148274261784343", + "type": "mint", + "inputIndex": 2, + "inputQty": "8778710518184722193973248", + "expectedQty": "8696789092729681401458586", "reserves": [ - "8017810129448790737665626", - "64920915498352649169980526", - "19327762184906272627613655" - ], - "mAssetSupply": "91795377365851671415312791" + "313873880222856540261355499", + "99487384575701292175434020", + "568121310948335752660290313" + ] }, { "type": "mintMulti", "inputQtys": [ - "416618466165801227386880", - "789893008996977048813568", - "142309982852228233297920" + "984706164543985025024", + "468075803659969167360", + "1541555195198426054656" ], - "expectedQty": "1360708429111228532907149", + "expectedQty": "2993719988262760186816", "reserves": [ - "8434428595614591965052506", - "65710808507349626218794094", - "19470072167758500860911575" + "313874864929021084246380523", + "99487852651504952144601380", + "568122852503530951086344969" ], - "mAssetSupply": "93156085794962899948219940" + "mAssetSupply": "978880131256989891780646410" }, { - "type": "redeemBassets", - "inputQtys": [ - "6845887095418475", - "3774488065622879", - "9049604621821854" - ], - "expectedQty": "20064849686831765", - "swapFee": "12046137494595", + "type": "redeem", + "inputIndex": 1, + "inputQty": "334691600970697087647744", + "expectedQty": "323489874536000787858298", + "swapFee": "200814960582418252588", "reserves": [ - "8434428588768704869634031", - "65710808503575138153171215", - "19470072158708896239089721" + "313874864929021084246380523", + "99164362776968951356743082", + "568122852503530951086344969" ], - "mAssetSupply": "93156085774898050261388175" + "mAssetSupply": "978545640470979777111251254" }, { "type": "redeemMasset", - "inputQty": "18106953344231649627340", + "inputQty": "614507779151854934425", "expectedQtys": [ - "1638926615804054754479", - "12768522712483421998764", - "3783305429252781630879" + "197048226102628917941", + "62254624250393743703", + "356663157209169426312" ], - "redemptionFee": "5432086003269494888", + "redemptionFee": "184352333745556480", "reserves": [ - "8432789662152900814879552", - "65698039980862654731172451", - "19466288853279643457458842" + "313874667880794981617462582", + "99164300522344700962999379", + "568122495840373741916918657" ], - "mAssetSupply": "93137984253639821881255723" + "mAssetSupply": "978545026147552959001873309" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1472827999804959638945792", - "expectedQty": "1542350156959076254660766", + "inputQty": "2202898593783101238804480", + "expectedQty": "2205889851235259953764997", + "swapFee": "1321739156269860743282", "reserves": [ - "9905617661957860453825344", - "65698039980862654731172451", - "19466288853279643457458842" - ] + "311668778029559721663697585", + "99164300522344700962999379", + "568122495840373741916918657" + ], + "mAssetSupply": "976343449292926127623812111" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2856664616568712960409600", - "2160876845983718984122368", - "6033676945528068419616768" + "832624763329106174541824", + "4637913509236503138533376", + "3613331666049555016712192" ], - "expectedQty": "11150410077973317162305710", + "expectedQty": "9211777595762375957321661", + "swapFee": "5530384788330423828690", "reserves": [ - "12762282278526573414234944", - "67858916826846373715294819", - "25499965798807711877075610" + "310836153266230615489155761", + "94526387013108197824466003", + "564509164174324186900206465" ], - "mAssetSupply": "105830744488572215298222199" + "mAssetSupply": "967131671697163751666490450" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1278281862074553587466240", - "expectedQty": "1241678234458617172367732", - "swapFee": "766969117244732152479", + "inputIndex": 1, + "inputQty": "8644773218715210495295488", + "expectedQty": "8302793284355546606689754", + "swapFee": "5186863931229126297177", "reserves": [ - "11520604044067956241867212", - "67858916826846373715294819", - "25499965798807711877075610" + "310836153266230615489155761", + "86223593728752651217776249", + "564509164174324186900206465" ], - "mAssetSupply": "104553229595614906442908438" + "mAssetSupply": "958492085342379770297492139" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "62285061827657329541120", - "outputIndex": 2, - "expectedQty": "64018066390139548300794", - "swapFee": "38562079305155863646", + "inputIndex": 2, + "inputQty": "391461616517024554418176", + "outputIndex": 1, + "expectedQty": "370453757926202047086946", + "swapFee": "232344203811134792604", "reserves": [ - "11582889105895613571408332", - "67858916826846373715294819", - "25435947732417572328774816" + "310836153266230615489155761", + "85853139970826449170689303", + "564900625790841211454624641" ], - "mAssetSupply": "104553268157694211598772084", + "mAssetSupply": "958492317686583581432284743", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1355367677716222967808", - "2399701995458793570304", - "373833916661183021056" - ], - "expectedQty": "4145631034457865442951", - "swapFee": "2488871943841023880", + "type": "swap", + "inputIndex": 2, + "inputQty": "6447210642822107051851776", + "outputIndex": 1, + "expectedQty": "6074649243961811427798104", + "swapFee": "3826107273723447625014", "reserves": [ - "11581533738217897348440524", - "67856517124850914921724515", - "25435573898500911145753760" + "310836153266230615489155761", + "79778490726864637742891199", + "571347836433663318506476417" ], - "mAssetSupply": "104549122526659753733329133" + "mAssetSupply": "958496143793857304879909757", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "530488921778151101562880", - "4612703608586782231232512", - "3286914060244121188040704" + "type": "redeemMasset", + "inputQty": "8059927698182806921071820", + "expectedQtys": [ + "2613015547790612965568180", + "670650548393638206723782", + "4802983063939120220221986" ], - "expectedQty": "8404110893212525243990164", + "redemptionFee": "2417978309454842076321", "reserves": [ - "12112022659996048450003404", - "72469220733437697152957027", - "28722487958745032333794464" + "308223137718440002523587581", + "79107840178470999536167417", + "566544853369724198286254431" ], - "mAssetSupply": "112953233419872278977319297" + "mAssetSupply": "950438634073983952800914258" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "494153368760018406473728", - "expectedQty": "477252149708112862400412", - "swapFee": "296492021256011043884", + "inputQty": "116962993892731060748288", + "expectedQty": "117245807312784630801740", + "swapFee": "70177796335638636448", "reserves": [ - "11634770510287935587602992", - "72469220733437697152957027", - "28722487958745032333794464" + "308105891911127217892785841", + "79107840178470999536167417", + "566544853369724198286254431" ], - "mAssetSupply": "112459376543133516581889453" + "mAssetSupply": "950321741257887557378802418" }, { - "type": "redeemMasset", - "inputQty": "1079894558185834439245824", - "expectedQtys": [ - "111689718085672074758950", - "695679113434072133466721", - "275725815132725996185505" + "type": "redeemBassets", + "inputQtys": [ + "683952128461643520", + "470675682234937600", + "521984240597351488" ], - "redemptionFee": "323968367455750331773", + "expectedQty": "1693249694757428558", + "swapFee": "1016559752706080", "reserves": [ - "11523080792202263512844042", - "71773541620003625019490306", - "28446762143612306337608959" + "308105891227175089431142321", + "79107839707795317301229817", + "566544852847739957688902943" ], - "mAssetSupply": "111379805953315137892975402" + "mAssetSupply": "950321739564637862621373860" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "41127120108786869600256", - "expectedQty": "42612046593743131985145", + "type": "swap", + "inputIndex": 1, + "inputQty": "201269081288292926750720", + "outputIndex": 0, + "expectedQty": "212379300319870173626266", + "swapFee": "127122979004034543342", "reserves": [ - "11564207912311050382444298", - "71773541620003625019490306", - "28446762143612306337608959" - ] + "307893511926855219257516055", + "79309108789083610227980537", + "566544852847739957688902943" + ], + "mAssetSupply": "950321866687616866655917202", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "14828980430025848258560", - "expectedQty": "15361778094554092412903", + "type": "mintMulti", + "inputQtys": [ + "134220292625554787532800", + "80805374933851762065408", + "214602888681102164099072" + ], + "expectedQty": "430943476923388256684161", "reserves": [ - "11579036892741076230702858", - "71773541620003625019490306", - "28446762143612306337608959" - ] + "308027732219480774045048855", + "79389914164017461990045945", + "566759455736421059853002015" + ], + "mAssetSupply": "950752810164540254912601363" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2385798447960188518400", - "2853856992866045263872", - "1993152523178137616384" + "10019711480433142", + "7770972532699299", + "5999033080519038" ], - "expectedQty": "7289433867319083539354", + "expectedQty": "24096938283079652", + "swapFee": "14466843075693", "reserves": [ - "11581422691189036419221258", - "71776395476996491064754178", - "28448755296135484475225343" + "308027732209461062564615713", + "79389914156246489457346646", + "566759455730422026772482977" ], - "mAssetSupply": "111445069211870754200912804" + "mAssetSupply": "950752810140443316629521711" }, { - "type": "redeemMasset", - "inputQty": "138200221688447104", - "expectedQtys": [ - "14357521854941652", - "88981396690919862", - "35268000901210296" + "type": "redeemBassets", + "inputQtys": [ + "38168930570459955593216", + "1224563680234328031232", + "49236108394147243622400" + ], + "expectedQty": "88000535774463352629503", + "swapFee": "52832020677084262134", + "reserves": [ + "307989563278890602609022497", + "79388689592566255129315414", + "566710219622027879528860577" ], - "redemptionFee": "41460066506534", + "mAssetSupply": "950664809604668853276892208" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "6862536686724946944", + "outputIndex": 1, + "expectedQty": "6497154143004041583", + "swapFee": "4105249214073104", "reserves": [ - "11581422676831514564279606", - "71776395388015094373834316", - "28448755260867483574015047" + "307989570141427289333969441", + "79388683095412112125273831", + "566710219622027879528860577" ], - "mAssetSupply": "111445069073711992578972234" + "mAssetSupply": "950664809608774102490965312", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "53129789058169169772544", - "expectedQty": "53247572098583137145436", + "inputIndex": 1, + "inputQty": "558579289837997850624", + "expectedQty": "587880603834518000629", "reserves": [ - "11581422676831514564279606", - "71776395388015094373834316", - "28501885049925652743787591" + "307989570141427289333969441", + "79389241674701950123124455", + "566710219622027879528860577" ] }, { - "type": "mintMulti", - "inputQtys": [ - "2561542458497859464462336", - "1510426759661346971713536", - "700313558532677825462272" - ], - "expectedQty": "4834289152274787853929694", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3805110704363839422464", + "expectedQty": "3613279154493535309486", + "swapFee": "2283066422618303653", "reserves": [ - "14142965135329374028741942", - "73286822147676441345547852", - "29202198608458330569249863" + "307989570141427289333969441", + "79385628395547456587814969", + "566710219622027879528860577" ], - "mAssetSupply": "116332605798085363570047364" + "mAssetSupply": "950661594661739995787847130" }, { - "type": "redeemBassets", - "inputQtys": [ - "243573374330690726789120", - "40594012303559499972608", - "125003098268562605735936" + "type": "redeemMasset", + "inputQty": "4324443474291770163", + "expectedQtys": [ + "1400586632697369770", + "361007192250140953", + "2577122198817081727" ], - "expectedQty": "415268902687912449007226", - "swapFee": "249310928169649258959", + "redemptionFee": "1297333042287531", "reserves": [ - "13899391760998683301952822", - "73246228135372881845575244", - "29077195510189767963513927" + "307989568740840656636599671", + "79385628034540264337674016", + "566710217044905680711778850" ], - "mAssetSupply": "115917336895397451121040138" + "mAssetSupply": "950661590338593854538364498" }, { - "type": "redeemMasset", - "inputQty": "132994431708991099345305", - "expectedQtys": [ - "15942284349663330381762", - "84011747891802991112329", - "33350878001361710669388" + "type": "mintMulti", + "inputQtys": [ + "275667993285115307360256", + "135653761845218416525312", + "164087750334475761876992" ], - "redemptionFee": "39898329512697329803", + "expectedQty": "579765490447377059537464", "reserves": [ - "13883449476649019971571060", - "73162216387481078854462915", - "29043844632188406252844539" + "308265236734125771943959927", + "79521281796385482754199328", + "566874304795240156473655842" ], - "mAssetSupply": "115784382362017972719024636" + "mAssetSupply": "951241355829041231597901962" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2063250022306791555072", - "expectedQty": "2083086302410884477920", - "swapFee": "1237950013384074933", + "type": "mint", + "inputIndex": 2, + "inputQty": "24692528526867683543613440", + "expectedQty": "24394146327444428495408313", "reserves": [ - "13883449476649019971571060", - "73160133301178667969984995", - "29043844632188406252844539" - ], - "mAssetSupply": "115782320349945679311544497" + "308265236734125771943959927", + "79521281796385482754199328", + "591566833322107840017269282" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "490435726749033234956288", - "outputIndex": 0, - "expectedQty": "472383719432295080723156", - "swapFee": "291270467625670953444", + "inputQty": "4230948741674297641140224", + "expectedQty": "4455788092105735945304252", "reserves": [ - "13411065757216724890847904", - "73650569027927701204941283", - "29043844632188406252844539" - ], - "mAssetSupply": "115782611620413304982497941", - "hardLimitError": false, - "insufficientLiquidityError": false + "308265236734125771943959927", + "83752230538059780395339552", + "591566833322107840017269282" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "3851524647144642314240", - "101164256479962030145536", - "55335194209777231069184" - ], - "expectedQty": "159539585064348803261988", + "type": "swap", + "inputIndex": 0, + "inputQty": "1766870879529362652135424", + "outputIndex": 1, + "expectedQty": "1675084241958650412307730", + "swapFee": "1057566998132292008120", "reserves": [ - "13414917281863869533162144", - "73751733284407663235086819", - "29099179826398183483913723" + "310032107613655134596095351", + "82077146296101129983031822", + "591566833322107840017269282" ], - "mAssetSupply": "115942151205477653785759929" + "mAssetSupply": "980092347815589528330622647", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "6175686764858677657600", - "4441855294035773095936", - "717108877605293260800" - ], - "expectedQty": "11463130085005104786964", + "type": "redeem", + "inputIndex": 2, + "inputQty": "579079679885758", + "expectedQty": "585775135757205", + "swapFee": "347447807931", "reserves": [ - "13421092968628728210819744", - "73756175139701699008182755", - "29099896935275788777174523" + "310032107613655134596095351", + "82077146296101129983031822", + "591566833321522064881512077" ], - "mAssetSupply": "115953614335562658890546893" + "mAssetSupply": "980092347815010796098544820" }, { "type": "redeemBassets", "inputQtys": [ - "64915731021616902045696", - "12635053732528857808896", - "84206758083646908792832" + "344918299068458074112", + "437126878969115377664", + "51931478050828566528" ], - "expectedQty": "163677862304628822073513", - "swapFee": "98265676788850603606", + "expectedQty": "855490281513156041348", + "swapFee": "513602330306077271", "reserves": [ - "13356177237607111308774048", - "73743540085969170150373859", - "29015690177192141868381691" + "310031762695356066138021239", + "82076709169222160867654158", + "591566781390044014052945549" ], - "mAssetSupply": "115789936473258030068473380" + "mAssetSupply": "980091492324729282942503472" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1466684320341029940101120", - "expectedQty": "1481277315563756889062599", - "swapFee": "880010592204617964060", + "inputQty": "30838595817991400713093120", + "expectedQty": "28533612191155545506425666", + "swapFee": "18503157490794840427855", "reserves": [ - "13356177237607111308774048", - "72262262770405413261311260", - "29015690177192141868381691" + "310031762695356066138021239", + "53543096978066615361228492", + "591566781390044014052945549" ], - "mAssetSupply": "114324132163509204746336320" + "mAssetSupply": "949271399664228677069838207" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "3299204547987545088", - "expectedQty": "3331531695372988271", - "swapFee": "1979522728792527", + "inputQty": "3765518621749496741101568", + "expectedQty": "4194716913587131898291842", "reserves": [ - "13356177237607111308774048", - "72262259438873717888322989", - "29015690177192141868381691" - ], - "mAssetSupply": "114324128866284179487583759" + "310031762695356066138021239", + "57308615599816112102330060", + "591566781390044014052945549" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "56849893032597352", - "expectedQty": "56679595088466852", - "swapFee": "34109935819558", + "inputQty": "58707510286711066785218560", + "outputIndex": 0, + "expectedQty": "57718560165320919895000579", + "swapFee": "34590053524334163784358", "reserves": [ - "13356177237607111308774048", - "72262259438873717888322989", - "29015690120512546779914839" + "252313202530035146243020660", + "57308615599816112102330060", + "650274291676755080838164109" ], - "mAssetSupply": "114324128809468396390805965" + "mAssetSupply": "953500706631340143131914407", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4555747702589265989861376", - "expectedQty": "4598275074335200766325821", - "swapFee": "2733448621553559593916", + "type": "swap", + "inputIndex": 0, + "inputQty": "22076955522123920572416", + "outputIndex": 2, + "expectedQty": "22541016710256102101159", + "swapFee": "13254884821030567285", "reserves": [ - "13356177237607111308774048", - "67663984364538517121997168", - "29015690120512546779914839" + "252335279485557270163593076", + "57308615599816112102330060", + "650251750660044824736062950" ], - "mAssetSupply": "109771114555500683960538505" + "mAssetSupply": "953500719886224964162481692", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "3301395731396947030835", - "expectedQtys": [ - "401570107860877772429", - "2034401986150385719639", - "872392871408134144977" + "type": "mintMulti", + "inputQtys": [ + "230088443467942592512", + "57943312775729537024", + "297993416855291101184" ], - "redemptionFee": "990418719419084109", + "expectedQty": "586923016844479884792", "reserves": [ - "13355775667499250431001619", - "67661949962552366736277529", - "29014817727641138645769862" + "252335509574000738106185588", + "57308673543128887831867084", + "650252048653461680027164134" ], - "mAssetSupply": "109767814150188006432591779" + "mAssetSupply": "953501306809241808642366484" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "150585530801266848", - "expectedQty": "150829979343306333", + "inputIndex": 1, + "inputQty": "4706812374494443208704", + "expectedQty": "5264420642252593737090", "reserves": [ - "13355775667499250431001619", - "67661949962552366736277529", - "29014817878226669447036710" + "252335509574000738106185588", + "57313380355503382275075788", + "650252048653461680027164134" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1454500779004906059071488", - "expectedQty": "1415164322440035493860590", - "swapFee": "872700467402943635442", + "inputIndex": 1, + "inputQty": "3008750035827128457494528", + "expectedQty": "2674960192438787737180204", + "swapFee": "1805250021496277074496", + "reserves": [ + "252335509574000738106185588", + "54638420163064594537895584", + "650252048653461680027164134" + ], + "mAssetSupply": "950499626444078429055683542" + }, + { + "type": "mintMulti", + "inputQtys": [ + "34629866016597073920", + "3077986065845930496", + "133584400858034241536" + ], + "expectedQty": "168843190700765022431", "reserves": [ - "11940611345059214937141029", - "67661949962552366736277529", - "29014817878226669447036710" + "252335544203866754703259508", + "54638423241050660383826080", + "650252182237862538061405670" ], - "mAssetSupply": "108314186222480482660462066" + "mAssetSupply": "950499795287269129820705973" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1517172722472567313530880", - "expectedQty": "1518532340735528594002919", + "inputIndex": 1, + "inputQty": "124425614325052224831488", + "expectedQty": "140568307060478699028230", "reserves": [ - "11940611345059214937141029", - "67661949962552366736277529", - "30531990600699236760567590" + "252335544203866754703259508", + "54762848855375712608657568", + "650252182237862538061405670" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1931182194679996932423680", - "expectedQty": "1861774630237284130963295", - "swapFee": "1158709316807998159454", + "inputIndex": 1, + "inputQty": "6155196276215097877069824", + "expectedQty": "5381241753742293462870426", + "swapFee": "3693117765729058726241", + "reserves": [ + "252335544203866754703259508", + "49381607101633419145787142", + "650252182237862538061405670" + ], + "mAssetSupply": "944488860435880239701390620" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "610678273238716252160", + "outputIndex": 0, + "expectedQty": "595932835811730430358", + "swapFee": "357784115978826737", "reserves": [ - "10078836714821930806177734", - "67661949962552366736277529", - "30531990600699236760567590" + "252334948271030942972829150", + "49381607101633419145787142", + "650252792916135776777657830" ], - "mAssetSupply": "107902695077852822320200759" + "mAssetSupply": "944488860793664355680217357", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "137834111694478999552", - "45985412359197671424", - "105162136022709862400" + "10774705489818319660777472", + "8914120611968154953842688", + "19623149504545621666693120" ], - "expectedQty": "294411452008746609293", + "expectedQty": "40116921281815362372137562", "reserves": [ - "10078974548933625285177286", - "67661995947964725933948953", - "30532095762835259470429990" + "263109653760849262633606622", + "58295727713601574099629830", + "669875942420681398444350950" ], - "mAssetSupply": "107902989489304831066810052" + "mAssetSupply": "984605782075479718052354919" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "13464308468009593208832", - "expectedQty": "13457691748452861842645", - "swapFee": "8078585080805755925", + "inputIndex": 1, + "inputQty": "765517809859712860028928", + "expectedQty": "681224552925994602470713", + "swapFee": "459310685915827716017", "reserves": [ - "10078974548933625285177286", - "67661995947964725933948953", - "30518638071086806608587345" + "263109653760849262633606622", + "57614503160675579497159117", + "669875942420681398444350950" ], - "mAssetSupply": "107889533259421902279357145" + "mAssetSupply": "983840723576305921020042008" }, { "type": "redeemBassets", "inputQtys": [ - "91612484503567866003456", - "3010498859505488494592", - "176387950629951161499648" + "410168010211296458833920", + "990951935853461738881024", + "324189297609179075182592" ], - "expectedQty": "274973358700963661299892", - "swapFee": "165083065059613965159", + "expectedQty": "1843963318484910618325282", + "swapFee": "1107042216420798850305", "reserves": [ - "9987362064430057419173830", - "67658985449105220445454361", - "30342250120456855447087697" + "262699485750637966174772702", + "56623551224822117758278093", + "669551753123072219369168358" ], - "mAssetSupply": "107614559900720938618057253" + "mAssetSupply": "981996760257821010401716726" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "674601584473663", - "expectedQty": "682400929021521", - "swapFee": "404760950684", + "type": "swap", + "inputIndex": 2, + "inputQty": "2596168242756259938304", + "outputIndex": 1, + "expectedQty": "2250105541996886465472", + "swapFee": "1524628582516454546", "reserves": [ - "9987362064430057419173830", - "67658985448422819516432840", - "30342250120456855447087697" + "262699485750637966174772702", + "56621301119280120871812621", + "669554349291314975629106662" ], - "mAssetSupply": "107614559900046741794534274" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "43736134873321439232", - "expectedQty": "45667672975421360421", - "reserves": [ - "9987405800564930740613062", - "67658985448422819516432840", - "30342250120456855447087697" - ] + "mAssetSupply": "981996761782449592918171272", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1746590511813198336", - "expectedQty": "1746493164305744408", + "type": "redeemBassets", + "inputQtys": [ + "34706557088492546949120", + "1138720977730883813376", + "17046019661009694752768" + ], + "expectedQty": "52683108743241895387583", + "swapFee": "31628842551476022846", "reserves": [ - "9987405800564930740613062", - "67658985448422819516432840", - "30342251867047367260286033" - ] + "262664779193549473627823582", + "56620162398302389987999245", + "669537303271653965934353894" + ], + "mAssetSupply": "981944078673706351022783689" }, { - "type": "redeemMasset", - "inputQty": "39810481261961406054", - "expectedQtys": [ - "3693589191743996511", - "25021962896763760950", - "11221313701197661289" - ], - "redemptionFee": "11943144378588421", + "type": "swap", + "inputIndex": 1, + "inputQty": "26670459123591585792", + "outputIndex": 0, + "expectedQty": "30076552268335753290", + "swapFee": "18060574671358458", "reserves": [ - "9987402106975738996616551", - "67658960426459922752671890", - "30342240645733666062624744" + "262664749116997205292070292", + "56620189068761513579585037", + "669537303271653965934353894" ], - "mAssetSupply": "107614567515674763938821470" + "mAssetSupply": "981944078691766925694142147", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "45447309114688392", - "expectedQty": "47454409805691183", + "inputQty": "31173600176377799114752", + "expectedQty": "31180129693229218995624", "reserves": [ - "9987402152423048111304943", - "67658960426459922752671890", - "30342240645733666062624744" + "262695922717173583091185044", + "56620189068761513579585037", + "669537303271653965934353894" ] }, { "type": "redeemBassets", "inputQtys": [ - "314749004151308419072", - "168417634683579498496", - "11650132033774766080" + "713658756563583111266304", + "3828374058327340637749248", + "1734244244175111852130304" ], - "expectedQty": "506692060644560882384", - "swapFee": "304197755039760385", + "expectedQty": "6764117668224885017358814", + "swapFee": "4060907145222064248964", "reserves": [ - "9987087403418896802885871", - "67658792008825239173173394", - "30342228995601632287858664" + "261982263960609999979918740", + "52791815010434172941835789", + "667803059027478854082223590" ], - "mAssetSupply": "107614060871068529183630269" + "mAssetSupply": "975211141153235269895778957" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "546566375640544960", - "outputIndex": 2, - "expectedQty": "570395385787211148", - "swapFee": "342423559413179", - "reserves": [ - "9987087949985272443430831", - "67658792008825239173173394", - "30342228425206246500647516" + "type": "redeemBassets", + "inputQtys": [ + "12772147263926461005824", + "27995510530739321962496", + "27645188029689395937280" ], - "mAssetSupply": "107614060871410952743043448", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "127010459865819467743232", - "expectedQty": "128476919384614693992383", - "swapFee": "76206275919491680645", + "expectedQty": "71894422798502324866444", + "swapFee": "43162551209827291294", "reserves": [ - "9987087949985272443430831", - "67530315089440624479181011", - "30342228425206246500647516" + "261969491813346073518912916", + "52763819499903433619873293", + "667775413839449164686286310" ], - "mAssetSupply": "107487126617821052766980861" + "mAssetSupply": "975139246730436767570912513" }, { "type": "redeemBassets", "inputQtys": [ - "19365827151733645639680", - "12968351124580707860480", - "1180534103344879108096" + "18055059785092916", + "2729004961127686", + "43333860143304480" ], - "expectedQty": "34213008931287449455246", - "swapFee": "20540129436434330271", + "expectedQty": "63537592362840557", + "swapFee": "38145442683314", "reserves": [ - "9967722122833538797791151", - "67517346738316043771320531", - "30341047891102901621539420" + "261969491795291013733820000", + "52763819497174428658745607", + "667775413796115304542981830" ], - "mAssetSupply": "107452913608889765317525615" + "mAssetSupply": "975139246666899175208071956" }, { - "type": "redeemMasset", - "inputQty": "316379494869027214327808", - "expectedQtys": [ - "29339705266856667863999", - "198735380991864436334096", - "89308007551025559046432" + "type": "redeemBassets", + "inputQtys": [ + "1403718282250233053184", + "1206195561648918102016", + "6176242231674589413376" ], - "redemptionFee": "94913848460708164298", + "expectedQty": "8823504603481825931663", + "swapFee": "5297281130767556092", "reserves": [ - "9938382417566682129927152", - "67318611357324179334986435", - "30251739883551876062492988" + "261968088077008763500766816", + "52762613301612779740643591", + "667769237553883629953568454" ], - "mAssetSupply": "107136629027869198811362105" + "mAssetSupply": "975130423162295693382140293" }, { "type": "mintMulti", "inputQtys": [ - "70732956834264808161280", - "64156815862771547635712", - "68573453888562755796992" + "1572787703260991136464896", + "913016124665435271462912", + "1379861177064543418843136" ], - "expectedQty": "205795633352583025663242", + "expectedQty": "3966660290875269452173575", "reserves": [ - "10009115374400946938088432", - "67382768173186950882622147", - "30320313337440438818289980" + "263540875780269754637231712", + "53675629426278215012106503", + "669149098730948173372411590" ], - "mAssetSupply": "107342424661221781837025347" + "mAssetSupply": "979097083453170962834313868" }, { "type": "redeemMasset", - "inputQty": "610628726899118545305", + "inputQty": "223970796165718422532915", "expectedQtys": [ - "56920829222246884622", - "383199003731914086013", - "172428562653945384670" + "60267519054057902137409", + "12274744893402820943838", + "153023533591794655807676" ], - "redemptionFee": "183188618069735563", + "redemptionFee": "67191238849715526759", "reserves": [ - "10009058453571724691203810", - "67382384974183218968536134", - "30320140908877784872905310" + "263480608261215696735094303", + "53663354681384812191162665", + "668996075197356378716603914" ], - "mAssetSupply": "107341814215683500788215605" + "mAssetSupply": "978873179848244094127307712" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "63242182735204548870144", - "expectedQty": "62486856692833804584137", + "type": "mintMulti", + "inputQtys": [ + "105840480711001423872", + "497217346825793503232", + "651910959176366948352" + ], + "expectedQty": "1311366474032684180399", "reserves": [ - "10009058453571724691203810", - "67445627156918423517406278", - "30320140908877784872905310" - ] + "263480714101696407736518175", + "53663851898731637984665897", + "668996727108315555083552266" + ], + "mAssetSupply": "978874491214718126811488111" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "26733865902886006816768", - "expectedQty": "26414286437913348030956", - "reserves": [ - "10009058453571724691203810", - "67472361022821309524223046", - "30320140908877784872905310" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "22584620320611337502720", - "expectedQty": "22582993773648231368139", + "inputQty": "616173281606408354136064", + "outputIndex": 0, + "expectedQty": "702692860690110167431840", + "swapFee": "421853307128742064299", "reserves": [ - "10009058453571724691203810", - "67472361022821309524223046", - "30342725529198396210408030" - ] + "262778021241006297569086335", + "54280025180338046338801961", + "668996727108315555083552266" + ], + "mAssetSupply": "978874913068025255553552410", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "89350617942844032575078", + "inputQty": "5317661640437457715", "expectedQtys": [ - "8320333362422024959194", - "56088446187386498603934", - "25223310733819641833321" + "1427092854738661886", + "294783542870392431", + "3633182275256604466" ], - "redemptionFee": "26805185382853209772", + "redemptionFee": "1595298492131237", "reserves": [ - "10000738120209302666244616", - "67416272576633923025619112", - "30317502218464576568574709" + "262778019813913442830424449", + "54280024885554503468409530", + "668996723475133279826947800" ], - "mAssetSupply": "107363974539830434992833531" + "mAssetSupply": "978874907751958913608225932" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "284395894809890104803328", - "outputIndex": 1, - "expectedQty": "299801747815252959493421", - "swapFee": "177899220490193210549", + "inputIndex": 2, + "inputQty": "277171265503047974912", + "outputIndex": 0, + "expectedQty": "270898847357920020217", + "swapFee": "162636556766680503", "reserves": [ - "10285134015019192771047944", - "67116470828818670066125691", - "30317502218464576568574709" + "262777748915066084910404232", + "54280024885554503468409530", + "668997000646398782874922712" ], - "mAssetSupply": "107364152439050925186044080", + "mAssetSupply": "978874907914595470374906435", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "3735626127269176851562496", - "expectedQty": "3690748119278381494726314", + "inputQty": "97730385698440272", + "expectedQty": "85718877511036483", + "swapFee": "58638231419064", "reserves": [ - "10285134015019192771047944", - "70852096956087846917688187", - "30317502218464576568574709" - ] + "262777748915066084910404232", + "54280024799835625957373047", + "668997000646398782874922712" + ], + "mAssetSupply": "978874907816923722907885227" }, { "type": "mintMulti", "inputQtys": [ - "1349063015656621080576", - "1241470105348905107456", - "86286546398061379584" - ], - "expectedQty": "2722258472633491335389", - "reserves": [ - "10286483078034849392128520", - "70853338426193195822795643", - "30317588505010974629954293" - ], - "mAssetSupply": "111057622816801940172105783" - }, - { - "type": "redeemMasset", - "inputQty": "14234342391504832351436", - "expectedQtys": [ - "1318031054761438110132", - "9078603412925204969215", - "3884663285978672400242" + "147655626810284015616", + "655439449119158960128", + "192837626735101116416" ], - "redemptionFee": "4270302717451449705", + "expectedQty": "1083076440322236232620", "reserves": [ - "10285165046980087954018388", - "70844259822780270617826428", - "30313703841724995957554051" + "262777896570692895194419848", + "54280680239284745116333175", + "668997193484025517976039128" ], - "mAssetSupply": "111043392744713152791204052" + "mAssetSupply": "978875990893364045144117847" }, { "type": "mintMulti", "inputQtys": [ - "22646623619830492692480", - "26861702959666974162944", - "21298234614782349017088" + "462750708387327118409728", + "445957932419628914442240", + "154254663957949781639168" ], - "expectedQty": "71504972891588548946675", + "expectedQty": "1121286830300769877301971", "reserves": [ - "10307811670599918446710868", - "70871121525739937591989372", - "30335002076339778306571139" + "263240647279080222312829576", + "54726638171704374030775415", + "669151448147983467757678296" ], - "mAssetSupply": "111114897717604741340150727" + "mAssetSupply": "979997277723664815021419818" }, { - "type": "redeemBassets", - "inputQtys": [ - "295660488118194671714304", - "225457309019011576496128", - "2610152932114394251264" - ], - "expectedQty": "534534373922501142424564", - "swapFee": "320913172256854798333", + "type": "redeem", + "inputIndex": 0, + "inputQty": "454257770514714648903680", + "expectedQty": "453977883107423900515041", + "swapFee": "272554662308828789342", "reserves": [ - "10012151182481723774996564", - "70645664216720926015493244", - "30332391923407663912319875" + "262786669395972798412314535", + "54726638171704374030775415", + "669151448147983467757678296" ], - "mAssetSupply": "110580363343682240197726163" + "mAssetSupply": "979543292507812409201305480" }, { - "type": "redeemBassets", - "inputQtys": [ - "119206678318709056", - "109678610533068032", - "122426081074653232" + "type": "redeemMasset", + "inputQty": "214905934096373373940531", + "expectedQtys": [ + "57636525881034219828666", + "12003094771190753918078", + "146763779335390534960056" ], - "expectedQty": "355619762062112738", - "swapFee": "213499957211594", + "redemptionFee": "64471780228912012182", "reserves": [ - "10012151063275045456287508", - "70645664107042315482425212", - "30332391800981582837666643" + "262729032870091764192485869", + "54714635076933183276857337", + "669004684368648077222718240" ], - "mAssetSupply": "110580362988062478135613425" + "mAssetSupply": "979328451045496264739377131" }, { - "type": "redeemMasset", - "inputQty": "202318405543094579", - "expectedQtys": [ - "18312788018838949", - "129214897284937763", - "55479652438848237" - ], - "redemptionFee": "60695521662928", + "type": "redeem", + "inputIndex": 2, + "inputQty": "6893822595821242599604224", + "expectedQty": "7042771439534820552702316", + "swapFee": "4136293557492745559762", "reserves": [ - "10012151044962257437448559", - "70645663977827418197487449", - "30332391745501930398818406" + "262729032870091764192485869", + "54714635076933183276857337", + "661961912929113256670015924" ], - "mAssetSupply": "110580362785804768114181774" + "mAssetSupply": "972438764743232514885332669" }, { - "type": "redeemBassets", - "inputQtys": [ - "105213831137525839691776", - "159944835326731792416768", - "29978795799088231088128" - ], - "expectedQty": "298134787948975769188683", - "swapFee": "178988265728822755166", + "type": "mint", + "inputIndex": 0, + "inputQty": "1610603173573279350784", + "expectedQty": "1610304967044875521211", "reserves": [ - "9906937213824731597756783", - "70485719142500686405070681", - "30302412949702842167730278" - ], - "mAssetSupply": "110282227997855792344993091" + "262730643473265337471836653", + "54714635076933183276857337", + "661961912929113256670015924" + ] }, { - "type": "redeemMasset", - "inputQty": "106514137178244081254", - "expectedQtys": [ - "9565569356916387021", - "68056960549709565980", - "29258268877268758710" + "type": "redeemBassets", + "inputQtys": [ + "20862647604895180390400", + "36803485902808383750144", + "48875791084146963513344" ], - "redemptionFee": "31954241153473224", + "expectedQty": "110443924741296871547583", + "swapFee": "66306138527894859844", "reserves": [ - "9906927648255374681369762", - "70485651085540136695504701", - "30302383691433964898971568" + "262709780825660442291446253", + "54677831591030374893107193", + "661913037138029109706502580" ], - "mAssetSupply": "110282121515672855254385061" + "mAssetSupply": "972329931123458262889306297" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "73834989595282873778176", - "expectedQty": "74747191342434020460259", - "swapFee": "44300993757169724266", + "inputQty": "6398622121773602101526528", + "outputIndex": 2, + "expectedQty": "7310716992108094608333878", + "swapFee": "4304061334688084889930", "reserves": [ - "9906927648255374681369762", - "70410903894197702675044442", - "30302383691433964898971568" + "262709780825660442291446253", + "61076453712803976994633721", + "654602320145921015098168702" ], - "mAssetSupply": "110208330827071329550331151" + "mAssetSupply": "972334235184792950974196227", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "239449634972634848428032", + "inputQty": "200317829860530476548096", "outputIndex": 2, - "expectedQty": "236118332362259428435125", - "swapFee": "141828414760212927932", + "expectedQty": "225790853483788131866371", + "swapFee": "132958129020342276330", "reserves": [ - "9906927648255374681369762", - "70650353529170337523472474", - "30066265359071705470536443" + "262709780825660442291446253", + "61276771542664507471181817", + "654376529292437226966302331" ], - "mAssetSupply": "110208472655486089763259083", + "mAssetSupply": "972334368142921971316472557", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "5664831129638561885716480", + "expectedQty": "5771367097483634350108416", + "swapFee": "3398898677783137131429", + "reserves": [ + "262709780825660442291446253", + "61276771542664507471181817", + "648605162194953592616193915" + ], + "mAssetSupply": "966672935911961192567887506" + }, { "type": "redeemBassets", "inputQtys": [ - "536108177195636591951872", - "295303816862944217530368", - "255662546264912050520064" + "3116537893287403978752", + "13533195405928496627712", + "29385221073882423754752" ], - "expectedQty": "1110528075652839731373281", - "swapFee": "666716875517014047252", + "expectedQty": "46888169917352420168784", + "swapFee": "28149791825506756154", "reserves": [ - "9370819471059738089417890", - "70355049712307393305942106", - "29810602812806793420016379" + "262706664287767154887467501", + "61263238347258578974554105", + "648575776973879710192439163" ], - "mAssetSupply": "109097944579833250031885802" + "mAssetSupply": "966626047742043840147718722" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "3743663598291770671104", - "expectedQty": "3739717079430780724544", - "swapFee": "2246198158975062402", + "inputQty": "526959099344779688804352", + "expectedQty": "516972907766939575018794", "reserves": [ - "9370819471059738089417890", - "70355049712307393305942106", - "29806863095727362639291835" - ], - "mAssetSupply": "109094203162433117236277100" + "262706664287767154887467501", + "61263238347258578974554105", + "649102736073224489881243515" + ] }, { "type": "mintMulti", "inputQtys": [ - "3784482138988793103908864", - "279554967811722737352704", - "3851414892707747658203136" + "758035654256385280", + "2969269334067068928", + "1381459350311792128" + ], + "expectedQty": "5392383757451974162", + "reserves": [ + "262706665045802809143852781", + "61263241316527913041623033", + "649102737454683840193035643" + ], + "mAssetSupply": "967143026042194537174711678" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "65904903333905199557246976", + "outputIndex": 0, + "expectedQty": "68853512786968780156673936", + "swapFee": "41544016381026067082360", + "reserves": [ + "193853152258834028987178845", + "127168144650433112598870009", + "649102737454683840193035643" + ], + "mAssetSupply": "967184570058575563241794038", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "111719901185081403978547", + "expectedQtys": [ + "22385342476005186468611", + "14684839719486097658197", + "74955639930139008343633" ], - "expectedQty": "8059751809937505277935761", + "redemptionFee": "33515970355524421193", "reserves": [ - "13155301610048531193326754", - "70634604680119116043294810", - "33658277988435110297494971" + "193830766916358023800710234", + "127153459810713626501211812", + "649027781814753701184692010" ], - "mAssetSupply": "117153954972370622514212861" + "mAssetSupply": "967072883673360837362236684" }, { "type": "mint", "inputIndex": 0, - "inputQty": "213477965424244", - "expectedQty": "219499235023484", + "inputQty": "48323332628695375060926464", + "expectedQty": "48605121728523532073331569", "reserves": [ - "13155301610262009158750998", - "70634604680119116043294810", - "33658277988435110297494971" + "242154099545053398861636698", + "127153459810713626501211812", + "649027781814753701184692010" ] }, { - "type": "redeemMasset", - "inputQty": "124587601954198559653888", - "expectedQtys": [ - "13985834150848074544287", - "75093973185399879300797", - "35783223197420729239891" + "type": "redeem", + "inputIndex": 2, + "inputQty": "23659806954243582133796864", + "expectedQty": "23882096108260684686825135", + "swapFee": "14195884172546149280278", + "reserves": [ + "242154099545053398861636698", + "127153459810713626501211812", + "625145685706493016497866875" + ], + "mAssetSupply": "992032394331813333451051667" + }, + { + "type": "mintMulti", + "inputQtys": [ + "632972286094097907712", + "5628700415001379209216", + "702057475387307196416" ], - "redemptionFee": "37376280586259567896", + "expectedQty": "7084034714770592588332", "reserves": [ - "13141315776111161084206711", - "70559510706933716163994013", - "33622494765237689568255080" + "242154732517339492959544410", + "127159088511128627880421028", + "625146387763968403805063291" ], - "mAssetSupply": "117029404746916509449150353" + "mAssetSupply": "992039478366528104043639999" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "771180858604100517888", + "expectedQty": "788310348106861367962", + "reserves": [ + "242154732517339492959544410", + "127159859691987231980938916", + "625146387763968403805063291" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "13294158177877249490944", - "outputIndex": 1, - "expectedQty": "13413042193885651938170", - "swapFee": "7976718018911976525", + "inputIndex": 0, + "inputQty": "2223336949204515815424", + "outputIndex": 2, + "expectedQty": "2250863140589013732662", + "swapFee": "1338303055325913903", "reserves": [ - "13141315776111161084206711", - "70546097664739830512055843", - "33635788923415566817746024" + "242156955854288697475359834", + "127159859691987231980938916", + "625144136900827814791330629" ], - "mAssetSupply": "117029412723634528361126878", + "mAssetSupply": "992040268015179266230921864", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "27831258363577188352", - "expectedQty": "27813895976956001676", - "swapFee": "16698755018146313", + "type": "redeemBassets", + "inputQtys": [ + "231812318806650528", + "2727540430753345024", + "2013774285131840768" + ], + "expectedQty": "5015046936134201090", + "swapFee": "3010834662478007", "reserves": [ - "13141315776111161084206711", - "70546097664739830512055843", - "33635761109519589861744348" + "242156955622476378668709306", + "127159856964446801227593892", + "625144134887053529659489861" ], - "mAssetSupply": "117029384909074919802084839" + "mAssetSupply": "992040263000132330096720774" }, { "type": "redeemMasset", - "inputQty": "70211213321751456487833", + "inputQty": "22837647670683340", "expectedQtys": [ - "7881703605330383941960", - "42311092875260800247923", - "20173558273887227528685" + "5572995725215464", + "2926454610647969", + "14387055628501220" ], - "redemptionFee": "21063363996525436946", + "redemptionFee": "6851294301205", "reserves": [ - "13133434072505830700264751", - "70503786571864569711807920", - "33615587551245702634215663" + "242156955616903382943493842", + "127159856961520346616945923", + "625144134872666474030988641" ], - "mAssetSupply": "116959194759117164871033952" + "mAssetSupply": "992040262977301533720338639" }, { "type": "swap", "inputIndex": 2, - "inputQty": "22627371545566365351936", + "inputQty": "5940322111079942455296", "outputIndex": 1, - "expectedQty": "22829388346808452179124", - "swapFee": "13576689830249475386", + "expectedQty": "5751767239164445626305", + "swapFee": "3529837417498219054", "reserves": [ - "13133434072505830700264751", - "70480957183517761259628796", - "33638214922791268999567599" + "242156955616903382943493842", + "127154105194281182171319618", + "625150075194777553973443937" ], - "mAssetSupply": "116959208335806995120509338", + "mAssetSupply": "992040266507138951218557693", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1919428536185780736", - "expectedQty": "1901343481362865528", + "inputIndex": 2, + "inputQty": "9018472490856121344", + "expectedQty": "8931537906335596792", "reserves": [ - "13133434072505830700264751", - "70480959102946297445409532", - "33638214922791268999567599" + "242156955616903382943493842", + "127154105194281182171319618", + "625150084213250044829565281" ] }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "1899996513502339916627968", - "outputIndex": 0, - "expectedQty": "1818324118245359843724234", - "swapFee": "1129057486344523732819", - "reserves": [ - "11315109954260470856540517", - "72380955616448637362037500", - "33638214922791268999567599" - ], - "mAssetSupply": "116960339294636821007107685", - "hardLimitError": false, - "insufficientLiquidityError": false - }, { "type": "redeemMasset", - "inputQty": "57603880232586979364044", + "inputQty": "3424099402571121374003", "expectedQtys": [ - "5571108157533060574537", - "35637491276256039189706", - "16562113343905276756116" + "835571656446728027452", + "438750008359333174176", + "2157103809234602507311" ], - "redemptionFee": "17281164069776093809", + "redemptionFee": "1027229820771336412", "reserves": [ - "11309538846102937795965980", - "72345318125172381322847794", - "33621652809447363722811483" + "242156120045246936215466390", + "127153666444272822838145442", + "625147927109440810227057970" ], - "mAssetSupply": "116902752695568303803837450" + "mAssetSupply": "992036852366504107204116894" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3658760658683208746926080", - "expectedQty": "3458785932087040431742652", - "swapFee": "2195256395209925248155", + "type": "swap", + "inputIndex": 2, + "inputQty": "461315381477517524205568", + "outputIndex": 1, + "expectedQty": "446620494512391299402551", + "swapFee": "274119691278064961128", "reserves": [ - "7850752914015897364223328", - "72345318125172381322847794", - "33621652809447363722811483" + "242156120045246936215466390", + "126707045949760431538742891", + "625609242490918327751263538" ], - "mAssetSupply": "113246187293280304982159525" + "mAssetSupply": "992037126486195385269078022", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "38896109307515971305472", - "17145294805884404236288", - "15581525881272458543104" + "94224072751493888", + "72250184781268128", + "80127395904864576" ], - "expectedQty": "74522671016244350283529", - "swapFee": "44740446877873334170", + "expectedQty": "247748971551113385", + "swapFee": "148738626106331", "reserves": [ - "7811856804708381392917856", - "72328172830366496918611506", - "33606071283566091264268379" + "242156119951022863463972502", + "126707045877510246757474763", + "625609242410790931846398962" ], - "mAssetSupply": "113171664622264060631875996" + "mAssetSupply": "992037126238446413717964637" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "434006351934122752", - "outputIndex": 0, - "expectedQty": "399737022394564956", - "swapFee": "259849692881996", + "inputQty": "2218911947335285604352", + "expectedQty": "2239255475419222469925", + "swapFee": "1331347168401171362", "reserves": [ - "7811856404971358998352900", - "72328172830366496918611506", - "33606071717572443198391131" + "242156119951022863463972502", + "126707045877510246757474763", + "625607003155315512623929037" ], - "mAssetSupply": "113171664622523910324757992", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "992034908657846246833531647" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "11500739476738158592", - "outputIndex": 2, - "expectedQty": "11335288674303872130", - "swapFee": "6790775352854855", + "inputIndex": 0, + "inputQty": "145644489245850112884736", + "outputIndex": 1, + "expectedQty": "142821261084097218357919", + "swapFee": "87668103300927917423", "reserves": [ - "7811856404971358998352900", - "72328184331105973656770098", - "33606060382283768894519001" + "242301764440268713576857238", + "126564224616426149539116844", + "625607003155315512623929037" ], - "mAssetSupply": "113171664629314685677612847", + "mAssetSupply": "992034996325949547761449070", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "413055100062565531648", - "350679684796515876864", - "286039318023222689792" - ], - "expectedQty": "1077781823703059030057", - "swapFee": "647057328619006822", - "reserves": [ - "7811443349871296432821252", - "72327833651421177140893234", - "33605774342965745671829209" - ], - "mAssetSupply": "113170586847490982618582790" - }, { "type": "redeem", "inputIndex": 2, - "inputQty": "277551998094622538596352", - "expectedQty": "277956684518799401325377", - "swapFee": "166531198856773523157", + "inputQty": "35403073790658488532205568", + "expectedQty": "35713865202182867429062076", + "swapFee": "21241844274395093119323", "reserves": [ - "7811443349871296432821252", - "72327833651421177140893234", - "33327817658446946270503832" + "242301764440268713576857238", + "126564224616426149539116844", + "589893137953132645194866961" ], - "mAssetSupply": "112893201380595216853509595" + "mAssetSupply": "956653164379565454322362825" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "5706201397219186180096", - "outputIndex": 2, - "expectedQty": "5622998910234614007266", - "swapFee": "3369143673548549673", + "inputIndex": 2, + "inputQty": "119172929823432949760", + "outputIndex": 1, + "expectedQty": "115708390111831713926", + "swapFee": "70866570646491106", "reserves": [ - "7811443349871296432821252", - "72333539852818396327073330", - "33322194659536711656496566" + "242301764440268713576857238", + "126564108908036037707402918", + "589893257126062468627816721" ], - "mAssetSupply": "112893204749738890402059268", + "mAssetSupply": "956653164450432024968853931", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "72995257472284401664", - "49316181814253903872", - "15824665353789478912" + "1368910554339966", + "1645316904726688", + "1120671729183707" ], - "expectedQty": "143346902180088377322", + "expectedQty": "4161459453214537", "reserves": [ - "7811516345128768717222916", - "72333589169000210580977202", - "33322210484202065445975478" + "242301764441637624131197204", + "126564108909681354612129606", + "589893257127183140357000428" ], - "mAssetSupply": "112893348096641070490436590" + "mAssetSupply": "956653164454593484422068468" }, { - "type": "redeemBassets", - "inputQtys": [ - "3338296664392030748672", - "7166382130535496417280", - "5248210872783370977280" - ], - "expectedQty": "15904017661282214286516", - "swapFee": "9548139480457603133", + "type": "redeem", + "inputIndex": 2, + "inputQty": "39514928692069833092628480", + "expectedQty": "39829294386027255518216325", + "swapFee": "23708957215241899855577", "reserves": [ - "7808178048464376686474244", - "72326422786869675084559922", - "33316962273329282074998198" + "242301764441637624131197204", + "126564108909681354612129606", + "550063962741155884838784103" ], - "mAssetSupply": "112877444078979788276150074" + "mAssetSupply": "917161944719738893229295565" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "8781667004690346555736064", + "expectedQty": "8927045391961741152958176", + "reserves": [ + "242301764441637624131197204", + "135345775914371701167865670", + "550063962741155884838784103" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "586872207199328838615040", - "300539435032156548628480", - "899058999254950816514048" + "2181347063808916916797440", + "1633585569003053531529216", + "2632363422385513730932736" ], - "expectedQty": "1825554608875984861281224", + "expectedQty": "6456838673898009024223966", + "swapFee": "3876429061775870937096", "reserves": [ - "8395050255663705525089284", - "72626962221901831633188402", - "34216021272584232891512246" + "240120417377828707214399764", + "133712190345368647636336454", + "547431599318770371107851367" ], - "mAssetSupply": "114702998687855773137431298" + "mAssetSupply": "919632151437802625358029775" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "2993332006314634752", - "outputIndex": 1, - "expectedQty": "3030550769154366716", - "swapFee": "1792427346670209", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3061714317848432842113024", + "expectedQty": "3011629298316326123254422", + "swapFee": "1837028590709059705267", "reserves": [ - "8395050255663705525089284", - "72626959191351062478821686", - "34216024265916239206146998" + "240120417377828707214399764", + "130700561047052321513082032", + "547431599318770371107851367" ], - "mAssetSupply": "114702998689648200484101507", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "916572274148544901575622018" }, { "type": "redeemBassets", "inputQtys": [ - "2034837322340532674887680", - "480911760233653835137024", - "2581924500492089909313536" + "81233759263353768771584", + "60043507641463844372480", + "98330917334381286653952" ], - "expectedQty": "5274941061225357529794696", - "swapFee": "3166864755588567658471", - "reserves": [ - "6360212933323172850201604", - "72146047431117408643684662", - "31634099765424149296833462" - ], - "mAssetSupply": "109428057628422842954306811" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "26170048352198116507648", - "outputIndex": 2, - "expectedQty": "25696731443668351146739", - "swapFee": "15394035655227102901", + "expectedQty": "239979279835114010189020", + "swapFee": "144074012308453478200", "reserves": [ - "6360212933323172850201604", - "72172217479469606760192310", - "31608403033980480945686723" + "240039183618565353445628180", + "130640517539410857668709552", + "547333268401435989821197415" ], - "mAssetSupply": "109428073022458498181409712", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "916332294868709787565432998" }, { "type": "redeemBassets", "inputQtys": [ - "141021735099223253188608", - "109575388978757874221056", - "41983259868041983295488" + "16318924798207360761856", + "192748672136155005714432", + "413256988321928901033984" ], - "expectedQty": "307774112732310281442832", - "swapFee": "184775332839089622639", + "expectedQty": "622288970572565443018626", + "swapFee": "373597540868060101872", "reserves": [ - "6219191198223949597012996", - "72062642090490848885971254", - "31566419774112438962391235" + "240022864693767146084866324", + "130447768867274702662995120", + "546920011413114060920163431" ], - "mAssetSupply": "109120298909726187899966880" + "mAssetSupply": "915710005898137222122414372" }, { "type": "swap", "inputIndex": 1, - "inputQty": "1503021862667791106048", - "outputIndex": 2, - "expectedQty": "1475418399710069614113", - "swapFee": "883768314371437379", + "inputQty": "2314178245190994649677824", + "outputIndex": 0, + "expectedQty": "2345420053142964513379364", + "swapFee": "1410926344917956516945", "reserves": [ - "6219191198223949597012996", - "72064145112353516677077302", - "31564944355712728892777122" + "237677444640624181571486960", + "132761947112465697312672944", + "546920011413114060920163431" ], - "mAssetSupply": "109120299793494502271404259", + "mAssetSupply": "915711416824482140078931317", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "510136019112230874251264", - "560005814364675839623168", - "359091741028761559105536" + "type": "redeemMasset", + "inputQty": "344980204996824167507558", + "expectedQtys": [ + "89514462597207818240846", + "50001018679330090320453", + "205981896933167488686202" ], - "expectedQty": "1486200455148046556797374", - "swapFee": "892255626464706758133", + "redemptionFee": "103494061499047250252", "reserves": [ - "5709055179111718722761732", - "71504139297988840837454134", - "31205852614683967333671586" + "237587930178026973753246114", + "132711946093786367222352491", + "546714029516180893431477229" ], - "mAssetSupply": "107634099338346455714606885" + "mAssetSupply": "915366540113546814958674011" }, { - "type": "mintMulti", - "inputQtys": [ - "5001236073183109447680", - "25827601590391540809728", - "3961183224032951533568" + "type": "redeemMasset", + "inputQty": "37887254601819409612", + "expectedQtys": [ + "9830874890333706376", + "5491333408743109704", + "22621844556398488024" ], - "expectedQty": "34957356294605071962004", + "redemptionFee": "11366176380545822", "reserves": [ - "5714056415184901832209412", - "71529966899579232378263862", - "31209813797908000285205154" + "237587920347152083419539738", + "132711940602452958479242787", + "546714006894336337032989205" ], - "mAssetSupply": "107669056694641060786568889" + "mAssetSupply": "915366502237658389519810221" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "211236586756058120192", - "outputIndex": 2, - "expectedQty": "242723278302365257392", - "swapFee": "145333732498650812", + "type": "redeemMasset", + "inputQty": "3872856668094428977561", + "expectedQtys": [ + "1004917610747193759235", + "561327217616849408382", + "2312417789454618042198" + ], + "redemptionFee": "1161857000428328693", "reserves": [ - "5714267651771657890329604", - "71529966899579232378263862", - "31209571074629697919947762" + "237586915429541336225780503", + "132711379275235341629834405", + "546711694476546882414947007" ], - "mAssetSupply": "107669056839974793285219701", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "915362630542847295519161353" }, { "type": "mintMulti", "inputQtys": [ - "3001852287555136512", - "2282161739367420928", - "586614343332676096" - ], - "expectedQty": "6260261772915482665", - "reserves": [ - "5714270653623945445466116", - "71529969181740971745684790", - "31209571661244041252623858" + "265029683618387083657216", + "458547909580060402647040", + "156561469787728219471872" ], - "mAssetSupply": "107669063100236566200702366" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "440013624753843404800", - "expectedQty": "383493461039335420179", - "swapFee": "264008174852306042", + "expectedQty": "886696394861973126371997", "reserves": [ - "5713887160162906110045937", - "71529969181740971745684790", - "31209571661244041252623858" + "237851945113159723309437719", + "133169927184815402032481445", + "546868255946334610634418879" ], - "mAssetSupply": "107668623350619987209603608" + "mAssetSupply": "916249326937709268645533350" }, { "type": "mintMulti", "inputQtys": [ - "80409136882546786304", - "81503605203594952704", - "14119943729432582144" + "46882621062030378926080", + "93717785034238088708096", + "69666846371382395142144" ], - "expectedQty": "186036536332104949392", + "expectedQty": "211296355589345557234554", "reserves": [ - "5713967569299788656832241", - "71530050685346175340637494", - "31209585781187770685206002" + "237898827734221753688363799", + "133263644969849640121189541", + "546937922792705993029561023" ], - "mAssetSupply": "107668809387156319314553000" + "mAssetSupply": "916460623293298614202767904" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "140665315097604062707712", - "expectedQty": "137633099698784540872701", + "type": "redeem", + "inputIndex": 2, + "inputQty": "2792515513969387256152064", + "expectedQty": "2812466968856485844798536", + "swapFee": "1675509308381632353691", "reserves": [ - "5713967569299788656832241", - "71670716000443779403345206", - "31209585781187770685206002" - ] + "237898827734221753688363799", + "133263644969849640121189541", + "544125455823849507184762487" + ], + "mAssetSupply": "913669783288637608578969531" }, { "type": "redeemMasset", - "inputQty": "16725280495326547148", + "inputQty": "1503178198018457903248179", "expectedQtys": [ - "886209004033186602", - "11115784798351953468", - "4840457282263514744" + "391275990980144690369294", + "219180839366966495682289", + "894931803459128698385709" ], - "redemptionFee": "5017584148597964", + "redemptionFee": "450953459405537370974", "reserves": [ - "5713966683090784623645639", - "71670704884658981051391738", - "31209580940730488421691258" + "237507551743241608997994505", + "133044464130482673625507252", + "543230524020390378486376778" ], - "mAssetSupply": "107806425766592192677476517" + "mAssetSupply": "912167056044078556213092326" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "88667817615786204200960", - "expectedQty": "86752587173224742807992", - "reserves": [ - "5713966683090784623645639", - "71759372702274767255592698", - "31209580940730488421691258" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "27183666304819388416", - "expectedQty": "27112810175832211846", - "reserves": [ - "5713966683090784623645639", - "71759372702274767255592698", - "31209608124396793241079674" - ] - }, - { - "type": "redeemMasset", - "inputQty": "93803664846334686396416", - "expectedQtys": [ - "4966301780190052863754", - "62369754701449743515496", - "27125872617686580753821" - ], - "redemptionFee": "28141099453900405918", + "inputQty": "762462279529784541184", + "expectedQty": "750351585731639808367", + "swapFee": "457477367717870724", "reserves": [ - "5709000381310594570781885", - "71697002947573317512077202", - "31182482251779106660325853" + "237507551743241608997994505", + "133043713778896941985698885", + "543230524020390378486376778" ], - "mAssetSupply": "107799429942828712466505857" + "mAssetSupply": "912166294039276394146421866" }, { "type": "redeemMasset", - "inputQty": "839095047175026303932825", + "inputQty": "1979374833030749015244", "expectedQtys": [ - "44424695275611291442794", - "557911594917314279158602", - "242647079952450849015457" + "515229995566917833715", + "288614452708482882376", + "1178441099782017993105" ], - "redemptionFee": "251728514152507891179", + "redemptionFee": "593812449909224704", "reserves": [ - "5664575686034983279339091", - "71139091352656003232918600", - "30939835171826655811310396" + "237507036513246042080160790", + "133043425164444233502816509", + "543229345579290596468383673" ], - "mAssetSupply": "106960586624167838670464211" + "mAssetSupply": "912164315258255813306631326" }, { - "type": "redeemMasset", - "inputQty": "1337882214209053286", - "expectedQtys": [ - "70832273269871644", - "889553576145928021", - "386884910941955648" + "type": "redeemBassets", + "inputQtys": [ + "1312294181876300278398976", + "343531035799826460573696", + "865459084051834550091776" ], - "redemptionFee": "401364664262715", + "expectedQty": "2522664276801480860799663", + "swapFee": "1514507270443154409125", "reserves": [ - "5664575615202710009467447", - "71139090463102427086990579", - "30939834784941744869354748" + "236194742331369741801761814", + "132699894128644407042242813", + "542363886495238761918291897" ], - "mAssetSupply": "106960585286686989125673640" + "mAssetSupply": "909641650981454332445831663" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "727665748766360155979776", - "expectedQty": "823095955775276030865299", + "inputIndex": 2, + "inputQty": "34187488983250521991151616", + "expectedQty": "33912787807598755394247762", "reserves": [ - "6392241363969070165447223", - "71139090463102427086990579", - "30939834784941744869354748" + "236194742331369741801761814", + "132699894128644407042242813", + "576551375478489283909443513" ] }, { "type": "redeemMasset", - "inputQty": "94514453067909862260736", + "inputQty": "27075916365883424899072", "expectedQtys": [ - "5603612176466901541092", - "62362456428632135516565", - "27122698450660797062881" + "6775730439998538663541", + "3806768529887898015487", + "16539558275060660391552" ], - "redemptionFee": "28354335920372958678", + "redemptionFee": "8122774909765027469", "reserves": [ - "6386637751792603263906131", - "71076728006673794951474014", - "30912712086491084072291867" + "236187966600929743263098273", + "132696087360114519144227326", + "576534835920214223249051961" ], - "mAssetSupply": "107689195143730275667236881" + "mAssetSupply": "943527370995462114180207822" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "187384210602097967104", - "expectedQty": "190961205290023333689", - "swapFee": "112430526361258780", - "reserves": [ - "6386637751792603263906131", - "71076537045468504928140325", - "30912712086491084072291867" - ], - "mAssetSupply": "107689007871950199930528557" - }, - { - "type": "mintMulti", - "inputQtys": [ - "116974118284683057823744", - "65252317514365268918272", - "33228145356731815297024" - ], - "expectedQty": "227554214383893024281995", + "inputQty": "48135062780429031440384", + "outputIndex": 0, + "expectedQty": "48809110243075920869032", + "swapFee": "29382492466647278959", "reserves": [ - "6503611870077286321729875", - "71141789362982870197058597", - "30945940231847815887588891" + "236139157490686667342229241", + "132744222422894948175667710", + "576534835920214223249051961" ], - "mAssetSupply": "107916562086334092954810552" + "mAssetSupply": "943527400377954580827486781", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "919000920362576510976", - "3654224661846477504512", - "3726910254180796989440" + "87629579593264301867008", + "105441529819376562208768", + "193767276575832988975104" ], - "expectedQty": "8327585579644863228572", + "expectedQty": "387281497709429112741262", + "swapFee": "232508403667858182554", "reserves": [ - "6504530870997648898240851", - "71145443587644716674563109", - "30949667142101996684578331" + "236051527911093403040362233", + "132638780893075571613458942", + "576341068643638390260076857" ], - "mAssetSupply": "107924889671913737818039124" + "mAssetSupply": "943140118880245151714745519" }, { "type": "redeemMasset", - "inputQty": "2615641454988679027097", + "inputQty": "6094030182296472660423475", "expectedQtys": [ - "157594940212238107446", - "1723746439356714811025", - "749863601170076978388" + "1524771935090696790252560", + "856778570340705636767727", + "3722868029216858728325433" ], - "redemptionFee": "784692436496603708", + "redemptionFee": "1828209054688941798127", "reserves": [ - "6504373276057436660133405", - "71143719841205359959752084", - "30948917278500826607599943" + "234526755976002706250109673", + "131782002322734865976691215", + "572618200614421531531751424" ], - "mAssetSupply": "107922274815151185635615735" + "mAssetSupply": "937047916907003367996120171" }, { "type": "mint", "inputIndex": 2, - "inputQty": "56160953223792", - "expectedQty": "56060215818865", + "inputQty": "77019303530299721252864", + "expectedQty": "76373041010935737861944", "reserves": [ - "6504373276057436660133405", - "71143719841205359959752084", - "30948917278556987560823735" + "234526755976002706250109673", + "131782002322734865976691215", + "572695219917951831253004288" ] }, { "type": "mintMulti", "inputQtys": [ - "4014825614927796736", - "4469342961588763648", - "342902763788057024" + "148130821787345169154048", + "215401084130382135164928", + "66937365167725296484352" ], - "expectedQty": "9194067165046021802", + "expectedQty": "434046793385528819800443", "reserves": [ - "6504377290883051587930141", - "71143724310548321548515732", - "30948917621459751348880759" + "234674886797790051419263721", + "131997403406865248111856143", + "572762157283119556549488640" ], - "mAssetSupply": "107922284009274410897456402" + "mAssetSupply": "937558336741399832553782558" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "444931679041677143572480", - "outputIndex": 0, - "expectedQty": "396158968159531158157957", - "swapFee": "266440035270493956311", + "inputIndex": 1, + "inputQty": "6674634954254228767375360", + "outputIndex": 2, + "expectedQty": "6834650165466696069069133", + "swapFee": "4070607458660575960563", "reserves": [ - "6108218322723520429772184", - "71143724310548321548515732", - "31393849300501428492453239" + "234674886797790051419263721", + "138672038361119476879231503", + "565927507117652860480419507" ], - "mAssetSupply": "107922550449309681391412713", + "mAssetSupply": "937562407348858493129743121", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "11281565885763818618880", - "1264462132086610067456", - "22373454824765837541376" + "type": "redeemMasset", + "inputQty": "740271814447641657344", + "expectedQtys": [ + "185236828964705896434", + "109458532195732676205", + "446705730948976166494" ], - "expectedQty": "36283791989049568165303", - "swapFee": "21783345200550070941", + "redemptionFee": "222081544334292497", "reserves": [ - "6096936756837756611153304", - "71142459848416234938448276", - "31371475845676662654911863" + "234674701560961086713367287", + "138671928902587281146555298", + "565927060411921911504253013" ], - "mAssetSupply": "107886266657320631823247410" + "mAssetSupply": "937561667299125589822378274" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "4753594345839868772352", - "expectedQty": "4762458863859062021194", - "swapFee": "2852156607503921263", + "type": "redeemMasset", + "inputQty": "43484595072990484575027", + "expectedQtys": [ + "10881068741142441312691", + "6429746286324370544000", + "26240115384636667105948" + ], + "redemptionFee": "13045378521897145372", "reserves": [ - "6096936756837756611153304", - "71142459848416234938448276", - "31366713386812803592890669" + "234663820492219944272054596", + "138665499156300956776011298", + "565900820296537274837147065" ], - "mAssetSupply": "107881515915131399458396321" + "mAssetSupply": "937518195749431121234948619" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1233681117122861465600", - "expectedQty": "1235979114348795866531", - "swapFee": "740208670273716879", + "type": "mintMulti", + "inputQtys": [ + "1086583444728976481714176", + "5534142215884640807288832", + "4301686118161439640256512" + ], + "expectedQty": "10973472512307856606327951", "reserves": [ - "6096936756837756611153304", - "71142459848416234938448276", - "31365477407698454797024138" + "235750403936948920753768772", + "144199641372185597583300130", + "570202506414698714477403577" ], - "mAssetSupply": "107880282974222946870647600" + "mAssetSupply": "948491668261738977841276570" }, { - "type": "redeemMasset", - "inputQty": "3545513853466458456064", - "expectedQtys": [ - "200317315705597409271", - "2337414206165959176530", - "1030525408204084201980" - ], - "redemptionFee": "1063654156039937536", + "type": "redeem", + "inputIndex": 2, + "inputQty": "26098589851967765851668480", + "expectedQty": "26278219904563050639491247", + "swapFee": "15659153911180659511001", "reserves": [ - "6096736439522051013744033", - "71140122434210068979271746", - "31364446882290250712822158" + "235750403936948920753768772", + "144199641372185597583300130", + "543924286510135663837912330" ], - "mAssetSupply": "107876738524023636452129072" + "mAssetSupply": "922408737563682392649119091" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "12305529688373790941118464", - "outputIndex": 2, - "hardLimitError": true + "type": "mint", + "inputIndex": 2, + "inputQty": "175793395785925321031680", + "expectedQty": "174531210064594599171372", + "reserves": [ + "235750403936948920753768772", + "144199641372185597583300130", + "544100079905921589158944010" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "149096990717384222310400", - "expectedQty": "149366874267311387328740", - "swapFee": "89458194430430533386", + "type": "mint", + "inputIndex": 0, + "inputQty": "22386403566996886260809728", + "expectedQty": "22427057323769583718937726", "reserves": [ - "6096736439522051013744033", - "71140122434210068979271746", - "31215080008022939325493418" - ], - "mAssetSupply": "107727730991500682660352058" + "258136807503945807014578500", + "144199641372185597583300130", + "544100079905921589158944010" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "53142209437457507680256", - "expectedQty": "47037697503945700608236", - "swapFee": "31885325662474504608", + "inputQty": "21598068848269455261696", + "expectedQty": "21626250116303529913115", "reserves": [ - "6049698742018105313135797", - "71140122434210068979271746", - "31215080008022939325493418" - ], - "mAssetSupply": "107674620667388887627176410" + "258158405572794076469840196", + "144199641372185597583300130", + "544100079905921589158944010" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "105244624914177434058752", - "29663952431030560882688", - "133698533664519251558400" - ], - "expectedQty": "281591892880680398404440", - "swapFee": "169056569670210365261", + "type": "mint", + "inputIndex": 2, + "inputQty": "61761562479994542902738944", + "expectedQty": "61304868611208890105328418", "reserves": [ - "5944454117103927879077045", - "71110458481779038418389058", - "31081381474358420073935018" - ], - "mAssetSupply": "107393028774508207228771970" + "258158405572794076469840196", + "144199641372185597583300130", + "605861642385916132061682954" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "4405266229569350795264", + "inputIndex": 0, + "inputQty": "44237527963964821995520", "outputIndex": 2, - "expectedQty": "4322250157782317345429", - "swapFee": "2588637147558017911", + "expectedQty": "44667152618371758549888", + "swapFee": "26602694848869473195", "reserves": [ - "5944454117103927879077045", - "71114863748008607769184322", - "31077059224200637756589589" + "258202643100758041291835716", + "144199641372185597583300130", + "605816975233297760303133066" ], - "mAssetSupply": "107393031363145354786789881", + "mAssetSupply": "1006336847561536613471942917", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "34109658192288827960197120", + "expectedQty": "34160140218100500271561932", + "reserves": [ + "292312301293046869252032836", + "144199641372185597583300130", + "605816975233297760303133066" + ] + }, { "type": "redeemMasset", - "inputQty": "624647972585995637044019", + "inputQty": "230520296712140910650982", "expectedQtys": [ - "34565345701654371585839", - "413513133679216533698642", - "180704447256902197404204" + "64741853212765467943941", + "31937595420222326093701", + "134177431161323109698912" ], - "redemptionFee": "187394391775798691113", + "redemptionFee": "69156089013642273195", "reserves": [ - "5909888771402273507491206", - "70701350614329391235485680", - "30896354776943735559185385" + "292247559439834103784088895", + "144167703776765375257206429", + "605682797802136437193434154" ], - "mAssetSupply": "106768570784951134948436975" + "mAssetSupply": "1040266536639013986475127062" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "943003605919575703552", - "expectedQty": "830788040238287796186", - "swapFee": "565802163551745422", + "type": "mint", + "inputIndex": 2, + "inputQty": "61758978575100742205440", + "expectedQty": "61297834683599068066695", "reserves": [ - "5909057983362035219695020", - "70701350614329391235485680", - "30896354776943735559185385" - ], - "mAssetSupply": "106767628347147378924478845" + "292247559439834103784088895", + "144167703776765375257206429", + "605744556780711537935639594" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "21178396539941281595392", - "outputIndex": 0, - "expectedQty": "18605565876488476415613", - "swapFee": "12676246388302952755", + "type": "redeemMasset", + "inputQty": "12620870978108084400947", + "expectedQtys": [ + "3544375237830799451318", + "1748464351047868873302", + "7346463428538410826003" + ], + "redemptionFee": "3786261293432425320", "reserves": [ - "5890452417485546743279407", - "70701350614329391235485680", - "30917533173483676840780777" + "292244015064596272984637577", + "144165955312414327388333127", + "605737210317282999524813591" ], - "mAssetSupply": "106767641023393767227431600", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1040315217388980770891218130" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "154680604696416293486592", - "expectedQty": "175081395358497829033433", + "inputIndex": 2, + "inputQty": "1974468099976829354377216", + "expectedQty": "1959689794425626055613176", "reserves": [ - "6045133022181963036765999", - "70701350614329391235485680", - "30917533173483676840780777" + "292244015064596272984637577", + "144165955312414327388333127", + "607711678417259828879190807" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "30936334052167606337536", - "expectedQty": "34895204569353500487898", + "type": "redeemMasset", + "inputQty": "712783736005189330534", + "expectedQtys": [ + "199797853151223076779", + "98561636454894830997", + "415472969244064678003" + ], + "redemptionFee": "213835120801556799", "reserves": [ - "6076069356234130643103535", - "70701350614329391235485680", - "30917533173483676840780777" - ] + "292243815266743121761560798", + "144165856750777872493502130", + "607711262944290584814512804" + ], + "mAssetSupply": "1042274194613505512559057571" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "103714287454029334183936", - "expectedQty": "116704785069730308428313", + "type": "redeemMasset", + "inputQty": "165551905758591366201344", + "expectedQtys": [ + "46405261069844819788045", + "22892030114551460513262", + "96498192053353422377858" + ], + "redemptionFee": "49665571727577409860", "reserves": [ - "6179783643688159977287471", - "70701350614329391235485680", - "30917533173483676840780777" - ] + "292197410005673276941772753", + "144142964720663321032988868", + "607614764752237231392134946" + ], + "mAssetSupply": "1042108692373318648770266087" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3569804905154630962380800", - "expectedQty": "3637277228554758112232280", - "swapFee": "2141882943092778577428", + "type": "redeemMasset", + "inputQty": "443371328860448935116", + "expectedQtys": [ + "124279827359132786462", + "61308081992136027846", + "258435754316925488615" + ], + "redemptionFee": "133011398658134680", "reserves": [ - "6179783643688159977287471", - "67064073385774633123253400", - "30917533173483676840780777" + "292197285725845917808986291", + "144142903412581328896961022", + "607614506316482914466646331" ], - "mAssetSupply": "103526659386179810681577872" + "mAssetSupply": "1042108249135001186979465651" }, { - "type": "redeemBassets", - "inputQtys": [ - "99984849799522228895744", - "15379950011684967415808", - "81364918513366122627072" - ], - "expectedQty": "207643373975669587171067", - "swapFee": "124660820877928509408", + "type": "swap", + "inputIndex": 2, + "inputQty": "3447552938636315858042880", + "outputIndex": 1, + "expectedQty": "3359709560345906928017070", + "swapFee": "2052950886017032532888", "reserves": [ - "6079798793888637748391727", - "67048693435762948155837592", - "30836168254970310718153705" + "292197285725845917808986291", + "140783193852235421968943952", + "611062059255119230324689211" ], - "mAssetSupply": "103319016012204141094406805" + "mAssetSupply": "1042110302085887204011998539", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "9630722425513115123712", - "4843009414182393085952", - "10159530738199608426496" + "34571084791860612678287360", + "9138030466906635479547904", + "30688685934669403959328768" ], - "expectedQty": "25632510435402974313340", - "swapFee": "15388739504944751438", + "expectedQty": "74346990498730870153092516", "reserves": [ - "6070168071463124633268015", - "67043850426348765762751640", - "30826008724232111109727209" + "326768370517706530487273651", + "149921224319142057448491856", + "641750745189788634284017979" ], - "mAssetSupply": "103293383501768738120093465" + "mAssetSupply": "1116457292584618074165091055" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1519852907436855158374400", - "747587179765696603095040", - "679030914467015335870464" + "1134700615288440892686336", + "643912854329470996185088", + "738194188008819232079872" ], - "hardLimitError": true + "expectedQty": "2523166657921529302910171", + "reserves": [ + "327903071132994971379959987", + "150565137173471528444676944", + "642488939377797453516097851" + ], + "mAssetSupply": "1118980459242539603468001226" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "10773499781197617944330240", + "expectedQty": "10772834371264983128861412", + "reserves": [ + "338676570914192589324290227", + "150565137173471528444676944", + "642488939377797453516097851" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "297916887693730110242816", - "795436815027370800971776", - "740369021124034596700160" + "31471885641688791000285184", + "9570340042047084877053952", + "27232888984103836306112512" ], - "expectedQty": "1850385543136947593162133", + "expectedQty": "68250667295399757454315609", + "swapFee": "40974985368460931031208", "reserves": [ - "6368084959156854743510831", - "67839287241376136563723416", - "31566377745356145706427369" + "307204685272503798324005043", + "140994797131424443567622992", + "615256050393693617209985339" ], - "mAssetSupply": "105143769044905685713255598" + "mAssetSupply": "1061502626318404829142547029" }, { "type": "redeemMasset", - "inputQty": "152672079561869065243852", + "inputQty": "150887509391438475637555", "expectedQtys": [ - "9243886858326066141356", - "98475240175155101711257", - "45821628680640021121814" + "43654572942430710999950", + "20035721950064591002537", + "87429461260847838629093" ], - "redemptionFee": "45801623868560719573", + "redemptionFee": "45266252817431542691", "reserves": [ - "6358841072298528677369475", - "67740812001200981462012159", - "31520556116675505685305555" + "307161030699561367613005093", + "140974761409474378976620455", + "615168620932432769371356246" ], - "mAssetSupply": "104991142766967685208731319" + "mAssetSupply": "1061351784075266208098452165" }, { "type": "redeemMasset", - "inputQty": "3473313541851135659212", + "inputQty": "271422959444442008780", "expectedQtys": [ - "210299862925182858445", - "2240327021279632706937", - "1042449175139754456622" + "78527728564854443704", + "36041120754300587422", + "157271885617054287986" ], - "redemptionFee": "1041994062555340697", + "redemptionFee": "81426887833332602", "reserves": [ - "6358630772435603494511030", - "67738571674179701829305222", - "31519513667500365930848933" + "307160952171832802758561389", + "140974725368353624676033033", + "615168463660547152317068260" ], - "mAssetSupply": "104987670495419896628412804" + "mAssetSupply": "1061351512733733651489775987" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1567521347993956096", - "outputIndex": 2, - "expectedQty": "1742510606600753355", - "swapFee": "1043002625215902", + "type": "mint", + "inputIndex": 2, + "inputQty": "10461182226516263567360", + "expectedQty": "10381609797448140733571", "reserves": [ - "6358632339956951488467126", - "67738571674179701829305222", - "31519511924989759330095578" - ], - "mAssetSupply": "104987670496462899253628706", - "hardLimitError": false, - "insufficientLiquidityError": false + "307160952171832802758561389", + "140974725368353624676033033", + "615178924842773668580635620" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "46854657001834872832", - "expectedQty": "51960477332602557155", + "inputIndex": 2, + "inputQty": "5296777032274926404370432", + "expectedQty": "5256241885465620061880667", "reserves": [ - "6358679194613953323339958", - "67738571674179701829305222", - "31519511924989759330095578" + "307160952171832802758561389", + "140974725368353624676033033", + "620475701875048594985006052" ] }, { "type": "redeemBassets", "inputQtys": [ - "3491324241795342693040128", - "3046404730479567263760384", - "4790432054334034632769536" - ], - "hardLimitError": true - }, - { - "type": "mintMulti", - "inputQtys": [ - "148607907782798811856896", - "111822054531408865525760", - "169419868334695873773568" + "48541306896286557929472", + "5283005048469165441024", + "23951781003645304176640" ], - "expectedQty": "443209831466354260061162", + "expectedQty": "77707946547451585759796", + "swapFee": "46652759584221484346", "reserves": [ - "6507287102396752135196854", - "67850393728711110694830982", - "31688931793324455203869146" + "307112410864936516200631917", + "140969442363305155510592009", + "620451750094044949680829412" ], - "mAssetSupply": "105430932288406586116247023" + "mAssetSupply": "1066540428282449268106630429" }, { "type": "mintMulti", "inputQtys": [ - "13751998208546396160", - "4958353511045337088", - "9160796982542747648" + "376660298065830375063552", + "273004043028446683594752", + "174543637629391960276992" ], - "expectedQty": "29194987362247258489", + "expectedQty": "828177796849347665241907", "reserves": [ - "6507300854394960681593014", - "67850398687064621740168070", - "31688940954121437746616794" + "307489071163002346575695469", + "141242446406333602194186761", + "620626293731674341641106404" ], - "mAssetSupply": "105430961483393948363505512" + "mAssetSupply": "1067368606079298615771872336" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "8347666656772371775488", - "expectedQty": "8367139781855118905923", - "swapFee": "5008599994063423065", + "type": "redeemMasset", + "inputQty": "312325508140512666084966", + "expectedQtys": [ + "89948185516884698019218", + "41316921359721380618416", + "181548595512977992553867" + ], + "redemptionFee": "93697652442153799825", "reserves": [ - "6507300854394960681593014", - "67850398687064621740168070", - "31680573814339582627710871" + "307399122977485461877676251", + "141201129484973880813568345", + "620444745136161363648552537" ], - "mAssetSupply": "105422618825337170055153089" + "mAssetSupply": "1067056374268810545259587195" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "685863414796646481920", - "outputIndex": 0, - "expectedQty": "618720974216784170297", - "swapFee": "410314916107927216", + "inputIndex": 0, + "inputQty": "882172224273131866423296", + "outputIndex": 1, + "expectedQty": "865354516066859110720190", + "swapFee": "529463635002665933050", "reserves": [ - "6506682133420743897422717", - "67850398687064621740168070", - "31681259677754379274192791" + "308281295201758593744099547", + "140335774968907021702848155", + "620444745136161363648552537" ], - "mAssetSupply": "105422619235652086163080305", + "mAssetSupply": "1067056903732445547925520245", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "14266940545360212262912", - "outputIndex": 2, - "expectedQty": "14046351161203234315574", - "swapFee": "8408266697512291254", + "type": "mintMulti", + "inputQtys": [ + "1272926281448967349731328", + "4040018451934585492078592", + "1332094084221047733747712" + ], + "expectedQty": "6711000047088938516106174", "reserves": [ - "6506682133420743897422717", - "67864665627609981952430982", - "31667213326593176039877217" + "309554221483207561093830875", + "144375793420841607194926747", + "621776839220382411382300249" ], - "mAssetSupply": "105422627643918783675371559", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1073767903779534486441626419" }, { "type": "redeemBassets", "inputQtys": [ - "21271503116383764480", - "53178684079799410688", - "19334153759876648960" + "569788184777922183168", + "4972146527041961978757120", + "431047074906558408163328" ], - "expectedQty": "95010105250328327420", - "swapFee": "57040287322590550", + "expectedQty": "5494508994790869015416075", + "swapFee": "3298684607639104872172", "reserves": [ - "6506660861917627513658237", - "67864612448925902153020294", - "31667193992439416163228257" + "309553651695022783171647707", + "139403646893799645216169627", + "621345792145475852974136921" ], - "mAssetSupply": "105422532633813533347044139" + "mAssetSupply": "1068273394784743617426210344" }, { "type": "mintMulti", "inputQtys": [ - "53332615358587361820672", - "1216548251819986386944", - "28427506842914089074688" + "1456686614841819226177536", + "5601003944341420426395648", + "3078832199100132547887104" ], - "expectedQty": "88410413586087787823870", + "expectedQty": "10219314052494466831178046", "reserves": [ - "6559993477276214875478909", - "67865828997177722139407238", - "31695621499282330252302945" + "311010338309864602397825243", + "145004650838141065642565275", + "624424624344575985522024025" ], - "mAssetSupply": "105510943047399621134868009" + "mAssetSupply": "1078492708837238084257388390" }, { - "type": "redeemBassets", - "inputQtys": [ - "3180394642793110175744", - "1705074974291848069120", - "5719463616924252897280" + "type": "redeemMasset", + "inputQty": "330065531065252446208", + "expectedQtys": [ + "95154093766592576662", + "44364397072542120968", + "191043679055631441515" ], - "expectedQty": "10886222675890044746058", - "swapFee": "6535654998533146735", + "redemptionFee": "99019659319575733", "reserves": [ - "6556813082633421765303165", - "67864123922203430291338118", - "31689902035665405999405665" + "311010243155770835805248581", + "145004606473743993100444307", + "624424433300896929890582510" ], - "mAssetSupply": "105500056824723731090121951" + "mAssetSupply": "1078492378870726678324517915" }, { "type": "mintMulti", "inputQtys": [ - "115356117983876808704", - "322707944305475952050176", - "59537887079724325273600" + "52342025442980502962176", + "49401127784574472945664", + "41243748217756669968384" ], - "expectedQty": "376501675675910893525947", + "expectedQty": "143595428103434505235903", "reserves": [ - "6556928438751405642111869", - "68186831866508906243388294", - "31749439922745130324679265" + "311062585181213816308210757", + "145054007601528567573389971", + "624465677049114686560550894" ], - "mAssetSupply": "105876558500399641983647898" + "mAssetSupply": "1078635974298830112829753818" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1834149768024874454876160", - "outputIndex": 1, - "expectedQty": "2010383148332715781668097", - "swapFee": "1190325466741727441531", + "inputQty": "618917461992195009544192", + "outputIndex": 2, + "expectedQty": "623425343976344242424229", + "swapFee": "371470141274115080814", "reserves": [ - "8391078206776280096988029", - "66176448718176190461720197", - "31749439922745130324679265" + "311681502643206011317754949", + "145054007601528567573389971", + "623842251705138342318126665" ], - "mAssetSupply": "105877748825866383711089429", + "mAssetSupply": "1078636345768971386944834632", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "18303703417504058363084", - "expectedQtys": [ - "1450179402287678337891", - "11436876225292057038883", - "5487064078720324914993" + "type": "mintMulti", + "inputQtys": [ + "195923611265152101384192", + "212717992723709056516096", + "264222884506975705497600" ], - "redemptionFee": "5491111025251217508", + "expectedQty": "674815811350980942864937", "reserves": [ - "8389628027373992418650138", - "66165011841950898404681314", - "31743952858666409999764272" + "311877426254471163419139141", + "145266725594252276629906067", + "624106474589645318023624265" ], - "mAssetSupply": "105859450613559904903943853" + "mAssetSupply": "1079311161580322367887699569" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "524333152186508", - "expectedQty": "493915762654880", - "swapFee": "314599891311", + "inputQty": "4869315766250124607488", + "expectedQty": "4864905899719600197214", + "swapFee": "2921589459750074764", "reserves": [ - "8389628026880076655995258", - "66165011841950898404681314", - "31743952858666409999764272" + "311872561348571443818941927", + "145266725594252276629906067", + "624106474589645318023624265" ], - "mAssetSupply": "105859450613035886351648656" + "mAssetSupply": "1079306295186145577513166845" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3364545448978037", - "outputIndex": 2, - "expectedQty": "3323035201525655", - "swapFee": "1991456926290", + "type": "redeem", + "inputIndex": 2, + "inputQty": "32315216030992641659240448", + "expectedQty": "32530648829923336890605710", + "swapFee": "19389129618595584995544", "reserves": [ - "8389628026880076655995258", - "66165011845315443853659351", - "31743952855343374798238617" + "311872561348571443818941927", + "145266725594252276629906067", + "591575825759721981133018555" ], - "mAssetSupply": "105859450613037877808574946", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1047010468284771531438921941" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "29485906399619612460187648", + "expectedQty": "29471295340335217313057310", + "reserves": [ + "341358467748191056279129575", + "145266725594252276629906067", + "591575825759721981133018555" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "385245555153112793088", + "expectedQty": "391964617955016381403", + "reserves": [ + "341358467748191056279129575", + "145267110839807429742699155", + "591575825759721981133018555" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "366406788077662867816448", - "70900765482341999050752", - "135888605399826535809024" + "60923306721342352523264", + "2271220473534242491465728", + "1191795407111912796717056" ], - "expectedQty": "595263884573856422523285", - "swapFee": "357372754396952024728", + "expectedQty": "3555038066545267689608597", "reserves": [ - "8023221238802413788178810", - "66094111079833101854608599", - "31608064249943548262429593" + "341419391054912398631652839", + "147538331313341672234164883", + "592767621166833893929735611" ], - "mAssetSupply": "105264186728464021386051661" + "mAssetSupply": "1080037193656269971457969251" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "209089288891786915217408", - "119657394721387832147968", - "113362477885967751446528" + "15985715355294445568", + "174111424617142943744", + "220931365906880004096" ], - "expectedQty": "454383892393223591305078", - "swapFee": "272794011843039978770", + "expectedQty": "412511339199484773294", "reserves": [ - "7814131949910626872961402", - "65974453685111714022460631", - "31494701772057580510983065" + "341419407040627753926098407", + "147538505424766289377108627", + "592767842098199800809739707" ], - "mAssetSupply": "104809802836070797794746583" + "mAssetSupply": "1080037606167609170942742545" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4640883233745431125032960", - "hardLimitError": true + "type": "mint", + "inputIndex": 1, + "inputQty": "830286027868262981697536", + "expectedQty": "844272721065649771124123", + "reserves": [ + "341419407040627753926098407", + "148368791452634552358806163", + "592767842098199800809739707" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "207885565932768881278976", - "outputIndex": 1, - "expectedQty": "210342180699753233119490", - "swapFee": "124466420463958511122", + "inputQty": "10694841398353220075520", + "expectedQty": "10758833071590651772596", + "swapFee": "6416904839011932045", "reserves": [ - "7814131949910626872961402", - "65764111504411960789341141", - "31702587337990349392262041" + "341419407040627753926098407", + "148368791452634552358806163", + "592757083265128210157967111" ], - "mAssetSupply": "104809927302491261753257705", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1080871190464181306505723193" }, { "type": "redeemBassets", "inputQtys": [ - "4073148730339334029312", - "36336790822431924158464", - "36344923120618879057920" + "1217435564647250132992", + "18568247096752115548160", + "6541418448485910315008" ], - "expectedQty": "76436201560821430679245", - "swapFee": "45889254489186370229", + "expectedQty": "26594301999735623297510", + "swapFee": "15966160896379201499", "reserves": [ - "7810058801180287538932090", - "65727774713589528865182677", - "31666242414869730513204121" + "341418189605063106675965415", + "148350223205537800243258003", + "592750541846679724247652103" ], - "mAssetSupply": "104733491100930440322578460" + "mAssetSupply": "1080844596162181570882425683" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "198270398319230304", - "expectedQty": "212025006878450256", + "type": "swap", + "inputIndex": 1, + "inputQty": "4323332240583265825587200", + "outputIndex": 0, + "expectedQty": "4393846535225125135669919", + "swapFee": "2636176664086598252199", "reserves": [ - "7810058999450685858162394", - "65727774713589528865182677", - "31666242414869730513204121" - ] + "337024343069837981540295496", + "152673555446121066068845203", + "592750541846679724247652103" + ], + "mAssetSupply": "1080847232338845657480677882", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "211117609394317310296064", - "expectedQty": "210641993527769379514579", + "inputIndex": 0, + "inputQty": "3128167721949915898707968", + "expectedQty": "3126187607740236935071791", "reserves": [ - "7810058999450685858162394", - "65727774713589528865182677", - "31877360024264047823500185" + "340152510791787897439003464", + "152673555446121066068845203", + "592750541846679724247652103" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "31017917188142432256", - "expectedQty": "28984201019580506157", - "swapFee": "18610750312885459", + "type": "mintMulti", + "inputQtys": [ + "164217738036618983374848", + "237579595814739581599744", + "3932778244805524717568" + ], + "expectedQty": "409330557436126107403087", "reserves": [ - "7810030015249666277656237", - "65727774713589528865182677", - "31877360024264047823500185" + "340316728529824516422378312", + "152911135041935805650444947", + "592754474624924529772369671" ], - "mAssetSupply": "104944102307176778750996498" + "mAssetSupply": "1084382750504022020523152760" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "17773245668810790273024", - "expectedQty": "16605658868508533134962", - "swapFee": "10663947401286474163", + "type": "redeemMasset", + "inputQty": "9745905040436184678", + "expectedQtys": [ + "3057683746837961481", + "1373878663996667197", + "5325790861812623066" + ], + "redemptionFee": "2923771512130855", "reserves": [ - "7793424356381157744521275", - "65727774713589528865182677", - "31877360024264047823500185" + "340316725472140769584416831", + "152911133668057141653777750", + "592754469299133667959746605" ], - "mAssetSupply": "104926339725455369247197637" + "mAssetSupply": "1084382740761040751599098937" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "1383857774747978752", - "expectedQty": "1292770629085978262", - "swapFee": "830314664848787", + "inputQty": "14021941946985481299296256", + "outputIndex": 2, + "expectedQty": "14088082063070276832003522", + "swapFee": "8405988677273464113814", "reserves": [ - "7793423063610528658543013", - "65727774713589528865182677", - "31877360024264047823500185" + "354338667419126250883713087", + "152911133668057141653777750", + "578666387236063391127743083" ], - "mAssetSupply": "104926338342427909164067672" + "mAssetSupply": "1084391146749718025063212751", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "34477529849216416", - "39728459310369904", - "25671509184838772" + "29829426109497791741952", + "57167974473146212286464", + "71231475996954755858432" ], - "expectedQty": "101655452815302755", + "expectedQty": "158651260995194989451076", + "swapFee": "95247905340321186382", "reserves": [ - "7793423098088058507759429", - "65727774753317988175552581", - "31877360049935557008338957" + "354308837993016753091971135", + "152853965693583995441491286", + "578595155760066436371884651" ], - "mAssetSupply": "104926338444083361979370427" + "mAssetSupply": "1084232495488722830073761675" }, { - "type": "redeemMasset", - "inputQty": "67002355839101420175360", - "expectedQtys": [ - "4975119327056985058704", - "41958907964319742701757", - "20349680504179993322869" + "type": "swap", + "inputIndex": 0, + "inputQty": "6996149845443490816", + "outputIndex": 2, + "expectedQty": "7026390478476207879", + "swapFee": "4192907054055804", + "reserves": [ + "354308844989166598535461951", + "152853965693583995441491286", + "578595148733675957895676772" + ], + "mAssetSupply": "1084232495492915737127817479", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "64680875665964557926400", + "24033055449918568660992", + "787681186637039796224" ], - "redemptionFee": "20100706751730426052", + "expectedQty": "89795742886664986536960", "reserves": [ - "7788447978761001522700725", - "65685815845353668432850824", - "31857010369431377015016088" + "354373525864832563093388351", + "152877998749033914010152278", + "578595936414862594935472996" ], - "mAssetSupply": "104859356188951012289621119" + "mAssetSupply": "1084322291235802402114354439" }, { "type": "redeemBassets", "inputQtys": [ - "587089917420169844490240", - "840241261989870365048832", - "1947369204666806017458176" + "83588933441241737068544", + "89586340262017748697088", + "88927565494700359680" ], - "expectedQty": "3401452035423619578427638", - "swapFee": "2042096479141656741101", + "expectedQty": "174557884479331786370834", + "swapFee": "104797609253150962399", "reserves": [ - "7201358061340831678210485", - "64845574583363798067801992", - "29909641164764570997557912" + "354289936931391321356319807", + "152788412408771896261455190", + "578595847487297100235113316" ], - "mAssetSupply": "101457904153527392711193481" + "mAssetSupply": "1084147733351323070327983605" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "799142471337478455296", - "outputIndex": 0, - "expectedQty": "739363892903418237631", - "swapFee": "478599939252850702", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9135037211600590209024", + "expectedQty": "9139980867974776327846", + "swapFee": "5481022326960354125", "reserves": [ - "7200618697447928259972854", - "64845574583363798067801992", - "29910440307235908476013208" + "354280796950523346579991961", + "152788412408771896261455190", + "578595847487297100235113316" ], - "mAssetSupply": "101457904632127331964044183", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1084138603795133796698128706" }, { - "type": "redeemMasset", - "inputQty": "277682630436609879493836", - "expectedQtys": [ - "19701637855659121276090", - "177424202094795888481145", - "81838059727468698199395" + "type": "redeemBassets", + "inputQtys": [ + "6621386860734831327707136", + "2121513184343952898129920", + "3570698641390158336753664" ], - "redemptionFee": "83304789130982963848", + "expectedQty": "12317658752558567492632955", + "swapFee": "7395032270897679103041", "reserves": [ - "7180917059592269138696764", - "64668150381269002179320847", - "29828602247508439777813813" + "347659410089788515252284825", + "150666899224427943363325270", + "575025148845906941898359652" ], - "mAssetSupply": "101180305306479853067514195" + "mAssetSupply": "1071820945042575229205495751" }, { "type": "mintMulti", "inputQtys": [ - "97933870877861507760128", - "31034431461878340255744", - "201406559967372736724992" + "28669570536387572137984", + "49357538105868314214400", + "35846134200832276561920" ], - "expectedQty": "337089672141805964182555", + "expectedQty": "114395834194269623343546", "reserves": [ - "7278850930470130646456892", - "64699184812730880519576591", - "30030008807475812514538805" + "347688079660324902824422809", + "150716256762533811677539670", + "575060994980107774174921572" ], - "mAssetSupply": "101517394978621659031696750" + "mAssetSupply": "1071935340876769498828839297" }, { - "type": "mintMulti", - "inputQtys": [ - "140965648325326158168064", - "2893684553132771115008", - "23030289710279030734848" - ], - "expectedQty": "177369314901124322464023", + "type": "redeem", + "inputIndex": 2, + "inputQty": "21252395455391939411574784", + "expectedQty": "21366860978690825120925090", + "swapFee": "12751437273235163646944", "reserves": [ - "7419816578795456804624956", - "64702078497284013290691599", - "30053039097186091545273653" + "347688079660324902824422809", + "150716256762533811677539670", + "553694134001416949053996482" ], - "mAssetSupply": "101694764293522783354160773" + "mAssetSupply": "1050695696858650794580911457" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "12901755898806398340825088", + "expectedQty": "12883994860948521387884522", + "reserves": [ + "360589835559131301165247897", + "150716256762533811677539670", + "553694134001416949053996482" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1773376566375917484507136", - "expectedQty": "1774572048647755857004614", - "swapFee": "1064025939825550490704", + "inputQty": "6663109415221429291450368", + "expectedQty": "6696921936776210563833875", + "swapFee": "3997865649132857574870", + "reserves": [ + "360589835559131301165247897", + "150716256762533811677539670", + "546997212064640738490162607" + ], + "mAssetSupply": "1056920580170027019534920481" + }, + { + "type": "mintMulti", + "inputQtys": [ + "6670917865680247512367104", + "2634136574686306842443776", + "4652734683272933061689344" + ], + "expectedQty": "13960310280271236745530759", "reserves": [ - "7419816578795456804624956", - "64702078497284013290691599", - "28278467048538335688269039" + "367260753424811548677615001", + "153350393337220118519983446", + "551649946747913671551851951" ], - "mAssetSupply": "99922451753086691420144341" + "mAssetSupply": "1070880890450298256280451240" }, { "type": "mintMulti", "inputQtys": [ - "285707850656884981760", - "363458612993420492800", - "744524327995158298624" + "1450274778420135268974592", + "38087477271009423261696", + "943883650000992182730752" ], - "expectedQty": "1408237916285291792601", + "expectedQty": "2425244880246380227505321", "reserves": [ - "7420102286646113689606716", - "64702441955897006711184399", - "28279211572866330846567663" + "368711028203231683946589593", + "153388480814491127943245142", + "552593830397914663734582703" ], - "mAssetSupply": "99923859991002976711936942" + "mAssetSupply": "1073306135330544636507956561" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "101482046577431105503232", - "expectedQty": "108727818209611507322061", + "inputIndex": 2, + "inputQty": "7723186758391658708992", + "expectedQty": "7680531558729168836341", "reserves": [ - "7521584333223544795109948", - "64702441955897006711184399", - "28279211572866330846567663" + "368711028203231683946589593", + "153388480814491127943245142", + "552601553584673055393291695" ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1528602087207107297280", - "expectedQty": "1528702691054780425828", - "swapFee": "917161252324264378", + "inputQty": "188654283594861016776704", + "expectedQty": "189587930666573494069809", + "swapFee": "113192570156916610066", "reserves": [ - "7521584333223544795109948", - "64702441955897006711184399", - "28277682870175276066141835" + "368711028203231683946589593", + "153388480814491127943245142", + "552411965654006481899221886" ], - "mAssetSupply": "100031060124286633436226101" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2761018006385580032", - "expectedQty": "2955528803750008220", - "reserves": [ - "7521587094241551180689980", - "64702441955897006711184399", - "28277682870175276066141835" - ] + "mAssetSupply": "1073125274771078661576626264" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "91784048655570042880", - "expectedQty": "98250057641725296157", + "type": "mintMulti", + "inputQtys": [ + "3902784743287487777996800", + "12620806396911030756179968", + "12288745562631805295656960" + ], + "expectedQty": "28915511735139653188370515", "reserves": [ - "7521678878290206750732860", - "64702441955897006711184399", - "28277682870175276066141835" - ] + "372613812946519171724586393", + "166009287211402158699425110", + "564700711216638287194878846" + ], + "mAssetSupply": "1102040786506218314764996779" }, { "type": "redeemBassets", "inputQtys": [ - "5582676160653587120128", - "5960212877165998374912", - "5051961317602753511424" + "1398764276593603098181632", + "181955715948587222302720", + "972863602864044803883008" ], - "expectedQty": "16894556485926747486134", - "swapFee": "10142819583306032110", + "expectedQty": "2549033617684489662482482", + "swapFee": "1530338373634874722322", "reserves": [ - "7516096202129553163612732", - "64696481743019840712809487", - "28272630908857673312630411" + "371215048669925568626404761", + "165827331495453571477122390", + "563727847613774242390995838" ], - "mAssetSupply": "100014266773387152164044344" + "mAssetSupply": "1099491752888533825102514297" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "2501874272020662560227328", + "inputIndex": 2, + "inputQty": "1583952087066281634693120", "outputIndex": 0, - "expectedQty": "2225061572180412509179760", - "swapFee": "1477750682348248803670", + "expectedQty": "1576704853341134527855336", + "swapFee": "945389401412699951431", "reserves": [ - "5291034629949140654432972", - "67198356015040503273036815", - "28272630908857673312630411" + "369638343816584434098549425", + "165827331495453571477122390", + "565311799700840524025688958" ], - "mAssetSupply": "100015744524069500412848014", + "mAssetSupply": "1099492698277935237802465728", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "5588879919738177716224", - "3095667933825691287552", - "4952383283483038973952" + "type": "redeemMasset", + "inputQty": "56289096922154707", + "expectedQtys": [ + "18918148898347730", + "8487069053104835", + "28932747318119533" ], - "expectedQty": "14396391537884866898913", - "swapFee": "8643020735172023353", + "redemptionFee": "16886729076646", "reserves": [ - "5285445750029402476716748", - "67195260347106677581749263", - "28267678525574190273656459" + "369638343797666285200201695", + "165827331486966502424017555", + "565311799671907776707569425" ], - "mAssetSupply": "100001348132531615545949101" + "mAssetSupply": "1099492698221663027609387667" }, { "type": "mintMulti", "inputQtys": [ - "8088997331240369923293184", - "2689462318574924529139712", - "3667002736112723709394944" + "765948112276744306688", + "3099241792597561704448", + "2109508158424153587712" ], - "expectedQty": "14910697687560117531828808", + "expectedQty": "6002890082328852676551", "reserves": [ - "13374443081269772400009932", - "69884722665681602110888975", - "31934681261686913983051403" + "369639109745778561944508383", + "165830430728759099985722003", + "565313909180066200861157137" ], - "mAssetSupply": "114912045820091733077777909" + "mAssetSupply": "1099498701111745356462064218" }, { - "type": "redeemBassets", - "inputQtys": [ - "4305410617034563125248", - "620283878975087312896", - "1147067175712767344640" - ], - "expectedQty": "6181048408594993795313", - "swapFee": "3710855558492091532", + "type": "swap", + "inputIndex": 0, + "inputQty": "553376438915761549869056", + "outputIndex": 2, + "expectedQty": "555266862836921889171259", + "swapFee": "331608001339814076774", "reserves": [ - "13370137670652737836884684", - "69884102381802627023576079", - "31933534194511201215706763" + "370192486184694323494377439", + "165830430728759099985722003", + "564758642317229278971985878" ], - "mAssetSupply": "114905864771683138083982596" + "mAssetSupply": "1099499032719746696276140992", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "14089374264630308", - "expectedQty": "14098733380410425", + "type": "redeemMasset", + "inputQty": "383178668343013670912", + "expectedQtys": [ + "128974473562652170707", + "57775058387432632437", + "196761012989556408546" + ], + "redemptionFee": "114953600502904101", "reserves": [ - "13370137670652737836884684", - "69884102381802627023576079", - "31933534208600575480337071" - ] + "370192357210220760842206732", + "165830372953700712553089566", + "564758445556216289415577332" + ], + "mAssetSupply": "1099498649656031953765374181" }, { - "type": "redeemMasset", - "inputQty": "5195510244363060", - "expectedQtys": [ - "604354250844492", - "3158887019809741", - "1443453135551265" + "type": "mintMulti", + "inputQtys": [ + "27221295759747092480", + "13397335405044148224", + "34986364753605988352" ], - "redemptionFee": "1558653073308", + "expectedQty": "75560670513745859685", "reserves": [ - "13370137670048383586040192", - "69884102378643740003766338", - "31933534207157122344785806" + "370192384431516520589299212", + "165830386351036117597237790", + "564758480542581043021565684" ], - "mAssetSupply": "114905864780587919873103269" + "mAssetSupply": "1099498725216702467511233866" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1981464856481487912960", - "922616462822395609088", - "215329576524522356736" + "84104792440150626926592", + "30019707577447361806336", + "40546576772362905059328" ], - "expectedQty": "3163088616523879430192", - "swapFee": "1898992565453599818", + "expectedQty": "154741197412989041686606", "reserves": [ - "13368156205191902098127232", - "69883179762180917608157250", - "31933318877580597822429070" + "370276489223956671216225804", + "165860406058613564959044126", + "564799027119353405926625012" ], - "mAssetSupply": "114902701691971395993673077" + "mAssetSupply": "1099653466414115456552920472" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "46208565886684118384640", - "17496393745125567627264", - "27040570044979620085760" + "42728702732845178683392", + "15231269553351881129984", + "72373007395965716398080" ], - "expectedQty": "91820128906805443507098", - "swapFee": "55125152435544592859", + "expectedQty": "130096454517859040607695", "reserves": [ - "13321947639305217979742592", - "69865683368435792040529986", - "31906278307535618202343310" + "370319217926689516394909196", + "165875637328166916840174110", + "564871400126749371643023092" ], - "mAssetSupply": "114810881563064590550165979" + "mAssetSupply": "1099783562868633315593528167" }, { "type": "redeemMasset", - "inputQty": "1250966613435107980083", + "inputQty": "3685024500379010238041292", "expectedQtys": [ - "145110915466956927990", - "761020351364104898751", - "347542970420462428844" + "1240449527037250578396293", + "555629699756658703028159", + "1892136371012776379545360" ], - "redemptionFee": "375289984030532394", + "redemptionFee": "1105507350113703071412", "reserves": [ - "13321802528389751022814602", - "69864922348084427935631235", - "31905930764565197739914466" + "369078768399652265816512903", + "165320007628410258137145951", + "562979263755736595263477732" ], - "mAssetSupply": "114809630971741139472718290" + "mAssetSupply": "1096099643875604419058558287" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1555585465906205518987264", - "expectedQty": "1553115350398644722947729", - "swapFee": "933351279543723311392", + "type": "swap", + "inputIndex": 0, + "inputQty": "1003385629550851840", + "outputIndex": 2, + "expectedQty": "1006798264657273659", + "swapFee": "601267501988396", "reserves": [ - "13321802528389751022814602", - "69864922348084427935631235", - "30352815414166553016966737" + "369078769403037895367364743", + "165320007628410258137145951", + "562979262748938330606204073" ], - "mAssetSupply": "113254978857114477677042418" + "mAssetSupply": "1096099643876205686560546683", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "8836901599693096550", - "expectedQtys": [ - "1039143199037450449", - "5449687364346998038", - "2367616667643452956" + "type": "redeemBassets", + "inputQtys": [ + "275011998830083681812480", + "1891454655109898631643136", + "2316214945903329369128960" ], - "redemptionFee": "2651070479907928", + "expectedQty": "4494900492916870822920091", + "swapFee": "2698559431408967874476", "reserves": [ - "13321801489246551985364153", - "69864916898397063588633197", - "30352813046549885373513781" + "368803757404207811685552263", + "163428552973300359505502815", + "560663047803035001237075113" ], - "mAssetSupply": "113254970022863948463853796" + "mAssetSupply": "1091604743383288815737626592" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "478753579098036109312", - "expectedQty": "466290065144979178301", - "swapFee": "287252147458821665", + "type": "redeemMasset", + "inputQty": "335084839770815895856742", + "expectedQtys": [ + "113176014066565604514989", + "50151854038495959151532", + "172052501393620206980109" + ], + "redemptionFee": "100525451931244768757", "reserves": [ - "13321335199181407006185852", - "69864916898397063588633197", - "30352813046549885373513781" + "368690581390141246081037274", + "163378401119261863546351283", + "560490995301641381030095004" ], - "mAssetSupply": "113254491556536997886566149" + "mAssetSupply": "1091269759068969931086538607" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "963597854193308722528256", - "expectedQty": "972293272472906320230481", - "swapFee": "578158712515985233516", + "type": "redeemBassets", + "inputQtys": [ + "20253701445509261218021376", + "5945957971494998481305600", + "1727516099406936210931712" + ], + "expectedQty": "27973818293178509968592736", + "swapFee": "16794367596464984972138", "reserves": [ - "13321335199181407006185852", - "68892623625924157268402716", - "30352813046549885373513781" + "348436879944631984863015898", + "157432443147766865065045683", + "558763479202234444819163292" ], - "mAssetSupply": "112291471861056205149271409" + "mAssetSupply": "1063295940775791421117945871" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "211724119907962", - "expectedQty": "209724403611407", + "inputIndex": 0, + "inputQty": "197552438118198018048", + "expectedQty": "197347937244247614872", "reserves": [ - "13321335199181407006185852", - "68892623626135881388310678", - "30352813046549885373513781" + "348437077497070103061033946", + "157432443147766865065045683", + "558763479202234444819163292" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3378875047437568609091584", - "expectedQty": "3370070661357696763157312", - "swapFee": "2027325028462541165454", - "reserves": [ - "13321335199181407006185852", - "68892623626135881388310678", - "26982742385192188610356469" + "type": "mintMulti", + "inputQtys": [ + "133291632710602828283904", + "747211240565141487484928", + "717679667545647651749888" ], - "mAssetSupply": "108914624138856823484956686" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "2595669042424843522277376", - "outputIndex": 2, - "expectedQty": "2636406004279234454706283", - "swapFee": "1589399005882935873931", + "expectedQty": "1604228815907376360045585", "reserves": [ - "15917004241606250528463228", - "68892623626135881388310678", - "24346336380912954155650186" + "348570369129780705889317850", + "158179654388332006552530611", + "559481158869780092470913180" ], - "mAssetSupply": "108916213537862706420830617", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1064900366939636041725606328" }, { "type": "redeemBassets", "inputQtys": [ - "523731832956121920831488", - "402473373235556202315776", - "362027804688549071028224" + "603780441039815797899264", + "6218111459705651877380096", + "7421703006469230337982464" ], - "expectedQty": "1295335480588704189953666", - "swapFee": "777667889086674518683", + "expectedQty": "14288256393250038221610921", + "swapFee": "8578100696367843639150", "reserves": [ - "15393272408650128607631740", - "68490150252900325185994902", - "23984308576224405084621962" + "347966588688740890091418586", + "151961542928626354675150515", + "552059455863310862132930716" ], - "mAssetSupply": "107620878057274002230876951" + "mAssetSupply": "1050612110546386003503995407" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "103086003140105972219904", - "expectedQty": "101225812303801454508017", - "swapFee": "61851601884063583331", - "reserves": [ - "15292046596346327153123723", - "68490150252900325185994902", - "23984308576224405084621962" - ], - "mAssetSupply": "107517853905735780322240378" - }, - { - "type": "redeemMasset", - "inputQty": "568095901318218649", - "expectedQtys": [ - "80774889694761772", - "361775272982590337", - "126688724589194899" - ], - "redemptionFee": "170428770395465", + "inputIndex": 1, + "inputQty": "1049497611458380442894336", + "expectedQty": "1033782111369992896483772", + "swapFee": "629698566875028265736", "reserves": [ - "15292046515571437458361951", - "68490149891125052203404565", - "23984308449535680495427063" + "347966588688740890091418586", + "150927760817256361778666743", + "552059455863310862132930716" ], - "mAssetSupply": "107517853337810307774417194" + "mAssetSupply": "1049563242633494498089366807" }, { - "type": "redeemMasset", - "inputQty": "85293249511225741960806", - "expectedQtys": [ - "12127446800778576844458", - "54316513380742303945926", - "19020895893759241857364" + "type": "redeemBassets", + "inputQtys": [ + "7959317042802762945921024", + "7094173255546837818933248", + "757497252740963535683584" ], - "redemptionFee": "25587974853367722588", + "expectedQty": "15905305087893831839150146", + "swapFee": "9548912400176404946457", "reserves": [ - "15279919068770658881517493", - "68435833377744309899458639", - "23965287553641921253569699" + "340007271645938127145497562", + "143833587561709523959733495", + "551301958610569898597247132" ], - "mAssetSupply": "107432585676273935400178976" + "mAssetSupply": "1033657937545600666250216661" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6310283914081187397632", - "3221982115048823717888", - "2524784279841329381376" + "6706353806417321216966656", + "5626403122762904013635584", + "2181724710257863151321088" ], - "expectedQty": "12152610149223706888939", - "swapFee": "7295943655727660729", + "expectedQty": "14580285967475145151475134", "reserves": [ - "15273608784856577694119861", - "68432611395629261075740751", - "23962762769362079924188323" + "346713625452355448362464218", + "149459990684472427973369079", + "553483683320827761748568220" ], - "mAssetSupply": "107420433066124711693290037" + "mAssetSupply": "1048238223513075811401691795" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "1090206715036765354196992", - "outputIndex": 2, - "expectedQty": "1072889693418796447714092", - "swapFee": "647884472042306583999", + "inputQty": "3804967602872701534863360", + "expectedQty": "3860647160323372503686430", "reserves": [ - "15273608784856577694119861", - "69522818110666026429937743", - "22889873075943283476474231" - ], - "mAssetSupply": "107421080950596753999874036", - "hardLimitError": false, - "insufficientLiquidityError": false + "346713625452355448362464218", + "153264958287345129508232439", + "553483683320827761748568220" + ] }, { "type": "redeemBassets", "inputQtys": [ - "103739754115406632058880", - "100869685139873057472512", - "122569458891581663739904" + "22580220011404824576", + "34361710095757488128", + "14742918493358204928" + ], + "expectedQty": "72064932436586338478", + "swapFee": "43264918412999602", + "reserves": [ + "346713602872135436957639642", + "153264923925635033750744311", + "553483668577909268390363292" ], - "expectedQty": "328866043299716095010628", - "swapFee": "197438088833129534727", + "mAssetSupply": "1052098798608466747319039747" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "25033408284516134420480", + "expectedQty": "24666719421751816365648", + "swapFee": "15020044970709680652", "reserves": [ - "15169869030741171062060981", - "69421948425526153372465231", - "22767303617051701812734327" + "346713602872135436957639642", + "153240257206213281934378663", + "553483668577909268390363292" ], - "mAssetSupply": "107092214907297037904863408" + "mAssetSupply": "1052073780220227201894299919" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1048392320005810688", - "expectedQty": "1037918953826700908", + "inputQty": "13724685795697670653739008", + "expectedQty": "13903527271294471762198758", "reserves": [ - "15169869030741171062060981", - "69421949473918473378275919", - "22767303617051701812734327" + "346713602872135436957639642", + "166964943001910952588117671", + "553483668577909268390363292" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "504672422722234875904", - "1109401538559800115200", - "803524806292809187328" - ], - "expectedQty": "2421002391715181090790", - "swapFee": "1453473519140593010", - "reserves": [ - "15169364358318448827185077", - "69420840072379913578160719", - "22766500092245409003546999" - ], - "mAssetSupply": "107089794942824276550473526" - }, - { - "type": "redeemMasset", - "inputQty": "210460455565178778419", - "expectedQtys": [ - "29802966471173532411", - "136389826244979523693", - "44728916972917447946" - ], - "redemptionFee": "63138136669553633", + "type": "swap", + "inputIndex": 1, + "inputQty": "5177767767869595502772224", + "outputIndex": 2, + "expectedQty": "5260702048568435691195861", + "swapFee": "3142443412333850442916", "reserves": [ - "15169334555351977653652666", - "69420703682553668598637026", - "22766455363328436086099053" + "346713602872135436957639642", + "172142710769780548090889895", + "548222966529340832699167431" ], - "mAssetSupply": "107089584545506848041248740" + "mAssetSupply": "1065980449934934007506941593", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "44951287206957352484864", - "24501779911406283390976", - "797864324813894975488" + "14700141786042053165056", + "16481659681560995037184", + "29486379543217500585984" ], - "expectedQty": "70843538399083332066630", + "expectedQty": "60691374686384620724423", "reserves": [ - "15214285842558935006137530", - "69445205462465074882028002", - "22767253227653249981074541" + "346728303013921479010804698", + "172159192429462109085927079", + "548252452908884050199753415" ], - "mAssetSupply": "107160428083905931373315370" + "mAssetSupply": "1066041141309620392127666016" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8169385255729164713984", - "24300274342128846372864", - "42417584598211543171072" + "185984612185621800157184", + "180093668676899935617024", + "37645616647516849176576" ], - "expectedQty": "75065876247450971525752", + "expectedQty": "405379779931252480494310", + "swapFee": "243373892294127965075", "reserves": [ - "15222455227814664170851514", - "69469505736807203728400866", - "22809670812251461524245613" + "346542318401735857210647514", + "171979098760785209150310055", + "548214807292236533350576839" ], - "mAssetSupply": "107235493960153382344841122" + "mAssetSupply": "1065635761529689139647171706" }, { "type": "mintMulti", "inputQtys": [ - "70962002108595335856128", - "16312567253932701646848", - "30469671868037578358784" + "2541768729126418077712384", + "1799383898199270287736832", + "2116642178500333402062848" ], - "expectedQty": "119078772252002293929660", + "expectedQty": "6465083150261249064506846", "reserves": [ - "15293417229923259506707642", - "69485818304061136430047714", - "22840140484119499102604397" + "349084087130862275288359898", + "173778482658984479438046887", + "550331449470736866752639687" ], - "mAssetSupply": "107354572732405384638770782" + "mAssetSupply": "1072100844679950388711678552" }, { - "type": "mintMulti", - "inputQtys": [ - "257870099611173421056", - "450498729906768445440", - "62132797428484628480" + "type": "redeemMasset", + "inputQty": "397609160271303221130035", + "expectedQtys": [ + "129425689502534423684696", + "64429748498996645580621", + "204039742653689617022242" ], - "expectedQty": "771141898540519069691", + "redemptionFee": "119282748081390966339", "reserves": [ - "15293675100022870680128698", - "69486268802791043198493154", - "22840202616916927587232877" + "348954661441359740864675202", + "173714052910485482792466266", + "550127409728083177135617445" ], - "mAssetSupply": "107355343874303925157840473" + "mAssetSupply": "1071703354802427166881514856" }, { - "type": "mintMulti", - "inputQtys": [ - "230032557511634583552", - "63364111025158365184", - "7839589546962705408" - ], - "expectedQty": "304862707169329629637", + "type": "redeem", + "inputIndex": 1, + "inputQty": "80050980883509834382573568", + "expectedQty": "78411448188508046879207819", + "swapFee": "48030588530105900629544", "reserves": [ - "15293905132580382314712250", - "69486332166902068356858338", - "22840210456506474549938285" + "348954661441359740864675202", + "95302604721977435913258447", + "550127409728083177135617445" ], - "mAssetSupply": "107355648737011094487470110" + "mAssetSupply": "991700404507447438399570832" }, { - "type": "mintMulti", - "inputQtys": [ - "126735466430740538851328", - "13085157933250636677120", - "92259569257743808200704" + "type": "redeemMasset", + "inputQty": "357410070449058212531404", + "expectedQtys": [ + "125725968840530528288291", + "34336874200805756823507", + "198207128937916979102725" ], - "expectedQty": "234829722886247468529917", + "redemptionFee": "107223021134717463759", "reserves": [ - "15420640599011122853563578", - "69499417324835318993535458", - "22932470025764218358138989" + "348828935472519210336386911", + "95268267847776630156434940", + "549929202599145260156514720" ], - "mAssetSupply": "107590478459897341956000027" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "343059789343009931264", - "expectedQty": "339688381087654151126", - "reserves": [ - "15420640599011122853563578", - "69499760384624662003466722", - "22932470025764218358138989" - ] + "mAssetSupply": "991343101660019514904503187" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "14020120777175978637000704", - "hardLimitError": true + "inputIndex": 2, + "inputQty": "4147271492717714364956672", + "expectedQty": "4182652244410721008873496", + "swapFee": "2488362895630628618974", + "reserves": [ + "348828935472519210336386911", + "95268267847776630156434940", + "545746550354734539147641224" + ], + "mAssetSupply": "987198318530197431168165489" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "67411909436845137920", - "expectedQty": "66749418391791605906", + "inputIndex": 2, + "inputQty": "22198585891746224661331968", + "expectedQty": "21993262632307646766303999", "reserves": [ - "15420640599011122853563578", - "69499827796534098848604642", - "22932470025764218358138989" + "348828935472519210336386911", + "95268267847776630156434940", + "567945136246480763808973192" ] }, { "type": "redeemMasset", - "inputQty": "7359238752286588", + "inputQty": "426831783742100357722931", "expectedQtys": [ - "1054458569947040", - "4752376437240777", - "1568115111266609" + "147490934470648141511955", + "40281078836636630070205", + "240137071082086827809107" ], - "redemptionFee": "2207771625685", + "redemptionFee": "128049535122630107316", "reserves": [ - "15420640597956664283616538", - "69499827791781722411363865", - "22932470024196103246872380" + "348681444538048562194874956", + "95227986768939993526364735", + "567704999175398676981164085" ], - "mAssetSupply": "107590884890339790421096156" + "mAssetSupply": "1008764877428298100206853873" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "546311270163628639125504", - "expectedQty": "555766641028678356929357", + "type": "redeemBassets", + "inputQtys": [ + "5058814825525752627200", + "1142272712898025226240", + "4318548454577908744192" + ], + "expectedQty": "10506155890504206105167", + "swapFee": "6307478021115192778", "reserves": [ - "15966951868120292922742042", - "69499827791781722411363865", - "22932470024196103246872380" - ] + "348676385723223036442247756", + "95226844496227095501138495", + "567700680626944099072419893" + ], + "mAssetSupply": "1008754371272407596000748706" }, { "type": "mint", "inputIndex": 2, - "inputQty": "5983790035774455414784", - "expectedQty": "6021631304480131328431", + "inputQty": "16387967630502238860869632", + "expectedQty": "16229492430266074457943764", "reserves": [ - "15966951868120292922742042", - "69499827791781722411363865", - "22938453814231877702287164" + "348676385723223036442247756", + "95226844496227095501138495", + "584088648257446337933289525" ] }, + { + "type": "redeemMasset", + "inputQty": "203987689364452347897446", + "expectedQtys": [ + "69371192143154344884387", + "18945933814909529577185", + "116207829110246236224731" + ], + "redemptionFee": "61196306809335704369", + "reserves": [ + "348607014531079882097363369", + "95207898562412185971561310", + "583972440428336091697064794" + ], + "mAssetSupply": "1024779937209616027446499393" + }, { "type": "redeem", "inputIndex": 1, - "inputQty": "226644016595189530624", - "expectedQty": "228691760666718395974", - "swapFee": "135986409957113718", + "inputQty": "898431529349298560", + "expectedQty": "862860550601020341", + "swapFee": "539058917609579", "reserves": [ - "15966951868120292922742042", - "69499599100021055692967891", - "22938453814231877702287164" + "348607014531079882097363369", + "95207897699551635370540969", + "583972440428336091697064794" ], - "mAssetSupply": "108152446654642763676937038" + "mAssetSupply": "1024779936311723557014810412" }, { - "type": "redeemBassets", - "inputQtys": [ - "17395717576121122816000", - "24432897053496220581888", - "1806799568647057571840" + "type": "redeemMasset", + "inputQty": "4081733235034276842648371", + "expectedQtys": [ + "1388097005534786378936369", + "379102520004592277454104", + "2325284237219917423370588" ], - "expectedQty": "43703600207140693975111", - "swapFee": "26237902866004018796", + "redemptionFee": "1224519970510283052794", "reserves": [ - "15949556150544171799926042", - "69475166202967559472386003", - "22936647014663230644715324" + "347218917525545095718427000", + "94828795179547043093086865", + "581647156191116174273694206" ], - "mAssetSupply": "108108743054435622982961927" + "mAssetSupply": "1020699427596659790455214835" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "47475010802419965952", - "expectedQty": "47904149335204221264", - "swapFee": "28485006481451979", + "type": "redeemMasset", + "inputQty": "491032321518151513879347", + "expectedQtys": [ + "166988006288563036163686", + "45606015820304628772420", + "279731587402985161507275" + ], + "redemptionFee": "147309696455445454163", "reserves": [ - "15949556150544171799926042", - "69475118298818224268164739", - "22936647014663230644715324" + "347051929519256532682263314", + "94783189163726738464314445", + "581367424603713189112186931" ], - "mAssetSupply": "108108695607909827044447954" + "mAssetSupply": "1020208542584838094386789651" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "41478910192356220928", - "expectedQty": "41740834455142918688", + "inputIndex": 1, + "inputQty": "3534757335026299305984", + "expectedQty": "3678262270435275821699", "reserves": [ - "15949556150544171799926042", - "69475118298818224268164739", - "22936688493573423000936252" + "347051929519256532682263314", + "94786723921061764763620429", + "581367424603713189112186931" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "54360140018250525179904", - "expectedQty": "54851211588263335147488", - "swapFee": "32616084010950315107", + "inputQty": "126443655811427372892160", + "expectedQty": "131570059585687889080102", "reserves": [ - "15949556150544171799926042", - "69420267087229960933017251", - "22936688493573423000936252" - ], - "mAssetSupply": "108054409824810042612501845" + "347051929519256532682263314", + "94913167576873192136512589", + "581367424603713189112186931" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "352509315924240621371392", - "2400604362129094693879808", - "3158228868274612426768384" - ], - "expectedQty": "5917071129177184835392693", - "swapFee": "3552374101967491396073", + "type": "mint", + "inputIndex": 0, + "inputQty": "31590224358234259456", + "expectedQty": "31488912224759150512", "reserves": [ - "15597046834619931178554650", - "67019662725100866239137443", - "19778459625298810574167868" - ], - "mAssetSupply": "102137338695632857777109152" + "347051961109480890916522770", + "94913167576873192136512589", + "581367424603713189112186931" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "8420495216052112719872", - "6083581213029063196672", - "2383990499785109929984" + "type": "redeemMasset", + "inputQty": "43739586864928840168243", + "expectedQtys": [ + "14872786107669888387208", + "4067469423481959576084", + "24914290437823770350048" ], - "expectedQty": "16981823171470630812570", + "redemptionFee": "13121876059478652050", "reserves": [ - "15605467329835983291274522", - "67025746306313895302334115", - "19780843615798595684097852" + "347037088323373221028135562", + "94909100107449710176936505", + "581342510313275365341836883" ], - "mAssetSupply": "102154320518804328407921722" + "mAssetSupply": "1020300095930617572949325771" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "862215681593782051012608", + "expectedQty": "853726209501069683024077", + "reserves": [ + "347037088323373221028135562", + "94909100107449710176936505", + "582204725994869147392849491" + ] }, { "type": "mintMulti", "inputQtys": [ - "3900136182969708032", - "678728129402565248", - "5353444362879160320" + "566857699192356728733696", + "107940264721829219794944", + "411258895318782478123008" ], - "expectedQty": "10034779384259424080", + "expectedQty": "1084568491480040780822845", "reserves": [ - "15605471229972166260982554", - "67025746985042024704899363", - "19780848969242958563258172" + "347603946022565577756869258", + "95017040372171539396731449", + "582615984890187929870972499" ], - "mAssetSupply": "102154330553583712667345802" + "mAssetSupply": "1022238390631598683413172693" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "818867752973596306178048", - "outputIndex": 2, - "expectedQty": "823021225842942915725031", - "swapFee": "498733705135315303790", + "inputQty": "7828888731593144795136", + "expectedQty": "7849363449331296821012", + "swapFee": "4697333238955886877", "reserves": [ - "16424338982945762567160602", - "67025746985042024704899363", - "18957827743400015647533141" + "347596096659116246460048246", + "95017040372171539396731449", + "582615984890187929870972499" ], - "mAssetSupply": "102154829287288847982649592", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1022230566440200329224264434" }, { "type": "mintMulti", "inputQtys": [ - "611939366303462936543232", - "378683349446954921754624", - "468096821245898779525120" + "327759130259240", + "289772413869959", + "276764770766179" ], - "expectedQty": "1467893189315080494338381", + "expectedQty": "902273221004624", "reserves": [ - "17036278349249225503703834", - "67404430334488979626653987", - "19425924564645914427058261" + "347596096659444005590307486", + "95017040372461311810601408", + "582615984890464694641738678" ], - "mAssetSupply": "103622722476603928476987973" + "mAssetSupply": "1022230566441102602445269058" }, { "type": "redeemBassets", "inputQtys": [ - "562755629066343481344", - "893434109716464009216", - "3452252555575687118848" + "16136570317130472357888", + "21491071082775822991360", + "47869215555830499246080" ], - "expectedQty": "4939885554516299767635", - "swapFee": "2965710759165279027", + "expectedQty": "85845474800522177316987", + "swapFee": "51538207804996304172", "reserves": [ - "17035715593620159160222490", - "67403536900379263162644771", - "19422472312090338739939413" + "347579960089126875117949598", + "94995549301378535987610048", + "582568115674908864142492598" ], - "mAssetSupply": "103617782591049412177220338" + "mAssetSupply": "1022144720966302080267952071" }, { "type": "redeemMasset", - "inputQty": "2606615765356241747968", + "inputQty": "614167737681769380655923", "expectedQtys": [ - "428423018336603302285", - "1695099132568142018559", - "488446415166795782733" - ], - "redemptionFee": "781984729606872524", - "reserves": [ - "17035287170601822556920205", - "67401841801246695020626212", - "19421983865675171944156680" + "208784873271550089620452", + "57062074916988430122193", + "349937925569824873438642" ], - "mAssetSupply": "103615176757268785542344894" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "30282400230023905280", - "outputIndex": 2, - "expectedQty": "29690106839540674237", - "swapFee": "17993396147327677", + "redemptionFee": "184250321304530814196", "reserves": [ - "17035287170601822556920205", - "67401872083646925044531492", - "19421954175568332403482443" + "347371175215855325028329146", + "94938487226461547557487855", + "582218177749339039269053956" ], - "mAssetSupply": "103615176775262181689672571", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1021530737478941615418110344" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2076326518564059724382208", + "inputQty": "70479262369430043099136", "outputIndex": 2, - "expectedQty": "2076085016260401755559157", - "swapFee": "1260189658905096430279", + "expectedQty": "70909284861186724541000", + "swapFee": "42151852342400039235", "reserves": [ - "19111613689165882281302413", - "67401872083646925044531492", - "17345869159307930647923286" + "347441654478224755071428282", + "94938487226461547557487855", + "582147268464477852544512956" ], - "mAssetSupply": "103616436964921086786102850", + "mAssetSupply": "1021530779630793957818149579", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "13474894328035211264", - "2874509912824734720", - "18719535269106962432" - ], - "expectedQty": "35411384911644013376", - "swapFee": "21259586699005811", - "reserves": [ - "19111600214271554246091149", - "67401869209137012219796772", - "17345850439772661540960854" - ], - "mAssetSupply": "103616401553536175142089474" - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6920569511154759499776", - "2164666977493830336512", - "2939526002536271052800" + "219299917836881999429632", + "337631888086027110187008", + "174800061331215587737600" ], - "expectedQty": "12109499051666296541841", - "swapFee": "7270061467880506228", + "expectedQty": "742965982261816558172022", "reserves": [ - "19104679644760399486591373", - "67399704542159518389460260", - "17342910913770125269908054" + "347660954396061637070857914", + "95276119114547574667674863", + "582322068525809068132250556" ], - "mAssetSupply": "103604292054484508845547633" + "mAssetSupply": "1022273745613055774376321601" }, { "type": "mintMulti", "inputQtys": [ - "435478011142448545792", - "239029635917321633792", - "743254932854939189248" + "399341320409093248", + "449803195742173824", + "184011763699655488" ], - "expectedQty": "1429173223455120005056", - "reserves": [ - "19105115122771541935137165", - "67399943571795435711094052", - "17343654168702980209097302" - ], - "mAssetSupply": "103605721227707963965552689" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "24179115810592", - "outputIndex": 0, - "expectedQty": "23696561923655", - "swapFee": "14367206907", - "reserves": [ - "19105115122747845373213510", - "67399943571819614826904644", - "17343654168702980209097302" - ], - "mAssetSupply": "103605721227707978332759596", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "42980352865997401620480", - "expectedQty": "43523115929634368914784", - "reserves": [ - "19105115122747845373213510", - "67399943571819614826904644", - "17386634521568977610717782" - ] - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "19401549200344924291072", - "outputIndex": 2, - "expectedQty": "18963511814068203687478", - "swapFee": "11528568177377304199", + "expectedQty": "1048208633342927565", "reserves": [ - "19105115122747845373213510", - "67419345121019959751195716", - "17367671009754909407030304" + "347660954795402957479951162", + "95276119564350770409848687", + "582322068709820831831906044" ], - "mAssetSupply": "103649255872205790078978579", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1022273746661264407719249166" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2044001876026416168960", - "4391572896960351305728", - "3726876508827760459776" + "155933164421044699136", + "27008907230333870080", + "212657371377534631936" ], - "expectedQty": "10187340300793464601939", - "swapFee": "6116073824770941325", + "expectedQty": "394102762625501958457", "reserves": [ - "19103071120871818957044550", - "67414953548122999399889988", - "17363944133246081646570528" + "347661110728567378524650298", + "95276146573258000743718767", + "582322281367192209366537980" ], - "mAssetSupply": "103639068531904996614376640" + "mAssetSupply": "1022274140764027033221207623" }, { "type": "redeemMasset", - "inputQty": "139073868185586331602124", + "inputQty": "987635887236150608055500", "expectedQtys": [ - "25626831765550682298982", - "90437378478509121405129", - "23293787280252251348186" + "335780361732033438666111", + "92020240324722728895822", + "562422371234838901090836" ], - "redemptionFee": "41722160455675899480", + "redemptionFee": "296290766170845182416", "reserves": [ - "19077444289106268274745568", - "67324516169644490278484859", - "17340650345965829395222342" + "347325330366835345085984187", + "95184126332933278014822945", + "581759858995957370465447144" ], - "mAssetSupply": "103500036385879865958673996" + "mAssetSupply": "1021286801167557053458334539" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "481350811130328866881536", - "247666588916425586376704", - "473653877956595521945600" + "10218496039583676220047360", + "6291165038405938048925696", + "12068808829086541025378304" ], - "expectedQty": "1211281070771522380433566", - "swapFee": "727204965442178735501", + "expectedQty": "28674233623822387973519349", "reserves": [ - "18596093477975939407864032", - "67076849580728064692108155", - "16866996468009233873276742" + "357543826406419021306031547", + "101475291371339216063748641", + "593828667825043911490825448" ], - "mAssetSupply": "102288755315108343578240430" + "mAssetSupply": "1049961034791379441431853888" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "127692214390876749824", - "expectedQty": "128903829988102905806", - "swapFee": "76615328634526049", + "type": "mint", + "inputIndex": 2, + "inputQty": "22425165660467956", + "expectedQty": "22214886598696422", "reserves": [ - "18596093477975939407864032", - "67076720676898076589202349", - "16866996468009233873276742" - ], - "mAssetSupply": "102288627699509281336016655" + "357543826406419021306031547", + "101475291371339216063748641", + "593828667847469077151293404" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1721803476138753523712", - "expectedQty": "1698115618129012233726", - "swapFee": "1033082085683252114", + "type": "mint", + "inputIndex": 0, + "inputQty": "7524439382243539624656896", + "expectedQty": "7500725264221519477459788", "reserves": [ - "18596093477975939407864032", - "67076720676898076589202349", - "16865298352391104861043016" - ], - "mAssetSupply": "102286906929115228265745057" + "365068265788662560930688443", + "101475291371339216063748641", + "593828667847469077151293404" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "351183808677556921565184", - "outputIndex": 1, - "expectedQty": "358069661510664810959484", - "swapFee": "212858622674470557457", + "inputQty": "1150606867237913443172352", + "expectedQty": "1153659386018467846815933", + "swapFee": "690364120342748065903", "reserves": [ - "18947277286653496329429216", - "66718651015387411778242865", - "16865298352391104861043016" + "363914606402644093083872510", + "101475291371339216063748641", + "593828667847469077151293404" ], - "mAssetSupply": "102287119787737902736302514", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1056311843574698276812903649" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "105978735193636628070400", - "60308278787713320091648", - "83278321122486958161920" + "2938827277635086848", + "903740894315112064", + "3794891283935329792" ], - "expectedQty": "251125155152561387192477", - "swapFee": "150765552422990626691", + "expectedQty": "7626475398308613017", "reserves": [ - "18841298551459859701358816", - "66658342736599698458151217", - "16782020031268617902881096" + "363914609341471370718959358", + "101475292275080110378860705", + "593828671642360361086623196" ], - "mAssetSupply": "102035994632585341349110037" + "mAssetSupply": "1056311851201173675121516666" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "19986115677821222004981760", + "expectedQty": "20612295779185496241657685", + "reserves": [ + "363914609341471370718959358", + "121461407952901332383842465", + "593828671642360361086623196" + ] }, { "type": "mintMulti", "inputQtys": [ - "100968652560696971624448", - "94907268251264196018176", - "87674869811568204316672" + "4907172950610043385937920", + "3297950850156636604989440", + "7179731815886089881649152" ], - "expectedQty": "284780671734232967321574", + "expectedQty": "15403312196683633303573981", "reserves": [ - "18942267204020556672983264", - "66753250004850962654169393", - "16869694901080186107197768" + "368821782292081414104897278", + "124759358803057968988831905", + "601008403458246450968272348" ], - "mAssetSupply": "102320775304319574316431611" + "mAssetSupply": "1092327459177042804666748332" }, { "type": "redeemMasset", - "inputQty": "162387618893893310873", + "inputQty": "1180812368297837432563302", "expectedQtys": [ - "30053201431153085635", - "105908593040757822857", - "26764923833227791624" + "398578892962635014416248", + "134825136436955619242386", + "649498689103785297161411" ], - "redemptionFee": "48716285668167993", + "redemptionFee": "354243710489351229768", "reserves": [ - "18942237150819125519897629", - "66753144096257921896346536", - "16869668136156352879406144" + "368423203399118779090481030", + "124624533666621013369589519", + "600358904769142665671110937" ], - "mAssetSupply": "102320612965416966091288731" + "mAssetSupply": "1091147001052455456585414798" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "37607436860186498695168", - "expectedQty": "37217577041276121240174", - "swapFee": "22564462116111899217", + "inputIndex": 1, + "inputQty": "1855503641463571349504", + "expectedQty": "1808431651871412470314", + "swapFee": "1113302184878142809", "reserves": [ - "18905019573777849398657455", - "66753144096257921896346536", - "16869668136156352879406144" + "368423203399118779090481030", + "124622725234969141957119205", + "600358904769142665671110937" ], - "mAssetSupply": "102283028093018895704492780" + "mAssetSupply": "1091145146662116177892208103" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "482257518429898673225728", - "412330713982834793512960", - "629517269649569769062400" + "10625794861030956859392", + "9658058181878145351680", + "9554118529345313046528" ], - "expectedQty": "1532832096637078494924386", + "expectedQty": "29986496128326967024708", + "swapFee": "18002699296574124689", "reserves": [ - "19387277092207748071883183", - "67165474810240756689859496", - "17499185405805922648468544" + "368412577604257748133621638", + "124613067176787263811767525", + "600349350650613320358064409" ], - "mAssetSupply": "103815860189655974199417166" + "mAssetSupply": "1091115160165987850925183395" }, { "type": "mintMulti", "inputQtys": [ - "15961421513329127456768", - "51544039049958638223360", - "36735294838011464777728" - ], - "expectedQty": "104356654637984929830460", - "reserves": [ - "19403238513721077199339951", - "67217018849290715328082856", - "17535920700643934113246272" - ], - "mAssetSupply": "103920216844293959129247626" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "70295163533076406272", - "1204945997648077783040", - "1847490884904294809600" + "22348870555527104430080", + "74776788061154229354496", + "78425041970658271035392" ], - "expectedQty": "3134717996578299557877", - "swapFee": "1881959973931338537", + "expectedQty": "176798797229939730165939", "reserves": [ - "19403168218557544122933679", - "67215813903293067250299816", - "17534073209759029818436672" + "368434926474813275238051718", + "124687843964848418041122021", + "600427775692583978629099801" ], - "mAssetSupply": "103917082126297380829689749" + "mAssetSupply": "1091291958963217790655349334" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2392911396323631038464000", - "expectedQty": "2413681754740702355711439", - "swapFee": "1435746837794178623078", + "type": "mint", + "inputIndex": 0, + "inputQty": "7298380220385385775104", + "expectedQty": "7282197735529547093086", "reserves": [ - "19403168218557544122933679", - "64802132148552364894588377", - "17534073209759029818436672" - ], - "mAssetSupply": "101525606476811543969848827" + "368442224855033660623826822", + "124687843964848418041122021", + "600427775692583978629099801" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "13052585749888392", - "3754817335191865", - "4453137907245514" + "9098540342331354136969216", + "3389008763453530244644864", + "13991766930196477830496256" ], - "expectedQty": "21390291505030736", - "swapFee": "12841880031037", + "expectedQty": "26437781018246006080956339", "reserves": [ - "19403168205504958373045287", - "64802132144797547559396512", - "17534073205305891911191158" + "377540765197365014760796038", + "128076852728301948285766885", + "614419542622780456459596057" ], - "mAssetSupply": "101525606455421252464818091" + "mAssetSupply": "1117737022179199326283398759" }, { - "type": "redeemMasset", - "inputQty": "3494156777294110549606", - "expectedQtys": [ - "667588943706503852536", - "2229593976111635815732", - "603280520275118704144" - ], - "redemptionFee": "1048247033188233164", + "type": "redeem", + "inputIndex": 1, + "inputQty": "121630681033354938155008", + "expectedQty": "118564884045016453998183", + "swapFee": "72978408620012962893", "reserves": [ - "19402500616561251869192751", - "64799902550821435923580780", - "17533469924785616792487014" + "377540765197365014760796038", + "127958287844256931831768702", + "614419542622780456459596057" ], - "mAssetSupply": "101522113346890991542501649" + "mAssetSupply": "1117615464476574591358206644" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "16213463547857539072", - "outputIndex": 2, - "expectedQty": "16160813785557064445", - "swapFee": "9812237125453685", + "inputIndex": 2, + "inputQty": "12902901727707892107182080", + "outputIndex": 1, + "expectedQty": "12436140089854436266394875", + "swapFee": "7681678504081471795048", "reserves": [ - "19402516830024799726731823", - "64799902550821435923580780", - "17533453763971831235422569" + "377540765197365014760796038", + "115522147754402495565373827", + "627322444350488348566778137" ], - "mAssetSupply": "101522113356703228667955334", + "mAssetSupply": "1117623146155078672830001692", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1143224632568042749952", - "1119375378179037200384", - "1309894533359660695552" - ], - "expectedQty": "3587201058083941717098", + "type": "swap", + "inputIndex": 2, + "inputQty": "59865003854609260740608", + "outputIndex": 1, + "expectedQty": "57468858827845160619408", + "swapFee": "35606175108335808827", "reserves": [ - "19403660054657367769481775", - "64801021926199614960781164", - "17534763658505190896118121" + "377540765197365014760796038", + "115464678895574650404754419", + "627382309354342957827518745" ], - "mAssetSupply": "101525700557761312609672432" + "mAssetSupply": "1117623181761253781165810519", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3738697440837612544", - "expectedQty": "3704410026036667109", - "swapFee": "2243218464502567", + "type": "redeemMasset", + "inputQty": "596626523698039776870", + "expectedQtys": [ + "201484062534251483135", + "61620610878752331715", + "334818245083420694628" + ], + "redemptionFee": "178987957109411933", "reserves": [ - "19403656350247341732814666", - "64801021926199614960781164", - "17534763658505190896118121" + "377540563713302480509312903", + "115464617274963771652422704", + "627381974536097874406824117" ], - "mAssetSupply": "101525696821307090236562455" + "mAssetSupply": "1117622585313718040235445582" }, { - "type": "redeemBassets", - "inputQtys": [ - "7638300981807709945856", - "1730698361181310812160", - "36231866852631962976256" - ], - "expectedQty": "46062888253711228110397", - "swapFee": "27654325547555270028", + "type": "mint", + "inputIndex": 1, + "inputQty": "806126663343820637208576", + "expectedQty": "831758690082474207415261", "reserves": [ - "19396018049265534022868810", - "64799291227838433649969004", - "17498531791652558933141865" - ], - "mAssetSupply": "101479633933053379008452058" + "377540563713302480509312903", + "116270743938307592289631280", + "627381974536097874406824117" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "5044299007065496", + "inputQty": "591552176844355534848", "outputIndex": 2, - "expectedQty": "4939820562003140", - "swapFee": "2999430003994", + "expectedQty": "615188658647351617795", + "swapFee": "366138522341469956", "reserves": [ - "19396018049265534022868810", - "64799291232882732657034500", - "17498531786712738371138725" + "377540563713302480509312903", + "116271335490484436645166128", + "627381359347439227055206322" ], - "mAssetSupply": "101479633933056378438456052", + "mAssetSupply": "1118454344369939036784330799", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2345592991526281749200896", - "expectedQty": "2313125594562339959787413", - "swapFee": "1407355794915769049520", - "reserves": [ - "19396018049265534022868810", - "64799291232882732657034500", - "15185406192150398411351312" - ], - "mAssetSupply": "99135448297325012458304676" - }, { "type": "redeemMasset", - "inputQty": "394045060137996645721702", + "inputQty": "701341115737207408374579", "expectedQtys": [ - "77072453480165232099671", - "257487920789141011306397", - "60341071520411536394049" - ], - "redemptionFee": "118213518041398993716", - "reserves": [ - "19318945595785368790769139", - "64541803312093591645728103", - "15125065120629986874957263" + "236670621476106384776350", + "72887556663411929697377", + "393289491224148272124781" ], - "mAssetSupply": "98741521450705057211576690" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "5134449647956846968832", - "outputIndex": 1, - "expectedQty": "5227082363096699041180", - "swapFee": "3106719636828512357", + "redemptionFee": "210402334721162222512", "reserves": [ - "19324080045433325637737971", - "64536576229730494946686923", - "15125065120629986874957263" + "377303893091826374124536553", + "116198447933821024715468751", + "626988069856215078783081541" ], - "mAssetSupply": "98741524557424694040089047", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1117753213656536550538178732" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "1642074603088582400", - "expectedQty": "1615616905101627205", - "swapFee": "985244761853149", + "inputIndex": 1, + "inputQty": "1636553074350673362944", + "expectedQty": "1585507232279300735021", + "swapFee": "981931844610404017", "reserves": [ - "19324080045433325637737971", - "64536576229730494946686923", - "15125063505013081773330058" + "377303893091826374124536553", + "116196862426588745414733730", + "626988069856215078783081541" ], - "mAssetSupply": "98741522916335335713359796" + "mAssetSupply": "1117751578085394044475219805" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "70194832475885656", - "expectedQty": "70862001443206459", - "swapFee": "42116899485531", + "type": "redeemMasset", + "inputQty": "35581258322216991535923", + "expectedQtys": [ + "12007068533852037707614", + "3697771785872018236658", + "19952851964978228664316" + ], + "redemptionFee": "10674377496665097460", "reserves": [ - "19324080045433325637737971", - "64536576158868493503480464", - "15125063505013081773330058" + "377291886023292522086828939", + "116193164654802873396497072", + "626968117004250100554417225" ], - "mAssetSupply": "98741522846182620136959671" + "mAssetSupply": "1117716007501449324148781342" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4759362251941790", - "expectedQty": "4804597758371881", - "swapFee": "2855617351165", + "inputIndex": 0, + "inputQty": "2415543515896427592024064", + "expectedQty": "2420303002988374154127248", + "swapFee": "1449326109537856555214", "reserves": [ - "19324080045433325637737971", - "64536576154063895745108583", - "15125063505013081773330058" + "374871583020304147932701691", + "116193164654802873396497072", + "626968117004250100554417225" ], - "mAssetSupply": "98741522841426113502369046" + "mAssetSupply": "1115301913311662434413312492" }, { "type": "redeemBassets", "inputQtys": [ - "82765998703787049484288", - "100560717760812164317184", - "25021830056702138908672" - ], - "expectedQty": "208437636225275891382944", - "swapFee": "125137664333765794306", - "reserves": [ - "19241314046729538588253683", - "64436015436303083580791399", - "15100041674956379634421386" + "1729504713515767315824640", + "391595336352351125504000", + "551596335545213433937920" ], - "mAssetSupply": "98533085205200837610986102" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "7646050012295000473206784", - "outputIndex": 1, - "expectedQty": "7768338467328476609837536", - "swapFee": "4632300539323011092199", + "expectedQty": "2675886352741478958911096", + "swapFee": "1606495709070329573090", "reserves": [ - "19241314046729538588253683", - "56667676968974606970953863", - "22746091687251380107628170" + "373142078306788380616877051", + "115801569318450522270993072", + "626416520668704887120479305" ], - "mAssetSupply": "98537717505740160622078301", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1112626026958920955454401396" }, { "type": "redeemBassets", "inputQtys": [ - "4264064122624201457664", - "2863253923224340135936", - "1787897831328757841920" + "148149572319443087785984", + "1641043929401804629999616", + "803180122814131304660992" ], - "expectedQty": "8935356507530631719124", - "swapFee": "5364432564056813119", + "expectedQty": "2637446867595687370689605", + "swapFee": "1583418171460288595571", "reserves": [ - "19237049982606914386796019", - "56664813715051382630817927", - "22744303789420051349786250" + "372993928734468937529091067", + "114160525389048717640993456", + "625613340545890755815818313" ], - "mAssetSupply": "98528782149232629990359177" + "mAssetSupply": "1109988580091325268083711791" }, { "type": "mintMulti", "inputQtys": [ - "280627110747524726521856", - "29164502291287002578944", - "234476054271573532606464" + "774107003540307877822464", + "600877974272998123765760", + "1063795421999484920397824" ], - "expectedQty": "547000746094697479371671", + "expectedQty": "2446831850158429516474971", "reserves": [ - "19517677093354439113317875", - "56693978217342669633396871", - "22978779843691624882392714" + "373768035738009245406913531", + "114761403363321715764759216", + "626677135967890240736216137" ], - "mAssetSupply": "99075782895327327469730848" + "mAssetSupply": "1112435411941483697600186762" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "212440494851263366692864", - "expectedQty": "210833370066598274732044", - "swapFee": "127464296910758020015", + "inputQty": "10816702073922720425312256", + "expectedQty": "10836412469225953470441602", + "swapFee": "6490021244353632255187", "reserves": [ - "19306843723287840838585831", - "56693978217342669633396871", - "22978779843691624882392714" + "362931623268783291936471929", + "114761403363321715764759216", + "626677135967890240736216137" ], - "mAssetSupply": "98863469864772974861057999" + "mAssetSupply": "1101625199888805330807129693" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "14219011133947431092224", - "expectedQty": "14132817515709164106275", + "inputIndex": 0, + "inputQty": "19489308637296337092608", + "expectedQty": "19445178981832565897309", "reserves": [ - "19306843723287840838585831", - "56708197228476617064489095", - "22978779843691624882392714" + "362951112577420588273564537", + "114761403363321715764759216", + "626677135967890240736216137" ] }, { - "type": "redeemMasset", - "inputQty": "15232602661628796941107", - "expectedQtys": [ - "2973426165963697914135", - "8733568255923493085348", - "3538937085129957634925" + "type": "mintMulti", + "inputQtys": [ + "39733933062153970909184", + "43818135229420701483008", + "39695272155131831910400" ], - "redemptionFee": "4569780798488639082", + "expectedQty": "124193941689436907699690", "reserves": [ - "19303870297121877140671696", - "56699463660220693571403747", - "22975240906606494924757789" + "362990846510482742244473721", + "114805221498551136466242224", + "626716831240045372568126537" ], - "mAssetSupply": "98862374649407853716862249" + "mAssetSupply": "1101768839009476600280726692" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "262395296530570656", - "outputIndex": 2, - "expectedQty": "263072055539714167", - "swapFee": "158557810158638", + "inputQty": "415151813240017059840", + "expectedQty": "414212130893155861240", + "reserves": [ + "362991261662295982261533561", + "114805221498551136466242224", + "626716831240045372568126537" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "996458112496878756036608", + "1331060319805346487992320", + "299192890003277362495488" + ], + "expectedQty": "2664394215692383308205694", + "swapFee": "1599596287187742630501", "reserves": [ - "19303870559517173671242352", - "56699463660220693571403747", - "22975240643534439385043622" + "361994803549799103505496953", + "113474161178745789978249904", + "626417638350042095205631049" ], - "mAssetSupply": "98862374649566411527020887", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1099104859005915110128382238" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "35993554096875854888960", + "expectedQty": "36054725179061909690995", + "swapFee": "21596132458125512933", + "reserves": [ + "361958748824620041595805958", + "113474161178745789978249904", + "626417638350042095205631049" + ], + "mAssetSupply": "1099068887047950692399006211" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "17866922266674635735040", - "expectedQty": "17758569474907735341841", + "inputIndex": 2, + "inputQty": "786692840010353473486848", + "expectedQty": "779624730924869864263431", "reserves": [ - "19303870559517173671242352", - "56717330582487368207138787", - "22975240643534439385043622" + "361958748824620041595805958", + "113474161178745789978249904", + "627204331190052448679117897" ] }, { "type": "redeemMasset", - "inputQty": "579752071925494", + "inputQty": "755021775907416604829286", "expectedQtys": [ - "113148123401002", - "332444185218535", - "134667571225538" + "248402164839693957903685", + "77874142790305578384553", + "430432788737289771606677" ], - "redemptionFee": "173925621577", + "redemptionFee": "226506532772224981448", "reserves": [ - "19303870559404025547841350", - "56717330582154924021920252", - "22975240643399771813818084" + "361710346659780347637902273", + "113396287035955484399865351", + "626773898401315158907511220" ], - "mAssetSupply": "98880133218461741116058811" + "mAssetSupply": "1099093716509500917883421804" }, { "type": "redeemBassets", "inputQtys": [ - "1998940949729375980355584", - "4262412059197685089959936", - "3922773273373545789915136" + "51222638165044305920", + "10758099299840778240", + "42717851125685444608" ], - "expectedQty": "10189530405534213116099092", - "swapFee": "6117388676526443735900", + "expectedQty": "104546088617276636440", + "swapFee": "62765312357780650", "reserves": [ - "17304929609674649567485766", - "52454918522957238931960316", - "19052467370026226023902948" + "361710295437142182593596353", + "113396276277856184559087111", + "626773855683464033222066612" ], - "mAssetSupply": "88690602812927527999959719" + "mAssetSupply": "1099093611963412300606785364" }, { - "type": "mintMulti", - "inputQtys": [ - "5075371829788829286400", - "5486544272960335642624", - "2076628434683810545664" + "type": "mint", + "inputIndex": 1, + "inputQty": "19636648133489298365218816", + "expectedQty": "20178949529729004103896291", + "reserves": [ + "361710295437142182593596353", + "133032924411345482924305927", + "626773855683464033222066612" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "7784960525476707328", + "expectedQty": "7725114304472910490", + "reserves": [ + "361710295437142182593596353", + "133032924411345482924305927", + "626773863468424558698773940" + ] + }, + { + "type": "redeemMasset", + "inputQty": "101760183268901193252864", + "expectedQtys": [ + "32875516343481958513716", + "12091240243578904157759", + "56966900450596480935307" ], - "expectedQty": "12650249312694727884015", + "redemptionFee": "30528054980670357975", "reserves": [ - "17310004981504438396772166", - "52460405067230199267602940", - "19054543998460909834448612" + "361677419920798700635082637", + "133020833171101904020148168", + "626716896567973962217838633" ], - "mAssetSupply": "88703253062240222727843734" + "mAssetSupply": "1119170839563041688660697256" }, { "type": "mintMulti", "inputQtys": [ - "4389213397630032805888", - "18278371608365235175424", - "16460288675485799415808" + "58812970458906181500928", + "267603701451427118317568", + "23069251443444045316096" ], - "expectedQty": "39126620286138822464327", + "expectedQty": "355496351932742643823718", "reserves": [ - "17314394194902068429578054", - "52478683438838564502778364", - "19071004287136395633864420" + "361736232891257606816583565", + "133288436872553331138465736", + "626739965819417406263154729" ], - "mAssetSupply": "88742379682526361550308061" + "mAssetSupply": "1119526335914974431304520974" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1235745234640198743097344", - "expectedQty": "1241835415896189892718865", + "type": "swap", + "inputIndex": 0, + "inputQty": "4244520703040617472", + "outputIndex": 2, + "expectedQty": "4268267557325592498", + "swapFee": "2542838149910287", "reserves": [ - "17314394194902068429578054", - "52478683438838564502778364", - "20306749521776594376961764" - ] + "361736237135778309857201037", + "133288436872553331138465736", + "626739961551149848937562231" + ], + "mAssetSupply": "1119526335917517269454431261", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "8316503321353", - "expectedQtys": [ - "1599747445777", - "4848719443721", - "1876223349995" - ], - "redemptionFee": "2494950996", + "type": "redeem", + "inputIndex": 1, + "inputQty": "96936989022464717619200", + "expectedQty": "94661093301961275245030", + "swapFee": "58162193413478830571", "reserves": [ - "17314394194900468682132277", - "52478683438833715783334643", - "20306749521774718153611769" + "361736237135778309857201037", + "133193775779251369863220706", + "626739961551149848937562231" ], - "mAssetSupply": "89984215098414237434656569" + "mAssetSupply": "1119429457090688218215642632" }, { "type": "swap", "inputIndex": 2, - "inputQty": "3719551537423317504", + "inputQty": "49363825002944105807872", "outputIndex": 1, - "expectedQty": "3758061328887760760", - "swapFee": "2241705721841869", + "expectedQty": "47833423533837721769245", + "swapFee": "29390887927797423090", "reserves": [ - "17314394194900468682132277", - "52478679680772386895573883", - "20306753241326255576929273" + "361736237135778309857201037", + "133145942355717532141451461", + "626789325376152793043370103" ], - "mAssetSupply": "89984215100655943156498438", + "mAssetSupply": "1119429486481576146013065722", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1341219561312761151488", - "851836395273146204160", - "1639098585264680599552" - ], - "expectedQty": "3844122765896593392548", + "type": "mint", + "inputIndex": 2, + "inputQty": "382865931873389761265664", + "expectedQty": "379923881752724215047236", + "reserves": [ + "361736237135778309857201037", + "133145942355717532141451461", + "627172191308026182804635767" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "4358654692528999424", + "outputIndex": 2, + "expectedQty": "4383102964768949983", + "swapFee": "2611211404163621", "reserves": [ - "17315735414461781443283765", - "52479531517167660041778043", - "20308392339911520257528825" + "361736241494433002386200461", + "133145942355717532141451461", + "627172186924923218035685784" ], - "mAssetSupply": "89988059223421839749890986" + "mAssetSupply": "1119809410365940081632276579", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "113769772252991537152", - "4272932024417689534464", - "186174285757742546944" + "type": "redeemMasset", + "inputQty": "9742631733279170179891", + "expectedQtys": [ + "3146254776885489213317", + "1158056642123991247150", + "5454923401897031597688" ], - "expectedQty": "4547137326467337766558", - "swapFee": "2729920348089256213", + "redemptionFee": "2922789519983751053", "reserves": [ - "17315621644689528451746613", - "52475258585143242352243579", - "20308206165625762514981881" + "361733095239656116896987144", + "133144784299075408150204311", + "627166732001521321004088096" ], - "mAssetSupply": "89983512086095372412124428" + "mAssetSupply": "1119799670656996322445847741" }, { - "type": "redeemBassets", - "inputQtys": [ - "40320094530634906599424", - "286738240191441135468544", - "184452063962252653363200" - ], - "expectedQty": "510802085902070882132645", - "swapFee": "306665250691657523793", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3771214513777123358932992", + "expectedQty": "3798027454080089548853602", + "swapFee": "2262728708266274015359", "reserves": [ - "17275301550158893545147189", - "52188520344951801216775035", - "20123754101663509861618681" + "361733095239656116896987144", + "133144784299075408150204311", + "623368704547441231455234494" ], - "mAssetSupply": "89472710000193301529991783" + "mAssetSupply": "1116030718871927465360930108" }, { "type": "mintMulti", "inputQtys": [ - "3774388084858734080", - "7604691539468514304", - "379263670520979072" + "2074089050029677312", + "287119438086774390784", + "313147280579558899712" ], - "expectedQty": "11739429681008796427", + "expectedQty": "606632173784347669914", "reserves": [ - "17275305324546978403881269", - "52188527949643340685289339", - "20123754480927180382597753" + "361733097313745166926664456", + "133145071418513494924595095", + "623369017694721811014134206" ], - "mAssetSupply": "89472721739622982538788210" + "mAssetSupply": "1116031325504101249708600022" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "151548704587118272", - "outputIndex": 2, - "expectedQty": "151900750306123721", - "swapFee": "91608168014767", - "reserves": [ - "17275305476095682990999541", - "52188527949643340685289339", - "20123754329026430076474032" + "type": "redeemMasset", + "inputQty": "11636167952297397479014", + "expectedQtys": [ + "3770435669648001802721", + "1387804793761453649467", + "6497533117991262778456" ], - "mAssetSupply": "89472721739714590706802977", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "5485602149739274436608", - "expectedQty": "5450387966867925785505", + "redemptionFee": "3490850385689219243", "reserves": [ - "17275305476095682990999541", - "52194013551793079959725947", - "20123754329026430076474032" - ] + "361729326878075518924861735", + "133143683613719733470945628", + "623362520161603819751355750" + ], + "mAssetSupply": "1116019692826999338000340251" }, { "type": "swap", "inputIndex": 1, - "inputQty": "883885672650760704", + "inputQty": "44377972747908870569984", "outputIndex": 0, - "expectedQty": "871178022631361464", - "swapFee": "526926736009797", + "expectedQty": "45453688529886015646919", + "swapFee": "27246231629782141533", "reserves": [ - "17275304604917660359638077", - "52194014435678752610486651", - "20123754329026430076474032" + "361683873189545632909214816", + "133188061586467642341515612", + "623362520161603819751355750" ], - "mAssetSupply": "89478172128208385368598279", + "mAssetSupply": "1116019720073230967782481784", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "52937363715305689317376", - "expectedQty": "53176171972038198544474", + "inputQty": "2979618623473165971488768", + "expectedQty": "3000623643505893721215973", + "swapFee": "1787771174083899582893", "reserves": [ - "17275304604917660359638077", - "52194014435678752610486651", - "20176691692741735765791408" - ] + "361683873189545632909214816", + "133188061586467642341515612", + "620361896518097926030139777" + ], + "mAssetSupply": "1113041889220931885710575909" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "9178686571902803048923136", + "38224285979643488384319488", + "15576141128101507587112960" + ], + "expectedQty": "64026928477239698703775721", + "swapFee": "38439220618715048251216", + "reserves": [ + "352505186617642829860291680", + "94963775606824153957196124", + "604785755389996418443026817" + ], + "mAssetSupply": "1049014960743692187006800188" }, { "type": "swap", "inputIndex": 1, - "inputQty": "229472946872533695594496", + "inputQty": "4858052823063987987939328", "outputIndex": 2, - "expectedQty": "226811833853844536582483", - "swapFee": "136798572727491968351", + "expectedQty": "5104609001186281262323936", + "swapFee": "3034716744645081573691", "reserves": [ - "17275304604917660359638077", - "52423487382551286306081147", - "19949879858887891229208925" + "352505186617642829860291680", + "99821828429888141945135452", + "599681146388810137180702881" ], - "mAssetSupply": "89531485098753151059111104", + "mAssetSupply": "1049017995460436832088373879", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "2628733616244253557522432", - "2655255851055647847088128", - "220400500218675450609664" - ], - "expectedQty": "5506013152227631137976443", - "reserves": [ - "19904038221161913917160509", - "55078743233606934153169275", - "20170280359106566679818589" - ], - "mAssetSupply": "95037498250980782197087547" - }, - { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "3144054771552021905408", - "expectedQty": "3162272475450613826713", + "inputQty": "21293351836190934441132032", + "outputIndex": 1, + "expectedQty": "20203767985826173096326510", + "swapFee": "12734504924771195874616", "reserves": [ - "19907182275933465939065917", - "55078743233606934153169275", - "20170280359106566679818589" - ] + "373798538453833764301423712", + "79618060444061968848808942", + "599681146388810137180702881" + ], + "mAssetSupply": "1049030729965361603284248495", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "52402304742774784", + "inputQty": "226925364226320053043", "expectedQtys": [ - "10972874891440700", - "30359502932306142", - "11117895030947155" + "80835498668238794665", + "17217738853702354241", + "129683558182953080824" ], - "redemptionFee": "15720691422832", + "redemptionFee": "68077609267896015", "reserves": [ - "19907182264960591047625217", - "55078743203247431220863133", - "20170280347988671648871434" + "373798457618335096062629047", + "79618043226323115146454701", + "599681016705251954227622057" ], - "mAssetSupply": "95040660471069648759562308" + "mAssetSupply": "1049030503108074986232091467" }, { "type": "redeemMasset", - "inputQty": "173256722168810180496588", + "inputQty": "788240656895285038520729", "expectedQtys": [ - "36279403087162521632274", - "100377034761071062393795", - "36758880357154472675444" + "280787591937773089613533", + "59806984691047122355474", + "450464642589268566845990" ], - "redemptionFee": "51977016650643054148", + "redemptionFee": "236472197068585511556", "reserves": [ - "19870902861873428525992943", - "54978366168486360158469338", - "20133521467631517176195990" + "373517670026397322973015514", + "79558236241632068024099227", + "599230552062662685660776067" ], - "mAssetSupply": "94867455725917489222119868" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "17055997474760634138624", - "expectedQty": "16949829824378290004667", - "reserves": [ - "19870902861873428525992943", - "54995422165961120792607962", - "20133521467631517176195990" - ] + "mAssetSupply": "1048242498923376769779082294" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "78446560396932183752704", - "outputIndex": 2, - "expectedQty": "78412918529685531967004", - "swapFee": "47339317386687177030", + "type": "redeemMasset", + "inputQty": "2276648632341881264537", + "expectedQtys": [ + "810989234787243481495", + "172738476137056914315", + "1301061678940361060086" + ], + "redemptionFee": "682994589702564379", "reserves": [ - "19949349422270360709745647", - "54995422165961120792607962", - "20055108549101831644228986" + "373516859037162535729534019", + "79558063503155930967184912", + "599229251000983745299715981" ], - "mAssetSupply": "94884452895059254199301565", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1048240222957739017600382136" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "310408017050743993270272", - "524491789299288285118464", - "440335489888484348395520" + "509782652275814458982400", + "525643228212229516034048", + "53245885428817645797376" ], - "expectedQty": "1276197787851074810238304", + "expectedQty": "1118430922417785854377479", + "swapFee": "671461430308856826722", "reserves": [ - "20259757439321104703015919", - "55519913955260409077726426", - "20495444038990315992624506" + "373007076384886721270551619", + "79032420274943701451150864", + "599176005115554927653918605" ], - "mAssetSupply": "96160650682910329009539869" + "mAssetSupply": "1047121792035321231746004657" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2881954614807590663618560", - "expectedQty": "2894896122414462663409750", + "type": "redeemMasset", + "inputQty": "68668646276513008713728", + "expectedQtys": [ + "24453895444046149935497", + "5181270448872621800579", + "39281258478212371740143" + ], + "redemptionFee": "20600593882953902614", "reserves": [ - "20259757439321104703015919", - "55519913955260409077726426", - "23377398653797906656243066" - ] + "372982622489442675120616122", + "79027239004494828829350285", + "599136723857076715282178462" + ], + "mAssetSupply": "1047053143989638601691193543" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2865228032865025916928", - "expectedQty": "2846190138183524743255", - "swapFee": "1719136819719015550", + "type": "redeemBassets", + "inputQtys": [ + "205527430571356808282112", + "206515433212346024067072", + "40365852122883716808704" + ], + "expectedQty": "463944751402768124932951", + "swapFee": "278533971224395512267", "reserves": [ - "20256911249182921178272664", - "55519913955260409077726426", - "23377398653797906656243066" + "372777095058871318312334010", + "78820723571282482805283213", + "599096358004953831565369758" ], - "mAssetSupply": "99052683296428746366048241" + "mAssetSupply": "1046589199238235833566260592" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3137774817746901008384", - "12158344401417901441024", - "39055268695209123250176" + "5301290593014764273664", + "18677071044938454532096", + "17084798956081099309056" ], - "expectedQty": "54444271463319260395956", + "expectedQty": "42015351626065440301721", + "swapFee": "25224345582989057615", "reserves": [ - "20260049024000668079281048", - "55532072299661826979167450", - "23416453922493115779493242" + "372771793768278303548060346", + "78802046500237544350751117", + "599079273205997750466060702" ], - "mAssetSupply": "99107127567892065626444197" + "mAssetSupply": "1046547183886609768125958871" }, { "type": "redeemBassets", "inputQtys": [ - "69032344300966153027584", - "34589303578482702286848", - "256415423378194235392" + "209926438168306024448", + "171672738661971787776", + "194845077203881066496" ], - "expectedQty": "104108144259658612775166", - "swapFee": "62502387988588320657", + "expectedQty": "583922943817098177194", + "swapFee": "350564104753110772", "reserves": [ - "20191016679699701926253464", - "55497482996083344276880602", - "23416197507069737585257850" + "372771583841840135242035898", + "78801874827498882378963341", + "599079078360920546584994206" ], - "mAssetSupply": "99003019423632407013669031" + "mAssetSupply": "1046546599963665951027781677" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1384657163121906421858304", - "2775634157415901215850496", - "2646634508507123678183424" + "5167084036597344108544", + "3393830893769322921984", + "3425469421878684155904" ], - "expectedQty": "6808958597452137861674566", + "expectedQty": "12134191596376069756177", + "swapFee": "7284885889359257408", "reserves": [ - "21575673842821608348111768", - "58273117153499245492731098", - "26062832015576861263441274" + "372766416757803537897927354", + "78798480996605113056041357", + "599075652891498667900838302" ], - "mAssetSupply": "105811978021084544875343597" + "mAssetSupply": "1046534465772069574958025500" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1015777468391714073870336", - "expectedQty": "1018572597440994067677949", + "inputIndex": 1, + "inputQty": "22083120217578716123889664", + "expectedQty": "23180978359170172296299808", "reserves": [ - "21575673842821608348111768", - "58273117153499245492731098", - "27078609483968575337311610" + "372766416757803537897927354", + "100881601214183829179931021", + "599075652891498667900838302" ] }, { - "type": "mintMulti", - "inputQtys": [ - "384449750420787232768", - "488829146163064602624", - "539579094548224147456" - ], - "expectedQty": "1414104070717554927540", + "type": "mint", + "inputIndex": 0, + "inputQty": "9797159646285907296780288", + "expectedQty": "9761798996040385117141518", "reserves": [ - "21576058292572029135344536", - "58273605982645408557333722", - "27079149063063123561459066" - ], - "mAssetSupply": "106831964722596256497949086" + "382563576404089445194707642", + "100881601214183829179931021", + "599075652891498667900838302" + ] }, { "type": "redeemBassets", "inputQtys": [ - "126489060939000643584", - "144635711894705061888", - "31191974159634567168" + "419112016009581690880", + "1116929311160406245376", + "1714028200457361686528" ], - "expectedQty": "302437544664415031503", - "swapFee": "181571469680457293", + "expectedQty": "3276614324399134221505", + "swapFee": "1967148883969862450", "reserves": [ - "21575931803511090134700952", - "58273461346933513852271834", - "27079117871088963926891898" + "382563157292073435613016762", + "100880484284872668773685645", + "599073938863298210539151774" ], - "mAssetSupply": "106831662285051592082917583" + "mAssetSupply": "1079473966512955733237245321" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "60122428070167601741824", - "expectedQty": "59714295640027255820668", - "swapFee": "36073456842100561045", + "type": "mint", + "inputIndex": 2, + "inputQty": "168336071640782", + "expectedQty": "166763403578297", + "reserves": [ + "382563157292073435613016762", + "100880484284872668773685645", + "599073938863466546610792556" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1445355756985958749175808", + "8596791864023142753107968", + "1440887831808557392592896" + ], + "expectedQty": "11833144830191419644389018", + "swapFee": "7104149387747500286805", "reserves": [ - "21516217507871062878880284", - "58273461346933513852271834", - "27079117871088963926891898" + "381117801535087476863840954", + "92283692420849526020577677", + "597633051031657989218199660" ], - "mAssetSupply": "106771575930438266581736804" + "mAssetSupply": "1067640821682931076996434600" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "27545543681710110015488", - "expectedQty": "27615276771110578768429", + "inputIndex": 0, + "inputQty": "8586785364184700939141120", + "expectedQty": "8549049490981187006395499", "reserves": [ - "21516217507871062878880284", - "58273461346933513852271834", - "27106663414770674036907386" + "389704586899272177802982074", + "92283692420849526020577677", + "597633051031657989218199660" ] }, { "type": "redeemBassets", "inputQtys": [ - "9701081697242218233856", - "2180865535950836465664", - "15142655039054282752000" + "8617650340064207828942848", + "6162955801440046605664256", + "6565595196264396802228224" ], - "expectedQty": "27112362099163471922096", - "swapFee": "16277183569639867073", + "expectedQty": "21546440834148057010999671", + "swapFee": "12935625876014442872323", "reserves": [ - "21506516426173820660646428", - "58271280481397563015806170", - "27091520759731619754155386" + "381086936559207969974039226", + "86120736619409479414913421", + "591067455835393592415971436" ], - "mAssetSupply": "106772078845110213688583137" + "mAssetSupply": "1054643430339764206991830428" }, { - "type": "redeemMasset", - "inputQty": "32448188880613566683545", - "expectedQtys": [ - "6533900626964402467422", - "17703413631789112603114", - "8230682318313585758421" - ], - "redemptionFee": "9734456664184070005", + "type": "swap", + "inputIndex": 1, + "inputQty": "2187559696744408565153792", + "outputIndex": 2, + "expectedQty": "2323432163213911587935662", + "swapFee": "1380283156045970029933", "reserves": [ - "21499982525546856258179006", - "58253577067765773903203056", - "27083290077413306168396965" + "381086936559207969974039226", + "88308296316153887980067213", + "588744023672179680828035774" ], - "mAssetSupply": "106739640390686264305969597" + "mAssetSupply": "1054644810622920252961860361", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "515663628469984533938176", - "578491733234267541471232", - "555951571175876493049856" + "17046691622569485300400128", + "21322573397702766491598848", + "24413586391638094328627200" ], - "expectedQty": "1651722908002479896592051", + "expectedQty": "63376702375647921792390168", "reserves": [ - "22015646154016840792117182", - "58832068801000041444674288", - "27639241648589182661446821" + "398133628181777455274439354", + "109630869713856654471666061", + "613157610063817775156662974" ], - "mAssetSupply": "108391363298688744202561648" + "mAssetSupply": "1118021512998568174754250529" }, { - "type": "redeemBassets", - "inputQtys": [ - "277268498040899330113536", - "462915764439832441389056", - "6094565623142299992064000" - ], - "expectedQty": "6857092870303575669651931", - "swapFee": "4116725757636727438254", + "type": "mint", + "inputIndex": 2, + "inputQty": "4535956580962875035615232", + "expectedQty": "4496066259350792289511272", "reserves": [ - "21738377655975941462003646", - "58369153036560209003285232", - "21544676025446882669382821" - ], - "mAssetSupply": "101534270428385168532909717" + "398133628181777455274439354", + "109630869713856654471666061", + "617693566644780650192278206" + ] }, { "type": "mintMulti", "inputQtys": [ - "80810315822001766400", - "500173839856822321152", - "54615914026545020928" + "1191967998741705905930240", + "608331358902040173477888", + "510708115337312026492928" ], - "expectedQty": "633308302598909253575", + "expectedQty": "2323982623176919738481692", "reserves": [ - "21738458466291763463770046", - "58369653210400065825606384", - "21544730641360909214403749" + "399325596180519161180369594", + "110239201072758694645143949", + "618204274760117962218771134" ], - "mAssetSupply": "101534903736687767442163292" + "mAssetSupply": "1124841561881095886782243493" }, { - "type": "redeemBassets", - "inputQtys": [ - "1014827315018363699200", - "4156830653850152075264", - "2626814665512954888192" + "type": "redeemMasset", + "inputQty": "79723854232088943263744", + "expectedQtys": [ + "28293962427141965866297", + "7810928833474427424754", + "43802472693120679242241" ], - "expectedQty": "7793244699043803284373", - "swapFee": "4678754071869403612", + "redemptionFee": "23917156269626682979", "reserves": [ - "21737443638976745100070846", - "58365496379746215673531120", - "21542103826695396259515557" + "399297302218092019214503297", + "110231390143925220217719195", + "618160472287424841539528893" ], - "mAssetSupply": "101527110491988723638878919" + "mAssetSupply": "1124761861944020067465662728" }, { - "type": "redeemMasset", - "inputQty": "19849628705155792", - "expectedQtys": [ - "4248626195378680", - "11407651283366009", - "4210446644128653" + "type": "mintMulti", + "inputQtys": [ + "113277766234905405030400", + "61398094761508909088768", + "11017595648790616866816" ], - "redemptionFee": "5954888611546", + "expectedQty": "187375765820034448624655", "reserves": [ - "21737443634728118904692166", - "58365496368338564390165111", - "21542103822484949615386904" + "399410579984326924619533697", + "110292788238686729126807963", + "618171489883073632156395709" ], - "mAssetSupply": "101527110472145049822334673" + "mAssetSupply": "1124949237709840101914287383" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "195610785135969389510656", - "expectedQty": "194407688623577213208281", - "swapFee": "117366471081581633706", + "inputQty": "6907396409779494844366848", + "expectedQty": "6846277447835165888587271", "reserves": [ - "21737443634728118904692166", - "58365496368338564390165111", - "21347696133861372402178623" - ], - "mAssetSupply": "101331617053480162014457723" + "399410579984326924619533697", + "110292788238686729126807963", + "625078886292853127000762557" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "55311513280220634284032", - "expectedQty": "55616807132293032509457", - "swapFee": "33186907968132380570", + "type": "swap", + "inputIndex": 2, + "inputQty": "203964186338694234112", + "outputIndex": 0, + "expectedQty": "202729311484006114285", + "swapFee": "121287753857685271", "reserves": [ - "21737443634728118904692166", - "58309879561206271357655654", - "21347696133861372402178623" + "399410377255015440613419412", + "110292788238686729126807963", + "625079090257039465694996669" ], - "mAssetSupply": "101276338727107909512554261" + "mAssetSupply": "1131795515278963021660559925", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "1191457161912822530048", - "1241632845615045541888", - "1285179260478798430208" + "1123052996472544709050368", + "553304044728233909813248", + "104660796696032383598592" ], - "expectedQty": "3724299923879802417330", - "swapFee": "2235921507232220782", + "expectedQty": "1796188547034870267564992", + "swapFee": "1078360144307506664537", "reserves": [ - "21736252177566206082162118", - "58308637928360656312113766", - "21346410954600893603748415" + "398287324258542895904369044", + "109739484193958495216994715", + "624974429460343433311398077" ], - "mAssetSupply": "101272614427184029710136931" + "mAssetSupply": "1129999326731928151392994933" }, { - "type": "redeemMasset", - "inputQty": "65241460651957479171686", - "expectedQtys": [ - "13998645317196649802007", - "37552101191133445000157", - "13747578621533909695926" + "type": "mintMulti", + "inputQtys": [ + "3174492057257963383947264", + "4001897473175072618315776", + "4875122175504938463920128" ], - "redemptionFee": "19572438195587243751", + "expectedQty": "12138950575591476103030670", "reserves": [ - "21722253532249009432360111", - "58271085827169522867113609", - "21332663375979359694052489" + "401461816315800859288316308", + "113741381667133567835310491", + "629849551635848371775318205" ], - "mAssetSupply": "101207392538970267818208996" + "mAssetSupply": "1142138277307519627496025603" }, { "type": "swap", "inputIndex": 2, - "inputQty": "36806329693567958646784", + "inputQty": "36939162776519529447030784", "outputIndex": 1, - "expectedQty": "37217304531196075294896", - "swapFee": "22208138854922909709", + "expectedQty": "34726784652114817519607109", + "swapFee": "21962845446214265203560", "reserves": [ - "21722253532249009432360111", - "58233868522638326791818713", - "21369469705672927652699273" + "401461816315800859288316308", + "79014597015018750315703382", + "666788714412367901222348989" ], - "mAssetSupply": "101207414747109122741118705", + "mAssetSupply": "1142160240152965841761229163", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "150277756324764320", - "41199271037392424", - "3388716646649400" + "8840508582349608960", + "9675814985232846848", + "6634017417937490944" ], - "expectedQty": "195432635038591149", + "expectedQty": "25753575359088126566", + "swapFee": "15461422068694092", "reserves": [ - "21722253682526765757124431", - "58233868563837597829211137", - "21369469709061644299348673" + "401461807475292276938707348", + "79014587339203765082856534", + "666788707778350483284858045" ], - "mAssetSupply": "101207414942541757779709854" + "mAssetSupply": "1142160214399390482673102597" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "539013459748958429511680", - "expectedQty": "535579286237446249626710", - "swapFee": "323408075849375057707", + "inputIndex": 1, + "inputQty": "495016209949749478948864", + "expectedQty": "459357348671624841208461", + "swapFee": "297009725969849687369", "reserves": [ - "21722253682526765757124431", - "58233868563837597829211137", - "20833890422824198049721963" + "401461807475292276938707348", + "78555229990532140241648073", + "666788707778350483284858045" ], - "mAssetSupply": "100668724890868648725255881" + "mAssetSupply": "1141665495199166703043841102" }, { "type": "redeemMasset", - "inputQty": "3520670326046223604121", + "inputQty": "71216553955081079226368", "expectedQtys": [ - "759460805425069182170", - "2035992276348613347751", - "728401547643430361584" + "25035484890467325055254", + "4898768044370423633527", + "41581486228292114460510" ], - "redemptionFee": "1056201097813867081", + "redemptionFee": "21364966186524323767", "reserves": [ - "21721494221721340687942261", - "58231832571561249215863386", - "20833162021276554619360379" + "401436771990401809613652094", + "78550331222487769818014546", + "666747126292122191170397535" ], - "mAssetSupply": "100665205276743700315518841" + "mAssetSupply": "1141594300010177808488938501" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "926526768262389858041856", - "expectedQty": "920095489030353413071714", - "swapFee": "555916060957433914825", + "inputIndex": 1, + "inputQty": "24506789826652164096", + "expectedQty": "22732107304298577892", + "swapFee": "14704073895991298", + "reserves": [ + "401436771990401809613652094", + "78550308490380465519436654", + "666747126292122191170397535" + ], + "mAssetSupply": "1141594275518092055732765703" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "3686491966733208269094912", + "outputIndex": 1, + "expectedQty": "3388576721083725410271174", + "swapFee": "2199604109604101221845", "reserves": [ - "21721494221721340687942261", - "58231832571561249215863386", - "19913066532246201206288665" + "405123263957135017882747006", + "75161731769296740109165480", + "666747126292122191170397535" ], - "mAssetSupply": "99739234424542267891391810" + "mAssetSupply": "1141596475122201659833987548", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2344973137506747", - "3023642443528798", - "2596463427922735" + "1844363833055508204355584", + "2660416390671236826398720", + "898143272423524963188736" ], - "expectedQty": "7975278112256318", + "expectedQty": "5598214593574968590691080", "reserves": [ - "21721494224066313825449008", - "58231832574584891659392184", - "19913066534842664634211400" + "406967627790190526087102590", + "77822148159967976935564200", + "667645269564545716133586271" ], - "mAssetSupply": "99739234432517546003648128" + "mAssetSupply": "1147194689715776628424678628" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "407668543454192271360", - "expectedQty": "405057204876844532825", + "inputIndex": 2, + "inputQty": "161342703882889166848", + "expectedQty": "159145077096796996268", "reserves": [ - "21721494224066313825449008", - "58232240243128345851663544", - "19913066534842664634211400" + "406967627790190526087102590", + "77822148159967976935564200", + "667645430907249599022753119" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "194467382854751291965440", - "expectedQty": "195447532996625740083821", - "reserves": [ - "21915961606921065117414448", - "58232240243128345851663544", - "19913066534842664634211400" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "4595733388205228032000", - "19231418321811066060800", - "12189560483554256748544" - ], - "expectedQty": "36000100060508594167350", - "swapFee": "21613027853016966680", - "reserves": [ - "21911365873532859889382448", - "58213008824806534785602744", - "19900876974359110377462856" - ], - "mAssetSupply": "99899086922658539994097424" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "7959203316067012182016", - "8933412992125501440000", - "14151190326740682539008" - ], - "expectedQty": "31122893637802495374607", - "swapFee": "18684947150972080473", + "inputQty": "9644236536831646105600", + "expectedQty": "9694146556264033933937", + "swapFee": "5786541922098987663", "reserves": [ - "21903406670216792877200432", - "58204075411814409284162744", - "19886725784032369694923848" + "406957933643634262053168653", + "77822148159967976935564200", + "667645430907249599022753119" ], - "mAssetSupply": "99867964029020737498722817" + "mAssetSupply": "1147185210410858815674556959" }, { "type": "mintMulti", "inputQtys": [ - "31510375999104847872", - "23637771301815517184", - "27463072337684750336" - ], - "expectedQty": "82804555443966052823", - "reserves": [ - "21903438180592791982048304", - "58204099049585711099679928", - "19886753247104707379674184" - ], - "mAssetSupply": "99868046833576181464775640" - }, - { - "type": "redeemMasset", - "inputQty": "12826936877057582930329", - "expectedQtys": [ - "2812408389195480890298", - "7473424724601358621834", - "2553465405973267864688" + "7646601794049119", + "12131842268867900", + "3451005275906786" ], - "redemptionFee": "3848081063117274879", + "expectedQty": "24103751340718867", "reserves": [ - "21900625772203596501158006", - "58196625624861109741058094", - "19884199781698734111809496" + "406957933651280863847217772", + "77822148172099819204432100", + "667645430910700604298659905" ], - "mAssetSupply": "99855223744780186999120190" + "mAssetSupply": "1147185210434962567015275826" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "12003915124744755200", - "outputIndex": 2, - "expectedQty": "11974738728300552851", - "swapFee": "7238162761414894", + "type": "redeem", + "inputIndex": 1, + "inputQty": "8547208349240541325557760", + "expectedQty": "7849118142356434961332139", + "swapFee": "5128325009544324795334", "reserves": [ - "21900637776118721245913206", - "58196625624861109741058094", - "19884187806960005811256645" + "406957933651280863847217772", + "69973030029743384243099961", + "667645430910700604298659905" ], - "mAssetSupply": "99855223752018349760535084", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1138643130410731570014513400" }, { - "type": "redeemBassets", - "inputQtys": [ - "1412296197627905310720", - "1898592320490379411456", - "943214517332726120448" - ], - "expectedQty": "4255462708347062170300", - "swapFee": "2554810511315026317", + "type": "mint", + "inputIndex": 2, + "inputQty": "9061418773986455552", + "expectedQty": "8924487407855538933", "reserves": [ - "21899225479921093340602486", - "58194727032540619361646638", - "19883244592442673085136197" - ], - "mAssetSupply": "99850968289310002698364784" + "406957933651280863847217772", + "69973030029743384243099961", + "667645439972119378285115457" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "52359609745139472269312", - "expectedQty": "52663407952910206229839", - "swapFee": "31415765847083683361", + "type": "mint", + "inputIndex": 0, + "inputQty": "89124843470262080897024000", + "expectedQty": "88403122599075269768041979", "reserves": [ - "21899225479921093340602486", - "58142063624587709155416799", - "19883244592442673085136197" - ], - "mAssetSupply": "99798640095330710309778833" + "496082777121542944744241772", + "69973030029743384243099961", + "667645439972119378285115457" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "680427814855710561271808", + "inputIndex": 2, + "inputQty": "8065598976294479986688", "outputIndex": 0, - "expectedQty": "672064477754376573478619", - "swapFee": "405637055776230306445", + "expectedQty": "8019573990608879061735", + "swapFee": "4769097892923250865", "reserves": [ - "21227161002166716767123867", - "58822491439443419716688607", - "19883244592442673085136197" + "496074757547552335865180037", + "69973030029743384243099961", + "667653505571095672765102145" ], - "mAssetSupply": "99799045732386486540085278", + "mAssetSupply": "1227046266703392140561345177", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "97932451924888485101568", - "248615846884492642877440", - "106744875088306753241088" + "7878257484777287319552", + "19208093217184160940032", + "15496335893115902623744" ], - "expectedQty": "452929873161320142137573", - "swapFee": "271921076542717715912", + "expectedQty": "44404705348332473120188", "reserves": [ - "21129228550241828282022299", - "58573875592558927073811167", - "19776499717354366331895109" + "496082635805037113152499589", + "69992238122960568404039993", + "667669001906988788667725889" ], - "mAssetSupply": "99346115859225166397947705" + "mAssetSupply": "1227090671408740473034465365" }, { "type": "mintMulti", "inputQtys": [ - "286703521760465780736", - "5572594658026912219136", - "20306020620813186629632" + "2245052669021682432", + "36191628447945838592", + "3006727689155278848" ], - "expectedQty": "26269971091118365192462", + "expectedQty": "45374809428277642946", "reserves": [ - "21129515253763588747803035", - "58579448187216953986030303", - "19796805737975179518524741" + "496082638050089782174182021", + "69992274314589016349878585", + "667669004913716477823004737" ], - "mAssetSupply": "99372385830316284763140167" + "mAssetSupply": "1227090716783549901312108311" + }, + { + "type": "mintMulti", + "inputQtys": [ + "229333234754920468447232", + "1572301269838901809250304", + "1461892432320757711765504" + ], + "expectedQty": "3410528793450983665133062", + "reserves": [ + "496311971284844702642629253", + "71564575584427918159128889", + "669130897346037235534770241" + ], + "mAssetSupply": "1230501245577000884977241373" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "387046888542407319617536", - "expectedQty": "384604818557234002019396", - "swapFee": "232228133125444391770", + "inputIndex": 2, + "inputQty": "60142643211290054299222016", + "expectedQty": "60927477422790556847946094", + "swapFee": "36085585926774032579533", "reserves": [ - "20744910435206354745783639", - "58579448187216953986030303", - "19796805737975179518524741" + "496311971284844702642629253", + "71564575584427918159128889", + "608203419923246678686824147" ], - "mAssetSupply": "98985571169907002887914401" + "mAssetSupply": "1170394687951637604710598890" }, { "type": "mintMulti", "inputQtys": [ - "21411205330976624345088", - "6402924513294612955136", - "12054972267262405246976" + "14551384893653024698793984", + "3700693855450425213321216", + "18437631670702995144704000" ], - "expectedQty": "40034566985835776784863", + "expectedQty": "36663745647821098857589579", "reserves": [ - "20766321640537331370128727", - "58585851111730248598985439", - "19808860710242441923771717" + "510863356178497727341423237", + "75265269439878343372450105", + "626641051593949673831528147" ], - "mAssetSupply": "99025605736892838664699264" + "mAssetSupply": "1207058433599458703568188469" }, { "type": "redeemMasset", - "inputQty": "273947965634644", + "inputQty": "235989073875522446111539", "expectedQtys": [ - "57431457826981", - "162025364704604", - "54783498405421" + "99847695435105596853342", + "14710516244677255595582", + "122476321916550292813390" ], - "redemptionFee": "82184389690", + "redemptionFee": "70796722162656733833", "reserves": [ - "20766321640479899912301746", - "58585851111568223234280835", - "19808860710187658425366296" + "510763508483062621744569895", + "75250558923633666116854523", + "626518575272033123538714757" ], - "mAssetSupply": "99025605736618972883454310" + "mAssetSupply": "1206822515322305343778810763" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "4701631303823863578624", - "expectedQty": "4730523782744923949990", - "swapFee": "2820978782294318147", + "inputQty": "6823631609363316416184320", + "outputIndex": 0, + "expectedQty": "7449550786242928695616346", + "swapFee": "4435292766380002907081", "reserves": [ - "20766321640479899912301746", - "58581120587785478310330845", - "19808860710187658425366296" + "503313957696819693048953549", + "82074190532996982533038843", + "626518575272033123538714757" ], - "mAssetSupply": "99020906926293931314193833" + "mAssetSupply": "1206826950615071723781717844", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "269545463769613", - "expectedQty": "267808628565376", - "swapFee": "161727278261", + "type": "redeemMasset", + "inputQty": "1896414877221", + "expectedQtys": [ + "790673202300", + "128933167980", + "984219572367" + ], + "redemptionFee": "568924463", "reserves": [ - "20766321640212091283736370", - "58581120587785478310330845", - "19808860710187658425366296" + "503313957696818902375751249", + "82074190532996853599870863", + "626518575272032139319142390" ], - "mAssetSupply": "99020906926024547577702481" + "mAssetSupply": "1206826950615069827935765086" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "1398797717382411807883264", - "expectedQty": "1388972989244303280451565", - "swapFee": "839278630429447084729", + "inputQty": "159620846495097401490014208", + "expectedQty": "158019195257575687285104827", + "reserves": [ + "662934804191916303865765457", + "82074190532996853599870863", + "626518575272032139319142390" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1318428673041382244352", + "3918210571202840231936", + "1400827459391588925440" + ], + "expectedQty": "6986659127847903531031", + "swapFee": "4194512184019153610", "reserves": [ - "19377348650967788003284805", - "58581120587785478310330845", - "19808860710187658425366296" + "662933485763243262483521105", + "82070272322425650759638927", + "626517174444572747730216950" ], - "mAssetSupply": "97622948487272565216903946" + "mAssetSupply": "1364839159213517667317338882" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "12226181415286243065856", - "expectedQty": "12132691665326468199421", - "swapFee": "7335708849171745839", + "type": "mintMulti", + "inputQtys": [ + "5249928655491804608593920", + "4768862199595688391606272", + "3647690878018117418614784" + ], + "expectedQty": "14008103818142770371096481", "reserves": [ - "19365215959302461535085384", - "58581120587785478310330845", - "19808860710187658425366296" + "668183414418735067092115025", + "86839134522021339151245199", + "630164865322590865148831734" ], - "mAssetSupply": "97610729641566128145583929" + "mAssetSupply": "1378847263031660437688435363" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "21689637311081264764157952", + "expectedQty": "21461100989071321643989995", + "reserves": [ + "668183414418735067092115025", + "86839134522021339151245199", + "651854502633672129912989686" + ] }, { "type": "redeemBassets", "inputQtys": [ - "944828736150104541495296", - "314780385500647770816512", - "93377970521709886832640" + "513911741205958075875328", + "417405013672421725569024", + "51693379866455378493440" ], - "expectedQty": "1358457246742857130485566", - "swapFee": "815563686257468759547", + "expectedQty": "1014808537932901480979157", + "swapFee": "609250673163639072030", "reserves": [ - "18420387223152356993590088", - "58266340202284830539514333", - "19715482739665948538533656" + "667669502677529109016239697", + "86421729508348917425676175", + "651802809253805674534496246" ], - "mAssetSupply": "96252272394823271015098363" + "mAssetSupply": "1399293555482798857851446201" }, { - "type": "redeemMasset", - "inputQty": "715906345678082452488192", - "expectedQtys": [ - "136966282387535728123526", - "433244095748635932541384", - "146596070083349187346208" + "type": "redeemBassets", + "inputQtys": [ + "7935779113901159874560", + "8476038937032782774272", + "5890241404239394897920" ], - "redemptionFee": "214771903703424735746", + "expectedQty": "22926492985314908619538", + "swapFee": "13764154283759200692", "reserves": [ - "18283420940764821265466562", - "57833096106536194606972949", - "19568886669582599351187448" + "667661566898415207856365137", + "86413253469411884642901903", + "651796919012401435139598326" ], - "mAssetSupply": "95536580821048891987345917" + "mAssetSupply": "1399270628989813542942826663" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "55757327328504186929152", - "expectedQty": "55350228114693897179319", + "inputIndex": 2, + "inputQty": "167690056275612434432", + "expectedQty": "165875930753305544005", "reserves": [ - "18283420940764821265466562", - "57888853433864698793902101", - "19568886669582599351187448" + "667661566898415207856365137", + "86413253469411884642901903", + "651797086702457710752032758" ] }, { "type": "mintMulti", "inputQtys": [ - "2195183512349389881344", - "2695780495443939557376", - "3387198301705735766016" + "1328286920383189", + "2570684680856699", + "1914507456922143" ], - "expectedQty": "8298095707009356659589", + "expectedQty": "6013564619481983", "reserves": [ - "18285616124277170655347906", - "57891549214360142733459477", - "19572273867884305086953464" + "667661566899743494776748326", + "86413253471982569323758602", + "651797086704372218208954901" ], - "mAssetSupply": "95600229144870595241184825" + "mAssetSupply": "1399270794871757860867852651" }, { - "type": "redeem", + "type": "redeemBassets", + "inputQtys": [ + "15425330158455100", + "39910470007538008", + "69033043212385112" + ], + "expectedQty": "127108103683305333", + "swapFee": "76310648599142", + "reserves": [ + "667661566884318164618293226", + "86413253432072099316220594", + "651797086635339174996569789" + ], + "mAssetSupply": "1399270794744649757184547318" + }, + { + "type": "swap", "inputIndex": 0, - "inputQty": "6397357692577970072322048", - "expectedQty": "6310369171256977837680599", - "swapFee": "3838414615546782043393", + "inputQty": "1125906887732493287424", + "outputIndex": 1, + "expectedQty": "1019204896955434862737", + "swapFee": "667984420983189937", "reserves": [ - "11975246953020192817667307", - "57891549214360142733459477", - "19572273867884305086953464" + "667662692791205897111580650", + "86412234227175143881357857", + "651797086635339174996569789" ], - "mAssetSupply": "89206709866908171950906170" + "mAssetSupply": "1399270795412634178167737255", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3942904485354544824320", - "expectedQty": "4025481853808973438587", + "inputIndex": 2, + "inputQty": "2801819023619472136077312", + "expectedQty": "2771426418243484585948800", "reserves": [ - "11979189857505547362491627", - "57891549214360142733459477", - "19572273867884305086953464" + "667662692791205897111580650", + "86412234227175143881357857", + "654598905658958647132647101" ] }, { - "type": "redeemMasset", - "inputQty": "8521796708484844303155", - "expectedQtys": [ - "1143960926146683177981", - "5528393075248916080177", - "1869067675446606155727" + "type": "mintMulti", + "inputQtys": [ + "278216745999947008", + "289920507335474112", + "558919271515488128" ], - "redemptionFee": "2556539012545453290", + "expectedQty": "1144553888138843150", "reserves": [ - "11978045896579400679313646", - "57886020821284893817379300", - "19570404800208858480797737" + "667662693069422643111527658", + "86412234517095651216831969", + "654598906217877918648135229" ], - "mAssetSupply": "89202216108592508625494892" + "mAssetSupply": "1402042222975431550892529205" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "191128206873393392254976", - "470908972307783427817472", - "276686306991778081800192" + "1557904469515537481728", + "2041394988443834253312", + "2023124549858815639552" ], - "expectedQty": "939484156999981808752277", - "swapFee": "564028911546917235592", + "expectedQty": "5770908195527145977018", "reserves": [ - "11786917689706007287058670", - "57415111848977110389561828", - "19293718493217080398997545" + "667664250973892158649009386", + "86414275912084095051085281", + "654600929342427777463774781" ], - "mAssetSupply": "88262731951592526816742615" + "mAssetSupply": "1402047993883627078038506223" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "420113853137171578880", - "expectedQty": "411115314254946446931", - "swapFee": "252068311882302947", + "inputQty": "2341619455571414113845248", + "expectedQty": "2366621615678340738410771", + "swapFee": "1404971673342848468307", "reserves": [ - "11786506574391752340611739", - "57415111848977110389561828", - "19293718493217080398997545" + "665297629358213817910598615", + "86414275912084095051085281", + "654600929342427777463774781" ], - "mAssetSupply": "88262312089807701527466682" + "mAssetSupply": "1399707779399729006773129282" }, { "type": "mint", "inputIndex": 2, - "inputQty": "91874697174951152058368", - "expectedQty": "92401567631331298413789", + "inputQty": "205498573150639418769408", + "expectedQty": "203261709795283864518123", "reserves": [ - "11786506574391752340611739", - "57415111848977110389561828", - "19385593190392031551055913" + "665297629358213817910598615", + "86414275912084095051085281", + "654806427915578416882544189" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "91394065118316593152", - "expectedQty": "93339668555173893754", + "inputIndex": 1, + "inputQty": "110675233952809046041952256", + "expectedQty": "115177271426105429938566666", "reserves": [ - "11786597968456870657204891", - "57415111848977110389561828", - "19385593190392031551055913" + "665297629358213817910598615", + "197089509864893141093037537", + "654806427915578416882544189" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "150882450522004214775808", - "outputIndex": 2, - "expectedQty": "148367467618571068907944", - "swapFee": "89591641354566366620", + "type": "mintMulti", + "inputQtys": [ + "10186193832206934212608", + "6945891971386265567232", + "3009780472750153400320" + ], + "expectedQty": "20209331847953852020333", "reserves": [ - "11786597968456870657204891", - "57565994299499114604337636", - "19237225722773460482147969" + "665307815552046024844811223", + "197096455756864527358604769", + "654809437696051167035944509" ], - "mAssetSupply": "88354896588748942566140845", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1515108521867477674428234404" }, { "type": "redeemMasset", - "inputQty": "29938350841598168268", + "inputQty": "40688993353207250314854", "expectedQtys": [ - "3992596420082148413", - "19499925540324544994", - "6516424735840313435" + "17861812327404805318932", + "5291535467991740789705", + "17579957747280316805727" ], - "redemptionFee": "8981505252479450", + "redemptionFee": "12206698005962175094", "reserves": [ - "11786593975860450575056478", - "57565974799573574279792642", - "19237219206348724641834534" + "665289953739718620039492291", + "197091164221396535617815064", + "654791857738303886719138782" ], - "mAssetSupply": "88354866659379606220452027" + "mAssetSupply": "1515067845080822473140094644" }, { "type": "redeemMasset", - "inputQty": "2565913720894393837158", + "inputQty": "6627801963041076019", "expectedQtys": [ - "342191792409890193903", - "1671271967018835385514", - "558500490869914207274" + "2909498246353479038", + "861934549665940521", + "2863587148892181071" ], - "redemptionFee": "769774116268318151", + "redemptionFee": "1988340588912322", "reserves": [ - "11786251784068040684862575", - "57564303527606555444407128", - "19236660705857854727627260" + "665289950830220373686013253", + "197091163359461985951874543", + "654791854874716737826957711" ], - "mAssetSupply": "88352301515432828094933020" + "mAssetSupply": "1515067838455008850687930947" }, { "type": "mint", "inputIndex": 2, - "inputQty": "5110023859807853740032", - "expectedQty": "5140105652294360985478", + "inputQty": "89760993117755744632963072", + "expectedQty": "89340177008540049723125209", "reserves": [ - "11786251784068040684862575", - "57564303527606555444407128", - "19241770729717662581367292" + "665289950830220373686013253", + "197091163359461985951874543", + "744552847992472482459920783" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8051965407696571596800", - "14905064389575763296256", - "11823711241430575874048" + "1286682395310859692802048", + "645240169648429501251584", + "1019114478159007003443200" ], - "expectedQty": "34867016678638236644217", + "expectedQty": "2953754943791974930489471", + "swapFee": "1773316956449054390928", "reserves": [ - "11794303749475737256459375", - "57579208591996131207703384", - "19253594440959093157241340" + "664003268434909513993211205", + "196445923189813556450622959", + "743533733514313475456477583" ], - "mAssetSupply": "88392308637763760692562715" + "mAssetSupply": "1601454260519756925480566685" }, { - "type": "redeemMasset", - "inputQty": "673453560638529204335411", - "expectedQtys": [ - "89832849746247757810552", - "438559537198842008611728", - "146647508257259453500440" + "type": "redeemBassets", + "inputQtys": [ + "21361317731043599450112", + "35704863478997015592960", + "30347195690253270646784" ], - "redemptionFee": "202036068191558761300", + "expectedQty": "87903104157675111189405", + "swapFee": "52773526610571409559", "reserves": [ - "11704470899729489498648823", - "57140649054797289199091656", - "19106946932701833703740900" + "663981907117178470393761093", + "196410218326334559435029999", + "743503386318623222185830799" ], - "mAssetSupply": "87719057113193423046988604" + "mAssetSupply": "1601366357415599250369377280" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2250031005018798682013696", + "expectedQty": "2257869411208960531383332", + "swapFee": "1350018603011279209208", + "reserves": [ + "661724037705969509862377761", + "196410218326334559435029999", + "743503386318623222185830799" + ], + "mAssetSupply": "1599117676429183462966572792" + }, + { + "type": "redeemBassets", "inputQtys": [ - "33199006425151766003712", - "126318238940143871328256", - "284375965997564619128832" + "43542148092906790558105600", + "17792173735781739270242304", + "57312048723917289396633600" ], - "expectedQty": "444927389678825254019721", + "expectedQty": "118538577286298822610950748", + "swapFee": "71165845879306877693186", "reserves": [ - "11737669906154641264652535", - "57266967293737433070419912", - "19391322898699398322869732" + "618181889613062719304272161", + "178618044590552820164787695", + "686191337594705932789197199" ], - "mAssetSupply": "88163984502872248301008325" + "mAssetSupply": "1480579099142884640355622044" }, { - "type": "redeemMasset", - "inputQty": "887747262403216251289", - "expectedQtys": [ - "118154350210251397363", - "576463758412164729248", - "195197954545614083473" + "type": "mintMulti", + "inputQtys": [ + "20142556755793506304", + "70763112799802974208", + "55018290599162478592" ], - "redemptionFee": "266324178720964875", + "expectedQty": "147060813408141797604", "reserves": [ - "11737551751804431013255172", - "57266390829979020905690664", - "19391127700744852708786259" + "618181909755619475097778465", + "178618115353665619967761903", + "686191392612996531951675791" ], - "mAssetSupply": "88163097021934023805721911" + "mAssetSupply": "1480579246203698048497419648" }, { - "type": "redeemMasset", - "inputQty": "24252223941794325961113", - "expectedQtys": [ - "3227839591686279974880", - "15748320220660126437894", - "5332581363084214150707" + "type": "redeemBassets", + "inputQtys": [ + "34839431810215902707712", + "128652995100476394438656", + "146112748352484006690816" ], - "redemptionFee": "7275667182538297788", + "expectedQty": "311438377024088311589423", + "swapFee": "186975211341257741598", "reserves": [ - "11734323912212744733280292", - "57250642509758360779252770", - "19385795119381768494635552" + "618147070323809259195070753", + "178489462358565143573323247", + "686045279864644047944984975" ], - "mAssetSupply": "88138852073659412018058586" + "mAssetSupply": "1480267807826673960185830225" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "149334913970753830912", - "outputIndex": 0, - "expectedQty": "146945459721752358358", - "swapFee": "90105216951746797", + "type": "redeemBassets", + "inputQtys": [ + "775651799620726101639168", + "836333020596134228262912", + "878500513959009929134080" + ], + "expectedQty": "2500505278090550477688605", + "swapFee": "1501203889187842992408", "reserves": [ - "11734176966753022980921934", - "57250642509758360779252770", - "19385944454295739248466464" + "617371418524188533093431585", + "177653129337969009345060335", + "685166779350685038015850895" ], - "mAssetSupply": "88138852163764628969805383", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1477767302548583409708141620" }, { "type": "mint", "inputIndex": 2, - "inputQty": "70883189579247857434624", - "expectedQty": "71279559847815611967287", + "inputQty": "26702211081619364634427392", + "expectedQty": "26556837723085671899365260", "reserves": [ - "11734176966753022980921934", - "57250642509758360779252770", - "19456827643874987105901088" + "617371418524188533093431585", + "177653129337969009345060335", + "711868990432304402650278287" ] }, { - "type": "redeemMasset", - "inputQty": "255107136495190323", - "expectedQtys": [ - "33925516093856852", - "165521416572422530", - "56253022366879477" + "type": "mintMulti", + "inputQtys": [ + "46667092492688161968750592", + "67442161767248852689092608", + "57496947693850152482635776" ], - "redemptionFee": "76532140948557", + "expectedQty": "172339831375799894165153758", "reserves": [ - "11734176932827506887065082", - "57250642344236944206830240", - "19456827587621964739021611" + "664038511016876695062182177", + "245095291105217862034152943", + "769365938126154555132914063" ], - "mAssetSupply": "88210131468581840227530904" + "mAssetSupply": "1676663971647468975772660638" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "38328274020722951585792", - "outputIndex": 2, - "expectedQty": "37699388573784267147866", - "swapFee": "22759667609467297341", + "inputQty": "8936845405655072243712", + "expectedQty": "8811583679927412943284", + "swapFee": "5362107243393043346", "reserves": [ - "11734176932827506887065082", - "57288970618257667158416032", - "19419128199048180471873745" + "664038511016876695062182177", + "245086479521537934621209659", + "769365938126154555132914063" ], - "mAssetSupply": "88210154228249449694828245", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1676655040164170564093460272" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "250785555838722417623040", - "187990508327633871175680", - "166566873791608345591808" + "26285184153141849941344256", + "12683748382002680172642304", + "27354970012730939840397312" ], - "expectedQty": "609791883595312511709273", - "swapFee": "366094787029405150115", + "expectedQty": "66304181121019415291304144", "reserves": [ - "11483391376988784469442042", - "57100980109930033287240352", - "19252561325256572126281937" + "690323695170018545003526433", + "257770227903540614793851963", + "796720908138885494973311375" ], - "mAssetSupply": "87600362344654137183118972" + "mAssetSupply": "1742959221285189979384764416" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2984707400681319424", - "outputIndex": 2, - "expectedQty": "3031998218295013447", - "swapFee": "1830634863621198", + "inputQty": "14647252250055344128", + "outputIndex": 1, + "expectedQty": "14406189518036113601", + "swapFee": "8763265566995529", "reserves": [ - "11483394361696185150761466", - "57100980109930033287240352", - "19252558293258353831268490" + "690323709817270795058870561", + "257770213497351096757738362", + "796720908138885494973311375" ], - "mAssetSupply": "87600362346484772046740170", + "mAssetSupply": "1742959221293953244951759945", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "276931769211245492699136", - "9055811753909536851755008", - "2069104013263206571048960" - ], - "expectedQty": "11329714656085469810396616", - "swapFee": "6801909939615050916788", + "type": "mint", + "inputIndex": 2, + "inputQty": "7510696980581001541451776", + "expectedQty": "7479400465386523118407654", "reserves": [ - "11206462592484939658062330", - "48045168356020496435485344", - "17183454279995147260219530" - ], - "mAssetSupply": "76270647690399302236343554" + "690323709817270795058870561", + "257770213497351096757738362", + "804231605119466496514763151" + ] }, { - "type": "redeemMasset", - "inputQty": "1242189385505836441", - "expectedQtys": [ - "182460397783409949", - "782257599796845181", - "279776055766561583" - ], - "redemptionFee": "372656815651750", + "type": "swap", + "inputIndex": 1, + "inputQty": "218968399376221288267776", + "outputIndex": 2, + "expectedQty": "222694182386803052071574", + "swapFee": "133135914182408967899", "reserves": [ - "11206462410024541874652381", - "48045167573762896638640163", - "17183454000219091493657947" + "690323709817270795058870561", + "257989181896727318046006138", + "804008910937079693462691577" ], - "mAssetSupply": "76270646448582573546158863" + "mAssetSupply": "1750438754895253950479135498", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "85683215856514039808", - "expectedQty": "86099578437003671899", + "inputQty": "11562683063880168538898432", + "expectedQty": "11513607177703839118623475", "reserves": [ - "11206462410024541874652381", - "48045167573762896638640163", - "17183539683434948007697755" + "690323709817270795058870561", + "257989181896727318046006138", + "815571594000959862001590009" ] }, { - "type": "redeemMasset", - "inputQty": "9158013620177134105395", - "expectedQtys": [ - "1345183706470983698620", - "5767170247863469630031", - "2062650705987031988923" + "type": "mintMulti", + "inputQtys": [ + "1239108779753313396588544", + "336717520264382411440128", + "1637194773017694287429632" ], - "redemptionFee": "2747404086053140231", + "expectedQty": "3207092855387921362970969", "reserves": [ - "11205117226318070890953761", - "48039400403515033169010132", - "17181477032728960975708832" + "691562818597024108455459105", + "258325899416991700457446266", + "817208788773977556289019641" ], - "mAssetSupply": "76261577281944919468865598" + "mAssetSupply": "1765159454928345710960729942" }, { - "type": "redeemMasset", - "inputQty": "23626058376758660431872", - "expectedQtys": [ - "3470336482851106801167", - "14878281098482641874010", - "5321274679385058909185" + "type": "redeemBassets", + "inputQtys": [ + "21617282600809483860967424", + "40273799042149413149474816", + "60820307074952476865069056" ], - "redemptionFee": "7087817513027598129", + "expectedQty": "122982977974254500935828068", + "swapFee": "73834087236894837463975", "reserves": [ - "11201646889835219784152594", - "48024522122416550527136122", - "17176155758049575916799647" + "669945535996214624594491681", + "218052100374842287307971450", + "756388481699025079423950585" ], - "mAssetSupply": "76237958311385673836031855" + "mAssetSupply": "1642176476954091210024901874" }, { - "type": "redeemMasset", - "inputQty": "260475598122417266255462", - "expectedQtys": [ - "38260210681012556990838", - "164031981397838435594041", - "58666671468567495956622" - ], - "redemptionFee": "78142679436725179876", + "type": "swap", + "inputIndex": 0, + "inputQty": "159080698532176615964672", + "outputIndex": 1, + "expectedQty": "155752805596034441392702", + "swapFee": "95108579896787112925", "reserves": [ - "11163386679154207227161756", - "47860490141018712091542081", - "17117489086581008420843025" + "670104616694746801210456353", + "217896347569246252866578748", + "756388481699025079423950585" ], - "mAssetSupply": "75977560855942693294956269" + "mAssetSupply": "1642176572062671106812014799", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "950983018938669184581632", - "expectedQty": "933647599029819472328808", - "swapFee": "570589811363201510748", + "inputIndex": 2, + "inputQty": "16972156808397684998144", + "expectedQty": "17042113521949927656524", + "swapFee": "10183294085038610998", "reserves": [ - "10229739080124387754832948", - "47860490141018712091542081", - "17117489086581008420843025" + "670104616694746801210456353", + "217896347569246252866578748", + "756371439585503129496294061" ], - "mAssetSupply": "75027148426815387311885385" + "mAssetSupply": "1642159610089156794165627653" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "329519222148432400482304", - "expectedQty": "335798808273020984877762", + "inputIndex": 1, + "inputQty": "3816402969760918696624128", + "expectedQty": "3880635420869887357872079", "reserves": [ - "10559258302272820155315252", - "47860490141018712091542081", - "17117489086581008420843025" + "670104616694746801210456353", + "221712750539007171563202876", + "756371439585503129496294061" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "674634044698641911775232", - "190624054227648661946368", - "286688579829498569031680" - ], - "expectedQty": "1164736736638725650745586", - "swapFee": "699261598942600951017", + "type": "swap", + "inputIndex": 1, + "inputQty": "3572385981305022226366464", + "outputIndex": 2, + "expectedQty": "3644726221052501568172369", + "swapFee": "2178298636135316097960", "reserves": [ - "9884624257574178243540020", - "47669866086791063429595713", - "16830800506751509851811345" + "670104616694746801210456353", + "225285136520312193789569340", + "752726713364450627928121692" ], - "mAssetSupply": "74198210498449682646017561" + "mAssetSupply": "1646042423808662816839597692", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "244373366940035583049728", - "expectedQty": "241923912873872326283922", + "inputQty": "32556730004837171200", + "expectedQty": "33074897586142146788", "reserves": [ - "9884624257574178243540020", - "47914239453731099012645441", - "16830800506751509851811345" + "670104616694746801210456353", + "225285169077042198626740540", + "752726713364450627928121692" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "236623640060871093256192", - "250821059428532984217600", - "463982801534122635296768" + "367400292611860738342912", + "702396584638340348772352", + "277764309003891086721024" ], - "expectedQty": "956069791320553586838375", + "expectedQty": "1356268670839277162823030", + "swapFee": "814249752354979285264", "reserves": [ - "10121247897635049336796212", - "48165060513159631996863041", - "17294783308285632487108113" + "669737216402134940472113441", + "224582772492403858277968188", + "752448949055446736841400668" ], - "mAssetSupply": "75396204202644108559139858" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7970490858829792", - "expectedQty": "8133460558228059", - "reserves": [ - "10121247905605540195626004", - "48165060513159631996863041", - "17294783308285632487108113" - ] + "mAssetSupply": "1644686188212721125818921450" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "342915697570779735523328", - "expectedQty": "339545588194260621462931", + "type": "swap", + "inputIndex": 2, + "inputQty": "6574766883811202709848064", + "outputIndex": 0, + "expectedQty": "6563146797199952937450144", + "swapFee": "3926985635743475979771", "reserves": [ - "10121247905605540195626004", - "48507976210730411732386369", - "17294783308285632487108113" - ] + "663174069604934987534663297", + "224582772492403858277968188", + "759023715939257939551248732" + ], + "mAssetSupply": "1644690115198356869294901221", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "137322020015283323797504", - "expectedQty": "135962836693487157890205", + "type": "redeemBassets", + "inputQtys": [ + "709889660274692325376", + "773548872031228526592", + "1419071816991052136448" + ], + "expectedQty": "2906032918375856617040", + "swapFee": "1744666550956087622", "reserves": [ - "10121247905605540195626004", - "48645298230745695056183873", - "17294783308285632487108113" - ] + "663173359715274712842337921", + "224581998943531827049441596", + "759022296867440948499112284" + ], + "mAssetSupply": "1644687209165438493438284181" }, { - "type": "redeemMasset", - "inputQty": "1962952100477226136371", - "expectedQtys": [ - "261778255536200836399", - "1258173046411609522390", - "447316205130413634200" + "type": "mintMulti", + "inputQtys": [ + "32304760322593875050889216", + "37029811140307313978507264", + "616942045999575089545216" ], - "redemptionFee": "588885630143167840", + "expectedQty": "70365849310638071486415020", "reserves": [ - "10120986127350003994789605", - "48644040057699283446661483", - "17294335992080502073473913" + "695478120037868587893227137", + "261611810083839141027948860", + "759639238913440523588657500" ], - "mAssetSupply": "75869750272450469813752522" + "mAssetSupply": "1715053058476076564924699201" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5332734158427140096", - "expectedQty": "5279845062515207602", + "type": "redeemBassets", + "inputQtys": [ + "17785906984754509512704", + "3590042262707389857792", + "5681112363928045748224" + ], + "expectedQty": "27027417427997742049535", + "swapFee": "16226186168499745076", "reserves": [ - "10120986127350003994789605", - "48644045390433441873801579", - "17294335992080502073473913" - ] + "695460334130883833383714433", + "261608220041576433638091068", + "759633557801076595542909276" + ], + "mAssetSupply": "1715026031058648567182649666" }, { - "type": "mintMulti", - "inputQtys": [ - "5114901599432346697728", - "15070755505390110113792", - "18303137464550623805440" + "type": "redeemMasset", + "inputQty": "96212096772061689544704", + "expectedQtys": [ + "39003270065906601584530", + "14671686589421560041573", + "42602275574878313408980" ], - "expectedQty": "38532486111523605860893", + "redemptionFee": "28863629031618506863", "reserves": [ - "10126101028949436341487333", - "48659116145938831983915371", - "17312639129545052697279353" + "695421330860817926782129903", + "261593548354987012078049495", + "759590955525501717229500296" ], - "mAssetSupply": "75908288038407055934821017" + "mAssetSupply": "1714929847825505537111611825" }, { "type": "mintMulti", "inputQtys": [ - "827775218569272017027072", - "1636071015809919249022976", - "968643809266224949362688" + "362126893554044032", + "449330931564120576", + "1033843097691202944" ], - "expectedQty": "3437580007741513279472394", + "expectedQty": "1845882026042483529", "reserves": [ - "10953876247518708358514405", - "50295187161748751232938347", - "18281282938811277646642041" + "695421331222944820336173935", + "261593548804317943642170071", + "759590956559344814920703240" ], - "mAssetSupply": "79345868046148569214293411" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "22623708646651035648", - "expectedQty": "23053430407234256308", - "reserves": [ - "10953898871227355009550053", - "50295187161748751232938347", - "18281282938811277646642041" - ] + "mAssetSupply": "1714929849671387563154095354" }, { "type": "redeemMasset", - "inputQty": "57104899504392149401", + "inputQty": "3120748867686585964953", "expectedQtys": [ - "7881109269409465723", - "36186372579020214666", - "13153014293769836571" + "1265115457518709724838", + "475892854188879877322", + "1381853298696949006596" ], - "redemptionFee": "17131469851317644", + "redemptionFee": "936224660305975789", "reserves": [ - "10953890990118085600084330", - "50295150975376172212723681", - "18281269785796983876805470" + "695420066107487301626449097", + "261593072911463754762292749", + "759589574706046117971696644" ], - "mAssetSupply": "79345834011810941907717962" + "mAssetSupply": "1714926729858744536874106190" }, { "type": "redeemMasset", - "inputQty": "17014128523766044976742", + "inputQty": "81492288696429199962931", "expectedQtys": [ - "2348138376624989800425", - "10781554633871286227801", - "3918876972227568406924" + "33036030282967248288809", + "12427016561212988470163", + "36084412020311959820977" ], - "redemptionFee": "5104238557129813493", + "redemptionFee": "24447686608928759988", "reserves": [ - "10951542851741460610283905", - "50284369420742300926495880", - "18277350908824756308398546" + "695387030077204334378160288", + "261580645894902541773822586", + "759553490294025806011875667" ], - "mAssetSupply": "79328824987525732992554713" + "mAssetSupply": "1714845262017734716602903247" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "35888919417747262144512", - "expectedQty": "36208185193140156003735", - "swapFee": "21533351650648357286", + "type": "swap", + "inputIndex": 2, + "inputQty": "1107611621999478231269376", + "outputIndex": 0, + "expectedQty": "1106074137486751431936341", + "swapFee": "662092082195578242840", "reserves": [ - "10951542851741460610283905", - "50248161235549160770492145", - "18277350908824756308398546" + "694280955939717582946223947", + "261580645894902541773822586", + "760661101916025284243145043" ], - "mAssetSupply": "79292957601459636378767487" + "mAssetSupply": "1714845924109816912181146087", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "20015581940297756672", - "expectedQty": "19631211919618401970", - "swapFee": "12009349164178654", - "reserves": [ - "10951523220529540991881935", - "50248161235549160770492145", - "18277350908824756308398546" + "type": "redeemBassets", + "inputQtys": [ + "1028010506954871406592", + "13425133171454425169920", + "14548998369489184620544" ], - "mAssetSupply": "79292937597887045245189469" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "150848363188773280", - "expectedQty": "151515876227361218", + "expectedQty": "29108972277372264018159", + "swapFee": "17475868887756012018", "reserves": [ - "10951523220529540991881935", - "50248161235549160770492145", - "18277351059673119497171826" - ] + "694279927929210628074817355", + "261567220761731087348652666", + "760646552917655795058524499" + ], + "mAssetSupply": "1714816815137539539917127928" }, { "type": "mintMulti", "inputQtys": [ - "160268162246656851968", - "48973998172072181760", - "270353971836734865408" + "155775719905871", + "48297408182384", + "50279479499838" ], - "expectedQty": "483371623058647727537", + "expectedQty": "254298640037160", "reserves": [ - "10951683488691787648733903", - "50248210209547332842673905", - "18277621413644956232037234" + "694279927929366403794723226", + "261567220761779384756835050", + "760646552917706074538024337" ], - "mAssetSupply": "79293421121025980120278224" + "mAssetSupply": "1714816815137793838557165088" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "482114925608891523792896", - "outputIndex": 2, - "expectedQty": "474980260180642331933491", - "swapFee": "286528995684164526618", - "reserves": [ - "10951683488691787648733903", - "50730325135156224366466801", - "17802641153464313900103743" + "type": "redeemMasset", + "inputQty": "319830850403395686", + "expectedQtys": [ + "129451450537525557", + "48770322716468241", + "141825790521173485" ], - "mAssetSupply": "79293707650021664284804842", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "12437189326328580", - "expectedQty": "12499894850917236", + "redemptionFee": "95949255121018", "reserves": [ - "10951683488691787648733903", - "50730325135156224366466801", - "17802641165901503226432323" - ] + "694279927799914953257197669", + "261567220713009062040366809", + "760646552775880284016850852" + ], + "mAssetSupply": "1714816814818058937408890420" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "66674912842169188352", - "expectedQty": "66300632688539329003", - "swapFee": "40004947705301513", + "inputIndex": 0, + "inputQty": "177678087721877307392", + "expectedQty": "178093787765248220016", + "swapFee": "106606852633126384", "reserves": [ - "10951683488691787648733903", - "50730325135156224366466801", - "17802574865268814687103320" + "694279749706127188008977653", + "261567220713009062040366809", + "760646552775880284016850852" ], - "mAssetSupply": "79293641027613664671835239" + "mAssetSupply": "1714816637246578068164709412" }, { "type": "redeemBassets", "inputQtys": [ - "6139046977958134784", - "11520284051868344320", - "61160491826895298560" + "304250912512607487262720", + "414929877612766865391616", + "10935562977231849390080" ], - "expectedQty": "79134692628357411291", - "swapFee": "47509321169716276", + "expectedQty": "734263330312050403976503", + "swapFee": "440822491682239586137", "reserves": [ - "10951677349644809690599119", - "50730313614872172498122481", - "17802513704776987791804760" + "693975498793614580521714933", + "261152290835396295174975193", + "760635617212903052167460772" ], - "mAssetSupply": "79293561892921036314423948" + "mAssetSupply": "1714082373916266017760732909" }, { - "type": "redeemMasset", - "inputQty": "288140812179912510773657", - "expectedQtys": [ - "39784800220694394091141", - "184290983733767558923138", - "64672234997289929330572" + "type": "redeemBassets", + "inputQtys": [ + "6616442248671086", + "11353795796020032", + "2373866840184732" ], - "redemptionFee": "86442243653973753232", + "expectedQty": "20455019307692936", + "swapFee": "12280379812503", "reserves": [ - "10911892549424115296507978", - "50546022631138404939199343", - "17737841469779697862474188" + "693975498786998138273043847", + "261152290824042499378955161", + "760635617210529185327276040" ], - "mAssetSupply": "79005507522984777777403523" + "mAssetSupply": "1714082373895810998453039973" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "144919497598514457739264", - "expectedQty": "144095252985673124297850", - "swapFee": "86951698559108674643", + "inputQty": "35273216133991063552", + "expectedQty": "35384412544543006714", + "swapFee": "21163929680394638", "reserves": [ - "10911892549424115296507978", - "50546022631138404939199343", - "17593746216794024738176338" + "693975498786998138273043847", + "261152290824042499378955161", + "760635581826116640784269326" ], - "mAssetSupply": "78860674977084822428338902" + "mAssetSupply": "1714082338643758794142371059" }, { "type": "redeemMasset", - "inputQty": "660462566242498222489", + "inputQty": "3248488435856646549484339", "expectedQtys": [ - "91360294454515617756", - "423198770531252035632", - "147304404588290472239" + "1314811441873813325036831", + "494781185570930453430469", + "1441106159841936485704325" ], - "redemptionFee": "198138769872749466", + "redemptionFee": "974546530756993964845", "reserves": [ - "10911801189129660780890222", - "50545599432367873687163711", - "17593598912389436447704099" + "692660687345124324948007016", + "260657509638471568925524692", + "759194475666274704298565001" ], - "mAssetSupply": "78860014712657349802865879" + "mAssetSupply": "1710834824754432904586851565" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1956033722546847144214528", + "expectedQty": "1979832892544367511375417", + "reserves": [ + "692660687345124324948007016", + "262613543361018416069739220", + "759194475666274704298565001" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1543154790090323613712384", - "1925962901738677507981312", - "1165222948394072411209728" + "1226532426706898326126592", + "188014657203512555864064", + "1404392392632882379620352" ], - "expectedQty": "4654102072592744451972247", - "swapFee": "2794137726191361488076", + "expectedQty": "2812447952063033212092522", + "swapFee": "1688481860354032346663", "reserves": [ - "9368646399039337167177838", - "48619636530629196179182399", - "16428375963995364036494371" + "691434154918417426621880424", + "262425528703814903513875156", + "757790083273641821918944649" ], - "mAssetSupply": "74205912640064605350893632" + "mAssetSupply": "1710002209694914238886134460" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10875206034879454117888", - "4317351866570876387328", - "12629959636085848932352" + "2590067418531764967047168", + "4239671887114211665379328", + "5849166690052623558508544" ], - "expectedQty": "28110013623496292903370", + "expectedQty": "12701200517854250501700585", + "swapFee": "7625295488005353513128", "reserves": [ - "9379521605074216621295726", - "48623953882495767055569727", - "16441005923631449885426723" + "688844087499885661654833256", + "258185856816700691848495828", + "751940916583589198360436105" ], - "mAssetSupply": "74234022653688101643797002" + "mAssetSupply": "1697301009177059988384433875" }, { "type": "redeemBassets", "inputQtys": [ - "150045661456683237376000", - "100846477423064817598464", - "127446424979941678383104" + "34437377268133043403489280", + "36546699637092210712772608", + "18964351499568499763707904" ], - "expectedQty": "381641069275945446185879", - "swapFee": "229122114834467948480", + "expectedQty": "90268876337234743973309202", + "swapFee": "54193842107605409629763", "reserves": [ - "9229475943617533383919726", - "48523107405072702237971263", - "16313559498651508207043619" + "654406710231752618251343976", + "221639157179608481135723220", + "732976565084020698596728201" ], - "mAssetSupply": "73852381584412156197611123" + "mAssetSupply": "1607032132839825244411124673" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "33774271627098042866335744", + "expectedQty": "33654018274639730092787523", + "reserves": [ + "688180981858850661117679720", + "221639157179608481135723220", + "732976565084020698596728201" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "5648262609466530", - "outputIndex": 0, - "expectedQty": "5538446601894799", - "swapFee": "3408121294284", + "inputIndex": 0, + "inputQty": "2414239981894412795904", + "outputIndex": 1, + "expectedQty": "2365017624690836914089", + "swapFee": "1443127664048582690", "reserves": [ - "9229475938079086782024927", - "48523107405072702237971263", - "16313559504299770816510149" + "688183396098832555530475624", + "221636792161983790298809131", + "732976565084020698596728201" ], - "mAssetSupply": "73852381584415564318905407", + "mAssetSupply": "1640686152557592638552494886", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "232369024485586741755904", - "expectedQty": "233649477710508662033277", + "inputQty": "1432730170114296629952512", + "expectedQty": "1426525548516631657186419", "reserves": [ - "9229475938079086782024927", - "48523107405072702237971263", - "16545928528785357558266053" + "688183396098832555530475624", + "221636792161983790298809131", + "734409295254134995226680713" ] }, { - "type": "redeemMasset", - "inputQty": "61552816550783430636339", - "expectedQtys": [ - "7665815013472943688326", - "40302306191784029206348", - "13742711739948654736079" - ], - "redemptionFee": "18465844965235029190", + "type": "redeem", + "inputIndex": 1, + "inputQty": "15420251878425270794846208", + "expectedQty": "15143743111468112632540875", + "swapFee": "9252151127055162476907", "reserves": [ - "9221810123065613838336601", - "48482805098880918208764915", - "16532185817045408903529974" + "688183396098832555530475624", + "206493049050515677666268256", + "734409295254134995226680713" ], - "mAssetSupply": "74024496711420254785331535" + "mAssetSupply": "1626701678378811054577312004" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "2605659182888407531520", - "outputIndex": 2, - "expectedQty": "2561774876302031621717", - "swapFee": "1546247388242544853", + "inputQty": "465429558499484901572608", + "expectedQty": "474235517703756342465251", "reserves": [ - "9221810123065613838336601", - "48485410758063806616296435", - "16529624042169106871908257" - ], - "mAssetSupply": "74024498257667643027876388", - "hardLimitError": false, - "insufficientLiquidityError": false + "688183396098832555530475624", + "206958478609015162567840864", + "734409295254134995226680713" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1392433154445977499729920", - "outputIndex": 0, - "expectedQty": "1334511297107835821004544", - "swapFee": "826106201860742967825", + "type": "redeemMasset", + "inputQty": "1300220821618900454919372", + "expectedQtys": [ + "549738928622556469082746", + "165323855450204566067532", + "586665388081338245499904" + ], + "redemptionFee": "390066246485670136475", "reserves": [ - "7887298825957778017332057", - "49877843912509784116026355", - "16529624042169106871908257" + "687633657170209999061392878", + "206793154753564958001773332", + "733822629866053656981180809" ], - "mAssetSupply": "74025324363869503770844213", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1625876083141142396134994358" }, { - "type": "mintMulti", - "inputQtys": [ - "36153519993453446955008", - "55446938144935635845120", - "3695698214161582915584" - ], - "expectedQty": "95908653896795159370165", + "type": "redeem", + "inputIndex": 0, + "inputQty": "14380067919386469357060096", + "expectedQty": "14429385164529043950697777", + "swapFee": "8628040751631881614236", "reserves": [ - "7923452345951231464287065", - "49933290850654719751871475", - "16533319740383268454823841" + "673204272005680955110695101", + "206793154753564958001773332", + "733822629866053656981180809" ], - "mAssetSupply": "74121233017766298930214378" + "mAssetSupply": "1611504643262507558659548498" }, { - "type": "mintMulti", - "inputQtys": [ - "2714852406346695311360", - "26168620926424770936832", - "6928687532448325566464" - ], - "expectedQty": "35609191598104323204801", + "type": "mint", + "inputIndex": 1, + "inputQty": "35406040442718207868928", + "expectedQty": "36061025266895914520194", "reserves": [ - "7926167198357578159598425", - "49959459471581144522808307", - "16540248427915716780390305" - ], - "mAssetSupply": "74156842209364403253419179" + "673204272005680955110695101", + "206828560794007676209642260", + "733822629866053656981180809" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1446253321933116432973824", - "expectedQty": "1384419321844971918672158", - "swapFee": "867751993159869859784", + "type": "swap", + "inputIndex": 1, + "inputQty": "2704444427194190998274048", + "outputIndex": 2, + "expectedQty": "2765069038267551395864439", + "swapFee": "1652286319187899902601", "reserves": [ - "6541747876512606240926267", - "49959459471581144522808307", - "16540248427915716780390305" + "673204272005680955110695101", + "209533005221201867207916308", + "731057560827786105585316370" ], - "mAssetSupply": "72711456639424446690305139" + "mAssetSupply": "1611542356574093642473971293", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "3628017445518972416", - "16914670984400357376", - "16367377513756526592" + "4097858932902441777102848", + "877433025656831468371968", + "3620227285203059927416832" ], - "expectedQty": "36933359421666438976", - "swapFee": "22173319644786735", + "expectedQty": "8578538868892313154862110", + "swapFee": "5150213449405030911464", "reserves": [ - "6541744248495160721953851", - "49959442556910160122450931", - "16540232060538203023863713" + "669106413072778513333592253", + "208655572195545035739544340", + "727437333542583045657899538" ], - "mAssetSupply": "72711419706065025023866163" + "mAssetSupply": "1602963817705201329319109183" }, { "type": "redeemMasset", - "inputQty": "4934960908990465179648", + "inputQty": "1596725766476162242969", "expectedQtys": [ - "443858300357212432970", - "3389755456307385924471", - "1122257155130021639501" + "666302585645194324675", + "207781220665190613635", + "724389075884628787798" ], - "redemptionFee": "1480488272697139553", + "redemptionFee": "479017729942848672", "reserves": [ - "6541300390194803509520881", - "49956052801453852736526460", - "16539109803383073002224212" + "669105746770192868139267578", + "208655364414324370548930705", + "727436609153507161029111740" ], - "mAssetSupply": "72706486225644307255826068" + "mAssetSupply": "1602962221458452583099714886" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "659167453271573397504", - "expectedQty": "625363130324106895739", - "swapFee": "395500471962944038", + "inputIndex": 2, + "inputQty": "1741291505718728589312", + "expectedQty": "1748381688328128854269", + "swapFee": "1044774903431237153", "reserves": [ - "6540675027064479402625142", - "49956052801453852736526460", - "16539109803383073002224212" + "669105746770192868139267578", + "208655364414324370548930705", + "727434860771818832900257471" ], - "mAssetSupply": "72705827453691507645372602" + "mAssetSupply": "1602960481211721767802362727" }, { - "type": "mintMulti", - "inputQtys": [ - "6173787821021860864", - "15770108363569975296", - "34357338190174224384" - ], - "expectedQty": "56577680406000026967", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1532973923715041384726528", + "expectedQty": "1539203477962845150930439", + "swapFee": "919784354229024830835", "reserves": [ - "6540681200852300424486006", - "49956068571562216306501756", - "16539144160721263176448596" + "669105746770192868139267578", + "208655364414324370548930705", + "725895657293855987749327032" ], - "mAssetSupply": "72705884031371913645399569" + "mAssetSupply": "1601428427072360955442467034" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1028059507842020016128", - "802690023124378058752", - "2431843916836574855168" + "250265626580573073965056", + "405411840551611575304192", + "607756703004559413346304" ], - "expectedQty": "4318568578867397338783", + "expectedQty": "1266892599335141890680226", + "swapFee": "760591914749935095465", "reserves": [ - "6541709260360142444502134", - "49956871261585340684560508", - "16541576004638099751303764" + "668855481143612295065302522", + "208249952573772758973626513", + "725287900590851428335980728" ], - "mAssetSupply": "72710202599950781042738352" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "13183212393716692", - "expectedQty": "13256056899181222", - "reserves": [ - "6541709260360142444502134", - "49956871261585340684560508", - "16541576017821312145020456" - ] + "mAssetSupply": "1600161534473025813551786808" }, { - "type": "redeemBassets", - "inputQtys": [ - "323617598634154075881472", - "206158302700372890746880", - "1713277120544207372550144" - ], - "expectedQty": "2269607431291020557855677", - "swapFee": "1362582007979399974698", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5056999638793553920", + "expectedQty": "4965091962008711799", + "swapFee": "3034199783276132", "reserves": [ - "6218091661725988368620662", - "49750712958884967793813628", - "14828298897277104772470312" + "668855481143612295065302522", + "208249947608680796964914714", + "725287900590851428335980728" ], - "mAssetSupply": "70440595181915817384063897" + "mAssetSupply": "1600161529419060374541509020" }, { "type": "redeemMasset", - "inputQty": "14273434019532538013286", + "inputQty": "7635902505683885699891", "expectedQtys": [ - "1259598882939476264377", - "10078002364323384145919", - "3003768638836443131177" + "3190792276880476113374", + "993461731605170389042", + "3460004585390014986127" ], - "redemptionFee": "4282030205859761403", + "redemptionFee": "2290770751705165709", "reserves": [ - "6216832062843048892356285", - "49740634956520644409667709", - "14825295128638268329339135" + "668852290351335414589189148", + "208248954146949191794525672", + "725284440586266038320994601" ], - "mAssetSupply": "70426326029926490705812014" + "mAssetSupply": "1600153895807325442360974838" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "200060920544874419191808", - "expectedQty": "188555597422455764708445", - "swapFee": "120036552326924651515", + "type": "redeemMasset", + "inputQty": "413804065398109514812620", + "expectedQtys": [ + "172915096156767540932576", + "53837578865059946133452", + "187504222672400019315701" + ], + "redemptionFee": "124141219619432854443", "reserves": [ - "6028276465420593127647840", - "49740634956520644409667709", - "14825295128638268329339135" + "668679375255178647048256572", + "208195116568084131848392220", + "725096936363593638301678900" ], - "mAssetSupply": "70226385145933943211271721" + "mAssetSupply": "1599740215883146952279016661" }, { "type": "redeemBassets", "inputQtys": [ - "611788053033218002124800", - "826417428879840055918592", - "1371103047735865931464704" + "2835425983275059350863872", + "2036635849915400676442112", + "3933417287865974852157440" ], - "expectedQty": "2849135412764532855403411", - "swapFee": "1710507552190033733482", + "expectedQty": "8812778945465847624523071", + "swapFee": "5290841872402950344920", "reserves": [ - "5416488412387375125523040", - "48914217527640804353749117", - "13454192080902402397874431" + "665843949271903587697392700", + "206158480718168731171950108", + "721163519075727663449521460" ], - "mAssetSupply": "67377249733169410355868310" + "mAssetSupply": "1590927436937681104654493590" }, { - "type": "redeemBassets", - "inputQtys": [ - "5609309248026424320", - "7858922839303515136", - "1011994219915180928" - ], - "expectedQty": "14756425010822166735", - "swapFee": "8859170508798579", + "type": "mint", + "inputIndex": 1, + "inputQty": "1552777467638034464768", + "expectedQty": "1580852085570650648655", "reserves": [ - "5416482803078127099098720", - "48914209668717965050233981", - "13454191068908182482693503" - ], - "mAssetSupply": "67377234976744399533701575" + "665843949271903587697392700", + "206160033495636369206414876", + "721163519075727663449521460" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "75261381691762704121856", - "outputIndex": 0, - "expectedQty": "68520242879312473574058", - "swapFee": "44264813792022303435", + "inputIndex": 0, + "inputQty": "2001134813568055975608320", + "outputIndex": 1, + "expectedQty": "1956281026268430515045823", + "swapFee": "1195975339298041104442", "reserves": [ - "5347962560198814625524662", - "48989471050409727754355837", - "13454191068908182482693503" + "667845084085471643673001020", + "204203752469367938691369053", + "721163519075727663449521460" ], - "mAssetSupply": "67377279241558191556005010", + "mAssetSupply": "1590930213765105973346246687", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "78575794360839756", + "inputQty": "1153843596355221094", "expectedQtys": [ - "6234955536741601", - "57114680652595917", - "15685652648688315" + "484218346180071245", + "148057095366486667", + "522876659353470637" ], - "redemptionFee": "23572738308251", + "redemptionFee": "346153078906566", "reserves": [ - "5347962553963859088783061", - "48989470993295047101759920", - "13454191053222529834005188" + "667845083601253297492929775", + "204203752321310843324882386", + "721163518552851004096050823" ], - "mAssetSupply": "67377279163005969933473505" + "mAssetSupply": "1590930212611608530069932159" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "3849959217103486977048576", - "expectedQty": "3921660960248633767519448", - "swapFee": "2309975530262092186229", + "inputQty": "26655934438922985924460544", + "outputIndex": 0, + "expectedQty": "27161937518331694809033920", + "swapFee": "16254465566198311950019", "reserves": [ - "5347962553963859088783061", - "45067810033046413334240472", - "13454191053222529834005188" + "640683146082921602683895855", + "230859686760233829249342930", + "721163518552851004096050823" ], - "mAssetSupply": "63529629921432745048611158" + "mAssetSupply": "1590946467077174728381882178", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "179357815468350240718848", - "1624812624702655374032896", - "3014615133648636495265792" - ], - "expectedQty": "4836266062800704418972911", - "swapFee": "2903501738723656845491", + "type": "mint", + "inputIndex": 2, + "inputQty": "98667502044281126912", + "expectedQty": "98259319109559283658", "reserves": [ - "5168604738495508848064213", - "43442997408343757960207576", - "10439575919573893338739396" - ], - "mAssetSupply": "58693363858632040629638247" + "640683146082921602683895855", + "230859686760233829249342930", + "721163617220353048377177735" + ] }, { - "type": "redeemMasset", - "inputQty": "14598126539829760819", - "expectedQtys": [ - "1285142058049304895", - "10801836457210071619", - "2595736907974205275" - ], - "redemptionFee": "4379437961948928", + "type": "redeem", + "inputIndex": 0, + "inputQty": "382876359281242590412800", + "expectedQty": "383825794428010704993287", + "swapFee": "229725815568745554247", "reserves": [ - "5168603453353450798759318", - "43442986606507300750135957", - "10439573323836985364534121" + "640299320288493591978902568", + "230859686760233829249342930", + "721163617220353048377177735" ], - "mAssetSupply": "58693349264884938761826356" + "mAssetSupply": "1590563918703028164096307283" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "121549258367048515584", - "expectedQty": "113966093476879203337", - "swapFee": "72929555020229109", + "inputIndex": 1, + "inputQty": "285230868096328885338112", + "expectedQty": "281168036238285643672693", + "swapFee": "171138520857797331202", "reserves": [ - "5168489487259973919555981", - "43442986606507300750135957", - "10439573323836985364534121" + "640299320288493591978902568", + "230578518723995543605670237", + "721163617220353048377177735" ], - "mAssetSupply": "58693227788556126733539881" + "mAssetSupply": "1590278858973452693008300373" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "85689660743704356323328", - "expectedQty": "87389861007747960070431", - "swapFee": "51413796446222613793", + "type": "redeemMasset", + "inputQty": "18590831787681626298777", + "expectedQtys": [ + "7483043480716827606873", + "2694722650265390884904", + "8428087510602821431087" + ], + "redemptionFee": "5577249536304487889", "reserves": [ - "5168489487259973919555981", - "43355596745499552790065526", - "10439573323836985364534121" + "640291837245012875151295695", + "230575824001345278214785333", + "721155189132842445555746648" ], - "mAssetSupply": "58607589541608868599830346" + "mAssetSupply": "1590260273718914547686489485" }, { "type": "redeemMasset", - "inputQty": "1335720357671089261772", + "inputQty": "1559532179283406487552", "expectedQtys": [ - "117759245577816598092", - "987817113087079636634", - "237856008375296959239" + "627731305432359971813", + "226052644407085798398", + "707008370185505723415" ], - "redemptionFee": "400716107301326778", + "redemptionFee": "467859653785021946", "reserves": [ - "5168371728014396102957889", - "43354608928386465710428892", - "10439335467828610067574882" + "640291209513707442791323882", + "230575597948700871128986935", + "721154482124472260050023233" ], - "mAssetSupply": "58606254221967304811895352" + "mAssetSupply": "1590258714654594918065023879" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "100541374105264886644736", - "218674157371271547977728", - "92986087860219720761344" + "19690480614399327338496", + "50013270341539638280192", + "59136167217107283476480" ], - "expectedQty": "416037336409059974125837", - "swapFee": "249772265204558719707", + "expectedQty": "129227305932487006927516", "reserves": [ - "5067830353909131216313153", - "43135934771015194162451164", - "10346349379968390346813538" + "640310899994321842118662378", + "230625611219042410767267127", + "721213618291689367333499713" ], - "mAssetSupply": "58190216885558244837769515" + "mAssetSupply": "1590387941960527405071951395" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "1744856965371707260928", - "outputIndex": 2, - "expectedQty": "1680187846240828691480", - "swapFee": "1025650253736105974", + "inputQty": "1126307611988675727982592", + "expectedQty": "1110174419908504313818568", + "swapFee": "675784567193205436789", "reserves": [ - "5067830353909131216313153", - "43137679627980565869712092", - "10344669192122149518122058" + "640310899994321842118662378", + "229515436799133906453448559", + "721213618291689367333499713" ], - "mAssetSupply": "58190217911208498573875489", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1589262310133105922549405592" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3583029704247471505408", - "2766538259526872203264", - "462532128733035560960" + "27480615811975953252352", + "85489357756742619889664", + "90645357319568769417216" ], - "expectedQty": "7005776349106054415400", + "expectedQty": "204348926916950396904019", + "swapFee": "122682965929728074987", "reserves": [ - "5071413383613378687818561", - "43140446166240092741915356", - "10345131724250882553683018" + "640283419378509866165410026", + "229429947441377163833558895", + "721122972934369798564082497" ], - "mAssetSupply": "58197223687557604628290889" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "777115428505640570454016", - "expectedQty": "788901838851870089389325", - "reserves": [ - "5071413383613378687818561", - "43140446166240092741915356", - "11122247152756523124137034" - ] + "mAssetSupply": "1589057961206188972152501573" }, { - "type": "redeemMasset", - "inputQty": "244900631370024670881382", - "expectedQtys": [ - "21049352382494280564739", - "179058259424359299567349", - "46163876200673308568336" + "type": "mintMulti", + "inputQtys": [ + "18742607704541997563904", + "13841893844226114846720", + "9858531172798766776320" ], - "redemptionFee": "73470189411007401264", + "expectedQty": "42537648093800110072922", "reserves": [ - "5050364031230884407253822", - "42961387906815733442348007", - "11076083276555849815568698" + "640302161986214408162973930", + "229443789335221389948405615", + "721132831465542597330858817" ], - "mAssetSupply": "58741298365228861054200096" + "mAssetSupply": "1589100498854282772262574495" }, { "type": "mintMulti", "inputQtys": [ - "170080154260900860133376", - "56622354833897798238208", - "42523257119277393641472" + "15340606936213341863936", + "13382848335633331519488", + "4802548920445038493696" ], - "expectedQty": "279729858224919017438117", + "expectedQty": "33645800676642270401587", "reserves": [ - "5220444185491785267387198", - "43018010261649631240586215", - "11118606533675127209210170" + "640317502593150621504837866", + "229457172183557023279925103", + "721137634014463042369352513" ], - "mAssetSupply": "59021028223453780071638213" + "mAssetSupply": "1589134144654959414532976082" }, { - "type": "mintMulti", - "inputQtys": [ - "51111686215108435968", - "291437811141211095040", - "219875368924249882624" + "type": "redeemMasset", + "inputQty": "412818498118753141653504", + "expectedQtys": [ + "166289051277109041526220", + "59589524441558039441217", + "187277862177504805757632" ], - "expectedQty": "563078804062118093810", + "redemptionFee": "123845549435625942496", "reserves": [ - "5220495297178000375823166", - "43018301699460772451681255", - "11118826409044051459092794" + "640151213541873512463311646", + "229397582659115465240483886", + "720950356152285537563594881" ], - "mAssetSupply": "59021591302257842189732023" + "mAssetSupply": "1588721450002390097017265074" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "577118266122724848959488", - "expectedQty": "539073057690981297122792", - "swapFee": "346270959673634909375", + "inputIndex": 1, + "inputQty": "2508476678020371379650560", + "expectedQty": "2471977339869011388845360", + "swapFee": "1505086006812222827790", "reserves": [ - "4681422239487019078700374", - "43018301699460772451681255", - "11118826409044051459092794" + "640151213541873512463311646", + "226925605319246453851638526", + "720950356152285537563594881" ], - "mAssetSupply": "58444819307094790975681910" + "mAssetSupply": "1586214478410376537860442304" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "12246426359061737897984", - "expectedQty": "12415543789353332899223", + "type": "redeem", + "inputIndex": 1, + "inputQty": "24021695764322713600", + "expectedQty": "23668454749790938256", + "swapFee": "14413017458593628", "reserves": [ - "4681422239487019078700374", - "43018301699460772451681255", - "11131072835403113196990778" - ] + "640151213541873512463311646", + "226925581650791704060700270", + "720950356152285537563594881" + ], + "mAssetSupply": "1586214454403093790996322332" }, { - "type": "redeemMasset", - "inputQty": "103054531677790607612313", - "expectedQtys": [ - "8250425206968047187888", - "75814413343983875984769", - "19617133256467451895341" - ], - "redemptionFee": "30916359503337182283", + "type": "swap", + "inputIndex": 1, + "inputQty": "13997473739786869014528", + "outputIndex": 0, + "expectedQty": "14234144942946359131435", + "swapFee": "8518705899449788715", "reserves": [ - "4673171814280051031512486", - "42942487286116788575696486", - "11111455702146645745095437" + "640136979396930566104180211", + "226939579124531490929714798", + "720950356152285537563594881" ], - "mAssetSupply": "58354211235565857038151103" + "mAssetSupply": "1586214462921799690446111047", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 0, - "inputQty": "582479030058565047943168", - "outputIndex": 1, - "expectedQty": "634255945654565623768019", - "swapFee": "373718803277399637359", + "inputIndex": 2, + "inputQty": "45146448497869846428516352", + "outputIndex": 0, + "expectedQty": "45042645214320394196170562", + "swapFee": "26967449105891652742149", "reserves": [ - "5255650844338616079455654", - "42308231340462222951928467", - "11111455702146645745095437" + "595094334182610171908009649", + "226939579124531490929714798", + "766096804650155383992111233" ], - "mAssetSupply": "58354584954369134437788462", + "mAssetSupply": "1586241430370905582098853196", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "18658933049678773616640", - "7871038149242967293952", - "10144565261021919313920" + "693472113267211069554688", + "512036967606289128488960", + "386472994637961215606784" ], - "expectedQty": "37777905587388181485815", - "swapFee": "22680351563370931450", + "expectedQty": "1595805912998341690020207", + "swapFee": "958058382828702235353", "reserves": [ - "5236991911288937305839014", - "42300360302312979984634515", - "11101311136885623825781517" + "594400862069342960838454961", + "226427542156925201801225838", + "765710331655517422776504449" ], - "mAssetSupply": "58316807048781746256302647" + "mAssetSupply": "1584645624457907240408832989" }, { - "type": "redeemBassets", - "inputQtys": [ - "4310628707559", - "13305714539820", - "14993945947731" - ], - "expectedQty": "32816316716122", - "swapFee": "19701610996", + "type": "mint", + "inputIndex": 1, + "inputQty": "27224616454725014913024", + "expectedQty": "27619294083001733073683", "reserves": [ - "5236991911284626677131455", - "42300360302299674270094695", - "11101311136870629879833786" - ], - "mAssetSupply": "58316807048748929939586525" + "594400862069342960838454961", + "226454766773379926816138862", + "765710331655517422776504449" + ] }, { - "type": "redeemMasset", - "inputQty": "4675462024571608524390", - "expectedQtys": [ - "419741965239913197903", - "3390350159866552046940", - "889763862970488873181" + "type": "mintMulti", + "inputQtys": [ + "236926399764326", + "365326159811773", + "432520838920816" ], - "redemptionFee": "1402638607371482557", + "expectedQty": "1037391536308100", "reserves": [ - "5236572169319386763933552", - "42296969952139807718047755", - "11100421373007659390960605" + "594400862069579887238219287", + "226454766773745252975950635", + "765710331655949943615425265" ], - "mAssetSupply": "58312132989362965702544692" + "mAssetSupply": "1584673243753027633678214772" }, { "type": "redeemMasset", - "inputQty": "390511489015477436416", + "inputQty": "3354822133031833600", "expectedQtys": [ - "35058366207805950461", - "283174300690563018036", - "74316294127660100808" + "1257994948215664724", + "479270759481806549", + "1620555740221938179" ], - "redemptionFee": "117153446704643230", + "redemptionFee": "1006446639909550", "reserves": [ - "5236537110953178957983091", - "42296686777839117155029719", - "11100347056713531730859797" + "594400860811584939022554563", + "226454766294474493494144086", + "765710330035394203393487086" ], - "mAssetSupply": "58311742595027396929751506" + "mAssetSupply": "1584673240399211947286290722" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1463709176019118966439936", - "expectedQty": "1489565177172741831411841", - "swapFee": "878225505611471379863", + "type": "redeemBassets", + "inputQtys": [ + "1489438230416745776021504", + "1909838271402269613228032", + "1680071601194341687623680" + ], + "expectedQty": "5095343845832463325808199", + "swapFee": "3059041732539001396322", "reserves": [ - "5236537110953178957983091", - "40807121600666375323617878", - "11100347056713531730859797" + "592911422581168193246533059", + "224544928023072223880916054", + "764030258434199861705863406" ], - "mAssetSupply": "56848911644513889434691433" + "mAssetSupply": "1579577896553379483960482523" }, { "type": "redeemBassets", "inputQtys": [ - "843122617982600454602752", - "596911720105299652116480", - "14279034566748802121728" + "1130433608748851877904384", + "754596474349981188227072", + "2605007217493777322082304" ], - "expectedQty": "1498528669793154655677178", - "swapFee": "899656996073536915555", + "expectedQty": "4485613028688276666317042", + "swapFee": "2692983607377392435251", "reserves": [ - "4393414492970578503380339", - "40210209880561075671501398", - "11086068022146782928738069" + "591780988972419341368628675", + "223790331548722242692688982", + "761425251216706084383781102" ], - "mAssetSupply": "55350382974720734779014255" + "mAssetSupply": "1575092283524691207294165481" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "674828184709284495360", - "expectedQty": "726679623669027114025", + "type": "redeemBassets", + "inputQtys": [ + "2326739481557207575691264", + "1164480239610412826361856", + "462182118539353380618240" + ], + "expectedQty": "3962451357679827561253689", + "swapFee": "2378898153499996534673", "reserves": [ - "4394089321155287787875699", - "40210209880561075671501398", - "11086068022146782928738069" - ] + "589454249490862133792937411", + "222625851309111829866327126", + "760963069098166731003162862" + ], + "mAssetSupply": "1571129832167011379732911792" }, { "type": "swap", "inputIndex": 0, - "inputQty": "271056172551403695243264", - "outputIndex": 2, - "expectedQty": "287172579153877376178054", - "swapFee": "174406270235431842028", + "inputQty": "44393289500114949242880", + "outputIndex": 1, + "expectedQty": "43609275743860344248136", + "swapFee": "26568805199426412875", "reserves": [ - "4665145493706691483118963", - "40210209880561075671501398", - "10798895442992905552560015" + "589498642780362248742180291", + "222582242033367969522078990", + "760963069098166731003162862" ], - "mAssetSupply": "55351284060614639237970308", + "mAssetSupply": "1571129858735816579159324667", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "3340919869180028416", + "expectedQty": "3390381625559087394", + "reserves": [ + "589498642780362248742180291", + "222582245374287838702107406", + "760963069098166731003162862" + ] + }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "65165532415990733733888", - "expectedQty": "64341246935247448463822", - "swapFee": "39099319449594440240", + "inputIndex": 0, + "inputQty": "23141648925171931676672", + "expectedQty": "23186256579230328088506", + "swapFee": "13884989355103159006", "reserves": [ - "4665145493706691483118963", - "40210209880561075671501398", - "10734554196057658104096193" + "589475456523783018414091785", + "222582245374287838702107406", + "760963069098166731003162862" ], - "mAssetSupply": "55286157627518098098676660" + "mAssetSupply": "1571106734362262387889894395" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "128684332002404384", - "27647513944750872", - "199568059046109056" + "157514088676547557851136", + "486463737356027336589312", + "388660462326351235383296" + ], + "expectedQty": "1037552381397353234975353", + "swapFee": "622905171941576887117", + "reserves": [ + "589317942435106470856240649", + "222095781636931811365518094", + "760574408635840379767779566" + ], + "mAssetSupply": "1570069181980865034654919042" + }, + { + "type": "redeemMasset", + "inputQty": "112223750489450265", + "expectedQtys": [ + "42110010086600207", + "15869965822315707", + "54347227045088670" ], - "expectedQty": "366625792941016234", + "redemptionFee": "33667125146835", "reserves": [ - "4665145622391023485523347", - "40210209908208589616252270", - "10734554395625717150205249" + "589317942392996460769640442", + "222095781621061845543202387", + "760574408581493152722690896" ], - "mAssetSupply": "55286157994143891039692894" + "mAssetSupply": "1570069181868674951290615612" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "4102215950111648121880576", - "expectedQty": "4130311535949077273212344", + "inputIndex": 0, + "inputQty": "8212611339063148544", + "expectedQty": "8191818077435193260", "reserves": [ - "4665145622391023485523347", - "40210209908208589616252270", - "14836770345737365272085825" + "589317950605607799832788986", + "222095781621061845543202387", + "760574408581493152722690896" ] }, { "type": "redeemMasset", - "inputQty": "46875555432201324", + "inputQty": "4249174951445522363396915", "expectedQtys": [ - "3679378622846175", - "31713605261606435", - "11701691664279733" + "1594428994260986207170815", + "600891171490318397683204", + "2057771849795228267131625" ], - "redemptionFee": "14062666629660", + "redemptionFee": "1274752485433656709019", "reserves": [ - "4665145618711644862677172", - "40210209876494984354645835", - "14836770334035673607806092" + "587723521611346813625618171", + "221494890449571527145519183", + "758516636731697924455559271" ], - "mAssetSupply": "59416469483231475547333574" + "mAssetSupply": "1565821289861532940019120976" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1075515157584180674560", - "expectedQty": "1078457704192181963584", + "type": "mintMulti", + "inputQtys": [ + "687746991916527143354368", + "202864406185314139242496", + "331366794546672941662208" + ], + "expectedQty": "1221626457820029895379046", "reserves": [ - "4665145618711644862677172", - "40210209876494984354645835", - "14837845849193257788480652" - ] + "588411268603263340768972539", + "221697754855756841284761679", + "758848003526244597397221479" + ], + "mAssetSupply": "1567042916319352969914500022" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "984527911610019479552", - "expectedQty": "1000259803466636336286", - "swapFee": "590716746966011687", + "type": "redeemBassets", + "inputQtys": [ + "1289361815572002610610176", + "1667962719969095295434752", + "1174964428770966323068928" + ], + "expectedQty": "4148154409440304216994375", + "swapFee": "2490386877790857044423", "reserves": [ - "4665145618711644862677172", - "40209209616691517718309549", - "14837845849193257788480652" + "587121906787691338158362363", + "220029792135787745989326927", + "757673039097473631074152551" ], - "mAssetSupply": "59416564003740804675829293" + "mAssetSupply": "1562894761909912665697505647" }, { "type": "mintMulti", "inputQtys": [ - "418078387998516045676544", - "66006323037268403552256", - "833364000410807971086336" + "21985140841430479011840", + "64564787200084649443328", + "11525181521681537040384" + ], + "expectedQty": "98932221173214034510118", + "reserves": [ + "587143891928532768637374203", + "220094356922987830638770255", + "757684564278995312611192935" + ], + "mAssetSupply": "1562993694131085879732015765" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "629691282385415831552", + "expectedQty": "620000040399383067473", + "swapFee": "377814769431249498", + "reserves": [ + "587143891928532768637374203", + "220093736922947431255702782", + "757684564278995312611192935" ], - "expectedQty": "1344784533831690454257739", + "mAssetSupply": "1562993064817618263747433711" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "13177440078994510381580288", + "outputIndex": 2, + "expectedQty": "13198368904028709567610190", + "swapFee": "7885615695124898480963", "reserves": [ - "5083224006710160908353716", - "40275215939728786121861805", - "15671209849604065759566988" + "600321332007527279018954491", + "220093736922947431255702782", + "744486195374966603043582745" ], - "mAssetSupply": "60761348537572495130087032" + "mAssetSupply": "1563000950433313388645914674", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "14679780636831969705984", - "12897107530294048587776", - "38544027526762384588800" + "2929132772841261237272576", + "12649949550063288628281344", + "12105780668152310977789952" ], - "expectedQty": "66862463179989808541263", - "swapFee": "40141562845701305908", + "expectedQty": "27816360918449964423739347", + "swapFee": "16699836452941743700463", "reserves": [ - "5068544226073328938647732", - "40262318832198492073274029", - "15632665822077303374978188" + "597392199234686017781681915", + "207443787372884142627421438", + "732380414706814292065792793" ], - "mAssetSupply": "60694486074392505321545769" + "mAssetSupply": "1535184589514863424222175327" }, { "type": "mint", "inputIndex": 2, - "inputQty": "11734474455689130409984", - "expectedQty": "11756468152030423743749", + "inputQty": "2397374477421339213824", + "expectedQty": "2385476818923876163012", "reserves": [ - "5068544226073328938647732", - "40262318832198492073274029", - "15644400296532992505388172" + "597392199234686017781681915", + "207443787372884142627421438", + "732382812081291713405006617" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "36964011342256899358720", - "2954062475615930941440", - "26035350945937777229824" + "109380020599895910267224064", + "16073982037403398530138112", + "31301144002863096446058496" ], - "expectedQty": "68114988149521040114902", + "expectedQty": "156569745286970241445701509", + "swapFee": "93998246119854057301801", "reserves": [ - "5105508237415585838006452", - "40265272894674108004215469", - "15670435647478930282617996" + "488012178634790107514457851", + "191369805335480744097283326", + "701081668078428616958948121" ], - "mAssetSupply": "60774357530694056785404420" + "mAssetSupply": "1378617229704712106652636830" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5725303964074092003328", - "expectedQty": "5641153881280677168750", + "type": "redeemMasset", + "inputQty": "338167600352177501608345", + "expectedQtys": [ + "119670924506496311984515", + "46927930346311614600688", + "171920077093586324640990" + ], + "redemptionFee": "101450280105653250482", "reserves": [ - "5105508237415585838006452", - "40270998198638182096218797", - "15670435647478930282617996" - ] + "487892507710283611202473336", + "191322877405134432482682638", + "700909748001335030634307131" + ], + "mAssetSupply": "1378279163554640034804278967" }, { "type": "redeemMasset", - "inputQty": "32838374433631485558784", + "inputQty": "121394609833328195194060", "expectedQtys": [ - "2757589631857388297573", - "21751191445207872011506", - "8463923444779437119678" + "42959187023625368404303", + "16846078065264948094877", + "61715464933828130189198" + ], + "redemptionFee": "36418382949998458558", + "reserves": [ + "487849548523259985834069033", + "191306031327069167534587761", + "700848032536401202504117933" + ], + "mAssetSupply": "1378157805363189656607543465" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "333651356025417189294080", + "989023182439365369397248", + "293272540377253417058304" + ], + "expectedQty": "1629298567424859933599498", + "swapFee": "978166040078963338162", + "reserves": [ + "487515897167234568644774953", + "190317008144629802165190513", + "700554759996023949087059629" + ], + "mAssetSupply": "1376528506795764796673943967" + }, + { + "type": "mintMulti", + "inputQtys": [ + "58091912062498628435968", + "93184438462191570518016", + "41964048192022318678016" ], - "redemptionFee": "9851512330089445667", + "expectedQty": "194370087617900453795378", "reserves": [ - "5102750647783728449708879", - "40249247007192974224207291", - "15661971724034150845498318" + "487573989079297067273210921", + "190410192583091993735708529", + "700596724044215971405737645" ], - "mAssetSupply": "60747170161654036066460053" + "mAssetSupply": "1376722876883382697127739345" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "1427755449677840295919616", + "expectedQty": "1419826615021597750184406", + "reserves": [ + "487573989079297067273210921", + "190410192583091993735708529", + "702024479493893811701657261" + ] }, { "type": "mintMulti", "inputQtys": [ - "336834941450031267840", - "1901156200345806569472", - "3738689152600020353024" + "2808088042362410", + "22052310036909380", + "13014592205273878" ], - "expectedQty": "5975201280301430272431", + "expectedQty": "38148302135938834", "reserves": [ - "5103087482725178480976719", - "40251148163393320030776763", - "15665710413186750865851342" + "487573989082105155315573331", + "190410192605144303772617909", + "702024479506908403906931139" ], - "mAssetSupply": "60753145362934337496732484" + "mAssetSupply": "1378142703536552597013862585" }, { "type": "redeemMasset", - "inputQty": "2871727892365050275430", + "inputQty": "15759986786649429455667", "expectedQtys": [ - "241144424213805863193", - "1902052430154036702812", - "740277083290517018940" + "5574063090743308910279", + "2176815110050777663305", + "8025712666470376868446" ], - "redemptionFee": "861518367709515082", + "redemptionFee": "4727996035994828836", "reserves": [ - "5102846338300964675113526", - "40249246110963165994073951", - "15664970136103460348832402" + "487568415019014412006663052", + "190408015790034252994954604", + "702016453794241933530062693" ], - "mAssetSupply": "60750274496560340155972136" + "mAssetSupply": "1378126948277761983579235754" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "4477551033722209304576", + "inputIndex": 0, + "inputQty": "360645661909107800539136", "outputIndex": 2, - "expectedQty": "4400901183970624345780", - "swapFee": "2647041450317777636", + "expectedQty": "361702319285122408515352", + "swapFee": "215944782706858046797", "reserves": [ - "5102846338300964675113526", - "40253723661996888203378527", - "15660569234919489724486622" + "487929060680923519807202188", + "190408015790034252994954604", + "701654751474956811121547341" ], - "mAssetSupply": "60750277143601790473749772", + "mAssetSupply": "1378127164222544690437282551", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "1792845365698511257", - "expectedQtys": [ - "150548610725719055", - "1187600364989319012", - "462031733896199272" - ], - "redemptionFee": "537853609709553", - "reserves": [ - "5102846187752353949394471", - "40253722474396523214059515", - "15660568772887755828287350" - ], - "mAssetSupply": "60750275351294278384948068" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "543015485613314144206848", - "expectedQty": "543844873527602115637699", - "reserves": [ - "5102846187752353949394471", - "40253722474396523214059515", - "16203584258501069972494198" - ] - }, { "type": "mintMulti", "inputQtys": [ - "1792235929362944917241856", - "1154339481204775322648576", - "12478567043063229710336" + "63436763712430374912", + "36733576517911810048", + "64493470286979776512" ], - "expectedQty": "3023484261786013607884651", + "expectedQty": "164760740896456172477", "reserves": [ - "6895082117115298866636327", - "41408061955601298536708091", - "16216062825544133202204534" + "487929124117687232237577100", + "190408052523610770906764652", + "701654815968427098101323853" ], - "mAssetSupply": "64317604486607894108470418" + "mAssetSupply": "1378127328983285586893455028" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "296707145004897665024", - "expectedQty": "295782000681162118414", - "swapFee": "178024287002938599", - "reserves": [ - "6895082117115298866636327", - "41408061955601298536708091", - "16215767043543452040086120" - ], - "mAssetSupply": "64317307957487176213743993" - }, - { - "type": "mintMulti", - "inputQtys": [ - "254894147795609037307904", - "21425435337850424918016", - "134279890525061113708544" - ], - "expectedQty": "418954946113866874671882", + "inputQty": "49837293597240655872", + "outputIndex": 1, + "expectedQty": "48753860856545776528", + "swapFee": "29736246051770819", "reserves": [ - "7149976264910907903944231", - "41429487390939148961626107", - "16350046934068513153794664" + "487929124117687232237577100", + "190408003769749914360988124", + "701654865805720695341979725" ], - "mAssetSupply": "64736262903601043088415875" + "mAssetSupply": "1378127329013021832945225847", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "40828163576856190976", - "outputIndex": 2, - "expectedQty": "41974934645372514506", - "swapFee": "25262911003009048", + "inputQty": "10317976166526303210569728", + "outputIndex": 1, + "expectedQty": "10116772204080934233308596", + "swapFee": "6177593325700667177740", "reserves": [ - "7150017093074484760135207", - "41429487390939148961626107", - "16350004959133867781280158" + "498247100284213535448146828", + "180291231565668980127679528", + "701654865805720695341979725" ], - "mAssetSupply": "64736262928863954091424923", + "mAssetSupply": "1378133506606347533612403587", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "11688386672771353999835136", - "outputIndex": 0, - "hardLimitError": true + "type": "redeemBassets", + "inputQtys": [ + "7718589440551224868864", + "6764132934731456053248", + "10394210552674013675520" + ], + "expectedQty": "24919628283707504739245", + "swapFee": "14960753422277869565", + "reserves": [ + "498239381694772984223277964", + "180284467432734248671626280", + "701644471595168021328304205" + ], + "mAssetSupply": "1378108586978063826107664342" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "37781047031865800", - "outputIndex": 0, - "expectedQty": "36209092651249920", - "swapFee": "22418252681046", + "type": "redeemMasset", + "inputQty": "519537602041543414670950", + "expectedQtys": [ + "187776521984911053130843", + "67945633175901069708604", + "264435858317587457982892" + ], + "redemptionFee": "155861280612463024401", "reserves": [ - "7150017056865392108885287", - "41429487428720195993491907", - "16350004959133867781280158" + "498051605172788073170147121", + "180216521799558347601917676", + "701380035736850433870321313" ], - "mAssetSupply": "64736262928886372344105969", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1377589205237302895156017793" }, { "type": "redeemMasset", - "inputQty": "53453199565649357465190", + "inputQty": "15981545161282378137", "expectedQtys": [ - "5902049546350046522358", - "34198364219202499422666", - "13496267013687735221980" + "5776211297388299141", + "2090082028414490042", + "8134336370184547751" ], - "redemptionFee": "16035959869694807239", + "redemptionFee": "4794463548384713", "reserves": [ - "7144115007319042062362929", - "41395289064500993494069241", - "16336508692120180046058178" + "498051599396576775781847980", + "180216519709476319187427634", + "701380027602514063685773562" ], - "mAssetSupply": "64682825765280592681448018" + "mAssetSupply": "1377589189260552197422024369" }, { "type": "redeemMasset", - "inputQty": "168365788738191564", + "inputQty": "169545525283392193141145", "expectedQtys": [ - "18590154286698583", - "107717304335550684", - "42510264291850316" + "61278854371111437107091", + "22173328787469882534961", + "86295806744388479598365" ], - "redemptionFee": "50509736621457", + "redemptionFee": "50863657585017657942", "reserves": [ - "7144114988728887775664346", - "41395288956783689158518557", - "16336508649609915754207862" + "497990320542205664344740889", + "180194346380688849304892673", + "701293731795769675206175197" ], - "mAssetSupply": "64682825596965313679877911" + "mAssetSupply": "1377419694598926390246541166" }, { "type": "redeemBassets", "inputQtys": [ - "5569596195294221312", - "24907220969525563392", - "25910524904004841472" + "202509696057278464000", + "57630610433462239232", + "185797818565338595328" ], - "expectedQty": "56351002390298280392", - "swapFee": "33830899974163466", + "expectedQty": "445398035772330543159", + "swapFee": "267399261020010332", "reserves": [ - "7144109419132692481443034", - "41395264049562719632955165", - "16336482739085011749366390" + "497990118032509607066276889", + "180194288750078415842653441", + "701293545997951109867579869" ], - "mAssetSupply": "64682769245962923381597519" + "mAssetSupply": "1377419249200890617915998007" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1225378062476222464", - "expectedQty": "1238320119477210834", - "swapFee": "735226837485733", + "inputIndex": 2, + "inputQty": "7459167833932585911713792", + "expectedQty": "7498117313761165014185725", + "swapFee": "4475500700359551547028", "reserves": [ - "7144109419132692481443034", - "41395262811242600155744331", - "16336482739085011749366390" + "497990118032509607066276889", + "180194288750078415842653441", + "693795428684189944853394144" ], - "mAssetSupply": "64682768021320087742860788" + "mAssetSupply": "1369964556867658391555831243" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "58568531783281593548800", - "expectedQty": "57921002822089652283514", + "type": "redeemBassets", + "inputQtys": [ + "2748852996068805198217216", + "5740307209889278641307648", + "1189429396310879618727936" + ], + "expectedQty": "9770092256022537040059134", + "swapFee": "5865574698432581773099", "reserves": [ - "7144109419132692481443034", - "41453831343025881749293131", - "16336482739085011749366390" - ] + "495241265036440801868059673", + "174453981540189137201345793", + "692605999287879065234666208" + ], + "mAssetSupply": "1360194464611635854515772109" }, { "type": "redeemMasset", - "inputQty": "34885899091798372279910", + "inputQty": "1665649584157799271628", "expectedQtys": [ - "3848490268610355227841", - "22330938282243978974109", - "8800368409296051105823" + "606274293197506546357", + "213566541847005595541", + "847888175577844624152" ], - "redemptionFee": "10465769727539511683", + "redemptionFee": "499694875247339781", "reserves": [ - "7140260928864082126215193", - "41431500404743637770319022", - "16327682370675715698260567" + "495240658762147604361513316", + "174453767973647290195750252", + "692605151399703487390042056" ], - "mAssetSupply": "64705813590820106562376075" + "mAssetSupply": "1360192799461746571963840262" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "48729743507189", - "expectedQty": "48578429166846", - "swapFee": "29237846104", + "type": "redeemMasset", + "inputQty": "4173961129317394651545", + "expectedQtys": [ + "1519266331633791313523", + "535177658416590133329", + "2124727986324454434709" + ], + "redemptionFee": "1252188338795218395", "reserves": [ - "7140260928864082126215193", - "41431500404743637770319022", - "16327682370627137269093721" + "495239139495815970570199793", + "174453232795988873605616923", + "692603026671717162935607347" ], - "mAssetSupply": "64705813590771406056714990" + "mAssetSupply": "1360188626752805593364407112" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "97954185420221808640", - "expectedQty": "94919562436896137676", - "swapFee": "58772511252133085", + "inputIndex": 1, + "inputQty": "11532175658892322353971200", + "expectedQty": "11296359821092936155935698", + "swapFee": "6919305395335393412382", "reserves": [ - "7140166009301645230077517", - "41431500404743637770319022", - "16327682370627137269093721" + "495239139495815970570199793", + "163156872974895937449681225", + "692603026671717162935607347" ], - "mAssetSupply": "64705715695358497087039435" + "mAssetSupply": "1348663370399308606403848294" }, { - "type": "redeemMasset", - "inputQty": "124957890181059733094", - "expectedQtys": [ - "13784754630336513485", - "79987365322047820492", - "31522109551508860135" + "type": "redeemBassets", + "inputQtys": [ + "3094087921259995528691712", + "428749543864402834358272", + "1475437538278000436445184" ], - "redemptionFee": "37487367054317919", + "expectedQty": "4989105354432029290592836", + "swapFee": "2995260368880545901896", "reserves": [ - "7140152224547014893564032", - "41431420417378315722498530", - "16327650848517585760233586" + "492145051574555975041508081", + "162728123431031534615322953", + "691127589133439162499162163" ], - "mAssetSupply": "64705590774955683081624260" + "mAssetSupply": "1343674265044876577113255458" }, { - "type": "redeemBassets", - "inputQtys": [ - "22130712160327960625152", - "45331926017002417684480", - "28108471535004721086464" - ], - "expectedQty": "95834810965146773633996", - "swapFee": "57535407823782333580", + "type": "mint", + "inputIndex": 1, + "inputQty": "19899660829670436283351040", + "expectedQty": "20282769618659570388400362", "reserves": [ - "7118021512386686932938880", - "41386088491361313304814050", - "16299542376982581039147122" - ], - "mAssetSupply": "64609755963990536307990264" + "492145051574555975041508081", + "182627784260701970898673993", + "691127589133439162499162163" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "954180845428498497536", - "outputIndex": 2, - "expectedQty": "981148926278086286698", - "swapFee": "590526475089082859", + "type": "redeemBassets", + "inputQtys": [ + "20101920006717264552263680", + "11705551684719685989826560", + "23423572447149189792530432" + ], + "expectedQty": "55254245942567649311801788", + "swapFee": "33172451036162286959256", "reserves": [ - "7118975693232115431436416", - "41386088491361313304814050", - "16298561228056302952860424" + "472043131567838710489244401", + "170922232575982284908847433", + "667704016686289972706631731" ], - "mAssetSupply": "64609756554517011397073123", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1308702788720968498189854032" }, { "type": "redeemMasset", - "inputQty": "22130226710588444744089", + "inputQty": "25226602796745614163968", "expectedQtys": [ - "2437670269531030263809", - "14171369847979955540393", - "5580931843823418323920" + "9096390924064179864616", + "3293714792461736726564", + "12866825828337461878887" ], - "redemptionFee": "6639068013176533423", + "redemptionFee": "7567980839023684249", "reserves": [ - "7116538022962584401172607", - "41371917121513333349273657", - "16292980296212479534536504" + "472034035176914646309379785", + "170918938861189823172120869", + "667691149860461635244752844" ], - "mAssetSupply": "64587632966874436128862457" + "mAssetSupply": "1308677569686152591599374313" }, { "type": "mint", "inputIndex": 0, - "inputQty": "5691420553259389722558464", - "expectedQty": "5788399922673312593939493", + "inputQty": "4708892790439795197214720", + "expectedQty": "4697209835473619344992281", "reserves": [ - "12807958576221974123731071", - "41371917121513333349273657", - "16292980296212479534536504" + "476742927967354441506594505", + "170918938861189823172120869", + "667691149860461635244752844" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "73339142364276645888", - "42647459535732924416", - "131797517375960203264" - ], - "expectedQty": "248682904148017853926", - "reserves": [ - "12808031915364338400376959", - "41371959768972869082198073", - "16293112093729855494739768" - ], - "mAssetSupply": "70376281572451896740655876" - }, { "type": "mint", "inputIndex": 0, - "inputQty": "298069525922718874075136", - "expectedQty": "300639959095033972584461", + "inputQty": "32543709855777571209216", + "expectedQty": "32461688096027876808269", "reserves": [ - "13106101441287057274452095", - "41371959768972869082198073", - "16293112093729855494739768" + "476775471677210219077803721", + "170918938861189823172120869", + "667691149860461635244752844" ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "10620127050537003008", - "expectedQty": "10570304927127585880", - "swapFee": "6372076230322201", - "reserves": [ - "13106101441287057274452095", - "41371959768972869082198073", - "16293101523424928367153888" - ], - "mAssetSupply": "70676910917791956406559530" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5216318745556439531520", - "expectedQty": "5169799585879261632538", - "swapFee": "3129791247333863718", + "inputQty": "85389139497220732616704", + "outputIndex": 1, + "expectedQty": "83313290748614698222876", + "swapFee": "50933877550413042125", "reserves": [ - "13100931641701178012819557", - "41371959768972869082198073", - "16293101523424928367153888" + "476775471677210219077803721", + "170835625570441208473897993", + "667776538999958855977369548" ], - "mAssetSupply": "70671697728837647300891728" + "mAssetSupply": "1313407292143599789234216988", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "189376655144315840", - "275574129722045216", - "13457126741892998" - ], - "expectedQty": "478246557377938369", - "reserves": [ - "13100931831077833157135397", - "41371960044546998804243289", - "16293101536882055109046886" + "type": "redeemMasset", + "inputQty": "188504392413537638966886", + "expectedQtys": [ + "68407803780630397301499", + "24511516734812344103910", + "95812660597911410803314" ], - "mAssetSupply": "70671698207084204678830097" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "582800610732504504074240", - "expectedQty": "577334865733780318213931", - "swapFee": "349680366439502702444", + "redemptionFee": "56551317724061291690", "reserves": [ - "12523596965344052838921466", - "41371960044546998804243289", - "16293101536882055109046886" + "476707063873429588680502222", + "170811114053706396129794083", + "667680726339360944566566234" ], - "mAssetSupply": "70089247276718139677458301" + "mAssetSupply": "1313218844302503975656541792" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2248586610559949501104128", - "expectedQty": "2232671940196697605788902", + "inputQty": "1492728384132450976006144", + "expectedQty": "1519833947829868965595635", "reserves": [ - "12523596965344052838921466", - "43620546655106948305347417", - "16293101536882055109046886" + "476707063873429588680502222", + "172303842437838847105800227", + "667680726339360944566566234" ] }, { "type": "redeemMasset", - "inputQty": "4177086944471306240", + "inputQty": "3971098020215858921472", "expectedQtys": [ - "723106636300566455", - "2518629979282455208", - "940756068711023293" + "1439436287784545131865", + "520278431191000295739", + "2016088996747897356656" ], - "redemptionFee": "1253126083341391", + "redemptionFee": "1191329406064757676", "reserves": [ - "12523596242237416538355011", - "43620544136476969022892209", - "16293100596125986398023593" + "476705624437141804135370357", + "172303322159407656105504488", + "667678710250364196669209578" ], - "mAssetSupply": "72321915041081018895282354" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "62852846084198512984064", - "expectedQty": "63141891112370122536377", - "reserves": [ - "12523596242237416538355011", - "43620544136476969022892209", - "16355953442210184911007657" - ] + "mAssetSupply": "1314734708343643034827973631" }, { - "type": "mintMulti", - "inputQtys": [ - "101710041538768928768", - "101364909606280347648", - "93008771155751682048" - ], - "expectedQty": "296822676590152436728", + "type": "swap", + "inputIndex": 0, + "inputQty": "30472886214569897481994240", + "outputIndex": 2, + "expectedQty": "30538651812304289610081195", + "swapFee": "18233893065656494615824", "reserves": [ - "12523697952278955307283779", - "43620645501386575303239857", - "16356046450981340662689705" + "507178510651711701617364597", + "172303322159407656105504488", + "637140058438059907059128383" ], - "mAssetSupply": "72385353754869979170255459" + "mAssetSupply": "1314752942236708691322589455", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "142458047898352416", - "692586920805698816", - "1058237243562814976" + "53559559790820860788473856", + "8832325985741172545421312", + "1958099820759401971580928" ], - "expectedQty": "1894518182169800573", + "expectedQty": "64347271466937129212377075", + "swapFee": "38631541805245424782295", "reserves": [ - "12523698094737003205636195", - "43620646193973496108938673", - "16356047509218584225504681" + "453618950860890840828890741", + "163470996173666483560083176", + "635181958617300505087547455" ], - "mAssetSupply": "72385355649388161340056032" + "mAssetSupply": "1250405670769771562110212380" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "238443784752846652571648", - "expectedQty": "235794558570361487279436", - "swapFee": "143066270851707991542", + "type": "mint", + "inputIndex": 2, + "inputQty": "888563360880452698112", + "expectedQty": "883397420825200393597", "reserves": [ - "12287903536166641718356759", - "43620646193973496108938673", - "16356047509218584225504681" - ], - "mAssetSupply": "72147054930906166395475926" + "453618950860890840828890741", + "163470996173666483560083176", + "635182847180661385540245567" + ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2110092339370286645248", - "expectedQty": "2094370512821448253114", + "type": "redeemBassets", + "inputQtys": [ + "9335404936590605852606464", + "15820840136243289209700352", + "15882312666628359612006400" + ], + "expectedQty": "41227270452107931475189979", + "swapFee": "24751212999064197403556", "reserves": [ - "12287903536166641718356759", - "43622756286312866395583921", - "16356047509218584225504681" - ] + "444283545924300234976284277", + "147650156037423194350382824", + "619300534514033025928239167" + ], + "mAssetSupply": "1209179283715084455835415998" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "116141566109722917994496", - "expectedQty": "116941505589929998048636", - "swapFee": "69684939665833750796", + "type": "redeemMasset", + "inputQty": "180211166483199620965990", + "expectedQtys": [ + "66194349904486157401480", + "21998577669267223823682", + "92270345489324179759967" + ], + "redemptionFee": "54063349944959886289", "reserves": [ - "12287903536166641718356759", - "43505814780722936397535285", - "16356047509218584225504681" + "444217351574395748818882797", + "147628157459753927126559142", + "619208264168543701748479200" ], - "mAssetSupply": "72033077420248930759485340" + "mAssetSupply": "1208999126611951201174336297" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "7469485753456101662130176", - "expectedQty": "7513851140686156407050730", - "swapFee": "4481691452073660997278", + "inputIndex": 2, + "inputQty": "162932100639107359703040", + "expectedQty": "163865544782398003028922", + "swapFee": "97759260383464415821", "reserves": [ - "12287903536166641718356759", - "35991963640036779990484555", - "16356047509218584225504681" + "444217351574395748818882797", + "147628157459753927126559142", + "619044398623761303745450278" ], - "mAssetSupply": "64568073358244902758352442" + "mAssetSupply": "1208836292270572477279049078" }, { "type": "redeemBassets", "inputQtys": [ - "22380773202786003189760", - "8808691763222037921792", - "5932965336450310602752" + "14422405381865778058362880", + "4198052987138622797905920", + "12040340451245010980962304" ], - "expectedQty": "37256058986988489014046", - "swapFee": "22367055625568434469", + "expectedQty": "30632519648986322807911923", + "swapFee": "18390546117062030903289", "reserves": [ - "12265522762963855715166999", - "35983154948273557952562763", - "16350114543882133914901929" + "429794946192529970760519917", + "143430104472615304328653222", + "607004058172516292764487974" ], - "mAssetSupply": "64530817299257914269338396" + "mAssetSupply": "1178203772621586154471137155" }, { - "type": "redeemMasset", - "inputQty": "118864528644145118026137", - "expectedQtys": [ - "22586079986560992878592", - "66260397663975172297921", - "30107562638310379669975" - ], - "redemptionFee": "35659358593243535407", + "type": "swap", + "inputIndex": 2, + "inputQty": "17195743503338278702022656", + "outputIndex": 1, + "expectedQty": "16654436910564465795033177", + "swapFee": "10250261189672087969217", "reserves": [ - "12242936682977294722288407", - "35916894550609582780264842", - "16320006981243823535231954" + "429794946192529970760519917", + "126775667562050838533620045", + "624199801675854571466510630" ], - "mAssetSupply": "64411988429972362394847666" + "mAssetSupply": "1178214022882775826559106372", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7419809509018403388522496", - "expectedQty": "7449234397654538630692949", + "inputIndex": 2, + "inputQty": "1240231338757237894021120", + "expectedQty": "1230861028342246166588829", "reserves": [ - "19662746191995698110810903", - "35916894550609582780264842", - "16320006981243823535231954" + "429794946192529970760519917", + "126775667562050838533620045", + "625440033014611809360531750" ] }, { "type": "redeemMasset", - "inputQty": "63999611853753008993075", + "inputQty": "57720154832164947912294", "expectedQtys": [ - "17506390127077790784234", - "31977993410302331943691", - "14530239382665271608893" + "21027170348836473098935", + "6202338071980421356449", + "30598857044933593051055" ], - "redemptionFee": "19199883556125902697", + "redemptionFee": "17316046449649484373", "reserves": [ - "19645239801868620320026669", - "35884916557199280448321151", - "16305476741861158263623061" + "429773919022181134287420982", + "126769465223978858112263596", + "625409434157566875767480695" ], - "mAssetSupply": "71797242415656704142450237" + "mAssetSupply": "1179387181072332357427267280" }, { - "type": "mintMulti", - "inputQtys": [ - "3521881237181302784", - "3105051745802541568", - "637088700346162176" - ], - "expectedQty": "7260495962962689391", + "type": "mint", + "inputIndex": 2, + "inputQty": "21419958487383285251964928", + "expectedQty": "21254151517059294197222852", "reserves": [ - "19645243323749857501329453", - "35884919662251026250862719", - "16305477378949858609785237" - ], - "mAssetSupply": "71797249676152667105139628" + "429773919022181134287420982", + "126769465223978858112263596", + "646829392644950161019445623" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "8664958752966073344", - "expectedQty": "8645779492873892231", - "swapFee": "5198975251779644", + "type": "swap", + "inputIndex": 1, + "inputQty": "68561110789935038464", + "outputIndex": 0, + "expectedQty": "70799613516483799300", + "swapFee": "42366672783749746", "reserves": [ - "19645234677970364627437222", - "35884919662251026250862719", - "16305477378949858609785237" + "429773848222567617803621682", + "126769533785089648047302060", + "646829392644950161019445623" ], - "mAssetSupply": "71797241016392889390845928" + "mAssetSupply": "1200641332631758324408239878", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "12382943257292787712", - "14331102353806559232", - "11444873805005088768" + "6386528957129691175583744", + "3362508034180034324332544", + "1153545162516215338369024" ], - "expectedQty": "38171006777850260849", + "expectedQty": "10971314231973104105989979", "reserves": [ - "19645247060913621920224934", - "35884933993353380057421951", - "16305488823823663614874005" + "436160377179697308979205426", + "130132041819269682371634604", + "647982937807466376357814647" ], - "mAssetSupply": "71797279187399667241106777" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "5494460158617288940978176", - "expectedQty": "5497906392079514655242267", - "reserves": [ - "25139707219530910861203110", - "35884933993353380057421951", - "16305488823823663614874005" - ] + "mAssetSupply": "1211612646863731428514229857" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "394806836270430945280", - "expectedQty": "392560999516617511805", - "swapFee": "236884101762258567", - "reserves": [ - "25139707219530910861203110", - "35884933993353380057421951", - "16305096262824146997362200" + "type": "redeemBassets", + "inputQtys": [ + "197086920675832430592", + "421392440531735805952", + "274327030235316617216" ], - "mAssetSupply": "77294791009527013227662331" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "14071627920177377574912", - "expectedQty": "14068660871796953144876", + "expectedQty": "902154853614855146501", + "swapFee": "541617882898652279", "reserves": [ - "25153778847451088238778022", - "35884933993353380057421951", - "16305096262824146997362200" - ] + "436160180092776633146774834", + "130131620426829150635828652", + "647982663480436141041197431" + ], + "mAssetSupply": "1211611744708877813659083356" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3554266171212937906094080", - "expectedQty": "3568314818133472359538180", + "type": "mintMulti", + "inputQtys": [ + "9561595265872356637147136", + "13150363152344710595477504", + "28119142642903780645928960" + ], + "expectedQty": "50946515450523176745383546", "reserves": [ - "25153778847451088238778022", - "35884933993353380057421951", - "19859362434037084903456280" - ] + "445721775358648989783921970", + "143281983579173861231306156", + "676101806123339921687126391" + ], + "mAssetSupply": "1262558260159400990404466902" }, { "type": "redeemBassets", "inputQtys": [ - "478955641500300804096", - "5453841035379967262720", - "3329346643885174554624" + "1087471363349550208", + "1539464118487938304", + "38100392725985624" ], - "expectedQty": "9258582803173728334960", - "swapFee": "5558484772767897739", + "expectedQty": "2700894518244720245", + "swapFee": "1621509616716862", "reserves": [ - "25153299891809587937973926", - "35879480152318000090159231", - "19856033087393199728901656" + "445721774271177626434371762", + "143281982039709742743367852", + "676101806085239528961140767" ], - "mAssetSupply": "80867915905729108812010427" + "mAssetSupply": "1262558257458506472159746657" }, { - "type": "redeemMasset", - "inputQty": "1739488457645942169", - "expectedQtys": [ - "540891256824893966", - "771544775329076831", - "426979948491526917" + "type": "mintMulti", + "inputQtys": [ + "826857087955837229465600", + "1229638242919443429588992", + "1217034195095731514114048" ], - "redemptionFee": "521846537293782", + "expectedQty": "3293424764638213818913508", "reserves": [ - "25153299350918331113079960", - "35879479380773224761082400", - "19856032660413251237374739" + "446548631359133463663837362", + "144511620282629186172956844", + "677318840280335260475254815" ], - "mAssetSupply": "80867914166762497703362040" + "mAssetSupply": "1265851682223144685978660165" }, { - "type": "redeemMasset", - "inputQty": "95638459857733522187878", - "expectedQtys": [ - "29738631794805418695388", - "42420145818968767527946", - "23475697400790559709346" + "type": "mintMulti", + "inputQtys": [ + "14103122568500457131474944", + "9748441497944966270287872", + "5765048625288598909878272" ], - "redemptionFee": "28691537957320056656", + "expectedQty": "29770597828338943348167219", "reserves": [ - "25123560719123525694384572", - "35837059234954255993554454", - "19832556963012460677665393" + "460651753927633920795312306", + "154260061780574152443244716", + "683083888905623859385133087" ], - "mAssetSupply": "80772304398442721501230818" + "mAssetSupply": "1295622280051483629326827384" }, { - "type": "redeemMasset", - "inputQty": "8375501566731461486182", - "expectedQtys": [ - "2604349312612880241442", - "3714928056100649233655", - "2055875226900528912174" - ], - "redemptionFee": "2512650470019438445", + "type": "swap", + "inputIndex": 1, + "inputQty": "4717236389626031816835072", + "outputIndex": 0, + "expectedQty": "4830105795478524769368158", + "swapFee": "2892662106613143495749", "reserves": [ - "25120956369810912814143130", - "35833344306898155344320799", - "19830501087785560148753219" + "455821648132155396025944148", + "158977298170200184260079788", + "683083888905623859385133087" ], - "mAssetSupply": "80763931409526460059183081" + "mAssetSupply": "1295625172713590242470323133", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "67227980422348480", - "expectedQtys": [ - "20904436970886077", - "29818764719475936", - "16501977631268874" - ], - "redemptionFee": "20168394126704", + "type": "redeem", + "inputIndex": 1, + "inputQty": "201756353494785504", + "expectedQty": "197447186824044098", + "swapFee": "121053812096871", "reserves": [ - "25120956348906475843257053", - "35833344277079390624844863", - "19830501071283582517484345" + "455821648132155396025944148", + "158977297972752997436035690", + "683083888905623859385133087" ], - "mAssetSupply": "80763931342318648030961305" + "mAssetSupply": "1295625172511954942787634500" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "147294913580400713400320", - "81312414543287249010688", - "49537993770947034742784" + "2230306023063200559267840", + "22050082389684556300025856", + "13917234014154843697971200" ], - "expectedQty": "278147728231919608965342", - "swapFee": "166988830237294141864", + "expectedQty": "38521552908276404414608536", "reserves": [ - "24973661435326075129856733", - "35752031862536103375834175", - "19780963077512635482741561" + "458051954155218596585211988", + "181027380362437553736061546", + "697001122919778703083104287" ], - "mAssetSupply": "80485783614086728421995963" + "mAssetSupply": "1334146725420231347202243036" }, { - "type": "redeemBassets", - "inputQtys": [ - "403679771314055217152", - "2307811179587221061632", - "2614398469658299072512" + "type": "redeemMasset", + "inputQty": "20456298404494985238937", + "expectedQtys": [ + "7021144126237700792623", + "2774836602682018664705", + "10683821552938857547446" ], - "expectedQty": "5328001166686312046883", - "swapFee": "3198719931970969810", + "redemptionFee": "6136889521348495571", "reserves": [ - "24973257755554761074639581", - "35749724051356516154772543", - "19778348679042977183669049" + "458044933011092358884419365", + "181024605525834871717396841", + "696990439098225764225556841" ], - "mAssetSupply": "80480455612920042109949080" + "mAssetSupply": "1334126275258716373565499670" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "22091229647580692480000", - "expectedQty": "22133492809922874266392", - "swapFee": "13254737788548415488", + "type": "redeemBassets", + "inputQtys": [ + "67949467497594748928", + "104498510410261102592", + "164539588861386424320" + ], + "expectedQty": "337639877290418702526", + "swapFee": "202705549704073665", "reserves": [ - "24973257755554761074639581", - "35727590558546593280506151", - "19778348679042977183669049" + "458044865061624861289670437", + "181024501027324461456294249", + "696990274558636902839132521" ], - "mAssetSupply": "80458377638010249965884568" + "mAssetSupply": "1334125937618839083146797144" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "911074718385454608023552", - "expectedQty": "907643825283346437692247", - "swapFee": "546644831031272764814", + "type": "swap", + "inputIndex": 1, + "inputQty": "2025984733807461269504", + "outputIndex": 2, + "expectedQty": "2071089947797487894585", + "swapFee": "1235995083402882989", "reserves": [ - "24973257755554761074639581", - "35727590558546593280506151", - "18870704853759630745976802" + "458044865061624861289670437", + "181026527012058268917563753", + "696988203468689105351237936" ], - "mAssetSupply": "79547849564455826630625830" + "mAssetSupply": "1334125938854834166549680133", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "9991880204600647614464", - "expectedQtys": [ - "3135910552428521324823", - "4486340121983937903083", - "2369608445238040023771" - ], - "redemptionFee": "2997564061380194284", + "type": "mint", + "inputIndex": 0, + "inputQty": "16422391319963766890692608", + "expectedQty": "16390597694119982138997464", "reserves": [ - "24970121845002332553314758", - "35723104218424609342603068", - "18868335245314392705953031" - ], - "mAssetSupply": "79537860681815287363205650" + "474467256381588628180363045", + "181026527012058268917563753", + "696988203468689105351237936" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1979206081503823753379840", - "2685739804700687252586496", - "3838584788255746748841984" + "61479339210533968543744", + "81501892467720311537664", + "86543698100318103404544" ], - "expectedQty": "8508750014797646311054964", + "expectedQty": "230290075215854006660079", + "swapFee": "138256999329109869917", "reserves": [ - "26949327926506156306694598", - "38408844023125296595189564", - "22706920033570139454795015" + "474405777042378094211819301", + "180945025119590548606026089", + "696901659770588787247833392" ], - "mAssetSupply": "88046610696612933674260614" + "mAssetSupply": "1350286246473738294682017518" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "3069237340895935201280", - "expectedQty": "3060080671665418333859", - "swapFee": "1841542404537561120", + "inputIndex": 1, + "inputQty": "91946684051814506037248", + "expectedQty": "90337463291342235144314", + "swapFee": "55168010431088703622", "reserves": [ - "26949327926506156306694598", - "38408844023125296595189564", - "22703859952898474036461156" + "474405777042378094211819301", + "180854687656299206370881775", + "696901659770588787247833392" ], - "mAssetSupply": "88043543300814442276620454" + "mAssetSupply": "1350194354957696911264683892" }, { "type": "mintMulti", "inputQtys": [ - "124305187735400", - "120336101770543", - "111204707088155" + "10669661493463609077923840", + "3285607976634496759889920", + "6937582553850653240721408" ], - "expectedQty": "355907109933603", + "expectedQty": "20886168017840720003205545", "reserves": [ - "26949327926630461494429998", - "38408844023245632696960107", - "22703859953009678743549311" + "485075438535841703289743141", + "184140295632933703130771695", + "703839242324439440488554800" ], - "mAssetSupply": "88043543301170349386554057" + "mAssetSupply": "1371080522975537631267889437" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3750210814706536960", - "expectedQty": "3741572609048120599", + "inputQty": "25637025351603494912", + "expectedQty": "26074681243608097204", "reserves": [ - "26949327926630461494429998", - "38408847773456447403497067", - "22703859953009678743549311" + "485075438535841703289743141", + "184140321269959054734266607", + "703839242324439440488554800" ] }, { "type": "mintMulti", "inputQtys": [ - "19301481268833551384576", - "18111894194837287600128", - "14803224497084962963456" + "8523715148589500989440", + "47366003946459626471424", + "98562274518032795566080" ], - "expectedQty": "52221513230045026027423", + "expectedQty": "154671008706055962368356", "reserves": [ - "26968629407899295045814574", - "38426959667651284691097195", - "22718663177506763706512767" + "485083962250990292790732581", + "184187687273905514360738031", + "703937804598957473284120880" ], - "mAssetSupply": "88095768555973003460702079" + "mAssetSupply": "1371235220058924930838354997" }, { "type": "mint", "inputIndex": 2, - "inputQty": "496909575177027916398592", - "expectedQty": "498052408193730428735712", + "inputQty": "312992504074879176278016", + "expectedQty": "311178083024093844640415", "reserves": [ - "26968629407899295045814574", - "38426959667651284691097195", - "23215572752683791622911359" + "485083962250990292790732581", + "184187687273905514360738031", + "704250797103032352460398896" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "8086866280818281545728", - "5995413460771066085376", - "3011450952625891573760" - ], - "expectedQty": "17092183317029330832565", - "swapFee": "10261466870339802380", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1008008839084872317272064", + "expectedQty": "990398160533050382870447", + "swapFee": "604805303450923390363", "reserves": [ - "26960542541618476764268846", - "38420964254190513625011819", - "23212561301731165731337599" + "485083962250990292790732581", + "183197289113372463977867584", + "704250797103032352460398896" ], - "mAssetSupply": "88576728780849704558605226" + "mAssetSupply": "1370538994108167603289113711" }, { - "type": "redeemBassets", - "inputQtys": [ - "39286721420233465856", - "8877959136445126656", - "121949367888694968320" - ], - "expectedQty": "170389109983681911327", - "swapFee": "102294842895946714", + "type": "redeem", + "inputIndex": 1, + "inputQty": "994520094082275781640192", + "expectedQty": "976962494207846107932114", + "swapFee": "596712056449365468984", "reserves": [ - "26960503254897056530802990", - "38420955376231377179885163", - "23212439352363277036369279" + "485083962250990292790732581", + "182220326619164617869935470", + "704250797103032352460398896" ], - "mAssetSupply": "88576558391739720876693899" + "mAssetSupply": "1369545070726141776872942503" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5296951564417243593834496", - "expectedQty": "5283173961239681975928739", + "type": "redeem", + "inputIndex": 2, + "inputQty": "837378380681208095834112", + "expectedQty": "841808557264983448498273", + "swapFee": "502427028408724857500", "reserves": [ - "26960503254897056530802990", - "43717906940648620773719659", - "23212439352363277036369279" - ] + "485083962250990292790732581", + "182220326619164617869935470", + "703408988545767369011900623" + ], + "mAssetSupply": "1368708194772488977501965891" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1086625534114319480913920", - "outputIndex": 0, - "expectedQty": "1081150629698247805563873", - "swapFee": "650001807022226701062", + "type": "redeemMasset", + "inputQty": "15812412951043844394608230", + "expectedQtys": [ + "5602397101113080540299890", + "2104523565111953904160556", + "8123905931746037924123159" + ], + "redemptionFee": "4743723885313153318382", "reserves": [ - "25879352625198808725239117", - "44804532474762940254633579", - "23212439352363277036369279" + "479481565149877212250432691", + "180115803054052663965774914", + "695285082614021331087777464" ], - "mAssetSupply": "93860382354786425079323700", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1352900525545330446260676043" }, { - "type": "redeemMasset", - "inputQty": "420978902473207881243033", - "expectedQtys": [ - "116038234590448110812227", - "200895243606656987775251", - "104080288328517927416827" + "type": "redeemBassets", + "inputQtys": [ + "1301943637389164865912832", + "1479663420667536030564352", + "3530202913371296045727744" ], - "redemptionFee": "126293670741962364372", + "expectedQty": "6314136340000440412792477", + "swapFee": "3790756257754917197994", "reserves": [ - "25763314390608360614426890", - "44603637231156283266858328", - "23108359064034759108952452" + "478179621512488047384519859", + "178636139633385127935210562", + "691754879700650035042049720" ], - "mAssetSupply": "93439529745983959160445039" + "mAssetSupply": "1346586389205330005847883566" }, { "type": "mintMulti", "inputQtys": [ - "12675311884781826", - "5154047358593936", - "12160265437365422" + "22197799469005542791315456", + "54792681541536539301904384", + "3617313328121121932836864" ], - "expectedQty": "30028236786133764", + "expectedQty": "81292990292094135951880751", "reserves": [ - "25763314403283672499208716", - "44603637236310330625452264", - "23108359076195024546317874" + "500377420981493590175835315", + "233428821174921667237114946", + "695372193028771156974886584" ], - "mAssetSupply": "93439529776012195946578803" + "mAssetSupply": "1427879379497424141799764317" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7465134635695094104064", - "6176853535723229282304", - "601683477076226342912" + "56339741763585492123648", + "17218917019804667740160", + "123426453115871330041856" ], - "expectedQty": "14237388706762681244650", - "swapFee": "8547561761114277313", + "expectedQty": "196547776194836550845207", "reserves": [ - "25755849268647977405104652", - "44597460382774607396169960", - "23107757392717948319974962" + "500433760723257175667958963", + "233446040091941471904855106", + "695495619481887028304928440" ], - "mAssetSupply": "93425292387305433265334153" + "mAssetSupply": "1428075927273618978350609524" }, { - "type": "redeemMasset", - "inputQty": "556877284394979033088", - "expectedQtys": [ - "153476046768465891791", - "265750969578524083843", - "137696381793793278899" + "type": "redeemBassets", + "inputQtys": [ + "1390889557107830423552", + "631166790038246129664", + "1746208783701829222400" ], - "redemptionFee": "167063185318493709", + "expectedQty": "3765281084211368777939", + "swapFee": "2260524965506124941", "reserves": [ - "25755695792601208939212861", - "44597194631805028872086117", - "23107619696336154526696063" + "500432369833700067837535411", + "233445408925151433658725442", + "695493873273103326475706040" ], - "mAssetSupply": "93424735677084223604794774" + "mAssetSupply": "1428072161992534766981831585" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "55486289669413306368", - "expectedQty": "55631693445608917319", - "swapFee": "33291773801647983", + "type": "mintMulti", + "inputQtys": [ + "4707354218181336183603200", + "445672507566068439449600", + "1715197253249508038410240" + ], + "expectedQty": "6858592151363463344539924", "reserves": [ - "25755695792601208939212861", - "44597139000111583263168798", - "23107619696336154526696063" + "505139724051881404021138611", + "233891081432717502098175042", + "697209070526352834514116280" ], - "mAssetSupply": "93424680224086327993136389" + "mAssetSupply": "1434930754143898230326371509" }, { "type": "redeemBassets", "inputQtys": [ - "137270419097894895616", - "153362082520604966912", - "299938835187096223744" + "8893428597778174082809856", + "12769702339803564730220544", + "936764409690059098292224" ], - "expectedQty": "591161619019071702303", - "swapFee": "354909917361860137", + "expectedQty": "22723723485444072629910432", + "swapFee": "13642419542992238921299", "reserves": [ - "25755558522182111044317245", - "44596985638029062658201886", - "23107319757500967430472319" + "496246295454103229938328755", + "221121379092913937367954498", + "696272306116662775415824056" ], - "mAssetSupply": "93424089062467308921434086" + "mAssetSupply": "1412207030658454157696461077" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "3592051940644599046864896", - "expectedQty": "3581980216793398115786780", - "swapFee": "2155231164386759428118", + "inputIndex": 2, + "inputQty": "815605656453691473920", + "expectedQty": "818918138543965303339", + "swapFee": "489363393872214884", + "reserves": [ + "496246295454103229938328755", + "221121379092913937367954498", + "696271487198524231450520717" + ], + "mAssetSupply": "1412206215542161097877202041" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "4859462952982306810232832", + "expectedQty": "4799158504050902041084570", + "swapFee": "2915677771789384086139", "reserves": [ - "22173578305388712928530465", - "44596985638029062658201886", - "23107319757500967430472319" + "496246295454103229938328755", + "216322220588863035326869928", + "696271487198524231450520717" ], - "mAssetSupply": "89834192352987096633997308" + "mAssetSupply": "1407349668266950580451055348" }, { "type": "redeemMasset", - "inputQty": "56769423326419158984294", + "inputQty": "2748508321904539358724096", "expectedQtys": [ - "14008069601821586516266", - "28173967694565895134730", - "14597957037721622770800" + "968862197073707065811978", + "422343549635572352747306", + "1359387725463295062987691" ], - "redemptionFee": "17030826997925747695", + "redemptionFee": "824552496571361807617", "reserves": [ - "22159570235786891342014199", - "44568811670334496763067156", - "23092721800463245807701519" + "495277433257029522872516777", + "215899877039227462974122622", + "694912099473060936387533026" ], - "mAssetSupply": "89777439960487675400760709" + "mAssetSupply": "1404601984497542612454138869" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "102961524463358143627264", - "expectedQty": "102583315241916647536866", + "type": "redeemBassets", + "inputQtys": [ + "5977445081978804235141120", + "395042940215911023378432", + "4716194848551935127060480" + ], + "expectedQty": "11061299751153955681215595", + "swapFee": "6640764309277940172833", "reserves": [ - "22159570235786891342014199", - "44671773194797854906694420", - "23092721800463245807701519" - ] + "489299988175050718637375657", + "215504834099011551950744190", + "690195904624509001260472546" + ], + "mAssetSupply": "1393540684746388656772923274" }, { "type": "redeemMasset", - "inputQty": "2133978639740", + "inputQty": "4094215925015119906052505", "expectedQtys": [ - "525966298306", - "1060302475909", - "548115025425" + "1437129777175731415555167", + "632962235221238025014625", + "2027183957882629223380415" ], - "redemptionFee": "640193591", + "redemptionFee": "1228264777504535971815", "reserves": [ - "22159570235786365375715893", - "44671773194796794604218511", - "23092721800462697692676094" + "487862858397874987221820490", + "214871871863790313925729565", + "688168720666626372037092131" ], - "mAssetSupply": "89880023275727458709851426" + "mAssetSupply": "1389447697086151041402842584" }, { - "type": "mintMulti", - "inputQtys": [ - "11057210881224094", - "19659338602950072", - "17419088276860696" - ], - "expectedQty": "48137500123558662", + "type": "swap", + "inputIndex": 2, + "inputQty": "1150852478484822246817792", + "outputIndex": 1, + "expectedQty": "1130953101973674206865089", + "swapFee": "687233514477503585890", "reserves": [ - "22159570246843576256939987", - "44671773214456133207168583", - "23092721817881785969536790" + "487862858397874987221820490", + "213740918761816639718864476", + "689319573145111194283909923" ], - "mAssetSupply": "89880023323864958833410088" + "mAssetSupply": "1389448384319665518906428474", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2707698059551335424", - "2701433815318109184", - "1862719556946139648" + "166324351628714208", + "257301933530324064", + "62315308733199128" ], - "expectedQty": "7274315512552607811", - "swapFee": "4367209633311551", + "expectedQty": "488518924055922620", "reserves": [ - "22159567539145516705604563", - "44671770513022317889059399", - "23092719955162229023397142" + "487862858564199338850534698", + "213740919019118573249188540", + "689319573207426503017109051" ], - "mAssetSupply": "89880016049549446280802277" + "mAssetSupply": "1389448384808184442962351094" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "27625940175955468", - "expectedQty": "27711360829284897", - "swapFee": "16575564105573", + "inputQty": "9391409819055116154568704", + "expectedQty": "9267086157942115096469723", + "swapFee": "5634845891433069692741", "reserves": [ - "22159567539145516705604563", - "44671770485310957059774502", - "23092719955162229023397142" + "487862858564199338850534698", + "204473832861176458152718817", + "689319573207426503017109051" ], - "mAssetSupply": "89880016021940081668952382" + "mAssetSupply": "1380062609835020759877475131" }, { "type": "redeemMasset", - "inputQty": "917364889407983704237670", + "inputQty": "4015635170807932098969", "expectedQtys": [ - "226104885174350100228894", - "455807881551538438416473", - "235626294809303743346159" + "1419132375334339087581", + "594788947402137459263", + "2005144901108677124418" ], - "redemptionFee": "275209466822395111271", + "redemptionFee": "1204690551242379629", "reserves": [ - "21933462653971166605375669", - "44215962603759418621358029", - "22857093660352925280050983" + "487861439431824004511447117", + "204473238072229056015259554", + "689317568062525394339984633" ], - "mAssetSupply": "88962926341998920359825983" + "mAssetSupply": "1380058595404540503187755791" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2661982227728536961024", - "expectedQty": "2652183853108966369386", - "reserves": [ - "21933462653971166605375669", - "44218624585987147158319053", - "22857093660352925280050983" - ] - }, - { - "type": "swap", "inputIndex": 0, - "inputQty": "3852742930715054803255296", - "outputIndex": 1, - "expectedQty": "3870123090164835089473202", - "swapFee": "2316660141935319005603", + "inputQty": "8684287441649466188234752", + "expectedQty": "8668050062727218220818379", "reserves": [ - "25786205584686221408630965", - "40348501495822312068845851", - "22857093660352925280050983" - ], - "mAssetSupply": "88967895185993964645200972", - "hardLimitError": false, - "insufficientLiquidityError": false + "496545726873473470699681869", + "204473238072229056015259554", + "689317568062525394339984633" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "471713781072481608531968", - "154784814975691584962560", - "203055922645515225792512" + "95653076492316912", + "102394452293450144", + "107019968929738208" ], - "expectedQty": "830134279058595410361482", + "expectedQty": "305741954204597282", + "swapFee": "183555305706182", "reserves": [ - "26257919365758703017162933", - "40503286310798003653808411", - "23060149582998440505843495" + "496545726777820394207364957", + "204473237969834603721809410", + "689317567955505425410246425" ], - "mAssetSupply": "89798029465052560055562454" + "mAssetSupply": "1388726645161525767203976888" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2122088173579601707008", - "expectedQty": "2116541817191845768334", + "inputIndex": 2, + "inputQty": "202571269346307593994240", + "expectedQty": "201563425463730819619463", "reserves": [ - "26257919365758703017162933", - "40505408398971583255515419", - "23060149582998440505843495" + "496545726777820394207364957", + "204473237969834603721809410", + "689520139224851733004240665" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "123720616683976112734208", - "expectedQty": "123843066558899607871989", + "type": "redeemBassets", + "inputQtys": [ + "28522590048371647447040", + "3433268580667603550208", + "32590507250031016280064" + ], + "expectedQty": "64375727927861003429623", + "swapFee": "38648625932275967638", "reserves": [ - "26381639982442679129897141", - "40505408398971583255515419", - "23060149582998440505843495" - ] + "496517204187772022559917917", + "204469804701253936118259202", + "689487548717601701987960601" + ], + "mAssetSupply": "1388863832859061637020166728" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "560198164585624553652224", - "outputIndex": 2, - "expectedQty": "556919757845461614619119", - "swapFee": "335231637337092940236", + "type": "redeem", + "inputIndex": 2, + "inputQty": "105257819183180438044672", + "expectedQty": "105720693809607169004613", + "swapFee": "63154691509908262826", "reserves": [ - "26381639982442679129897141", - "41065606563557207809167643", - "22503229825152978891224376" + "496517204187772022559917917", + "204469804701253936118259202", + "689381828023792094818955988" ], - "mAssetSupply": "89924324305065988602143013", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1388758638194569966490384882" }, { - "type": "redeemBassets", - "inputQtys": [ - "4665507641262000128", - "7729758653819413504", - "585242918652514048" - ], - "expectedQty": "12965298887253346218", - "swapFee": "7783849642137290", + "type": "mint", + "inputIndex": 2, + "inputQty": "4615136559871881298051072", + "expectedQty": "4592057892166779465232341", "reserves": [ - "26381635316935037867897013", - "41065598833798553989754139", - "22503229239910060238710328" - ], - "mAssetSupply": "89924311339767101348796795" + "496517204187772022559917917", + "204469804701253936118259202", + "693996964583663976117007060" + ] }, { "type": "mintMulti", "inputQtys": [ - "221672925012103622819840", - "57294670282725953372160", - "4639081593314936356864" + "69000314243579035648", + "4109477610438879870976", + "5073817909858591047680" ], - "expectedQty": "283667846896801403774587", + "expectedQty": "9283027326785877949302", "reserves": [ - "26603308241947141490716853", - "41122893504081279943126299", - "22507868321503375175067192" + "496517273188086266138953565", + "204473914178864374998130178", + "694002038401573834708054740" ], - "mAssetSupply": "90207979186663902752571382" + "mAssetSupply": "1393359979114063531833566525" }, { - "type": "redeemMasset", - "inputQty": "4481374335919993126912", - "expectedQtys": [ - "1321209255165409103017", - "2042300416273228896140", - "1117816012578668492992" - ], - "redemptionFee": "1344412300775997938", + "type": "mint", + "inputIndex": 1, + "inputQty": "386657913924927367413760", + "expectedQty": "391950790168044246353397", "reserves": [ - "26601987032691976081613836", - "41120851203665006714230159", - "22506750505490796506574200" - ], - "mAssetSupply": "90203499156740283535442408" + "496517273188086266138953565", + "204860572092789302365543938", + "694002038401573834708054740" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "37596734488704047906816", - "outputIndex": 0, - "expectedQty": "37643881781597629170429", - "swapFee": "22620478553966996363", + "type": "redeemBassets", + "inputQtys": [ + "2364271014625002651648", + "2655314754959126298624", + "1434826455231147278336" + ], + "expectedQty": "6478989111522011799631", + "swapFee": "3889727303295184190", "reserves": [ - "26564343150910378452443407", - "41120851203665006714230159", - "22544347239979500554481016" + "496514908917071641136301917", + "204857916778034343239245314", + "694000603575118603560776404" ], - "mAssetSupply": "90203521777218837502438771", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1393745450915120054068120291" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "119043725958310914949120", - "outputIndex": 1, - "expectedQty": "119403627123738083735424", - "swapFee": "71490538752891873842", + "type": "redeemBassets", + "inputQtys": [ + "515697458157456013131776", + "360325194016599421485056", + "177734300606677854978048" + ], + "expectedQty": "1056811320102571105811815", + "swapFee": "634467472545069705310", "reserves": [ - "26683386876868689367392527", - "41001447576541268630494735", - "22544347239979500554481016" + "495999211458914185123170141", + "204497591584017743817760258", + "693822869274511925705798356" ], - "mAssetSupply": "90203593267757590394312613", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1392688639595017482962308476" }, { "type": "redeemBassets", "inputQtys": [ - "2799028150884546641920", - "10053968088918004858880", - "19532788228813309870080" + "2062585574240886640869376", + "1371271135378986397335552", + "1136487361965696533659648" ], - "expectedQty": "32414876321133658993556", - "swapFee": "19460602153972578943", + "expectedQty": "4579545480314181559954070", + "swapFee": "2749376914337111202694", "reserves": [ - "26680587848717804820750607", - "40991393608452350625635855", - "22524814451750687244610936" + "493936625884673298482300765", + "203126320448638757420424706", + "692686381912546229172138708" ], - "mAssetSupply": "90171178391436456735319057" + "mAssetSupply": "1388109094114703301402354406" }, { "type": "redeemBassets", "inputQtys": [ - "443155280706940", - "455008876042169", - "238938898077376" + "42684007192319334809600", + "1144876968545648115712", + "6250449785715843661824" ], - "expectedQty": "1136915981990042", - "swapFee": "682559124668", + "expectedQty": "49982107792362548795693", + "swapFee": "30007269036839633057", "reserves": [ - "26680587848274649540043667", - "40991393607997341749593686", - "22524814451511748346533560" + "493893941877480979147491165", + "203125175571670211772308994", + "692680131462760513328476884" ], - "mAssetSupply": "90171178390299540753329015" + "mAssetSupply": "1388059112006910938853558713" }, { - "type": "redeemMasset", - "inputQty": "108682546096544", - "expectedQtys": [ - "32148235790929", - "49391752333295", - "27140820519101" - ], - "redemptionFee": "32604763828", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3771259438461952108527616", + "expectedQty": "3776091595004655724599154", + "swapFee": "2262755663077171265116", "reserves": [ - "26680587848242501304252738", - "40991393607947949997260391", - "22524814451484607526014459" + "490117850282476323422892011", + "203125175571670211772308994", + "692680131462760513328476884" ], - "mAssetSupply": "90171178390190890811996299" + "mAssetSupply": "1384290115324112063916296213" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2096650137327433416704", - "expectedQty": "2102438948926756006432", + "type": "redeemMasset", + "inputQty": "1548267231922945733427", + "expectedQtys": [ + "548010672728848917184", + "227118363571212476469", + "774499652706052393862" + ], + "redemptionFee": "464480169576883720", "reserves": [ - "26680587848242501304252738", - "40991393607947949997260391", - "22526911101621934959431163" - ] + "490117302271803594573974827", + "203124948453306640559832525", + "692679356963107807276083022" + ], + "mAssetSupply": "1384288567521360310547446506" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "7395835571902019010560", - "expectedQty": "7416241167555643158098", + "inputIndex": 1, + "inputQty": "13925086775757023861538816", + "expectedQty": "14103579328659852118270537", "reserves": [ - "26680587848242501304252738", - "40991393607947949997260391", - "22534306937193836978441723" + "490117302271803594573974827", + "217050035229063664421371341", + "692679356963107807276083022" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "878325781765569380352", - "expectedQty": "880747674236108307545", + "inputIndex": 1, + "inputQty": "604018850496200698757120", + "expectedQty": "611218459827065325452211", "reserves": [ - "26680587848242501304252738", - "40991393607947949997260391", - "22535185262975602547822075" + "490117302271803594573974827", + "217654054079559865120128461", + "692679356963107807276083022" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "19266671693930713579520", - "outputIndex": 0, - "expectedQty": "19186151841421286136907", - "swapFee": "11528691428927518818", + "type": "redeemMasset", + "inputQty": "160478407280340858673561", + "expectedQtys": [ + "56204044983470804429093", + "24959409083538766206167", + "79432783860966462678346" + ], + "redemptionFee": "48143522184102257602", "reserves": [ - "26661401696401080018115831", - "41010660279641880710839911", - "22535185262975602547822075" + "490061098226820123769545734", + "217629094670476326353922294", + "692599924179246840813404676" ], - "mAssetSupply": "90181589346673038246987192", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1398842935046089071234753295" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "33038087411497743417344", - "expectedQty": "33107971477171005249888", - "swapFee": "19822852446898646050", + "inputIndex": 0, + "inputQty": "10743415476716124986408960", + "expectedQty": "10752992370379984407201877", + "swapFee": "6446049286029674991845", "reserves": [ - "26661401696401080018115831", - "40977552308164709705590023", - "22535185262975602547822075" + "479308105856440139362343857", + "217629094670476326353922294", + "692599924179246840813404676" ], - "mAssetSupply": "90148571082113987402215898" + "mAssetSupply": "1388105965618658975923336180" }, { - "type": "mintMulti", - "inputQtys": [ - "4535055336123160068096", - "4988630477055569428480", - "11948363150351969288192" + "type": "redeemMasset", + "inputQty": "1832657524480528125997875", + "expectedQtys": [ + "632620351911617610349760", + "287240279841792729215598", + "914136027358293940163710" ], - "expectedQty": "21495388090448971846258", + "redemptionFee": "549797257344158437799", "reserves": [ - "26665936751737203178183927", - "40982540938641765275018503", - "22547133626125954517110267" + "478675485504528521751994097", + "217341854390634533624706696", + "691685788151888546873240966" ], - "mAssetSupply": "90170066470204436374062156" + "mAssetSupply": "1386273857891435791955776104" }, { "type": "mintMulti", "inputQtys": [ - "2569013638664211417530368", - "920088384775971554721792", - "1137374770841007247327232" + "158132195102020547379200", + "498295653154931251085312", + "378825184074406949814272" ], - "expectedQty": "4628973104618984832256308", + "expectedQty": "1039041689904907212541835", "reserves": [ - "29234950390401414595714295", - "41902629323417736829740295", - "23684508396966961764437499" + "478833617699630542299373297", + "217840150043789464875792008", + "692064613335962953823055238" ], - "mAssetSupply": "94799039574823421206318464" + "mAssetSupply": "1387312899581340699168317939" }, { "type": "redeemMasset", - "inputQty": "17169522576570106825932", + "inputQty": "352700061570225816993792", "expectedQtys": [ - "5293297885308380343767", - "7586915531737371829246", - "4288331484680600380344" + "121698559208647544771615", + "55365436799291029438211", + "175892550583424589010037" ], - "redemptionFee": "5150856772971032047", + "redemptionFee": "105810018471067745098", "reserves": [ - "29229657092516106215370528", - "41895042407885999457911049", - "23680220065482281164057155" + "478711919140421894754601682", + "217784784606990173846353797", + "691888720785379529234045201" ], - "mAssetSupply": "94781875203103624070524579" + "mAssetSupply": "1386960305329788944419069245" }, { - "type": "redeemMasset", - "inputQty": "4193339687163182605926", - "expectedQtys": [ - "1292790524573497667272", - "1852964394350943678250", - "1047345989163483196848" + "type": "mintMulti", + "inputQtys": [ + "1370288267016778025009152", + "5577654794843010329739264", + "1325028916126146019459072" ], - "redemptionFee": "1258001906148954781", + "expectedQty": "8328271091744181713823900", "reserves": [ - "29228364301991532717703256", - "41893189443491648514232799", - "23679172719493117680860307" + "480082207407438672779610834", + "223362439401833184176093061", + "693213749701505675253504273" ], - "mAssetSupply": "94777683121418367036873434" + "mAssetSupply": "1395288576421533126132893145" + }, + { + "type": "mintMulti", + "inputQtys": [ + "23632093842918526702059520", + "10702207092352722747260928", + "6439408103579544136450048" + ], + "expectedQty": "40827693901906967523157868", + "reserves": [ + "503714301250357199481670354", + "234064646494185906923353989", + "699653157805085219389954321" + ], + "mAssetSupply": "1436116270323440093656051013" }, { "type": "redeemMasset", - "inputQty": "14169501104017730279833", + "inputQty": "609070878289352792945459", "expectedQtys": [ - "4368402784368799100638", - "6261257849402438123399", - "3539033624003904409302" + "213566045377945642721060", + "99239312424653268990190", + "296640690323298287931440" ], - "redemptionFee": "4250850331205319083", + "redemptionFee": "182721263486805837883", "reserves": [ - "29223995899207163918602618", - "41886928185642246076109400", - "23675633685869113776451005" + "503500735204979253838949294", + "233965407181761253654363799", + "699356517114761921102022881" ], - "mAssetSupply": "94763517871164680511912684" + "mAssetSupply": "1435507382166414227668943437" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1737927556277974784", - "1517493440783475200", - "4009493868544290816" + "105216262938187838521344", + "86355854715765752070144", + "8133414799878631981056" ], - "expectedQty": "7273108337048165864", - "swapFee": "4366484893164798", + "expectedQty": "200427505363495498884934", "reserves": [ - "29223994161279607640627834", - "41886926668148805292634200", - "23675629676375245232160189" + "503605951467917441677470638", + "234051763036477019406433943", + "699364650529561799734003937" ], - "mAssetSupply": "94763510598056343463746820" + "mAssetSupply": "1435707809671777723167828371" }, { - "type": "redeemMasset", - "inputQty": "31508356856669", - "expectedQtys": [ - "9713905605545", - "13922999351674", - "7869657739422" + "type": "mintMulti", + "inputQtys": [ + "1719004490320539753119744", + "5688145448372963718987776", + "615177148461630445584384" ], - "redemptionFee": "9452507057", + "expectedQty": "8075755276682144432173160", "reserves": [ - "29223994161269893735022289", - "41886926668134882293282526", - "23675629676367375574420767" + "505324955958237981430590382", + "239739908484849983125421719", + "699979827678023430179588321" ], - "mAssetSupply": "94763510598024844559397208" + "mAssetSupply": "1443783564948459867600001531" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "1888455520611741017833472", - "expectedQty": "1891719899065571291292446", - "swapFee": "1133073312367044610700", + "inputQty": "693452687257736887402496", + "expectedQty": "700395332741122364736599", "reserves": [ - "29223994161269893735022289", - "39995206769069311001990080", - "23675629676367375574420767" - ], - "mAssetSupply": "92876188150725470586174436" + "505324955958237981430590382", + "240433361172107720012824215", + "699979827678023430179588321" + ] }, { "type": "redeemMasset", - "inputQty": "48529951288778678704537", + "inputQty": "22363661569024294125568", "expectedQtys": [ - "15265630186126159412999", - "20892148841290726840272", - "12367351467038238033579" + "7821150205325641635774", + "3721299353863246406546", + "10833914510686122416666" ], - "redemptionFee": "14558985386633603611", + "redemptionFee": "6709098470707288237", "reserves": [ - "29208728531083767575609290", - "39974314620228020275149808", - "23663262324900337336387188" + "505317134808032655788954608", + "240429639872753856766417669", + "699968993763512744057171655" ], - "mAssetSupply": "92827672758422078541073510" + "mAssetSupply": "1444461603328730436377900799" }, { - "type": "redeemMasset", - "inputQty": "487453951689934410822451", - "expectedQtys": [ - "153334004293240563921921", - "209848974530832300800548", - "124222550908268434657919" + "type": "redeemBassets", + "inputQtys": [ + "902535839625948931555328", + "590568693481355440291840", + "1632069959227040065388544" ], - "redemptionFee": "146236185506980323246", + "expectedQty": "3122927209755755815932556", + "swapFee": "1874881254606217219891", "reserves": [ - "29055394526790527011687369", - "39764465645697187974349260", - "23539039773992068901729269" + "504414598968406706857399280", + "239839071179272501326125829", + "698336923804285703991783111" ], - "mAssetSupply": "92340365042917651110574305" + "mAssetSupply": "1441338676118974680561968243" }, { - "type": "redeemMasset", - "inputQty": "128185349101822905679872", - "expectedQtys": [ - "40322112071033026151655", - "55183805497190596669544", - "32666698052792023204232" + "type": "redeemBassets", + "inputQtys": [ + "862119620880542266818560", + "178414963277051199488000", + "1076795728365664245645312" ], - "redemptionFee": "38455604730546871703", + "expectedQty": "2113374486618024834333026", + "swapFee": "1268785963548944267160", "reserves": [ - "29015072414719493985535714", - "39709281840199997377679716", - "23506373075939276878525037" + "503552479347526164590580720", + "239660656215995450126637829", + "697260128075920039746137799" ], - "mAssetSupply": "92212218149420558751766136" + "mAssetSupply": "1439225301632356655727635217" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "43500330280614617088", - "expectedQty": "43610166034551471146", - "reserves": [ - "29015072414719493985535714", - "39709281840199997377679716", - "23506416576269557493142125" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "74719879647757233815552", - "expectedQty": "74839280655965006520867", - "swapFee": "44831927788654340289", + "inputQty": "1335053813228975066972160", + "outputIndex": 1, + "expectedQty": "1315376572768816287842787", + "swapFee": "797639884295619360027", "reserves": [ - "29015072414719493985535714", - "39634442559544032371158849", - "23506416576269557493142125" + "503552479347526164590580720", + "238345279643226633838795042", + "698595181889149014813109959" ], - "mAssetSupply": "92137586711866624723762019" + "mAssetSupply": "1439226099272240951346995244", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "4138697474078923", - "expectedQtys": [ - "1302927348274917", - "1779792185466461", - "1055560109566610" - ], - "redemptionFee": "1241609242223", + "type": "swap", + "inputIndex": 1, + "inputQty": "26219295286664707277062144", + "outputIndex": 0, + "expectedQty": "26461926413070532373606461", + "swapFee": "15873634847280602131626", "reserves": [ - "29015072413416566637260797", - "39634442557764240185692388", - "23506416575213997383575515" + "477090552934455632216974259", + "264564574929891341115857186", + "698595181889149014813109959" ], - "mAssetSupply": "92137586707729168858925319" + "mAssetSupply": "1439241972907088231949126870", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "89499470262680464", - "1576463530604093184", - "639350093221580928" + "141644630008390139904", + "124843289340059746304", + "179456133900154732544" ], - "expectedQty": "2303498604905839801", - "reserves": [ - "29015072502916036899941261", - "39634444134227770789785572", - "23506417214564090605156443" - ], - "mAssetSupply": "92137589011227773764765120" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "178955966685239672832", - "expectedQty": "179241029549538840881", - "swapFee": "107373580011143803", + "expectedQty": "446110947294645263554", "reserves": [ - "29015072502916036899941261", - "39634264893198221250944691", - "23506417214564090605156443" + "477090694579085640607114163", + "264564699773180681175603490", + "698595361345282914967842503" ], - "mAssetSupply": "92137410162634668536236091" + "mAssetSupply": "1439242419018035526594390424" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "251919187101216174768128", - "outputIndex": 2, - "expectedQty": "251190378927930508555585", - "swapFee": "151195844234713187265", + "inputIndex": 2, + "inputQty": "35279333833058563852861440", + "outputIndex": 1, + "expectedQty": "34777402893872800460190664", + "swapFee": "21080954703011030905935", "reserves": [ - "29266991690017253074709389", - "39634264893198221250944691", - "23255226835636160096600858" + "477090694579085640607114163", + "229787296879307880715412826", + "733874695178341478820703943" ], - "mAssetSupply": "92137561358478903249423356", + "mAssetSupply": "1439263499972738537625296359", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "108137723450653912596480", - "expectedQty": "108421056181867503655037", + "inputIndex": 1, + "inputQty": "62601930010857760054312960", + "expectedQty": "63144109830896943617435839", "reserves": [ - "29266991690017253074709389", - "39634264893198221250944691", - "23363364559086814009197338" + "477090694579085640607114163", + "292389226890165640769725786", + "733874695178341478820703943" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "663399319180630342762496", - "expectedQty": "665044493723794289865309", + "inputIndex": 1, + "inputQty": "1583942755877751883825152", + "expectedQty": "1594308558975729455214233", "reserves": [ - "29266991690017253074709389", - "39634264893198221250944691", - "24026763878267444351959834" + "477090694579085640607114163", + "293973169646043392653550938", + "733874695178341478820703943" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "25586388785164374016", - "13229230213887678464", - "65204678584557551616" + "4500278747889973", + "2067411124286170", + "3876871154436635" ], - "expectedQty": "104154963480999942426", - "swapFee": "62530496386431824", + "expectedQty": "10442753771004611", "reserves": [ - "29266966103628467910335373", - "39634251663968007363266227", - "24026698673588859794408218" + "477090694583585919355004136", + "293973169648110803777837108", + "733874695182218349975140578" ], - "mAssetSupply": "92910922753421084043001276" + "mAssetSupply": "1504001918373053964468951042" }, { "type": "redeemMasset", - "inputQty": "47532015824121995303321", + "inputQty": "816831212314744061952000", "expectedQtys": [ - "14968106218078807429382", - "20270283113041559140195", - "12288058029064530292547" - ], - "redemptionFee": "14259604747236598590", - "reserves": [ - "29251997997410389102905991", - "39613981380854965804126032", - "24014410615559795264115671" - ], - "mAssetSupply": "92863404997201709284296545" - }, - { - "type": "mintMulti", - "inputQtys": [ - "365214872439570980405248", - "406662179734345167667200", - "37256813806955014389760" + "259032687997561699669053", + "159610449748086995158761", + "398451567185484732868142" ], - "expectedQty": "808476933896149140462047", + "redemptionFee": "245049363694423218585", "reserves": [ - "29617212869849960083311239", - "40020643560589310971793232", - "24051667429366750278505431" + "476831661895588357655335083", + "293813559198362716782678347", + "733476243615032865242272436" ], - "mAssetSupply": "93671881931097858424758592" + "mAssetSupply": "1503185332210102914830217627" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "1850999388798671912960000", - "outputIndex": 0, - "expectedQty": "1852517503460875919449026", - "swapFee": "1112973671942887272851", + "inputIndex": 1, + "inputQty": "11844902483300293118263296", + "outputIndex": 2, + "expectedQty": "11954354155587329985418679", + "swapFee": "7151039495132434831212", "reserves": [ - "27764695366389084163862213", - "40020643560589310971793232", - "25902666818165422191465431" + "476831661895588357655335083", + "305658461681663009900941643", + "721521889459445535256853757" ], - "mAssetSupply": "93672994904769801312031443", + "mAssetSupply": "1503192483249598047265048839", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "9899299557760616448", - "expectedQty": "9877201747689680081", - "swapFee": "5939579734656369", + "type": "redeemBassets", + "inputQtys": [ + "725668799897623005757440", + "1724652955321850342146048", + "1696972789683481038815232" + ], + "expectedQty": "4151211274175759141485274", + "swapFee": "2492222097764113953263", "reserves": [ - "27764695366389084163862213", - "40020643560589310971793232", - "25902656940963674501785350" + "476105993095690734649577643", + "303933808726341159558795595", + "719824916669762054218038525" ], - "mAssetSupply": "93672985011409823286071364" + "mAssetSupply": "1499041271975422288123563565" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "80193330378128539648", - "expectedQty": "80324518781252703073", - "reserves": [ - "27764695366389084163862213", - "40020643560589310971793232", - "25902737134294052630324998" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "3150848300067831939072", - "expectedQty": "3153776446597321295397", - "reserves": [ - "27767846214689151995801285", - "40020643560589310971793232", - "25902737134294052630324998" - ] - }, - { - "type": "redeemMasset", - "inputQty": "359152233751610182860", - "expectedQtys": [ - "106429275474050121037", - "153392094771308912979", - "99280640085774492639" - ], - "redemptionFee": "107745670125483054", + "inputQty": "8784443620928249659392", + "outputIndex": 1, + "expectedQty": "8697278738738280009834", + "swapFee": "5251879410594256593", "reserves": [ - "27767739785413677945680248", - "40020490168494539662880253", - "25902637853653966855832359" + "476105993095690734649577643", + "303925111447602421278785761", + "719833701113382982467697917" ], - "mAssetSupply": "93675860067887120375370028" + "mAssetSupply": "1499041277227301698717820158", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "7208332436647323499495424", - "expectedQty": "7209642651180631525383795", - "reserves": [ - "34976072222061001445175672", - "40020490168494539662880253", - "25902637853653966855832359" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "1081886084820973518848", - "205818587803187511296", - "73131093440825524224" - ], - "expectedQty": "1360195596956664917451", - "reserves": [ - "34977154108145822418694520", - "40020695987082342850391549", - "25902710984747407681356583" - ], - "mAssetSupply": "100886862914664708565671274" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1344765701579117690880", - "5465170113087424954368", - "7471767022406532595712" - ], - "expectedQty": "14291073333277958687514", + "inputQty": "1097677786518028210405376", + "outputIndex": 1, + "expectedQty": "1090565000808531956927693", + "swapFee": "658565473203462309158", "reserves": [ - "34978498873847401536385400", - "40026161157195430275345917", - "25910182751769814213952295" + "477203670882208762859983019", + "302834546446793889321858068", + "719833701113382982467697917" ], - "mAssetSupply": "100901153987997986524358788" + "mAssetSupply": "1499041935792774902180129316", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "1307686750509189824512", - "1046763459010384232448", - "1241551497357061783552" + "912949235367056597057536", + "2592317911223144066056192", + "1587597746441244530180096" ], - "expectedQty": "3596840513838556731361", + "expectedQty": "5102273736309098409442842", "reserves": [ - "34979806560597910726209912", - "40027207920654440659578365", - "25911424303267171275735847" + "478116620117575819457040555", + "305426864358017033387914260", + "721421298859824226997878013" ], - "mAssetSupply": "100904750828511825081090149" + "mAssetSupply": "1504144209529084000589572158" }, { "type": "redeemMasset", - "inputQty": "3366594087011769548", + "inputQty": "68060286934660284416", "expectedQtys": [ - "1166718911865937902", - "1335070289463011456", - "864251456497698453" + "21627575282366656595", + "13815965026557285028", + "32633447144248361043" ], - "redemptionFee": "1009978226103530", + "redemptionFee": "20418086080398085", "reserves": [ - "34979805393878998860272010", - "40027206585584151196566909", - "25911423439015714778037394" + "478116598490000537090383960", + "305426850542052006830629232", + "721421266226377082749516970" ], - "mAssetSupply": "100904747462927716295424131" + "mAssetSupply": "1504144141489215152009685827" }, { "type": "mintMulti", "inputQtys": [ - "96687812433675699617792", - "71667167471327908986880", - "7227601486172653617152" + "45589363572555292672", + "44731653468760227840", + "48058132481483563008" ], - "expectedQty": "175445792574158129582843", + "expectedQty": "138464857587903371220", "reserves": [ - "35076493206312674559889802", - "40098873753055479105553789", - "25918651040501887431654546" + "478116644079364109645676632", + "305426895273705475590857072", + "721421314284509564233079978" ], - "mAssetSupply": "101080193255501874425006974" + "mAssetSupply": "1504144279954072739913057047" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "338861775585081458425856", - "expectedQty": "338811017236381910075869", - "swapFee": "203317065351048875055", + "type": "mint", + "inputIndex": 1, + "inputQty": "4405980098957784318476288", + "expectedQty": "4431050711492483329707553", "reserves": [ - "34737682189076292649813933", - "40098873753055479105553789", - "25918651040501887431654546" - ], - "mAssetSupply": "100741534796982144015456173" + "478116644079364109645676632", + "309832875372663259909333360", + "721421314284509564233079978" + ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "466898616230001408", - "expectedQty": "468031562295766825", + "inputIndex": 0, + "inputQty": "83318188937668739072", + "expectedQty": "83317016389890407220", "reserves": [ - "34737682189076292649813933", - "40098873753055479105553789", - "25918651507400503661655954" + "478116727397553047314415704", + "309832875372663259909333360", + "721421314284509564233079978" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "518297713347001151651840", - "expectedQty": "518184192542832682309951", - "swapFee": "310978628008200690991", + "type": "mint", + "inputIndex": 1, + "inputQty": "14286754240132171119460352", + "expectedQty": "14362310774595941775200327", "reserves": [ - "34219497996533459967503982", - "40098873753055479105553789", - "25918651507400503661655954" - ], - "mAssetSupply": "100223548530294713360262149" + "478116727397553047314415704", + "324119629612795431028793712", + "721421314284509564233079978" + ] }, { "type": "redeemMasset", - "inputQty": "1709049303787817559654", + "inputQty": "1499986277837024788480", "expectedQtys": [ - "583348576672114801643", - "683575806178377568872", - "441841913275124879677" + "470769991501719720592", + "319139211273571448586", + "710335963026204294475" + ], + "redemptionFee": "449995883351107436", + "reserves": [ + "478116256627561545594695112", + "324119310473584157457345126", + "721420603948546538028785503" + ], + "mAssetSupply": "1522936225220895601234691103" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "988237249357930660102144", + "expectedQty": "982713994625224360618322", + "swapFee": "592942349614758396061", + "reserves": [ + "478116256627561545594695112", + "323136596478958933096726804", + "721420603948546538028785503" ], - "redemptionFee": "512714791136345267", + "mAssetSupply": "1521948580913887285332985020" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1132210531156266188800", + "expectedQty": "1131396890512436767219", + "swapFee": "679326318693759713", "reserves": [ - "34218914647956787852702339", - "40098190177249300727984917", - "25918209665487228536776277" + "478115125230671033157927893", + "323136596478958933096726804", + "721420603948546538028785503" ], - "mAssetSupply": "100221839993705716679047762" + "mAssetSupply": "1521947449382682447760555933" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "2893722332454280757248", - "outputIndex": 0, - "expectedQty": "2899816341599668310727", - "swapFee": "1740345745000188769", + "inputIndex": 1, + "inputQty": "2111423699097518681882624", + "outputIndex": 2, + "expectedQty": "2127733045592003698958402", + "swapFee": "1273182128799829578726", "reserves": [ - "34216014831615188184391612", - "40098190177249300727984917", - "25921103387819682817533525" + "478115125230671033157927893", + "325248020178056451778609428", + "719292870902954534329827101" ], - "mAssetSupply": "100221841734051461679236531", + "mAssetSupply": "1521948722564811247590134659", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1794651967110528", + "expectedQty": "1784775664775866", + "swapFee": "1076791180266", + "reserves": [ + "478115125230671033157927893", + "325248020176271676113833562", + "719292870902954534329827101" + ], + "mAssetSupply": "1521948722563017672414204397" + }, { "type": "mint", "inputIndex": 1, - "inputQty": "383607150642926592", - "expectedQty": "383001757722486844", + "inputQty": "10460359937449952966344704", + "expectedQty": "10509881499861988493815012", "reserves": [ - "34216014831615188184391612", - "40098190560856451370911509", - "25921103387819682817533525" + "478115125230671033157927893", + "335708380113721629080178266", + "719292870902954534329827101" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "79418902028273298964480", - "146055380859776613220352", - "457924854929196868173824" + "97559638757679648735232", + "10941009188993303052288", + "6370331663019232198656" ], - "expectedQty": "684203562816681559048303", + "expectedQty": "114922560861655033494882", + "swapFee": "68994933477079267657", "reserves": [ - "34295433733643461483356092", - "40244245941716227984131861", - "26379028242748879685707349" + "478017565591913353509192661", + "335697439104532635777125978", + "719286500571291515097628445" ], - "mAssetSupply": "100906045679869900960771678" + "mAssetSupply": "1532343681502018005874524527" }, { "type": "mintMulti", "inputQtys": [ - "25107378838780998844416", - "32252235102583173152768", - "11088031135738059816960" + "55507968174314168", + "33488942266041848", + "28211618542372292" ], - "expectedQty": "68415551813873266909945", + "expectedQty": "117283428684741054", "reserves": [ - "34320541112482242482200508", - "40276498176818811157284629", - "26390116273884617745524309" + "478017565647421321683506829", + "335697439138021578043167826", + "719286500599503133640000737" ], - "mAssetSupply": "100974461231683774227681623" + "mAssetSupply": "1532343681619301434559265581" }, { - "type": "redeemBassets", - "inputQtys": [ - "164275976569082118144", - "3375814544877796458496", - "3261360414417829756928" - ], - "expectedQty": "6803542741132239683938", - "swapFee": "4084576390513652001", + "type": "mint", + "inputIndex": 1, + "inputQty": "33721269959333276286976", + "expectedQty": "33874445988130782441815", "reserves": [ - "34320376836505673400082364", - "40273122362273933360826133", - "26386854913470199915767381" - ], - "mAssetSupply": "100967657688942641987997685" + "478017565647421321683506829", + "335731160407980911319454802", + "719286500599503133640000737" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "89840405096233175089152", - "expectedQty": "89812044856374210536728", - "swapFee": "53904243057739905053", + "inputIndex": 1, + "inputQty": "447115015802650755072", + "expectedQty": "444826422402330181383", + "swapFee": "268269009481590453", "reserves": [ - "34230564791649299189545636", - "40273122362273933360826133", - "26386854913470199915767381" + "478017565647421321683506829", + "335730715581558508989273419", + "719286500599503133640000737" ], - "mAssetSupply": "100877871188089466552813586" + "mAssetSupply": "1532377109218542772172542777" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "990430997036824133632", - "expectedQty": "987620220799775383557", - "swapFee": "594258598222094480", + "inputIndex": 1, + "inputQty": "307546223197999299821568", + "expectedQty": "305970369434341964820125", + "swapFee": "184527733918799579892", "reserves": [ - "34230564791649299189545636", - "40273122362273933360826133", - "26385867293249400140383824" + "478017565647421321683506829", + "335424745212124167024453294", + "719286500599503133640000737" ], - "mAssetSupply": "100876881351351027950774434" + "mAssetSupply": "1532069747523078691672301101" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "43376553539694125056", - "33990879741489717248", - "28555574947111010304" + "4896526611219410933776384", + "6748838159419308897206272", + "3991332701996266089873408" ], - "expectedQty": "105922405732652005160", + "expectedQty": "15656163155779338541959400", + "swapFee": "9399337495965182234516", "reserves": [ - "34230608168202838883670692", - "40273156353153674850543381", - "26385895848824347251394128" + "473121039036201910749730445", + "328675907052704858127247022", + "715295167897506867550127329" ], - "mAssetSupply": "100876987273756760602779594" + "mAssetSupply": "1516413584367299353130341701" }, { "type": "redeemBassets", "inputQtys": [ - "592920168187988279296", - "4674833167127342481408", - "7703492568493503545344" + "66520037188437377286144", + "60880244458233392005120", + "19088831423544477876224" ], - "expectedQty": "12981133285655130115477", - "swapFee": "7793355984984068510", + "expectedQty": "146727879321774965343294", + "swapFee": "88089581341870101266", "reserves": [ - "34230015248034650895391396", - "40268481519986547508061973", - "26378192356255853747848784" + "473054518999013473372444301", + "328615026808246624735241902", + "715276079066083323072251105" ], - "mAssetSupply": "100864006140471105472664117" + "mAssetSupply": "1516266856487977578164998407" }, { "type": "mintMulti", "inputQtys": [ - "20104977825850454016", - "11736214460570884096", - "20207852561654693888" + "7434837545773742002536448", + "1653692634224548456169472", + "5471649540330329481412608" ], - "expectedQty": "52070653474742493250", + "expectedQty": "14551596438291963584487568", "reserves": [ - "34230035353012476745845412", - "40268493256201008078946069", - "26378212564108415402542672" + "480489356544787215374980749", + "330268719442471173191411374", + "720747728606413652553663713" ], - "mAssetSupply": "100864058211124580215157367" + "mAssetSupply": "1530818452926269541749485975" }, { - "type": "redeemMasset", - "inputQty": "200544059862957256867840", - "expectedQtys": [ - "68037822308354250412594", - "80040250047519925951714", - "52431033761431936362958" + "type": "mintMulti", + "inputQtys": [ + "77282336667515498790912", + "7841222043408175988736", + "70688859560257586724864" ], - "redemptionFee": "60163217958887177060", + "expectedQty": "155632171673841831892250", "reserves": [ - "34161997530704122495432818", - "40188453006153488152994355", - "26325781530346983466179714" + "480566638881454730873771661", + "330276560664514581367400110", + "720818417465973910140388577" ], - "mAssetSupply": "100663574314479581845466587" + "mAssetSupply": "1530974085097943383581378225" }, { "type": "redeemBassets", "inputQtys": [ - "209694283590681195708416", - "908255244497899699044352", - "712119783317881407668224" + "597305160077416595456", + "1136195475231215321088", + "13449790135601813520384" ], - "expectedQty": "1830238917071428227103733", - "swapFee": "1098802631821950106326", + "expectedQty": "15145191283009117686255", + "swapFee": "9092570311992666211", "reserves": [ - "33952303247113441299724402", - "39280197761655588453950003", - "25613661747029102058511490" + "480566041576294653457176205", + "330275424469039350152079022", + "720804967675838308326868193" ], - "mAssetSupply": "98833335397408153618362854" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "194600716690527245828096", - "outputIndex": 2, - "expectedQty": "193720579361151748854762", - "swapFee": "116581078101143538827", - "reserves": [ - "33952303247113441299724402", - "39474798478346115699778099", - "25419941167667950309656728" - ], - "mAssetSupply": "98833451978486254761901681", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "5199702450407092518912", - "expectedQty": "5191535098193328699272", - "reserves": [ - "33952303247113441299724402", - "39479998180796522792297011", - "25419941167667950309656728" - ] + "mAssetSupply": "1530958939906660374463691970" }, { - "type": "redeemMasset", - "inputQty": "108324879748264473", - "expectedQtys": [ - "37199780085659596", - "43256189113848501", - "27851312894598607" + "type": "mintMulti", + "inputQtys": [ + "1983905228826194477056", + "2113871148544872677376", + "715390966944008372224" ], - "redemptionFee": "32497463924479", + "expectedQty": "4821246084706738699715", "reserves": [ - "33952303209913661214064806", - "39479998137540333678448510", - "25419941139816637415058121" + "480568025481523479651653261", + "330277538340187895024756398", + "720805683066805252335240417" ], - "mAssetSupply": "98838643405292065806260959" + "mAssetSupply": "1530963761152745081202391685" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "53115392298188398592", - "expectedQty": "53104406835174141746", - "swapFee": "31869235378913039", + "type": "swap", + "inputIndex": 2, + "inputQty": "7598043236054102804791296", + "outputIndex": 1, + "expectedQty": "7530913366196944538409683", + "swapFee": "4543896791286312659015", "reserves": [ - "33952250105506826039923060", - "39479998137540333678448510", - "25419941139816637415058121" + "480568025481523479651653261", + "322746624973990950486346715", + "728403726302859355140031713" ], - "mAssetSupply": "98838590321769002996775406" + "mAssetSupply": "1530968305049536367515050700", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "22123037128329785245696", - "expectedQty": "22114296666674033515409", + "type": "redeemBassets", + "inputQtys": [ + "264558574969954844540928", + "9895013899551932833333248", + "1656270745803767760814080" + ], + "expectedQty": "11863074422165458336076176", + "swapFee": "7122117924053707225981", "reserves": [ - "33974373142635155825168756", - "39479998137540333678448510", - "25419941139816637415058121" - ] + "480303466906553524807112333", + "312851611074439017653013467", + "726747455557055587379217633" + ], + "mAssetSupply": "1519105230627370909178974524" }, { "type": "redeemMasset", - "inputQty": "94537166652584548001382", + "inputQty": "29242191592040445457203", "expectedQtys": [ - "32478803745152681126221", - "37742068293205001104142", - "24300942243357033654500" + "9242883363651837916514", + "6020466539447650646027", + "13985412201597745301045" ], - "redemptionFee": "28361149995775364400", + "redemptionFee": "8772657477612133637", "reserves": [ - "33941894338890003144042535", - "39442256069247128677344368", - "25395640197573280381403621" + "480294224023189872969195819", + "312845590607899570002367440", + "726733470144853989633916588" ], - "mAssetSupply": "98766195812933088257653833" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "37364109477578534813696", - "expectedQty": "37454783735896755163137", - "reserves": [ - "33941894338890003144042535", - "39442256069247128677344368", - "25433004307050858916217317" - ] + "mAssetSupply": "1519075997208436346345650958" }, { - "type": "redeemBassets", - "inputQtys": [ - "806237650146387864584192", - "879108432987278016512000", - "1345353391421004997197824" + "type": "redeemMasset", + "inputQty": "675210174363738098892", + "expectedQtys": [ + "213420696186594483904", + "139014213386044236292", + "322926979719260126780" ], - "expectedQty": "3032362207661914002314343", - "swapFee": "1820509630375373625563", + "redemptionFee": "202563052309121429", "reserves": [ - "33135656688743615279458343", - "38563147636259850660832368", - "24087650915629853919019493" + "480294010602493686374711915", + "312845451593686183958131148", + "726733147217874270373789808" ], - "mAssetSupply": "95771288389007071010502627" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "39735588110936313954304", - "expectedQty": "39841920434857179920986", - "reserves": [ - "33135656688743615279458343", - "38563147636259850660832368", - "24127386503740790232973797" - ] + "mAssetSupply": "1519075322200825034916673495" }, { "type": "mintMulti", "inputQtys": [ - "38967204485929703047168", - "76368077551032963432448", - "1011638199218199068672" + "180884551686903295901696", + "152189013135527661010944", + "146991856081776511287296" ], - "expectedQty": "116204539695444594159670", + "expectedQty": "480398169030795062876990", "reserves": [ - "33174623893229544982505511", - "38639515713810883624264816", - "24128398141940008432042469" + "480474895154180589670613611", + "312997640606821711619142092", + "726880139073956046885077104" ], - "mAssetSupply": "95927334849137372784583283" + "mAssetSupply": "1519555720369855829979550485" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "128270750542625161347072", - "expectedQty": "128056359285564540937786", + "type": "swap", + "inputIndex": 0, + "inputQty": "246857073832914281562112", + "outputIndex": 1, + "expectedQty": "245349710428392825638826", + "swapFee": "148115815960299149230", "reserves": [ - "33174623893229544982505511", - "38767786464353508785611888", - "24128398141940008432042469" - ] + "480721752228013503952175723", + "312752290896393318793503266", + "726880139073956046885077104" + ], + "mAssetSupply": "1519555868485671790278699715", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 1, - "inputQty": "311501173868861797171200", + "inputIndex": 2, + "inputQty": "5662888368317414877691904", "outputIndex": 0, - "expectedQty": "310913748416959658226967", - "swapFee": "186582782675256492883", + "expectedQty": "5639150838741282537066248", + "swapFee": "3385781983896338738575", "reserves": [ - "32863710144812585324278544", - "39079287638222370582783088", - "24128398141940008432042469" + "475082601389272221415109475", + "312752290896393318793503266", + "732543027442273461762769008" ], - "mAssetSupply": "96055577791205612582013952", + "mAssetSupply": "1519559254267655686617438290", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "6897763421494107340", - "expectedQtys": [ - "2359239277023032873", - "2805446795505160189", - "1732143581393526325" + "type": "redeemBassets", + "inputQtys": [ + "268309731554327429120", + "445503499426184953856", + "321972459262605787136" ], - "redemptionFee": "2069329026448232", + "expectedQty": "1037147827633966215921", + "swapFee": "622662293956753781", "reserves": [ - "32863707785573308301245671", - "39079284832775575077622899", - "24128396409796427038516144" + "475082333079540667087680355", + "312751845392893892608549410", + "732542705469814199156981872" ], - "mAssetSupply": "96055570895511520114354844" + "mAssetSupply": "1519558217119828052651222369" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "224433368101739724800", - "expectedQty": "223695244170725519263", - "swapFee": "134660020861043834", - "reserves": [ - "32863707785573308301245671", - "39079284832775575077622899", - "24128172714552256312996881" + "type": "mintMulti", + "inputQtys": [ + "3109038986589831440629760", + "2417640300789315009511424", + "4839035956084235678253056" ], - "mAssetSupply": "96055346596803439235673878" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "1335418760017413358485504", - "outputIndex": 1, - "expectedQty": "1339922558012647949737557", - "swapFee": "803229027369228044196", + "expectedQty": "10362258798585732010115692", "reserves": [ - "32863707785573308301245671", - "37739362274762927127885342", - "25463591474569669671482385" + "478191372066130498528310115", + "315169485693683207618060834", + "737381741425898434835234928" ], - "mAssetSupply": "96056149825830808463718074", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1529920475918413784661338061" }, { "type": "redeemBassets", "inputQtys": [ - "6514661345164", - "13856657416113", - "12091890564766" + "25822856150793366536192", + "19677139002796047073280", + "113775956185315228516352" ], - "expectedQty": "32466942186994", - "swapFee": "19491860428", + "expectedQty": "158982518279929317770247", + "swapFee": "95446779035378817952", "reserves": [ - "32863707785566793639900507", - "37739362274749070470469229", - "25463591474557577780917619" + "478165549209979705161773923", + "315149808554680411570987554", + "737267965469713119606718576" ], - "mAssetSupply": "96056149825798341521531080" + "mAssetSupply": "1529761493400133855343567814" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "40491566404026455031808", - "expectedQty": "40480460449523435553552", - "swapFee": "24294939842415873019", + "type": "redeemMasset", + "inputQty": "42777866760678119833", + "expectedQtys": [ + "13367290111057977850", + "8810126380612264973", + "20610591457928987997" + ], + "redemptionFee": "12833360028203435", "reserves": [ - "32823227325117270204346955", - "37739362274749070470469229", - "25463591474557577780917619" + "478165535842689594103796073", + "315149799744554030958722581", + "737267944859121661677730579" ], - "mAssetSupply": "96015682554334157482372291" + "mAssetSupply": "1529761450635100454693651416" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "76664782976615792", - "expectedQty": "76825578096286911", + "type": "mintMulti", + "inputQtys": [ + "27327729828057055232000", + "2106548329718109962240", + "28563730089146669072384" + ], + "expectedQty": "57911156603824829504947", "reserves": [ - "32823227325117270204346955", - "37739362274749070470469229", - "25463591551222360757533411" - ] + "478192863572517651159028073", + "315151906292883749068684821", + "737296508589210808346802963" + ], + "mAssetSupply": "1529819361791704279523156363" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "38645713234284802736128", - "31401775224089202393088", - "43362569216720401072128" + "11515188772930660979441664", + "11431294341848790971973632", + "9960742206157684278820864" ], - "expectedQty": "113444119955215409166530", + "expectedQty": "32937532447641637856009248", + "swapFee": "19774384099044409359221", "reserves": [ - "32861873038351555007083083", - "37770764049973159672862317", - "25506954120439081158605539" + "466677674799586990179586409", + "303720611951034958096711189", + "727335766383053124067982099" ], - "mAssetSupply": "96129126751114950987825732" + "mAssetSupply": "1496881829344062641667147115" }, { - "type": "redeemMasset", - "inputQty": "94421581907124635985510", - "expectedQtys": [ - "32268463061485686989300", - "37088710772153513535280", - "25046357092483191370765" + "type": "redeemBassets", + "inputQtys": [ + "272313748776649050030080", + "59108962024613040095232", + "148327040078071478616064" ], - "redemptionFee": "28326474572137390795", + "expectedQty": "479581684019654236163020", + "swapFee": "287921763469874466377", "reserves": [ - "32829604575290069320093783", - "37733675339201006159327037", - "25481907763346597967234774" + "466405361050810341129556329", + "303661502989010345056615957", + "727187439342975052589366035" ], - "mAssetSupply": "96034733495682398489231017" + "mAssetSupply": "1496402247660042987430984095" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "697804284245662629888", - "expectedQty": "697579676576942748092", + "type": "redeem", + "inputIndex": 2, + "inputQty": "187247399576947949568", + "expectedQty": "187827013962811269344", + "swapFee": "112348439746168769", "reserves": [ - "32830302379574314982723671", - "37733675339201006159327037", - "25481907763346597967234774" - ] + "466405361050810341129556329", + "303661502989010345056615957", + "727187251515961089778096691" + ], + "mAssetSupply": "1496402060524991850229203296" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6999008063796629471232", - "9963242557060631494656", - "14487027447574976004096" + "71103591232338952", + "13469923281564052", + "51064045810818808" ], - "expectedQty": "31463297004393856512702", - "swapFee": "18889311789710139991", + "expectedQty": "135536866154336542", "reserves": [ - "32823303371510518353252439", - "37723712096643945527832381", - "25467420735899022991230678" + "466405361121913932361895281", + "303661503002480268338180009", + "727187251567025135588915499" ], - "mAssetSupply": "96003967778354581575466407" + "mAssetSupply": "1496402060660528716383539838" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "21082030956147931873280", - "outputIndex": 0, - "expectedQty": "21120179927596603676032", - "swapFee": "12675671786965114724", + "inputIndex": 0, + "inputQty": "41345044125628177475174400", + "outputIndex": 1, + "expectedQty": "41009445092894625858248528", + "swapFee": "24802722302823088331031", "reserves": [ - "32802183191582921749576407", - "37723712096643945527832381", - "25488502766855170923103958" + "507750405247542109837069681", + "262652057909585642479931481", + "727187251567025135588915499" ], - "mAssetSupply": "96003980454026368540581131", + "mAssetSupply": "1496426863382831539471870869", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1050041785786829897728", - "expectedQtys": [ - "358665648595484746394", - "412478632521142659965", - "278696400273373475232" + "type": "redeemBassets", + "inputQtys": [ + "86356242170366010589184", + "104297214019325172645888", + "55055265622067286900736" ], - "redemptionFee": "315012535736048969", + "expectedQty": "246310593285952703075214", + "swapFee": "147875081020183732084", "reserves": [ - "32801824525934326264830013", - "37723299618011424385172416", - "25488224070454897549628726" + "507664049005371743826480497", + "262547760695566317307285593", + "727132196301403068302014763" ], - "mAssetSupply": "96002930727253117446732372" + "mAssetSupply": "1496180552789545586768795655" }, { - "type": "redeemMasset", - "inputQty": "69465897373511116", - "expectedQtys": [ - "23727656817074297", - "27287674398604186", - "18437262023101439" - ], - "redemptionFee": "20839769212053", - "reserves": [ - "32801824502206669447755716", - "37723299590723749986568230", - "25488224052017635526527287" + "type": "mintMulti", + "inputQtys": [ + "359699779315678813618176", + "229320916943811104473088", + "220603921596844087443456" ], - "mAssetSupply": "96002930657808059842433309" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "577195657959752269824", - "expectedQty": "577663612389576192010", - "swapFee": "346317394775851361", + "expectedQty": "810379363381751459571693", "reserves": [ - "32801824502206669447755716", - "37722721927111360410376220", - "25488224052017635526527287" + "508023748784687422640098673", + "262777081612510128411758681", + "727352800222999912389458219" ], - "mAssetSupply": "96002353808467494866014846" + "mAssetSupply": "1496990932152927338228367348" }, { "type": "mint", "inputIndex": 0, - "inputQty": "680205919966730555228160", - "expectedQty": "679951171204450452460639", + "inputQty": "576412596362239", + "expectedQty": "575861987393428", "reserves": [ - "33482030422173400002983876", - "37722721927111360410376220", - "25488224052017635526527287" + "508023748785263835236460912", + "262777081612510128411758681", + "727352800222999912389458219" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "440166641141750247194624", - "expectedQty": "439554504173004302984336", - "reserves": [ - "33482030422173400002983876", - "38162888568253110657570844", - "25488224052017635526527287" - ] - }, - { - "type": "redeemMasset", - "inputQty": "2041608480012326718668", - "expectedQtys": [ - "703618015984707537094", - "801985291813634727391", - "535629811344344807860" - ], - "redemptionFee": "612482544003698015", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5804172114611604029440", + "expectedQty": "5806235696485859113065", + "swapFee": "3482503268766962417", "reserves": [ - "33481326804157415295446782", - "38162086582961297022843453", - "25487688422206291181719427" + "508017942549567349377347847", + "262777081612510128411758681", + "727352800222999912389458219" ], - "mAssetSupply": "97119818487847481298439168" + "mAssetSupply": "1496985131463891857378693753" }, { "type": "mintMulti", "inputQtys": [ - "17303776235719871168512", - "130085482440272279240704", - "156260093791006120476672" - ], - "expectedQty": "303800662797475038109824", - "reserves": [ - "33498630580393135166615294", - "38292172065401569302084157", - "25643948515997297302196099" - ], - "mAssetSupply": "97423619150644956336548992" - }, - { - "type": "redeemMasset", - "inputQty": "2466211808298340135731", - "expectedQtys": [ - "847740359101131964866", - "969049156191055650544", - "648964144117778988069" - ], - "redemptionFee": "739863542489502040", - "reserves": [ - "33497782840034034034650428", - "38291203016245378246433613", - "25643299551853179523208030" + "740319784892857450496", + "9770606654227130351616", + "9629259759614659919872" ], - "mAssetSupply": "97421153678700200485915301" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "64050761461569639415808", - "outputIndex": 2, - "expectedQty": "63847790967841103643023", - "swapFee": "38415795074877459342", + "expectedQty": "20185305113695520838059", "reserves": [ - "33561833601495603674066236", - "38291203016245378246433613", - "25579451760885338419565007" + "508018682869352242234798343", + "262786852219164355542110297", + "727362429482759527049378091" ], - "mAssetSupply": "97421192094495275363374643", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1497005316769005552899531812" }, { "type": "mintMulti", "inputQtys": [ - "15995009542238603575296", - "10596273900734545657856", - "13345328725928513110016" + "5916026581221555306496", + "5214573573209779601408", + "6192341328248060248064" ], - "expectedQty": "39944653424852111601900", + "expectedQty": "17337452815513162671779", "reserves": [ - "33577828611037842277641532", - "38301799290146112792091469", - "25592797089611266932675023" + "508024598895933463790104839", + "262792066792737565321711705", + "727368621824087775109626155" ], - "mAssetSupply": "97461136747920127474976543" + "mAssetSupply": "1497022654221821066062203591" }, { - "type": "redeemBassets", - "inputQtys": [ - "4096018814472350500651008", - "320415898411633098096640", - "793706039028940938412032" + "type": "redeemMasset", + "inputQty": "76341337714602547", + "expectedQtys": [ + "25899168846280854", + "13397178254989231", + "37081359428360246" ], - "expectedQty": "5210915514345936573990708", - "swapFee": "3128426364426217674999", + "redemptionFee": "22902401314380", "reserves": [ - "29481809796565491776990524", - "37981383391734479693994829", - "24799091050582325994262991" + "508024598870034294943823985", + "262792066779340387066722474", + "727368621787006415681265909" ], - "mAssetSupply": "92250221233574190900985835" + "mAssetSupply": "1497022654145502630748915424" }, { "type": "redeemBassets", "inputQtys": [ - "744793212154926989312", - "676838010007565500416", - "488102567076384604160" + "16680952649112027240857600", + "387492359265680663511040", + "8434433046938348632932352" ], - "expectedQty": "1909661879612016248279", - "swapFee": "1146485018778476835", + "expectedQty": "25457386498350407949731174", + "swapFee": "15283602060246392605401", "reserves": [ - "29481065003353336850001212", - "37980706553724472128494413", - "24798602948015249609658831" + "491343646220922267702966385", + "262404574420074706403211434", + "718934188740068067048333557" ], - "mAssetSupply": "92248311571694578884737556" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "137015788315179600", - "expectedQty": "137282401858540421", - "reserves": [ - "29481065003353336850001212", - "37980706553724472128494413", - "24798603085031037924838431" - ] + "mAssetSupply": "1471565267647152222799184250" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "46026213396517421056", - "expectedQty": "46080451844317677506", - "swapFee": "27615728037910452", - "reserves": [ - "29481065003353336850001212", - "37980660473272627810816907", - "24798603085031037924838431" - ], - "mAssetSupply": "92248265710379312263767373" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "107781860997503154913280", - "expectedQty": "107506205474804627172409", - "swapFee": "64669116598501892947", + "inputQty": "69094753635279858302976", + "expectedQty": "68479953133329961107685", + "swapFee": "41456852181167914981", "reserves": [ - "29481065003353336850001212", - "37980660473272627810816907", - "24691096879556233297666022" + "491343646220922267702966385", + "262336094466941376442103749", + "718934188740068067048333557" ], - "mAssetSupply": "92140548518498407610747040" + "mAssetSupply": "1471496214350369124108796255" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "1047012844502356697546752", - "expectedQty": "1047143683029934710720195", + "inputQty": "34452490935012637221584896", + "outputIndex": 2, + "expectedQty": "34527290485093825690029371", + "swapFee": "20650718675136812126942", "reserves": [ - "30528077847855693547547964", - "37980660473272627810816907", - "24691096879556233297666022" - ] + "525796137155934904924551281", + "262336094466941376442103749", + "684406898254974241358304186" + ], + "mAssetSupply": "1471516865069044260920923197", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "497828134099259621376", - "2295612378408279605248", - "1363958768636611526656" + "142303337326379406458880", + "5084673101583324545024", + "138559228109910001582080" ], - "expectedQty": "4156365251896820297952", + "expectedQty": "285293596476863076166356", + "swapFee": "171278925241262603261", "reserves": [ - "30528575675989792807169340", - "37982956085651036090422155", - "24692460838324869909192678" + "525653833818608525518092401", + "262331009793839793117558725", + "684268339026864331356722106" ], - "mAssetSupply": "93191848566780239141765187" + "mAssetSupply": "1471231571472567397844756841" }, { "type": "redeemMasset", - "inputQty": "901156379328453611932876", + "inputQty": "20981661951744555771494", "expectedQtys": [ - "295119882682709256872508", - "367181412683983589288044", - "238702133473102577681424" + "7494253475318854547299", + "3740056583530602987796", + "9755622517864722657192" ], - "redemptionFee": "270346913798536083579", + "redemptionFee": "6294498585523366731", "reserves": [ - "30233455793307083550296832", - "37615774672967052501134111", - "24453758704851767331511254" + "525646339565133206663545102", + "262327269737256262514570929", + "684258583404346466634064914" ], - "mAssetSupply": "92290962534365584065915890" + "mAssetSupply": "1471210596105114238812352078" }, { - "type": "redeemBassets", - "inputQtys": [ - "608030593237573406031872", - "530559125980347499544576", - "617577585886147960111104" + "type": "redeemMasset", + "inputQty": "231380611694372721786880", + "expectedQtys": [ + "82644785589435956511939", + "41244424872497935112560", + "107582607652071729481381" ], - "expectedQty": "1756584456162727588835888", - "swapFee": "1054583423751887685913", + "redemptionFee": "69414183508311816536", "reserves": [ - "29625425200069510144264960", - "37085215546986705001589535", - "23836181118965619371400150" + "525563694779543770707033163", + "262286025312383764579458369", + "684151000796694394904583533" ], - "mAssetSupply": "90534378078202856477080002" + "mAssetSupply": "1470979284907603374402381734" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9731573409286012", - "1599591321646344", - "13933021127622804" + "362956894079708202795008", + "306303978022500848107520", + "309910697628800642973696" ], - "expectedQty": "25291870565905522", + "expectedQty": "980088443176537874107576", + "swapFee": "588406109571665723898", "reserves": [ - "29625425209801083553550972", - "37085215548586296323235879", - "23836181132898640499022954" + "525200737885464062504238155", + "261979721334361263731350849", + "683841090099065594261609837" ], - "mAssetSupply": "90534378103494727042985524" + "mAssetSupply": "1469999196464426836528274158" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1604147089016034951168", - "expectedQty": "1601338415064486439080", + "inputQty": "56140825119114829824", + "expectedQty": "56605758220793557560", "reserves": [ - "29625425209801083553550972", - "37086819695675312358187047", - "23836181132898640499022954" + "525200737885464062504238155", + "261979777475186382846180673", + "683841090099065594261609837" ] }, { - "type": "redeemMasset", - "inputQty": "134329592193540580966", - "expectedQtys": [ - "43942501535086911954", - "55009763399768812324", - "35355490042940753681" - ], - "redemptionFee": "40298877658062174", + "type": "redeem", + "inputIndex": 2, + "inputQty": "14460807273927585271119872", + "expectedQty": "14503483032407498931675085", + "swapFee": "8676484364356551162671", "reserves": [ - "29625381267299548466639018", - "37086764685911912589374723", - "23836145777408597558269273" + "525200737885464062504238155", + "261979777475186382846180673", + "669337607066658095329934752" ], - "mAssetSupply": "90535845152616475646905812" + "mAssetSupply": "1455547122280621828601874517" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "27245438776664672", - "expectedQty": "27276853152756678", - "swapFee": "16347263265998", + "inputIndex": 2, + "inputQty": "55483605393242046456659968", + "expectedQty": "55628698887263672144154989", + "swapFee": "33290163235945227873995", "reserves": [ - "29625381267299548466639018", - "37086764658635059436618045", - "23836145777408597558269273" + "525200737885464062504238155", + "261979777475186382846180673", + "613708908179394423185779763" ], - "mAssetSupply": "90535845125387384133507138" + "mAssetSupply": "1400096807050615727373088544" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "47268372191482409385984", - "outputIndex": 0, - "expectedQty": "47340459966863176066358", - "swapFee": "28422353949624369595", + "inputQty": "5017855459681039810560", + "expectedQty": "5003112863526763658568", "reserves": [ - "29578040807332685290572660", - "37086764658635059436618045", - "23883414149600079967655257" - ], - "mAssetSupply": "90535873547741333757876733", - "hardLimitError": false, - "insufficientLiquidityError": false + "525200737885464062504238155", + "261979777475186382846180673", + "613713926034854104225590323" + ] }, { "type": "redeemBassets", "inputQtys": [ - "69647649217749152956416", - "45410952923703433756672", - "33866085370357339914240" + "3381421402135", + "7066513864611", + "1889407455522" ], - "expectedQty": "148920962481763594450283", - "swapFee": "89406221221791231409", + "expectedQty": "12377014541345", + "swapFee": "7430667125", "reserves": [ - "29508393158114936137616244", - "37041353705711356002861373", - "23849548064229722627741017" + "525200737885460681082836020", + "261979777475179316332316062", + "613713926034852214818134801" ], - "mAssetSupply": "90386952585259570163426450" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "510431718249856352911360", - "expectedQty": "508989210167182348412956", - "swapFee": "306259030949913811746", - "reserves": [ - "29508393158114936137616244", - "37041353705711356002861373", - "23340558854062540279328061" - ], - "mAssetSupply": "89876827126040663724326836" + "mAssetSupply": "1400101810163466877122205767" }, { "type": "redeemBassets", "inputQtys": [ - "133513497620887168352256", - "98301891636436261666816", - "399243729195364765401088" + "843943936701515530502144", + "1039278797264404764164096", + "1756989974224466901729280" ], - "expectedQty": "631823120552360354149371", - "swapFee": "379321465210542538012", + "expectedQty": "3641131854465406037132926", + "swapFee": "2185990707103505725715", "reserves": [ - "29374879660494048969263988", - "36943051814074919741194557", - "22941315124867175513926973" + "524356793948759165552333876", + "260940498677914911568151966", + "611956936060627747916405521" ], - "mAssetSupply": "89245004005488303370177465" + "mAssetSupply": "1396460678309001471085072841" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1436421429006313455616", + "expectedQty": "1434011889062539085393", + "reserves": [ + "524358230370188171865789492", + "260940498677914911568151966", + "611956936060627747916405521" + ] }, { "type": "mintMulti", "inputQtys": [ - "581343800987765765570560", - "145036006212677849317376", - "68614205244245968683008" + "1467519424271854193344512", + "58944413817990551699456", + "1517069070242704468738048" ], - "expectedQty": "794841059245906373775849", + "expectedQty": "3037025022867183107418684", "reserves": [ - "29956223461481814734834548", - "37088087820287597590511933", - "23009929330111421482609981" + "525825749794460026059134004", + "260999443091732902119851422", + "613474005130870452385143569" ], - "mAssetSupply": "90039845064734209743953314" + "mAssetSupply": "1399499137343757716731576918" }, { "type": "redeemMasset", - "inputQty": "1645343790286248960", + "inputQty": "1471937422895", "expectedQtys": [ - "547241054573953294", - "677526134661221728", - "420345976136587349" + "552876656810", + "274426460822", + "645033943525" ], - "redemptionFee": "493603137085874", + "redemptionFee": "441581226", "reserves": [ - "29956222914240760160881254", - "37088087142761462929290205", - "23009928909765445346022632" + "525825749794459473182477194", + "260999443091732627693390600", + "613474005130869807351200044" ], - "mAssetSupply": "90039843419884022594790228" + "mAssetSupply": "1399499137343756245235735249" }, { - "type": "mintMulti", - "inputQtys": [ - "460416414659872685031424", - "1764264211419615801114624", - "1133411725682018160214016" - ], - "expectedQty": "3357548646730395668322299", + "type": "mint", + "inputIndex": 0, + "inputQty": "898296389654016908328960", + "expectedQty": "896775902104757752275265", "reserves": [ - "30416639328900632845912678", - "38852351354181078730404829", - "24143340635447463506236648" - ], - "mAssetSupply": "93397392066614418263112527" + "526724046184113490090806154", + "260999443091732627693390600", + "613474005130869807351200044" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1487476414297255444480", - "2181162292164735008768", - "3458664443340684525568" - ], - "expectedQty": "7131439792637562460859", - "swapFee": "4281432735223671679", + "type": "redeem", + "inputIndex": 2, + "inputQty": "86880836107799824957440", + "expectedQty": "87085057380530017113281", + "swapFee": "52128501664679894974", "reserves": [ - "30415151852486335590468198", - "38850170191888913995396061", - "24139881971004122821711080" + "526724046184113490090806154", + "260999443091732627693390600", + "613386920073489277334086763" ], - "mAssetSupply": "93390260626821780700651668" + "mAssetSupply": "1400309084538254867842948048" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "18060529102208450428928", - "expectedQty": "18006946292186162054890", - "swapFee": "10836317461325070257", + "inputQty": "1453904146241392388079616", + "expectedQty": "1457310605605131262824462", + "swapFee": "872342487744835432847", "reserves": [ - "30415151852486335590468198", - "38850170191888913995396061", - "24121875024711936659656190" + "526724046184113490090806154", + "260999443091732627693390600", + "611929609467884146071262301" ], - "mAssetSupply": "93372210934037033575292997" + "mAssetSupply": "1398856052734501220290301279" }, { - "type": "redeemBassets", - "inputQtys": [ - "145834516952036261888", - "72564269497516408832", - "134771267521909833728" - ], - "expectedQty": "353359284366663543879", - "swapFee": "212142856333798405", + "type": "mint", + "inputIndex": 1, + "inputQty": "10810239011231631360", + "expectedQty": "10888637058359980020", "reserves": [ - "30415006017969383554206310", - "38850097627619416478987229", - "24121740253444414749822462" - ], - "mAssetSupply": "93371857574752666911749118" + "526724046184113490090806154", + "260999453901971638925021960", + "611929609467884146071262301" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "239566155746620014592", - "462681990867279085568", - "263082455426248015872" + "type": "redeemMasset", + "inputQty": "94142284711876192370688", + "expectedQtys": [ + "35437619572184363309467", + "17559857809667823551788", + "41170189328508913077484" ], - "expectedQty": "965089148731296571776", + "redemptionFee": "28242685413562857711", "reserves": [ - "30415245584125130174220902", - "38850560309610283758072797", - "24122003335899840997838334" + "526688608564541305727496687", + "260981894044161971101470172", + "611888439278555637158184817" ], - "mAssetSupply": "93372822663901398208320894" + "mAssetSupply": "1398761949581111816020768322" }, { - "type": "mintMulti", - "inputQtys": [ - "34972568656791589617664", - "4195577028817492901888", - "15743361574171702198272" + "type": "redeemMasset", + "inputQty": "80153463760655905246412", + "expectedQtys": [ + "30171861293107781993983", + "14950597713844566394441", + "35052615182024470682642" ], - "expectedQty": "54942453733454033057647", + "redemptionFee": "24046039128196771573", "reserves": [ - "30450218152781921763838566", - "38854755886639101250974685", - "24137746697474012700036606" + "526658436703248197945502704", + "260966943446448126535075731", + "611853386663373612687502175" ], - "mAssetSupply": "93427765117634852241378541" + "mAssetSupply": "1398681820163390288312293483" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "420857579083608161779712", - "2130137534797113016188928", - "11001702358288238553071616" + "395921883787643578220544", + "838910647967026400722944", + "267801350841861570297856" ], - "expectedQty": "13561647835430688812372949", + "expectedQty": "1507273786729046108942896", + "swapFee": "904907216367248014174", "reserves": [ - "30871075731865529925618278", - "40984893421436214267163613", - "35139449055762251253108222" + "526262514819460554367282160", + "260128032798481100134352787", + "611585585312531751117204319" ], - "mAssetSupply": "106989412953065541053751490" + "mAssetSupply": "1397174546376661242203350587" }, { - "type": "redeemBassets", - "inputQtys": [ - "2819562773645248492994560", - "1278389007813206974922752", - "1526455148259082305011712" + "type": "redeemMasset", + "inputQty": "1173129086993939492870553", + "expectedQtys": [ + "441740549146708389710037", + "218349391835887628261096", + "513360052632383646062556" ], - "expectedQty": "5626919159977201700320799", - "swapFee": "3378178403028137902934", + "redemptionFee": "351938726098181847861", "reserves": [ - "28051512958220281432623718", - "39706504413623007292240861", - "33612993907503168948096510" + "525820774270313845977572123", + "259909683406645212506091691", + "611072225259899367471141763" ], - "mAssetSupply": "101362493793088339353430691" + "mAssetSupply": "1396001769228393400892327895" }, { - "type": "redeemBassets", - "inputQtys": [ - "311637062129472724008960", - "40777306307531959697408", - "720562854809612043943936" + "type": "redeemMasset", + "inputQty": "356369243388298605363", + "expectedQtys": [ + "134190471465274704468", + "66329450378083080258", + "155946805488529180459" ], - "expectedQty": "1073441330662850831348692", - "swapFee": "644451469279278065648", + "redemptionFee": "106910773016489581", "reserves": [ - "27739875896090808708614758", - "39665727107315475332543453", - "32892431052693556904152574" + "525820640079842380702867655", + "259909617077194834423011433", + "611072069313093878941961304" ], - "mAssetSupply": "100289052462425488522081999" + "mAssetSupply": "1396001412966060785610212113" }, { - "type": "redeemBassets", - "inputQtys": [ - "12088758167757774848", - "23837751523953704960", - "14821830262966757376" + "type": "redeemMasset", + "inputQty": "327039435378483270569164", + "expectedQtys": [ + "123146362474828808905271", + "60870421348279808052689", + "143112112401003431934270" ], - "expectedQty": "50735084688421469127", - "swapFee": "30459326408898220", + "redemptionFee": "98111830613544981170", "reserves": [ - "27739863807332640950839910", - "39665703269563951378838493", - "32892416230863293937395198" + "525697493717367551893962384", + "259848746655846554614958744", + "610928957200692875510027034" ], - "mAssetSupply": "100289001727340800100612872" + "mAssetSupply": "1395674471642512915884624119" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "478537240311264641024", - "outputIndex": 0, - "expectedQty": "477481391861991463083", - "swapFee": "287136833397484634", + "inputQty": "1298533552191995641856", + "expectedQty": "1301581626612826074158", + "swapFee": "779120131315197385", "reserves": [ - "27739386325940778959376827", - "39665703269563951378838493", - "32892894768103605202036222" + "525697493717367551893962384", + "259848746655846554614958744", + "610927655619066262683952876" ], - "mAssetSupply": "100289002014477633498097506", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1395673173888080855204179648" }, { - "type": "redeemMasset", - "inputQty": "2621473173652902297", - "expectedQtys": [ - "724867535120365582", - "1036518263958008193", - "859535653506213472" + "type": "mintMulti", + "inputQtys": [ + "117988977954772074496", + "184780444722581405696", + "14638587220705015808" ], - "redemptionFee": "786441952095870", + "expectedQty": "318511013425745863117", "reserves": [ - "27739385601073243839011245", - "39665702233045687420830300", - "32892893908567951695822750" + "525697611706345506666036880", + "259848931436291277196364440", + "610927670257653483388968684" ], - "mAssetSupply": "100288999393790901797291079" + "mAssetSupply": "1395673492399094280950042765" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 2, + "inputQty": "32891351803288341226455040", + "expectedQty": "32789354232331964811454233", + "reserves": [ + "525697611706345506666036880", + "259848931436291277196364440", + "643819022060941824615423724" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "195655756352454623232", - "499310286193456381952", - "125993046942642257920" + "6011540794000121856", + "2013852025741259520", + "1124678285939290112" ], - "expectedQty": "820576562751158608989", + "expectedQty": "9152617768375824402", + "swapFee": "5494867581574439", "reserves": [ - "27739581256829596293634477", - "39666201543331880877212252", - "32893019901614894338080670" + "525697605694804712665915024", + "259848929422439251455104920", + "643819020936263538676133612" ], - "mAssetSupply": "100289819970353652955900068" + "mAssetSupply": "1428462837478808477385672596" }, { "type": "mintMulti", "inputQtys": [ - "3384877255708316237037568", - "4771612086928357623595008", - "4900203301849820882272256" + "2544044894816596622573568", + "4703701666945246492098560", + "4335565302766314889150464" ], - "expectedQty": "13055674354765142767110972", + "expectedQty": "11601507990602831800326514", "reserves": [ - "31124458512537912530672045", - "44437813630260238500807260", - "37793223203464715220352926" + "528241650589621309288488592", + "264552631089384497947203480", + "648154586239029853565284076" ], - "mAssetSupply": "113345494325118795723011040" + "mAssetSupply": "1440064345469411309185999110" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2307965910373567909855232", - "2035935808012633602260992", - "6279737180613518213251072" + "4203319411000214527410176", + "4350043881140445704617984", + "3156275202941357484146688" ], - "expectedQty": "10623156582941319061950451", + "expectedQty": "11726338804762332164676779", + "swapFee": "7040027299236941463684", "reserves": [ - "33432424422911480440527277", - "46473749438272872103068252", - "44072960384078233433603998" + "524038331178621094761078416", + "260202587208244052242585496", + "644998311036088496081137388" ], - "mAssetSupply": "123968650908060114784961491" + "mAssetSupply": "1428338006664648977021322331" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "4282811359875493265408", - "expectedQty": "4278410221364054424203", + "inputIndex": 0, + "inputQty": "267944985356461458587648", + "expectedQty": "267529411518246910919121", "reserves": [ - "33432424422911480440527277", - "46478032249632747596333660", - "44072960384078233433603998" + "524306276163977556219666064", + "260202587208244052242585496", + "644998311036088496081137388" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "169692036057999245312", - "expectedQty": "169264259378921054809", - "swapFee": "101815221634799547", + "inputIndex": 2, + "inputQty": "20566955470813807178153984", + "expectedQty": "20620030769484853987509217", + "swapFee": "12340173282488284306892", "reserves": [ - "33432255158652101519472468", - "46478032249632747596333660", - "44072960384078233433603998" + "524306276163977556219666064", + "260202587208244052242585496", + "624378280266603642093628171" ], - "mAssetSupply": "123972759728060642474939929" + "mAssetSupply": "1408050920778635905038394360" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "125210943131521843200", - "expectedQty": "125264572882064367718", - "swapFee": "75126565878913105", + "type": "mintMulti", + "inputQtys": [ + "555189384421000216576", + "188655947734402531328", + "224054242635973165056" + ], + "expectedQty": "967709293058189294774", "reserves": [ - "33432255158652101519472468", - "46477906985059865531965942", - "44072960384078233433603998" + "524306831353361977219882640", + "260202775864191786645116824", + "624378504320846278066793227" ], - "mAssetSupply": "123972634592244076832009834" + "mAssetSupply": "1408051888487928963227689134" }, { "type": "mint", "inputIndex": 0, - "inputQty": "123813093411010979561472", - "expectedQty": "124049809312112056187834", + "inputQty": "1452975655090187849957376", + "expectedQty": "1450585410427353559443572", "reserves": [ - "33556068252063112499033940", - "46477906985059865531965942", - "44072960384078233433603998" + "525759807008452165069840016", + "260202775864191786645116824", + "624378504320846278066793227" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "663446685377998868185088", - "expectedQty": "663019006787268177877636", + "type": "swap", + "inputIndex": 1, + "inputQty": "14731918812467526", + "outputIndex": 2, + "expectedQty": "14878785728227127", + "swapFee": "8905238590069", "reserves": [ - "33556068252063112499033940", - "46477906985059865531965942", - "44736407069456232301789086" - ] + "525759807008452165069840016", + "260202775878923705457584350", + "624378504305967492338566100" + ], + "mAssetSupply": "1409502473898365222025722775", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "316248112038164627456", - "expectedQty": "315937832561440544006", + "inputIndex": 2, + "inputQty": "8021853003526125568", + "expectedQty": "7997253530763536239", "reserves": [ - "33556068252063112499033940", - "46478223233171903696593398", - "44736407069456232301789086" + "525759807008452165069840016", + "260202775878923705457584350", + "624378512327820495864691668" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "96327265813665142538240", - "expectedQty": "96080759770622193457526", - "swapFee": "57796359488199085522", + "type": "redeemMasset", + "inputQty": "2732920209557110902908518", + "expectedQtys": [ + "1019103238565305818326079", + "504362425668705848522494", + "1210260190151127835777218" + ], + "redemptionFee": "819876062867133270872", "reserves": [ - "33459987492292490305576414", - "46478223233171903696593398", - "44736407069456232301789086" + "524740703769886859251513937", + "259698413453254999609061856", + "623168252137669368028914450" ], - "mAssetSupply": "124663749876721841563166592" + "mAssetSupply": "1406770381562124509019621368" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "99453678113138832", - "outputIndex": 2, - "expectedQty": "99659313191881913", - "swapFee": "59790055565895", + "type": "redeem", + "inputIndex": 2, + "inputQty": "425340795976351009996800", + "expectedQty": "426392260544192528923016", + "swapFee": "255204477585810605998", "reserves": [ - "33459987591746168418715246", - "46478223233171903696593398", - "44736406969796919109907173" + "524740703769886859251513937", + "259698413453254999609061856", + "622741859877125175499991434" ], - "mAssetSupply": "124663749876781631618732487", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1406345295970625743820230566" }, { "type": "redeemBassets", "inputQtys": [ - "2504367949182439424", - "2592860511751939072", - "88829038620163616" + "19980206609667614578835456", + "19668702642313862880165888", + "43156888146019454849908736" ], - "expectedQty": "5188377399496325176", - "swapFee": "3114895376923949", + "expectedQty": "82789663505905309539858671", + "swapFee": "49703620275708610890449", "reserves": [ - "33459985087378219236275822", - "46478220640311391944654326", - "44736406880967880489743557" + "504760497160219244672678481", + "240029710810941136728895968", + "579584971731105720650082698" ], - "mAssetSupply": "124663744688404232122407311" + "mAssetSupply": "1323555632464720434280371895" }, { - "type": "redeemMasset", - "inputQty": "15725918408680003128524", - "expectedQtys": [ - "4219600013267186055574", - "5861314639511700756371", - "5641656521229773465064" - ], - "redemptionFee": "4717775522604000938", + "type": "mint", + "inputIndex": 1, + "inputQty": "2492659209458434965504", + "expectedQty": "2512192807961650382425", "reserves": [ - "33455765487364952050220248", - "46472359325671880243897955", - "44730765224446650716278493" - ], - "mAssetSupply": "124648023487771074723279725" + "504760497160219244672678481", + "240032203470150595163861472", + "579584971731105720650082698" + ] }, { "type": "redeemMasset", - "inputQty": "40345107767646408094515", + "inputQty": "1548379055234442924025446", "expectedQtys": [ - "10825454695075987050794", - "15037301138524240566695", - "14473764547285710493503" + "590322470298622872719958", + "280720072392559314702994", + "677830444706259079980981" ], - "redemptionFee": "12103532330293922428", + "redemptionFee": "464513716570332877207", "reserves": [ - "33444940032669876063169454", - "46457322024533356003331260", - "44716291459899365005784990" + "504170174689920621799958523", + "239751483397758035849158478", + "578907141286399461570101717" ], - "mAssetSupply": "124607690483535758609107638" + "mAssetSupply": "1322010230116010523339606081" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1448141318319298314240", - "outputIndex": 0, - "expectedQty": "1442990623126480009573", - "swapFee": "868025321946034974", + "type": "redeemBassets", + "inputQtys": [ + "7436753699413503770624", + "31889897015683594584064", + "10100045884132037754880" + ], + "expectedQty": "49632124645384721282888", + "swapFee": "29797153079078279737", "reserves": [ - "33443497042046749583159881", - "46458770165851675301645500", - "44716291459899365005784990" + "504162737936221208296187899", + "239719593500742352254574414", + "578897041240515329532346837" ], - "mAssetSupply": "124607691351561080555142612", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1321960597991365138618323193" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "201294525113044318552064", - "expectedQty": "201152713963966532017266", + "type": "redeemMasset", + "inputQty": "119821112559206714572", + "expectedQtys": [ + "45683069117281770432", + "21721412422285099936", + "52454875294901079847" + ], + "redemptionFee": "35946333767762014", "reserves": [ - "33443497042046749583159881", - "46458770165851675301645500", - "44917585985012409324337054" - ] + "504162692253152091014417467", + "239719571779329929969474478", + "578896988785640034631266990" + ], + "mAssetSupply": "1321960478206198913179370635" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2709135747158767566848", - "expectedQty": "2710161364040421373090", - "swapFee": "1625481448295260540", + "inputIndex": 2, + "inputQty": "4675749356668040161263616", + "expectedQty": "4686984954813849333327707", + "swapFee": "2805449614000824096758", "reserves": [ - "33443497042046749583159881", - "46456060004487634880272410", - "44917585985012409324337054" + "504162692253152091014417467", + "239719571779329929969474478", + "574210003830826185297939283" ], - "mAssetSupply": "124806136555259336614853570" + "mAssetSupply": "1317287534299144873842203777" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "82598025448398776172544", - "expectedQty": "82761784023039736950499", - "reserves": [ - "33526095067495148359332425", - "46456060004487634880272410", - "44917585985012409324337054" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "4844694461162142720", - "63129673983773794304", - "71425173966286651392" + "type": "redeemMasset", + "inputQty": "5511899102514181780275", + "expectedQtys": [ + "2108924703566748577914", + "1002752751486859969191", + "2401934297641230438848" ], - "expectedQty": "139297097864524614352", - "swapFee": "83628435780182878", + "redemptionFee": "1653569730754254534", "reserves": [ - "33526090222800687197189705", - "46455996874813651106478106", - "44917514559838443037685662" + "504160583328448524265839553", + "239718569026578443109505287", + "574207601896528544067500435" ], - "mAssetSupply": "124888759042184511827189717" + "mAssetSupply": "1317282024053612090414678036" }, { - "type": "redeemBassets", - "inputQtys": [ - "893153286721174591504384", - "168366817462638115553280", - "1082258186426053721849856" + "type": "redeemMasset", + "inputQty": "11248923160027677379788", + "expectedQtys": [ + "4303985160012363274591", + "2046461381130297031993", + "4901971869782014213545" ], - "expectedQty": "2144668488359555499247649", - "swapFee": "1287573637198052130827", + "redemptionFee": "3374676948008303213", "reserves": [ - "32632936936079512605685321", - "46287630057351012990924826", - "43835256373412389315835806" + "504156279343288511902564962", + "239716522565197312812473294", + "574202699924658762053286890" ], - "mAssetSupply": "122744090553824956327942068" + "mAssetSupply": "1317270778505129010745601461" }, { - "type": "redeemMasset", - "inputQty": "65917639089644992", - "expectedQtys": [ - "17519709697118337", - "24850531926098373", - "23533921193340371" - ], - "redemptionFee": "19775291726893", + "type": "swap", + "inputIndex": 2, + "inputQty": "174031853776681952", + "outputIndex": 1, + "expectedQty": "172075285566804995", + "swapFee": "104108883311603", "reserves": [ - "32632936918559802908566984", - "46287630032500481064826453", - "43835256349878468122495435" + "504156279343288511902564962", + "239716522393122027245668299", + "574202700098690615829968842" ], - "mAssetSupply": "122744090487927092530023969" + "mAssetSupply": "1317270778505233119628913064", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "13507777634466291712", - "51037867673965395968", - "9340634017669345280" + "1248058350680919819419648", + "1502938379709407985401856", + "561463657286813354033152" ], - "expectedQty": "73852627640719073846", - "swapFee": "44338179492126720", + "expectedQty": "3320035339492862567204480", "reserves": [ - "32632923410782168442275272", - "46287578994632807099430485", - "43835247009244450453150155" + "505404337693969431721984610", + "241219460772831435231070155", + "574764163755977429184001994" ], - "mAssetSupply": "122744016635299451810950123" + "mAssetSupply": "1320590813844725982196117544" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "25093247216245803057152", - "expectedQty": "25145215885153147545463", + "inputQty": "152553519773301571584", + "outputIndex": 1, + "expectedQty": "151013488359215460308", + "swapFee": "91358923465112814", "reserves": [ - "32658016657998414245332424", - "46287578994632807099430485", - "43835247009244450453150155" - ] + "505404490247489205023556194", + "241219309759343076015609847", + "574764163755977429184001994" + ], + "mAssetSupply": "1320590813936084905661230358", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 2, - "inputQty": "14646264901618412417974272", - "expectedQty": "14630924889504392890219426", - "swapFee": "8787758940971047450784", + "inputQty": "26829963097774825472", + "expectedQty": "26893118721714853302", + "swapFee": "16097977858664895", "reserves": [ - "32658016657998414245332424", - "46287578994632807099430485", - "29204322119740057562930729" + "505404490247489205023556194", + "241219309759343076015609847", + "574764136862858707469148692" ], - "mAssetSupply": "108131684708507163587972098" + "mAssetSupply": "1320590787122219785745069781" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "908842854655823446016", - "outputIndex": 1, - "expectedQty": "911929368738603979469", - "swapFee": "546333286774827160", + "type": "redeemMasset", + "inputQty": "67400376700615525610291", + "expectedQtys": [ + "25787120450207247066952", + "12307669432525257314155", + "29326039466891286637050" + ], + "redemptionFee": "20220113010184657683", "reserves": [ - "32658016657998414245332424", - "46286667065264068495451016", - "29205230962594713386376745" + "505378703127038997776489242", + "241207002089910550758295692", + "574734810823391816182511642" ], - "mAssetSupply": "108131685254840450362799258", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1320523406965632180404117173" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "118660007599962975109120", - "expectedQty": "118881731345697227237502", - "reserves": [ - "32658016657998414245332424", - "46286667065264068495451016", - "29323890970194676361485865" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "11108894264840003584", - "expectedQty": "11117262584837868536", + "inputQty": "9532224254898367539183616", + "expectedQty": "9554178406414681859680007", + "swapFee": "5719334552939020523510", "reserves": [ - "32658027766892679085336008", - "46286667065264068495451016", - "29323890970194676361485865" - ] + "505378703127038997776489242", + "241207002089910550758295692", + "565180632416977134322831635" + ], + "mAssetSupply": "1310996902045286751885457067" }, { "type": "mintMulti", "inputQtys": [ - "190048816251383119872", - "590111503840707936256", - "389522578928097951744" + "4416100141129848586240", + "2400034840180535853056", + "1007586487350558851072" ], - "expectedQty": "1169311870343835440420", + "expectedQty": "7830385088887016919062", "reserves": [ - "32658217815708930468455880", - "46287257176767909203387272", - "29324280492773604459437609" + "505383119227180127625075482", + "241209402124750731294148748", + "565181640003464484881682707" ], - "mAssetSupply": "108251747415319076263345716" + "mAssetSupply": "1311004732430375638902376129" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5855559624159441977344", - "expectedQty": "5864327029143530558588", - "swapFee": "3513335774495665186", + "type": "redeemBassets", + "inputQtys": [ + "9834011079702831169536", + "132597467875330511339520", + "75491187505990547275776" + ], + "expectedQty": "218687242843658239052511", + "swapFee": "131291120378421996629", "reserves": [ - "32658217815708930468455880", - "46281392849738765672828684", - "29324280492773604459437609" + "505373285216100424793905946", + "241076804656875400782809228", + "565106148815958494334406931" ], - "mAssetSupply": "108245895369030691317033558" + "mAssetSupply": "1310786045187531980663323618" }, { "type": "redeemMasset", - "inputQty": "327181056556719400393113", + "inputQty": "31547696191010185936896", "expectedQtys": [ - "98682214496201430326112", - "139846894345350312050599", - "88608170655984804561013" + "12159558697400119539962", + "5800440273675054496550", + "13596764189565556195321" ], - "redemptionFee": "98154316967015820117", + "redemptionFee": "9464308857303055781", "reserves": [ - "32559535601212729038129768", - "46141545955393415360778085", - "29235672322117619654876596" + "505361125657403024674365984", + "241071004216601725728312678", + "565092552051768928778211610" ], - "mAssetSupply": "107918812466790938932460562" + "mAssetSupply": "1310754506955649827780442503" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "11161902398253262", - "expectedQty": "11170306121776925", + "inputIndex": 2, + "inputQty": "651091219610855897300992", + "expectedQty": "649235205519613429171893", "reserves": [ - "32559535612374631436383030", - "46141545955393415360778085", - "29235672322117619654876596" + "505361125657403024674365984", + "241071004216601725728312678", + "565743643271379784675512602" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9721305555296327827456", - "expectedQty": "9735852389404662748274", - "swapFee": "5832783333177796696", + "type": "redeemMasset", + "inputQty": "2973788080931375104", + "expectedQtys": [ + "1145631961139999073", + "546497609952457738", + "1282516534488774962" + ], + "redemptionFee": "892136424279412", "reserves": [ - "32559535612374631436383030", - "46131810103004010698029811", - "29235672322117619654876596" + "505361124511771063534366911", + "241071003670104115775854940", + "565743641988863250186737640" ], - "mAssetSupply": "107909097005189281904206727" + "mAssetSupply": "1311403739188273496702518704" }, { - "type": "redeemBassets", - "inputQtys": [ - "95472038378731403739136", - "367815369444284891660288", - "570128799036841998155776" + "type": "redeemMasset", + "inputQty": "190357163839526954598", + "expectedQtys": [ + "73333823726344374664", + "34982228808667602587", + "82096034901760671103" ], - "expectedQty": "1033797510168394873827666", - "swapFee": "620650896639020336498", + "redemptionFee": "57107149151858086", "reserves": [ - "32464063573995900032643894", - "45763994733559725806369523", - "28665543523080777656720820" + "505361051177947337189992247", + "241070968687875307108252353", + "565743559892828348426066537" ], - "mAssetSupply": "106875299495020887030379061" + "mAssetSupply": "1311403548888216806327422192" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 2, + "inputQty": "61957148433039384536678400", + "expectedQty": "61760264896829667797082776", + "reserves": [ + "505361051177947337189992247", + "241070968687875307108252353", + "627700708325867732962744937" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "19691960283529901768704", - "10667466677943921541120", - "25053143256197727518720" + "765217066278249807478784", + "1404685467885077564227584", + "953173341824100262215680" ], - "expectedQty": "55452624806320409799151", - "swapFee": "33291549813680454151", + "expectedQty": "3130488099297161727425530", "reserves": [ - "32444371613712370130875190", - "45753327266881781884828403", - "28640490379824579929202100" + "506126268244225586997471031", + "242475654155760384672479937", + "628653881667691833224960617" ], - "mAssetSupply": "106819846870214566620579910" + "mAssetSupply": "1376294301884343635851930498" }, { - "type": "redeemMasset", - "inputQty": "171906010240048281", - "expectedQtys": [ - "52197315643876216", - "73609096010281227", - "46077536478446437" - ], - "redemptionFee": "51571803072014", + "type": "mint", + "inputIndex": 0, + "inputQty": "234390138055713536", + "expectedQty": "234001961315496123", "reserves": [ - "32444371561515054486998974", - "45753327193272685874547176", - "28640490333747043450755663" - ], - "mAssetSupply": "106819846698360128183603643" + "506126268478615725053184567", + "242475654155760384672479937", + "628653881667691833224960617" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "220950668707736748032", - "outputIndex": 2, - "expectedQty": "219919412348692099113", - "swapFee": "132290018285558622", + "inputIndex": 2, + "inputQty": "650042136168140820709376", + "outputIndex": 0, + "expectedQty": "648459774117421135369926", + "swapFee": "388667366348429977418", "reserves": [ - "32444371561515054486998974", - "45753548143941393611295208", - "28640270414334694758656550" + "505477808704498303917814641", + "242475654155760384672479937", + "629303923803859974045669993" ], - "mAssetSupply": "106819846830650146469162265", + "mAssetSupply": "1376294690785711945597404039", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "35931881629587832615993344", + "expectedQty": "36029369435031198126322495", + "swapFee": "21559128977752699569596", + "reserves": [ + "505477808704498303917814641", + "242475654155760384672479937", + "593274554368828775919347498" + ], + "mAssetSupply": "1340384368285101865680980291" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "51236159816422920290304", + "expectedQty": "51297562100012289715912", + "swapFee": "30741695889853752174", + "reserves": [ + "505426511142398291628098729", + "242475654155760384672479937", + "593274554368828775919347498" + ], + "mAssetSupply": "1340333162866981332614442161" + }, { "type": "mintMulti", "inputQtys": [ - "161509174200595384369152", - "115116527887314443042816", - "177070957734839946575872" + "10102489179020652575719424", + "5063826890157292957728768", + "3583115358042197501935616" ], - "expectedQty": "453910046135825685192463", + "expectedQty": "18759721388384837470018346", "reserves": [ - "32605880735715649871368126", - "45868664671828708054338024", - "28817341372069534705232422" + "515529000321418944203818153", + "247539481045917677630208705", + "596857669726870973421283114" ], - "mAssetSupply": "107273756876785972154354728" + "mAssetSupply": "1359092884255366170084460507" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "1913271041724556", + "expectedQty": "1907470498792197", + "reserves": [ + "515529000321418944203818153", + "247539481045917677630208705", + "596857669728784244463007670" + ] }, { "type": "redeemBassets", "inputQtys": [ - "16118864549103771058176", - "7391493348535674339328", - "27656962788076761907200" + "2288210761938676482048", + "72333886520780830801920", + "5625222882210641608704" ], - "expectedQty": "51216545795054359454794", - "swapFee": "30748376502934376298", + "expectedQty": "80786703286126686334538", + "swapFee": "48501122645263169702", "reserves": [ - "32589761871166546100309950", - "45861273178480172379998696", - "28789684409281457943325222" + "515526712110657005527336105", + "247467147159396896799406785", + "596852044505902033821398966" ], - "mAssetSupply": "107222540330990917794899934" + "mAssetSupply": "1359012097553987513896918166" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "2449617116187284", - "outputIndex": 0, - "expectedQty": "2451250724766682", - "swapFee": "1472633033719", + "inputQty": "4980702638626422784", + "expectedQty": "4992856837325927409", + "swapFee": "2988421583175853", "reserves": [ - "32589761868715295375543268", - "45861273178480172379998696", - "28789684411731075059512506" + "515526712110657005527336105", + "247467147159396896799406785", + "596852039513045196495471557" ], - "mAssetSupply": "107222540330992390427933653", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1359012092576273296853671235" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "58959169560740068589568", - "229353599934038542385152", - "410050266419273029124096" + "370527965896976029974528", + "287098767730292106985472", + "330689838850432311492608" ], - "expectedQty": "698706319002085695427111", + "expectedQty": "988862913490694262290588", + "swapFee": "593673952465896095031", "reserves": [ - "32648721038276035444132836", - "46090626778414210922383848", - "29199734678150348088636602" + "515156184144760029497361577", + "247180048391666604692421313", + "596521349674194764183978949" ], - "mAssetSupply": "107921246649994476123360764" + "mAssetSupply": "1358023229662782602591380647" }, { "type": "redeemBassets", "inputQtys": [ - "98693082085515239358464", - "144707641957679724756992", - "247219376251473749868544" + "14390922248383645696", + "13500774303246594048", + "6074574373870075904" ], - "expectedQty": "490854876240965119269681", - "swapFee": "294689739588332070804", + "expectedQty": "34026305649199406483", + "swapFee": "20428040213647832", "reserves": [ - "32550027956190520204774372", - "45945919136456531197626856", - "28952515301898874338768058" + "515156169753837781113715881", + "247180034890892301445827265", + "596521343599620390313903045" ], - "mAssetSupply": "107430391773753511004091083" + "mAssetSupply": "1358023195636476953391974164" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "9278077917446491078656", - "expectedQty": "9295768459134185858726", + "type": "redeem", + "inputIndex": 0, + "inputQty": "627040807137150369792", + "expectedQty": "627812805367702469126", + "swapFee": "376224484282290221", "reserves": [ - "32550027956190520204774372", - "45945919136456531197626856", - "28961793379816320829846714" - ] + "515155541941032413411246755", + "247180034890892301445827265", + "596521343599620390313903045" + ], + "mAssetSupply": "1358022568971894300523894593" }, { "type": "redeemBassets", "inputQtys": [ - "1563694206978453214855168", - "801980975003264889126912", - "166957264973967698952192" - ], - "expectedQty": "2532534839487112455715292", - "swapFee": "1520433163590421726465", - "reserves": [ - "30986333749212066989919204", - "45143938161453266308499944", - "28794836114842353130894522" - ], - "mAssetSupply": "104907152702725532734234517" - }, - { - "type": "redeemMasset", - "inputQty": "6734732774866595872768", - "expectedQtys": [ - "1988635347502965928904", - "2897239534045774348133", - "1847989806957609769955" + "8401520971557471711657984", + "668737740288603176566784", + "7744199713492594302386176" ], - "redemptionFee": "2020419832459978761", + "expectedQty": "16781083647740601451910457", + "swapFee": "10074695005647749520858", "reserves": [ - "30984345113864564023990300", - "45141040921919220534151811", - "28792988125035395521124567" + "506754020969474941699588771", + "246511297150603698269260481", + "588777143886127796011516869" ], - "mAssetSupply": "104900419990370498598340510" + "mAssetSupply": "1341241485324153699071984136" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5068726802072529272832", - "expectedQty": "5076577190026724145834", - "swapFee": "3041236081243517563", + "inputQty": "599736595561598720", + "expectedQty": "594879648574448912", + "swapFee": "359841957336959", "reserves": [ - "30984345113864564023990300", - "45135964344729193810005977", - "28792988125035395521124567" + "506754020969474941699588771", + "246511296555724049694811569", + "588777143886127796011516869" ], - "mAssetSupply": "104895354304804507312585241" + "mAssetSupply": "1341241484724776945467722375" }, { - "type": "redeemMasset", - "inputQty": "48540226499944062019174", - "expectedQtys": [ - "14333675152776722667017", - "20880359040900427465264", - "13319930982738119855378" + "type": "mintMulti", + "inputQtys": [ + "473884955486942003200", + "4762412146153635184640", + "629584051554109358080" ], - "redemptionFee": "14562067949983218605", + "expectedQty": "5899153987826081391182", "reserves": [ - "30970011438711787301323283", - "45115083985688293382540713", - "28779668194052657401269189" + "506754494854430428641591971", + "246516058967870203329996209", + "588777773470179350120874949" ], - "mAssetSupply": "104846828640372513233784672" + "mAssetSupply": "1341247383878764771549113557" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 2, + "inputQty": "4744732597319674", + "expectedQty": "4730490710889514", + "reserves": [ + "506754494854430428641591971", + "246516058967870203329996209", + "588777773474924082718194623" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "24343940009646260224", - "131097926625786396672", - "158170846567137247232" + "46713545216352352993280", + "15809810936496887169024", + "1850921111272691859456" ], - "expectedQty": "313625231774413842684", + "expectedQty": "64405541612313889496021", + "swapFee": "38666524882317724332", "reserves": [ - "30970035782651796947583507", - "45115215083614919168937385", - "28779826364899224538516421" + "506707781309214076288598691", + "246500249156933706442827185", + "588775922553812810026335167" ], - "mAssetSupply": "104847142265604287647627356" + "mAssetSupply": "1341182978341882948370507050" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3954149171725034485448704", - "expectedQty": "3959335575277312875408415", - "swapFee": "2372489503035020691269", + "inputQty": "16936994957351137280", + "expectedQty": "16799830320728293649", + "swapFee": "10162196974410682", "reserves": [ - "30970035782651796947583507", - "41155879508337606293528970", - "28779826364899224538516421" + "506707781309214076288598691", + "246500232357103385714533536", + "588775922553812810026335167" ], - "mAssetSupply": "100895365583382288182869921" + "mAssetSupply": "1341182961415050187993780452" }, { - "type": "redeemBassets", - "inputQtys": [ - "2073773936377814319104", - "77162856156561571840", - "29138005916469115748352" + "type": "redeemMasset", + "inputQty": "3730109066702909918412", + "expectedQtys": [ + "1408837064743255031206", + "685362800064418284950", + "1637017178577778605756" ], - "expectedQty": "31329339232344441629649", - "swapFee": "18808888872730303159", + "redemptionFee": "1119032720010872975", "reserves": [ - "30967962008715419133264403", - "41155802345481449731957130", - "28750688358982755422768069" + "506706372472149333033567485", + "246499546994303321296248586", + "588774285536634232247729411" ], - "mAssetSupply": "100864036244149943741240272" + "mAssetSupply": "1341179232425016205094735015" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "34804862808253824", - "expectedQty": "34737113817795555", - "swapFee": "20882917684952", + "inputQty": "103052231030362016317440", + "expectedQty": "103300457874563550818796", + "swapFee": "61831338618217209790", "reserves": [ - "30967962008715419133264403", - "41155802345481449731957130", - "28750688324245641604972514" + "506706372472149333033567485", + "246499546994303321296248586", + "588670985078759668696910615" ], - "mAssetSupply": "100864036209365963850671400" + "mAssetSupply": "1341076242025324461295627365" }, { "type": "mintMulti", "inputQtys": [ - "7427945108556399771648", - "11006667790343225737216", - "354256276773032755200" + "152754815720984290525184", + "164435085526072435933184", + "76584063108539335311360" ], - "expectedQty": "18775642034585255748491", + "expectedQty": "394516020225355103516808", "reserves": [ - "30975389953823975533036051", - "41166809013271792957694346", - "28751042580522414637727714" + "506859127287870317324092669", + "246663982079829393732181770", + "588747569141868208032221975" ], - "mAssetSupply": "100882811851400549106419891" + "mAssetSupply": "1341470758045549816399144173" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2892547785030618706870272", - "expectedQty": "2895119526460525839093606", - "swapFee": "1735528671018371224122", + "inputQty": "8357180825914356877230080", + "expectedQty": "8287169222061717660896558", + "swapFee": "5014308495548614126338", "reserves": [ - "30975389953823975533036051", - "38271689486811267118600740", - "28751042580522414637727714" + "506859127287870317324092669", + "238376812857767676071285212", + "588747569141868208032221975" ], - "mAssetSupply": "97991999595040948770773741" + "mAssetSupply": "1333118591528131008136040431" }, { - "type": "redeemMasset", - "inputQty": "1061554081997308454502", - "expectedQtys": [ - "335457865614467282771", - "414475468681562484101", - "311368586243158787248" + "type": "redeemBassets", + "inputQtys": [ + "3192347179507534836793344", + "3629654287274810829438976", + "563369080379278176026624" ], - "redemptionFee": "318466224599192536", + "expectedQty": "7407460364378180449553586", + "swapFee": "4447144505330106333532", "reserves": [ - "30975054495958361065753280", - "38271275011342585556116639", - "28750731211936171478940466" + "503666780108362782487299325", + "234747158570492865241846236", + "588184200061488929856195351" ], - "mAssetSupply": "97990938359425176061511775" + "mAssetSupply": "1325711131163752827686486845" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "184491182242062865006592", - "expectedQty": "184249120535446756354463", + "type": "mintMulti", + "inputQtys": [ + "7673893419393721760219136", + "9852532923621732872355840", + "14944078637893865399386112" + ], + "expectedQty": "32489273790846296237467871", "reserves": [ - "30975054495958361065753280", - "38455766193584648421123231", - "28750731211936171478940466" - ] + "511340673527756504247518461", + "244599691494114598114202076", + "603128278699382795255581463" + ], + "mAssetSupply": "1358200404954599123923954716" }, { "type": "redeemBassets", "inputQtys": [ - "1368170639891302144", - "8328441946698673152", - "6255649191109025792" + "7118434815364751704457216", + "427319148966034962120704", + "2340499943010060195594240" ], - "expectedQty": "15948707782428445765", - "swapFee": "9574969651247816", + "expectedQty": "9869708305550795464111001", + "swapFee": "5925380211457351689480", "reserves": [ - "30975053127787721174451136", - "38455757865142701722450079", - "28750724956286980369914674" + "504222238712391752543061245", + "244172372345148563152081372", + "600787778756372735059987223" ], - "mAssetSupply": "98175171531252840389420473" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "213372427061097125642240", - "expectedQty": "213602900333088728466264", - "reserves": [ - "30975053127787721174451136", - "38455757865142701722450079", - "28964097383348077495556914" - ] + "mAssetSupply": "1348330696649048328459843715" }, { "type": "mintMulti", "inputQtys": [ - "109548834674248211496960", - "164935055949681569824768", - "171197165927148336185344" + "9298894683946883072", + "8819542344014514176", + "6725602812920987648" ], - "expectedQty": "445693802112358862228222", + "expectedQty": "24876172689859518078", "reserves": [ - "31084601962461969385948096", - "38620692921092383292274847", - "29135294549275225831742258" + "504222248011286436489944317", + "244172381164690907166595548", + "600787785481975547980974871" ], - "mAssetSupply": "98834468233698287980114959" + "mAssetSupply": "1348330721525221018319361793" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "28476650294141044", - "expectedQty": "28489296004315111", + "inputIndex": 2, + "inputQty": "41382017167877939920896", + "expectedQty": "41250669672245444157353", "reserves": [ - "31084601990938619680089140", - "38620692921092383292274847", - "29135294549275225831742258" + "504222248011286436489944317", + "244172381164690907166595548", + "600829167499143425920895767" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "487453981804911808", - "1001158499981118080", - "552233148238093056" - ], - "expectedQty": "2040333810393356140", - "reserves": [ - "31084602478392601485000948", - "38620693922250883273392927", - "29135295101508374069835314" - ], - "mAssetSupply": "98834470302521394377786210" - }, { "type": "swap", "inputIndex": 0, - "inputQty": "6707134362538407555497984", + "inputQty": "263138962351291478573056", "outputIndex": 2, - "expectedQty": "6684154847604061373967114", - "swapFee": "4023748273113809827442", + "expectedQty": "263362610614649403247011", + "swapFee": "157610936168749902853", "reserves": [ - "37791736840931009040498932", - "38620693922250883273392927", - "22451140253904312695868200" + "504485386973637727968517373", + "244172381164690907166595548", + "600565804888528776517648756" ], - "mAssetSupply": "98838494050794508187613652", + "mAssetSupply": "1348372129805829432513421999", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "464010931489734262784", - "expectedQty": "464464152829002645031", - "swapFee": "278406558893840557", + "type": "redeemBassets", + "inputQtys": [ + "777315867399817265152", + "613637121090825617408", + "971941053747049791488" + ], + "expectedQty": "2363305686821424226230", + "swapFee": "1418834712920606899", "reserves": [ - "37791736840931009040498932", - "38620229458098054270747896", - "22451140253904312695868200" + "504484609657770328151252221", + "244171767527569816340978140", + "600564832947475029467857268" ], - "mAssetSupply": "98838030318269577347191425" + "mAssetSupply": "1348369766500142611089195769" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5332227090560298516480", - "expectedQty": "5324724354975378458537", + "inputIndex": 1, + "inputQty": "20950749334093944586240", + "expectedQty": "21115863094692148039835", "reserves": [ - "37797069068021569339015412", - "38620229458098054270747896", - "22451140253904312695868200" + "504484609657770328151252221", + "244192718276903910285564380", + "600564832947475029467857268" ] }, { - "type": "redeemMasset", - "inputQty": "1788521064965043", - "expectedQtys": [ - "683713881794942", - "698604088880210", - "406120279487667" + "type": "mintMulti", + "inputQtys": [ + "14444811159039826198528", + "487770690144170573561856", + "486578930384974215380992" ], - "redemptionFee": "536556319489", + "expectedQty": "991065082673615333857237", "reserves": [ - "37797069067337855457220470", - "38620229457399450181867686", - "22451140253498192416380533" + "504499054468929367977450749", + "244680488967048080859126236", + "601051411877860003683238260" ], - "mAssetSupply": "98843355040836568217004408" + "mAssetSupply": "1349381947445910918571092841" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "3876267296824833817444352", - "outputIndex": 0, - "expectedQty": "3888726852963987803687134", - "swapFee": "2333124357263018604845", + "type": "redeemMasset", + "inputQty": "1358197276701096096563", + "expectedQtys": [ + "507642539906494737928", + "246205069731097182756", + "604796505835380038218" + ], + "redemptionFee": "407459183010328828", "reserves": [ - "33908342214373867653533336", - "38620229457399450181867686", - "26327407550323026233824885" + "504498546826389461482712821", + "244680242761978349761943480", + "601050807081354168303200042" ], - "mAssetSupply": "98845688165193831235609253", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1349380589656093400485325106" }, { - "type": "redeemBassets", - "inputQtys": [ - "2144464263868768845824", - "1378425180806735462400", - "2820448694537838657536" + "type": "redeemMasset", + "inputQty": "2631287346504205516", + "expectedQtys": [ + "983475239361108204", + "476982464728644506", + "1171695320196711520" ], - "expectedQty": "6346508012213415154904", - "swapFee": "3810190921881177799", + "redemptionFee": "789386203951261", "reserves": [ - "33906197750109998884687512", - "38618851032218643446405286", - "26324587101628488395167349" + "504498545842914222121604617", + "244680242284995885033298974", + "601050805909658848106488522" ], - "mAssetSupply": "98839341657181617820454349" + "mAssetSupply": "1349380587025595440185070851" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "3107301557781349504385024", - "outputIndex": 2, - "expectedQty": "3094573984736016071030609", - "swapFee": "1863281521955681923205", + "type": "mintMulti", + "inputQtys": [ + "8249902130354259492864000", + "5645819196570097936236544", + "3909918200891055980675072" + ], + "expectedQty": "17822989796118576312437200", "reserves": [ - "37013499307891348389072536", - "38618851032218643446405286", - "23230013116892472324136740" + "512748447973268481614468617", + "250326061481565982969535518", + "604960724110549904087163594" ], - "mAssetSupply": "98841204938703573502377554", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1367203576821714016497508051" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "10433741834874936885248", - "expectedQty": "10470321768884452634940", + "inputIndex": 1, + "inputQty": "43406158606488146280448", + "expectedQty": "43737928176834980451998", "reserves": [ - "37013499307891348389072536", - "38618851032218643446405286", - "23240446858727347261021988" + "512748447973268481614468617", + "250369467640172471115815966", + "604960724110549904087163594" ] }, { "type": "redeemMasset", - "inputQty": "1207424320895913767731", + "inputQty": "143967663641807", "expectedQtys": [ - "451965956553671532051", - "471568651280132594400", - "283785402397768610544" + "53974909685849", + "26355358962835", + "63681714837790" ], - "redemptionFee": "362227296268774130", + "redemptionFee": "43190299092", "reserves": [ - "37013047341934794717540485", - "38618379463567363313810886", - "23240163073324949492411444" + "512748447973214506704782768", + "250369467640146115756853131", + "604960724110486222372325804" ], - "mAssetSupply": "98850468198378858310018893" + "mAssetSupply": "1367247314749746927004617334" }, { - "type": "mintMulti", - "inputQtys": [ - "78598695983946661888", - "197761914314610933760", - "393836039138793619456" + "type": "redeemMasset", + "inputQty": "1055741260281083379213926", + "expectedQtys": [ + "395807903898982618934287", + "193268677026063254440692", + "466989684898843062270182" ], - "expectedQty": "671183159205445941522", + "redemptionFee": "316722378084325013764", "reserves": [ - "37013125940630778664202373", - "38618577225481677924744646", - "23240556909364088286030900" + "512352640069315524085848481", + "250176198963120052502412439", + "604493734425587379310055622" ], - "mAssetSupply": "98851139381538063755960415" + "mAssetSupply": "1366191890211843927950417172" }, { "type": "redeemMasset", - "inputQty": "19803413746338755719987", + "inputQty": "1350686824616663139221504", "expectedQtys": [ - "7412826556760922727110", - "7734359300010380757476", - "4654516825408983458499" + "506385930898596807993672", + "247262720034921596746762", + "597453976987524423692104" ], - "redemptionFee": "5941024123901626715", + "redemptionFee": "405206047384998941766", "reserves": [ - "37005713114074017741475263", - "38610842866181667543987170", - "23235902392538679302572401" + "511846254138416927277854809", + "249928936243085130905665677", + "603896280448599854886363518" ], - "mAssetSupply": "98831341908815848901867143" + "mAssetSupply": "1364841608593274649810137434" }, { - "type": "mintMulti", - "inputQtys": [ - "877182180716815187968", - "1402385609558231613440", - "1283341616067601760256" - ], - "expectedQty": "3564236385225612292127", + "type": "swap", + "inputIndex": 2, + "inputQty": "565905427240603552317440", + "outputIndex": 1, + "expectedQty": "559530595771122103934252", + "swapFee": "338496436950527149316", "reserves": [ - "37006590296254734556663231", - "38612245251791225775600610", - "23237185734154746904332657" + "511846254138416927277854809", + "249369405647314008801731425", + "604462185875840458438680958" ], - "mAssetSupply": "98834906145201074514159270" + "mAssetSupply": "1364841947089711600337286750", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "12607597516483548", - "expectedQty": "12588473160515593", + "inputQty": "17227977074235022508032", + "expectedQty": "17360437222486762776373", "reserves": [ - "37006590296254734556663231", - "38612245264398823292084158", - "23237185734154746904332657" + "511846254138416927277854809", + "249386633624388243824239457", + "604462185875840458438680958" ] }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "90113829443032617844736", + "expectedQty": "90215263227032224790997", + "swapFee": "54068297665819570706", + "reserves": [ + "511756038875189895053063812", + "249386633624388243824239457", + "604462185875840458438680958" + ], + "mAssetSupply": "1364769247765788720301789093" + }, { "type": "mintMulti", "inputQtys": [ - "57938630884942149582848", - "83307900659023394897920", - "80029373673169743773696" + "228974413585808722231296", + "442885629180927096651776", + "864777919553885574266880" ], - "expectedQty": "221360784736702557858069", + "expectedQty": "1536968944650029460796109", "reserves": [ - "37064528927139676706246079", - "38695553165057846686982078", - "23317215107827916648106353" + "511985013288775703775295108", + "249829519253569170920891233", + "605326963795394344012947838" ], - "mAssetSupply": "99056266942526250232532932" + "mAssetSupply": "1366306216710438749762585202" }, { "type": "redeemMasset", - "inputQty": "815035332042577402029670", + "inputQty": "7758805269652902507236556", "expectedQtys": [ - "304875591450089726443667", - "318291638911052510859814", - "191796576207466829885028" + "2906522895755918361688259", + "1418274361356412692095943", + "3436422227260336380273911" ], - "redemptionFee": "244510599612773220608", + "redemptionFee": "2327641580895870752170", "reserves": [ - "36759653335689586979802412", - "38377261526146794176122264", - "23125418531620449818221325" + "509078490393019785413606849", + "248411244892212758228795290", + "601890541568134007632673927" ], - "mAssetSupply": "98241476121083285603723870" + "mAssetSupply": "1358549739082366743126100816" }, { - "type": "redeemBassets", - "inputQtys": [ - "1270719557585764352", - "263696192044634734592", - "285827776870993952768" - ], - "expectedQty": "551390804199686804256", - "swapFee": "331033102381240827", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4570469188343645", + "expectedQty": "4575577905919003", + "swapFee": "2742281513006", "reserves": [ - "36759652064970029394038060", - "38376997829954749541387672", - "23125132703843578824268557" + "509078490388444207507687846", + "248411244892212758228795290", + "601890541568134007632673927" ], - "mAssetSupply": "98240924730279085916919614" + "mAssetSupply": "1358549739077799016219270177" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "49108521218068635648", - "29884586607756095488", - "65570574172146442240" + "25551233845755651704225792", + "1890967825031719009910784", + "4881040809233223040106496" ], - "expectedQty": "144689154376479383726", - "swapFee": "86865611993083480", + "expectedQty": "32276057449581558974813401", "reserves": [ - "36759602956448811325402412", - "38376967945368141785292184", - "23125067133269406677826317" + "534629724234199859211913638", + "250302212717244477238706074", + "606771582377367230672780423" ], - "mAssetSupply": "98240780041124709437535888" + "mAssetSupply": "1390825796527380575194083578" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "360603881183673253888", - "expectedQty": "359134828345828384616", - "swapFee": "216362328710203952", + "inputQty": "192757204540005485117440", + "expectedQty": "193223208453634231258201", + "swapFee": "115654322724003291070", "reserves": [ - "36759602956448811325402412", - "38376967945368141785292184", - "23124707998441060849441701" + "534629724234199859211913638", + "250302212717244477238706074", + "606578359168913596441522222" ], - "mAssetSupply": "98240419653605854474485952" + "mAssetSupply": "1390633154977163293712257208" }, { - "type": "redeemMasset", - "inputQty": "389812427543469824", - "expectedQtys": [ - "145816266965044798", - "152231954459917597", - "91730005870420832" + "type": "redeemBassets", + "inputQtys": [ + "58105537470257065623552", + "28872234214969386729472", + "10483544117622756868096" ], - "redemptionFee": "116943728263040", + "expectedQty": "97546181225135896523498", + "swapFee": "58562846442947306297", "reserves": [ - "36759602810632544360357614", - "38376967793136187325374587", - "23124707906711054979020869" + "534571618696729602146290086", + "250273340483029507851976602", + "606567875624795973684654126" ], - "mAssetSupply": "98240419263910370659279168" + "mAssetSupply": "1390535608795938157815733710" }, { - "type": "redeemMasset", - "inputQty": "6399859411640593612", - "expectedQtys": [ - "2393981162651550901", - "2499312586421070941", - "1506004170003517750" - ], - "redemptionFee": "1919957823492178", + "type": "redeem", + "inputIndex": 2, + "inputQty": "385222429590316210192384", + "expectedQty": "386152827884068312243472", + "swapFee": "231133457754189726115", "reserves": [ - "36759600416651381708806713", - "38376965293823600904303646", - "23124706400706884975503119" + "534571618696729602146290086", + "250273340483029507851976602", + "606181722796911905372410654" ], - "mAssetSupply": "98240412865970916842177734" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "13429721152424409088", - "expectedQty": "13409382784569546218", - "reserves": [ - "36759600416651381708806713", - "38376978723544753328712734", - "23124706400706884975503119" - ] + "mAssetSupply": "1390150617499805595795267441" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "103176106019801589088256", - "expectedQty": "103019111716214678352205", + "type": "mintMulti", + "inputQtys": [ + "54550344141472954056704", + "107336558528223871238144", + "8458086755482805993472" + ], + "expectedQty": "171069259370867698848384", "reserves": [ - "36759600416651381708806713", - "38480154829564554917800990", - "23124706400706884975503119" - ] + "534626169040871075100346790", + "250380677041557731723214746", + "606190180883667388178404126" + ], + "mAssetSupply": "1390321686759176463494115825" }, { "type": "mintMulti", "inputQtys": [ - "251110887479863851089920", - "593568213542255665872896", - "464410979913473923743744" + "22168694640109443612672", + "2300543468841374842880", + "27418567058325516582912" ], - "expectedQty": "1309499937242062827407088", + "expectedQty": "51780139201482262386470", "reserves": [ - "37010711304131245559896633", - "39073723043106810583673886", - "23589117380620358899246863" + "534648337735511184543959462", + "250382977585026573098057626", + "606217599450725713694987038" ], - "mAssetSupply": "99652945324311978917483245" + "mAssetSupply": "1390373466898377945756502295" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5157748352913849481953280", - "expectedQty": "5158313830875371938340094", - "swapFee": "3094649011748309689171", + "type": "redeemMasset", + "inputQty": "2109077635435649931673", + "expectedQtys": [ + "810772496975176252607", + "379695619734848638755", + "919304376590258564329" + ], + "redemptionFee": "632723290630694979", "reserves": [ - "31852397473255873621556539", - "39073723043106810583673886", - "23589117380620358899246863" + "534647526963014209367706855", + "250382597889406838249418871", + "606216680146349123436422709" ], - "mAssetSupply": "94498291620409877745219136" + "mAssetSupply": "1390371358453465800737265601" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "114680001853564039200768", - "outputIndex": 1, - "expectedQty": "115140449992572725991892", - "swapFee": "68997166878171048888", + "type": "redeemBassets", + "inputQtys": [ + "10180998211924351285985280", + "6473455385753880897781760", + "8814206068688490237788160" + ], + "expectedQty": "25474024948866205187748751", + "swapFee": "15293591123994119584399", "reserves": [ - "31852397473255873621556539", - "38958582593114237857681994", - "23703797382473922938447631" + "524466528751089858081721575", + "243909142503652957351637111", + "597402474077660633198634549" ], - "mAssetSupply": "94498360617576755916268024", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1364897333504599595549516850" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1459041356777374089216", - "expectedQty": "1460871782521349234326", - "swapFee": "875424814066424453", + "inputQty": "118387010496465123409920", + "expectedQty": "117358781858559567715799", + "swapFee": "71032206297879074045", "reserves": [ - "31852397473255873621556539", - "38957121721331716508447668", - "23703797382473922938447631" + "524466528751089858081721575", + "243791783721794397783921312", + "597402474077660633198634549" ], - "mAssetSupply": "94496902451644792608603261" + "mAssetSupply": "1364779017526309428305180975" }, { - "type": "redeemBassets", - "inputQtys": [ - "130970569150055246200832", - "63091199127995591688192", - "237314292712194913075200" - ], - "expectedQty": "431873843805539312288964", - "swapFee": "259279874207848296351", + "type": "redeem", + "inputIndex": 2, + "inputQty": "30563655303066972369977344", + "expectedQty": "30634259389010739508648958", + "swapFee": "18338193181840183421986", "reserves": [ - "31721426904105818375355707", - "38894030522203720916759476", - "23466483089761728025372431" + "524466528751089858081721575", + "243791783721794397783921312", + "566768214688649893689985591" ], - "mAssetSupply": "94065028607839253296314297" + "mAssetSupply": "1334233700416424296118625617" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "67813042456692640", - "87835069999875664", - "148858388087570848" + "13920228582170467581820928", + "5561067531768551773831168", + "14338141458724413973200896" ], - "expectedQty": "304735660637973698", - "swapFee": "182951167083034", + "expectedQty": "33793337685447370551246100", "reserves": [ - "31721426836292775918663067", - "38894030434368650916883812", - "23466482940903339937801583" + "538386757333260325663542503", + "249352851253562949557752480", + "581106356147374307663186487" ], - "mAssetSupply": "94065028303103592658340599" + "mAssetSupply": "1368027038101871666669871717" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "882222680232057699827712", - "expectedQty": "883303163828554741101022", - "swapFee": "529333608139234619896", + "inputIndex": 2, + "inputQty": "9781545545662932", + "expectedQty": "9802630679855165", + "swapFee": "5868927327397", "reserves": [ - "31721426836292775918663067", - "38010727270540096175782790", - "23466482940903339937801583" + "538386757333260325663542503", + "249352851253562949557752480", + "581106356137571676983331322" ], - "mAssetSupply": "93183334956479674193132783" + "mAssetSupply": "1368027038092095990051536182" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "3996360378291161281855488", - "outputIndex": 1, - "expectedQty": "4006232303109711484022170", - "swapFee": "2402663743780801757871", + "inputQty": "6612973399493169536565248", + "expectedQty": "6594564174977935608102036", "reserves": [ - "31721426836292775918663067", - "34004494967430384691760620", - "27462843319194501219657071" - ], - "mAssetSupply": "93185737620223454994890654", - "hardLimitError": false, - "insufficientLiquidityError": false + "538386757333260325663542503", + "249352851253562949557752480", + "587719329537064846519896570" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3805811808012558812577792", - "expectedQty": "3801879624549215508274085", + "inputIndex": 0, + "inputQty": "1099260212657642190929920", + "expectedQty": "1096945295672801663507290", "reserves": [ - "31721426836292775918663067", - "37810306775442943504338412", - "27462843319194501219657071" + "539486017545917967854472423", + "249352851253562949557752480", + "587719329537064846519896570" ] }, + { + "type": "redeemMasset", + "inputQty": "746570691953553118435737", + "expectedQtys": [ + "292678775609320251419102", + "135277439685216856158722", + "318846027842043161675492" + ], + "redemptionFee": "223971207586065935530", + "reserves": [ + "539193338770308647603053321", + "249217573813877732701593758", + "587400483509222803358221078" + ], + "mAssetSupply": "1374972200842000760270645301" + }, { "type": "redeemBassets", "inputQtys": [ - "573305208115248005906432", - "3293290493791398162071552", - "3193781034585811392135168" + "138352829242275656630272", + "7417460711642907017216", + "176898767766800752967680" ], - "expectedQty": "7061467729411650932200471", - "swapFee": "4239424292222323953692", + "expectedQty": "321937380349439434272091", + "swapFee": "193278395246811747611", "reserves": [ - "31148121628177527912756635", - "34517016281651545342266860", - "24269062284608689827521903" + "539054985941066371946423049", + "249210156353166089794576542", + "587223584741456002605253398" ], - "mAssetSupply": "89926149515361019570964268" + "mAssetSupply": "1374650263461651320836373210" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "281228797334452514586624", - "expectedQty": "281168295050124762332146", - "swapFee": "168737278400671508751", + "inputIndex": 2, + "inputQty": "18610684869289483475877888", + "expectedQty": "18650169674761128055202022", + "swapFee": "11166410921573690085526", "reserves": [ - "30866953333127403150424489", - "34517016281651545342266860", - "24269062284608689827521903" + "539054985941066371946423049", + "249210156353166089794576542", + "568573415066694874550051376" ], - "mAssetSupply": "89645089455304967727886395" + "mAssetSupply": "1356050745003283411050580848" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "687780161613866991616", + "expectedQty": "685979097459060723153", + "reserves": [ + "539054985941066371946423049", + "249210156353166089794576542", + "568574102846856488417042992" + ] }, { "type": "redeemBassets", "inputQtys": [ - "3945121046635622170624", - "5551342579805059022848", - "373212754013272408064" + "113802031996499539263488", + "115571031296063253250048", + "25091135271488840531968" ], - "expectedQty": "9862117961430354507353", - "swapFee": "5920823270820705127", + "expectedQty": "255021408807126009715711", + "swapFee": "153104708109141090483", "reserves": [ - "30863008212080767528253865", - "34511464939071740283244012", - "24268689071854676555113839" + "538941183909069872407159561", + "249094585321870026541326494", + "568549011711584999576511024" ], - "mAssetSupply": "89635227337343537373379042" + "mAssetSupply": "1355796409573573744101588290" }, { - "type": "mintMulti", - "inputQtys": [ - "27456871420219400192", - "243861336844157517824", - "341321890232419418112" - ], - "expectedQty": "612972352820532453244", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7014593494817011069353984", + "expectedQty": "6956225144191633225344340", + "swapFee": "4208756096890206641612", "reserves": [ - "30863035668952187747654057", - "34511708800408584440761836", - "24269030393744908974531951" + "538941183909069872407159561", + "242138360177678393315982154", + "568549011711584999576511024" ], - "mAssetSupply": "89635840309696357905832286" + "mAssetSupply": "1348786024834853623238875918" }, { - "type": "mintMulti", - "inputQtys": [ - "74979067637300373487616", - "193609561792782973009920", - "97322923265232969138176" + "type": "redeemMasset", + "inputQty": "17286118268864128614", + "expectedQtys": [ + "6905028680024076604", + "3102327993258285028", + "7284370445384644744" ], - "expectedQty": "365828601379506722519086", + "redemptionFee": "5185835480659238", "reserves": [ - "30938014736589488121141673", - "34705318362201367413771756", - "24366353317010141943670127" + "538941177004041192383082957", + "242138357075350400057697126", + "568549004427214554191866280" ], - "mAssetSupply": "90001668911075864628351372" + "mAssetSupply": "1348786007553921189855406542" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "5381697676979532201984", + "inputIndex": 1, + "inputQty": "10577217231972542185472", "outputIndex": 0, - "expectedQty": "5390456038414022574473", - "swapFee": "3235097003211946840", + "expectedQty": "10680266182153460773089", + "swapFee": "6397312027654492699", "reserves": [ - "30932624280551074098567200", - "34705318362201367413771756", - "24371735014687121475872111" + "538930496737859038922309868", + "242148934292582372599882598", + "568549004427214554191866280" ], - "mAssetSupply": "90001672146172867840298212", + "mAssetSupply": "1348786013951233217509899241", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "688347657779282960187392", - "expectedQty": "688068285857226760083908", - "reserves": [ - "31620971938330357058754592", - "34705318362201367413771756", - "24371735014687121475872111" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2745779253540353998848", - "expectedQty": "2745410371107343137609", - "swapFee": "1647467552124212399", - "reserves": [ - "31618226527959249715616983", - "34705318362201367413771756", - "24371735014687121475872111" - ], - "mAssetSupply": "90686996300244106370595671" - }, { "type": "redeemBassets", "inputQtys": [ - "7351302455537623367680", - "50017314790956381241344", - "75551138570131027787776" + "77221497972254417354752", + "45831300923034418806784", + "76585112986137076432896" ], - "expectedQty": "133005411325585704413831", - "swapFee": "79851157489845329846", + "expectedQty": "199619976732145398318222", + "swapFee": "119843892374712066230", "reserves": [ - "31610875225503712092249303", - "34655301047410411032530412", - "24296183876116990448084335" + "538853275239886784504955116", + "242103102991659338181075814", + "568472419314228417115433384" ], - "mAssetSupply": "90553990888918520666181840" + "mAssetSupply": "1348586393974501072111581019" }, { - "type": "mintMulti", - "inputQtys": [ - "611877895646042783744", - "233328616326511853568", - "374793665486386561024" - ], - "expectedQty": "1220171184754471145291", + "type": "mint", + "inputIndex": 0, + "inputQty": "3682122455683826511249408", + "expectedQty": "3673607574827397893545960", "reserves": [ - "31611487103399358135033047", - "34655534376026737544383980", - "24296558669782476834645359" - ], - "mAssetSupply": "90555211060103275137327131" + "542535397695570611016204524", + "242103102991659338181075814", + "568472419314228417115433384" + ] }, { "type": "mintMulti", "inputQtys": [ - "65475513339142740115456", - "107548164721877717090304", - "56202746060729674104832" + "21880410266243767992320", + "52543735520669137371136", + "85876574854152286371840" ], - "expectedQty": "229177972711612356237147", + "expectedQty": "160441525217655275013821", "reserves": [ - "31676962616738500875148503", - "34763082540748615261474284", - "24352761415843206508750191" + "542557278105836854784196844", + "242155646727180007318446950", + "568558295889082569401805224" ], - "mAssetSupply": "90784389032814887493564278" + "mAssetSupply": "1352420443074546125280140800" }, { - "type": "mintMulti", - "inputQtys": [ - "33096534172706512306176", - "9466947587721845014528", - "21256977014036474363904" - ], - "expectedQty": "63835488164067416113654", + "type": "mint", + "inputIndex": 1, + "inputQty": "6980709980798441360457728", + "expectedQty": "7035435201771361870418246", "reserves": [ - "31710059150911207387454679", - "34772549488336337106488812", - "24374018392857242983114095" - ], - "mAssetSupply": "90848224520978954909677932" + "542557278105836854784196844", + "249136356707978448678904678", + "568558295889082569401805224" + ] }, { - "type": "redeemMasset", - "inputQty": "37848971256156291072", - "expectedQtys": [ - "13207006143764369451", - "14482510819082215895", - "10151599185946051390" - ], - "redemptionFee": "11354691376846887", + "type": "mint", + "inputIndex": 0, + "inputQty": "1881424834557306602520576", + "expectedQty": "1877220106962946201198603", "reserves": [ - "31710045943905063623085228", - "34772535005825518024272917", - "24374008241258057037062705" - ], - "mAssetSupply": "90848186683362390130233747" + "544438702940394161386717420", + "249136356707978448678904678", + "568558295889082569401805224" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "91193736738544356950016", - "90503133280505507610624", - "41109195991159268179968" - ], - "expectedQty": "222736019678352008343915", - "swapFee": "133721844913959580754", + "type": "mint", + "inputIndex": 0, + "inputQty": "1610081148492142524497920", + "expectedQty": "1606451947026048345784678", "reserves": [ - "31618852207166519266135212", - "34682031872545012516662293", - "24332899045266897768882737" - ], - "mAssetSupply": "90625450663684038121889832" + "546048784088886303911215340", + "249136356707978448678904678", + "568558295889082569401805224" + ] }, { "type": "mintMulti", "inputQtys": [ - "56752047083042149236736", - "23642125799415194058752", - "9046967840971649187840" + "779430102299448573952", + "753012236230365806592", + "834393163014647447552" ], - "expectedQty": "89403853434833772263690", + "expectedQty": "2368668346983563969988", "reserves": [ - "31675604254249561415371948", - "34705673998344427710721045", - "24341946013107869418070577" + "546049563518988603359789292", + "249137109720214679044711270", + "568559130282245584049252776" ], - "mAssetSupply": "90714854517118871894153522" + "mAssetSupply": "1362941918998653465261512315" }, { - "type": "redeemMasset", - "inputQty": "150626680610520468501299", - "expectedQtys": [ - "52579699247739430740546", - "57609442471116413297386", - "40406244193501466058791" + "type": "swap", + "inputIndex": 1, + "inputQty": "952505901225420051709952", + "outputIndex": 0, + "expectedQty": "961341015657400789405797", + "swapFee": "575856187156427472664", + "reserves": [ + "545088222503331202570383495", + "250089615621440099096421222", + "568559130282245584049252776" ], - "redemptionFee": "45188004183156140550", + "mAssetSupply": "1362942494854840621688984979", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "44622976321593601542848512", + "expectedQty": "44182644875440428015629969", + "swapFee": "26773785792956160925709", "reserves": [ - "31623024555001821984631402", - "34648064555873311297423659", - "24301539768914367952011786" + "545088222503331202570383495", + "205906970745999671080791253", + "568559130282245584049252776" ], - "mAssetSupply": "90564273024512534581792773" + "mAssetSupply": "1318346292319039976307062176" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "71406638621918568120320", - "expectedQty": "71397538992269446415132", - "swapFee": "42843983173151140872", + "inputQty": "16315411185425479680", + "expectedQty": "16355141576447602862", + "swapFee": "9789246711255287", "reserves": [ - "31551627016009552538216270", - "34648064555873311297423659", - "24301539768914367952011786" + "545088206148189626122780633", + "205906970745999671080791253", + "568559130282245584049252776" ], - "mAssetSupply": "90492909229873789164813325" + "mAssetSupply": "1318346276013418037592837783" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2424631917229131983486976", - "2790252005656154467205120", - "680491509165896123809792" + "46722736426545938432", + "3132822842902534144", + "8794204110303379456" ], - "expectedQty": "5892017876734404836544716", + "expectedQty": "58514540647161681265", + "swapFee": "35129802269658804", "reserves": [ - "33976258933238684521703246", - "37438316561529465764628779", - "24982031278080264075821578" + "545088159425453199576842201", + "205906967613176828178257109", + "568559121488041473745873320" ], - "mAssetSupply": "96384927106608194001358041" + "mAssetSupply": "1318346217498877390431156518" }, { - "type": "redeemMasset", - "inputQty": "60567856813740829494476", - "expectedQtys": [ - "21344123890903443747242", - "23519012747292377537227", - "15693887066657768393152" - ], - "redemptionFee": "18170357044122248848", + "type": "swap", + "inputIndex": 0, + "inputQty": "2262252202725541937152", + "outputIndex": 2, + "expectedQty": "2261721576205609897323", + "swapFee": "1353241553798553352", "reserves": [ - "33954914809347781077956004", - "37414797548782173387091552", - "24966337391013606307428426" + "545090421677655925118779353", + "205906967613176828178257109", + "568556859766465268135975997" ], - "mAssetSupply": "96324377420151497294112413" + "mAssetSupply": "1318346218852118944229709870", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "204382838393484896894976", - "5562137320933590919282688", - "1203037397994098581831680" + "type": "redeemMasset", + "inputQty": "913477399535217736574566", + "expectedQtys": [ + "377577904387516079056473", + "142629402826210718502877", + "393832837816252240463449" ], - "expectedQty": "6966432249150762237724555", - "swapFee": "4182368770752909088087", + "redemptionFee": "274043219860565320972", "reserves": [ - "33750531970954296181061028", - "31852660227848582467808864", - "23763299993019507725596746" + "544712843773268409039722880", + "205764338210350617459754232", + "568163026928649015895512548" ], - "mAssetSupply": "89357945171000735056387858" + "mAssetSupply": "1317433015495803587058456276" }, { "type": "mintMulti", "inputQtys": [ - "15582853836725179908096", - "2681806284988256616448", - "8688674884991657705472" + "956359303047877046042624", + "727792215421368362074112", + "349031671301745384882176" ], - "expectedQty": "26952458369906648617141", + "expectedQty": "2037468653555761898030095", "reserves": [ - "33766114824791021360969124", - "31855342034133570724425312", - "23771988667904499383302218" + "545669203076316286085765504", + "206492130425771985821828344", + "568512058599950761280394724" ], - "mAssetSupply": "89384897629370641705004999" + "mAssetSupply": "1319470484149359348956486371" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "393139430526961088", - "410576623929794304", - "226945072630359104" + "1680940661027941954617344", + "237729026991839984484352", + "2023725434376415344590848" ], - "expectedQty": "1030432734229846237", + "expectedQty": "3933217223920832235349902", + "swapFee": "2361347142638082190524", "reserves": [ - "33766115217930451887930212", - "31855342444710194654219616", - "23771988894849572013661322" + "543988262415288344131148160", + "206254401398780145837343992", + "566488333165574345935803876" ], - "mAssetSupply": "89384898659803375934851236" + "mAssetSupply": "1315537266925438516721136469" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "2630240051235487133728768", - "expectedQty": "2631005107734880692703479", - "swapFee": "1578144030741292280237", + "inputQty": "4839066135405261590888448", + "outputIndex": 1, + "expectedQty": "4765236878776918617248167", + "swapFee": "2894601838498115523513", "reserves": [ - "31135110110195571195226733", - "31855342444710194654219616", - "23771988894849572013661322" + "548827328550693605722036608", + "201489164520003227220095825", + "566488333165574345935803876" ], - "mAssetSupply": "86756236752598630093402705" + "mAssetSupply": "1315540161527277014836659982", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "660714944613635309174784", - "949195495701129585491968", - "1300760940090111933022208" + "105532779603158320", + "131245906617996560", + "143787109278736816" ], - "expectedQty": "2911793718418726340960756", - "swapFee": "1748125106114904747424", + "expectedQty": "381320317760717878", + "swapFee": "228929548385462", "reserves": [ - "30474395165581935886051949", - "30906146949009065068727648", - "22471227954759460080639114" + "548827328445160826118878288", + "201489164388757320602099265", + "566488333021787236657067060" ], - "mAssetSupply": "83844443034179903752441949" + "mAssetSupply": "1315540161145956697075942104" }, { - "type": "mintMulti", - "inputQtys": [ - "117394782006255747596288", - "121587923325920345063424", - "5776762785454723432448" - ], - "expectedQty": "244567038589162037427911", + "type": "redeem", + "inputIndex": 2, + "inputQty": "4876914530794175725568", + "expectedQty": "4890878229826540560400", + "swapFee": "2926148718476505435", "reserves": [ - "30591789947588191633648237", - "31027734872334985413791072", - "22477004717544914804071562" + "548827328445160826118878288", + "201489164388757320602099265", + "566483442143557410116506660" ], - "mAssetSupply": "84089010072769065789869860" + "mAssetSupply": "1315535287157574621376721971" }, { "type": "redeemMasset", - "inputQty": "22412576217851990166732", + "inputQty": "9661781629519159676108", "expectedQtys": [ - "8151304564062814092298", - "8267463829697701012600", - "5989087642615361225360" + "4029583285647470512413", + "1479367602484720894722", + "4159217465581823490784" ], - "redemptionFee": "6723772865355597050", + "redemptionFee": "2898534488855747902", "reserves": [ - "30583638643024128819555939", - "31019467408505287712778472", - "22471015629902299442846202" + "548823298861875178648365875", + "201487685021154835881204543", + "566479282926091828293015876" ], - "mAssetSupply": "84066604220324079155300178" + "mAssetSupply": "1315525628274479591072793765" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "59231521085173780185088", - "22134877023078790987776", - "82926010169763871850496" + "37618037578415309062144", + "607935272990571495424", + "35643498775984274931712" ], - "expectedQty": "164391425779993633514974", + "expectedQty": "73634217121533846220751", + "swapFee": "44207054505623681941", "reserves": [ - "30642870164109302599741027", - "31041602285528366503766248", - "22553941640072063314696698" + "548785680824296763339303731", + "201487077085881845309709119", + "566443639427315844018084164" ], - "mAssetSupply": "84230995646104072788815152" + "mAssetSupply": "1315451994057358057226573014" }, { - "type": "redeemMasset", - "inputQty": "180781012970749", - "expectedQtys": [ - "65747616674673", - "66603139885604", - "48391939185619" + "type": "swap", + "inputIndex": 0, + "inputQty": "18149990392477922623488", + "outputIndex": 1, + "expectedQty": "17865530869448455271886", + "swapFee": "10855395359041245984", + "reserves": [ + "548803830814689241261927219", + "201469211555012396854437233", + "566443639427315844018084164" + ], + "mAssetSupply": "1315452004912753416267818998", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "41517726748937249714339840", + "14723552602177216956071936", + "7071986409957181282582528" ], - "redemptionFee": "54234303891", + "expectedQty": "63328178826065066315267114", "reserves": [ - "30642870164043554983066354", - "31041602285461763363880644", - "22553941640023671375511079" + "590321557563626490976267059", + "216192764157189613810509169", + "573515625837273025300666692" ], - "mAssetSupply": "84230995645923346010148294" + "mAssetSupply": "1378780183738818482583086112" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1819551511116848037888", - "expectedQty": "1818093712512467069341", + "inputIndex": 2, + "inputQty": "2859149199220093847863296", + "expectedQty": "2850338726668066873635963", "reserves": [ - "30644689715554671831104242", - "31041602285461763363880644", - "22553941640023671375511079" + "590321557563626490976267059", + "216192764157189613810509169", + "576374775036493119148529988" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "64872002117991942586368", - "outputIndex": 2, - "expectedQty": "64650225003665509700746", - "swapFee": "38891792632456405180", + "inputIndex": 1, + "inputQty": "5525558871637362703597568", + "outputIndex": 0, + "expectedQty": "5601571433945287665083409", + "swapFee": "3352330166673688205537", "reserves": [ - "30709561717672663773690610", - "31041602285461763363880644", - "22489291415020005865810333" + "584719986129681203311183650", + "221718323028826976514106737", + "576374775036493119148529988" ], - "mAssetSupply": "84232852631428490933622815", + "mAssetSupply": "1381633874795653223144927612", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 2, - "inputQty": "1533160842373881397248", - "outputIndex": 0, - "expectedQty": "1536611514029076175020", - "swapFee": "921763757757838651", + "inputQty": "612638650229609862266880", + "outputIndex": 1, + "expectedQty": "603906855367144359880101", + "swapFee": "366476457695913350922", "reserves": [ - "30708025106158634697515590", - "31041602285461763363880644", - "22490824575862379747207581" + "584719986129681203311183650", + "221114416173459832154226636", + "576987413686722729010796868" ], - "mAssetSupply": "84232853553192248691461466", + "mAssetSupply": "1381634241272110919058278534", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "202249048233929900032", - "190641868629504655360", - "100042542254566096896" - ], - "expectedQty": "492798305752575409863", - "swapFee": "295856497349955219", - "reserves": [ - "30707822857110400767615558", - "31041411643593133859225284", - "22490724533320125181110685" - ], - "mAssetSupply": "84232360754886496116051603" - }, - { - "type": "mintMulti", - "inputQtys": [ - "14698635855831215636480", - "69366777354908178841600", - "150853695284969287450624" + "type": "redeemMasset", + "inputQty": "1905288845533005247990988", + "expectedQtys": [ + "806093404407417545773466", + "304827741012588468412383", + "795433300779646281254385" ], - "expectedQty": "235147863860320739664155", + "redemptionFee": "571586653659901574397", "reserves": [ - "30722521492966231983252038", - "31110778420948042038066884", - "22641578228605094468561309" + "583913892725273785765410184", + "220809588432447243685814253", + "576191980385943082729542483" ], - "mAssetSupply": "84467508618746816855715758" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "777297202661452289146880", - "expectedQty": "776550382647035305271353", - "reserves": [ - "30722521492966231983252038", - "31888075623609494327213764", - "22641578228605094468561309" - ] + "mAssetSupply": "1379729524013231573711861943" }, { "type": "mint", "inputIndex": 2, - "inputQty": "338902258175095655628800", - "expectedQty": "339589246720342483649999", + "inputQty": "160815557709242658979840", + "expectedQty": "160328772014360806456083", "reserves": [ - "30722521492966231983252038", - "31888075623609494327213764", - "22980480486780190124190109" + "583913892725273785765410184", + "220809588432447243685814253", + "576352795943652325388522323" ] }, { "type": "redeemMasset", - "inputQty": "7083497311464", + "inputQty": "2785843481521839702802432", "expectedQtys": [ - "2542046477108", - "2638486893705", - "1901453612036" + "1178503270186949839602272", + "445656158036827181767531", + "1163242839848921638171489" ], - "redemptionFee": "2125049193", + "redemptionFee": "835753044456551910840", "reserves": [ - "30722521492963689936774930", - "31888075623606855840320059", - "22980480486778288670578073" + "582735389455086835925807912", + "220363932274410416504046722", + "575189553103803403750350834" ], - "mAssetSupply": "85583648248107113272374839" + "mAssetSupply": "1377104845056768551367426434" }, { - "type": "redeemMasset", - "inputQty": "172796508759344575152128", - "expectedQtys": [ - "62011282991189291132097", - "64363873323119452846624", - "46384509131696357741160" - ], - "redemptionFee": "51838952627803372545", + "type": "swap", + "inputIndex": 0, + "inputQty": "6758779311961765614452736", + "outputIndex": 2, + "expectedQty": "6753292361244477910641642", + "swapFee": "4042385104306691603570", "reserves": [ - "30660510209972500645642833", - "31823711750283736387473435", - "22934095977646592312836913" + "589494168767048601540260648", + "220363932274410416504046722", + "568436260742558925839709192" ], - "mAssetSupply": "85410903578300396500595256" + "mAssetSupply": "1377108887441872858059030004", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "149530501648805529", + "inputQty": "357329732783785960800256", "expectedQtys": [ - "53661837962667340", - "55697666203836148", - "40139114898761368" + "152914996472184973482878", + "57162482195229919952708", + "147452567661376982548528" ], - "redemptionFee": "44859150494641", + "redemptionFee": "107198919835135788240", "reserves": [ - "30660510156310662682975493", - "31823711694586070183637287", - "22934095937507477414075545" + "589341253770576416566777770", + "220306769792215186584094014", + "568288808174897548857160664" ], - "mAssetSupply": "85410903428814754002284368" + "mAssetSupply": "1376751664908008907234017988" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3346912434208067", - "12625463874765756", - "12077235893583598" + "868236107504354693480448", + "2280380005585822779703296", + "3319106854515596698058752" ], - "expectedQty": "28058665130860811", - "swapFee": "16845306262273", + "expectedQty": "6479764193825072270981232", "reserves": [ - "30660510152963750248767426", - "31823711681960606308871531", - "22934095925430241520491947" + "590209489878080771260258218", + "222587149797801009363797310", + "571607915029413145555219416" ], - "mAssetSupply": "85410903400756088871423557" + "mAssetSupply": "1383231429101833979504999220" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1505447900662268428288", - "outputIndex": 2, - "expectedQty": "1500541683476234021909", - "swapFee": "902641151798752057", + "type": "redeem", + "inputIndex": 1, + "inputQty": "10497023330395609697878016", + "expectedQty": "10374185273272767056135102", + "swapFee": "6298213998237365818726", "reserves": [ - "30662015600864412517195714", - "31823711681960606308871531", - "22932595383746765286470038" + "590209489878080771260258218", + "212212964524528242307662208", + "571607915029413145555219416" ], - "mAssetSupply": "85410904303397240670175614", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1372740703985436607172939930" + }, + { + "type": "mintMulti", + "inputQtys": [ + "11106873612445670103318528", + "29275734061361324477120512", + "366923465575114997760000" + ], + "expectedQty": "41017980135658710972849219", + "reserves": [ + "601316363490526441363576746", + "241488698585889566784782720", + "571974838494988260552979416" + ], + "mAssetSupply": "1413758684121095318145789149" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "26028732829528388", - "expectedQty": "26003123354873709", + "inputIndex": 0, + "inputQty": "3487046115949660864512", + "expectedQty": "3476723266928028307293", "reserves": [ - "30662015600864412517195714", - "31823711707989339138399919", - "22932595383746765286470038" + "601319850536642391024441258", + "241488698585889566784782720", + "571974838494988260552979416" ] }, { - "type": "redeemMasset", - "inputQty": "11828688254135017", - "expectedQtys": [ - "4245156039567941", - "4405992864827561", - "3175017815643403" - ], - "redemptionFee": "3548606476240", + "type": "mint", + "inputIndex": 0, + "inputQty": "4846358440798760992768", + "expectedQty": "4832011353241385122302", "reserves": [ - "30662015596619256477627773", - "31823711703583346273572358", - "22932595380571747470826635" - ], - "mAssetSupply": "85410904317575224377390546" + "601324696895083189785434026", + "241488698585889566784782720", + "571974838494988260552979416" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2011920722468849735172096", - "600763580735470270676992", - "843620994776070361186304" + "195115018252307202048", + "159827930397579313152", + "332937565789025009664" ], - "expectedQty": "3455849424470873575921945", + "expectedQty": "687921191463861788762", + "swapFee": "413000515187429530", "reserves": [ - "32673936319088106212799869", - "32424475284318816544249350", - "23776216375347817832012939" + "601324501780064937478231978", + "241488538757959169205469568", + "571974505557422471527969752" ], - "mAssetSupply": "88866753742046097953312491" + "mAssetSupply": "1413766304934524023697429982" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2820091403669315363274752", - "expectedQty": "2820050090051431482926487", - "swapFee": "1692054842201589217964", + "type": "redeemMasset", + "inputQty": "830472794727940565342617", + "expectedQtys": [ + "353123300999127001896725", + "141812332122225192394394", + "335887735975963982507452" + ], + "redemptionFee": "249141838418382169602", "reserves": [ - "32673936319088106212799869", - "29604425194267385061322863", - "23776216375347817832012939" + "600971378479065810476335253", + "241346726425836944013075174", + "571638617821446507545462300" ], - "mAssetSupply": "86048354393218984179255703" + "mAssetSupply": "1412936081281634501514256967" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "141121055515827048022016", - "outputIndex": 0, - "expectedQty": "141140270402674525665107", - "swapFee": "84643111030788855370", + "inputQty": "7582429367770240075694080", + "expectedQty": "7649635118267614805021653", "reserves": [ - "32532796048685431687134762", - "29745546249783212109344879", - "23776216375347817832012939" - ], - "mAssetSupply": "86048439036330014968111073", - "hardLimitError": false, - "insufficientLiquidityError": false + "600971378479065810476335253", + "248929155793607184088769254", + "571638617821446507545462300" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "424708040299418199523328", + "inputIndex": 0, + "inputQty": "2115700222717268976467968", "outputIndex": 1, - "expectedQty": "425259548509429629535832", - "swapFee": "255236276539349741733", + "expectedQty": "2090264304725857400824296", + "swapFee": "1265808789207746875422", "reserves": [ - "32532796048685431687134762", - "29320286701273782479809047", - "24200924415647236031536267" + "603087078701783079452803221", + "246838891488881326687944958", + "571638617821446507545462300" ], - "mAssetSupply": "86048694272606554317852806", + "mAssetSupply": "1420586982208691324066154042", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "33669161924890360754995", - "expectedQtys": [ - "12725624504773130861734", - "11469009868513290292937", - "9466505009930346793252" - ], - "redemptionFee": "10100748577467108226", - "reserves": [ - "32520070424180658556273028", - "29308817691405269189516110", - "24191457910637305684743015" - ], - "mAssetSupply": "86015035211430241424206037" - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "191071167314739855360", - "133722250859945852928", - "63625596918938615808" + "7933258088615817324265472", + "8015170209671130485096448", + "7010219245117409410940928" ], - "expectedQty": "388279232563838111022", - "swapFee": "233107403980691281", + "expectedQty": "22987930133129475434885966", "reserves": [ - "32519879353013343816417668", - "29308683969154409243663182", - "24191394285040386746127207" + "611020336790398896777068693", + "254854061698552457173041406", + "578648837066563916956403228" ], - "mAssetSupply": "86014646932197677586095015" + "mAssetSupply": "1443574912341820799501040008" }, { - "type": "redeemMasset", - "inputQty": "567752340152501248", - "expectedQtys": [ - "214587855570908103", - "193398246477919992", - "159630955777703869" - ], - "redemptionFee": "170325702045750", + "type": "redeem", + "inputIndex": 1, + "inputQty": "22739546248376784034725888", + "expectedQty": "22516734183118122035233452", + "swapFee": "13643727749026070420835", "reserves": [ - "32519879138425488245509565", - "29308683775756162765743190", - "24191394125409430968423338" + "611020336790398896777068693", + "232337327515434335137807954", + "578648837066563916956403228" ], - "mAssetSupply": "86014646364615663135639517" + "mAssetSupply": "1420849009821193041536734955" }, { "type": "mintMulti", "inputQtys": [ - "86014018106017640873984", - "74194509303706462191616", - "9736925307360423968768" + "1447005047693744596320256", + "923951937880877359431680", + "290266790755997530980352" ], - "expectedQty": "169850281437276912676762", + "expectedQty": "2665254857475278704381298", "reserves": [ - "32605893156531505886383549", - "29382878285059869227934806", - "24201131050716791392392106" + "612467341838092641373388949", + "233261279453315212497239634", + "578939103857319914487383580" ], - "mAssetSupply": "86184496646052940048316279" + "mAssetSupply": "1423514264678668320241116253" }, { - "type": "redeemMasset", - "inputQty": "1674899240626400460", - "expectedQtys": [ - "633468945538178304", - "570852049191144107", - "470180801180041968" - ], - "redemptionFee": "502469772187920", + "type": "mint", + "inputIndex": 2, + "inputQty": "3765664732966049", + "expectedQty": "3755420061295016", "reserves": [ - "32605892523062560348205245", - "29382877714207820036790699", - "24201130580535990212350138" - ], - "mAssetSupply": "86184494971656169194103739" + "612467341838092641373388949", + "233261279453315212497239634", + "578939103861085579220349629" + ] }, { - "type": "redeemMasset", - "inputQty": "6765114629509634169241", - "expectedQtys": [ - "2558655426458745549801", - "2305738432255928853333", - "1899115444931514686866" - ], - "redemptionFee": "2029534388852890250", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1768972326447441279713280", + "expectedQty": "1773566347031409580801863", + "swapFee": "1061383395868464767827", "reserves": [ - "32603333867636101602655444", - "29380571975775564107937366", - "24199231465091058697663272" + "610693775491061231792587086", + "233261279453315212497239634", + "578939103861085579220349629" ], - "mAssetSupply": "86177731886561048412824748" + "mAssetSupply": "1421746353739372167487465816" }, { - "type": "redeemBassets", - "inputQtys": [ - "252632568651347755008", - "325550359055995437056", - "28776716539301777408" - ], - "expectedQty": "606652246905645295294", - "swapFee": "364209874067827873", + "type": "swap", + "inputIndex": 1, + "inputQty": "127556978261802652532736", + "outputIndex": 2, + "expectedQty": "129128053440912629191795", + "swapFee": "77312181237963319782", "reserves": [ - "32603081235067450254900436", - "29380246425416508112500310", - "24199202688374519395885864" + "610693775491061231792587086", + "233388836431577015149772370", + "578809975807644666591157834" ], - "mAssetSupply": "86177125234314142767529454" + "mAssetSupply": "1421746431051553405450785598", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "333977850790445721", - "expectedQtys": [ - "126314730949040125", - "113828441418945117", - "93755426204181957" - ], - "redemptionFee": "100193355237133", + "type": "mint", + "inputIndex": 2, + "inputQty": "86761771982973222912", + "expectedQty": "86525504162677432076", + "reserves": [ + "610693775491061231792587086", + "233388836431577015149772370", + "578810062569416649564380746" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1039387089005944493834240", + "expectedQty": "1028269965861330156770720", + "swapFee": "623632253403566696300", "reserves": [ - "32603081108752719305860311", - "29380246311588066693555193", - "24199202594619093191703907" + "610693775491061231792587086", + "232360566465715684993001650", + "578810062569416649564380746" ], - "mAssetSupply": "86177124900436485332320866" + "mAssetSupply": "1420707754120305027201079734" }, { "type": "swap", "inputIndex": 0, - "inputQty": "50710386365447536640000", - "outputIndex": 1, - "expectedQty": "50637907743483675621715", - "swapFee": "30393645648604651905", + "inputQty": "3394505596721409153826816", + "outputIndex": 2, + "expectedQty": "3390755743626462068116211", + "swapFee": "2030156493720499233730", "reserves": [ - "32653791495118166842500311", - "29329608403844583017933478", - "24199202594619093191703907" + "614088281087782640946413902", + "232360566465715684993001650", + "575419306825790187496264535" ], - "mAssetSupply": "86177155294082133936972771", + "mAssetSupply": "1420709784276798747700313464", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "56023912059114545060249", - "expectedQtys": [ - "21221915703010161249214", - "19061507060879691247549", - "15727222292696051743358" - ], - "redemptionFee": "16807173617734363518", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8292576909961835", + "expectedQty": "8314576442741112", + "swapFee": "4975546145977", "reserves": [ - "32632569579415156681251097", - "29310546896783703326685929", - "24183475372326397139960549" + "614088281079468064503672790", + "232360566465715684993001650", + "575419306825790187496264535" ], - "mAssetSupply": "86121148189196637126276040" + "mAssetSupply": "1420709784268511146336497606" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "13547574677333388296192", - "expectedQty": "13532939568710074487190", + "type": "swap", + "inputIndex": 1, + "inputQty": "5811082873516408832", + "outputIndex": 2, + "expectedQty": "5882994213877610210", + "swapFee": "3522407465005808", "reserves": [ - "32646117154092490069547289", - "29310546896783703326685929", - "24183475372326397139960549" - ] + "614088281079468064503672790", + "232360572276798558509410482", + "575419300942795973618654325" + ], + "mAssetSupply": "1420709784272033553801503414", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "273759182385684351549440", - "expectedQty": "273885168972197426390600", - "swapFee": "164255509431410610929", + "type": "redeemBassets", + "inputQtys": [ + "14085573203189766815744", + "44299805340371032997888", + "56848273743009244250112" + ], + "expectedQty": "115489287156741201565186", + "swapFee": "69335173398083571081", "reserves": [ - "32372231985120292643156689", - "29310546896783703326685929", - "24183475372326397139960549" + "614074195506264874736857046", + "232316272471458187476412594", + "575362452669052964374404213" ], - "mAssetSupply": "85861086201889094259824719" + "mAssetSupply": "1420594294984876812599938228" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "5271291469544510455808", - "expectedQty": "5279136777058501002972", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3739070932521105380868096", + "expectedQty": "3698236070411030214794890", + "swapFee": "2243442559512663228520", "reserves": [ - "32372231985120292643156689", - "29310546896783703326685929", - "24188746663795941650416357" - ] + "614074195506264874736857046", + "228618036401047157261617704", + "575362452669052964374404213" + ], + "mAssetSupply": "1416857467494915219882298652" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "306620043179051072", - "expectedQty": "306540982141273011", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3372559390946628823154688", + "expectedQty": "3381687865998164377030994", + "swapFee": "2023535634567977293892", "reserves": [ - "32372231985120292643156689", - "29310547203403746505737001", - "24188746663795941650416357" - ] + "610692507640266710359826052", + "228618036401047157261617704", + "575362452669052964374404213" + ], + "mAssetSupply": "1413486931639603159036437856" }, { "type": "redeemBassets", "inputQtys": [ - "4875813822316559728640", - "9363502099812796334080", - "3925926350549896658944" + "326761953132473921568768", + "921531309681010590875648", + "235914026955889665114112" ], - "expectedQty": "18163611674225002727317", - "swapFee": "10904709830433261593", + "expectedQty": "1492235545188345389835628", + "swapFee": "895878854425662631480", "reserves": [ - "32367356171297976083428049", - "29301183701303933709402921", - "24184820737445391753757413" + "610365745687134236438257284", + "227696505091366146670742056", + "575126538642097074709290101" ], - "mAssetSupply": "85848202033532909899373385" + "mAssetSupply": "1411994696094414813646602228" }, { "type": "redeemBassets", "inputQtys": [ - "399783917911627859492864", - "401849331446426955153408", - "665001917048673924022272" - ], - "expectedQty": "1467124112894925150215067", - "swapFee": "880802949506659085580", - "reserves": [ - "31967572253386348223935185", - "28899334369857506754249513", - "23519818820396717829735141" + "461070460111901746528256", + "252605370866195251593216", + "65410354120081836867584" ], - "mAssetSupply": "84381077920637984749158318" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1099043540928654606336", - "expectedQty": "1096639068544342013076", - "swapFee": "659426124557192763", + "expectedQty": "780071232232738516209242", + "swapFee": "468323733579790984316", "reserves": [ - "31967572253386348223935185", - "28899334369857506754249513", - "23518722181328173487722065" + "609904675227022334691729028", + "227443899720499951419148840", + "575061128287976992872422517" ], - "mAssetSupply": "84379979536523180651744745" + "mAssetSupply": "1411214624862182075130392986" }, { "type": "redeemBassets", "inputQtys": [ - "256997170615659331059712", - "44576151631781005623296", - "299457734352464620027904" + "306880412957608215838720", + "5516069107643531653021696", + "8675459938918365350854656" ], - "expectedQty": "601223964634746605077941", - "swapFee": "360950949350458237989", + "expectedQty": "14532897575506934112065813", + "swapFee": "8724973529421813555372", "reserves": [ - "31710575082770688892875473", - "28854758218225725748626217", - "23219264446975708867694161" + "609597794814064726475890308", + "221927830612856419766127144", + "566385668349058627521567861" ], - "mAssetSupply": "83778755571888434046666804" + "mAssetSupply": "1396681727286675141018327173" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "55016635507650863104", - "expectedQty": "55002418340178030947", - "swapFee": "33009981304590517", + "inputQty": "6057318877690305366196224", + "expectedQty": "5985691694980172348559878", + "swapFee": "3634391326614183219717", "reserves": [ - "31710575082770688892875473", - "28854703215807385570595270", - "23219264446975708867694161" + "609597794814064726475890308", + "215942138917876247417567266", + "566385668349058627521567861" ], - "mAssetSupply": "83778700588262907700394217" + "mAssetSupply": "1390628042800311449835350666" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "35141133785695084609536", - "expectedQty": "35131935336505243993104", - "swapFee": "21084680271417050765", + "type": "redeemMasset", + "inputQty": "704150195380815501721", + "expectedQtys": [ + "308579734186880038570", + "109310382015652191297", + "286705661459486744964" + ], + "redemptionFee": "211245058614244650", "reserves": [ - "31710575082770688892875473", - "28819571280470880326602166", - "23219264446975708867694161" + "609597486234330539595851738", + "215942029607494231765375969", + "566385381643397168034822897" ], - "mAssetSupply": "83743580539157484032835446" + "mAssetSupply": "1390627338861361127634093595" }, { "type": "redeemBassets", "inputQtys": [ - "488747188065093659131904", - "293597427104530202361856", - "236071326489325305069568" + "341017880383513482493952", + "1263605084201908831256576", + "690455722821067726651392" ], - "expectedQty": "1018178604743185122526993", - "swapFee": "611273927202232412963", + "expectedQty": "2306688848159254894625712", + "swapFee": "1384844215424807821468", "reserves": [ - "31221827894705595233743569", - "28525973853366350124240310", - "22983193120486383562624593" + "609256468353947026113357786", + "214678424523292322934119393", + "565694925920576100308171505" ], - "mAssetSupply": "82725401934414298910308453" + "mAssetSupply": "1388320650013201872739467883" }, { - "type": "redeemBassets", - "inputQtys": [ - "181253768156206720", - "145143940523048320", - "149762547805906176" - ], - "expectedQty": "476161460356986399", - "swapFee": "285868397252543", + "type": "mint", + "inputIndex": 2, + "inputQty": "53086244032406693626249216", + "expectedQty": "52914215500483502733077520", + "reserves": [ + "609256468353947026113357786", + "214678424523292322934119393", + "618781169952982793934420721" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "12280306345926448906240", + "outputIndex": 2, + "expectedQty": "12475893364649606508649", + "swapFee": "7463543062178551053", "reserves": [ - "31221827713451827077536849", - "28525973708222409601191990", - "22983192970723835756718417" + "609256468353947026113357786", + "214690704829638249383025633", + "618768694059618144327912072" ], - "mAssetSupply": "82725401458252838553322054" + "mAssetSupply": "1441234872977228437651096456", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "647723062367261032448", - "674121161498455441408", - "565348113973303246848" + "3653146734236931178102784", + "4043950824896730838859776", + "3153629959397827839787008" ], - "expectedQty": "1887191348558428548447", + "expectedQty": "10878986903796810161486560", "reserves": [ - "31222475436514194338569297", - "28526647829383908056633398", - "22983758318837809059965265" + "612909615088183957291460570", + "218734655654534980221885409", + "621922324019015972167699080" ], - "mAssetSupply": "82727288649601396981870501" + "mAssetSupply": "1452113859881025247812583016" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "13242531597125833556230144", - "outputIndex": 0, - "expectedQty": "13191526565618599260629700", - "swapFee": "7934235403606123753705", + "inputIndex": 2, + "inputQty": "57991737961932905108209664", + "outputIndex": 1, + "expectedQty": "56669663993460594694557752", + "swapFee": "34663554850771927492052", "reserves": [ - "18030948870895595077939597", - "41769179426509741612863542", - "22983758318837809059965265" + "612909615088183957291460570", + "162064991661074385527327657", + "679914061980948877275908744" ], - "mAssetSupply": "82735222885005003105624206", + "mAssetSupply": "1452148523435876019740075068", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7585454837507059351552", - "543100678319326232576", - "29821023217758567923712" + "166306085624629187051520", + "593005042616141074137088", + "513617462486358726541312" ], - "expectedQty": "38025199962699429550404", + "expectedQty": "1284314886427551198821860", + "swapFee": "771051562794207243639", "reserves": [ - "18038534325733102137291149", - "41769722527188060939096118", - "23013579342055567627888977" + "612743309002559328104409050", + "161471986618458244453190569", + "679400444518462518549367432" ], - "mAssetSupply": "82773248084967702535174610" + "mAssetSupply": "1450864208549448468541253208" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "508310493598404524900352", - "2303084073934431694356480", - "834141528534270431199232" + "78147109002596057088", + "89699305333121777664", + "38448947637620285440" + ], + "expectedQty": "208000174084753102153", + "swapFee": "124875029468532981", + "reserves": [ + "612743230855450325508351962", + "161471896919152911331412905", + "679400406069514880929081992" + ], + "mAssetSupply": "1450864000549274383788151055" + }, + { + "type": "redeemMasset", + "inputQty": "3567400394642886537039052", + "expectedQtys": [ + "1506167823178548004389213", + "396909771076042471427314", + "1670016051010024259459047" ], - "expectedQty": "3639877804712039482233836", + "redemptionFee": "1070220118392865961111", "reserves": [ - "18546844819331506662191501", - "44072806601122492633452598", - "23847720870589838059088209" + "611237063032271777503962749", + "161074987148076868859985591", + "677730390018504856669622945" ], - "mAssetSupply": "86413125889679742017408446" + "mAssetSupply": "1447297670374749890117073114" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "10393861401429876736", - "expectedQty": "10409240948077800909", + "inputIndex": 1, + "inputQty": "1270429801341291331584", + "expectedQty": "1303043265692269129689", "reserves": [ - "18546844819331506662191501", - "44072806601122492633452598", - "23847731264451239488964945" + "611237063032271777503962749", + "161076257577878210151317175", + "677730390018504856669622945" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "4544547823666319132196864", - "expectedQty": "4510174433188553037202600", - "swapFee": "2726728694199791479318", + "inputQty": "50232368915279003648", + "expectedQty": "49992489550636827098", "reserves": [ - "14036670386142953624988901", - "44072806601122492633452598", - "23847731264451239488964945" - ], - "mAssetSupply": "81871315203948570754491809" + "611237113264640692782966397", + "161076257577878210151317175", + "677730390018504856669622945" + ] }, { - "type": "redeemMasset", - "inputQty": "656549946878574762498457", - "expectedQtys": [ - "112530383087958177273524", - "353326656119379273969008", - "191184537439635844133949" - ], - "redemptionFee": "196964984063572428749", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4172511549298882650308608", + "expectedQty": "4189897775698561012102916", + "swapFee": "2503506929579329590185", "reserves": [ - "13924140003054995447715377", - "43719479945003113359483590", - "23656546727011603644830996" + "607047215488942131770863481", + "161076257577878210151317175", + "677730390018504856669622945" ], - "mAssetSupply": "81214962222054059564422101" + "mAssetSupply": "1443129015368135829702311478" }, { "type": "redeemMasset", - "inputQty": "236139977930693515673", + "inputQty": "1039397276869951120998", "expectedQtys": [ - "40473572963120571272", - "127080276489286978082", - "68762951952587720162" + "437087694188569839463", + "115978540411444176598", + "487981174934002225903" ], - "redemptionFee": "70841993379208054", + "redemptionFee": "311819183060985336", "reserves": [ - "13924099529482032327144105", - "43719352864726624072505508", - "23656477964059651057110834" + "607046778401247943201024018", + "161076141599337798707140577", + "677729902037329922667397042" ], - "mAssetSupply": "81214726152918122250114482" + "mAssetSupply": "1443127976282678142812175816" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "22838369939793639374848", - "expectedQty": "22605673503839788997998", - "swapFee": "13703021963876183624", + "type": "redeemBassets", + "inputQtys": [ + "28280958822723673391104", + "6484207028640533184512", + "37009850998383204892672" + ], + "expectedQty": "71590210464856713836771", + "swapFee": "42979914227450498601", "reserves": [ - "13901493855978192538146107", - "43719352864726624072505508", - "23656477964059651057110834" + "607018497442425219527632914", + "161069657392309158173956065", + "677692892186331539462504370" ], - "mAssetSupply": "81191901486000292486923258" + "mAssetSupply": "1443056386072213286098339045" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "553800283649772120702976", - "outputIndex": 1, - "expectedQty": "561483415280452871506908", - "swapFee": "335367508357470769242", + "type": "redeemMasset", + "inputQty": "1241441224302331147006771", + "expectedQtys": [ + "522052859870296817609512", + "138524403513682716070680", + "582834813058071092303235" + ], + "redemptionFee": "372432367290699344102", "reserves": [ - "14455294139627964658849083", - "43157869449446171200998600", - "23656477964059651057110834" + "606496444582554922710023402", + "160931132988795475457885385", + "677110057373273468370201135" ], - "mAssetSupply": "81192236853508649957692500", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1441815317280278245650676376" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "814184604998159577382912", - "expectedQty": "817778443956955659991136", - "swapFee": "488510762998895746429", + "inputQty": "4300348424358522995605504", + "expectedQty": "4188066994157096180425162", + "swapFee": "2580209054615113797363", "reserves": [ - "14455294139627964658849083", - "42340091005489215541007464", - "23656477964059651057110834" + "606496444582554922710023402", + "156743065994638379277460223", + "677110057373273468370201135" ], - "mAssetSupply": "80378540759273489276056017" + "mAssetSupply": "1437517549064974337768868235" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1547796019579044159815680", - "expectedQty": "1548234404596044159884429", + "type": "redeemMasset", + "inputQty": "673436345433785788006", + "expectedQtys": [ + "284041205896302771801", + "73407667726138976507", + "317111763702417244501" + ], + "redemptionFee": "202030903630135736", "reserves": [ - "14455294139627964658849083", - "42340091005489215541007464", - "25204273983638695216926514" - ] + "606496160541349026407251601", + "156742992586970653138483716", + "677109740261509765952956634" + ], + "mAssetSupply": "1437516875830659807613215965" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "291272448247910889422848", - "168643636763034992508928", - "168999816501527475912704" + "19877914894175485952", + "4789136241734326272", + "22145285720706428928" ], - "expectedQty": "630648060801587822991835", + "expectedQty": "46710438962958003476", + "swapFee": "28043089231313590", "reserves": [ - "14746566587875875548271931", - "42508734642252250533516392", - "25373273800140222692839218" + "606496140663434132231765649", + "156742987797834411404157444", + "677109718116224045246527706" ], - "mAssetSupply": "82557423224671121258932281" + "mAssetSupply": "1437516829120220844655212489" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "458129047260786856034304", - "expectedQty": "457793296618035747081388", - "swapFee": "274877428356472113620", - "reserves": [ - "14746566587875875548271931", - "42508734642252250533516392", - "24915480503522186945757830" + "type": "mintMulti", + "inputQtys": [ + "146886579798580914028544", + "38915026170079348785152", + "173303254945361318379520" ], - "mAssetSupply": "82099569054838690875011597" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "49610932098788024", - "expectedQty": "49815658816702115", - "swapFee": "29766559259272", + "expectedQty": "358388399866307925705890", "reserves": [ - "14746566587875875548271931", - "42508734592436591716814277", - "24915480503522186945757830" + "606643027243232713145794193", + "156781902824004490752942596", + "677283021371169406564907226" ], - "mAssetSupply": "82099569005257525335482845" + "mAssetSupply": "1437875217520087152580918379" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1376350200915928547328", - "expectedQty": "1387899389666014797651", + "inputQty": "28117635942379304255488", + "expectedQty": "27980386375085788373950", "reserves": [ - "14747942938076791476819259", - "42508734592436591716814277", - "24915480503522186945757830" + "606671144879175092450049681", + "156781902824004490752942596", + "677283021371169406564907226" ] }, { - "type": "redeemMasset", - "inputQty": "38251641634467698284953", - "expectedQtys": [ - "6869150001009743971370", - "19799295094549431824400", - "11604884399440611022476" - ], - "redemptionFee": "11475492490340309485", - "reserves": [ - "14741073788075781732847889", - "42488935297342042284989877", - "24903875619122746334735354" + "type": "mintMulti", + "inputQtys": [ + "69532289899994458229833728", + "24494835414906044206284800", + "27511605738336343319117824" ], - "mAssetSupply": "82062716738505213992305028" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "169113604686055768064", - "outputIndex": 2, - "expectedQty": "168181933209237586776", - "swapFee": "100990572193723979", + "expectedQty": "121659019212973589762145530", "reserves": [ - "14741073788075781732847889", - "42489104410946728340757941", - "24903707437189537097148578" + "676203434779169550679883409", + "181276738238910534959227396", + "704794627109505749884025050" ], - "mAssetSupply": "82062716839495786186029007", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1559562217119435828131437859" }, { - "type": "redeemMasset", - "inputQty": "1995357638520111680716", - "expectedQtys": [ - "358322161405927105639", - "1032814023429422270069", - "605352798866862431774" + "type": "mintMulti", + "inputQtys": [ + "2986426130302847488", + "5789310083580236800", + "2940922989418654208" ], - "redemptionFee": "598607291556033504", + "expectedQty": "11821392755640544662", "reserves": [ - "14740715465914375805742250", - "42488071596923298918487872", - "24903102084390670234716804" + "676203437765595680982730897", + "181276744028220618539464196", + "704794630050428739302679258" ], - "mAssetSupply": "82060722080464557630381795" + "mAssetSupply": "1559562228940828583771982521" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "6627083979716038754304", - "expectedQty": "6595887554925933691808", + "type": "redeemMasset", + "inputQty": "11271374682051716317184", + "expectedQtys": [ + "4885637548961218406838", + "1309742627609526139924", + "5092211776175917324110" + ], + "redemptionFee": "3381412404615514895", "reserves": [ - "14740715465914375805742250", - "42494698680903014957242176", - "24903102084390670234716804" - ] + "676198552128046719764324059", + "181275434285593009013324272", + "704789537838652563385355148" + ], + "mAssetSupply": "1559550960947558936671180232" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "35075684350593897332736", - "expectedQty": "35047183254928986936340", - "swapFee": "21045410610356338399", + "inputIndex": 0, + "inputQty": "775731453173226536960", + "expectedQty": "779004628736488108269", + "swapFee": "465438871903935922", "reserves": [ - "14740715465914375805742250", - "42494698680903014957242176", - "24868054901135741247780464" + "676197773123417983276215790", + "181275434285593009013324272", + "704789537838652563385355148" ], - "mAssetSupply": "82032263329079500023079266" + "mAssetSupply": "1559550185681544635348579194" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "724902847102464688128", - "outputIndex": 0, - "expectedQty": "718600480761786444193", - "swapFee": "435036649519600774", + "type": "redeemBassets", + "inputQtys": [ + "814967616589173620736", + "15371548871206316802048", + "25553988557834912006144" + ], + "expectedQty": "41960202502551027260180", + "swapFee": "25191236243276582305", "reserves": [ - "14739996865433614019298057", - "42494698680903014957242176", - "24868779803982843712468592" + "676196958155801394102595054", + "181260062736721802696522224", + "704763983850094728473349004" ], - "mAssetSupply": "82032263764116149542680040", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1559508225479042084321319014" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "9136889535759008447594496", - "expectedQty": "9167267320555529013536632", - "swapFee": "5482133721455405068556", + "inputQty": "13461835312010811670528", + "expectedQty": "13148442438365697852062", + "swapFee": "8077101187206487002", "reserves": [ - "14739996865433614019298057", - "33327431360347485943705544", - "24868779803982843712468592" + "676196958155801394102595054", + "181246914294283436998670162", + "704763983850094728473349004" ], - "mAssetSupply": "72900856362078596500154100" + "mAssetSupply": "1559494771720831260716135488" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "94935704649583623667712", - "expectedQty": "95482488423921091775848", + "type": "mintMulti", + "inputQtys": [ + "2656615283740842655744", + "2605752552554811621376", + "1256678266063243968512" + ], + "expectedQty": "6560249882770737268218", "reserves": [ - "14834932570083197642965769", - "33327431360347485943705544", - "24868779803982843712468592" - ] + "676199614771085134945250798", + "181249520046835991810291538", + "704765240528360791717317516" + ], + "mAssetSupply": "1559501331970714031453403706" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "291043977428225734213632", + "274416245811599204417536", + "230899028716496147709952" + ], + "expectedQty": "800135741100324422807173", + "swapFee": "480369666460070696101", + "reserves": [ + "675908570793656909211037166", + "180975103801024392605874002", + "704534341499644295569607564" + ], + "mAssetSupply": "1558701196229613707030596533" }, { "type": "mint", "inputIndex": 0, - "inputQty": "574619321372056467013632", - "expectedQty": "577755870866164421447960", + "inputQty": "901299850018947147497472", + "expectedQty": "896962939894688369016371", "reserves": [ - "15409551891455254109979401", - "33327431360347485943705544", - "24868779803982843712468592" + "676809870643675856358534638", + "180975103801024392605874002", + "704534341499644295569607564" ] }, { "type": "mintMulti", "inputQtys": [ - "17836274279491655696384", - "36862055760445839507456", - "23034721801624491130880" + "251538226249368111939584", + "328751062137059999219712", + "212332196016761375555584" ], - "expectedQty": "77704645228604402741824", + "expectedQty": "797953413085889837253178", "reserves": [ - "15427388165734745765675785", - "33364293416107931783213000", - "24891814525784468203599472" + "677061408869925224470474222", + "181303854863161452605093714", + "704746673695661056945163148" ], - "mAssetSupply": "73651799366597286416119732" + "mAssetSupply": "1560396112582594285236866082" }, { - "type": "redeemBassets", - "inputQtys": [ - "767525689554529408", - "2154391063373534976", - "1335506196826501120" + "type": "redeem", + "inputIndex": 1, + "inputQty": "10928751500482545211932672", + "expectedQty": "10659008752416590327147611", + "swapFee": "6557250900289527127159", + "reserves": [ + "677061408869925224470474222", + "170644846110744862277946103", + "704746673695661056945163148" ], - "expectedQty": "4254336563714996832", - "swapFee": "2554134418880326", + "mAssetSupply": "1549473918333012029552060569" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "6091587884546449", + "expectedQty": "5932294494920603", + "swapFee": "3654952730727", "reserves": [ - "15427387398209056211146377", - "33364291261716868409678024", - "24891813190278271377098352" + "677061408869925224470474222", + "170644846104812567783025500", + "704746673695661056945163148" ], - "mAssetSupply": "73651795112260722701122900" + "mAssetSupply": "1549473918326924096620244847" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "361617846466486202269696", - "726329008597757316825088", - "83424153865103366684672" + "1243033154706952", + "1296762241485804", + "347968468232028" ], - "expectedQty": "1171041621409549669869229", + "expectedQty": "2913393422387668", + "swapFee": "1749085504735", "reserves": [ - "15789005244675542413416073", - "34090620270314625726503112", - "24975237344143374743783024" + "677061408868682191315767270", + "170644846103515805541539696", + "704746673695313088476931120" ], - "mAssetSupply": "74822836733670272370992129" + "mAssetSupply": "1549473918324010703197857179" }, { "type": "redeemMasset", - "inputQty": "13405462982118045699276", + "inputQty": "2045461975420875571", "expectedQtys": [ - "2827952492733386840544", - "6105935939490194841489", - "4473289077397454572686" + "893521265174471694", + "225200841147762624", + "930057645081156669" ], - "redemptionFee": "4021638894635413709", + "redemptionFee": "613638592626262", "reserves": [ - "15786177292182809026575529", - "34084514334375135531661623", - "24970764055065977289210338" + "677061407975160926141295576", + "170644845878314964393777072", + "704746672765255443395774451" ], - "mAssetSupply": "74809435292327048960706562" + "mAssetSupply": "1549473916279162366369607870" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "6591649539930072956272640", - "expectedQty": "6583959517414844844472328", - "swapFee": "3954989723958043773763", + "inputIndex": 1, + "inputQty": "1837477426238556546793472", + "expectedQty": "1788943460403809273845492", + "swapFee": "1102486455743133928076", "reserves": [ - "15786177292182809026575529", - "34084514334375135531661623", - "18386804537651132444738010" + "677061407975160926141295576", + "168855902417911155119931580", + "704746672765255443395774451" ], - "mAssetSupply": "68221740742120934048207685" + "mAssetSupply": "1547637541339379552956742474" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "385450639209466563657728", - "expectedQty": "386111008633660126780805", + "inputIndex": 1, + "inputQty": "3514234797768376097701888", + "expectedQty": "3606477500509221840640594", "reserves": [ - "15786177292182809026575529", - "34084514334375135531661623", - "18772255176860599008395738" + "677061407975160926141295576", + "172370137215679531217633468", + "704746672765255443395774451" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "220891872215647", - "7573913557130", - "32491230002552" - ], - "expectedQty": "261837799785785", - "reserves": [ - "15786177292403700898791176", - "34084514334382709445218753", - "18772255176893090238398290" - ], - "mAssetSupply": "68607851751016431974774275" - }, { "type": "mint", "inputIndex": 1, - "inputQty": "318727036418148895031296", - "expectedQty": "317531839831867872787127", + "inputQty": "81773324014065206066937856", + "expectedQty": "83193287312758011720504548", "reserves": [ - "15786177292403700898791176", - "34403241370800858340250049", - "18772255176893090238398290" + "677061407975160926141295576", + "254143461229744737284571324", + "704746672765255443395774451" ] }, { - "type": "redeemMasset", - "inputQty": "3303228167549139655065", - "expectedQtys": [ - "756320809123027926193", - "1648270310668542147785", - "899384756769691631392" + "type": "mintMulti", + "inputQtys": [ + "151346131578992040345600", + "304061823821618738102272", + "44140288817438560092160" ], - "redemptionFee": "990968450264741896", + "expectedQty": "502471439429615871700729", "reserves": [ - "15785420971594577870864983", - "34401593100490189798102264", - "18771355792136320546766898" + "677212754106739918181641176", + "254447523053566356022673596", + "704790813054072881955866611" ], - "mAssetSupply": "68922081353649200972648233" + "mAssetSupply": "1634939777592076402389588345" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "779430587583803424768", - "840360149367710416896", - "723284701785754566656" + "420517587794286780350464", + "27963876072914019155968", + "800161538465138867175424" ], - "expectedQty": "2344186826921050912734", - "swapFee": "1407356510058665747", + "expectedQty": "1244958358873696263936807", "reserves": [ - "15784641541006994067440215", - "34400752740340822087685368", - "18770632507434534792200242" + "677633271694534204961991640", + "254475486929639270041829564", + "705590974592538020823042035" ], - "mAssetSupply": "68919737166822279921735499" + "mAssetSupply": "1636184735950950098653525152" }, { "type": "redeemBassets", "inputQtys": [ - "259327178472896512", - "9200874159965591552", - "3894115282121072640" + "11161339280120936344322048", + "4510672803088016632446976", + "12270691758520128870809600" ], - "expectedQty": "13327084535357570132", - "swapFee": "8001051352025757", + "expectedQty": "27919256637614113102678889", + "swapFee": "16761610949137950631986", "reserves": [ - "15784641281679815594543703", - "34400743539466662122093816", - "18770628613319252671127602" + "666471932414413268617669592", + "249964814126551253409382588", + "693320282834017891952232435" ], - "mAssetSupply": "68919723839737744564165367" + "mAssetSupply": "1608265479313335985550846263" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5048956686591450", - "1224273722612933", - "8811185209476109" + "913659978255865338658816", + "739127624813399993483264", + "655900534343512205819904" ], - "expectedQty": "15114477303574025", - "swapFee": "9074130860660", + "expectedQty": "2312257786484084301740265", "reserves": [ - "15784641276630858907952253", - "34400743538242388399480883", - "18770628604508067461651493" + "667385592392669133956328408", + "250703941751364653402865852", + "693976183368361404158052339" ], - "mAssetSupply": "68919723824623267260591342" + "mAssetSupply": "1610577737099820069852586528" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5673161341450731520", - "30640481007867187200", - "39658382722825297920" + "190100953947836958900224", + "241210818759745238728704", + "179367600129949378281472" ], - "expectedQty": "75945036895975703168", + "expectedQty": "612290850851442254154009", + "swapFee": "367595067551396190206", "reserves": [ - "15784646949792200358683773", - "34400774178723396266668083", - "18770668262890790286949413" + "667195491438721296997428184", + "250462730932604908164137148", + "693796815768231454779770867" ], - "mAssetSupply": "68919799769660163236294510" + "mAssetSupply": "1609965446248968627598432519" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "23419494678701677740032", - "expectedQty": "23366171191149380319333", - "swapFee": "14051696807221006644", + "inputQty": "50322168836735129134039040", + "outputIndex": 0, + "expectedQty": "50242223715547084063978355", + "swapFee": "30083490759029041917671", "reserves": [ - "15784646949792200358683773", - "34400774178723396266668083", - "18747302091699640906630080" + "616953267723174212933449829", + "250462730932604908164137148", + "744118984604966583913809907" ], - "mAssetSupply": "68896394326678268779561122" + "mAssetSupply": "1609995529739727656640350190", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "9267579410732212551680", - "expectedQtys": [ - "2122630434670219596998", - "4626022392533587517704", - "2521031614731313030304" - ], - "redemptionFee": "2780273823219663765", + "type": "redeem", + "inputIndex": 1, + "inputQty": "743941916034059075584", + "expectedQty": "734895860085191553426", + "swapFee": "446365149620435445", "reserves": [ - "15782524319357530139086775", - "34396148156330862679150379", - "18744781060084909593599776" + "616953267723174212933449829", + "250461996036744822972583722", + "744118984604966583913809907" ], - "mAssetSupply": "68887129527541359786673207" + "mAssetSupply": "1609994786244176772201710051" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "370972888186271465209856", - "expectedQty": "371567455948913023057841", + "inputIndex": 1, + "inputQty": "22783549155152464913104896", + "expectedQty": "23026697682604162820922961", "reserves": [ - "15782524319357530139086775", - "34396148156330862679150379", - "19115753948271181058809632" + "616953267723174212933449829", + "273245545191897287885688618", + "744118984604966583913809907" ] }, - { - "type": "redeemMasset", - "inputQty": "227668689065390060339", - "expectedQtys": [ - "51865091640411105485", - "113033843009334169784", - "62818869164460406587" - ], - "redemptionFee": "68300606719617018", - "reserves": [ - "15782472454265889727981290", - "34396035122487853344980595", - "19115691129402016598403045" - ], - "mAssetSupply": "69258469383101814139287727" - }, { "type": "swap", "inputIndex": 0, - "inputQty": "1244626482514880112885760", - "outputIndex": 1, - "expectedQty": "1252553316580059204643106", - "swapFee": "749459661966579637287", + "inputQty": "7310408660477429153792", + "outputIndex": 2, + "expectedQty": "7317733397783954789144", + "swapFee": "4377334300907076904", "reserves": [ - "17027098936780769840867050", - "33143481805907794140337489", - "19115691129402016598403045" + "616960578131834690362603621", + "273245545191897287885688618", + "744111666871568799959020763" ], - "mAssetSupply": "69259218842763780718925014", + "mAssetSupply": "1633021488304115235929709916", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "57296527632796961734656", - "expectedQty": "57110431703707872944063", + "type": "redeemBassets", + "inputQtys": [ + "5546934351386226657853440", + "336643285962740153188352", + "4965807235308898819768320" + ], + "expectedQty": "10823496321785879046542479", + "swapFee": "6497996591026143113793", "reserves": [ - "17027098936780769840867050", - "33200778333540591102072145", - "19115691129402016598403045" - ] + "611413643780448463704750181", + "272908901905934547732500266", + "739145859636259901139252443" + ], + "mAssetSupply": "1622197991982329356883167437" }, { - "type": "redeemMasset", - "inputQty": "1996101826165599738265", - "expectedQtys": [ - "490182144534612776080", - "955795745603987241564", - "550309275048067985832" - ], - "redemptionFee": "598830547849679921", + "type": "mint", + "inputIndex": 2, + "inputQty": "139515353567355654373376", + "expectedQty": "139011702083962752675927", "reserves": [ - "17026608754636235228090970", - "33199822537794987114830581", - "19115140820126968530417213" - ], - "mAssetSupply": "69314333771471870841810733" + "611413643780448463704750181", + "272908901905934547732500266", + "739285374989827256793625819" + ] }, { "type": "mintMulti", "inputQtys": [ - "355843738167611393835008", - "121920899981791253757952", - "154821167507701785165824" + "55338873427416367104", + "172921694724027482112", + "276405881615586951168" ], - "expectedQty": "633470291214938310604615", + "expectedQty": "505216878046505461733", "reserves": [ - "17382452492803846621925978", - "33321743437776778368588533", - "19269961987634670315583037" + "611413699119321891121117285", + "272909074827629271759982378", + "739285651395708872380576987" ], - "mAssetSupply": "69947804062686809152415348" + "mAssetSupply": "1622337508901291366141305097" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "14491562131349831680000", - "13473930750457391611904", - "11512634181493349941248" + "153036810046402068480", + "34256069961502109696", + "82927631570329714688" ], - "expectedQty": "39494479074442330684456", + "expectedQty": "269944436003690563898", + "swapFee": "162063899942179646", "reserves": [ - "17396944054935196453605978", - "33335217368527235760200437", - "19281474621816163665524285" + "611413546082511844719048805", + "272909040571559310257872682", + "739285568468077302050862299" ], - "mAssetSupply": "69987298541761251483099804" + "mAssetSupply": "1622337238956855362450741199" }, { - "type": "redeemMasset", - "inputQty": "2513207943896399872", - "expectedQtys": [ - "624527911030939420", - "1196691418974972031", - "692180134001343554" - ], - "redemptionFee": "753962383168919", + "type": "swap", + "inputIndex": 2, + "inputQty": "4316395797886669309345792", + "outputIndex": 1, + "expectedQty": "4256320252788547749378455", + "swapFee": "2580437432812812593243", "reserves": [ - "17396943430407285422666558", - "33335216171835816785228406", - "19281473929636029664180731" + "611413546082511844719048805", + "268652720318770762508494227", + "743601964265963971360208091" ], - "mAssetSupply": "69987296029307269969868851" + "mAssetSupply": "1622339819394288175263334442", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "584482453788873326592", - "1261249428263844446208", - "1416964835782221627392" + "111500714343082804379648", + "87466165943632008314880", + "87277402252548417519616" ], - "expectedQty": "3262588026331773348021", + "expectedQty": "286566167904246709176492", "reserves": [ - "17397527912861074295993150", - "33336477421264080629674614", - "19282890894471811885808123" + "611525046796854927523428453", + "268740186484714394516809107", + "743689241668216519777727707" ], - "mAssetSupply": "69990558617333601743216872" + "mAssetSupply": "1622626385562192421972510934" }, { "type": "mintMulti", "inputQtys": [ - "148266539191830363242496", - "108077231190754686140416", - "151988222021214010343424" + "11641943641218886431408128", + "10453109125749113337413632", + "850421278284807363624960" ], - "expectedQty": "408646067274862979992211", + "expectedQty": "23019983010734359156649528", "reserves": [ - "17545794452052904659235646", - "33444554652454835315815030", - "19434879116493025896151547" + "623166990438073813954836581", + "279193295610463507854222739", + "744539662946501327141352667" ], - "mAssetSupply": "70399204684608464723209083" + "mAssetSupply": "1645646368572926781129160462" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "397606155221424340992", - "expectedQty": "398231792285430393092", + "inputIndex": 0, + "inputQty": "63992399209506603008", + "expectedQty": "63863751973100515771", "reserves": [ - "17545794452052904659235646", - "33444554652454835315815030", - "19435276722648247320492539" + "623167054430473023461439589", + "279193295610463507854222739", + "744539662946501327141352667" ] }, { "type": "mintMulti", "inputQtys": [ - "351907271034083135717376", - "236300100597868067291136", - "480312786456525842415616" + "6110143663279746559508480", + "7867308015155110951780352", + "749140987359514563969024" ], - "expectedQty": "1069488176421495626202670", + "expectedQty": "14783817598185014768243960", "reserves": [ - "17897701723086987794953022", - "33680854753052703383106166", - "19915589509104773162908155" + "629277198093752770020948069", + "287060603625618618806003091", + "745288803933860841705321691" ], - "mAssetSupply": "71469091092822245779804845" + "mAssetSupply": "1660430250034863768997920193" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3482842205743152627712", - "expectedQty": "3475618719130429266930", - "swapFee": "2089705323445891576", + "type": "mintMulti", + "inputQtys": [ + "22646563176022327296", + "33327464072224235520", + "18674049940903718912" + ], + "expectedQty": "74837710555129361028", "reserves": [ - "17897701723086987794953022", - "33680854753052703383106166", - "19912113890385642733641225" + "629277220740315946043275365", + "287060636953082691030238611", + "745288822607910782609040603" ], - "mAssetSupply": "71465610340321826073068709" + "mAssetSupply": "1660430324872574324127281221" }, { - "type": "redeemMasset", - "inputQty": "245562612593474", - "expectedQtys": [ - "61479750493959", - "115695890940562", - "68399385168492" + "type": "redeemBassets", + "inputQtys": [ + "706910717458143379456", + "1295285252164292706304", + "2345972350024371666944" ], - "redemptionFee": "73668783778", + "expectedQty": "4350396489184411730407", + "swapFee": "2611804976496544965", "reserves": [ - "17897701723025508044459063", - "33680854752937007492165604", - "19912113890317243348472733" + "629276513829598487899895909", + "287059341667830526737532307", + "745286476635560758237373659" ], - "mAssetSupply": "71465610340076337129259013" + "mAssetSupply": "1660425974476085139715550814" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2432309909783549837312", - "expectedQty": "2424846983986802944539", + "type": "redeemBassets", + "inputQtys": [ + "692141296172719021228032", + "141000781204055780229120", + "48507080931160686067712" + ], + "expectedQty": "881385814335512845149466", + "swapFee": "529148977988100567430", "reserves": [ - "17897701723025508044459063", - "33683287062846791042002916", - "19912113890317243348472733" - ] + "628584372533425768878667877", + "286918340886626470957303187", + "745237969554629597551305947" + ], + "mAssetSupply": "1659544588661749626870401348" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "384116355605906931580928", - "expectedQty": "384655605155332615600748", + "type": "redeem", + "inputIndex": 1, + "inputQty": "91637289257317718556672", + "expectedQty": "90772411290376032264755", + "swapFee": "54982373554390631134", "reserves": [ - "17897701723025508044459063", - "33683287062846791042002916", - "20296230245923150280053661" - ] + "628584372533425768878667877", + "286827568475336094925038432", + "745237969554629597551305947" + ], + "mAssetSupply": "1659453006354865863542475810" }, { - "type": "redeemBassets", - "inputQtys": [ - "316579866349535821824", - "1118627967724566609920", - "1874938256158664425472" - ], - "expectedQty": "3310153038546633211908", - "swapFee": "1987284193644166427", + "type": "redeem", + "inputIndex": 1, + "inputQty": "681614900144900329701376", + "expectedQty": "675164398581907102167343", + "swapFee": "408968940086940197820", "reserves": [ - "17897385143159158508637239", - "33682168434879066475392996", - "20294355307666991615628189" + "628584372533425768878667877", + "286152404076754187822871089", + "745237969554629597551305947" ], - "mAssetSupply": "71849380639177109914592392" + "mAssetSupply": "1658771800423661050152972254" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "14517516318614954704896", - "expectedQty": "14489478182523476262497", - "swapFee": "8710509791168972822", + "inputQty": "2113527584343304699904", + "expectedQty": "2119463349412088568398", + "swapFee": "1268116550605982819", "reserves": [ - "17897385143159158508637239", - "33682168434879066475392996", - "20279865829484468139365692" + "628584372533425768878667877", + "286152404076754187822871089", + "745235850091280185462737549" ], - "mAssetSupply": "71834871833368286128860318" + "mAssetSupply": "1658769688164193257454255169" }, { "type": "mintMulti", "inputQtys": [ - "15822780542441610", - "19498674250618624", - "17880462869824168" + "1794547739232737427456", + "2653710775673262440448", + "2873495234435758424064" ], - "expectedQty": "53211172130994786", + "expectedQty": "7332262058240865105363", "reserves": [ - "17897385158981939051078849", - "33682168454377740726011620", - "20279865847364931009189860" + "628586167081165001616095333", + "286155057787529861085311537", + "745238723586514621221161613" ], - "mAssetSupply": "71834871886579458259855104" + "mAssetSupply": "1658777020426251498319360532" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "7904222648218214727680", - "expectedQty": "7888923804670868232935", - "swapFee": "4742533588930928836", + "type": "mintMulti", + "inputQtys": [ + "234169086141429482258432", + "304848881077062914277376", + "218874218884967597867008" + ], + "expectedQty": "759420701324579565220384", "reserves": [ - "17897385158981939051078849", - "33682168454377740726011620", - "20271976923560260140956925" + "628820336167306431098353765", + "286459906668606923999588913", + "745457597805399588819028621" ], - "mAssetSupply": "71826972406464828976056260" + "mAssetSupply": "1659536441127576077884580916" }, { "type": "mintMulti", "inputQtys": [ - "709258070593808760832", - "379691929418503290880", - "621089554720696696832" + "2061432811226188686032896", + "2623899448969597575757824", + "2975653735401593579241472" ], - "expectedQty": "1711705532659745943237", + "expectedQty": "7670248298601757230715410", "reserves": [ - "17898094417052532859839681", - "33682548146307159229302500", - "20272598013114980837653757" + "630881768978532619784386661", + "289083806117576521575346737", + "748433251540801182398270093" ], - "mAssetSupply": "71828684111997488721999497" + "mAssetSupply": "1667206689426177835115296326" }, { - "type": "swap", + "type": "mintMulti", + "inputQtys": [ + "956190894763900082847744", + "848791025228353086947328", + "800053343536395350704128" + ], + "expectedQty": "2607983362169179867681275", + "reserves": [ + "631837959873296519867234405", + "289932597142804874662294065", + "749233304884337577748974221" + ], + "mAssetSupply": "1669814672788347014982977601" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "25512205280015420", - "outputIndex": 2, - "expectedQty": "25533878571077056", - "swapFee": "15350059417129", + "inputQty": "7732968564181856700858368", + "expectedQty": "7743028107800876357732956", + "swapFee": "4639781138509114020515", "reserves": [ - "17898094442564738139855101", - "33682548146307159229302500", - "20272597987581102266576701" + "624094931765495643509501449", + "289932597142804874662294065", + "749233304884337577748974221" ], - "mAssetSupply": "71828684112012838781416626", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1662086344005303667396139748" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1819161201549286309888", - "2522560427718384025600", - "1522183770706628313088" + "121881444593192830763008", + "1760426608819058050596864", + "2554097484133903181545472" ], - "expectedQty": "5863408076794669757520", + "expectedQty": "4442922187800668424963422", + "swapFee": "2667353724915350265137", "reserves": [ - "17899913603766287426164989", - "33685070706734877613328100", - "20274120171351808894889789" + "623973050320902450678738441", + "288172170533985816611697201", + "746679207400203674567428749" ], - "mAssetSupply": "71834547520089633451174146" + "mAssetSupply": "1657643421817502998971176326" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "224026415363915532730368", - "expectedQty": "223255663954408198667389", - "swapFee": "134415849218349319638", + "inputQty": "10360586376726911647744", + "expectedQty": "10373975184108895856086", + "swapFee": "6216351826036146988", "reserves": [ - "17676657939811879227497600", - "33685070706734877613328100", - "20274120171351808894889789" + "623962676345718341782882355", + "288172170533985816611697201", + "746679207400203674567428749" ], - "mAssetSupply": "71610655520574936267763416" + "mAssetSupply": "1657633067447478098095675570" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "140885820981020", - "expectedQty": "140618367450532", - "swapFee": "84531492588", + "inputIndex": 1, + "inputQty": "625745133022362791313408", + "expectedQty": "619904737423788103578049", + "swapFee": "375447079813417674788", "reserves": [ - "17676657939811879227497600", - "33685070706734877613328100", - "20274120171211190527439257" + "623962676345718341782882355", + "287552265796562028508119152", + "746679207400203674567428749" ], - "mAssetSupply": "71610655520434134978274984" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "893310924353323409604608", - "expectedQty": "894327581323590496360713", - "reserves": [ - "17676657939811879227497600", - "33685070706734877613328100", - "21167431095564513937043865" - ] + "mAssetSupply": "1657007697761535548722036950" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "3591245026258224414720", - "expectedQty": "3594763337624123992238", + "inputIndex": 1, + "inputQty": "14742644236537502", + "expectedQty": "14872917655361522", "reserves": [ - "17676657939811879227497600", - "33685070706734877613328100", - "21171022340590772161458585" + "623962676345718341782882355", + "287552265811304672744656654", + "746679207400203674567428749" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "28188220276455136821248", - "141730521558347656724480", - "4967716881643855675392" - ], - "expectedQty": "174559705323425855767623", - "reserves": [ - "17704846160088334364318848", - "33826801228293225270052580", - "21175990057472416017133977" + "11534431772413814784", + "34194252908247498752", + "15488409413724680192" ], - "mAssetSupply": "72683137570418775454395558" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "15510853273138839420928", - "expectedQty": "15486020901592606725430", - "swapFee": "9306511963883303652", + "expectedQty": "61444607104014505718", + "swapFee": "36888897600969285", "reserves": [ - "17704846160088334364318848", - "33826801228293225270052580", - "21160504036570823410408547" + "623962664811286569369067571", + "287552231617051764497157902", + "746679191911794260842748557" ], - "mAssetSupply": "72667636023657600498278282" + "mAssetSupply": "1657007636331801362362892754" }, { - "type": "redeemMasset", - "inputQty": "60219433370362355017318", - "expectedQtys": [ - "14667546782199647939102", - "28023750391383459196190", - "17530380105250149615919" + "type": "redeemBassets", + "inputQtys": [ + "10306227993565153280", + "13561558140210663424", + "18075358657916702720" ], - "redemptionFee": "18065830011108706505", + "expectedQty": "41981856995426420367", + "swapFee": "25204236739299431", "reserves": [ - "17690178613306134716379746", - "33798777477901841810856390", - "21142973656465573260792628" + "623962654505058575803914291", + "287552218055493624286494478", + "746679173836435602926045837" ], - "mAssetSupply": "72607434656117249251967469" + "mAssetSupply": "1657007594349944366936472387" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1349565498024863381585920", - "1507141942050069179006976", - "832811106283504147628032" + "2374674091007083079008256", + "2731300317999888655712256", + "254910500642493554491392" ], - "expectedQty": "3689946874241008348344552", + "expectedQty": "5379827017171350551436851", + "swapFee": "3229834110769271893998", "reserves": [ - "19039744111330998097965666", - "35305919419951910989863366", - "21975784762749077408420660" + "621587980414051492724906035", + "284820917737493735630782222", + "746424263335793109371554445" ], - "mAssetSupply": "76297381530358257600312021" + "mAssetSupply": "1651627767332773016385035536" }, { - "type": "redeemMasset", - "inputQty": "479285640389468042035", - "expectedQtys": [ - "119568170276410127611", - "221718535726419393986", - "138006286172006474573" + "type": "mintMulti", + "inputQtys": [ + "2075992176741589712896", + "365916040507435909120", + "2074044180093453467648" ], - "redemptionFee": "143785692116840412", + "expectedQty": "4508112788685139097776", "reserves": [ - "19039624543160721687838055", - "35305697701416184570469380", - "21975646756462905401946087" + "621590056406228234314618931", + "284821283653534243066691342", + "746426337379973202825022093" ], - "mAssetSupply": "76296902388503560249110398" + "mAssetSupply": "1651632275445561701524133312" }, { "type": "swap", "inputIndex": 0, - "inputQty": "4621279881333969518592", + "inputQty": "297748420264199184187392", "outputIndex": 2, - "expectedQty": "4626062199339896831549", - "swapFee": "2780455520089320350", + "expectedQty": "298028897344940089888270", + "swapFee": "178307374086821548007", "reserves": [ - "19044245823042055657356647", - "35305697701416184570469380", - "21971020694263565505114538" + "621887804826492433498806323", + "284821283653534243066691342", + "746128308482628262735133823" ], - "mAssetSupply": "76296905168959080338430748", + "mAssetSupply": "1651632453752935788345681319", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "33025037090135713251328", - "expectedQty": "33100551786474932268660", - "swapFee": "19815022254081427950", - "reserves": [ - "19044245823042055657356647", - "35272597149629709638200720", - "21971020694263565505114538" - ], - "mAssetSupply": "76263899946891198706607370" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "10211505258612509376512", - "3966035972421827166208", - "4377241911050268311552" - ], - "expectedQty": "18576577322089770993552", - "swapFee": "11152637976039486287", - "reserves": [ - "19034034317783443147980135", - "35268631113657287811034512", - "21966643452352515236802986" - ], - "mAssetSupply": "76245323369569108935613818" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1064971697715159270162432", - "874874436216273149886464", - "745367673136141775667200" - ], - "expectedQty": "2686418123782958701476853", + "type": "swap", + "inputIndex": 2, + "inputQty": "604973000169409069711360", + "outputIndex": 1, + "expectedQty": "597139765868323107428484", + "swapFee": "361730971261865004642", "reserves": [ - "20099006015498602418142567", - "36143505549873560960920976", - "22712011125488657012470186" + "621887804826492433498806323", + "284224143887665919959262858", + "746733281482797671804845183" ], - "mAssetSupply": "78931741493352067637090671" + "mAssetSupply": "1651632815483907050210685961", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "2731345430756801422295040", - "2473313584224399597240320", - "1642512368650061762002944" + "1109184047711786081714176", + "1423917655665784146362368", + "492302495202363435909120" ], - "expectedQty": "6849587788088417957818697", - "swapFee": "4112220004855964353303", + "expectedQty": "3034478874896586055003234", + "swapFee": "1821780393173855946569", "reserves": [ - "17367660584741800995847527", - "33670191965649161363680656", - "21069498756838595250467242" + "620778620778780647417092147", + "282800226232000135812900490", + "746240978987595308368936063" ], - "mAssetSupply": "72082153705263649679271974" + "mAssetSupply": "1648598336609010464155682727" }, { "type": "swap", "inputIndex": 1, - "inputQty": "257034364125314624", - "outputIndex": 2, - "expectedQty": "255862473633837932", - "swapFee": "153756842442485", + "inputQty": "4451265175826883149824", + "outputIndex": 0, + "expectedQty": "4497814677737460948448", + "swapFee": "2695095933420556418", "reserves": [ - "17367660584741800995847527", - "33670192222683525488995280", - "21069498500976121616629310" + "620774122964102909956143699", + "282804677497175962696050314", + "746240978987595308368936063" ], - "mAssetSupply": "72082153705417406521714459", + "mAssetSupply": "1648598339304106397576239145", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "2143419696585498951680", - "expectedQty": "2136973555406863993261", + "inputQty": "38361420137829295305261056", + "expectedQty": "37935031818243972599917723", + "swapFee": "23016852082697577183156", "reserves": [ - "17367660584741800995847527", - "33672335642380110987946960", - "21069498500976121616629310" - ] + "620774122964102909956143699", + "244869645678931990096132591", + "746240978987595308368936063" + ], + "mAssetSupply": "1610259936018359799848161245" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "354135397266388746240", - "expectedQty": "354990572937491911815", - "swapFee": "212481238359833247", + "inputQty": "1246460619848464843407360", + "expectedQty": "1261809351318385731684591", "reserves": [ - "17367660584741800995847527", - "33671980651807173496035145", - "21069498500976121616629310" - ], - "mAssetSupply": "72083936756056785356794727" + "620774122964102909956143699", + "246116106298780454939539951", + "746240978987595308368936063" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "30983143043505508581376", - "32465012736106837311488", - "133829138452190599315456" + "2141351228790414592", + "3373239474578429952", + "2807315502905024512" ], - "expectedQty": "197405609451730393006583", + "expectedQty": "8346311949934327540", + "swapFee": "5010793646148285", "reserves": [ - "17398643727785306504428903", - "33704445664543280333346633", - "21203327639428312215944766" + "620774120822751681165729107", + "246116102925540980361109999", + "746240976180279805463911551" ], - "mAssetSupply": "72281342365508515749801310" + "mAssetSupply": "1611521737023366235645518296" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2709280128148028535078912", - "expectedQty": "2700548990128877228919969", + "inputIndex": 2, + "inputQty": "1446973226654917919244288", + "expectedQty": "1440999081337996169434103", "reserves": [ - "17398643727785306504428903", - "36413725792691308868425545", - "21203327639428312215944766" + "620774120822751681165729107", + "246116102925540980361109999", + "747687949406934723383155839" ] }, { "type": "redeemMasset", - "inputQty": "66449015370300787", + "inputQty": "51192488167901914726", "expectedQtys": [ - "15414067140355629", - "32260193551907956", - "18784769718065187" + "19696324925850979462", + "7808931735557574896", + "23723129397121081425" ], - "redemptionFee": "19934704611090", + "redemptionFee": "15357746450370574", "reserves": [ - "17398643712371239364073274", - "36413725760431115316517589", - "21203327620643542497879579" + "620774101126426755314749645", + "246116095116609244803535103", + "747687925683805326262074414" ], - "mAssetSupply": "74981891289208312313031582" + "mAssetSupply": "1612962684927573810363408247" }, { "type": "redeemMasset", - "inputQty": "958273868640576967016448", + "inputQty": "236056139991819", "expectedQtys": [ - "222289189204088627885674", - "465230377091450633378359", - "270898731139034573959550" + "90822669505176", + "36008140040184", + "109390860933422" ], - "redemptionFee": "287482160592173090104", + "redemptionFee": "70816841997", "reserves": [ - "17176354523167150736187600", - "35948495383339664683139230", - "20932428889504507923920029" + "620774101126335932645244469", + "246116095116573236663494919", + "747687925683695935401140992" ], - "mAssetSupply": "74023904902728327519105238" + "mAssetSupply": "1612962684927337825040258425" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "422016855864213841641472", - "expectedQty": "420544139866068133082932", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4274821195492404005699584", + "expectedQty": "4282815786309056834222368", + "swapFee": "2564892717295442403419", "reserves": [ - "17176354523167150736187600", - "36370512239203878524780702", - "20932428889504507923920029" - ] + "616491285340026875811022101", + "246116095116573236663494919", + "747687925683695935401140992" + ], + "mAssetSupply": "1608690428624562716476962260" }, { - "type": "mintMulti", - "inputQtys": [ - "12697934596310499852288", - "10306140766547164004352", - "15671075715646452924416" - ], - "expectedQty": "38708091439170129416669", + "type": "redeem", + "inputIndex": 1, + "inputQty": "133220011220000948879360", + "expectedQty": "131534071890643152365476", + "swapFee": "79932006732000569327", "reserves": [ - "17189052457763461236039888", - "36380818379970425688785054", - "20948099965220154376844445" + "616491285340026875811022101", + "245984561044682593511129443", + "747687925683695935401140992" ], - "mAssetSupply": "74483157134033565781604839" + "mAssetSupply": "1608557288545349447528652227" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2686336123100851446218752", - "expectedQty": "2676254032889605085490050", + "type": "redeem", + "inputIndex": 2, + "inputQty": "7009050098442635032133632", + "expectedQty": "7033820790143487910803364", + "swapFee": "4205430059065581019280", "reserves": [ - "17189052457763461236039888", - "39067154503071277135003806", - "20948099965220154376844445" - ] + "616491285340026875811022101", + "245984561044682593511129443", + "740654104893552447490337628" + ], + "mAssetSupply": "1601552443876965878077537875" }, { - "type": "redeemBassets", - "inputQtys": [ - "2995351665335909", - "963617544077659", - "6105577581787169" - ], - "expectedQty": "10084163709357248", - "swapFee": "6054130704036", + "type": "swap", + "inputIndex": 2, + "inputQty": "64377106906921083393277952", + "outputIndex": 0, + "expectedQty": "64175851805331610079190378", + "swapFee": "38456876357560949515274", "reserves": [ - "17189052454768109570703979", - "39067154502107659590926147", - "20948099959114576795057276" + "552315433534695265731831723", + "245984561044682593511129443", + "805031211800473530883615580" ], - "mAssetSupply": "77159411156839007157737641" + "mAssetSupply": "1601590900753323439027053149", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "2551155375109", - "expectedQtys": [ - "568158664284", - "1291306916292", - "692408410725" + "type": "redeemBassets", + "inputQtys": [ + "438877057543185461411840", + "32845103399142082740224", + "287720473579749493440512" ], - "redemptionFee": "765346612", + "expectedQty": "757791216646058773678680", + "swapFee": "454947698606799343813", "reserves": [ - "17189052454767541412039695", - "39067154502106368284009855", - "20948099959113884386646551" + "551876556477152080270419883", + "245951715941283451428389219", + "804743491326893781390175068" ], - "mAssetSupply": "77159411156836456767709144" + "mAssetSupply": "1600833109536677380253374469" }, { "type": "redeemBassets", "inputQtys": [ - "4035283118515848", - "10502083399380750", - "11266378598768840" + "33913873427470575730688", + "30629230162895970500608", + "2341456756369067868160" ], - "expectedQty": "25798672022496361", - "swapFee": "15488496311284", + "expectedQty": "67201038065692653598778", + "swapFee": "40344829737257946927", "reserves": [ - "17189052450732258293523847", - "39067154491604284884629105", - "20948099947847505787877711" + "551842642603724609694689195", + "245921086711120555457888611", + "804741149870137412322306908" ], - "mAssetSupply": "77159411131037784745212783" + "mAssetSupply": "1600765908498611687599775691" }, { - "type": "redeemMasset", - "inputQty": "125882192661475866810777", - "expectedQtys": [ - "28034771674371597846189", - "63717226954698685516464", - "34165652861499199084382" - ], - "redemptionFee": "37764657798442760043", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4515921177164349005889536", + "expectedQty": "4519633931789174972156434", + "swapFee": "2709552706298609403533", "reserves": [ - "17161017679057886695677658", - "39003437264649586199112641", - "20913934294986006588793329" + "547323008671935434722532761", + "245921086711120555457888611", + "804741149870137412322306908" ], - "mAssetSupply": "77033566703034107321162049" + "mAssetSupply": "1596252696874153637203289688" }, { "type": "mintMulti", "inputQtys": [ - "947336474396267294752768", - "872135842220554831527936", - "473384375124472809652224" + "214841865611027884802048", + "80096949252643073556480", + "198078262729883028291584" ], - "expectedQty": "2294223201518681879276189", + "expectedQty": "492718777943878895721197", "reserves": [ - "18108354153454153990430426", - "39875573106870141030640577", - "21387318670110479398445553" + "547537850537546462607334809", + "246001183660373198531445091", + "804939228132867295350598492" ], - "mAssetSupply": "79327789904552789200438238" + "mAssetSupply": "1596745415652097516099010885" }, { "type": "mint", "inputIndex": 2, - "inputQty": "153619006097693638656", - "expectedQty": "153894213522936248917", + "inputQty": "59365358165508477706829824", + "expectedQty": "59054907557153785658901320", "reserves": [ - "18108354153454153990430426", - "39875573106870141030640577", - "21387472289116577092084209" + "547537850537546462607334809", + "246001183660373198531445091", + "864304586298375773057428316" ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "131584634903717494784", + "inputQty": "3889094463646549506260992", "outputIndex": 1, - "expectedQty": "132252812920408921762", - "swapFee": "79092216147841281", + "expectedQty": "3812401073656641162997963", + "swapFee": "2320554757418739420617", "reserves": [ - "18108354153454153990430426", - "39875440854057220621718815", - "21387603873751480809578993" + "547537850537546462607334809", + "242188782586716557368447128", + "868193680762022322563689308" ], - "mAssetSupply": "79327943877858528284528436", + "mAssetSupply": "1655802643764008720497332822", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "6565694037498387234816", - "expectedQty": "6540294901662647873231", + "inputQty": "89480477739867189542912", + "outputIndex": 2, + "expectedQty": "91200707675728598253372", + "swapFee": "54444805574490454303", "reserves": [ - "18108354153454153990430426", - "39882006548094719008953631", - "21387603873751480809578993" - ] + "547537850537546462607334809", + "242278263064456424557990040", + "868102480054346593965435936" + ], + "mAssetSupply": "1655802698208814294987787125", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "823141629781287424", - "4871000189959553024", - "3522362530045545984" + "51456520232182187294720", + "38639865833013477638144", + "117622264014336084148224" ], - "expectedQty": "9207266755020608916", - "swapFee": "5527676659007770", + "expectedQty": "207540301689871760224366", + "swapFee": "124598940378149946102", "reserves": [ - "18108353330312524209143002", - "39882001677094529049400607", - "21387600351388950764033009" + "547486394017314280420040089", + "242239623198623411080351896", + "867984857790332257881287712" ], - "mAssetSupply": "79334474965493435911792751" + "mAssetSupply": "1655595157907124423227562759" }, { - "type": "redeemBassets", - "inputQtys": [ - "1749120918159490", - "1667244013735958", - "1947110125391712" + "type": "redeemMasset", + "inputQty": "489860209413598720", + "expectedQtys": [ + "161942574429521723", + "71652754549333609", + "256743736415052129" ], - "expectedQty": "5367516255141977", - "swapFee": "3222443219016", + "redemptionFee": "146958062824079", "reserves": [ - "18108353328563403290983512", - "39882001675427285035664649", - "21387600349441840638641297" + "547486393855371705990518366", + "242239623126970656531018287", + "867984857533588521466235583" ], - "mAssetSupply": "79334474960125919656650774" + "mAssetSupply": "1655595157417411171876788118" }, { - "type": "redeemMasset", - "inputQty": "655313140196830923980", - "expectedQtys": [ - "149532493873968784767", - "329331721278356576939", - "176611377092315880872" + "type": "mintMulti", + "inputQtys": [ + "50030949795752308637696", + "104028715080565175353344", + "829417386770268946432" ], - "redemptionFee": "196593942059049277", + "expectedQty": "156290722136588240048321", "reserves": [ - "18108203796069529322198745", - "39881672343706006679087710", - "21387423738064748322760425" + "547536424805167458299156062", + "242343651842051221706371631", + "867985686950975291735182015" ], - "mAssetSupply": "79333819843579664884776071" + "mAssetSupply": "1655751448139547760116836439" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2506681565312186721501184", - "expectedQty": "2496465823095916483952757", + "type": "redeemBassets", + "inputQtys": [ + "15374015283728467968", + "128607290150424231936", + "384836941331790561280" + ], + "expectedQty": "528443276733988658070", + "swapFee": "317256319832292570", "reserves": [ - "18108203796069529322198745", - "42388353909018193400588894", - "21387423738064748322760425" - ] + "547536409431152174570688094", + "242343523234761071282139695", + "867985302114033959944620735" + ], + "mAssetSupply": "1655750919696271026128178369" }, { "type": "mint", "inputIndex": 0, - "inputQty": "21091720808641561886720", - "expectedQty": "21186700481855177931217", + "inputQty": "215028469975678577541120", + "expectedQty": "214777838980244068557169", "reserves": [ - "18129295516878170884085465", - "42388353909018193400588894", - "21387423738064748322760425" + "547751437901127853148229214", + "242343523234761071282139695", + "867985302114033959944620735" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "25413830774191728", - "3038118326020166", - "4235063294483604" + "15106381319419362478653440", + "13110357317180370137907200", + "5557046639892232637775872" ], - "expectedQty": "32797425063537880", - "swapFee": "19690269199642", + "expectedQty": "33902833610723199735919474", "reserves": [ - "18129295491464340109893737", - "42388353905980075074568728", - "21387423733829685028276821" + "562857819220547215626882654", + "255453880551941441420046895", + "873542348753926192582396607" ], - "mAssetSupply": "81851472334360011483122165" + "mAssetSupply": "1689868531145974469932655012" }, { - "type": "mintMulti", - "inputQtys": [ - "3376502148459477768077312", - "41640875532389766397952", - "4100249378829517235159040" + "type": "redeemMasset", + "inputQty": "35821253821129195520", + "expectedQtys": [ + "11927687718993971290", + "5413399280920062472", + "18511496135351182067" ], - "expectedQty": "7537862350548247902390256", + "redemptionFee": "10746376146338758", "reserves": [ - "21505797639923817877971049", - "42429994781512464840966680", - "25487673112659202263435861" + "562857807292859496632911364", + "255453875138542160499984423", + "873542330242430057231214540" ], - "mAssetSupply": "89389334684908259385512421" + "mAssetSupply": "1689868495335467024949798250" }, { - "type": "swap", + "type": "redeem", + "inputIndex": 2, + "inputQty": "5096257919193108709376", + "expectedQty": "5120426809921942956807", + "swapFee": "3057754751515865225", + "reserves": [ + "562857807292859496632911364", + "255453875138542160499984423", + "873537209815620135288257733" + ], + "mAssetSupply": "1689863402135302583356954099" + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "4655981526157526827008", - "outputIndex": 2, - "expectedQty": "4632817427073764429837", - "swapFee": "2784724357715246509", + "inputQty": "1595329930699201792", + "expectedQty": "1615983022558802647", + "reserves": [ + "562857807292859496632911364", + "255453876733872091199186215", + "873537209815620135288257733" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "63047376363477205516288", + "expectedQty": "62204049693999546309657", + "swapFee": "37828425818086323309", "reserves": [ - "21505797639923817877971049", - "42434650763038622367793688", - "25483040295232128499006024" + "562857807292859496632911364", + "255391672684178091652876558", + "873537209815620135288257733" ], - "mAssetSupply": "89389337469632617100758930", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1689800394203347946796563767" }, { - "type": "mintMulti", - "inputQtys": [ - "1454021240652928", - "934935819618281", - "1535771218484105" + "type": "redeemMasset", + "inputQty": "205462125644579995857715", + "expectedQtys": [ + "68417114903139974808683", + "31043651147663834888410", + "106181161355069227951022" ], - "expectedQty": "3928331561582581", + "redemptionFee": "61638637693373998757", "reserves": [ - "21505797641377839118623977", - "42434650763973558187411969", - "25483040296767899717490129" + "562789390177956356658102681", + "255360629033030427817988148", + "873431028654265066060306711" ], - "mAssetSupply": "89389337473560948662341511" + "mAssetSupply": "1689594993716341060174704809" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "173483225760137266331648", - "expectedQty": "174038439034420707027084", + "type": "redeem", + "inputIndex": 2, + "inputQty": "6528932012287464570880", + "expectedQty": "6559903758693329847328", + "swapFee": "3917359207372478742", "reserves": [ - "21679280867137976384955625", - "42434650763973558187411969", - "25483040296767899717490129" - ] + "562789390177956356658102681", + "255360629033030427817988148", + "873424468750506372730459383" + ], + "mAssetSupply": "1689588468701687980082612671" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "113447069157825120829440", - "96312164543856088449024", - "12897031881257297903616" + "30463714401343126896640", + "32229592457637577883648", + "54891513147827840614400" ], - "expectedQty": "222725900413783064201209", + "expectedQty": "117675257278720037978557", + "swapFee": "70647542892967803469", "reserves": [ - "21792727936295801505785065", - "42530962928517414275860993", - "25495937328649157015393745" + "562758926463555013531206041", + "255328399440572790240104500", + "873369577237358544889844983" ], - "mAssetSupply": "89786101813009152433569804" + "mAssetSupply": "1689470793444409260044634114" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "43986985870519686922240", - "outputIndex": 0, - "expectedQty": "43877764697379075942964", - "swapFee": "26425214996347040171", + "type": "mintMulti", + "inputQtys": [ + "44619613549612257771520", + "16609124928475866595328", + "12704739567881840230400" + ], + "expectedQty": "74029642315249628957648", "reserves": [ - "21748850171598422429842101", - "42530962928517414275860993", - "25539924314519676702315985" + "562803546077104625788977561", + "255345008565501266106699828", + "873382281976926426730075383" ], - "mAssetSupply": "89786128238224148780609975", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1689544823086724509673591762" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "241702561909782926589952", - "6816768278085182160896", - "91410153244086503473152" + "32339027345019272", + "15154956089310780", + "2039285415247128" ], - "expectedQty": "340771980543336823640441", + "expectedQty": "49681461931030869", + "swapFee": "29826773222552", "reserves": [ - "21990552733508205356432053", - "42537779696795499458021889", - "25631334467763763205789137" + "562803546044765598443958289", + "255345008550346310017389048", + "873382281974887141314828255" ], - "mAssetSupply": "90126900218767485604250416" + "mAssetSupply": "1689544823037043047742560893" }, { - "type": "redeemMasset", - "inputQty": "1607264589226610104729", - "expectedQtys": [ - "392047582123750882785", - "758363551891538172599", - "456955440205019669663" + "type": "mintMulti", + "inputQtys": [ + "30474493323411395182592", + "17605177432250261700608", + "9371163193806462910464" ], - "redemptionFee": "482179376767983031", + "expectedQty": "57593910468049240422769", "reserves": [ - "21990160685926081605549268", - "42537021333243607919849290", - "25630877512323558186119474" + "562834020538089009839140881", + "255362613727778560279089656", + "873391653138080947777738719" ], - "mAssetSupply": "90125293436357635762128718" + "mAssetSupply": "1689602416947511096982983662" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "2334566609697592836096", - "outputIndex": 1, - "expectedQty": "2343339231094066669364", - "swapFee": "1402484869212238690", + "type": "redeemMasset", + "inputQty": "1357082077849040076", + "expectedQtys": [ + "451930472416610940", + "205044724462823320", + "701294321246002427" + ], + "redemptionFee": "407124623354712", "reserves": [ - "21990160685926081605549268", - "42534677994012513853179926", - "25633212078933255778955570" + "562834020086158537422529941", + "255362613522733835816266336", + "873391652436786626531736292" ], - "mAssetSupply": "90125294838842504974367408", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1689602415590836143757298298" }, { "type": "mint", "inputIndex": 1, - "inputQty": "23327237981428068122624", - "expectedQty": "23254863992731017533462", + "inputQty": "72728515536989864924807168", + "expectedQty": "73448506611128049693899459", "reserves": [ - "21990160685926081605549268", - "42558005231993941921302550", - "25633212078933255778955570" + "562834020086158537422529941", + "328091129059723700741073504", + "873391652436786626531736292" ] }, + { + "type": "redeemMasset", + "inputQty": "1854630820364470661939", + "expectedQtys": [ + "591892243419707476644", + "345029951095595405063", + "918483471318453468967" + ], + "redemptionFee": "556389246109341198", + "reserves": [ + "562833428193915117715053297", + "328090784029772605145668441", + "873390733953315308078267325" + ], + "mAssetSupply": "1763049068127533075089877016" + }, { "type": "swap", - "inputIndex": 2, - "inputQty": "4154814627014387026624512", - "outputIndex": 0, - "expectedQty": "4135348642962381768554601", - "swapFee": "2494618759268918961843", + "inputIndex": 1, + "inputQty": "77010485155614095835136", + "outputIndex": 2, + "expectedQty": "77860370012653943484719", + "swapFee": "46552551795480288278", "reserves": [ - "17854812042963699836994667", - "42558005231993941921302550", - "29788026705947642805580082" + "562833428193915117715053297", + "328167794514928219241503577", + "873312873583302654134782606" ], - "mAssetSupply": "90151044321594504910862713", + "mAssetSupply": "1763049114680084870570165294", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "17031954967495480", - "expectedQty": "17137656943684396", + "type": "redeemBassets", + "inputQtys": [ + "97290293529768896", + "1560448325568009984", + "1326541107568389120" + ], + "expectedQty": "2990503936087216599", + "swapFee": "1795379589405973", "reserves": [ - "17854812059995654804490147", - "42558005231993941921302550", - "29788026705947642805580082" - ] + "562833428096624824185284401", + "328167792954479893673493593", + "873312872256761546566393486" + ], + "mAssetSupply": "1763049111689580934482948695" }, { "type": "mintMulti", "inputQtys": [ - "86976755344306415337472", - "274305558191648788185088", - "244977772346403981361152" + "30762282148926332928", + "15978812168638242816", + "31058448560363024384" ], - "expectedQty": "605739424079928042043404", + "expectedQty": "77784119558624524194", "reserves": [ - "17941788815339961219827619", - "42832310790185590709487638", - "30033004478294046786941234" + "562833458858906973111617329", + "328167808933292062311736409", + "873312903315210106929417870" ], - "mAssetSupply": "90756783762812089896590513" + "mAssetSupply": "1763049189473700493107472889" }, { - "type": "redeemMasset", - "inputQty": "3706309602235558710476", - "expectedQtys": [ - "732483810731582103415", - "1748653634982612500960", - "1226114619584137762420" - ], - "redemptionFee": "1111892880670667613", + "type": "swap", + "inputIndex": 0, + "inputQty": "357389209728618818699264", + "outputIndex": 2, + "expectedQty": "358553436322294622489325", + "swapFee": "214379056064856783308", "reserves": [ - "17941056331529229637724204", - "42830562136550608096986678", - "30031778363674462649178814" + "563190848068635591930316593", + "328167808933292062311736409", + "872954349878887812306928545" ], - "mAssetSupply": "90753078565102735008547650" + "mAssetSupply": "1763049403852756557964256197", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "95290022602437736529920", + "expectedQty": "95265387460969593105323", + "reserves": [ + "563286138091238029666846513", + "328167808933292062311736409", + "872954349878887812306928545" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1730837371341089208795136", - "outputIndex": 2, - "expectedQty": "1723837253729903500610408", - "swapFee": "1034784943110228949730", + "inputIndex": 2, + "inputQty": "24024783983253798912", + "outputIndex": 0, + "expectedQty": "23918214025137171605", + "swapFee": "14355823010454503", "reserves": [ - "17941056331529229637724204", - "44561399507891697305781814", - "28307941109944559148568406" + "563286114173024004529674908", + "328167808933292062311736409", + "872954373903671795560727457" ], - "mAssetSupply": "90754113350045845237497380", + "mAssetSupply": "1763144669254573350567816023", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "405401384050881344", - "107197756942513168", - "638247984117372800" - ], - "expectedQty": "1153041026651668518", - "reserves": [ - "17941056736930613688605548", - "44561399615089454248294982", - "28307941748192543265941206" + "18808729650969414991872", + "35674111491821960953856", + "61214148803794430853120" ], - "mAssetSupply": "90754114503086871889165898" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "205428398938202388299776", - "expectedQty": "204001066428540508362084", - "swapFee": "123257039362921432979", + "expectedQty": "115708580229438424043251", "reserves": [ - "17737055670502073180243464", - "44561399615089454248294982", - "28307941748192543265941206" + "563304922902674973944666780", + "328203483044783884272690265", + "873015588052475589991580577" ], - "mAssetSupply": "90548809361188032422299101" + "mAssetSupply": "1763260377834802788991859274" }, { "type": "mint", "inputIndex": 2, - "inputQty": "112937090179029188739072", - "expectedQty": "112940191220779303354787", + "inputQty": "1318761958399380908146688", + "expectedQty": "1313353269107679594199720", "reserves": [ - "17737055670502073180243464", - "44561399615089454248294982", - "28420878838371572454680278" + "563304922902674973944666780", + "328203483044783884272690265", + "874334350010874970899727265" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "536274653881901298745344", - "expectedQty": "532366106317101000621690", - "swapFee": "321764792329140779247", + "inputIndex": 1, + "inputQty": "3959184353357604312842240", + "expectedQty": "3926921885285286176916501", + "swapFee": "2375510612014562587705", "reserves": [ - "17204689564184972179621774", - "44561399615089454248294982", - "28420878838371572454680278" + "563304922902674973944666780", + "324276561159498598095773764", + "874334350010874970899727265" ], - "mAssetSupply": "90125796663319239567687791" + "mAssetSupply": "1760616922261164878835804459" }, { - "type": "redeemBassets", - "inputQtys": [ - "5758854542334100831731712", - "4819126944642542189150208", - "3326077693827023179350016" - ], - "expectedQty": "13934957813531336629211574", - "swapFee": "8365994284689615746975", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1346396782031394832384", + "expectedQty": "1345983581152120548288", + "swapFee": "807838069218836899", "reserves": [ - "11445835021850871347890062", - "39742272670446912059144774", - "25094801144544549275330262" + "563303576919093821824118492", + "324276561159498598095773764", + "874334350010874970899727265" ], - "mAssetSupply": "76190838849787902938476217" + "mAssetSupply": "1760615576672220916659808974" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "182409779867415377608704", - "expectedQty": "182212881374676884426531", + "type": "redeem", + "inputIndex": 1, + "inputQty": "374494872094183451000832", + "expectedQty": "371400828237660576696923", + "swapFee": "224696923256510070600", "reserves": [ - "11445835021850871347890062", - "39742272670446912059144774", - "25277210924411964652938966" - ] + "563303576919093821824118492", + "323905160331260937519076841", + "874334350010874970899727265" + ], + "mAssetSupply": "1760241306497049989718878742" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "332804216504427675648", - "expectedQty": "332435404268303573425", + "inputIndex": 1, + "inputQty": "222927755835239450017792", + "expectedQty": "224650933899035022643385", "reserves": [ - "11445835021850871347890062", - "39742272670446912059144774", - "25277543728628469080614614" + "563303576919093821824118492", + "324128088087096176969094633", + "874334350010874970899727265" ] }, { - "type": "redeemMasset", - "inputQty": "118826726290647689042329", - "expectedQtys": [ - "17802839285115706781481", - "61815087481734541084246", - "39316663892512316244542" + "type": "redeemBassets", + "inputQtys": [ + "36798120628586108944384", + "200170916035606526033920", + "61138235710737064394752" ], - "redemptionFee": "35648017887194306712", + "expectedQty": "299388995025654355723331", + "swapFee": "179741241760448882763", "reserves": [ - "11428032182565755641108581", - "39680457582965177518060528", - "25238227064735956764370072" + "563266778798465235715174108", + "323927917171060570443060713", + "874273211775164233835332513" ], - "mAssetSupply": "76254593088294087631740556" + "mAssetSupply": "1760166568435923370385798796" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "83292880569693683712", - "expectedQty": "83335259884083072917", - "swapFee": "49975728341816210", + "inputQty": "438399881181491363840", + "outputIndex": 0, + "expectedQty": "436442462385268651206", + "swapFee": "261944975488389554", "reserves": [ - "11428032182565755641108581", - "39680457582965177518060528", - "25238143729476072681297155" + "563266342356002850446522902", + "323927917171060570443060713", + "874273650175045415326696353" ], - "mAssetSupply": "76254509845389246279873054" + "mAssetSupply": "1760166568697868345874188350", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "653834811842219820974080", - "939035872674570722869248", - "1033142865032391975501824" - ], - "expectedQty": "2628288389128365725459436", + "type": "redeem", + "inputIndex": 2, + "inputQty": "10544869726765211247968256", + "expectedQty": "10582154001489069578348527", + "swapFee": "6326921836059126748780", "reserves": [ - "12081866994407975462082661", - "40619493455639748240929776", - "26271286594508464656798979" + "563266342356002850446522902", + "323927917171060570443060713", + "863691496173556345748347826" ], - "mAssetSupply": "78882798234517612005332490" + "mAssetSupply": "1749628025892939193752968874" }, { "type": "redeemMasset", - "inputQty": "207106122564061789945856", + "inputQty": "272528432934373608652", "expectedQtys": [ - "31711323811329855560063", - "106614144206369338189623", - "68954349234625867010585" + "87710095807682308911", + "50441055169420264287", + "134491373229937806510" ], - "redemptionFee": "62131836769218536983", + "redemptionFee": "81758529880312082", "reserves": [ - "12050155670596645606522598", - "40512879311433378902740153", - "26202332245273838789788394" + "563266254645907042764213991", + "323927866730005401022796426", + "863691361682183115810541316" ], - "mAssetSupply": "78675754243790319433923617" + "mAssetSupply": "1749627753446264789259672304" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "12360831688149831778304", - "expectedQty": "12367174259096320093991", - "swapFee": "7416499012889899066", + "type": "swap", + "inputIndex": 0, + "inputQty": "3326476580784836182016", + "outputIndex": 2, + "expectedQty": "3336952013347382318234", + "swapFee": "1995200121777168888", "reserves": [ - "12050155670596645606522598", - "40512879311433378902740153", - "26189965071014742469694403" + "563269581122487827600396007", + "323927866730005401022796426", + "863688024730169768428223082" ], - "mAssetSupply": "78663400828601182492044379" + "mAssetSupply": "1749627755441464911036841192", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "17207350849365590881075", + "inputQty": "448876002927594412651315", "expectedQtys": [ - "2635139707322908429952", - "8859395666732739111753", - "5727246915193905246575" + "144466356286021770767797", + "83080429290591491908241", + "221517131551802964680961" ], - "redemptionFee": "5162205254809677264", + "redemptionFee": "134662800878278323795", "reserves": [ - "12047520530889322698092646", - "40504019915766646163628400", - "26184237824099548564447828" + "563125114766201805829628210", + "323844786300714809530888185", + "863466507598617965463542121" ], - "mAssetSupply": "78646198639957071710840568" + "mAssetSupply": "1749179014101338194902513672" }, { "type": "redeemBassets", "inputQtys": [ - "1563662065249646083571712", - "867150921525094873300992", - "373381147820218814300160" + "1094925872797863772160", + "523017596664540299264", + "128956593477426610176" ], - "expectedQty": "2821065269119483410774131", - "swapFee": "1693655354684500746912", + "expectedQty": "1749968681879621120029", + "swapFee": "1050611576073416722", "reserves": [ - "10483858465639676614520934", - "39636868994241551290327408", - "25810856676279329750147668" + "563124019840329007965856050", + "323844263283118144990588921", + "863466378642024488036931945" ], - "mAssetSupply": "75825133370837588300066437" + "mAssetSupply": "1749177264132656315281393643" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "83245525076408648335360", - "expectedQty": "82756330225071319148489", + "type": "mintMulti", + "inputQtys": [ + "8766206083431051347099648", + "1242473833301694241308672", + "13197928122519953854169088" + ], + "expectedQty": "23158814482076500421280985", "reserves": [ - "10483858465639676614520934", - "39720114519317959938662768", - "25810856676279329750147668" - ] + "571890225923760059312955698", + "325086737116419839231897593", + "876664306764544441891101033" + ], + "mAssetSupply": "1772336078614732815702674628" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "128533940300546400", - "expectedQty": "129217329370786564", - "swapFee": "77120364180327", + "type": "mintMulti", + "inputQtys": [ + "605935909495170215706624", + "3431639240256897578696704", + "1743453695108257901707264" + ], + "expectedQty": "5800113761594268826818861", "reserves": [ - "10483858465639676614520934", - "39720114390100630567876204", - "25810856676279329750147668" + "572496161833255229528662322", + "328518376356676736810594297", + "878407760459652699792808297" ], - "mAssetSupply": "75907889572605839682848853" + "mAssetSupply": "1778136192376327084529493489" }, { "type": "swap", "inputIndex": 2, - "inputQty": "44723712253239418880", - "outputIndex": 1, - "expectedQty": "44888062672585788884", - "swapFee": "26790398699891688", + "inputQty": "8794475823820925952", + "outputIndex": 0, + "expectedQty": "8756272691607800074", + "swapFee": "5255085787310433", "reserves": [ - "10483858465639676614520934", - "39720069502037957982087320", - "25810901399991582989566548" + "572496153076982537920862248", + "328518376356676736810594297", + "878407769254128523613734249" ], - "mAssetSupply": "75907889599396238382740541", + "mAssetSupply": "1778136192381582170316803922", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1883576094486693802934272", - "expectedQty": "1909138287012302421218729", + "type": "redeemMasset", + "inputQty": "118466175757251221913", + "expectedQtys": [ + "38130422040951795476", + "21880573819338663306", + "58505299617632600429" + ], + "redemptionFee": "35539852727175366", "reserves": [ - "12367434560126370417455206", - "39720069502037957982087320", - "25810901399991582989566548" - ] + "572496114946560496969066772", + "328518354476102917471930991", + "878407710748828905981133820" + ], + "mAssetSupply": "1778136073950946265792757375" }, { - "type": "redeemBassets", - "inputQtys": [ - "4500010647029863711506432", - "4060517537147532615876608", - "1658553609645399998464" - ], - "expectedQty": "8614445903883529945347023", - "swapFee": "5171770604692933727444", + "type": "swap", + "inputIndex": 2, + "inputQty": "293959792559735616", + "outputIndex": 0, + "expectedQty": "292682833547717506", + "swapFee": "175653894416720", "reserves": [ - "7867423913096506705948774", - "35659551964890425366210712", - "25809242846381937589568084" + "572496114653877663421349266", + "328518354476102917471930991", + "878407711042788698540869436" ], - "mAssetSupply": "69202581982525010858612247" + "mAssetSupply": "1778136073951121919687174095", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "672141547917743742779392", - "expectedQty": "669797700726343969553555", + "type": "swap", + "inputIndex": 1, + "inputQty": "3230287376919108780032", + "outputIndex": 0, + "expectedQty": "3254139677461960842269", + "swapFee": "1952975277025526082", "reserves": [ - "7867423913096506705948774", - "35659551964890425366210712", - "26481384394299681332347476" - ] + "572492860514200201460506997", + "328521584763479836580711023", + "878407711042788698540869436" + ], + "mAssetSupply": "1778136075904097196712700177", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 2, - "inputQty": "3355479409664436207616", + "inputIndex": 0, + "inputQty": "133506171636786642944", "outputIndex": 1, - "expectedQty": "3364121417826642454255", - "swapFee": "2006047501542239496", + "expectedQty": "132368625834154688294", + "swapFee": "80075793579300585", "reserves": [ - "7867423913096506705948774", - "35656187843472598723756457", - "26484739873709345768555092" + "572492994020371838247149941", + "328521452394854002426022729", + "878407711042788698540869436" ], - "mAssetSupply": "69872381689298856370405298", + "mAssetSupply": "1778136075984172990292000762", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "12094129729361598873", - "expectedQtys": [ - "1361354776343721191", - "6169836805935554202", - "4582837727515363197" - ], - "redemptionFee": "3628238918808479", + "type": "mint", + "inputIndex": 1, + "inputQty": "259676587261936893952", + "expectedQty": "261659844661607637038", "reserves": [ - "7867422551741730362227583", - "35656181673635792788202255", - "26484735290871618253191895" - ], - "mAssetSupply": "69872369598797365927614904" + "572492994020371838247149941", + "328521712071441264362916681", + "878407711042788698540869436" + ] }, { - "type": "redeemMasset", - "inputQty": "17373890287052499", - "expectedQtys": [ - "1955661883511083", - "8863313868306015", - "6583501389762239" - ], - "redemptionFee": "5212167086115", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3157308202719449098223616", + "expectedQty": "3168344300164533495690833", + "swapFee": "1894384921631669458934", "reserves": [ - "7867422549786068478716500", - "35656181664772478919896240", - "26484735284288116863429656" + "572492994020371838247149941", + "328521712071441264362916681", + "875239366742624165045178603" ], - "mAssetSupply": "69872369581428687807648520" + "mAssetSupply": "1774980923826219834470873118" }, { "type": "redeemBassets", "inputQtys": [ - "18607511006334544773120", - "15177606998155176443904", - "10953524642372116283392" + "1431628367324821848064", + "174662743182450262016", + "3896759922665184034816" ], - "expectedQty": "45070637978379218740913", - "swapFee": "27058617957802212572", + "expectedQty": "5488003781867864106578", + "swapFee": "3294779136602680071", "reserves": [ - "7848815038779733933943380", - "35641004057774323743452336", - "26473781759645744747146264" + "572491562392004513425301877", + "328521537408698081912654665", + "875235469982701499861143787" ], - "mAssetSupply": "69827298943450308588907607" + "mAssetSupply": "1774975435822437966606766540" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "147914326029399293952", - "expectedQty": "151689804270954391149", - "reserves": [ - "7848962953105763333237332", - "35641004057774323743452336", - "26473781759645744747146264" - ] - }, - { - "type": "redeemMasset", - "inputQty": "6744347049576425062", - "expectedQtys": [ - "757871708275861214", - "3441385669841160186", - "2556226896034210468" - ], - "redemptionFee": "2023304114872927", + "inputQty": "85112202853810280857600", + "outputIndex": 1, + "expectedQty": "84389007670982457963400", + "swapFee": "51048799448341651723", "reserves": [ - "7848962195234055057376118", - "35641000616388653902292150", - "26473779203418848712935796" + "572576674594858323706159477", + "328437148401027099454691265", + "875235469982701499861143787" ], - "mAssetSupply": "69827443890930834081746621" + "mAssetSupply": "1774975486871237414948418263", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "250726735355730886656", - "expectedQty": "252283101506194056461", - "swapFee": "150436041213438531", + "inputIndex": 2, + "inputQty": "1915699795394049670643712", + "expectedQty": "1922359346768475286849176", + "swapFee": "1149419877236429802386", "reserves": [ - "7848962195234055057376118", - "35640748333287147708235689", - "26473779203418848712935796" + "572576674594858323706159477", + "328437148401027099454691265", + "873313110635933024574294611" ], - "mAssetSupply": "69827193314631519564298496" + "mAssetSupply": "1773060936495720601707576937" }, { "type": "mintMulti", "inputQtys": [ - "7431675198403008004096", - "448801245279922225152", - "8600313207449375997952" + "29111429066321161512550400", + "6263007356913012535459840", + "55145932232144279031513088" ], - "expectedQty": "16636268549222480557080", + "expectedQty": "90328709497177292284521805", "reserves": [ - "7856393870432458065380214", - "35641197134532427630460841", - "26482379516626298088933748" + "601688103661179485218709877", + "334700155757940111990151105", + "928459042868077303605807699" ], - "mAssetSupply": "69843829583180742044855576" + "mAssetSupply": "1863389645992897893992098742" }, { - "type": "mintMulti", - "inputQtys": [ - "249341951610639941107712", - "129405344790558749491200", - "110135492940248888901632" - ], - "expectedQty": "493813079220374237448114", + "type": "mint", + "inputIndex": 2, + "inputQty": "121170705522813312", + "expectedQty": "120653481468159953", "reserves": [ - "8105735822043098006487926", - "35770602479322986379952041", - "26592515009566546977835380" - ], - "mAssetSupply": "70337642662401116282303690" + "601688103661179485218709877", + "334700155757940111990151105", + "928459042989248009128621011" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "9448927582179205120", - "8078994763446240256", - "8517880433045844992" - ], - "expectedQty": "26191196826641048636", + "type": "mint", + "inputIndex": 1, + "inputQty": "550766243706500928", + "expectedQty": "555317146525680313", "reserves": [ - "8105745270970680185693046", - "35770610558317749826192297", - "26592523527446980023680372" - ], - "mAssetSupply": "70337668853597942923352326" + "601688103661179485218709877", + "334700156308706355696652033", + "928459042989248009128621011" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "178884829741509001609216", - "outputIndex": 0, - "expectedQty": "173848124873061146748615", - "swapFee": "106956632435067482608", + "inputIndex": 0, + "inputQty": "45306507100064354567979008", + "outputIndex": 2, + "expectedQty": "45426209301830178455239642", + "swapFee": "27165013197816532558722", "reserves": [ - "7931897146097619038944431", - "35770610558317749826192297", - "26771408357188489025289588" + "646994610761243839786688885", + "334700156308706355696652033", + "883032833687417830673381369" ], - "mAssetSupply": "70337775810230377990834934", + "mAssetSupply": "1863416811682066338518497730", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mintMulti", + "inputQtys": [ + "1647087133760068864", + "2945689347696735744", + "1807756446639251712" + ], + "expectedQty": "6415900269098662321", + "reserves": [ + "646994612408330973546757749", + "334700159254395703393387777", + "883032835495174277312633081" + ], + "mAssetSupply": "1863416818097966607617160051" + }, { "type": "swap", - "inputIndex": 0, - "inputQty": "267305375714172288", - "outputIndex": 1, - "expectedQty": "275754927124322912", - "swapFee": "164443138496378", + "inputIndex": 1, + "inputQty": "5390141934313804620890112", + "outputIndex": 0, + "expectedQty": "5435569384294334375756992", + "swapFee": "3259957445181836853847", "reserves": [ - "7931897413402994753116719", - "35770610282562822701869385", - "26771408357188489025289588" + "641559043024036639171000757", + "340090301188709508014277889", + "883032835495174277312633081" ], - "mAssetSupply": "70337775810394821129331312", + "mAssetSupply": "1863420078055411789454013898", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "124166748538556304588", + "inputQty": "776275258106356695040", "expectedQtys": [ - "13997918427847982684", - "63126646595752556977", - "47245188742520197292" + "267184522509814817978", + "141634453946774218297", + "367749015585813426830" ], - "redemptionFee": "37250024561566891", + "redemptionFee": "232882577431907008", "reserves": [ - "7931883415484566905134035", - "35770547155916226949312408", - "26771361111999746505092296" + "641558775839514129356182779", + "340090159554255561240059592", + "883032467746158691499206251" ], - "mAssetSupply": "70337651680896307134593615" + "mAssetSupply": "1863419302013036260529225866" }, { - "type": "mintMulti", - "inputQtys": [ - "1434276944062429228171264", - "1784740260696127197675520", - "2062853493173327176400896" - ], - "expectedQty": "5296166594649309667680837", + "type": "redeem", + "inputIndex": 0, + "inputQty": "638937806151601998528512", + "expectedQty": "639189091189610840141878", + "swapFee": "383362683690961199117", "reserves": [ - "9366160359546996133305299", - "37555287416612354146987928", - "28834214605173073681493192" + "640919586748324518516040901", + "340090159554255561240059592", + "883032467746158691499206251" ], - "mAssetSupply": "75633818275545616802274452" + "mAssetSupply": "1862780747569568349491896471" }, { - "type": "redeemMasset", - "inputQty": "58193367487568546050867", - "expectedQtys": [ - "7204249496461899260063", - "28886720926663404910563", - "22178658924887281740327" - ], - "redemptionFee": "17458010246270563815", + "type": "redeem", + "inputIndex": 2, + "inputQty": "271740159075136897024", + "expectedQty": "272589172686040484246", + "swapFee": "163044095445082138", "reserves": [ - "9358956110050534234045236", - "37526400695685690742077365", - "28812035946248186399752865" + "640919586748324518516040901", + "340090159554255561240059592", + "883032195156986005458722005" ], - "mAssetSupply": "75575642366068294526787400" + "mAssetSupply": "1862780475992453369800081585" }, { "type": "mintMulti", "inputQtys": [ - "10888639354787376136192", - "76207136199117941768192", - "36322467125241160138752" + "699651427428535238656", + "5590802061088816889856", + "4677770354424170938368" ], - "expectedQty": "123076995542629154444273", + "expectedQty": "10993748168548234157745", "reserves": [ - "9369844749405321610181428", - "37602607831884808683845557", - "28848358413373427559891617" + "640920286399751947051279557", + "340095750356316650056949448", + "883036872927340429629660373" ], - "mAssetSupply": "75698719361610923681231673" + "mAssetSupply": "1862791469740621918034239330" }, { - "type": "redeemMasset", - "inputQty": "9733841190752582", - "expectedQtys": [ - "1204475058064524", - "4833741055801542", - "3708399563100497" - ], - "redemptionFee": "2920152357225", + "type": "swap", + "inputIndex": 1, + "inputQty": "3030859292028441932595200", + "outputIndex": 2, + "expectedQty": "3063646337866909738500139", + "swapFee": "1832551385680838945718", "reserves": [ - "9369844748200846552116904", - "37602607827051067628044015", - "28848358409665027996791120" + "640920286399751947051279557", + "343126609648345091989544648", + "879973226589473519891160234" ], - "mAssetSupply": "75698719351880002642836316" + "mAssetSupply": "1862793302292007598873185048", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "118557081106095636480", - "81167160942391001088", - "221689309491832455168" - ], - "expectedQty": "422641881205923049120", - "swapFee": "253737371146241574", + "type": "mint", + "inputIndex": 0, + "inputQty": "889286776766738560", + "expectedQty": "888424629327373233", "reserves": [ - "9369726191119740456480424", - "37602526659890125237042927", - "28848136720355536164335952" - ], - "mAssetSupply": "75698296709998796719787196" + "640920287289038723818018117", + "343126609648345091989544648", + "879973226589473519891160234" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "35647853387454040292458496", + "expectedQty": "35606927927615677630419240", + "reserves": [ + "676568140676492764110476613", + "343126609648345091989544648", + "879973226589473519891160234" + ] }, { "type": "redeemMasset", - "inputQty": "37978214384514914844672", + "inputQty": "78219987324191781683", "expectedQtys": [ - "4699428280828914320027", - "18859716240543938645986", - "14468912622158115072364" + "27868346292484121349", + "14133640951944320716", + "36246753478798717227" ], - "redemptionFee": "11393464315354474453", + "redemptionFee": "23465996197257534", "reserves": [ - "9365026762838911542160397", - "37583666943649581298396941", - "28833667807733378049263588" + "676568112808146471626355264", + "343126595514704140045223932", + "879973190342720041092443007" ], - "mAssetSupply": "75660329889078597159416977" + "mAssetSupply": "1898400152911526577836453372" }, { - "type": "redeemBassets", - "inputQtys": [ - "393627603843797980545024", - "209293232111060305051648", - "78495774871801600933888" - ], - "expectedQty": "688247216802223307356613", - "swapFee": "413196247830032003616", + "type": "mint", + "inputIndex": 1, + "inputQty": "4396972896662705770856448", + "expectedQty": "4431527048922320577705394", "reserves": [ - "8971399158995113561615373", - "37374373711538520993345293", - "28755172032861576448329700" - ], - "mAssetSupply": "74972082672276373852060364" + "676568112808146471626355264", + "347523568411366845816080380", + "879973190342720041092443007" + ] }, { - "type": "redeemMasset", - "inputQty": "743734044639738297791283", - "expectedQtys": [ - "88970894823077912754850", - "370648035343927447918797", - "285169942972619024667243" - ], - "redemptionFee": "223120213391921489337", + "type": "mint", + "inputIndex": 2, + "inputQty": "3053187161665296322789376", + "expectedQty": "3042529694089390455577000", "reserves": [ - "8882428264172035648860523", - "37003725676194593545426496", - "28470002089888957423662457" - ], - "mAssetSupply": "74228571747850027475758418" + "676568112808146471626355264", + "347523568411366845816080380", + "883026377504385337415232383" + ] }, { "type": "redeemBassets", "inputQtys": [ - "907165789856224768", - "929822290281854592", - "881139818461165952" + "2308089320912849054203904", + "2801586763661601138540544", + "14336545334837957399412736" ], - "expectedQty": "2729423164560236826", - "swapFee": "1638637080984732", + "expectedQty": "19415214731948659376440108", + "swapFee": "11656122512676801706888", "reserves": [ - "8882427357006245792635755", - "37003724746372303263571904", - "28470001208749138962496505" + "674260023487233622572151360", + "344721981647705244677539836", + "868689832169547380015819647" ], - "mAssetSupply": "74228569018426862915521592" + "mAssetSupply": "1886458994922589629493295658" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "42932205995943176175616", - "expectedQty": "43053972409962978301350", - "swapFee": "25759323597565905705", + "inputQty": "22422686421467935174295552", + "expectedQty": "22484724272446533940071107", + "swapFee": "13453611852880761104577", "reserves": [ - "8882427357006245792635755", - "37003724746372303263571904", - "28426947236339175984195155" + "674260023487233622572151360", + "344721981647705244677539836", + "846205107897100846075748540" ], - "mAssetSupply": "74185662571754517305251681" + "mAssetSupply": "1864049762112974575080104683" }, { "type": "redeemBassets", "inputQtys": [ - "194333199419329088", - "13290706985581414", - "120532855352512768" + "13945887452699295744000", + "2580235999063060053491712", + "3057157455918922853253120" ], - "expectedQty": "331940263929028829", - "swapFee": "199283728594574", + "expectedQty": "5660673195235361794914195", + "swapFee": "3398442982930975662345", "reserves": [ - "8882427162673046373306667", - "37003724733081596277990490", - "28426947115806320631682387" + "674246077599780923276407360", + "342141745648642184624048124", + "843147950441181923222495420" ], - "mAssetSupply": "74185662239814253376222852" + "mAssetSupply": "1858389088917739213285190488" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "246628688693182176", - "expectedQty": "241173032075025946", - "swapFee": "147977213215909", + "inputQty": "26020861897512037052841984", + "expectedQty": "26039256136894891359066767", + "swapFee": "15612517138507222231705", "reserves": [ - "8882426921500014298280721", - "37003724733081596277990490", - "28426947115806320631682387" + "648206821462886031917340593", + "342141745648642184624048124", + "843147950441181923222495420" ], - "mAssetSupply": "74185661993333541896256585" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "6700577060619830714957824", - "outputIndex": 0, - "hardLimitError": true + "mAssetSupply": "1832383839537365683454580209" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "15543094038310451937280", - "outputIndex": 0, - "expectedQty": "15146545491545218674800", - "swapFee": "9293937306440677408", - "reserves": [ - "8867280376008469079605921", - "37003724733081596277990490", - "28442490209844631083619667" + "type": "redeemBassets", + "inputQtys": [ + "2120670190507770628800512", + "4736454776094660457660416", + "3345573069707938436743168" ], - "mAssetSupply": "74185671287270848336933993", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "41220520223097525108736", - "expectedQty": "41078735110643481333857", + "expectedQty": "10223737163466285220363591", + "swapFee": "6137925053111638115087", "reserves": [ - "8867280376008469079605921", - "37003724733081596277990490", - "28483710730067728608728403" - ] + "646086151272378261288540081", + "337405290872547524166387708", + "839802377371473984785752252" + ], + "mAssetSupply": "1822160102373899398234216618" }, { - "type": "redeemMasset", - "inputQty": "676108391248787781399347", - "expectedQtys": [ - "80745069603167381291472", - "336954308700237959692986", - "259371431592320239767975" + "type": "mintMulti", + "inputQtys": [ + "2418111001595781817827328", + "1434006085249236172013568", + "2907042720908585709076480" ], - "redemptionFee": "202832517374636334419", + "expectedQty": "6756996760768844323247636", "reserves": [ - "8786535306405301698314449", - "36666770424381358318297504", - "28224339298475408368960428" + "648504262273974043106367409", + "338839296957796760338401276", + "842709420092382570494828732" ], - "mAssetSupply": "73550844463650078673202922" + "mAssetSupply": "1828917099134668242557464254" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "243873758861038071054336", - "expectedQty": "242377562520407233905156", + "inputIndex": 2, + "inputQty": "4256557841711991078518784", + "expectedQty": "4241999964314266459235202", "reserves": [ - "8786535306405301698314449", - "36910644183242396389351840", - "28224339298475408368960428" + "648504262273974043106367409", + "338839296957796760338401276", + "846965977934094561573347516" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "86519556727440949641216", - "expectedQty": "88430125575856925084200", + "inputQty": "1262822497325279462031360", + "expectedQty": "1261293587128308127293312", "reserves": [ - "8873054863132742647955665", - "36910644183242396389351840", - "28224339298475408368960428" + "649767084771299322568398769", + "338839296957796760338401276", + "846965977934094561573347516" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "731750367616046465024", + "5909100234565576818688", + "1391788746350195638272" + ], + "expectedQty": "8071359686724895496883", + "swapFee": "4845723245982526814", + "reserves": [ + "649766353020931706521933745", + "338833387857562194761582588", + "846964586145348211377709244" + ], + "mAssetSupply": "1834412321326424092248495885" + }, { "type": "mint", - "inputIndex": 0, - "inputQty": "118717763948332579815424", - "expectedQty": "121278954814166067176062", + "inputIndex": 2, + "inputQty": "5422949364602889111076864", + "expectedQty": "5404230867167950954071433", "reserves": [ - "8991772627081075227771089", - "36910644183242396389351840", - "28224339298475408368960428" + "649766353020931706521933745", + "338833387857562194761582588", + "852387535509951100488786108" ] }, { - "type": "redeemMasset", - "inputQty": "178565587676931545261670", - "expectedQtys": [ - "21690214874755904936911", - "89036927055847812057155", - "68083570333859716999289" + "type": "redeemBassets", + "inputQtys": [ + "11450537110050998272", + "32112315758584090624", + "24157150456648073216" ], - "redemptionFee": "53569676303079463578", + "expectedQty": "67865727039900934490", + "swapFee": "40743882553472644", "reserves": [ - "8970082412206319322834178", - "36821607256186548577294685", - "28156255728141548651961139" + "649766341570394596470935473", + "338833355745246436177491964", + "852387511352800643840712892" ], - "mAssetSupply": "73824419088559880433570248" + "mAssetSupply": "1839816484327865003301632828" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "29420177760178384896", - "outputIndex": 2, - "expectedQty": "29322704953213520028", - "swapFee": "17545981702419841", + "type": "redeem", + "inputIndex": 2, + "inputQty": "203251966425972156137472", + "expectedQty": "203837539860278775254945", + "swapFee": "121951179855583293682", "reserves": [ - "8970082412206319322834178", - "36821636676364308755679581", - "28156226405436595438441111" + "649766341570394596470935473", + "338833355745246436177491964", + "852183673812940365065457947" ], - "mAssetSupply": "73824419106105862135990089", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1839613354312618886728789038" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "2131587634704730816512", + "expectedQty": "2137727152838173677462", + "swapFee": "1278952580822838489", + "reserves": [ + "649766341570394596470935473", + "338833355745246436177491964", + "852181536085787526891780485" + ], + "mAssetSupply": "1839611224003936762820811015" }, { "type": "redeemBassets", "inputQtys": [ - "2036891591046551", - "36472113369844", - "2710490325840926" + "2947187649220208121348096", + "3480682702318711408164864", + "3231270853297932314083328" ], - "expectedQty": "4818030644464802", - "swapFee": "2892553919030", + "expectedQty": "9670870450168603071755409", + "swapFee": "5806005873625337045280", "reserves": [ - "8970082410169427731787627", - "36821636676327836642309737", - "28156226402726105112600185" + "646819153921174388349587377", + "335352673042927724769327100", + "848950265232489594577697157" ], - "mAssetSupply": "73824419101287831491525287" + "mAssetSupply": "1829940353553768159749055606" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "398516520766960", - "23941500293250", - "463378879975256" + "24509362112429262110720", + "5287916968824885215232", + "20596714871990819749888" ], - "expectedQty": "892643772942454", + "expectedQty": "50332712654962017263948", + "swapFee": "30217758247925965937", "reserves": [ - "8970082410567944252554587", - "36821636676351778142602987", - "28156226403189483992575441" + "646794644559061959087476657", + "335347385125958899884111868", + "848929668517617603757947269" ], - "mAssetSupply": "73824419102180475264467741" + "mAssetSupply": "1829890020841113197731791658" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "224655565853843844497408", - "expectedQty": "225258330798610090233558", - "swapFee": "134793339512306306698", + "type": "swap", + "inputIndex": 1, + "inputQty": "3286473701357723714584576", + "outputIndex": 0, + "expectedQty": "3313320579744622753695519", + "swapFee": "1986865391165271409533", "reserves": [ - "8970082410567944252554587", - "36821636676351778142602987", - "27930968072390873902341883" + "643481323979317336333781138", + "338633858827316623598696444", + "848929668517617603757947269" ], - "mAssetSupply": "73599898329666143726277031" + "mAssetSupply": "1829892007706504363003201191", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "205823706240776255255347", - "expectedQtys": [ - "25077503804135411198657", - "102941610964222858112666", - "78086122961741918799923" + "type": "redeemBassets", + "inputQtys": [ + "913082763925608766373888", + "246591150255782282395648", + "980739326490089072099328" ], - "redemptionFee": "61747111872232876576", + "expectedQty": "2137805366253535382149892", + "swapFee": "1283453291727157523804", "reserves": [ - "8945004906763808841355930", - "36718695065387555284490321", - "27852881949429131983541960" + "642568241215391727567407250", + "338387267677060841316300796", + "847948929191127514685847941" ], - "mAssetSupply": "73394136370537239703898260" + "mAssetSupply": "1827754202340250827621051299" }, { "type": "redeemBassets", "inputQtys": [ - "491505281370809104859136", - "7889256044848387192782848", - "6926469336562283235508224" + "2212581317360394761666560", + "5809748633158141977034752", + "16320438205715252982579200" ], - "expectedQty": "15253787237893110691654628", - "swapFee": "9157767002937628992388", + "expectedQty": "24327481011312776890461233", + "swapFee": "14605251757842371557211", "reserves": [ - "8453499625392999736496794", - "28829439020539168091707473", - "20926412612866848748033736" + "640355659898031332805740690", + "332577519043902699339266044", + "831628490985412261703268741" ], - "mAssetSupply": "58140349132644129012243632" + "mAssetSupply": "1803426721328938050730590066" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "668510613057744190570496", - "outputIndex": 0, - "expectedQty": "654426481214403310193040", - "swapFee": "399057261649658140670", + "type": "redeemBassets", + "inputQtys": [ + "4180358897779986497798144", + "102951635439447235887104", + "1721665735285051706310656" + ], + "expectedQty": "5994732219900196237272977", + "swapFee": "3598998731178825037386", "reserves": [ - "7799073144178596426303754", - "29497949633596912282277969", - "20926412612866848748033736" + "636175301000251346307942546", + "332474567408463252103378940", + "829906825250127209996958085" ], - "mAssetSupply": "58140748189905778670384302", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1797431989109037854493317089" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "386075888831572775796736", - "expectedQty": "379044054935395742950882", - "swapFee": "231645533298943665478", + "type": "redeemBassets", + "inputQtys": [ + "52743509604788906361880576", + "56326250957547856742842368", + "42088941675978188684001280" + ], + "expectedQty": "151411707788230383059165863", + "swapFee": "90901565612305613203421", "reserves": [ - "7420029089243200683352872", - "29497949633596912282277969", - "20926412612866848748033736" + "583431791395462439946061970", + "276148316450915395360536572", + "787817883574149021312956805" ], - "mAssetSupply": "57754903946607504838253044" + "mAssetSupply": "1646020281320807471434151226" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "118404581456395185946624", - "outputIndex": 0, - "expectedQty": "115399629029578901615647", - "swapFee": "70617259391809515588", + "type": "redeemMasset", + "inputQty": "35756288087678373383372", + "expectedQtys": [ + "12670012054376381579459", + "5996934945660647368209", + "17108533043191632697669" + ], + "redemptionFee": "10726886426303512015", "reserves": [ - "7304629460213621781737225", - "29616354215053307468224593", - "20926412612866848748033736" + "583419121383408063564482511", + "276142319515969734713168363", + "787800775041105829680259136" ], - "mAssetSupply": "57754974563866896647768632", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1645984535759606219364279869" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "320416979290955351851008", - "outputIndex": 1, - "expectedQty": "321304193060579637329825", - "swapFee": "191736093297813693990", + "inputQty": "114175814966701025394688", + "expectedQty": "114574849379965386661959", + "swapFee": "68505488980020615236", "reserves": [ - "7304629460213621781737225", - "29295050021992727830894768", - "21246829592157804099884744" + "583419121383408063564482511", + "276142319515969734713168363", + "787686200191725864293597177" ], - "mAssetSupply": "57755166299960194461462622", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1645870428450128498359500417" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "57725588154645838036992", - "expectedQty": "57565123759035857510620", + "inputIndex": 0, + "inputQty": "86927957917097355378688", + "expectedQty": "86800445931996745807834", "reserves": [ - "7304629460213621781737225", - "29295050021992727830894768", - "21304555180312449937921736" + "583506049341325160919861199", + "276142319515969734713168363", + "787686200191725864293597177" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1386638391228904499052544", - "208548429928625034231808", - "971870745526758069501952" - ], - "expectedQty": "2586641377645687389871600", + "type": "mint", + "inputIndex": 0, + "inputQty": "27228518466270598791168", + "expectedQty": "27188559744454653896584", "reserves": [ - "8691267851442526280789769", - "29503598451921352865126576", - "22276425925839208007423688" - ], - "mAssetSupply": "60399372801364917708844842" + "583533277859791431518652367", + "276142319515969734713168363", + "787686200191725864293597177" + ] }, { "type": "redeemBassets", "inputQtys": [ - "793877769460383995658240", - "1924921276711862253125632", - "1526588054559301759401984" + "15387187489629806592", + "1860240388766515968", + "15104806672717977600" ], - "expectedQty": "4243856812863658336628536", - "swapFee": "2547842793394231540901", + "expectedQty": "32286166361572938072", + "swapFee": "19383329814832662", "reserves": [ - "7897390081982142285131529", - "27578677175209490612000944", - "20749837871279906248021704" + "583533262472603941888845775", + "276142317655729345946652395", + "787686185086919191575619577" ], - "mAssetSupply": "56155515988501259372216306" + "mAssetSupply": "1645984385169638588186266763" }, { - "type": "mintMulti", - "inputQtys": [ - "2812537316861914", - "3612140452147350", - "5181450936169668" + "type": "redeemMasset", + "inputQty": "24434187475647852235980", + "expectedQtys": [ + "8659792774232749156463", + "4098027312037313889382", + "11689477828693455647097" ], - "expectedQty": "11617861884040309", + "redemptionFee": "7330256242694355670", "reserves": [ - "7897390084794679601993443", - "27578677178821631064148294", - "20749837876461357184191372" + "583524602679829709139689312", + "276138219628417308632763013", + "787674495609090498119972480" ], - "mAssetSupply": "56155516000119121256256615" + "mAssetSupply": "1645959958312419183028386453" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 2, + "inputQty": "5342040536130979364864", + "expectedQty": "5320246385471845988521", + "reserves": [ + "583524602679829709139689312", + "276138219628417308632763013", + "787679837649626629099337344" + ] + }, + { + "type": "swap", "inputIndex": 0, - "inputQty": "1836448755513402540949504", - "expectedQty": "1799916941453676501493653", - "swapFee": "1101869253308041524569", + "inputQty": "43957420636230703021817856", + "outputIndex": 2, + "expectedQty": "44020071353236457375351036", + "swapFee": "26329238868471654945303", + "reserves": [ + "627482023316060412161507168", + "276138219628417308632763013", + "743659766296390171723986308" + ], + "mAssetSupply": "1645991607797673126529320277", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "1530500068275004026493337", + "expectedQtys": [ + "583279505554273322606718", + "256685862263136645720251", + "691273191371541208955045" + ], + "redemptionFee": "459150020482501207948", "reserves": [ - "6097473143341003100499790", - "27578677178821631064148294", - "20749837876461357184191372" + "626898743810506138838900450", + "275881533766154171987042762", + "742968493105018630515031263" ], - "mAssetSupply": "54320169113859026756831680" + "mAssetSupply": "1644461566879418605004034888" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "312944194830083259629568", + "inputIndex": 2, + "inputQty": "3823071944873512594833408", "outputIndex": 1, - "expectedQty": "322392742062580662253734", - "swapFee": "192331029326291514704", + "expectedQty": "3770028037740831850265935", + "swapFee": "2285677995628371177889", "reserves": [ - "6410417338171086360129358", - "27256284436759050401894560", - "20749837876461357184191372" + "626898743810506138838900450", + "272111505728413340136776827", + "746791565049892143109864671" ], - "mAssetSupply": "54320361444888353048346384", + "mAssetSupply": "1644463852557414233375212777", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", + "inputQtys": [ + "3335235888594135984111616", + "14697595669838540425920512", + "16736313951817064333180928" + ], + "expectedQty": "34843486495890401697305058", + "reserves": [ + "630233979699100274823012066", + "286809101398251880562697339", + "763527879001709207443045599" + ], + "mAssetSupply": "1679307339053304635072517835" + }, + { + "type": "mintMulti", "inputQtys": [ - "1550389949877721235456", - "406683903306514432000", - "605512078213292752896" + "38966982721917505503232", + "98991640819136488013824", + "3121828261700623663104" ], - "expectedQty": "2593267296028896416760", - "swapFee": "1556894514325933410", + "expectedQty": "141907422868425902034053", "reserves": [ - "6408866948221208638893902", - "27255877752855743887462560", - "20749232364383143891438476" + "630272946681822192328515298", + "286908093039071017050711163", + "763531000829970908066708703" ], - "mAssetSupply": "54317768177592324151929624" + "mAssetSupply": "1679449246476173060974551888" }, { "type": "swap", "inputIndex": 2, - "inputQty": "162632757761095063568384", + "inputQty": "57329736274689777664", "outputIndex": 1, - "expectedQty": "162980816246307082761207", - "swapFee": "97239272332004862159", + "expectedQty": "56571325609151016064", + "swapFee": "34276175874742537", "reserves": [ - "6408866948221208638893902", - "27092896936609436804701353", - "20911865122144238955006860" + "630272946681822192328515298", + "286908036467745407899695099", + "763531058159707182756486367" ], - "mAssetSupply": "54317865416864656156791783", + "mAssetSupply": "1679449246510449236849294425", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "103617144616692458979328", - "169684651032183337648128", - "22067815707852538904576" + "33320971785774953398272", + "550181043428891226537984", + "370182719100671183814656" ], - "expectedQty": "296576928447374942602418", + "expectedQty": "957374312418523107630095", "reserves": [ - "6512484092837901097873230", - "27262581587641620142349481", - "20933932937852091493911436" + "630306267653607967281913570", + "287458217511174299126233083", + "763901240878807853940301023" ], - "mAssetSupply": "54614442345312031099394201" + "mAssetSupply": "1680406620822867759956924520" }, { "type": "redeemMasset", - "inputQty": "906156947488658633523", + "inputQty": "180929336437295441929830", "expectedQtys": [ - "108022018590271335700", - "452202117210194556050", - "347229361445510952386" + "67844699656432416738810", + "30941333493984662860809", + "82224551641426294068956" ], - "redemptionFee": "271847084246597590", + "redemptionFee": "54278800931188632578", "reserves": [ - "6512376070819310826537530", - "27262129385524409947793431", - "20933585708490645982959050" + "630238422953951534865174760", + "287427276177680314463372274", + "763819016327166427646232067" ], - "mAssetSupply": "54613536460211626687358268" + "mAssetSupply": "1680225745765231395703627268" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3614131197676905977348096", - "expectedQty": "3449904694640807176528032", - "swapFee": "2168478718606143586408", + "type": "redeemMasset", + "inputQty": "7092383584001668730060", + "expectedQtys": [ + "2659494825879535432442", + "1212892337202108163072", + "3223181335579912847406" + ], + "redemptionFee": "2127715075200500619", "reserves": [ - "3062471376178503650009498", - "27262129385524409947793431", - "20933585708490645982959050" + "630235763459125655329742318", + "287426063285343112355209202", + "763815793145830847733384661" ], - "mAssetSupply": "51001573741253326853596580" + "mAssetSupply": "1680218655509362469235397827" }, { "type": "redeemBassets", "inputQtys": [ - "4471918086966915926851584", - "25095123936644176019456", - "3914676639373238399401984" + "2761778019412506624", + "54208592595928632786944", + "43456506651540644167680" ], - "insufficientLiquidityError": true - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "13345935094312637300736", - "expectedQty": "13166159647692342353656", + "expectedQty": "98012292545016459357331", + "swapFee": "58842681135691290388", "reserves": [ - "3062471376178503650009498", - "27275475320618722585094167", - "20933585708490645982959050" - ] + "630235760697347635917235694", + "287371854692747183722422258", + "763772336639179307089216981" + ], + "mAssetSupply": "1680120643216817452776040496" }, { "type": "redeemBassets", "inputQtys": [ - "87555643543041056178176", - "83541052726687100305408", - "18658491946328270045184" + "315960203299193920", + "88783226149672256", + "483014904017383104" ], - "expectedQty": "197323796471797291694380", - "swapFee": "118465357097336777082", + "expectedQty": "886265483659343122", + "swapFee": "532078537317996", "reserves": [ - "2974915732635462593831322", - "27191934267892035484788759", - "20914927216544317712913866" + "630235760381387432618041774", + "287371854603963957572750002", + "763772336156164403071833877" ], - "mAssetSupply": "50817416104429221904255856" + "mAssetSupply": "1680120642330551969116697374" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "1294405159661156171776000", - "outputIndex": 2, - "expectedQty": "1396288906003720268170843", - "swapFee": "833416512482490239229", + "inputQty": "240994197647976576", + "expectedQty": "241309668897481557", + "swapFee": "144596518588785", "reserves": [ - "4269320892296618765607322", - "27191934267892035484788759", - "19518638310540597444743023" + "630235760140077763720560217", + "287371854603963957572750002", + "763772336156164403071833877" ], - "mAssetSupply": "50818249520941704394495085", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1680120642089702367987309583" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1899534517931127603200", - "outputIndex": 2, - "expectedQty": "2001933705119382974334", - "swapFee": "1195361277920066502", + "type": "redeemMasset", + "inputQty": "68147707507096971902976", + "expectedQtys": [ + "25555449073265893468625", + "11652650103176142580377", + "30970227769795128422273" + ], + "redemptionFee": "20444312252129091570", "reserves": [ - "4271220426814549893210522", - "27191934267892035484788759", - "19516636376835478061768689" + "630210204691004497827091592", + "287360201953860781430169625", + "763741365928394607943411604" ], - "mAssetSupply": "50818250716302982314561587", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1680052514826507523144498177" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "481370465290868578320384", - "435302156746685922934784", - "418462111593299236093952" + "8708348585442996616429568", + "7493304812692999189299200", + "11630702332268918666690560" ], - "expectedQty": "1354208693287145019155675", - "swapFee": "813013023786558946861", + "expectedQty": "27843142783180236407018889", "reserves": [ - "3789849961523681314890138", - "26756632111145349561853975", - "19098174265242178825674737" + "638918553276447494443521160", + "294853506766553780619468825", + "775372068260663526610102164" ], - "mAssetSupply": "49464042023015837295405912" + "mAssetSupply": "1707895657609687759551517066" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "52151596944992409485312", - "expectedQty": "52441820877656389247208", - "swapFee": "31290958166995445691", + "type": "redeemMasset", + "inputQty": "58462497198999241700147", + "expectedQtys": [ + "21864080591044739231802", + "10090019770809076063347", + "26533581317306101170378" + ], + "redemptionFee": "17538749159699772510", "reserves": [ - "3789849961523681314890138", - "26756632111145349561853975", - "19045732444364522436427529" + "638896689195856449704289358", + "294843416746782971543405478", + "775345534679346220508931786" ], - "mAssetSupply": "49411921717029011881366291" + "mAssetSupply": "1707837212651237920009589429" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "60492922966305156441833472", + "33488315629895934644584448", + "27265176966251305911713792" + ], + "expectedQty": "121354307699678998033487587", + "swapFee": "72856298398846706844199", + "reserves": [ + "578403766229551293262455886", + "261355101116887036898821030", + "748080357713094914597217994" + ], + "mAssetSupply": "1586482904951558921976101842" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "33350942641571770368", + "expectedQty": "33291970221729880814", + "reserves": [ + "578403799580493934834226254", + "261355101116887036898821030", + "748080357713094914597217994" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "181044421833981201219584", - "expectedQty": "170332888182908489043905", - "swapFee": "108626653100388720731", + "inputQty": "250649297539060695040", + "expectedQty": "250942634065121523627", + "swapFee": "150389578523436417", "reserves": [ - "3619517073340772825846233", - "26756632111145349561853975", - "19045732444364522436427529" + "578403548637859869712702627", + "261355101116887036898821030", + "748080357713094914597217994" ], - "mAssetSupply": "49230985921848131068867438" + "mAssetSupply": "1586482687744621183168724033" }, { "type": "redeemBassets", "inputQtys": [ - "135504597605581504", - "821529993261845504", - "1136681465429102592" + "15551601145414368117129216", + "15769484397589704671756288", + "957365547549606935527424" ], - "expectedQty": "2085862607987558738", - "swapFee": "1252268926148224", + "expectedQty": "32415909426815988008826891", + "swapFee": "19461222389523306789369", "reserves": [ - "3619516937836175220264729", - "26756631289615356300008471", - "19045731307683057007324937" + "562851947492445501595573411", + "245585616719297332227064742", + "747122992165545307661690570" ], - "mAssetSupply": "49230983835985523081308700" + "mAssetSupply": "1554066778317805195159897142" }, { - "type": "mintMulti", - "inputQtys": [ - "78897803081152672563200", - "226962198506822539673600", - "77684709680728290361344" + "type": "redeem", + "inputIndex": 1, + "inputQty": "2954274521788663296", + "expectedQty": "2919384465669461222", + "swapFee": "1772564713073197", + "reserves": [ + "562851947492445501595573411", + "245585613799912866557603520", + "747122992165545307661690570" ], - "expectedQty": "385556869523332180983670", + "mAssetSupply": "1554066775365303238084307043" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "25446382526520451137536", + "outputIndex": 2, + "expectedQty": "25831870857912285176251", + "swapFee": "15441008740163119037", "reserves": [ - "3698414740917327892827929", - "26983593488122178839682071", - "19123416017363785297686281" + "562851947492445501595573411", + "245611060182439387008741056", + "747097160294687395376514319" ], - "mAssetSupply": "49616540705508855262292370" + "mAssetSupply": "1554066790806311978247426080", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1064139323633838879408128", - "expectedQty": "1057068286393949651032293", + "type": "mintMulti", + "inputQtys": [ + "1344588866818583031709696", + "1108683455234573781172224", + "1808738982827924844969984" + ], + "expectedQty": "4264245802671905483053210", "reserves": [ - "3698414740917327892827929", - "26983593488122178839682071", - "20187555340997624177094409" - ] + "564196536359264084627283107", + "246719743637673960789913280", + "748905899277515320221484303" + ], + "mAssetSupply": "1558331036608983883730479290" }, { "type": "swap", "inputIndex": 2, - "inputQty": "746710927432758885089280", + "inputQty": "377194979874918283345920", "outputIndex": 1, - "expectedQty": "748995720442741429257830", - "swapFee": "444814674631005107458", + "expectedQty": "371133264485554975257582", + "swapFee": "225335047425676808077", "reserves": [ - "3698414740917327892827929", - "26234597767679437410424241", - "20934266268430383062183689" + "564196536359264084627283107", + "246348610373188405814655698", + "749283094257390238504830223" ], - "mAssetSupply": "50674053806577435918432121", + "mAssetSupply": "1558331261944031309407287367", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "438544109479932417015808", - "508760517383315106299904", - "1034841649434945482915840" + "47873440727954136", + "1984305123300968", + "27702678572163424" ], - "expectedQty": "1999751694312883580622209", - "swapFee": "1200571359403372171676", + "expectedQty": "77374954659265440", + "swapFee": "46452844502260", "reserves": [ - "3259870631437395475812121", - "25725837250296122304124337", - "19899424618995437579267849" + "564196536311390643899328971", + "246348610371204100691354730", + "749283094229687559932666799" ], - "mAssetSupply": "48674302112264552337809912" + "mAssetSupply": "1558331261866656354748021927" }, { - "type": "mintMulti", - "inputQtys": [ - "544200913058460401664", - "513319911789372243968", - "145267691197846126592" - ], - "expectedQty": "1238209123645891847138", - "reserves": [ - "3260414832350453936213785", - "25726350570207911676368305", - "19899569886686635425394441" - ], - "mAssetSupply": "48675540321388198229657050" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9514158560383745392640", - "expectedQty": "9622947175062340472136", - "swapFee": "5708495136230247235", + "type": "mint", + "inputIndex": 2, + "inputQty": "1943521471570187978276864", + "expectedQty": "1935053396216874070612895", "reserves": [ - "3260414832350453936213785", - "25716727623032849335896169", - "19899569886686635425394441" - ], - "mAssetSupply": "48666031871322950714511645" + "564196536311390643899328971", + "246348610371204100691354730", + "751226615701257747910943663" + ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "3707290874690769726210048", - "expectedQty": "3730537202718705090092717", - "swapFee": "2224374524814461835726", + "inputIndex": 0, + "inputQty": "247390192625518037172224", + "expectedQty": "247692293252094974089203", + "swapFee": "148434115575310822303", "reserves": [ - "3260414832350453936213785", - "25716727623032849335896169", - "16169032683967930335301724" + "563948844018138548925239768", + "246348610371204100691354730", + "751226615701257747910943663" ], - "mAssetSupply": "44960965371156995450137323" + "mAssetSupply": "1560019073504363286092284901" }, { "type": "redeemBassets", "inputQtys": [ - "774667591303855656140800", - "32751701557027933257728", - "201636374523701735981056" + "962454604418634808819712", + "2321434057082337738358784", + "63074652334412389154816" ], - "expectedQty": "1076255568431361471470406", - "swapFee": "646141025674221415731", + "expectedQty": "3371562423169290109233766", + "swapFee": "2024151945068615234681", "reserves": [ - "2485747241046598280072985", - "25683975921475821402638441", - "15967396309444228599320668" + "562986389413719914116420056", + "244027176314121762952995946", + "751163541048923335521788847" ], - "mAssetSupply": "43884709802725633978666917" + "mAssetSupply": "1556647511081193995983051135" }, { "type": "redeemMasset", - "inputQty": "26225385264424195", + "inputQty": "388554487624331557024563", "expectedQtys": [ - "1485030263516951", - "15344070749032881", - "9539210728082655" + "140484766946246949912128", + "60893303350975572900102", + "187441538529321890450277" ], - "redemptionFee": "7867615579327", + "redemptionFee": "116566346287299467107", "reserves": [ - "2485747239561568016556034", - "25683975906131750653605560", - "15967396299905017871238013" + "562845904646773667166507928", + "243966283010770787380095844", + "750976099510394013631338570" ], - "mAssetSupply": "43884709776508116329822049" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1333344745757998726512640", - "expectedQty": "1322308278678797357957370", - "reserves": [ - "2485747239561568016556034", - "25683975906131750653605560", - "17300741045663016597750653" - ] + "mAssetSupply": "1556259073159915951725493679" }, { "type": "redeemBassets", "inputQtys": [ - "72123750412492128256", - "78456142762132471808", - "28244123462971314176" + "246340962900590309933056", + "587054426940791408558080", + "220717600199107405676544" ], - "expectedQty": "186047858097861210955", - "swapFee": "111695732298095583", + "expectedQty": "1059495701391522191522283", + "swapFee": "636079068275878842218", "reserves": [ - "2485675115811155524427778", - "25683897449988988521133752", - "17300712801539553626436477" + "562599563683873076856574872", + "243379228583829995971537764", + "750755381910194906225662026" ], - "mAssetSupply": "45206832007328815826568464" + "mAssetSupply": "1555199577458524429533971396" }, { "type": "mintMulti", "inputQtys": [ - "276785020795790917632", - "135700274547410220351488", - "38709041780130477768704" + "133448844897953282785280", + "251770059442171188084736", + "206472988216640982220800" ], - "expectedQty": "172199761472330703074875", + "expectedQty": "593457504029448926895225", "reserves": [ - "2485951900831951315345410", - "25819597724536398741485240", - "17339421843319684104205181" + "562733012528771030139360152", + "243630998643272167159622500", + "750961854898411547207882826" ], - "mAssetSupply": "45379031768801146529643339" + "mAssetSupply": "1555793034962553878460866621" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1073396854252916992", - "expectedQty": "1090286794638287287", - "swapFee": "644038112551750", + "type": "redeemMasset", + "inputQty": "420311744145638608076", + "expectedQtys": [ + "151981871420187388208", + "65799400933280988177", + "202818362405565301909" + ], + "redemptionFee": "126093523243691582", "reserves": [ - "2485951900831951315345410", - "25819596634249604103197953", - "17339421843319684104205181" + "562732860546899609951971944", + "243630932843871233878634323", + "750961652080049141642580917" ], - "mAssetSupply": "45379030696048330389278097" + "mAssetSupply": "1555792614776903256065950127" }, { - "type": "redeemMasset", - "inputQty": "47010415583494301286", - "expectedQtys": [ - "2574549753423177628", - "26739791757815998108", - "17957388562618399737" + "type": "mintMulti", + "inputQtys": [ + "11550882712042809191301120", + "9223017817301902621147136", + "15620530128240601739558912" ], - "redemptionFee": "14103124675048290", + "expectedQty": "36410239956416063519861385", "reserves": [ - "2485949326282197892167782", - "25819569894457846287199845", - "17339403885931121485805444" + "574283743258942419143273064", + "252853950661173136499781459", + "766582182208289743382139829" ], - "mAssetSupply": "45378983699735871570025101" + "mAssetSupply": "1592202854733319319585811512" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "68959066593963433984", - "outputIndex": 2, - "expectedQty": "78020767753720448694", - "swapFee": "46424373027836301", + "type": "redeem", + "inputIndex": 2, + "inputQty": "99587266697415606272", + "expectedQty": "99961676249149180423", + "swapFee": "59752360018449363", "reserves": [ - "2486018285348791855601766", - "25819569894457846287199845", - "17339325865163367765356750" + "574283743258942419143273064", + "252853950661173136499781459", + "766582082246613494232959406" ], - "mAssetSupply": "45378983746160244597861402", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1592202755205804982188654603" }, { - "type": "redeemBassets", - "inputQtys": [ - "287577165777911", - "341914681720344", - "425711646507025" - ], - "expectedQty": "1081013636717906", - "swapFee": "648997580579", + "type": "redeem", + "inputIndex": 2, + "inputQty": "22635894084932189814784", + "expectedQty": "22720993880549281056451", + "swapFee": "13581536450959313888", "reserves": [ - "2486018285061214689823855", - "25819569894115931605479501", - "17339325864737656118849725" + "574283743258942419143273064", + "252853950661173136499781459", + "766559361252732944951902955" ], - "mAssetSupply": "45378983745079230961143496" + "mAssetSupply": "1592180132893256500958153707" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "797542018448257351417856", - "expectedQty": "871702987626916652133734", + "type": "redeemBassets", + "inputQtys": [ + "137038598688469967437824", + "182650418089580304531456", + "53048763206411028004864" + ], + "expectedQty": "374312065679001037513340", + "swapFee": "224722072650991217238", "reserves": [ - "3283560303509472041241711", - "25819569894115931605479501", - "17339325864737656118849725" - ] + "574146704660253949175835240", + "252671300243083556195250003", + "766506312489526533923898091" + ], + "mAssetSupply": "1591805820827577499920640367" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "56142500085469", - "outputIndex": 2, - "expectedQty": "60464342107677", - "swapFee": "36071963772", + "type": "redeemBassets", + "inputQtys": [ + "11704341030225631232", + "72303769538648702976", + "35025029305888612352" + ], + "expectedQty": "119671589505629963940", + "swapFee": "71846061340182087", "reserves": [ - "3283560303565614541327180", - "25819569894115931605479501", - "17339325864677191776742048" + "574146692955912918950204008", + "252671227939314017546547027", + "766506277464497228035285739" ], - "mAssetSupply": "46250686732706183685241002", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1591805701155987994290676427" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "2310622312099498950656", - "expectedQty": "2323856985238433486764", - "swapFee": "1386373387259699370", + "inputQty": "14842202959635548309815296", + "expectedQty": "14897025549741349103572612", + "swapFee": "8905321775781328985889", "reserves": [ - "3283560303565614541327180", - "25819569894115931605479501", - "17337002007691953343255284" + "574146692955912918950204008", + "252671227939314017546547027", + "751609251914755878931713127" ], - "mAssetSupply": "46248377496767471445989716" + "mAssetSupply": "1576972403518128227309847020" }, { "type": "mintMulti", "inputQtys": [ - "29554536029190856114176", - "53794729971231213223936", - "48011755573811435536384" + "27297762731677563486208", + "91590148001540297719808", + "98876105242851076472832" ], - "expectedQty": "132485494475002302784356", + "expectedQty": "218299388086685458783364", "reserves": [ - "3313114839594805397441356", - "25873364624087162818703437", - "17385013763265764778791668" + "574173990718644596513690216", + "252762818087315557844266835", + "751708128019998730008185959" ], - "mAssetSupply": "46380862991242473748774072" + "mAssetSupply": "1577190702906214912768630384" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1656686215545943752704", - "expectedQty": "1772462827734137711601", + "inputQty": "9789951950569039793750016", + "expectedQty": "9771409594573866033809834", "reserves": [ - "3314771525810351341194060", - "25873364624087162818703437", - "17385013763265764778791668" + "583963942669213636307440232", + "252762818087315557844266835", + "751708128019998730008185959" ] }, { "type": "redeemMasset", - "inputQty": "1199659665519783863910", + "inputQty": "24516357074408805551308", "expectedQtys": [ - "85708901223492642320", - "668998643079381325175", - "449518289813515211676" + "9018724154632143234249", + "3903662480353245927775", + "11609361051333767495294" ], - "redemptionFee": "359897899655935159", + "redemptionFee": "7354907122322641665", "reserves": [ - "3314685816909127848551740", - "25872695625444083437378262", - "17384564244975951263579992" + "583954923945059004164205983", + "252758914424835204598339060", + "751696518658947396240690665" ], - "mAssetSupply": "46381436154302587758556922" + "mAssetSupply": "1586937603498621492319530575" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "4684694599180154830848", - "outputIndex": 1, - "expectedQty": "5069813350613692683604", - "swapFee": "3006880811015268546", + "type": "mint", + "inputIndex": 2, + "inputQty": "27547877185956329499394048", + "expectedQty": "27429464452162740983703206", "reserves": [ - "3319370511508308003382588", - "25867625812093469744694658", - "17384564244975951263579992" - ], - "mAssetSupply": "46381439161183398773825468", - "hardLimitError": false, - "insufficientLiquidityError": false + "583954923945059004164205983", + "252758914424835204598339060", + "779244395844903725740084713" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "4560074966082989568", - "17311909413786335232", - "11940953320553588736" + "type": "redeemMasset", + "inputQty": "19561998959297017203916", + "expectedQtys": [ + "7073916981781131350024", + "3061872592780171236914", + "9439615865356868590594" ], - "expectedQty": "33846646091220496330", + "redemptionFee": "5868599687789105161", "reserves": [ - "3319375071583274086372156", - "25867643124002883531029890", - "17384576185929271817168728" + "583947850028077223032855959", + "252755852552242424427102146", + "779234956229038368871494119" ], - "mAssetSupply": "46381473007829489994321798" + "mAssetSupply": "1614347511820424624075135026" }, { - "type": "redeemBassets", - "inputQtys": [ - "598092126738960542072832", - "274630344133169586896896", - "171660684376771122954240" + "type": "redeemMasset", + "inputQty": "197320892765691653704908", + "expectedQtys": [ + "71354242329721531868068", + "30884953771815251570790", + "95216927155196012370776" ], - "expectedQty": "1089582966688391308413235", - "swapFee": "654142265372258139931", + "redemptionFee": "59196267829707496111", "reserves": [ - "2721282944844313544299324", - "25593012779869713944132994", - "17212915501552500694214488" + "583876495785747501500987891", + "252724967598470609175531356", + "779139739301883172859123343" ], - "mAssetSupply": "45291890041141098685908563" + "mAssetSupply": "1614150250123926762128926229" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "135215651769398174154752", - "outputIndex": 2, - "expectedQty": "134208374310652795627845", - "swapFee": "79942732879511804077", + "type": "mint", + "inputIndex": 2, + "inputQty": "34542630855334427698921472", + "expectedQty": "34384329423173445730069760", "reserves": [ - "2721282944844313544299324", - "25728228431639112118287746", - "17078707127241847898586643" - ], - "mAssetSupply": "45291969983873978197712640", - "hardLimitError": false, - "insufficientLiquidityError": false + "583876495785747501500987891", + "252724967598470609175531356", + "813682370157217600558044815" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "4819705753631000419631104", + "inputIndex": 2, + "inputQty": "7108438567407841852784640", "outputIndex": 1, - "expectedQty": "5016432774077062019793176", - "swapFee": "2998240082367818437937", + "expectedQty": "6980733069710080176199475", + "swapFee": "4244706555114912443491", "reserves": [ - "7540988698475313963930428", - "20711795657562050098494570", - "17078707127241847898586643" + "583876495785747501500987891", + "245744234528760528999331881", + "820790808724625442410829455" ], - "mAssetSupply": "45294968223956346016150577", + "mAssetSupply": "1648538824253655322771439480", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "593637538937733671550976", - "expectedQtys": [ - "98802828733668433341027", - "271368129690287429411624", - "223767020845228579360636" + "type": "redeemBassets", + "inputQtys": [ + "54840011535222677962752", + "274403680711283075710976", + "253068675150749391388672" ], - "redemptionFee": "178091261681320101465", + "expectedQty": "584586985429602822290401", + "swapFee": "350962768919113161271", "reserves": [ - "7442185869741645530589401", - "20440427527871762669082946", - "16854940106396619319226007" + "583821655774212278823025139", + "245469830848049245923620905", + "820537740049474693019440783" ], - "mAssetSupply": "44701508776280293664701066" + "mAssetSupply": "1647954237268225719949149079" }, { - "type": "redeemMasset", - "inputQty": "55084981080985042944", - "expectedQtys": [ - "9168139806793447142", - "25180867633001387307", - "20763852184726294519" - ], - "redemptionFee": "16525494324295512", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3077853567450649225854976", + "expectedQty": "3091284796411481496401837", + "swapFee": "1846712140470389535512", "reserves": [ - "7442176701601838737142259", - "20440402347004129667695639", - "16854919342544434592931488" + "583821655774212278823025139", + "245469830848049245923620905", + "817446455253063211523038946" ], - "mAssetSupply": "44701453707824707003953634" + "mAssetSupply": "1644878230412915541112829615" }, { - "type": "mintMulti", - "inputQtys": [ - "1514284394290426", - "1440116184608502", - "2704902894300474" + "type": "redeem", + "inputIndex": 1, + "inputQty": "33870978479230402980478976", + "expectedQty": "33339957993545414048962374", + "swapFee": "20322587087538241788287", + "reserves": [ + "583821655774212278823025139", + "212129872854503831874658531", + "817446455253063211523038946" ], - "expectedQty": "5663440486383407", + "mAssetSupply": "1611027574520772676374138926" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "912069390147830117564416", + "expectedQty": "916801005514034574851008", + "swapFee": "547241634088698070538", "reserves": [ - "7442176703116123131432685", - "20440402348444245852304141", - "16854919345249337487231962" + "583821655774212278823025139", + "212129872854503831874658531", + "816529654247549176948187938" ], - "mAssetSupply": "44701453713488147490337041" + "mAssetSupply": "1610116052372258934954645048" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "25873643678662043631616", + "expectedQty": "25809935651079721513391", + "reserves": [ + "583847529417890940866656755", + "212129872854503831874658531", + "816529654247549176948187938" + ] }, { "type": "redeemMasset", - "inputQty": "365090967405019867276902", + "inputQty": "4358740479919254195404", "expectedQtys": [ - "60764385608169288745794", - "166893173843471841301943", - "137618180721305337709299" + "1580032460599380802181", + "574074682318360682472", + "2209726501779357684505" ], - "redemptionFee": "109527290221505960183", + "redemptionFee": "1307622143975776258", "reserves": [ - "7381412317507953842686891", - "20273509174600774011002198", - "16717301164528032149522663" + "583845949385430341485854574", + "212129298779821513513976059", + "816527444521047397590503433" ], - "mAssetSupply": "44336472273373349129020322" + "mAssetSupply": "1610137504875052239397739293" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "42842352480566548365312", + "expectedQty": "42736843134425222608375", + "reserves": [ + "583888791737910908034219886", + "212129298779821513513976059", + "816527444521047397590503433" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1155508632530369667661824", - "219178286945520169517056", - "2176746062960160315277312" + "33493358370377339857010688", + "13540864623527062430285824", + "2419684649345068472205312" ], - "expectedQty": "3559094198047914466293546", - "swapFee": "2136738561965928236718", + "expectedQty": "49611032269235082284068237", + "swapFee": "29784490055574394006845", "reserves": [ - "6225903684977584175025067", - "20054330887655253841485142", - "14540555101567871834245351" + "550395433367533568177209198", + "198588434156294451083690235", + "814107759871702329118298121" ], - "mAssetSupply": "40777378075325434662726776" + "mAssetSupply": "1560569209448951582336279431" }, { "type": "redeemMasset", - "inputQty": "7574481690067702", + "inputQty": "1835494376500034289637785", "expectedQtys": [ - "1156127448431385", - "3724015592320728", - "2700127679281977" + "647164279780444229773898", + "233503646963698626353665", + "957241703219624308074794" ], - "redemptionFee": "2272344507020", + "redemptionFee": "550648312950010286891", "reserves": [ - "6225903683821456726593682", - "20054330883931238249164414", - "14540555098867744154963374" + "549748269087753123947435300", + "198354930509330752457336570", + "813150518168482704810223327" ], - "mAssetSupply": "40777378067753225317166094" + "mAssetSupply": "1558734265720764498056928537" }, { "type": "mint", "inputIndex": 0, - "inputQty": "208503860496896196608", - "expectedQty": "211092983322193935074", - "reserves": [ - "6226112187681953622790290", - "20054330883931238249164414", - "14540555098867744154963374" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1567319918745849430016", - "expectedQty": "1564508342819119370182", + "inputQty": "5926399308634753", + "expectedQty": "5912734975272945", "reserves": [ - "6226112187681953622790290", - "20054330883931238249164414", - "14542122418786490004393390" + "549748269093679523256070053", + "198354930509330752457336570", + "813150518168482704810223327" ] }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "1992930356677038833664", - "outputIndex": 1, - "expectedQty": "1997585209023537987161", - "swapFee": "1193612125393883858", - "reserves": [ - "6226112187681953622790290", - "20052333298722214711177253", - "14544115349143167043227054" - ], - "mAssetSupply": "40779154862691492024355208", - "hardLimitError": false, - "insufficientLiquidityError": false - }, { "type": "mint", "inputIndex": 2, - "inputQty": "2729731811738174976", - "expectedQty": "2724830439740277175", + "inputQty": "17453656115751195827503104", + "expectedQty": "17342325126645172404765975", "reserves": [ - "6226112187681953622790290", - "20052333298722214711177253", - "14544118078874978781402030" + "549748269093679523256070053", + "198354930509330752457336570", + "830604174284233900637726431" ] }, { "type": "mintMulti", "inputQtys": [ - "743998057776058137051136", - "671059793763155218268160", - "730498001808028814278656" + "9373316937355032698814464", + "2980015790126563393011712", + "6950713403667816852226048" ], - "expectedQty": "2149841582756770789170587", + "expectedQty": "19297630378272234013302965", "reserves": [ - "6970110245458011759841426", - "20723393092485369929445413", - "15274616080683007595680686" + "559121586031034555954884517", + "201334946299457315850348282", + "837554887687901717489952479" ], - "mAssetSupply": "42928999170278702553802970" + "mAssetSupply": "1595374221231594639450270422" }, { - "type": "mintMulti", - "inputQtys": [ - "9299899932162596536320", - "15756172970696340668416", - "4486905369859835035648" + "type": "redeemMasset", + "inputQty": "30006401237885128382873", + "expectedQtys": [ + "10513015228657007774584", + "3785647718472364146463", + "15748322921323016728054" ], - "expectedQty": "29566988752389873605824", + "redemptionFee": "9001920371365538514", "reserves": [ - "6979410145390174356377746", - "20739149265456066270113829", - "15279102986052867430716334" + "559111073015805898947109933", + "201331160651738843486201819", + "837539139364980394473224425" ], - "mAssetSupply": "42958566159031092427408794" + "mAssetSupply": "1595344223832277125687426063" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "12680895534919755776", - "15589635804184852480", - "31361345002157887488" + "114855284128888913920", + "103442127725173129216", + "127163077461565718528" ], - "expectedQty": "59649758861106903601", + "expectedQty": "346439913520237078323", + "swapFee": "207988741356956420", "reserves": [ - "6979422826285709276133522", - "20739164855091870454966309", - "15279134347397869588603822" + "559110958160521770058196013", + "201331057209611118313072603", + "837539012201902932907505897" ], - "mAssetSupply": "42958625808789953534312395" + "mAssetSupply": "1595343877392363605450347740" }, { "type": "redeem", + "inputIndex": 0, + "inputQty": "360537474721193706651648", + "expectedQty": "361139554292796567671540", + "swapFee": "216322484832716223990", + "reserves": [ + "558749818606228973490524473", + "201331057209611118313072603", + "837539012201902932907505897" + ], + "mAssetSupply": "1594983556240127244459920082" + }, + { + "type": "mint", "inputIndex": 2, - "inputQty": "24417791519591638237184", - "expectedQty": "24441769253459839400712", - "swapFee": "14650674911754982942", + "inputQty": "23638645284648901561810944", + "expectedQty": "23484054440214271882369316", + "reserves": [ + "558749818606228973490524473", + "201331057209611118313072603", + "861177657486551834469316841" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "18827388414753957123981312", + "outputIndex": 2, + "expectedQty": "19286204880018473405031258", + "swapFee": "11509344884655895652814", "reserves": [ - "6979422826285709276133522", - "20739164855091870454966309", - "15254692578144409749203110" + "558749818606228973490524473", + "220158445624365075437053915", + "841891452606533361064285583" ], - "mAssetSupply": "42934222667945273651058153" + "mAssetSupply": "1618479120025226172237942212", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "42614313845082340458496", - "20184891114115926327296", - "35880633203652175069184" + "type": "redeemMasset", + "inputQty": "52079325430925518438", + "expectedQtys": [ + "17974024801209474872", + "7082120172707920265", + "27082206284777856904" ], - "expectedQty": "98989635974686459431128", - "swapFee": "59429439248360892193", + "redemptionFee": "15623797629277655", "reserves": [ - "6936808512440626935675026", - "20718979963977754528639013", - "15218811944940757574133926" + "558749800632204172281049601", + "220158438542244902729133650", + "841891425524327076286428679" ], - "mAssetSupply": "42835233031970587191627025" + "mAssetSupply": "1618479067961524538941701429" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "72437351836748114558976", - "154782950070554160267264", - "150018903068921894535168" + "65651374130843411808256", + "124407750723890581602304", + "145101600060209262231552" ], - "expectedQty": "377107327899858079498043", + "expectedQty": "336258229455801993541876", + "swapFee": "201876063311468076971", "reserves": [ - "7009245864277375050234002", - "20873762914048308688906277", - "15368830848009679468669094" + "558684149258073328869241345", + "220034030791521012147531346", + "841746323924266867024197127" ], - "mAssetSupply": "43212340359870445271125068" + "mAssetSupply": "1618142809732068736948159553" }, { - "type": "redeemMasset", - "inputQty": "68502984273703428371251", - "expectedQtys": [ - "11108174399623968905421", - "33080505851189233166358", - "24356351123033798893095" + "type": "mintMulti", + "inputQtys": [ + "1025402591146860905234432", + "2387791077832446474977280", + "12418312308185004408569856" ], - "redemptionFee": "20550895282111028511", + "expectedQty": "15795952569741181481694800", "reserves": [ - "6998137689877751081328581", - "20840682408197119455739919", - "15344474496886645669775999" + "559709551849220189774475777", + "222421821869353458622508626", + "854164636232451871432766983" ], - "mAssetSupply": "43143857926492023953782328" + "mAssetSupply": "1633938762301809918429854353" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3618538526035758080", - "7752313038013650944", - "8790863852014709760" + "227269538288811802361856", + "1056494169444332116901888", + "84745701696052297465856" ], - "expectedQty": "20152949864752669055", - "swapFee": "12099029336453473", + "expectedQty": "1385133162058498592218575", "reserves": [ - "6998134071339225045570501", - "20840674655884081442088975", - "15344465706022793655066239" + "559936821387509001576837633", + "223478316038797790739410514", + "854249381934147923730232839" ], - "mAssetSupply": "43143837773542159201113273" + "mAssetSupply": "1635323895463868417022072928" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "93130437434448330752", - "outputIndex": 1, - "expectedQty": "94470935401241364764", - "swapFee": "56472978016941756", + "inputQty": "665991454609093307662336", + "expectedQty": "666749602652837086266199", + "swapFee": "399594872765455984597", "reserves": [ - "6998227201776659493901253", - "20840580184948680200724211", - "15344465706022793655066239" + "559270071784856164490571434", + "223478316038797790739410514", + "854249381934147923730232839" ], - "mAssetSupply": "43143837830015137218055029", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1634658303604132089170395189" }, { "type": "redeemMasset", - "inputQty": "140492420040387644620", + "inputQty": "374291162713884975326822", "expectedQtys": [ - "22782000064064704624", - "67844339061771266441", - "49952310580728459529" + "128018831840515611020313", + "51154950719369316572411", + "195540604607502460940226" ], - "redemptionFee": "42147726012116293", + "redemptionFee": "112287348814165492598", "reserves": [ - "6998204419776595429196629", - "20840512340609618429457770", - "15344415753712212926606710" + "559142052953015648879551121", + "223427161088078421422838103", + "854053841329540421269292613" ], - "mAssetSupply": "43143697379742822842526702" + "mAssetSupply": "1634284124728767018360560965" }, { - "type": "redeemMasset", - "inputQty": "36845201663084737331", - "expectedQtys": [ - "5974752135435970717", - "17792691973780895466", - "13100371937182720548" - ], - "redemptionFee": "11053560498925421", + "type": "swap", + "inputIndex": 2, + "inputQty": "1022889796166894137376768", + "outputIndex": 1, + "expectedQty": "999623126857930424026085", + "swapFee": "610096988335873708787", "reserves": [ - "6998198445024459993225912", - "20840494547917644648562304", - "15344402653340275743886162" + "559142052953015648879551121", + "222427537961220490998812018", + "855076731125707315406669381" ], - "mAssetSupply": "43143660545594720256714792" + "mAssetSupply": "1634284734825755354234269752", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "20101386820254573789184", - "expectedQty": "20314668060012977317117", + "type": "redeem", + "inputIndex": 2, + "inputQty": "248215875896347486846976", + "expectedQty": "249553576505071447735072", + "swapFee": "148929525537808492108", "reserves": [ - "7018299831844714567015096", - "20840494547917644648562304", - "15344402653340275743886162" - ] + "559142052953015648879551121", + "222427537961220490998812018", + "854827177549202243958934309" + ], + "mAssetSupply": "1634036667879384544555914884" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3358919944593957453824", - "expectedQty": "3394431749462045245265", + "inputIndex": 2, + "inputQty": "2106542662899150610235392", + "expectedQty": "2093973897913402531531294", "reserves": [ - "7021658751789308524468920", - "20840494547917644648562304", - "15344402653340275743886162" + "559142052953015648879551121", + "222427537961220490998812018", + "856933720212101394569169701" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "94203429437386915840", - "230020316568450826240", - "28526683076417847296" - ], - "expectedQty": "352716568249452595441", - "swapFee": "211756995146759613", + "type": "swap", + "inputIndex": 0, + "inputQty": "2577406851322469884624896", + "outputIndex": 1, + "expectedQty": "2528408967320843817190008", + "swapFee": "1543727652320182103168", "reserves": [ - "7021564548359871137553080", - "20840264527601076197736064", - "15344374126657199326038866" + "561719459804338118764176017", + "219899128993899647181622010", + "856933720212101394569169701" ], - "mAssetSupply": "43167016928835945826681733" + "mAssetSupply": "1636132185504950267269549346", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "334539942604834176", - "expectedQty": "333108358617820812", - "reserves": [ - "7021564548359871137553080", - "20840264862141018802570240", - "15344374126657199326038866" - ] - }, - { - "type": "redeem", "inputIndex": 0, - "inputQty": "3908721590109222731776", - "expectedQty": "3865505075044593188443", - "swapFee": "2345232954065533639", + "inputQty": "11743930943787468868026368", + "expectedQty": "11721510133714952345582539", "reserves": [ - "7017699043284826544364637", - "20840264862141018802570240", - "15344374126657199326038866" - ], - "mAssetSupply": "43163110885587149287304408" + "573463390748125587632202385", + "219899128993899647181622010", + "856933720212101394569169701" + ] }, { "type": "redeemMasset", - "inputQty": "16034789768128856064", + "inputQty": "16689694416915168808140", "expectedQtys": [ - "2606243347811848143", - "7739688084168468404", - "5698616134330205931" + "5806375588787110787505", + "2226501212082648137761", + "8676541719179190536797" ], - "redemptionFee": "4810436930438656", + "redemptionFee": "5006908325074550642", "reserves": [ - "7017696437041478732516494", - "20840257122452934634101836", - "15344368428041064995832935" + "573457584372536800521414880", + "219896902492687564533484249", + "856925043670382215378632904" ], - "mAssetSupply": "43163094855607818088887000" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "3529753687627657503571968", - "outputIndex": 0, - "expectedQty": "3433433740148070261795216", - "swapFee": "2112973127179635027786", - "reserves": [ - "3584262696893408470721278", - "20840257122452934634101836", - "18874122115668722499404903" - ], - "mAssetSupply": "43165207828734997723914786", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1647837010951156629520874387" }, { "type": "redeemBassets", "inputQtys": [ - "30925695464926224384", - "807792145636135141376", - "830117696841951739904" + "107357255961634184101888", + "23884638059674273316864", + "131188577918745317474304" ], - "expectedQty": "1657672449702096261539", - "swapFee": "995200590175362974", + "expectedQty": "261847274583473857594675", + "swapFee": "157202686361901455430", "reserves": [ - "3584231771197943544496894", - "20839449330307298498960460", - "18873291997971880547664999" + "573350227116575166337312992", + "219873017854627890260167385", + "856793855092463470061158600" ], - "mAssetSupply": "43163550156285295627653247" + "mAssetSupply": "1647575163676573155663279712" }, { "type": "redeemBassets", "inputQtys": [ - "28181898060989810606080", - "28711593932980884602880", - "4066786512105226895360" + "6498488796384981942272", + "6044927360707757867008", + "9914738809754229932032" ], - "expectedQty": "62079608925717323373711", - "swapFee": "37270127431889527740", + "expectedQty": "22491116913585989757933", + "swapFee": "13502771811238336856", "reserves": [ - "3556049873136953733890814", - "20810737736374317614357580", - "18869225211459775320769639" + "573343728627778781355370720", + "219866972927267182502300377", + "856783940353653715831226568" ], - "mAssetSupply": "43101470547359578304279536" + "mAssetSupply": "1647552672559659569673521779" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "234327294728146459295744", - "expectedQty": "236161793101400067540774", - "swapFee": "140596376836887875577", - "reserves": [ - "3556049873136953733890814", - "20574575943272917546816806", - "18869225211459775320769639" + "type": "redeemMasset", + "inputQty": "148697332808488046297088", + "expectedQtys": [ + "51730732646041831695726", + "19837802397205650806493", + "77304518634809196493384" ], - "mAssetSupply": "42867283849008268732859369" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "49094142092914163712", - "expectedQty": "46770738798073838321", - "swapFee": "29456485255748498", + "redemptionFee": "44609199842546413889", "reserves": [ - "3556003102398155660052493", - "20574575943272917546816806", - "18869225211459775320769639" + "573291997895132739523674994", + "219847135124869976851493884", + "856706635835018906634733184" ], - "mAssetSupply": "42867234784322661074444155" + "mAssetSupply": "1647404019836050924173638580" }, { "type": "mintMulti", "inputQtys": [ - "23962678940119165042688", - "305585101743350081388544", - "185559161696476496658432" + "680571129336802391883776", + "130070903841149115432960", + "321222327860762702249984" ], - "expectedQty": "512398979592611869534900", + "expectedQty": "1130849382246408990398168", "reserves": [ - "3579965781338274825095181", - "20880161045016267628205350", - "19054784373156251817428071" + "573972569024469541915558770", + "219977206028711125966926844", + "857027858162879669336983168" ], - "mAssetSupply": "43379633763915272943979055" + "mAssetSupply": "1648534869218297333164036748" }, { "type": "redeemMasset", - "inputQty": "2151939689886075636940", + "inputQty": "625177401910236893570662", "expectedQtys": [ - "177538596431542320443", - "1035494390622632718572", - "944969834781833462075" + "217603543464459513365710", + "83397399277487615684813", + "324915002647188018835992" ], - "redemptionFee": "645581906965822691", + "redemptionFee": "187553220573071068071", "reserves": [ - "3579788242741843282774738", - "20879125550625644995486778", - "19053839403321469983965996" + "573754965481005082402193060", + "219893808629433638351242031", + "856702943160232481318147176" ], - "mAssetSupply": "43377482469807293834164806" + "mAssetSupply": "1647909879369607669341534157" }, { - "type": "redeemMasset", - "inputQty": "5179269430318745622937", - "expectedQtys": [ - "427298325097699911872", - "2492218749356430171906", - "2274345048265738841003" - ], - "redemptionFee": "1553780829095623686", + "type": "redeem", + "inputIndex": 0, + "inputQty": "42044340804751507456", + "expectedQty": "42103231214126112842", + "swapFee": "25226604482850904", "reserves": [ - "3579360944416745582862866", - "20876633331876288565314872", - "19051565058273204245124993" + "573754923377773868276080218", + "219893808629433638351242031", + "856702943160232481318147176" ], - "mAssetSupply": "43372304754157804184165555" + "mAssetSupply": "1647909837350493469072877605" }, { - "type": "mintMulti", - "inputQtys": [ - "65705395606659864199168", - "31625373085220804231168", - "58640413159688461352960" - ], - "expectedQty": "158496492030721829970463", + "type": "redeem", + "inputIndex": 0, + "inputQty": "160000022299143962624", + "expectedQty": "160224129920475984484", + "swapFee": "96000013379486377", "reserves": [ - "3645066340023405447062034", - "20908258704961509369546040", - "19110205471432892706477953" + "573754763153643947800095734", + "219893808629433638351242031", + "856702943160232481318147176" ], - "mAssetSupply": "43530801246188526014136018" + "mAssetSupply": "1647909677446471183308401358" }, { - "type": "mintMulti", - "inputQtys": [ - "351404193705722314752", - "855902349112660066304", - "627698618770167693312" - ], - "expectedQty": "1840389729525535642602", + "type": "mint", + "inputIndex": 2, + "inputQty": "48686411028900404527104", + "expectedQty": "48395172382024661618960", "reserves": [ - "3645417744217111169376786", - "20909114607310622029612344", - "19110833170051662874171265" - ], - "mAssetSupply": "43532641635918051549778620" + "573754763153643947800095734", + "219893808629433638351242031", + "856751629571261381722674280" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "33431845127534827012096", - "981537086269699542482944", - "582492854196591690514432" - ], - "expectedQty": "1586676997395941735696924", + "type": "redeem", + "inputIndex": 2, + "inputQty": "93722318202518585909182464", + "expectedQty": "94184795228191257084370377", + "swapFee": "56233390921511151545509", "reserves": [ - "3678849589344645996388882", - "21890651693580321572095288", - "19693326024248254564685697" + "573754763153643947800095734", + "219893808629433638351242031", + "762566834343070124638303903" ], - "mAssetSupply": "45119318633313993285475544" + "mAssetSupply": "1554291987807256133212383363" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "510567984002140078080", - "9201018030153340551168", - "2462958096551615397888" + "37444405159701987328", + "88269218423735681024", + "101085371559979270144" ], - "expectedQty": "12103612944381433287453", + "expectedQty": "227516614518514500160", + "swapFee": "136591923865427956", "reserves": [ - "3679360157328648136466962", - "21899852711610474912646456", - "19695788982344806180083585" + "573754725709238788098108406", + "219893720360215214615561007", + "762566733257698564659033759" ], - "mAssetSupply": "45131422246258374718762997" + "mAssetSupply": "1554291760290641614697883203" }, { - "type": "mintMulti", - "inputQtys": [ - "201597930100936346173440", - "66326969052130770419712", - "197527851731335893745664" - ], - "expectedQty": "473306876769372311526799", + "type": "mint", + "inputIndex": 1, + "inputQty": "815369994108097789952", + "expectedQty": "827519129458061692249", "reserves": [ - "3880958087429584482640402", - "21966179680662605683066168", - "19893316834076142073829249" - ], - "mAssetSupply": "45604729123027747030289796" + "573754725709238788098108406", + "219894535730209322713350959", + "762566733257698564659033759" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "187541978370691891200", - "expectedQty": "186017725585814405411", + "inputQty": "596225930794009", + "expectedQty": "605109752675074", "reserves": [ - "3880958087429584482640402", - "21966367222640976374957368", - "19893316834076142073829249" + "573754725709238788098108406", + "219894535730805548644144968", + "762566733257698564659033759" ] }, { - "type": "swap", + "type": "redeem", + "inputIndex": 1, + "inputQty": "9869839940721026229338112", + "expectedQty": "9712307478672013998331742", + "swapFee": "5921903964432615737602", + "reserves": [ + "573754725709238788098108406", + "210182228252133534645813226", + "762566733257698564659033759" + ], + "mAssetSupply": "1544428669773619588898650016" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "1846538843903740449128448", - "outputIndex": 1, - "expectedQty": "1913017253531711773108072", - "swapFee": "1142885944097424792311", + "inputQty": "2938591577210280214528", + "expectedQty": "2944420348856254701904", + "swapFee": "1763154946326168128", "reserves": [ - "5727496931333324931768850", - "20053349969109264601849296", - "19893316834076142073829249" + "573751781288889931843406502", + "210182228252133534645813226", + "762566733257698564659033759" ], - "mAssetSupply": "45606058026697430269487518", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1544425732945197324944603616" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "80867277566950959480832", - "183764951122568431009792", - "127664818586404031299584" + "1898483342063535432663040", + "431858559883218249580544", + "1506997926151124468891648" ], - "expectedQty": "392472366568690414892086", - "swapFee": "235624794818105112002", + "expectedQty": "3831533795828477311657736", "reserves": [ - "5646629653766373972288018", - "19869585017986696170839504", - "19765652015489738042529665" + "575650264630953467276069542", + "210614086812016752895393770", + "764073731183849689127925407" ], - "mAssetSupply": "45213585660128739854595432" + "mAssetSupply": "1548257266741025802256261352" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "23854298396265021440", - "expectedQty": "23746936184188085811", + "inputQty": "86094647906647142301696", + "expectedQty": "86500087184631406211109", + "swapFee": "51656788743988285381", "reserves": [ - "5646629653766373972288018", - "19869585017986696170839504", - "19765675869788134307551105" - ] + "575650264630953467276069542", + "210614086812016752895393770", + "763987231096665057721714298" + ], + "mAssetSupply": "1548171223749907899102245037" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "221065401534412", - "193390032863078", - "107463998043285" + "15208737366443250092605440", + "3674809400460136130019328", + "17529446528377028549279744" ], - "expectedQty": "524905622048744", - "swapFee": "315132452700", + "expectedQty": "36340958121666191394330696", "reserves": [ - "5646629653545308570753606", - "19869585017793306137976426", - "19765675869680670309507820" + "590859001997396717368674982", + "214288896212476889025413098", + "781516677625042086270994042" ], - "mAssetSupply": "45213609406540018420632499" + "mAssetSupply": "1584512181871574090496575733" }, { - "type": "mintMulti", - "inputQtys": [ - "137357525364290885779456", - "246716023130202851770368", - "157062730391242758160384" - ], - "expectedQty": "541986502689742371992845", + "type": "swap", + "inputIndex": 0, + "inputQty": "13673617555354201222021120", + "outputIndex": 2, + "expectedQty": "13699273954648231250707797", + "swapFee": "8181818642842893810073", "reserves": [ - "5783987178909599456533062", - "20116301040923508989746794", - "19922738600071913067668204" + "604532619552750918590696102", + "214288896212476889025413098", + "767817403670393855020286245" ], - "mAssetSupply": "45755595909229760792625344" + "mAssetSupply": "1584520363690216933390385806", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "26054350884738692", - "10419628185022588", - "6881731859207979" + "4237398705282897408", + "873143666962595584", + "4270650549267834880" ], - "expectedQty": "43777068929516158", + "expectedQty": "9361644215774132166", + "swapFee": "5620358744711306", "reserves": [ - "5783987204963950341271754", - "20116301051343137174769382", - "19922738606953644926876183" + "604532615315352213307798694", + "214288895339333222062817514", + "767817399399743305752451365" ], - "mAssetSupply": "45755595953006829722141502" + "mAssetSupply": "1584520354328572717616253640" }, { "type": "mintMulti", "inputQtys": [ - "6609811109034392027136", - "21330140137810064048128", - "1100999946851854188544" - ], - "expectedQty": "29066620432421591728683", - "reserves": [ - "5790597016072984733298890", - "20137631191480947238817510", - "19923839606900496781064727" + "11468282701624815648768", + "18271201027487472549888", + "134470789772290650275840" ], - "mAssetSupply": "45784662573439251313870185" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "295594737442822", - "expectedQty": "289877933559172", - "swapFee": "177356842465", + "expectedQty": "163790815007746419984166", "reserves": [ - "5790597015783106799739718", - "20137631191480947238817510", - "19923839606900496781064727" + "604544083598053838123447462", + "214307166540360709535367402", + "767951870189515596402727205" ], - "mAssetSupply": "45784662573143833933269828" + "mAssetSupply": "1584684145143580464036237806" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "105195030407942317801472", - "126332438899577141067776", - "119951522223909217763328" + "3816249527854389155332096", + "4806507898991094521659392", + "2240112108403435547656192" ], - "expectedQty": "352410792424529340485007", - "swapFee": "211573419506421457165", + "expectedQty": "10918709444722641691028796", "reserves": [ - "5685401985375164481938246", - "20011298752581370097749734", - "19803888084676587563301399" + "608360333125908227278779558", + "219113674439351804057026794", + "770191982297919031950383397" ], - "mAssetSupply": "45432251780719304592784821" + "mAssetSupply": "1595602854588303105727266602" }, { "type": "mint", "inputIndex": 0, - "inputQty": "5631354714116150221864960", - "expectedQty": "5685060381791372643397263", + "inputQty": "1585085320974118833618944", + "expectedQty": "1580646516551162712857904", "reserves": [ - "11316756699491314703803206", - "20011298752581370097749734", - "19803888084676587563301399" + "609945418446882346112398502", + "219113674439351804057026794", + "770191982297919031950383397" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "211245942776718", - "314750451683155", - "212785973698056" - ], - "expectedQty": "738849357378539", - "swapFee": "443575759883", + "type": "mint", + "inputIndex": 2, + "inputQty": "18470205885756527467298816", + "expectedQty": "18376171022331366791633768", "reserves": [ - "11316756699280068761026488", - "20011298752266619646066579", - "19803888084463801589603343" - ], - "mAssetSupply": "51117312161771827878803545" + "609945418446882346112398502", + "219113674439351804057026794", + "788662188183675559417682213" + ] }, { "type": "mintMulti", "inputQtys": [ - "135859665808009641984", - "97844509783316185088", - "87709492306398281728" + "232085443565358982103040", + "10390715326151193001984", + "24375051918506362667008" ], - "expectedQty": "321704245055622585656", + "expectedQty": "266258012757097093466961", "reserves": [ - "11316892558945876770668472", - "20011396596776402962251667", - "19803975793956107987885071" + "610177503890447705094501542", + "219124065154677955250028778", + "788686563235594065780349221" ], - "mAssetSupply": "51117633866016883501389201" + "mAssetSupply": "1615825930139942732325225235" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "10264736535441494245376", - "outputIndex": 1, - "expectedQty": "10319688345729924864274", - "swapFee": "6185421299226386166", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1995327192287748096", + "expectedQty": "1961876770073357727", + "swapFee": "1197196315372648", "reserves": [ - "11327157295481318264913848", - "20001076908430673037387393", - "19803975793956107987885071" + "610177503890447705094501542", + "219124063192801185176671051", + "788686563235594065780349221" ], - "mAssetSupply": "51117640051438182727775367", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1615825928145812736352849787" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "32342822886922436608", - "expectedQty": "32373695885613990566", - "swapFee": "19405693732153461", + "inputIndex": 1, + "inputQty": "9872106448626812715008", + "expectedQty": "9706599582008100617866", + "swapFee": "5923263869176087629", "reserves": [ - "11327157295481318264913848", - "20001076908430673037387393", - "19803943420260222373894505" + "610177503890447705094501542", + "219114356593219177076053185", + "788686563235594065780349221" ], - "mAssetSupply": "51117607728020989537492220" + "mAssetSupply": "1615816061962627978716222408" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "549285578953957441536", - "expectedQty": "546601273468926800766", - "swapFee": "329571347372374464", + "inputQty": "49027394371312544645120", + "expectedQty": "49133030910573985092415", + "swapFee": "29416436622787526787", "reserves": [ - "11326610694207849338113082", - "20001076908430673037387393", - "19803943420260222373894505" + "610128370859537131109409127", + "219114356593219177076053185", + "788686563235594065780349221" ], - "mAssetSupply": "51117058772013382952425148" + "mAssetSupply": "1615767063984693288959104075" }, { - "type": "redeemBassets", - "inputQtys": [ - "7932347022601", - "1743286286802", - "5301748577595" - ], - "expectedQty": "15000479164942", - "swapFee": "9005690913", + "type": "redeem", + "inputIndex": 0, + "inputQty": "14490757635213872857088", + "expectedQty": "14521974418198644881490", + "swapFee": "8694454581128323714", "reserves": [ - "11326610694199916991090481", - "20001076908428929751100591", - "19803943420254920625316910" + "610113848885118932464527637", + "219114356593219177076053185", + "788686563235594065780349221" ], - "mAssetSupply": "51117058771998382473260206" + "mAssetSupply": "1615752581921512656214570701" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "20207651876750938112", - "26535360182349586432", - "21932317493519888384" + "2366291855583470419968", + "46917779015988754251776", + "15762144207399701970944" ], - "expectedQty": "68685059410674517459", + "expectedQty": "65729500361050192956434", + "swapFee": "39461377042855829271", "reserves": [ - "11326630901851793742028593", - "20001103443789112100687023", - "19803965352572414145205294" + "610111482593263348994107669", + "219067438814203188321801409", + "788670801091386666078378277" ], - "mAssetSupply": "51117127457057793147777665" + "mAssetSupply": "1615686852421151606021614267" }, { - "type": "redeemMasset", - "inputQty": "12504722164351869386752", - "expectedQtys": [ - "2769989015776025836618", - "4891378320947852177663", - "4843167131584205800286" - ], - "redemptionFee": "3751416649305560816", - "reserves": [ - "11323860912836017716191975", - "19996212065468164248509360", - "19799122185440829939405008" + "type": "redeemBassets", + "inputQtys": [ + "2975080282046924849152", + "6326995397903986458624", + "6322691855233223491584" ], - "mAssetSupply": "51104626486310090583951729" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "34891164297944767660032", - "expectedQty": "34720053145867795400208", - "swapFee": "20934698578766860596", + "expectedQty": "15687872402693016720759", + "swapFee": "9418374466295587384", "reserves": [ - "11289140859690149920791767", - "19996212065468164248509360", - "19799122185440829939405008" + "610108507512981302069258517", + "219061111818805284335342785", + "788664478399531432854886693" ], - "mAssetSupply": "51069756256710724583152293" + "mAssetSupply": "1615671164548748913004893508" }, { "type": "redeemBassets", "inputQtys": [ - "345306530048596864", - "1131488921543393792", - "2958731678101115392" + "1487664771633366433792", + "2371967149643992662016", + "795217549341773004800" ], - "expectedQty": "4430546437969024614", - "swapFee": "2659923817071657", + "expectedQty": "4685650312307727990623", + "swapFee": "2813078034205159890", "reserves": [ - "11289140514383619872194903", - "19996210933979242705115568", - "19799119226709151838289616" + "610107019848209668702824725", + "219058739851655640342680769", + "788663683181982091081881893" ], - "mAssetSupply": "51069751826164286614127679" + "mAssetSupply": "1615666478898436605276902885" }, { "type": "mint", "inputIndex": 0, - "inputQty": "8670437847120056", - "expectedQty": "8708089498066792", + "inputQty": "486683218832720597614592", + "expectedQty": "485343679689788812973602", "reserves": [ - "11289140523054057719314959", - "19996210933979242705115568", - "19799119226709151838289616" + "610593703067042389300439317", + "219058739851655640342680769", + "788663683181982091081881893" ] }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "13344173156118185377792", - "expectedQty": "13357018295893721426087", - "swapFee": "8006503893670911226", - "reserves": [ - "11289140523054057719314959", - "19996210933979242705115568", - "19785762208413258116863529" - ], - "mAssetSupply": "51056415668220151597727905" - }, { "type": "mint", - "inputIndex": 0, - "inputQty": "214338539364977803264", - "expectedQty": "215268483715493475129", + "inputIndex": 1, + "inputQty": "258834189764294134988800", + "expectedQty": "263089014609262455143106", "reserves": [ - "11289354861593422697118223", - "19996210933979242705115568", - "19785762208413258116863529" + "610593703067042389300439317", + "219317574041419934477669569", + "788663683181982091081881893" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "52006249794519072505856", - "expectedQty": "51749195440377717172707", - "swapFee": "31203749876711443503", + "inputQty": "23831004012467064", + "expectedQty": "23882377543809279", + "swapFee": "14298602407480", "reserves": [ - "11237605666153044979945516", - "19996210933979242705115568", - "19785762208413258116863529" + "610593703043160011756630038", + "219317574041419934477669569", + "788663683181982091081881893" ], - "mAssetSupply": "51004655890659224730140681" + "mAssetSupply": "1616414911568918951134960009" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "446934028647706176", - "expectedQty": "448896159432763264", + "inputIndex": 2, + "inputQty": "679316971174671643836416", + "expectedQty": "675798718807101963560938", "reserves": [ - "11237606113087073627651692", - "19996210933979242705115568", - "19785762208413258116863529" + "610593703043160011756630038", + "219317574041419934477669569", + "789343000153156762725718309" ] }, { "type": "redeemMasset", - "inputQty": "3487991178161434289766", + "inputQty": "6706318685034438983680", "expectedQtys": [ - "768261464677608474194", - "1367045449497529360544", - "1352658075130085500722" + "2531464365512581857785", + "909270142566926697628", + "3272542227500282340014" ], - "redemptionFee": "1046397353448430286", + "redemptionFee": "2011895605510331695", "reserves": [ - "11236837851622396019177498", - "19994843888529745175755024", - "19784409550338128031362807" + "610591171578794499174772253", + "219316664771277367550971941", + "789339727610929262443378295" ], - "mAssetSupply": "51001169394774576177044465" + "mAssetSupply": "1617084005980936624169868962" }, { "type": "swap", "inputIndex": 0, - "inputQty": "384897048667679264604160", + "inputQty": "4311055861998044577792", "outputIndex": 2, - "expectedQty": "386829739237990994243471", - "swapFee": "231908785847099794933", + "expectedQty": "4319014829648381016563", + "swapFee": "2579526771259149905", "reserves": [ - "11621734900290075283781658", - "19994843888529745175755024", - "19397579811100137037119336" + "610595482634656497219350045", + "219316664771277367550971941", + "789335408596099614062361732" ], - "mAssetSupply": "51001401303560423276839398", + "mAssetSupply": "1617084008560463395429018867", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "17515140918092737078624256", + "expectedQty": "17594270329407731262911576", + "swapFee": "10509084550855642247174", + "reserves": [ + "610595482634656497219350045", + "219316664771277367550971941", + "771741138266691882799450156" + ], + "mAssetSupply": "1599579376726921513992641785" + }, { "type": "redeemBassets", "inputQtys": [ - "729571010171819786240", - "12624466841720764416", - "248103619503709585408" + "6415881656291173160976384", + "11583609676104338807717888", + "8210704543474624030048256" ], - "expectedQty": "992799758103171501308", - "swapFee": "596037477348311887", + "expectedQty": "26342941272781116919590770", + "swapFee": "15815253916018281120426", "reserves": [ - "11621005329279903463995418", - "19994831264062903454990608", - "19397331707480633327533928" + "604179600978365324058373661", + "207733055095173028743254053", + "763530433723217258769401900" ], - "mAssetSupply": "51000408503802320105338090" + "mAssetSupply": "1573236435454140397073051015" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "827007882801377837056", - "880941395626012049408", - "848329999253446066176" + "92138982893491629064192", + "65106292145894478315520", + "22272470781684778795008" ], - "expectedQty": "2556959791470817322368", + "expectedQty": "180260521558173784266945", + "swapFee": "108221245682313658755", "reserves": [ - "11621832337162704841832474", - "19995712205458529467040016", - "19398180037479886773600104" + "604087461995471832429309469", + "207667948803027134264938533", + "763508161252435573990606892" ], - "mAssetSupply": "51002965463593790922660458" + "mAssetSupply": "1573056174932582223288784070" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1047855258781611714412544", - "expectedQty": "1048748560169533558663623", - "swapFee": "628713155268967028647", + "type": "mintMulti", + "inputQtys": [ + "11220837090981069511983104", + "5776434765472684123881472", + "16519306513326539154653184" + ], + "expectedQty": "33496618694272842450323382", "reserves": [ - "11621832337162704841832474", - "18946963645288995908376393", - "19398180037479886773600104" + "615308299086452901941292573", + "213444383568499818388820005", + "780027467765762113145260076" ], - "mAssetSupply": "49955738917967448175276561" + "mAssetSupply": "1606552793626855065739107452" }, { - "type": "redeemMasset", - "inputQty": "1667335021534645531443", - "expectedQtys": [ - "387776764858677984491", - "632188802343267796725", - "647244193587855713478" - ], - "redemptionFee": "500200506460393659", + "type": "redeem", + "inputIndex": 1, + "inputQty": "51895589938363713454080", + "expectedQty": "50986004547173132493896", + "swapFee": "31137353963018228072", "reserves": [ - "11621444560397846163847983", - "18946331456486652640579668", - "19397532793286298917886626" + "615308299086452901941292573", + "213393397563952645256326109", + "780027467765762113145260076" ], - "mAssetSupply": "49954072083146419990138777" + "mAssetSupply": "1606500929174270665043881444" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1290823193931452537372672", - "outputIndex": 2, - "expectedQty": "1289609112229657393300150", - "swapFee": "773344191295596426978", + "inputIndex": 0, + "inputQty": "48570099704541957062656", + "outputIndex": 1, + "expectedQty": "47576802216328439979032", + "swapFee": "29055604126591414952", "reserves": [ - "11621444560397846163847983", - "20237154650418105177952340", - "18107923681056641524586476" + "615356869186157443898355229", + "213345820761736316816347077", + "780027467765762113145260076" ], - "mAssetSupply": "49954845427337715586565755", + "mAssetSupply": "1606500958229874791635296396", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "964745569888005573836", - "expectedQtys": [ - "224370099403060382225", - "390709810381264129138", - "349601688085032867309" - ], - "redemptionFee": "289423670966401672", + "type": "redeem", + "inputIndex": 1, + "inputQty": "110166251232647889027072", + "expectedQty": "108232993233544507657757", + "swapFee": "66099750739588733416", "reserves": [ - "11621220190298443103465758", - "20236763940607723913823202", - "18107574079368556491719167" + "615356869186157443898355229", + "213237587768502772308689320", + "780027467765762113145260076" ], - "mAssetSupply": "49953880971191498547393591" + "mAssetSupply": "1606390858078392883335002740" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "819509799688397651968", - "9445968242965429092352", - "2568605803436461522944" + "12665125456429863562903552", + "26009175539911033280790528", + "21063815005894061370376192" ], - "expectedQty": "12817448416787240063623", + "expectedQty": "60079787249804920946405962", + "swapFee": "36069514058317943333843", "reserves": [ - "11622039700098131501117726", - "20246209908850689342915554", - "18110142685171992953242111" + "602691743729727580335451677", + "187228412228591739027898792", + "758963652759868051774883884" ], - "mAssetSupply": "49966698419608285787457214" + "mAssetSupply": "1546311070828587962388596778" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "270322796586929263476736", - "expectedQty": "270643336729139773159909", - "swapFee": "162193677952157558086", + "type": "redeemMasset", + "inputQty": "53699846405850593335705", + "expectedQtys": [ + "20923826610646265003441", + "6500063879777394785637", + "26349164459853080655743" + ], + "redemptionFee": "16109953921755178000", "reserves": [ - "11622039700098131501117726", - "19975566572121549569755645", - "18110142685171992953242111" + "602670819903116934070448236", + "187221912164711961633113155", + "758937303595408198694228141" ], - "mAssetSupply": "49696537816699308681538564" + "mAssetSupply": "1546257387092136033550439073" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "9368388373272268374016", - "expectedQty": "9371985084151007466473", - "swapFee": "5621033023963361024", + "type": "redeemMasset", + "inputQty": "3012687720270971011072", + "expectedQtys": [ + "1173875899281996899316", + "364668876025848617510", + "1478250116539458640796" + ], + "redemptionFee": "903806316081291303", "reserves": [ - "11622039700098131501117726", - "19975566572121549569755645", - "18100770700087841945775638" + "602669646027217652073548920", + "187221547495835935784495645", + "758935825345291659235587345" ], - "mAssetSupply": "49687175049359060376525572" + "mAssetSupply": "1546254375308222078660719304" }, { "type": "mintMulti", "inputQtys": [ - "2185366662285068861440", - "3432138486669342932992", - "2846514070307718299648" + "5325212350675839203934208", + "3086929203182636369969152", + "4122677215376901996019712" ], - "expectedQty": "8463026524512177526080", + "expectedQty": "12557429138444741293923085", + "reserves": [ + "607994858377893491277483128", + "190308476699018572154464797", + "763058502560668561231607057" + ], + "mAssetSupply": "1558811804446666819954642389" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "29399622511147129111576576", + "expectedQty": "29932318843241660708175869", + "reserves": [ + "607994858377893491277483128", + "219708099210165701266041373", + "763058502560668561231607057" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "21648554250888650707435520", + "expectedQty": "21740140830710358031210117", + "swapFee": "12989132550533190424461", "reserves": [ - "11624225066760416569979166", - "19978998710608218912688637", - "18103617214158149664075286" + "607994858377893491277483128", + "219708099210165701266041373", + "741318361729958203200396940" ], - "mAssetSupply": "49695638075883572554051652" + "mAssetSupply": "1567108558171570363145807199" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "918157609808512155648", - "outputIndex": 1, - "expectedQty": "922496198606407533796", - "swapFee": "552861712594310709", + "inputIndex": 1, + "inputQty": "306010888562309840502784", + "outputIndex": 0, + "expectedQty": "311331337521374850495072", + "swapFee": "186375706151389873483", "reserves": [ - "11625143224370225082134814", - "19978076214409612505154841", - "18103617214158149664075286" + "607683527040372116426988056", + "220014110098728011106544157", + "741318361729958203200396940" ], - "mAssetSupply": "49695638628745285148362361", + "mAssetSupply": "1567108744547276514535680682", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "107879131176669167616", - "9501254771194624000", - "62143701571233341440" + "31085198465717550824030208", + "26848974998938823876935680", + "3535399629386267817410560" ], - "expectedQty": "179831605703148448650", + "expectedQty": "61735709719491370419770162", "reserves": [ - "11625251103501401751302430", - "19978085715664383699778841", - "18103679357859720897416726" + "638768725506089667251018264", + "246863085097666834983479837", + "744853761359344471017807500" ], - "mAssetSupply": "49695818460350988296811011" + "mAssetSupply": "1628844454266767884955450844" }, { - "type": "redeemMasset", - "inputQty": "18912750968693486465843", - "expectedQtys": [ - "4422897664935209073879", - "7600784522845623323716", - "6887655195206670145824" + "type": "mintMulti", + "inputQtys": [ + "636112172030625185792", + "35992377485029851136", + "723948510698261577728" ], - "redemptionFee": "5673825290608045939", + "expectedQty": "1391876264984743164324", "reserves": [ - "11620828205836466542228551", - "19970484931141538076455125", - "18096791702664514227270902" + "638769361618261697876204056", + "246863121090044320013330973", + "744854485307855169279385228" ], - "mAssetSupply": "49676911383207585418391107" + "mAssetSupply": "1628845846143032869698615168" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "5255904572077225541632", - "outputIndex": 2, - "expectedQty": "5276661523630337710038", - "swapFee": "3164794142060872511", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2935289161615108219076608", + "expectedQty": "2896987931529917893608546", + "swapFee": "1761173496969064931445", "reserves": [ - "11626084110408543767770183", - "19970484931141538076455125", - "18091515041140883889560864" + "638769361618261697876204056", + "243966133158514402119722427", + "744854485307855169279385228" ], - "mAssetSupply": "49676914548001727479263618", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1625912318154914730544470005" }, { "type": "swap", "inputIndex": 1, - "inputQty": "178664477412219944960", - "outputIndex": 0, - "expectedQty": "177612171037823257093", - "swapFee": "107011353889045855", + "inputQty": "1955919308517532", + "outputIndex": 2, + "expectedQty": "1987844447170315", + "swapFee": "1188537085919", "reserves": [ - "11625906498237505944513090", - "19970663595618950296400085", - "18091515041140883889560864" + "638769361618261697876204056", + "243966133160470321428239959", + "744854485305867324832214913" ], - "mAssetSupply": "49676914655013081368309473", + "mAssetSupply": "1625912318154915919081555924", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "220418880006582790258688", - "expectedQty": "220027196219226099499387", - "reserves": [ - "11625906498237505944513090", - "20191082475625533086658773", - "18091515041140883889560864" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "3687584005335154688000", - "expectedQty": "3700936880680962536168", - "reserves": [ - "11629594082242841099201090", - "20191082475625533086658773", - "18091515041140883889560864" - ] - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3940215189584537976832", - "10247640372623351742464", - "5957774435412226342912" - ], - "expectedQty": "20135731763083815020184", - "swapFee": "12088692273214217542", - "reserves": [ - "11625653867053256561224258", - "20180834835252909734916309", - "18085557266705471663217952" - ], - "mAssetSupply": "49880507056349904615324844" - }, - { - "type": "redeemMasset", - "inputQty": "4686048674396216334745", - "expectedQtys": [ - "1091850095212558729466", - "1895329646686346912197", - "1698546821489855206612" + "5747338070942155800576", + "3785679797662571298816", + "4292172065936479617024" ], - "redemptionFee": "1405814602318864900", + "expectedQty": "13840270425384879467088", "reserves": [ - "11624562016958044002494792", - "20178939505606223388004112", - "18083858719883981808011340" + "638775108956332640032004632", + "243969918840267983999538775", + "744858777477933261311831937" ], - "mAssetSupply": "49875822413490110717854999" + "mAssetSupply": "1625926158425341303961023012" }, { "type": "redeemBassets", "inputQtys": [ - "34603898184942485504000", - "106745424436534603415552", - "110241209554699355684864" + "1231458389138233557516288", + "282524126530011972763648", + "649335643764761238175744" ], - "expectedQty": "251418785829562295021619", - "swapFee": "150941836599697195330", + "expectedQty": "2160907843877394813554354", + "swapFee": "1297323100186548817423", "reserves": [ - "11589958118773101516990792", - "20072194081169688784588560", - "17973617510329282452326476" + "637543650567194406474488344", + "243687394713737972026775127", + "744209441834168500073656193" ], - "mAssetSupply": "49624403627660548422833380" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "35861497717900873728", - "expectedQty": "35990293602207835846", - "reserves": [ - "11589993980270819417864520", - "20072194081169688784588560", - "17973617510329282452326476" - ] + "mAssetSupply": "1623765250581463909147468658" }, { - "type": "redeemMasset", - "inputQty": "180557545589551697965875", - "expectedQtys": [ - "42157313701100956027138", - "73010372912159166573155", - "65377034105141730440143" + "type": "mintMulti", + "inputQtys": [ + "95152355563101115908096", + "97745613245347625172992", + "323503913356460923289600" ], - "redemptionFee": "54167263676865509389", + "expectedQty": "516064737420339967002401", "reserves": [ - "11547836666569718461837382", - "19999183708257529618015405", - "17908240476224140721886333" + "637638802922757507590396440", + "243785140326983319651948119", + "744532945747524960996945793" ], - "mAssetSupply": "49443936239628275798212740" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "67404604952634005127168", - "expectedQty": "67340600465227465593529", - "reserves": [ - "11547836666569718461837382", - "19999183708257529618015405", - "17975645081176774727013501" - ] + "mAssetSupply": "1624281315318884249114471059" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "680475009354088067366912", - "expectedQty": "677411856324170802816310", - "swapFee": "408285005612452840420", + "type": "mintMulti", + "inputQtys": [ + "922049156535652896997376", + "23521756588271178499489792", + "29009193595188651130617856" + ], + "expectedQty": "53613548584345167058007849", "reserves": [ - "10870424810245547659021072", - "19999183708257529618015405", - "17975645081176774727013501" + "638560852079293160487393816", + "267306896915254498151437911", + "773542139342713612127563649" ], - "mAssetSupply": "48831210115745027649279777" + "mAssetSupply": "1677894863903229416172478908" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "956949833992513572044800", - "3568162338779864301043712", - "3953676318071407199125504" + "713171346291844186112", + "218472371172521934848", + "387531971108062756864" ], - "expectedQty": "8472144954488991556744207", - "swapFee": "5086338775958970316236", + "expectedQty": "1318465546999904183525", "reserves": [ - "9913474976253034086976272", - "16431021369477665316971693", - "14021968763105367527887997" + "638561565250639452331579928", + "267307115387625670673372759", + "773542526874684720190320513" ], - "mAssetSupply": "40359065161256036092535570" + "mAssetSupply": "1677896182368776416076662433" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "1408730653738959110144", - "expectedQty": "1406226617191354251183", - "reserves": [ - "9913474976253034086976272", - "16432430100131404276081837", - "14021968763105367527887997" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "2819786252209868505088", - "207738203286984097792", - "6873857244230895796224" - ], - "expectedQty": "9905654718935336983206", + "inputQty": "1470814989478178882322432", + "outputIndex": 0, + "expectedQty": "1489348973075556564908631", + "swapFee": "892163946989727787326", "reserves": [ - "9916294762505243955481360", - "16432637838334691260179629", - "14028842620349598423684221" + "637072216277563895766671297", + "268777930377103849555695191", + "773542526874684720190320513" ], - "mAssetSupply": "40370377042592162783769959" + "mAssetSupply": "1677897074532723405804449759", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "14915988611067", + "inputQty": "311504758243788236", "expectedQtys": [ - "3662759111304", - "6069685846039", - "5181801505440" + "118238177072102132", + "49884160245900758", + "143566546976145957" ], - "redemptionFee": "4474796583", + "redemptionFee": "93451427473136", "reserves": [ - "9916294762501581196370056", - "16432637838328621574333590", - "14028842620344416622178781" + "637072216159325718694569165", + "268777930327219689309794433", + "773542526731118173214174556" ], - "mAssetSupply": "40370377042577251269955475" + "mAssetSupply": "1677897074221312098988134659" }, { "type": "mintMulti", "inputQtys": [ - "1251225502533059072", - "909060761182928256", - "886408679312391552" + "14972051170095708160", + "1432333439076630265856", + "8371531339304115634176" ], - "expectedQty": "3048306936157251898", + "expectedQty": "9801787141052400743827", "reserves": [ - "9916296013727083729429128", - "16432638747389382757261846", - "14028843506753095934570333" + "637072231131376888790277325", + "268779362660658765940060289", + "773550898262457477329808732" ], - "mAssetSupply": "40370380090884187427207373" + "mAssetSupply": "1677906876008453151388878486" }, { - "type": "mintMulti", - "inputQtys": [ - "413806392487018", - "243696929854671", - "434047622734394" - ], - "expectedQty": "1092109031173651", + "type": "redeem", + "inputIndex": 1, + "inputQty": "15937695708790292480", + "expectedQty": "15756745432381119248", + "swapFee": "9562617425274175", "reserves": [ - "9916296014140890121916146", - "16432638747633079687116517", - "14028843507187143557304727" + "637072231131376888790277325", + "268779346903913333558941041", + "773550898262457477329808732" ], - "mAssetSupply": "40370380091976296458381024" + "mAssetSupply": "1677906860080320060023860181" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "10732556161928782675968", - "expectedQty": "10694392940231781761141", - "swapFee": "6439533697157269605", + "type": "mintMulti", + "inputQtys": [ + "12166449221768816099328", + "10997639071950402748416", + "6143754244945117970432" + ], + "expectedQty": "29376666991047999207038", "reserves": [ - "9905601621200658340155005", - "16432638747633079687116517", - "14028843507187143557304727" + "637084397580598657606376653", + "268790344542985283961689457", + "773557042016702422447779164" ], - "mAssetSupply": "40359653975348064832974661" + "mAssetSupply": "1677936236747311108023067219" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "8842488685796120506400768", - "expectedQty": "8812539028553594024689007", - "swapFee": "5305493211477672303840", + "inputIndex": 1, + "inputQty": "474548386060541764829184", + "expectedQty": "469151495057607392741208", + "swapFee": "284729031636325058897", "reserves": [ - "9905601621200658340155005", - "16432638747633079687116517", - "5216304478633549532615720" + "637084397580598657606376653", + "268321193047927676568948249", + "773557042016702422447779164" ], - "mAssetSupply": "31522470782763421998877733" + "mAssetSupply": "1677461973090282202583296932" }, { "type": "redeemBassets", "inputQtys": [ - "15575845060087608508416", - "82093234478459138342912", - "58870883022395523727360" + "198381482130714525696", + "75961109217064009728", + "165938513680145514496" ], - "expectedQty": "156735551346130655016479", - "swapFee": "94097789481367213337", + "expectedQty": "440023331470744014251", + "swapFee": "264172502383876734", "reserves": [ - "9890025776140570731646589", - "16350545513154620548773605", - "5157433595611154008888360" + "637084199199116526891850957", + "268321117086818459504938521", + "773556876078188742302264668" ], - "mAssetSupply": "31365735231417291343861254" + "mAssetSupply": "1677461533066950731839282681" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "438637320713778371756032", - "565322847461586918965248", - "244094920377024030703616" + "217024708812026148059873280", + "293169136846127857926144", + "24816577923705306274070528" ], - "expectedQty": "1247590080582897965269838", + "expectedQty": "241830151548297676492250734", + "swapFee": "145185202050208731134030", "reserves": [ - "10328663096854349103402621", - "16915868360616207467738853", - "5401528515988178039591976" + "420059490387090378831977677", + "268027947949972331647012377", + "748740298154483436028194140" ], - "mAssetSupply": "32613325312000189309131092" + "mAssetSupply": "1435631381518653055347031947" }, { "type": "redeemBassets", "inputQtys": [ - "650926318478521960235008", - "1471388862921093026938880", - "1947155013759265618788352" - ], - "expectedQty": "4089405278818836258112123", - "swapFee": "2455116237033521867988", - "reserves": [ - "9677736778375827143167613", - "15444479497695114440799973", - "3454373502228912420803624" + "11558282952856011374854144", + "11030330387601564381478912", + "12192002930438862243102720" ], - "mAssetSupply": "28523920033181353051018969" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "344474860850425452560384", - "expectedQty": "336025828764294118822505", - "swapFee": "206684916510255271536", + "expectedQty": "34816214808743813840862520", + "swapFee": "20902270247394725139601", "reserves": [ - "9677736778375827143167613", - "15444479497695114440799973", - "3118347673464618301981119" + "408501207434234367457123533", + "256997617562370767265533465", + "736548295224044573785091420" ], - "mAssetSupply": "28179651857247437853730121" + "mAssetSupply": "1400815166709909241506169427" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "40025746908935360610304", - "expectedQty": "38929624026435605038869", - "swapFee": "24015448145361216366", - "reserves": [ - "9677736778375827143167613", - "15444479497695114440799973", - "3079418049438182696942250" + "type": "redeemMasset", + "inputQty": "1786055092281306673210982", + "expectedQtys": [ + "520687380731009008984963", + "327576550343988087627455", + "938825628034013051880120" ], - "mAssetSupply": "28139650125786647854336183" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "7895755119212853268054016", - "outputIndex": 0, - "expectedQty": "7825543124987140311023584", - "swapFee": "4770949689965555342843", + "redemptionFee": "535816527684392001963", "reserves": [ - "1852193653388686832144029", - "15444479497695114440799973", - "10975173168651035964996266" + "407980520053503358448138570", + "256670041012026779177906010", + "735609469596010560733211300" ], - "mAssetSupply": "28144421075476613409679026", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1399029647434155619224960408" }, { "type": "mintMulti", "inputQtys": [ - "338574848113452785860608", - "746210311385620494155776", - "772947256122945856077824" + "103988956628283274821632", + "241349721848868627283968", + "715006323748634481393664" ], - "expectedQty": "1868208210624814084745696", + "expectedQty": "1058883727856600616497752", "reserves": [ - "2190768501502139618004637", - "16190689809080734934955749", - "11748120424773981821074090" + "408084509010131641722960202", + "256911390733875647805189978", + "736324475919759195214604964" ], - "mAssetSupply": "30012629286101427494424722" + "mAssetSupply": "1400088531162012219841458160" }, { "type": "redeemBassets", "inputQtys": [ - "11802332551223781097472", - "24619821202112623149056", - "25246362117560848089088" + "2672971770705384300347392", + "2646542251908487083720704", + "2080277383920751730491392" ], - "expectedQty": "62001655770049334509948", - "swapFee": "37223327458504703528", + "expectedQty": "7412815350196979934492260", + "swapFee": "4450359425773652151986", "reserves": [ - "2178966168950915836907165", - "16166069987878622311806693", - "11722874062656420972985002" + "405411537239426257422612810", + "254264848481967160721469274", + "734244198535838443484113572" ], - "mAssetSupply": "29950627630331378159914774" + "mAssetSupply": "1392675715811815239906965900" }, { "type": "redeemBassets", "inputQtys": [ - "1229746175184187202469888", - "1820669722084418359656448", - "690783479667560231731200" + "214527569555193823232", + "353690229135109980160", + "213835180034556493824" ], - "hardLimitError": true + "expectedQty": "784024104905537789796", + "swapFee": "470696881071965853", + "reserves": [ + "405411322711856702228789578", + "254264494791738025611489114", + "734243984700658408927619748" + ], + "mAssetSupply": "1392674931787710334369176104" }, { - "type": "redeemBassets", - "inputQtys": [ - "103039491297367130112", - "6609751717957545754624", - "923168491383090315264" + "type": "mint", + "inputIndex": 2, + "inputQty": "39091423586878035490504704", + "expectedQty": "38892468747726737555542273", + "reserves": [ + "405411322711856702228789578", + "254264494791738025611489114", + "773335408287536444418124452" + ] + }, + { + "type": "redeemMasset", + "inputQty": "520462294864386798387", + "expectedQtys": [ + "147347590418382876914", + "92412960708396978020", + "281070366348335459114" ], - "expectedQty": "7561753313188167591694", - "swapFee": "4539775853424955528", + "redemptionFee": "156138688459316039", "reserves": [ - "2178863129459618469777053", - "16159460236160664766052069", - "11721950894165037882669738" + "405411175364266283845912664", + "254264402378777317214511094", + "773335127217170096082665338" ], - "mAssetSupply": "29943065877018189992323080" + "mAssetSupply": "1431566880229280895997236029" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "42554298722943401984", - "expectedQty": "45379151984193692297", + "inputIndex": 1, + "inputQty": "1288995243896811332567040", + "expectedQty": "1300326126503603670652301", "reserves": [ - "2178905683758341413179037", - "16159460236160664766052069", - "11721950894165037882669738" + "405411175364266283845912664", + "255553397622674128547078134", + "773335127217170096082665338" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "246683618347740168192", - "60310774451243606016", - "187250678698545676288" + "251774228235016852209664", + "1323061097857039938355200", + "1032150562726039301128192" ], - "expectedQty": "508678116371707910074", - "swapFee": "305390103885355959", + "expectedQty": "2613323724900347987268600", "reserves": [ - "2178659000139993673010845", - "16159399925386213522446053", - "11721763643486339336993450" + "405662949592501300698122328", + "256876458720531168485433334", + "774367277779896135383793530" ], - "mAssetSupply": "29942602578053802478105303" + "mAssetSupply": "1435480530080684847655156930" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1047190328464729440256", - "expectedQty": "1116685493139290117604", + "type": "mintMulti", + "inputQtys": [ + "35188685368055", + "127998612044975", + "121078046731202" + ], + "expectedQty": "284774117723269", "reserves": [ - "2179706190468458402451101", - "16159399925386213522446053", - "11721763643486339336993450" - ] + "405662949592536489383490383", + "256876458720659167097478309", + "774367277780017213430524732" + ], + "mAssetSupply": "1435480530080969621772880199" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "331461386825426423250944", - "expectedQty": "335004691940194707392096", - "swapFee": "198876832095255853950", + "inputQty": "3129210271594969206620160", + "outputIndex": 2, + "expectedQty": "3170459254417553411614957", + "swapFee": "1893564127941413003702", "reserves": [ - "2179706190468458402451101", - "15824395233446018815053957", - "11721763643486339336993450" + "405662949592536489383490383", + "260005668992254136304098469", + "771196818525599660018909775" ], - "mAssetSupply": "29612456753553610600825913" + "mAssetSupply": "1435482423645097563185883901", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "6569684992191922358452224", - "outputIndex": 0, - "hardLimitError": true + "type": "redeemBassets", + "inputQtys": [ + "18721688475685", + "16427862172973", + "790177836683" + ], + "expectedQty": "36092538743104", + "swapFee": "21668524360", + "reserves": [ + "405662949592517767695014698", + "260005668992237708441925496", + "771196818525598869841073092" + ], + "mAssetSupply": "1435482423645061470647140797" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "161951698531298", - "expectedQty": "163659155743439", - "swapFee": "97171019118", + "type": "redeemMasset", + "inputQty": "13948644337371029504", + "expectedQtys": [ + "3940661743450354187", + "2525728302047590370", + "7491504468148022425" + ], + "redemptionFee": "4184593301211308", "reserves": [ - "2179706190468458402451101", - "15824395233282359659310518", - "11721763643486339336993450" + "405662945651856024244660511", + "260005666466509406394335126", + "771196811034094401693050667" ], - "mAssetSupply": "29612456753391756073313733" + "mAssetSupply": "1435482409700601726577322601" }, { "type": "redeemMasset", - "inputQty": "128622889876230600916992", + "inputQty": "98733239059125957663129", "expectedQtys": [ - "9464800695209815854305", - "68713273220119847271502", - "50898674861363189834397" + "27893341356825123235843", + "17877962202846278128880", + "53027411386816997412345" ], - "redemptionFee": "38586866962869180275", + "redemptionFee": "29619971717737787298", "reserves": [ - "2170241389773248586596796", - "15755681960062239812039016", - "11670864968624976147159053" + "405635052310499199121424668", + "259987788504306560116206246", + "771143783622707584695638322" ], - "mAssetSupply": "29483872450382488341577016" + "mAssetSupply": "1435383706081514318357446770" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "517530037464961099235328", - "expectedQty": "513880333576118450068272", + "inputQty": "5860828685087860718567424", + "outputIndex": 1, + "expectedQty": "5776683452189252183134188", + "swapFee": "3498244604983538371948", "reserves": [ - "2170241389773248586596796", - "15755681960062239812039016", - "12188395006089937246394381" - ] + "405635052310499199121424668", + "254211105052117307933072058", + "777004612307795445414205746" + ], + "mAssetSupply": "1435387204326119301895818718", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "394116888548857157255168", - "expectedQty": "389743578143372041150156", + "type": "mintMulti", + "inputQtys": [ + "20694105214030835712", + "6745508965431036928", + "20044053297742213120" + ], + "expectedQty": "47457951543537862027", "reserves": [ - "2170241389773248586596796", - "16149798848611096969294184", - "12188395006089937246394381" - ] + "405635073004604413152260380", + "254211111797626273364108986", + "777004632351848743156418866" + ], + "mAssetSupply": "1435387251784070845433680745" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "275912671675091039289344", - "expectedQty": "273881317438779670583634", + "inputIndex": 1, + "inputQty": "174483078926061404160", + "expectedQty": "176039339541153646120", "reserves": [ - "2170241389773248586596796", - "16149798848611096969294184", - "12464307677765028285683725" + "405635073004604413152260380", + "254211286280705199425513146", + "777004632351848743156418866" ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "145910785565552573153280", - "expectedQty": "144807247726149517622667", + "inputQty": "33564843684412335849472", + "expectedQty": "33385916775903926775582", "reserves": [ - "2170241389773248586596796", - "16149798848611096969294184", - "12610218463330580858837005" + "405635073004604413152260380", + "254211286280705199425513146", + "777038197195533155492268338" ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "21177362764945215488", - "expectedQty": "21327424810953992236", - "swapFee": "12706417658967129", + "inputIndex": 0, + "inputQty": "25822786421276568073535488", + "expectedQty": "25773216622130927001632267", + "swapFee": "15493671852765940844121", "reserves": [ - "2170241389773248586596796", - "16149798848611096969294184", - "12610197135905769904844769" + "379861856382473486150628113", + "254211286280705199425513146", + "777038197195533155492268338" ], - "mAssetSupply": "30806163762610560734753386" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "103191646719099900264448", - "expectedQty": "102032562466247459865136", - "reserves": [ - "2170241389773248586596796", - "16252990495330196869558632", - "12610197135905769904844769" - ] + "mAssetSupply": "1409613520990762488381411080" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "85537922386260203143168", - "expectedQty": "84883191517300268956511", + "inputIndex": 0, + "inputQty": "111924062698739558338527232", + "expectedQty": "111971681515218530773497973", "reserves": [ - "2170241389773248586596796", - "16252990495330196869558632", - "12695735058292030107987937" + "491785919081213044489155345", + "254211286280705199425513146", + "777038197195533155492268338" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "120891106805817079234560", - "expectedQty": "119523555171845574570183", + "inputQty": "61793606681585496159682560", + "expectedQty": "62281813647773497362114327", "reserves": [ - "2170241389773248586596796", - "16373881602136013948793192", - "12695735058292030107987937" + "491785919081213044489155345", + "316004892962290695585195706", + "777038197195533155492268338" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "29611956836600815550464", - "expectedQty": "29933960230491147514930", - "swapFee": "17767174101960489330", + "inputIndex": 2, + "inputQty": "152523303559367896334336", + "expectedQty": "153016459550265226756546", + "swapFee": "91513982135620737800", "reserves": [ - "2170241389773248586596796", - "16343947641905522801278262", - "12695735058292030107987937" + "491785919081213044489155345", + "316004892962290695585195706", + "776885180735982890265511792" ], - "mAssetSupply": "31083008882103455183084082" + "mAssetSupply": "1583714584364177284241426844" }, { "type": "redeemMasset", - "inputQty": "55244640479120742521241", + "inputQty": "880985607972335104", "expectedQtys": [ - "3856069324689525287951", - "29039808863321147095518", - "22557690929385632907076" - ], - "redemptionFee": "16573392143736222756", - "reserves": [ - "2166385320448559061308845", - "16314907833042201654182744", - "12673177367362644475080861" - ], - "mAssetSupply": "31027780815016478176785597" - }, - { - "type": "mintMulti", - "inputQtys": [ - "14176433911622993920", - "13528536294836617216", - "6364209743633809408" - ], - "expectedQty": "34885164901412226877", - "reserves": [ - "2166399496882470684302765", - "16314921361578496490799960", - "12673183731572388108890269" - ], - "mAssetSupply": "31027815700181379589012474" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "147347721485785220775936", - "148883622967735190814720", - "229077766898605705134080" - ], - "expectedQty": "532953413239473597880037", - "swapFee": "319964026359499858643", - "reserves": [ - "2019051775396685463526829", - "16166037738610761299985240", - "12444105964673782403756189" + "273487624787399121", + "175733839144713899", + "432034498281205168" ], - "mAssetSupply": "30494862286941905991132437" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "16675810009046021308416", - "expectedQty": "16869639030249516983197", - "swapFee": "10005486005427612785", + "redemptionFee": "264295682391700", "reserves": [ - "2019051775396685463526829", - "16149168099580511783002043", - "12444105964673782403756189" + "491785918807725419701756224", + "316004892786556856440481807", + "776885180303948391984306624" ], - "mAssetSupply": "30478196482418865397436806" + "mAssetSupply": "1583714583483455971951483440" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "21220175435665946705920", - "outputIndex": 2, - "expectedQty": "23079344249034567678811", - "swapFee": "13744622632420426278", + "inputIndex": 2, + "inputQty": "52433403451961724568076288", + "outputIndex": 1, + "expectedQty": "51757029420400451121235746", + "swapFee": "31332934279859981839707", "reserves": [ - "2040271950832351410232749", - "16149168099580511783002043", - "12421026620424747836077378" + "491785918807725419701756224", + "264247863366156405319246061", + "829318583755910116552382912" ], - "mAssetSupply": "30478210227041497817863084", + "mAssetSupply": "1583745916417735831933323147", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "23696852074058", - "8148026764991", - "204046178769892" + "148926687414150762594304", + "172796868892936728739840", + "240754322492568622858240" ], - "expectedQty": "236019782796951", - "swapFee": "141696887810", + "expectedQty": "562991125594490829543582", "reserves": [ - "2040271950808654558158691", - "16149168099572363756237052", - "12421026620220701657307486" - ], - "mAssetSupply": "30478210226805478035066133" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "2385328814589742363443200", - "1711080529745683417137152", - "1707878970476156080357376" + "491934845495139570464350528", + "264420660235049342047985901", + "829559338078402685175241152" ], - "insufficientLiquidityError": true - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "247395655592034875473920", - "expectedQty": "264778546677354005335023", - "reserves": [ - "2287667606400689433632611", - "16149168099572363756237052", - "12421026620220701657307486" - ] + "mAssetSupply": "1584308907543330322762866729" }, { - "type": "mintMulti", - "inputQtys": [ - "40667284640437475737600", - "111974951617800993505280", - "125184699084958966218752" + "type": "redeemMasset", + "inputQty": "563783477521835932778496", + "expectedQtys": [ + "175004718565884612124238", + "94067057154416220102594", + "295113874984785496896517" ], - "expectedQty": "278301624568389472312229", + "redemptionFee": "169135043256550779833", "reserves": [ - "2328334891041126909370211", - "16261143051190164749742332", - "12546211319305660623526238" + "491759840776573685852226290", + "264326593177894925827883307", + "829264224203417899678344635" ], - "mAssetSupply": "31021290398051221512713385" + "mAssetSupply": "1583745293200851743380868066" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "426465892678639", - "expectedQty": "452751358126237", + "inputIndex": 1, + "inputQty": "2520910804830005720252416", + "expectedQty": "2546365113149791473075330", "reserves": [ - "2328334891467592802048850", - "16261143051190164749742332", - "12546211319305660623526238" + "491759840776573685852226290", + "266847503982724931548135723", + "829264224203417899678344635" ] }, { "type": "redeemMasset", - "inputQty": "27911479380221103308", + "inputQty": "9224864135462", "expectedQtys": [ - "2094296346072894085", - "14626612606234785566", - "11285096752777819750" + "2858904772873", + "1551349946674", + "4821026956583" ], - "redemptionFee": "8373443814066330", + "redemptionFee": "2767459240", "reserves": [ - "2328332797171246729154765", - "16261128424577558514956766", - "12546200034208907845706488" + "491759840776570826947453417", + "266847503982723380198189049", + "829264224203413078651388052" ], - "mAssetSupply": "31021262495398036463802644" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "118362386038467246161920", - "82276342128441479397376", - "88248607942588831367168" - ], - "expectedQty": "295007115889931622660260", - "swapFee": "177110535855472256950", - "reserves": [ - "2209970411132779482992845", - "16178852082449117035559390", - "12457951426266319014339320" - ], - "mAssetSupply": "30726255379508104841142384" + "mAssetSupply": "1586291658313992312757267174" }, { "type": "redeemMasset", - "inputQty": "65018650551061113837977", + "inputQty": "2748452944949675622", "expectedQtys": [ - "4675030696947874742694", - "34225177742564929231581", - "26353884669898118551927" + "851781134871302357", + "462208685892367125", + "1436375164114064832" ], - "redemptionFee": "19505595165318334151", + "redemptionFee": "824535883484902", "reserves": [ - "2205295380435831608250151", - "16144626904706552106327809", - "12431597541596420895787393" + "491759839924789692076151060", + "266847503520514694305821924", + "829264222767037914537323220" ], - "mAssetSupply": "30661256234552209045638558" + "mAssetSupply": "1586291655566363903691076454" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "60618103570246704037888", - "expectedQty": "61256000562463523195822", - "swapFee": "36370862142148022422", + "type": "swap", + "inputIndex": 0, + "inputQty": "3120976072924964642095104", + "outputIndex": 1, + "expectedQty": "3087208088814327619463594", + "swapFee": "1872271228517878977501", "reserves": [ - "2205295380435831608250151", - "16083370904144088583131987", - "12431597541596420895787393" + "494880815997714656718246164", + "263760295431700366686358330", + "829264222767037914537323220" ], - "mAssetSupply": "30600674501844104489623092" + "mAssetSupply": "1586293527837592421570053955", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "71815856674378285056", - "42556191794622431232", - "4651270490501868544" + "type": "redeemMasset", + "inputQty": "216166294928337382", + "expectedQtys": [ + "67417825000771114", + "35932177738019614", + "112971019369978595" ], - "expectedQty": "123347800052242045803", - "swapFee": "74053111898484318", + "redemptionFee": "64849888478501", "reserves": [ - "2205223564579157229965095", - "16083328347952293960700755", - "12431592890325930393918849" + "494880815930296831717475050", + "263760295395768188948338716", + "829264222654066895167344625" ], - "mAssetSupply": "30600551154044052247577289" + "mAssetSupply": "1586293527621490976530195074" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "1678966324349774430470144", - "expectedQty": "1695375762201254120483756", - "swapFee": "1007379794609864658282", - "reserves": [ - "2205223564579157229965095", - "14387952585751039840216999", - "12431592890325930393918849" - ], - "mAssetSupply": "28922592209488887681765427" - }, - { - "type": "redeemMasset", - "inputQty": "12046942648489759539", - "expectedQtys": [ - "918252131644244333", - "5991124140006879884", - "5176498589363527938" - ], - "redemptionFee": "3614082794546927", + "inputQty": "4521286846262361456640", + "expectedQty": "4567817184997281322691", "reserves": [ - "2205222646327025585720762", - "14387946594626899833337115", - "12431587713827341030390911" - ], - "mAssetSupply": "28922580166160321986552815" + "494880815930296831717475050", + "263764816682614451309795356", + "829264222654066895167344625" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "222163661657638715785216", - "expectedQty": "234085034975040715823423", + "inputIndex": 1, + "inputQty": "1606793975544978929090560", + "expectedQty": "1623220731382948176794174", "reserves": [ - "2427386307984664301505978", - "14387946594626899833337115", - "12431587713827341030390911" + "494880815930296831717475050", + "265371610658159430238885916", + "829264222654066895167344625" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "4026477721570631", - "5062367065094985", - "2219526739637333" + "type": "redeemMasset", + "inputQty": "6692376038601830432768", + "expectedQtys": [ + "2085074935530815207075", + "1118086771952591829924", + "3493928214489482221709" ], - "expectedQty": "11446144202855222", - "swapFee": "6871809607477", + "redemptionFee": "2007712811580549129", "reserves": [ - "2427386303958186579935347", - "14387946589564532768242130", - "12431587711607814290753578" + "494878730855361300902267975", + "265370492571387477647055992", + "829260728725852405685122916" ], - "mAssetSupply": "29156665189689218499521016" + "mAssetSupply": "1587914625801733131738428300" }, { - "type": "redeemBassets", - "inputQtys": [ - "827469833815649288192", - "502913225565616996352", - "1072012731439307948032" - ], - "expectedQty": "2431171406930005441179", - "swapFee": "1459578591312790939", + "type": "swap", + "inputIndex": 1, + "inputQty": "219432855149784989696", + "outputIndex": 2, + "expectedQty": "222652061403484363978", + "swapFee": "132996823607662601", "reserves": [ - "2426558834124370930647155", - "14387443676338967151245778", - "12430515698876374982805546" + "494878730855361300902267975", + "265370712004242627432045688", + "829260506073791002200758938" ], - "mAssetSupply": "29154234018282288494079837" + "mAssetSupply": "1587914625934729955346090901", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "67950676074868312", - "84883188338600784", - "22382533247733832" - ], - "expectedQty": "177650247547551563", + "type": "swap", + "inputIndex": 0, + "inputQty": "138847928026623492281597952", + "outputIndex": 2, + "expectedQty": "139134123798047293109980771", + "swapFee": "83209890836127023644963", "reserves": [ - "2426558902075047005515467", - "14387443761222155489846562", - "12430515721258908230539378" + "633726658881984793183865927", + "265370712004242627432045688", + "690126382275743709090778167" ], - "mAssetSupply": "29154234195932536041631400" + "mAssetSupply": "1587997835825566082369735864", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "806088436247000", - "1447496446346986", - "3248778517132414" - ], - "expectedQty": "5507140084883402", + "type": "mint", + "inputIndex": 2, + "inputQty": "27490257633562181632", + "expectedQty": "27401836512677841161", "reserves": [ - "2426558902881135441762467", - "14387443762669651936193548", - "12430515724507686747671792" - ], - "mAssetSupply": "29154234201439676126514802" + "633726658881984793183865927", + "265370712004242627432045688", + "690126409766001342652959799" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "90435425331231031296", - "38002913421217333248", - "58359803278271594496" + "type": "redeemMasset", + "inputQty": "7047795971054229592106598", + "expectedQtys": [ + "2811739476327461683384994", + "1177405583851896277242424", + "3061975763207663253216067" ], - "expectedQty": "190490423934721394774", + "redemptionFee": "2114338791316268877631", "reserves": [ - "2426649338306466672793763", - "14387481765583073153526796", - "12430574084310965019266288" + "630914919405657331500480933", + "264193306420390731154803264", + "687064434002793679399743732" ], - "mAssetSupply": "29154424691863610847909576" + "mAssetSupply": "1580952181595139681724348058" }, { - "type": "mintMulti", - "inputQtys": [ - "5490765174257858560", - "5436829148501318656", - "5225320118064844800" + "type": "redeemMasset", + "inputQty": "74555270967792983500390", + "expectedQtys": [ + "29744050396662829716241", + "12455211913567920266085", + "32391180684053530850556" ], - "expectedQty": "16338612313427494626", + "redemptionFee": "22366581290337895050", "reserves": [ - "2426654829071640930652323", - "14387487202412221654845452", - "12430579309631083084111088" + "630885175355260668670764692", + "264180851208477163234537179", + "687032042822109625868893176" ], - "mAssetSupply": "29154441030475924275404202" + "mAssetSupply": "1580877648690753179078742718" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "2095508835591122321408", - "outputIndex": 0, - "expectedQty": "1983052793160545242342", - "swapFee": "1248753024414667460", + "inputQty": "256715845219206280773632", + "expectedQty": "255889826191476175132355", "reserves": [ - "2424671776278480385409981", - "14387487202412221654845452", - "12432674818466674206432496" - ], - "mAssetSupply": "29154442279228948690071662", - "hardLimitError": false, - "insufficientLiquidityError": false + "630885175355260668670764692", + "264180851208477163234537179", + "687288758667328832149666808" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "12118107662674108088320", - "23368549629017324519424", - "21267215055872954728448" + "type": "redeemMasset", + "inputQty": "9320040101416393113", + "expectedQtys": [ + "3717656369918965036", + "1556754957433824040", + "4050029278615521777" ], - "expectedQty": "57001299020553972556707", - "swapFee": "34221312199652174838", + "redemptionFee": "2796012030424917", "reserves": [ - "2412553668615806277321661", - "14364118652783204330326028", - "12411407603410801251704048" + "630885171637604298751799656", + "264180849651722205800713139", + "687288754617299553534145031" ], - "mAssetSupply": "29097440980208394717514955" + "mAssetSupply": "1581133529199700565867906877" }, { - "type": "mintMulti", - "inputQtys": [ - "66650378608392808693760", - "99916740120240705241088", - "43075385106864428548096" - ], - "expectedQty": "211707428997592082116453", + "type": "mint", + "inputIndex": 1, + "inputQty": "7097984286538317430784", + "expectedQty": "7166932416630526101426", "reserves": [ - "2479204047224199086015421", - "14464035392903445035567116", - "12454482988517665680252144" - ], - "mAssetSupply": "29309148409205986799631408" + "630885171637604298751799656", + "264187947636008744118143923", + "687288754617299553534145031" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "162070187586243178528768", - "202820588540614672384000", - "70723166758469063671808" + "4897756830799129642795008", + "12008144723631922734956544", + "4663504283227256237588480" ], - "expectedQty": "441443161476630712194963", - "swapFee": "265024911833078274281", + "expectedQty": "21654955397324039108608464", "reserves": [ - "2317133859637955907486653", - "14261214804362830363183116", - "12383759821759196616580336" + "635782928468403428394594664", + "276196092359640666853100467", + "691952258900526809771733511" ], - "mAssetSupply": "28867705247729356087436445" + "mAssetSupply": "1602795651529441235502616767" }, { "type": "mintMulti", "inputQtys": [ - "548216712236746667982848", - "260372956179008279543808", - "70187938873442339651584" + "30927111273919311872", + "26133476359915782144", + "1589234158714888704" ], - "expectedQty": "899979997988221677865807", + "expectedQty": "58806469993594539975", "reserves": [ - "2865350571874702575469501", - "14521587760541838642726924", - "12453947760632638956231920" + "635782959395514702313906536", + "276196118493117026768882611", + "691952260489760968486622215" ], - "mAssetSupply": "29767685245717577765302252" + "mAssetSupply": "1602795710335911229097156742" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "8440510811952856126455808", + "inputIndex": 0, + "inputQty": "1977291582494396", "outputIndex": 2, - "hardLimitError": true - }, - { - "type": "redeemMasset", - "inputQty": "296535360585498388699545", - "expectedQtys": [ - "28535065951337876639786", - "144615625233631004307893", - "124024691495833127166581" - ], - "redemptionFee": "88960608175649516609", - "reserves": [ - "2836815505923364698829715", - "14376972135308207638419031", - "12329923069136805829065339" - ], - "mAssetSupply": "29471238845740255026119316" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "74965326907801627262976", - "expectedQty": "74415995727464843091444", - "reserves": [ - "2836815505923364698829715", - "14451937462216009265682007", - "12329923069136805829065339" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "2940305402149946785792", - "55719639303498642751488", - "56356931904367826567168" - ], - "expectedQty": "114399193136030509021035", + "expectedQty": "1977503747423258", + "swapFee": "1183584270806", "reserves": [ - "2839755811325514645615507", - "14507657101519507908433495", - "12386280001041173655632507" + "635782959397491993896400932", + "276196118493117026768882611", + "691952260487783464739198957" ], - "mAssetSupply": "29660054034603750378231795" + "mAssetSupply": "1602795710335912412681427548", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 0, - "inputQty": "15697338664837663686656", + "inputIndex": 2, + "inputQty": "1156498090558860996640768", "outputIndex": 1, - "expectedQty": "16369855332959006171972", - "swapFee": "9755820907586953314", + "expectedQty": "1141961539387998815757448", + "swapFee": "691773416266923597133", "reserves": [ - "2855453149990352309302163", - "14491287246186548902261523", - "12386280001041173655632507" + "635782959397491993896400932", + "275054156953729027953125163", + "693108758578342325735839725" ], - "mAssetSupply": "29660063790424657965185109", + "mAssetSupply": "1602796402109328679605024681", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1760677174985469460480", - "expectedQty": "1769404625182120304145", - "swapFee": "1056406304991281676", + "type": "mint", + "inputIndex": 0, + "inputQty": "22872827929833688126193664", + "expectedQty": "22816207440090136805265074", "reserves": [ - "2855453149990352309302163", - "14491287246186548902261523", - "12384510596415991535328362" - ], - "mAssetSupply": "29658304169655977487006305" + "658655787327325682022594596", + "275054156953729027953125163", + "693108758578342325735839725" + ] }, { - "type": "redeemMasset", - "inputQty": "9670094307639165347430", - "expectedQtys": [ - "930741600840382443597", - "4723468809074684477554", - "4036760056165461834805" + "type": "mintMulti", + "inputQtys": [ + "400184393325105022763008", + "725542748890164774305792", + "31128971658438991937536" ], - "redemptionFee": "2901028292291749604", + "expectedQty": "1162528800232225256876722", "reserves": [ - "2854522408389511926858566", - "14486563777377474217783969", - "12380473836359826073493557" + "659055971720650787045357604", + "275779699702619192727430955", + "693139887550000764727777261" ], - "mAssetSupply": "29648636976376630613408479" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "8411405022876780199936", - "expectedQty": "8364873708028724559495", - "reserves": [ - "2854522408389511926858566", - "14486563777377474217783969", - "12388885241382702853693493" - ] + "mAssetSupply": "1626775138349651041667166477" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "146713280856254597562368", - "expectedQty": "141333917865367549011886", - "swapFee": "88027968513752758537", + "inputIndex": 2, + "inputQty": "28124268654652149760", + "expectedQty": "28191968011089568944", + "swapFee": "16874561192791289", "reserves": [ - "2713188490524144377846680", - "14486563777377474217783969", - "12388885241382702853693493" + "659055971720650787045357604", + "275779699702619192727430955", + "693139859358032753638208317" ], - "mAssetSupply": "29510376597196918493164143" + "mAssetSupply": "1626775110242256948207808006" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "31102501791885192", - "expectedQty": "29906408800598782", - "swapFee": "18661501075131", + "inputQty": "196841466812245082112", + "expectedQty": "196334015243106380129", "reserves": [ - "2713188460617735577247898", - "14486563777377474217783969", - "12388885241382702853693493" - ], - "mAssetSupply": "29510376566113078202354082" + "659056168562117599290439716", + "275779699702619192727430955", + "693139859358032753638208317" + ] }, { "type": "redeemMasset", - "inputQty": "218083708488974023104921", + "inputQty": "247928687448219707244544", "expectedQtys": [ - "20044633769257321418067", - "107024583698254240735377", - "91527245923909661364811" + "100413321057103122244223", + "42017595537701966417351", + "105606287529396575080460" ], - "redemptionFee": "65425112546692206931", + "redemptionFee": "74378606234465912173", "reserves": [ - "2693143826848478255829831", - "14379539193679219977048592", - "12297357995458793192328682" + "658955755241060496168195493", + "275737682107081490761013604", + "693034253070503357063127857" ], - "mAssetSupply": "29292358282736650871456092" + "mAssetSupply": "1626527452267430206072855764" }, { "type": "mintMulti", "inputQtys": [ - "15637677052378275119104", - "6585648700574162485248", - "6221499603568535011328" + "83435190833954015936512", + "124184177044533884747776", + "179328527496645948997632" ], - "expectedQty": "28969911953519711840349", + "expectedQty": "387355492400334209623112", "reserves": [ - "2708781503900856530948935", - "14386124842379794139533840", - "12303579495062361727340010" + "659039190431894450184132005", + "275861866284126024645761380", + "693213581598000003012125489" ], - "mAssetSupply": "29321328194690170583296441" + "mAssetSupply": "1626914807759830540282478876" }, { "type": "redeemMasset", - "inputQty": "9798109644327392326451", + "inputQty": "1760549697453221425971", "expectedQtys": [ - "904903615556480832243", - "4805871704664760749005", - "4110170404418121900608" + "712958761219733927961", + "298431621835422889983", + "749929144688519646008" ], - "redemptionFee": "2939432893298217697", + "redemptionFee": "528164909235966427", "reserves": [ - "2707876600285300050116692", - "14381318970675129378784835", - "12299469324657943605439402" + "659038477473133230450204044", + "275861567852504189222871397", + "693212831668855314492479481" ], - "mAssetSupply": "29311533024478736489187687" + "mAssetSupply": "1626913047738297996297019332" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "980904793620699135606784", - "expectedQty": "925865389184699440831121", - "swapFee": "588542876172419481364", - "reserves": [ - "1782011211100600609285571", - "14381318970675129378784835", - "12299469324657943605439402" + "type": "mintMulti", + "inputQtys": [ + "185702670072808900395008", + "895524904877275540881408", + "3981814372431836705980416" ], - "mAssetSupply": "28331216773734209773062267" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "1023720020291563552768", - "outputIndex": 1, - "expectedQty": "1127289992296715117028", - "swapFee": "668686036123234255", + "expectedQty": "5058944989087095676987298", "reserves": [ - "1783034931120892172838339", - "14380191680682832663667807", - "12299469324657943605439402" + "659224180143206039350599052", + "276757092757381464763752805", + "697194646041287151198459897" ], - "mAssetSupply": "28331217442420245896296522", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1631971992727385091974006630" }, { "type": "redeemMasset", - "inputQty": "36254242261136873881", + "inputQty": "1857475904571970892595", "expectedQtys": [ - "2280988725957831358", - "18396193214302308240", - "15734380956391250738" + "750089883817390394128", + "314904552662080395256", + "793294097515675461386" ], - "redemptionFee": "10876272678341062", + "redemptionFee": "557242771371591267", "reserves": [ - "1783032650132166215006981", - "14380173284489618361359567", - "12299453590276987214188664" + "659223430053322221960204924", + "276756777852828802683357549", + "697193852747189635522998511" ], - "mAssetSupply": "28331181199054257437763703" + "mAssetSupply": "1631970135808723291374705302" }, { "type": "redeemMasset", - "inputQty": "2102145989078956795494", + "inputQty": "232091395667831957120614", "expectedQtys": [ - "132259592322154148375", - "1066674721849625675695", - "912333667874623498956" - ], - "redemptionFee": "630643796723687038", - "reserves": [ - "1782900390539844060858606", - "14379106609767768735683872", - "12298541256609112590689708" - ], - "mAssetSupply": "28329079683708975204655247" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "4549563496292961554006016", - "outputIndex": 2, - "expectedQty": "4661607402100695962425515", - "swapFee": "2798293032835874409318", - "reserves": [ - "6332463886832805614864622", - "14379106609767768735683872", - "7636933854508416628264193" + "93723642704057851070024", + "39347286793654699005718", + "99122004120905893993195" ], - "mAssetSupply": "28331877976741811079064565", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "431284360052747207180288", - "outputIndex": 2, - "expectedQty": "428300868767147398348176", - "swapFee": "257707327580490398131", + "redemptionFee": "69627418700349587136", "reserves": [ - "6332463886832805614864622", - "14810390969820515942864160", - "7208632985741269229916017" + "659129706410618164109134900", + "276717430566035147984351831", + "697094730743068729629005316" ], - "mAssetSupply": "28332135684069391569462696", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1631738114040474159767171824" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "13104028370033031774208", - "outputIndex": 2, - "expectedQty": "13120112225656164110379", - "swapFee": "7896676990304455734", - "reserves": [ - "6345567915202838646638830", - "14810390969820515942864160", - "7195512873515613065805638" - ], - "mAssetSupply": "28332143580746381873918430", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemMasset", - "inputQty": "114828808127982945383219", - "expectedQtys": [ - "25710564480294160614898", - "60007790807131380897898", - "29154316867381013339835" - ], - "redemptionFee": "34448642438394883614", - "reserves": [ - "6319857350722544486023932", - "14750383179013384561966262", - "7166358556648232052465803" - ], - "mAssetSupply": "28217349221260837323418825" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "18292888629125108989952", - "expectedQty": "18362527778114744813681", - "swapFee": "10975733177475065393", - "reserves": [ - "6319857350722544486023932", - "14732020651235269817152581", - "7166358556648232052465803" - ], - "mAssetSupply": "28199067308364889689494266" - }, - { - "type": "redeemMasset", - "inputQty": "4821098118179873986969", - "expectedQtys": [ - "1080160256789204570412", - "2517927593388296824845", - "1224840256545927605190" - ], - "redemptionFee": "1446329435453962196", + "inputQty": "398023358699446927360", + "expectedQty": "397007422667626024672", "reserves": [ - "6318777190465755281453520", - "14729502723641881520327736", - "7165133716391686124860613" - ], - "mAssetSupply": "28194247656576145269469493" + "659130104433976863556062260", + "276717430566035147984351831", + "697094730743068729629005316" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "119399445780192", - "82495174837807", - "357997677271808" + "97178991996219718369280", + "333477588774693998952448", + "644651929531156556414976" ], - "expectedQty": "560951062913738", + "expectedQty": "1076229755393539739295331", + "swapFee": "646125528553255797055", "reserves": [ - "6318777190585154727233712", - "14729502723724376695165543", - "7165133716749683802132421" + "659032925441980643837692980", + "276383952977260453985399383", + "696450078813537573072590340" ], - "mAssetSupply": "28194247657137096332383231" + "mAssetSupply": "1630662281292503287653901165" }, { "type": "redeemBassets", "inputQtys": [ - "6251682925278682677248", - "6367936846984730640384", - "1668295825168378101760" + "10233519965304769174568960", + "2268827861830400768737280", + "627013669631834976157696" ], - "expectedQty": "14291268303043023340138", - "swapFee": "8579908927182123278", + "expectedQty": "13122814299315604640790045", + "swapFee": "7878415628966742830172", "reserves": [ - "6312525507659876044556464", - "14723134786877391964525159", - "7163465420924515424030661" + "648799405476675874663124020", + "274115125115430053216662103", + "695823065143905738096432644" ], - "mAssetSupply": "28179956388834053309043093" + "mAssetSupply": "1617539466993187683013111120" }, { "type": "redeemMasset", - "inputQty": "181079059781092779648614", + "inputQty": "58882298571634057727180", "expectedQtys": [ - "40550923789536943008410", - "94579691751150414834771", - "46017262029342563527186" + "23610762052858911053100", + "9975451487097173691396", + "25322022004525892952260" ], - "redemptionFee": "54323717934327833894", + "redemptionFee": "17664689571490217318", "reserves": [ - "6271974583870339101548054", - "14628555095126241549690388", - "7117448158895172860503475" + "648775794714623015752070920", + "274105149663942956042970707", + "695797743121901212203480384" ], - "mAssetSupply": "27998931652770894857228373" + "mAssetSupply": "1617480602359305620445601258" }, { - "type": "redeemMasset", - "inputQty": "48278697460044339", - "expectedQtys": [ - "10811552609821895", - "25216523265794073", - "12268969554734719" + "type": "redeemBassets", + "inputQtys": [ + "80629301139076710137856", + "142722859027723915886592", + "208182891475972369940480" ], - "redemptionFee": "14483609238013", + "expectedQty": "432028415316451499536729", + "swapFee": "259372672793547027938", "reserves": [ - "6271974573058786491726159", - "14628555069909718283896315", - "7117448146626203305768756" + "648695165413483939041933064", + "273962426804915232127084115", + "695589560230425239833539904" ], - "mAssetSupply": "27998931604506681006422047" + "mAssetSupply": "1617048573943989168946064529" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "2644622493100105216", - "expectedQty": "2631628015915390601", - "swapFee": "1586773495860063", + "inputQty": "8166156944645998503788544", + "outputIndex": 2, + "expectedQty": "8165207916981577657959133", + "swapFee": "4887263116255043266860", "reserves": [ - "6271971941430770576335558", - "14628555069909718283896315", - "7117448146626203305768756" + "656861322358129937545721608", + "273962426804915232127084115", + "687424352313443662175580771" ], - "mAssetSupply": "27998928961470961402176894" + "mAssetSupply": "1617053461207105423989331389", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "7206024876699422818304", - "7050284151225938083840", - "15751846951105534623744" + "198389028991513722880", + "81778272159075303424", + "415948817323517739008" + ], + "expectedQty": "695124895635755414821", + "swapFee": "417325332581001850", + "reserves": [ + "656861123969100946031998728", + "273962345026643073051780691", + "687423936364626338657841763" + ], + "mAssetSupply": "1617052766082209788233916568" + }, + { + "type": "mintMulti", + "inputQtys": [ + "2761486207184565750988800", + "4707582185837433383288832", + "3279989464900715971346432" ], - "expectedQty": "30048272726438862260565", - "swapFee": "18039787508368338359", + "expectedQty": "10775724782200420256309630", "reserves": [ - "6264765916554071153517254", - "14621504785758492345812475", - "7101696299675097771145012" + "659622610176285511782987528", + "278669927212480506435069523", + "690703925829527054629188195" ], - "mAssetSupply": "27968880688744522539916329" + "mAssetSupply": "1627828490864410208490226198" }, { "type": "redeemMasset", - "inputQty": "8880521421820174", + "inputQty": "40263522794425955123", "expectedQtys": [ - "1988556432673119", - "4641145061821226", - "2254214131495860" + "16310540410465757709", + "6890693312902032308", + "17079090558916784635" ], - "redemptionFee": "2664156426546", + "redemptionFee": "12079056838327786", "reserves": [ - "6264765914565514720844135", - "14621504781117347283991249", - "7101696297420883639649152" + "659622593865745101317229819", + "278669920321787193533037215", + "690703908750436495712403560" ], - "mAssetSupply": "27968880679866665274522701" + "mAssetSupply": "1627828450612966470902598861" }, { "type": "swap", "inputIndex": 2, - "inputQty": "163657990153454256128", - "outputIndex": 1, - "expectedQty": "164698535368672297273", - "swapFee": "98443839745416250", + "inputQty": "3578002239251775070666752", + "outputIndex": 0, + "expectedQty": "3574320609197266164420450", + "swapFee": "2140470401895126332099", "reserves": [ - "6264765914565514720844135", - "14621340082581978611693976", - "7101859955411037093905280" + "656048273256547835152809369", + "278669920321787193533037215", + "694281910989688270783070312" ], - "mAssetSupply": "27968880778310505019938951", + "mAssetSupply": "1627830591083368366028930960", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1163467488990149031755776", - "877907663627194619396096", - "1148722344937611354701824" + "454607353996580421632", + "459889335334610731008", + "133091891064377458688" ], - "expectedQty": "3193608507968455959390385", + "expectedQty": "1050245401022006306303", + "swapFee": "630525555946771846", "reserves": [ - "7428233403555663752599911", - "15499247746209173231090072", - "8250582300348648448607104" + "656047818649193838572387737", + "278669460432451858922306207", + "694281777897797206405611624" ], - "mAssetSupply": "31162489286278960979329336" + "mAssetSupply": "1627829540837967344022624657" }, { "type": "mintMulti", "inputQtys": [ - "1173050018606114062467072", - "893454912259037755080704", - "924174681939387671904256" + "110962629335523721216", + "279144229799969587200", + "320232206240262127616" ], - "expectedQty": "2992896245317678295515728", + "expectedQty": "711652103568989645205", "reserves": [ - "8601283422161777815066983", - "16392702658468210986170776", - "9174756982288036120511360" + "656047929611823174096108953", + "278669739576681658891893407", + "694282098130003446667739240" ], - "mAssetSupply": "34155385531596639274845064" + "mAssetSupply": "1627830252490070913012269862" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "8716074403676701696", - "expectedQty": "8739359670947173318", - "swapFee": "5229644642206021", + "inputIndex": 0, + "inputQty": "472433476725615594831872", + "expectedQty": "473334183518575854422331", + "swapFee": "283460086035369356899", "reserves": [ - "8601283422161777815066983", - "16392693919108540038997458", - "9174756982288036120511360" + "655574595428304598241686622", + "278669739576681658891893407", + "694282098130003446667739240" ], - "mAssetSupply": "34155376820751880240349389" + "mAssetSupply": "1627358102473431332786794889" }, { - "type": "redeemBassets", - "inputQtys": [ - "50401226680441856000", - "47762575854681915392", - "100507551621319180288" + "type": "redeemMasset", + "inputQty": "6222993650976803310796", + "expectedQtys": [ + "2506155619915306002703", + "1065309331402872042383", + "2654128140670739102346" ], - "expectedQty": "198838571075879191214", - "swapFee": "119374767506031133", + "redemptionFee": "1866898095293040993", "reserves": [ - "8601233020935097373210983", - "16392646156532685357082066", - "9174656474736414801331072" + "655572089272684682935683919", + "278668674267350256019851024", + "694279444001862775928636894" ], - "mAssetSupply": "34155177982180804361158175" + "mAssetSupply": "1627351881346678451276525086" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1115014328383653412864", - "expectedQty": "1117110739452665502537", + "type": "redeemMasset", + "inputQty": "3904407958770784", + "expectedQtys": [ + "1572403010049594", + "668392491679508", + "1665243388831951" + ], + "redemptionFee": "1171322387631", "reserves": [ - "8601233020935097373210983", - "16392646156532685357082066", - "9175771489064798454743936" - ] + "655572089271112279925634325", + "278668674266681863528171516", + "694279444000197532539804943" + ], + "mAssetSupply": "1627351881342775214640141933" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2295426116543028920320", - "outputIndex": 2, - "expectedQty": "2295828137237312310172", - "swapFee": "1380917259710849955", + "type": "redeem", + "inputIndex": 1, + "inputQty": "251048271939131580350464", + "expectedQty": "248631191469837989215469", + "swapFee": "150628963163478948210", "reserves": [ - "8603528447051640402131303", - "16392646156532685357082066", - "9173475660927561142433764" + "655572089271112279925634325", + "278420043075212025538956047", + "694279444000197532539804943" ], - "mAssetSupply": "34156296473837516737510667", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1627100983699799246538739679" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "26434751966518984107360256", + "expectedQty": "26153621756564404047186064", + "swapFee": "15860851179911390464416", + "reserves": [ + "655572089271112279925634325", + "252266421318647621491769983", + "694279444000197532539804943" + ], + "mAssetSupply": "1600682092584460173821843839" }, { "type": "mintMulti", "inputQtys": [ - "242037735430735481798656", - "141441885342238335041536", - "394850222534925553238016" + "66463963389396544126976", + "61787965550199725621248", + "46271644618409742696448" ], - "expectedQty": "779215071747596272827997", + "expectedQty": "174867934563876421531049", "reserves": [ - "8845566182482375883929959", - "16534088041874923692123602", - "9568325883462486695671780" + "655638553234501676469761301", + "252328209284197821217391231", + "694325715644815942282501391" ], - "mAssetSupply": "34935511545585113010338664" + "mAssetSupply": "1600856960519024050243374888" }, { "type": "mintMulti", "inputQtys": [ - "810135963173319602077696", - "145805956270047052693504", - "230222937486637226000384" + "19257931776231353614336", + "2850144877880764530688", + "25638672777584733847552" ], - "expectedQty": "1187968703795251714126689", + "expectedQty": "47635360083115409426588", "reserves": [ - "9655702145655695486007655", - "16679893998144970744817106", - "9798548820949123921672164" + "655657811166277907823375637", + "252331059429075701981921919", + "694351354317593527016348943" ], - "mAssetSupply": "36123480249380364724465353" + "mAssetSupply": "1600904595879107165652801476" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "91266668285591338090496", - "outputIndex": 2, - "expectedQty": "90783181939190403202372", - "swapFee": "54604064377586474614", + "type": "mint", + "inputIndex": 2, + "inputQty": "55127417520225827946496", + "expectedQty": "54939545619727240621355", "reserves": [ - "9655702145655695486007655", - "16771160666430562082907602", - "9707765639009933518469792" - ], - "mAssetSupply": "36123534853444742310939967", - "hardLimitError": false, - "insufficientLiquidityError": false + "655657811166277907823375637", + "252331059429075701981921919", + "694406481735113752844295439" + ] }, { "type": "mintMulti", "inputQtys": [ - "5346323456153044910080", - "25644516856356587700224", - "44085181545778908233728" + "22647284864460468224", + "20692530207306358784", + "21679629105990471680" ], - "expectedQty": "75095643807196903409578", + "expectedQty": "65112558764640089413", "reserves": [ - "9661048469111848530917735", - "16796805183286918670607826", - "9751850820555712426703520" + "655657833813562772283843861", + "252331080121605909288280703", + "694406503414742858834767119" ], - "mAssetSupply": "36198630497251939214349545" + "mAssetSupply": "1600959600537285657533512244" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "789661252383581143040", - "1249808677906076139520", - "1176215584903259095040" + "246222030705123978641408", + "246416134930074024542208", + "232552254549804911165440" ], - "expectedQty": "3215845079047394494736", - "swapFee": "1930665446696454569", + "expectedQty": "726453809661881849135890", "reserves": [ - "9660258807859464949774695", - "16795555374609012594468306", - "9750674604970809167608480" + "655904055844267896262485269", + "252577496256535983312822911", + "694639055669292663745932559" ], - "mAssetSupply": "36195414652172891819854809" + "mAssetSupply": "1601686054346947539382648134" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2646267501007048183644160", + "expectedQty": "2638529732101902045292039", + "reserves": [ + "658550323345274944446129429", + "252577496256535983312822911", + "694639055669292663745932559" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "405124156871295107072", - "expectedQty": "403955765984048787773", + "inputQty": "34582631801108496606298112", + "expectedQty": "34923293706740648801155025", "reserves": [ - "9660258807859464949774695", - "16795960498765883889575378", - "9750674604970809167608480" + "658550323345274944446129429", + "287160128057644479919121023", + "694639055669292663745932559" ] }, { "type": "redeemBassets", "inputQtys": [ - "669056766747792375808", - "9144473831890883706880", - "6159802717121291485184" + "163301178786097152393216", + "617088244702594117664768", + "2455515883485550226702336" ], - "expectedQty": "15959826151215472632221", - "swapFee": "9581644677535805062", + "expectedQty": "3233824466196756029213831", + "swapFee": "1941459555451324412175", "reserves": [ - "9659589751092717157398887", - "16786816024933993005868498", - "9744514802253687876123296" + "658387022166488847293736213", + "286543039812941885801456255", + "692183539785807113519230223" ], - "mAssetSupply": "36179858781787660396010361" + "mAssetSupply": "1636014053319593334199881367" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "458884180660730401390592", - "outputIndex": 1, - "expectedQty": "460660152192294760401388", - "swapFee": "275822187166358052212", + "type": "redeemBassets", + "inputQtys": [ + "110840079093098195451904", + "45769035925298272534528", + "117708942597778009227264" + ], + "expectedQty": "274108402254158817666020", + "swapFee": "164563779620267451070", "reserves": [ - "10118473931753447558789479", - "16326155872741698245467110", - "9744514802253687876123296" + "658276182087395749098284309", + "286497270777016587528921727", + "692065830843209335510002959" ], - "mAssetSupply": "36180134603974826754062573", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1635739944917339175382215347" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "18620299993885707530665984", + "15550333792724856296439808", + "20667758361097566139973632" + ], + "expectedQty": "54869891205062590604391961", + "swapFee": "32941699742883284333235", + "reserves": [ + "639655882093510041567618325", + "270946936984291731232481919", + "671398072482111769370029327" + ], + "mAssetSupply": "1580870053712276584777823386" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "538016203712855252402176", - "expectedQty": "536555797197331706157386", - "swapFee": "322809722227713151441", + "inputIndex": 1, + "inputQty": "69871777764604698624", + "expectedQty": "69201191636746717808", + "swapFee": "41923066658762819", "reserves": [ - "10118473931753447558789479", - "16326155872741698245467110", - "9207959005056356169965910" + "639655882093510041567618325", + "270946867783100094485764111", + "671398072482111769370029327" ], - "mAssetSupply": "35642441209984199214811838" + "mAssetSupply": "1580869983882421886831887581" }, { "type": "mintMulti", "inputQtys": [ - "193354742950300131262464", - "239635398324819534544896", - "239511372171688458321920" + "317990120780275468206080", + "377517318696934391676928", + "1047821525953478324649984" ], - "expectedQty": "672653103528081996962693", + "expectedQty": "1742873762076378019072999", "reserves": [ - "10311828674703747690051943", - "16565791271066517780012006", - "9447470377228044628287830" + "639973872214290317035824405", + "271324385101797028877441039", + "672445894008065247694679311" ], - "mAssetSupply": "36315094313512281211774531" + "mAssetSupply": "1582612857644498264850960580" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "154014625359874686976", - "expectedQty": "153596324360425168664", + "inputIndex": 2, + "inputQty": "25549390948463236524015616", + "expectedQty": "25471286160674131839653471", "reserves": [ - "10311828674703747690051943", - "16565945285691877654698982", - "9447470377228044628287830" + "639973872214290317035824405", + "271324385101797028877441039", + "697995284956528484218694927" ] }, { "type": "mintMulti", "inputQtys": [ - "132255746993179569684480", - "102885651080244229046272", - "47480211974494827315200" - ], - "expectedQty": "282621078491321179819888", - "reserves": [ - "10444084421696927259736423", - "16668830936772121883745254", - "9494950589202539455603030" + "1490655437846171388739584", + "106578467013863011254272", + "2472376222390699887165440" ], - "mAssetSupply": "36597868988327962816763083" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "148588658007569006592", - "expectedQty": "148313626533098405245", - "swapFee": "89153194804541403", + "expectedQty": "4059109680255160050012550", "reserves": [ - "10443936108070394161331178", - "16668830936772121883745254", - "9494950589202539455603030" + "641464527652136488424563989", + "271430963568810891888695311", + "700467661178919184105860367" ], - "mAssetSupply": "36597720488823150052297894" + "mAssetSupply": "1612143253485427556740626601" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "238629471422045440", - "86984690695718192", - "256126170265491808" + "3828919308571220901888", + "7940291829669760598016", + "5357096163015570489344" ], - "expectedQty": "582396522820830769", - "swapFee": "349647702313886", + "expectedQty": "17175469207201854144428", "reserves": [ - "10443935869440922739285738", - "16668830849787431188027062", - "9494950333076369190111222" + "641468356571445059645465877", + "271438903860640561649293327", + "700473018275082199676349711" ], - "mAssetSupply": "36597719906426627231467125" + "mAssetSupply": "1612160428954634758594771029" }, { - "type": "mintMulti", - "inputQtys": [ - "615193117475457073152", - "702614988376651071488", - "162876264891141390336" + "type": "redeemMasset", + "inputQty": "3195911758746612507921612", + "expectedQtys": [ + "1271251423830306404024404", + "537933148971073683743784", + "1388185890565798253760264" ], - "expectedQty": "1479933491655929913843", + "redemptionFee": "958773527623983752376", "reserves": [ - "10444551062558398196358890", - "16669533464775807839098550", - "9495113209341260331501558" + "640197105147614753241441473", + "270900970711669487965549543", + "699084832384516401422589447" ], - "mAssetSupply": "36599199839918283161380968" + "mAssetSupply": "1608965475969415770070601793" }, { "type": "mintMulti", "inputQtys": [ - "10888096699759921725440", - "17821435674367740608512", - "18045427471070584111104" + "34995655248789842018959360", + "6417395778451904862879744", + "68966778009962883003187200" ], - "expectedQty": "46762146434823910246558", + "expectedQty": "110124648591815770657608892", "reserves": [ - "10455439159258158118084330", - "16687354900450175579707062", - "9513158636812330915612662" + "675192760396404595260400833", + "277318366490121392828429287", + "768051610394479284425776647" ], - "mAssetSupply": "36645961986353107071627526" + "mAssetSupply": "1719090124561231540728210685" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "42093414806211215360", - "outputIndex": 1, - "expectedQty": "42235008631084345879", - "swapFee": "25287767301768482", + "type": "redeemMasset", + "inputQty": "60851101747638398510694", + "expectedQtys": [ + "23892812196582897241621", + "9813368919005520296885", + "27178776137446376689054" + ], + "redemptionFee": "18255330524291519553", "reserves": [ - "10455481252672964329299690", - "16687312665441544495361183", - "9513158636812330915612662" + "675168867584208012363159212", + "277308553121202387308132402", + "768024431618341838049087593" ], - "mAssetSupply": "36645962011640874373396008", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1719029291714814426621219544" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "5671734680352732479488", - "expectedQty": "5678846217724507521014", + "inputQty": "1670755235785685784854528", + "expectedQty": "1673885965794969632281782", + "swapFee": "1002453141471411470912", "reserves": [ - "10461152987353317061779178", - "16687312665441544495361183", - "9513158636812330915612662" - ] + "673494981618413042730877430", + "277308553121202387308132402", + "768024431618341838049087593" + ], + "mAssetSupply": "1717359538932170212247835928" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3014937890038915006464", - "32667544243173324750848", - "25234397576908528156672" + "454342274390502932480", + "11188055493932631457792", + "15549846103722093969408" ], - "expectedQty": "60890888436375958881705", - "swapFee": "36556466941990769790", + "expectedQty": "27254140799788384072268", "reserves": [ - "10458138049463278146772714", - "16654645121198371170610335", - "9487924239235422387455990" + "673495435960687433233809910", + "277319741176696319939590194", + "768039981464445560143057001" ], - "mAssetSupply": "36590749969422222922035317" + "mAssetSupply": "1717386793072970000631908196" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2131942532411222654976", - "outputIndex": 1, - "expectedQty": "2139062745598037841787", - "swapFee": "1280747469107356810", + "type": "redeemMasset", + "inputQty": "164498836750042740975206", + "expectedQtys": [ + "64490992625537490540251", + "26554931820185683424213", + "73544166947603071087275" + ], + "redemptionFee": "49349651025012822292", "reserves": [ - "10460269991995689369427690", - "16652506058452773132768548", - "9487924239235422387455990" + "673430944968061895743269659", + "277293186244876134256165981", + "767966437297497957071969726" ], - "mAssetSupply": "36590751250169692029392127", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1717222343585870982903755282" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "48509778280413863936", - "13028414856918173696", - "71520375390222385152" + "267091408868240527458304", + "190822822441667673456640", + "193506786928273634885632" ], - "expectedQty": "133249211342169139823", + "expectedQty": "652096206165198911515222", + "swapFee": "391492619270681755962", "reserves": [ - "10460318501773969783291626", - "16652519086867630050942244", - "9487995759610812609841142" + "673163853559193655215811355", + "277102363422434466582709341", + "767772930510569683437084094" ], - "mAssetSupply": "36590884499381034198531950" + "mAssetSupply": "1716570247379705783992240060" }, { "type": "mintMulti", "inputQtys": [ - "16034084410323754", - "23379827063963480", - "43226327705035896" + "3385693390476652354469888", + "3158360601377042220449792", + "424590862145496079663104" ], - "expectedQty": "82697270448779876", + "expectedQty": "6992077032244128644690879", "reserves": [ - "10460318517808054193615380", - "16652519110247457114905724", - "9487995802837140314877038" + "676549546949670307570281243", + "280260724023811508803159133", + "768197521372715179516747198" ], - "mAssetSupply": "36590884582078304647311826" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "31118121571799220", - "expectedQty": "31034276089875211", - "reserves": [ - "10460318517808054193615380", - "16652519141365578686704944", - "9487995802837140314877038" - ] + "mAssetSupply": "1723562324411949912636930939" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "577831187764399535292416", - "expectedQty": "576218501356150517960519", + "type": "redeemBassets", + "inputQtys": [ + "2399655278405509508497408", + "1037524761910806319202304", + "12476522976573740988497920" + ], + "expectedQty": "15874979199063313989652038", + "swapFee": "9530705943003790668192", "reserves": [ - "10460318517808054193615380", - "17230350329129978221997360", - "9487995802837140314877038" - ] + "674149891671264798061783835", + "279223199261900702483956829", + "755720998396141438528249278" + ], + "mAssetSupply": "1707687345212886598647278901" }, { - "type": "mintMulti", - "inputQtys": [ - "11281625818012743680", - "4363947849890855424", - "11761992944925560832" - ], - "expectedQty": "27439969654227689960", + "type": "redeem", + "inputIndex": 0, + "inputQty": "425641023462778077184", + "expectedQty": "426441740497189380336", + "swapFee": "255384614077666846", "reserves": [ - "10460329799433872206359060", - "17230354693077828112852784", - "9488007564830085240437870" + "674149465229524300872403499", + "279223199261900702483956829", + "755720998396141438528249278" ], - "mAssetSupply": "37167130554438385482837516" + "mAssetSupply": "1707686919827247749946868563" }, { - "type": "redeemMasset", - "inputQty": "10701009237240522054041", - "expectedQtys": [ - "3010792151917108662350", - "4959405456554008816012", - "2730929068323126204373" + "type": "redeemBassets", + "inputQtys": [ + "427273511737994990583808", + "139464974465461789917184", + "263435377843887226748928" ], - "redemptionFee": "3210302771172156616", + "expectedQty": "829640492201908939722335", + "swapFee": "498083145208270326029", "reserves": [ - "10457319007281955097696710", - "17225395287621274104036772", - "9485276635761762114233497" + "673722191717786305881819691", + "279083734287435240694039645", + "755457563018297551301500350" ], - "mAssetSupply": "37156432755503916132940091" + "mAssetSupply": "1706857279335045841007146228" }, { - "type": "redeemMasset", - "inputQty": "39566558578150100172", - "expectedQtys": [ - "11132284946628283641", - "18337205599884384912", - "10097502259744211276" + "type": "mintMulti", + "inputQtys": [ + "204619718322064313024512", + "222150825499776268632064", + "167128111996818079875072" ], - "redemptionFee": "11869967573445030", + "expectedQty": "595097969853702012495224", "reserves": [ - "10457307874997008469413069", - "17225376950415674219651860", - "9485266538259502370022221" + "673926811436108370194844203", + "279305885112935016962671709", + "755624691130294369381375422" ], - "mAssetSupply": "37156393200815305556284949" + "mAssetSupply": "1707452377304899543019641452" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "3569850536317312749797376", - "outputIndex": 0, - "expectedQty": "3538764860081476853463897", - "swapFee": "2134473483847012731219", + "inputIndex": 0, + "inputQty": "740343863053539344384", + "outputIndex": 1, + "expectedQty": "730568511130147805762", + "swapFee": "443107570522628611", "reserves": [ - "6918543014915531615949172", - "20795227486732986969449236", - "9485266538259502370022221" + "673927551779971423734188587", + "279305154544423886814865947", + "755624691130294369381375422" ], - "mAssetSupply": "37158527674299152569016168", + "mAssetSupply": "1707452377748007113542270063", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "41009003708988678144", - "expectedQty": "41219762633720142041", - "swapFee": "24605402225393206", - "reserves": [ - "6918543014915531615949172", - "20795186266970353249307195", - "9485266538259502370022221" - ], - "mAssetSupply": "37158486689900845805731230" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "7351464528948965993873408", - "expectedQty": "7297903355087962489980939", - "reserves": [ - "6918543014915531615949172", - "28146650795919319243180603", - "9485266538259502370022221" - ] - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "227332191066057932800", - "180145720827496759296", - "473136423199443976192" + "4425016290679287820845056", + "9397136889074650665975808", + "15071724398198031265038336" ], - "expectedQty": "885139818123918809286", - "swapFee": "531402732513859601", + "expectedQty": "28926016862179765691703039", "reserves": [ - "6918315682724465558016372", - "28146470650198491746421307", - "9484793401836302926046029" + "678352568070650711555033643", + "288702291433498537480841755", + "770696415528492400646413758" ], - "mAssetSupply": "44455504905170684376902883" + "mAssetSupply": "1736378394610186879233973102" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "1901432373742982498615296", + "inputIndex": 1, + "inputQty": "91169806104663090737971200", "outputIndex": 0, - "expectedQty": "1869489199389426894057051", - "swapFee": "1145916353168390347030", + "expectedQty": "91863655865823757644846576", + "swapFee": "55100348009921089312454", "reserves": [ - "5048826483335038663959321", - "28146470650198491746421307", - "11386225775579285424661325" + "586488912204826953910187067", + "379872097538161628218812955", + "770696415528492400646413758" ], - "mAssetSupply": "44456650821523852767249913", + "mAssetSupply": "1736433494958196800323285556", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "20403119848234554490880", - "expectedQty": "20187991509702740125380", + "inputQty": "656622592266786826092544", + "expectedQty": "659587304678362708022711", "reserves": [ - "5048826483335038663959321", - "28166873770046726300912187", - "11386225775579285424661325" + "586488912204826953910187067", + "380528720130428415044905499", + "770696415528492400646413758" ] }, { - "type": "redeemMasset", - "inputQty": "51771753784970759372", - "expectedQtys": [ - "5875151935060811902", - "32776856855930522172", - "13249773312519432492" - ], - "redemptionFee": "15531526135491227", + "type": "redeem", + "inputIndex": 1, + "inputQty": "103412629714191826944", + "expectedQty": "102887071380469807807", + "swapFee": "62047577828515096", "reserves": [ - "5048820608183103603147419", - "28166840993189870370390015", - "11386212525805972905228833" + "586488912204826953910187067", + "380528617243357034575097692", + "770696415528492400646413758" ], - "mAssetSupply": "44476787056811296672107148" + "mAssetSupply": "1737092978912293026667996419" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "81037155970639133147136", - "expectedQty": "81850241528727585889683", - "swapFee": "48622293582383479888", + "inputIndex": 2, + "inputQty": "3850974423290750", + "expectedQty": "3858969332571241", + "swapFee": "2310584653974", "reserves": [ - "5048820608183103603147419", - "28084990751661142784500332", - "11386212525805972905228833" + "586488912204826953910187067", + "380528617243357034575097692", + "770696415524633431313842517" ], - "mAssetSupply": "44395798523134239922439900" + "mAssetSupply": "1737092978908444362829359643" }, { - "type": "redeemBassets", - "inputQtys": [ - "3425209497774469", - "17396378825051940", - "28208916840237284" + "type": "redeemMasset", + "inputQty": "43287528521035478466560", + "expectedQtys": [ + "14610639456750060721765", + "9479746869582124576335", + "19199625472045494458598" ], - "expectedQty": "49008142869447483", - "swapFee": "29422539245215", + "redemptionFee": "12986258556310643539", "reserves": [ - "5048820604757894105372950", - "28084990734264763959448392", - "11386212497597056064991549" + "586474301565370203849465302", + "380519137496487452450521357", + "770677215899161385819383919" ], - "mAssetSupply": "44395798474126097052992417" + "mAssetSupply": "1737049704366181883661536622" }, { "type": "swap", "inputIndex": 0, - "inputQty": "254429882029047111745536", - "outputIndex": 2, - "expectedQty": "260625647887204990503462", - "swapFee": "156859248674179363068", - "reserves": [ - "5303250486786941217118486", - "28084990734264763959448392", - "11125586849709851074488087" - ], - "mAssetSupply": "44395955333374771232355485", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "1246054410257223385088", - "outputIndex": 2, - "expectedQty": "1229347884783163155404", - "swapFee": "740027021462447827", + "inputQty": "561581466322250592419840", + "outputIndex": 1, + "expectedQty": "558454492828508008294624", + "swapFee": "336788693680379150329", "reserves": [ - "5303250486786941217118486", - "28086236788675021182833480", - "11124357501825067911332683" + "587035883031692454441885142", + "379960683003658944442226733", + "770677215899161385819383919" ], - "mAssetSupply": "44395956073401792694803312", + "mAssetSupply": "1737050041154875564040686951", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "509586952913153647706112", - "expectedQty": "514447938975000713854707", - "swapFee": "305752171747892188623", - "reserves": [ - "5303250486786941217118486", - "27571788849700020468978773", - "11124357501825067911332683" - ], - "mAssetSupply": "43886674872660386939285823" - }, { "type": "redeemMasset", - "inputQty": "517283941835056547574579", + "inputQty": "304991254039566301423206", "expectedQtys": [ - "62489658612923791132158", - "324885968870999104450930", - "131081363082726716244377" + "103040841454412605298526", + "66693484381391158284393", + "135274914381522411721707" ], - "redemptionFee": "155185182550516964272", + "redemptionFee": "91497376211869890426", "reserves": [ - "5240760828174017425986328", - "27246902880829021364527843", - "10993276138742341195088306" + "586932842190238041836586616", + "379893989519277553283942340", + "770541940984779863407662212" ], - "mAssetSupply": "43369546116007880908675516" + "mAssetSupply": "1736745141398212209609154171" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1675930759685434322714624", - "expectedQty": "1690963287015568746471192", - "swapFee": "1005558455811260593628", + "type": "mint", + "inputIndex": 2, + "inputQty": "3837418553319547610333184", + "expectedQty": "3827105894038401997888140", "reserves": [ - "5240760828174017425986328", - "25555939593813452618056651", - "10993276138742341195088306" - ], - "mAssetSupply": "41694620914778257846554520" + "586932842190238041836586616", + "379893989519277553283942340", + "774379359538099411017995396" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "548922479843063021699072", - "477934398132674365489152", - "355450262618158791655424" - ], - "expectedQty": "1391861631673988679204062", - "swapFee": "835618350014401848631", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2875427038708759930077184", + "expectedQty": "2860527948197108295035465", + "swapFee": "1725256223225255958046", "reserves": [ - "4691838348330954404287256", - "25078005195680778252567499", - "10637825876124182403432882" + "586932842190238041836586616", + "377033461571080444988906875", + "774379359538099411017995396" ], - "mAssetSupply": "40302759283104269167350458" + "mAssetSupply": "1737698545509765076932923173" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "542460655230811308032", - "expectedQty": "547562657610436176908", - "swapFee": "325476393138486784", + "inputQty": "9352546825509785305088", + "expectedQty": "9303670462851183679439", + "swapFee": "5611528095305871183", "reserves": [ - "4691838348330954404287256", - "25077457633023167816390591", - "10637825876124182403432882" + "586932842190238041836586616", + "377024157900617593805227436", + "774379359538099411017995396" ], - "mAssetSupply": "40302217147925431494529210" + "mAssetSupply": "1737689198574467662453489268" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "550749963037295180251136", - "expectedQty": "534128946625992589655051", - "swapFee": "330449977822377108150", + "inputQty": "1352520047606254220083200", + "expectedQty": "1351845521647366013074048", "reserves": [ - "4157709401704961814632205", - "25077457633023167816390591", - "10637825876124182403432882" - ], - "mAssetSupply": "39751797634865958691386224" + "588285362237844296056669816", + "377024157900617593805227436", + "774379359538099411017995396" + ] }, { - "type": "redeemMasset", - "inputQty": "241622297858834211799040", - "expectedQtys": [ - "25264113339079120419362", - "152381917706140493840481", - "64640217160338547368308" - ], - "redemptionFee": "72486689357650263539", + "type": "swap", + "inputIndex": 0, + "inputQty": "27729358078644733731667968", + "outputIndex": 1, + "expectedQty": "27546779099729410730598691", + "swapFee": "16626845930691060268025", "reserves": [ - "4132445288365882694212843", - "24925075715317027322550110", - "10573185658963843856064574" + "616014720316489029788337784", + "349477378800888183074628745", + "774379359538099411017995396" ], - "mAssetSupply": "39510247823696482129850723" + "mAssetSupply": "1739057670942045719526831341", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "111264836738146762752", - "84302072139990368256", - "55947903782653042688" + "type": "redeemMasset", + "inputQty": "1064027222045618648121344", + "expectedQtys": [ + "376790146535583106025767", + "213760529458785142145361", + "473655097405115303140157" ], - "expectedQty": "254485608673978885209", + "redemptionFee": "319208166613685594436", "reserves": [ - "4132556553202620840975595", - "24925160017389167312918366", - "10573241606867626509107262" + "615637930169953446682312017", + "349263618271429397932483384", + "773905704440694295714855239" ], - "mAssetSupply": "39510502309305156108735932" + "mAssetSupply": "1737993962928166714564304433" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "494801057922695863205888", - "expectedQty": "510011103266966550790230", + "inputQty": "17367320010504989283713024", + "expectedQty": "17373308815742615636902558", + "swapFee": "10420392006302993570227", "reserves": [ - "4627357611125316704181483", - "24925160017389167312918366", - "10573241606867626509107262" - ] + "598264621354210831045409459", + "349263618271429397932483384", + "773905704440694295714855239" + ], + "mAssetSupply": "1720637063309668028274161636" }, { - "type": "mintMulti", - "inputQtys": [ - "1041479306252796035072", - "1043047572571603730432", - "1311267386289717510144" - ], - "expectedQty": "3415993439958343871665", + "type": "swap", + "inputIndex": 2, + "inputQty": "49903144775331250176", + "outputIndex": 1, + "expectedQty": "49443146093373321038", + "swapFee": "29853551043902150", "reserves": [ - "4628399090431569500216555", - "24926203064961738916648798", - "10574552874253916226617406" + "598264621354210831045409459", + "349263568828283304559162346", + "773905754343839071046105415" ], - "mAssetSupply": "40023929406012081003397827" + "mAssetSupply": "1720637063339521579318063786", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "36306886219761065132032", - "186771665931554481242112", - "134091410806575074377728" - ], - "expectedQty": "356511005261045990296453", + "type": "mint", + "inputIndex": 0, + "inputQty": "835761581524582026706944", + "expectedQty": "835042458004989040409106", "reserves": [ - "4664705976651330565348587", - "25112974730893293397890910", - "10708644285060491300995134" - ], - "mAssetSupply": "40380440411273126993694280" + "599100382935735413072116403", + "349263568828283304559162346", + "773905754343839071046105415" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "83402409112832078512128", - "934324718427403452416", - "64938501739016116764672" + "type": "redeemMasset", + "inputQty": "132659907137611809108787", + "expectedQtys": [ + "46153962017992394226815", + "26906838902318339647720", + "59620754399221948084663" ], - "expectedQty": "151609946729219959052267", + "redemptionFee": "39797972141283542732", "reserves": [ - "4748108385764162643860715", - "25113909055611720801343326", - "10773582786799507417759806" + "599054228973717420677889588", + "349236661989380986219514626", + "773846133589439849098020752" ], - "mAssetSupply": "40532050358002346952746547" + "mAssetSupply": "1721339485688361097832906837" }, { "type": "mintMulti", "inputQtys": [ - "66429548446044", - "94976601687110", - "567328861571078" + "27497844574276206723072", + "1009985102042742516613120", + "288071902009883556315136" ], - "expectedQty": "730407266318143", + "expectedQty": "1330452277488315680686743", "reserves": [ - "4748108385830592192306759", - "25113909055706697403030436", - "10773582787366836279330884" + "599081726818291696884612660", + "350246647091423728736127746", + "774134205491449732654335888" ], - "mAssetSupply": "40532050358732754219064690" + "mAssetSupply": "1722669937965849413513593580" }, { "type": "redeemMasset", - "inputQty": "599149933587907843666739", + "inputQty": "1025037759638414693079449", "expectedQtys": [ - "70166087089611859584257", - "371125632940886208369465", - "159208696747828603492398" + "356363777617030134531706", + "208344225283066321423631", + "460493748184656011836933" ], - "redemptionFee": "179744980076372353100", + "redemptionFee": "307511327891524407923", "reserves": [ - "4677942298740980332722502", - "24742783422765811194660971", - "10614374090619007675838486" + "598725363040674666750080954", + "350038302866140662414704115", + "773673711743265076642498955" ], - "mAssetSupply": "39933080170124922747751051" + "mAssetSupply": "1721645207717538890344922054" }, { - "type": "redeemMasset", - "inputQty": "83216790453817062195", - "expectedQtys": [ - "9745468102340706881", - "51546169493066699727", - "22112723398550585092" + "type": "mintMulti", + "inputQtys": [ + "14631763606128190", + "25789044267822360", + "49069320981926504" ], - "redemptionFee": "24965037136145118", + "expectedQty": "89480262337348825", "reserves": [ - "4677932553272877992015621", - "24742731876596318127961244", - "10614351977895609125253394" + "598725363055306430356209144", + "350038302891929706682526475", + "773673711792334397624425459" ], - "mAssetSupply": "39932996978299506066833974" + "mAssetSupply": "1721645207807019152682270879" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "309304048707607296", - "expectedQty": "309762450800403986", - "reserves": [ - "4677932553272877992015621", - "24742731876596318127961244", - "10614352287199657832860690" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "421269303730034781978624", - "887105664292719079456768", - "27688032384816190062592" - ], - "expectedQty": "1339156300049401190239189", - "swapFee": "803976165729078161040", + "inputQty": "5300777490108497400954880", + "outputIndex": 1, + "expectedQty": "5251183993570894085169988", + "swapFee": "3171056112910733519665", "reserves": [ - "4256663249542843210036997", - "23855626212303599048504476", - "10586664254814841642798098" + "598725363055306430356209144", + "344787118898358812597356487", + "778974489282442895025380339" ], - "mAssetSupply": "38593840988012555676998771" + "mAssetSupply": "1721648378863132063415790544", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "12798694055103476793344", - "290377815152609558790144", - "295198521127350181036032" - ], - "expectedQty": "596023293810291148143914", + "type": "redeem", + "inputIndex": 1, + "inputQty": "18873923095159067639808", + "expectedQty": "18750841986625839711547", + "swapFee": "11324353857095440583", "reserves": [ - "4269461943597946686830341", - "24146004027456208607294620", - "10881862775942191823834130" + "598725363055306430356209144", + "344768368056372186757644940", + "778974489282442895025380339" ], - "mAssetSupply": "39189864281822846825142685" + "mAssetSupply": "1721629516264390761443591319" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "141374824052194772254720", - "expectedQty": "136935021888603431261463", - "swapFee": "84824894431316863352", + "inputQty": "878996734305686328967168", + "expectedQty": "879243075913495181913075", + "swapFee": "527398040583411797380", "reserves": [ - "4132526921709343255568878", - "24146004027456208607294620", - "10881862775942191823834130" + "597846119979392935174296069", + "344768368056372186757644940", + "778974489282442895025380339" ], - "mAssetSupply": "39048574282665083369751317" + "mAssetSupply": "1720751046928125658526421531" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "88484516504875248", - "outputIndex": 1, - "expectedQty": "89405929137333960", - "swapFee": "53114441077642", + "type": "mintMulti", + "inputQtys": [ + "5664443734642582150447104", + "6175231138553778795446272", + "2361704478160003381854208" + ], + "expectedQty": "14225580906374558333327047", "reserves": [ - "4132526921709343255568878", - "24146003938050279469960660", - "10881862864426708328709378" + "603510563714035517324743173", + "350943599194925965553091212", + "781336193760602898407234547" ], - "mAssetSupply": "39048574282718197810828959", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1734976627834500216859748578" }, { "type": "redeemMasset", - "inputQty": "3301714519304187494", + "inputQty": "40855085562082143659622", "expectedQtys": [ - "349316999714848954", - "2041029571140417666", - "919829382632954696" + "14207153214627155022721", + "8261511534730177742292", + "18393320157607599751288" ], - "redemptionFee": "990514355791256", + "redemptionFee": "12256525668624643097", "reserves": [ - "4132526572392343540719924", - "24146001897020708329542994", - "10881861944597325695754682" + "603496356560820890169720452", + "350935337683391235375348920", + "781317800440445290807483259" ], - "mAssetSupply": "39048570981994192862432721" + "mAssetSupply": "1734935785005463803340732053" }, { - "type": "redeemMasset", - "inputQty": "43310924626341375089049", - "expectedQtys": [ - "4582238154417394438979", - "26773628488760414279550", - "12066052600061174109071" + "type": "redeemBassets", + "inputQtys": [ + "9889830770624468550156288", + "21971220978412437284847616", + "27656681156022878636867584" ], - "redemptionFee": "12993277387902412526", + "expectedQty": "59557786195311577984236157", + "swapFee": "35756125392422400230680", "reserves": [ - "4127944334237926146280945", - "24119228268531947915263444", - "10869795891997264521645611" + "593606525790196421619564164", + "328964116704978798090501304", + "753661119284422412170615675" ], - "mAssetSupply": "39005273050645239389756198" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1502724615355221", - "expectedQty": "1487009660752890", - "reserves": [ - "4127944334237926146280945", - "24119228270034672530618665", - "10869795891997264521645611" - ] + "mAssetSupply": "1675377998810152225356495896" }, { - "type": "redeemMasset", - "inputQty": "103298145454010798807449", - "expectedQtys": [ - "10928806241047115980332", - "63856086977843904915562", - "28777978471770974718047" - ], - "redemptionFee": "30989443636203239642", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5991350440927686054379520", + "expectedQty": "5994055415873425473384008", + "swapFee": "3594810264556611632627", "reserves": [ - "4117015527996879030300613", - "24055372183056828625703103", - "10841017913525493546927564" + "587612470374322996146180156", + "328964116704978798090501304", + "753661119284422412170615675" ], - "mAssetSupply": "38902005896121874454941281" + "mAssetSupply": "1669390243179489095913749003" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "11922669451114199132405760", - "hardLimitError": true - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "139148777117729328988160", - "outputIndex": 0, - "expectedQty": "134525462512071378197829", - "swapFee": "83519185939039699958", + "inputIndex": 0, + "inputQty": "17184296218897899140939776", + "expectedQty": "17189931234526009228902265", + "swapFee": "10310577731338739484563", "reserves": [ - "3982490065484807652102784", - "24055372183056828625703103", - "10980166690643222875915724" + "570422539139796986917277891", + "328964116704978798090501304", + "753661119284422412170615675" ], - "mAssetSupply": "38902089415307813494641239", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1652216257538322535512293790" }, { "type": "mintMulti", "inputQtys": [ - "25620124032071574224896", - "12752370441712274767872", - "12463659627254657318912" + "206111760617906737512448", + "155843779662259341492224", + "207631946992093113614336" ], - "expectedQty": "51600206967351134388105", + "expectedQty": "569713324397185518286515", "reserves": [ - "4008110189516879226327680", - "24068124553498540900470975", - "10992630350270477533234636" + "570628650900414893654790339", + "329119960484641057431993528", + "753868751231414505284230011" ], - "mAssetSupply": "38953689622275164629029344" + "mAssetSupply": "1652785970862719721030580305" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "442787271730018048", - "393777163448757440", - "59023988569636472" + "405957638836181836759040", + "8383236531774266802176", + "679450795498359608049664" ], - "expectedQty": "906837918648680156", - "swapFee": "544429408834508", + "expectedQty": "1091382240181043789440874", "reserves": [ - "4008109746729607496309632", - "24068124159721377451713535", - "10992630291246488963598164" + "571034608539251075491549379", + "329128343721172831698795704", + "754548202026912864892279675" ], - "mAssetSupply": "38953688715437245980349188" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "10691223149880772608", - "expectedQty": "10692906738727448783", - "reserves": [ - "4008109746729607496309632", - "24068124159721377451713535", - "10992640982469638844370772" - ] + "mAssetSupply": "1653877353102900764820021179" }, { "type": "mintMulti", "inputQtys": [ - "131060969969555720896512", - "966361391642602555572224", - "224315684506535718813696" + "14882713302677786624", + "87160556240112992256", + "45289939369901932544" ], - "expectedQty": "1316007284434504268269931", + "expectedQty": "147709123269233221699", "reserves": [ - "4139170716699163217206144", - "25034485551363980007285759", - "11216956666976174563184468" + "571034623421964378169336003", + "329128430881729071811787960", + "754548247316852234794212219" ], - "mAssetSupply": "40269706692778488976067902" + "mAssetSupply": "1653877500812024034053242878" }, { - "type": "mintMulti", - "inputQtys": [ - "14295822432905592832", - "10283968898381434880", - "8418292553232033792" - ], - "expectedQty": "33393005051877532732", + "type": "redeem", + "inputIndex": 2, + "inputQty": "57800216971713892581376", + "expectedQty": "57946549301595469650350", + "swapFee": "34680130183028335548", "reserves": [ - "4139185012521596122798976", - "25034495835332878388720639", - "11216965085268727795218260" + "571034623421964378169336003", + "329128430881729071811787960", + "754490300767550639324561869" ], - "mAssetSupply": "40269740085783540853600634" + "mAssetSupply": "1653819735275182503188997050" }, { "type": "mintMulti", "inputQtys": [ - "14014266224015218688", - "96715360825201950720", - "22989585731841167360" + "35346642188928580321280", + "81744960765128632958976", + "34013561909382488260608" ], - "expectedQty": "133174448348446163345", + "expectedQty": "151466142089929860672102", "reserves": [ - "4139199026787820138017664", - "25034592550693703590671359", - "11216988074854459636385620" + "571069970064153306749657283", + "329210175842494200444746936", + "754524314329460021812822477" ], - "mAssetSupply": "40269873260231889299763979" + "mAssetSupply": "1653971201417272433049669152" }, { "type": "redeemMasset", - "inputQty": "81460708764686444134", + "inputQty": "79303541087748533675622", "expectedQtys": [ - "8370548614246199095", - "50626527651183980878", - "22683698797362072768" + "27373079068678044664636", + "15780021093628257028895", + "36166590432097470287954" ], - "redemptionFee": "24438212629405933", + "redemptionFee": "23791062326324560102", "reserves": [ - "4139190656239205891818569", - "25034541924166052406690481", - "11216965391155662274312852" + "571042596985084628704992647", + "329194395821400572187718041", + "754488147739027924342534523" ], - "mAssetSupply": "40269791823961337242725778" + "mAssetSupply": "1653891921667247010840553632" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "128640264758892167168", - "423273476376813895680", - "253010420664867422208" + "1200913568182890", + "6514777142038222", + "7084533134544308" ], - "expectedQty": "804968638532932313597", - "swapFee": "483271145807243734", + "expectedQty": "14816677231549969", "reserves": [ - "4139062015974446999651401", - "25034118650689675592794801", - "11216712380734997406890644" + "571042596986285542273175537", + "329194395827915349329756263", + "754488147746112457477078831" ], - "mAssetSupply": "40268986855322804310412181" + "mAssetSupply": "1653891921682063688072103601" }, { - "type": "mintMulti", - "inputQtys": [ - "115253377889345707442176", - "30491121961552880599040", - "623846536704148690173952" - ], - "expectedQty": "773298668458968916386123", + "type": "mint", + "inputIndex": 2, + "inputQty": "29119592630983576214568960", + "expectedQty": "29025297892871945529342562", "reserves": [ - "4254315393863792707093577", - "25064609772651228473393841", - "11840558917439146097064596" - ], - "mAssetSupply": "41042285523781773226798304" + "571042596986285542273175537", + "329194395827915349329756263", + "783607740377096033691647791" + ] }, { "type": "redeemBassets", "inputQtys": [ - "693355410326797549568", - "1636347562115209101312", - "2211878679570689818624" + "190446909602415740190720", + "122274185426259805208576", + "273229109406592044892160" ], - "expectedQty": "4547706796166962370135", - "swapFee": "2730262235041202143", + "expectedQty": "585681069740339142378041", + "swapFee": "351619613612370907971", "reserves": [ - "4253622038453465909544009", - "25062973425089113264292529", - "11838347038759575407245972" + "570852150076683126532984817", + "329072121642489089524547687", + "783334511267689441646755631" ], - "mAssetSupply": "41037737816985606264428169" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4430437150792981980119040", - "expectedQty": "4379069077633750600674125", - "reserves": [ - "4253622038453465909544009", - "29493410575882095244411569", - "11838347038759575407245972" - ] + "mAssetSupply": "1682331538505195294459068122" }, { - "type": "mintMulti", - "inputQtys": [ - "702305771459386837827584", - "635737220197198854094848", - "97339219403758234501120" + "type": "redeemMasset", + "inputQty": "29947382654269731635", + "expectedQtys": [ + "10158758085348143441", + "5856094394930876919", + "13940046996063534313" ], - "expectedQty": "1455517775189884538538821", + "redemptionFee": "8984214796280919", "reserves": [ - "4955927809912852747371593", - "30129147796079294098506417", - "11935686258163333641747092" + "570852139917925041184841376", + "329072115786394694593670768", + "783334497327642445583221318" ], - "mAssetSupply": "46872324669809241403641115" + "mAssetSupply": "1682331508566796854985617406" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "26895994319281839931392", - "expectedQty": "26957236959833954034591", + "inputIndex": 0, + "inputQty": "3818772911742883201024", + "expectedQty": "3816023930082947978888", "reserves": [ - "4955927809912852747371593", - "30129147796079294098506417", - "11962582252482615481678484" + "570855958690836784068042400", + "329072115786394694593670768", + "783334497327642445583221318" ] }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "152144638636339603963904", - "outputIndex": 2, - "expectedQty": "149933495423960409721227", - "swapFee": "90233466376598173589", - "reserves": [ - "4955927809912852747371593", - "30281292434715633702470321", - "11812648757058655071957257" - ], - "mAssetSupply": "46899372140235451955849295", - "hardLimitError": false, - "insufficientLiquidityError": false - }, { "type": "redeemBassets", "inputQtys": [ - "2178364963748446803591168", - "1074504485308159135580160", - "524727396622664703410176" + "1535991422029067857166336", + "1130493337769365626421248", + "700490200991226677690368" ], - "expectedQty": "3891999940851721484159013", - "swapFee": "2336601925666432750145", + "expectedQty": "3370783650310854097064373", + "swapFee": "2023684400827008663436", "reserves": [ - "2777562846164405943780425", - "29206787949407474566890161", - "11287921360435990368547081" + "569319967268807716210876064", + "327941622448625328967249520", + "782634007126651218905530950" ], - "mAssetSupply": "43007372199383730471690282" + "mAssetSupply": "1678964540940416083836531921" }, { - "type": "mintMulti", - "inputQtys": [ - "463096395298865179262976", - "958792481610069216067584", - "1483317208044775822852096" - ], - "expectedQty": "2930727339537210640560634", + "type": "redeem", + "inputIndex": 2, + "inputQty": "994779337069652829274112", + "expectedQty": "997537481409430632577947", + "swapFee": "596867602241791697564", "reserves": [ - "3240659241463271123043401", - "30165580431017543782957745", - "12771238568480766191399177" + "569319967268807716210876064", + "327941622448625328967249520", + "781636469645241788272953003" ], - "mAssetSupply": "45938099538920941112250916" + "mAssetSupply": "1677970358470948672798955373" }, { - "type": "mintMulti", - "inputQtys": [ - "263189218140901968183296", - "38823524424009128083456", - "74557675645276965044224" - ], - "expectedQty": "395871667946387876410480", + "type": "swap", + "inputIndex": 2, + "inputQty": "1866667634113579883429888", + "outputIndex": 0, + "expectedQty": "1860574011703406098696590", + "swapFee": "1116229846916879426610", "reserves": [ - "3503848459604173091226697", - "30204403955441552911041201", - "12845796244126043156443401" + "567459393257104310112179474", + "327941622448625328967249520", + "783503137279355368156382891" ], - "mAssetSupply": "46333971206867328988661396" + "mAssetSupply": "1677971474700795589678381983", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "6489767017160971156193280", - "expectedQty": "6375439038533647677626610", + "inputIndex": 2, + "inputQty": "1496314826329468960768", + "expectedQty": "1491254845130789202838", "reserves": [ - "3503848459604173091226697", - "36694170972602524067234481", - "12845796244126043156443401" + "567459393257104310112179474", + "327941622448625328967249520", + "783504633594181697625343659" ] }, - { - "type": "redeemMasset", - "inputQty": "30562213793342849024", - "expectedQtys": [ - "2031008118166562820", - "21269800904336692164", - "7446074439840612330" - ], - "redemptionFee": "9168664138002854", - "reserves": [ - "3503846428596054924663877", - "36694149702801619730542317", - "12845788798051603315831071" - ], - "mAssetSupply": "52709379692355847461441836" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "4880274595801960808448", - "2538292336785846435840", - "7938626709924472684544" - ], - "expectedQty": "15824506229053740522340", - "swapFee": "9500403979820136395", - "reserves": [ - "3498966154000252963855429", - "36691611410464833884106477", - "12837850171341678843146527" - ], - "mAssetSupply": "52693555186126793720919496" - }, { "type": "redeemBassets", "inputQtys": [ - "11418385701280212320256", - "17929765148989209968640", - "1684477866877468540928" + "103324270069142372352", + "94550313177696600064", + "119121290510940930048" ], - "expectedQty": "31829834154361700963245", - "swapFee": "19109366112284391212", + "expectedQty": "317129749661720423077", + "swapFee": "190392085048061090", "reserves": [ - "3487547768298972751535173", - "36673681645315844674137837", - "12836165693474801374605599" + "567459289932834240969807122", + "327941527898312151270649456", + "783504514472891186684413611" ], - "mAssetSupply": "52661725351972432019956251" + "mAssetSupply": "1677972648825891058747161744" }, { "type": "mintMulti", "inputQtys": [ - "70236653384333910867968", - "29500027440555681120256", - "42989000435544696553472" + "150860569455394277031936", + "227225186990179326361600", + "320091315836214549938176" ], - "expectedQty": "149253737011743134777399", + "expectedQty": "698451563306858973382841", "reserves": [ - "3557784421683306662403141", - "36703181672756400355258093", - "12879154693910346071159071" + "567610150502289635246839058", + "328168753085302330597011056", + "783824605788727401234351787" ], - "mAssetSupply": "52810979088984175154733650" + "mAssetSupply": "1678671100389197917720544585" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "17604741195614420939571200", - "hardLimitError": true + "inputQty": "58839713013289856", + "outputIndex": 0, + "expectedQty": "59223233073787268", + "swapFee": "35530738653235", + "reserves": [ + "567610150443066402173051790", + "328168753144142043610300912", + "783824605788727401234351787" + ], + "mAssetSupply": "1678671100389233448459197820", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3866947712222191681536", - "expectedQty": "3942064377574891571386", - "swapFee": "2320168627333315008", + "type": "redeemMasset", + "inputQty": "7969251180697657488179", + "expectedQtys": [ + "2693839687945644083731", + "1557466882636375442414", + "3719978985248634483832" + ], + "redemptionFee": "2390775354209297246", "reserves": [ - "3557784421683306662403141", - "36699239608378825463686707", - "12879154693910346071159071" + "567607456603378456528968059", + "328167195677259407234858498", + "783820885809742152599867955" ], - "mAssetSupply": "52807114461440580296367122" + "mAssetSupply": "1678663133528828105011006887" }, { "type": "mint", "inputIndex": 1, - "inputQty": "16230361031556730978304", - "expectedQty": "15911463987888886498240", + "inputQty": "4819123686109510008569856", + "expectedQty": "4849573458385338672024676", "reserves": [ - "3557784421683306662403141", - "36715469969410382194665011", - "12879154693910346071159071" + "567607456603378456528968059", + "332986319363368917243428354", + "783820885809742152599867955" ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "27088534253712521035776", - "outputIndex": 2, - "expectedQty": "26444212690203341935085", - "swapFee": "15933521148565599297", + "inputIndex": 0, + "inputQty": "1773537482554125320192", + "outputIndex": 1, + "expectedQty": "1760401636370955683427", + "swapFee": "1063439568766649897", "reserves": [ - "3557784421683306662403141", - "36742558503664094715700787", - "12852710481220142729223986" + "567609230140861010654288251", + "332984558961732546287744927", + "783820885809742152599867955" ], - "mAssetSupply": "52823041858949617748464659", + "mAssetSupply": "1683512708050653012449681460", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "57572080561922138112", - "expectedQty": "58693318955125356262", - "swapFee": "34543248337153282", + "inputIndex": 0, + "inputQty": "2101816223744046661632", + "expectedQty": "2101904103496498144738", + "swapFee": "1261089734246427996", "reserves": [ - "3557784421683306662403141", - "36742499810345139590344525", - "12852710481220142729223986" + "567607128236757514156143513", + "332984558961732546287744927", + "783820885809742152599867955" ], - "mAssetSupply": "52822984321412304163479829" + "mAssetSupply": "1683510607495519002649447824" }, { "type": "redeemMasset", - "inputQty": "191698867523459219456", + "inputQty": "18981980300228056580096", "expectedQtys": [ - "12907612970279580603", - "133301490731728671404", - "46629529181015871428" + "6397984655579239061586", + "3753353319222852721485", + "8835114554871265564679" ], - "redemptionFee": "57509660257037765", + "redemptionFee": "5694594090068416974", "reserves": [ - "3557771514070336382822538", - "36742366508854407861673121", - "12852663851690961713352558" + "567600730252101934917081927", + "332980805608413323435023442", + "783812050695187281334303276" ], - "mAssetSupply": "52822792680054440961298138" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "199116541600838927253504", - "expectedQty": "195181162100934094471040", - "reserves": [ - "3557771514070336382822538", - "36941483050455246788926625", - "12852663851690961713352558" - ] + "mAssetSupply": "1683491631209812864661284702" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "609775018704237460717568", - "expectedQty": "621599323926861414849789", - "swapFee": "365865011222542476430", + "type": "redeemMasset", + "inputQty": "76323204931415948499353", + "expectedQtys": [ + "25725171256760926727107", + "15091573694216420555244", + "35524442028626160564407" + ], + "redemptionFee": "22896961479424784549", "reserves": [ - "3557771514070336382822538", - "36319883726528385374076836", - "12852663851690961713352558" + "567575005080845173990354820", + "332965714034719107014468198", + "783776526253158655173738869" ], - "mAssetSupply": "52408564688462360137528040" + "mAssetSupply": "1683415330901842928137569898" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "8625530816725737472", - "expectedQty": "8591491252356330326", - "swapFee": "5175318490035442", + "type": "swap", + "inputIndex": 0, + "inputQty": "123551008492346376192", + "outputIndex": 2, + "expectedQty": "123809256082064162988", + "swapFee": "74083030059487283", "reserves": [ - "3557771514070336382822538", - "36319883726528385374076836", - "12852655260199709357022232" + "567575128631853666336731012", + "332965714034719107014468198", + "783776402443902573109575881" ], - "mAssetSupply": "52408556068106861901826010" + "mAssetSupply": "1683415330975925958197057181", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "9535808878897927290880", - "14996235212512764624896", - "668813259262704091136" + "17377802105210618630897664", + "59335698255117420265996288", + "54233544917767143349551104" ], - "expectedQty": "25819680337590093280927", + "expectedQty": "131089936783213643501000609", "reserves": [ - "3567307322949234310113418", - "36334879961740898138701732", - "12853324073458972061113368" + "584952930737064284967628676", + "392301412289836527280464486", + "838009947361669716459126985" ], - "mAssetSupply": "52434375748444451995106937" + "mAssetSupply": "1814505267759139601698057790" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "26072646463844979310592", - "expectedQty": "28529417278994764847407", + "type": "mintMulti", + "inputQtys": [ + "124882438070496307183616", + "46062707245321264562176", + "102414232982093087899648" + ], + "expectedQty": "273252820286102102066703", "reserves": [ - "3593379969413079289424010", - "36334879961740898138701732", - "12853324073458972061113368" - ] + "585077813175134781274812292", + "392347474997081848545026662", + "838112361594651809547026633" + ], + "mAssetSupply": "1814778520579425703800124493" }, { "type": "mint", "inputIndex": 2, - "inputQty": "2198805081879082061266944", - "expectedQty": "2201875995272328255311989", + "inputQty": "24812407944472413863936", + "expectedQty": "24736592797913933504267", "reserves": [ - "3593379969413079289424010", - "36334879961740898138701732", - "15052129155338054122380312" + "585077813175134781274812292", + "392347474997081848545026662", + "838137174002596281960890569" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3329768873983126011904", - "outputIndex": 2, - "expectedQty": "3269044199493042141604", - "swapFee": "1961904390645269002", + "type": "redeemBassets", + "inputQtys": [ + "4478888835615743279104", + "846486682017250017280", + "4313120453212176384000" + ], + "expectedQty": "9628908233903593871165", + "swapFee": "5780813428399195840", "reserves": [ - "3593379969413079289424010", - "36338209730614881264713636", - "15048860111138561080238708" + "585073334286299165531533188", + "392346628510399831295009382", + "838132860882143069784506569" ], - "mAssetSupply": "54664783122900165660535335", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1814793628263989714139757595" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4377508415313161728", - "expectedQty": "4455074582129913159", - "swapFee": "2626505049187897", + "inputIndex": 2, + "inputQty": "480261925973278523392", + "expectedQty": "481444878896688360842", + "swapFee": "288157155583967114", "reserves": [ - "3593379969413079289424010", - "36338205275540299134800477", - "15048860111138561080238708" + "585073334286299165531533188", + "392346628510399831295009382", + "838132379437264173096145727" ], - "mAssetSupply": "54664778748018255396561504" + "mAssetSupply": "1814793148290220896445201317" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5493884258613414938542080", - "expectedQty": "5702299600534929197070764", - "reserves": [ - "9087264228026494227966090", - "36338205275540299134800477", - "15048860111138561080238708" - ] - }, - { - "type": "redeem", "inputIndex": 1, - "inputQty": "106705058861051593883648", - "expectedQty": "107472614772582591838631", - "swapFee": "64023035316630956330", + "inputQty": "16754356022996390748618752", + "expectedQty": "16829418251442176238836077", "reserves": [ - "9087264228026494227966090", - "36230732660767716542961846", - "15048860111138561080238708" - ], - "mAssetSupply": "60260437312727449630704950" + "585073334286299165531533188", + "409100984533396222043628134", + "838132379437264173096145727" + ] }, { "type": "redeemMasset", - "inputQty": "29364161662340007198720", + "inputQty": "2560328636729473209519308", "expectedQtys": [ - "4426782409610386979982", - "17649488999706837833769", - "7330922437493953355829" - ], - "redemptionFee": "8809248498702002159", - "reserves": [ - "9082837445616883840986108", - "36213083171768009705128077", - "15041529188701067126882879" + "817597820485378945132363", + "571689143414718244467908", + "1171229599007514787981031" ], - "mAssetSupply": "60231081960313608325508389" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "486697826614660093181952", - "expectedQty": "490153370466144756053730", - "swapFee": "292018695968796055909", + "redemptionFee": "768098591018841962855", "reserves": [ - "9082837445616883840986108", - "35722929801301864949074347", - "15041529188701067126882879" + "584255736465813786586400825", + "408529295389981503799160226", + "836961149838256658308164696" ], - "mAssetSupply": "59744676152394917028382346" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "397673897095804992", - "expectedQty": "394663320557088294", - "reserves": [ - "9082837445616883840986108", - "35722930198975762044879339", - "15041529188701067126882879" - ] + "mAssetSupply": "1829063006003524618316480941" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "174349400459121600", - "outputIndex": 0, - "expectedQty": "170512795282056275", - "swapFee": "103817696588237", + "inputIndex": 2, + "inputQty": "403264918234175562055680", + "outputIndex": 1, + "expectedQty": "400148643662468883643708", + "swapFee": "241254016430354408846", "reserves": [ - "9082837275104088558929833", - "35722930373325162504000939", - "15041529188701067126882879" + "584255736465813786586400825", + "408129146746319034915516518", + "837364414756490833870220376" ], - "mAssetSupply": "59744676547162055282058877", + "mAssetSupply": "1829063247257541048670889787", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "316177138361299885883392", - "150615778374972468101120", - "293275682158103544987648" - ], - "expectedQty": "764039429719978905280743", - "reserves": [ - "9399014413465388444813225", - "35873546151700134972102059", - "15334804870859170671870527" - ], - "mAssetSupply": "60508715976882034187339620" - }, - { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "285796057701892685824", - "1178862595059565854720", - "1733984139299177889792" + "330143107355255", + "519153499052916", + "740304864822354" ], - "expectedQty": "3198170393796324026669", + "expectedQty": "1589661765115604", + "swapFee": "954369680877", "reserves": [ - "9399300209523090337499049", - "35874725014295194537956779", - "15336538854998469849760319" + "584255736465483643479045570", + "408129146745799881416463602", + "837364414755750529005398022" ], - "mAssetSupply": "60511914147275830511366289" + "mAssetSupply": "1829063247255951386905774183" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "14377943254215390396416", - "expectedQty": "14475105582399603204353", - "swapFee": "8626765952529234237", - "reserves": [ - "9399300209523090337499049", - "35860249908712794934752426", - "15336538854998469849760319" - ], - "mAssetSupply": "60497544830787567650204110" - }, - { - "type": "redeemMasset", - "inputQty": "461020973935133", - "expectedQtys": [ - "71605791055794", - "273190716854671", - "116836889160902" - ], - "redemptionFee": "138306292180", + "inputQty": "399693515946470796165120", + "expectedQty": "401391714450823596748891", "reserves": [ - "9399300209451484546443255", - "35860249908439604217897755", - "15336538854881632960599417" - ], - "mAssetSupply": "60497544830326684982561157" + "584255736465483643479045570", + "408528840261746352212628722", + "837364414755750529005398022" + ] }, { "type": "mintMulti", "inputQtys": [ - "2433364690378558537728", - "2414605107612371386368", - "1310086485657632899072" + "17977615467272764632596480", + "20327993086670257162027008", + "1092590710930918030180352" ], - "expectedQty": "6176084591571980507609", + "expectedQty": "39477644627750426219082543", "reserves": [ - "9401733574141863104980983", - "35862664513547216589284123", - "15337848941367290593498489" + "602233351932756408111642050", + "428856833348416609374655730", + "838457005466681447035578374" ], - "mAssetSupply": "60503720914918256963068766" + "mAssetSupply": "1868942283598152636721605617" }, { "type": "redeemMasset", - "inputQty": "4665839496363910784614", + "inputQty": "1312492082900043740427059", "expectedQtys": [ - "724811946892268803055", - "2764776036442938076150", - "1182447477868107076131" - ], - "redemptionFee": "1399751848909173235", - "reserves": [ - "9401008762194970836177928", - "35859899737510773651207973", - "15336666493889422486422358" - ], - "mAssetSupply": "60499056475173741961457387" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "29593546311627767283712", - "59424985590260706574336", - "32861441587635357220864" + "422800310877903333542489", + "301080639057780824599849", + "588642062800685301880183" ], - "expectedQty": "121922153629441209214561", - "swapFee": "73197210503967105792", + "redemptionFee": "393747624870013122128", "reserves": [ - "9371415215883343068894216", - "35800474751920512944633637", - "15303805052301787129201494" + "601810551621878504778099561", + "428555752709358828550055881", + "837868363403880761733698191" ], - "mAssetSupply": "60377134321544300752242826" + "mAssetSupply": "1867630185262877462994300686" }, { - "type": "mintMulti", - "inputQtys": [ - "122744408775697027301376", - "420384922165762997616640", - "202018440507356593782784" - ], - "expectedQty": "744215414825454023811870", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1472476891182663267778560", + "expectedQty": "1465921556247808871879816", + "swapFee": "883486134709597960667", "reserves": [ - "9494159624659040096195592", - "36220859674086275942250277", - "15505823492809143722984278" + "601810551621878504778099561", + "427089831153111019678176065", + "837868363403880761733698191" ], - "mAssetSupply": "61121349736369754776054696" + "mAssetSupply": "1866158591857829509324482793" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "26647771224333589938176", - "190195213864601930170368", - "243313752986746250854400" + "107418117530429063168", + "110857177207517642752", + "28602588732176613376" ], - "expectedQty": "459714915772686302500281", + "expectedQty": "247230149694240549908", + "swapFee": "148427146104206854", "reserves": [ - "9520807395883373686133768", - "36411054887950877872420645", - "15749137245795889973838678" + "601810444203760974349036393", + "427089720295933812160533313", + "837868334801292029557084815" ], - "mAssetSupply": "61581064652142441078554977" + "mAssetSupply": "1866158344627679815083932885" }, { - "type": "redeemBassets", - "inputQtys": [ - "490455984805608554496", - "8535191110518735872", - "949823288852592459776" - ], - "expectedQty": "1457574089417862072318", - "swapFee": "875069495347925998", + "type": "swap", + "inputIndex": 1, + "inputQty": "4681883635350817792", + "outputIndex": 2, + "expectedQty": "4709981239582050951", + "swapFee": "2820050461546068", "reserves": [ - "9520316939898568077579272", - "36411046352759767353684773", - "15748187422507037381378902" + "601810444203760974349036393", + "427089724977817447511351105", + "837868330091310789975033864" ], - "mAssetSupply": "61579607078053023216482659" + "mAssetSupply": "1866158344630499865545478953", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "170332329874303288868864", - "expectedQty": "171473295043326643693353", - "swapFee": "102199397924581973321", + "inputQty": "14829421609994940317696", + "outputIndex": 0, + "expectedQty": "14878333526957918500201", + "swapFee": "8932240264730414082", "reserves": [ - "9520316939898568077579272", - "36239573057716440709991420", - "15748187422507037381378902" + "601795565870234016430536192", + "427104554399427442451668801", + "837868330091310789975033864" ], - "mAssetSupply": "61409376947576644509587116" + "mAssetSupply": "1866158353562740130275893035", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "317523606256336907114905", + "inputQty": "119210803637460001619968", "expectedQtys": [ - "49211026720389239431707", - "187324288606906651943303", - "81403221861114683307009" + "38431363949377487451402", + "27275393016273087611617", + "53507244921009834123312" ], - "redemptionFee": "95257081876901072134", + "redemptionFee": "35763241091238000485", "reserves": [ - "9471105913178178838147565", - "36052248769109534058048117", - "15666784200645922698071893" + "601757134506284638943084790", + "427077279006411169364057184", + "837814822846389780140910552" ], - "mAssetSupply": "61091948598402184503544345" + "mAssetSupply": "1866039178522343761512273552" }, { - "type": "mintMulti", - "inputQtys": [ - "23615157817385779200", - "11433174823629148160", - "7713157761441261568" - ], - "expectedQty": "43011340425043276827", + "type": "swap", + "inputIndex": 2, + "inputQty": "13492099503719207202193408", + "outputIndex": 1, + "expectedQty": "13391200503699329665450444", + "swapFee": "8073035515573870460006", "reserves": [ - "9471129528335996223926765", - "36052260202284357687196277", - "15666791913803684139333461" + "601757134506284638943084790", + "413686078502711839698606740", + "851306922350108987343103960" ], - "mAssetSupply": "61091991609742609546821172" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4167367527701993423372288", - "expectedQty": "4134699256424812141715851", - "reserves": [ - "9471129528335996223926765", - "40219627729986351110568565", - "15666791913803684139333461" - ] + "mAssetSupply": "1866047251557859335382733558", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "809395151942718208", - "2372146834026563072", - "2512413081442213376" - ], - "expectedQty": "5695893003834855143", - "swapFee": "3419587554833813", + "type": "redeem", + "inputIndex": 2, + "inputQty": "242827640461299829178368", + "expectedQty": "243386839794930956838228", + "swapFee": "145696584276779897507", "reserves": [ - "9471128718940844281208557", - "40219625357839517084005493", - "15666789401390602697120085" + "601757134506284638943084790", + "413686078502711839698606740", + "851063535510314056386265732" ], - "mAssetSupply": "65226685170274417853681880" + "mAssetSupply": "1865804569613982312333452697" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "5998211734273359085568", + "expectedQty": "6024268963045327697559", + "reserves": [ + "601757134506284638943084790", + "413692076714446113057692308", + "851063535510314056386265732" + ] + }, + { + "type": "swap", "inputIndex": 2, - "inputQty": "1055094437940893067509760", - "expectedQty": "1050220671036250312777804", - "swapFee": "633056662764535840505", + "inputQty": "33884954004560824493932544", + "outputIndex": 1, + "expectedQty": "33589668637243074640149603", + "swapFee": "20269779043565959243827", "reserves": [ - "9471128718940844281208557", - "40219625357839517084005493", - "14616568730354352384342281" + "601757134506284638943084790", + "380102408077203038417542705", + "884948489514874880880198276" ], - "mAssetSupply": "64172223788996289322012625" + "mAssetSupply": "1865830863661988923620394083", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "22310290656494757478", + "inputQty": "206663761162628540609331", "expectedQtys": [ - "3291770660291460532", - "13978669982183089264", - "5080111729924275686" + "66632022616289969104366", + "42088395465865409719546", + "97989544928263681005121" ], - "redemptionFee": "6693087196948427", + "redemptionFee": "61999128348788562182", "reserves": [ - "9471125427170183989748025", - "40219611379169534900916229", - "14616563650242622460066595" + "601690502483668348973980424", + "380060319681737173007823159", + "884850499969946617199193155" ], - "mAssetSupply": "64172201485398720024203574" + "mAssetSupply": "1865624261899954643868346934" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "69704556511904925745152", - "expectedQty": "70281523293778469661672", - "swapFee": "41822733907142955447", + "inputIndex": 2, + "inputQty": "12420462756919664181248", + "expectedQty": "12455752170896193503320", + "swapFee": "7452277654151798508", "reserves": [ - "9471125427170183989748025", - "40149329855875756431254557", - "14616563650242622460066595" + "601690502483668348973980424", + "380060319681737173007823159", + "884838044217775721005689835" ], - "mAssetSupply": "64102538751620722241413869" + "mAssetSupply": "1865611848889475378355964194" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1425180039749081669566464", - "expectedQty": "1436632935758045400656415", - "swapFee": "855108023849449001739", + "type": "mintMulti", + "inputQtys": [ + "843989092727462035456", + "2151418540613576425472", + "1552172753497572245504" + ], + "expectedQty": "4554396610839674959354", "reserves": [ - "9471125427170183989748025", - "38712696920117711030598142", - "14616563650242622460066595" + "601691346472761076436015880", + "380062471100277786584248631", + "884839596390529218577935339" ], - "mAssetSupply": "62678213819895490020849144" + "mAssetSupply": "1865616403286086218030923548" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "81603347046120701952", - "expectedQty": "81935811973260668199", + "type": "redeemMasset", + "inputQty": "139966409590338360023449", + "expectedQtys": [ + "45127879625114977020803", + "28505335079824902137073", + "66364482433610702345516" + ], + "redemptionFee": "41989922877101508007", "reserves": [ - "9471125427170183989748025", - "38712696920117711030598142", - "14616645253589668580768547" - ] + "601646218593135961458995077", + "380033965765197961682111558", + "884773231908095607875589823" + ], + "mAssetSupply": "1865476478866418756772408106" }, { - "type": "mintMulti", - "inputQtys": [ - "688244807663652700160", - "413015388699057913856", - "469426946378237411328" - ], - "expectedQty": "1579416420686376085465", + "type": "redeem", + "inputIndex": 2, + "inputQty": "320385725379554387689472", + "expectedQty": "321295634153083263523580", + "swapFee": "192231435227732632613", "reserves": [ - "9471813671977847642448185", - "38713109935506410088511998", - "14617114680536046818179875" + "601646218593135961458995077", + "380033965765197961682111558", + "884451936273942524612066243" ], - "mAssetSupply": "62679875172128149657602808" + "mAssetSupply": "1865156285372474430117351247" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "51010568666683375616", - "expectedQty": "51771117014502439563", + "inputQty": "31772089333532481028096", + "outputIndex": 2, + "expectedQty": "31856194262874477850580", + "swapFee": "19059612641031961843", "reserves": [ - "9471864682546514325823801", - "38713109935506410088511998", - "14617114680536046818179875" - ] + "601677990682469493940023173", + "380033965765197961682111558", + "884420080079679650134215663" + ], + "mAssetSupply": "1865156304432087071149313090", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "644241631025001324871680", - "expectedQty": "653178891997739056512069", + "type": "redeemBassets", + "inputQtys": [ + "9220833487495301592776704", + "9312779993346164712800256", + "3778990063547723374657536" + ], + "expectedQty": "22352020305812306930702779", + "swapFee": "13419263741732423612589", "reserves": [ - "10116106313571515650695481", - "38713109935506410088511998", - "14617114680536046818179875" - ] + "592457157194974192347246469", + "370721185771851796969311302", + "880641090016131926759558127" + ], + "mAssetSupply": "1842804284126274764218610311" }, { "type": "redeemMasset", - "inputQty": "49618554732414546739", + "inputQty": "194616786861817814056960", "expectedQtys": [ - "7923123052449436039", - "30320829403554263472", - "11448396714680640634" + "62550059519065193876371", + "39139762180941146241462", + "92975756856821341419433" ], - "redemptionFee": "14885566419724364", + "redemptionFee": "58385036058545344217", "reserves": [ - "10116098390448463201259442", - "38713079614677006534248526", - "14617103232139332137539241" + "592394607135455127153370098", + "370682046009670855823069840", + "880548114259275105418138694" ], - "mAssetSupply": "63333056231573737221732065" + "mAssetSupply": "1842609725724449004949897568" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "621033429057302528", + "expectedQty": "618838606745884892", + "reserves": [ + "592394607135455127153370098", + "370682046009670855823069840", + "880548114880308534475441222" + ] }, { "type": "redeemBassets", "inputQtys": [ - "278838321142621088", - "4862157032943529984", - "3383377974617404416" + "11235926714706265139838976", + "802072683486411304730624", + "16418125330557372049915904" ], - "expectedQty": "8503909787063085986", - "swapFee": "5105409117708476", + "expectedQty": "28401565169058114516890476", + "swapFee": "17051169803316858825429", "reserves": [ - "10116098111610142058638354", - "38713074752519973590718542", - "14617099848761357520134825" + "581158680420748862013531122", + "369879973326184444518339216", + "864129989549751162425525318" ], - "mAssetSupply": "63333047727663950158646079" + "mAssetSupply": "1814208161174229497178891984" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5896364468516249665536", - "expectedQty": "5939704338250261595062", - "swapFee": "3537818681109749799", + "type": "mint", + "inputIndex": 2, + "inputQty": "7379722798438946816", + "expectedQty": "7354104817578244027", "reserves": [ - "10116098111610142058638354", - "38707135048181723329123480", - "14617099848761357520134825" - ], - "mAssetSupply": "63327154901014115018730342" + "581158680420748862013531122", + "369879973326184444518339216", + "864129996929473960864472134" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "24002976092865216512", - "expectedQty": "24312497217911228290", + "inputIndex": 2, + "inputQty": "2064050903166986387193856", + "expectedQty": "2056870403508111058222996", "reserves": [ - "10116122114586234923854866", - "38707135048181723329123480", - "14617099848761357520134825" + "581158680420748862013531122", + "369879973326184444518339216", + "866194047832640947251665990" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "522600944933818825965568", - "expectedQty": "518436326325186945360137", + "inputQty": "31373707783040976", + "expectedQty": "31553535086746301", "reserves": [ - "10116122114586234923854866", - "39229735993115542155089048", - "14617099848761357520134825" + "581158680420748862013531122", + "369879973357558152301380192", + "866194047832640947251665990" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "33611390866266890240", - "32337709201889312768", - "62701373769838395392" - ], - "expectedQty": "129111518655084145389", - "swapFee": "77513419244597245", - "reserves": [ - "10116088503195368656964626", - "39229703655406340265776280", - "14617037147387587681739433" - ], - "mAssetSupply": "63845486428317864791173380" - }, { "type": "mintMulti", "inputQtys": [ - "87028941758002256", - "9375034522756780032", - "14246133568949999616" + "1355689716392117403648", + "113341837432405442560", + "3056659154898679496704" ], - "expectedQty": "23696687848901465811", + "expectedQty": "4515525488235443484114", "reserves": [ - "10116088590224310414966882", - "39229713030440863022556312", - "14617051393521156631739049" + "581160036110465254130934770", + "369880086699395584706822752", + "866197104491795845931162694" ], - "mAssetSupply": "63845510125005713692639191" + "mAssetSupply": "1816269554488884196345589422" }, { "type": "redeemBassets", "inputQtys": [ - "713240992483360408338432", - "420593666071718478741504", - "329964620439668068974592" + "5593637340859477966979072", + "5104394988559393116651520", + "7747247741065394233802752" ], - "expectedQty": "1471872851910914914320526", - "swapFee": "883653903488642133872", + "expectedQty": "18446930640215064206459876", + "swapFee": "11074803266088691738919", "reserves": [ - "9402847597740950006628450", - "38809119364369144543814808", - "14287086773081488562764457" + "575566398769605776163955698", + "364775691710836191590171232", + "858449856750730451697359942" ], - "mAssetSupply": "62373637273094798778318665" + "mAssetSupply": "1797822623848669132139129546" }, { "type": "redeemMasset", - "inputQty": "78191763516307328204", + "inputQty": "3949211706578175", "expectedQtys": [ - "11783899421378850266", - "48636623583252041631", - "17904958238284386730" - ], - "redemptionFee": "23457529054892198", - "reserves": [ - "9402835813841528627778184", - "38809070727745561291773177", - "14287068868123250278377727" - ], - "mAssetSupply": "62373559104788811525882659" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "214575366828697545867264", - "expectedQty": "216286342330869005572261", - "swapFee": "128745220097218527520", - "reserves": [ - "9402835813841528627778184", - "38592784385414692286200916", - "14287068868123250278377727" - ], - "mAssetSupply": "62159112483180211198542915" - }, - { - "type": "mintMulti", - "inputQtys": [ - "16075267595169551089664", - "748268462876843966464", - "16169209120537549209600" + "1263946520486807", + "801049135741220", + "1885159925548075" ], - "expectedQty": "33297417768682098885988", + "redemptionFee": "1184763511973", "reserves": [ - "9418911081436698178867848", - "38593532653877569130167380", - "14303238077243787827587327" + "575566398768341829643468891", + "364775691710035142454430012", + "858449856748845291771811867" ], - "mAssetSupply": "62192409900948893297428903" + "mAssetSupply": "1797822623844721105196063344" }, { "type": "redeemBassets", "inputQtys": [ - "9626598590645", - "10075878675466", - "5512920200109" - ], - "expectedQty": "25297949470510", - "swapFee": "15187882411", - "reserves": [ - "9418911081427071580277203", - "38593532653867493251491914", - "14303238077238274907387218" - ], - "mAssetSupply": "62192409900923595347958393" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1138956509313050624", - "6908211025680342016", - "1242619077913525760" + "5791413008357577981952", + "221806514003715926523904", + "167196206117309873389568" ], - "expectedQty": "9253806824630295882", + "expectedQty": "395493548020177457847526", + "swapFee": "237438591967286846816", "reserves": [ - "9418912220383580893327827", - "38593539562078518931833930", - "14303239319857352820912978" + "575560607355333472065486939", + "364553885196031426527906108", + "858282660542727981898422299" ], - "mAssetSupply": "62192419154730419978254275" + "mAssetSupply": "1797427130296700927738215818" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "629509737107053797703680", - "expectedQty": "638260740006100265008572", + "inputIndex": 2, + "inputQty": "1158913209530968797347840", + "expectedQty": "1154843110228685827860961", "reserves": [ - "10048421957490634691031507", - "38593539562078518931833930", - "14303239319857352820912978" + "575560607355333472065486939", + "364553885196031426527906108", + "859441573752258950695770139" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "249953722203397928517632", - "183998188577339268399104", - "25821504205376966361088" - ], - "expectedQty": "461713642518304075609146", - "swapFee": "277194502212309831264", + "type": "redeem", + "inputIndex": 1, + "inputQty": "140671361652400406396928", + "expectedQty": "139773679563497106806079", + "swapFee": "84402816991440243838", "reserves": [ - "9798468235287236762513875", - "38409541373501179663434826", - "14277417815651975854551890" + "575560607355333472065486939", + "364414111516467929421100029", + "859441573752258950695770139" ], - "mAssetSupply": "62368966252218216167653701" + "mAssetSupply": "1798441386448094204599923689" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "438496304412456191524864", - "outputIndex": 0, - "expectedQty": "428405020508894124797830", - "swapFee": "260940664089428636861", + "inputQty": "24908841430770416663658496", + "expectedQty": "24737289346134743180557207", + "swapFee": "14945304858462249998195", "reserves": [ - "9370063214778342637716045", - "38848037677913635854959690", - "14277417815651975854551890" + "575560607355333472065486939", + "339676822170333186240542822", + "859441573752258950695770139" ], - "mAssetSupply": "62369227192882305596290562", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1773547490322182250186263388" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "671498216046867532218368", - "585133306868732098772992", - "688247728552891610300416" + "313080998794013108600832", + "120579298620531686768640", + "728493291699531117756416" ], - "expectedQty": "1953811580349987383895969", - "swapFee": "1172990742655585781806", + "expectedQty": "1160105735232964460307209", "reserves": [ - "8698564998731475105497677", - "38262904371044903756186698", - "13589170087099084244251474" + "575873688354127485174087771", + "339797401468953717927311462", + "860170067043958481813526555" ], - "mAssetSupply": "60415415612532318212394593" + "mAssetSupply": "1774707596057415214646570597" }, { "type": "mint", "inputIndex": 2, - "inputQty": "814791453388634718208", - "expectedQty": "818807100733382750986", + "inputQty": "3413736633019396182245376", + "expectedQty": "3400727296878438048337478", "reserves": [ - "8698564998731475105497677", - "38262904371044903756186698", - "13589984878552472878969682" + "575873688354127485174087771", + "339797401468953717927311462", + "863583803676977877995771931" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1283129607557087458492416", - "outputIndex": 2, - "expectedQty": "1262165580546008271319144", - "swapFee": "762617541279329483553", + "type": "redeemMasset", + "inputQty": "362203990995721720011161", + "expectedQtys": [ + "117271355388213636568538", + "69196600979541123898242", + "175860861846202325914527" + ], + "redemptionFee": "108661197298716516003", "reserves": [ - "8698564998731475105497677", - "39546033978601991214679114", - "12327819298006464607650538" + "575756416998739271537519233", + "339728204867974176803413220", + "863407942815131675669857404" ], - "mAssetSupply": "60416997037174330924629132", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1777746228024495229691412917" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "8510760062183855357952", - "expectedQty": "8442618117477315184105", - "swapFee": "5106456037310313214", + "type": "mint", + "inputIndex": 1, + "inputQty": "18849836393111160", + "expectedQty": "18980311086247955", "reserves": [ - "8698564998731475105497677", - "39546033978601991214679114", - "12319376679888987292466433" - ], - "mAssetSupply": "60408491383568184379584394" + "575756416998739271537519233", + "339728204886824013196524380", + "863407942815131675669857404" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "157350936545491136020480", - "expectedQty": "156067848896723289314672", - "swapFee": "94410561927294681612", + "type": "redeemMasset", + "inputQty": "588874291436450594632499", + "expectedQtys": [ + "190660754784739192209187", + "112500415198200423305746", + "285916066593544196672456" + ], + "redemptionFee": "176662287430935178389", "reserves": [ - "8698564998731475105497677", - "39546033978601991214679114", - "12163308830992264003151761" + "575565756243954532345310046", + "339615704471625812773218634", + "863122026748538131473184948" ], - "mAssetSupply": "60251234857584620538245526" + "mAssetSupply": "1777157530414326521118206762" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "28469070245218906112", - "expectedQty": "28749455452826583583", - "swapFee": "17081442147131343", + "type": "redeemBassets", + "inputQtys": [ + "65319336249394041192448", + "83430885972031595085824", + "44678197260129641955328" + ], + "expectedQty": "193812880519295646679744", + "swapFee": "116357542837279755861", "reserves": [ - "8698564998731475105497677", - "39546005229146538388095531", - "12163308830992264003151761" + "575500436907705138304117598", + "339532273585653781178132810", + "863077348551278001831229620" ], - "mAssetSupply": "60251206405595817466470757" + "mAssetSupply": "1776963717533807225471527018" }, { - "type": "mintMulti", - "inputQtys": [ - "44338494988497593565184", - "38942020954097536991232", - "29133633531530662903808" - ], - "expectedQty": "113040144194651485348427", + "type": "redeem", + "inputIndex": 2, + "inputQty": "19219839623026033983225856", + "expectedQty": "19280641080937245974119971", + "swapFee": "11531903773815620389935", "reserves": [ - "8742903493719972699062861", - "39584947250100635925086763", - "12192442464523794666055569" + "575500436907705138304117598", + "339532273585653781178132810", + "843796707470340755857109649" ], - "mAssetSupply": "60364246549790468951819184" + "mAssetSupply": "1757755409814555007108691097" }, { "type": "mintMulti", "inputQtys": [ - "1306894721306713391104", - "1896399019345104076800", - "1232112246384813932544" + "13798551599437979648", + "4906939435232141312", + "16917030060411426816" ], - "expectedQty": "4448939367858132449564", + "expectedQty": "35587313122658200250", "reserves": [ - "8744210388441279412453965", - "39586843649119981029163563", - "12193674576770179479988113" + "575500450706256737742097246", + "339532278492593216410274122", + "843796724387370816268536465" ], - "mAssetSupply": "60368695489158327084268748" + "mAssetSupply": "1757755445401868129766891347" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "577952577794011444543488", - "482276294137063529250816", - "219438497482286083080192" + "13934508735569623643062272", + "9565564298060979551338496", + "835734117385372864348160" ], - "expectedQty": "1287340641387318423387473", - "swapFee": "772868105695808539155", + "expectedQty": "24389112987880552103769024", "reserves": [ - "8166257810647267967910477", - "39104567354982917499912747", - "11974236079287893396907921" + "589434959441826361385159518", + "349097842790654195961612618", + "844632458504756189132884625" ], - "mAssetSupply": "59081354847771008660881275" + "mAssetSupply": "1782144558389748681870660371" }, { - "type": "redeemBassets", - "inputQtys": [ - "26047799146052872830976", - "18314521122552298864640", - "13165909128109738688512" - ], - "expectedQty": "57963775020085647181435", - "swapFee": "34799144498750638692", + "type": "mint", + "inputIndex": 0, + "inputQty": "694463638160221166108672", + "expectedQty": "694121399448427749230035", "reserves": [ - "8140210011501215095079501", - "39086252833860365201048107", - "11961070170159783658219409" - ], - "mAssetSupply": "59023391072750923013699840" + "590129423079986582551268190", + "349097842790654195961612618", + "844632458504756189132884625" + ] }, { "type": "redeemBassets", "inputQtys": [ - "39861764796885540864", - "14804502350908798976", - "6723137845187040256" + "271949250297353502720", + "146184080677321981952", + "595979140640400211968" ], - "expectedQty": "62096524875203856289", - "swapFee": "37280283094979301", + "expectedQty": "1012821004478828224694", + "swapFee": "608057437149586686", "reserves": [ - "8140170149736418209538637", - "39086238029358014292249131", - "11961063447021938471179153" + "590129151130736285197765470", + "349097696606573518639630666", + "844631862525615548732672657" ], - "mAssetSupply": "59023328976226047809843551" + "mAssetSupply": "1782837666968192630791665712" }, { - "type": "redeemMasset", - "inputQty": "152145846057879941939200", - "expectedQtys": [ - "20976816252826105485476", - "100723304067865931746184", - "30823069481501985543870" - ], - "redemptionFee": "45643753817363982581", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4152316620503861166080", + "expectedQty": "4151887552849531020227", + "swapFee": "2491389972302316699", "reserves": [ - "8119193333483592104053161", - "38985514725290148360502947", - "11930240377540436485635283" + "590124999243183435666745243", + "349097696606573518639630666", + "844631862525615548732672657" ], - "mAssetSupply": "58871228773921985231886932" + "mAssetSupply": "1782833517142962099232816331" }, { - "type": "mintMulti", - "inputQtys": [ - "487837375570974846484480", - "536507791414522068074496", - "602365423895904780288000" - ], - "expectedQty": "1635057239552474533366278", + "type": "redeem", + "inputIndex": 0, + "inputQty": "288105146243579620884480", + "expectedQty": "288074899049147610820827", + "swapFee": "172863087746147772530", "reserves": [ - "8607030709054566950537641", - "39522022516704670428577443", - "12532605801436341265923283" + "589836924344134288055924416", + "349097696606573518639630666", + "844631862525615548732672657" ], - "mAssetSupply": "60506286013474459765253210" + "mAssetSupply": "1782545584859806265759704381" }, { - "type": "mintMulti", - "inputQtys": [ - "1515211854445228064768", - "12727252026018163064832", - "8193418120988303818752" - ], - "expectedQty": "22391823856678018955232", + "type": "swap", + "inputIndex": 1, + "inputQty": "18846075657887301815500800", + "outputIndex": 0, + "expectedQty": "18952370822287562659842290", + "swapFee": "11375815230063363849687", "reserves": [ - "8608545920909012178602409", - "39534749768730688591642275", - "12540799219557329569742035" + "570884553521846725396082126", + "367943772264460820455131466", + "844631862525615548732672657" ], - "mAssetSupply": "60528677837331137784208442" + "mAssetSupply": "1782556960675036329123554068", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2479667004378982645760", - "149111362261828786716672", - "46439601898348525649920" - ], - "expectedQty": "196881658856871118268755", - "swapFee": "118199915263280639344", + "type": "mint", + "inputIndex": 2, + "inputQty": "5159649758033005772800", + "expectedQty": "5142141705703470598914", "reserves": [ - "8606066253904633195956649", - "39385638406468859804925603", - "12494359617658981044092115" - ], - "mAssetSupply": "60331796178474266665939687" + "570884553521846725396082126", + "367943772264460820455131466", + "844637022175373581738445457" + ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "171471970971222688", - "expectedQty": "172683873045757880", + "inputIndex": 0, + "inputQty": "7757995403920358001082368", + "expectedQty": "7756838060871929871571835", "reserves": [ - "8606066253904633195956649", - "39385638406468859804925603", - "12494359789130952015314803" + "578642548925767083397164494", + "367943772264460820455131466", + "844637022175373581738445457" ] }, { - "type": "mintMulti", - "inputQtys": [ - "6622005248540734914560", - "56939386530629039423488", - "41160345022699755536384" - ], - "expectedQty": "104553767929187283390408", + "type": "redeem", + "inputIndex": 2, + "inputQty": "16324257540780815548416", + "expectedQty": "16369472707998680721117", + "swapFee": "9794554524468489329", "reserves": [ - "8612688259153173930871209", - "39442577792999488844349091", - "12535520134153651770851187" + "578642548925767083397164494", + "367943772264460820455131466", + "844620652702665583057724340" ], - "mAssetSupply": "60436350119087326995087975" + "mAssetSupply": "1790302626414627706118665730" }, { - "type": "redeemMasset", - "inputQty": "44451116342702", - "expectedQtys": [ - "6332757587023", - "29001430941720", - "9217146592120" + "type": "redeem", + "inputIndex": 1, + "inputQty": "28465068605201451745017856", + "expectedQty": "28274840489104572348639257", + "swapFee": "17079041163120871047010", + "reserves": [ + "578642548925767083397164494", + "339668931775356248106492209", + "844620652702665583057724340" ], - "redemptionFee": "13335334902", + "mAssetSupply": "1761854636850589375244694884" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "3051006612611169219772416", + "expectedQty": "3060371925565395194038010", + "swapFee": "1830603967566701531863", "reserves": [ - "8612688259146841173284186", - "39442577792970487413407371", - "12535520134144434624259067" + "578642548925767083397164494", + "339668931775356248106492209", + "841560280777100187863686330" ], - "mAssetSupply": "60436350119042889214080175" + "mAssetSupply": "1758805460841945772726454331" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3218486891453325242269696", - "expectedQty": "3183715866655899197988085", + "inputQty": "617157133034375552", + "expectedQty": "621287259268162781", "reserves": [ - "8612688259146841173284186", - "42661064684423812655677067", - "12535520134144434624259067" + "578642548925767083397164494", + "339668932392513381140867761", + "841560280777100187863686330" ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "1243362066913193237676032", - "outputIndex": 0, - "expectedQty": "1220641443258914550710473", - "swapFee": "751712452184858561656", + "inputIndex": 0, + "inputQty": "6322671914928222576312320", + "outputIndex": 1, + "expectedQty": "6272404505890760325057002", + "swapFee": "3791690076173453631018", "reserves": [ - "7392046815887926622573713", - "42661064684423812655677067", - "13778882201057627861935099" + "584965220840695305973476814", + "333396527886622620815810759", + "841560280777100187863686330" ], - "mAssetSupply": "63620817698150973270629916", + "mAssetSupply": "1758809253153309205448248130", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "5405186458715970076672", - "12740575050618028163072", - "445035387191246127104" + "1747783803494446242201600", + "1056228454390315335286784", + "3900295025199713141915648" ], - "expectedQty": "18600892410931030077052", - "swapFee": "11167235788031436908", + "expectedQty": "6696290178930208425911843", + "swapFee": "4020186219089578802828", "reserves": [ - "7386641629429210652497041", - "42648324109373194627513995", - "13778437165670436615807995" + "583217437037200859731275214", + "332340299432232305480523975", + "837659985751900474721770682" ], - "mAssetSupply": "63602216805740042240552864" + "mAssetSupply": "1752112962974378997022336287" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2966372515103707179778048", - "outputIndex": 2, - "expectedQty": "2998670684740680042876453", - "swapFee": "1817585279154072792585", + "type": "mintMulti", + "inputQtys": [ + "241424085772196708352", + "216215023670879453184", + "19947960172574769152" + ], + "expectedQty": "478887862839980869585", "reserves": [ - "10353014144532917832275089", - "42648324109373194627513995", - "10779766480929756572931542" + "583217678461286631927983566", + "332340515647255976359977159", + "837660005699860647296539834" ], - "mAssetSupply": "63604034391019196313345449", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1752113441862241837003205872" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "360639810283537432576", + "inputIndex": 1, + "inputQty": "28348146028337038360576", "outputIndex": 2, - "expectedQty": "360895072204229215704", - "swapFee": "219503749333697163", + "expectedQty": "28636030573308292577441", + "swapFee": "17128565746711943177", "reserves": [ - "10353374784343201369707665", - "42648324109373194627513995", - "10779405585857552343715838" + "583217678461286631927983566", + "332368863793284313398337735", + "837631369669287339003962393" ], - "mAssetSupply": "63604034610522945647042612", + "mAssetSupply": "1752113458990807583715149049", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "10819533573710781261807616", - "outputIndex": 1, - "expectedQty": "10929302289761905641286123", - "swapFee": "6522963203385851912326", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7054031855465741312", + "expectedQty": "7000549373359446933", + "swapFee": "4232419113279444", "reserves": [ - "10353374784343201369707665", - "31719021819611288986227872", - "21598939159568333605523454" + "583217678461286631927983566", + "332368856792734940038890802", + "837631369669287339003962393" ], - "mAssetSupply": "63610557573726331498954938", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1752113451941008147362687181" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "10784692258664511176704", - "expectedQty": "10899444471870417167166", + "type": "redeemBassets", + "inputQtys": [ + "21509437779230232412160", + "15411204984276485406720", + "16268813829932744441856" + ], + "expectedQty": "53224808203689841585171", + "swapFee": "31954057356627881680", "reserves": [ - "10364159476601865880884369", - "31719021819611288986227872", - "21598939159568333605523454" - ] + "583196169023507401695571406", + "332353445587750663553484082", + "837615100855457406259520537" + ], + "mAssetSupply": "1752060227132804457521102010" }, { "type": "mintMulti", "inputQtys": [ - "5753133100455680802816", - "2411021263084181258240", - "750547269781073559552" + "5718292132517922889269248", + "287529371972980403339264", + "1239981616832645575999488" ], - "expectedQty": "8963853600254676413835", + "expectedQty": "7239624472734487395622018", "reserves": [ - "10369912609702321561687185", - "31721432840874373167486112", - "21599689706838114679083006" + "588914461156025324584840654", + "332640974959723643956823346", + "838855082472290051835520025" ], - "mAssetSupply": "63630420871798456592535939" + "mAssetSupply": "1759299851605538944916724028" }, { - "type": "redeemMasset", - "inputQty": "1038630002516218504806", - "expectedQtys": [ - "169215778580088913787", - "517628948080271792487", - "352462788105970799303" - ], - "redemptionFee": "311589000754865551", + "type": "swap", + "inputIndex": 2, + "inputQty": "674007809121782071296", + "outputIndex": 0, + "expectedQty": "671580007890215002331", + "swapFee": "402920930559193598", "reserves": [ - "10369743393923741472773398", - "31720915211926292895693625", - "21599337244050008708283703" + "588913789576017434369838323", + "332640974959723643956823346", + "838855756480099173617591321" ], - "mAssetSupply": "63629382553384941128896684" + "mAssetSupply": "1759299852008459875475917626", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1312718776724985242189824", - "969785853760306541494272", - "12567007993307724775424" - ], - "expectedQty": "2306107797261785211914509", - "swapFee": "1384495375582420579496", + "type": "mint", + "inputIndex": 0, + "inputQty": "2003930622017912673665024", + "expectedQty": "2002570850065131602604236", "reserves": [ - "9057024617198756230583574", - "30751129358165986354199353", - "21586770236056700983508279" - ], - "mAssetSupply": "61323274756123155916982175" + "590917720198035347043503347", + "332640974959723643956823346", + "838855756480099173617591321" + ] }, { "type": "redeemMasset", - "inputQty": "1429734810395142101401", + "inputQty": "613956235781704060082585", "expectedQtys": [ - "211098619280929122461", - "716738799242200135826", - "503138457072631814327" + "205920786320794047589451", + "115917476807542847267831", + "292321301392377602561655" ], - "redemptionFee": "428920443118542630", + "redemptionFee": "184186870734511218024", "reserves": [ - "9056813518579475301461113", - "30750412619366744154063527", - "21586267097599628351693952" + "590711799411714552995913896", + "332525057482916101109555515", + "838563435178706796015029666" ], - "mAssetSupply": "61321845450233203893423404" + "mAssetSupply": "1760688650809614037529657301" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "52895269041805790806016", - "expectedQty": "52800972215641771069640", + "inputIndex": 1, + "inputQty": "63665895087893399994368", + "expectedQty": "64118780970231515054966", "reserves": [ - "9056813518579475301461113", - "30750412619366744154063527", - "21639162366641434142499968" + "590711799411714552995913896", + "332588723378003994509549883", + "838563435178706796015029666" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "67968181692873698181120", - "2538527160555148930973696", - "2057858645636001694744576" + "type": "redeemMasset", + "inputQty": "8112376069788526", + "expectedQtys": [ + "2720790065219399", + "1531887623155764", + "3862382748681610" ], - "expectedQty": "4649556821204538199386169", - "swapFee": "2791408938085574264190", + "redemptionFee": "2433712820936", "reserves": [ - "8988845336886601603279993", - "28211885458811595223089831", - "19581303721005432447755392" + "590711799408993762930694497", + "332588723376472106886394119", + "838563435174844413266348056" ], - "mAssetSupply": "56725089601244307465106875" + "mAssetSupply": "1760752769582474326687744677" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "3251264814776212927807488", + "expectedQty": "3248963969065705337535998", + "reserves": [ + "593963064223769975858501985", + "332588723376472106886394119", + "838563435174844413266348056" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "498984355042602975232", - "outputIndex": 2, - "expectedQty": "497031686084843492577", - "swapFee": "297987273072947113", + "inputQty": "6170957947318076178432", + "outputIndex": 0, + "expectedQty": "6215831865435749436693", + "swapFee": "3729029249555122300", "reserves": [ - "8988845336886601603279993", - "28212384443166637826065063", - "19580806689319347604262815" + "593956848391904540109065292", + "332594894334419424962572551", + "838563435174844413266348056" ], - "mAssetSupply": "56725089899231580538053988", + "mAssetSupply": "1764001737280569281580402975", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "521499081632132844486656", - "365449358205551529426944", - "661614240918828006506496" + "type": "redeemMasset", + "inputQty": "165447856499002217752166", + "expectedQtys": [ + "55691218821907764497628", + "31185119069804635769523", + "78626283863569376863670" ], - "expectedQty": "1552062209723052328093258", - "swapFee": "931796403676037019067", + "redemptionFee": "49634356949700665325", "reserves": [ - "8467346255254468758793337", - "27846935084961086296638119", - "18919192448400519597756319" + "593901157173082632344567664", + "332563709215349620326803028", + "838484808890980843889484386" ], - "mAssetSupply": "55173027689508528209960730" + "mAssetSupply": "1763836339058427229063316134" }, { "type": "mint", "inputIndex": 1, - "inputQty": "209444900000219", - "expectedQty": "208402268326527", + "inputQty": "2431020373775194521600", + "expectedQty": "2448389073657641666635", "reserves": [ - "8467346255254468758793337", - "27846935085170531196638338", - "18919192448400519597756319" + "593901157173082632344567664", + "332566140235723395521324628", + "838484808890980843889484386" ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "2959748287636615385317376", + "inputQty": "2021335041670756171776", "outputIndex": 1, - "expectedQty": "2964844466648851665643107", - "swapFee": "1772396399102875343760", + "expectedQty": "1998475711735944692244", + "swapFee": "1208377471891215462", "reserves": [ - "8467346255254468758793337", - "24882090618521679530995231", - "21878940736037134983073695" + "593901157173082632344567664", + "332564141760011659576632384", + "838486830226022514645656162" ], - "mAssetSupply": "55174800086116033353631017", + "mAssetSupply": "1763838788655878358596198231", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "46105369935417", - "expectedQty": "46203857073186", - "swapFee": "27663221961", + "type": "mintMulti", + "inputQtys": [ + "292339626105902395817984", + "1203636586153104365322240", + "1115439834804257623638016" + ], + "expectedQty": "2615715536220676475846752", "reserves": [ - "8467346255254468758793337", - "24882090618521679530995231", - "21878940735990931126000509" + "594193496799188534740385648", + "333767778346164763941954624", + "839602270060826772269294178" ], - "mAssetSupply": "55174800086069955646917561" + "mAssetSupply": "1766454504192099035072044983" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "5324465744276320419840", - "expectedQty": "5341873792122680793293", - "swapFee": "3194679446565792251", + "inputQty": "31991827462598901335326720", + "expectedQty": "32196145325637902576524955", + "reserves": [ + "594193496799188534740385648", + "365759605808763665277281344", + "839602270060826772269294178" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "36374668512364779228102656", + "outputIndex": 2, + "expectedQty": "36440744191634627962606975", + "swapFee": "21811616963049783990730", "reserves": [ - "8467346255254468758793337", - "24876748744729556850201938", - "21878940735990931126000509" + "630568165311553313968488304", + "365759605808763665277281344", + "803161525869192144306687203" ], - "mAssetSupply": "55169478815005125892289972" + "mAssetSupply": "1798672461134699987432560668", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "19955218107831627776", - "expectedQty": "20020445872433350970", - "swapFee": "11973130864698976", + "type": "redeemBassets", + "inputQtys": [ + "1707058246779398181093376", + "51398596049507819978752", + "182887858195133777313792" + ], + "expectedQty": "1939548822783440298940134", + "swapFee": "1164427950440328376389", "reserves": [ - "8467346255254468758793337", - "24876728724283684416850968", - "21878940735990931126000509" + "628861107064773915787394928", + "365708207212714157457302592", + "802978638010997010529373411" ], - "mAssetSupply": "55169458871760148925361172" + "mAssetSupply": "1796732912311916547133620534" }, { "type": "swap", "inputIndex": 1, - "inputQty": "1629991329434280260534272", + "inputQty": "170772795685202591744", "outputIndex": 0, - "expectedQty": "1596618163459318183284564", - "swapFee": "974007399034823970719", + "expectedQty": "171793797006338853288", + "swapFee": "103044705357844401", "reserves": [ - "6870728091795150575508773", - "26506720053717964677385240", - "21878940735990931126000509" + "628860935270976909448541640", + "365708377985509842659894336", + "802978638010997010529373411" ], - "mAssetSupply": "55170432879159183749331891", + "mAssetSupply": "1796732912414961252491464935", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "68099441638550032875520", - "293714578248436407074816", - "217755781635201652752384" + "1058014174920688000", + "675739840843971968", + "548050778704459200" ], - "expectedQty": "578545210473524643297480", + "expectedQty": "2283095173646372948", + "swapFee": "1370679511894960", "reserves": [ - "6938827533433700608384293", - "26800434631966401084460056", - "22096696517626132778752893" + "628860934212962734527853640", + "365708377309770001815922368", + "802978637462946231824914211" ], - "mAssetSupply": "55748978089632708392629371" + "mAssetSupply": "1796732910131866078845091987" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "463942763638337216446464", + "inputIndex": 2, + "inputQty": "6102388063158847315902464", "outputIndex": 0, - "expectedQty": "451242099795280900947069", - "swapFee": "276823122056703120260", + "expectedQty": "6086178982291523753886958", + "swapFee": "3650777303437453626642", "reserves": [ - "6487585433638419707437224", - "27264377395604738300906520", - "22096696517626132778752893" + "622774755230671210773966682", + "365708377309770001815922368", + "809081025526105079140816675" ], - "mAssetSupply": "55749254912754765095749631", + "mAssetSupply": "1796736560909169516298718629", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "1109784836469516469796864", + "inputQty": "5610792489965168359374848", + "expectedQty": "5623924930370958138319743", + "swapFee": "3366475493979101015624", + "reserves": [ + "622774755230671210773966682", + "365708377309770001815922368", + "803457100595734121002496932" + ], + "mAssetSupply": "1791129134894698327040359405" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "3307292181244368912384", "outputIndex": 0, - "expectedQty": "1073276950317564789222137", - "swapFee": "663142122806361641645", + "expectedQty": "3326696300270945112013", + "swapFee": "1995529114933348099", "reserves": [ - "5414308483320854918215087", - "27264377395604738300906520", - "23206481354095649248549757" + "622771428534370939828854669", + "365711684601951246184834752", + "803457100595734121002496932" ], - "mAssetSupply": "55749918054877571457391276", + "mAssetSupply": "1791129136890227441973707504", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 2, - "inputQty": "6450591954054944915456", - "expectedQty": "6481962140142554720047", - "swapFee": "3870355172432966949", + "inputQty": "915848330823049263710208", + "expectedQty": "917969955899796221287061", + "swapFee": "549508998493829558226", "reserves": [ - "5414308483320854918215087", - "27264377395604738300906520", - "23199999391955506693829710" + "622771428534370939828854669", + "365711684601951246184834752", + "802539130639834324781209871" ], - "mAssetSupply": "55743471333278688945442769" + "mAssetSupply": "1790213838068402886539555522" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "59658486225126184452096", - "expectedQty": "59224352108159241025629", + "type": "redeemMasset", + "inputQty": "10042278493102203627110", + "expectedQtys": [ + "3492414021555279322071", + "2050859362890580181255", + "4500525849892380183583" + ], + "redemptionFee": "3012683547930661088", "reserves": [ - "5414308483320854918215087", - "27324035881829864485358616", - "23199999391955506693829710" - ] + "622767936120349384549532598", + "365709633742588355604653497", + "802534630113984432401026288" + ], + "mAssetSupply": "1790203798802593332266589500" }, { - "type": "redeemBassets", - "inputQtys": [ - "1264532903085241794560", - "41250461016942283063296", - "95951699879318740008960" + "type": "redeemMasset", + "inputQty": "914157011714712607601459", + "expectedQtys": [ + "317917369828815774128270", + "186691443372632187264434", + "409686632860099476052146" ], - "expectedQty": "137690834922665562056343", - "swapFee": "82664099413247285605", + "redemptionFee": "274247103514413782280", "reserves": [ - "5413043950417769676420527", - "27282785420812922202295320", - "23104047692076187953820750" + "622450018750520568775404328", + "365522942299215723417389063", + "802124943481124332924974142" ], - "mAssetSupply": "55665004850464182624412055" + "mAssetSupply": "1789289916037982134072770321" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "45318888881619466190848", - "58148531373298428149760", - "48087037804943935275008" + "10761957934966002558173184", + "1768052688453936053485568", + "7176000546658065689083904" ], - "expectedQty": "152442533407760639958122", + "expectedQty": "19686197108255719163444742", + "swapFee": "11818809550683841803148", "reserves": [ - "5458362839299389142611375", - "27340933952186220630445080", - "23152134729881131889095758" + "611688060815554566217231144", + "363754889610761787363903495", + "794948942934466267235890238" ], - "mAssetSupply": "55817447383871943264370177" + "mAssetSupply": "1769603718929726414909325579" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "13125794932000835584", - "expectedQty": "13055508473271380537", + "inputIndex": 1, + "inputQty": "692450901475768208982016", + "expectedQty": "696257205389293525366116", "reserves": [ - "5458362839299389142611375", - "27340933952186220630445080", - "23152147855676063889931342" + "611688060815554566217231144", + "364447340512237555572885511", + "794948942934466267235890238" ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "2679148409317667536633856", - "expectedQty": "2663426470688914440313547", + "inputQty": "5576143501922726912", + "expectedQty": "5559952324958915715", "reserves": [ - "5458362839299389142611375", - "27340933952186220630445080", - "25831296264993731426565198" + "611688060815554566217231144", + "364447340512237555572885511", + "794948948510609769158617150" ] }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "2141871550537446306349056", + "outputIndex": 0, + "expectedQty": "2135972152317444593411265", + "swapFee": "1281381258090486887855", + "reserves": [ + "609552088663237121623819879", + "364447340512237555572885511", + "797090820061147215464966206" + ], + "mAssetSupply": "1770301263076326123880495265", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "mintMulti", "inputQtys": [ - "847045699898477597687808", - "248073870296296386985984", - "2862143992430836175601664" + "95362233507267037102080", + "527005683973176072077312", + "7849129246345753788416" ], - "expectedQty": "3966983094718753042660687", + "expectedQty": "633009594051733970235004", "reserves": [ - "6305408539197866740299183", - "27589007822482517017431064", - "28693440257424567602166862" + "609647450896744388660921959", + "364974346196210731644962823", + "797098669190393561218754622" ], - "mAssetSupply": "62447870004788084018724948" + "mAssetSupply": "1770934272670377857850730269" }, { "type": "redeemBassets", "inputQtys": [ - "30262249740071088422912", - "50241241540808302133248", - "29440877319565363642368" + "4060183329613116830908416", + "3720811046346601000861696", + "4116074742996868909760512" ], - "expectedQty": "110433102213519884307517", - "swapFee": "66299641112779598343", + "expectedQty": "11902423112189401798570335", + "swapFee": "7145741312100901620114", "reserves": [ - "6275146289457795651876271", - "27538766580941708715297816", - "28663999380105002238524494" + "605587267567131271830013543", + "361253535149864130644101127", + "792982594447396692308994110" ], - "mAssetSupply": "62337436902574564134417431" + "mAssetSupply": "1759031849558188456052159934" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "93819007519760526082048", - "outputIndex": 1, - "expectedQty": "97284481493961556050814", - "swapFee": "58070600809215576131", + "inputQty": "27775333393968035646144512", + "expectedQty": "27775455123861691810670911", + "swapFee": "16665200036380821387686", "reserves": [ - "6368965296977556177958319", - "27441482099447747159247002", - "28663999380105002238524494" + "577811812443269580019342632", + "361253535149864130644101127", + "792982594447396692308994110" ], - "mAssetSupply": "62337494973175373349993562", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1731273181364256801227403108" }, { - "type": "redeemMasset", - "inputQty": "27068607157136722074009", - "expectedQtys": [ - "2764745358946472763816", - "11912250536686858188598", - "12442940973881262515500" - ], - "redemptionFee": "8120582147141016622", + "type": "mint", + "inputIndex": 2, + "inputQty": "8009394464894623940608", + "expectedQty": "7984958350980435030441", "reserves": [ - "6366200551618609705194503", - "27429569848911060301058404", - "28651556439131120976008994" - ], - "mAssetSupply": "62310434486600383768936175" + "577811812443269580019342632", + "361253535149864130644101127", + "792990603841861586932934718" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "39908238178354563383296", - "expectedQty": "40113575079068972044545", - "swapFee": "23944942907012738029", + "inputIndex": 2, + "inputQty": "2859280397316485283840", + "expectedQty": "2866309798967812974821", + "swapFee": "1715568238389891170", "reserves": [ - "6366200551618609705194503", - "27389456273831991329013859", - "28651556439131120976008994" + "577811812443269580019342632", + "361253535149864130644101127", + "792987737532062619119959897" ], - "mAssetSupply": "62270550193364936218290908" + "mAssetSupply": "1731278308757778703567040879" }, { "type": "mintMulti", "inputQtys": [ - "7837816834989777485824", - "6923143589318791004160", - "11523325672126314184704" + "13408403075006302208", + "6321834487371172864", + "7714678352667873280" ], - "expectedQty": "26416101298066924394369", + "expectedQty": "27448658692968092922", "reserves": [ - "6374038368453599482680327", - "27396379417421310120018019", - "28663079764803247290193698" + "577811825851672655025644840", + "361253541471698618015273991", + "792987745246740971787833177" ], - "mAssetSupply": "62296966294663003142685277" + "mAssetSupply": "1731278336206437396535133801" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "124120367452939812864", - "expectedQty": "123351649094749759745", + "inputIndex": 0, + "inputQty": "15591276935399332449878016", + "expectedQty": "15582861537801180690630514", "reserves": [ - "6374038368453599482680327", - "27396379417421310120018019", - "28663203885170700230006562" + "593403102787071987475522856", + "361253541471698618015273991", + "792987745246740971787833177" ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "1612856193549550066073600", - "outputIndex": 1, - "expectedQty": "1610069895790939634717439", - "swapFee": "961475659229827647553", + "inputQty": "24257310939767851974656", + "outputIndex": 0, + "expectedQty": "24185347058223994541780", + "swapFee": "14510872671260654518", "reserves": [ - "6374038368453599482680327", - "25786309521630370485300580", - "30276060078720250296080162" + "593378917440013763480981076", + "361253541471698618015273991", + "793012002557680739639807833" ], - "mAssetSupply": "62298051121971327720092575", + "mAssetSupply": "1746861212255111248486418833", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "79235332262052087673651", + "inputQty": "375447006132510360443289", "expectedQtys": [ - "8104547801544774494503", - "32787122709803287284903", - "38495810970456969300546" - ], - "redemptionFee": "23770599678615626302", - "reserves": [ - "6365933820652054708185824", - "25753522398920567198015677", - "30237564267749793326779616" - ], - "mAssetSupply": "62218839560308954248045226" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "30736080287433765158912", - "expectedQty": "30928233427873584582982", - "swapFee": "18441648172460259095", - "reserves": [ - "6365933820652054708185824", - "25753522398920567198015677", - "30206636034321919742196634" + "127494675473429299276154", + "77619715968788801200414", + "170388271205888845013141" ], - "mAssetSupply": "62188121921669692943145409" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "73427650296829729308672", - "outputIndex": 0, - "expectedQty": "70657620137050151384467", - "swapFee": "43756310028992664163", + "redemptionFee": "112634101839753108132", "reserves": [ - "6295276200515004556801357", - "25753522398920567198015677", - "30280063684618749471505306" + "593251422764540334181704922", + "361175921755729829214073577", + "792841614286474850794794692" ], - "mAssetSupply": "62188165677979721935809572", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1746485877883080577879083676" }, { "type": "redeemMasset", - "inputQty": "9849424965236527923", + "inputQty": "21910283570308372889", "expectedQtys": [ - "996753135286460104", - "4077645424627142924", - "4794348564380433170" - ], - "redemptionFee": "2954827489570958", - "reserves": [ - "6295275203761869270341253", - "25753518321275142570872753", - "30280058890270185091072136" - ], - "mAssetSupply": "62188155831509584188852607" - }, - { - "type": "mintMulti", - "inputQtys": [ - "29484227685239312351232", - "30440687167843415883776", - "19198785710087682916352" + "7440316336791767754", + "4529720465856427225", + "9943494762768244038" ], - "expectedQty": "79771303622755592261435", + "redemptionFee": "6573085071092511", "reserves": [ - "6324759431447108582692485", - "25783959008442985986756529", - "30299257675980272773988488" + "593251415324223997389937168", + "361175917226009363357646352", + "792841604342980088026550654" ], - "mAssetSupply": "62267927135132339781114042" + "mAssetSupply": "1746485855979370092641803298" }, { - "type": "redeemMasset", - "inputQty": "262458952688852847820", - "expectedQtys": [ - "26650826770967467147", - "108646634303135327830", - "127672882480954702815" - ], - "redemptionFee": "78737685806655854", + "type": "redeem", + "inputIndex": 1, + "inputQty": "19553202197427705085952", + "expectedQty": "19436147976469495352184", + "swapFee": "11731921318456623051", "reserves": [ - "6324732780620337615225338", - "25783850361808682851428699", - "30299130003097791819285673" + "593251415324223997389937168", + "361156481078032893862294168", + "792841604342980088026550654" ], - "mAssetSupply": "62267664754917336734922076" + "mAssetSupply": "1746466314509093983393340397" }, { - "type": "redeemBassets", - "inputQtys": [ - "9147120976405336162304", - "2956264759791786131456", - "2812644524234927767552" - ], - "expectedQty": "15171124112609190686702", - "swapFee": "9108139351176220144", + "type": "mint", + "inputIndex": 2, + "inputQty": "8285398603048504187158528", + "expectedQty": "8260369511261250798764078", "reserves": [ - "6315585659643932279063034", - "25780894097048891065297243", - "30296317358573556891518121" - ], - "mAssetSupply": "62252493630804727544235374" + "593251415324223997389937168", + "361156481078032893862294168", + "801127002946028592213709182" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3064980740900472225792", - "expectedQty": "3162086153710216410658", + "inputIndex": 1, + "inputQty": "75472237054594", + "expectedQty": "75887512370082", "reserves": [ - "6318650640384832751288826", - "25780894097048891065297243", - "30296317358573556891518121" + "593251415324223997389937168", + "361156481078108366099348762", + "801127002946028592213709182" ] }, { - "type": "mintMulti", - "inputQtys": [ - "111038363368203038490624", - "17517180159731982925824", - "15862058666716068577280" - ], - "expectedQty": "147678686130137575995910", + "type": "swap", + "inputIndex": 2, + "inputQty": "489786544396906006577152", + "outputIndex": 0, + "expectedQty": "488284535149871430659319", + "swapFee": "292974621072170725692", "reserves": [ - "6429689003753035789779450", - "25798411277208623048223067", - "30312179417240272960095401" + "592763130789074125959277849", + "361156481078108366099348762", + "801616789490425498220286334" ], - "mAssetSupply": "62403334403088575336641942" + "mAssetSupply": "1754726976995052193875200249", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2759119150601370112", - "4549712502150185472", - "10182968414859022336" + "115642316175469954727936", + "205526785820022800384000", + "80944300030223326380032" ], - "expectedQty": "17484721393355742860", - "swapFee": "10497131114682255", + "expectedQty": "402928940912837414884157", "reserves": [ - "6429686244633885188409338", - "25798406727496120898037595", - "30312169234271858101073065" + "592878773105249595914005785", + "361362007863928388899732762", + "801697733790455721546666366" ], - "mAssetSupply": "62403316918367181980899082" + "mAssetSupply": "1755129905935965031290084406" }, { "type": "redeemMasset", - "inputQty": "70885938943795776716", + "inputQty": "26893854923895215646310", "expectedQtys": [ - "7301496727440841496", - "29296450110797992789", - "34422240222123221539" + "9081955824879967079756", + "5535488772892054520137", + "12280728765269450470765" ], - "redemptionFee": "21265781683138733", + "redemptionFee": "8068156477168564693", "reserves": [ - "6429678943137157747567842", - "25798377431046010100044806", - "30312134812031635977851526" + "592869691149424715946926029", + "361356472375155496845212625", + "801685453061690452096195601" ], - "mAssetSupply": "62403246053694019868261099" + "mAssetSupply": "1755103020149197613243002789" }, { "type": "swap", "inputIndex": 1, - "inputQty": "1290499058248702511546368", + "inputQty": "3428886855919841375682560", "outputIndex": 2, - "expectedQty": "1291348402773730669585662", - "swapFee": "770261725211054917503", + "expectedQty": "3455847995800868898159148", + "swapFee": "2068512323566347353545", "reserves": [ - "6429678943137157747567842", - "27088876489294712611591174", - "29020786409257905308265864" + "592869691149424715946926029", + "364785359231075338220895185", + "798229605065889583198036453" ], - "mAssetSupply": "62404016315419230923178602", + "mAssetSupply": "1755105088661521179590356334", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "2885221695883451798913024", - "outputIndex": 1, - "expectedQty": "2878010608072268961987880", - "swapFee": "1719514794131656403173", + "type": "redeemMasset", + "inputQty": "1797305626581239295534694", + "expectedQtys": [ + "606942779782607184746367", + "373444355919864345295685", + "817177370737539067812585" + ], + "redemptionFee": "539191687974371788660", "reserves": [ - "6429678943137157747567842", - "24210865881222443649603294", - "31906008105141357107178888" + "592262748369642108762179662", + "364411914875155473875599500", + "797412427695152044130223868" ], - "mAssetSupply": "62405735830213362579581775", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1753308322226627914666610300" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "4008998407696849846665216", - "expectedQty": "4033833190769325105626418", - "swapFee": "2405399044618109907999", + "inputIndex": 1, + "inputQty": "815962362320578005696512", + "expectedQty": "811131218883673885389617", + "swapFee": "489577417392346803417", "reserves": [ - "6429678943137157747567842", - "24210865881222443649603294", - "27872174914372032001552470" + "592262748369642108762179662", + "363600783656271799990209883", + "797412427695152044130223868" ], - "mAssetSupply": "58399142821561130842824558" + "mAssetSupply": "1752492849441724729007717205" }, { - "type": "redeemBassets", - "inputQtys": [ - "18185735826679187456", - "6719050007790546944", - "13090046356317310976" - ], - "expectedQty": "38362836160789226433", - "swapFee": "23031520608838839", + "type": "mint", + "inputIndex": 0, + "inputQty": "5090175993577569005862912", + "expectedQty": "5087120473743564073715324", "reserves": [ - "6429660757401331068380386", - "24210859162172435859056350", - "27872161824325675684241494" - ], - "mAssetSupply": "58399104458724970053598125" + "597352924363219677768042574", + "363600783656271799990209883", + "797412427695152044130223868" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "6179037199049605251072", - "4398092669056118161408", - "706109955903843598336" - ], - "expectedQty": "11421474705307690980073", - "swapFee": "6856999022598173492", + "type": "redeem", + "inputIndex": 0, + "inputQty": "6249942087644175283519488", + "expectedQty": "6249905390838917390363781", + "swapFee": "3749965252586505170111", "reserves": [ - "6423481720202281463129314", - "24206461069503379740894942", - "27871455714369771840643158" + "591103018972380760377678793", + "363600783656271799990209883", + "797412427695152044130223868" ], - "mAssetSupply": "58387682984019662362618052" + "mAssetSupply": "1751333777793076704303083152" }, { "type": "mintMulti", "inputQtys": [ - "8645447682779317796864", - "851612525204570701299712", - "221240407461192490024960" + "4133205922108224936345600", + "3992434992886572656885760", + "3468031457711719383564288" ], - "expectedQty": "1076302862128520042319756", + "expectedQty": "11602225059346619390105015", "reserves": [ - "6432127167885060780926178", - "25058073594707950442194654", - "28092696121830964330668118" + "595236224894488985314024393", + "367593218649158372647095643", + "800880459152863763513788156" ], - "mAssetSupply": "59463985846148182404937808" + "mAssetSupply": "1762936002852423323693188167" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "38907616729738738925568", - "expectedQty": "39123454756428111294496", - "swapFee": "23344570037843243355", + "type": "redeemMasset", + "inputQty": "195555753027010419490816", + "expectedQtys": [ + "66007471308918196399920", + "40763478126080465801727", + "88811956864313031512036" + ], + "redemptionFee": "58666725908103125847", "reserves": [ - "6432127167885060780926178", - "25058073594707950442194654", - "28053572667074536219373622" + "595170217423180067117624473", + "367552455171032292181293916", + "800791647195999450482276120" ], - "mAssetSupply": "59425101573988481509255595" + "mAssetSupply": "1762740505766122221376823198" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "5200241132927378784256", - "expectedQty": "5058679904117277487208", - "swapFee": "3120144679756427270", + "inputQty": "59297330155745005535232", + "expectedQty": "59294726958188026880738", + "swapFee": "35578398093447003321", "reserves": [ - "6427068487980943503438970", - "25058073594707950442194654", - "28053572667074536219373622" + "595110922696221879090743735", + "367552455171032292181293916", + "800791647195999450482276120" ], - "mAssetSupply": "59419904453000233886898609" + "mAssetSupply": "1762681244014364569818291287" }, { - "type": "redeemMasset", - "inputQty": "2177265647594078889574", - "expectedQtys": [ - "235430156473078883583", - "917903115292508307490", - "1027631340009742559434" + "type": "mintMulti", + "inputQtys": [ + "936290686409670553239552", + "879788704683693545881600", + "798093590210145241006080" + ], + "expectedQty": "2615920589075113094513388", + "reserves": [ + "596047213382631549643983287", + "368432243875715985727175516", + "801589740786209595723282200" ], - "redemptionFee": "653179694278223666", + "mAssetSupply": "1765297164603439682912804675" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "105914789743349779660800", + "expectedQty": "105909958355949888564583", + "swapFee": "63548873846009867796", "reserves": [ - "6426833057824470424555387", - "25057155691592657933887164", - "28052545035734526476814188" + "595941303424275599755418704", + "368432243875715985727175516", + "801589740786209595723282200" ], - "mAssetSupply": "59417727840532334086232701" + "mAssetSupply": "1765191313362570179143011671" }, { "type": "redeemMasset", - "inputQty": "5085856883432850227", + "inputQty": "49775887524448206795571", "expectedQtys": [ - "549939362332470527", - "2144122322599196686", - "2400435578449111881" + "16799656792862101929376", + "10386149127390670153971", + "22596910897951806493566" ], - "redemptionFee": "1525757065029855", + "redemptionFee": "14932766257334462038", "reserves": [ - "6426832507885108092084860", - "25057153547470335334690478", - "28052542635298948027702307" + "595924503767482737653489328", + "368421857726588595057021545", + "801567143875311643916788634" ], - "mAssetSupply": "59417722756201207718412329" + "mAssetSupply": "1765141552407811988270678138" }, { - "type": "mintMulti", - "inputQtys": [ - "2779056873648056984141824", - "1133996778029548193185792", - "703681352991329398816768" - ], - "expectedQty": "4663336407797218028618062", + "type": "redeem", + "inputIndex": 2, + "inputQty": "259559251560329150464", + "expectedQty": "260176931657410837395", + "swapFee": "155735550936197490", "reserves": [ - "9205889381533165076226684", - "26191150325499883527876270", - "28756223988290277426519075" + "595924503767482737653489328", + "368421857726588595057021545", + "801566883698379986505951239" ], - "mAssetSupply": "64081059163998425747030391" + "mAssetSupply": "1765141293004295978877725164" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "178006065024951310614528", - "outputIndex": 1, - "expectedQty": "180935168661321174598788", - "swapFee": "108286020024405687261", + "inputIndex": 1, + "inputQty": "4778909852855824965173248", + "outputIndex": 2, + "expectedQty": "4814813997648855014853745", + "swapFee": "2882213177570942154072", "reserves": [ - "9383895446558116386841212", - "26010215156838562353277482", - "28756223988290277426519075" + "595924503767482737653489328", + "373200767579444420022194793", + "796752069700731131491097494" ], - "mAssetSupply": "64081167450018450152717652", + "mAssetSupply": "1765144175217473549819879236", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "615465821394081643757568", - "expectedQty": "613503139696209119075243", + "type": "mintMulti", + "inputQtys": [ + "26258157645848123539456", + "8461216781551399862272", + "1950280382086105006080" + ], + "expectedQty": "36692853344833693308407", "reserves": [ - "9383895446558116386841212", - "26625680978232643997035050", - "28756223988290277426519075" - ] + "595950761925128585777028784", + "373209228796225971422057065", + "796754019981113217596103574" + ], + "mAssetSupply": "1765180868070818383513187643" }, { "type": "mint", "inputIndex": 1, - "inputQty": "184219525430694", - "expectedQty": "183617363229059", + "inputQty": "76908274905128560", + "expectedQty": "77297227643886951", "reserves": [ - "9383895446558116386841212", - "26625680978416863522465744", - "28756223988290277426519075" + "595950761925128585777028784", + "373209228873134246327185625", + "796754019981113217596103574" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1014257083616567293378560", - "outputIndex": 1, - "expectedQty": "1012610120884928231622247", - "swapFee": "606071099997626165440", + "type": "mint", + "inputIndex": 1, + "inputQty": "4680656208551648040058880", + "expectedQty": "4703962604785250723149966", "reserves": [ - "9383895446558116386841212", - "25613070857531935290843497", - "29770481071906844719897635" - ], - "mAssetSupply": "64695276660998274261187394", - "hardLimitError": false, - "insufficientLiquidityError": false + "595950761925128585777028784", + "377889885081685894367244505", + "796754019981113217596103574" + ] }, { "type": "mintMulti", "inputQtys": [ - "1529369407963827535872", - "3516717504977287774208", - "2000580177274794672128" + "136162510023465238528", + "80514991948982239232", + "135579869297823301632" ], - "expectedQty": "7049030898115197767002", + "expectedQty": "352198952594373412029", "reserves": [ - "9385424815966080214377084", - "25616587575036912578617705", - "29772481652084119514569763" + "595950898087638609242267312", + "377889965596677843349483737", + "796754155560982515419405206" ], - "mAssetSupply": "64702325691896389458954396" + "mAssetSupply": "1769885182951853456253636589" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "12284157891770758", - "expectedQty": "12312791533944743", - "swapFee": "7370494735062", + "inputQty": "481734695450355367936", + "expectedQty": "484096211150162442335", "reserves": [ - "9385424815966080214377084", - "25616587562724121044672962", - "29772481652084119514569763" + "595950898087638609242267312", + "377890447331373293704851673", + "796754155560982515419405206" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "2267708876412060434432", + "expectedQty": "2272821002132751520432", + "swapFee": "1360625325847236260", + "reserves": [ + "595950898087638609242267312", + "377890447331373293704851673", + "796751882739980382667884774" ], - "mAssetSupply": "64702325679619602061918700" + "mAssetSupply": "1769883400699813520202880752" }, { - "type": "mintMulti", - "inputQtys": [ - "2880079559877894044909568", - "2272389063445412472422400", - "1240153064943651502686208" + "type": "redeemMasset", + "inputQty": "169003941634850681572556", + "expectedQtys": [ + "56889530317414563959209", + "36073458617320658444042", + "76058011715467923087701" ], - "expectedQty": "6414273710832861970417153", + "redemptionFee": "50701182490455204471", "reserves": [ - "12265504375843974259286652", - "27888976626169533517095362", - "31012634717027771017255971" + "595894008557321194678308103", + "377854373872755973046407631", + "796675824728264914744797073" ], - "mAssetSupply": "71116599390452464032335853" + "mAssetSupply": "1769714447459361159976512667" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "280605920326356316454912", + "expectedQty": "280467445274958315953807", + "reserves": [ + "596174614477647550994763015", + "377854373872755973046407631", + "796675824728264914744797073" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "209713375006911922176", + "expectedQty": "209116362315223625524", + "reserves": [ + "596174614477647550994763015", + "377854373872755973046407631", + "796676034441639921656719249" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "515929501408632256", - "expectedQty": "516785201067933848", - "swapFee": "309557700845179", + "inputIndex": 0, + "inputQty": "630703653451822645903360", + "expectedQty": "630635285800444673920084", + "swapFee": "378422192071093587542", "reserves": [ - "12265504375843974259286652", - "27888976109384332449161514", - "31012634717027771017255971" + "595543979191847106320842931", + "377854373872755973046407631", + "796676034441639921656719249" ], - "mAssetSupply": "71116598874832520324548776" + "mAssetSupply": "1769364798789738681963776180" }, { "type": "redeemBassets", "inputQtys": [ - "24236260321505862221824", - "124390088842344067497984", - "110650710655385515065344" + "1158239869144655238004736", + "771048859460519065550848", + "1418609624932280986238976" ], - "expectedQty": "258866485075364647005028", - "swapFee": "155413138928575933763", + "expectedQty": "3347068381255384500923309", + "swapFee": "2009446696771293476639", "reserves": [ - "12241268115522468397064828", - "27764586020541988381663530", - "30901984006372385502190627" + "594385739322702451082838195", + "377083325013295453980856783", + "795257424816707640670480273" ], - "mAssetSupply": "70857732389757155677543748" + "mAssetSupply": "1766017730408483297462852871" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "339185733232717274808320", - "expectedQty": "335897510023784754288332", - "swapFee": "203511439939630364884", + "type": "redeemMasset", + "inputQty": "1571806104007544342262579", + "expectedQtys": [ + "528861539372240019414078", + "335514220050731856967005", + "707589428987673931921812" + ], + "redemptionFee": "471541831202263302678", "reserves": [ - "11905370605498683642776496", - "27764586020541988381663530", - "30901984006372385502190627" + "593856877783330211063424117", + "376747810793244722123889778", + "794549835387719966738558461" ], - "mAssetSupply": "70518750167964378033100312" + "mAssetSupply": "1764446395846306955383892970" }, { "type": "redeemMasset", - "inputQty": "35277743634502558469324", + "inputQty": "14052549101680754425856", "expectedQtys": [ - "5953999648474155480919", - "13885358203799742126586", - "15454403563557801555635" + "4728224894323989134901", + "2999625742357087015097", + "6326120740546385400421" ], - "redemptionFee": "10583323090350767540", + "redemptionFee": "4215764730504226327", "reserves": [ - "11899416605850209487295577", - "27750700662338188639536944", - "30886529602808827700634992" + "593852149558435887074289216", + "376744811167502365036874681", + "794543509266979420353158040" ], - "mAssetSupply": "70483483007652965825398528" + "mAssetSupply": "1764432347512970005133693441" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "244238553230191385116672", - "outputIndex": 2, - "expectedQty": "244295199299358632178733", - "swapFee": "146194310161444698079", + "type": "redeemBassets", + "inputQtys": [ + "9455043332397864960", + "6329295288278916096", + "7052464397355308032" + ], + "expectedQty": "22843107641705891643", + "swapFee": "13714093040848043", "reserves": [ - "11899416605850209487295577", - "27994939215568380024653616", - "30642234403509469068456259" + "593852140103392554676424256", + "376744804838207076757958585", + "794543502214515022997850008" ], - "mAssetSupply": "70483629201963127270096607", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1764432324669862363427801798" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "332174625257409837268992", - "392604176769652143161344", - "1631558845744251586740224" + "10958250147238317091979264", + "649344292898847057772544", + "1319204058233958360416256" ], - "expectedQty": "2353232012063551793711989", + "expectedQty": "12921397487940455813999019", + "swapFee": "7757492988557407933159", "reserves": [ - "12231591231107619324564569", - "28387543392338032167814960", - "32273793249253720655196483" + "582893889956154237584444992", + "376095460545308229700186041", + "793224298156281064637433752" ], - "mAssetSupply": "72836861214026679063808596" + "mAssetSupply": "1751510927181921907613802779" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "51455570779679420841984", - "outputIndex": 0, - "expectedQty": "50760688835205944633353", - "swapFee": "30769213037892977257", + "type": "redeemMasset", + "inputQty": "2978485631995809525399552", + "expectedQtys": [ + "990927436965636886015011", + "639367331163149854513493", + "1348491954118776955612240" + ], + "redemptionFee": "893545689598742857619", "reserves": [ - "12180830542272413379931216", - "28387543392338032167814960", - "32325248820033400076038467" + "581902962519188600698429981", + "375456093214145079845672548", + "791875806202162287681821512" ], - "mAssetSupply": "72836891983239716956785853", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1748533335095615696831260846" }, { - "type": "mintMulti", - "inputQtys": [ - "6220457540437084733440", - "6333305662950485262336", - "8340884106494028546048" - ], - "expectedQty": "20912151504370505709314", + "type": "redeem", + "inputIndex": 1, + "inputQty": "989750239236843615813632", + "expectedQty": "984397016914554192846462", + "swapFee": "593850143542106169488", "reserves": [ - "12187050999812850464664656", - "28393876698000982653077296", - "32333589704139894104584515" + "581902962519188600698429981", + "374471696197230525652826086", + "791875806202162287681821512" ], - "mAssetSupply": "72857804134744087462495167" + "mAssetSupply": "1747544178706522395321616702" }, { - "type": "redeemBassets", - "inputQtys": [ - "972054331493490748293120", - "464870541689227573198848", - "565531804222312557838336" + "type": "redeemMasset", + "inputQty": "53059784225128723251", + "expectedQtys": [ + "17662719668917484506", + "11366480358239471136", + "24036104433968408944" ], - "expectedQty": "2009442381761534135621196", - "swapFee": "1206389262614489174877", + "redemptionFee": "15917935267538616", "reserves": [ - "11214996668319359716371536", - "27929006156311755079878448", - "31768057899917581546746179" + "581902944856468931780945475", + "374471684830750167413354950", + "791875782166057853713412568" ], - "mAssetSupply": "70848361752982553326873971" + "mAssetSupply": "1747544125662656105460432067" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "632163313413362578096128", - "517167014824664016879616", - "1058306940963136221478912" + "69885028354050100297728", + "28345915103011619733504", + "26343641787687673790464" ], - "expectedQty": "2209340799329554209203468", + "expectedQty": "124608454531697360502543", + "swapFee": "74809958694234957275", "reserves": [ - "11847159981732722294467664", - "28446173171136419096758064", - "32826364840880717768225091" + "581833059828114881680647747", + "374443338915647155793621446", + "791849438524270166039622104" ], - "mAssetSupply": "73057702552312107536077439" + "mAssetSupply": "1747419517208124408099929524" }, { - "type": "redeemBassets", - "inputQtys": [ - "15573186356675866525696", - "30657495939193744916480", - "22563800136066145452032" - ], - "expectedQty": "68803509000002522078996", - "swapFee": "41306889533721746295", + "type": "redeem", + "inputIndex": 2, + "inputQty": "147412711272567", + "expectedQty": "147752664248576", + "swapFee": "88447626763", "reserves": [ - "11831586795376046427941968", - "28415515675197225351841584", - "32803801040744651622773059" + "581833059828114881680647747", + "374443338915647155793621446", + "791849438524122413375373528" ], - "mAssetSupply": "72988899043312105013998443" + "mAssetSupply": "1747419517207977083836283720" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1267646221480755200", - "2617252259777466880", - "193681670129707872" + "261475009896911994880", + "115972599538373722112", + "162759176684578930688" ], - "expectedQty": "4084972054005744976", - "swapFee": "2452454705226582", + "expectedQty": "540195525750730049950", "reserves": [ - "11831585527729824947186768", - "28415513057944965574374704", - "32803800847062981493065187" + "581833321303124778592642627", + "374443454888246694167343558", + "791849601283299097954304216" ], - "mAssetSupply": "72988894958340051008253467" + "mAssetSupply": "1747420057403502834566333670" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3477357742491014201868288", - "expectedQty": "3423852007515248633683084", - "swapFee": "2086414645494608521120", + "inputQty": "68499083930370719088640", + "expectedQty": "68484656271484580354600", + "swapFee": "41099450358222431453", "reserves": [ - "8407733520214576313503684", - "28415513057944965574374704", - "32803800847062981493065187" + "581764836646853294012288027", + "374443454888246694167343558", + "791849601283299097954304216" ], - "mAssetSupply": "69513623630494531414906299" + "mAssetSupply": "1747351599419022822069676483" }, { "type": "redeemBassets", "inputQtys": [ - "34903454752506388676608", - "3977286824956394471424", - "34461391608590050000896" - ], - "expectedQty": "73883896779861067065842", - "swapFee": "44356952239260196357", - "reserves": [ - "8372830065462069924827076", - "28411535771120009179903280", - "32769339455454391443064291" + "590667064261741348126720", + "277190304277562646331392", + "17291077020968533622784" ], - "mAssetSupply": "69439739733714670347840457" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "124820391769882066944", - "outputIndex": 0, - "expectedQty": "121634970765143286114", - "swapFee": "74589840060038959", + "expectedQty": "886214661797819254899135", + "swapFee": "532048025894228089793", "reserves": [ - "8372708430491304781540962", - "28411660591511779061970224", - "32769339455454391443064291" + "581174169582591552664161307", + "374166264583969131521012166", + "791832310206278129420681432" ], - "mAssetSupply": "69439739808304510407879416", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1746465384757225002814777348" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "3352942357214542310670336", - "outputIndex": 0, - "expectedQty": "3206593223254358341853500", - "swapFee": "1999956613367249426154", + "inputQty": "1954666622823381105377280", + "expectedQty": "1959170207186077283341362", + "swapFee": "1172799973694028663226", "reserves": [ - "5166115207236946439687462", - "28411660591511779061970224", - "36122281812668933753734627" + "581174169582591552664161307", + "374166264583969131521012166", + "789873139999092052137340070" ], - "mAssetSupply": "69441739764917877657305570", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1744511890934375315738063294" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5335805408445280026624", - "outputIndex": 2, - "expectedQty": "5350445259043356103211", - "swapFee": "3178539680284932469", - "reserves": [ - "5166115207236946439687462", - "28416996396920224341996848", - "36116931367409890397631416" + "type": "mintMulti", + "inputQtys": [ + "729772752119554872705024", + "371370059430699485626368", + "695410027079278461452288" ], - "mAssetSupply": "69441742943457557942238039", - "hardLimitError": false, - "insufficientLiquidityError": false + "expectedQty": "1796052050774754131168793", + "reserves": [ + "581903942334711107536866331", + "374537634643399831006638534", + "790568550026171330598792358" + ], + "mAssetSupply": "1746307942985150069869232087" }, { "type": "swap", "inputIndex": 0, - "inputQty": "90289811371086751727616", - "outputIndex": 2, - "expectedQty": "96789612382677180494705", - "swapFee": "57511677598631003041", + "inputQty": "96380507959692279939072", + "outputIndex": 1, + "expectedQty": "95820916969066241076932", + "swapFee": "57805437479927524009", "reserves": [ - "5256405018608033191415078", - "28416996396920224341996848", - "36020141755027213217136711" + "582000322842670799816805403", + "374441813726430764765561602", + "790568550026171330598792358" ], - "mAssetSupply": "69441800455135156573241080", + "mAssetSupply": "1746308000790587549796756096", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "944442310117774965342208", - "expectedQty": "992898641524176019676240", + "inputIndex": 1, + "inputQty": "50038905796648312504320", + "expectedQty": "50281079387124039637768", "reserves": [ - "6200847328725808156757286", - "28416996396920224341996848", - "36020141755027213217136711" + "582000322842670799816805403", + "374491852632227413078065922", + "790568550026171330598792358" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "9787148539995849326854144", + "10833548778798222793506816", + "1102265282696103638073344" + ], + "expectedQty": "21769752835074639428358051", + "swapFee": "13069693517155076703036", + "reserves": [ + "572213174302674950489951259", + "363658303853429190284559106", + "789466284743475226960719014" + ], + "mAssetSupply": "1724588529034900034408035813" + }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7043814995307677576331264", - "expectedQty": "7187227156337822633380089", + "inputIndex": 1, + "inputQty": "2147114487214489190006784", + "expectedQty": "2158007842656826628953620", "reserves": [ - "13244662324033485733088550", - "28416996396920224341996848", - "36020141755027213217136711" + "572213174302674950489951259", + "365805418340643679474565890", + "789466284743475226960719014" ] }, { - "type": "mintMulti", - "inputQtys": [ - "2395551209035303000997888", - "1006038304941258234134528", - "615019861746849742323712" - ], - "expectedQty": "4032022328563376583842197", + "type": "redeem", + "inputIndex": 0, + "inputQty": "59400545229018331348992", + "expectedQty": "59386697077201365004803", + "swapFee": "35640327137410998809", "reserves": [ - "15640213533068788734086438", - "29423034701861482576131376", - "36635161616774062959460423" + "572153787605597749124946456", + "365805418340643679474565890", + "789466284743475226960719014" ], - "mAssetSupply": "81653948581560531810139606" + "mAssetSupply": "1726687171972654980116639250" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "13514112157796102458834944", - "outputIndex": 1, - "expectedQty": "13412991242931222244615612", - "swapFee": "8074772008894247037454", + "type": "redeemMasset", + "inputQty": "684994661541428719307980", + "expectedQtys": [ + "226911231960968465228826", + "145075257617434343068151", + "313095484367004227088441" + ], + "redemptionFee": "205498398462428615792", "reserves": [ - "15640213533068788734086438", - "16010043458930260331515764", - "50149273774570165418295367" + "571926876373636780659717630", + "365660343083026245131497739", + "789153189259108222733630573" ], - "mAssetSupply": "81662023353569426057177060", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1726002382809512013825947062" }, { "type": "mintMulti", "inputQtys": [ - "738181709508351444910080", - "343279772878573527891968", - "555069739586251026071552" + "1405665571938825666560000", + "195766697013449395798016", + "505354942324020514652160" ], - "expectedQty": "1640641683657523712100550", + "expectedQty": "2105733789250577616257644", "reserves": [ - "16378395242577140178996518", - "16353323231808833859407732", - "50704343514156416444366919" + "573332541945575606326277630", + "365856109780039694527295755", + "789658544201432243248282733" ], - "mAssetSupply": "83302665037226949769277610" + "mAssetSupply": "1728108116598762591442204706" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "557703711299093720465408", - "expectedQty": "553075192022611607512227", - "swapFee": "334622226779456232279", + "type": "redeemMasset", + "inputQty": "31044719771431308833587", + "expectedQtys": [ + "10296582861455301301370", + "6570476074734059205000", + "14181620678698605663736" + ], + "redemptionFee": "9313415931429392650", "reserves": [ - "15825320050554528571484291", - "16353323231808833859407732", - "50704343514156416444366919" + "573322245362714151024976260", + "365849539303964960468090755", + "789644362580753544642618997" ], - "mAssetSupply": "82745295948154635505044481" + "mAssetSupply": "1728077081192407091562763769" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "118409316866206545739776", - "expectedQty": "119274244429181522168194", + "inputQty": "1895973163232484636229632", + "expectedQty": "1885260782920004388463200", + "swapFee": "1137583897939490781737", "reserves": [ - "15825320050554528571484291", - "16471732548675040405147508", - "50704343514156416444366919" - ] + "573322245362714151024976260", + "363964278521044956079627555", + "789644362580753544642618997" + ], + "mAssetSupply": "1726182245613072546417315874" }, { - "type": "redeemMasset", - "inputQty": "82257911864988736", - "expectedQtys": [ - "15704748743578671", - "16346236298665175", - "50318032908915897" + "type": "redeemBassets", + "inputQtys": [ + "753564849781472", + "51146570571187368", + "21229811113875332" ], - "redemptionFee": "24677373559496", + "expectedQty": "73327029064380505", + "swapFee": "44022631017238", "reserves": [ - "15825320034849779827905620", - "16471732532328804106482333", - "50704343463838383535451022" + "573322245361960586175194788", + "363964278469898385508440187", + "789644362559523733528743665" ], - "mAssetSupply": "82864570110350582535783435" + "mAssetSupply": "1726182245539745517352935369" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1898014826619215129083904", - "outputIndex": 0, - "expectedQty": "1890135135061933427458578", - "swapFee": "1145901775877580737271", + "type": "redeem", + "inputIndex": 2, + "inputQty": "9365853098643201831469056", + "expectedQty": "9388232286276713020683087", + "swapFee": "5619511859185921098881", "reserves": [ - "13935184899787846400447042", - "18369747358948019235566237", - "50704343463838383535451022" + "573322245361960586175194788", + "363964278469898385508440187", + "780256130273247020508060578" ], - "mAssetSupply": "82865716012126460116520706", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1716822011952961501442565194" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "17662386663701939748864", - "expectedQty": "17563727582025117184267", - "swapFee": "10597431998221163849", + "type": "mintMulti", + "inputQtys": [ + "3478599113402595409920", + "891614303172711677952", + "2816774532025032376320" + ], + "expectedQty": "7181656268179364149986", "reserves": [ - "13935184899787846400447042", - "18352183631365994118381970", - "50704343463838383535451022" + "573325723961073988770604708", + "363965170084201558220118139", + "780258947047779045540436898" ], - "mAssetSupply": "82848064222894756397935691" + "mAssetSupply": "1716829193609229680806715180" }, { "type": "redeemMasset", - "inputQty": "7064084733914893831372", + "inputQty": "754232447795328037001625", "expectedQtys": [ - "1187834574529540188973", - "1564339360562305683952", - "4322036103452425223873" + "251796241301762096356329", + "159848159539725710658513", + "342678275014990405364880" ], - "redemptionFee": "2119225420174468149", + "redemptionFee": "226269734338598411100", "reserves": [ - "13933997065213316860258069", - "18350619292005431812698018", - "50700021427734931110227149" + "573073927719772226674248379", + "363805321924661832509459626", + "779916268772764055135072018" ], - "mAssetSupply": "82841002257386261678572468" + "mAssetSupply": "1716075187431168691368124655" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "305176568810645519073280", + "inputIndex": 2, + "inputQty": "1007095678978131361792", "outputIndex": 0, - "expectedQty": "302933393339449000366328", - "swapFee": "184000939205956521252", + "expectedQty": "1003959758545903200829", + "swapFee": "602476532189387146", "reserves": [ - "13631063671873867859891741", - "18655795860816077331771298", - "50700021427734931110227149" + "573072923760013680771047550", + "363805321924661832509459626", + "779917275868443033266433810" ], - "mAssetSupply": "82841186258325467635093720", + "mAssetSupply": "1716075188033645223557511801", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "redeemMasset", + "inputQty": "141913659360376721191731", + "expectedQtys": [ + "47376990352961370972623", + "30076453645886517213616", + "64477192557784813359201" + ], + "redemptionFee": "42574097808113016357", + "reserves": [ + "573025546769660719400074927", + "363775245471015945992246010", + "779852798675885248453074609" + ], + "mAssetSupply": "1715933316948382654949336427" + }, + { + "type": "mintMulti", "inputQtys": [ - "247946369799647983042560", - "189529107731455265472512", - "33013816412590057717760" + "44746568427399558002114560", + "1769755906704464259579904", + "5870642616926698263805952" ], - "expectedQty": "474165952836930963636089", - "swapFee": "284670373926514486873", + "expectedQty": "52350191720113079936498192", "reserves": [ - "13383117302074219876849181", - "18466266753084622066298786", - "50667007611322341052509389" + "617772115197060277402189487", + "365545001377720410251825914", + "785723441292811946716880561" ], - "mAssetSupply": "82367020305488536671457631" + "mAssetSupply": "1768283508668495734885834619" }, { "type": "redeemMasset", - "inputQty": "775393056135927220404224", + "inputQty": "1122755407549419679750553", "expectedQtys": [ - "125949233493420583981507", - "173787025140665258663260", - "476829921460996636002832" + "392131068053660366662269", + "232029818578325430354379", + "498738231541361110294762" ], - "redemptionFee": "232617916840778166121", + "redemptionFee": "336826622264825903925", "reserves": [ - "13257168068580799292867674", - "18292479727943956807635526", - "50190177689861344416506557" + "617379984129006617035527218", + "365312971559142084821471535", + "785224703061270585606585799" ], - "mAssetSupply": "81591859867269450229219528" + "mAssetSupply": "1767161090087568580031987991" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "33866884862066344", - "11121281346641884", - "5787400885091878" + "14916279574509868023808", + "78464522551450417496064", + "247577616158633972727808" + ], + "expectedQty": "340675896965427074545677", + "reserves": [ + "617394900408581126903551026", + "365391436081693535238967599", + "785472280677429219579313607" + ], + "mAssetSupply": "1767501765984534007106533668" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "41158343547381", + "expectedQty": "41122975809150", + "reserves": [ + "617394900408622285247098407", + "365391436081693535238967599", + "785472280677429219579313607" + ] + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "4248449108933055722029056", + "outputIndex": 0, + "expectedQty": "4237416065212805165179758", + "swapFee": "2541882588826249832734", + "reserves": [ + "613157484343409480081918649", + "365391436081693535238967599", + "789720729786362275301342663" ], - "expectedQty": "51205344265902241", - "swapFee": "30741651550471", + "mAssetSupply": "1767504307867163956332175552", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "5245033743750229785575424", + "expectedQty": "5213178998509028181447152", + "swapFee": "3147020246250137871345", "reserves": [ - "13257168034713914430801330", - "18292479716822675460993642", - "50190177684073943531414679" + "613157484343409480081918649", + "360178257083184507057520447", + "789720729786362275301342663" ], - "mAssetSupply": "81591859816064105963317287" + "mAssetSupply": "1762262421143659976684471473" }, { "type": "redeemMasset", - "inputQty": "528395408333972025481625", + "inputQty": "1354283626970481146671923", "expectedQtys": [ - "85828723904892067456802", - "118428022262364889024793", - "324938093256718516112938" + "471064930567724575488993", + "276710877706369516401264", + "606711571241875310784647" ], - "redemptionFee": "158518622500191607644", + "redemptionFee": "406285088091144344001", "reserves": [ - "13171339310809022363344528", - "18174051694560310571968849", - "49865239590817225015301741" + "612686419412841755506429656", + "359901546205478137541119183", + "789114018215120399990558016" ], - "mAssetSupply": "81063622926352634129443306" + "mAssetSupply": "1760908543801777586682143551" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11475219472897649147904", - "24737171735051138760704", - "33875672256560920264704" + "67321791556800102400", + "24879622099834937344", + "49460282787698089984" ], - "expectedQty": "70079474846277536539171", - "swapFee": "42072928664965501224", + "expectedQty": "141600434762684918536", "reserves": [ - "13159864091336124714196624", - "18149314522825259433208145", - "49831363918560664095037037" + "612686486734633312306532056", + "359901571085100237376056527", + "789114067675403187688648000" ], - "mAssetSupply": "80993543451506356592904135" + "mAssetSupply": "1760908685402212349367062087" }, { "type": "redeemBassets", "inputQtys": [ - "814443739919501297188864", - "343641313778774937960448", - "731076331249553282957312" + "4767404859433371507359744", + "294871128540155819851776", + "3709004969694518138896384" ], - "expectedQty": "1895564355654208496919268", - "swapFee": "1138021426248274062589", + "expectedQty": "8758202350424791500293094", + "swapFee": "5258076256008479988168", "reserves": [ - "12345420351416623417007760", - "17805673209046484495247697", - "49100287587311110812079725" + "607919081875199940799172312", + "359606699956560081556204751", + "785405062705708669549751616" ], - "mAssetSupply": "79097979095852148095984867" + "mAssetSupply": "1752150483051787557866768993" }, { "type": "mintMulti", "inputQtys": [ - "3719107467174684", - "13368947607791706", - "70147055352707232" + "1206372540845071360065536", + "627905792419116993216512", + "1431382492009743316418560" ], - "expectedQty": "86764595417552460", + "expectedQty": "3264006127342115555085490", "reserves": [ - "12345420355135730884182444", - "17805673222415432103039403", - "49100287657458166164786957" + "609125454416045012159237848", + "360234605748979198549421263", + "786836445197718412866170176" ], - "mAssetSupply": "79097979182616743513537327" + "mAssetSupply": "1755414489179129673421854483" }, { "type": "swap", "inputIndex": 1, - "inputQty": "19158915263301190418432", - "outputIndex": 0, - "expectedQty": "18974487416487870279164", - "swapFee": "11550276157791545703", + "inputQty": "16603123062478960640", + "outputIndex": 2, + "expectedQty": "16733457380120687122", + "swapFee": "10017018945260617", "reserves": [ - "12326445867719243013903280", - "17824832137678733293457835", - "49100287657458166164786957" + "609125454416045012159237848", + "360234622352102261028381903", + "786836428464261032745483054" ], - "mAssetSupply": "79097990732892901305083030", + "mAssetSupply": "1755414489189146692367115100", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "42045553609371254784", - "expectedQty": "42374679201643595956", - "swapFee": "25227332165622752", + "type": "mintMulti", + "inputQtys": [ + "12987678823823757885308928", + "14457479950090630682640384", + "2366994344604907358650368" + ], + "expectedQty": "29872194979462640134732529", "reserves": [ - "12326445867719243013903280", - "17824832137678733293457835", - "49100245282778964521191001" + "622113133239868770044546776", + "374692102302192891711022287", + "789203422808865940104133422" ], - "mAssetSupply": "79097948712566624099450998" + "mAssetSupply": "1785286684168609332501847629" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "72838741930157755334656", - "7797680031838487183360", - "29610887051898234339328" + "17575449367885452935168", + "4899954556841990553600", + "15191636163489844690944" ], - "expectedQty": "111059063415523119016751", - "swapFee": "66675443315303053241", + "expectedQty": "37636668296315949241255", "reserves": [ - "12253607125789085258568624", - "17817034457646894806274475", - "49070634395727066286851673" + "622130708689236655497481944", + "374697002256749733701575887", + "789218614445029429948824366" ], - "mAssetSupply": "78986889649151100980434247" + "mAssetSupply": "1785324320836905648451088884" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "84102327484836277649408", - "outputIndex": 2, - "expectedQty": "85160176055601008560712", - "swapFee": "50699181961892390341", + "inputQty": "6342931395966781095936", + "expectedQty": "6306583632979370128161", + "swapFee": "3805758837580068657", "reserves": [ - "12253607125789085258568624", - "17901136785131731083923883", - "48985474219671465278290961" + "622130708689236655497481944", + "374690695673116754331447726", + "789218614445029429948824366" ], - "mAssetSupply": "78986940348333062872824588", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1785317981711268519250061605" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "15395474850067360218349568", + "1541529645518926154563584", + "6795090820827371664310272" + ], + "expectedQty": "23709736281762937247543704", + "swapFee": "14234382398496860464805", + "reserves": [ + "606735233839169295279132376", + "373149166027597828176884142", + "782423523624202058284514094" + ], + "mAssetSupply": "1761608245429505582002517901" }, { "type": "redeemMasset", - "inputQty": "5438458908180429668352", + "inputQty": "455711406912180537052364", "expectedQtys": [ - "843440020782468829432", - "1232170660205415783626", - "3371767102514981279337" + "156909584695168326016067", + "96501204158285532353679", + "202344850439569219650149" ], - "redemptionFee": "1631537672454128900", + "redemptionFee": "136713422073654161115", "reserves": [ - "12252763685768302789739192", - "17899904614471525668140257", - "48982102452568950297011624" + "606578324254474126953116309", + "373052664823439542644530463", + "782221178773762489064863945" ], - "mAssetSupply": "78981503520962554897285136" + "mAssetSupply": "1761152670736015475119626652" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "5242639429059969361641472", - "expectedQty": "5280198852614108567007955", - "swapFee": "3145583657435981616984", + "inputQty": "57643620843793248", + "expectedQty": "57485304821007994", + "reserves": [ + "606578324254474126953116309", + "373052664823439542644530463", + "782221178831406109908657193" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "186040253549032580841472", + "74854462588823413981184", + "186112616997760134021120" + ], + "expectedQty": "446742050970159435819509", "reserves": [ - "12252763685768302789739192", - "17899904614471525668140257", - "43701903599954841730003669" + "606764364508023159533957781", + "373127519286028366058511647", + "782407291448403870042678313" ], - "mAssetSupply": "73742009675560021517260648" + "mAssetSupply": "1761599412844470939376454155" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "2699665275355437184581632", - "expectedQty": "2658738907313588201592765", - "swapFee": "1619799165213262310748", + "inputQty": "3173590161458577014784", + "expectedQty": "3173899551400612988732", + "swapFee": "1904154096875146208", "reserves": [ - "9594024778454714588146427", - "17899904614471525668140257", - "43701903599954841730003669" + "606761190608471758920969049", + "373127519286028366058511647", + "782407291448403870042678313" ], - "mAssetSupply": "71043964199369797594989764" + "mAssetSupply": "1761596241158463577674585579" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "35784068390812967348731904", + "expectedQty": "35943901935271393197896853", + "reserves": [ + "606761190608471758920969049", + "408911587676841333407243551", + "782407291448403870042678313" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "25160839248896036175872", - "42132182417993667444736", - "23276272809952325664768" + "87645042450502862766080", + "20125940405546071883776", + "116385831032468170342400" ], - "expectedQty": "90956281917164061458591", + "expectedQty": "223916470874291560824683", + "swapFee": "134430540849084387127", "reserves": [ - "9619185617703610624322299", - "17942036796889519335584993", - "43725179872764794055668437" + "606673545566021256058202969", + "408891461736435787335359775", + "782290905617371401872335913" ], - "mAssetSupply": "71134920481286961656448355" + "mAssetSupply": "1797316226622860679311657749" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "60698375865917644800", - "96206521086900977664", - "4539756499438866432" + "243300448845872930750464", + "189610701883649323696128", + "285200685067664971792384" ], - "expectedQty": "162811830846596950950", - "swapFee": "97745745955531489", + "expectedQty": "718066405714460201284944", "reserves": [ - "9619124919327744706677499", - "17941940590368432434607329", - "43725175333008294616802005" + "606916846014867128988953433", + "409081072438319436659055903", + "782576106302439066844128297" ], - "mAssetSupply": "71134757669456115059497405" + "mAssetSupply": "1798034293028575139512942693" }, { "type": "redeemMasset", - "inputQty": "1636615432443092638105", + "inputQty": "3582391786600", "expectedQtys": [ - "221243256639931777717", - "412670944596768205402", - "1005694412845077382611" + "1208854396471", + "814805942819", + "1558731765132" ], - "redemptionFee": "490984629732927791", + "redemptionFee": "1074717535", "reserves": [ - "9618903676071104774899782", - "17941527919423835666401927", - "43724169638595449539419394" + "606916846014865920134556962", + "409081072438318621853113084", + "782576106302437508112363165" ], - "mAssetSupply": "71133121545008301699787091" + "mAssetSupply": "1798034293028571558195873628" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "7815236145704128512", - "expectedQty": "7664036536361643139", - "swapFee": "4689141687422477", + "inputQty": "5942542631455442077745152", + "expectedQty": "5941245595295204540779509", + "swapFee": "3565525578873265246647", "reserves": [ - "9618896012034568413256643", - "17941527919423835666401927", - "43724169638595449539419394" + "600975600419570715593777453", + "409081072438318621853113084", + "782576106302437508112363165" ], - "mAssetSupply": "71133113734461297683081056" + "mAssetSupply": "1792095315922694989383375123" }, { "type": "mintMulti", "inputQtys": [ - "323800427914691342237696", - "568787923876374938386432", - "918512031642107982643200" + "1416575350566580387840", + "3390551146376670478336", + "1600538506359201333248" ], - "expectedQty": "1810699423439364605946441", + "expectedQty": "6416491577504510909333", "reserves": [ - "9942696439949259755494339", - "18510315843300210604788359", - "44642681670237557522062594" + "600977016994921282174165293", + "409084462989464998523591420", + "782577706840943867313696413" ], - "mAssetSupply": "72943813157900662289027497" + "mAssetSupply": "1792101732414272493894284456" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "637903494656524323651584", - "outputIndex": 2, - "expectedQty": "653928602707090548995285", - "swapFee": "389437956647937033352", - "reserves": [ - "10580599934605784079145923", - "18510315843300210604788359", - "43988753067530466973067309" + "type": "redeemMasset", + "inputQty": "151902315624547170333491", + "expectedQtys": [ + "50924795131780521659549", + "34664457841503458267889", + "66313034057191654109865" ], - "mAssetSupply": "72944202595857310226060849", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "23565822044468888469504", - "expectedQty": "23378385291156988622559", + "redemptionFee": "45570694687364151100", "reserves": [ - "10580599934605784079145923", - "18510315843300210604788359", - "44012318889574935861536813" - ] + "600926092199789501652505744", + "409049798531623495065323531", + "782511393806886675659586548" + ], + "mAssetSupply": "1791949875669342634088102065" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "490233338213545541632", - "outputIndex": 1, - "expectedQty": "496529855676509989947", - "swapFee": "298833123786956421", + "inputIndex": 2, + "inputQty": "15702389576997747556352", + "outputIndex": 0, + "expectedQty": "15659847728951801888353", + "swapFee": "9398241490423643650", "reserves": [ - "10581090167943997624687555", - "18509819313444534094798412", - "44012318889574935861536813" + "600910432352060549850617391", + "409049798531623495065323531", + "782527096196463673407142900" ], - "mAssetSupply": "72967581279981591001639829", + "mAssetSupply": "1791949885067584124511745715", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "713491450723821158400", - "outputIndex": 1, - "expectedQty": "722653551173357056951", - "swapFee": "434924408552166930", + "inputQty": "41742672547259674001408", + "outputIndex": 2, + "expectedQty": "41805845718486586785957", + "swapFee": "25036787561431675582", "reserves": [ - "10581803659394721445845955", - "18509096659893360737741461", - "44012318889574935861536813" + "600952175024607809524618799", + "409049798531623495065323531", + "782485290350745186820356943" ], - "mAssetSupply": "72967581714905999553806759", + "mAssetSupply": "1791949910104371685943421297", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "79380831686034519490560", - "expectedQtys": [ - "11508403564606087977857", - "20129853173871831030093", - "47866275343870487349742" + "type": "redeemBassets", + "inputQtys": [ + "6296421815810736105979904", + "371337944848282272399360", + "4358896750617218152136704" ], - "redemptionFee": "23814249505810355847", + "expectedQty": "11015295716192426599769497", + "swapFee": "6613145316905599319453", "reserves": [ - "10570295255830115357868098", - "18488966806719488906711368", - "43964452614231065374187071" + "594655753208797073418638895", + "408678460586775212792924171", + "778126393600127968668220239" ], - "mAssetSupply": "72888224697469470844672046" + "mAssetSupply": "1780934614388179259343651800" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "2019209525010900969324544", - "outputIndex": 2, - "expectedQty": "2036454253375821155903407", - "swapFee": "1213707650148460877310", + "inputIndex": 2, + "inputQty": "2010261172732962969485312", + "outputIndex": 0, + "expectedQty": "2004684257672343081868211", + "swapFee": "1203183693713991619444", "reserves": [ - "10570295255830115357868098", - "20508176331730389876035912", - "41927998360855244218283664" + "592651068951124730336770684", + "408678460586775212792924171", + "780136654772860931637705551" ], - "mAssetSupply": "72889438405119619305549356", + "mAssetSupply": "1780935817571872973335271244", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "57658480212943281586176", - "outputIndex": 2, - "expectedQty": "58909104076814113753065", - "swapFee": "35119489075427237869", + "type": "redeemMasset", + "inputQty": "37641873123927123401113", + "expectedQtys": [ + "12522519663690646355134", + "8635239733696937075426", + "16484027637119901403946" + ], + "redemptionFee": "11292561937178137020", "reserves": [ - "10627953736043058639454274", - "20508176331730389876035912", - "41869089256778430104530599" + "592638546431461039690415550", + "408669825347041515855848745", + "780120170745223811736301605" ], - "mAssetSupply": "72889473524608694732787225", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1780898186991310983390007151" }, { - "type": "redeemBassets", - "inputQtys": [ - "1613357832864539441364992", - "893678419773414761824256", - "1616668132570897768775680" - ], - "expectedQty": "4139909886522632385502778", - "swapFee": "2485437194230117501802", + "type": "redeem", + "inputIndex": 2, + "inputQty": "58046937105822839545528320", + "expectedQty": "58144142832712737139317112", + "swapFee": "34828162263493703727316", "reserves": [ - "9014595903178519198089282", - "19614497911956975114211656", - "40252421124207532335754919" + "592638546431461039690415550", + "408669825347041515855848745", + "721976027912511074596984493" ], - "mAssetSupply": "68749563638086062347284447" + "mAssetSupply": "1722886078047751637548206147" }, { - "type": "redeemMasset", - "inputQty": "318297837058442727836876", - "expectedQtys": [ - "41723400531304032016713", - "90784274901601293234575", - "186305399261198043067515" + "type": "redeemBassets", + "inputQtys": [ + "4487039103602887470612480", + "478782003252370188795904", + "4539659345336572078718976" ], - "redemptionFee": "95489351117532818351", + "expectedQty": "9495557703784829803136368", + "swapFee": "5700755075316087534402", "reserves": [ - "8972872502647215166072569", - "19523713637055373820977081", - "40066115724946334292687404" + "588151507327858152219803070", + "408191043343789145667052841", + "717436368567174502518265517" ], - "mAssetSupply": "68431361290378737152265922" + "mAssetSupply": "1713390520343966807745069779" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1926673780404503200137216", - "expectedQty": "1957330205270166320504486", + "type": "redeem", + "inputIndex": 2, + "inputQty": "12335469308709241767329792", + "expectedQty": "12352769064731808616562882", + "swapFee": "7401281585225545060397", "reserves": [ - "10899546283051718366209785", - "19523713637055373820977081", - "40066115724946334292687404" - ] + "588151507327858152219803070", + "408191043343789145667052841", + "705083599502442693901702635" + ], + "mAssetSupply": "1701062452316842791522800384" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "500969420338851651518464", - "552617860109493214380032", - "356472045933389510868992" + "2570146211143137886208", + "2706085069390953840640", + "766310263306624434176" ], - "expectedQty": "1414614728533531053327241", + "expectedQty": "6048469806436483829556", + "swapFee": "3631260640246037920", "reserves": [ - "11400515703390570017728249", - "20076331497164867035357113", - "40422587770879723803556396" + "588148937181647009081916862", + "408188337258719754713212201", + "705082833192179387277268459" ], - "mAssetSupply": "71803306224182434526097649" + "mAssetSupply": "1701056403847036355038970828" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "330804835473212991078400", - "489892579206585628229632", - "359746927901466414809088" + "63187657815385358336", + "2585079486311375872", + "93311223433024061440" ], - "expectedQty": "1182742084717785608009257", - "swapFee": "710071293606835466085", + "expectedQty": "158876524310411498667", "reserves": [ - "11069710867917357026649849", - "19586438917958281407127481", - "40062840842978257388747308" + "588149000369304824467275198", + "408188339843799241024588073", + "705082926503402820301329899" ], - "mAssetSupply": "70620564139464648918088392" + "mAssetSupply": "1701056562723560665450469495" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "351382881649353627271168", - "expectedQty": "350747048154135518969119", - "swapFee": "210829728989612176362", + "type": "redeemMasset", + "inputQty": "17947453441440379699", + "expectedQtys": [ + "6203562126600772103", + "4305408534206518674", + "7436934749906655654" + ], + "redemptionFee": "5384236032432113", "reserves": [ - "11069710867917357026649849", - "19235691869804145888158362", - "40062840842978257388747308" + "588148994165742697866503095", + "408188335538390706818069399", + "705082919066468070394674245" ], - "mAssetSupply": "70269392087544284902993586" + "mAssetSupply": "1701056544781491460042521909" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "6331510061994938990592", - "expectedQty": "6249981858132357023649", - "swapFee": "3798906037196963394", + "inputIndex": 2, + "inputQty": "61160877560422432", + "expectedQty": "61243804557660809", + "swapFee": "36696526536253", "reserves": [ - "11063460886059224669626200", - "19235691869804145888158362", - "40062840842978257388747308" + "588148994165742697866503095", + "408188335538390706818069399", + "705082919005224265837013436" ], - "mAssetSupply": "70263064376388327160966388" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "69309782969944200", - "expectedQty": "69400302219053242", - "reserves": [ - "11063460886059224669626200", - "19235691939113928858102562", - "40062840842978257388747308" - ] + "mAssetSupply": "1701056544720367279008635730" }, { "type": "mint", "inputIndex": 2, - "inputQty": "26730760608225431650304", - "expectedQty": "26556044595930825144011", + "inputQty": "5321570933810700717391872", + "expectedQty": "5311069974741186971778528", "reserves": [ - "11063460886059224669626200", - "19235691939113928858102562", - "40089571603586482820397612" + "588148994165742697866503095", + "408188335538390706818069399", + "710404489939034966554405308" ] }, { "type": "redeemBassets", "inputQtys": [ - "6426058537456215523328", - "5403884929415504723968", - "33728021441965119766528" + "14192832309082640613376", + "14350065143379612663808", + "3767001487827636584448" ], - "expectedQty": "45424584900725942027473", - "swapFee": "27271113608600725651", + "expectedQty": "32342328306949621097540", + "swapFee": "19417047212497271021", "reserves": [ - "11057034827521768454102872", - "19230288054184513353378594", - "40055843582144517700631084" + "588134801333433615225889719", + "408173985473247327205405591", + "710400722937547138917820860" ], - "mAssetSupply": "70244195905483834263136168" + "mAssetSupply": "1706335272366801516359316718" }, { "type": "redeemBassets", "inputQtys": [ - "7174500596572", - "5007912039490", - "4593974351543" + "731945724613426616991744", + "527139961982770460229632", + "576369420060879939960832" ], - "expectedQty": "16842258031776", - "swapFee": "10111421672", + "expectedQty": "1835666218497759802035264", + "swapFee": "1102060967679263439284", "reserves": [ - "11057034827514593953506300", - "19230288054179505441339104", - "40055843582139923726279541" + "587402855608820188608897975", + "407646845511264556745175959", + "709824353517486258977860028" ], - "mAssetSupply": "70244195905466992005104392" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1505022769876713596780544", - "expectedQty": "1521318996836585020959381", - "reserves": [ - "12562057597391307550286844", - "19230288054179505441339104", - "40055843582139923726279541" - ] + "mAssetSupply": "1704499606148303756557281454" }, { "type": "mintMulti", "inputQtys": [ - "13556605815893866315776", - "27736319496633922355200", - "10539140062133474033664" + "105140880654124632244224", + "66285179028051649888256", + "2514258299564278153216" ], - "expectedQty": "51944976567213183208259", + "expectedQty": "174099821657590431915820", "reserves": [ - "12575614203207201416602620", - "19258024373676139363694304", - "40066382722202057200313205" + "587507996489474313241142199", + "407713130690292608395064215", + "709826867775785823256013244" ], - "mAssetSupply": "71817459878870790209272032" + "mAssetSupply": "1704673705969961346989197274" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2842194881256081063936", - "expectedQty": "2847002969103878369263", + "type": "redeemMasset", + "inputQty": "3566553616556328929040793", + "expectedQtys": [ + "1228827633504496226404769", + "852769944457832834370896", + "1484668932744398831730488" + ], + "redemptionFee": "1069966084966898678712", "reserves": [ - "12575614203207201416602620", - "19260866568557395444758240", - "40066382722202057200313205" - ] + "586279168855969817014737430", + "406860360745834775560693319", + "708342198843041424424282756" + ], + "mAssetSupply": "1701108222319489984958835193" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4820874599760848224256", - "106394499875961799966720", - "207973734557137762254848" + "27431000914351637175205888", + "7992112374135612371894272", + "442148132939967208882176" ], - "expectedQty": "318201378426510040327297", + "expectedQty": "35879539330322452200613058", + "swapFee": "21540647986985662717998", "reserves": [ - "12580435077806962264826876", - "19367261068433357244724960", - "40274356456759194962568053" + "558848167941618179839531542", + "398868248371699163188799047", + "707900050710101457215400580" ], - "mAssetSupply": "72138508260266404127968592" + "mAssetSupply": "1665228682989167532758222135" }, { "type": "redeemMasset", - "inputQty": "221788733438657770291", + "inputQty": "436936033955785002188", "expectedQtys": [ - "38666750528328196640", - "59526482790026007065", - "123785742239523446060" + "146591066024071063458", + "104626846943640035773", + "185688759532497177998" ], - "redemptionFee": "66536620031597331", + "redemptionFee": "131080810186735500", "reserves": [ - "12580396411056433936630236", - "19367201541950567218717895", - "40274232671016955439121993" + "558848021350552155768468084", + "398868143744852219548763274", + "707899865021341924718222582" ], - "mAssetSupply": "72138286538069585501795632" + "mAssetSupply": "1665228246184214387159955447" }, { "type": "redeemMasset", - "inputQty": "644156733976355081394585", + "inputQty": "80135518892544111411", "expectedQtys": [ - "112302583398336977867225", - "172886981879664029925743", - "359519702365332750769636" + "26885288069509187830", + "19188911003773666479", + "34055934830852818039" ], - "redemptionFee": "193247020192906524418", + "redemptionFee": "24040655667763233", "reserves": [ - "12468093827658096958763011", - "19194314560070903188792152", - "39914712968651622688352357" + "558847994465264086259280254", + "398868124555941215775096795", + "707899830965407093865404543" ], - "mAssetSupply": "71494323051113423326925465" + "mAssetSupply": "1665228166072736150283607269" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "256388487560628895744", - "expectedQty": "254891125705540681409", + "type": "mintMulti", + "inputQtys": [ + "389386770219330911076352", + "383637268398993922064384", + "296224276405375748538368" + ], + "expectedQty": "1069749884396801042113822", "reserves": [ - "12468093827658096958763011", - "19194314560070903188792152", - "39914969357139183317248101" - ] + "559237381235483417170356606", + "399251761824340209697161179", + "708196055241812469613942911" + ], + "mAssetSupply": "1666297915957132951325721091" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1313461609768908800", - "expectedQty": "1305790684925341346", + "inputIndex": 1, + "inputQty": "6338170196031518522998784", + "expectedQty": "6358419471617484570881285", "reserves": [ - "12468093827658096958763011", - "19194314560070903188792152", - "39914970670600793086156901" + "559237381235483417170356606", + "405589932020371728220159963", + "708196055241812469613942911" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "764150187948874530816", - "expectedQty": "762416137444821393155", - "swapFee": "458490112769324718", + "type": "mintMulti", + "inputQtys": [ + "948747067887708113207296", + "1014080359233685557346304", + "702673975989528912986112" + ], + "expectedQty": "2666946445229491149939876", "reserves": [ - "12468093827658096958763011", - "19193552143933458367398997", - "39914970670600793086156901" + "560186128303371125283563902", + "406604012379605413777506267", + "708898729217801998526929023" ], - "mAssetSupply": "71493815556331977687742122" + "mAssetSupply": "1675323281873979927046542252" }, { - "type": "redeemMasset", - "inputQty": "35333494316389400576", - "expectedQtys": [ - "6160101493702454659", - "9482943492855361525", - "19720758750116152978" + "type": "redeemBassets", + "inputQtys": [ + "502028770491149385728", + "563575629314817458176", + "299966421644215517184" ], - "redemptionFee": "10600048294916820", + "expectedQty": "1366568925013989538024", + "swapFee": "820433615177500222", "reserves": [ - "12468087667556603256308352", - "19193542660989965512037472", - "39914950949842042970003923" + "560185626274600634134178174", + "406603448803976098960048091", + "708898429251380354311411839" ], - "mAssetSupply": "71493780233437709593258366" + "mAssetSupply": "1675321915305054913057004228" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "6906871698432572416", - "outputIndex": 1, - "expectedQty": "6850949638703781411", - "swapFee": "4119919783620420", + "type": "redeemMasset", + "inputQty": "51729371813673412067328", + "expectedQtys": [ + "17291815302132838448601", + "12551039170151889549926", + "21882283535383078979149" + ], + "redemptionFee": "15518811544102023620", "reserves": [ - "12468087667556603256308352", - "19193535810040326808256061", - "39914957856713741402576339" + "560168334459298501295729573", + "406590897764805947070498165", + "708876546967844971232432690" ], - "mAssetSupply": "71493780237557629376878786", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1675270201452052783746960520" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "493661510717465231360", - "expectedQty": "488731771518591597345", - "swapFee": "296196906430479138", + "type": "redeemMasset", + "inputQty": "70650958303100128460", + "expectedQtys": [ + "23616821141697556663", + "17141962370333452837", + "29886392342122264467" + ], + "redemptionFee": "21195287490930038", "reserves": [ - "12467598935785084664711007", - "19193535810040326808256061", - "39914957856713741402576339" + "560168310842477359598172910", + "406590880622843576737045328", + "708876517081452629110168223" ], - "mAssetSupply": "71493286872243818342126564" + "mAssetSupply": "1675270130822289768137762098" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1500839836550124066045952", - "expectedQty": "1508501295497951969402436", - "swapFee": "900503901930074439627", + "type": "redeemMasset", + "inputQty": "33196208552032462438", + "expectedQtys": [ + "11096649483400431880", + "8054358659869904150", + "14042483455081784900" + ], + "redemptionFee": "9958862565609738", "reserves": [ - "12467598935785084664711007", - "19193535810040326808256061", - "38406456561215789433173903" + "560168299745827876197741030", + "406590872568484916867141178", + "708876503038969174028383323" ], - "mAssetSupply": "69993347539595624350520239" + "mAssetSupply": "1675270097636040078670909398" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "42319864877678810103808", - "outputIndex": 0, - "expectedQty": "41689604955144767434032", - "swapFee": "25251854819191868748", + "type": "redeemMasset", + "inputQty": "2171671633376670279270", + "expectedQtys": [ + "725934676270406952687", + "526910240344609431879", + "918648975643190089316" + ], + "redemptionFee": "651501490013001083", "reserves": [ - "12425909330829939897276975", - "19193535810040326808256061", - "38448776426093468243277711" + "560167573811151605790788343", + "406590345658244572257709299", + "708875584389993530838294007" ], - "mAssetSupply": "69993372791450443542388987", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1675267926615908192013631211" }, { - "type": "redeemBassets", - "inputQtys": [ - "16468590930513821696", - "68790756365821894656", - "69590907995803492352" + "type": "redeemMasset", + "inputQty": "2783365790399096002969", + "expectedQtys": [ + "930408498661379300790", + "675324904118124866725", + "1177404582208738719840" ], - "expectedQty": "154708610515876080925", - "swapFee": "92880894846433508", + "redemptionFee": "835009737119728800", "reserves": [ - "12425892862239009383455279", - "19193467019283960986361405", - "38448706835185472439785359" + "560166643402652944411487553", + "406589670333340454132842574", + "708874406985411322099574167" ], - "mAssetSupply": "69993218082839927666308062" + "mAssetSupply": "1675265144085127530037357042" }, { "type": "mint", "inputIndex": 2, - "inputQty": "2062197885228020924416", - "expectedQty": "2050777973963977939260", + "inputQty": "1191794646615051472994304", + "expectedQty": "1189278834542777297080831", "reserves": [ - "12425892862239009383455279", - "19193467019283960986361405", - "38450769033070700460709775" + "560166643402652944411487553", + "406589670333340454132842574", + "710066201632026373572568471" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "37700723636175770746880", - "406826622083225717047296", - "969918132549245340745728" + "type": "redeemMasset", + "inputQty": "526086453221352328396", + "expectedQtys": [ + "175732587649319047643", + "127553212460388883442", + "222758303238389794296" ], - "expectedQty": "1410040307975407194449151", - "swapFee": "846532104047672920421", + "redemptionFee": "157825935966405698", "reserves": [ - "12388192138602833612708399", - "18786640397200735269314109", - "37480850900521455119964047" + "560166467670065295092439910", + "406589542780127993743959132", + "710065978873723135182774175" ], - "mAssetSupply": "68585228552838484449798171" + "mAssetSupply": "1676453896991043021948515175" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "8942233879776252133376", - "expectedQty": "8924077193562050516037", - "swapFee": "5365340327865751280", + "inputQty": "164140664707764472250368", + "expectedQty": "164652203583497585587417", "reserves": [ - "12388192138602833612708399", - "18777716320007173218798072", - "37480850900521455119964047" - ], - "mAssetSupply": "68576291684299036063416075" + "560166467670065295092439910", + "406753683444835758216209500", + "710065978873723135182774175" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "625834546336549830656", - "expectedQty": "624562283831033964781", - "swapFee": "375500727801929898", + "inputIndex": 2, + "inputQty": "6651743138643297834106880", + "expectedQty": "6661668925072544226208114", + "swapFee": "3991045883185978700464", "reserves": [ - "12388192138602833612708399", - "18777091757723342184833291", - "37480850900521455119964047" + "560166467670065295092439910", + "406753683444835758216209500", + "703404309948650590956566061" ], - "mAssetSupply": "68575666225253427315515317" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "65428911400881627136", - "expectedQty": "65986050467432625711", - "reserves": [ - "12388257567514234494335535", - "18777091757723342184833291", - "37480850900521455119964047" - ] + "mAssetSupply": "1669970797101866407678696176" }, { "type": "redeemBassets", "inputQtys": [ - "8968876551988137951232", - "15362418818554391429120", - "13994784103602057117696" + "84672347500727553228800", + "181765380893012458995712", + "51301328918725577932800" ], - "expectedQty": "38348767884099356926420", - "swapFee": "23023074575204736998", + "expectedQty": "318168093063913506083393", + "swapFee": "191015465117418554782", "reserves": [ - "12379288690962246356384303", - "18761729338904787793404171", - "37466856116417853062846351" + "560081795322564567539211110", + "406571918063942745757213788", + "703353008619731865378633261" ], - "mAssetSupply": "68537383443419795391214608" + "mAssetSupply": "1669652629008802494172612783" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "26696202969541181964288", - "expectedQty": "26454242926617359494248", - "swapFee": "16017721781724709178", + "type": "mintMulti", + "inputQtys": [ + "457341892065007761358848", + "642646594270173975281664", + "707796564308285032759296" + ], + "expectedQty": "1808172662855574387559572", "reserves": [ - "12352834448035628996890055", - "18761729338904787793404171", - "37466856116417853062846351" + "560539137214629575300569958", + "407214564658212919732495452", + "704060805184040150411392557" ], - "mAssetSupply": "68510703258172035933959498" + "mAssetSupply": "1671460801671658068560172355" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "123106937776145942183936", - "outputIndex": 0, - "expectedQty": "122143846672332201629926", - "swapFee": "73967633029403916933", + "type": "mintMulti", + "inputQtys": [ + "369577902903274900553728", + "671225284041030217236480", + "870926774518428865658880" + ], + "expectedQty": "1911889393989031097127548", "reserves": [ - "12230690601363296795260129", - "18884836276680933735588107", - "37466856116417853062846351" + "560908715117532850201123686", + "407885789942253949949731932", + "704931731958558579277051437" ], - "mAssetSupply": "68510777225805065337876431", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1673372691065647099657299903" }, { "type": "mintMulti", "inputQtys": [ - "55453990413011927040", - "16814831298995148800", - "77449102831607578624" + "229150430962842107904", + "4503613093001303162880", + "1105636707743863930880" ], - "expectedQty": "149805385836243263520", + "expectedQty": "5849822867316877633549", "reserves": [ - "12230746055353709807187169", - "18884853091512232730736907", - "37466933565520684670424975" + "560908944267963813043231590", + "407890293555346951252894812", + "704932837595266323140982317" ], - "mAssetSupply": "68510927031190901581139951" + "mAssetSupply": "1673378540888514416534933452" }, { - "type": "redeemMasset", - "inputQty": "50264248383896092672", - "expectedQtys": [ - "8970610288042968664", - "13851048551265211075", - "27480029278930386904" + "type": "redeem", + "inputIndex": 2, + "inputQty": "3169330782067951616", + "expectedQty": "3173980371152662839", + "swapFee": "1901598469240770", + "reserves": [ + "560908944267963813043231590", + "407890293555346951252894812", + "704932834421285951988319478" + ], + "mAssetSupply": "1673378537721085232936222606" + }, + { + "type": "mintMulti", + "inputQtys": [ + "245887046854522662027264", + "5967819923545635422208", + "74546539348075223187456" ], - "redemptionFee": "15079274515168827", + "expectedQty": "326201915920521789058769", "reserves": [ - "12230737084743421764218505", - "18884839240463681465525832", - "37466906085491405740038071" + "561154831314818335705258854", + "407896261375270496888317020", + "705007380960634027211506934" ], - "mAssetSupply": "68510876782021792200216106" + "mAssetSupply": "1673704739637005754725281375" }, { "type": "redeemBassets", "inputQtys": [ - "92923433670794052370432", - "266548594811933118431232", - "306288887495873376813056" + "265863960727570746441728", + "778538803945334967894016", + "244255508874679300390912" ], - "expectedQty": "665267081332218528737523", - "swapFee": "399399888732570659638", + "expectedQty": "1290470236852812514468104", + "swapFee": "774746990305871031299", "reserves": [ - "12137813651072627711848073", - "18618290645651748347094600", - "37160617197995532363225015" + "560888967354090764958817126", + "407117722571325161920423004", + "704763125451759347911116022" ], - "mAssetSupply": "67845609700689573671478583" + "mAssetSupply": "1672414269400152942210813271" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "747191744474723785900032", - "expectedQty": "743040523540745251646629", + "inputIndex": 0, + "inputQty": "53443428374234832896", + "expectedQty": "53429275248738882154", "reserves": [ - "12137813651072627711848073", - "18618290645651748347094600", - "37907808942470256149125047" + "560889020797519139193650022", + "407117722571325161920423004", + "704763125451759347911116022" ] }, + { + "type": "mintMulti", + "inputQtys": [ + "259366513290621870931968", + "226338181599636999897088", + "222874463760367770140672" + ], + "expectedQty": "708744754944130696031941", + "reserves": [ + "561148387310809761064581990", + "407344060752924798920320092", + "704985999915519715681256694" + ], + "mAssetSupply": "1673123067584372321645727366" + }, { "type": "mint", - "inputIndex": 2, - "inputQty": "884577714206795251056640", - "expectedQty": "879501332086986372482948", + "inputIndex": 0, + "inputQty": "32229285649468076032", + "expectedQty": "32220745677821186457", "reserves": [ - "12137813651072627711848073", - "18618290645651748347094600", - "38792386656677051400181687" + "561148419540095410532658022", + "407344060752924798920320092", + "704985999915519715681256694" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "4112106502435776757760", + "1095603833706399137792", + "5547276020925137420288" + ], + "expectedQty": "10745792343452660914731", + "swapFee": "6451346213799876474", + "reserves": [ + "561144307433592974755900262", + "407342965149091092521182300", + "704980452639498790543836406" + ], + "mAssetSupply": "1673112354012774546805999092" + }, { "type": "swap", "inputIndex": 0, - "inputQty": "18113665046060076105728", + "inputQty": "1266889494066396628254720", "outputIndex": 1, - "expectedQty": "18242160720425333195109", - "swapFee": "10970571239035838437", + "expectedQty": "1261880833403636411849930", + "swapFee": "759927240905334623649", "reserves": [ - "12155927316118687787953801", - "18600048484931323013899491", - "38792386656677051400181687" + "562411196927659371384154982", + "406081084315687456109332370", + "704980452639498790543836406" ], - "mAssetSupply": "69468162526888544331446597", + "mAssetSupply": "1673113113940015452140622741", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "33583386122469567889408", - "expectedQty": "33898046952879122665807", - "reserves": [ - "12189510702241157355843209", - "18600048484931323013899491", - "38792386656677051400181687" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "792748520473633384038400", - "expectedQty": "793943055821434715814478", + "type": "redeemBassets", + "inputQtys": [ + "312210930500721042259968", + "404043681642477072154624", + "98096575026496716931072" + ], + "expectedQty": "815315394207739882187343", + "swapFee": "489482926280412176618", "reserves": [ - "12189510702241157355843209", - "19392797005404956397937891", - "38792386656677051400181687" - ] + "562098985997158650341895014", + "405677040634044979037177746", + "704882356064472293826905334" + ], + "mAssetSupply": "1672297798545807712258435398" }, { "type": "redeemMasset", - "inputQty": "1575251964205578527440896", + "inputQty": "560051696822683959296", "expectedQtys": [ - "273070860647152332368214", - "434439732486374707633354", - "869031634628966200480945" + "188190195440319599670", + "135820279816262314475", + "235993929280770009528" ], - "redemptionFee": "472575589261673558232", + "redemptionFee": "168015509046805187", "reserves": [ - "11916439841594005023474995", - "18958357272918581690304537", - "37923355022048085199700742" + "562098797806963210022295344", + "405676904813765162774863271", + "704882120070543013056895806" ], - "mAssetSupply": "68721224241046541316044218" + "mAssetSupply": "1672297238662126398621281289" }, { - "type": "redeemMasset", - "inputQty": "617172733683092160512", - "expectedQtys": [ - "106987258790558432015", - "170210457381899524401", - "340480533773865347810" + "type": "redeemBassets", + "inputQtys": [ + "122299511129199876243456", + "211301960001890610577408", + "8073706309568553811968" ], - "redemptionFee": "185151820104927648", + "expectedQty": "342281861075500671424528", + "swapFee": "205492412092555936416", "reserves": [ - "11916332854335214465042980", - "18958187062461199790780136", - "37923014541514311334352932" + "561976498295834010146051888", + "405465602853763272164285863", + "704874046364233444503083838" ], - "mAssetSupply": "68720607253464678328811354" + "mAssetSupply": "1671954956801050897949856761" }, { "type": "redeemBassets", "inputQtys": [ - "453646595690920345600", - "1547287434939941257216", - "1027770055350469525504" + "2837020506551492280320", + "36199271847616512524288", + "10533148834596462264320" ], - "expectedQty": "3029209169059292708933", - "swapFee": "1818616671438438688", + "expectedQty": "49659662400618286664825", + "swapFee": "29813685651762029216", "reserves": [ - "11915879207739523544697380", - "18956639775026259849522920", - "37921986771458960864827428" + "561973661275327458653771568", + "405429403581915655651761575", + "704863513215398848040819518" ], - "mAssetSupply": "68717578044295619036102421" + "mAssetSupply": "1671905297138650279663191936" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "397585853587048091353088", - "expectedQty": "393449241341510044626276", - "swapFee": "238551512152228854811", + "inputIndex": 1, + "inputQty": "401419320707124062846976", + "expectedQty": "399928968864352329364773", + "swapFee": "240851592424274437708", "reserves": [ - "11522429966398013500071104", - "18956639775026259849522920", - "37921986771458960864827428" + "561973661275327458653771568", + "405029474613051303322396802", + "704863513215398848040819518" ], - "mAssetSupply": "68320230742220723173604144" + "mAssetSupply": "1671504118669535579874782668" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "244832529531766145024", - "expectedQty": "247350599064928370204", + "inputIndex": 1, + "inputQty": "17325837469570558", + "expectedQty": "17380048684621422", "reserves": [ - "11522674798927545266216128", - "18956639775026259849522920", - "37921986771458960864827428" + "561973661275327458653771568", + "405029474630377140791967360", + "704863513215398848040819518" ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "2245176319040428640829440", + "inputIndex": 0, + "inputQty": "267336840149227507023872", "outputIndex": 1, - "expectedQty": "2224970808544941030595435", - "swapFee": "1338871291834480073506", + "expectedQty": "266263845368571376425429", + "swapFee": "160355196826306558407", "reserves": [ - "11522674798927545266216128", - "16731668966481318818927485", - "40167163090499389505656868" + "562240998115476686160795440", + "404763210785008569415541931", + "704863513215398848040819518" ], - "mAssetSupply": "68321816964111622582047854", + "mAssetSupply": "1671504279042112454865962497", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "165833112859675279228928", - "expectedQty": "164691074512902446892153", + "inputIndex": 0, + "inputQty": "4116254170156154368", + "expectedQty": "4115036636165524850", "reserves": [ - "11522674798927545266216128", - "16731668966481318818927485", - "40332996203359064784885796" + "562241002231730856316949808", + "404763210785008569415541931", + "704863513215398848040819518" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "688098888900139810816", - "5280336526467960668160", - "3119966504908546375680" - ], - "expectedQty": "9090870815792689225611", - "swapFee": "5457797167776279302", - "reserves": [ - "11521986700038645126405312", - "16726388629954850858259325", - "40329876236854156238510116" + "1183514855634654447271936", + "1120857744274709956001792", + "627552594038257050714112" ], - "mAssetSupply": "68477417167808732339714396" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "572653331396829184000", - "expectedQty": "576290965244066089096", - "swapFee": "343591998838097510", + "expectedQty": "2933779984242385016412168", "reserves": [ - "11521986700038645126405312", - "16726388629954850858259325", - "40329299945888912172421020" + "563424517087365510764221744", + "405884068529283279371543723", + "705491065809437105091533630" ], - "mAssetSupply": "68476844858069334348627906" + "mAssetSupply": "1674438063141391476047899515" }, { - "type": "redeemBassets", - "inputQtys": [ - "60437025334194659328", - "5757996554660899840", - "43187905269983576064" + "type": "redeemMasset", + "inputQty": "12729937693057593", + "expectedQtys": [ + "4282157368133469", + "3084813319174667", + "5361896179501487" ], - "expectedQty": "109760279591466765693", - "swapFee": "65895705177986851", + "redemptionFee": "3818981307917", "reserves": [ - "11521926263013310931745984", - "16726382871958296197359485", - "40329256757983642188844956" + "563424517083083353396088275", + "405884068526198466052369056", + "705491065804075208912032143" ], - "mAssetSupply": "68476735097789742881862213" + "mAssetSupply": "1674438063128665357336149839" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "159070048631198930960384", - "124326114553587004604416", - "81133662076020084178944" + "829684775912588204572672", + "2415233190926229885157376", + "2000185334107328745570304" ], - "expectedQty": "366109994779984178211469", - "swapFee": "219797875593346514835", + "expectedQty": "5248228826069158007624230", "reserves": [ - "11362856214382112000785600", - "16602056757404709192755069", - "40248123095907622104666012" + "564254201858995941600660947", + "408299301717124695937526432", + "707491251138182537657602447" ], - "mAssetSupply": "68110625103009758703650744" + "mAssetSupply": "1679686291954734515343774069" }, { - "type": "mintMulti", - "inputQtys": [ - "784461621891037428449280", - "205420210760534135406592", - "1348824010272828198748160" - ], - "expectedQty": "2338414868379954521053632", + "type": "swap", + "inputIndex": 2, + "inputQty": "16210221269649938792316928", + "outputIndex": 1, + "expectedQty": "16111188480214842164137998", + "swapFee": "9705442873889445946587", "reserves": [ - "12147317836273149429234880", - "16807476968165243328161661", - "41596947106180450303414172" + "564254201858995941600660947", + "392188113236909853773388434", + "723701472407832476449919375" ], - "mAssetSupply": "70449039971389713224704376" + "mAssetSupply": "1679695997397608404789720656", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "113843612791802147582771", + "inputQty": "12318138338199354317209", "expectedQtys": [ - "19623825681778092227594", - "27152248967165188066737", - "67199298635975310924752" + "4136746267645982484575", + "2875269175316361044542", + "5305710360702160384272" ], - "redemptionFee": "34153083837540644274", + "redemptionFee": "3695441501459806295", "reserves": [ - "12127694010591371337007286", - "16780324719198078140094924", - "41529747807544474992489420" + "564250065112728295618176372", + "392185237967734537412343892", + "723696166697471774289535103" ], - "mAssetSupply": "70335230511681748617765879" + "mAssetSupply": "1679683682954711706895209742" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "363764604322788138811392", - "313626097450244787666944", - "234451871468740033904640" + "100900775254006597419008", + "2352062106083708335292416", + "3104468620960725538439168" ], - "expectedQty": "914979653829887916211474", + "expectedQty": "5558745984227395575155822", + "swapFee": "3337249940500737787766", "reserves": [ - "12491458614914159475818678", - "17093950816648322927761868", - "41764199679013215026394060" + "564149164337474289020757364", + "389833175861650829077051476", + "720591698076511048751095935" ], - "mAssetSupply": "71250210165511636533977353" + "mAssetSupply": "1674124936970484311320053920" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "12199193250386791104512", - "22521395140169390096384", - "11566138757107027017728" + "257772204138722404335616", + "19758942813413594628096", + "42369298615496840577024" ], - "expectedQty": "46405317156086891331192", + "expectedQty": "319781096304411819564830", + "swapFee": "191983848091501992934", "reserves": [ - "12503657808164546266923190", - "17116472211788492317858252", - "41775765817770322053411788" + "563891392133335566616421748", + "389813416918837415482423380", + "720549328777895551910518911" ], - "mAssetSupply": "71296615482667723425308545" + "mAssetSupply": "1673805155874179899500489090" }, { - "type": "redeemBassets", - "inputQtys": [ - "10921853545894528417792", - "12920702012097248100352", - "17886338856297011609600" - ], - "expectedQty": "41759784140835568392689", - "swapFee": "25070913032320733475", + "type": "mint", + "inputIndex": 1, + "inputQty": "134344510453396881408", + "expectedQty": "134833344414423218670", "reserves": [ - "12492735954618651738505398", - "17103551509776395069757900", - "41757879478914025041802188" - ], - "mAssetSupply": "71254855698526887856915856" + "563891392133335566616421748", + "389813551263347868879304788", + "720549328777895551910518911" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "240895635295312674816", - "759489062804026818560", - "508579784491090116608" + "206481106542140638363648", + "692664297364860723789824", + "500904844141246239735808" ], - "expectedQty": "1510506929276618920876", - "swapFee": "906848266525886884", + "expectedQty": "1401336403010629569870313", "reserves": [ - "12492495058983356425830582", - "17102792020713591042939340", - "41757370899129533951685580" + "564097873239877707254785396", + "390506215560712729603094612", + "721050233622036798150254719" ], - "mAssetSupply": "71253345191597611237994980" + "mAssetSupply": "1675206627110534943493578073" }, { - "type": "mintMulti", - "inputQtys": [ - "1000432645485772983500800", - "1029330000214898688131072", - "181571163566271782453248" - ], - "expectedQty": "2222505993302622806784546", + "type": "redeem", + "inputIndex": 2, + "inputQty": "15959888302278203932672", + "expectedQty": "15987180605615492609192", + "swapFee": "9575932981366922359", "reserves": [ - "13492927704469129409331382", - "18132122020928489731070412", - "41938942062695805734138828" + "564097873239877707254785396", + "390506215560712729603094612", + "721034246441431182657645527" ], - "mAssetSupply": "73475851184900234044779526" + "mAssetSupply": "1675190676798165646656567760" }, { "type": "redeemMasset", - "inputQty": "41646870407103948573900", + "inputQty": "29123435649657735217152", "expectedQtys": [ - "7645636232825834633000", - "10274390565015217317626", - "23764293563562546583961" + "9803982196443254132584", + "6786971138481169518685", + "12531525556969500329944" ], - "redemptionFee": "12494061122131184572", + "redemptionFee": "8737030694897320565", "reserves": [ - "13485282068236303574698382", - "18121847630363474513752786", - "41915177769132243187554867" + "564088069257681264000652812", + "390499428589574248433575927", + "721021714915874213157315583" ], - "mAssetSupply": "73434216808554252227390198" + "mAssetSupply": "1675161562099546683818671173" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1223544117592819008274432", - "expectedQty": "1218696742861330559150566", - "swapFee": "734126470555691404964", - "reserves": [ - "13485282068236303574698382", - "16903150887502143954602220", - "41915177769132243187554867" + "type": "redeemMasset", + "inputQty": "2145935127325367969880473", + "expectedQtys": [ + "722397935329698873002630", + "500092089045179325517443", + "923374605083466038950685" ], - "mAssetSupply": "72211406817431988910520730" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "34475660425919193088", - "expectedQty": "34256056009901392645", - "reserves": [ - "13485282068236303574698382", - "16903150887502143954602220", - "41915212244792669106747955" - ] - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1905133139682885785092096", - "expectedQty": "1915779429066560849335408", - "swapFee": "1143079883809731471055", + "redemptionFee": "643780538197610390964", "reserves": [ - "13485282068236303574698382", - "16903150887502143954602220", - "39999432815726108257412547" + "563365671322351565127650182", + "389999336500529069108058484", + "720098340310790747118364898" ], - "mAssetSupply": "70307451013688922758292334" + "mAssetSupply": "1673016270752759513459181664" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "161343641697572978688", - "expectedQty": "162210162973195279456", - "swapFee": "96806185018543787", + "type": "mintMulti", + "inputQtys": [ + "2595183919616862581686272", + "9770946494733776693755904", + "7580563571903900812312576" + ], + "expectedQty": "19963108226778489243868012", "reserves": [ - "13485282068236303574698382", - "16903150887502143954602220", - "39999270605563135062133091" + "565960855241968427709336454", + "399770282995262845801814388", + "727678903882694647930677474" ], - "mAssetSupply": "70307289766853410203857433" + "mAssetSupply": "1692979378979538002703049676" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "181364340271733270380544", - "expectedQty": "180283586652487009636551", + "inputIndex": 0, + "inputQty": "1621843130934701951287296", + "expectedQty": "1621378276419433176216838", "reserves": [ - "13485282068236303574698382", - "16903150887502143954602220", - "40180634945834868332513635" + "567582698372903129660623750", + "399770282995262845801814388", + "727678903882694647930677474" ] }, { "type": "mintMulti", "inputQtys": [ - "22881126041899094769664", - "9316036642840357371904", - "31769724011433397583872" - ], - "expectedQty": "63980286940518045545652", - "reserves": [ - "13508163194278202669468046", - "16912466924144984311974124", - "40212404669846301730097507" + "4745459221064667120009216", + "1507792042606257487478784", + "70176721817586550964224" ], - "mAssetSupply": "70551553640446415259039636" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1691688437013807003336704", - "expectedQty": "1683790785159575769583431", - "swapFee": "1015013062208284202002", + "expectedQty": "6327009468051909688277928", "reserves": [ - "13508163194278202669468046", - "15228676138985408542390693", - "40212404669846301730097507" + "572328157593967796780632966", + "401278075037869103289293172", + "727749080604512234481641698" ], - "mAssetSupply": "68860880216494816539904934" + "mAssetSupply": "1700927766724009345567544442" }, { - "type": "redeemMasset", - "inputQty": "13702773643652182206054", - "expectedQtys": [ - "2687211842488254295162", - "3029477677870663535140", - "7999551714737409692737" + "type": "mintMulti", + "inputQtys": [ + "137753145847637679800320", + "27878469327903258574848", + "55743816933625615613952" ], - "redemptionFee": "4110832093095654661", + "expectedQty": "221301424937744553009750", "reserves": [ - "13505475982435714415172884", - "15225646661307537878855553", - "40204405118131564320404770" + "572465910739815434460433286", + "401305953507197006547868020", + "727804824421445860097255650" ], - "mAssetSupply": "68847181553683257453353541" + "mAssetSupply": "1701149068148947090120554192" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "26011593509789505683456", - "expectedQty": "25870662207696478071558", - "swapFee": "15606956105873703410", + "inputQty": "5914114633858371551232", + "expectedQty": "5934632886300104030057", "reserves": [ - "13505475982435714415172884", - "15199775999099841400783995", - "40204405118131564320404770" - ], - "mAssetSupply": "68821185567129573821373495" + "572465910739815434460433286", + "401311867621830864919419252", + "727804824421445860097255650" + ] }, { - "type": "redeemMasset", - "inputQty": "120794470746679296", - "expectedQtys": [ - "23697606979502791", - "26670538548333755", - "70545324916594615" + "type": "mintMulti", + "inputQtys": [ + "7612057889890621440", + "24154343444900741120", + "15623965231629514752" ], - "redemptionFee": "36238341224003", + "expectedQty": "47436660606843949937", "reserves": [ - "13505475958738107435670093", - "15199775972429302852450240", - "40204405047586239403810155" + "572465918351873324351054726", + "401311891776174309820160372", + "727804840045411091726770402" ], - "mAssetSupply": "68821185446371341415918202" + "mAssetSupply": "1701155050218493997068534186" }, { - "type": "mintMulti", - "inputQtys": [ - "39518886153324929024", - "150979698180553539584", - "238549579441401298944" + "type": "redeemMasset", + "inputQty": "2011987726127956649574", + "expectedQtys": [ + "676862971944998453239", + "474496648685255380019", + "860530087882530662442" ], - "expectedQty": "428528730163551789507", + "redemptionFee": "603596317838386994", "reserves": [ - "13505515477624260760599117", - "15199926952127483405989824", - "40204643597165680805109099" + "572465241488901379352601487", + "401311417279525624564780353", + "727803979515323209196107960" ], - "mAssetSupply": "68821613975101504967707709" + "mAssetSupply": "1701153038834364186950271606" }, { - "type": "mintMulti", - "inputQtys": [ - "8867876322563584950272", - "9136436131874855714816", - "20234679212408452415488" - ], - "expectedQty": "38216452967367443328305", + "type": "mint", + "inputIndex": 2, + "inputQty": "255400197783497965568", + "expectedQty": "254828705338346969344", "reserves": [ - "13514383353946824345549389", - "15209063388259358261704640", - "40224878276378089257524587" - ], - "mAssetSupply": "68859830428068872411036014" + "572465241488901379352601487", + "401311417279525624564780353", + "727804234915520992694073528" + ] }, { "type": "redeemMasset", - "inputQty": "685449437840368100966", + "inputQty": "72705093707925804390809", "expectedQtys": [ - "134485481407828252622", - "151349725545182534189", - "400289230954080402720" + "24459084810444993672333", + "17146385979890272521615", + "31096080979346032542108" ], - "redemptionFee": "205634831352110430", + "redemptionFee": "21811528112377741317", "reserves": [ - "13514248868465416517296767", - "15208912038533813079170451", - "40224477987147135177121867" + "572440782404090934358929154", + "401294270893545734292258738", + "727773138834541646661531420" ], - "mAssetSupply": "68859145184265863395045478" + "mAssetSupply": "1701080610380889711870591458" }, { "type": "redeemBassets", "inputQtys": [ - "25703842465181604", - "22406696534868668", - "18386694101160740" + "1694033963365749504", + "4368086269873602560", + "4434295993769159168" ], - "expectedQty": "66671085211325679", - "swapFee": "40026667127071", + "expectedQty": "10501081964904721183", + "swapFee": "6304431838045660", "reserves": [ - "13514248842761574052115163", - "15208912016127116544301783", - "40224477968760441075961127" + "572440780710056970993179650", + "401294266525459464418656178", + "727773134400245652892372252" ], - "mAssetSupply": "68859145117594778183719799" + "mAssetSupply": "1701080599879807746965870275" }, { - "type": "mintMulti", - "inputQtys": [ - "24789125544491966464", - "76917144783389294592", - "94560305624019386368" - ], - "expectedQty": "196208641411765036467", + "type": "redeem", + "inputIndex": 0, + "inputQty": "11849784346850148", + "expectedQty": "11846633420988994", + "swapFee": "7109870608110", "reserves": [ - "13514273631887118544081627", - "15208988933271899933596375", - "40224572529066065095347495" + "572440780698210337572190656", + "401294266525459464418656178", + "727773134400245652892372252" ], - "mAssetSupply": "68859341326236189948756266" + "mAssetSupply": "1701080599867965072489628237" }, { - "type": "redeemBassets", - "inputQtys": [ - "67644697153711554691072", - "180157312948676893605888", - "41915494835084691767296" - ], - "expectedQty": "290818541839474990382890", - "swapFee": "174595882633264953201", + "type": "redeem", + "inputIndex": 2, + "inputQty": "5391778432130761097216", + "expectedQty": "5400627896275652485586", + "swapFee": "3235067059278456658", "reserves": [ - "13446628934733406989390555", - "15028831620323223039990487", - "40182657034230980403580199" + "572440780698210337572190656", + "401294266525459464418656178", + "727767733772349377239886666" ], - "mAssetSupply": "68568522784396714958373376" + "mAssetSupply": "1701075211324600001006987679" }, { - "type": "redeemMasset", - "inputQty": "1111040817821333743206", - "expectedQtys": [ - "217815275523221162659", - "243444592400191921852", - "650898939477550701833" + "type": "redeemBassets", + "inputQtys": [ + "161072476722366458626048", + "182706521236520434663424", + "41875441041760388644864" ], - "redemptionFee": "333312245346400122", + "expectedQty": "386141010044572866607847", + "swapFee": "231823700246891855077", "reserves": [ - "13446411119457883768227896", - "15028588175730822848068635", - "40182006135291502852878366" + "572279708221487971113564608", + "401111560004222943983992754", + "727725858331307616851241802" ], - "mAssetSupply": "68567412076891138971030292" + "mAssetSupply": "1700689070314555428140379832" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1228289277625786764886016", - "expectedQty": "1220120311615004725450379", - "reserves": [ - "13446411119457883768227896", - "15028588175730822848068635", - "41410295412917289617764382" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "57782656945247706152960", - "expectedQty": "58092474062335246992209", + "inputQty": "28258466525093988508106752", + "expectedQty": "28192237201856461119764884", "reserves": [ - "13446411119457883768227896", - "15086370832676070554221595", - "41410295412917289617764382" + "572279708221487971113564608", + "401111560004222943983992754", + "755984324856401605359348554" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2755547515517364862976", - "3148449630939751383040", - "2955367180850717786112" + "20824476816620314951680", + "2834511662457896828928", + "18076693784329992536064" ], - "expectedQty": "8877199362268757151463", + "expectedQty": "41697344388393937461358", + "swapFee": "25033426689049792352", "reserves": [ - "13449166666973401133090872", - "15089519282307010305604635", - "41413250780098140335550494" + "572258883744671350798612928", + "401108725492560486087163826", + "755966248162617275366812490" ], - "mAssetSupply": "69854502061930747700624343" + "mAssetSupply": "1728839610172023495322683358" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1661423635460846256128", - "expectedQty": "1671761135077372727657", - "swapFee": "996854181276507753", - "reserves": [ - "13449166666973401133090872", - "15089519282307010305604635", - "41411579018963062962822837" - ], - "mAssetSupply": "69852841635149468130875968" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "74177141245534493736960", - "expectedQty": "73736829171219017967207", - "swapFee": "44506284747320696242", + "inputQty": "356377822949548556288", + "expectedQty": "357037776271852094279", + "swapFee": "213826693769729133", "reserves": [ - "13449166666973401133090872", - "15015782453135791287637428", - "41411579018963062962822837" + "572258883744671350798612928", + "401108725492560486087163826", + "755965891124841003514718211" ], - "mAssetSupply": "69778709000188680957835250" + "mAssetSupply": "1728839254008027239543856203" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4055488683639299072", - "3112949643184208384", - "9210306039487988736" + "1236345561537621839052800", + "1074095519666661203378176", + "831242080319247134752768" ], - "expectedQty": "16363891834496385866", - "swapFee": "9824229638480920", + "expectedQty": "3143340227703239316016153", "reserves": [ - "13449162611484717493791800", - "15015779340186148103429044", - "41411569808657023474834101" + "573495229306208972637665728", + "402182821012227147290542002", + "756797133205160250649470979" ], - "mAssetSupply": "69778692636296846461449384" + "mAssetSupply": "1731982594235730478859872356" }, { "type": "mintMulti", "inputQtys": [ - "183707702015414639788032", - "114262124181396119355392", - "151188783697372750282752" + "1993324495725710848", + "1399176080329787136", + "3650083090722490368" ], - "expectedQty": "450137922963279525731438", + "expectedQty": "7038388530669236985", "reserves": [ - "13632870313500132133579832", - "15130041464367544222784436", - "41562758592354396225116853" + "573495231299533468363376576", + "402182822411403227620329138", + "756797136855243341371961347" ], - "mAssetSupply": "70228830559260125987180822" + "mAssetSupply": "1731982601274119009529109341" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4166662675035852374016", - "2112058976523084103680", - "5491012115152343400448" + "19606291265635540992", + "7475128262726403072", + "10671747523057643520" ], - "expectedQty": "11775200172440726700071", - "swapFee": "7069361720496734060", + "expectedQty": "37750316662285659431", "reserves": [ - "13628703650825096281205816", - "15127929405391021138680756", - "41557267580239243881716405" + "573495250905824733998917568", + "402182829886531490346732210", + "756797147526990864429604867" ], - "mAssetSupply": "70217055359087685260480751" + "mAssetSupply": "1731982639024435671814768772" }, { "type": "mint", "inputIndex": 0, - "inputQty": "363854066345882446462976", - "expectedQty": "366480258516649271472889", + "inputQty": "53559996343635339556945920", + "expectedQty": "53533619805666859288323017", "reserves": [ - "13992557717170978727668792", - "15127929405391021138680756", - "41557267580239243881716405" + "627055247249460073555863488", + "402182829886531490346732210", + "756797147526990864429604867" ] }, { - "type": "redeemBassets", + "type": "swap", + "inputIndex": 0, + "inputQty": "1061830095992443264", + "outputIndex": 1, + "expectedQty": "1056078474789153675", + "swapFee": "636619235561960", + "reserves": [ + "627055248311290169548306752", + "402182828830453015557578535", + "756797147526990864429604867" + ], + "mAssetSupply": "1785516258830739150338653749", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "12777402054170120290304", + "outputIndex": 2, + "expectedQty": "12850656475975069144518", + "swapFee": "7697778263892392369", + "reserves": [ + "627055248311290169548306752", + "402195606232507185677868839", + "756784296870514889360460349" + ], + "mAssetSupply": "1785516266528517414231046118", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", "inputQtys": [ - "2727934180947121152", - "3495050769935344128", - "3199303599650805760" + "430580706501138952749056", + "50587783721145289670656", + "570414506751897370624000" ], - "expectedQty": "9439233757446788950", - "swapFee": "5666940418719304", + "expectedQty": "1050190422808151628119479", "reserves": [ - "13992554989236797780547640", - "15127925910340251203336628", - "41557264380935644230910645" + "627485829017791308501055808", + "402246194016228330967539495", + "757354711377266786731084349" ], - "mAssetSupply": "70583526178370577085164690" + "mAssetSupply": "1786566456951325565859165597" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "20447549147736262574080", - "outputIndex": 2, - "expectedQty": "20714052839411645492464", - "swapFee": "12353971249985319180", + "inputIndex": 2, + "inputQty": "32133078296147127072456704", + "outputIndex": 0, + "expectedQty": "32053672742666600437164427", + "swapFee": "19234492260042646111988", "reserves": [ - "14013002538384534043121720", - "15127925910340251203336628", - "41536550328096232585418181" + "595432156275124708063891381", + "402246194016228330967539495", + "789487789673413913803541053" ], - "mAssetSupply": "70583538532341827070483870", + "mAssetSupply": "1786585691443585608505277585", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "11875550131390744140709888", + "expectedQty": "11922459320423223259793216", + "reserves": [ + "595432156275124708063891381", + "414121744147619075108249383", + "789487789673413913803541053" + ] + }, { "type": "mintMulti", "inputQtys": [ - "334292472890534075039744", - "2205252220296954422231040", - "2279539789141329762582528" + "60440988715030784", + "485723773941255936", + "634049014162386944" ], - "expectedQty": "4817291252891941804272060", + "expectedQty": "1180463260469583792", "reserves": [ - "14347295011275068118161464", - "17333178130637205625567668", - "43816090117237562348000709" + "595432156335565696778922165", + "414121744633342849049505319", + "789487790307462927965927997" ], - "mAssetSupply": "75400829785233768874755930" + "mAssetSupply": "1798508151944472092234654593" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "402375699471224941838336", - "expectedQty": "398932159146220281847356", - "swapFee": "241425419682734965103", + "inputQty": "14194935964183730698846208", + "expectedQty": "14190627145678203043894533", "reserves": [ - "13948362852128847836314108", - "17333178130637205625567668", - "43816090117237562348000709" - ], - "mAssetSupply": "74998695511182226667882697" + "609627092299749427477768373", + "414121744633342849049505319", + "789487790307462927965927997" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "193802969877706", - "outputIndex": 1, - "expectedQty": "191647600387458", - "swapFee": "115524928005", + "type": "redeemBassets", + "inputQtys": [ + "58052772491416020451328", + "124901449513687272390656", + "195022482852633112477696" + ], + "expectedQty": "377966749513209691673934", + "swapFee": "226916199427582364423", "reserves": [ - "13948362852128847836314108", - "17333178130445558025180210", - "43816090117431365317878415" + "609569039527258011457317045", + "413996843183829161777114663", + "789292767824610294853450301" ], - "mAssetSupply": "74998695511182342192810702", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1812320812340637085586875192" }, { "type": "mint", "inputIndex": 2, - "inputQty": "256886908679163914223616", - "expectedQty": "255207590492671525065409", + "inputQty": "10396476957214495473664000", + "expectedQty": "10370757044631784384337934", "reserves": [ - "13948362852128847836314108", - "17333178130445558025180210", - "44072977026110529232102031" + "609569039527258011457317045", + "413996843183829161777114663", + "799689244781824790327114301" ] }, { "type": "redeemMasset", - "inputQty": "218873186629827820519424", + "inputQty": "34003081224518605209", "expectedQtys": [ - "40556125637806397714823", - "50397781977226026363054", - "128146163994456877567784" + "11368356414967525111", + "7720969017119398027", + "14914065128613648288" ], - "redemptionFee": "65661955988948346155", + "redemptionFee": "10200924367355581", "reserves": [ - "13907806726491041438599285", - "17282780348468331998817156", - "43944830862116072354534247" + "609569028158901596489791934", + "413996835462860144657716636", + "799689229867759661713466013" ], - "mAssetSupply": "75035095577001174845702842" + "mAssetSupply": "1822691535392388569819963498" }, { - "type": "redeemMasset", - "inputQty": "72775919248404686202470", - "expectedQtys": [ - "13485020115492413819122", - "16757397139177347374548", - "42608941855568917621674" - ], - "redemptionFee": "21832775774521405860", + "type": "swap", + "inputIndex": 2, + "inputQty": "1814072827987653178687488", + "outputIndex": 1, + "expectedQty": "1801180590570926894903988", + "swapFee": "1085704736691737828323", "reserves": [ - "13894321706375549024780163", - "17266022951329154651442608", - "43902221920260503436912573" + "609569028158901596489791934", + "412195654872289217762812648", + "801503302695747314892153501" ], - "mAssetSupply": "74962341490528544680906232" + "mAssetSupply": "1822692621097125261557791821", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "135723058879646836719616", - "expectedQty": "134498056082423905745161", - "swapFee": "81433835327788102031", + "type": "mint", + "inputIndex": 2, + "inputQty": "26136644299263179751424", + "expectedQty": "26070336429533959909291", "reserves": [ - "13759823650293125119035002", - "17266022951329154651442608", - "43902221920260503436912573" - ], - "mAssetSupply": "74826699865484225632288647" + "609569028158901596489791934", + "412195654872289217762812648", + "801529439340046578071904925" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "145733949724711981154304", - "expectedQty": "144767137725365814355114", + "inputQty": "560491282040474942046208", + "expectedQty": "559068189951248200819357", "reserves": [ - "13759823650293125119035002", - "17266022951329154651442608", - "44047955869985215418066877" + "609569028158901596489791934", + "412195654872289217762812648", + "802089930622087053013951133" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "197787126851222936485888", - "76235730441657772933120", - "65731762698899349831680" - ], - "expectedQty": "341368932822508600689944", - "swapFee": "204944326289278727650", + "type": "swap", + "inputIndex": 0, + "inputQty": "547319487477108572160", + "outputIndex": 2, + "expectedQty": "548197693891891919692", + "swapFee": "328279817713361092", "reserves": [ - "13562036523441902182549114", - "17189787220887496878509488", - "43982224107286316068235197" + "609569575478389073598364094", + "412195654872289217762812648", + "802089382424393161122031441" ], - "mAssetSupply": "74630098070387082845953817" + "mAssetSupply": "1823277759951785861431881561", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "6621736445370935980064768", - "expectedQty": "6498433930560656529956164", - "swapFee": "3973041867222561588038", + "type": "mintMulti", + "inputQtys": [ + "459423867480114473205760", + "174638827959861450375168", + "331861560348485284265984" + ], + "expectedQty": "965631358688030539224451", "reserves": [ - "7063602592881245652592950", - "17189787220887496878509488", - "43982224107286316068235197" + "610028999345869188071569854", + "412370293700249079213187816", + "802421243984741646406297425" ], - "mAssetSupply": "68012334666883369427477087" + "mAssetSupply": "1824243391310473891971106012" }, { - "type": "redeemMasset", - "inputQty": "2738220971689837697433", - "expectedQtys": [ - "284299933810367258926", - "691864428222197157730", - "1770221815017737988674" + "type": "redeemBassets", + "inputQtys": [ + "2450882812945779927285760", + "692568158976844259917824", + "2356706364269195052449792" ], - "redemptionFee": "821466291506951309", + "expectedQty": "5496144336475115055378440", + "swapFee": "3299666401726104696044", "reserves": [ - "7063318292947435285334024", - "17189095356459274681351758", - "43980453885471298330246523" + "607578116532923408144284094", + "411677725541272234953269992", + "800064537620472451353847633" ], - "mAssetSupply": "68009597267377971096730963" + "mAssetSupply": "1818747246973998776915727572" }, { "type": "swap", "inputIndex": 1, - "inputQty": "56772668933908937572352", - "outputIndex": 0, - "expectedQty": "54877793714966305159821", - "swapFee": "34146474283197993341", + "inputQty": "3207440216210784387072", + "outputIndex": 2, + "expectedQty": "3226629754739272015788", + "swapFee": "1932222708392117904", "reserves": [ - "7008440499232468980174203", - "17245868025393183618924110", - "43980453885471298330246523" + "607578116532923408144284094", + "411680932981488445737657064", + "800061310990717712081831845" ], - "mAssetSupply": "68009631413852254294724304", + "mAssetSupply": "1818747248906221485307845476", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "37738791120142994505728", - "expectedQty": "36373766597641325020182", - "swapFee": "22643274672085796703", + "type": "mintMulti", + "inputQtys": [ + "17092989528643513352192", + "16307898207616978911232", + "48154572860195694706688" + ], + "expectedQty": "81493285540688942258589", "reserves": [ - "6972066732634827655154021", - "17245868025393183618924110", - "43980453885471298330246523" + "607595209522452051657636286", + "411697240879696062716568296", + "800109465563577907776538533" ], - "mAssetSupply": "67971915266006783386015279" + "mAssetSupply": "1818828742191762174250104065" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "18650665063316979712", - "expectedQty": "18595438241053273262", - "swapFee": "11190399037990187", + "type": "redeemMasset", + "inputQty": "3688066363089602496115507", + "expectedQtys": [ + "1231660324697884420265295", + "834554238466839217286495", + "1621907264417745534134767" + ], + "redemptionFee": "1106419908926880748834", "reserves": [ - "6972066732634827655154021", - "17245849429954942565650848", - "43980453885471298330246523" + "606363549197754167237370991", + "410862686641229223499281801", + "798487558299160162242403766" ], - "mAssetSupply": "67971896626532119107025754" + "mAssetSupply": "1815141782248581498634737392" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "8521956432594705842176", - "expectedQty": "8211825221126171601108", - "swapFee": "5113173859556823505", + "inputQty": "9733501964155766177792", + "expectedQty": "9730892914089624006720", + "swapFee": "5840101178493459706", "reserves": [ - "6963854907413701483552913", - "17245849429954942565650848", - "43980453885471298330246523" + "606353818304840077613364271", + "410862686641229223499281801", + "798487558299160162242403766" ], - "mAssetSupply": "67963379783273383958007083" + "mAssetSupply": "1815132054586718521362019306" }, { - "type": "redeemBassets", - "inputQtys": [ - "118973160833928837201920", - "195789250800849753473024", - "157675571111299387490304" + "type": "redeemMasset", + "inputQty": "2174702728174159423078", + "expectedQtys": [ + "726252234808132995450", + "492105327557206784999", + "956377870766061781636" ], - "expectedQty": "475490267208772301293001", - "swapFee": "285465439589016790850", + "redemptionFee": "652410818452247826", "reserves": [ - "6844881746579772646350993", - "17050060179154092812177824", - "43822778314359998942756219" + "606353092052605269480368821", + "410862194535901666292496802", + "798486601921289396180622130" ], - "mAssetSupply": "67487889516064611656714082" + "mAssetSupply": "1815129880536401165654844054" }, { "type": "redeemMasset", - "inputQty": "148614457945613368138137", + "inputQty": "19506563887608699289", "expectedQtys": [ - "15068528935262751155788", - "37534516251640319947407", - "96472784702744866680935" + "6514309028663209723", + "4414067213446981320", + "8578481001151039619" ], - "redemptionFee": "44584337383684010441", + "redemptionFee": "5851969166282609", "reserves": [ - "6829813217644509895195205", - "17012525662902452492230417", - "43726305529657254076075284" + "606353085538296240817159098", + "410862190121834452845515482", + "798486593342808395029582511" ], - "mAssetSupply": "67339319642456381972586386" + "mAssetSupply": "1815129861035689247212427374" }, { "type": "mintMulti", "inputQtys": [ - "124418912948711981056", - "37937995965327777792", - "10484944866952329216" - ], - "expectedQty": "177556983272903392107", - "reserves": [ - "6829937636557458607176261", - "17012563600898417820008209", - "43726316014602121028404500" - ], - "mAssetSupply": "67339497199439654875978493" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "736488425487021773946880", - "expectedQty": "738029867901199775628349", - "reserves": [ - "6829937636557458607176261", - "17749052026385439593955089", - "43726316014602121028404500" - ] - }, - { - "type": "redeemMasset", - "inputQty": "178248395235061923840", - "expectedQtys": [ - "17877561775136848579", - "46458663451539131602", - "114454912672412171468" + "5121776488551738", + "14713829926093972", + "2652656878929992" ], - "redemptionFee": "53474518570518577", + "expectedQty": "22539147365021345", "reserves": [ - "6829919758995683470327682", - "17749005567721988054823487", - "43726201559689448616233032" + "606353085543418017305710836", + "410862190136548282771609454", + "798486593345461051908512503" ], - "mAssetSupply": "68077348872420138160201579" + "mAssetSupply": "1815129861058228394577448719" }, { "type": "mintMulti", "inputQtys": [ - "679813371801058934784", - "943836754300787490816", - "1658241489999271559168" + "1561523756500406889349120", + "1411047304378338787721216", + "1057031652770510803042304" ], - "expectedQty": "3289916261805023204527", + "expectedQty": "4032081574312821118470624", "reserves": [ - "6830599572367484529262466", - "17749949404476288842314303", - "43727859801179447887792200" + "607914609299918424195059956", + "412273237440926621559330670", + "799543624998231562711554807" ], - "mAssetSupply": "68080638788681943183406106" + "mAssetSupply": "1819161942632541215695919343" }, { "type": "redeemMasset", - "inputQty": "2173468837023159", + "inputQty": "55770061467131045478", "expectedQtys": [ - "218000913977897", - "566495686394936", - "1395589552858312" + "18631251733332569449", + "12635272046716586152", + "24504261488761208922" ], - "redemptionFee": "652040651106", + "redemptionFee": "16731018440139313", "reserves": [ - "6830599572149483615284569", - "17749949403909793155919367", - "43727859799783858334933888" + "607914590668666690862490507", + "412273224805654574842744518", + "799543600493970073950345885" ], - "mAssetSupply": "68080638786509126387034053" + "mAssetSupply": "1819161886879210767005013178" }, { - "type": "redeemMasset", - "inputQty": "77453243634463827558", - "expectedQtys": [ - "7768631238344294302", - "20187512086124465709", - "49732913492927895031" - ], - "redemptionFee": "23235973090339148", + "type": "swap", + "inputIndex": 2, + "inputQty": "568567497012269667057664", + "outputIndex": 0, + "expectedQty": "566974287959207530700231", + "swapFee": "340277104939810867517", "reserves": [ - "6830591803518245270990267", - "17749929216397707031453658", - "43727810066870365407038857" + "607347616380707483331790276", + "412273224805654574842744518", + "800112167990982343617403549" ], - "mAssetSupply": "68080561356501465013545643" + "mAssetSupply": "1819162227156315706815880695", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "3613354722566380339", + "inputQty": "171291473017353199524249", "expectedQtys": [ - "362422786390027786", - "941789377828019742", - "2320143733227658317" + "57170414078820951333757", + "38807810123973032352292", + "75315589820104607852779" ], - "redemptionFee": "1084006416769914", + "redemptionFee": "51387441905205959857", "reserves": [ - "6830591441095458880962481", - "17749928274608329203433916", - "43727807746726632179380540" + "607290445966628662380456519", + "412234416995530601810392226", + "800036852401162239009550770" ], - "mAssetSupply": "68080557744230748863935218" + "mAssetSupply": "1818990987070740258822316303" }, { - "type": "redeemMasset", - "inputQty": "25835463308856590336", - "expectedQtys": [ - "2591320620031132247", - "6733788067800113237", - "16589012951516424302" + "type": "mint", + "inputIndex": 1, + "inputQty": "889301802848011419648", + "expectedQty": "892871977895915250520", + "reserves": [ + "607290445966628662380456519", + "412235306297333449821811874", + "800036852401162239009550770" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "289062911993349537792", + "160075260538072924160", + "266363404519295877120" ], - "redemptionFee": "7750638992656977", + "expectedQty": "715374938068115210117", "reserves": [ - "6830588849774838849830234", - "17749921540820261403320679", - "43727791157713680662956238" + "607290735029540655729994311", + "412235466372593987894736034", + "800037118764566758305427890" ], - "mAssetSupply": "68080531916518079000001859" + "mAssetSupply": "1818992595317656222852776940" }, { "type": "redeemBassets", "inputQtys": [ - "28605867469881521209344", - "48894372415487885705216", - "38756764796427563958272" + "213005069656620448", + "1852723607150520576", + "1921644551301944064" ], - "expectedQty": "116983478187083727207750", - "swapFee": "70232226247999035746", + "expectedQty": "3989870390888226610", + "swapFee": "2395359450203057", "reserves": [ - "6801982982304957328620890", - "17701027168404773517615463", - "43689034392917253098997966" + "607290734816535586073373863", + "412235464519870380744215458", + "800037116842922207003483826" ], - "mAssetSupply": "67963548438330995272794109" + "mAssetSupply": "1818992591327785831964550330" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "11384876632363137024", - "expectedQty": "11825726136714440299", + "inputIndex": 2, + "inputQty": "3427780594110759939604480", + "expectedQty": "3419050181850479428876555", "reserves": [ - "6801994367181589691757914", - "17701027168404773517615463", - "43689034392917253098997966" + "607290734816535586073373863", + "412235464519870380744215458", + "803464897437032966943088306" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "420885530188110036992", - "expectedQty": "404951404184413600611", - "swapFee": "252531318112866022", + "inputQty": "2709519866890154145742848", + "expectedQty": "2708636934763258235638333", "reserves": [ - "6801589415777405278157303", - "17701027168404773517615463", - "43689034392917253098997966" - ], - "mAssetSupply": "67963139631058261990063438" + "610000254683425740219116711", + "412235464519870380744215458", + "803464897437032966943088306" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "634046457611221987229696", + "inputIndex": 1, + "inputQty": "6675802326431383420928", "outputIndex": 2, - "expectedQty": "663343176353020267021067", - "swapFee": "393893895342242074383", + "expectedQty": "6716011405108878806221", + "swapFee": "4021750523532651466", "reserves": [ - "7435635873388627265386999", - "17701027168404773517615463", - "43025691216564232831976899" + "610000254683425740219116711", + "412242140322196812127636386", + "803458181425627858064282085" ], - "mAssetSupply": "67963533524953604232137821", + "mAssetSupply": "1825120282466150093161716684", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "78018695536054580019", - "expectedQtys": [ - "8533172801066064547", - "20313787032651885050", - "49376497758615288212" + "type": "redeemBassets", + "inputQtys": [ + "637566335580971904", + "724329602319666176", + "1073335245006566016" ], - "redemptionFee": "23405608660816374", + "expectedQty": "2435221328122509337", + "swapFee": "1462010002875230", "reserves": [ - "7435627340215826199322452", - "17701006854617740865730413", - "43025641840066474216688687" + "610000254045859404638144807", + "412242139597867209807970210", + "803458180352292613057716069" ], - "mAssetSupply": "67963455529663676838374176" + "mAssetSupply": "1825120280030928765039207347" }, { - "type": "redeemBassets", - "inputQtys": [ - "635461553081680903798784", - "3297445000847861382905856", - "1813047477506432405864448" - ], - "expectedQty": "5756001580204026906939771", - "swapFee": "3455674352734056578110", + "type": "redeem", + "inputIndex": 1, + "inputQty": "491014101140552558837760", + "expectedQty": "488731313085103682131040", + "swapFee": "294608460684331535302", "reserves": [ - "6800165787134145295523668", - "14403561853769879482824557", - "41212594362560041810824239" + "610000254045859404638144807", + "411753408284782106125839170", + "803458180352292613057716069" ], - "mAssetSupply": "62207453949459649931434405" + "mAssetSupply": "1824629560538248896811904889" }, { "type": "redeemBassets", "inputQtys": [ - "234858411709324853248000", - "1236672132565612407816192", - "582320772017758694014976" + "261091335899380580352", + "375834651439158263808", + "557293774159877373952" ], - "expectedQty": "2061245697463950226630100", - "swapFee": "1237489912425825631356", + "expectedQty": "1194239129828382890617", + "swapFee": "716973662094286306", "reserves": [ - "6565307375424820442275668", - "13166889721204267075008365", - "40630273590542283116809263" + "609999992954523505257564455", + "411753032450130666967575362", + "803457623058518453180342117" ], - "mAssetSupply": "60146208251995699704804305" + "mAssetSupply": "1824628366299119068429014272" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1715199880667994624", - "expectedQty": "1775025872528856979", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3370140945397365782609920", + "expectedQty": "3354301406886870034483374", + "swapFee": "2022084567238419469565", "reserves": [ - "6565309090624701110270292", - "13166889721204267075008365", - "40630273590542283116809263" - ] + "609999992954523505257564455", + "408398731043243796933091988", + "803457623058518453180342117" + ], + "mAssetSupply": "1821260247438288941065873917" }, { - "type": "redeemBassets", - "inputQtys": [ - "10267986855346663587840", - "19608980372375702863872", - "221050561548718132166656" - ], - "expectedQty": "248543490469090686970657", - "swapFee": "149215623655647800862", + "type": "redeem", + "inputIndex": 1, + "inputQty": "912383917921630976", + "expectedQty": "908054936495226772", + "swapFee": "547430350752978", "reserves": [ - "6555041103769354446682452", - "13147280740831891372144493", - "40409223028993564984642607" + "609999992954523505257564455", + "408398730135188860437865216", + "803457623058518453180342117" ], - "mAssetSupply": "59897666536552481546690627" + "mAssetSupply": "1821260246526452453494995919" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4165093490283976704", - "expectedQty": "4023340889474702868", - "swapFee": "2499056094170386", + "type": "mint", + "inputIndex": 2, + "inputQty": "2277238199502361749094400", + "expectedQty": "2271346815057136901693344", "reserves": [ - "6555037080428464971979584", - "13147280740831891372144493", - "40409223028993564984642607" + "609999992954523505257564455", + "408398730135188860437865216", + "805734861258020814929436517" + ] + }, + { + "type": "redeemMasset", + "inputQty": "39149276898398099944243", + "expectedQtys": [ + "13092119929142783444222", + "8765254451794927429146", + "17293077961506892164590" + ], + "redemptionFee": "11744783069519429983", + "reserves": [ + "609986900834594362474120233", + "408389964880737065510436070", + "805717568180059308037271927" ], - "mAssetSupply": "59897662373958047356884309" + "mAssetSupply": "1823492455809394261816175003" }, { "type": "swap", "inputIndex": 2, - "inputQty": "189158286994245091328", + "inputQty": "1367339273123770329464832", "outputIndex": 1, - "expectedQty": "185459614140709135240", - "swapFee": "112029299481506905", + "expectedQty": "1357248990206809784676098", + "swapFee": "818270711234535559645", "reserves": [ - "6555037080428464971979584", - "13147095281217750663009253", - "40409412187280559229733935" + "609986900834594362474120233", + "407032715890530255725759972", + "807084907453183078366736759" ], - "mAssetSupply": "59897662485987346838391214", + "mAssetSupply": "1823493274080105496351734648", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "222470818467772595437568", - "165433714971171178414080", - "41502181679863122886656" + "type": "redeem", + "inputIndex": 0, + "inputQty": "3687197467066331824128", + "expectedQty": "3686329432612775529563", + "swapFee": "2212318480239799094", + "reserves": [ + "609983214505161749698590670", + "407032715890530255725759972", + "807084907453183078366736759" ], - "expectedQty": "437333238265911279198118", + "mAssetSupply": "1823489589094956910259709614" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "788907043674214283345920", + "expectedQty": "790499096702925321796479", + "swapFee": "473344226204528570007", "reserves": [ - "6777507898896237567417152", - "13312528996188921841423333", - "40450914368960422352620591" + "609983214505161749698590670", + "407032715890530255725759972", + "806294408356480153044940280" ], - "mAssetSupply": "60334995724253258117589332" + "mAssetSupply": "1822701155395508900504933701" }, { - "type": "redeemBassets", - "inputQtys": [ - "116196855820115247104000", - "170941241361753624805376", - "21076237857979531001856" + "type": "redeem", + "inputIndex": 1, + "inputQty": "1780810425208448745472", + "expectedQty": "1772254957203208060999", + "swapFee": "1068486255125069247", + "reserves": [ + "609983214505161749698590670", + "407030943635573052517698973", + "806294408356480153044940280" ], - "expectedQty": "312816967091087435874058", - "swapFee": "187802861971835562862", + "mAssetSupply": "1822699375653569947181257476" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1005812474060261949440", + "expectedQty": "1005578691024796950725", + "swapFee": "603487484436157169", "reserves": [ - "6661311043076122320313152", - "13141587754827168216617957", - "40429838131102442821618735" + "609982208926470724901639945", + "407030943635573052517698973", + "806294408356480153044940280" ], - "mAssetSupply": "60022178757162170681715274" + "mAssetSupply": "1822698370444583371355465205" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "362084780493894647808", - "expectedQty": "366540285242400463224", - "swapFee": "217250868296336788", + "inputQty": "24868768819384686739456", + "expectedQty": "24918884702315479950252", + "swapFee": "14921261291630812043", "reserves": [ - "6661311043076122320313152", - "13141587754827168216617957", - "40429471590817200421155511" + "609982208926470724901639945", + "407030943635573052517698973", + "806269489471777837564990028" ], - "mAssetSupply": "60021816889632545083404254" + "mAssetSupply": "1822673516597025278299537792" }, { - "type": "redeemBassets", - "inputQtys": [ - "554806777306136707072", - "528243603000693948416", - "672554093798503481344" - ], - "expectedQty": "1768908108149586880688", - "swapFee": "1061982054122225463", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1723077854568802280275968", + "expectedQty": "1726539658446707941943244", + "swapFee": "1033846712741281368165", "reserves": [ - "6660756236298816183606080", - "13141059511224167522669541", - "40428799036723401917674167" + "609982208926470724901639945", + "407030943635573052517698973", + "804542949813331129623046784" ], - "mAssetSupply": "60020047981524395496523566" + "mAssetSupply": "1820951472589169217300629989" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "33071603206734240", - "expectedQty": "33478581745130307", - "swapFee": "19842961924040", + "inputQty": "524586303349372414328832", + "outputIndex": 0, + "expectedQty": "523101996485972577021907", + "swapFee": "313933534278769970252", "reserves": [ - "6660756236298816183606080", - "13141059511224167522669541", - "40428799003244820172543860" + "609459106929984752324618038", + "407030943635573052517698973", + "805067536116680502037375616" ], - "mAssetSupply": "60020047948472635251713366" + "mAssetSupply": "1820951786522703496070600241", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1552011977816129067286528", - "expectedQty": "1559730461313034295534862", + "type": "redeem", + "inputIndex": 2, + "inputQty": "218656154066002575884288", + "expectedQty": "219095201250301113607099", + "swapFee": "131193692439601545530", "reserves": [ - "6660756236298816183606080", - "14693071489040296589956069", - "40428799003244820172543860" - ] + "609459106929984752324618038", + "407030943635573052517698973", + "804848440915430200923768517" + ], + "mAssetSupply": "1820733261562329933096261483" }, { "type": "redeemMasset", - "inputQty": "4582808875943699251", + "inputQty": "2772286467766267494", "expectedQtys": [ - "495549287386169267", - "1093140305334739762", - "3007836021194673694" + "927696764752407087", + "619567884491747666", + "1225111391828032760" ], - "redemptionFee": "1374842662783109", + "redemptionFee": "831685940329880", "reserves": [ - "6660755740749528797436813", - "14693070395899991255216307", - "40428795995408798977870166" + "609459106002287987572210951", + "407030943016005168025951307", + "804848439690318809095735757" ], - "mAssetSupply": "61579773828351636266332086" + "mAssetSupply": "1820733258790875151270323869" }, { - "type": "redeemBassets", - "inputQtys": [ - "30903628402168025088", - "190652149094331187200", - "79942937606606422016" - ], - "expectedQty": "302321674858657489107", - "swapFee": "181501906058829791", + "type": "swap", + "inputIndex": 1, + "inputQty": "3620278523982042818936832", + "outputIndex": 2, + "expectedQty": "3642481852742257020040498", + "swapFee": "2181202655427484022396", "reserves": [ - "6660724837121126629411725", - "14692879743750896924029107", - "40428716052471192371448150" + "609459106002287987572210951", + "410651221539987210844888139", + "801205957837576552075695259" ], - "mAssetSupply": "61579471506676777608842979" + "mAssetSupply": "1820735439993530578754346265", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "475385104461312892600320", - "expectedQty": "477073820421473684028502", + "type": "redeem", + "inputIndex": 2, + "inputQty": "136242618219499727355904", + "expectedQty": "136508559910302710279453", + "swapFee": "81745570931699836413", "reserves": [ - "6660724837121126629411725", - "15168264848212209816629427", - "40428716052471192371448150" - ] + "609459106002287987572210951", + "410651221539987210844888139", + "801069449277666249365415806" + ], + "mAssetSupply": "1820599279120882010726826774" }, { - "type": "redeemMasset", - "inputQty": "131348110360784168550", - "expectedQtys": [ - "14093777768205676507", - "32095328830966582984", - "85545245214437108931" + "type": "mintMulti", + "inputQtys": [ + "342692202513568421117952", + "498552755176091573813248", + "69066748393746673434624" + ], + "expectedQty": "912046400038007488902303", + "reserves": [ + "609801798204801555993328903", + "411149774295163302418701387", + "801138516026059996038850430" ], - "redemptionFee": "39404433108235250", + "mAssetSupply": "1821511325520920018215729077" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "32429353546004608057344", + "expectedQty": "32492479803601363200674", + "swapFee": "19457612127602764834", "reserves": [ - "6660710743343358423735218", - "15168232752883378850046443", - "40428630507225977934339219" + "609801798204801555993328903", + "411149774295163302418701387", + "801106023546256394675649756" ], - "mAssetSupply": "62056414018392323616938181" + "mAssetSupply": "1821478915624986141210436567" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "3441872081797338867171328", + "inputIndex": 1, + "inputQty": "352095323639350886400", "outputIndex": 2, - "expectedQty": "3543333906915118905795409", - "swapFee": "2110876222904624724911", + "expectedQty": "354216613910907877173", + "swapFee": "212117090892798648", "reserves": [ - "10102582825140697290906546", - "15168232752883378850046443", - "36885296600310859028543810" + "609801798204801555993328903", + "411150126390486941769587787", + "801105669329642483767772583" ], - "mAssetSupply": "62058524894615228241663092", + "mAssetSupply": "1821478915837103232103235215", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemMasset", + "inputQty": "2325472718670006921776332", + "expectedQtys": [ + "778297245145990244789806", + "524755767616924755050381", + "1022460637777086097015201" + ], + "redemptionFee": "697641815601002076532", + "reserves": [ + "609023500959655565748539097", + "410625370622870017014537406", + "800083208691865397670757382" + ], + "mAssetSupply": "1819154140760248826183535415" + }, { "type": "mint", "inputIndex": 0, - "inputQty": "24268945963041127661568", - "expectedQty": "24557589359533558000914", + "inputQty": "5343355862435624910848", + "expectedQty": "5341461348562620198631", + "reserves": [ + "609028844315518001373449945", + "410625370622870017014537406", + "800083208691865397670757382" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "6376679557460958453432320", + "expectedQty": "6360331762296865815739326", "reserves": [ - "10126851771103738418568114", - "15168232752883378850046443", - "36885296600310859028543810" + "609028844315518001373449945", + "410625370622870017014537406", + "806459888249326356124189702" ] }, { "type": "mintMulti", "inputQtys": [ - "29455448892701920", - "770275043128750", - "4037195341391015" + "303833225680625107730432", + "861575163919814019252224", + "1241711835857767249215488" ], - "expectedQty": "34585725611103912", + "expectedQty": "2407355918209179988734579", "reserves": [ - "10126851800559187311270034", - "15168232753653653893175193", - "36885296604348054369934825" + "609332677541198626481180377", + "411486945786789831033789630", + "807701600085184123373405190" ], - "mAssetSupply": "62083082518560487410767918" + "mAssetSupply": "1827927169902103434608207951" }, { "type": "mintMulti", "inputQtys": [ - "2161126916777486057472", - "22727001570210515779584", - "5951241867729734467584" + "2805707912958161645993984", + "507439913115375986802688", + "4972578346263916352372736" ], - "expectedQty": "30893343275814340587759", + "expectedQty": "8274001665179883303132786", "reserves": [ - "10129012927475964797327506", - "15190959755223864408954777", - "36891247846215784104402409" + "612138385454156788127174361", + "411994385699905207020592318", + "812674178431448039725777926" ], - "mAssetSupply": "62113975861836301751355677" + "mAssetSupply": "1836201171567283317911340737" }, { "type": "redeemBassets", "inputQtys": [ - "5924643585766350848", - "46093054817013587968", - "17055355750559563776" + "6675278815379105792", + "1448133457325184512", + "247407700100024704" ], - "expectedQty": "69164664723700731078", - "swapFee": "41523713062057673", + "expectedQty": "8374007341670199563", + "swapFee": "5027420857516629", "reserves": [ - "10129007002832379030976658", - "15190913662169047395366809", - "36891230790860033544838633" + "612138378778877972748068569", + "411994384251771749695407806", + "812674178184040339625753222" ], - "mAssetSupply": "62113906697171578050624599" + "mAssetSupply": "1836201163193275976241141174" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "212755561367855435874304", - "outputIndex": 1, - "expectedQty": "214392111660535697534718", - "swapFee": "129133320771766127286", + "inputQty": "7453132103706541555712", + "expectedQty": "7451102640807320284624", + "swapFee": "4471879262223924933", "reserves": [ - "10341762564200234466850962", - "14976521550508511697832091", - "36891230790860033544838633" + "612130927676237165427783945", + "411994384251771749695407806", + "812674178184040339625753222" ], - "mAssetSupply": "62114035830492349816751885", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1836193714533051531923510395" }, { "type": "redeemBassets", "inputQtys": [ - "580362945940673827700736", - "307590206334610733793280", - "1107776817115230575263744" + "4577603915300164599808", + "9853347543142413369344", + "7512595535787354750976" ], - "expectedQty": "1995539998958489145104117", - "swapFee": "1198042825070135568403", + "expectedQty": "21963432168552775275935", + "swapFee": "13185970883661862282", "reserves": [ - "9761399618259560639150226", - "14668931344173900964038811", - "35783453973744802969574889" + "612126350072321865263184137", + "411984530904228607282038462", + "812666665588504552271002246" ], - "mAssetSupply": "60118495831533860671647768" + "mAssetSupply": "1836171751100882979148234460" }, { "type": "redeemMasset", - "inputQty": "62739360985630228296499", + "inputQty": "351719785190224230", "expectedQtys": [ - "10183891641239795766898", - "15303830715260525423291", - "37332230219961339531770" + "117217988536836350", + "78892205857794127", + "155620080527439493" ], - "redemptionFee": "18821808295689068488", + "redemptionFee": "105515935557067", "reserves": [ - "9751215726618320843383328", - "14653627513458640438615520", - "35746121743524841630043119" + "612126349955103876726347787", + "411984530825336401424244335", + "812666665432884471743562753" ], - "mAssetSupply": "60055775292356526132419757" + "mAssetSupply": "1836171750749268709893567297" }, { "type": "redeemBassets", "inputQtys": [ - "7680003444402929270784", - "6246109292820698234880", - "4334569073796769644544" + "467247567279127324000256", + "302579021662450450694144", + "620518665794868264042496" ], - "expectedQty": "18341422686096841881808", - "swapFee": "11011460487950875654", + "expectedQty": "1389832873366243966371153", + "swapFee": "834400364238289353434", "reserves": [ - "9743535723173917914112544", - "14647381404165819740380640", - "35741787174451044860398575" + "611659102387824749402347531", + "411681951803673950973550191", + "812046146767089603479520257" ], - "mAssetSupply": "60037433869670429290537949" + "mAssetSupply": "1834781917875902465927196144" }, { "type": "redeemBassets", "inputQtys": [ - "531584851247933398450176", - "173520462243061334802432", - "378506677937030987513856" - ], - "expectedQty": "1088081654519177793422080", - "swapFee": "653240937273870998652", - "reserves": [ - "9211950871925984515662368", - "14473860941922758405578208", - "35363280496514013872884719" - ], - "mAssetSupply": "58949352215151251497115869" - }, - { - "type": "redeemMasset", - "inputQty": "49771391732913922899968", - "expectedQtys": [ - "7775387697450185027775", - "12216726062380935982234", - "29848532622122779799674" + "3921277508422601277440", + "73080095551551906512896", + "4361215418961703731200" ], - "redemptionFee": "14931417519874176869", + "expectedQty": "81653814530890295970803", + "swapFee": "49021701739577924337", "reserves": [ - "9204175484228534330634593", - "14461644215860377469595974", - "35333431963891891093085045" + "611655181110316326801070091", + "411608871708122399067037295", + "812041785551670641775789057" ], - "mAssetSupply": "58899595754835857448392770" + "mAssetSupply": "1834700264061371575631225341" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "83515311673518615166976", - "86317169463042410283008", - "17669600474474792091648" - ], - "expectedQty": "188754680488305943671492", - "swapFee": "113320800773447634783", - "reserves": [ - "9120660172555015715467617", - "14375327046397335059312966", - "35315762363417416300993397" + "13620355844722353242112", + "5209385647709091790848", + "10512984735306422943744" ], - "mAssetSupply": "58710841074347551504721278" - }, - { - "type": "redeemMasset", - "inputQty": "7701043891352941625344", - "expectedQtys": [ - "1195989214951799314945", - "1885031980539170816373", - "4630944482675069404471" - ], - "redemptionFee": "2310313167405882487", + "expectedQty": "29332517721972022415789", "reserves": [ - "9119464183340063916152672", - "14373442014416795888496593", - "35311131418934741231588926" + "611668801466161049154312203", + "411614081093770108158828143", + "812052298536405948198732801" ], - "mAssetSupply": "58703142340769365968978421" + "mAssetSupply": "1834729596579093547653641130" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "845311721235313009360896", - "expectedQty": "847614277206245615040746", + "inputIndex": 2, + "inputQty": "251609377513526085550080", + "expectedQty": "250953299735338729552231", "reserves": [ - "9119464183340063916152672", - "15218753735652108897857489", - "35311131418934741231588926" + "611668801466161049154312203", + "411614081093770108158828143", + "812303907913919474284282881" ] }, { - "type": "redeemMasset", - "inputQty": "175010718739933294703411", - "expectedQtys": [ - "26792693672903452606437", - "44712211016474478762935", - "103742973088211307073408" + "type": "mintMulti", + "inputQtys": [ + "5499170055529719398400", + "8105738292781479100416", + "17262726868260685348864" ], - "redemptionFee": "52503215621979988411", + "expectedQty": "30854536209163967626530", "reserves": [ - "9092671489667160463546235", - "15174041524635634419094554", - "35207388445846529924515518" + "611674300636216578873710603", + "411622186832062889637928559", + "812321170640787734969631745" ], - "mAssetSupply": "59375798402451300269304167" + "mAssetSupply": "1835011404415038050350819891" }, { "type": "redeemBassets", "inputQtys": [ - "4609667224161263978283008", - "3678296370549767872184320", - "64465842105703171358720" + "177883793239899520", + "36492428382479072", + "169159619098934720" ], - "expectedQty": "8493549818134466854124238", - "swapFee": "5099189404523394148963", + "expectedQty": "383188232219514898", + "swapFee": "230050969913657", "reserves": [ - "4483004265505896485263227", - "11495745154085866546910234", - "35142922603740826753156798" + "611674300458332785633811083", + "411622186795570461255449487", + "812321170471628115870697025" ], - "mAssetSupply": "50882248584316833415179929" + "mAssetSupply": "1835011404031849818131304993" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "45150905225057126055936", - "expectedQty": "44860936313263615434823", - "swapFee": "27090543135034275633", + "type": "mint", + "inputIndex": 2, + "inputQty": "242239964083170344960", + "expectedQty": "241608098366427715346", "reserves": [ - "4483004265505896485263227", - "11450884217772602931475411", - "35142922603740826753156798" - ], - "mAssetSupply": "50837124769634911323399626" + "611674300458332785633811083", + "411622186795570461255449487", + "812321412711592199041041985" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1246261881836718848", - "outputIndex": 0, - "expectedQty": "1186161905106577352", - "swapFee": "752176851712201", + "type": "redeem", + "inputIndex": 2, + "inputQty": "103656403129706230944104448", + "expectedQty": "103826906642841413225727863", + "swapFee": "62193841877823738566462", "reserves": [ - "4483003079343991378685875", - "11450885464034484768194259", - "35142922603740826753156798" + "611674300458332785633811083", + "411622186795570461255449487", + "708494506068750785815314122" ], - "mAssetSupply": "50837124770387088175111827", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1731417436352119777353482353" }, { "type": "mintMulti", "inputQtys": [ - "60586876653301558935552", - "239836422937239758045184", - "255369290157180881731584" + "194015271084276448231424", + "5165493629386553072549888", + "4057056398534005630173184" ], - "expectedQty": "556515924452685120098112", + "expectedQty": "9426036247677917076588231", "reserves": [ - "4543589955997292937621427", - "11690721886971724526239443", - "35398291893898007634888382" + "611868315729417062082042507", + "416787680424957014327999375", + "712551562467284791445487306" ], - "mAssetSupply": "51393640694839773295209939" + "mAssetSupply": "1740843472599797694430070584" }, { - "type": "redeemMasset", - "inputQty": "53654675897356156928", - "expectedQtys": [ - "4742059674126914357", - "12201387307951552139", - "36944533760459653445" + "type": "mintMulti", + "inputQtys": [ + "164547401553676379095040", + "802354375398731739561984", + "563326113495337054240768" ], - "redemptionFee": "16096402769206847", + "expectedQty": "1531697409798049059619852", "reserves": [ - "4543585213937618810707070", - "11690709685584416574687304", - "35398254949364247175234937" + "612032863130970738461137547", + "417590034800355746067561359", + "713114888580780128499728074" ], - "mAssetSupply": "51393587056260278708259858" + "mAssetSupply": "1742375170009595743489690436" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "108359747538914951168", - "expectedQty": "107694878306647477744", - "swapFee": "65015848523348970", + "inputIndex": 0, + "inputQty": "2260728643504669458432", + "expectedQty": "2260862807511076464902", + "swapFee": "1356437186102801675", "reserves": [ - "4543585213937618810707070", - "11690601990706109927209560", - "35398254949364247175234937" + "612030602268163227384672645", + "417590034800355746067561359", + "713114888580780128499728074" ], - "mAssetSupply": "51393478761528588316657660" + "mAssetSupply": "1742372910637389424923033679" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "164303184667757112197120", - "expectedQty": "155269150921155242405132", - "swapFee": "98581910800654267318", + "type": "mint", + "inputIndex": 2, + "inputQty": "1839246846997375133679616", + "expectedQty": "1835825594558506043142204", "reserves": [ - "4388316063016463568301938", - "11690601990706109927209560", - "35398254949364247175234937" - ], - "mAssetSupply": "51229274158771631858727858" + "612030602268163227384672645", + "417590034800355746067561359", + "714954135427777503633407690" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1754176139458972928", - "2407485864963872256", - "1122822555399913856" - ], - "expectedQty": "5384113424865498522", - "swapFee": "3232407499418950", + "type": "mint", + "inputIndex": 1, + "inputQty": "2195671245634696460107776", + "expectedQty": "2202809659276163903962741", "reserves": [ - "4388314308840324109329010", - "11690599583220244963337304", - "35398253826541691775321081" - ], - "mAssetSupply": "51229268774658206993229336" + "612030602268163227384672645", + "419785706045990442527669135", + "714954135427777503633407690" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "26280293129339126415360", - "36982889762611613663232", - "38518095109701261852672" - ], - "expectedQty": "102933914724266623142615", - "swapFee": "61797427290934534606", - "reserves": [ - "4362034015710984982913650", - "11653616693457633349674072", - "35359735731431990513468409" + "14632376296573436428288", + "3858196439091238666240", + "11160492531628264914944" ], - "mAssetSupply": "51126334859933940370086721" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "317336506139349417984", - "outputIndex": 0, - "expectedQty": "300818165582179341461", - "swapFee": "191465020178322175", + "expectedQty": "29633534590056072729710", "reserves": [ - "4361733197545402803572189", - "11653934029963772699092056", - "35359735731431990513468409" + "612045234644459800821100933", + "419789564242429533766335375", + "714965295920309131898322634" ], - "mAssetSupply": "51126335051398960548408896", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1746441179425814150942868334" }, { - "type": "redeemBassets", - "inputQtys": [ - "6440788541577099214848", - "965360452592264019968", - "6645530776542914805760" - ], - "expectedQty": "14336682701922069868805", - "swapFee": "8607173925508547049", + "type": "mint", + "inputIndex": 0, + "inputQty": "69525068732381800693760", + "expectedQty": "69480767335013592952997", "reserves": [ - "4355292409003825704357341", - "11652968669511180435072088", - "35353090200655447598662649" - ], - "mAssetSupply": "51111998368697038478540091" + "612114759713192182621794693", + "419789564242429533766335375", + "714965295920309131898322634" + ] }, { "type": "mintMulti", "inputQtys": [ - "70200648313918902501376", - "143675924210085263310848", - "343824101477110727573504" + "9732379109443194880", + "7816228994343503872", + "4238286239944323584" ], - "expectedQty": "557113197583747680692373", + "expectedQty": "21798067135422722304", "reserves": [ - "4425493057317744606858717", - "11796644593721265698382936", - "35696914302132558326236153" + "612114769445571292064989573", + "419789572058658528109839247", + "714965300158595371842646218" ], - "mAssetSupply": "51669111566280786159232464" + "mAssetSupply": "1746510681991216299958543635" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "38009331423304419901440", - "outputIndex": 1, - "expectedQty": "40007551914436896837906", - "swapFee": "24152753128050468670", + "inputQty": "157365462880274612224", + "expectedQty": "157371371100398734205", + "swapFee": "94419277728164767", "reserves": [ - "4463502388741049026760157", - "11756637041806828801545030", - "35696914302132558326236153" + "612114612074200191666255368", + "419789572058658528109839247", + "714965300158595371842646218" ], - "mAssetSupply": "51669135719033914209701134", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1746510524720172697412096178" }, { "type": "redeemMasset", - "inputQty": "9306708788775150734540", + "inputQty": "562857160294244181606", "expectedQtys": [ - "803730392951861598133", - "2116984754671318601326", - "6427843531929702698327" + "197210224343872183761", + "135247213593507186462", + "230346514298320250480" ], - "redemptionFee": "2792012636632545220", + "redemptionFee": "168857148088273254", "reserves": [ - "4462698658348097165162024", - "11754520057052157482943704", - "35690486458600628623537826" + "612114414863975847794071607", + "419789436811444934602652785", + "714965069812081073522395738" ], - "mAssetSupply": "51659831802257775691511814" + "mAssetSupply": "1746509962031869551256187826" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "28506261051730636570624", - "outputIndex": 0, - "expectedQty": "26468105948481240757169", - "swapFee": "16827947088089922339", + "type": "redeem", + "inputIndex": 1, + "inputQty": "466987937247785784442880", + "expectedQty": "465204145169900448691509", + "swapFee": "280192762348671470665", "reserves": [ - "4436230552399615924404855", - "11754520057052157482943704", - "35718992719652359260108450" + "612114414863975847794071607", + "419324232666275034153961276", + "714965069812081073522395738" ], - "mAssetSupply": "51659848630204863781434153", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1746043254287384114143215611" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "11764398460347232256", - "expectedQty": "12462637315950586576", + "type": "redeemMasset", + "inputQty": "23030108289670417953587", + "expectedQtys": [ + "8071296118811985344903", + "5529178809479958847774", + "9427477368496140927376" + ], + "redemptionFee": "6909032486901125386", "reserves": [ - "4436242316798076271637111", - "11754520057052157482943704", - "35718992719652359260108450" - ] + "612106343567857035808726704", + "419318703487465554195113502", + "714955642334712577381468362" + ], + "mAssetSupply": "1746020231088126930626387410" }, { - "type": "mintMulti", - "inputQtys": [ - "737557876178877939712", - "136186421721838895104", - "1083900624881510645760" + "type": "redeemMasset", + "inputQty": "42052746570002970810777", + "expectedQtys": [ + "14738105696536714917766", + "10096225006444335028447", + "17214479045659767799778" ], - "expectedQty": "1984601110437728359537", + "redemptionFee": "12615823971000891243", "reserves": [ - "4436979874674255149576823", - "11754656243473879321838808", - "35720076620277240770754210" + "612091605462160499093808938", + "419308607262459109860085055", + "714938427855666917613668584" ], - "mAssetSupply": "51661845693952617460380266" + "mAssetSupply": "1745978190957380898656467876" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "531854893784328508014592", - "11086606289954429468672", - "183759877640758153445376" + "21073867671511913988096", + "54282912288870741573632", + "43042770614474153918464" ], - "expectedQty": "752240356817163745632107", + "expectedQty": "118481982334786487944149", + "swapFee": "71131868521985083816", "reserves": [ - "4968834768458583657591415", - "11765742849763833751307480", - "35903836497917998924199586" + "612070531594488987179820842", + "419254324350170239118511423", + "714895385085052443459750120" ], - "mAssetSupply": "52414086050769781206012373" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "341283621755408089088", - "expectedQty": "343276264976701191336", - "reserves": [ - "4968834768458583657591415", - "11766084133385589159396568", - "35903836497917998924199586" - ] + "mAssetSupply": "1745859708975046112168523727" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "248161007148200099840", - "outputIndex": 2, - "expectedQty": "253200641850840544214", - "swapFee": "149765870662845604", + "type": "redeemMasset", + "inputQty": "486830091439092013203456", + "expectedQtys": [ + "170623652648666204220177", + "116873302204276181928210", + "199287591165555030034197" + ], + "redemptionFee": "146049027431727603961", "reserves": [ - "4968834768458583657591415", - "11766332294392737359496408", - "35903583297276148083655372" + "611899907941840320975600665", + "419137451047965962936583213", + "714696097493886888429715923" ], - "mAssetSupply": "52414429476800628570049313", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1745373024932634451882924232" }, { "type": "mintMulti", "inputQtys": [ - "2684172444387004118990848", - "940667202323945598484480", - "1621791824153200409182208" + "4951171414089739832131584", + "5016239648512853793570816", + "2812605588456111219933184" ], - "expectedQty": "5318124253068763263585269", + "expectedQty": "12787773482457316710208061", "reserves": [ - "7653007212845587776582263", - "12706999496716682957980888", - "37525375121429348492837580" + "616851079355930060807732249", + "424153690696478816730154029", + "717508703082342999649649107" ], - "mAssetSupply": "57732553729869391833634582" + "mAssetSupply": "1758160798415091768593132293" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "271357711628879", - "278867881453359", - "447612677111400" + "746100604039032702238720", + "1574603001688589137346560", + "134577871733703097450496" ], - "expectedQty": "1000619032837244", - "swapFee": "600731858817", + "expectedQty": "2459547037656406560795141", "reserves": [ - "7653007212574230064953384", - "12706999496437815076527529", - "37525375120981735815726180" + "617597179959969093509970969", + "425728293698167405867500589", + "717643280954076702747099603" ], - "mAssetSupply": "57732553728868772800797338" + "mAssetSupply": "1760620345452748175153927434" }, { "type": "redeemBassets", "inputQtys": [ - "162201886627296768", - "264929526340311136", - "231095051956587136" + "5965772616934587629568", + "14287118449609401171968", + "8278980126136884789248" ], - "expectedQty": "660819114914692759", - "swapFee": "396729506652807", + "expectedQty": "28558146053200619483056", + "swapFee": "17145174736762429147", "reserves": [ - "7653007050372343437656616", - "12706999231508288736216393", - "37525374889886683859139044" + "617591214187352158922341401", + "425714006579717796466328621", + "717635001973950565862310355" ], - "mAssetSupply": "57732553068049657886104579" + "mAssetSupply": "1760591787306694974534444378" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1181331587333947639463936", - "expectedQty": "1151135521394778373784910", - "swapFee": "708798952400368583678", + "inputQty": "4134253368507244379897856", + "expectedQty": "4134325076959788837206935", + "swapFee": "2480552021104346627938", "reserves": [ - "6501871528977565063871706", - "12706999231508288736216393", - "37525374889886683859139044" + "613456889110392370085134466", + "425714006579717796466328621", + "717635001973950565862310355" ], - "mAssetSupply": "56551930279668110615224321" + "mAssetSupply": "1756460014490208834501174460" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "238179554465747474317312", - "expectedQty": "235325053216140395012059", + "type": "redeemBassets", + "inputQtys": [ + "49831469495221466693632", + "90221762047044363485184", + "75556504588918225633280" + ], + "expectedQty": "215724000962311696961782", + "swapFee": "129512107842092273541", "reserves": [ - "6501871528977565063871706", - "12706999231508288736216393", - "37763554444352431333456356" - ] + "613407057640897148618440834", + "425623784817670752102843437", + "717559445469361647636677075" + ], + "mAssetSupply": "1756244290489246522804212678" }, { "type": "mintMulti", "inputQtys": [ - "585156483927804936192", - "319137138145337802752", - "191282397608466087936" + "202380012156938943987712", + "119290513385480739880960", + "996457667105456996220928" ], - "expectedQty": "1112993377506031688375", + "expectedQty": "1316560128187747492051026", "reserves": [ - "6502456685461492868807898", - "12707318368646434074019145", - "37763745726750039799544292" + "613609437653054087562428546", + "425743075331056232842724397", + "718555903136467104632898003" ], - "mAssetSupply": "56788368326261757041924755" + "mAssetSupply": "1757560850617434270296263704" }, { - "type": "mintMulti", - "inputQtys": [ - "15202441114989898", - "12147548704094870", - "1082540445839776" - ], - "expectedQty": "28952965138028222", + "type": "redeem", + "inputIndex": 0, + "inputQty": "707863571215333072044032", + "expectedQty": "707858496126561764537971", + "swapFee": "424718142729199843226", "reserves": [ - "6502456700663933983797796", - "12707318380793982778114015", - "37763745727832580245384068" + "612901579156927525797890575", + "425743075331056232842724397", + "718555903136467104632898003" ], - "mAssetSupply": "56788368355214722179952977" + "mAssetSupply": "1756853411764361666424062898" }, { "type": "redeemMasset", - "inputQty": "28747110454087018086400", + "inputQty": "1475039829461191937228", "expectedQtys": [ - "3290652088746716896377", - "6430702378665544365768", - "19110830641210399291561" + "514432802686847534162", + "357343186761468491500", + "603112701465281634111" ], - "redemptionFee": "8624133136226105425", + "redemptionFee": "442511948838357581", "reserves": [ - "6499166048575187266901419", - "12700887678415317233748247", - "37744634897191369846092507" + "612901064724124838950356413", + "425742717987869471374232897", + "718555300023765639351263892" ], - "mAssetSupply": "56759629868893771387972002" + "mAssetSupply": "1756851937167044154070483251" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "60493997252872044544", - "expectedQty": "59765798368376916358", + "inputIndex": 0, + "inputQty": "1222422954098982649856", + "expectedQty": "1221702244421576548795", "reserves": [ - "6499166048575187266901419", - "12700887678415317233748247", - "37744695391188622718137051" + "612902287147078937933006269", + "425742717987869471374232897", + "718555300023765639351263892" ] }, { - "type": "mintMulti", - "inputQtys": [ - "83997420793906167808", - "83697672290055962624", - "31641544780836786176" + "type": "redeemMasset", + "inputQty": "1463103423172129167769", + "expectedQtys": [ + "510270541415976230080", + "354451226186152455181", + "598231740473924584051" ], - "expectedQty": "201994319673812588628", + "redemptionFee": "438931026951638750", "reserves": [ - "6499250045995981173069227", - "12700971376087607289710871", - "37744727032733403554923227" + "612901776876537521956776189", + "425742363536643285221777716", + "718554701792025165426679841" ], - "mAssetSupply": "56759891629011813577476988" + "mAssetSupply": "1756851696204796430469503027" }, { "type": "mintMulti", "inputQtys": [ - "22980518885324612435968", - "34542344871970259075072", - "176184419368347303936" + "47682033340564669202432", + "6822339529097751251910656", + "2590271283833146060046336" ], - "expectedQty": "58588800786734012484249", + "expectedQty": "9476442984964394987915874", "reserves": [ - "6522230564881305785505195", - "12735513720959577548785943", - "37744903217152771902227163" + "612949458909878086625978621", + "432564703065741036473688372", + "721144973075858311486726177" ], - "mAssetSupply": "56818480429798547589961237" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "136997879930345985409024", - "expectedQty": "132781034673332911350916", - "swapFee": "82198727958207591245", - "reserves": [ - "6389449530207972874154279", - "12735513720959577548785943", - "37744903217152771902227163" - ], - "mAssetSupply": "56681564748596159812143458" + "mAssetSupply": "1766328139189760825457418901" }, { "type": "mintMulti", "inputQtys": [ - "162404349529733386469376", - "129235344107748395581440", - "57695612695336445804544" - ], - "expectedQty": "354373387167172567622805", - "reserves": [ - "6551853879737706260623655", - "12864749065067325944367383", - "37802598829848108348031707" - ], - "mAssetSupply": "57035938135763332379766263" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "583623065373015808", - "expectedQty": "586694883292227120", - "reserves": [ - "6551853879737706260623655", - "12864749648690391317383191", - "37802598829848108348031707" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "48154441946110", - "11431509406324", - "64103937925253" + "1267675999849801728", + "1675485701188103936", + "704085169428988288" ], - "expectedQty": "124447805069422", - "swapFee": "74713511148", + "expectedQty": "3650323465093507839", "reserves": [ - "6551853879689551818677545", - "12864749648678959807976867", - "37802598829784004410106454" + "612949460177554086475780349", + "432564704741226737661792308", + "721144973779943480915714465" ], - "mAssetSupply": "57035938722333767866923961" + "mAssetSupply": "1766328142840084290550926740" }, { - "type": "redeemBassets", - "inputQtys": [ - "1059877625233205146681344", - "1603972690112001697906688", - "466774911113971420364800" + "type": "redeemMasset", + "inputQty": "130592463844826517864448", + "expectedQtys": [ + "45304473332010414319897", + "31971830311492788395081", + "53301447110603391595291" ], - "expectedQty": "3172782229266560960403513", - "swapFee": "1904812224894873500342", + "redemptionFee": "39177739153447955359", "reserves": [ - "5491976254456346671996201", - "11260776958566958110070179", - "37335823918670032989741654" + "612904155704222076061460452", + "432532732910915244873397227", + "721091672332832877524119174" ], - "mAssetSupply": "53863156493067206906520448" + "mAssetSupply": "1766197589553978617481017651" }, { "type": "redeemMasset", - "inputQty": "908982072685940545945", + "inputQty": "7174908888661930068777369", "expectedQtys": [ - "92653506616760766757", - "189977236626587088703", - "629881639725542850325" + "2489082898322743572843342", + "1756571265561646893631335", + "2928446369668231731813408" ], - "redemptionFee": "272694621805782163", + "redemptionFee": "2152472666598579020633", "reserves": [ - "5491883600949729911229444", - "11260586981330331522981476", - "37335194037030307446891329" + "610415072805899332488617110", + "430776161645353597979765892", + "718163225963164645792305766" ], - "mAssetSupply": "53862247783689142771756666" + "mAssetSupply": "1759024833137983285991260915" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1875467602233896468480", - "outputIndex": 2, - "expectedQty": "1982387771722995266549", - "swapFee": "1172703885061297849", - "reserves": [ - "5493759068551963807697924", - "11260586981330331522981476", - "37333211649258584451624780" + "type": "mintMulti", + "inputQtys": [ + "588870633475402679451648", + "2992692227618403277340672", + "1410971361756004950736896" ], - "mAssetSupply": "53862248956393027833054515", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1310827346832421384355840", - "expectedQty": "1297327947269743198030596", - "swapFee": "786496408099452830613", + "expectedQty": "4998587473881554579733420", "reserves": [ - "5493759068551963807697924", - "9963259034060588324950880", - "37333211649258584451624780" + "611003943439374735168068758", + "433768853872972001257106564", + "719574197324920650743042662" ], - "mAssetSupply": "52552208105968705901529288" + "mAssetSupply": "1764023420611864840570994335" }, { "type": "redeemBassets", "inputQtys": [ - "181742971179808928", - "352981234095045568", - "525705379076950528" + "1042357451038944657408", + "401049801019384922112", + "1544974468914656837632" ], - "expectedQty": "1064001540090405267", - "swapFee": "638784194570985", + "expectedQty": "2986261660549995108258", + "swapFee": "1792832695947565604", "reserves": [ - "5493758886808992627888996", - "9963258681079354229905312", - "37333211123553205374674252" + "611002901081923696223411350", + "433768452823170981872184452", + "719572652350451736086205030" ], - "mAssetSupply": "52552207041967165811124021" + "mAssetSupply": "1764020434350204290575886077" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "312879536270546698240", - "expectedQty": "326122211371509548925", + "type": "redeem", + "inputIndex": 2, + "inputQty": "22787419557762680018173952", + "expectedQty": "22812693781189935863884436", + "swapFee": "13672451734657608010904", "reserves": [ - "5494071766345263174587236", - "9963258681079354229905312", - "37333211123553205374674252" - ] + "611002901081923696223411350", + "433768452823170981872184452", + "696759958569261800222320594" + ], + "mAssetSupply": "1741246687244176268165723029" }, { "type": "redeemBassets", "inputQtys": [ - "373208488372954791936", - "35607773827433630793728", - "35165262066302144479232" + "307728344416934403506176", + "297602943638750959239168", + "288151682747686851706880" ], - "expectedQty": "71029048636375326273164", - "swapFee": "42643014990819687576", + "expectedQty": "893662709941456747084294", + "swapFee": "536519537687486540174", "reserves": [ - "5493698557856890219795300", - "9927650907251920599111584", - "37298045861486903230195020" + "610695172737506761819905174", + "433470849879532230912945284", + "696471806886514113370613714" ], - "mAssetSupply": "52481504115542161994399782" + "mAssetSupply": "1740353024534234811418638735" }, { - "type": "mintMulti", - "inputQtys": [ - "10522520005462214656", - "11991269130654121984", - "8279598730115225600" - ], - "expectedQty": "31249842365286391656", + "type": "mint", + "inputIndex": 1, + "inputQty": "958317929427860062208", + "expectedQty": "960997898303310038716", "reserves": [ - "5493709080376895682009956", - "9927662898521051253233568", - "37298054141085633345420620" - ], - "mAssetSupply": "52481535365384527280791438" + "610695172737506761819905174", + "433471808197461658773007492", + "696471806886514113370613714" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "1114626891843269820416", - "718872907962997407744", - "2229858512944173416448" - ], - "expectedQty": "4083839529066734727811", + "type": "redeem", + "inputIndex": 0, + "inputQty": "44623725390769537024", + "expectedQty": "44623728920244367338", + "swapFee": "26774235234461722", "reserves": [ - "5494823707268738951830372", - "9928381771429014250641312", - "37300283999598577518837068" + "610695128113777841575537836", + "433471808197461658773007492", + "696471806886514113370613714" ], - "mAssetSupply": "52485619204913594015519249" + "mAssetSupply": "1740353940935181959193602149" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1435634037491522076672000", - "expectedQty": "1449537541864987584357133", + "inputQty": "99418580680172732678144", + "expectedQty": "99696507022651487119953", "reserves": [ - "5494823707268738951830372", - "11364015808920536327313312", - "37300283999598577518837068" + "610695128113777841575537836", + "433571226778141831505685636", + "696471806886514113370613714" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "159239408322368264732672", - "210758803275822464499712", - "260954017874075164082176" + "type": "redeemMasset", + "inputQty": "156836019250774812288614", + "expectedQtys": [ + "55014541675503652501187", + "39058314413867991905203", + "62741743763563874822568" ], - "expectedQty": "635618255746992880150821", - "swapFee": "381599913396233468171", + "redemptionFee": "47050805775232443686", "reserves": [ - "5335584298946370687097700", - "11153257005644713862813600", - "37039329981724502354754892" + "610640113572102337923036649", + "433532168463727963513780433", + "696409065142750549495791146" ], - "mAssetSupply": "53299538491031588719725561" + "mAssetSupply": "1740296848473759611100877174" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1948847222629122441216", - "outputIndex": 2, - "expectedQty": "1993178746273303923601", - "swapFee": "1178749039225854774", + "inputIndex": 2, + "inputQty": "31923955442814861312", + "outputIndex": 0, + "expectedQty": "31872137226444697632", + "swapFee": "19123293618286137", "reserves": [ - "5335584298946370687097700", - "11155205852867342985254816", - "37037336802978229050831291" + "610640081699965111478339017", + "433532168463727963513780433", + "696409097066705992310652458" ], - "mAssetSupply": "53299539669780627945580335", + "mAssetSupply": "1740296848492882904719163311", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "271148190823984568205312", - "expectedQty": "259005888095853810211476", - "swapFee": "162688914494390740923", - "reserves": [ - "5076578410850516876886224", - "11155205852867342985254816", - "37037336802978229050831291" - ], - "mAssetSupply": "53028554167871137768115946" - }, { "type": "mintMulti", "inputQtys": [ - "1367297058517967949529088", - "211026254919608517525504", - "1042359277791745289486336" + "10173050082171752701493248", + "25878440087884896590102528", + "33242569630350728069382144" ], - "expectedQty": "2661149149360878623327177", + "expectedQty": "69303867406049603501798191", "reserves": [ - "6443875469368484826415312", - "11366232107786951502780320", - "38079696080769974340317627" + "620813131782136864179832265", + "459410608551612860103882961", + "729651666697056720380034602" ], - "mAssetSupply": "55689703317232016391443123" + "mAssetSupply": "1809600715898932508220961502" }, { - "type": "mintMulti", - "inputQtys": [ - "273503286719581574397952", - "591217254311512298749952", - "97835548238796814286848" + "type": "redeemMasset", + "inputQty": "24627772980832233", + "expectedQtys": [ + "8446425758621159", + "6250476027649352", + "9927220151930768" ], - "expectedQty": "974186018114356716632241", + "redemptionFee": "7388331894249", "reserves": [ - "6717378756088066400813264", - "11957449362098463801530272", - "38177531629008771154604475" + "620813131773690438421211106", + "459410608545362384076233609", + "729651666687129500228103834" ], - "mAssetSupply": "56663889335346373108075364" + "mAssetSupply": "1809600715874312123572023518" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4853877249003226112", - "4147018045510701568", - "9712283200229521408" + "13200600267041479327744", + "1909769734632187625472", + "39363610954496735182848" ], - "expectedQty": "18765007434408063411", - "swapFee": "11265763918996235", + "expectedQty": "54408301763920110656589", "reserves": [ - "6717373902210817397587152", - "11957445215080418290828704", - "38177521916725570925083067" + "620826332373957479900538850", + "459412518315097016263859081", + "729691030298083996963286682" ], - "mAssetSupply": "56663870570338938700011953" + "mAssetSupply": "1809655124176076043682680107" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "192973380224124289024", - "expectedQty": "194349813574521400128", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4294855243161627", + "expectedQty": "4293985376359356", + "swapFee": "2576913145896", "reserves": [ - "6717373902210817397587152", - "11957638188460642415117728", - "38177521916725570925083067" - ] + "620826332369663494524179494", + "459412518315097016263859081", + "729691030298083996963286682" + ], + "mAssetSupply": "1809655124171783765352664376" }, { - "type": "redeemMasset", - "inputQty": "198676484404828559743385", - "expectedQtys": [ - "23545502037925478786741", - "41913491556947948071599", - "133818503060750911388909" + "type": "mintMulti", + "inputQtys": [ + "73078413154301870342144", + "1326409519126045245046784", + "632412252893543864991744" ], - "redemptionFee": "59602945321448567923", + "expectedQty": "2034226642178699834895257", "reserves": [ - "6693828400172891918800411", - "11915724696903694467046129", - "38043703413664820013694158" + "620899410782817796394521638", + "460738927834223061508905865", + "730323442550977540828278426" ], - "mAssetSupply": "56465448038693006110236619" + "mAssetSupply": "1811689350813962465187559633" }, { - "type": "redeemBassets", - "inputQtys": [ - "66435604151285005156352", - "49036677891885767852032", - "61440850692971287281664" - ], - "expectedQty": "178462470953688177694456", - "swapFee": "107141767632792582165", + "type": "swap", + "inputIndex": 2, + "inputQty": "170817951949637438930944", + "outputIndex": 0, + "expectedQty": "170498428275694157340381", + "swapFee": "102320957275676879498", "reserves": [ - "6627392796021606913644059", - "11866688019011808699194097", - "37982262562971848726412494" + "620728912354542102237181257", + "460738927834223061508905865", + "730494260502927178267209370" ], - "mAssetSupply": "56286985567739317932542163" + "mAssetSupply": "1811689453134919740864439131", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "34374270245497517113344", - "7898461457188213751808", - "30560027615929810550784" + "110202453273434044497920", + "148579955612483808395264", + "8638660660318302109696" ], - "expectedQty": "73527952183725132421948", + "expectedQty": "267744234607630470708301", + "swapFee": "160742986556512189738", "reserves": [ - "6661767066267104430757403", - "11874586480468996912945905", - "38012822590587778536963278" + "620618709901268668192683337", + "460590347878610577700510601", + "730485621842266859965099674" ], - "mAssetSupply": "56360513519923043064964111" + "mAssetSupply": "1811421708900312110393730830" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1564577451602349104562176", - "expectedQty": "1549739297009538829106323", - "swapFee": "938746470961409462737", + "inputQty": "1088933695333559959552", + "expectedQty": "1085503389178843116100", + "swapFee": "653360217200135975", "reserves": [ - "6661767066267104430757403", - "10324847183459458083839582", - "38012822590587778536963278" + "620618709901268668192683337", + "460589262375221398857394501", + "730485621842266859965099674" ], - "mAssetSupply": "54796874814791655369864672" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "661923787515958600400896", - "expectedQty": "652891163485282025444229", - "reserves": [ - "6661767066267104430757403", - "10324847183459458083839582", - "38674746378103737137364174" - ] + "mAssetSupply": "1811420620619976994033907253" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "482974649833075698040832", - "304314527948998470270976", - "292209443868233835741184" + "169769086749064527872", + "215191061962183016448", + "99109828658695553024" ], - "expectedQty": "1094805350068586286468060", - "swapFee": "657277576587104034301", + "expectedQty": "484390617651315911667", "reserves": [ - "6178792416434028732716571", - "10020532655510459613568606", - "38382536934235503301622990" + "620618879670355417257211209", + "460589477566283361040410949", + "730485720952095518660652698" ], - "mAssetSupply": "54354960628208351108840841" + "mAssetSupply": "1811421105010594645349818920" }, { "type": "redeemMasset", - "inputQty": "75552514068419234181939", + "inputQty": "94305943265113203435110", "expectedQtys": [ - "8585844761627717294217", - "13924199424502960429071", - "53335098748143364470827" + "32300877073225777910661", + "23971948942307433655559", + "38019032693225693646798" ], - "redemptionFee": "22665754220525770254", + "redemptionFee": "28291782979533961030", "reserves": [ - "6170206571672401015422354", - "10006608456085956653139535", - "38329201835487359937152163" + "620586578793282191479300548", + "460565505617341053606755390", + "730447701919402292967005900" ], - "mAssetSupply": "54279430779894152400429156" + "mAssetSupply": "1811326827359112511680344840" }, { "type": "redeemMasset", - "inputQty": "141961395874628108288", + "inputQty": "54501169777189258998579", "expectedQtys": [ - "16132600247024926600", - "26163243025229638217", - "100215395354559632526" + "18667281449813353014508", + "13853837986880366153262", + "21971910611751784544541" ], - "redemptionFee": "42588418762388432", + "redemptionFee": "16350350933156777699", "reserves": [ - "6170190439072153990495754", - "10006582292842931423501318", - "38329101620092005377519637" + "620567911511832378126286040", + "460551651779354173240602128", + "730425730008790541182461359" ], - "mAssetSupply": "54279288861086696534709300" + "mAssetSupply": "1811272342539686255578123960" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "416897863037597966663680", - "expectedQty": "401478492402868256098298", - "swapFee": "250138717822558779998", + "inputQty": "4601263966019352788992", + "expectedQty": "4599491279187771098188", "reserves": [ - "5768711946669285734397456", - "10006582292842931423501318", - "38329101620092005377519637" - ], - "mAssetSupply": "53862641136766921126825618" + "620572512775798397479075032", + "460551651779354173240602128", + "730425730008790541182461359" + ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "153122195241394592", - "expectedQty": "150723668201214347", + "inputIndex": 0, + "inputQty": "17445735367468975652864", + "expectedQty": "17439012455916608368135", "reserves": [ - "5768711946669285734397456", - "10006582292842931423501318", - "38329101773214200618914229" + "620589958511165866454727896", + "460551651779354173240602128", + "730425730008790541182461359" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4974984183626460037120", - "expectedQty": "4910592570972283935546", - "swapFee": "2984990510175876022", + "type": "redeemMasset", + "inputQty": "27721885938745842283315", + "expectedQtys": [ + "9495288588846940761747", + "7046634873381422522665", + "11175822302686964198103" + ], + "redemptionFee": "8316565781623752684", "reserves": [ - "5768711946669285734397456", - "10001671700271959139565772", - "38329101773214200618914229" + "620580463222577019513966149", + "460544605144480791818079463", + "730414554186487854218263256" ], - "mAssetSupply": "53857669288297473043878867" + "mAssetSupply": "1811266667474048395739059652" }, { - "type": "mintMulti", - "inputQtys": [ - "14218121333769148416", - "10237706246910046208", - "17910595477557071872" - ], - "expectedQty": "42789650884594118212", + "type": "swap", + "inputIndex": 2, + "inputQty": "624388514192869396840448", + "outputIndex": 0, + "expectedQty": "623214019406596283886009", + "swapFee": "374010635802304004982", "reserves": [ - "5768726164790619503545872", - "10001681937978206049611980", - "38329119683809678175986101" + "619957249203170423230080140", + "460544605144480791818079463", + "731038942700680723615103704" ], - "mAssetSupply": "53857712077948357637997079" + "mAssetSupply": "1811267041484684198043064634", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "1105283944489979262009344", - "1112300813972187144781824", - "614516422438275633905664" + "1033062627413048819712", + "1131907423867050131456", + "1318030809991564754944" ], - "expectedQty": "2892667576046278882963424", - "swapFee": "1736642531146455202899", + "expectedQty": "3483310759431538718116", + "swapFee": "2091241200379150721", "reserves": [ - "4663442220300640241536528", - "8889381124006018904830156", - "37714603261371402542080437" + "619956216140543010181260428", + "460543473237056924767948007", + "731037624669870732050348760" ], - "mAssetSupply": "50965044501902078755033655" + "mAssetSupply": "1811263558173924766504346518" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "109564983969462042624", - "expectedQty": "107410498490639526282", + "type": "redeem", + "inputIndex": 1, + "inputQty": "123235938776697540706304", + "expectedQty": "122847573890168969427976", + "swapFee": "73941563266018524423", "reserves": [ - "4663442220300640241536528", - "8889381124006018904830156", - "37714712826355372004123061" - ] + "619956216140543010181260428", + "460420625663166755798520031", + "731037624669870732050348760" + ], + "mAssetSupply": "1811140396176711334982164637" }, { "type": "redeemMasset", - "inputQty": "5861276896829264573235", + "inputQty": "20177086316342240555827", "expectedQtys": [ - "536160984561961971802", - "1022021740688861027533", - "4336101232995815964303" + "6904576497102723633573", + "5127796686233332836584", + "8141712382877585205643" ], - "redemptionFee": "1758383069048779371", + "redemptionFee": "6053125894902672166", "reserves": [ - "4662906059316078279564726", - "8888359102265330043802623", - "37710376725122376188158758" + "619949311564045907457626855", + "460415497866480522465683447", + "731029482957487854465143117" ], - "mAssetSupply": "50959292393886809178766073" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "16681105268814970880", - "expectedQty": "16353087270662950483", - "reserves": [ - "4662906059316078279564726", - "8888359102265330043802623", - "37710393406227645003129638" - ] + "mAssetSupply": "1811120225143520887644280976" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "11415192142792", - "expectedQty": "10750707378114", - "swapFee": "6849115285", + "inputIndex": 1, + "inputQty": "871041000889394288132096", + "expectedQty": "868288114160912542921856", + "swapFee": "522624600533636572879", "reserves": [ - "4662906059305327572186612", - "8888359102265330043802623", - "37710393406227645003129638" + "619949311564045907457626855", + "459547209752319609922761591", + "731029482957487854465143117" ], - "mAssetSupply": "50959308746962671498689049" + "mAssetSupply": "1810249706767232026992721759" }, { "type": "mint", "inputIndex": 1, - "inputQty": "706467797182220586713088", - "expectedQty": "717492382458594510770647", + "inputQty": "20517962750887306144514048", + "expectedQty": "20567080347113215466655001", "reserves": [ - "4662906059305327572186612", - "9594826899447550630515711", - "37710393406227645003129638" + "619949311564045907457626855", + "480065172503206916067275639", + "731029482957487854465143117" ] }, { "type": "mintMulti", "inputQtys": [ - "913674937864222574379008", - "3061115694941228339560448", - "2732756141277073572364288" + "1928321571114128284581888", + "3880772541178286071349248", + "599677120031073603944448" ], - "expectedQty": "6741368291038201099016781", + "expectedQty": "6415871454076634477972430", "reserves": [ - "5576580997169550146565620", - "12655942594388778970076159", - "40443149547504718575493926" + "621877633135160035742208743", + "483945945044385202138624887", + "731629160077518928069087565" ], - "mAssetSupply": "58418169420459467108476477" + "mAssetSupply": "1837232658568421876937349190" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "10656891020619141873664", - "expectedQty": "10814755230537632076766", - "swapFee": "6394134612371485124", + "inputQty": "51442357919909599342755840", + "outputIndex": 1, + "expectedQty": "51172853883463682359297146", + "swapFee": "30812914840483516807584", "reserves": [ - "5576580997169550146565620", - "12655942594388778970076159", - "40432334792274180943417160" + "621877633135160035742208743", + "432773091160921519779327741", + "783071517997428527411843405" ], - "mAssetSupply": "58407518923573460338087937" + "mAssetSupply": "1837263471483262360454156774", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "2926134257615097036800", - "1871712383539558219776", - "2959632919611046887424" - ], - "expectedQty": "7866168628046288138623", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1207745390689961451192320", + "expectedQty": "1209687140129086542513316", + "swapFee": "724647234413976870715", "reserves": [ - "5579507131427165243602420", - "12657814306772318528295935", - "40435294425193791990304584" + "621877633135160035742208743", + "432773091160921519779327741", + "781861830857299440869330089" ], - "mAssetSupply": "58415385092201506626226560" + "mAssetSupply": "1836056450739806812979835169" }, { - "type": "mintMulti", - "inputQtys": [ - "26541890383157640", - "21990366188673328", - "24408574536312224" - ], - "expectedQty": "73998347374204583", + "type": "mint", + "inputIndex": 2, + "inputQty": "458975939764822942416896", + "expectedQty": "457965453219320706579860", "reserves": [ - "5579507157969055626760060", - "12657814328762684716969263", - "40435294449602366526616808" - ], - "mAssetSupply": "58415385166199854000431143" + "621877633135160035742208743", + "432773091160921519779327741", + "782320806797064263811746985" + ] }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "18735453168591880323072", + "expectedQty": "18800696828910950704053", + "reserves": [ + "621877633135160035742208743", + "432791826614090111659650813", + "782320806797064263811746985" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "28924974189719547904", - "59444117579022295040", - "10637443470287058944" + "120094108169043836928", + "112199536524858285359104", + "6107160091246767112192" ], - "expectedQty": "100650070666281401456", + "expectedQty": "118804124678618886132582", + "swapFee": "71325269969152823373", "reserves": [ - "5579536082943245346307964", - "12657873772880263739264303", - "40435305087045836813675752" + "621877513041051866698371815", + "432679627077565253374291709", + "782314699636973017044634793" ], - "mAssetSupply": "58415485816270520281832599" + "mAssetSupply": "1836414412765176425750986500" }, { - "type": "redeemMasset", - "inputQty": "211181092782316634243072", - "expectedQtys": [ - "20164841959220071211341", - "45746459987985982640515", - "146136080945104730631798" - ], - "redemptionFee": "63354327834694990272", + "type": "redeem", + "inputIndex": 0, + "inputQty": "230470038456086254583808", + "expectedQty": "230420834583137943354900", + "swapFee": "138282023073651752750", "reserves": [ - "5559371240984025275096623", - "12612127312892277756623788", - "40289169006100732083043954" + "621647092206468728755016915", + "432679627077565253374291709", + "782314699636973017044634793" ], - "mAssetSupply": "58204368077816038342579799" + "mAssetSupply": "1836184081008743413148155442" }, { "type": "mintMulti", "inputQtys": [ - "5255258461969986913042432", - "5589939563928307932069888", - "5187910553389551484665856" + "3681586705953557160394752", + "3620371599535225656311808", + "1118955068626372703289344" ], - "expectedQty": "16144767405795906736102697", + "expectedQty": "8429555706667420339481858", "reserves": [ - "10814629702954012188139055", - "18202066876820585688693676", - "45477079559490283567709810" + "625328678912422285915411667", + "436299998677100479030603517", + "783433654705599389747924137" ], - "mAssetSupply": "74349135483611945078682496" + "mAssetSupply": "1844613636715410833487637300" }, { - "type": "redeemMasset", - "inputQty": "211584937397792976509337", - "expectedQtys": [ - "30767355531113744869298", - "51784432604962543417518", - "129381172888553885715552" - ], - "redemptionFee": "63475481219337892952", + "type": "swap", + "inputIndex": 1, + "inputQty": "114912700181444160389120", + "outputIndex": 2, + "expectedQty": "115488817608927179602525", + "swapFee": "69184309167082555069", "reserves": [ - "10783862347422898443269757", - "18150282444215623145276158", - "45347698386601729681994258" + "625328678912422285915411667", + "436414911377281923190992637", + "783318165887990462568321612" ], - "mAssetSupply": "74137614021695371440066111" + "mAssetSupply": "1844613705899720000570192369", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "4487282047740454895616", - "expectedQtys": [ - "652512432260949812587", - "1098241479939572227641", - "2743909002023637329360" + "type": "redeemBassets", + "inputQtys": [ + "410962774749322", + "169292435922470", + "8050565960539110" ], - "redemptionFee": "1346184614322136468", + "expectedQty": "8613760253013527", + "swapFee": "5171358967188", "reserves": [ - "10783209834990637493457170", - "18149184202735683573048517", - "45344954477599706044664898" + "625328678912011323140662345", + "436414911377112630755070167", + "783318165879939896607782502" ], - "mAssetSupply": "74133128085832245307306963" + "mAssetSupply": "1844613705891106240317178842" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "204405994305916993536", - "expectedQty": "201047041485274532289", - "swapFee": "122643596583550196", + "type": "swap", + "inputIndex": 1, + "inputQty": "141480165581294521024512", + "outputIndex": 2, + "expectedQty": "142188686125889008137873", + "swapFee": "85179195813532484653", "reserves": [ - "10783008787949152218924881", - "18149184202735683573048517", - "45344954477599706044664898" + "625328678912011323140662345", + "436556391542693925276094679", + "783175977193814007599644629" ], - "mAssetSupply": "74132923802481535973863623" + "mAssetSupply": "1844613791070302053849663495", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "389758029917617061888", - "expectedQty": "396031953867713590747", + "inputIndex": 2, + "inputQty": "1872014025996085760", + "expectedQty": "1867952809249614430", + "reserves": [ + "625328678912011323140662345", + "436556391542693925276094679", + "783175979065828033595730389" + ] + }, + { + "type": "redeemMasset", + "inputQty": "513521228456693799164313", + "expectedQtys": [ + "174032752410101888240614", + "121496283417839927706100", + "217962610471413596217276" + ], + "redemptionFee": "154056368537008139749", "reserves": [ - "10783398545979069835986769", - "18149184202735683573048517", - "45344954477599706044664898" - ] + "625154646159601221252421731", + "436434895259276085348388579", + "782958016455356619999513113" + ], + "mAssetSupply": "1844100425766166706308253361" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "396857020546982862651392", - "outputIndex": 2, - "expectedQty": "401049353581416282174556", - "swapFee": "238822012280278258730", + "inputIndex": 2, + "inputQty": "215950688611050350182400", + "outputIndex": 0, + "expectedQty": "215436454460194512781286", + "swapFee": "129289222017869833047", "reserves": [ - "10783398545979069835986769", - "18546041223282666435699909", - "44943905124018289762490342" + "624939209705141026739640445", + "436434895259276085348388579", + "783173967143967670349695513" ], - "mAssetSupply": "74133558656447683965713100", + "mAssetSupply": "1844100555055388724178086408", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "4284414798102998886121472", - "expectedQty": "4290333926101250250688881", + "inputQty": "88696982050233968823894016", + "expectedQty": "88925197997324501217184036", "reserves": [ - "10783398545979069835986769", - "22830456021385665321821381", - "44943905124018289762490342" + "624939209705141026739640445", + "525131877309510054172282595", + "783173967143967670349695513" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "801099687921961589014528", - "expectedQty": "806371742008541494805436", - "swapFee": "480659812753176953408", - "reserves": [ - "10783398545979069835986769", - "22830456021385665321821381", - "44137533382009748267684906" + "type": "redeemMasset", + "inputQty": "10786297416259040234700", + "expectedQtys": [ + "3486119074339552339589", + "2929360529156377941007", + "4368805258154541119749" ], - "mAssetSupply": "77623273554439725804340861" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6176013838190966784", - "expectedQty": "6171573792607859678", - "swapFee": "3705608302914580", + "redemptionFee": "3235889224877712070", "reserves": [ - "10783398545979069835986769", - "22830449849811872713961703", - "44137533382009748267684906" + "624935723586066687187300856", + "525128947948980897794341588", + "783169598338709515808575764" ], - "mAssetSupply": "77623267382131495916288657" + "mAssetSupply": "1933014969991186191232747814" }, { "type": "swap", "inputIndex": 1, - "inputQty": "8900314092356169105408", + "inputQty": "72864706599179899767881728", "outputIndex": 2, - "expectedQty": "8959085580574514002479", - "swapFee": "5340813386632700487", + "expectedQty": "72997083123814233354786813", + "swapFee": "43778605786877999719912", "reserves": [ - "10783398545979069835986769", - "22839350163904228883067111", - "44128574296429173753682427" + "624935723586066687187300856", + "597993654548160797562223316", + "710172515214895282453788951" ], - "mAssetSupply": "77623272722944882548989144", + "mAssetSupply": "1933058748596973069232467726", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "10968810941191601057169408", + "expectedQty": "10970860630269201578626191", + "reserves": [ + "635904534527258288244470264", + "597993654548160797562223316", + "710172515214895282453788951" + ] + }, { "type": "mint", "inputIndex": 2, - "inputQty": "952682917259698896896", - "expectedQty": "945977025867472748422", + "inputQty": "379691240737546502144", + "expectedQty": "379406544073549186079", "reserves": [ - "10783398545979069835986769", - "22839350163904228883067111", - "44129526979346433452579323" + "635904534527258288244470264", + "597993654548160797562223316", + "710172894906136020000291095" ] }, { - "type": "redeemMasset", - "inputQty": "2952943657544078642380", - "expectedQtys": [ - "410093860469709223937", - "868583057502542475310", - "1678250878190020586869" - ], - "redemptionFee": "885883097263223592", + "type": "swap", + "inputIndex": 2, + "inputQty": "110422035785198224801792", + "outputIndex": 0, + "expectedQty": "110257723463477504151794", + "swapFee": "66203517426686287987", "reserves": [ - "10782988452118600126762832", - "22838481580846726340591801", - "44127848728468243431992454" + "635794276803794810740318470", + "597993654548160797562223316", + "710283316941921218225092887" ], - "mAssetSupply": "77621266642196303206318778" + "mAssetSupply": "1944030054837303771046567983", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "50673448034624625180672", - "37568095197190804209664", - "16048099725893351505920" - ], - "expectedQty": "105023439053664154717873", + "type": "mint", + "inputIndex": 2, + "inputQty": "781207941699800448", + "expectedQty": "780621210524535051", "reserves": [ - "10833661900153224751943504", - "22876049676043917144801465", - "44143896828194136783498374" - ], - "mAssetSupply": "77726290081249967361036651" + "635794276803794810740318470", + "597993654548160797562223316", + "710283317723129159924893335" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "2631361608596143996928", - "244274618180567302144", - "10189982854010414039040" - ], - "expectedQty": "13037809595520460124803", - "swapFee": "7827382186624250625", + "type": "mint", + "inputIndex": 0, + "inputQty": "9794208215349406172446720", + "expectedQty": "9795145983955946369987731", "reserves": [ - "10831030538544628607946576", - "22875805401425736577499321", - "44133706845340126369459334" - ], - "mAssetSupply": "77713252271654446900911848" + "645588485019144216912765190", + "597993654548160797562223316", + "710283317723129159924893335" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "2142234996869550682669056", - "expectedQty": "2155525938544864608526646", - "swapFee": "1285340998121730409601", + "inputQty": "413373085200138249437184", + "expectedQty": "413078118990549325935556", "reserves": [ - "10831030538544628607946576", - "22875805401425736577499321", - "41978180906795261760932688" - ], - "mAssetSupply": "75572302615783017948652393" + "645588485019144216912765190", + "597993654548160797562223316", + "710696690808329298174330519" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1784420760442925824", - "1787523024341704960", - "2033447905448246272" + "4859764697457325068255232", + "426001359082121318105088", + "1890206652483242251255808" ], - "expectedQty": "5619038217843622832", - "swapFee": "3373446998905517", + "expectedQty": "7175261344053102633594199", + "swapFee": "4307741451302643166056", "reserves": [ - "10831028754123868165020752", - "22875803613902712235794361", - "41978178873347356312686416" + "640728720321686891844509958", + "597567653189078676244118228", + "708806484155846055923074711" ], - "mAssetSupply": "75572296996744800105029561" + "mAssetSupply": "1947063018376818374633432122" }, { - "type": "redeemMasset", - "inputQty": "634262355232569958", - "expectedQtys": [ - "90875269985983817", - "191934199119196500", - "352208310515554895" + "type": "redeemBassets", + "inputQtys": [ + "977085110862136265932800", + "1360303134681383118569472", + "1445343064617672303968256" ], - "redemptionFee": "190278706569770", + "expectedQty": "3782720820509437005448993", + "swapFee": "2270995089359277769931", "reserves": [ - "10831028663248598179036935", - "22875803421968513116597861", - "41978178521139045797131521" + "639751635210824755578577158", + "596207350054397293125548756", + "707361141091228383619106455" ], - "mAssetSupply": "75572296362672723579029373" + "mAssetSupply": "1943280297556308937627983129" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3500095734535098368", - "outputIndex": 2, - "expectedQty": "3520274692212493150", - "swapFee": "2099652936885411", + "type": "mintMulti", + "inputQtys": [ + "45473995752744956651896832", + "35690564760278657413414912", + "20656713258231922537005056" + ], + "expectedQty": "101832704123722972625340733", "reserves": [ - "10831028663248598179036935", - "22875806922064247651696229", - "41978175000864353584638371" + "685225630963569712230473990", + "631897914814675950538963668", + "728017854349460306156111511" ], - "mAssetSupply": "75572296364772376515914784", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2045113001680031910253323862" }, { "type": "mintMulti", "inputQtys": [ - "471568798525654630400", - "418409246884429561856", - "745281976739236806656" + "3779309207711944045232128", + "1277331318976335438675968", + "1475398282958101641428992" ], - "expectedQty": "1637521111497074166596", + "expectedQty": "6531821292079459426777207", "reserves": [ - "10831500232047123833667335", - "22876225331311132081258085", - "41978920282841092821445027" + "689004940171281656275706118", + "633175246133652285977639636", + "729493252632418407797540503" ], - "mAssetSupply": "75573933885883873590081380" + "mAssetSupply": "2051644822972111369680101069" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2090720581095234732032", - "expectedQty": "2058034071081217313274", - "swapFee": "1254432348657140839", - "reserves": [ - "10829442197976042616354061", - "22876225331311132081258085", - "41978920282841092821445027" + "type": "redeemBassets", + "inputQtys": [ + "17141152890983521714176", + "9599312399428409622528", + "10109019247510714056704" ], - "mAssetSupply": "75571844419735127012490187" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "9936960417868835454976", - "outputIndex": 2, - "expectedQty": "9994208386558006257913", - "swapFee": "5961012003553098352", + "expectedQty": "36849051560855528188681", + "swapFee": "22122704559248866232", "reserves": [ - "10829442197976042616354061", - "22886162291729000916713061", - "41968926074454534815187114" + "688987799018390672753991942", + "633165646821252857568017108", + "729483143613170897083483799" ], - "mAssetSupply": "75571850380747130565588539", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2051607973920550514151912388" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "4046543272923049230336", - "expectedQty": "4070644310884852077915", - "swapFee": "2427925963753829538", + "inputIndex": 0, + "inputQty": "8671411845234223120121856", + "expectedQty": "8666561930759166009378885", + "swapFee": "5202847107140533872073", "reserves": [ - "10829442197976042616354061", - "22886162291729000916713061", - "41964855430143649963109199" + "680321237087631506744613057", + "633165646821252857568017108", + "729483143613170897083483799" ], - "mAssetSupply": "75567806265400171270187741" + "mAssetSupply": "2042941764922423431565662605" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "107328253382473763782656", - "outputIndex": 2, - "expectedQty": "107940660937024829035843", - "swapFee": "64382703459284223909", - "reserves": [ - "10829442197976042616354061", - "22993490545111474680495717", - "41856914769206625134073356" + "type": "mintMulti", + "inputQtys": [ + "927090086645336264146944", + "655668193229028359929856", + "1507090880799000896733184" ], - "mAssetSupply": "75567870648103630554411650", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "238055046749255486144512", - "outputIndex": 1, - "expectedQty": "241488637172220834577605", - "swapFee": "144961470839012448855", + "expectedQty": "3089391653639319636474753", "reserves": [ - "11067497244725298102498573", - "22752001907939253845918112", - "41856914769206625134073356" + "681248327174276843008760001", + "633821315014481885927946964", + "730990234493969897980216983" ], - "mAssetSupply": "75568015609574469566860505", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "2151253907811118071414784", - "expectedQty": "2137023355135950211430802", - "reserves": [ - "11067497244725298102498573", - "22752001907939253845918112", - "44008168677017743205488140" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1454300720405848233345024", - "expectedQty": "1454183746714708276080584", - "reserves": [ - "11067497244725298102498573", - "24206302628345102079263136", - "44008168677017743205488140" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "558672690248836096", - "expectedQty": "554955594993499093", - "reserves": [ - "11067497244725298102498573", - "24206302628345102079263136", - "44008169235690433454324236" - ] + "mAssetSupply": "2046031156576062751202137358" }, { "type": "mintMulti", "inputQtys": [ - "471341595745933915586560", - "502477645895700343422976", - "528397224008840623685632" + "2276839595170307", + "4721389847191627", + "149276377909615" ], - "expectedQty": "1505989220491350413399561", + "expectedQty": "7150325878119900", "reserves": [ - "11538838840471232018085133", - "24708780274240802422686112", - "44536566459699274078009868" + "681248327176553682603930308", + "633821315019203275775138591", + "730990234494119174358126598" ], - "mAssetSupply": "80665212486872073461270545" + "mAssetSupply": "2046031156583213077080257258" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1026357766772100807262208", - "expectedQty": "1019639290020900040418979", + "type": "redeemBassets", + "inputQtys": [ + "2151635659862785916928", + "555105258246826557440", + "6365179919300807360512" + ], + "expectedQty": "9068622789808952495467", + "swapFee": "5444440338088224431", "reserves": [ - "11538838840471232018085133", - "24708780274240802422686112", - "45562924226471374885272076" - ] + "681246175540893819818013380", + "633820759913945028948581151", + "730983869314199873550766086" + ], + "mAssetSupply": "2046022087960423268127761791" }, { "type": "redeemMasset", - "inputQty": "105809684676183497113", + "inputQty": "440416194817430", "expectedQtys": [ - "14942239551385936748", - "31996678260668706204", - "59001788469885374878" + "146597556583630", + "136392068023854", + "157300624929639" ], - "redemptionFee": "31742905402855049", + "redemptionFee": "132124858445", "reserves": [ - "11538823898231680632148385", - "24708748277562541753979908", - "45562865224682904999897198" + "681246175540747222261429750", + "633820759913808636880557297", + "730983869314042572925836447" ], - "mAssetSupply": "81684745998951202721047460" + "mAssetSupply": "2046022087959982984057802806" }, { - "type": "redeemMasset", - "inputQty": "17753200224240115", - "expectedQtys": [ - "2507072687780383", - "5368539159819481", - "9899571740524333" + "type": "redeemBassets", + "inputQtys": [ + "4979382280071907639296", + "171363437084681273344", + "3110676646475781898240" ], - "redemptionFee": "5325960067272", + "expectedQty": "8259730796433351279522", + "swapFee": "4958813766119682577", "reserves": [ - "11538823895724607944368002", - "24708748272194002594160427", - "45562865214783333259372865" + "681241196158467150353790454", + "633820588550371552199283953", + "730980758637396097143938207" ], - "mAssetSupply": "81684745981203328456874617" + "mAssetSupply": "2046013828229186550706523284" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "4291425499794455920640", - "expectedQty": "4221951997185457626633", - "swapFee": "2574855299876673552", + "inputQty": "32537724155954250320445440", + "expectedQty": "32533375776859738683444796", + "reserves": [ + "713778920314421400674235894", + "633820588550371552199283953", + "730980758637396097143938207" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "413181747742349656064", + "324649242317659045888", + "57897920630380388352" + ], + "expectedQty": "795841851991266343520", + "swapFee": "477791786266519717", "reserves": [ - "11534601943727422486741369", - "24708748272194002594160427", - "45562865214783333259372865" + "713778507132673658324579830", + "633820263901129234540238065", + "730980700739475466763549855" ], - "mAssetSupply": "81680457130558833877627529" + "mAssetSupply": "2078546408164194298123624560" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1096367781060858871808", - "expectedQty": "1095947039406885575754", - "swapFee": "657820668636515323", + "type": "mintMulti", + "inputQtys": [ + "9229469846059441268457472", + "15815965764596813979975680", + "4724755475494246436306944" + ], + "expectedQty": "29777160949552696153407253", "reserves": [ - "11534601943727422486741369", - "24707652325154595708584673", - "45562865214783333259372865" + "723007976978733099593037302", + "649636229665726048520213745", + "735705456214969713199856799" ], - "mAssetSupply": "81679361420598441655271044" + "mAssetSupply": "2108323569113746994277031813" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "2497661701084576506445824", - "expectedQty": "2512225173434418496100682", - "swapFee": "1498597020650745903867", + "inputIndex": 0, + "inputQty": "6341497088459430428672", + "expectedQty": "6339242458098608695629", + "swapFee": "3804898253075658257", "reserves": [ - "11534601943727422486741369", - "24707652325154595708584673", - "43050640041348914763272183" + "723001637736275000984341673", + "649636229665726048520213745", + "735705456214969713199856799" ], - "mAssetSupply": "79183198316534515894729087" + "mAssetSupply": "2108317231421556787922261398" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "884403330050529437941760", - "expectedQty": "878898710238664778733569", + "inputIndex": 1, + "inputQty": "2050624513903629934002176", + "expectedQty": "2051972085050356445466523", "reserves": [ - "11534601943727422486741369", - "24707652325154595708584673", - "43935043371399444201213943" + "723001637736275000984341673", + "651686854179629678454215921", + "735705456214969713199856799" ] }, { "type": "mintMulti", "inputQtys": [ - "49101767209315434496", - "41708553737572417536", - "71543048074338320384" + "45149131797915980791808", + "5269271232501335982080", + "47174239580876389220352" ], - "expectedQty": "162618981841256705060", + "expectedQty": "97567685507756995086482", "reserves": [ - "11534651045494631802175865", - "24707694033708333281002209", - "43935114914447518539534327" + "723046786868072916965133481", + "651692123450862179790198001", + "735752630454550589589077151" ], - "mAssetSupply": "80062259645755021930167716" + "mAssetSupply": "2110466771192114901362814403" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1272592181000105885696", - "expectedQty": "1272058177930240041229", + "inputQty": "837021426068260743282688", + "expectedQty": "837560548195940635059108", "reserves": [ - "11534651045494631802175865", - "24708966625889333386887905", - "43935114914447518539534327" + "723046786868072916965133481", + "652529144876930440533480689", + "735752630454550589589077151" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "111928836364054294429696", - "415854769419224354914304", - "888805042602353308467200" + "4233226676681777101144064", + "1632243318816742817398784", + "6405076145054281956851712" ], - "expectedQty": "1412458120410944984771488", + "expectedQty": "12268280018906208042802121", + "swapFee": "7365387243689938788954", "reserves": [ - "11646579881858686096605561", - "25124821395308557741802209", - "44823919957049871848001527" + "718813560191391139863989417", + "650896901558113697716081905", + "729347554309496307632225439" ], - "mAssetSupply": "81475989824343897154980433" + "mAssetSupply": "2099036051721404633955071390" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "238456422404363753881600", - "expectedQty": "236926890897650319352449", + "type": "redeemMasset", + "inputQty": "6749168720222814312857", + "expectedQtys": [ + "2310555158849940269303", + "2092243770935685198557", + "2344415642013894808365" + ], + "redemptionFee": "2024750616066844293", "reserves": [ - "11646579881858686096605561", - "25124821395308557741802209", - "45062376379454235601883127" - ] + "718811249636232289923720114", + "650894809314342762030883348", + "729345209893854293737417074" + ], + "mAssetSupply": "2099029304577435027207602826" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "3000278777370496091553792", - "expectedQty": "2997882263723789793952713", - "swapFee": "1800167266422297654932", + "inputQty": "224768203213095616", + "outputIndex": 0, + "expectedQty": "224822642311649636", + "swapFee": "134943364363763", "reserves": [ - "11646579881858686096605561", - "22126939131584767947849496", - "45062376379454235601883127" + "718811249411409647612070478", + "650894809539110965243978964", + "729345209893854293737417074" ], - "mAssetSupply": "78714438105137473680434022" + "mAssetSupply": "2099029304577569970571966589", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 2, - "inputQty": "74264031048121184157696", + "inputQty": "66111997319784723120128", "outputIndex": 1, - "expectedQty": "73644830744122277114534", - "swapFee": "44252456044721747109", + "expectedQty": "66008942816909740826777", + "swapFee": "39653391907612969652", "reserves": [ - "11646579881858686096605561", - "22053294300840645670734962", - "45136640410502356786040823" + "718811249411409647612070478", + "650828800596294055503152187", + "729411321891174078460537202" ], - "mAssetSupply": "78714482357593518402181131", + "mAssetSupply": "2099029344230961878184936241", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "20621454406562688828178432", + "expectedQty": "20612230016141657079375164", + "swapFee": "12372872643937613296907", + "reserves": [ + "698199019395267990532695314", + "650828800596294055503152187", + "729411321891174078460537202" + ], + "mAssetSupply": "2078420262697043126970054716" + }, + { + "type": "mintMulti", + "inputQtys": [ + "520661896744930816", + "2678150800431610880", + "2770115940070158336" + ], + "expectedQty": "5969121140643675339", + "reserves": [ + "698199019915929887277626130", + "650828803274444855934763067", + "729411324661290018530695538" + ], + "mAssetSupply": "2078420268666164267613730055" + }, { "type": "redeemMasset", - "inputQty": "1633557639431989", + "inputQty": "152391174914475959936614", "expectedQtys": [ - "241628368271528", - "457533591060856", - "936437381813406" + "51177064986329841990537", + "47704890740411093953086", + "53464885654595409148320" ], - "redemptionFee": "490067291829", + "redemptionFee": "45717352474342787980", "reserves": [ - "11646579881617057728334033", - "22053294300383112079674106", - "45136640409565919404227417" + "698147842850943557435635593", + "650781098383704444840809981", + "729357859775635423121547218" ], - "mAssetSupply": "78714482355960450830040971" + "mAssetSupply": "2078267923208602265996581421" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "6640278838472388447830016", - "expectedQty": "6424359600774401591623662", - "swapFee": "3984167303083433068698", + "type": "redeemBassets", + "inputQtys": [ + "1419365439050569836658688", + "1633526963392631401349120", + "496003780560403558301696" + ], + "expectedQty": "3549445741099935418229971", + "swapFee": "2130946012267321643924", + "reserves": [ + "696728477411892987598976905", + "649147571420311813439460861", + "728861855995075019563245522" + ], + "mAssetSupply": "2074718477467502330578351450" + }, + { + "type": "mintMulti", + "inputQtys": [ + "51152611475213745389568", + "63005928470338036826112", + "7331837972529189748736" + ], + "expectedQty": "121517133652733187915143", "reserves": [ - "5222220280842656136710371", - "22053294300383112079674106", - "45136640409565919404227417" + "696779630023368201344366473", + "649210577348782151476286973", + "728869187833047548752994258" ], - "mAssetSupply": "72078187684791145815279653" + "mAssetSupply": "2074839994601155063766266593" }, { "type": "redeemMasset", - "inputQty": "45707589328784611868672", + "inputQty": "44437424730595264770867", "expectedQtys": [ - "3310620024115322530394", - "13980658375593408681188", - "28614316808767349786420" + "14918646023698215218207", + "13900152043742165483892", + "15605710819211182978549" ], - "redemptionFee": "13712276798635383560", + "redemptionFee": "13331227419178579431", "reserves": [ - "5218909660818540814179977", - "22039313642007518670992918", - "45108026092757152054440997" + "696764711377344503129148266", + "649196677196738409310803081", + "728853582122228337570015709" ], - "mAssetSupply": "72032493807739159838794541" + "mAssetSupply": "2074795570507651887680075157" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1114161711500776720826368", - "expectedQty": "1129766286341741027837932", - "swapFee": "668497026900466032495", + "type": "redeemBassets", + "inputQtys": [ + "1659751681984067272704", + "765466325079829905408", + "366965756362452500480" + ], + "expectedQty": "2792314863626361716263", + "swapFee": "1676394755028834330", "reserves": [ - "5218909660818540814179977", - "22039313642007518670992918", - "43978259806415411026603065" + "696763051625662519061875562", + "649195911730413329480897673", + "728853215156471975117515229" ], - "mAssetSupply": "70919000593265283584000668" + "mAssetSupply": "2074792778192788261318358894" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "21480131331342212", - "expectedQty": "21528002061194412", - "swapFee": "12888078798805", + "inputIndex": 2, + "inputQty": "25337678337716672004096", + "expectedQty": "25333445841892780465758", + "swapFee": "15202607002630003202", "reserves": [ - "5218909660818540814179977", - "22039313620479516609798506", - "43978259806415411026603065" + "696763051625662519061875562", + "649195911730413329480897673", + "728827881710630082337049471" ], - "mAssetSupply": "70919000571798040331457261" + "mAssetSupply": "2074767455717057547276358000" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "793700693203129666109440", - "expectedQty": "733255122950305464824936", - "swapFee": "476220415921877799665", + "inputQty": "44533298125746177310720", + "expectedQty": "44509723445213982690948", + "swapFee": "26719978875447706386", "reserves": [ - "4485654537868235349355041", - "22039313620479516609798506", - "43978259806415411026603065" + "696718541902217305079184614", + "649195911730413329480897673", + "728827881710630082337049471" ], - "mAssetSupply": "70125776099010832543147486" + "mAssetSupply": "2074722949138910676546753666" }, { - "type": "mintMulti", - "inputQtys": [ - "1353111198633068331008", - "128244565408057917440", - "1520004158293082898432" - ], - "expectedQty": "3104349586515563105879", + "type": "mint", + "inputIndex": 1, + "inputQty": "11093614774899123668647936", + "expectedQty": "11098960467648226813391653", "reserves": [ - "4487007649066868417686049", - "22039441865044924667715946", - "43979779810573704109501497" - ], - "mAssetSupply": "70128880448597348106253365" + "696718541902217305079184614", + "660289526505312453149545609", + "728827881710630082337049471" + ] }, { - "type": "redeemMasset", - "inputQty": "4718448952980531471974", - "expectedQtys": [ - "301806686395139856221", - "1482424689129029485985", - "2958183415572624583878" - ], - "redemptionFee": "1415534685894159441", + "type": "swap", + "inputIndex": 2, + "inputQty": "155846728560040652832768", + "outputIndex": 0, + "expectedQty": "155696215593891500151920", + "swapFee": "93471696723720592430", "reserves": [ - "4486705842380473277829828", - "22037959440355795638229961", - "43976821627158131484917619" + "696562845686623413579032694", + "660289526505312453149545609", + "728983728439190122989882239" ], - "mAssetSupply": "70124163415179053468940832" + "mAssetSupply": "2085822003078255627080737749", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "118405273199907208744140", - "expectedQtys": [ - "7573569940520812298689", - "37200127004390733313425", - "74232977613344217426826" + "type": "redeemBassets", + "inputQtys": [ + "29379505748875026432", + "6638905567542146048", + "77632716360646832" ], - "redemptionFee": "35521581959972162623", + "expectedQty": "36098236053622866267", + "swapFee": "21671944799053151", "reserves": [ - "4479132272439952465531139", - "22000759313351404904916536", - "43902588649544787267490793" + "696562816307117664704006262", + "660289519866406885607399561", + "728983728361557406629235407" ], - "mAssetSupply": "70005793663561106232359315" + "mAssetSupply": "2085821966980019573457871482" }, { "type": "redeemMasset", - "inputQty": "323761600448504161894", + "inputQty": "946290957088414515", "expectedQtys": [ - "20708800028794851488", - "101718211785170740079", - "202979031158327999815" + "315920226758999045", + "299468777200438039", + "330624459669783992" ], - "redemptionFee": "97128480134551248", + "redemptionFee": "283887287126524", "reserves": [ - "4479111563639923670679651", - "22000657595139619734176457", - "43902385670513628939490978" + "696562815991197437945007217", + "660289519566938108406961522", + "728983728030932946959451415" ], - "mAssetSupply": "70005469999089137862748669" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "3442112735852793", - "outputIndex": 2, - "expectedQty": "3828886288518906", - "swapFee": "2261107148032", - "reserves": [ - "4479111567082036406532444", - "22000657595139619734176457", - "43902385666684742650972072" - ], - "mAssetSupply": "70005469999091398969896701", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2085821966034012503656583491" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2239704488277874338430976", - "expectedQty": "2201881077434556874979682", + "inputIndex": 0, + "inputQty": "301901190276873617145856", + "expectedQty": "301894178519684605608667", "reserves": [ - "4479111567082036406532444", - "22000657595139619734176457", - "46142090154962616989403048" + "696864717181474311562153073", + "660289519566938108406961522", + "728983728030932946959451415" ] }, { "type": "redeemMasset", - "inputQty": "18080488048050369331", + "inputQty": "3318350332540850585", "expectedQtys": [ - "1121218637583896936", - "5507241104700186759", - "11550364549754689986" + "1108154495380640550", + "1049992604476026585", + "1159230156671063197" ], - "redemptionFee": "5424146414415110", + "redemptionFee": "995505099762255", "reserves": [ - "4479110445863398822635508", - "22000652087898515033989698", - "46142078604598067234713062" + "696864716073319816181512523", + "660289518516945503930934937", + "728983726871702790288388218" ], - "mAssetSupply": "72207333001462054208922162" + "mAssetSupply": "2086123856895177360821103828" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "1120951612706660447944704", - "expectedQty": "1139825076727201991938846", - "swapFee": "672570967623996268766", + "inputQty": "569645816570209", + "expectedQty": "569424425133439", "reserves": [ - "4479110445863398822635508", - "22000652087898515033989698", - "45002253527870865242774216" - ], - "mAssetSupply": "71087053959723017757246224" + "696864716073319816181512523", + "660289518516945503930934937", + "728983726872272436104958427" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "13754296242884239687680", + "inputQty": "4894750147512686023278592", "outputIndex": 2, - "expectedQty": "15356973068247264102152", - "swapFee": "9064595045214777305", + "expectedQty": "4893323673201168236282463", + "swapFee": "2936721748588681262772", "reserves": [ - "4492864742106283062323188", - "22000652087898515033989698", - "44986896554802617978672064" + "701759466220832502204791115", + "660289518516945503930934937", + "724090403199071267868675964" ], - "mAssetSupply": "71087063024318062972023529", + "mAssetSupply": "2086126793617495373927500039", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "509233920404952", + "inputQty": "471606404490393239630643", "expectedQtys": [ - "32175091408003", - "157554930450006", - "322168057998257" + "158597729254113735400121", + "149225515761159389758424", + "163644523871560181332488" ], - "redemptionFee": "152770176121", + "redemptionFee": "141481921347117971889", "reserves": [ - "4492864742074107970915185", - "22000652087740960103539692", - "44986896554480449920673807" + "701600868491578388469390994", + "660140293001184344541176513", + "723926758675199707687343476" ], - "mAssetSupply": "71087063023808981821794698" + "mAssetSupply": "2085655328694926327805841285" }, { - "type": "redeemMasset", - "inputQty": "68763509145070836121", - "expectedQtys": [ - "4344707026818683483", - "21275153650869605874", - "43503398565429700883" + "type": "mintMulti", + "inputQtys": [ + "470939511864112119808", + "133338555818608050176", + "17173926182657277952" ], - "redemptionFee": "20629052743521250", + "expectedQty": "621465831640964410595", "reserves": [ - "4492860397367081152231702", - "22000630812587309233933818", - "44986853051081884490972924" + "701601339431090252581510802", + "660140426339740163149226689", + "723926775849125890344621428" ], - "mAssetSupply": "71086994280928889494479827" + "mAssetSupply": "2085655950160757968770251880" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "6024495832878619295744", + "expectedQty": "6022480938953941468258", + "reserves": [ + "701601339431090252581510802", + "660140426339740163149226689", + "723932800344958768963917172" + ] }, { "type": "mintMulti", "inputQtys": [ - "2338152741593655", - "4626147247633196", - "3359738497153161" + "2333662727287769399296", + "4527881823944565063680", + "6235466591222502522880" ], - "expectedQty": "10480554273005700", + "expectedQty": "13096701466779106850516", "reserves": [ - "4492860399705233893825357", - "22000630817213456481567014", - "44986853054441622988126085" + "701603673093817540350910098", + "660144954221564107714290369", + "723939035811549991466440052" ], - "mAssetSupply": "71086994291409443767485527" + "mAssetSupply": "2085675069343163701818570654" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "170877589872777592832", + "expectedQty": "170863699750203446325", + "reserves": [ + "701603843971407413128502930", + "660144954221564107714290369", + "723939035811549991466440052" + ] }, { "type": "redeemMasset", - "inputQty": "586567878178518964633", + "inputQty": "8012290264906768", "expectedQtys": [ - "37061307874825799030", - "181481746508443239593", - "371093571364824551294" + "2694459379122334", + "2535239478469941", + "2780236085814125" ], - "redemptionFee": "175970363453555689", + "redemptionFee": "2403687079472", "reserves": [ - "4492823338397359068026327", - "22000449335466948038327421", - "44986481960870258163574791" + "701603843968712953749380596", + "660144954219028868235820428", + "723939035808769755380625927" ], - "mAssetSupply": "71086407899501628702076583" + "mAssetSupply": "2085675240198853565444189683" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "156997218663971749888", - "outputIndex": 2, - "expectedQty": "175233860465362463736", - "swapFee": "103433847510472218", - "reserves": [ - "4492980335616023039776215", - "22000449335466948038327421", - "44986306727009792801111055" + "type": "mintMulti", + "inputQtys": [ + "117492170446080049152000", + "43023080204736311328768", + "248180082404079265906688" ], - "mAssetSupply": "71086408002935476212548801", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3073479162330718666752", - "expectedQty": "3124183454192444327216", - "swapFee": "1844087497398431200", + "expectedQty": "408621332051983784463975", "reserves": [ - "4492980335616023039776215", - "22000449335466948038327421", - "44983182543555600356783839" + "701721336139159033798532596", + "660187977299233604547149196", + "724187215891173834646532615" ], - "mAssetSupply": "71083336367860642892313249" + "mAssetSupply": "2086083861530905549228653658" }, { "type": "redeemBassets", "inputQtys": [ - "396078260564571545665536", - "545498514907376505585664", - "22870761626336596328448" + "1007256087521487767994368", + "160180687051094692462592", + "1240549699136186258292736" ], - "expectedQty": "1004380905101859735886224", - "swapFee": "602990337263473925887", + "expectedQty": "2407561602579001123593223", + "swapFee": "1445404204069842579703", "reserves": [ - "4096902075051451494110679", - "21454950820559571532741757", - "44960311781929263760455391" + "700714080051637546030538228", + "660027796612182509854686604", + "722946666192037648388239879" ], - "mAssetSupply": "70078955462758783156427025" + "mAssetSupply": "2083676299928326548105060435" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "46471849486841192", - "58682482936594968", - "35287142244199940" + "501574369971606638297088", + "574383888123950442479616", + "381631364790103830429696" ], - "expectedQty": "144980561795936838", + "expectedQty": "1457669573252527223359134", + "swapFee": "875126820043542459491", "reserves": [ - "4096902121523300980951871", - "21454950879242054469336725", - "44960311817216406004655331" + "700212505681665939392241140", + "659453412724058559412206988", + "722565034827247544557810183" ], - "mAssetSupply": "70078955607739344952363863" + "mAssetSupply": "2082218630355074020881701301" }, { - "type": "redeemBassets", - "inputQtys": [ - "127199660380933914624", - "144405138572741361664", - "154874631818841620480" + "type": "redeem", + "inputIndex": 2, + "inputQty": "808672752405941676146688", + "expectedQty": "808453902993537688138238", + "swapFee": "485203651443565005688", + "reserves": [ + "700212505681665939392241140", + "659453412724058559412206988", + "721756580924254006869671945" ], - "expectedQty": "437886021828795680401", - "swapFee": "262889346705300588", + "mAssetSupply": "2081410442806319522770560301" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "37234726762559944", + "outputIndex": 1, + "expectedQty": "37184410045003641", + "swapFee": "22333542196676", "reserves": [ - "4096774921862920047037247", - "21454806474103481727975061", - "44960156942584587163034851" + "700212505681665939392241140", + "659453412686874149367203347", + "721756580961488733632231889" ], - "mAssetSupply": "70078517721717516156683462" + "mAssetSupply": "2081410442806341856312756977", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "1368075320015637549416448", - "578335584870777810321408", - "985531744413221170184192" + "91799823782973173399552", + "9060126638570171531264", + "86811615967616060882944" ], - "expectedQty": "3036804706842682385283414", + "expectedQty": "187639570200107736744128", "reserves": [ - "5464850241878557596453695", - "22033142058974259538296469", - "45945688686997808333219043" + "700304305505448912565640692", + "659462472813512719538734611", + "721843392577456349693114833" ], - "mAssetSupply": "73115322428560198541966876" + "mAssetSupply": "2081598082376541964049501105" }, { "type": "redeemMasset", - "inputQty": "2190147636575984", + "inputQty": "3816264700290373831884", "expectedQtys": [ - "163648846717875", - "659798188043814", - "1375876489288956" + "1283506580449639247679", + "1208652319800922682999", + "1322983076276472621752" ], - "redemptionFee": "657044290972", + "redemptionFee": "1144879410087112149", "reserves": [ - "5464850241714908749735820", - "22033142058314461350252655", - "45945688685621931843930087" + "700303021998868462926393013", + "659461264161192918616051612", + "721842069594380073220493081" ], - "mAssetSupply": "73115322426370707949681864" + "mAssetSupply": "2081594267256721083762781370" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "15006609892118030712832", - "14249942981586540560384", - "46697813453840362504192" + "3788637582434573806993408", + "1395234104505696899825664", + "1614420582333295366242304" ], - "expectedQty": "76290173632230074849127", + "expectedQty": "6798069402484665907409321", + "swapFee": "4081290415740243690659", "reserves": [ - "5479856851607026780448652", - "22047392001296047890813039", - "45992386499075772206434279" + "696514384416433889119399605", + "658066030056687221716225948", + "720227649012046777854250777" ], - "mAssetSupply": "73191612600002938024530991" + "mAssetSupply": "2074796197854236417855372049" }, { "type": "redeemBassets", "inputQtys": [ - "45893139380401407524864", - "19828335250662683049984", - "12522370229326049181696" + "5220068218086628448534528", + "10491863194133502894276608", + "5740752377422583819141120" ], - "expectedQty": "81208370272223425939443", - "swapFee": "48754274728170958138", + "expectedQty": "21454925985242532199039017", + "swapFee": "12880684001546447187736", "reserves": [ - "5433963712226625372923788", - "22027563666045385207763055", - "45979864128846446157252583" + "691294316198347260670865077", + "647574166862553718821949340", + "714486896634624194035109657" ], - "mAssetSupply": "73110404229730714598591548" + "mAssetSupply": "2053341271868993885656333032" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "2284342765350533751373824", - "expectedQty": "2250278205120400776429672", + "inputQty": "129174885593916243968", + "expectedQty": "129143243730146235664", + "swapFee": "77504931356349746", "reserves": [ - "5433963712226625372923788", - "22027563666045385207763055", - "48264206894196979908626407" - ] + "691294316198347260670865077", + "647574166862553718821949340", + "714486767491380463888873993" + ], + "mAssetSupply": "2053341142771613223096438810" }, { - "type": "redeemBassets", - "inputQtys": [ - "971877450913366010757120", - "20242835012520287141888", - "911936307909721535283200" + "type": "redeem", + "inputIndex": 1, + "inputQty": "11601680754542953627648", + "expectedQty": "11589331071574474266966", + "swapFee": "6961008452725772176", + "reserves": [ + "691294316198347260670865077", + "647562577531482144347682374", + "714486767491380463888873993" + ], + "mAssetSupply": "2053329548051867132868583338" + }, + { + "type": "redeemMasset", + "inputQty": "584554774557648266618470", + "expectedQtys": [ + "196742974708391286797104", + "184296883148135535029374", + "203343566889249922584628" + ], + "redemptionFee": "175366432367294479985", + "reserves": [ + "691097573223638869384067973", + "647378280648334008812653000", + "714283423924491213966289365" ], - "expectedQty": "1976799328154910756967770", - "swapFee": "1186791671896084104643", + "mAssetSupply": "2052745168643741851896444853" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "8677446111904502539878400", + "expectedQty": "8667865331519818286813963", + "swapFee": "5206467667142701523927", "reserves": [ - "4462086261313259362166668", - "22007320831032864920621167", - "47352270586287258373343207" + "691097573223638869384067973", + "638710415316814190525839037", + "714283423924491213966289365" ], - "mAssetSupply": "73383883106696204618053450" + "mAssetSupply": "2044072928999504492058090380" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "290260619835248551657472", - "expectedQty": "284996726757957288058409", + "inputIndex": 0, + "inputQty": "123871666575701870379008", + "expectedQty": "123856020905492205010965", "reserves": [ - "4462086261313259362166668", - "22007320831032864920621167", - "47642531206122506925000679" + "691221444890214571254446981", + "638710415316814190525839037", + "714283423924491213966289365" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "55778811997058209153024", - "138483615957947277901824", - "72950940331281758552064" + "184211795817887856328704", + "5601288129521491118129152", + "4707770930346968735547392" ], - "expectedQty": "271526645960891454097328", + "expectedQty": "10494572753234907580178170", + "swapFee": "6300523966320736990301", "reserves": [ - "4517865073310317571319692", - "22145804446990812198522991", - "47715482146453788683552743" + "691037233094396683398118277", + "633109127187292699407709885", + "709575652994144245230741973" ], - "mAssetSupply": "73940406479415053360209187" + "mAssetSupply": "2033702212267175076682923175" }, { "type": "redeemBassets", "inputQtys": [ - "339743175641351078281216", - "119842868717076929839104", - "367116554648397350436864" + "757807954595168665993216", + "1439892284268719426764800", + "6210656799922496210993152" ], - "expectedQty": "858475637606321989464399", - "swapFee": "515394619335394430336", + "expectedQty": "8406798358389973548650404", + "swapFee": "5047107279401625104252", "reserves": [ - "4178121897668966493038476", - "22025961578273735268683887", - "47348365591805391333115879" + "690279425139801514732125061", + "631669234903023979980945085", + "703364996194221749019748821" ], - "mAssetSupply": "73081930841808731370744788" + "mAssetSupply": "2025295413908785103134272771" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "52493593699002687488", - "expectedQty": "53489453312869060131", - "swapFee": "31496156219401612", + "inputQty": "711563178627051159552", + "expectedQty": "711319732333986379346", "reserves": [ - "4178121897668966493038476", - "22025961578273735268683887", - "47348312102352078464055748" - ], - "mAssetSupply": "73081878379711188587458912" + "690279425139801514732125061", + "631669234903023979980945085", + "703365707757400376070908373" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "30101224286656290357248", - "26536823430528523829248", - "16814184452623377104896" - ], - "expectedQty": "76762419483629992714537", - "swapFee": "46085102751829093084", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3528575818654677957869568", + "expectedQty": "3524422353409940142935661", + "swapFee": "2117145491192806774721", "reserves": [ - "4148020673382310202681228", - "21999424754843206744854639", - "47331497917899455086950852" + "690279425139801514732125061", + "628144812549614039838009424", + "703365707757400376070908373" ], - "mAssetSupply": "73005115960227558594744375" + "mAssetSupply": "2021769666555353951969557270" }, { - "type": "redeemMasset", - "inputQty": "7670069265503218145689", - "expectedQtys": [ - "435668936066691039809", - "2310611911489476497429", - "4971253753062839842486" + "type": "mintMulti", + "inputQtys": [ + "25700992264593448403730432", + "17227120979999745126694912", + "17316132936530313506455552" ], - "redemptionFee": "2301020779650965443", + "expectedQty": "60242759498219724789526217", "reserves": [ - "4147585004446243511641419", - "21997114142931717268357210", - "47326526664146392247108366" + "715980417404394963135855493", + "645371933529613784964704336", + "720681840693930689577363925" ], - "mAssetSupply": "72997448191982835027564129" + "mAssetSupply": "2082012426053573676759083487" }, { - "type": "redeemMasset", - "inputQty": "51703468117723973681152", - "expectedQtys": [ - "2936817669576680734709", - "15575693668822614549277", - "33510917702219327468696" - ], - "redemptionFee": "15511040435317192104", + "type": "mint", + "inputIndex": 2, + "inputQty": "2172948037587163561328640", + "expectedQty": "2172240800424421102698750", "reserves": [ - "4144648186776666830906710", - "21981538449262894653807933", - "47293015746444172919639670" - ], - "mAssetSupply": "72945760234905546371075081" + "715980417404394963135855493", + "645371933529613784964704336", + "722854788731517853138692565" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "917770498801961856", - "expectedQty": "920368511120266209", - "swapFee": "550662299281177", + "inputIndex": 2, + "inputQty": "469450020069960782446592", + "expectedQty": "469324057330598534661768", + "swapFee": "281670012041976469467", "reserves": [ - "4144648186776666830906710", - "21981537528894383533541724", - "47293015746444172919639670" + "715980417404394963135855493", + "645371933529613784964704336", + "722385464674187254604030797" ], - "mAssetSupply": "72945759317685709868394402" + "mAssetSupply": "2083715498503940179055805112" }, { "type": "redeemMasset", - "inputQty": "11144727892147907788", + "inputQty": "3207117041019281858573107", "expectedQtys": [ - "633033631966586820", - "3357354330464346382", - "7223307787652699054" + "1101659093788270660874376", + "993015789490577349063601", + "1111514361333842361064784" ], - "redemptionFee": "3343418367644372", + "redemptionFee": "962135112305784557571", "reserves": [ - "4144647553743034864319890", - "21981534171540053069195342", - "47293008523136385266940616" + "714878758310606692474981117", + "644378917740123207615640735", + "721273950312853412242966013" ], - "mAssetSupply": "72945748176301236088130986" + "mAssetSupply": "2080509343598033202981789576" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "58668518961640120320", + "inputQty": "31238660300341864562688", + "expectedQty": "31258080636018345512071", + "reserves": [ + "714878758310606692474981117", + "644410156400423549480203423", + "721273950312853412242966013" + ] + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "9034458888865949096607744", "outputIndex": 0, - "expectedQty": "51960796363780371962", - "swapFee": "35080683847380094", + "expectedQty": "9027483259248539710902382", + "swapFee": "5418707040708397104005", "reserves": [ - "4144595592946671083947928", - "21981592840059014709315662", - "47293008523136385266940616" + "705851275051358152764078735", + "644410156400423549480203423", + "730308409201719361339573757" ], - "mAssetSupply": "72945748211381919935511080", + "mAssetSupply": "2080546020385709929724405652", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "1309204706948583260160", + "inputQty": "46528987491946773610496", "outputIndex": 1, - "expectedQty": "1476386950880765367755", - "swapFee": "883334012279597576", + "expectedQty": "46464917019030066409869", + "swapFee": "27913021825265025744", "reserves": [ - "4145904797653619667208088", - "21980116453108133943947907", - "47293008523136385266940616" + "705897804038850099537689231", + "644363691483404519413793554", + "730308409201719361339573757" ], - "mAssetSupply": "72945749094715932215108656", + "mAssetSupply": "2080546048298731754989431396", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "268575655877168992564019", - "expectedQtys": [ - "15260040061535091552041", - "80903318817515221938422", - "174073752272851273058643" + "type": "redeemBassets", + "inputQtys": [ + "2269584634160157032448", + "169554217742933065728", + "1460294332733106159616" ], - "redemptionFee": "80572696763150697769", + "expectedQty": "3898555317612131726941", + "swapFee": "2340537513075124110", "reserves": [ - "4130644757592084575656047", - "21899213134290618722009485", - "47118934770863533993881973" + "705895534454215939380656783", + "644363521929186776480727826", + "730306948907386628233414141" ], - "mAssetSupply": "72677254011535526373242406" + "mAssetSupply": "2080542149743414142857704455" }, { "type": "swap", "inputIndex": 0, - "inputQty": "5335815161665021804544", - "outputIndex": 1, - "expectedQty": "6016058097733808196125", - "swapFee": "3599499086625995819", + "inputQty": "12600942028387902291968", + "outputIndex": 2, + "expectedQty": "12596813015175658096218", + "swapFee": "7559378430539988219", "reserves": [ - "4135980572753749597460591", - "21893197076192884913813360", - "47118934770863533993881973" + "705908135396244327282948751", + "644363521929186776480727826", + "730294352094371452575317923" ], - "mAssetSupply": "72677257611034612999238225", + "mAssetSupply": "2080542157302792573397692674", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2907904176159023104", - "2487761442590561280", - "4612054598190208000" + "3760104206043595264", + "3591613585561774592", + "2184006872955193856" ], - "expectedQty": "10271225534081574677", + "expectedQty": "9536429032283660771", + "swapFee": "5725292594927152", "reserves": [ - "4135983480657925756483695", - "21893199563954327504374640", - "47118939382918132184089973" + "705908131636140121239353487", + "644363518337573190918953234", + "730294349910364579620124067" ], - "mAssetSupply": "72677267882260147080812902" + "mAssetSupply": "2080542147766363541114031903" }, { - "type": "redeemBassets", - "inputQtys": [ - "113399455492110057472", - "633399409612158271488", - "380427881651011584000" - ], - "expectedQty": "1131804353759120832007", - "swapFee": "679490306439336100", + "type": "swap", + "inputIndex": 1, + "inputQty": "35838801564187267072", + "outputIndex": 0, + "expectedQty": "35845192268599092899", + "swapFee": "21516647322682067", "reserves": [ - "4135870081202433646426223", - "21892566164544715346103152", - "47118558955036481172505973" + "705908095790947852640260588", + "644363554176374755106220306", + "730294349910364579620124067" ], - "mAssetSupply": "72676136077906387959980895" + "mAssetSupply": "2080542147787880188436713970", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "4016800574503440034562048", - "hardLimitError": true + "inputQty": "620448195777468441821184", + "expectedQty": "620171852158401172802181", + "swapFee": "372268917466481065092", + "reserves": [ + "705287923938789451467458407", + "644363554176374755106220306", + "730294349910364579620124067" + ], + "mAssetSupply": "2079922071861020186475957878" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2408846120370967552", - "2361224136871288320", - "1699509404272240640" + "21735017215895164420096", + "32664939023577475186688", + "19490221001919063654400" ], - "expectedQty": "6727804147799454975", + "expectedQty": "73898674944795389826701", + "swapFee": "44365824461554166395", "reserves": [ - "4135872490048554017393775", - "21892568525768852217391472", - "47118560654545885444746613" + "705266188921573556303038311", + "644330889237351177631033618", + "730274859689362660556469667" ], - "mAssetSupply": "72676142805710535759435870" + "mAssetSupply": "2079848173186075391086131177" }, { - "type": "redeemMasset", - "inputQty": "124719476041811283148", - "expectedQtys": [ - "7095438514922091776", - "37558550047679988899", - "80835869780896619439" + "type": "redeemBassets", + "inputQtys": [ + "2314097920630294898016256", + "2380232537962805796536320", + "2704511444202995138428928" ], - "redemptionFee": "37415842812543384", + "expectedQty": "7398795880649760781743479", + "swapFee": "4441942694006260225181", "reserves": [ - "4135865394610039095301999", - "21892530967218804537402573", - "47118479818676104548127174" + "702952091000943261405022055", + "641950656699388371834497298", + "727570348245159665418040739" ], - "mAssetSupply": "72676018123650336760696106" + "mAssetSupply": "2072449377305425630304387698" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "995169784551392149504", - "outputIndex": 0, - "expectedQty": "881693973735878790765", - "swapFee": "595069527306456048", + "type": "redeem", + "inputIndex": 0, + "inputQty": "56912889093144248752013312", + "expectedQty": "56874428682429985485300361", + "swapFee": "34147733455886549251207", "reserves": [ - "4134983700636303216511234", - "21893526137003355929552077", - "47118479818676104548127174" + "646077662318513275919721694", + "641950656699388371834497298", + "727570348245159665418040739" ], - "mAssetSupply": "72676018718719864067152154", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2015570635945737268101625593" }, { - "type": "redeemBassets", - "inputQtys": [ - "357857081204180160", - "499014516723587968", - "211477448149350560" - ], - "expectedQty": "1107015097127949654", - "swapFee": "664607822970552", + "type": "redeem", + "inputIndex": 2, + "inputQty": "7110058723479896677416960", + "expectedQty": "7110231899756930501715321", + "swapFee": "4266035234087938006450", "reserves": [ - "4134983342779222012331074", - "21893525637988839205964109", - "47118479607198656398776614" + "646077662318513275919721694", + "641950656699388371834497298", + "720460116345402734916325418" ], - "mAssetSupply": "72676017611704766939202500" + "mAssetSupply": "2008464843257491459362215083" }, { "type": "redeemBassets", "inputQtys": [ - "838097948592775352025088", - "130712512570756167630848", - "71774378265441137065984" + "81618356640280452530176", + "204530742049600096436224", + "148044249135206245597184" ], - "hardLimitError": true - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "72889160963241562603520", - "expectedQty": "74278579745096779321007", - "swapFee": "43733496577944937562", + "expectedQty": "434198775228676606518380", + "swapFee": "260675670539529681720", "reserves": [ - "4134983342779222012331074", - "21893525637988839205964109", - "47044201027453559619455607" + "645996043961872995467191518", + "641746125957338771738061074", + "720312072096267528670728234" ], - "mAssetSupply": "72603172184238103321536542" + "mAssetSupply": "2008030644482262782755696703" }, { "type": "redeemBassets", "inputQtys": [ - "4410924534294865408", - "6606393037831902208", - "522984083813206720" + "928448018760339654967296", + "239401307873328330964992", + "524746469749685256978432" ], - "expectedQty": "12054036057301674696", - "swapFee": "7236763692596562", + "expectedQty": "1692633476895436266785855", + "swapFee": "1016189800017272123345", "reserves": [ - "4134978931854687717465666", - "21893519031595801374061901", - "47044200504469475806248887" + "645067595943112655812224222", + "641506724649465443407096082", + "719787325626517843413749802" ], - "mAssetSupply": "72603160130202046019861846" + "mAssetSupply": "2006338011005367346488910848" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "498013869395359498240", - "expectedQty": "507497057486106833832", - "swapFee": "298808321637215698", + "inputQty": "3525881094286479131148288", + "expectedQty": "3523721458936061045409988", "reserves": [ - "4134978931854687717465666", - "21893519031595801374061901", - "47043693007411989699415055" - ], - "mAssetSupply": "72602662415140972297579304" + "645067595943112655812224222", + "641506724649465443407096082", + "723313206720804322544898090" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "187776648107207610597376", - "expectedQty": "187117022410823977260919", + "inputQty": "421785198916875856117760", + "expectedQty": "421934309661287725802778", "reserves": [ - "4134978931854687717465666", - "22081295679703008984659277", - "47043693007411989699415055" + "645067595943112655812224222", + "641928509848382319263213842", + "723313206720804322544898090" ] }, { - "type": "redeemMasset", - "inputQty": "2315819367333281084211", - "expectedQtys": [ - "131515600247544520365", - "702309468420214671225", - "1496254183078973134878" - ], - "redemptionFee": "694745810199984325", + "type": "swap", + "inputIndex": 2, + "inputQty": "1275229575543033968984064", + "outputIndex": 0, + "expectedQty": "1273256217792804980441336", + "swapFee": "764657198101268447025", "reserves": [ - "4134847416254440172945301", - "22080593370234588769988052", - "47042196753228910726280177" + "643794339725319850831782886", + "641928509848382319263213842", + "724588436296347356513882154" ], - "mAssetSupply": "72787464312930273193740337" + "mAssetSupply": "2010284431431162796528570639", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "5156562773675787419648", - "36495861355872329400320", - "2116391735920857972736" - ], - "expectedQty": "44236225277789366476679", + "type": "swap", + "inputIndex": 0, + "inputQty": "12779952702390726847102976", + "outputIndex": 1, + "expectedQty": "12769766785922828478693055", + "swapFee": "7670036550033411487473", "reserves": [ - "4140003979028115960364949", - "22117089231590461099388372", - "47044313144964831584252913" + "656574292427710577678885862", + "629158743062459490784520787", + "724588436296347356513882154" ], - "mAssetSupply": "72831700538208062560217016" + "mAssetSupply": "2010292101467712829940058112", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "836809573452350464", - "expectedQty": "852670572716945595", - "swapFee": "502085744071410", + "inputQty": "151040051291898282770432", + "expectedQty": "150943420033816160467652", + "reserves": [ + "656574292427710577678885862", + "629158743062459490784520787", + "724739476347639254796652586" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "14707382762971017481551872", + "outputIndex": 2, + "expectedQty": "14707741355140846446732507", + "swapFee": "8825264899579497458496", "reserves": [ - "4140003979028115960364949", - "22117089231590461099388372", - "47044312292294258867307318" + "671281675190681595160437734", + "629158743062459490784520787", + "710031734992498408349920079" ], - "mAssetSupply": "72831699701900574851937962" + "mAssetSupply": "2010451870152646225597984260", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1170121192730945536", - "expectedQtys": [ - "66493753705527040", - "355228712701329715", - "755591765287158085" + "type": "mintMulti", + "inputQtys": [ + "3100006356998019584", + "1376012730099944448", + "2371075301039199232" ], - "redemptionFee": "351036357819283", + "expectedQty": "6846621543387349321", "reserves": [ - "4140003912534362254837909", - "22117088876361748398058657", - "47044311536702493580149233" + "671281678290687952158457318", + "629158744438472220884465235", + "710031737363573709389119311" ], - "mAssetSupply": "72831698532130418478811709" + "mAssetSupply": "2010451876999267768985333581" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "641718994998654457085952", + "expectedQty": "641701914296892022562274", + "reserves": [ + "671923397285686606615543270", + "629158744438472220884465235", + "710031737363573709389119311" + ] }, { "type": "redeemMasset", - "inputQty": "14740841943605583872", + "inputQty": "101365090495157631136563", "expectedQtys": [ - "837668713035257999", - "4475066634371107696", - "9518722381220028287" + "33856775146022329834422", + "31701956246286593770398", + "35776972457824823987280" ], - "redemptionFee": "4422252583081675", + "redemptionFee": "30409527148547289340", "reserves": [ - "4140003074865649219579910", - "22117084401295114026950961", - "47044302017980112360120946" + "671889540510540584285708848", + "629127042482225934290694837", + "709995960391115884565132031" ], - "mAssetSupply": "72831683795710727456309512" + "mAssetSupply": "2010992244232596651924048632" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "3257682101766121429401600", - "outputIndex": 1, - "expectedQty": "3481224070121331804534764", - "swapFee": "2091575432441334396483", + "inputIndex": 1, + "inputQty": "4696320492304891381809152", + "outputIndex": 0, + "expectedQty": "4695851668747605490709442", + "swapFee": "2819232620861289068939", "reserves": [ - "7397685176631770648981510", - "18635860331173782222416197", - "47044302017980112360120946" + "667193688841792978794999406", + "633823362974530825672503989", + "709995960391115884565132031" ], - "mAssetSupply": "72833775371143168790705995", + "mAssetSupply": "2010995063465217513213117571", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "335036735657015989239808", - "expectedQty": "347141743055806233136579", + "type": "mintMulti", + "inputQtys": [ + "6740357498057714611257344", + "5746972917360631526457344", + "14866414004521485566214144" + ], + "expectedQty": "27349385453452839046589099", "reserves": [ - "7732721912288786638221318", - "18635860331173782222416197", - "47044302017980112360120946" - ] + "673934046339850693406256750", + "639570335891891457198961333", + "724862374395637370131346175" + ], + "mAssetSupply": "2038344448918670352259706670" }, { - "type": "redeemMasset", - "inputQty": "231479878101737801567436", - "expectedQtys": [ - "24452174219149734797569", - "58929741520567004517533", - "148762037741696388340517" + "type": "mintMulti", + "inputQtys": [ + "679834147588090609270784", + "858039741755664883515392", + "265812787444992249430016" ], - "redemptionFee": "69443963430521340470", + "expectedQty": "1804017550338106033177089", "reserves": [ - "7708269738069636903423749", - "18576930589653215217898664", - "46895539980238415971780429" + "674613880487438784015527534", + "640428375633647122082476725", + "725128187183082362380776191" ], - "mAssetSupply": "72949506680060667743615608" + "mAssetSupply": "2040148466469008458292883759" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "31559711919983484928", - "expectedQty": "31468564208899789279", - "swapFee": "18935827151990090", + "inputIndex": 0, + "inputQty": "2818888536888026368835584", + "expectedQty": "2817006120294203541921791", + "swapFee": "1691333122132815821301", "reserves": [ - "7708269738069636903423749", - "18576899121089006318109385", - "46895539980238415971780429" + "671796874367144580473605743", + "640428375633647122082476725", + "725128187183082362380776191" ], - "mAssetSupply": "72949475139284574912120770" + "mAssetSupply": "2037331269265242564739869476" }, { - "type": "redeemMasset", - "inputQty": "78546374856721458790", - "expectedQtys": [ - "8297181113286525319", - "19996173170962311180", - "50478356601834342998" - ], - "redemptionFee": "23563912457016437", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5662531888346009616515072", + "expectedQty": "5656212764268239377479318", + "swapFee": "3397519133007605769909", "reserves": [ - "7708261440888523616898430", - "18576879124915835355798205", - "46895489501881814137437431" + "671796874367144580473605743", + "634772162869378882704997407", + "725128187183082362380776191" ], - "mAssetSupply": "72949396616473630647678417" + "mAssetSupply": "2031672134896029562729124313" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1270614052006623744", - "expectedQty": "1227445804177955739", - "swapFee": "762368431203974", + "type": "swap", + "inputIndex": 1, + "inputQty": "1711486971281488597745664", + "outputIndex": 0, + "expectedQty": "1711256158772960028693402", + "swapFee": "1027441448718307879140", "reserves": [ - "7708260213442719438942691", - "18576879124915835355798205", - "46895489501881814137437431" + "670085618208371620444912341", + "636483649840660371302743071", + "725128187183082362380776191" ], - "mAssetSupply": "72949395346621947072258647" + "mAssetSupply": "2031673162337478281037003453", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "37867052413907036536832", - "29930071990299762098176", - "3175866388014576959488" + "391034008155216384", + "230335029046972512", + "325405641062690816" + ], + "expectedQty": "946741974735326621", + "swapFee": "568386216571138", + "reserves": [ + "670085617817337612289695957", + "636483649610325342255770559", + "725128186857676721318085375" ], - "expectedQty": "72319665796605325820128", - "swapFee": "43417850188076041116", + "mAssetSupply": "2031673161390736306301676832" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "22239419874188827033600", + "expectedQty": "22214535806462100630344", + "swapFee": "13343651924513296220", "reserves": [ - "7670393161028812402405859", - "18546949052925535593700029", - "46892313635493799560477943" + "670085617817337612289695957", + "636461435074518880155140215", + "725128186857676721318085375" ], - "mAssetSupply": "72877075680825341746438519" + "mAssetSupply": "2031650935314514041987939452" }, { "type": "redeemBassets", "inputQtys": [ - "3366583926797903593472", - "20824871832671869730816", - "20113511928520954085376" + "273328493564277489664", + "3178388051768087412736", + "3488790125688997281792" ], - "expectedQty": "44237645084361148099749", - "swapFee": "26558522163915037882", + "expectedQty": "6940224528804326174621", + "swapFee": "4166634698101456578", "reserves": [ - "7667026577102014498812387", - "18526124181092863723969213", - "46872200123565278606392567" + "670085344488844048012206293", + "636458256686467112067727479", + "725124698067551032320803583" ], - "mAssetSupply": "72832838035740980598338770" + "mAssetSupply": "2031643995089985237661764831" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1384530072144322345566208", - "expectedQty": "1386910299438266200444658", + "inputIndex": 2, + "inputQty": "64869881405686054912", + "expectedQty": "64833539083262034963", "reserves": [ - "7667026577102014498812387", - "19910654253237186069535421", - "46872200123565278606392567" + "670085344488844048012206293", + "636458256686467112067727479", + "725124762937432438006858495" ] }, { "type": "mintMulti", "inputQtys": [ - "2797945251149055000576", - "6184212469580908462080", - "1136234471761340399616" + "4541020393990441140224", + "8566451467864277778432", + "5344789826614033645568" ], - "expectedQty": "10211907780637794877817", + "expectedQty": "18454065660401739454885", "reserves": [ - "7669824522353163553812963", - "19916838465706766977997501", - "46873336358037039946792183" + "670089885509238038453346517", + "636466823137934976345505911", + "725130107727259052040504063" ], - "mAssetSupply": "74229960242959884593661245" + "mAssetSupply": "2031662513989184722663254679" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "666848999906182363611136", - "outputIndex": 2, - "expectedQty": "695279418395721429953826", - "swapFee": "413133683585206492471", + "inputQty": "4300882996716485600083968", + "expectedQty": "4301134926467600496629301", "reserves": [ - "8336673522259345917424099", - "19916838465706766977997501", - "46178056939641318516838357" - ], - "mAssetSupply": "74230373376643469800153716", - "hardLimitError": false, - "insufficientLiquidityError": false + "674390768505954524053430485", + "636466823137934976345505911", + "725130107727259052040504063" + ] }, { "type": "mintMulti", "inputQtys": [ - "1107205637732654263566336", - "1405056659468917332246528", - "135167133118624987873280" + "544961343593402943406080", + "1113549831483155913113600", + "637293845892300581896192" ], - "expectedQty": "2676324157595813927806426", + "expectedQty": "2296078747390381647135363", "reserves": [ - "9443879159992000180990435", - "21321895125175684310244029", - "46313224072759943504711637" + "674935729849547926996836565", + "637580372969418132258619511", + "725767401573151352622400255" ], - "mAssetSupply": "76906697534239283727960142" + "mAssetSupply": "2038259727663042704807019343" }, { - "type": "redeemMasset", - "inputQty": "1852385661490936217", - "expectedQtys": [ - "227398377431729453", - "513408131668486932", - "1115172253833311989" - ], - "redemptionFee": "555715698447280", - "reserves": [ - "9443878932593622749260982", - "21321894611767552641757097", - "46313222957587689671399648" - ], - "mAssetSupply": "76906695682409337935471205" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "114426927454488734203904", - "expectedQty": "115372880064221090802548", - "swapFee": "68656156472693240522", + "type": "mint", + "inputIndex": 1, + "inputQty": "1168293915715340343443456", + "expectedQty": "1168910286804498463438911", "reserves": [ - "9443878932593622749260982", - "21321894611767552641757097", - "46197850077523468580597100" - ], - "mAssetSupply": "76792337411111321894507823" + "674935729849547926996836565", + "638748666885133472602062967", + "725767401573151352622400255" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "858491662214722152824832", - "expectedQty": "865475392798287176593978", - "swapFee": "515094997328833291694", + "inputQty": "147552090229325344", + "expectedQty": "147542746546228093", + "swapFee": "88531254137595", "reserves": [ - "9443878932593622749260982", - "21321894611767552641757097", - "45332374684725181404003122" + "674935729849547926996836565", + "638748666885133472602062967", + "725767401425608606076172162" ], - "mAssetSupply": "75934360843893928574974685" + "mAssetSupply": "2039428637802383644295270505" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "149296163010966618112", - "176565234785097121792", - "267417097370324140032" + "11828891616325504579141632", + "20051469025973296775036928", + "29075640378357280126533632" ], - "expectedQty": "594433492638555018569", - "swapFee": "356874220115202132", + "expectedQty": "60950729891133200616042392", "reserves": [ - "9443729636430611782642870", - "21321718046532767544635305", - "45332107267627811079863090" + "686764621465873431575978197", + "658800135911106769377099895", + "754843041803965886202705794" ], - "mAssetSupply": "75933766410401290019956116" + "mAssetSupply": "2100379367693516844911312897" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "7947264119083775882690560", - "expectedQty": "7912163246512128043574011", - "swapFee": "4768358471450265529614", - "reserves": [ - "9443729636430611782642870", - "13409554800020639501061294", - "45332107267627811079863090" - ], - "mAssetSupply": "67991270649788964402795170" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "27506352231292210249728", - "10340025808441042796544", - "46050116162062575992832" - ], - "expectedQty": "84037107077087819661714", - "swapFee": "50452535767713319788", + "inputQty": "801121349074696804499456", + "expectedQty": "800231676079028831115876", + "swapFee": "480672809444818082699", "reserves": [ - "9416223284199319572393142", - "13399214774212198458264750", - "45286057151465748503870258" + "686764621465873431575978197", + "657999904235027740545984019", + "754843041803965886202705794" ], - "mAssetSupply": "67907233542711876583133456" + "mAssetSupply": "2099578727017251592924896140" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "8687239154477011463831552", - "outputIndex": 2, - "expectedQty": "8776695494532265946658294", - "swapFee": "5230665322102316085873", + "type": "redeem", + "inputIndex": 0, + "inputQty": "432440707648615808", + "expectedQty": "432118701792411726", + "swapFee": "259464424589169", "reserves": [ - "9416223284199319572393142", - "22086453928689209922096302", - "36509361656933482557211964" + "686764621033754729783566471", + "657999904235027740545984019", + "754843041803965886202705794" ], - "mAssetSupply": "67912464208033978899219329", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2099578726585070349700869501" }, { - "type": "redeemBassets", - "inputQtys": [ - "10539572635368482816", - "10134672342121990144", - "2186763640468856064" - ], - "expectedQty": "23006479825301035512", - "swapFee": "13812175200300801", + "type": "mint", + "inputIndex": 0, + "inputQty": "534471166482294439936", + "expectedQty": "534548520424096905567", "reserves": [ - "9416212744626684203910326", - "22086443794016867800106158", - "36509359470169842088355900" - ], - "mAssetSupply": "67912441201554153598183817" + "686765155504921212078006407", + "657999904235027740545984019", + "754843041803965886202705794" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1536039239032122900480", - "expectedQty": "1536857635361967629978", - "swapFee": "921623543419273740", + "inputIndex": 2, + "inputQty": "180575134539263477022720", + "expectedQty": "180578374898653556743391", + "swapFee": "108345080723558086213", "reserves": [ - "9416212744626684203910326", - "22084906936381505832476180", - "36509359470169842088355900" + "686765155504921212078006407", + "657999904235027740545984019", + "754662463429067232645962403" ], - "mAssetSupply": "67910906083938664894557077" + "mAssetSupply": "2099398794344132233878838561" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1317291440914615819567104", - "expectedQty": "1317642220613768607160516", - "swapFee": "790374864548769491740", + "type": "redeemBassets", + "inputQtys": [ + "1431593325554003821461504", + "405834794506584571510784", + "938683415016291954589696" + ], + "expectedQty": "2775950047422768489763094", + "swapFee": "1666569970435922647446", "reserves": [ - "9416212744626684203910326", - "20767264715767737225315664", - "36509359470169842088355900" + "685333562179367208256544903", + "657594069440521155974473235", + "753723780014050940691372707" ], - "mAssetSupply": "66594405017888597844481713" + "mAssetSupply": "2096622844296709465389075467" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1618164239760561119690752", - "expectedQty": "1617546981610011638951065", - "swapFee": "970898543856336671814", + "type": "redeemBassets", + "inputQtys": [ + "22842966640789782528", + "23278854098425651200", + "10291517745633691648" + ], + "expectedQty": "56422240409317978164", + "swapFee": "33873668446658782", "reserves": [ - "9416212744626684203910326", - "19149717734157725586364599", - "36509359470169842088355900" + "685333539336400567466762375", + "657594046161667057548822035", + "753723769722533195057681059" ], - "mAssetSupply": "64977211676671893061462775" + "mAssetSupply": "2096622787874469056071097303" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3107025460560275968", - "expectedQty": "3153623276842057488", + "inputIndex": 2, + "inputQty": "9149801804159682347008", + "expectedQty": "9144148350106206296058", "reserves": [ - "9416215851652144764186294", - "19149717734157725586364599", - "36509359470169842088355900" + "685333539336400567466762375", + "657594046161667057548822035", + "753732919524337354740028067" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "182029033395714737045504", - "expectedQty": "181879733161717771540631", - "swapFee": "109217420037428842227", + "type": "mintMulti", + "inputQtys": [ + "1249943939638677875982336", + "1158045890533308263038976", + "742568676696183902568448" + ], + "expectedQty": "3150874734016766798516786", "reserves": [ - "9416215851652144764186294", - "18967838000996007814823968", - "36509359470169842088355900" + "686583483276039245342744711", + "658752092052200365811861011", + "754475488201033538642596515" ], - "mAssetSupply": "64795295014319492595316986" + "mAssetSupply": "2099782806756835929075910147" }, { "type": "mintMulti", "inputQtys": [ - "277518090336872920252416", - "419045085936940901990400", - "204019037020531913129984" + "1267162466642661474304", + "75837224642673491968", + "615747804890803077120" ], - "expectedQty": "903393768992718805901779", + "expectedQty": "1958595547445237366528", "reserves": [ - "9693733941989017684438710", - "19386883086932948716814368", - "36713378507190374001485884" + "686584750438505888004219015", + "658752167889425008485352979", + "754476103948838429445673635" ], - "mAssetSupply": "65698688783312211401218765" + "mAssetSupply": "2099784765352383374313276675" }, { - "type": "redeemMasset", - "inputQty": "9235672122754723951411", - "expectedQtys": [ - "1362299484912444190006", - "2724516785940116275334", - "5159478992207490971063" + "type": "mintMulti", + "inputQtys": [ + "280061202924777150349312", + "1450695808965383670464512", + "1489359392321825962721280" ], - "redemptionFee": "2770701636826417185", + "expectedQty": "3219971906529927005040437", "reserves": [ - "9692371642504105240248704", - "19384158570147008600539034", - "36708219028198166510514821" + "686864811641430665154568327", + "660202863698390392155817491", + "755965463341160255408394915" ], - "mAssetSupply": "65689455881891093503684539" + "mAssetSupply": "2103004737258913301318317112" }, { - "type": "redeemMasset", - "inputQty": "111848445236216512", - "expectedQtys": [ - "16498104015423594", - "32995212744352276", - "62483779830763799" + "type": "mintMulti", + "inputQtys": [ + "1578521628138574184448", + "3449590332509530882048", + "905072640825646514176" + ], + "expectedQty": "5934598695733468395119", + "reserves": [ + "686866390163058803728752775", + "660206313288722901686699539", + "755966368413801081054909091" ], - "redemptionFee": "33554533570864", + "mAssetSupply": "2103010671857609034786712231" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "117080852034186731585536", + "outputIndex": 0, + "expectedQty": "117050466473751619797233", + "swapFee": "70283581980148765166", "reserves": [ - "9692371626006001224825110", - "19384158537151795856186758", - "36708218965714386679751022" + "686749339696585052108955542", + "660323394140757088418285075", + "755966368413801081054909091" ], - "mAssetSupply": "65689455770076202801038891" + "mAssetSupply": "2103010742141191014935477397", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2435129829055552028672", - "2183120329163588763648", - "297451093771793661952" + "1150560268162813824", + "90754427188262400", + "1332889117800660480" ], - "expectedQty": "4949068946694079948675", - "swapFee": "2971224102477934730", + "expectedQty": "2573609389968512368", "reserves": [ - "9689936496176945672796438", - "19381975416822632267423110", - "36707921514620614886089070" + "686749340847145320271769366", + "660323394231511515606547475", + "755966369746690198855569571" ], - "mAssetSupply": "65684506701129508721090216" + "mAssetSupply": "2103010744714800404903989765" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "16353573840073755983872", - "outputIndex": 1, - "expectedQty": "16574158062350668364543", - "swapFee": "9952464878959010623", + "inputIndex": 1, + "inputQty": "331186614592393369878528", + "outputIndex": 2, + "expectedQty": "331355992745942052378686", + "swapFee": "198810675399553931981", "reserves": [ - "9706290070017019428780310", - "19365401258760281599058567", - "36707921514620614886089070" + "686749340847145320271769366", + "660654580846103908976426003", + "755635013753944256803190885" ], - "mAssetSupply": "65684516653594387680100839", + "mAssetSupply": "2103010943525475804457921746", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "14016741562162394991427584", - "hardLimitError": true - }, - { - "type": "redeemMasset", - "inputQty": "18959445792907172249", - "expectedQtys": [ - "2800822507971119905", - "5588031197313367451", - "10592344969843505343" - ], - "redemptionFee": "5687833737872151", + "type": "mint", + "inputIndex": 2, + "inputQty": "42478438896781232193929216", + "expectedQty": "42446320106602633525685959", "reserves": [ - "9706287269194511457660405", - "19365395670729084285691116", - "36707910922275645042583727" - ], - "mAssetSupply": "65684497699836428510800741" + "686749340847145320271769366", + "660654580846103908976426003", + "798113452650725488997120101" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "91573349071464336", - "expectedQty": "90230880571375164", - "swapFee": "54944009442878", + "type": "mintMulti", + "inputQtys": [ + "2986681622987060365230080", + "3649999125055611995160576", + "2201008040639405878149120" + ], + "expectedQty": "8839066063435207489091876", "reserves": [ - "9706287178963630886285241", - "19365395670729084285691116", - "36707910922275645042583727" + "689736022470132380636999446", + "664304579971159520971586579", + "800314460691364894875269221" ], - "mAssetSupply": "65684497608318023448779283" + "mAssetSupply": "2154296329695513645472699581" }, { "type": "swap", "inputIndex": 1, - "inputQty": "1253353017152645164433408", - "outputIndex": 0, - "expectedQty": "1231577879639112390082659", - "swapFee": "751940643295706967457", + "inputQty": "348442114541578254024704", + "outputIndex": 2, + "expectedQty": "348765938251752685389209", + "swapFee": "209200556460508109959", "reserves": [ - "8474709299324518496202582", - "20618748687881729450124524", - "36707910922275645042583727" + "689736022470132380636999446", + "664653022085701099225611283", + "799965694753113142189880012" ], - "mAssetSupply": "65685249548961319155746740", + "mAssetSupply": "2154296538896070105980809540", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2932149675766878136434688", - "expectedQty": "2846275493623424328877079", - "swapFee": "1759289805460126881860", + "inputIndex": 1, + "inputQty": "1779018512088198698500096", + "expectedQty": "1776792108013320910910626", + "swapFee": "1067411107252919219100", "reserves": [ - "5628433805701094167325503", - "20618748687881729450124524", - "36707910922275645042583727" + "689736022470132380636999446", + "662876229977687778314700657", + "799965694753113142189880012" ], - "mAssetSupply": "62754859162999901146193912" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "10518275004740", - "expectedQty": "10986457370651", - "reserves": [ - "5628433805711612442330243", - "20618748687881729450124524", - "36707910922275645042583727" - ] + "mAssetSupply": "2152518587795089160201528544" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "675332102130216351039488", - "expectedQty": "676734795644107336969458", - "swapFee": "405199261278129810623", + "type": "mintMulti", + "inputQtys": [ + "1098713882429702537216", + "1148639009237456125952", + "1913804282234793623552" + ], + "expectedQty": "4160556226730156711803", "reserves": [ - "5628433805711612442330243", - "19942013892237622113155066", - "36707910922275645042583727" + "689737121184014810339536662", + "662877378616697015770826609", + "799967608557395376983503564" ], - "mAssetSupply": "62079932260141949382335698" + "mAssetSupply": "2152522748351315890358240347" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "1835926196444438777036800", - "expectedQty": "1854169007746898292275723", - "swapFee": "1101555717866663266222", + "inputQty": "4768507607804595119587328", + "expectedQty": "4764202473273056248539750", "reserves": [ - "5628433805711612442330243", - "19942013892237622113155066", - "34853741914528746750308004" - ], - "mAssetSupply": "60245107619415377268565120" + "689737121184014810339536662", + "662877378616697015770826609", + "804736116165199972103090892" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1621059887294570685267968", - "2782692324035274762878976", - "2377082678350156614598656" - ], - "expectedQty": "6828440861227368563254691", - "swapFee": "4099524231275186249702", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2425394669897111830528", + "expectedQty": "2423148960992695714528", + "swapFee": "1455236801938267098", "reserves": [ - "4007373918417041757062275", - "17159321568202347350276090", - "32476659236178590135709348" + "689734698035053817643822134", + "662877378616697015770826609", + "804736116165199972103090892" ], - "mAssetSupply": "53416666758188008705310429" + "mAssetSupply": "2157284526885155851433216667" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "7116113504356776542208", - "expectedQty": "7589222339881248151932", + "inputIndex": 2, + "inputQty": "1638396328164924", + "expectedQty": "1636892244256786", "reserves": [ - "4014490031921398533604483", - "17159321568202347350276090", - "32476659236178590135709348" + "689734698035053817643822134", + "662877378616697015770826609", + "804736116166838368431255816" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "19402690898878892343296", - "expectedQty": "19337454226764779458789", + "inputQty": "14058846856873624761008128", + "expectedQty": "14067493833561406454456826", "reserves": [ - "4014490031921398533604483", - "17178724259101226242619386", - "32476659236178590135709348" + "689734698035053817643822134", + "676936225473570640531834737", + "804736116166838368431255816" ] }, { - "type": "redeemMasset", - "inputQty": "113825018339995304538931", - "expectedQtys": [ - "8547559909990282870958", - "36576544869783384791656", - "69148556426907809218344" + "type": "mintMulti", + "inputQtys": [ + "1858210864745194192896", + "3019077411812787355648", + "2083777410665729490944" + ], + "expectedQty": "6961650059381297802374", + "reserves": [ + "689736556245918562838015030", + "676939244550982453319190385", + "804738199944249034160746760" + ], + "mAssetSupply": "2171358982370413531429732653" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1330562611593215068864512", + "657886226940999216660480", + "442093085432247966760960" ], - "redemptionFee": "34147505501998591361", + "expectedQty": "2431040466847994552562613", + "swapFee": "1459499980096854844444", "reserves": [ - "4005942472011408250733525", - "17142147714231442857827730", - "32407510679751682326491004" + "688405993634325347769150518", + "676281358324041454102529905", + "804296106858816786193985800" ], - "mAssetSupply": "53329802563920161426973580" + "mAssetSupply": "2168927941903565536877170040" }, { "type": "mintMulti", "inputQtys": [ - "35910208446971439480832", - "14498873954909938515968", - "19439089595798725328896" + "1049374405892420925390848", + "2066181971870141351198720", + "4905809128996941804339200" ], - "expectedQty": "71905396488695295911240", + "expectedQty": "8018621252088819770774379", "reserves": [ - "4041852680458379690214357", - "17156646588186352796343698", - "32426949769347481051819900" + "689455368040217768694541366", + "678347540295911595453728625", + "809201915987813727998325000" ], - "mAssetSupply": "53401707960408856722884820" + "mAssetSupply": "2176946563155654356647944419" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3003687295685668372480", - "expectedQty": "3011886532813641572233", - "swapFee": "1802212377411401023", + "inputQty": "34768738089170548432044032", + "expectedQty": "34723081375022391350049204", + "swapFee": "20861242853502329059226", "reserves": [ - "4041852680458379690214357", - "17153634701653539154771465", - "32426949769347481051819900" + "689455368040217768694541366", + "643624458920889204103679421", + "809201915987813727998325000" ], - "mAssetSupply": "53398706075325548465913363" + "mAssetSupply": "2142198686309337310544959613" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "7533769864101458083840", - "expectedQty": "7433665575527133126476", + "type": "redeemMasset", + "inputQty": "1778455112682779540507852", + "expectedQtys": [ + "572214698134413878603461", + "534177254316277459818517", + "671598556702724775563764" + ], + "redemptionFee": "533536533804833862152", "reserves": [ - "4041852680458379690214357", - "17153634701653539154771465", - "32434483539211582509903740" - ] + "688883153342083354815937905", + "643090281666572926643860904", + "808530317431111003222761236" + ], + "mAssetSupply": "2140420764733188335838313913" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "15900248887672541544448", - "expectedQty": "15688878336565857909047", + "type": "redeemBassets", + "inputQtys": [ + "802556955178391040", + "140461014267665968", + "273309331571127072" + ], + "expectedQty": "1216380148902946473", + "swapFee": "730266249091222", "reserves": [ - "4041852680458379690214357", - "17153634701653539154771465", - "32450383788099255051448188" - ] + "688883152539526399637546865", + "643090281526111912376194936", + "808530317157801671651634164" + ], + "mAssetSupply": "2140420763516808186935367440" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "3504994609661466898333696", - "outputIndex": 1, - "expectedQty": "3454408711455262903518983", - "swapFee": "2073079866193405274702", + "inputIndex": 1, + "inputQty": "15454689493474177024", + "outputIndex": 2, + "expectedQty": "15474824463022346419", + "swapFee": "9280960292768676", "reserves": [ - "4041852680458379690214357", - "13699225990198276251252482", - "35955378397760721949781884" + "688883152539526399637546865", + "643090296980801405850371960", + "808530301682977208629287745" ], - "mAssetSupply": "53423901699103834862223588", + "mAssetSupply": "2140420763526089147228136116", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "45244602540339077120", - "5670801714989889536", - "33651395066699694080" + "1164360740492084992", + "70239812580542000", + "51123325628627712" ], - "expectedQty": "87337150042266607915", - "swapFee": "52433750275525279", + "expectedQty": "1286036737198675909", + "swapFee": "772085293495302", "reserves": [ - "4041807435855839351137237", - "13699220319396561261362946", - "35955344746365655250087804" + "688883151375165659145461873", + "643090296910561593269829960", + "808530301631853883000660033" ], - "mAssetSupply": "53423814361953792595615673" + "mAssetSupply": "2140420762240052410029460207" }, { "type": "redeemBassets", "inputQtys": [ - "812612581388082556698624", - "179495557844603907342336", - "2136352997549624925356032" + "328287735502937918537728", + "9898598504260784095232", + "264061625520598548480000" ], - "expectedQty": "3161015369608475036200906", - "swapFee": "1897747870487377448189", + "expectedQty": "602072289286526930354512", + "swapFee": "361460249721749207737", "reserves": [ - "3229194854467756794438613", - "13519724761551957354020610", - "33818991748816030324731772" + "688554863639662721226924145", + "643080398312057332485734728", + "808266240006333284452180033" ], - "mAssetSupply": "50262798992345317559414767" + "mAssetSupply": "2139818689950765883099105695" }, { - "type": "redeemBassets", - "inputQtys": [ - "17483257744872855552", - "440457733105652531200", - "249305290245129895936" + "type": "redeemMasset", + "inputQty": "1312321085550710559971737", + "expectedQtys": [ + "422154451138930009242358", + "394273959743174018595058", + "495549750560712543349381" ], - "expectedQty": "704446217298519219226", - "swapFee": "422921483269072975", + "redemptionFee": "393696325665213167991", "reserves": [ - "3229177371210011921583061", - "13519284303818851701489410", - "33818742443525785194835836" + "688132709188523791217681787", + "642686124352314158467139670", + "807770690255772571908830652" ], - "mAssetSupply": "50262094546128019040195541" + "mAssetSupply": "2138506762561540837752301949" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "4528240908679556628480", - "expectedQty": "4442877219725178679406", + "inputIndex": 0, + "inputQty": "48525016358282799874048", + "expectedQty": "48537739092585874592221", "reserves": [ - "3229177371210011921583061", - "13519284303818851701489410", - "33823270684434464751464316" + "688181234204882074017555835", + "642686124352314158467139670", + "807770690255772571908830652" ] }, { - "type": "mintMulti", - "inputQtys": [ - "643842192661514944512", - "4580715871711500173312", - "5973399770051465183232" + "type": "redeemMasset", + "inputQty": "43152711933681196439961", + "expectedQtys": [ + "13882258498373951615068", + "12964513514939489136026", + "16294663341840134096520" ], - "expectedQty": "11152144696855978578007", + "redemptionFee": "12945813580104358931", "reserves": [ - "3229821213402673436527573", - "13523865019690563201662722", - "33829244084204516216647548" + "688167351946383700065940767", + "642673159838799218978003644", + "807754395592430731774734132" ], - "mAssetSupply": "50277689568044600197452954" + "mAssetSupply": "2138512160534513322534813140" }, { "type": "redeemMasset", - "inputQty": "1912664556230739558", + "inputQty": "220144193998845482998169", "expectedQtys": [ - "122832042234399905", - "514320716074834786", - "1286546487733026795" + "70820545709963499962364", + "66138656191984633342861", + "83127464465845027724275" ], - "redemptionFee": "573799366869221", + "redemptionFee": "66043258199653644899", "reserves": [ - "3229821090570631202127668", - "13523864505369847126827936", - "33829242797658028483620753" + "688096531400673736565978403", + "642607021182607234344660783", + "807671268127964886747009857" ], - "mAssetSupply": "50277687655953843333582617" + "mAssetSupply": "2138292082383772676705459870" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "144137474475318542336", - "expectedQty": "144176505888514790041", + "type": "swap", + "inputIndex": 2, + "inputQty": "103951277330930", + "outputIndex": 1, + "expectedQty": "103691771779058", + "swapFee": "62306968656", "reserves": [ - "3229821090570631202127668", - "13524008642844322445370272", - "33829242797658028483620753" - ] + "688096531400673736565978403", + "642607021182503542572881725", + "807671268128068838024340787" + ], + "mAssetSupply": "2138292082383772739012428526", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "16407584422493232824320", - "19469947102538303012864", - "7022289279086304952320" + "type": "redeemMasset", + "inputQty": "302587714293839303802880", + "expectedQtys": [ + "97342685546967482069728", + "90907438620436368801990", + "114258518523080124168012" ], - "expectedQty": "44435660604616596917684", + "redemptionFee": "90776314288151791140", "reserves": [ - "3246228674993124434951988", - "13543478589946860748383136", - "33836265086937114788573073" + "687999188715126769083908675", + "642516113743883106204079735", + "807557009609545757900172775" ], - "mAssetSupply": "50322267493064348445290342" + "mAssetSupply": "2137989585445793187860416786" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "39246526774856411774976", - "expectedQty": "39972196835175067698258", - "swapFee": "23547916064913847064", + "type": "mintMulti", + "inputQtys": [ + "8747747198486", + "38544593157782", + "50481143751720" + ], + "expectedQty": "97757917869893", "reserves": [ - "3246228674993124434951988", - "13543478589946860748383136", - "33796292890101939720874815" + "687999188715135516831107161", + "642516113743921650797237517", + "807557009609596239043924495" ], - "mAssetSupply": "50283044514205556947362430" + "mAssetSupply": "2137989585445890945778286679" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2848768235091055953838080", - "outputIndex": 0, - "hardLimitError": true + "type": "redeemBassets", + "inputQtys": [ + "2249164180066759843250176", + "336616014083908670849024", + "788687815727686279495680" + ], + "expectedQty": "3374558480084147166237530", + "swapFee": "2025950658445555633122", + "reserves": [ + "685750024535068756987856985", + "642179497729837742126388493", + "806768321793868552764428815" + ], + "mAssetSupply": "2134615026965806798612049149" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "148444446714205468360704", - "expectedQty": "148461950420084925438057", + "inputIndex": 2, + "inputQty": "1085463919015131328020480", + "expectedQty": "1084344914179469901004217", "reserves": [ - "3246228674993124434951988", - "13691923036661066216743840", - "33796292890101939720874815" + "685750024535068756987856985", + "642179497729837742126388493", + "807853785712883684092449295" ] }, { - "type": "mintMulti", - "inputQtys": [ - "10675476726561445511168", - "4680265661373556457472", - "14362248169029044797440" + "type": "redeemMasset", + "inputQty": "22621094981617", + "expectedQtys": [ + "7261210504580", + "6799854681599", + "8554132242227" ], - "expectedQty": "30524112430837499618013", + "redemptionFee": "6786328494", "reserves": [ - "3256904151719685880463156", - "13696603302322439773201312", - "33810655138270968765672255" + "685750024535061495777352405", + "642179497729830942271706894", + "807853785712875129960207068" ], - "mAssetSupply": "50462030577056479372418500" + "mAssetSupply": "2135699371879963654204400243" }, { "type": "mintMulti", "inputQtys": [ - "2776744202435102208", - "5410184601111307264", - "5724386147100224512" + "739591362520805713903616", + "2008770658299071592136704", + "1656190942845098541449216" ], - "expectedQty": "14083359960361108484", + "expectedQty": "4404790483678293843204609", "reserves": [ - "3256906928463888315565364", - "13696608712507040884508576", - "33810660862657115865896767" + "686489615897582301491256021", + "644188268388130013863843598", + "809509976655720228501656284" ], - "mAssetSupply": "50462044660416439733526984" + "mAssetSupply": "2140104162363641948047604852" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1001474426536274966872064", - "1045191009953813020803072", - "571069596605137287118848" + "349472516422680740626432", + "992742988321150040276992", + "518389170038164231815168" ], - "expectedQty": "2687141249603857412204608", + "expectedQty": "1861026544204459578604654", + "swapFee": "1117286298301656741207", "reserves": [ - "4258381355000163282437428", - "14741799722460853905311648", - "34381730459262253153015615" + "686140143381159620750629589", + "643195525399808863823566606", + "808991587485682064269841116" ], - "mAssetSupply": "53149185910020297145731592" + "mAssetSupply": "2138243135819437488469000198" }, { "type": "mint", "inputIndex": 2, - "inputQty": "142006750929772110413824", - "expectedQty": "139954416174737862658441", + "inputQty": "2101613730018932088111104", + "expectedQty": "2099422589105205515541401", "reserves": [ - "4258381355000163282437428", - "14741799722460853905311648", - "34523737210192025263429439" + "686140143381159620750629589", + "643195525399808863823566606", + "811093201215700996357952220" ] }, { - "type": "redeemMasset", - "inputQty": "125860984741883447502438", - "expectedQtys": [ - "10054642995660989244636", - "34807482225337814183004", - "81515445326874581518034" - ], - "redemptionFee": "37758295422565034250", + "type": "mint", + "inputIndex": 2, + "inputQty": "116590327619673577750528", + "expectedQty": "116467957300754606020558", "reserves": [ - "4248326712004502293192792", - "14706992240235516091128644", - "34442221764865150681911405" - ], - "mAssetSupply": "53163317099748574125921845" + "686140143381159620750629589", + "643195525399808863823566606", + "811209791543320669935702748" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10343176699996146", - "4713148132695783", - "10452165146851358" + "3512385130188499987726336", + "5967561354415496209891328", + "8696615880115453710827520" ], - "expectedQty": "26001656321071200", - "swapFee": "15610360008647", + "expectedQty": "18173641854802246263190136", "reserves": [ - "4248326701661325593196646", - "14706992235522367958432861", - "34442221754412985535060047" + "689652528511348120738355925", + "649163086754224360033457934", + "819906407423436123646530268" ], - "mAssetSupply": "53163317073746917804850645" + "mAssetSupply": "2158632668220645694853752293" }, { "type": "swap", "inputIndex": 2, - "inputQty": "790003030830094483456", - "outputIndex": 1, - "expectedQty": "778078100717442580518", - "swapFee": "467132477288036203", + "inputQty": "4111910963888198036488192", + "outputIndex": 0, + "expectedQty": "4103547825646892696496534", + "swapFee": "2464481248691242634210", "reserves": [ - "4248326701661325593196646", - "14706214157421650515852343", - "34443011757443815629543503" + "685548980685701228041859391", + "649163086754224360033457934", + "824018318387324321683018460" ], - "mAssetSupply": "53163317540879395092886848", + "mAssetSupply": "2158635132701894386096386503", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "3397349129503", - "3514881268491", - "3259114111098" - ], - "expectedQty": "10335882233638", - "swapFee": "6205252491", + "type": "swap", + "inputIndex": 2, + "inputQty": "635274820654088828485632", + "outputIndex": 1, + "expectedQty": "633636426276343795382346", + "swapFee": "380741805007706404289", "reserves": [ - "4248326701657928244067143", - "14706214157418135634583852", - "34443011757440556515432405" + "685548980685701228041859391", + "648529450327948016238075588", + "824653593207978410511504092" ], - "mAssetSupply": "53163317540869059210653210" + "mAssetSupply": "2158635513443699393802790792", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "34030504363000194698051584", + "expectedQty": "34038325504807822861362565", + "reserves": [ + "719579485048701422739910975", + "648529450327948016238075588", + "824653593207978410511504092" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "303515763225737220325376", - "274289548399313980227584", - "173554966112223946080256" + "6404423403992379293696", + "7071807283038257152000", + "906457122999284269056" ], - "expectedQty": "766713188015923306408454", + "expectedQty": "14389620346553310361506", + "swapFee": "8638955581280754669", "reserves": [ - "4551842464883665464392519", - "14980503705817449614811436", - "34616566723552780461512661" + "719573080625297430360617279", + "648522378520664977980923588", + "824652686750855411227235036" ], - "mAssetSupply": "53930030728884982517061664" + "mAssetSupply": "2192659449328160663353791851" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "632780983232328237056", - "expectedQty": "632374355802837377621", - "swapFee": "379668589939396942", + "type": "redeemMasset", + "inputQty": "96596732153568092487680", + "expectedQtys": [ + "31690993160351802741799", + "28561822023933750785596", + "36318844269128323341986" + ], + "redemptionFee": "28979019646070427746", "reserves": [ - "4551842464883665464392519", - "14979871331461646777433815", - "34616566723552780461512661" + "719541389632137078557875480", + "648493816698641044230137992", + "824616367906586282903893050" ], - "mAssetSupply": "53929398327570340128221550" + "mAssetSupply": "2192562881575026741331731917" }, { "type": "redeemMasset", - "inputQty": "3957965315065606307840", + "inputQty": "190847025749180232499", "expectedQtys": [ - "333966822249266749750", - "1099067040405362113376", - "2539803359855535017755" + "62612177998687599377", + "56429846659609185205", + "71755464733438913874" + ], + "redemptionFee": "57254107724754069", + "reserves": [ + "719541327019959079870276103", + "648493760268794384620952787", + "824616296151121549464979176" ], - "redemptionFee": "1187389594519681892", + "mAssetSupply": "2192562690785255099876253487" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "6076913934665053047357440", + "expectedQty": "6079191595788697049600883", + "swapFee": "3646148360799031828414", "reserves": [ - "4551508498061416197642769", - "14978772264421241415320439", - "34614026920192924926494906" + "719541327019959079870276103", + "648493760268794384620952787", + "818537104555332852415378293" ], - "mAssetSupply": "53925441549644869041595602" + "mAssetSupply": "2186489422998950845860724461" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1933004963222338816", - "expectedQty": "1906747484836550204", + "inputQty": "20093013112736", + "expectedQty": "20073814590359", "reserves": [ - "4551508498061416197642769", - "14978772264421241415320439", - "34614028853197888148833722" + "719541327019959079870276103", + "648493760268794384620952787", + "818537104555352945428491029" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "784632945598953816064", - "expectedQty": "743221880633136166550", - "swapFee": "470779767359372289", + "type": "redeemBassets", + "inputQtys": [ + "253475317322489524125696", + "334746330618430964629504", + "339433250636118750134272" + ], + "expectedQty": "927683279966871116663718", + "swapFee": "556944134460799149487", "reserves": [ - "4550765276180783061476219", - "14978772264421241415320439", - "34614028853197888148833722" + "719287851702636590346150407", + "648159013938175953656323283", + "818197671304716826678356757" ], - "mAssetSupply": "53924659294226522283702031" + "mAssetSupply": "2185561739719004048558651102" }, { - "type": "redeemMasset", - "inputQty": "104328051266587669299200", - "expectedQtys": [ - "8801725361007549573528", - "28970740461296317305620", - "66947679591052569319995" + "type": "redeemBassets", + "inputQtys": [ + "313429126510582324789248", + "981000662237126680641536", + "103850366644853500018688" ], - "redemptionFee": "31298415379976300789", + "expectedQty": "1399188076930764040284618", + "swapFee": "840016856272221757225", "reserves": [ - "4541963550819775511902691", - "14949801523959945098014819", - "34547081173606835579513727" + "718974422576126008021361159", + "647178013275938826975681747", + "818093820938071973178338069" ], - "mAssetSupply": "53820362541375314590703620" + "mAssetSupply": "2184162551642073284518366484" }, { - "type": "redeemMasset", - "inputQty": "5522030018354734117683", - "expectedQtys": [ - "465870789943180666377", - "1533406370952478647279", - "3543506198695610822769" - ], - "redemptionFee": "1656609005506420235", + "type": "swap", + "inputIndex": 2, + "inputQty": "49478976423565544365490176", + "outputIndex": 1, + "expectedQty": "49321368903042834595452125", + "swapFee": "29654391518085793838528", "reserves": [ - "4541497680029832331236314", - "14948268117588992619367540", - "34543537667408139968690958" + "718974422576126008021361159", + "597856644372895992380229622", + "867572797361637517543828245" ], - "mAssetSupply": "53814842167965965363006172" + "mAssetSupply": "2184192206033591370312205012", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2617763908875586918940672", - "2705353045062702757576704", - "764398958632679388479488" + "type": "redeem", + "inputIndex": 2, + "inputQty": "6614615569728455038730240", + "expectedQty": "6620254399367719673471266", + "swapFee": "3968769341837073023238", + "reserves": [ + "718974422576126008021361159", + "597856644372895992380229622", + "860952542962269797870356979" ], - "hardLimitError": true + "mAssetSupply": "2177581559233204752346498010" }, { - "type": "mintMulti", - "inputQtys": [ - "1725822595113384411136", - "3281803797501706764288", - "3111069027222276800512" + "type": "redeemMasset", + "inputQty": "92387080920484913610752", + "expectedQtys": [ + "30494389839173202869421", + "25357332624049882743377", + "36516212056680134658746" ], - "expectedQty": "8171629325849360295010", + "redemptionFee": "27716124276145474083", "reserves": [ - "4543223502624945715647450", - "14951549921386494326131828", - "34546648736435362245491470" + "718943928186286834818491738", + "597831287040271942497486245", + "860916026750213117735698233" ], - "mAssetSupply": "53823013797291814723301182" + "mAssetSupply": "2177489199868408543578361341" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "17180416593076", - "expectedQty": "17406514035271", - "swapFee": "10308249955", + "type": "mintMulti", + "inputQtys": [ + "74715248895836597256192", + "63613341832040429912064", + "137190650596446338809856" + ], + "expectedQty": "275432498033424163248209", "reserves": [ - "4543223502624945715647450", - "14951549921386494326131828", - "34546648736417955731456199" + "719018643435182671415747930", + "597894900382103982927398309", + "861053217400809564074508089" ], - "mAssetSupply": "53823013797274644614958061" + "mAssetSupply": "2177764632366441967741609550" }, { - "type": "mintMulti", - "inputQtys": [ - "597986165304757151858688", - "426918336600361008103424", - "28761988367565467942912" + "type": "redeemMasset", + "inputQty": "67609018237691403593318", + "expectedQtys": [ + "22315341250201250056423", + "18556165206006223970557", + "26723502312934026845593" ], - "expectedQty": "1082568396733146359906684", + "redemptionFee": "20282705471307421077", "reserves": [ - "5141209667929702867506138", - "15378468257986855334235252", - "34575410724785521199399111" + "718996328093932470165691507", + "597876344216897976703427752", + "861026493898496630047662496" ], - "mAssetSupply": "54905582194007790974864745" + "mAssetSupply": "2177697043630909747645437309" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "13364869282721814528", - "expectedQty": "13945235391158255499", + "inputIndex": 1, + "inputQty": "3520302057032621347569664", + "expectedQty": "3526338007699455693930597", "reserves": [ - "5141223032798985589320666", - "15378468257986855334235252", - "34575410724785521199399111" + "718996328093932470165691507", + "601396646273930598050997416", + "861026493898496630047662496" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "112283853122613460992", - "expectedQty": "107546229226157783878", - "swapFee": "67370311873568076", + "inputIndex": 2, + "inputQty": "2925919099759069252026368", + "expectedQty": "2928284419436122216735153", + "swapFee": "1755551459855441551215", "reserves": [ - "5141115486569759431536788", - "15378468257986855334235252", - "34575410724785521199399111" + "718996328093932470165691507", + "601396646273930598050997416", + "858098209479060507830927343" ], - "mAssetSupply": "54905483922760371393227328" + "mAssetSupply": "2178299218090309989528892753" }, { "type": "redeemMasset", - "inputQty": "44688584173297238016", + "inputQty": "129561633340105582182400", "expectedQtys": [ - "4183193207761780328", - "12513063386855285177", - "28133120852338599976" + "42751882550571339558919", + "35759346443354317111909", + "51022950236418516475089" ], - "redemptionFee": "13406575251989171", + "redemptionFee": "38868490002031674654", "reserves": [ - "5141111303376551669756460", - "15378455744923468478950075", - "34575382591664668860799135" + "718953576211381898826132588", + "601360886927487243733885507", + "858047186528824089314452254" ], - "mAssetSupply": "54905439247582773347978483" + "mAssetSupply": "2178169695325459885978385007" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8951368081163664384", - "22989062429071822848", - "124192691921561583616" + "10750161200014031595765760", + "11256476151667788057935872", + "23488109259520705420066816" ], - "expectedQty": "155036018388134655805", - "swapFee": "93077457507385224", + "expectedQty": "45480518813296947579353989", "reserves": [ - "5141102352008470506092076", - "15378432755861039407127227", - "34575258398972747299215519" + "729703737411395930421898348", + "612617363079155031791821379", + "881535295788344794734519070" ], - "mAssetSupply": "54905284211564385213322678" + "mAssetSupply": "2223650214138756833557738996" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "76782914750198319153152", - "expectedQty": "73498835663474834754071", - "swapFee": "46069748850118991491", + "type": "mint", + "inputIndex": 1, + "inputQty": "8403878039756378996736", + "expectedQty": "8418165785627801718529", "reserves": [ - "5067603516344995671338005", - "15378432755861039407127227", - "34575258398972747299215519" - ], - "mAssetSupply": "54828547366563037013161017" + "729703737411395930421898348", + "612625766957194788170818115", + "881535295788344794734519070" + ] }, { "type": "redeemMasset", - "inputQty": "9106702520580034684518", + "inputQty": "28983790221181848780", "expectedQtys": [ - "841446932012281785012", - "2553501871217721394462", - "5741026307506190236027" + "9508309804197480615", + "7982740511823676197", + "11486731211525713180" ], - "redemptionFee": "2732010756174010405", + "redemptionFee": "8695137066354554", "reserves": [ - "5066762069412983389552993", - "15375879253989821685732765", - "34569517372665241108979492" + "729703727903086126224417733", + "612625758974454276347141918", + "881535284301613583208805890" ], - "mAssetSupply": "54819443396053213152486904" + "mAssetSupply": "2223658603329447377243963299" }, { "type": "redeemMasset", - "inputQty": "5684136194645441275494", + "inputQty": "24273236274161703819673", "expectedQtys": [ - "525206456597830623593", - "1593820856284986144430", - "3583379972625823783940" + "7962983746568208888720", + "6685355679162017587932", + "9619864710150463234557" ], - "redemptionFee": "1705240858393632382", + "redemptionFee": "7281970882248511145", "reserves": [ - "5066236862956385558929400", - "15374285433133536699588335", - "34565933992692615285195552" + "729695764919339558015529013", + "612619073618775114329553986", + "881525664436903432745571333" ], - "mAssetSupply": "54813760965099426104843792" + "mAssetSupply": "2223634337375144097788654771" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "77796968969888071680", - "expectedQty": "78706060464138080544", - "swapFee": "46678181381932843", + "inputQty": "2426417456247143630110720", + "expectedQty": "2428467664027128437677439", + "swapFee": "1455850473748286178066", "reserves": [ - "5066236862956385558929400", - "15374285433133536699588335", - "34565855286632151147115008" + "729695764919339558015529013", + "612619073618775114329553986", + "879097196772876304307893894" ], - "mAssetSupply": "54813683214808637598704955" + "mAssetSupply": "2221209375769370702444722117" }, { - "type": "mintMulti", - "inputQtys": [ - "132217345454282133995520", - "222299148577639692763136", - "327539057283458209415168" + "type": "mint", + "inputIndex": 2, + "inputQty": "58481644189758651367424", + "expectedQty": "58397615685766482176607", + "reserves": [ + "729695764919339558015529013", + "612619073618775114329553986", + "879155678417066062959261318" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "34662803005351545853181952", + "expectedQty": "34688303103066852497644593", + "swapFee": "20797681803210927511909", + "reserves": [ + "729695764919339558015529013", + "612619073618775114329553986", + "844467375313999210461616725" ], - "expectedQty": "683937655258313498889716", + "mAssetSupply": "2186625768061508134001228681" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "3741188963443375173795840", + "expectedQty": "3736541225889278533707284", "reserves": [ - "5198454208410667692924920", - "15596584581711176392351471", - "34893394343915609356530176" + "729695764919339558015529013", + "612619073618775114329553986", + "848208564277442585635412565" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "23382894735830134250536960", + "expectedQty": "23351947422811664379590899", + "reserves": [ + "729695764919339558015529013", + "612619073618775114329553986", + "871591459013272719885949525" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "570241048403976929673216", + "expectedQty": "568954615075194347447632", + "swapFee": "342144629042386157803", + "reserves": [ + "729695764919339558015529013", + "612050119003699919982106354", + "871591459013272719885949525" ], - "mAssetSupply": "55497620870066951097594671" + "mAssetSupply": "2213144357806434142371011451" }, { "type": "redeemBassets", "inputQtys": [ - "7327681541271115776", - "8829533781317228544", - "3955829599115992064" + "380273815191351066624", + "2700097188220378284032", + "6191828784021355102208" ], - "expectedQty": "20383525364945023936", - "swapFee": "12237457693583164", + "expectedQty": "9268053726876154135741", + "swapFee": "5564170738568833781", "reserves": [ - "5198446880729126421809144", - "15596575752177395075122927", - "34893390388086010240538112" + "729695384645524366664462389", + "612047418906511699603822322", + "871585267184488698530847317" ], - "mAssetSupply": "55497600486541586152570735" + "mAssetSupply": "2213135089752707266216875710" }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "2742579624713047873945", + "expectedQtys": [ + "903987889908366226509", + "758238939677460934465", + "1079769096991174429416" + ], + "redemptionFee": "822773887413914362", + "reserves": [ + "729694480657634458298235880", + "612046660667572022142887857", + "871584187415391707356417901" + ], + "mAssetSupply": "2213132347995856440582916127" + }, + { + "type": "redeemBassets", "inputQtys": [ - "5216542594335630336", - "6835714971365511168", - "585143148208570368" + "14941017111031124590592", + "15231695949065246212096", + "15193957610747821293568" ], - "expectedQty": "12856601252106492191", + "expectedQty": "45370909620333464258783", + "swapFee": "27238889105663476641", "reserves": [ - "5198452097271720757439480", - "15596582587892366440634095", - "34893390973229158449108480" + "729679539640523427173645288", + "612031428971622956896675761", + "871568993457780959535124333" ], - "mAssetSupply": "55497613343142838259062926" + "mAssetSupply": "2213086977086236107118657344" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "260039527891925634908160", - "expectedQty": "260015329263077028962501", + "inputIndex": 0, + "inputQty": "129570266618281605866717184", + "expectedQty": "129510732730583006006110135", "reserves": [ - "5198452097271720757439480", - "15856622115784292075542255", - "34893390973229158449108480" + "859249806258805033040362472", + "612031428971622956896675761", + "871568993457780959535124333" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2772886615088290594816", - "expectedQty": "2655587691453975422970", - "swapFee": "1663731969052974356", + "type": "redeemMasset", + "inputQty": "8341313633458505488793", + "expectedQtys": [ + "3058622447990177164678", + "2178613313488808115527", + "3102474354890033837822" + ], + "redemptionFee": "2502394090037551646", "reserves": [ - "5195796509580266782016510", - "15856622115784292075542255", - "34893390973229158449108480" + "859246747636357042863197794", + "612029250358309468088560234", + "871565890983426069501286511" ], - "mAssetSupply": "55754857449522796050404967" + "mAssetSupply": "2342589371005579744656830332" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "35000760785685843017728", - "197030996090618288013312", - "336710228009595323809792" + "152674036666004536295424", + "152185975403467444846592", + "878462961448642680979456" ], - "expectedQty": "566226950221290006041685", + "expectedQty": "1182654198399397939191554", + "swapFee": "710018530157733403557", "reserves": [ - "5230797270365952625034238", - "16053653111874910363555567", - "35230101201238753772918272" + "859094073599691038326902370", + "611877064382906000643713642", + "870687428021977426820307055" ], - "mAssetSupply": "56321084399744086056446652" + "mAssetSupply": "2341406716807180346717638778" }, { "type": "mint", "inputIndex": 1, - "inputQty": "4148793964742691520512", - "expectedQty": "4147661376805915982216", - "reserves": [ - "5230797270365952625034238", - "16057801905839653055076079", - "35230101201238753772918272" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1448748649070405091328", - "expectedQty": "1431540076389565150901", + "inputQty": "62964514763214591549767680", + "expectedQty": "63082782952728929356152917", "reserves": [ - "5230797270365952625034238", - "16057801905839653055076079", - "35231549949887824178009600" + "859094073599691038326902370", + "674841579146120592193481322", + "870687428021977426820307055" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "30847231429649025204224", - "expectedQty": "30836747618981483955813", - "swapFee": "18508338857789415122", + "type": "mintMulti", + "inputQtys": [ + "1420478829323254016", + "18585015465176027136", + "4471507343522828800" + ], + "expectedQty": "24501252919737105582", "reserves": [ - "5230797270365952625034238", - "16026965158220671571120266", - "35231549949887824178009600" + "859094075020169867650156386", + "674841597731136057369508458", + "870687432493484770343135855" ], - "mAssetSupply": "56295834878106490301790667" + "mAssetSupply": "2404489524261162195810897277" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "28938223528733583605760", - "3709099589429914763264", - "30880457093006781054976" + "12913875123605442970779648", + "1880495688735016697724928", + "8925964157758730359799808" ], - "expectedQty": "64433516188249936967332", - "swapFee": "38683319704772825875", + "expectedQty": "23708462058963767644954976", "reserves": [ - "5201859046837219041428478", - "16023256058631241656357002", - "35200669492794817396954624" + "872007950143775310620936034", + "676722093419871074067233386", + "879613396651243500702935663" ], - "mAssetSupply": "56231401361918240364823335" + "mAssetSupply": "2428197986320125963455852253" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1107122500683635968", - "expectedQty": "1093907140473208946", + "inputIndex": 0, + "inputQty": "18368421712467586973696", + "expectedQty": "18356198002641976301584", "reserves": [ - "5201859046837219041428478", - "16023256058631241656357002", - "35200670599917318080590592" + "872026318565487778207909730", + "676722093419871074067233386", + "879613396651243500702935663" ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "43618733176091114995712", - "expectedQty": "44118750634635828817245", - "swapFee": "26171239905654668997", + "inputQty": "14124687032730670596096", + "expectedQty": "14126567903932936494909", + "swapFee": "8474812219638402357", "reserves": [ - "5201859046837219041428478", - "16023256058631241656357002", - "35156551849282682251773347" + "872026318565487778207909730", + "676722093419871074067233386", + "879599270083339567766440754" ], - "mAssetSupply": "56187809893889195377705566" + "mAssetSupply": "2428202226305908094399960098" }, { - "type": "redeemMasset", - "inputQty": "760724265268906086", - "expectedQtys": [ - "70406610522604926", - "216873071428173655", - "475840200798057023" + "type": "redeem", + "inputIndex": 1, + "inputQty": "1197980162682857612902400", + "expectedQty": "1195346716741982216927563", + "swapFee": "718788097609714567741", + "reserves": [ + "872026318565487778207909730", + "675526746703129091850305823", + "879599270083339567766440754" ], - "redemptionFee": "228217279580671", + "mAssetSupply": "2427004964931322846501625439" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "7155427900300318474240", + "expectedQty": "7139653566366493153222", + "swapFee": "4293256740180191084", "reserves": [ - "5201858976430608518823552", - "16023255841758170228183347", - "35156551373442481453716324" + "872026318565487778207909730", + "675519607049562725357152601", + "879599270083339567766440754" ], - "mAssetSupply": "56187809133393147388380151" + "mAssetSupply": "2426997813796679286363342283" }, { "type": "mintMulti", "inputQtys": [ - "4532833612254332928", - "14988056074686384", - "428489039175356160" + "1071289956545559658496", + "560594205500607102976", + "1040317260800457441280" ], - "expectedQty": "5171368191272684644", + "expectedQty": "2671617040665650917136", "reserves": [ - "5201863509264220773156480", - "16023255856746226302869731", - "35156551801931520629072484" + "872027389855444323767568226", + "675520167643768225964255577", + "879600310400600368223882034" ], - "mAssetSupply": "56187814304761338661064795" + "mAssetSupply": "2427000485413719952014259419" }, { "type": "mintMulti", "inputQtys": [ - "4244398609615922135040", - "11258660409420114034688", - "9885294867446098821120" + "1629947818393608900313088", + "4182535797362773981134848", + "2430338411030601650929664" ], - "expectedQty": "25454666384574231927579", + "expectedQty": "8246624724520669939823575", "reserves": [ - "5206107907873836695291520", - "16034514517155646416904419", - "35166437096798966727893604" + "873657337673837932667881314", + "679702703441130999945390425", + "882030648811630969874811698" ], - "mAssetSupply": "56213268971145912892992374" + "mAssetSupply": "2435247110138240621954082994" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "2762539216833954852110336", - "expectedQty": "2792383239229745842325966", - "swapFee": "1657523530100372911266", + "inputQty": "176208825623090976", + "outputIndex": 0, + "expectedQty": "176089984944621869", + "swapFee": "105648030925181", "reserves": [ - "5206107907873836695291520", - "16034514517155646416904419", - "32374053857569220885567638" + "873657337497747947723259445", + "679702703441130999945390425", + "882030648987839795497902674" ], - "mAssetSupply": "53452387277842058413793304" + "mAssetSupply": "2435247110138346269985008175", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "2713469948579285745795072", - "expectedQty": "2707878654315716873347715", + "inputQty": "34025027564122046654840832", + "expectedQty": "33944726545725524689531787", + "swapFee": "20415016538473227992904", "reserves": [ - "5206107907873836695291520", - "18747984465734932162699491", - "32374053857569220885567638" - ] + "873657337497747947723259445", + "645757976895405475255858638", + "882030648987839795497902674" + ], + "mAssetSupply": "2401242497590762696558160247" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "128480853214424482185216", - "outputIndex": 0, - "expectedQty": "122833780340590181616868", - "swapFee": "76857738055406799593", + "type": "redeem", + "inputIndex": 2, + "inputQty": "212363044948193408", + "expectedQty": "212420815351064353", + "swapFee": "127417826968916", "reserves": [ - "5083274127533246513674652", - "18876465318949356644884707", - "32374053857569220885567638" + "873657337497747947723259445", + "645757976895405475255858638", + "882030648775418980146838321" ], - "mAssetSupply": "56160342789895830693940612", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2401242497378527069436935755" }, { "type": "mint", "inputIndex": 1, - "inputQty": "90804904030407760019456", - "expectedQty": "90514686841725127307607", + "inputQty": "17299301123053154467840", + "expectedQty": "17333119313129268209606", "reserves": [ - "5083274127533246513674652", - "18967270222979764404904163", - "32374053857569220885567638" + "873657337497747947723259445", + "645775276196528528410326478", + "882030648775418980146838321" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1945218198250914578432", - "4226215796806213697536", - "1837983045885484859392" - ], - "expectedQty": "8061208284342902473293", - "swapFee": "4839628747854454156", + "type": "redeem", + "inputIndex": 0, + "inputQty": "111924599872083785154560", + "expectedQty": "111946704593754657746700", + "swapFee": "67154759923250271092", "reserves": [ - "5081328909334995599096220", - "18963044007182958191206627", - "32372215874523335400708246" + "873545390793154193065512745", + "645775276196528528410326478", + "882030648775418980146838321" ], - "mAssetSupply": "56242796268453212918774926" + "mAssetSupply": "2401147973052728038170261893" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "10690158932779748818944", - "expectedQty": "10580176178481172737735", + "type": "redeemMasset", + "inputQty": "33621917964675618491596", + "expectedQtys": [ + "12228092860473980819441", + "9039713479753464097669", + "12346871487945189994553" + ], + "redemptionFee": "10086575389402685547", "reserves": [ - "5081328909334995599096220", - "18963044007182958191206627", - "32382906033456115149527190" - ] + "873533162700293719084693304", + "645766236483048774946228809", + "882018301903931034956843768" + ], + "mAssetSupply": "2401114361221338751954455844" }, { "type": "swap", "inputIndex": 1, - "inputQty": "57866206534285872", - "outputIndex": 2, - "expectedQty": "58244543835148682", - "swapFee": "34607874212158", + "inputQty": "158958516209164419072", + "outputIndex": 0, + "expectedQty": "159300570333395431412", + "swapFee": "95561501640540302", "reserves": [ - "5081328909334995599096220", - "18963044065049164725492499", - "32382905975211571314378508" + "873533003399723385689261892", + "645766395441564984110647881", + "882018301903931034956843768" ], - "mAssetSupply": "56253376444666301965724819", + "mAssetSupply": "2401114361316900253594996146", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "27786335533675294228480", - "expectedQty": "28058232625955492681823", - "swapFee": "16671801320205176537", + "inputIndex": 0, + "inputQty": "20695097716006140722020352", + "expectedQty": "20697867053746908512972236", + "swapFee": "12417058629603684433212", "reserves": [ - "5081328909334995599096220", - "18963044065049164725492499", - "32354847742585615821696685" + "852835136345976477176289656", + "645766395441564984110647881", + "882018301903931034956843768" ], - "mAssetSupply": "56225606780933946876672876" + "mAssetSupply": "2380431680659523716557409006" }, { "type": "swap", "inputIndex": 2, - "inputQty": "1490448491914944686587904", - "outputIndex": 0, - "expectedQty": "1385832914188419381748618", - "swapFee": "884801027814210080352", + "inputQty": "6920637884759666589696", + "outputIndex": 1, + "expectedQty": "6897178689310389848674", + "swapFee": "4148515414528344308", "reserves": [ - "3695495995146576217347602", - "18963044065049164725492499", - "33845296234500560508284589" + "852835136345976477176289656", + "645759498262875673720799207", + "882025222541815794623433464" ], - "mAssetSupply": "56226491581961761086753228", + "mAssetSupply": "2380431684808039131085753314", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "1345019879831605650391040", - "2465515263199583762644992", - "209968497895101582802944" - ], - "hardLimitError": true - }, - { - "type": "mintMulti", - "inputQtys": [ - "135471095814760087552", - "66483375593102893056", - "1331549859363551744" - ], - "expectedQty": "214690066402274811714", - "reserves": [ - "3695631466242390977435154", - "18963110548424757828385555", - "33845297566050419871836333" - ], - "mAssetSupply": "56226706272028163361564942" - }, - { - "type": "mintMulti", - "inputQtys": [ - "148991069516569119817728", - "347809962131217092444160", - "141170776165871029059584" + "580130364714543874048", + "9680393120566854287360", + "4701537546770709479424" ], - "expectedQty": "646699464632930679785806", + "expectedQty": "14975350858031231855599", + "swapFee": "8990604877745386345", "reserves": [ - "3844622535758960097252882", - "19310920510555974920829715", - "33986468342216290900895917" + "852834556215611762632415608", + "645749817869755106866511847", + "882020521004269023913954040" ], - "mAssetSupply": "56873405736661094041350748" + "mAssetSupply": "2380416709457181099853897715" }, { - "type": "redeemBassets", - "inputQtys": [ - "222101792766831919104", - "205794663716654350336", - "243681268023665786880" - ], - "expectedQty": "685173230607822615049", - "swapFee": "411350748813981958", + "type": "redeem", + "inputIndex": 1, + "inputQty": "10653794840423268614144", + "expectedQty": "10627577165069158573999", + "swapFee": "6392276904253961168", "reserves": [ - "3844400433966193265333778", - "19310714715892258266479379", - "33986224660948267235109037" + "852834556215611762632415608", + "645739190292590037707937848", + "882020521004269023913954040" ], - "mAssetSupply": "56872720563430486218735699" + "mAssetSupply": "2380406062054617580839244739" }, { "type": "mintMulti", "inputQtys": [ - "198596840520011791466496", - "451090811163140476108800", - "216971925784296352120832" + "153782068044745506816", + "291178385971412992000", + "121708234773827993600" ], - "expectedQty": "876963324397546759205664", + "expectedQty": "566995510657225927896", "reserves": [ - "4042997274486205056800274", - "19761805527055398742588179", - "34203196586732563587229869" + "852834709997679807377922424", + "645739481470976009120929848", + "882020642712503797741947640" ], - "mAssetSupply": "57749683887828032977941363" + "mAssetSupply": "2380406629050128238065172635" }, { - "type": "redeemBassets", - "inputQtys": [ - "355335052014884141137920", - "311906203911105342865408", - "517819636151929649758208" + "type": "redeemMasset", + "inputQty": "491499520932731095194009", + "expectedQtys": [ + "176038033136573072363969", + "133290433543787690873355", + "182062452792742971358353" ], - "expectedQty": "1204979686023606264094648", - "swapFee": "723421864733003560593", + "redemptionFee": "147449856279819328558", "reserves": [ - "3687662222471320915662354", - "19449899323144293399722771", - "33685376950580633937471661" - ], - "mAssetSupply": "56544704201804426713846715" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1162485901452968837775360", - "1496202953507286324084736", - "1574220545750447014543360" + "852658671964543234305558455", + "645606191037432221430056493", + "881838580259711054770589287" ], - "hardLimitError": true + "mAssetSupply": "2379915276979051786789307184" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1229169198987526652559360", - "outputIndex": 1, - "expectedQty": "1313542377205975621387930", - "swapFee": "786180648171905000892", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4117541083270638542520320", + "expectedQty": "4107310637125175043947757", + "swapFee": "2470524649962383125512", "reserves": [ - "4916831421458847568221714", - "18136356945938317778334841", - "33685376950580633937471661" + "852658671964543234305558455", + "641498880400307046386108736", + "881838580259711054770589287" ], - "mAssetSupply": "56545490382452598618847607", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2375800206420431110629912376" }, { "type": "swap", "inputIndex": 1, - "inputQty": "108838674002570", + "inputQty": "318936550592891977728", "outputIndex": 2, - "expectedQty": "109732753712493", - "swapFee": "65131633793", + "expectedQty": "319658382345281753729", + "swapFee": "191728040079736856", "reserves": [ - "4916831421458847568221714", - "18136356946047156452337411", - "33685376950470901183759168" + "852658671964543234305558455", + "641499199336857639278086464", + "881838260601328709488835558" ], - "mAssetSupply": "56545490382452663750481400", + "mAssetSupply": "2375800206612159150709649232", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "163776939638201889325056", - "expectedQty": "171412676363930107832057", - "reserves": [ - "5080608361097049457546770", - "18136356946047156452337411", - "33685376950470901183759168" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "300356308785750519840768", - "431226661192940832948224", - "373396572922893222019072" + "type": "redeemMasset", + "inputQty": "317095992150933334340403", + "expectedQtys": [ + "113769472031430243311795", + "85594655419366249430715", + "117662878036030701352901" ], - "expectedQty": "1113887731416835264286519", - "swapFee": "668733879177607723205", + "redemptionFee": "95128797645280000302", "reserves": [ - "4780252052311298937706002", - "17705130284854215619389187", - "33311980377548007961740096" + "852544902492511804062246660", + "641413604681438273028655749", + "881720597723292678787482657" ], - "mAssetSupply": "55603015327399758594026938" + "mAssetSupply": "2375483205748805862655309131" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4265238279402822144", - "expectedQty": "4476567411198041491", + "type": "redeem", + "inputIndex": 1, + "inputQty": "198326566405453545472", + "expectedQty": "197829088319816836249", + "swapFee": "118995939843272127", "reserves": [ - "4780256317549578340528146", - "17705130284854215619389187", - "33311980377548007961740096" - ] + "852544902492511804062246660", + "641413406852349953211819500", + "881720597723292678787482657" + ], + "mAssetSupply": "2375483007541235397045035786" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "126798881096021282127872", - "54838964540002571124736", - "37682775559569533829120" + "3286471228244755480576", + "332172946003682590720", + "3738276519904020529152" ], - "expectedQty": "224883142985706016775780", + "expectedQty": "7351748516275366785319", + "swapFee": "4413697328162117341", "reserves": [ - "4907055198645599622656018", - "17759969249394218190513923", - "33349663153107577495569216" + "852541616021283559306766084", + "641413074679403949529228780", + "881716859446772774766953505" ], - "mAssetSupply": "55827902946952875808844209" + "mAssetSupply": "2375475655792719121678250467" }, { "type": "redeemBassets", "inputQtys": [ - "47169520748793522290688", - "54555287718107004534784", - "21757442210400363872256" + "13104722725459166494720", + "17675804893440173408256", + "26591546201866026090496" ], - "expectedQty": "125345820405848484519704", - "swapFee": "75252643829806974896", + "expectedQty": "57371642952560225447678", + "swapFee": "34443651962713763526", "reserves": [ - "4859885677896806100365330", - "17705413961676111185979139", - "33327905710897177131696960" + "852528511298558100140271364", + "641395398874510509355820524", + "881690267900570908740863009" ], - "mAssetSupply": "55702557126547027324324505" + "mAssetSupply": "2375418284149766561452802789" }, { - "type": "redeemBassets", - "inputQtys": [ - "31228088350873780224", - "3712932047284932608", - "34779099707758858240" - ], - "expectedQty": "70812695194431090759", - "swapFee": "42513124991653646", + "type": "redeem", + "inputIndex": 1, + "inputQty": "820221987925657070338048", + "expectedQty": "818160643469708405777274", + "swapFee": "492133192755394242202", "reserves": [ - "4859854449808455226585106", - "17705410248744063901046531", - "33327870931797469372838720" + "852528511298558100140271364", + "640577238231040800950043250", + "881690267900570908740863009" ], - "mAssetSupply": "55702486313851832893233746" + "mAssetSupply": "2374598554295033659776706943" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "395925790202056773992448", - "139899898542584101863424", - "415108983396012128206848" + "13275720711869323804672", + "30690586137256972517376", + "23442557887457546731520" ], - "expectedQty": "966085927798936574883747", - "swapFee": "579999556413209870852", + "expectedQty": "67436367029643536266388", "reserves": [ - "4463928659606398452592658", - "17565510350201479799183107", - "32912761948401457244631872" + "852541787019269969464076036", + "640607928817178057922560626", + "881713710458458366287594529" ], - "mAssetSupply": "54736400386052896318349999" + "mAssetSupply": "2374665990662063303312973331" }, { "type": "redeemMasset", - "inputQty": "29835832977643725547110", + "inputQty": "9175613924597279437619", "expectedQtys": [ - "2432477719837161864444", - "9571773167226562912207", - "17934775898692349872274" + "3293198936077352496482", + "2474540699054042752422", + "3405884259771748449277" ], - "redemptionFee": "8950749893293117664", + "redemptionFee": "2752684177379183831", "reserves": [ - "4461496181886561290728214", - "17555938577034253236270900", - "32894827172502764894759598" + "852538493820333892111579554", + "640605454276479003879808204", + "881710304574198594539145252" ], - "mAssetSupply": "54706573503825145885920553" + "mAssetSupply": "2374656817800822883412719543" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5827743380878717060382720", - "3476383136556869679579136", - "2052556016814800056090624" - ], - "expectedQty": "11485103516326618380706108", - "reserves": [ - "10289239562765278351110934", - "21032321713591122915850036", - "34947383189317564950850222" + "5290580813756506308608", + "220790686231787700224", + "2032663512696003493888" ], - "mAssetSupply": "66191677020151764266626661" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "276868181460532640", - "expectedQty": "280250885341644263", - "reserves": [ - "10289239839633459811643574", - "21032321713591122915850036", - "34947383189317564950850222" - ] - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "34072125272670628478976", - "outputIndex": 0, - "expectedQty": "33619135465160367232609", - "swapFee": "20431296395978551775", + "expectedQty": "7538867009060211691201", + "swapFee": "4526035826932286386", "reserves": [ - "10255620704168299444410965", - "21066393838863793544329012", - "34947383189317564950850222" + "852533203239520135605270946", + "640605233485792772092107980", + "881708271910685898535651364" ], - "mAssetSupply": "66191697731699045586822699", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2374649278933813823201028342" }, { - "type": "redeemBassets", - "inputQtys": [ - "61503784065886724096", - "60535750497123115008", - "33568441630234157056" + "type": "redeemMasset", + "inputQty": "126864504855099993384550", + "expectedQtys": [ + "45532515811871695170833", + "34213761777281457584629", + "47090712337865625501888" ], - "expectedQty": "156145102081073314405", - "swapFee": "93743307232983778", + "redemptionFee": "38059351456529998015", "reserves": [ - "10255559200384233557686869", - "21066333303113296421214004", - "34947349620875934716693166" + "852487670723708263910100113", + "640571019724015490634523351", + "881661181198348032910149476" ], - "mAssetSupply": "66191541586596964513508294" + "mAssetSupply": "2374522452488310179737641807" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "223388911329699115827200", - "expectedQty": "223380163226341097796835", - "swapFee": "134033346797819469496", + "inputIndex": 2, + "inputQty": "3793832113747888439296", + "expectedQty": "3795170711075817478031", + "swapFee": "2276299268248733063", "reserves": [ - "10255559200384233557686869", - "20842953139886955323417169", - "34947349620875934716693166" + "852487670723708263910100113", + "640571019724015490634523351", + "881657386027636957092671445" ], - "mAssetSupply": "65968286708614063217150590" + "mAssetSupply": "2374518660932495700097935574" }, { "type": "redeemMasset", - "inputQty": "16329643280095384698880", + "inputQty": "115269787239118878539776", "expectedQtys": [ - "2537876771495708906647", - "5157870535339587142904", - "8648194125273781020628" + "41371160489421871207396", + "31086861865552904699424", + "42786764508944047890057" ], - "redemptionFee": "4898892984028615409", + "redemptionFee": "34580936171735663561", "reserves": [ - "10253021323612737848780222", - "20837795269351615736274265", - "34938701426750660935672538" + "852446299563218842038892717", + "640539932862149937729823927", + "881614599263128013044781388" ], - "mAssetSupply": "65951961964226951861067119" + "mAssetSupply": "2374403425726192752955059359" }, { "type": "redeemMasset", - "inputQty": "123351704047880650096640", + "inputQty": "215514045007410435090022", "expectedQtys": [ - "19170744826319372990296", - "38961789236878916594802", - "65327176104924705941036" + "77349549758691996897034", + "58121520891974641460598", + "79996232429694952022161" ], - "redemptionFee": "37005511214364195028", + "redemptionFee": "64654213502223130527", "reserves": [ - "10233850578786418475789926", - "20798833480114736819679463", - "34873374250645736229731502" + "852368950013460150041995683", + "640481811341257963088363329", + "881534603030698318092759227" ], - "mAssetSupply": "65828647265690285575165507" + "mAssetSupply": "2374187976335398844743099864" }, { - "type": "mintMulti", - "inputQtys": [ - "78622068300235805818880", - "981001026495565428424704", - "556291276720667659075584" - ], - "expectedQty": "1613198792462906699736497", + "type": "redeem", + "inputIndex": 1, + "inputQty": "14265878796389548369641472", + "expectedQty": "14228756158477380187390996", + "swapFee": "8559527277833729021784", "reserves": [ - "10312472647086654281608806", - "21779834506610302248104167", - "35429665527366403888807086" + "852368950013460150041995683", + "626253055182780582900972333", + "881534603030698318092759227" ], - "mAssetSupply": "67441846058153192274902004" + "mAssetSupply": "2359930657066287130102480176" }, { - "type": "redeemMasset", - "inputQty": "6273417618579173828198", - "expectedQtys": [ - "958974924934634346148", - "2025345024014769506640", - "3294666759592705699098" + "type": "redeemBassets", + "inputQtys": [ + "825569610067029006483456", + "3349912725578536967995392", + "5774952075021547871404032" ], - "redemptionFee": "1882025285573752148", + "expectedQty": "9951023957961315162636849", + "swapFee": "5974198894113257051813", "reserves": [ - "10311513672161719647262658", - "21777809161586287478597527", - "35426370860606811183107988" + "851543380403393121035512227", + "622903142457202045932976941", + "875759650955676770221355195" ], - "mAssetSupply": "67435574522559898674825954" + "mAssetSupply": "2349979633108325814939843327" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "111112524156672344064", - "expectedQty": "111134191621239564726", - "swapFee": "66667514494003406", + "type": "redeemBassets", + "inputQtys": [ + "4254240860092623224832", + "4283172389202401689600", + "6330946410713532334080" + ], + "expectedQty": "14867742941467889938670", + "swapFee": "8926001365700154055", "reserves": [ - "10311513672161719647262658", - "21777698027394666239032801", - "35426370860606811183107988" + "851539126162533028412287395", + "622898859284812843531287341", + "875753320009266056689021115" ], - "mAssetSupply": "67435463476703256496485296" + "mAssetSupply": "2349964765365384347049904657" }, { "type": "mintMulti", "inputQtys": [ - "249098228713991090208768", - "230298116899977578938368", - "337168069554575845097472" + "705149220828104064", + "732639493178448896", + "858848468932289024" ], - "expectedQty": "817670560324097032610519", + "expectedQty": "2296772849632904174", "reserves": [ - "10560611900875710737471426", - "22007996144294643817971169", - "35763538930161387028205460" + "851539126867682249240391459", + "622898860017452336709736237", + "875753320868114525621310139" ], - "mAssetSupply": "68253134037027353529095815" + "mAssetSupply": "2349964767662157196682808831" }, { "type": "redeemBassets", "inputQtys": [ - "40709147301607041400832", - "19779408660127547392000", - "11490447178401713225728" + "42610182893135158312960", + "44095524670717789470720", + "11702325605015981391872" ], - "expectedQty": "72405088377876543956029", - "swapFee": "43469134507430384604", + "expectedQty": "98455972735213701356734", + "swapFee": "59109049070570563151", "reserves": [ - "10519902753574103696070594", - "21988216735634516270579169", - "35752048482982985314979732" + "851496516684789114082078499", + "622854764492781618920265517", + "875741618542509509639918267" ], - "mAssetSupply": "68180728948649476985139786" + "mAssetSupply": "2349866311689421982981452097" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "68256590410207084544", - "expectedQty": "68267374874860497412", - "swapFee": "40953954246124250", + "inputQty": "47038762124014853430444032", + "expectedQty": "46897184574888048486787901", + "swapFee": "28223257274408912058266", "reserves": [ - "10519902753574103696070594", - "21988148468259641410081757", - "35752048482982985314979732" + "851496516684789114082078499", + "575957579917893570433477616", + "875741618542509509639918267" ], - "mAssetSupply": "68180660733013021024179492" + "mAssetSupply": "2302855772822681538463066331" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "241494324495221728", - "expectedQty": "238393481809140433", - "swapFee": "144896594697133", + "inputQty": "23427373729986451079168", + "expectedQty": "23403870207494659754931", + "reserves": [ + "851519944058519100533157667", + "575957579917893570433477616", + "875741618542509509639918267" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "195342048159417698877440", + "758580964697594765770752", + "630737024696771885924352" + ], + "expectedQty": "1585777155168224348889327", "reserves": [ - "10519902515180621886930161", - "21988148468259641410081757", - "35752048482982985314979732" + "851715286106678518232035107", + "576716160882591165199248368", + "876372355567206281525842619" ], - "mAssetSupply": "68180660491663593123654897" + "mAssetSupply": "2304464953848057257471710589" }, { "type": "swap", "inputIndex": 2, - "inputQty": "19016613273967492333568", - "outputIndex": 1, - "expectedQty": "18916679083033021186749", - "swapFee": "11348280159592432980", + "inputQty": "5185244211869522067456", + "outputIndex": 0, + "expectedQty": "5180988069561141693061", + "swapFee": "3107351945025720432", "reserves": [ - "10519902515180621886930161", - "21969231789176608388895008", - "35771065096256952807313300" + "851710105118608957090342046", + "576716160882591165199248368", + "876377540811418151047910075" ], - "mAssetSupply": "68180671839943752716087877", + "mAssetSupply": "2304464956955409202497431021", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1731997933108890242646016", - "expectedQty": "1722285521671976984052150", + "type": "redeemMasset", + "inputQty": "1804506831001964511232", + "expectedQtys": [ + "666729872837395964691", + "451460996291659452085", + "686039865948726935893" + ], + "redemptionFee": "541352049300589353", "reserves": [ - "10519902515180621886930161", - "21969231789176608388895008", - "37503063029365843049959316" - ] + "851709438388736119694377355", + "576715709421594873539796283", + "876376854771552202320974182" + ], + "mAssetSupply": "2304463152989930249833509142" }, { - "type": "redeemBassets", - "inputQtys": [ - "2611644142872565383168", - "5768071926053970378752", - "5098838542671268544512" - ], - "expectedQty": "13480682206860545181572", - "swapFee": "8093265283286298888", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2667770496401574471925760", + "expectedQty": "2668813383304381067967790", + "swapFee": "1600662297840944683155", "reserves": [ - "10517290871037749321546993", - "21963463717250554418516256", - "37497964190823171781414804" + "849040625005431738626409565", + "576715709421594873539796283", + "876376854771552202320974182" ], - "mAssetSupply": "69889476679408869154958455" + "mAssetSupply": "2301796983155826516306266537" }, { "type": "redeemBassets", "inputQtys": [ - "157947849243162771980288", - "228987858803707560853504", - "132847225579042108342272" + "14810979691711031375036416", + "4685162704704739083288576", + "20257339109588222001283072" ], - "expectedQty": "521012235395452311664782", - "swapFee": "312795018248220319190", + "expectedQty": "39727285203394815852438744", + "swapFee": "23850681530955462789136", "reserves": [ - "10359343021794586549566705", - "21734475858446846857662752", - "37365116965244129673072532" + "834229645313720707251373149", + "572030546716890134456507707", + "856119515661963980319691110" ], - "mAssetSupply": "69368464444013416843293673" + "mAssetSupply": "2262069697952431700453827793" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1315670893115395801088", - "expectedQty": "1333560913718455046072", + "inputQty": "108130737167148739723264", + "expectedQty": "108170657087924466203059", + "swapFee": "64878442300289243833", "reserves": [ - "10360658692687701945367793", - "21734475858446846857662752", - "37365116965244129673072532" - ] + "834121474656632782785170090", + "572030546716890134456507707", + "856119515661963980319691110" + ], + "mAssetSupply": "2261961632093706852003348362" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "51796324693086077714432", - "expectedQty": "52071707571459461945534", - "swapFee": "31077794815851646628", + "type": "mintMulti", + "inputQtys": [ + "1030603845472922279870464", + "236649589408838226804736", + "559632137191949797949440" + ], + "expectedQty": "1825851879476061940655998", "reserves": [ - "10360658692687701945367793", - "21734475858446846857662752", - "37313045257672670211126998" + "835152078502105705065040554", + "572267196306298972683312443", + "856679147799155930117640550" ], - "mAssetSupply": "69318032758028865072271941" + "mAssetSupply": "2263787483973182913944004360" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "38542437606999949312", - "expectedQty": "38539404849952387164", - "swapFee": "23125462564199969", + "type": "redeemBassets", + "inputQtys": [ + "606530059562120904704", + "1330985205433594281984", + "5726103489377980121088" + ], + "expectedQty": "7659829538143813028723", + "swapFee": "4598656917036509723", "reserves": [ - "10360658692687701945367793", - "21734437319041996905275588", - "37313045257672670211126998" + "835151471972046142944135850", + "572265865321093539089030459", + "856673421695666552137519462" ], - "mAssetSupply": "69317994238716720636522598" + "mAssetSupply": "2263779824143644770130975637" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "79949652373944722784256", - "expectedQty": "79478861616065086684507", + "type": "redeemMasset", + "inputQty": "4325110983660374490034995", + "expectedQtys": [ + "1595137092880088828086957", + "1093026282534471650224601", + "1636243959678973409615303" + ], + "redemptionFee": "1297533295098112347010", "reserves": [ - "10360658692687701945367793", - "21734437319041996905275588", - "37392994910046614933911254" - ] + "833556334879166054116048893", + "571172839038559067438805858", + "855037177735987578727904159" + ], + "mAssetSupply": "2259456010693279493753287652" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "118431670730416002695168", - "expectedQty": "118418307443571121338829", - "swapFee": "71059002438249601617", + "type": "swap", + "inputIndex": 2, + "inputQty": "6081247103634957160939520", + "outputIndex": 0, + "expectedQty": "6076062240048362865673472", + "swapFee": "3644414428052044593171", "reserves": [ - "10360658692687701945367793", - "21616019011598425783936759", - "37392994910046614933911254" + "827480272639117691250375421", + "571172839038559067438805858", + "861118424839622535888843679" ], - "mAssetSupply": "69279112488604807970113554" + "mAssetSupply": "2259459655107707545797880823", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2581861810777700171776", - "314959553279132434432", - "2849498999732207878144" + "3263952812101769336193024", + "724347509961081346850816", + "2212542931557398672834560" ], - "expectedQty": "5764351419796948901841", + "expectedQty": "6197036130293686142425214", + "reserves": [ + "830744225451219460586568445", + "571897186548520148785656674", + "863330967771179934561678239" + ], + "mAssetSupply": "2265656691238001231940306037" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "1565952925498546294095872", + "expectedQty": "1566924334491448104826781", + "swapFee": "939571755299127776457", "reserves": [ - "10363240554498479645539569", - "21616333971151704916371191", - "37395844409046347141789398" + "830744225451219460586568445", + "571897186548520148785656674", + "861764043436688486456851458" ], - "mAssetSupply": "69284876840024604919015395" + "mAssetSupply": "2264091677884257984773986622" }, { "type": "mintMulti", "inputQtys": [ - "58288230508839452672", - "71554296335479087104", - "187902020632094736384" + "429819671591850665312256", + "498619620497823237144576", + "41147143166244931239936" + ], + "expectedQty": "970448612926697871820271", + "reserves": [ + "831174045122811311251880701", + "572395806169017972022801250", + "861805190579854731388091394" + ], + "mAssetSupply": "2265062126497184682645806893" + }, + { + "type": "redeemMasset", + "inputQty": "543453151544740781699891", + "expectedQtys": [ + "199362586030353813511136", + "137292915750182560776519", + "206709668638648921403340" + ], + "redemptionFee": "163035945463422234509", + "reserves": [ + "830974682536780957438369565", + "572258513253267789462024731", + "861598480911216082466688054" + ], + "mAssetSupply": "2264518836381585405286341511" + }, + { + "type": "redeemMasset", + "inputQty": "2143382267785444083315507", + "expectedQtys": [ + "786287153810223785859422", + "541484027234085866703636", + "815264088690098363614124" ], - "expectedQty": "317391052361317702966", + "redemptionFee": "643014680335633224994", "reserves": [ - "10363298842728988484992241", - "21616405525448040395458295", - "37396032311066979236525782" + "830188395382970733652510143", + "571717029226033703595321095", + "860783216822525984103073930" ], - "mAssetSupply": "69285194231076966236718361" + "mAssetSupply": "2262376097128480296836250998" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4790977813041446387712", - "expectedQty": "4855928728278148333729", + "inputIndex": 1, + "inputQty": "1281035114867950316683264", + "expectedQty": "1284391411134386716342648", "reserves": [ - "10368089820542029931379953", - "21616405525448040395458295", - "37396032311066979236525782" + "830188395382970733652510143", + "572998064340901653912004359", + "860783216822525984103073930" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "434496956222040113152", - "expectedQty": "434296781833734364078", + "inputQty": "385883770346119844855808", + "expectedQty": "386890018315845092619061", "reserves": [ - "10368089820542029931379953", - "21616840022404262435571447", - "37396032311066979236525782" + "830188395382970733652510143", + "573383948111247773756860167", + "860783216822525984103073930" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "64202781672650948608", - "108146618712660541440", - "143132039319247552512" + "3892987675373478084608", + "53685132825707503681536", + "75105022250308086005760" ], - "expectedQty": "315455679433230156155", - "swapFee": "189387039883868414", + "expectedQty": "132729024422631369070915", "reserves": [ - "10368025617760357280431345", - "21616731875785549775030007", - "37395889179027659988973270" + "830192288370646107130594751", + "573437633244073481260541703", + "860858321844776292189079690" ], - "mAssetSupply": "69290169000907644889260013" + "mAssetSupply": "2264180107582353160014283622" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "8595570287973621219459072", - "expectedQty": "8654846758748686346559467", + "inputIndex": 1, + "inputQty": "757809833493227131371520", + "expectedQty": "759779237059163194876608", "reserves": [ - "18963595905733978499890417", - "21616731875785549775030007", - "37395889179027659988973270" + "830192288370646107130594751", + "574195443077566708391913223", + "860858321844776292189079690" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2415338839639019730501632", - "expectedQty": "2404753441763072101394579", - "swapFee": "1449203303783411838300", + "type": "mint", + "inputIndex": 1, + "inputQty": "546093714613758656512", + "expectedQty": "547509857995435289477", "reserves": [ - "16558842463970906398495838", - "21616731875785549775030007", - "37395889179027659988973270" - ], - "mAssetSupply": "75531126123321094917156148" + "830192288370646107130594751", + "574195989171281322150569735", + "860858321844776292189079690" + ] }, { "type": "redeemBassets", "inputQtys": [ - "22017066246904380", - "98536223873049072", - "808320697400399" + "42041891672126677581824", + "447404093474974942101504", + "263155715013943941398528" ], - "expectedQty": "121567116219136764", - "swapFee": "72984060167582", + "expectedQty": "753408656703903858675729", + "swapFee": "452316583972725950775", "reserves": [ - "16558842441953840151591458", - "21616731777249325901980935", - "37395889178219339291572871" + "830150246478973980453012927", + "573748585077806347208468231", + "860595166129762348247681162" ], - "mAssetSupply": "75531126001753978698019384" + "mAssetSupply": "2264187025672566414785773978" }, { - "type": "redeemMasset", - "inputQty": "181147070203039501516", - "expectedQtys": [ - "39701326821286272728", - "51828075308106873097", - "89660036517740255033" - ], - "redemptionFee": "54344121060911850", + "type": "redeem", + "inputIndex": 1, + "inputQty": "260309769881846569500672", + "expectedQty": "259478887717187569388393", + "swapFee": "156185861929107941700", "reserves": [ - "16558802740627018865318730", - "21616679949174017795107838", - "37395799518182821551317838" + "830150246478973980453012927", + "573489106190089159639079838", + "860595166129762348247681162" ], - "mAssetSupply": "75530944909027896719429718" + "mAssetSupply": "2263926872088546497324215006" }, { "type": "redeemMasset", - "inputQty": "37644051247966137", + "inputQty": "366161972511502735979315", "expectedQtys": [ - "8250306117551969", - "10770357592838875", - "18632192095545671" + "134226182233436795344429", + "92726893237525974428101", + "139148791544777357906668" ], - "redemptionFee": "11293215374389", + "redemptionFee": "109848591753450820793", "reserves": [ - "16558802732376712747766761", - "21616679938403660202268963", - "37395799499550629455772167" + "830016020296740543657668498", + "573396379296851633664651737", + "860456017338217570889774494" ], - "mAssetSupply": "75530944871395138686837970" + "mAssetSupply": "2263560819964626748039056484" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "4522259502616169414656", - "outputIndex": 2, - "expectedQty": "4557322083244954717412", - "swapFee": "2725802527779003522", - "reserves": [ - "16563324991879328917181417", - "21616679938403660202268963", - "37391242177467384501054755" + "type": "redeemBassets", + "inputQtys": [ + "50008038869524930560", + "39621442475407646720", + "22772518099011743744" ], - "mAssetSupply": "75530947597197666465841492", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2534123314202645504", - "expectedQty": "2529842346840383222", - "swapFee": "1520473988521587", + "expectedQty": "112431595172560333261", + "swapFee": "67499456777602761", "reserves": [ - "16563324991879328917181417", - "21616677408561313361885741", - "37391242177467384501054755" + "830015970288701674132737938", + "573396339675409158257005017", + "860455994565699471878030750" ], - "mAssetSupply": "75530945064594826251717575" + "mAssetSupply": "2263560707533031575478723223" }, { - "type": "redeemMasset", - "inputQty": "502784996654506731110", - "expectedQtys": [ - "110223603797350777430", - "143852039808708737057", - "248826697856897472212" - ], - "redemptionFee": "150835498996352019", + "type": "swap", + "inputIndex": 1, + "inputQty": "4660068152495775744", + "outputIndex": 0, + "expectedQty": "4673703534087144831", + "swapFee": "2803316500708024", "reserves": [ - "16563214768275531566403987", - "21616533556521504653148684", - "37390993350769527603582543" + "830015965614998140045593107", + "573396344335477310752780761", + "860455994565699471878030750" ], - "mAssetSupply": "75530442430433670741338484" + "mAssetSupply": "2263560707535834891979431247", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "75134138275504822681", + "inputQty": "4028209605283672804556", "expectedQtys": [ - "16471365581788347799", - "21496661837799226415", - "37183646385264144504" + "1476644841296201041579", + "1020104177458466798088", + "1530799355885152601705" ], - "redemptionFee": "22540241482651446", + "redemptionFee": "1208462881585101841", "reserves": [ - "16563198296909949778056188", - "21616512059859666853922269", - "37390956167123142339438039" + "830014488970156843844551528", + "573395324231299852285982673", + "860454463766343586725429045" ], - "mAssetSupply": "75530367318835636719167249" + "mAssetSupply": "2263556680534692489891728532" }, { "type": "mintMulti", "inputQtys": [ - "20466093831101494591488", - "8490513812515977166848", - "17029089127548063842304" + "59704062886245530861568", + "20653745015694800453632", + "390800408417547851923456" ], - "expectedQty": "46025044843027167126386", + "expectedQty": "470686999072594487561549", "reserves": [ - "16583664390741051272647676", - "21625002573672182831089117", - "37407985256250690403280343" + "830074193033043089375413096", + "573415977976315547086436305", + "860845264174761134577352501" ], - "mAssetSupply": "75576392363678663886293635" + "mAssetSupply": "2264027367533765084379290081" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3206452822502449610752", - "expectedQty": "3189931990171740265120", - "swapFee": "1923871693501469766", + "type": "swap", + "inputIndex": 2, + "inputQty": "1217244224655398912", + "outputIndex": 0, + "expectedQty": "1216171008979852249", + "swapFee": "729467565841244", "reserves": [ - "16580474458750879532382556", - "21625002573672182831089117", - "37407985256250690403280343" + "830074191816872080395560847", + "573415977976315547086436305", + "860845265392005359232751413" ], - "mAssetSupply": "75573187834727854938152649" + "mAssetSupply": "2264027367534494551945131325", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "100465422700803342336", - "262998531066390872064", - "93036749077819703296" + "1862027663871854848", + "3300649545311550976", + "6608211869040343040" ], - "expectedQty": "456900399320530436322", + "expectedQty": "11769814590920501640", "reserves": [ - "16580574924173580335724892", - "21625265572203249221961181", - "37408078292999768222983639" + "830074193678899744267415695", + "573415981276965092397987281", + "860845272000217228273094453" ], - "mAssetSupply": "75573644735127175468588971" + "mAssetSupply": "2264027379304309142865632965" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "3124788513576946008850432", - "expectedQty": "3112269843939310762591392", - "reserves": [ - "16580574924173580335724892", - "21625265572203249221961181", - "40532866806576714231834071" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "960078682188489315844096", - "expectedQty": "961351970308387620559614", + "inputQty": "30861938480544778370940928", + "outputIndex": 0, + "expectedQty": "30825970628549221228932805", + "swapFee": "18493153813207728490898", "reserves": [ - "16580574924173580335724892", - "22585344254391738537805277", - "40532866806576714231834071" - ] + "799248223050350523038482890", + "573415981276965092397987281", + "891707210480762006644035381" + ], + "mAssetSupply": "2264045872458122350594123863", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "618741914898163456", + "inputQty": "10134800148636809216", "outputIndex": 0, - "expectedQty": "615709845057201644", - "swapFee": "371669755363516", + "expectedQty": "10161461663235723464", + "swapFee": "6096712744806275", "reserves": [ - "16580574308463735278523248", - "22585344873133653435968733", - "40532866806576714231834071" + "799248212888888859802759426", + "573415991411765241034796497", + "891707210480762006644035381" ], - "mAssetSupply": "79647266549746543607103493", + "mAssetSupply": "2264045872464219063338930138", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "34295694299117863410073", + "inputQty": "460506641346047256821760", "expectedQtys": [ - "7137366286631876679660", - "9722213240054778967947", - "17448003408309301719369" + "162518214344206947045287", + "116597749607490836209558", + "181318720803112848579164" ], - "redemptionFee": "10288708289735359023", + "redemptionFee": "138151992403814177046", "reserves": [ - "16573436942177103401843588", - "22575622659893598657000786", - "40515418803168404930114702" + "799085694674544652855714139", + "573299393662157750198586939", + "891525891759958893795456217" ], - "mAssetSupply": "79612981144155715479052443" + "mAssetSupply": "2263585503974865419896285424" }, { - "type": "mintMulti", - "inputQtys": [ - "27919491994855906738176", - "5731110620713820618752", - "44253112855899754463232" - ], - "expectedQty": "77879380625362021407819", + "type": "mint", + "inputIndex": 1, + "inputQty": "138356579995508906393600", + "expectedQty": "138716674335801091011974", "reserves": [ - "16601356434171959308581764", - "22581353770514312477619538", - "40559671916024304684577934" - ], - "mAssetSupply": "79690860524781077500460262" + "799085694674544652855714139", + "573437750242153259104980539", + "891525891759958893795456217" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "15135337153101706559488", - "18581903371490297905152", - "14109601549144815566848" + "type": "redeemMasset", + "inputQty": "570486176819878967849779", + "expectedQtys": [ + "201318949784779741714560", + "144469969134806803294167", + "224608020680628033506885" ], - "expectedQty": "47872335512297561434051", + "redemptionFee": "171145853045963690354", "reserves": [ - "16616491771325061015141252", - "22599935673885802775524690", - "40573781517573449500144782" + "798884375724759873113999579", + "573293280273018452301686372", + "891301283739278265761949332" ], - "mAssetSupply": "79738732860293375061894313" + "mAssetSupply": "2263153905618234387983137973" }, { - "type": "mintMulti", - "inputQtys": [ - "2057631965338370486304768", - "146620244140263739490304", - "1591614603896018798903296" - ], - "expectedQty": "3799646700615427776858893", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1272091218109385626615808", + "expectedQty": "1268017131960538277833377", + "swapFee": "763254730865631375969", "reserves": [ - "18674123736663431501446020", - "22746555918026066515014994", - "42165396121469468299048078" + "798884375724759873113999579", + "572025263141057914023852995", + "891301283739278265761949332" ], - "mAssetSupply": "83538379560908802838753206" + "mAssetSupply": "2261882577654855867987898134" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "42639836927023583854592", - "expectedQty": "42430480157051173320119", - "swapFee": "25583902156214150312", + "type": "redeemMasset", + "inputQty": "5494856799724124901684019", + "expectedQtys": [ + "1940170705997168071341274", + "1389220633623921866978207", + "2164614421654938560521314" + ], + "redemptionFee": "1648457039917237470505", "reserves": [ - "18631693256506380328125901", - "22746555918026066515014994", - "42165396121469468299048078" + "796944205018762705042658305", + "570636042507433992156874788", + "889136669317623327201428018" ], - "mAssetSupply": "83495765307883935469048926" + "mAssetSupply": "2256389369312171660323684620" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "64494017807948248514560", - "expectedQty": "64347932867251114827627", - "swapFee": "38696410684768949108", - "reserves": [ - "18631693256506380328125901", - "22682207985158815400187367", - "42165396121469468299048078" - ], - "mAssetSupply": "83431309986486671989483474" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "3317588850672097296384", - "35950177884014500642816", - "13431072259262405148672" - ], - "expectedQty": "52720674352718085691390", - "swapFee": "31651395448900191529", + "inputQty": "13383881176398632725774336", + "expectedQty": "13339542017083665564944099", + "swapFee": "8030328705839179635464", "reserves": [ - "18628375667655708230829517", - "22646257807274800899544551", - "42151965049210205893899406" + "796944205018762705042658305", + "557296500490350326591930689", + "889136669317623327201428018" ], - "mAssetSupply": "83378589312133953903792084" + "mAssetSupply": "2243013518464478866777545748" }, { "type": "redeemBassets", "inputQtys": [ - "408564018356407035232256", - "246191981875448787238912", - "149284676719152323362816" + "161283654183334784794624", + "339893087771086062354432", + "215614411274127883108352" ], - "expectedQty": "805668622649884751594862", - "swapFee": "483691388422984641741", + "expectedQty": "717304197729750250313962", + "swapFee": "430640903179758004991", "reserves": [ - "18219811649299301195597261", - "22400065825399352112305639", - "42002680372491053570536590" + "796782921364579370257863681", + "556956607402579240529576257", + "888921054906349199318319666" ], - "mAssetSupply": "82572920689484069152197222" + "mAssetSupply": "2242296214266749116527231786" }, { - "type": "redeemMasset", - "inputQty": "6302854157535942593740", - "expectedQtys": [ - "1390314931336168215438", - "1709301203515100758100", - "3205134871976613090851" - ], - "redemptionFee": "1890856247260782778", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2456680700236006852395008", + "expectedQty": "2448233602302477387379358", + "swapFee": "1474008420141604111437", "reserves": [ - "18218421334367965027381823", - "22398356524195837011547539", - "41999475237619076957445739" + "796782921364579370257863681", + "554508373800276763142196899", + "888921054906349199318319666" ], - "mAssetSupply": "82566619726182780470386260" + "mAssetSupply": "2239841007574933251278948215" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "1906459491174790736117760", - "expectedQty": "1912771750448260603958094", - "swapFee": "1143875694704874441670", + "inputQty": "340909567887664744497152", + "expectedQty": "340375560236168725802689", "reserves": [ - "18218421334367965027381823", - "22398356524195837011547539", - "40086703487170816353487645" - ], - "mAssetSupply": "80661304110702694608710170" + "796782921364579370257863681", + "554508373800276763142196899", + "889261964474236864062816818" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1112585444440812713672704", - "expectedQty": "1106916531064682702435450", - "swapFee": "667551266664487628203", + "type": "redeemBassets", + "inputQtys": [ + "2013393136769378811904", + "7673918688074658742272", + "6736655709433180979200" + ], + "expectedQty": "16433990821730802528169", + "swapFee": "9866314281607445984", "reserves": [ - "17111504803303282324946373", - "22398356524195837011547539", - "40086703487170816353487645" + "796780907971442600879051777", + "554500699881588688483454627", + "889255227818527430881837618" ], - "mAssetSupply": "79549386217528546382665669" + "mAssetSupply": "2240164949144347689202222735" }, { "type": "mintMulti", "inputQtys": [ - "236936517607023", - "53227520967911", - "354669268554345" + "730671220219641069568", + "223986062829822214144", + "571078793922131394560" ], - "expectedQty": "644654530308929", + "expectedQty": "1524961690999180568017", "reserves": [ - "17111504803540218842553396", - "22398356524249064532515450", - "40086703487525485622041990" + "796781638642662820520121345", + "554500923867651518305668771", + "889255798897321353013232178" ], - "mAssetSupply": "79549386218173200912974598" + "mAssetSupply": "2240166474106038688382790752" }, { - "type": "redeemBassets", - "inputQtys": [ - "19206469506080534691840", - "70705466734191046557696", - "77813570832735326437376" + "type": "redeemMasset", + "inputQty": "81088440894773", + "expectedQtys": [ + "28832856228975", + "20065529426538", + "32179186061651" ], - "expectedQty": "167599497537418215594778", - "swapFee": "100620070564789803238", + "redemptionFee": "24326532268", "reserves": [ - "17092298334034138307861556", - "22327651057514873485957754", - "40008889916692750295604614" + "796781638642633987663892370", + "554500923867631452776242233", + "889255798897289173827170527" ], - "mAssetSupply": "79381786720635782697379820" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "5003369969697748418560", - "expectedQty": "5009696629592986892350", - "reserves": [ - "17092298334034138307861556", - "22332654427484571234376314", - "40008889916692750295604614" - ] + "mAssetSupply": "2240166474105957624268428247" }, { "type": "redeemBassets", "inputQtys": [ - "29725840090854171082752", - "3844329864230973472768", - "86139467169075663208448" + "69286812701688873353216", + "124424644569925106532352", + "136410206084071570800640" ], - "expectedQty": "119518126576023646687081", - "swapFee": "71753928302595745459", + "expectedQty": "330215433277311417550644", + "swapFee": "198248208891721883660", "reserves": [ - "17062572493943284136778804", - "22328810097620340260903546", - "39922750449523674632396166" + "796712351829932298790539154", + "554376499223061527669709881", + "889119388691205102256369887" ], - "mAssetSupply": "79267278290689352037585089" + "mAssetSupply": "2239836258672680312850877603" }, { "type": "mint", "inputIndex": 0, - "inputQty": "100579173802811615870976", - "expectedQty": "101068274868614469425398", + "inputQty": "59729385089995216550625280", + "expectedQty": "59674726529622756731127439", "reserves": [ - "17163151667746095752649780", - "22328810097620340260903546", - "39922750449523674632396166" + "856441736919927515341164434", + "554376499223061527669709881", + "889119388691205102256369887" ] }, { - "type": "redeemMasset", - "inputQty": "3519800041769941965209", - "expectedQtys": [ - "760917183131253247899", - "989933294948570947398", - "1769949214630043813342" + "type": "mint", + "inputIndex": 1, + "inputQty": "12781449878408896165445632", + "expectedQty": "12820836434034346629773676", + "reserves": [ + "856441736919927515341164434", + "567157949101470423835155513", + "889119388691205102256369887" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "5387270481528874399170560", + "966639373343232184287232", + "3588785529451535241576448" ], - "redemptionFee": "1055940012530982589", + "expectedQty": "9935143805637865566867085", "reserves": [ - "17162390750562964499401881", - "22327820164325391689956148", - "39920980500309044588582824" + "861829007401456389740334994", + "568124588474813656019442745", + "892708174220656637497946335" ], - "mAssetSupply": "79364827821456209096027867" + "mAssetSupply": "2322266965441975281778645803" }, { "type": "redeemMasset", - "inputQty": "91995497250388", + "inputQty": "233230480369439263948", "expectedQtys": [ - "19887764588274", - "25873460035448", - "46260400072597" + "86529453738449512548", + "57040909361278458127", + "89629787347340451495" ], - "redemptionFee": "27598649175", + "redemptionFee": "69969144110831779", "reserves": [ - "17162390750543076734813607", - "22327820164299518229920700", - "39920980500262784188510227" + "861828920872002651290822446", + "568124531433904294740984618", + "892708084590869290157494840" ], - "mAssetSupply": "79364827821364241197426654" + "mAssetSupply": "2322266732281464056450213634" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1227012616867939090432", - "6151578140474326646784", - "3527816841084186132480" + "147738165486674050547712", + "587873272772509799809024", + "266791827608858867531776" ], - "expectedQty": "10906201866047008204793", + "expectedQty": "1003661418065789674366196", + "swapFee": "602558385870996402461", "reserves": [ - "17163617763159944673904039", - "22333971742439992556567484", - "39924508317103868374642707" + "861681182706515977240274734", + "567536658161131784941175594", + "892441292763260431289963064" ], - "mAssetSupply": "79375734023230288205631447" + "mAssetSupply": "2321263070863398266775847438" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1181482652408477898506240", - "outputIndex": 1, - "expectedQty": "1174058090837251218082873", - "swapFee": "706024256076906827396", + "type": "redeem", + "inputIndex": 0, + "inputQty": "127708811603773456", + "expectedQty": "127768081498030427", + "swapFee": "76625286962264", "reserves": [ - "17163617763159944673904039", - "21159913651602741338484611", - "41105990969512346273148947" + "861681182578747895742244307", + "567536658161131784941175594", + "892441292763260431289963064" ], - "mAssetSupply": "79376440047486365112458843", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2321263070735766080459036246" }, { "type": "mintMulti", "inputQtys": [ - "6133142253158341279744", - "3294115010066636079104", - "6701411411374623424512" + "36338961701374531731456", + "28607645920435428655104", + "110617702533823681527808" ], - "expectedQty": "16135980132514995913257", + "expectedQty": "175464263954540763855815", "reserves": [ - "17169750905413103015183783", - "21163207766612807974563715", - "41112692380923720896573459" + "861717521540449270273975763", + "567565265807052220369830698", + "892551910465794254971490872" ], - "mAssetSupply": "79392576027618880108372100" + "mAssetSupply": "2321438534999720621222892061" }, { - "type": "redeemBassets", - "inputQtys": [ - "10107782140404815872", - "8236243230255326208", - "289494400040893376" + "type": "redeemMasset", + "inputQty": "13701769837264286", + "expectedQtys": [ + "5084568404626322", + "3348921596635326", + "5266506865649492" ], - "expectedQty": "18697195350815379481", - "swapFee": "11225052241834328", + "redemptionFee": "4110530951179", "reserves": [ - "17169740797630962610367911", - "21163199530369577719237507", - "41112692091429320855680083" + "861717521535364701869349441", + "567565265803703298773195372", + "892551910460527748105841380" ], - "mAssetSupply": "79392557330423529292992619" + "mAssetSupply": "2321438534986022961916578954" }, { - "type": "mintMulti", - "inputQtys": [ - "1931958201585526", - "1545508759561715", - "214483026050763" - ], - "expectedQty": "3703380950971400", + "type": "mint", + "inputIndex": 0, + "inputQty": "26612025777910823518208", + "expectedQty": "26583724760880609881955", "reserves": [ - "17169740799562920811953437", - "21163199531915086478799222", - "41112692091643803881730846" - ], - "mAssetSupply": "79392557334126910243964019" + "861744133561142612692867649", + "567565265803703298773195372", + "892551910460527748105841380" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "8249184838039170449408", + "inputIndex": 0, + "inputQty": "17792995011907249242112", "outputIndex": 2, - "expectedQty": "8295582256267560784039", - "swapFee": "4958907409621486742", + "expectedQty": "17787154506984176405912", + "swapFee": "10664442167012457494", "reserves": [ - "17169740799562920811953437", - "21171448716753125649248630", - "41104396509387536320946807" + "861761926556154519942109761", + "567565265803703298773195372", + "892534123306020763929435468" ], - "mAssetSupply": "79392562293034319865450761", + "mAssetSupply": "2321465129375226009538918403", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "150798864897463289905152", - "expectedQty": "149968798504634246568125", - "swapFee": "90479318938477973943", + "inputQty": "18157312637964038193545216", + "expectedQty": "18164701163320870968510380", + "swapFee": "10894387582778422916127", "reserves": [ - "17019772001058286565385312", - "21171448716753125649248630", - "41104396509387536320946807" + "843597225392833648973599381", + "567565265803703298773195372", + "892534123306020763929435468" ], - "mAssetSupply": "79241853907455795053519552" + "mAssetSupply": "2303318711124844749768289314" }, { - "type": "redeemMasset", - "inputQty": "1405933558200517053644", - "expectedQtys": [ - "301879484502771038031", - "375517722822190662320", - "729068170142340782920" - ], - "redemptionFee": "421780067460155116", + "type": "redeem", + "inputIndex": 2, + "inputQty": "65907964335830079635456", + "expectedQty": "65959779310829781434320", + "swapFee": "39544778601498047781", "reserves": [ - "17019470121573783794347281", - "21171073199030303458586310", - "41103667441217393980163887" + "843597225392833648973599381", + "567565265803703298773195372", + "892468163526709934148001148" ], - "mAssetSupply": "79240448395677661996621024" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4013872502635579834368", - "expectedQty": "4021368569560317768545", - "reserves": [ - "17019470121573783794347281", - "21175087071532939038420678", - "41103667441217393980163887" - ] + "mAssetSupply": "2303252842705287521186701639" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "249408637383338331471872", - "expectedQty": "248781045380666720266799", - "swapFee": "149645182430002998883", + "inputIndex": 2, + "inputQty": "80666433982488752685056", + "expectedQty": "80729816596781935015590", + "swapFee": "48399860389493251611", "reserves": [ - "17019470121573783794347281", - "20926306026152272318153879", - "41103667441217393980163887" + "843597225392833648973599381", + "567565265803703298773195372", + "892387433710113152212985558" ], - "mAssetSupply": "78995210772046313985916580" + "mAssetSupply": "2303172224671165421927268194" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "31606276065673543680", - "247010129068427870208", - "23258316154893991936" + "188087572873940336640", + "80289335332534943744", + "109882913997042253824" ], - "expectedQty": "302417450042502376792", - "swapFee": "181559405668902767", + "expectedQty": "378163778023568548240", "reserves": [ - "17019438515297718120803601", - "20926059016023203890283671", - "41103644182901239086171951" + "843597413480406522913936021", + "567565346093038631308139116", + "892387543593027149255239382" ], - "mAssetSupply": "78994908354596271483539788" + "mAssetSupply": "2303172602834943445495816434" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "11378118834960388096", - "expectedQty": "11348863740804626939", - "swapFee": "6826871300976232", + "inputQty": "4033863346673184768262144", + "expectedQty": "4045523245102366290278471", "reserves": [ - "17019438515297718120803601", - "20926047667159463085656732", - "41103644182901239086171951" - ], - "mAssetSupply": "78994896983304307824127924" + "843597413480406522913936021", + "571599209439711816076401260", + "892387543593027149255239382" + ] }, { - "type": "redeemMasset", - "inputQty": "417767317630801045094", - "expectedQtys": [ - "89980902539409966280", - "110634945681742715511", - "217312868336510090435" + "type": "redeemBassets", + "inputQtys": [ + "6233514645905963682365440", + "6895728319712659911999488", + "1954555278083659409653760" ], - "redemptionFee": "125330195289240313", + "expectedQty": "15095243958442464676955413", + "swapFee": "9062583925420731244920", "reserves": [ - "17019348534395178710837321", - "20925937032213781342941221", - "41103426870032902576081516" + "837363898834500559231570581", + "564703481119999156164401772", + "890432988314943489845585622" ], - "mAssetSupply": "78994479341316872312323143" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "808062130687477", - "expectedQty": "812058144177681", - "reserves": [ - "17019348535203240841524798", - "20925937032213781342941221", - "41103426870032902576081516" - ] + "mAssetSupply": "2292122882121603347109139492" }, { "type": "redeemBassets", "inputQtys": [ - "85408548629971736723456", - "61359489514067286032384", - "284354145426044878848" + "337221897052776", + "340709659940541", + "64757600979959" ], - "expectedQty": "147597497727232303599861", - "swapFee": "88611665635720814648", + "expectedQty": "743281379766079", + "swapFee": "446236569801", "reserves": [ - "16933939986573269104801342", - "20864577542699714056908837", - "41103142515887476531202668" + "837363898834163337334517805", + "564703481119658446504461231", + "890432988314878732244605663" ], - "mAssetSupply": "78846881844401698152900963" + "mAssetSupply": "2292122882120860065729373413" }, { - "type": "redeemMasset", - "inputQty": "699989652124111304916992", - "expectedQtys": [ - "150291633711641711963179", - "185176718949157072099427", - "364797468533206415071827" - ], - "redemptionFee": "209996895637233391475", + "type": "redeem", + "inputIndex": 0, + "inputQty": "31582652688067968815333376", + "expectedQty": "31589776666135984274294936", + "swapFee": "18949591612840781289200", "reserves": [ - "16783648352861627392838163", - "20679400823750556984809410", - "40738345047354270116130841" + "805774122168027353060222869", + "564703481119658446504461231", + "890432988314878732244605663" ], - "mAssetSupply": "78147102189173224081375446" + "mAssetSupply": "2260559179024404937695329237" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "462873708834555", - "expectedQty": "463793993509307", + "type": "mintMulti", + "inputQtys": [ + "289619438106", + "8310482881727", + "7609941426369" + ], + "expectedQty": "16221412077325", "reserves": [ - "16783648352861627392838163", - "20679400824213430693643965", - "40738345047354270116130841" - ] + "805774122168027642679660975", + "564703481119666756987342958", + "890432988314886342186032032" + ], + "mAssetSupply": "2260559179024421159107406562" }, { "type": "swap", "inputIndex": 0, - "inputQty": "503654505267436181258240", + "inputQty": "1076571742653884137472", "outputIndex": 2, - "expectedQty": "507927352528415094404004", - "swapFee": "303645106175102930769", + "expectedQty": "1076761354163695532137", + "swapFee": "645478178241443217", "reserves": [ - "17287302858129063574096403", - "20679400824213430693643965", - "40230417694825855021726837" + "805775198739770296563798447", + "564703481119666756987342958", + "890431911553532178490499895" ], - "mAssetSupply": "78147405834743193177815522", + "mAssetSupply": "2260559179669899337348849779", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "148968006234918700974080", - "expectedQty": "149261248381748879074613", + "type": "redeem", + "inputIndex": 0, + "inputQty": "35179441589154421407744", + "expectedQty": "35183650647801980303365", + "swapFee": "21107664953492652844", "reserves": [ - "17287302858129063574096403", - "20828368830448349394618045", - "40230417694825855021726837" - ] + "805740015089122494583495082", + "564703481119666756987342958", + "890431911553532178490499895" + ], + "mAssetSupply": "2260524021335975136420094879" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "296294245355395612672", - "expectedQty": "297358895469260854164", - "swapFee": "177776547213237367", + "inputQty": "513626475810557591552", + "expectedQty": "514086962728767551006", + "swapFee": "308175885486334554", "reserves": [ - "17287302858129063574096403", - "20828368830448349394618045", - "40230120335930385760872673" + "805740015089122494583495082", + "564703481119666756987342958", + "890431397466569449722948889" ], - "mAssetSupply": "78296370966656133874514830" + "mAssetSupply": "2260523508017675211348837881" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "260414935257946030080", - "expectedQty": "259084401972836284592", - "swapFee": "156248961154767618", + "inputQty": "1499612557183636480", + "expectedQty": "1498533674450696673", "reserves": [ - "17287043773727090737811811", - "20828368830448349394618045", - "40230120335930385760872673" - ], - "mAssetSupply": "78296110707969837083252368" + "805740016588735051767131562", + "564703481119666756987342958", + "890431397466569449722948889" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1380865595820899905306624", - "371924349702267998306304", - "1099590443534419209748480" - ], - "expectedQty": "2855128572092038581960740", - "swapFee": "1714105606619194665976", + "type": "redeem", + "inputIndex": 0, + "inputQty": "37010778744837875171328", + "expectedQty": "37015197861507564830833", + "swapFee": "22206467246902725102", "reserves": [ - "15906178177906190832505187", - "20456444480746081396311741", - "39130529892395966551124193" + "805703001390873544202300729", + "564703481119666756987342958", + "890431397466569449722948889" ], - "mAssetSupply": "75440982135877798501291628" + "mAssetSupply": "2260486520943931294827088328" }, { - "type": "redeemBassets", - "inputQtys": [ - "20708024804755808190464", - "94103550501717737996288", - "164741785062718239145984" - ], - "expectedQty": "279103115268372712464015", - "swapFee": "167562406604986619450", + "type": "swap", + "inputIndex": 0, + "inputQty": "6552087408336610263040", + "outputIndex": 1, + "expectedQty": "6525424612541499114274", + "swapFee": "3928425044383949846", "reserves": [ - "15885470153101435024314723", - "20362340930244363658315453", - "38965788107333248311978209" + "805709553478281880812563769", + "564696955695054215488228684", + "890431397466569449722948889" ], - "mAssetSupply": "75161879020609425788827613" + "mAssetSupply": "2260486524872356339211038174", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "10498340642988676", - "4867228609651292", - "11114314659386648" + "761510383612654336", + "985815262037745024", + "4243035240785192448" ], - "expectedQty": "26494899558379810", - "swapFee": "15906483625203", + "expectedQty": "5986191152268110225", + "swapFee": "3593871013969247", "reserves": [ - "15885470142603094381326047", - "20362340925377135048664161", - "38965788096218933652591561" + "805709552716771497199909433", + "564696954709238953450483660", + "890431393223534208937756441" ], - "mAssetSupply": "75161878994114526230447803" + "mAssetSupply": "2260486518886165186942927949" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "526132263123359576883200", - "expectedQty": "528781434629115745086447", + "inputQty": "170436807797404270592", + "outputIndex": 2, + "expectedQty": "170466932093012298711", + "swapFee": "102188530871829109", "reserves": [ - "16411602405726453958209247", - "20362340925377135048664161", - "38965788096218933652591561" - ] + "805709723153579294604180025", + "564696954709238953450483660", + "890431222756602115925457730" + ], + "mAssetSupply": "2260486518988353717814757058", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "189204092919505435492352", - "expectedQty": "190102473531044593066100", + "inputIndex": 1, + "inputQty": "229618556620952788008960", + "expectedQty": "230252326105827028966386", "reserves": [ - "16600806498645959393701599", - "20362340925377135048664161", - "38965788096218933652591561" + "805709723153579294604180025", + "564926573265859906238492620", + "890431222756602115925457730" ] }, { - "type": "redeemMasset", - "inputQty": "202419383767908264129331", - "expectedQtys": [ - "44270995645182785025535", - "54302247695413219539716", - "103913881247849448160261" + "type": "mintMulti", + "inputQtys": [ + "62635851005067488395264", + "45013342474158259306496", + "449887794922906233864192" ], - "redemptionFee": "60725815130372479238", + "expectedQty": "556943552448557337983569", "reserves": [ - "16556535503000776608676064", - "20308038677681721829124445", - "38861874214971084204431300" + "805772359004584362092575289", + "564971586608334064497799116", + "890881110551525022159321922" ], - "mAssetSupply": "75678404244321908676950257" + "mAssetSupply": "2261273714866908102181707013" }, { "type": "redeemBassets", "inputQtys": [ - "94539426687625260433408", - "56236850469895791443968", - "42570789203419596849152" + "5136597917137612878905344", + "5031051175860274047483904", + "2782824648562838031302656" ], - "expectedQty": "193715677061413798057640", - "swapFee": "116299185748297257188", + "expectedQty": "12956575929220302591615317", + "swapFee": "7778612725167281924123", "reserves": [ - "16461996076313151348242656", - "20251801827211826037680477", - "38819303425767664607582148" + "800635761087446749213669945", + "559940535432473790450315212", + "888098285902962184128019266" ], - "mAssetSupply": "75484688567260494878892617" + "mAssetSupply": "2248317138937687799590091696" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2443624266638025530802176", - "expectedQty": "2436245222998025926836431", - "swapFee": "1466174559982815318481", - "reserves": [ - "16461996076313151348242656", - "17815556604213800110844046", - "38819303425767664607582148" - ], - "mAssetSupply": "73042530475182452163408922" - }, - { - "type": "mintMulti", - "inputQtys": [ - "146552563881914702757888", - "47426274779129159090176", - "103992268317239292198912" - ], - "expectedQty": "298258039735916902799694", + "inputIndex": 0, + "inputQty": "3468522568110876026470400", + "expectedQty": "3468883545369583423834956", + "swapFee": "2081113540866525615882", "reserves": [ - "16608548640195066051000544", - "17862982878992929269934222", - "38923295694084903899781060" + "797166877542077165789834989", + "559940535432473790450315212", + "888098285902962184128019266" ], - "mAssetSupply": "73340788514918369066208616" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "3703621636870912411172864", - "expectedQty": "3685260086372482969663437", - "reserves": [ - "16608548640195066051000544", - "17862982878992929269934222", - "42626917330955816310953924" - ] + "mAssetSupply": "2244850697483117790089237178" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "679968088325052239446016", - "expectedQty": "676761477458936583441708", - "swapFee": "407980852995031343667", + "inputQty": "12499630702525906944", + "expectedQty": "12457504822350470092", + "swapFee": "7499778421515544", "reserves": [ - "16608548640195066051000544", - "17186221401533992686492514", - "42626917330955816310953924" + "797166877542077165789834989", + "559940522974968968099845120", + "888098285902962184128019266" ], - "mAssetSupply": "76346488493818794827769704" + "mAssetSupply": "2244850684990986865984845778" }, { - "type": "redeemMasset", - "inputQty": "234427727906258900588953", - "expectedQtys": [ - "50982518607390648427018", - "52755774834769145136725", - "130849940779390910050681" + "type": "mintMulti", + "inputQtys": [ + "65491703751026706445500416", + "6601455461360814165852160", + "30875342470550503425048576" ], - "redemptionFee": "70328318371877670176", + "expectedQty": "102885829557881565803836087", "reserves": [ - "16557566121587675402573526", - "17133465626699223541355789", - "42496067390176425400903243" + "862658581293103872235335405", + "566541978436329782265697280", + "918973628373512687553067842" ], - "mAssetSupply": "76112131094230907804850927" + "mAssetSupply": "2347736514548868431788681865" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "282313226288430663598080", - "64785568117707344183296", - "22812453898565225283584" + "308640917752079187968", + "67701442511882256384", + "360893558863301246976" + ], + "expectedQty": "736602698851414701700", + "reserves": [ + "862658889934021624314523373", + "566542046137772294147953664", + "918973989267071550854314818" ], - "expectedQty": "371502502067444512710286", - "swapFee": "223035322433927063864", + "mAssetSupply": "2347737251151567283203383565" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "732927878523354022412288", + "outputIndex": 0, + "expectedQty": "735542974998191373508731", + "swapFee": "441150620848565099905", "reserves": [ - "16275252895299244738975446", - "17068680058581516197172493", - "42473254936277860175619659" + "861923346959023432941014642", + "567274974016295648170365952", + "918973989267071550854314818" ], - "mAssetSupply": "75740628592163463292140641" + "mAssetSupply": "2347737692302188131768483470", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "196562603535179976802304", - "expectedQty": "197565800674222442499225", + "inputQty": "1116197109030309282709504", + "expectedQty": "1115083293610947866451100", "reserves": [ - "16471815498834424715777750", - "17068680058581516197172493", - "42473254936277860175619659" + "863039544068053742223724146", + "567274974016295648170365952", + "918973989267071550854314818" ] }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "216248133346914390245376", + "outputIndex": 1, + "expectedQty": "215115094124843271042784", + "swapFee": "129555752382853274218", + "reserves": [ + "863039544068053742223724146", + "567059858922170804899323168", + "919190237400418465244560194" + ], + "mAssetSupply": "2348852905151551462488208788", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "redeem", "inputIndex": 0, - "inputQty": "40261535942624649216", - "expectedQty": "40036472109887269970", - "swapFee": "24156921565574789", + "inputQty": "7351958995489094834847744", + "expectedQty": "7354745675408824665805239", + "swapFee": "4411175397293456900908", "reserves": [ - "16471775462362314828507780", - "17068680058581516197172493", - "42473254936277860175619659" + "855684798392644917557918907", + "567059858922170804899323168", + "919190237400418465244560194" ], - "mAssetSupply": "75938154155458664675565439" + "mAssetSupply": "2341505357331459661110261952" }, { "type": "swap", "inputIndex": 1, - "inputQty": "581552677158394", + "inputQty": "169218432479411424", "outputIndex": 0, - "expectedQty": "580856271672105", - "swapFee": "350472928734", + "expectedQty": "169808795186823918", + "swapFee": "101849052642238", "reserves": [ - "16471775461781458556835675", - "17068680059163068874330887", - "42473254936277860175619659" + "855684798222836122371094989", + "567059859091389237378734592", + "919190237400418465244560194" ], - "mAssetSupply": "75938154155459015148494173", + "mAssetSupply": "2341505357331561510162904190", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "4073977299034398257053696", - "1741032596535657839460352", - "1101162397734351574925312" - ], - "expectedQty": "6945465378790750573039509", - "swapFee": "4169781095932009549553", + "type": "mint", + "inputIndex": 2, + "inputQty": "23502641153397256007712768", + "expectedQty": "23465571676510308847470793", "reserves": [ - "12397798162747060299781979", - "15327647462627411034870535", - "41372092538543508600694347" - ], - "mAssetSupply": "68992688776668264575454664" + "855684798222836122371094989", + "567059859091389237378734592", + "942692878553815721252272962" + ] }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "402207030736774185877504", - "expectedQty": "404082521518006808275656", + "inputQty": "41089476933098766336", + "outputIndex": 2, + "expectedQty": "41266348342664206904", + "swapFee": "24733948198687220", "reserves": [ - "12397798162747060299781979", - "15729854493364185220748039", - "41372092538543508600694347" - ] + "855684798222836122371094989", + "567059900180866170477500928", + "942692837287467378588066058" + ], + "mAssetSupply": "2364970929032805767209062203", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "368050792039581652877312", - "expectedQty": "371410764548879041422428", + "type": "redeemBassets", + "inputQtys": [ + "85749017759950173110272", + "98091036289400085413888", + "27575451657624010883072" + ], + "expectedQty": "211613091738477560833397", + "swapFee": "127044081491981725535", "reserves": [ - "12765848954786641952659291", - "15729854493364185220748039", - "41372092538543508600694347" - ] + "855599049205076172197984717", + "566961809144576770392087040", + "942665261835809754577182986" + ], + "mAssetSupply": "2364759315941067289648228806" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "22704537862287884", - "expectedQty": "22904701930893561", + "inputIndex": 1, + "inputQty": "25185722370479254570795008", + "expectedQty": "25262637799724549360746258", "reserves": [ - "12765848977491179814947175", - "15729854493364185220748039", - "41372092538543508600694347" + "855599049205076172197984717", + "592147531515056024962882048", + "942665261835809754577182986" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "10204829527508556", - "outputIndex": 1, - "expectedQty": "10242068174898316", - "swapFee": "6176877415287", + "inputIndex": 1, + "inputQty": "501030704586120518172672", + "outputIndex": 0, + "expectedQty": "502541400657434265902011", + "swapFee": "301476624418000933808", "reserves": [ - "12765848987696009342455731", - "15729854483122117045849723", - "41372092538543508600694347" + "855096507804418737932082706", + "592648562219642145481054720", + "942665261835809754577182986" ], - "mAssetSupply": "69768182085646029233461596", + "mAssetSupply": "2390022255217416257009908872", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemMasset", + "inputQty": "254613117404937128090009", + "expectedQtys": [ + "91067550280237198866423", + "63116913992580625473505", + "100393599255934133585554" + ], + "redemptionFee": "76383935221481138427", + "reserves": [ + "855005440254138500733216283", + "592585445305649564855581215", + "942564868236553820443597432" + ], + "mAssetSupply": "2389767718483946541362957290" + }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "256380877671063969857536", - "expectedQty": "257987682268450038561604", - "swapFee": "153828526602638381914", + "inputIndex": 0, + "inputQty": "2239156564786512671014912", + "expectedQty": "2239494942376176380129468", + "swapFee": "1343493938871907602608", "reserves": [ - "12765848987696009342455731", - "15729854483122117045849723", - "41114104856275058562132743" + "852765945311762324353086815", + "592585445305649564855581215", + "942564868236553820443597432" ], - "mAssetSupply": "69511955036501567901985974" + "mAssetSupply": "2387529905413098900599544986" }, { "type": "mintMulti", "inputQtys": [ - "141102608309207942823936", - "129458369220715590189056", - "167011470743477459877888" + "8505024718680654848", + "2721154723274008576", + "5863473557831211008" ], - "expectedQty": "438237631867990302397371", + "expectedQty": "17082130541647744376", "reserves": [ - "12906951596005217285279667", - "15859312852342832636038779", - "41281116327018536022010631" + "852765953816787043033741663", + "592585448026804288129589791", + "942564874100027378274808440" ], - "mAssetSupply": "69950192668369558204383345" + "mAssetSupply": "2387529922495229442247289362" }, { - "type": "mintMulti", - "inputQtys": [ - "3184034139577299501056", - "7501847352764400664576", - "5727716906122818355200" - ], - "expectedQty": "16435518923533102287257", + "type": "redeem", + "inputIndex": 0, + "inputQty": "7131776325243730132992", + "expectedQty": "7132802486286335304768", + "swapFee": "4279065795146238079", "reserves": [ - "12910135630144794584780723", - "15866814699695597036703355", - "41286844043924658840365831" + "852758821014300756698436895", + "592585448026804288129589791", + "942564874100027378274808440" ], - "mAssetSupply": "69966628187293091306670602" + "mAssetSupply": "2387522794997969993663394449" }, { "type": "redeemMasset", - "inputQty": "13716608948757949369548", + "inputQty": "50391369741191634694963", "expectedQtys": [ - "2530208493907382956105", - "3109676805461574922378", - "8091651898888376594847" + "17993040164592805889829", + "12503434153418981378062", + "19887929880624174198079" + ], + "redemptionFee": "15117410922357490408", + "reserves": [ + "852740827974136163892547066", + "592572944592650869148211729", + "942544986170146754100610361" + ], + "mAssetSupply": "2387472418745639724386189894" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "25244374463487056", + "expectedQty": "25205979432553805", + "reserves": [ + "852740827974136163892547066", + "592572944592650869148211729", + "942544986195391128564097417" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "2667026967870597632", + "expectedQty": "2669486865376757473", + "swapFee": "1600216180722358", + "reserves": [ + "852740827974136163892547066", + "592572944592650869148211729", + "942544983525904263187339944" ], - "redemptionFee": "4114982684627384810", + "mAssetSupply": "2387472416105418952128868425" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "5379821393763237091082240", + "8085388036085073326374912", + "4901571048940846704492544" + ], + "expectedQty": "18378434944785199414260349", + "swapFee": "11033681175576465527872", "reserves": [ - "12907605421650887201824618", - "15863705022890135461780977", - "41278752392025770463770984" + "847361006580372926801464826", + "584487556556565795821836817", + "937643412476963416482847400" ], - "mAssetSupply": "69952915693327017984685864" + "mAssetSupply": "2369093981160633752714608076" }, { "type": "mintMulti", "inputQtys": [ - "30130180656570411515904", - "41658044384823184719872", - "44383778956661454012416" + "408517274867362800074752", + "1154331453884358214025216", + "2412832443288936878440448" ], - "expectedQty": "116315284348103536582372", + "expectedQty": "3974982964117146553139036", "reserves": [ - "12937735602307457613340522", - "15905363067274958646500849", - "41323136170982431917783400" + "847769523855240289601539578", + "585641888010450154035862033", + "940056244920252353361287848" ], - "mAssetSupply": "70069230977675121521268236" + "mAssetSupply": "2373068964124750899267747112" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "10335915445474541174784", - "expectedQty": "10242037395581582446466", - "swapFee": "6201549267284724704", + "inputIndex": 1, + "inputQty": "139879704491598928", + "expectedQty": "139390840801401270", + "swapFee": "83927822694959", "reserves": [ - "12927493564911876030894056", - "15905363067274958646500849", - "41323136170982431917783400" + "847769523855240289601539578", + "585641887871059313234460763", + "940056244920252353361287848" ], - "mAssetSupply": "70058901263778914264818156" + "mAssetSupply": "2373068963984955122598843143" }, { "type": "mintMulti", "inputQtys": [ - "258978219030114346205184", - "268307161206227396984832", - "221523454208559460384768" + "34317827986751936790528", + "5221035133973546663936", + "1985722644753158242304" ], - "expectedQty": "750683295371247100453395", + "expectedQty": "41510828918644002756419", "reserves": [ - "13186471783941990377099240", - "16173670228481186043485681", - "41544659625190991378168168" + "847803841683227041538330106", + "585647108906193286781124699", + "940058230642897106519530152" ], - "mAssetSupply": "70809584559150161365271551" + "mAssetSupply": "2373110474813873766601599562" }, { - "type": "redeemBassets", - "inputQtys": [ - "479772179020318976", - "6936780354194352128", - "37278906964414496768" - ], - "expectedQty": "44483257265522385399", - "swapFee": "26705977946081079", + "type": "mint", + "inputIndex": 2, + "inputQty": "34952363186788666187972608", + "expectedQty": "34894637037305090598130834", "reserves": [ - "13186471304169811356780264", - "16173663291700831849133553", - "41544622346284026963671400" - ], - "mAssetSupply": "70809540075892895842886152" + "847803841683227041538330106", + "585647108906193286781124699", + "975010593829685772707502760" + ] }, { "type": "redeemMasset", - "inputQty": "1292476215646538537369", + "inputQty": "32234263544787198856396", "expectedQtys": [ - "240618531775875859068", - "295126954354787078313", - "758080444840846313533" + "11345546499424753038780", + "7837292283503865763788", + "13047862590200023141300" ], - "redemptionFee": "387742864693961561", + "redemptionFee": "9670279063436159656", "reserves": [ - "13186230685638035480921196", - "16173368164746477062055240", - "41543864265839186117357867" + "847792496136727616785291326", + "585639271613909782915360911", + "974997545967095572684361460" ], - "mAssetSupply": "70808247987420113998310344" + "mAssetSupply": "2407972887257913133437033656" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "278143056965491568410624", - "outputIndex": 1, - "expectedQty": "274902532205365809109097", - "swapFee": "165779704350539596507", + "inputQty": "12248033253836465767448576", + "expectedQty": "12261699243683845682468074", + "swapFee": "7348819952301879460469", "reserves": [ - "13186230685638035480921196", - "15898465632541111252946143", - "41822007322804677685768491" + "847792496136727616785291326", + "585639271613909782915360911", + "962735846723411727001893386" ], - "mAssetSupply": "70808413767124464537906851", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2395732202824028969549045549" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "3499128456524435816448", - "expectedQty": "3467998377700101521797", - "swapFee": "2099477073914661489", + "inputQty": "632636493434180497047552", + "expectedQty": "632198095504222654713968", + "reserves": [ + "848425132630161797282338878", + "585639271613909782915360911", + "962735846723411727001893386" + ] + }, + { + "type": "redeemMasset", + "inputQty": "2065745893992295301120", + "expectedQtys": [ + "731151299108800071257", + "504689097224439327610", + "829661378427451158141" + ], + "redemptionFee": "619723768197688590", "reserves": [ - "13182762687260335379399399", - "15898465632541111252946143", - "41822007322804677685768491" + "848424401478862688482267621", + "585638766924812558476033301", + "962735017062033299550735245" ], - "mAssetSupply": "70804916738145014016751892" + "mAssetSupply": "2396362335793362968106146987" }, { "type": "redeemMasset", - "inputQty": "348926950931374082831155", + "inputQty": "2751630501495825655398", "expectedQtys": [ - "64945224919437047811816", - "78324206456143414261616", - "206037212122974649980161" + "973913694654825574307", + "672259796199473437356", + "1105131837092524859775" ], - "redemptionFee": "104678085279412224849", + "redemptionFee": "825489150448747696", "reserves": [ - "13117817462340898331587583", - "15820141426084967838684527", - "41615970110681703035788330" + "848423427565168033656693314", + "585638094665016359002595945", + "962733911930196207025875470" ], - "mAssetSupply": "70456094465298919346145586" + "mAssetSupply": "2396359584988350622729239285" }, { "type": "mintMulti", "inputQtys": [ - "6241829888449959690240", - "4442774484204699779072", - "6740648211634318213120" + "63553043745063139608100864", + "46287252241751329757724672", + "24318837926622474128064512" ], - "expectedQty": "17452524430535194012766", + "expectedQty": "134207555846514922927825953", "reserves": [ - "13124059292229348291277823", - "15824584200569172538463599", - "41622710758893337354001450" + "911976471310231173264794178", + "631925346906767688760320617", + "987052749856818681153939982" ], - "mAssetSupply": "70473546989729454540158352" + "mAssetSupply": "2530567140834865545657065238" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "98431965859130950811648", - "expectedQty": "97549229462419835801578", - "swapFee": "59059179515478570486", + "type": "mint", + "inputIndex": 2, + "inputQty": "795995983198443548966912", + "expectedQty": "794864806286552862591976", "reserves": [ - "13026510062766928455476245", - "15824584200569172538463599", - "41622710758893337354001450" - ], - "mAssetSupply": "70375174083049839067917190" + "911976471310231173264794178", + "631925346906767688760320617", + "987848745840017124702906894" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "82617073539694553202688", - "outputIndex": 2, - "expectedQty": "83505950452867234559077", - "swapFee": "49795518010225391977", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9268240191349314", + "expectedQty": "9270130823197576", + "swapFee": "5560944114809", "reserves": [ - "13026510062766928455476245", - "15907201274108867091666287", - "41539204808440470119442373" + "911976471300961042441596602", + "631925346906767688760320617", + "987848745840017124702906894" ], - "mAssetSupply": "70375223878567849293309167", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2531362005631889419272422709" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "368579150218539904", - "770379897614145280", - "428955672836299648" + "1701615835668676180180992", + "275957726438445702709248", + "1558740972676240176578560" ], - "expectedQty": "1571612767317443127", + "expectedQty": "3533497396941961875382930", + "swapFee": "2121371260921730163327", "reserves": [ - "13026510431346078674016149", - "15907202044488764705811567", - "41539205237396142955742021" + "910274855465292366261415610", + "631649389180329243057611369", + "986290004867340884526328334" ], - "mAssetSupply": "70375225450180616610752294" + "mAssetSupply": "2527828508234947457397039779" }, { - "type": "redeemBassets", - "inputQtys": [ - "366002275058273029718016", - "60509671626837883617280", - "104771123043527404027904" - ], - "expectedQty": "534049187828965238369120", - "swapFee": "320621885828876468902", + "type": "redeem", + "inputIndex": 2, + "inputQty": "18126203839095963937406976", + "expectedQty": "18140216952392299522636921", + "swapFee": "10875722303457578362444", "reserves": [ - "12660508156287805644298133", - "15846692372861926822194287", - "41434434114352615551714117" + "910274855465292366261415610", + "631649389180329243057611369", + "968149787914948585003691413" ], - "mAssetSupply": "69841176262351651372383174" + "mAssetSupply": "2509713180118154951037995247" }, { - "type": "redeemMasset", - "inputQty": "728302958193934126284", - "expectedQtys": [ - "131984021892384440769", - "165199545487670449977", - "431948164460623977530" - ], - "redemptionFee": "218490887458180237", + "type": "redeem", + "inputIndex": 0, + "inputQty": "711299908200102388301824", + "expectedQty": "711473468966023172466292", + "swapFee": "426779944920061432981", "reserves": [ - "12660376172265913259857364", - "15846527173316439151744310", - "41434002166188154927736587" + "909563381996326343088949318", + "631649389180329243057611369", + "968149787914948585003691413" ], - "mAssetSupply": "69840448177884344896437127" + "mAssetSupply": "2509002306989899768711126404" }, { "type": "swap", "inputIndex": 1, - "inputQty": "332505289522835900858368", + "inputQty": "56164871601263386558464", "outputIndex": 0, - "expectedQty": "330620111184655950623692", - "swapFee": "200357357976634196110", + "expectedQty": "56328554177702289273238", + "swapFee": "33788973647286910524", + "reserves": [ + "909507053442148640799676080", + "631705554051930506444169833", + "968149787914948585003691413" + ], + "mAssetSupply": "2509002340778873415998036928", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "845231910196532821884928", + "outputIndex": 1, + "expectedQty": "841347867986133218519000", + "swapFee": "506466066079288143769", "reserves": [ - "12329756061081257309233672", - "16179032462839275052602678", - "41434002166188154927736587" + "909507053442148640799676080", + "630864206183944373225650833", + "968995019825145117825576341" ], - "mAssetSupply": "69840648535242321530633237", + "mAssetSupply": "2509002847244939495286180697", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "11303227770296973312", - "43901913282594471936", - "74997662372376510464" + "39115639601900529123328", + "56052100897311498960896", + "74069865266499182133248" ], - "expectedQty": "129970499673325342869", - "swapFee": "78029117274359821", + "expectedQty": "169256489894911737606450", + "swapFee": "101614862854659838466", "reserves": [ - "12329744757853487012260360", - "16178988560925992458130742", - "41433927168525782551226123" + "909467937802546740270552752", + "630808154083047061726689937", + "968920949959878618643443093" ], - "mAssetSupply": "69840518564742648205290368" + "mAssetSupply": "2508833590755044583548574247" }, { - "type": "mintMulti", - "inputQtys": [ - "1246044025004752896000", - "385450542790500810752", - "361905715579635433472" + "type": "swap", + "inputIndex": 2, + "inputQty": "353847015341347590635520", + "outputIndex": 0, + "expectedQty": "353460125193926866982376", + "swapFee": "212024936090785194033", + "reserves": [ + "909114477677352813403570376", + "630808154083047061726689937", + "969274796975219966234078613" ], - "expectedQty": "2004538339682329327539", + "mAssetSupply": "2508833802779980674333768280", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "65205431982754176696320", + "outputIndex": 0, + "expectedQty": "65133911374121340328914", + "swapFee": "39070978489092950909", "reserves": [ - "12330990801878491765156360", - "16179374011468782958941494", - "41434289074241362186659595" + "909049343765978692063241462", + "630808154083047061726689937", + "969340002407202720410774933" ], - "mAssetSupply": "69842523103082330534617907" + "mAssetSupply": "2508833841850959163426719189", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2087780853386511384576", - "529932190344816230400", - "2079026614623210307584" + "10182538522035321044992", + "27753252435761720983552", + "7116879711447147347968" ], - "expectedQty": "4704711096080140174476", + "expectedQty": "45109183651421702174430", "reserves": [ - "12333078582731878276540936", - "16179903943659127775171894", - "41436368100855985396967179" + "909059526304500727384286454", + "630835907335482823447673489", + "969347119286914167558122901" ], - "mAssetSupply": "69847227814178410674792383" + "mAssetSupply": "2508878951034610585128893619" }, { - "type": "redeemBassets", - "inputQtys": [ - "997523869478051", - "948678431568048", - "400199657530056" - ], - "expectedQty": "2357150202682118", - "swapFee": "1415139205132", + "type": "redeem", + "inputIndex": 0, + "inputQty": "32141650201543875435167744", + "expectedQty": "32146221311586351253404005", + "swapFee": "19284990120926325261100", "reserves": [ - "12333078581734354407062885", - "16179903942710449343603846", - "41436368100455785739437123" + "876913304992914376130882449", + "630835907335482823447673489", + "969347119286914167558122901" ], - "mAssetSupply": "69847227811821260472110265" + "mAssetSupply": "2476756585823187636018986975" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "137087310597929073377280", - "17549222591898702577664", - "224545723210789872992256" + "13530073198960954048512", + "33577928155551085101056", + "40496214152706065956864" ], - "expectedQty": "379017137353320104327764", + "expectedQty": "87623235979661221126954", + "swapFee": "52605504890731171378", "reserves": [ - "12470165892332283480440165", - "16197453165302348046181510", - "41660913823666575612429379" + "876899774919715415176833937", + "630802329407327272362572433", + "969306623072761461492166037" ], - "mAssetSupply": "70226244949174580576438029" + "mAssetSupply": "2476668962587207974797860021" }, { - "type": "redeemMasset", - "inputQty": "245654170059902183853260", - "expectedQtys": [ - "43608044977070135997826", - "56642331164239697269465", - "145687797539677297959050" + "type": "redeemBassets", + "inputQtys": [ + "22136557736837488640", + "112137700881606328320", + "17030215504013174784" ], - "redemptionFee": "73696251017970655155", + "expectedQty": "151550868589770822346", + "swapFee": "90985112221195210", "reserves": [ - "12426557847355213344442339", - "16140810834138108348912045", - "41515226026126898314470329" + "876899752783157678339345297", + "630802217269626390756244113", + "969306606042545957478991253" ], - "mAssetSupply": "69980664475365696363239924" + "mAssetSupply": "2476668811036339385027037675" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2058456784079675719680", - "outputIndex": 1, - "expectedQty": "2068300188467592814984", - "swapFee": "1246867993149612173", + "type": "redeemBassets", + "inputQtys": [ + "11766867895364264642215936", + "6919945669228675983212544", + "243900778248149173010432" + ], + "expectedQty": "18940741157107312570680077", + "swapFee": "11371267454737229880336", "reserves": [ - "12428616304139293020162019", - "16138742533949640756097061", - "41515226026126898314470329" + "865132884887793413697129361", + "623882271600397714773031569", + "969062705264297808305980821" ], - "mAssetSupply": "69980665722233689512852097", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2457728069879232072456357598" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "285516058673229103104", - "expectedQty": "282646289138331838261", - "swapFee": "171309635203937461", + "inputQty": "21247337265336017076879360", + "expectedQty": "21245915174629664442810868", + "swapFee": "12748402359201610246127", "reserves": [ - "12428333657850154688323758", - "16138742533949640756097061", - "41515226026126898314470329" + "843886969713163749254318493", + "623882271600397714773031569", + "969062705264297808305980821" ], - "mAssetSupply": "69980380377484651487686454" + "mAssetSupply": "2436493481016255256989724365" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "139026616629446085443584", - "expectedQty": "139909471994020260273727", - "swapFee": "83415969977667651266", + "type": "redeemBassets", + "inputQtys": [ + "212084787605983687868416", + "152750545919510344368128", + "145566053151381276065792" + ], + "expectedQty": "510457395468483484417652", + "swapFee": "306458312268451161347", "reserves": [ - "12428333657850154688323758", - "16138742533949640756097061", - "41375316554132878054196602" + "843674884925557765566450077", + "623729521054478204428663441", + "968917139211146427029915029" ], - "mAssetSupply": "69841437176825183069894136" + "mAssetSupply": "2435983023620786773505306713" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1614274589046392225792", - "expectedQty": "1629581469491509080750", + "inputIndex": 1, + "inputQty": "1296508698108005917392896", + "expectedQty": "1299713016019268871126269", "reserves": [ - "12429947932439201080549550", - "16138742533949640756097061", - "41375316554132878054196602" + "843674884925557765566450077", + "625026029752586210346056337", + "968917139211146427029915029" ] }, { "type": "redeemBassets", "inputQtys": [ - "40860821095917328", - "27828784286086596", - "16414952559220514" - ], - "expectedQty": "85493073760876472", - "swapFee": "51326640240670", - "reserves": [ - "12429947891578379984632222", - "16138742506120856470010465", - "41375316537717925494976088" - ], - "mAssetSupply": "69843066672801600818098414" - }, - { - "type": "redeemMasset", - "inputQty": "7989994338248967585792", - "expectedQtys": [ - "1421550104315813254349", - "1845706135956208527675", - "4731885125612058982151" + "1292411558404172164366336", + "355879350341067385864192", + "1204235990708711464108032" ], - "redemptionFee": "2396998301474690275", + "expectedQty": "2850963714456441973391529", + "swapFee": "1711605191788938547163", "reserves": [ - "12428526341474064171377873", - "16136896799984900261482790", - "41370584652592313435993937" + "842382473367153593402083741", + "624670150402245142960192145", + "967712903220437715565806997" ], - "mAssetSupply": "69835079075461653325202897" + "mAssetSupply": "2434431772922349600403041453" }, { "type": "redeemMasset", - "inputQty": "119486633442612923596", + "inputQty": "139592945340238187724", "expectedQtys": [ - "21258617846770123125", - "27601673189434625530", - "70763131932389959525" + "48288629269750029309", + "35808514852024684697", + "55473055411966144314" ], - "redemptionFee": "35845990032783877", + "redemptionFee": "41877883602071456", "reserves": [ - "12428505082856217401254748", - "16136869198311710826857260", - "41370513889460381046034412" + "842382425078524323652054432", + "624670114593730290935507448", + "967712847747382303599662683" ], - "mAssetSupply": "69834959624674200745063178" + "mAssetSupply": "2434431633371282143766925185" }, { - "type": "redeemBassets", - "inputQtys": [ - "667503710289354031104", - "54956108806309011456", - "271953641841307811840" - ], - "expectedQty": "999094392026367051170", - "swapFee": "599816525130898769", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1873662930596844923781120", + "expectedQty": "1873377394348742429932186", + "swapFee": "1124197758358106954268", "reserves": [ - "12427837579145928047223644", - "16136814242202904517845804", - "41370241935818539738222572" + "840509047684175581222122246", + "624670114593730290935507448", + "967712847747382303599662683" ], - "mAssetSupply": "69833960530282174378012008" + "mAssetSupply": "2432559094638443656950098333" }, { - "type": "mintMulti", - "inputQtys": [ - "249903679559585553711104", - "261410185454807261642752", - "279317347587909446795264" - ], - "expectedQty": "792120351837859711020155", + "type": "swap", + "inputIndex": 1, + "inputQty": "22554568877520912992174080", + "outputIndex": 0, + "expectedQty": "22598888912925081027890109", + "swapFee": "13563897895646162141270", "reserves": [ - "12677741258705513600934748", - "16398224427657711779488556", - "41649559283406449185017836" + "817910158771250500194232137", + "647224683471251203927681528", + "967712847747382303599662683" ], - "mAssetSupply": "70626080882120034089032163" + "mAssetSupply": "2432572658536339303112239603", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "88112310100064599015424", - "105289520614836082311168", - "49604410664826871742464" - ], - "expectedQty": "243898565877692323046032", + "type": "mint", + "inputIndex": 1, + "inputQty": "719353841945233107976192", + "expectedQty": "720833644630203197081784", "reserves": [ - "12765853568805578199950172", - "16503513948272547861799724", - "41699163694071276056760300" - ], - "mAssetSupply": "70869979447997726412078195" + "817910158771250500194232137", + "647944037313196437035657720", + "967712847747382303599662683" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1100560497180225155629056", - "155737539426256081125376", - "23562059853049192513536" + "338397648830640102047744", + "177810081815237274632192", + "383146423635554221424640" ], - "expectedQty": "1291423102677428929571409", - "swapFee": "775319053038280325938", + "expectedQty": "899081604897176037294306", + "swapFee": "539772826634286194093", "reserves": [ - "11665293071625353044321116", - "16347776408846291780674348", - "41675601634218226864246764" + "817571761122419860092184393", + "647766227231381199761025528", + "967329701323746749378238043" ], - "mAssetSupply": "69578556345320297482506786" + "mAssetSupply": "2432394410576072330272027081" }, { "type": "redeemBassets", "inputQtys": [ - "18651367468765376", - "397768099680222592", - "113028983476662768" + "28373302820439618911993856", + "13795031354277340408446976", + "11012512433507466118955008" ], - "expectedQty": "530361226657654790", - "swapFee": "318407780662990", + "expectedQty": "53188423588011556378703220", + "swapFee": "31932213480895471109887", "reserves": [ - "11665293052973985575555740", - "16347776011078192100451756", - "41675601521189243387583996" + "789198458301980241180190537", + "633971195877103859352578552", + "956317188890239283259283035" ], - "mAssetSupply": "69578555814959070824851996" + "mAssetSupply": "2379205986988060773893323861" }, { "type": "swap", "inputIndex": 1, - "inputQty": "22009831685036561137664", + "inputQty": "3532860950060432000811008", "outputIndex": 0, - "expectedQty": "21836090155828942852383", - "swapFee": "13256461665931464641", + "expectedQty": "3538044761924125346190834", + "swapFee": "2124003923833801744512", "reserves": [ - "11643456962818156632703357", - "16369785842763228661589420", - "41675601521189243387583996" + "785660413540056115833999703", + "637504056827164291353389560", + "956317188890239283259283035" ], - "mAssetSupply": "69578569071420736756316637", + "mAssetSupply": "2379208110991984607695068373", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "15763156833920936941977", - "expectedQtys": [ - "2637055911772383430614", - "3707493459112536864709", - "9438854089389107068389" + "type": "redeemBassets", + "inputQtys": [ + "782255770010510751170560", + "802856305996521128591360", + "609501940573458225168384" ], - "redemptionFee": "4728947050176281082", + "expectedQty": "2195218410932555727674950", + "swapFee": "1317921799639317026821", "reserves": [ - "11640819906906384249272743", - "16366078349304116124724711", - "41666162667099854280515607" + "784878157770045605082829143", + "636701200521167770224798200", + "955707686949665825034114651" ], - "mAssetSupply": "69562810643533865995655742" + "mAssetSupply": "2377012892581052051967393423" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "130975234671496182890496", - "expectedQty": "131854653078971850851547", - "swapFee": "78585140802897709734", + "inputQty": "44415560804870171656192", + "outputIndex": 0, + "expectedQty": "44319977165636968603218", + "swapFee": "26607092666856373615", "reserves": [ - "11640819906906384249272743", - "16366078349304116124724711", - "41534308014020882429664060" + "784833837792879968114225925", + "636701200521167770224798200", + "955752102510470695205770843" ], - "mAssetSupply": "69431913994003172710474980" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "8249634532959552404455424", - "expectedQty": "8297080731598083467757350", - "reserves": [ - "19890454439865936653728167", - "16366078349304116124724711", - "41534308014020882429664060" - ] + "mAssetSupply": "2377012919188144718823767038", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "8118201774947880140800", - "outputIndex": 2, - "expectedQty": "8196164149253057147109", - "swapFee": "4897175707032714897", + "inputQty": "1047669362360976677011456", + "expectedQty": "1044955999855811492997701", + "swapFee": "628601617416586006206", "reserves": [ - "19890454439865936653728167", - "16374196551079064004865511", - "41526111849871629372516951" + "784833837792879968114225925", + "635656244521311958731800499", + "955752102510470695205770843" ], - "mAssetSupply": "77728999622776963210947227", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2375965878427401158732761788" }, { - "type": "redeemMasset", - "inputQty": "1544062595183523817062", - "expectedQtys": [ - "394999205171702990069", - "325170781922319124499", - "824655928508845404645" + "type": "redeemBassets", + "inputQtys": [ + "1672961706658398994432", + "1284164313872849174528", + "1258435201535680446464" ], - "redemptionFee": "463218778555057145", + "expectedQty": "4216068881005638745046", + "swapFee": "2531160024618154139", "reserves": [ - "19890059440660764950738098", - "16373871380297141685741012", - "41525287193943120527112306" + "784832164831173309715231493", + "635654960356998085882625971", + "955750844075269159525324379" ], - "mAssetSupply": "77727456023400558242187310" + "mAssetSupply": "2375961662358520153094016742" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "345887450398995584", - "expectedQty": "344237566373639243", + "type": "mintMulti", + "inputQtys": [ + "97848116161581024", + "214866437133435584", + "108717382593725280" + ], + "expectedQty": "421685508902927967", "reserves": [ - "19890059440660764950738098", - "16373871380297141685741012", - "41525287539830570926107890" - ] + "784832164929021425876812517", + "635654960571864523016061555", + "955750844183986542119049659" + ], + "mAssetSupply": "2375961662780205661996944709" }, { "type": "redeemMasset", - "inputQty": "16927485760766889164", + "inputQty": "710601505260806166544384", "expectedQtys": [ - "4330357727920475913", - "3564832004609138624", - "9040664274467920141" + "234656819440399975020330", + "190054355535742302036165", + "285759762781861012437978" ], - "redemptionFee": "5078245728230066", + "redemptionFee": "213180451578241849963", "reserves": [ - "19890055110303037030262185", - "16373867815465137076602388", - "41525278499166296458187749" + "784597508109581025901792187", + "635464906216328780714025390", + "955465084421204681106611681" ], - "mAssetSupply": "77727439445230609577167455" + "mAssetSupply": "2375251274455396434072250288" }, { "type": "redeemMasset", - "inputQty": "7500217260978409", + "inputQty": "206990562740225848639488", "expectedQtys": [ - "1918691543219999", - "1579502999519664", - "4005730514287738" + "68353003402340211556964", + "55360786196386992418419", + "83238740234615293326846" ], - "redemptionFee": "2250065178293", + "redemptionFee": "62097168822067754591", "reserves": [ - "19890055108384345487042186", - "16373867813885634077082724", - "41525278495160565943900011" + "784529155106178685690235223", + "635409545430132393721606971", + "955381845680970065813284835" ], - "mAssetSupply": "77727439437732642381367339" + "mAssetSupply": "2375044345989825030291365391" }, { - "type": "redeemBassets", - "inputQtys": [ - "691106297809455546368", - "1783362381985468121088", - "3042782354328528093184" - ], - "expectedQty": "5514012845869755351382", - "swapFee": "3310393943888186122", + "type": "swap", + "inputIndex": 0, + "inputQty": "7091354646994841600", + "outputIndex": 1, + "expectedQty": "7072683708053308323", + "swapFee": "4254656143410693", "reserves": [ - "19889364002086536031495818", - "16372084451503648608961636", - "41522235712806237415806827" + "784529162197533332685076823", + "635409538357448685668298648", + "955381845680970065813284835" ], - "mAssetSupply": "77721925424886772626015957" + "mAssetSupply": "2375044345994079686434776084", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "15988216329376435", - "expectedQtys": [ - "4090223626665115", - "3366899345513091", - "8538997502718598" - ], - "redemptionFee": "4796464898812", + "type": "mint", + "inputIndex": 2, + "inputQty": "1547154567358389675884544", + "expectedQty": "1544688198210109131366696", "reserves": [ - "19889363997996312404830703", - "16372084448136749263448545", - "41522235704267239913088229" - ], - "mAssetSupply": "77721925408903352761538334" + "784529162197533332685076823", + "635409538357448685668298648", + "956929000248328455489169379" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "144217282153541063933952", - "5529614918271944884224", - "106223208012564681195520" + "3611146632119819698176", + "7262069024401952604160", + "9443677226762015604736" ], - "expectedQty": "255845684127246065185244", - "swapFee": "153599570218478726346", + "expectedQty": "20316266094777655109626", "reserves": [ - "19745146715842771340896751", - "16366554833218477318564321", - "41416012496254675231892709" + "784532773344165452504774999", + "635416800426473087620902808", + "956938443925555217504774115" ], - "mAssetSupply": "77466079724776106696353090" + "mAssetSupply": "2376609350458384573221252406" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "16478462958919639040", - "expectedQty": "16566397301380083288", + "type": "swap", + "inputIndex": 0, + "inputQty": "66725484707628439306240", + "outputIndex": 1, + "expectedQty": "66549611302833163688051", + "swapFee": "40033997499665947902", "reserves": [ - "19745146715842771340896751", - "16366571311681436238203361", - "41416012496254675231892709" - ] + "784599498828873080944081239", + "635350250815170254457214757", + "956938443925555217504774115" + ], + "mAssetSupply": "2376609390492382072887200308", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "56881366932471408", - "expectedQty": "57184903672778926", + "inputIndex": 2, + "inputQty": "3025469253087375690563584", + "expectedQty": "3020608725441919732852413", "reserves": [ - "19745146715842771340896751", - "16366571368562803170674769", - "41416012496254675231892709" + "784599498828873080944081239", + "635350250815170254457214757", + "959963913178642593195337699" ] }, { "type": "mintMulti", "inputQtys": [ - "59003506776575949406208", - "211430534756068126359552", - "215561850426708295942144" + "74981672398888", + "34837154252940", + "95246336719000" ], - "expectedQty": "486232164789365428376447", + "expectedQty": "204980053418064", "reserves": [ - "19804150222619347290302959", - "16578001903318871297034321", - "41631574346681383527834853" + "784599498828948062616480127", + "635350250815205091611467697", + "959963913178737839532056699" ], - "mAssetSupply": "77952328513147677177591751" + "mAssetSupply": "2379629999218028972673470785" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "689831699206399548456960", - "expectedQty": "687558020763771680067437", - "swapFee": "413899019523839729074", + "type": "redeemMasset", + "inputQty": "550818184027087742120755", + "expectedQtys": [ + "181558485888208564274579", + "147021798661447461597196", + "222138294561985861132197" + ], + "redemptionFee": "165245455208126322636", "reserves": [ - "19116592201855575610235522", - "16578001903318871297034321", - "41631574346681383527834853" + "784417940343059854052205548", + "635203229016543644149870501", + "959741774884175853670924502" ], - "mAssetSupply": "77262910712960801468863865" + "mAssetSupply": "2379079346279457093057672666" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10841171935488529924096", - "25133053904581996576768", - "24477577028183332487168" + "397112843124272470687744", + "266352353526662555500544", + "208457450134220002295808" ], - "expectedQty": "60491738678666397670845", + "expectedQty": "872115490786142255170719", + "swapFee": "523583444538408398141", "reserves": [ - "19127433373791064140159618", - "16603134957223453293611089", - "41656051923709566860322021" + "784020827499935581581517804", + "634936876663016981594369957", + "959533317434041633668628694" ], - "mAssetSupply": "77323402451639467866534710" + "mAssetSupply": "2378207230788670950802501947" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 2, + "inputQty": "9099543620131054682112", + "expectedQty": "9108802787333351649647", + "swapFee": "5459726172078632809", + "reserves": [ + "784020827499935581581517804", + "634936876663016981594369957", + "959524208631254300316979047" + ], + "mAssetSupply": "2378198136704776991826452644" + }, + { + "type": "redeemMasset", + "inputQty": "713144054121239570022", + "expectedQtys": [ + "235031743938645694908", + "190339741214435954542", + "287643695416970462591" + ], + "redemptionFee": "213943216236371871", + "reserves": [ + "784020592468191642935822896", + "634936686323275767158415415", + "959523920987558883346516456" + ], + "mAssetSupply": "2378197423774666086823254493" + }, + { + "type": "redeemBassets", "inputQtys": [ - "577597610202707", - "27853140563053736", - "4017234823181678" + "11792005578519040", + "204106816819460", + "17831131297215236" ], - "expectedQty": "32571605714939528", + "expectedQty": "29798577818751164", + "swapFee": "17889880619622", "reserves": [ - "19127433374368661750362325", - "16603134985076593856664825", - "41656051927726801683503699" + "784020592456399637357303856", + "634936686323071660341595955", + "959523920969727752049301220" ], - "mAssetSupply": "77323402484211073581474238" + "mAssetSupply": "2378197423744867509004503329" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "283558251759883809456128", - "expectedQty": "284966301859392328442204", + "type": "mintMulti", + "inputQtys": [ + "17175671831466331865088", + "33493377166182363168768", + "28443530617796035608576" + ], + "expectedQty": "79133980899023729731744", "reserves": [ - "19127433374368661750362325", - "16886693236836477666120953", - "41656051927726801683503699" - ] + "784037768128231103689168944", + "634970179700237842704764723", + "959552364500345548084909796" + ], + "mAssetSupply": "2378276557725766532734235073" }, { - "type": "redeemMasset", - "inputQty": "59173707212063304685977", - "expectedQtys": [ - "14579633711790664449156", - "12871659107508191517228", - "31751775949167789660391" + "type": "mintMulti", + "inputQtys": [ + "55596706411438948745216", + "69589513550088061845504", + "41804264431612430647296" ], - "redemptionFee": "17752112163618991405", + "expectedQty": "167062433854204197623206", "reserves": [ - "19112853740656871085913169", - "16873821577728969474603725", - "41624300151777633893843308" + "784093364834642542637914160", + "635039769213787930766610227", + "959594168764777160515557092" ], - "mAssetSupply": "77549212830970566224221870" + "mAssetSupply": "2378443620159620736931858279" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "511017116716073", - "expectedQty": "508244750181324", - "swapFee": "306610270029", + "inputIndex": 2, + "inputQty": "361602532512871677952", + "expectedQty": "361970362715062315254", + "swapFee": "216961519507723006", "reserves": [ - "19112853740656871085913169", - "16873821577220724724422401", - "41624300151777633893843308" + "784093364834642542637914160", + "635039769213787930766610227", + "959593806794414445453241838" ], - "mAssetSupply": "77549212830459855717775826" + "mAssetSupply": "2378443258774049743567903333" }, { - "type": "redeemMasset", - "inputQty": "91696270954304556236", - "expectedQtys": [ - "22592771456224237742", - "19946073969912095280", - "49202924540460170723" - ], - "redemptionFee": "27508881286291366", + "type": "redeem", + "inputIndex": 0, + "inputQty": "18659212719523933192192", + "expectedQty": "18648433772014576817201", + "swapFee": "11195527631714359915", "reserves": [ - "19112831147885414861675427", - "16873801631146754812327121", - "41624250948853093433672585" + "784074716400870528061096959", + "635039769213787930766610227", + "959593806794414445453241838" ], - "mAssetSupply": "77549121161697782699510956" + "mAssetSupply": "2378424610756857851349071056" }, { - "type": "redeemBassets", - "inputQtys": [ - "1873676524377770374987776", - "958789794995776597786624", - "1526139085680390617169920" + "type": "redeemMasset", + "inputQty": "9814004192934620364", + "expectedQtys": [ + "3234327481213684932", + "2619554660122018573", + "3958348044130586178" ], - "expectedQty": "4361850068301543314110427", - "swapFee": "2618681249730764447134", + "redemptionFee": "2944201257880386", "reserves": [ - "17239154623507644486687651", - "15915011836150978214540497", - "40098111863172702816502665" + "784074713166543046847412027", + "635039766594233270644591654", + "959593802836066401322655660" ], - "mAssetSupply": "73187271093396239385400529" + "mAssetSupply": "2378424600945797859672331078" }, { - "type": "redeemBassets", - "inputQtys": [ - "608581613284422913622016", - "970681687075452039987200", - "467777395537466055720960" - ], - "expectedQty": "2051898858700847427023900", - "swapFee": "1231878442285879984204", + "type": "mint", + "inputIndex": 0, + "inputQty": "7518962335688560738304", + "expectedQty": "7518794682485158615343", "reserves": [ - "16630573010223221573065635", - "14944330149075526174553297", - "39630334467635236760781705" - ], - "mAssetSupply": "71135372234695391958376629" + "784082232128878735408150331", + "635039766594233270644591654", + "959593802836066401322655660" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "26037874287947645190144", - "outputIndex": 0, - "expectedQty": "26067999863678857187439", - "swapFee": "15709495448162746876", + "inputIndex": 0, + "inputQty": "173274615320860", + "outputIndex": 1, + "expectedQty": "172817319584423", + "swapFee": "103962448153", "reserves": [ - "16604505010359542715878196", - "14970368023363473819743441", - "39630334467635236760781705" + "784082232129052010023471191", + "635039766594060453325007231", + "959593802836066401322655660" ], - "mAssetSupply": "71135387944190840121123505", + "mAssetSupply": "2378432119740480448793394574", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "1224871664578000060416", - "868168184811908890624", - "768512445003574149120" + "2013721495552844890112", + "1656248940016611098624", + "1031827933145080659968" ], - "expectedQty": "2866827219721890420210", + "expectedQty": "4703435578907311584718", "reserves": [ - "16605729882024120715938612", - "14971236191548285728634065", - "39631102980080240334930825" + "784084245850547562868361303", + "635041422843000469936105855", + "959594834663999546403315628" ], - "mAssetSupply": "71138254771410562011543715" + "mAssetSupply": "2378436823176059356104979292" }, { "type": "redeemMasset", - "inputQty": "14886938159714", + "inputQty": "1442681636732657623420108", "expectedQtys": [ - "3474000200068", - "3132056097155", - "8291021271566" + "475457063621701595772451", + "385079705122185913587384", + "581884082954603133931015" ], - "redemptionFee": "4466081447", + "redemptionFee": "432804491019797287026", "reserves": [ - "16605729882020646715738544", - "14971236191545153672536910", - "39631102980071949313659259" + "783608788786925861272588852", + "634656343137878284022518471", + "959012950581044943269384613" ], - "mAssetSupply": "71138254771395679539465448" + "mAssetSupply": "2376994574343817718278846210" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7651248503306643832832", - "167420374464504027676672", - "25811361549785575194624" + "2803340004022062881439744", + "5011101752924123292499968", + "2619606928851342559543296" ], - "expectedQty": "201685933423186945603168", + "expectedQty": "10439944657015638822673446", + "swapFee": "6267727430667783963982", "reserves": [ - "16613381130523953359571376", - "15138656566009657700213582", - "39656914341621734888853883" + "780805448782903798391149108", + "629645241384954160730018503", + "956393343652193600709841317" ], - "mAssetSupply": "71339940704818866485068616" + "mAssetSupply": "2366554629686802079456172764" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10747108725626333298688", - "8334021775243990794240", - "10019174721127620542464" + "71047357999900690219008", + "114190884111493627904000", + "40376141375631058272256" ], - "expectedQty": "29132253580849832177659", - "swapFee": "17489846056143585457", + "expectedQty": "225781317838161871148396", "reserves": [ - "16602634021798327026272688", - "15130322544234413709419342", - "39646895166900607268311419" + "780876496140903699081368116", + "629759432269065654357922503", + "956433719793569231768113573" ], - "mAssetSupply": "71310808451238016652890957" + "mAssetSupply": "2366780411004640241327321160" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3510870554373400276500480", - "expectedQty": "3524819804802779127371865", + "type": "redeem", + "inputIndex": 0, + "inputQty": "39435472158835032981504", + "expectedQty": "39413075460438950753828", + "swapFee": "23661283295301019788", "reserves": [ - "16602634021798327026272688", - "18641193098607813985919822", - "39646895166900607268311419" - ] + "780837083065443260130614288", + "629759432269065654357922503", + "956433719793569231768113573" + ], + "mAssetSupply": "2366740999193764701595359444" }, { - "type": "mintMulti", - "inputQtys": [ - "118508933500879914401792", - "158899239344476908421120", - "9482042266266525237248" + "type": "redeemMasset", + "inputQty": "63590610289742580180582", + "expectedQtys": [ + "20973571038786623926245", + "16915569811550781372570", + "25690161239819237326235" ], - "expectedQty": "287817281173932480081006", + "redemptionFee": "19077183086922774054", "reserves": [ - "16721142955299206940674480", - "18800092337952290894340942", - "39656377209166873793548667" + "780816109494404473506688043", + "629742516699254103576549933", + "956408029632329412530787338" ], - "mAssetSupply": "75123445537214728260343828" + "mAssetSupply": "2366677427660658045937952916" }, { "type": "redeemBassets", "inputQtys": [ - "2634204033400022591602688", - "398443248991493282594816", - "1487287212711767602888704" + "54225630269650444288", + "49225535948972040192", + "7337424937914599424" ], - "expectedQty": "4527928808064397223902340", - "swapFee": "2718388317829335935902", + "expectedQty": "110876208612998302166", + "swapFee": "66565664566538904", "reserves": [ - "14086938921899184349071792", - "18401649088960797611746126", - "38169089996455106190659963" + "780816055268774203856243755", + "629742467473718154604509741", + "956408022294904474616187914" ], - "mAssetSupply": "70595516729150331036441488" + "mAssetSupply": "2366677316784449432939650750" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "545391313305575865974784", - "expectedQty": "543809672867255194817921", - "swapFee": "327234787983345519584", + "type": "mintMulti", + "inputQtys": [ + "2247241312598286437187584", + "422464957932420638703616", + "2624255951507255468228608" + ], + "expectedQty": "5290467046335536742030436", "reserves": [ - "14086938921899184349071792", - "17857839416093542416928205", - "38169089996455106190659963" + "783063296581372490293431339", + "630164932431650575243213357", + "959032278246411730084416522" ], - "mAssetSupply": "70050452650632738515986288" + "mAssetSupply": "2371967783830784969681681186" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "5058719083613469984948224", - "expectedQty": "5064977988670470670433526", + "inputQty": "64772446093113528", + "expectedQty": "64599544601714568", + "swapFee": "38863467655868", "reserves": [ - "14086938921899184349071792", - "22916558499707012401876429", - "38169089996455106190659963" - ] + "783063296581372490293431339", + "630164932367051030641498789", + "959032278246411730084416522" + ], + "mAssetSupply": "2371967783766051387056223526" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1189261357810092343296", - "expectedQty": "1188286660608390593434", - "swapFee": "713556814686055405", + "type": "redeemMasset", + "inputQty": "251667845026718957541785", + "expectedQtys": [ + "83058771777092970603076", + "66840989135752579641832", + "101723632653310970445723" + ], + "redemptionFee": "75500353508015687262", "reserves": [ - "14086938921899184349071792", - "22915370213046404011282995", - "38169089996455106190659963" + "782980237809595397322828263", + "630098091377915278061856957", + "958930554613758419113970799" ], - "mAssetSupply": "75114242091502213780131923" + "mAssetSupply": "2371716191421378176114369003" }, { - "type": "mintMulti", - "inputQtys": [ - "1421886882452407861641216", - "531297497593838112342016", - "179326871183864587354112" - ], - "expectedQty": "2141453577127659763135577", + "type": "swap", + "inputIndex": 2, + "inputQty": "289768419873780335116288", + "outputIndex": 1, + "expectedQty": "288520719139151779178796", + "swapFee": "173576299618171151568", "reserves": [ - "15508825804351592210713008", - "23446667710640242123625011", - "38348416867638970778014075" + "782980237809595397322828263", + "629809570658776126282678161", + "959220323033632199449087087" ], - "mAssetSupply": "77255695668629873543267500" + "mAssetSupply": "2371716364997677794285520571", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 2, - "inputQty": "25797728297974111404032", - "outputIndex": 0, - "expectedQty": "25525839693996366089913", - "swapFee": "15417712823403117788", + "inputQty": "1656399673385348497408", + "outputIndex": 1, + "expectedQty": "1649261090383347506640", + "swapFee": "992210035361474172", "reserves": [ - "15483299964657595844623095", - "23446667710640242123625011", - "38374214595936944889418107" + "782980237809595397322828263", + "629807921397685742935171521", + "959221979433305584797584495" ], - "mAssetSupply": "77255711086342696946385288", + "mAssetSupply": "2371716365989887829646994743", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "10177931390848736428032", - "1037164261669871943680", - "34406622961056660586496" + "type": "redeemMasset", + "inputQty": "118591493515488701238476", + "expectedQtys": [ + "39139140197091227434449", + "31482455549302176238475", + "47949005249735583426217" ], - "expectedQty": "45548331755953293508398", - "swapFee": "27345406297350386336", + "redemptionFee": "35577448054646610371", "reserves": [ - "15473122033266747108195063", - "23445630546378572251681331", - "38339807972975888228831611" + "782941098669398306095393814", + "629776438942136440758933046", + "959174030428055849214158278" ], - "mAssetSupply": "77210162754586743652876890" + "mAssetSupply": "2371597810073820395592366638" }, { - "type": "mintMulti", - "inputQtys": [ - "636022222250481156096", - "723239269486657011712", - "168330550263552049152" + "type": "swap", + "inputIndex": 0, + "inputQty": "1937584098051715554607104", + "outputIndex": 1, + "expectedQty": "1932272831724950050525172", + "swapFee": "1162496640016136470664", + "reserves": [ + "784878682767450021650000918", + "627844166110411490708407874", + "959174030428055849214158278" ], - "expectedQty": "1531062480403566685299", + "mAssetSupply": "2371598972570460411728837302", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "39837522660708", + "outputIndex": 1, + "expectedQty": "39664425631520", + "swapFee": "23863253333", "reserves": [ - "15473758055488997589351159", - "23446353785648058908693043", - "38339976303526151780880763" + "784878682767450021650000918", + "627844166110371826282776354", + "959174030428095686736818986" ], - "mAssetSupply": "77211693817067147219562189" + "mAssetSupply": "2371598972570460435592090635", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "18946048849266528485376", - "expectedQty": "18820052293107285724855", - "swapFee": "11367629309559917091", + "type": "redeemMasset", + "inputQty": "10015857554241303347", + "expectedQtys": [ + "3313745200992513942", + "2650747992140108596", + "4049617361297972792" + ], + "redemptionFee": "3004757266272391", "reserves": [ - "15454938003195890303626304", - "23446353785648058908693043", - "38339976303526151780880763" + "784878679453704820657486976", + "627844163459623834142667758", + "959174026378478325438846194" ], - "mAssetSupply": "77192759135847190250993904" + "mAssetSupply": "2371598962557607638617059679" }, { "type": "mint", "inputIndex": 1, - "inputQty": "30323692951118", - "expectedQty": "30334710249965", + "inputQty": "30162296602776664209883136", + "expectedQty": "30220538909956489789716904", "reserves": [ - "15454938003195890303626304", - "23446353785678382601644161", - "38339976303526151780880763" + "784878679453704820657486976", + "658006460062400498352550894", + "959174026378478325438846194" ] }, { - "type": "mintMulti", - "inputQtys": [ - "419831408007213285376", - "134960055738047905792", - "235265400895403130880" - ], - "expectedQty": "791738299557358950272", + "type": "swap", + "inputIndex": 2, + "inputQty": "67937942881664740750262272", + "outputIndex": 0, + "expectedQty": "67744333034475164158093920", + "swapFee": "40693801841960591234260", "reserves": [ - "15455357834603897516911680", - "23446488745734120649549953", - "38340211568927047184011643" + "717134346419229656499393056", + "658006460062400498352550894", + "1027111969260143066189108466" ], - "mAssetSupply": "77193550874177082320194141" + "mAssetSupply": "2401860195269406088998010843", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "3293898736017470390272", - "expectedQty": "3280899551424230398116", + "inputIndex": 0, + "inputQty": "543850836630912649658368", + "expectedQty": "544315042295983411550272", "reserves": [ - "15455357834603897516911680", - "23446488745734120649549953", - "38343505467663064654401915" + "717678197255860569149051424", + "658006460062400498352550894", + "1027111969260143066189108466" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "6647944602537901948928", - "expectedQty": "6650355813214947873095", + "type": "redeem", + "inputIndex": 0, + "inputQty": "114553087861525544960", + "expectedQty": "114387008601034379891", + "swapFee": "68731852716915326", "reserves": [ - "15455357834603897516911680", - "23453136690336658551498881", - "38343505467663064654401915" - ] + "717678082868851968114671533", + "658006460062400498352550894", + "1027111969260143066189108466" + ], + "mAssetSupply": "2402404395827346063600931481" }, { "type": "mint", "inputIndex": 0, - "inputQty": "164269667994224870555648", - "expectedQty": "165259244373917416789365", + "inputQty": "18947765947403488722944", + "expectedQty": "18963889517822105558973", "reserves": [ - "15619627502598122387467328", - "23453136690336658551498881", - "38343505467663064654401915" + "717697030634799371603394477", + "658006460062400498352550894", + "1027111969260143066189108466" ] }, { - "type": "mintMulti", - "inputQtys": [ - "447965353265073720655872", - "330024557301449535520768", - "269328857609410615181312" + "type": "redeem", + "inputIndex": 1, + "inputQty": "37325690881705248817152", + "expectedQty": "37238642728479026135496", + "swapFee": "22395414529023149290", + "reserves": [ + "717697030634799371603394477", + "657969221419672019326415398", + "1027111969260143066189108466" ], - "expectedQty": "1049017134140800845048566", + "mAssetSupply": "2402386056421396709480822592" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "408704278426032342564864", + "expectedQty": "409313505489898206498220", + "swapFee": "245222567055619405538", "reserves": [ - "16067592855863196108123200", - "23783161247638108087019649", - "38612834325272475269583227" + "717697030634799371603394477", + "657969221419672019326415398", + "1026702655754653167982610246" ], - "mAssetSupply": "78417758508056439760303283" + "mAssetSupply": "2401977597365537732757663266" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "571482194906727", - "outputIndex": 0, - "expectedQty": "565755551848918", - "swapFee": "341585559788", + "inputQty": "3529235709624733357047808", + "expectedQty": "3534460716218352490557606", + "swapFee": "2117541425774840014228", "reserves": [ - "16067592855297440556274282", - "23783161247638108087019649", - "38612834325843957464489954" + "717697030634799371603394477", + "657969221419672019326415398", + "1023168195038434815492052640" ], - "mAssetSupply": "78417758508056781345863071", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2398450479197338774240629686" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "28775905381198807957504", - "outputIndex": 1, - "expectedQty": "28909401280693729993815", - "swapFee": "17363354143719277882", + "type": "redeem", + "inputIndex": 1, + "inputQty": "10194362824896155368816640", + "expectedQty": "10170155175216244404865184", + "swapFee": "6116617694937693221289", "reserves": [ - "16096368760678639364231786", - "23754251846357414357025834", - "38612834325843957464489954" + "717697030634799371603394477", + "647799066244455774921550214", + "1023168195038434815492052640" ], - "mAssetSupply": "78417775871410925065140953", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2388262232990137556565034335" }, { - "type": "mint", + "type": "redeem", + "inputIndex": 2, + "inputQty": "51802504791290346995712", + "expectedQty": "51880932586358943298100", + "swapFee": "31081502874774208197", + "reserves": [ + "717697030634799371603394477", + "647799066244455774921550214", + "1023116314105848456548754540" + ], + "mAssetSupply": "2388210461566849140992246820" + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "2943856350666139509981184", - "expectedQty": "2943850874821471550459746", + "inputQty": "11436747313277348872192", + "outputIndex": 2, + "expectedQty": "11475112524597779375072", + "swapFee": "6874660897117427883", "reserves": [ - "16096368760678639364231786", - "26698108197023553867007018", - "38612834325843957464489954" - ] + "717697030634799371603394477", + "647810502991769052270422406", + "1023104838993323858769379468" + ], + "mAssetSupply": "2388210468441510038109674703", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "169083120970854068912128", - "79562025098057336487936", - "209114473883358306762752" + "399349519549411459334144", + "259758015291531380916224", + "261613682312032689324032" ], - "expectedQty": "458053468793723799865839", - "swapFee": "274997079523948649108", + "expectedQty": "920961687901153928813415", "reserves": [ - "15927285639707785295319658", - "26618546171925496530519082", - "38403719851960599157727202" + "718096380154348783062728621", + "648070261007060583651338630", + "1023366452675635891458703500" ], - "mAssetSupply": "80903573277438672815734860" + "mAssetSupply": "2389131430129411192038488118" }, { - "type": "redeemBassets", - "inputQtys": [ - "57763524291000844288", - "28086530327230758912", - "505171184696791616" + "type": "redeemMasset", + "inputQty": "579532600493713615591833", + "expectedQtys": [ + "174136679661301883596446", + "157155510817010452064176", + "248163952737648192865896" ], - "expectedQty": "86706554821669713575", - "swapFee": "52055165992597386", + "redemptionFee": "173859780148114084677", "reserves": [ - "15927227876183494294475370", - "26618518085395169299760170", - "38403719346789414460935586" + "717922243474687481179132175", + "647913105496243573199274454", + "1023118288722898243265837604" ], - "mAssetSupply": "80903486570883851146021285" + "mAssetSupply": "2388552071388697626536980962" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "49831279014472243478528", - "expectedQty": "49809439053198515975430", + "inputIndex": 2, + "inputQty": "184787288535280943104", + "expectedQty": "184397501289297695094", "reserves": [ - "15927227876183494294475370", - "26668349364409641543238698", - "38403719346789414460935586" + "717922243474687481179132175", + "647913105496243573199274454", + "1023118473510186778546780708" ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "1183954388743364133519360", - "expectedQty": "1187302750057570172630470", - "swapFee": "710372633246018480111", + "inputQty": "1955496231535191835803648", + "outputIndex": 0, + "expectedQty": "1948623886373371375669802", + "swapFee": "1170816898474943387125", "reserves": [ - "15927227876183494294475370", - "26668349364409641543238698", - "37216416596731844288305116" + "715973619588314109803462373", + "647913105496243573199274454", + "1025073969741721970382584356" ], - "mAssetSupply": "79770051993826931546957466" + "mAssetSupply": "2388553426603097390778063181", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "8714314479054049037516", - "expectedQtys": [ - "1739415113351171411579", - "2912454715484276523878", - "4064410831336745151225" + "type": "redeemBassets", + "inputQtys": [ + "455637525390058439311360", + "1848664233530043674918912", + "195891053277132462489600" ], - "redemptionFee": "2614294343716214711", + "expectedQty": "2503558357794029822963209", + "swapFee": "1503036836778484984768", "reserves": [ - "15925488461070143123063791", - "26665436909694157266714820", - "37212352185900507543153891" + "715517982062924051364151013", + "646064441262713529524355542", + "1024878078688444837920094756" ], - "mAssetSupply": "79761340293642221214134661" + "mAssetSupply": "2386049868245303360955099972" }, { "type": "redeemBassets", "inputQtys": [ - "533131433223822908588032", - "309262907504257165950976", - "592629355518538146643968" - ], - "expectedQty": "1436153990926504903911813", - "swapFee": "862209720388135823841", - "reserves": [ - "15392357027846320214475759", - "26356174002189900100763844", - "36619722830381969396509923" + "1266140327504600281120768", + "701753260489624613027840", + "1773653582748091238318080" ], - "mAssetSupply": "78325186302715716310222848" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "78560200227852926976", - "expectedQty": "78018931946568390587", - "swapFee": "47136120136711756", + "expectedQty": "3740087420355144042120582", + "swapFee": "2245399692028303407316", "reserves": [ - "15392279008914373646085172", - "26356174002189900100763844", - "36619722830381969396509923" + "714251841735419451083030245", + "645362688002223904911327702", + "1023104425105696746681776676" ], - "mAssetSupply": "78325107789651608594007628" + "mAssetSupply": "2382309780824948216912979390" }, { - "type": "redeemMasset", - "inputQty": "1341479836418905", - "expectedQtys": [ - "263545598339306", - "451268694084823", - "627000508421351" + "type": "redeemBassets", + "inputQtys": [ + "250940687265850823016448", + "356709976853688449236992", + "256941685751713099677696" ], - "redemptionFee": "402443950925", + "expectedQty": "864908010572821447802172", + "swapFee": "519256360159788741926", "reserves": [ - "15392279008650828047745866", - "26356174001738631406679021", - "36619722829754968888088572" + "714000901048153600260013797", + "645005978025370216462090710", + "1022847483419945033582098980" ], - "mAssetSupply": "78325107788310531201539648" + "mAssetSupply": "2381444872814375395465177218" }, { "type": "redeemBassets", "inputQtys": [ - "411725376714578730156032", - "1678390833575294075404288", - "1654490259055355015200768" + "6185634898999967345541120", + "1848860779060142981251072", + "6004104815649867926863872" ], - "expectedQty": "3740654916878348831483213", - "swapFee": "2245740394363627475375", + "expectedQty": "14034281677372570986312743", + "swapFee": "8425624381052173896125", "reserves": [ - "14980553631936249317589834", - "24677783168163337331274733", - "34965232570699613872887804" + "707815266149153632914472677", + "643157117246310073480839638", + "1016843378604295165655235108" ], - "mAssetSupply": "74584452871432182370056435" + "mAssetSupply": "2367410591137002824478864475" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "24465884401239463034880", - "expectedQty": "24462036534709131904490", - "swapFee": "14679530640743677820", - "reserves": [ - "14980553631936249317589834", - "24653321131628628199370243", - "34965232570699613872887804" + "type": "mintMulti", + "inputQtys": [ + "623075197733609968500736", + "1964745193841130435772416", + "855461297800396117377024" ], - "mAssetSupply": "74560001666561583650699375" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "856022251751531494768640", - "expectedQty": "855549923264621555101355", + "expectedQty": "3445543757474829697926010", "reserves": [ - "14980553631936249317589834", - "25509343383380159694138883", - "34965232570699613872887804" - ] + "708438341346887242882973413", + "645121862440151203916612054", + "1017698839902095561772612132" + ], + "mAssetSupply": "2370856134894477654176790485" }, { - "type": "redeemMasset", - "inputQty": "44878267141783571660", - "expectedQtys": [ - "8911949634671527279", - "15175539504866865714", - "20800859520328405944" - ], - "redemptionFee": "13463480142535071", + "type": "redeem", + "inputIndex": 0, + "inputQty": "26937321599847628800000", + "expectedQty": "26898450440898606402369", + "swapFee": "16162392959908577280", "reserves": [ - "14980544719986614646062555", - "25509328207840654827273169", - "34965211769840093544481860" + "708411442896446344276571044", + "645121862440151203916612054", + "1017698839902095561772612132" ], - "mAssetSupply": "75415506725022543564764141" + "mAssetSupply": "2370829213735270766456567765" }, { "type": "redeemMasset", - "inputQty": "36751300973552028876", + "inputQty": "290867742900608359307673", "expectedQtys": [ - "7298092465339642739", - "12427414320998351546", - "17034050051999910726" + "86886149384196757772473", + "79123728269843546726112", + "124820024180189287093365" ], - "redemptionFee": "11025390292065608", + "redemptionFee": "87260322870182507792", "reserves": [ - "14980537421894149306419816", - "25509315780426333828921623", - "34965194735790041544571134" + "708324556747062147518798571", + "645042738711881360369885942", + "1017574019877915372485518767" ], - "mAssetSupply": "75415469984746960304800873" + "mAssetSupply": "2370538433252693028279767884" }, { - "type": "redeemMasset", - "inputQty": "1116351544305443563110", - "expectedQtys": [ - "221685670393790092855", - "377493117290025246909", - "517423535428341007415" - ], - "redemptionFee": "334905463291633068", + "type": "swap", + "inputIndex": 1, + "inputQty": "25783880577184513916928", + "outputIndex": 0, + "expectedQty": "25793095565608153439697", + "swapFee": "15498227319926879822", "reserves": [ - "14980315736223755516326961", - "25508938287309043803674714", - "34964677312254613203563719" + "708298763651496539365358874", + "645068522592458544883802870", + "1017574019877915372485518767" ], - "mAssetSupply": "75414353968108118152870831" + "mAssetSupply": "2370538448750920348206647706", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "36480377723118652751872", - "expectedQty": "36235747759874184397621", - "swapFee": "21888226633871191651", + "type": "swap", + "inputIndex": 2, + "inputQty": "92782071731448928", + "outputIndex": 0, + "expectedQty": "92451083615073568", + "swapFee": "55550838389894", "reserves": [ - "14944079988463881331929340", - "25508938287309043803674714", - "34964677312254613203563719" + "708298763559045455750285306", + "645068522592458544883802870", + "1017574019970697444216967695" ], - "mAssetSupply": "75377895478611633371310610" + "mAssetSupply": "2370538448750975899045037600", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "195038710466312416", - "347626240608116608", - "433642664540953856" - ], - "expectedQty": "975852845833897836", - "swapFee": "585863225435600", - "reserves": [ - "14944079793425170865616924", - "25508937939682803195558106", - "34964676878611948662609863" + "5797759972062312857075712", + "8479880231917392461037568", + "6939372160176501341290496" ], - "mAssetSupply": "75377894502758787537412774" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "67591102279957776", - "expectedQty": "67773138113746858", - "swapFee": "40554661367974", + "expectedQty": "21222526000460558180358736", + "swapFee": "12741160296454207432674", "reserves": [ - "14944079793425170865616924", - "25508937939682803195558106", - "34964676810838810548863005" + "702501003586983142893209594", + "636588642360541152422765302", + "1010634647810520942875677199" ], - "mAssetSupply": "75377894435208239918822972" + "mAssetSupply": "2349315922750515340864678864" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1151362570743137542602752", - "792111988971661969850368", - "1151511490991579805515776" - ], - "expectedQty": "3097567282104336998552620", - "reserves": [ - "16095442364168308408219676", - "26301049928654465165408474", - "36116188301830390354378781" + "16445212338756916346880", + "4685625522954711859200", + "7331362729601019150336" ], - "mAssetSupply": "78475461717312576917375592" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "874091284597681553408", - "expectedQty": "868729071117781476927", - "swapFee": "524454770758608932", + "expectedQty": "28468836144668935751896", + "swapFee": "17091556620773825746", "reserves": [ - "16094573635097190626742749", - "26301049928654465165408474", - "36116188301830390354378781" + "702484558374644385976862714", + "636583956735018197710906102", + "1010627316447791341856526863" ], - "mAssetSupply": "78474588150482749994431116" + "mAssetSupply": "2349287453914370671928926968" }, { "type": "redeemBassets", "inputQtys": [ - "18228918879197809606656", - "24814850127867253096448", - "16062386272562875203584" + "621672693937825382400", + "564046228232535408640", + "609364255295558385664" ], - "expectedQty": "59144452214348303128032", - "swapFee": "35507976114277548405", + "expectedQty": "1795335246881487474569", + "swapFee": "1077847856842998283", "reserves": [ - "16076344716217992817136093", - "26276235078526597912312026", - "36100125915557827479175197" + "702483936701950448151480314", + "636583392688789965175497462", + "1010626707083536046298141199" ], - "mAssetSupply": "78415443698268401691303084" + "mAssetSupply": "2349285658579123790441452399" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "55819909445775080", - "outputIndex": 0, - "expectedQty": "55303110939105182", - "swapFee": "33386914591660", + "inputIndex": 0, + "inputQty": "61478613774670162296832", + "outputIndex": 2, + "expectedQty": "61625344430576523253249", + "swapFee": "36917948703721082068", "reserves": [ - "16076344660914881878030911", - "26276235078526597912312026", - "36100125971377736924950277" + "702545415315725118313777146", + "636583392688789965175497462", + "1010565081739105469774887950" ], - "mAssetSupply": "78415443698301788605894744", + "mAssetSupply": "2349285695497072494162534467", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "514181808472001177714688", - "1158492349364421691179008", - "1066814909064586459086848" - ], - "expectedQty": "2738422973319964290297314", - "swapFee": "1644040208116848683388", + "type": "redeem", + "inputIndex": 2, + "inputQty": "30361605455708887543971840", + "expectedQty": "30406253279474813700142990", + "swapFee": "18216963273425332526383", "reserves": [ - "15562162852442880700316223", - "25117742729162176221133018", - "35033311062313150465863429" + "702545415315725118313777146", + "636583392688789965175497462", + "980158828459630656074744960" ], - "mAssetSupply": "75677020724981824315597430" + "mAssetSupply": "2318942307004637031951089010" }, { "type": "swap", "inputIndex": 1, - "inputQty": "909509271360840769994752", - "outputIndex": 2, - "expectedQty": "911218664748129625044948", - "swapFee": "545407164567966979388", + "inputQty": "36125915358994271773392896", + "outputIndex": 0, + "expectedQty": "36120387424474900970653250", + "swapFee": "21708356388340992144402", "reserves": [ - "15562162852442880700316223", - "26027252000523016991127770", - "34122092397565020840818481" + "666425027891250217343123896", + "672709308047784236948890358", + "980158828459630656074744960" ], - "mAssetSupply": "75677566132146392282576818", + "mAssetSupply": "2318964015361025372943233412", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "336838875872432113057792", - "expectedQty": "338645833431701179849192", - "reserves": [ - "15899001728315312813374015", - "26027252000523016991127770", - "34122092397565020840818481" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1660637991320797577216", - "662870195213542752256", - "12363545998649506922496" - ], - "expectedQty": "14659868518911374055947", - "swapFee": "8801201832446292208", + "inputQty": "1819312985815500262998016", + "expectedQty": "1815938628983185742236647", + "swapFee": "1091587791489300157798", "reserves": [ - "15897341090323992015796799", - "26026589130327803448375514", - "34109728851566371333895985" + "664609089262267031600887249", + "672709308047784236948890358", + "980158828459630656074744960" ], - "mAssetSupply": "76001552097059182088370063" + "mAssetSupply": "2317145793963001361980393194" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "4174782918673192502427648", - "expectedQty": "4161362130884374929785510", + "inputIndex": 0, + "inputQty": "407353968883391157764096", + "expectedQty": "407869051722393626902208", "reserves": [ - "15897341090323992015796799", - "26026589130327803448375514", - "38284511770239563836323633" + "665016443231150422758651345", + "672709308047784236948890358", + "980158828459630656074744960" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "4616976169611338186752", - "21596835362701391691776", - "363652755940647305216" - ], - "expectedQty": "26598429578325355258225", - "swapFee": "15968638930353425210", + "type": "swap", + "inputIndex": 0, + "inputQty": "670482877219478783918080", + "outputIndex": 2, + "expectedQty": "672253021303031623404388", + "swapFee": "402796130127819039123", "reserves": [ - "15892724114154380677610047", - "26004992294965102056683738", - "38284148117483623189018417" + "665686926108369901542569425", + "672709308047784236948890358", + "979486575438327624451340572" ], - "mAssetSupply": "80136315798365231662897348" + "mAssetSupply": "2317554065810853883426334525", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2535618732119893737472", - "1079937200254812684288", - "4691666187420388294656" + "type": "swap", + "inputIndex": 1, + "inputQty": "12385582544345091801088", + "outputIndex": 2, + "expectedQty": "12416876996880415390810", + "swapFee": "7439876361508396156", + "reserves": [ + "665686926108369901542569425", + "672721693630328582040691446", + "979474158561330744035949762" ], - "expectedQty": "8305902526807065548556", - "swapFee": "4986533436145926885", + "mAssetSupply": "2317554073250730244934730681", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "7188957164752633082150912", + "expectedQty": "7175383853660494296708478", + "swapFee": "4313374298851579849290", "reserves": [ - "15890188495422260783872575", - "26003912357764847243999450", - "38279456451296202800723761" + "658511542254709407245860947", + "672721693630328582040691446", + "979474158561330744035949762" ], - "mAssetSupply": "80128009895838424597348792" + "mAssetSupply": "2310369429460276463432429059" }, { - "type": "redeemBassets", - "inputQtys": [ - "10359980449907111936", - "17587831841950728192", - "12266512501553817600" + "type": "redeemMasset", + "inputQty": "166434491101752378943078", + "expectedQtys": [ + "47423651089151742895070", + "48447015476135764626783", + "70538233221258084015784" ], - "expectedQty": "40229683551101471028", - "swapFee": "24152301511567823", + "redemptionFee": "49930347330525713682", "reserves": [ - "15890178135441810876760639", - "26003894769933005293271258", - "38279444184783701246906161" + "658464118603620255502965877", + "672673246614852446276064663", + "979403620328109485951933978" ], - "mAssetSupply": "80127969666154873495877764" + "mAssetSupply": "2310203044899522041579199663" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "144846288938061627392", - "expectedQty": "145744441878516950146", + "inputIndex": 2, + "inputQty": "40656801493168604508585984", + "expectedQty": "40570983545680924678549285", "reserves": [ - "15890322981730748938388031", - "26003894769933005293271258", - "38279444184783701246906161" + "658464118603620255502965877", + "672673246614852446276064663", + "1020060421821278090460519962" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "752041219675226112000", - "1072365728327828635648", - "114447014151095566336" + "2226722513048576720896", + "28274688362661652987904", + "19955193353654409101312" ], - "expectedQty": "1942794749365197367783", + "expectedQty": "50451633243606009491018", + "swapFee": "30289153438226541619", "reserves": [ - "15891075022950424164500031", - "26004967135661333121906906", - "38279558631797852342472497" + "658461891881107206926244981", + "672644971926489784623076759", + "1020040466627924436051418650" ], - "mAssetSupply": "80130058205346117210195693" + "mAssetSupply": "2350723576811959360248257930" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "24066182851162724630528", - "expectedQty": "24215130562724633874349", + "inputIndex": 2, + "inputQty": "7843845183181175808", + "expectedQty": "7826452319028700120", "reserves": [ - "15915141205801586889130559", - "26004967135661333121906906", - "38279558631797852342472497" + "658461891881107206926244981", + "672644971926489784623076759", + "1020040474471769619232594458" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "14604983991727948958793728", - "outputIndex": 0, - "hardLimitError": true + "inputQty": "8643385758572141904658432", + "expectedQty": "8653986943911052929772735", + "reserves": [ + "658461891881107206926244981", + "681288357685061926527735191", + "1020040474471769619232594458" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1907667856970408481783808", - "outputIndex": 0, - "expectedQty": "1891154367425949636004274", - "swapFee": "1143996506384816859394", + "type": "redeem", + "inputIndex": 0, + "inputQty": "151801633791730125897728", + "expectedQty": "151478199316597039710792", + "swapFee": "91080980275038075538", "reserves": [ - "14023986838375637253126285", - "27912634992631741603690714", - "38279558631797852342472497" + "658310413681790609886534189", + "681288357685061926527735191", + "1020040474471769619232594458" ], - "mAssetSupply": "80155417332415226660929436", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2359225861029511277118908595" }, { - "type": "redeemBassets", - "inputQtys": [ - "4152120616105507553280", - "3281687706366104829952", - "5023410616502730096640" + "type": "redeemMasset", + "inputQty": "143389954603098492108", + "expectedQtys": [ + "39999045178870539444", + "41395188702051493953", + "61977821062382249955" ], - "expectedQty": "12469920887986420057302", - "swapFee": "7486444399431510940", + "redemptionFee": "43016986380929547", "reserves": [ - "14019834717759531745573005", - "27909353304925375498860762", - "38274535221181349612375857" + "658310373682745431015994745", + "681288316289873224476241238", + "1020040412493948556850344503" ], - "mAssetSupply": "80142947411527240240872134" + "mAssetSupply": "2359225717682573660401346034" }, { "type": "redeemBassets", "inputQtys": [ - "27398715225463607787520", - "19444200689206915235840", - "132670979344493527040" + "119101515161576247656448", + "73442245630007953063936", + "151797858067949369163776" ], - "expectedQty": "47191853232775294311140", - "swapFee": "28332111206389009992", + "expectedQty": "344279544156489731009378", + "swapFee": "206691741538817128882", "reserves": [ - "13992436002534068137785485", - "27889909104236168583624922", - "38274402550202005118848817" + "658191272167583854768338297", + "681214874044243216523177302", + "1019888614635880607481180727" ], - "mAssetSupply": "80095755558294464946560994" + "mAssetSupply": "2358881438138417170670336656" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "2980226970924472598528", - "outputIndex": 1, - "expectedQty": "3008194918823848127754", - "swapFee": "1803832941632885790", + "inputIndex": 1, + "inputQty": "1996693331471985541120", + "outputIndex": 0, + "expectedQty": "1994788961244350787171", + "swapFee": "1199430404811431806", "reserves": [ - "13995416229504992610384013", - "27886900909317344735497168", - "38274402550202005118848817" + "658189277378622610417551126", + "681216870737574688508718422", + "1019888614635880607481180727" ], - "mAssetSupply": "80095757362127406579446784", + "mAssetSupply": "2358881439337847575481768462", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "140767343480510370283520", - "1069249912251238179667968", - "563947549133241923403776" + "type": "redeemMasset", + "inputQty": "357730473649020390604", + "expectedQtys": [ + "99786162082334485290", + "103277308538615410506", + "154622346646707890585" ], - "expectedQty": "1771770184730915231345166", - "swapFee": "1063700331037171441672", + "redemptionFee": "107319142094706117", "reserves": [ - "13854648886024482240100493", - "26817650997066106555829200", - "37710455001068763195445041" + "658189177592460528083065836", + "681216767460266149893307916", + "1019888460013533960773290142" ], - "mAssetSupply": "78323987177396491348101618" + "mAssetSupply": "2358881081714693068556083975" }, { "type": "mintMulti", "inputQtys": [ - "121510822596950392832", - "5727899060579041542144", - "2411311450488439308288" + "4974598077916132352", + "2818683514103970304", + "1689631763793536000" + ], + "expectedQty": "9490186796263022603", + "reserves": [ + "658189182567058605999198188", + "681216770278949663997278220", + "1019888461703165724566826142" ], - "expectedQty": "8246363420281387163332", + "mAssetSupply": "2358881091204879864819106578" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "30023931263614322477105152", + "outputIndex": 2, + "expectedQty": "30106980619972224517395939", + "swapFee": "18039089213591980205937", "reserves": [ - "13854770396847079190493325", - "26823378896126685597371344", - "37712866312519251634753329" + "688213113830672928476303340", + "681216770278949663997278220", + "989781481083193500049430203" ], - "mAssetSupply": "78332233540816772735264950" + "mAssetSupply": "2358899130294093456799312515", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "212633759436031885312", - "expectedQty": "214444563189225140534", + "inputQty": "8896010956701416", + "expectedQty": "8905815774172858", "reserves": [ - "13854983030606515222378637", - "26823378896126685597371344", - "37712866312519251634753329" + "688213113839568939433004756", + "681216770278949663997278220", + "989781481083193500049430203" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "136744294891115056", - "87554431404076576", - "69399747955277176" + "5827614544705672445952", + "1575464852301910900736", + "1799903184063700140032" ], - "expectedQty": "294498728963169346", + "expectedQty": "9207863747849685398900", + "swapFee": "5528035069751662236", "reserves": [ - "13854983167350810113493693", - "26823378983681117001447920", - "37712866381918999590030505" + "688207286225024233760558804", + "681215194814097362086377484", + "989779681180009436349290171" ], - "mAssetSupply": "78332448279878690923574830" + "mAssetSupply": "2358889922439251422888086473" }, { "type": "redeemMasset", - "inputQty": "7676490676376709785190", + "inputQty": "72578136578289342873", "expectedQtys": [ - "1357365231722306030900", - "2627871978621918808644", - "3694709188534787238424" + "21168354359433013371", + "20953286789439788164", + "30444326074941263707" ], - "redemptionFee": "2302947202913012935", + "redemptionFee": "21773440973486802", + "reserves": [ + "688207265056669874327545433", + "681215173860810572646589320", + "989779650735683361408026464" + ], + "mAssetSupply": "2358889849882888285572230402" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "9686287625619282853888", + "expectedQty": "9699003381550081423157", + "swapFee": "5811772575371569712", "reserves": [ - "13853625802119087807462793", - "26820751111702495082639276", - "37709171672730464802792081" + "688207265056669874327545433", + "681215173860810572646589320", + "989769951732301811326603307" ], - "mAssetSupply": "78324774092149517126802575" + "mAssetSupply": "2358880169407035241660946226" }, { "type": "redeemMasset", - "inputQty": "13679851450214789205196", + "inputQty": "665189314413089989328896", "expectedQtys": [ - "2418885857673163619642", - "4682985991028087963137", - "6584137854350362930378" + "194011882552114124338147", + "192040748498809670896873", + "279025144573686947241333" ], - "redemptionFee": "4103955435064436761", + "redemptionFee": "199556794323926996798", "reserves": [ - "13851206916261414643843151", - "26816068125711466994676139", - "37702587534876114439861703" + "688013253174117760203207286", + "681023133112311762975692447", + "989490926587728124379361974" ], - "mAssetSupply": "78311098344654737402034140" + "mAssetSupply": "2358215179649416475598614128" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "721900795364012851200", - "expectedQty": "722204244723462208253", - "swapFee": "433140477218407710", + "type": "mint", + "inputIndex": 0, + "inputQty": "7723142409397501379477504", + "expectedQty": "7731362437044293358295239", "reserves": [ - "13851206916261414643843151", - "26815345921466743532467886", - "37702587534876114439861703" - ], - "mAssetSupply": "78310376876999850607590650" + "695736395583515261582684790", + "681023133112311762975692447", + "989490926587728124379361974" + ] }, { "type": "mintMulti", "inputQtys": [ - "10176324951762999967744", - "13389471160571506196480", - "9726307030377449914368" + "420970557537098288594944", + "10535719835505487054372864", + "7541037314136500837810176" ], - "expectedQty": "33326549585710011849178", + "expectedQty": "18496645554570792415032422", "reserves": [ - "13861383241213177643810895", - "26828735392627315038664366", - "37712313841906491889776071" + "696157366141052359871279734", + "691558852947817250030065311", + "997031963901864625217172150" ], - "mAssetSupply": "78343703426585560619439828" + "mAssetSupply": "2384443187641031561371941789" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "1632702875742463166775296", - "expectedQty": "1626002875451181586124056", - "reserves": [ - "13861383241213177643810895", - "26828735392627315038664366", - "39345016717648955056551367" - ] - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "757096285866355968", - "outputIndex": 1, - "expectedQty": "764148639239657990", - "swapFee": "458362004904290", + "inputQty": "4423379888183386624", + "expectedQty": "4429049281504580172", + "swapFee": "2654027932910031", "reserves": [ - "13861383998309463510166863", - "26828734628478675799006376", - "39345016717648955056551367" + "696157366141052359871279734", + "691558852947817250030065311", + "997031959472815343712591978" ], - "mAssetSupply": "79969706302495104210468174", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2384443183220305701121465196" }, { "type": "redeemBassets", "inputQtys": [ - "34601570592585525755904", - "56299244994594460401664", - "27678122598875399192576" + "5418904222024834048", + "7090753194012965888", + "8701194595352111104" ], - "expectedQty": "118724992658726176911915", - "swapFee": "71277762252587258502", + "expectedQty": "21208697434510309542", + "swapFee": "12732858175611552", "reserves": [ - "13826782427716877984410959", - "26772435383484081338604712", - "39317338595050079657358791" + "696157360722148137846445686", + "691558845857064056017099423", + "997031950771620748360480874" ], - "mAssetSupply": "79850981309836378033556259" + "mAssetSupply": "2384443162011608266611155654" }, { "type": "mintMulti", "inputQtys": [ - "168575967352904482816", - "356329215755433148416", - "558543013667714629632" + "5779054979677675910594560", + "10417485395110265578586112", + "8443276351030518244966400" ], - "expectedQty": "1082285276553026891036", + "expectedQty": "24642308335490433669252972", "reserves": [ - "13826951003684230888893775", - "26772791712699836771753128", - "39317897138063747371988423" + "701936415701825813757040246", + "701976331252174321595685535", + "1005475227122651266605447274" ], - "mAssetSupply": "79852063595112931060447295" + "mAssetSupply": "2409085470347098700280408626" }, { - "type": "redeemBassets", - "inputQtys": [ - "14603434384820755496960", - "6216258339041138704384", - "822945456800949862400" + "type": "mint", + "inputIndex": 0, + "inputQty": "500246108418810207797248", + "expectedQty": "500804651511462636602795", + "reserves": [ + "702436661810244623964837494", + "701976331252174321595685535", + "1005475227122651266605447274" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1805087906779204524441", + "expectedQtys": [ + "526056920512507479364", + "525712177578429696153", + "753003409970993807517" ], - "expectedQty": "21766155480874403215713", - "swapFee": "13067533808809927886", + "redemptionFee": "541526372033761357", "reserves": [ - "13812347569299410133396815", - "26766575454360795633048744", - "39317074192606946422126023" + "702436135753324111457358130", + "701975805539996743165989382", + "1005474474119241295611639757" ], - "mAssetSupply": "79830297439632056657231582" + "mAssetSupply": "2409584470452229755746248337" }, { - "type": "mintMulti", - "inputQtys": [ - "5363624418442041360384", - "15385680132992841809920", - "102537681319996076064768" + "type": "redeem", + "inputIndex": 2, + "inputQty": "835807965201000064", + "expectedQty": "836863870520141689", + "swapFee": "501484779120600", + "reserves": [ + "702436135753324111457358130", + "701975805539996743165989382", + "1005474473282377425091498068" ], - "expectedQty": "122884287525915132987154", + "mAssetSupply": "2409584469616923275324368873" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "8323111905413841540874240", + "outputIndex": 1, + "expectedQty": "8292575536462176664549251", + "swapFee": "4984466982342318657572", "reserves": [ - "13817711193717852174757199", - "26781961134493788474858664", - "39419611873926942498190791" + "702436135753324111457358130", + "693683230003534566501440131", + "1013797585187791266632372308" ], - "mAssetSupply": "79953181727157971790218736" + "mAssetSupply": "2409589454083905617643026445", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "5276609037310782078976", - "6189982013424091004928", - "5892202128267954618368" + "type": "redeem", + "inputIndex": 0, + "inputQty": "204260405098165", + "expectedQty": "203911892978827", + "swapFee": "122556243058", + "reserves": [ + "702436135753120199564379303", + "693683230003534566501440131", + "1013797585187791266632372308" ], - "expectedQty": "17376260625436036056183", + "mAssetSupply": "2409589454083701479794171338" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "36782934634418835456", + "outputIndex": 1, + "expectedQty": "36756275166301585094", + "swapFee": "22094216398522928", "reserves": [ - "13822987802755162956836175", - "26788151116507212565863592", - "39425504076055210452809159" + "702436172536054833983214759", + "693683193247259400199855037", + "1013797585187791266632372308" ], - "mAssetSupply": "79970557987783407826274919" + "mAssetSupply": "2409589454105795696192694266", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "346356729675512479744", - "433615342777216335872", - "221415855429773983744" + "9923209229569355677696", + "32323743431195740864512", + "11631618249635712204800" ], - "expectedQty": "1003217810069362596219", - "swapFee": "602292061278384588", + "expectedQty": "53906920753541349222444", "reserves": [ - "13822641446025487444356431", - "26787717501164435349527720", - "39425282660199780678825415" + "702446095745284403338892455", + "693715516990690595940719549", + "1013809216806040902344577108" ], - "mAssetSupply": "79969554769973338463678700" + "mAssetSupply": "2409643361026549237541916710" }, { - "type": "redeemMasset", - "inputQty": "8846747329650217779", - "expectedQtys": [ - "1528690900281834363", - "2962540853226368457", - "4360170310358165879" + "type": "mint", + "inputIndex": 0, + "inputQty": "5438665459197552164339712", + "expectedQty": "5444549975133694865059124", + "reserves": [ + "707884761204481955503232167", + "693715516990690595940719549", + "1013809216806040902344577108" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "8837094294099794", + "16333107589631544", + "564768367251317" ], - "redemptionFee": "2654024198895065", + "expectedQty": "25763750257432172", "reserves": [ - "13822639917334587162522068", - "26787714538623582123159263", - "39425278300029470320659536" + "707884761213319049797331961", + "693715517007023703530351093", + "1013809216806605670711828425" ], - "mAssetSupply": "79969545925880033012355986" + "mAssetSupply": "2415087911027446682664408006" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "177082456950924", + "inputIndex": 2, + "inputQty": "53704794824538689896448", "outputIndex": 0, - "expectedQty": "175226636943533", - "swapFee": "106157117887", + "expectedQty": "53513275150676133578692", + "swapFee": "32161179166136554665", "reserves": [ - "13822639917159360525578535", - "26787714538800664580110187", - "39425278300029470320659536" + "707831247938168373663753269", + "693715517007023703530351093", + "1013862921601430209401724873" ], - "mAssetSupply": "79969545925880139169473873", + "mAssetSupply": "2415087943188625848800962671", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "218880046483005531750", - "expectedQtys": [ - "37821803069492974710", - "73297117630227847729", - "107876289967778241609" - ], - "redemptionFee": "65664013944901659", - "reserves": [ - "13822602095356291032603825", - "26787641241683034352262458", - "39425170423739502542417927" - ], - "mAssetSupply": "79969327111497670108843782" - }, { "type": "redeemBassets", "inputQtys": [ - "424032855123484194373632", - "274388415971125079572480", - "448851324926187809013760" + "1026363989884941500416", + "1692990840127427969024", + "4105466335646261968896" ], - "expectedQty": "1149030500186735680434710", - "swapFee": "689832199431700428517", + "expectedQty": "6820171447102984274715", + "swapFee": "4094559604024205087", "reserves": [ - "13398569240232806838230193", - "26513252825711909272689978", - "38976319098813314733404167" + "707830221574178488722252853", + "693713824016183576102382069", + "1013858816135094563139755977" ], - "mAssetSupply": "78820296611310934428409072" + "mAssetSupply": "2415081123017178745816687956" }, { "type": "mint", "inputIndex": 1, - "inputQty": "120168048274789527191552", - "expectedQty": "120052154460194486223059", + "inputQty": "2561058555518337024", + "expectedQty": "2564277627461174574", "reserves": [ - "13398569240232806838230193", - "26633420873986698799881530", - "38976319098813314733404167" + "707830221574178488722252853", + "693713826577242131620719093", + "1013858816135094563139755977" ] }, { - "type": "redeemMasset", - "inputQty": "14196424473683870246502", - "expectedQtys": [ - "2408840544975632206333", - "4788247379430250376668", - "7007295783284563646303" - ], - "redemptionFee": "4258927342105161073", + "type": "mint", + "inputIndex": 2, + "inputQty": "1729808182458561331200", + "expectedQty": "1726495524307436291059", "reserves": [ - "13396160399687831206023860", - "26628632626607268549504862", - "38969311803030030169757864" - ], - "mAssetSupply": "78926156600224787149546702" + "707830221574178488722252853", + "693713826577242131620719093", + "1013860545943277021701087177" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "392534979531862733488128", - "expectedQty": "394001727687782771359396", - "swapFee": "235520987719117640092", + "type": "mint", + "inputIndex": 1, + "inputQty": "20877219344750320025600", + "expectedQty": "20903458505936649740593", "reserves": [ - "13396160399687831206023860", - "26628632626607268549504862", - "38575310075342247398398468" - ], - "mAssetSupply": "78533857141680643533698666" + "707830221574178488722252853", + "693734703796586881940744693", + "1013860545943277021701087177" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1416623595377686896181248", - "expectedQty": "1416939098195801602988335", - "swapFee": "849974157226612137708", + "inputIndex": 0, + "inputQty": "31332834173448317738942464", + "expectedQty": "31276167756431517760340352", + "swapFee": "18799700504068990643365", "reserves": [ - "13396160399687831206023860", - "25211693528411466946516527", - "38575310075342247398398468" + "676554053817746970961912501", + "693734703796586881940744693", + "1013860545943277021701087177" ], - "mAssetSupply": "77118083520460183249655126" + "mAssetSupply": "2383789721062542368615595083" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "637587621297044193280", - "582725431997319675904", - "70152812144132661248" + "473510806472350440095744", + "540830804860165999820800", + "195324460624431921758208" ], - "expectedQty": "1295552569831860026776", + "expectedQty": "1210522324888800021597808", + "swapFee": "726749444600040036980", "reserves": [ - "13396797987309128250217140", - "25212276253843464266192431", - "38575380228154391531059716" + "676080543011274620521816757", + "693193872991726715940923893", + "1013665221482652589779328969" ], - "mAssetSupply": "77119379073030015109681902" + "mAssetSupply": "2382579198737653568593997275" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "25710274415484987244544", - "expectedQty": "25710784780403230296706", - "swapFee": "15426164649290992346", + "inputQty": "245024349606116687872", + "expectedQty": "245298536226902706783", "reserves": [ - "13396797987309128250217140", - "25186565469063061035895725", - "38575380228154391531059716" - ], - "mAssetSupply": "77093684224779179413429704" + "676080543011274620521816757", + "693194118016076322057611765", + "1013665221482652589779328969" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "10643922825129914007552", - "outputIndex": 1, - "expectedQty": "10740045790941013466364", - "swapFee": "6443951629514494239", + "inputIndex": 2, + "inputQty": "18325097178166168224006144", + "outputIndex": 0, + "expectedQty": "18247800102395286613354209", + "swapFee": "10972158478871671348022", "reserves": [ - "13407441910134258164224692", - "25175825423272120022429361", - "38575380228154391531059716" + "657832742908879333908462548", + "693194118016076322057611765", + "1031990318660818758003335113" ], - "mAssetSupply": "77093690668730808927923943", + "mAssetSupply": "2382590416194668667168052080", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1786593523014487320297472", - "expectedQty": "1786127505521867922517589", - "swapFee": "1071956113808692392178", + "type": "mint", + "inputIndex": 2, + "inputQty": "409571349012802502656", + "expectedQty": "408668988278431175464", "reserves": [ - "13407441910134258164224692", - "23389697917750252099911772", - "38575380228154391531059716" - ], - "mAssetSupply": "75308169101830130300018649" + "657832742908879333908462548", + "693194118016076322057611765", + "1031990728232167770805837769" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "125135814894691398189056", - "outputIndex": 0, - "expectedQty": "123411637451185736942292", - "swapFee": "74734763923774214173", + "type": "mint", + "inputIndex": 0, + "inputQty": "35891944819542689490927616", + "expectedQty": "35943938038785454895843485", "reserves": [ - "13284030272683072427282400", - "23389697917750252099911772", - "38700516043049082929248772" - ], - "mAssetSupply": "75308243836594054074232822", - "hardLimitError": false, - "insufficientLiquidityError": false + "693724687728422023399390164", + "693194118016076322057611765", + "1031990728232167770805837769" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "4615469855981606273024", - "outputIndex": 2, - "expectedQty": "4674988218121933292326", - "swapFee": "2793567513490608947", + "type": "redeemBassets", + "inputQtys": [ + "849321461268224802816", + "206987245877930459136", + "584917632298453499904" + ], + "expectedQty": "1641352954502248906967", + "swapFee": "985403014510055377", "reserves": [ - "13288645742539054033555424", - "23389697917750252099911772", - "38695841054830960995956446" + "693723838406960755174587348", + "693193911028830444127152629", + "1031990143314535472352337865" ], - "mAssetSupply": "75308246630161567564841769", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2418533121549487898246164062" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "575667873461855284363264", - "outputIndex": 2, - "expectedQty": "582707588099366112219807", - "swapFee": "348287394939389708676", + "inputQty": "2362088779760168364670976", + "expectedQty": "2365036792991940600623925", + "reserves": [ + "696085927186720923539258324", + "693193911028830444127152629", + "1031990143314535472352337865" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1219121345432670280089", + "expectedQtys": [ + "350431357552786699989", + "348975426454782613739", + "519536012406409884361" + ], + "redemptionFee": "365736403629801084", "reserves": [ - "13864313616000909317918688", - "23389697917750252099911772", - "38113133466731594883736639" + "696085576755363370752558335", + "693193562053403989344538890", + "1031989623778523065942453504" ], - "mAssetSupply": "75308594917556506954550445", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2420896939586870809806308982" }, { "type": "mintMulti", "inputQtys": [ - "1544378333301278769152", - "1164766072328781037568", - "629548875931059617792" + "8290292882889508745379840", + "4378629886862806115942400", + "4698324957773083495628800" + ], + "expectedQty": "17373338729721685644835449", + "reserves": [ + "704375869638252879497938175", + "697572191940266795460481290", + "1036687948736296149438082304" + ], + "mAssetSupply": "2438270278316592495451144431" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "43954817942939315994624", + "171576987828180303740928", + "104364609435410909626368" ], - "expectedQty": "3347960680349995755689", + "expectedQty": "319958187320917933748016", + "swapFee": "192090166492446227985", "reserves": [ - "13865857994334210596687840", - "23390862683822580880949340", - "38113763015607525943354431" + "704331914820309940181943551", + "697400614952438615156740362", + "1036583584126860738528455936" ], - "mAssetSupply": "75311942878236856950306134" + "mAssetSupply": "2437950320129271577517396415" }, { "type": "mintMulti", "inputQtys": [ - "1880944401701562998587392", - "4492579272323187538395136", - "6331994741834221099155456" + "188901591003446665805824", + "427340584442793033728000", + "424665165218086230425600" ], - "expectedQty": "12692302877169245365946857", + "expectedQty": "1040821375231187754302183", "reserves": [ - "15746802396035773595275232", - "27883441956145768419344476", - "44445757757441747042509887" + "704520816411313386847749375", + "697827955536881408190468362", + "1037008249292078824758881536" ], - "mAssetSupply": "88004245755406102316252991" + "mAssetSupply": "2438991141504502765271698598" }, { "type": "redeemBassets", "inputQtys": [ - "824330654933127659520", - "1469489213981120528384", - "616059725890960883712" + "399101862600359081410560", + "3516531884842757688131584", + "745006943797512023048192" + ], + "expectedQty": "4664181554550683317771510", + "swapFee": "2800189046158104853575", + "reserves": [ + "704121714548713027766338815", + "694311423652038650502336778", + "1036263242348281312735833344" ], - "expectedQty": "2913697219370811430565", - "swapFee": "1749267892357901599", + "mAssetSupply": "2434326959949952081953927088" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "28266767649617643307008", + "outputIndex": 0, + "expectedQty": "28253798231074738801783", + "swapFee": "16982430091565987328", "reserves": [ - "15745978065380840467615712", - "27881972466931787298816092", - "44445141697715856081626175" + "704093460750481953027537032", + "694339690419688268145643786", + "1036263242348281312735833344" ], - "mAssetSupply": "88001332058186731504822426" + "mAssetSupply": "2434326976932382173519914416", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "2409702785798152650752", - "expectedQty": "2399029319446978058990", + "inputQty": "3420423276491414089760768", + "expectedQty": "3413415315155753658621268", "reserves": [ - "15745978065380840467615712", - "27881972466931787298816092", - "44447551400501654234276927" + "704093460750481953027537032", + "694339690419688268145643786", + "1039683665624772726825594112" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7805491819866075136", - "5214641166459973632", - "691999395062406784" + "97397674412087980326912", + "114312891037104742596608", + "107128235020500229685248" ], - "expectedQty": "13773247421116532948", + "expectedQty": "318886551747105849018095", + "swapFee": "191446799127740153502", "reserves": [ - "15745985870872660333690848", - "27881977681572953758789724", - "44447552092501049296683711" + "703996063076069865047210120", + "694225377528651163403047178", + "1039576537389752226595908864" ], - "mAssetSupply": "88003744860753599599414364" + "mAssetSupply": "2437421505695790821329517589" }, { - "type": "mintMulti", - "inputQtys": [ - "617591722448039322845184", - "208431596007500363595776", - "1399072497181519446540288" + "type": "redeemMasset", + "inputQty": "68898615977351105321369", + "expectedQtys": [ + "19893893189919714726198", + "19617787988672819964578", + "29376903767349068831986" ], - "expectedQty": "2223943140972218942468429", + "redemptionFee": "20669584793205331596", "reserves": [ - "16363577593320699656536032", - "28090409277580454122385500", - "45846624589682568743223999" + "703976169182879945332483922", + "694205759740662490583082600", + "1039547160485984877527076878" ], - "mAssetSupply": "90227688001725818541882793" + "mAssetSupply": "2437352627749398263429527816" }, { - "type": "redeemMasset", - "inputQty": "10531561168022293761228", - "expectedQtys": [ - "1909417407912914199946", - "3277786667623580620347", - "5349706846583504010036" + "type": "redeemBassets", + "inputQtys": [ + "13935183514388970384392192", + "645451037310588966404096", + "4201457298779132028518400" ], - "redemptionFee": "3159468350406688128", + "expectedQty": "18791641610556079968618984", + "swapFee": "11281754018744894918122", "reserves": [ - "16361668175912786742336086", - "28087131490912830541765153", - "45841274882835985239213963" + "690040985668490974948091730", + "693560308703351901616678504", + "1035345703187205745498558478" ], - "mAssetSupply": "90217159600026146654809693" + "mAssetSupply": "2418560986138842183460908832" }, { "type": "swap", "inputIndex": 0, - "inputQty": "12310496168617323874222080", - "outputIndex": 1, - "expectedQty": "12298100069625595305040305", - "swapFee": "7415885499308741317220", + "inputQty": "242688170276347052032", + "outputIndex": 2, + "expectedQty": "243369694312038433228", + "swapFee": "145803926473280135", "reserves": [ - "28672164344530110616558166", - "15789031421287235236724848", - "45841274882835985239213963" + "690041228356661251295143762", + "693560308703351901616678504", + "1035345459817511433460125250" ], - "mAssetSupply": "90224575485525455396126913", + "mAssetSupply": "2418560986284646109934188967", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "10762679470047244288", - "11554433565969446912", - "2154321840222273280" - ], - "expectedQty": "24561105701898457032", - "swapFee": "14745510727575619", + "type": "redeem", + "inputIndex": 1, + "inputQty": "44374179686464864256", + "expectedQty": "44291743668540157310", + "swapFee": "26624507811878918", "reserves": [ - "28672153581850640569313878", - "15789019866853669267277936", - "45841272728514145016940683" + "690041228356661251295143762", + "693560264411608233076521194", + "1035345459817511433460125250" ], - "mAssetSupply": "90224550924419753497669881" + "mAssetSupply": "2418560941937090931281203629" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "72552828350228315766784", - "109887622630084773412864", - "23223106920617827368960" + "7150039187925084584017920", + "10172762822265243447590912", + "8151335526317045021933568" ], - "expectedQty": "206519264906776703366962", - "swapFee": "123985950514374646808", + "expectedQty": "25479199336090532801767932", "reserves": [ - "28599600753500412253547094", - "15679132244223584493865072", - "45818049621593527189571723" + "697191267544586335879161682", + "703733027233873476524112106", + "1043496795343828478482058818" ], - "mAssetSupply": "90018031659512976794302919" + "mAssetSupply": "2444040141273181464082971561" }, { - "type": "redeemMasset", - "inputQty": "2350415102185004911820", - "expectedQtys": [ - "746525623906253090108", - "409267041236408107759", - "1195972921955610618773" + "type": "redeemBassets", + "inputQtys": [ + "4374801080078791717421056", + "3602641719552773797707776", + "9876265577273163704696832" ], - "redemptionFee": "705124530655501473", + "expectedQty": "17843486105122782152802764", + "swapFee": "10712519174578416341486", "reserves": [ - "28598854227876506000456986", - "15678722977182348085757313", - "45816853648671571578952950" + "692816466464507544161740626", + "700130385514320702726404330", + "1033620529766555314777361986" ], - "mAssetSupply": "90015681949535322444892572" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "2221469614207200133120", - "expectedQty": "2211246047551066876715", - "reserves": [ - "28598854227876506000456986", - "15678722977182348085757313", - "45819075118285778779086070" - ] + "mAssetSupply": "2426196655168058681930168797" }, { - "type": "mintMulti", - "inputQtys": [ - "213476264464984702976", - "25199157875694731264", - "210609403274754228224" - ], - "expectedQty": "448472277918991519708", + "type": "swap", + "inputIndex": 0, + "inputQty": "164503448294504173404160", + "outputIndex": 2, + "expectedQty": "164956948458237211756290", + "swapFee": "98830937250330763162", "reserves": [ - "28599067704140970985159962", - "15678748176340223780488577", - "45819285727689053533314294" + "692980969912802048335144786", + "700130385514320702726404330", + "1033455572818097077565605696" ], - "mAssetSupply": "90018341667860792503288995" + "mAssetSupply": "2426196753998995932260931959", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "141670331532821101805568", - "expectedQty": "141629656185329149788317", - "swapFee": "85002198919692661083", + "type": "redeemMasset", + "inputQty": "483087654334991695872", + "expectedQtys": [ + "137940222505435479962", + "139363338033386280384", + "205712851944474505966" + ], + "redemptionFee": "144926296300497508", "reserves": [ - "28457438047955641835371645", - "15678748176340223780488577", - "45819285727689053533314294" + "692980831972579542899664824", + "700130246150982669340123946", + "1033455367105245133091099730" ], - "mAssetSupply": "89876756338526891094144510" + "mAssetSupply": "2426196271056267893569733595" }, { - "type": "mintMulti", - "inputQtys": [ - "6142447090460030", - "412338023155154", - "4060045998092059" + "type": "redeemMasset", + "inputQty": "183252872008538305173913", + "expectedQtys": [ + "52325787489673993491167", + "52865627424221543637381", + "78034432446396756800140" ], - "expectedQty": "10597998234926246", + "redemptionFee": "54975861602561491552", "reserves": [ - "28457438054098088925831675", - "15678748176752561803643731", - "45819285731749099531406353" + "692928506185089868906173657", + "700077380523558447796486565", + "1033377332672798736334299590" ], - "mAssetSupply": "89876756349124889329070756" + "mAssetSupply": "2426013073160120957826051234" }, { "type": "mint", "inputIndex": 0, - "inputQty": "56145182507522596864", - "expectedQty": "56128674250280004156", + "inputQty": "8643411648663507890601984", + "expectedQty": "8654307321724860133808769", "reserves": [ - "28457494199280596448428539", - "15678748176752561803643731", - "45819285731749099531406353" + "701571917833753376796775641", + "700077380523558447796486565", + "1033377332672798736334299590" ] }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "90904467936227145516318720", + "expectedQty": "90692198928037664519321778", + "swapFee": "54542680761736287309791", + "reserves": [ + "701571917833753376796775641", + "609385181595520783277164787", + "1033377332672798736334299590" + ], + "mAssetSupply": "2343817455226380408730851074" + }, { "type": "redeemBassets", "inputQtys": [ - "2896835102993973510144", - "12905927373585804951552", - "7471607463939589275648" + "337812186729899928584192", + "510430403686934230597632", + "3781343961845412684365824" ], - "expectedQty": "23355269883763158693544", - "swapFee": "14021574875183005019", + "expectedQty": "4622003032090396796305882", + "swapFee": "2774866739297816767844", "reserves": [ - "28454597364177602474918395", - "15665842249378975998692179", - "45811814124285159942130705" + "701234105647023476868191449", + "608874751191833849046567155", + "1029595988710953323649933766" ], - "mAssetSupply": "89853457207915376450381368" + "mAssetSupply": "2339195452194290011934545192" }, { "type": "swap", "inputIndex": 1, - "inputQty": "2576517952738879445401600", + "inputQty": "3292664899796471382016", "outputIndex": 2, - "expectedQty": "2604327007860889284571428", - "swapFee": "1557647395117194296586", + "expectedQty": "3306059461494537377632", + "swapFee": "1980109128921982436", "reserves": [ - "28454597364177602474918395", - "18242360202117855444093779", - "43207487116424270657559277" + "701234105647023476868191449", + "608878043856733645517949171", + "1029592682651491829112556134" ], - "mAssetSupply": "89855014855310493644677954", + "mAssetSupply": "2339195454174399140856527628", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "448727569213526", - "1201029973238019", - "210087950792117" + "880607536689938383765504", + "5668815029298230175203328", + "1799910607476792934531072" ], - "expectedQty": "1866045791767322", - "swapFee": "1120299654853", + "expectedQty": "8358838900514938856073439", + "swapFee": "5018314328906307097902", "reserves": [ - "28454597363728874905704869", - "18242360200916825470855760", - "43207487116214182706767160" + "700353498110333538484425945", + "603209228827435415342745843", + "1027792772044015036178025062" ], - "mAssetSupply": "89855014853444447852910632" + "mAssetSupply": "2330836615273884202000454189" }, { - "type": "redeemBassets", - "inputQtys": [ - "27937322499467429019648", - "130072049649746152783872", - "86529670361854737645568" + "type": "redeemMasset", + "inputQty": "34717503373317283145318", + "expectedQtys": [ + "10428543303462693728651", + "8982026335055484398071", + "15304244869436491922065" ], - "expectedQty": "244986995530927258279906", - "swapFee": "147080445585907899707", + "redemptionFee": "10415251011995184943", "reserves": [ - "28426660041229407476685221", - "18112288151267079318071888", - "43120957445852327969121592" + "700343069567030075790697294", + "603200246801100359858347772", + "1027777467799145599686102997" ], - "mAssetSupply": "89610027857913520594630726" + "mAssetSupply": "2330801908185761896712493814" }, { "type": "redeemBassets", "inputQtys": [ - "14385356259665591140352", - "9270863071387089633280", - "3111350968196879876096" + "32681363898620631318528", + "34696377372947303628800", + "60554579854622099243008" ], - "expectedQty": "26810191330442616316669", - "swapFee": "16095772261622543315", + "expectedQty": "127893293486508775051889", + "swapFee": "76782045319096723064", "reserves": [ - "28412274684969741885544869", - "18103017288195692228438608", - "43117846094884131089245496" + "700310388203131455159378766", + "603165550423727412554718972", + "1027716913219290977586859989" ], - "mAssetSupply": "89583217666583077978314057" + "mAssetSupply": "2330674014892275387937441925" }, { - "type": "redeemBassets", - "inputQtys": [ - "1594064077812706836480", - "657291741179521007616", - "318117611287169400832" - ], - "expectedQty": "2572119879594855622168", - "swapFee": "1544198446825008378", + "type": "redeem", + "inputIndex": 1, + "inputQty": "545972948431382249472", + "expectedQty": "544367038930854914544", + "swapFee": "327583769058829349", "reserves": [ - "28410680620891929178708389", - "18102359996454512707430992", - "43117527977272843919844664" + "700310388203131455159378766", + "603165006056688481699804428", + "1027716913219290977586859989" ], - "mAssetSupply": "89580645546703483122691889" + "mAssetSupply": "2330673469246910725614021802" }, { "type": "mintMulti", "inputQtys": [ - "37108863006238981488640", - "97309592817634109292544", - "59947506005121838350336" + "17557400055195665724080128", + "5029601874736709757829120", + "1829862335331036221669376" ], - "expectedQty": "194718734486084030753658", + "expectedQty": "24436495694096302924504237", "reserves": [ - "28447789483898168160197029", - "18199669589272146816723536", - "43177475483277965758195000" + "717867788258327120883458894", + "608194607931425191457633548", + "1029546775554622013808529365" ], - "mAssetSupply": "89775364281189567153445547" + "mAssetSupply": "2355109964941007028538526039" }, { "type": "mintMulti", "inputQtys": [ - "471640627926693184", - "960141125902759424", - "147233289871394176" + "6392008825219209216", + "9696730906011359232", + "8434749735927869440" + ], + "expectedQty": "24530908927902509588", + "reserves": [ + "717867794650335946102668110", + "608194617628156097468992780", + "1029546783989371749736398805" + ], + "mAssetSupply": "2355109989471915956441035627" + }, + { + "type": "redeemMasset", + "inputQty": "1713699098702", + "expectedQtys": [ + "522200803935", + "442420903461", + "748926421126" + ], + "redemptionFee": "514109729", + "reserves": [ + "717867794650335423901864175", + "608194617628155655048089319", + "1029546783989371000809977679" + ], + "mAssetSupply": "2355109989471914243256046654" + }, + { + "type": "redeemMasset", + "inputQty": "360307830661591282483", + "expectedQtys": [ + "109793509828356570337", + "93019664937937710147", + "157462914187074107440" ], - "expectedQty": "1584062775826820547", + "redemptionFee": "108092349198477384", "reserves": [ - "28447789955538796086890213", - "18199670549413272719482960", - "43177475630511255629589176" + "717867684856825595545293838", + "608194524608490717110379172", + "1029546626526456813735870239" ], - "mAssetSupply": "89775365865252342980266094" + "mAssetSupply": "2355109629272175930863241555" }, { - "type": "redeemBassets", - "inputQtys": [ - "1506943275373500760588288", - "495911725182811686043648", - "442900327937965402619904" + "type": "redeemMasset", + "inputQty": "4245682812130969203507", + "expectedQtys": [ + "1293750448625699061007", + "1096096057340791894062", + "1855462278142988496223" ], - "expectedQty": "2447165895419544915270121", - "swapFee": "1469181045879254501863", + "redemptionFee": "1273704843639290761", "reserves": [ - "26940846680165295326301925", - "17703758824230461033439312", - "42734575302573290226969272" + "717866391106376969846232831", + "608193428512433376318485110", + "1029544771064178670747374016" ], - "mAssetSupply": "87328199969832798064995973" + "mAssetSupply": "2355105384863068643533328809" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "14082230897771123048448", - "outputIndex": 0, - "expectedQty": "14017655906573357981105", - "swapFee": "8417568398730014035", + "inputIndex": 0, + "inputQty": "30348787281651301896683520", + "outputIndex": 2, + "expectedQty": "30410387803154300316497717", + "swapFee": "18218128303617139781563", "reserves": [ - "26926829024258721968320820", - "17703758824230461033439312", - "42748657533471061350017720" + "748215178388028271742916351", + "608193428512433376318485110", + "999134383261024370430876299" ], - "mAssetSupply": "87328208387401196795010008", + "mAssetSupply": "2355123602991372260673110372", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "473062288357330689982464", - "expectedQty": "469937617918397839333769", - "swapFee": "283837373014398413989", - "reserves": [ - "26926829024258721968320820", - "17233821206312063194105543", - "42748657533471061350017720" - ], - "mAssetSupply": "86855429936416880503441533" - }, { "type": "redeemMasset", - "inputQty": "5164855735492068966", + "inputQty": "284802384561986076672", "expectedQtys": [ - "1600722781179467442", - "1024501258089633918", - "2541285121876700036" + "90453655451336214792", + "73526066323530714682", + "120787922864359315366" ], - "redemptionFee": "1549456720647620", + "redemptionFee": "85440715368595823", "reserves": [ - "26926827423535940788853378", - "17233820181810805104471625", - "42748654992185939473317684" + "748215087934372820406701559", + "608193354986367052787770428", + "999134262473101506071560933" ], - "mAssetSupply": "86855424773110601732020187" + "mAssetSupply": "2355123318274428414055629523" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "184225810757660316794880", - "outputIndex": 0, - "expectedQty": "185212500719752761695241", - "swapFee": "111216900727210099287", + "inputQty": "8689297852642012579233792", + "expectedQty": "8662957034269172457060903", + "swapFee": "5213578711585207547540", "reserves": [ - "26741614922816188027158137", - "17418045992568465421266505", - "42748654992185939473317684" + "748215087934372820406701559", + "599530397952097880330709525", + "999134262473101506071560933" ], - "mAssetSupply": "86855535990011328942119474", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2346439234000497986683943271" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "13433065536951903372443648", - "expectedQty": "13416697466210551391787665", + "inputIndex": 2, + "inputQty": "4615643146828834144256", + "expectedQty": "4605946693107780117457", "reserves": [ - "40174680459768091399601785", - "17418045992568465421266505", - "42748654992185939473317684" + "748215087934372820406701559", + "599530397952097880330709525", + "999138878116248334905705189" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "701902785879492526080", - "1562625847408457154560", - "824929114325407760384" - ], - "expectedQty": "3099059962829262158313", - "swapFee": "1860552309083007099", + "type": "mint", + "inputIndex": 1, + "inputQty": "28620806296473318719488", + "expectedQty": "28692336857117124609960", "reserves": [ - "40173978556982211907075705", - "17416483366721056964111945", - "42747830063071614065557300" - ], - "mAssetSupply": "100269134396259051071748826" + "748215087934372820406701559", + "599559018758394353649429013", + "999138878116248334905705189" + ] }, { - "type": "redeemMasset", - "inputQty": "123708609166816092723609", - "expectedQtys": [ - "49550403339908894279162", - "21481411764079686739696", - "52724980139238526084504" - ], - "redemptionFee": "37112582750044827817", + "type": "swap", + "inputIndex": 1, + "inputQty": "60552863796714390159360", + "outputIndex": 2, + "expectedQty": "60795422538630659528657", + "swapFee": "36422497401261803704", "reserves": [ - "40124428153642303012796543", - "17395001954956977277372249", - "42695105082932375539472796" + "748215087934372820406701559", + "599619571622191068039588373", + "999078082693709704246176532" ], - "mAssetSupply": "100145462899674985023853034" + "mAssetSupply": "2346472568706545612850474392", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "1211204626350615296", - "expectedQty": "1207660152295600434", + "inputQty": "2365523781122720251510784", + "expectedQty": "2360541260794750894321791", "reserves": [ - "40124428153642303012796543", - "17395001954956977277372249", - "42695106294137001890088092" + "748215087934372820406701559", + "599619571622191068039588373", + "1001443606474832424497687316" ] }, { - "type": "redeemMasset", - "inputQty": "13402689429895190151168", - "expectedQtys": [ - "5368330171643835970333", - "2327313263456996382800", - "5712266513125384126198" - ], - "redemptionFee": "4020806828968557045", - "reserves": [ - "40119059823470659176826210", - "17392674641693520280989449", - "42689394027623876505961894" - ], - "mAssetSupply": "100132065438712071097859345" - }, - { - "type": "redeemMasset", - "inputQty": "9905443337050243937075", - "expectedQtys": [ - "3967538799428187939038", - "1720033115690799096434", - "4221729718341727243264" + "type": "mintMulti", + "inputQtys": [ + "7522907443104388978049024", + "106168632192645256445952", + "7673777183998307131719680" ], - "redemptionFee": "2971633001115073181", + "expectedQty": "15288380569937644822961311", "reserves": [ - "40115092284671230988887172", - "17390954608577829481893015", - "42685172297905534778718630" + "755737995377477209384750583", + "599725740254383713296034325", + "1009117383658830731629406996" ], - "mAssetSupply": "100122162967008021968995451" + "mAssetSupply": "2364121490537278008567757494" }, { - "type": "redeemBassets", - "inputQtys": [ - "23471341436483500244992", - "21627620838915207856128", - "29274046802586348027904" - ], - "expectedQty": "74420559450665421506714", - "swapFee": "44679143156293028721", + "type": "mint", + "inputIndex": 1, + "inputQty": "5920298420748585350987776", + "expectedQty": "5935334338625035822966599", "reserves": [ - "40091620943234747488642180", - "17369326987738914274036887", - "42655898251102948430690726" - ], - "mAssetSupply": "100047742407557356547488737" + "755737995377477209384750583", + "605646038675132298647022101", + "1009117383658830731629406996" + ] }, { "type": "redeemBassets", "inputQtys": [ - "366522159259962929315840", - "56609166465762022391808", - "96413913085589063729152" + "134616328909884984655872", + "145154586977223890173952", + "55930496467005798875136" ], - "expectedQty": "518880424713553400293217", - "swapFee": "311515163926487932935", + "expectedQty": "335975419520769430164340", + "swapFee": "201706275477748307082", "reserves": [ - "39725098783974784559326340", - "17312717821273152251645079", - "42559484338017359366961574" + "755603379048567324400094711", + "605500884088155074756848149", + "1009061453162363725830531860" ], - "mAssetSupply": "99528861982843803147195520" + "mAssetSupply": "2369720849456382274960559753" }, { "type": "mintMulti", "inputQtys": [ - "1991085709110046", - "12026126882267744", - "3206144974081260" + "22699397768358020513792", + "36661812681795996483584", + "45437777593041009246208" ], - "expectedQty": "17314306094872137", + "expectedQty": "104800009501093034493659", "reserves": [ - "39725098785965870268436386", - "17312717833299279133912823", - "42559484341223504341042834" + "755626078446335682420608503", + "605537545900836870753331733", + "1009106890939956766839778068" ], - "mAssetSupply": "99528862000158109242067657" + "mAssetSupply": "2369825649465883367995053412" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "5043060225098135308861440", - "expectedQty": "5049963913578953454909352", - "swapFee": "3025836135058881185316", - "reserves": [ - "34675134872386916813527034", - "17312717833299279133912823", - "42559484341223504341042834" - ], - "mAssetSupply": "94488827611195032814391533" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "36546978589648990765056", - "35047639492882658754560", - "27404214488551013744640" - ], - "expectedQty": "99122300895619130272006", - "swapFee": "59509085988964857077", - "reserves": [ - "34638587893797267822761978", - "17277670193806396475158263", - "42532080126734953327298194" - ], - "mAssetSupply": "94389705310299413684119527" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "91923531517637760", - "22727547017438252", - "859833987510978944" - ], - "expectedQty": "971732120967009644", - "swapFee": "583389306163904", + "inputQty": "16616279946326449382752256", + "outputIndex": 2, + "expectedQty": "16642125085666945994762227", + "swapFee": "9971237857671302116354", "reserves": [ - "34638587801873736305124218", - "17277670171078849457720011", - "42532079266900965816319250" + "772242358392662131803360759", + "605537545900836870753331733", + "992464765854289820845015841" ], - "mAssetSupply": "94389704338567292717109883" + "mAssetSupply": "2369835620703741039297169766", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "758158808147436765184", + "inputQty": "28091986787064783201894", "expectedQtys": [ - "278141267234785097948", - "138736402988939462288", - "341524501318908773038" + "9151400119177752144110", + "7175877248248310720710", + "11761129233344278255773" ], - "redemptionFee": "227447642444231029", + "redemptionFee": "8427596036119434960", "reserves": [ - "34638309660606501520026270", - "17277531434675860518257723", - "42531737742399646907546212" + "772233206992542954051216649", + "605530370023588622442611023", + "992453004725056476566760068" ], - "mAssetSupply": "94388946407206787724575728" + "mAssetSupply": "2369807537144550010633402832" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "97990049832192740163584", - "expectedQty": "98736687463365196737040", + "inputIndex": 0, + "inputQty": "863318710086678310027264", + "expectedQty": "863341744145213054282491", "reserves": [ - "34638309660606501520026270", - "17375521484508053258421307", - "42531737742399646907546212" + "773096525702629632361243913", + "605530370023588622442611023", + "992453004725056476566760068" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "312384200347415339859968", - "expectedQty": "313197246861682375536660", - "swapFee": "187430520208449203915", + "type": "mintMulti", + "inputQtys": [ + "16477514312193388270583808", + "13654343318297603127377920", + "14288389009858003873038336" + ], + "expectedQty": "44426696207192302082049501", "reserves": [ - "34638309660606501520026270", - "17375521484508053258421307", - "42218540495537964532009552" + "789574040014823020631827721", + "619184713341886225569988943", + "1006741393734914480439798404" ], - "mAssetSupply": "94175486324842946030656715" + "mAssetSupply": "2415097575095887525769734824" }, { - "type": "redeemBassets", - "inputQtys": [ - "16103645466263666688", - "53817194453693120512", - "112628687563299127296" + "type": "redeemMasset", + "inputQty": "9961440925675910332416", + "expectedQtys": [ + "3255742396741848136371", + "2553156284879605925964", + "4151213783670250301783" ], - "expectedQty": "182571127088618479847", - "swapFee": "109608441317961865", + "redemptionFee": "2988432277702773099", "reserves": [ - "34638293556961035256359582", - "17375467667313599565300795", - "42218427866850401232882256" + "789570784272426278783691350", + "619182160185601345964062979", + "1006737242521130810189496621" ], - "mAssetSupply": "94175303753715857412176868" + "mAssetSupply": "2415087616643394127562175507" }, { "type": "mintMulti", "inputQtys": [ - "5159014483675691008", - "1446374556692955904", - "8492577216861091840" + "12542218088572851696173056", + "23243970002841747767427072", + "9029912152302799300853760" ], - "expectedQty": "15073940836564988345", + "expectedQty": "44854365953308384146520154", "reserves": [ - "34638298715975518932050590", - "17375469113688156258256699", - "42218436359427618093974096" + "802113002360999130479864406", + "642426130188443093731490051", + "1015767154673433609490350381" ], - "mAssetSupply": "94175318827656693977165213" + "mAssetSupply": "2459941982596702511708695661" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1457888622191042933817344", - "expectedQty": "1459064767582836886706056", - "swapFee": "874733173314625760290", + "inputIndex": 1, + "inputQty": "5870165970892349444718592", + "expectedQty": "5853211750163333264071311", + "swapFee": "3522099582535409666831", "reserves": [ - "33179233948392682045344534", - "17375469113688156258256699", - "42218436359427618093974096" + "802113002360999130479864406", + "636572918438279760467418740", + "1015767154673433609490350381" ], - "mAssetSupply": "92718304938638965669108159" + "mAssetSupply": "2454075338725392697673643900" }, { "type": "mint", "inputIndex": 2, - "inputQty": "144145688338676775387136", - "expectedQty": "143673570233938027885797", + "inputQty": "426466104905797696", + "expectedQty": "425677340595079157", "reserves": [ - "33179233948392682045344534", - "17375469113688156258256699", - "42362582047766294869361232" + "802113002360999130479864406", + "636572918438279760467418740", + "1015767155099899714396148077" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "512369160151941662113792", - "outputIndex": 2, - "expectedQty": "513040885455842419547112", - "swapFee": "307019076340306925509", + "type": "redeem", + "inputIndex": 1, + "inputQty": "28772607761735269700599808", + "expectedQty": "28682955421461553430072022", + "swapFee": "17263564657041161820359", "reserves": [ - "33691603108544623707458326", - "17375469113688156258256699", - "41849541162310452449814120" + "802113002360999130479864406", + "607889963016818207037346718", + "1015767155099899714396148077" ], - "mAssetSupply": "92862285527949244003919465", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2425319994953991809729943608" }, { - "type": "redeemBassets", - "inputQtys": [ - "675363256679610974208", - "9237548851985283072", - "572098940044072321024" + "type": "redeemMasset", + "inputQty": "45719250716442752555417", + "expectedQtys": [ + "15115945084565740241103", + "11455781506313739616307", + "19142291036301272364182" ], - "expectedQty": "1254009886849951961451", - "swapFee": "752857646697989970", + "redemptionFee": "13715775214932825766", "reserves": [ - "33690927745287944096484118", - "17375459876139304272973627", - "41848969063370408377493096" + "802097886415914564739623303", + "607878507235311893297730411", + "1015748012808863413123783895" ], - "mAssetSupply": "92861031518062394051958014" + "mAssetSupply": "2425274289419050581910213957" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "2764689839939709829120", + "expectedQty": "2759209770805845158678", + "reserves": [ + "802097886415914564739623303", + "607878507235311893297730411", + "1015750777498703352833613015" + ] }, { "type": "mintMulti", "inputQtys": [ - "491351818655364160", - "628803998612370944", - "517974872606854272" + "488855695486848320", + "42685991404739256", + "498762086741723520" ], - "expectedQty": "1640342836813145655", + "expectedQty": "1029375424853036821", "reserves": [ - "33690928236639762751848278", - "17375460504943302885344571", - "41848969581345280984347368" + "802097886904770260226471623", + "607878507277997884702469667", + "1015750777997465439575336535" ], - "mAssetSupply": "92861033158405230865103669" + "mAssetSupply": "2425277049658196812608409456" }, { - "type": "mintMulti", - "inputQtys": [ - "1735838844957314955345920", - "610439992450293650423808", - "59804900419752660303872" + "type": "redeemMasset", + "inputQty": "7106510074551975079732838", + "expectedQtys": [ + "2349589990081536559104724", + "1780662035400253187839439", + "2975444642561100132364086" ], - "expectedQty": "2407673995218041168836192", + "redemptionFee": "2131953022365592523919", "reserves": [ - "35426767081597077707194198", - "17985900497393596535768379", - "41908774481765033644651240" + "799748296914688723667366899", + "606097845242597631514630228", + "1012775333354904339442972449" ], - "mAssetSupply": "95268707153623272033939861" + "mAssetSupply": "2418172671536667203121200537" }, { "type": "mintMulti", "inputQtys": [ - "5601785691037216276480", - "5624941025916612509696", - "2043319056060880781312" + "239055432033092407132160", + "217998089092556235210752", + "67031661757969192714240" ], - "expectedQty": "13294724322982923773427", + "expectedQty": "524518300104827843845243", "reserves": [ - "35432368867288114923470678", - "17991525438419513148278075", - "41910817800821094525432552" + "799987352346721816074499059", + "606315843331690187749840980", + "1012842365016662308635686689" ], - "mAssetSupply": "95282001877946254957713288" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1205687989217189691392", - "expectedQty": "1203792346064009091349", - "reserves": [ - "35433574555277332113162070", - "17991525438419513148278075", - "41910817800821094525432552" - ] + "mAssetSupply": "2418697189836772030965045780" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "305717667303476267319296", - "expectedQty": "305229003170017325090613", - "reserves": [ - "35739292222580808380481366", - "17991525438419513148278075", - "41910817800821094525432552" - ] - }, - { - "type": "redeemMasset", - "inputQty": "847375081293225970892", - "expectedQtys": [ - "316727649952628019354", - "159443940178903846845", - "371420753018154456829" - ], - "redemptionFee": "254212524387967791", + "inputQty": "2242078362650658304", + "expectedQty": "2240990692818691494", + "swapFee": "1345247017590394", "reserves": [ - "35738975494930855752462012", - "17991365994479334244431230", - "41910446380068076370975723" + "799987350105731123255807565", + "606315843331690187749840980", + "1012842365016662308635686689" ], - "mAssetSupply": "95587587552593567453892149" + "mAssetSupply": "2418697187596038915331977870" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1954727271125160508260352", - "expectedQty": "1951235078351449696834305", + "type": "redeem", + "inputIndex": 2, + "inputQty": "2007303282204229010194432", + "expectedQty": "2010069847738926513309081", + "swapFee": "1204381969322537406116", "reserves": [ - "37693702766056016260722364", - "17991365994479334244431230", - "41910446380068076370975723" - ] + "799987350105731123255807565", + "606315843331690187749840980", + "1010832295168923382122377608" + ], + "mAssetSupply": "2416691088695804008859189554" }, { "type": "redeemBassets", "inputQtys": [ - "183264374907248633184256", - "70150577256820451049472", - "1028406285299871863799808" + "31977029773244755869696", + "30502667422791081394176", + "8158680135660860342272" ], - "expectedQty": "1279150529401755542109799", - "swapFee": "767951088294029743111", + "expectedQty": "70701144049295459558493", + "swapFee": "42446154122050506038", "reserves": [ - "37510438391148767627538108", - "17921215417222513793381758", - "40882040094768204507175915" + "799955373075957878499937869", + "606285340664267396668446804", + "1010824136488787721262035336" ], - "mAssetSupply": "96259672101543261608616655" + "mAssetSupply": "2416620387551754713399631061" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "609382305359317565440", - "expectedQty": "607744347112786937821", + "type": "redeemMasset", + "inputQty": "89322528259101840900096", + "expectedQtys": [ + "29558883378882572930493", + "22402646800297839284618", + "37350624513143538169686" + ], + "redemptionFee": "26796758477730552270", "reserves": [ - "37510438391148767627538108", - "17921215417222513793381758", - "40882649477073563824741355" - ] + "799925814192578995927007376", + "606262938017467098829162186", + "1010786785864274577723865650" + ], + "mAssetSupply": "2416531091820254089289283235" }, { "type": "mint", "inputIndex": 1, - "inputQty": "263130226109937952", - "expectedQty": "265045696901507118", + "inputQty": "21825232576802510077952", + "expectedQty": "21884409609609281722502", "reserves": [ - "37510438391148767627538108", - "17921215680352739903319710", - "40882649477073563824741355" + "799925814192578995927007376", + "606284763250043901339240138", + "1010786785864274577723865650" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "249904270661867634688", - "expectedQty": "250251963426142316382", - "swapFee": "149942562397120580", - "reserves": [ - "37510188139185341485221726", - "17921215680352739903319710", - "40882649477073563824741355" - ], - "mAssetSupply": "96260030356607971826547486" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1586252794339853860864", - "110217527842370926673920", - "108457989397845641265152" + "type": "redeemMasset", + "inputQty": "392384465361179508736", + "expectedQtys": [ + "129847887664033914715", + "98415121045155335897", + "164075876405704618918" ], - "expectedQty": "220765628479803572376985", + "redemptionFee": "117715339608353852", "reserves": [ - "37511774391979681339082590", - "18031433208195110829993630", - "40991107466471409466006507" + "799925684344691331893092661", + "606284664834922856183904241", + "1010786621788398172019246732" ], - "mAssetSupply": "96480795985087775398924471" + "mAssetSupply": "2416552583963113676999850853" }, { - "type": "mintMulti", - "inputQtys": [ - "4738813612215705331040256", - "4940817396438901354135552", - "1003991058502613616033792" - ], - "expectedQty": "10701754696438596205464323", + "type": "mint", + "inputIndex": 0, + "inputQty": "440721071564623804628992", + "expectedQty": "440667164231056933893550", "reserves": [ - "42250588004195386670122846", - "22972250604634012184129182", - "41995098524974023082040299" - ], - "mAssetSupply": "107182550681526371604388794" + "800366405416255955697721653", + "606284664834922856183904241", + "1010786621788398172019246732" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5845035813451616210649088", - "expectedQty": "5802235392224984431481515", - "swapFee": "3507021488070969726389", + "inputQty": "1314532571295915935006720", + "expectedQty": "1310176449028589583785240", + "swapFee": "788719542777549561004", "reserves": [ - "42250588004195386670122846", - "17170015212409027752647667", - "41995098524974023082040299" + "800366405416255955697721653", + "604974488385894266600119001", + "1010786621788398172019246732" ], - "mAssetSupply": "101341021889562826363466095" + "mAssetSupply": "2415679507275591595548298687" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1813390033640081408", - "1372180338167816448", - "418392635448828928" + "2552786708066833700749312", + "730115438336402343854080", + "5281132617151164786409472" ], - "expectedQty": "3610533649698243522", - "swapFee": "2167620762276311", + "expectedQty": "8555231380589219550805058", "reserves": [ - "42250586190805353030041438", - "17170013840228689584831219", - "41995098106581387633211371" + "802919192124322789398470965", + "605704603824230668943973081", + "1016067754405549336805656204" ], - "mAssetSupply": "101341018279029176665222573" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "5603817088247621746688", - "expectedQty": "5588017857836434814869", - "reserves": [ - "42256190007893600651788126", - "17170013840228689584831219", - "41995098106581387633211371" - ] + "mAssetSupply": "2424234738656180815099103745" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "132199229208320530186240", - "expectedQty": "131832011149220804482681", + "inputIndex": 1, + "inputQty": "10808447572685686308864", + "expectedQty": "10838274111278893909472", "reserves": [ - "42256190007893600651788126", - "17170013840228689584831219", - "42127297335789708163397611" + "802919192124322789398470965", + "605715412271803354630281945", + "1016067754405549336805656204" ] }, { "type": "redeemBassets", "inputQtys": [ - "49711810123663795027968", - "17163928465337871237120", - "68458457957279385780224" + "7939738632755343261696", + "8941600860096877821952", + "1042843098307877273600" ], - "expectedQty": "135164748965267539112038", - "swapFee": "81147537901901664465", + "expectedQty": "17945747627388708278818", + "swapFee": "10773912924187737609", "reserves": [ - "42206478197769936856760158", - "17152849911763351713594099", - "42058838877832428777617387" + "802911252385690034055209269", + "605706470670943257752459993", + "1016066711562451028928382604" ], - "mAssetSupply": "101343273559070966365408085" + "mAssetSupply": "2424227631182664705284734399" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "79587359330090616881152", - "expectedQty": "79365316207884567569172", + "inputIndex": 0, + "inputQty": "6161629903744655901589504", + "expectedQty": "6160689519530640835255431", "reserves": [ - "42206478197769936856760158", - "17152849911763351713594099", - "42138426237162519394498539" + "809072882289434689956798773", + "605706470670943257752459993", + "1016066711562451028928382604" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "13651198669746855936", - "52753983789847470080", - "55901140122087358464" - ], - "expectedQty": "122607666690271939842", - "swapFee": "73608765273327160", + "type": "redeem", + "inputIndex": 1, + "inputQty": "472284330629711431467008", + "expectedQty": "470686378331519558369832", + "swapFee": "283370598377826858880", "reserves": [ - "42206464546571267109904222", - "17152797157779561866124019", - "42138370336022397307140075" + "809072882289434689956798773", + "605235784292611738194090161", + "1016066711562451028928382604" ], - "mAssetSupply": "101422516267612160661037415" + "mAssetSupply": "2429916319742164012515381702" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "18936241569989488803840", - "27697410520231150878720", - "35868286134662828392448" + "1520549405629868807290880", + "1089213878029367415668736", + "674432537388567731634176" ], - "expectedQty": "82608689916022802090816", + "expectedQty": "3285642747663068143776775", + "swapFee": "1972569190111908031084", "reserves": [ - "42225400788141256598708062", - "17180494568299793017002739", - "42174238622157060135532523" + "807552332883804821149507893", + "604146570414582370778421425", + "1015392279025062461196748428" ], - "mAssetSupply": "101505124957528183463128231" + "mAssetSupply": "2426630676994500944371604927" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1742317692589928720891904", - "11259513088983712137216", - "2880995942843240255848448" + "888578132078833971494912", + "34223972287662081966080", + "468332347060999285637120" ], - "expectedQty": "4622322955766483412054536", - "swapFee": "2775058808745137129510", + "expectedQty": "1390145635871972590888284", "reserves": [ - "40483083095551327877816158", - "17169235055210809304865523", - "39293242679313819879684075" + "808440911015883655121002805", + "604180794386870032860387505", + "1015860611372123460482385548" ], - "mAssetSupply": "96882802001761700051073695" + "mAssetSupply": "2428020822630372916962493211" }, { "type": "swap", "inputIndex": 0, - "inputQty": "11357348475109345280", + "inputQty": "12765122093388908199936", "outputIndex": 1, - "expectedQty": "11226577514883038695", - "swapFee": "6796030229032618", + "expectedQty": "12719469728837805079666", + "swapFee": "7657705436659370143", "reserves": [ - "40483094452899802987161438", - "17169223828633294421826828", - "39293242679313819879684075" + "808453676137977044029202741", + "604168074917141195055307839", + "1015860611372123460482385548" ], - "mAssetSupply": "96882802008557730280106313", + "mAssetSupply": "2428020830288078353621863354", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "354094363227568549658624", - "expectedQty": "353129947792508761899804", + "type": "redeemMasset", + "inputQty": "5260133705209357323468", + "expectedQtys": [ + "1750931707665823986795", + "1308494314956026416592", + "2200129218927161856408" + ], + "redemptionFee": "1578040111562807197", "reserves": [ - "40837188816127371536820062", - "17169223828633294421826828", - "39293242679313819879684075" - ] + "808451925206269378205215946", + "604166766422826239028891247", + "1015858411242904533320529140" + ], + "mAssetSupply": "2428015571732413255827347083" }, { - "type": "mintMulti", - "inputQtys": [ - "49840453943646808", - "84879930231249632", - "259465450746680224" - ], - "expectedQty": "394130333746287945", + "type": "redeem", + "inputIndex": 0, + "inputQty": "15949552533274743839653888", + "expectedQty": "15941895592090344401044061", + "swapFee": "9569731519964846303792", "reserves": [ - "40837188865967825480466870", - "17169223913513224653076460", - "39293242938779270626364299" + "792510029614179033804171885", + "604166766422826239028891247", + "1015858411242904533320529140" ], - "mAssetSupply": "97235932350480572788294062" + "mAssetSupply": "2412075588930658476833996987" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "25267249823725905772544", - "outputIndex": 0, - "expectedQty": "25260002805735263337933", - "swapFee": "15123444318146278139", + "inputIndex": 0, + "inputQty": "16323572013055023775744", + "outputIndex": 2, + "expectedQty": "16345952834708203393985", + "swapFee": "9793548998987834185", "reserves": [ - "40811928863162090217128937", - "17169223913513224653076460", - "39318510188602996532136843" + "792526353186192088827947629", + "604166766422826239028891247", + "1015842065290069825117135155" ], - "mAssetSupply": "97235947473924890934572201", + "mAssetSupply": "2412075598724207475821831172", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "379788850777236307968", - "1062890725201983963136", - "1171641727286971990016" - ], - "expectedQty": "2619347371323538745810", - "swapFee": "1572551953966503149", + "type": "swap", + "inputIndex": 0, + "inputQty": "46601647740505608127774720", + "outputIndex": 1, + "expectedQty": "46408408365864785853504770", + "swapFee": "27954536722929924687614", "reserves": [ - "40811549074311312980820969", - "17168161022788022669113324", - "39317338546875709560146827" + "839128000926697696955722349", + "557758358056961453175386477", + "1015842065290069825117135155" ], - "mAssetSupply": "97233328126553567395826391" + "mAssetSupply": "2412103553260930405746518786", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "101005556623793597710336", - "149866082984686046412800", - "65231801854202021412864" + "type": "redeem", + "inputIndex": 2, + "inputQty": "3336268159608708921294848", + "expectedQty": "3341382522600118066813088", + "swapFee": "2001760895765225352776", + "reserves": [ + "839128000926697696955722349", + "557758358056961453175386477", + "1012500682767469707050322067" ], - "expectedQty": "316932669466487796584888", - "swapFee": "190273765939456351761", + "mAssetSupply": "2408769286862217462050576714" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "18623159187168934494208", + "expectedQty": "18692246979578288149976", + "reserves": [ + "839128000926697696955722349", + "557776981216148622109880685", + "1012500682767469707050322067" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "1816958878012698741702656", + "expectedQty": "1819718902288533983240840", + "swapFee": "1090175326807619245021", "reserves": [ - "40710543517687519383110633", - "17018294939803336622700524", - "39252106745021507538733963" + "839128000926697696955722349", + "557776981216148622109880685", + "1010680963865181173067081227" ], - "mAssetSupply": "96916395457087079599241503" + "mAssetSupply": "2406972110406511149216269055" }, { "type": "mintMulti", "inputQtys": [ - "12452801600306907447296", - "6637061552466576801792", - "1754358029805828702208" + "4860586335168182091776", + "4326249908944452452352", + "4111368838120429060096" ], - "expectedQty": "20861955861564435533175", + "expectedQty": "13302380910836451456013", "reserves": [ - "40722996319287826290557929", - "17024932001355803199502316", - "39253861103051313367436171" + "839132861513032865137814125", + "557781307466057566562333037", + "1010685075234019293496141323" ], - "mAssetSupply": "96937257412948644034774678" + "mAssetSupply": "2406985412787421985667725068" }, { "type": "redeemMasset", - "inputQty": "7596283670778105036", + "inputQty": "867687012588514670175846", "expectedQtys": [ - "3190214342648241980", - "1333722642300063558", - "3075123198534480097" + "302405760541120808424793", + "201012602695305258878096", + "364229555129818441279881" ], - "redemptionFee": "2278885101233431", + "redemptionFee": "260306103776554401052", "reserves": [ - "40722993129073483642315949", - "17024930667633160899438758", - "39253858027928114832956074" + "838830455752491744329389332", + "557580294863362261303454941", + "1010320845678889475054861442" ], - "mAssetSupply": "96937249818943858357903073" + "mAssetSupply": "2406117986080937247551950274" }, { - "type": "redeemMasset", - "inputQty": "41469798428686407014809", - "expectedQtys": [ - "17416088111987971389525", - "7281087902065301296317", - "16787780013689199769213" - ], - "redemptionFee": "12440939528605922104", + "type": "swap", + "inputIndex": 1, + "inputQty": "11583538896926749113712640", + "outputIndex": 2, + "expectedQty": "11641678680369024903619680", + "swapFee": "6975109436883660240435", "reserves": [ - "40705577040961495670926424", - "17017649579731095598142441", - "39237070247914425633186861" + "838830455752491744329389332", + "569163833760289010417167581", + "998679166998520450151241762" ], - "mAssetSupply": "96895792461454700556810368" + "mAssetSupply": "2406124961190374131212190709", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "431593697674498985164", - "expectedQtys": [ - "181256580742822523566", - "75777355324004750053", - "174717513139445481972" + "type": "mintMulti", + "inputQtys": [ + "1470968051949176759517184", + "262883130422018109865984", + "709691289596822479175680" ], - "redemptionFee": "129478109302349695", + "expectedQty": "2442123246943083672219342", "reserves": [ - "40705395784380752848402858", - "17017573802375771593392388", - "39236895530401286187704889" + "840301423804440921088906516", + "569426716890711028527033565", + "999388858288117272630417442" ], - "mAssetSupply": "96895360997235135360174899" + "mAssetSupply": "2408567084437317214884410051" }, { "type": "redeemBassets", "inputQtys": [ - "362629241832729149440", - "207324643544176361472", - "52870444761403891712" - ], - "expectedQty": "623455690774441135261", - "swapFee": "374297993260621053", - "reserves": [ - "40705033155138920119253418", - "17017366477732227417030916", - "39236842659956524783813177" + "168829589929178005504", + "50779258454566412288", + "100224798743333404672" ], - "mAssetSupply": "96894737541544360919039638" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "1660863605578970840432640", - "outputIndex": 2, - "expectedQty": "1675953889284959157795376", - "swapFee": "1004176853768114827246", + "expectedQty": "319703955755269880457", + "swapFee": "191937535974746776", "reserves": [ - "40705033155138920119253418", - "18678230083311198257463556", - "37560888770671565626017801" + "840301254974850991910901012", + "569426666111452573960621277", + "999388758063318529297012770" ], - "mAssetSupply": "96895741718398129033866884", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2408566764733361459614529594" }, { "type": "redeemMasset", - "inputQty": "35787342473519980", + "inputQty": "3626204858207099158528", "expectedQtys": [ - "15029431826454071", - "6896522712708035", - "13868526159118563" + "1264731543423339145892", + "857040093697227110014", + "1504173031971948415404" ], - "redemptionFee": "10736202742055", + "redemptionFee": "1087861457462129747", "reserves": [ - "40705033140109488292799347", - "18678230076414675544755521", - "37560888756803039466899238" + "840299990243307568571755120", + "569425809071358876733511263", + "999387253890286557348597366" ], - "mAssetSupply": "96895741682621522763088959" + "mAssetSupply": "2408563139616364709977500813" }, { "type": "redeemMasset", - "inputQty": "10532452170939222930227", + "inputQty": "1725873116618642214092", "expectedQtys": [ - "4423261436236772548819", - "2029692360396408513345", - "4081599201181718216381" + "601942321486262322148", + "407903721773649991759", + "715903237719085371387" ], - "redemptionFee": "3159735651281766879", + "redemptionFee": "517761934985592664", "reserves": [ - "40700609878673251520250528", - "18676200384054279136242176", - "37556807157601857748682857" + "840299388300986082309432972", + "569425401167637103083519504", + "999386537987048838263225979" ], - "mAssetSupply": "96885212390186234821925611" + "mAssetSupply": "2408561414261010026320879385" }, { - "type": "redeemBassets", - "inputQtys": [ - "679950268431325726769152", - "1479232505388556353536000", - "453314331684695592402944" - ], - "expectedQty": "2620358693000912765151712", - "swapFee": "1573159111267308043917", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2677082856005043200", + "expectedQty": "2666312941794641426", + "swapFee": "1606249713603025", "reserves": [ - "40020659610241925793481376", - "17196967878665722782706176", - "37103492825917162156279913" + "840299388300986082309432972", + "569425398501324161288878078", + "999386537987048838263225979" ], - "mAssetSupply": "94264853697185322056773899" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "167377602783679338250240", - "expectedQty": "167019745746164557703261", - "reserves": [ - "40020659610241925793481376", - "17196967878665722782706176", - "37270870428700841494530153" - ] + "mAssetSupply": "2408561411585533420029439210" }, { "type": "mintMulti", "inputQtys": [ - "2708013721542141", - "10697938901794112", - "1673969267886858" + "259197071474553639665664", + "58258352903460891918336", + "95293056088338799263744" ], - "expectedQty": "15151626226507822", + "expectedQty": "412597742963166486475343", "reserves": [ - "40020659612949939515023517", - "17196967889363661684500288", - "37270870430374810762417011" + "840558585372460635949098636", + "569483656854227622180796414", + "999481831043137177062489723" ], - "mAssetSupply": "94431873458083112840984982" + "mAssetSupply": "2408974009328496586515914553" }, { - "type": "redeemMasset", - "inputQty": "911078949530550067", - "expectedQtys": [ - "386003587461497353", - "165866613967716441", - "359481573594105733" + "type": "redeemBassets", + "inputQtys": [ + "1458424064131926", + "11335356483375", + "539022348648213" ], - "redemptionFee": "273323684859165", + "expectedQty": "2006839476355405", + "swapFee": "1204826581762", "reserves": [ - "40020659226946352053526164", - "17196967723497047716783847", - "37270870070893237168311278" + "840558585371002211884966710", + "569483656854216286824313039", + "999481831042598154713841510" ], - "mAssetSupply": "94431872547277486995294080" + "mAssetSupply": "2408974009326489747039559148" }, { "type": "redeemMasset", - "inputQty": "309565591936805108501708", + "inputQty": "162935587298214412288", "expectedQtys": [ - "131155954271383292152234", - "56358009985772309497687", - "122144328081967163307924" - ], - "redemptionFee": "92869677581041532550", - "reserves": [ - "39889503272674968761373930", - "17140609713511275407286160", - "37148725742811270005003354" + "56835739681654017490", + "38506566272994046283", + "67581594137911388097" ], - "mAssetSupply": "94122399825018262928324922" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "696978351754343037796352", - "expectedQty": "690969504981587059831012", - "swapFee": "418187011052605822677", + "redemptionFee": "48880676189464323", "reserves": [ - "39889503272674968761373930", - "16449640208529688347455148", - "37148725742811270005003354" + "840558528535262530230949220", + "569483618347650013830266756", + "999481763461004016802453413" ], - "mAssetSupply": "93425839660274972496351247" + "mAssetSupply": "2408973846439783125014611183" }, { "type": "mintMulti", "inputQtys": [ - "28996408571913698279424", - "70285650068501036007424", - "67528925514676427554816" + "39573744287957892726784", + "248068216224293240963072", + "189108545142079650529280" ], - "expectedQty": "167164625269256027268833", + "expectedQty": "477203235510564070196369", "reserves": [ - "39918499681246882459653354", - "16519925858598189383462572", - "37216254668325946432558170" + "840598102279550488123676004", + "569731686563874307071229828", + "999670872006146096452982693" ], - "mAssetSupply": "93593004285544228523620080" + "mAssetSupply": "2409451049675293689084807552" }, { - "type": "mintMulti", - "inputQtys": [ - "17814279786431145574400", - "27190289269165291208704", - "12485246847053868302336" - ], - "expectedQty": "57638196681207283064420", + "type": "swap", + "inputIndex": 0, + "inputQty": "25035352396885797453692928", + "outputIndex": 2, + "expectedQty": "25048910122984120521069801", + "swapFee": "15010577019674607104624", "reserves": [ - "39936313961033313605227754", - "16547116147867354674671276", - "37228739915173000300860506" + "865633454676436285577368932", + "569731686563874307071229828", + "974621961883161975931912892" ], - "mAssetSupply": "93650642482225435806684500" + "mAssetSupply": "2409466060252313363691912176", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "3221223948879229616128", - "21013806322985954443264", - "18214475331144597372928" - ], - "expectedQty": "42574819664561058878847", - "swapFee": "25560227935497934087", + "type": "mint", + "inputIndex": 1, + "inputQty": "3209475297073421317308416", + "expectedQty": "3220403142288166096912689", "reserves": [ - "39933092737084434375611626", - "16526102341544368720228012", - "37210525439841855703487578" - ], - "mAssetSupply": "93608067662560874747805653" + "865633454676436285577368932", + "572941161860947728388538244", + "974621961883161975931912892" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "53853960917606096896", - "expectedQty": "53945610029714388184", - "swapFee": "32312376550563658", + "type": "redeemMasset", + "inputQty": "60879042437004385687961", + "expectedQtys": [ + "21835877533488844882566", + "14452621922944057609149", + "24585147080624580791864" + ], + "redemptionFee": "18263712731101315706", "reserves": [ - "39933092737084434375611626", - "16526102341544368720228012", - "37210471494231825989099394" + "865611618798902796732486366", + "572926709239024784330929095", + "974597376736081351351121028" ], - "mAssetSupply": "93608013840912333692272415" + "mAssetSupply": "2412625602615877256504452610" }, { "type": "mintMulti", "inputQtys": [ - "13712804941310455808", - "23074851019682299904", - "25239213968403808256" + "2652468291585762304", + "5189786241781104640", + "2571326465928119808" ], - "expectedQty": "62123303486697497975", + "expectedQty": "10424349264122097922", "reserves": [ - "39933106449889375686067434", - "16526125416395388402527916", - "37210496733445794392907650" + "865611621451371088318248670", + "572926714428811026112033735", + "974597379307407817279240836" ], - "mAssetSupply": "93608075964215820389770390" + "mAssetSupply": "2412625613040226520626550532" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "4352842009995924992", - "expectedQty": "4342839651222056770", + "inputIndex": 1, + "inputQty": "1623987045237933171802112", + "expectedQty": "1629450122612632831742293", "reserves": [ - "39933106449889375686067434", - "16526125416395388402527916", - "37210501086287804388832642" + "865611621451371088318248670", + "574550701474048959283835847", + "974597379307407817279240836" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2135515730402961260544", - "expectedQty": "2139149579644969419442", - "swapFee": "1281309438241776756", + "type": "redeemBassets", + "inputQtys": [ + "11722605084898307665297408", + "11246349465148123345059840", + "16298589043668994765094912" + ], + "expectedQty": "39266952549352495143816089", + "swapFee": "23574316119283066926445", "reserves": [ - "39933106449889375686067434", - "16526125416395388402527916", - "37208361936708159419413200" + "853889016366472780652951262", + "563304352008900835938776007", + "958298790263738822514145924" ], - "mAssetSupply": "93605946072634506892343372" + "mAssetSupply": "2374988110613486658314476736" }, { - "type": "redeemMasset", - "inputQty": "10556780599824972", - "expectedQtys": [ - "4502262854337048", - "1863239983138312", - "4195061208889090" + "type": "redeemBassets", + "inputQtys": [ + "1750884429166275905716224", + "5720646192932786328829952", + "3307499740786173587488768" ], - "redemptionFee": "3167034179947", + "expectedQty": "10791283167969488169972595", + "swapFee": "6478657095038716131662", "reserves": [ - "39933106445387112831730386", - "16526125414532148419389604", - "37208361932513098210524110" + "852138131937306504747235038", + "557583705815968049609946055", + "954991290522952648926657156" ], - "mAssetSupply": "93605946062080893326698347" + "mAssetSupply": "2364196827445517170144504141" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "563883815910713589760", - "expectedQty": "562259236978647938456", + "type": "redeemBassets", + "inputQtys": [ + "11869883000084838521765888", + "20844869098300837394907136", + "1056625464246431014453248" + ], + "expectedQty": "33834105529651678510009353", + "swapFee": "20312650908336008711232", "reserves": [ - "39933670329203023545320146", - "16526125414532148419389604", - "37208361932513098210524110" - ] + "840268248937221666225469150", + "536738836717667212215038919", + "953934665058706217912203908" + ], + "mAssetSupply": "2330362721915865491634494788" }, { "type": "mintMulti", "inputQtys": [ - "1017314870068141856129024", - "2178977811061693132832768", - "839227211235255564369920" + "11277999400386780", + "10386196145450780", + "9995482324028058" ], - "expectedQty": "4047403741062273599072928", + "expectedQty": "31669305889387790", "reserves": [ - "40950985199271165401449170", - "18705103225593841552222372", - "38047589143748353774894030" + "840268248948499665625855930", + "536738836728053408360489699", + "953934665068701700236231966" ], - "mAssetSupply": "97653912062380145573709731" + "mAssetSupply": "2330362721947534797523882578" }, { "type": "mint", "inputIndex": 0, - "inputQty": "225077801165838773911552", - "expectedQty": "224510033572978126440663", + "inputQty": "1588279571103261797646336", + "expectedQty": "1586800847292496714320616", "reserves": [ - "41176063000437004175360722", - "18705103225593841552222372", - "38047589143748353774894030" + "841856528519602927423502266", + "536738836728053408360489699", + "953934665068701700236231966" ] }, { "type": "redeemMasset", - "inputQty": "29826678674992310675046", + "inputQty": "9613738557496960614", "expectedQtys": [ - "12543896094397432113016", - "5698331851064469271017", - "11590836279234317990392" + "3469612216066343740", + "2212105699321103607", + "3931529013704683783" ], - "redemptionFee": "8948003602497693202", + "redemptionFee": "2884121567249088", "reserves": [ - "41163519104342606743247706", - "18699404893742777082951355", - "38035998307469119456903638" + "841856525049990711357158526", + "536738834515947709039386092", + "953934661137172686531548183" ], - "mAssetSupply": "97848604365281733887168550" + "mAssetSupply": "2331949513183972858308491668" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "79753545366530812805120", - "expectedQty": "79908090532304737930053", - "swapFee": "47852127219918487683", + "inputQty": "1602625417760853326823424", + "expectedQty": "1603156337291808355885218", + "swapFee": "961575250656511996094", "reserves": [ - "41083611013810302005317653", - "18699404893742777082951355", - "38035998307469119456903638" + "840253368712698903001273308", + "536738834515947709039386092", + "953934661137172686531548183" ], - "mAssetSupply": "97768898672042422992851113" + "mAssetSupply": "2330347849341462661493664338" }, { "type": "mint", "inputIndex": 1, - "inputQty": "80644776461584258039808", - "expectedQty": "81186440641492950036676", + "inputQty": "1307547380417453436698624", + "expectedQty": "1312469026770699804005738", "reserves": [ - "41083611013810302005317653", - "18780049670204361340991163", - "38035998307469119456903638" + "840253368712698903001273308", + "538046381896365162476084716", + "953934661137172686531548183" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "2451057585441778696192", - "expectedQty": "2454227213314386134012", - "swapFee": "1470634551265067217", + "inputQty": "462451763714596834115584", + "expectedQty": "461568342773751330247629", "reserves": [ - "41083611013810302005317653", - "18780049670204361340991163", - "38033544080255805070769626" - ], - "mAssetSupply": "97847635525733025429258814" + "840253368712698903001273308", + "538046381896365162476084716", + "954397112900887283365663767" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "44026863875589668864", - "expectedQty": "44111228698560641589", - "swapFee": "26416118325353801", + "inputQty": "15725107303180597337260032", + "expectedQty": "15729261687112100196988415", + "swapFee": "9435064381908358402356", "reserves": [ - "41083566902581603444676064", - "18780049670204361340991163", - "38033544080255805070769626" + "824524107025586802804284893", + "538046381896365162476084716", + "954397112900887283365663767" ], - "mAssetSupply": "97847591525285268164943751" + "mAssetSupply": "2316406214472208423649060029" }, { - "type": "redeemBassets", - "inputQtys": [ - "3186633048808972353536", - "10054882475192430362624", - "2445671469649705828352" + "type": "redeemMasset", + "inputQty": "128657854571347483138457", + "expectedQtys": [ + "45781986569931457772163", + "29875211676758398226786", + "52993230195334787843628" ], - "expectedQty": "15741790697305977649614", - "swapFee": "9450744865302768250", + "redemptionFee": "38597356371404244941", "reserves": [ - "41080380269532794472322528", - "18769994787729168910628539", - "38031098408786155364941274" + "824478325039016871346512730", + "538016506684688404077857930", + "954344119670691948577820139" ], - "mAssetSupply": "97831849734587962187294137" + "mAssetSupply": "2316277595214993447570166513" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "737504856800242040832", - "outputIndex": 0, - "expectedQty": "743862559825180050391", - "swapFee": "445463279377955254", + "type": "redeemMasset", + "inputQty": "698202768328581500108", + "expectedQtys": [ + "248450511390905904928", + "162127338176214490278", + "287584618508760270926" + ], + "redemptionFee": "209460830498574450", "reserves": [ - "41079636406972969292272137", - "18770732292585969152669371", - "38031098408786155364941274" + "824478076588505480440607802", + "538016344557350227863367652", + "954343832086073439817549213" ], - "mAssetSupply": "97831850180051241565249391", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2316276897221685949487240855" }, { "type": "redeemMasset", - "inputQty": "1016139734184010920755", + "inputQty": "112060147912126710677504", "expectedQtys": [ - "426549512729350144417", - "194905491218431345788", - "394895084613653174919" + "39875810177547139665004", + "26021113522821105243758", + "46156756101800433867161" ], - "redemptionFee": "304841920255203276", + "redemptionFee": "33618044373638013203", "reserves": [ - "41079209857460239942127720", - "18770537387094750721323583", - "38030703513701541711766355" + "824438200778327933300942798", + "537990323443827406758123894", + "954297675329971639383682052" ], - "mAssetSupply": "97830834345158977809531912" + "mAssetSupply": "2316164870691818196414576554" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "136123417150184061140992", - "outputIndex": 0, - "expectedQty": "136122590718043604536097", - "swapFee": "81518653392101532612", - "reserves": [ - "40943087266742196337591623", - "18770537387094750721323583", - "38166826930851725772907347" + "type": "redeemMasset", + "inputQty": "18821989722743164528230", + "expectedQtys": [ + "6697671771202693708217", + "4370591512023795259884", + "7752640034568762095393" ], - "mAssetSupply": "97830915863812369911064524", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "23169970574405218074624", - "expectedQty": "23002000621839171527118", - "swapFee": "13901982344643130844", + "redemptionFee": "5646596916822949358", "reserves": [ - "40943087266742196337591623", - "18747535386472911549796465", - "38166826930851725772907347" + "824431503106556730607234581", + "537985952852315382962864010", + "954289922689937070621586659" ], - "mAssetSupply": "97807759795220309336120744" + "mAssetSupply": "2316146054348692370072997682" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "115505234835541032960", - "outputIndex": 1, - "expectedQty": "114446051976654660883", - "swapFee": "69169719971497591", + "type": "redeemMasset", + "inputQty": "310529964869012053137817", + "expectedQtys": [ + "110499889249361827538493", + "72107128347095372644362", + "127905023487913665658513" + ], + "redemptionFee": "93158989460703615941", "reserves": [ - "40943087266742196337591623", - "18747420940420934895135582", - "38166942436086561313940307" + "824321003217307368779696088", + "537913845723968287590219648", + "954162017666449156955928146" ], - "mAssetSupply": "97807759864390029307618335", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2315835617542812818723475806" }, { - "type": "redeemMasset", - "inputQty": "229572011133241131008", - "expectedQtys": [ - "96071795149918033803", - "43990292486820461821", - "89557649898983373047" + "type": "mintMulti", + "inputQtys": [ + "689213910258807138680832", + "203147077738073738444800", + "670241335706578430459904" ], - "redemptionFee": "68871603339972339", + "expectedQty": "1561477967615355199769171", "reserves": [ - "40942991194947046419557820", - "18747376950128448074673761", - "38166852878436662330567260" + "825010217127566175918376920", + "538116992801706361328664448", + "954832259002155735386388050" ], - "mAssetSupply": "97807530361250499406459666" + "mAssetSupply": "2317397095510428173923244977" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "222363176435747987128320", - "outputIndex": 0, - "expectedQty": "224245546519751125165446", - "swapFee": "134300818659104755620", + "inputQty": "319273259779769635962880", + "expectedQty": "320443835860943609706858", "reserves": [ - "40718745648427295294392374", - "18969740126564196061802081", - "38166852878436662330567260" - ], - "mAssetSupply": "97807664662069158511215286", - "hardLimitError": false, - "insufficientLiquidityError": false + "825010217127566175918376920", + "538436266061486130964627328", + "954832259002155735386388050" + ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "26125692497526278586368", + "inputQty": "439172562376871247872", "outputIndex": 0, - "expectedQty": "26123462999003402323004", - "swapFee": "15645663314846784103", - "reserves": [ - "40692622185428291892069370", - "18969740126564196061802081", - "38192978570934188609153628" - ], - "mAssetSupply": "97807680307732473357999389", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "5834252008015644034334720", - "outputIndex": 2, - "expectedQty": "5861540275188209689291573", - "swapFee": "3516975203945864400691", + "expectedQty": "438407035223686285831", + "swapFee": "262988834855930386", "reserves": [ - "40692622185428291892069370", - "24803992134579840096136801", - "32331438295745978919862055" + "825009778720530952232091089", + "538436266061486130964627328", + "954832698174718112257635922" ], - "mAssetSupply": "97811197282936419222400080", + "mAssetSupply": "2317717539609277952388882221", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "2447076347581830057164", - "expectedQtys": [ - "1017757502723366475364", - "620369190695699158141", - "808637097638703338402" + "type": "mintMulti", + "inputQtys": [ + "511856215290966477635584", + "768888943202787919921152", + "464554487995761894096896" ], - "redemptionFee": "734122904274549017", + "expectedQty": "1746791986435119773022855", "reserves": [ - "40691604427925568525594006", - "24803371765389144396978660", - "32330629658648340216523653" + "825521634935821918709726673", + "539205155004688918884548480", + "955297252662713874151732818" ], - "mAssetSupply": "97808750940711741666891933" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "5853110306207189434368", - "expectedQty": "5841903371981862123485", - "reserves": [ - "40697457538231775715028374", - "24803371765389144396978660", - "32330629658648340216523653" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "12918580466719309824", - "expectedQty": "12917333986872869574", - "reserves": [ - "40697457538231775715028374", - "24803371765389144396978660", - "32330642577228806935833477" - ] + "mAssetSupply": "2319464331595713072161905076" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3917310651214736896", - "outputIndex": 0, - "expectedQty": "3932623588355145198", - "swapFee": "2356469277326554", + "type": "mintMulti", + "inputQtys": [ + "369221486810875014676480", + "453561973317776212754432", + "2556475290829602378743808" + ], + "expectedQty": "3375621918004775019688780", "reserves": [ - "40697453605608187359883176", - "24803375682699795611715556", - "32330642577228806935833477" + "825890856422632793724403153", + "539658716978006695097302912", + "957853727953543476530476626" ], - "mAssetSupply": "97814605763774179679211546", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2322839953513717847181593856" }, { - "type": "redeemMasset", - "inputQty": "77885220677404070405734", - "expectedQtys": [ - "32395767598219432049176", - "19743849383179654681038", - "25735663793193000928510" + "type": "mintMulti", + "inputQtys": [ + "20881312062004558561280", + "1537001145237123366912", + "74625246274657443643392" ], - "redemptionFee": "23365566203221221121", + "expectedQty": "96886118493246827211685", "reserves": [ - "40665057838009967927834000", - "24783631833316615957034518", - "32304906913435613934904967" + "825911737734694798282964433", + "539660253979151932220669824", + "957928353199818133974120018" ], - "mAssetSupply": "97736743908662978830026933" + "mAssetSupply": "2322936839632211094008805541" }, { - "type": "redeemMasset", - "inputQty": "4980278229950502", - "expectedQtys": [ - "2071509006570173", - "1262497074582963", - "1645636553479639" + "type": "mintMulti", + "inputQtys": [ + "102920855034457145475072", + "32461178262374303399936", + "29487811821748858388480" ], - "redemptionFee": "1494083468985", + "expectedQty": "164848448129691040161254", "reserves": [ - "40665057835938458921263827", - "24783631832054118882451555", - "32304906911789977381425328" + "826014658589729255428439505", + "539692715157414306524069760", + "957957841011639882832508498" ], - "mAssetSupply": "97736743903684194683545416" + "mAssetSupply": "2323101688080340785048966795" }, { - "type": "redeemMasset", - "inputQty": "77626331036620344524", - "expectedQtys": [ - "32288084413098159141", - "19678221038930996705", - "25650118721909875621" + "type": "redeemBassets", + "inputQtys": [ + "457902355152934273024", + "412544414366440947712", + "570366878543260090368" ], - "redemptionFee": "23287899310986103", + "expectedQty": "1440839448982722545558", + "swapFee": "865022682999433187", "reserves": [ - "40665025547854045823104686", - "24783612153833079951454850", - "32304881261671255471549707" + "826014200687374102494166481", + "539692302612999940083122048", + "957957270644761339572418130" ], - "mAssetSupply": "97736666300641057374186995" + "mAssetSupply": "2323100247240891802326421237" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "48011996053713153163264", - "expectedQty": "47987608705887344580639", - "swapFee": "28807197632227891897", + "type": "redeemBassets", + "inputQtys": [ + "662619679174880414138368", + "10540329576951791568814080", + "4621267579917000475934720" + ], + "expectedQty": "15854027547842115837813483", + "swapFee": "9518127405148358517798", "reserves": [ - "40665025547854045823104686", - "24783612153833079951454850", - "32256893652965368126969068" + "825351581008199222080028113", + "529151973036048148514307968", + "953336003064844339096483410" ], - "mAssetSupply": "97688683111784976448915628" + "mAssetSupply": "2307246219693049686488607754" }, { - "type": "redeemMasset", - "inputQty": "36079726083843745382", - "expectedQtys": [ - "15014460031013040923", - "9150677986663474239", - "11909984906001000801" + "type": "redeemBassets", + "inputQtys": [ + "2730466852789849423872", + "8379670414230553624576", + "9407225125881392398336" ], - "redemptionFee": "10823917825153123", + "expectedQty": "20528328953674590658512", + "swapFee": "12324392007409199915", "reserves": [ - "40665010533394014810063763", - "24783603003155093287980611", - "32256881742980462125968267" + "825348850541346432230604241", + "529143593365633917960683392", + "953326595839718457704085074" ], - "mAssetSupply": "97688647042882810430323369" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "550904385265810637062144", - "expectedQty": "549827893668852008051612", - "reserves": [ - "41215914918659825447125907", - "24783603003155093287980611", - "32256881742980462125968267" - ] + "mAssetSupply": "2307225691364096011897949242" }, { - "type": "redeemMasset", - "inputQty": "3693818378524267905024", - "expectedQtys": [ - "1549275178399632962175", - "931596958113754009410", - "1212511873522590638882" + "type": "redeemBassets", + "inputQtys": [ + "101842850147247063040000", + "103041662996909997948928", + "71947359019795476381696" ], - "redemptionFee": "1108145513557280371", + "expectedQty": "276994757775038645587524", + "swapFee": "166296632644609953324", "reserves": [ - "41214365643481425814163732", - "24782671406196979533971201", - "32255669231106939535329385" + "825247007691199185167564241", + "529040551702637007962734464", + "953254648480698662227703378" ], - "mAssetSupply": "98234782226318651727750328" + "mAssetSupply": "2306948696606320973252361718" }, { "type": "redeemMasset", - "inputQty": "3956131944167392883507", + "inputQty": "31311931950446235615232", "expectedQtys": [ - "1659295719358324365452", - "997753572972207662787", - "1298617437016864354282" + "11197616211272138183561", + "7178448395395472503564", + "12934527003207489759646" ], - "redemptionFee": "1186839583250217865", + "redemptionFee": "9393579585133870684", "reserves": [ - "41212706347762067489798280", - "24781673652624007326308414", - "32254370613669922670975103" + "825235810074987913029380680", + "529033373254241612490230900", + "953241713953695454737943732" ], - "mAssetSupply": "98230827281214067585084686" + "mAssetSupply": "2306917394067950112150617170" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1082236434309898248912896", - "expectedQty": "1084903408174932890554308", + "type": "redeem", + "inputIndex": 2, + "inputQty": "9928090973918492503310336", + "expectedQty": "9941723686733209019778527", + "swapFee": "5956854584351095501986", "reserves": [ - "41212706347762067489798280", - "25863910086933905575221310", - "32254370613669922670975103" - ] + "825235810074987913029380680", + "529033373254241612490230900", + "943299990266962245718165205" + ], + "mAssetSupply": "2296995259948615970742808820" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2098575762401900026134528", - "expectedQty": "2102726341923303885178562", + "inputIndex": 0, + "inputQty": "1415458409371740686778368", + "expectedQty": "1414181710898167603245242", "reserves": [ - "41212706347762067489798280", - "27962485849335805601355838", - "32254370613669922670975103" + "826651268484359653716159048", + "529033373254241612490230900", + "943299990266962245718165205" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "2525842538378802176", - "5820867294210888704", - "230325608404127264" - ], - "expectedQty": "8582746982821847082", - "reserves": [ - "41212708873604605868600456", - "27962491670203099812244542", - "32254370843995531075102367" - ], - "mAssetSupply": "101418465614059287182664638" - }, - { - "type": "redeemMasset", - "inputQty": "11456800155187", - "expectedQtys": [ - "4654222649001", - "3157852653002", - "3642542007413" - ], - "redemptionFee": "3437040046", - "reserves": [ - "41212708873599951645951455", - "27962491670199941959591540", - "32254370843991888533094954" - ], - "mAssetSupply": "101418465614047833819549497" - }, { "type": "mint", "inputIndex": 1, - "inputQty": "176573741486937431080960", - "expectedQty": "176867357958659065216452", + "inputQty": "183131865494940165341184", + "expectedQty": "183824827025644333925022", "reserves": [ - "41212708873599951645951455", - "28139065411686879390672500", - "32254370843991888533094954" + "826651268484359653716159048", + "529216505119736552655572084", + "943299990266962245718165205" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "598087458493324844859392", + "inputIndex": 2, + "inputQty": "48204232662699963580416", "outputIndex": 1, - "expectedQty": "595671177908467316651543", - "swapFee": "358252533173138778540", + "expectedQty": "47900774241320945154971", + "swapFee": "28866507143972954844", "reserves": [ - "41810796332093276490810847", - "27543394233778412074020957", - "32254370843991888533094954" + "826651268484359653716159048", + "529168604345495231710417113", + "943348194499624945681745621" ], - "mAssetSupply": "101595691224539666023544489", + "mAssetSupply": "2298593295353046926652933928", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2322055718250112278855680", - "expectedQty": "2315574228819686728659111", - "swapFee": "1393233430950067367313", + "type": "redeemMasset", + "inputQty": "1827857135343271464140", + "expectedQtys": [ + "657161544179059499850", + "420672259779327830742", + "749931899738723363754" + ], + "redemptionFee": "548357140602981439", "reserves": [ - "41810796332093276490810847", - "25227820004958725345361846", - "32254370843991888533094954" + "826650611322815474656659198", + "529168183673235452382586371", + "943347444567725206958381867" ], - "mAssetSupply": "99275028739720503812056122" + "mAssetSupply": "2298591468044268723984451227" }, { "type": "redeemMasset", - "inputQty": "97375812865244694734438", + "inputQty": "174628681254609853874176", "expectedQtys": [ - "40998616902625727629520", - "24737766759007751220570", - "31627826056328990102125" + "62783491998503707891013", + "40189925429738040328146", + "71646528686468348217922" ], - "redemptionFee": "29212743859573408420", + "redemptionFee": "52388604376382956162", "reserves": [ - "41769797715190650763181327", - "25203082238199717594141276", - "32222743017935559542992829" + "826587827830816970948768185", + "529127993747805714342258225", + "943275798039038738610163945" ], - "mAssetSupply": "99177682139599118690730104" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "3818180577648117209366528", - "expectedQty": "3817089680625102380447235", - "reserves": [ - "41769797715190650763181327", - "25203082238199717594141276", - "36040923595583676752359357" - ] + "mAssetSupply": "2298416891751618490513533213" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "736971679831900825845760", - "expectedQty": "737787277433442770967852", - "swapFee": "442183007899140495507", + "inputIndex": 2, + "inputQty": "3597032349293143912349696", + "expectedQty": "3601816488366746947776177", + "swapFee": "2158219409575886347409", "reserves": [ - "41032010437757207992213475", - "25203082238199717594141276", - "36040923595583676752359357" + "826587827830816970948768185", + "529127993747805714342258225", + "939673981550671991662387768" ], - "mAssetSupply": "102258242323400219385827086" + "mAssetSupply": "2294822017621734922487530926" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "505706859179737041862656", - "expectedQty": "503885763588581404454597", - "swapFee": "303424115507842225117", + "type": "redeemMasset", + "inputQty": "2225051248489387622", + "expectedQtys": [ + "801216174543725357", + "512886704498369227", + "910831211720187289" + ], + "redemptionFee": "667515374546816", "reserves": [ - "41032010437757207992213475", - "24699196474611136189686679", - "36040923595583676752359357" + "826587827029600796405042828", + "529127993234919009843888998", + "939673980639840779942200479" ], - "mAssetSupply": "101752838888335990186189547" + "mAssetSupply": "2294822015397351189372690120" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2485276491075623424", - "1652863259613665536", - "3749042000442657792" + "57181446988539090698240", + "143872859599862813949952", + "155340512583440190668800" ], - "expectedQty": "7885392071935300575", - "swapFee": "4734075688574324", + "expectedQty": "356585837260456902681719", "reserves": [ - "41032007952480716916590051", - "24699194821747876576021143", - "36040919846541676309701565" + "826645008476589335495741068", + "529271866094518872657838950", + "939829321152424220132869279" ], - "mAssetSupply": "101752831002943918250888972" + "mAssetSupply": "2295178601234611646275371839" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "24593273880034398208", - "expectedQty": "24551035275991132265", + "type": "redeem", + "inputIndex": 1, + "inputQty": "26011880108792057092374528", + "expectedQty": "25892098706870310792474107", + "swapFee": "15607128065275234255424", "reserves": [ - "41032032545754596950988259", - "24699194821747876576021143", - "36040919846541676309701565" - ] + "826645008476589335495741068", + "503379767387648561865364843", + "939829321152424220132869279" + ], + "mAssetSupply": "2269182328253884864417252735" }, { "type": "mintMulti", "inputQtys": [ - "183129125943014181568512", - "479490104852979038289920", - "1163936800242632990130176" + "1449551901752807424", + "1422013387343814400", + "1812291683498956032" ], - "expectedQty": "1826848654623226270075019", + "expectedQty": "4684655979471220729", "reserves": [ - "41215161671697611132556771", - "25178684926600855614311063", - "37204856646784309299831741" + "826645009926141237248548492", + "503379768809661949209179243", + "939829322964715903631825311" ], - "mAssetSupply": "103579704208602420512096256" + "mAssetSupply": "2269182332938540843888473464" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "29587533884688883712", - "expectedQty": "29617480142238325022", - "swapFee": "17752520330813330", + "inputQty": "6131766327747708564013056", + "outputIndex": 2, + "expectedQty": "6133928574039227776810303", + "swapFee": "3675047870667544387522", "reserves": [ - "41215132054217468894231749", - "25178684926600855614311063", - "37204856646784309299831741" + "832776776253888945812561548", + "503379768809661949209179243", + "933695394390676675855015008" ], - "mAssetSupply": "103579674638821056154025874" + "mAssetSupply": "2269186007986411511432860986", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1419908391865529011273728", - "expectedQty": "1421214557079250031112425", - "swapFee": "851945035119317406764", + "type": "redeemMasset", + "inputQty": "62459746372275647230771", + "expectedQtys": [ + "22915451416789175363795", + "13851460517716986324624", + "25692420896372761041921" + ], + "redemptionFee": "18737923911682694169", "reserves": [ - "39793917497138218863119324", - "25178684926600855614311063", - "37204856646784309299831741" + "832753860802472156637197753", + "503365917349144232222854619", + "933669701969780303093973087" ], - "mAssetSupply": "102160618191990646460158910" + "mAssetSupply": "2269123566977963147468324384" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "980174293570344382889984", - "outputIndex": 0, - "expectedQty": "983510929125314297153101", - "swapFee": "589722975075869746832", + "inputIndex": 0, + "inputQty": "492775999461133254656", + "outputIndex": 1, + "expectedQty": "489820233474203074576", + "swapFee": "295332141873723615", "reserves": [ - "38810406568012904565966223", - "26158859220171199997201047", - "37204856646784309299831741" + "832754353578471617770452409", + "503365427528910758019780043", + "933669701969780303093973087" ], - "mAssetSupply": "102161207914965722329905742", + "mAssetSupply": "2269123567273295289342047999", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "2108706554768983326720", - "expectedQty": "2106899569589722614790", + "inputQty": "365073523585382313099264", + "expectedQty": "364334287081595034688155", "reserves": [ - "38810406568012904565966223", - "26158859220171199997201047", - "37206965353339078283158461" + "832754353578471617770452409", + "503365427528910758019780043", + "934034775493365685407072351" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "3151256400947", - "19027284151376", - "17146467623552" - ], - "expectedQty": "39353796542633", - "swapFee": "23626453797", + "type": "redeem", + "inputIndex": 2, + "inputQty": "6325583710863746924544", + "expectedQty": "6334621964056400456954", + "swapFee": "3795350226518248154", "reserves": [ - "38810406568009753309565276", - "26158859220152172713049671", - "37206965353321931815534909" + "832754353578471617770452409", + "503365427528910758019780043", + "934028440871401629006615397" ], - "mAssetSupply": "102163314814495958255977899" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "513029312482082180562944", - "expectedQty": "512404369477176434843051", - "reserves": [ - "39323435880491835490128220", - "26158859220152172713049671", - "37206965353321931815534909" - ] + "mAssetSupply": "2269481579772016247148059764" }, { - "type": "redeemMasset", - "inputQty": "4381600840067740965273", - "expectedQtys": [ - "1677591461519492448868", - "1115972648071383607325", - "1587299939290141395968" - ], - "redemptionFee": "1314480252020322289", + "type": "redeem", + "inputIndex": 2, + "inputQty": "955491659025488908648448", + "expectedQty": "956854204773334884453792", + "swapFee": "573294995415293345189", "reserves": [ - "39321758289030315997679352", - "26157743247504101329442346", - "37205378053382641674138941" + "832754353578471617770452409", + "503365427528910758019780043", + "933071586666628294122161605" ], - "mAssetSupply": "102671338897613318970177966" + "mAssetSupply": "2268526661407986173532756505" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "707416242526264993251328", - "1479064660439630585266176", - "1241770940674780008808448" + "98056139481731234267136", + "395347125268647950417920", + "184030908989152430129152" ], - "expectedQty": "3430224697729373259964165", - "swapFee": "2059370440902165255131", + "expectedQty": "678647741046596511265600", "reserves": [ - "38614342046504051004428024", - "24678678587064470744176170", - "35963607112707861665330493" + "832852409717953349004719545", + "503760774654179405970197963", + "933255617575617446552290757" ], - "mAssetSupply": "99241114199883945710213801" + "mAssetSupply": "2269205309149032770044022105" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2124520001518250229760", - "expectedQty": "2126232815947013733320", - "swapFee": "1274712000910950137", + "type": "mint", + "inputIndex": 1, + "inputQty": "14618917993140892184084480", + "expectedQty": "14679272173168427235169105", "reserves": [ - "38612215813688103990694704", - "24678678587064470744176170", - "35963607112707861665330493" - ], - "mAssetSupply": "99238990954594428370934178" + "832852409717953349004719545", + "518379692647320298154282443", + "933255617575617446552290757" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "579395829988306502811648", - "expectedQty": "578875575918433310724090", + "inputQty": "4904901324352684071845888", + "expectedQty": "4895377725375295313014168", "reserves": [ - "38612215813688103990694704", - "24678678587064470744176170", - "36543002942696168168142141" + "832852409717953349004719545", + "518379692647320298154282443", + "938160518899970130624136645" ] }, { - "type": "redeemMasset", - "inputQty": "11043764296141923103539", - "expectedQtys": [ - "4270741280617365808860", - "2729608989585645843526", - "4041874000138806041590" - ], - "redemptionFee": "3313129288842576931", + "type": "redeem", + "inputIndex": 1, + "inputQty": "98728490899194947567616", + "expectedQty": "98275583532859192002585", + "swapFee": "59237094539516968540", "reserves": [ - "38607945072407486624885844", - "24675948978074885098332644", - "36538961068696029362100551" + "832852409717953349004719545", + "518281417063787438962279858", + "938160518899970130624136645" ], - "mAssetSupply": "99806826079346008601131660" + "mAssetSupply": "2288681289793771837161606302" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "266186118685864288", - "expectedQty": "265935622640646661", + "type": "mintMulti", + "inputQtys": [ + "99849138524242100224", + "136141521320227176448", + "143853254930021351424" + ], + "expectedQty": "380005551668221387639", "reserves": [ - "38607945072407486624885844", - "24675948978074885098332644", - "36538961334882148047964839" - ] + "832852509567091873246819769", + "518281553205308759189456306", + "938160662753225060645488069" + ], + "mAssetSupply": "2288681669799323505382993941" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "172822822784938291494912", - "expectedQty": "172879604078936039668669", - "swapFee": "103693693670962974896", + "type": "mintMulti", + "inputQtys": [ + "26609519640842669654016", + "12595378321502641324032", + "36648811790945956659200" + ], + "expectedQty": "75805182224103745125887", "reserves": [ - "38607945072407486624885844", - "24675948978074885098332644", - "36366081730803212008296170" + "832879119086732715916473785", + "518294148583630261830780338", + "938197311565016006602147269" ], - "mAssetSupply": "99634107216190363913258305" + "mAssetSupply": "2288757474981547609128119828" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "13150855959022929969152", - "expectedQty": "13154994811738259763299", - "swapFee": "7890513575413757981", + "type": "mint", + "inputIndex": 1, + "inputQty": "109756085729440625879678976", + "expectedQty": "110090821766896451060350788", "reserves": [ - "38607945072407486624885844", - "24675948978074885098332644", - "36352926735991473748532871" - ], - "mAssetSupply": "99620964250744916397047134" + "832879119086732715916473785", + "628050234313070887710459314", + "938197311565016006602147269" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "3151385269067661705216", - "expectedQty": "3140506818098704361976", - "swapFee": "1890831161440597023", + "inputQty": "51832238053025449508864", + "expectedQty": "51948108654927302899642", "reserves": [ - "38607945072407486624885844", - "24672808471256786393970668", - "36352926735991473748532871" - ], - "mAssetSupply": "99617814756307010175938941" + "832879119086732715916473785", + "628102066551123913159968178", + "938197311565016006602147269" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "14324983795555122544640", - "outputIndex": 0, - "expectedQty": "14377129494125566584943", - "swapFee": "8619570505123707776", + "inputQty": "650411140329298156584960", + "expectedQty": "651862236002571551873633", "reserves": [ - "38593567942913361058300901", - "24687133455052341516515308", - "36352926735991473748532871" - ], - "mAssetSupply": "99617823375877515299646717", - "hardLimitError": false, - "insufficientLiquidityError": false + "832879119086732715916473785", + "628752477691453211316553138", + "938197311565016006602147269" + ] }, { - "type": "redeemMasset", - "inputQty": "1597190118768873622732", - "expectedQtys": [ - "618591843292255873269", - "395694417581489477580", - "582678025311068066516" + "type": "redeemBassets", + "inputQtys": [ + "9513675939404127928320", + "17721915057459586662400", + "19701549940629426929664" ], - "redemptionFee": "479157035630662086", + "expectedQty": "46945024661205088650392", + "swapFee": "28183925151814141675", "reserves": [ - "38592949351070068802427632", - "24686737760634760027037728", - "36352344057966162680466355" + "832869605410793311788545465", + "628734755776395751729890738", + "938177610015075377175217605" ], - "mAssetSupply": "99616226664915782056686071" + "mAssetSupply": "2399505162068440353954593499" }, { "type": "redeemBassets", "inputQtys": [ - "3878936829357710509080576", - "1947246547290223940730880", - "2636396075441184202293248" + "10855278084264489822191616", + "7504910299715442040635392", + "4294984780120640716800000" ], - "expectedQty": "8460464943697682649209900", - "swapFee": "5079326562155903131404", + "expectedQty": "22661154559768666467911566", + "swapFee": "13604855649250750330945", "reserves": [ - "34714012521712358293347056", - "22739491213344536086306848", - "33715947982524978478173107" + "822014327326528821966353849", + "621229845476680309689255346", + "933882625234954736458417605" ], - "mAssetSupply": "91155761721218099407476171" + "mAssetSupply": "2376844007508671687486681933" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "320432487935313914626048", - "expectedQty": "319333198740197894384406", - "swapFee": "192259492761188348775", + "inputQty": "634755359978254", + "expectedQty": "632947859117851", + "swapFee": "380853215986", "reserves": [ - "34714012521712358293347056", - "22420158014604338191922442", - "33715947982524978478173107" + "822014327326528821966353849", + "621229845476047361830137495", + "933882625234954736458417605" ], - "mAssetSupply": "90835521492775546681198898" + "mAssetSupply": "2376844007508037312979919665" }, { - "type": "redeemMasset", - "inputQty": "78688927894616320", - "expectedQtys": [ - "30063007299876011", - "19416291148591664", - "29198664075117114" + "type": "redeemBassets", + "inputQtys": [ + "973503651589580623183872", + "1379594784324176920444928", + "522877940298293452996608" ], - "redemptionFee": "23606678368384", + "expectedQty": "2877928481320949242725922", + "swapFee": "1727793765051600505939", "reserves": [ - "34714012491649350993471045", - "22420157995188047043330778", - "33715947953326314403055993" + "821040823674939241343169977", + "619850250691723184909692567", + "933359747294656443005420997" ], - "mAssetSupply": "90835521414110225464950962" + "mAssetSupply": "2373966079026716363737193743" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "4026513550950780901523456", + "expectedQty": "4020709691973323554348205", + "reserves": [ + "821040823674939241343169977", + "619850250691723184909692567", + "937386260845607223906944453" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "547417311489851171799040", - "expectedQty": "548948161367389410401760", + "inputQty": "277502940739477537030144", + "expectedQty": "278136028108521295059542", "reserves": [ - "34714012491649350993471045", - "22967575306677898215129818", - "33715947953326314403055993" + "821040823674939241343169977", + "620127753632462662446722711", + "937386260845607223906944453" ] }, { "type": "mintMulti", "inputQtys": [ - "23571432722909691904", - "121755838005811625984", - "132382559226368999424" + "17463950649502209507590144", + "22806747138362941823254528", + "2197526009048658798968832" ], - "expectedQty": "277879439221489768106", + "expectedQty": "42507543336713190847306784", "reserves": [ - "34714036063082073903162949", - "22967697062515904026755802", - "33716080335885540772055417" + "838504774324441450850760121", + "642934500770825604269977239", + "939583786854655882705913285" ], - "mAssetSupply": "91384747454916836365120828" + "mAssetSupply": "2420772468083511399433908274" }, { - "type": "redeemMasset", - "inputQty": "52051858331813806080", - "expectedQtys": [ - "19766843576888923614", - "13078250951030871292", - "19198588283257621757" - ], - "redemptionFee": "15615557499544141", + "type": "mint", + "inputIndex": 1, + "inputQty": "218331823794611716096", + "expectedQty": "218786610518411116455", "reserves": [ - "34714016296238497014239335", - "22967683984264952995884510", - "33716061137297257514433660" - ], - "mAssetSupply": "91384695418674062050858889" + "838504774324441450850760121", + "642934719102649398881693335", + "939583786854655882705913285" + ] }, { - "type": "redeemMasset", - "inputQty": "153167965667740273868", - "expectedQtys": [ - "58165977457408737265", - "38484103293527606497", - "56493827603495962359" + "type": "redeemBassets", + "inputQtys": [ + "969747591328291417489408", + "3134612958342259692011520", + "4719549693041145012027392" ], - "redemptionFee": "45950389700322082", + "expectedQty": "8823866290168679327134640", + "swapFee": "5297498273065046624255", "reserves": [ - "34713958130261039605502070", - "22967645500161659468278013", - "33716004643469654018471301" + "837535026733113159433270713", + "639800106144307139189681815", + "934864237161614737693885893" ], - "mAssetSupply": "91384542296658784010907103" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "118091721044737396834304", - "expectedQty": "117948289643635872011892", - "reserves": [ - "34832049851305777002336374", - "22967645500161659468278013", - "33716004643469654018471301" - ] + "mAssetSupply": "2411948820579953238517890089" }, { - "type": "mintMulti", - "inputQtys": [ - "67722199731927989092352", - "7963209357002865115136", - "66076974798392549965824" - ], - "expectedQty": "141636619069634567622043", + "type": "redeem", + "inputIndex": 2, + "inputQty": "12366023971355865088", + "expectedQty": "12374725889980230885", + "swapFee": "7419614382813519", "reserves": [ - "34899772051037704991428726", - "22975608709518662333393149", - "33782081618268046568437125" + "837535026733113159433270713", + "639800106144307139189681815", + "934864224786888847713655008" ], - "mAssetSupply": "91644127205372054450541038" + "mAssetSupply": "2411948808221348881544838520" }, { "type": "mintMulti", "inputQtys": [ - "119733091003024139091968", - "44440419784600905056256", - "920011688708863033344" + "571656995934267347304448", + "2509681709138228004519936", + "2111386486418506462003200" ], - "expectedQty": "165065716209383008252909", + "expectedQty": "5194961455876480956870406", "reserves": [ - "35019505142040729130520694", - "23020049129303263238449405", - "33783001629956755431470469" + "838106683729047426780575161", + "642309787853445367194201751", + "936975611273307354175658208" ], - "mAssetSupply": "91809192921581437458793947" + "mAssetSupply": "2417143769677225362501708926" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "3926245437808580231168", - "outputIndex": 1, - "expectedQty": "3909476690573520657240", - "swapFee": "2353479181131662333", + "type": "redeemMasset", + "inputQty": "219832482156025715097", + "expectedQtys": [ + "76200597574933911658", + "58398758311877224154", + "85189753140362005150" + ], + "redemptionFee": "65949744646807714", "reserves": [ - "35019505142040729130520694", - "23016139652612689717792165", - "33786927875394564011701637" + "838106607528449851846663503", + "642309729454687055316977597", + "936975526083554213813653058" ], - "mAssetSupply": "91809195275060618590456280", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2417143549910692951122801543" }, { "type": "mint", "inputIndex": 2, - "inputQty": "87883905609509948620800", - "expectedQty": "87798609626058908622785", + "inputQty": "15072483426119", + "expectedQty": "15052859994310", "reserves": [ - "35019505142040729130520694", - "23016139652612689717792165", - "33874811781004073960322437" + "838106607528449851846663503", + "642309729454687055316977597", + "936975526083569286297079177" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "6139627965689868366905344", - "outputIndex": 0, - "expectedQty": "6147327852045868057536938", - "swapFee": "3690329065614143483555", - "reserves": [ - "28872177289994861072983756", - "29155767618302558084697509", - "33874811781004073960322437" - ], - "mAssetSupply": "91900684213752291642562620", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemBassets", - "inputQtys": [ - "39202275088418864103424", - "28113775341436930097152", - "46580884611091105054720" + "type": "redeemMasset", + "inputQty": "3084620115614098050252", + "expectedQtys": [ + "1069222772704846641390", + "819432973912602938774", + "1195355770920405986642" ], - "expectedQty": "113889066426077762269165", - "swapFee": "68374464534367277728", + "redemptionFee": "925386034684229415", "reserves": [ - "28832975014906442208880332", - "29127653842961121154600357", - "33828230896392982855267717" + "838105538305677147000022113", + "642308910021713142714038823", + "936974330727798365891092535" ], - "mAssetSupply": "91786795147326213880293455" + "mAssetSupply": "2417140466215978424568975016" }, { "type": "redeemMasset", - "inputQty": "2557080455455708492595", + "inputQty": "699911330253185220608", "expectedQtys": [ - "803014401950628944692", - "811221371323560579999", - "942135058497117200828" + "242610469079386684143", + "185932270856086568669", + "271230497238769699616" ], - "redemptionFee": "767124136636712547", + "redemptionFee": "209973399075955566", "reserves": [ - "28832172000504491579935640", - "29126842621589797594020358", - "33827288761334485738066889" + "838105295695208067613337970", + "642308724089442286627470154", + "936974059497301127121392919" ], - "mAssetSupply": "91784238833994894808513407" + "mAssetSupply": "2417139766514621570459709974" }, { - "type": "mintMulti", - "inputQtys": [ - "175005065476874829824", - "82386562351795470336", - "137190624262449053696" - ], - "expectedQty": "394587949594131395356", + "type": "mint", + "inputIndex": 0, + "inputQty": "33344159985039446016", + "expectedQty": "33329724237837164086", "reserves": [ - "28832347005569968454765464", - "29126925008152149389490694", - "33827425951958748187120585" - ], - "mAssetSupply": "91784633421944488939908763" + "838105329039368052652783986", + "642308724089442286627470154", + "936974059497301127121392919" + ] }, { "type": "redeemBassets", "inputQtys": [ - "740063646459702935552", - "564766918234312736768", - "409370709608279441408" + "322541670173705337044992", + "179652879714335703695360", + "303203115064012648218624" ], - "expectedQty": "1714451159388524415299", - "swapFee": "1029288268594271211", + "expectedQty": "805236527776053551564725", + "swapFee": "483431975851142816628", "reserves": [ - "28831606941923508751829912", - "29126360241233915076753926", - "33827016581249139907679177" + "837782787369194347315738994", + "642129071209727950923774794", + "936670856382237114473174295" ], - "mAssetSupply": "91782918970785100415493464" + "mAssetSupply": "2416334563316569754745309335" }, { "type": "redeemMasset", - "inputQty": "97167717934775", + "inputQty": "941552360203940413623500", "expectedQtys": [ - "30513967434346", - "30825919959033", - "35800865502936" + "326353696151699452132691", + "250137862647926486105060", + "364875001810237644156062" ], - "redemptionFee": "29150315380", + "redemptionFee": "282465708061182124087", "reserves": [ - "28831606941892994784395566", - "29126360241203089156794893", - "33827016581213339042176241" + "837456433673042647863606303", + "641878933347080024437669734", + "936305981380426876829018233" ], - "mAssetSupply": "91782918970687961847874069" + "mAssetSupply": "2415393293422073875513809922" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "680346072628735246336", - "4153920975817820078080", - "3765448254245425381376" + "2148691086065013119516672", + "415085825619716984537088", + "916667364834296587091968" ], - "expectedQty": "8598617225377734793541", - "swapFee": "5162267695844147364", + "expectedQty": "3479176360507777161856735", "reserves": [ - "28830926595820366049149230", - "29122206320227271336716813", - "33823251132959093616794865" + "839605124759107660983122975", + "642294019172699741422206822", + "937222648745261173416110201" ], - "mAssetSupply": "91774320353462584113080528" + "mAssetSupply": "2418872469782581652675666657" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "120078513278526448", - "466120073394133504", - "201786923493538464" + "3332786280977504950812672", + "1463244592742267342553088", + "134104784929295224012800" ], - "expectedQty": "788064305286513888", + "expectedQty": "4931565156409748595925842", + "swapFee": "2960715523159745004558", "reserves": [ - "28830926715898879327675678", - "29122206786347344730850317", - "33823251334746017110333329" + "836272338478130156032310303", + "640830774579957474079653734", + "937088543960331878192097401" ], - "mAssetSupply": "91774321141526889399594416" + "mAssetSupply": "2413940904626171904079740815" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1079904729502194", - "expectedQty": "1078732094514371", - "swapFee": "647942837701", + "inputIndex": 1, + "inputQty": "81727528810955088592896", + "expectedQty": "81508280871452164430379", + "swapFee": "49036517286573053155", "reserves": [ - "28830926714820147233161307", - "29122206786347344730850317", - "33823251334746017110333329" + "836272338478130156032310303", + "640749266299086021915223355", + "937088543960331878192097401" ], - "mAssetSupply": "91774321140447632612929923" + "mAssetSupply": "2413859226133878235564201074" }, { - "type": "redeemMasset", - "inputQty": "17813258528727388022374", - "expectedQtys": [ - "5594360960543759994456", - "5650881025849136114049", - "6563073004812468700929" + "type": "redeemBassets", + "inputQtys": [ + "17000256942330736516530176", + "51078962309843287550197760", + "22269119990680431078932480" ], - "redemptionFee": "5343977558618216406", + "expectedQty": "90427359134465607173090221", + "swapFee": "54288988874003766563792", "reserves": [ - "28825332353859603473166851", - "29116555905321495594736268", - "33816688261741204641632400" + "819272081535799419515780127", + "589670303989242734365025595", + "914819423969651447113164921" ], - "mAssetSupply": "91756513225896463843123955" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "236005874159747715825664", - "expectedQty": "235808537683113503061276", - "reserves": [ - "28825332353859603473166851", - "29116555905321495594736268", - "34052694135900952357458064" - ] + "mAssetSupply": "2323431866999412628391110853" }, { "type": "redeemMasset", - "inputQty": "1348013325803060409139", + "inputQty": "93521532694904060038348", "expectedQtys": [ - "422266492565511663531", - "426532668792680791880", - "498842876767307295946" + "32967007112657425932619", + "23727972115557539741234", + "36811773690944243914944" ], - "redemptionFee": "404403997740918122", + "redemptionFee": "28056459808471218011", "reserves": [ - "28824910087367037961503320", - "29116129372652702913944388", - "34052195293024185050162118" + "819239114528686762089847508", + "589646576017127176825284361", + "914782612195960502869249977" ], - "mAssetSupply": "91990974154657772026694214" + "mAssetSupply": "2323338373523177532802290516" }, { "type": "redeemMasset", - "inputQty": "1358297346034302661427", + "inputQty": "157667391359755935652249", "expectedQtys": [ - "425487971959962297396", - "429786694929652769188", - "502648558906116926247" - ], - "redemptionFee": "407489203810290798", - "reserves": [ - "28824484599395077999205924", - "29115699585957773261175200", - "34051692644465278933235871" + "55578879672001382276155", + "40002845953366616629624", + "62060748599056388225526" ], - "mAssetSupply": "91989616264800941534323585" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "5883095014444391007780864", - "outputIndex": 2, - "expectedQty": "5878559597802561117834764", - "swapFee": "3529731284563736472869", + "redemptionFee": "47300217407926780695", "reserves": [ - "34707579613839469006986788", - "29115699585957773261175200", - "28173133046662717815401107" + "819183535649014760707571353", + "589606573171173810208654737", + "914720551447361446481024451" ], - "mAssetSupply": "91993145996085505270796454", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2323180753432035184793418962" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "497866050920385123188736", - "outputIndex": 0, - "expectedQty": "498209994168753404695722", - "swapFee": "298827162490884007870", - "reserves": [ - "34209369619670715602291066", - "29613565636878158384363936", - "28173133046662717815401107" + "type": "mintMulti", + "inputQtys": [ + "9243856473740024408440832", + "14244285714782773183512576", + "2454159141064642308079616" ], - "mAssetSupply": "91993444823247996154804324", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "607551940046126229487616", - "expectedQty": "606988360310655342684781", - "swapFee": "364531164027675737692", + "expectedQty": "25968888912032534545044404", "reserves": [ - "34209369619670715602291066", - "29006577276567503041679155", - "28173133046662717815401107" + "828427392122754785116012185", + "603850858885956583392167313", + "917174710588426088789104067" ], - "mAssetSupply": "91386257414365897601054400" + "mAssetSupply": "2349149642344067719338463366" }, { "type": "mintMulti", "inputQtys": [ - "1587807351308721405820928", - "2438772463877040034021376", - "1648215305920296677015552" + "45971010393436", + "32801536729888", + "44814810438876" ], - "expectedQty": "5675220374355121936967837", + "expectedQty": "123577267149374", "reserves": [ - "35797176970979437008111994", - "31445349740444543075700531", - "29821348352583014492416659" + "828427392122800756126405621", + "603850858885989384928897201", + "917174710588470903599542943" ], - "mAssetSupply": "97061477788721019538022237" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "3944562029730359934976", - "expectedQty": "3945414109400704939429", - "reserves": [ - "35797176970979437008111994", - "31449294302474273435635507", - "29821348352583014492416659" - ] + "mAssetSupply": "2349149642344191296605612740" }, { "type": "redeemMasset", - "inputQty": "36263139353482002379571", + "inputQty": "549285531853972924530688", "expectedQtys": [ - "13369627811162260045462", - "11745768670212616926256", - "11137758953011176073124" + "193647377557617199962391", + "141151942066460600995847", + "214392328351808496076658" ], - "redemptionFee": "10878941806044600713", + "redemptionFee": "164785659556191877359", "reserves": [ - "35783807343168274748066532", - "31437548533804060818709251", - "29810210593630003316343535" + "828233744745243138926443230", + "603709706943922924327901354", + "916960318260119095103466285" ], - "mAssetSupply": "97029170942418744285182808" + "mAssetSupply": "2348600521597996879872959411" }, { "type": "mintMulti", "inputQtys": [ - "2150621026998535323648", - "3199284184902432980992", - "2368199454698417160192" + "494726019399749566726144", + "81729398852142516666368", + "200388983540087091363840" ], - "expectedQty": "7718637380730614040258", + "expectedQty": "776466656140883948324481", "reserves": [ - "35785957964195273283390180", - "31440747817988963251690243", - "29812578793084701733503727" + "828728470764642888493169374", + "603791436342775066844567722", + "917160707243659182194830125" ], - "mAssetSupply": "97036889579799474899223066" + "mAssetSupply": "2349376988254137763821283892" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "436073159245549600768", - "expectedQty": "435513651617964750766", - "swapFee": "261643895547329760", + "inputQty": "4088252277065005400064", + "expectedQty": "4082563725449857702551", "reserves": [ - "35785957964195273283390180", - "31440747817988963251690243", - "29812143279433083768752961" - ], - "mAssetSupply": "97036453768284124896952058" + "828728470764642888493169374", + "603791436342775066844567722", + "917164795495936247200230189" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "626034796355934547345408", - "488649142094941265068032", - "206287177262053082529792" - ], - "expectedQty": "1320709138468302153984512", - "swapFee": "792901223815270454663", + "type": "mint", + "inputIndex": 1, + "inputQty": "220270300286406612746240", + "expectedQty": "220807309810691572125824", "reserves": [ - "35159923167839338736044772", - "30952098675894021986622211", - "29605856102171030686223169" - ], - "mAssetSupply": "95715744629815822742967546" + "828728470764642888493169374", + "604011706643061473457313962", + "917164795495936247200230189" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "16461250338009840091136", - "7380285064127830818816", - "50883808082179020292096" + "222498797425604886528", + "50615469132388958208", + "347347012758573940736" ], - "expectedQty": "74745642428296739423084", + "expectedQty": "619967537992431112162", + "swapFee": "372203845102520179", "reserves": [ - "35176384418177348576135908", - "30959478960958149817441027", - "29656739910253209706515265" + "828728248265845462888282846", + "604011656027592341068355754", + "917164448148923488626289453" ], - "mAssetSupply": "95790490272244119482390630" + "mAssetSupply": "2349601258160135912820000105" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "13924499269899520049152", - "expectedQty": "13907548964472805161900", - "swapFee": "8354699561939712029", + "type": "redeemBassets", + "inputQtys": [ + "1144268960833617449189376", + "7478403931680173199458304", + "1452419728730907054440448" + ], + "expectedQty": "10090902807272000750187327", + "swapFee": "6058176590317390884643", "reserves": [ - "35176384418177348576135908", - "30959478960958149817441027", - "29642832361288736901353365" + "827583979305011845439093470", + "596533252095912167868897450", + "915712028420192581571849005" ], - "mAssetSupply": "95776574127673781902053507" + "mAssetSupply": "2339510355352863912069812778" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "119760095681498144", - "expectedQty": "119783078851425143", - "swapFee": "71856057408898", + "inputQty": "163624797649116626944", + "expectedQty": "163520886551004781537", "reserves": [ - "35176384298394269724710765", - "30959478960958149817441027", - "29642832361288736901353365" - ], - "mAssetSupply": "95776574007985542277964261" + "827584142929809494555720414", + "596533252095912167868897450", + "915712028420192581571849005" + ] }, { - "type": "redeemMasset", - "inputQty": "268925376744419714138112", - "expectedQtys": [ - "98740057797887932063374", - "86903210860618390793674", - "83207385836422116496856" + "type": "redeemBassets", + "inputQtys": [ + "10680346414742357831319552", + "3273188026775837167583232", + "4479077484644365055819776" ], - "redemptionFee": "80677613023325914241", + "expectedQty": "18427874742520929942683305", + "swapFee": "11063362863230496263368", "reserves": [ - "35077644240596381792647391", - "30872575750097531426647353", - "29559624975452314784856509" + "816903796515067136724400862", + "593260064069136330701314218", + "911232950935548216516029229" ], - "mAssetSupply": "95507729308854145889740390" + "mAssetSupply": "2321082644131229533131911010" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "545828464520922595328", - "expectedQty": "546166558391321244699", + "inputIndex": 0, + "inputQty": "70540316429915778973696", + "expectedQty": "70498514323131568635109", "reserves": [ - "35077644240596381792647391", - "30872575750097531426647353", - "29560170803916835707451837" + "816974336831497052503374558", + "593260064069136330701314218", + "911232950935548216516029229" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "165982610423260811100160", - "expectedQty": "165849184746667303917187", + "inputIndex": 1, + "inputQty": "1824271209263598837694464", + "expectedQty": "1828810014180717423557999", "reserves": [ - "35243626851019642603747551", - "30872575750097531426647353", - "29560170803916835707451837" + "816974336831497052503374558", + "595084335278399929539008682", + "911232950935548216516029229" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "167164519437911965302784", - "expectedQty": "167198609013015267766889", - "swapFee": "100298711662747179181", + "type": "mint", + "inputIndex": 1, + "inputQty": "1603614790417503748096", + "expectedQty": "1607584127568376483357", "reserves": [ - "35076428242006627335980662", - "30872575750097531426647353", - "29560170803916835707451837" - ], - "mAssetSupply": "95507060439432955296778673" + "816974336831497052503374558", + "595085938893190347042756778", + "911232950935548216516029229" + ] }, { "type": "redeemBassets", "inputQtys": [ - "119612132788616799715328", - "196426134788924476751872", - "210191635533506354872320" + "129448850780426533339136", + "467121389105095873921024", + "443694581578341598363648" ], - "expectedQty": "526313160223700358772999", - "swapFee": "315977482623794491958", + "expectedQty": "1040710467182681889050568", + "swapFee": "624801161006212861147", "reserves": [ - "34956816109218010536265334", - "30676149615308606949895481", - "29349979168383329352579517" + "816844887980716625970035422", + "594618817504085251168835754", + "910789256353969874917665581" ], - "mAssetSupply": "94980747279209254938005674" + "mAssetSupply": "2321942849776678268611536907" }, { - "type": "redeemMasset", - "inputQty": "29906327464294449152", - "expectedQtys": [ - "11003454811765476828", - "9656017442675390038", - "9238575060627525833" + "type": "redeemBassets", + "inputQtys": [ + "63101589569707379261440", + "351844782227168245579776", + "185156942544680656044032" ], - "redemptionFee": "8971898239288334", + "expectedQty": "600673754603476150694262", + "swapFee": "360620625137167991211", "reserves": [ - "34956805105763198770788506", - "30676139959291164274505443", - "29349969929808268725053684" + "816781786391146918590773982", + "594266972721858082923255978", + "910604099411425194261621549" ], - "mAssetSupply": "94980717381853688882844856" + "mAssetSupply": "2321342176022074792460842645" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "153442301204715729321984", - "expectedQty": "153472620283562064875757", - "swapFee": "92065380722829437593", - "reserves": [ - "34803332485479636705912749", - "30676139959291164274505443", - "29349969929808268725053684" - ], - "mAssetSupply": "94827367146029695982960465" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "7049053552718463348244480", - "outputIndex": 1, - "expectedQty": "7023943281601159386778172", - "swapFee": "4224056475512908690289", + "inputIndex": 1, + "inputQty": "1523655774957227737088", + "expectedQty": "1518970370995254997259", + "swapFee": "914193464974336642", "reserves": [ - "41852386038198100054157229", - "23652196677690004887727271", - "29349969929808268725053684" + "816781786391146918590773982", + "594265453751487087668258719", + "910604099411425194261621549" ], - "mAssetSupply": "94831591202505208891650754", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2321340653280493300207442199" }, { "type": "mintMulti", "inputQtys": [ - "175965148802289991680", - "511845834073242468352", - "236939752872499118080" + "2103461204858583262429184", + "893169961948721193156608", + "1021840999093944912445440" ], - "expectedQty": "925852054190667931751", - "reserves": [ - "41852562003346902344148909", - "23652708523524078130195623", - "29350206869561141224171764" - ], - "mAssetSupply": "94832517054559399559582505" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2493020537673659449344", - "expectedQty": "2490399655616887800515", - "swapFee": "1495812322604195669", + "expectedQty": "4017983124533691760944594", "reserves": [ - "41852562003346902344148909", - "23652708523524078130195623", - "29347716469905524336371249" + "818885247596005501853203166", + "595158623713435808861415327", + "911625940410519139174066989" ], - "mAssetSupply": "94830025529834048504328830" + "mAssetSupply": "2325358636405026991968386793" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1853047329791681757184", - "expectedQty": "1858197972898818626050", + "inputIndex": 2, + "inputQty": "17257460339550042869202944", + "expectedQty": "17231952588413722409926215", "reserves": [ - "41852562003346902344148909", - "23654561570853869811952807", - "29347716469905524336371249" + "818885247596005501853203166", + "595158623713435808861415327", + "928883400750069182043269933" ] }, { - "type": "redeemMasset", - "inputQty": "5810655277289443636019", - "expectedQtys": [ - "2563672084460150647480", - "1448956438186326567138", - "1797689743593988286245" + "type": "mintMulti", + "inputQtys": [ + "34612474511800192", + "33854325321023992", + "41906140248284976" ], - "redemptionFee": "1743196583186833090", + "expectedQty": "110377010524550915", "reserves": [ - "41849998331262442193501429", - "23653112614415683485385669", - "29345918780161930348085004" + "818885247630617976365003358", + "595158623747290134182439319", + "928883400791975322291554909" ], - "mAssetSupply": "94826074815726241066151951" + "mAssetSupply": "2342590589103817724902863923" }, { "type": "redeemBassets", "inputQtys": [ - "16004959918795", - "18982175884515", - "52472124097043" + "330477360974384070656", + "20781796034631109181440", + "21458896751079565819904" ], - "expectedQty": "87496752173792", - "swapFee": "52529569045", + "expectedQty": "42591599989054515011708", + "swapFee": "25570302174737551537", "reserves": [ - "41849998331246437233582634", - "23653112614396701309501154", - "29345918780109458223987961" + "818884917153257001980932702", + "595137841951255503073257879", + "928861941895224242725735005" ], - "mAssetSupply": "94826074815638744313978159" + "mAssetSupply": "2342547997503828670387852215" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "472514631921985912832", - "expectedQty": "472728312994453048634", + "inputIndex": 1, + "inputQty": "434122674904838149505024", + "expectedQty": "435236313775949059790838", "reserves": [ - "41849998331246437233582634", - "23653112614396701309501154", - "29346391294741380209900793" + "818884917153257001980932702", + "595571964626160341222762903", + "928861941895224242725735005" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "6138431229219616768", - "outputIndex": 0, - "expectedQty": "6166822924756092563", - "swapFee": "3693294912691881", + "type": "redeem", + "inputIndex": 0, + "inputQty": "82529884986870455578132480", + "expectedQty": "82500899662192894271303225", + "swapFee": "49517930992122273346879", "reserves": [ - "41849992164423512477490071", - "23653118752827930529117922", - "29346391294741380209900793" + "736384017491064107709629477", + "595571964626160341222762903", + "928861941895224242725735005" ], - "mAssetSupply": "94826547547645033679718674", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2260502866761726286142857452" }, { - "type": "mintMulti", - "inputQtys": [ - "17511329079653", - "27900538288837", - "104655997331568" - ], - "expectedQty": "150150065491786", + "type": "mint", + "inputIndex": 2, + "inputQty": "2564075397106665259008", + "expectedQty": "2559522131801382112836", "reserves": [ - "41849992164441023806569724", - "23653118752855831067406759", - "29346391294846036207232361" - ], - "mAssetSupply": "94826547547795183745210460" + "736384017491064107709629477", + "595571964626160341222762903", + "928864505970621349390994013" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9567885840958854529024", - "expectedQty": "9535625859463183552187", - "swapFee": "5740731504575312717", + "type": "swap", + "inputIndex": 0, + "inputQty": "9285218121593780602667008", + "outputIndex": 1, + "expectedQty": "9258872381425871883110844", + "swapFee": "5571278064143864340547", "reserves": [ - "41849992164441023806569724", - "23643583126996367883854572", - "29346391294846036207232361" + "745669235612657888312296485", + "586313092244734469339652059", + "928864505970621349390994013" ], - "mAssetSupply": "94816985402685729465994153" + "mAssetSupply": "2260510997561922231389310835", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "10459961396500235878", + "inputQty": "3127352577663871379046", "expectedQtys": [ - "4615396448585567318", - "2607515651792577055", - "3236445771096690956" - ], - "redemptionFee": "3137988418950070", - "reserves": [ - "41849987549044575221002406", - "23643580519480716091277517", - "29346388058400265110541405" - ], - "mAssetSupply": "94816974945862321384708345" - }, - { - "type": "mintMulti", - "inputQtys": [ - "26877306416635322368", - "167914526929179639808", - "79870609440599130112" + "1031302664490669151934", + "810904118581412764103", + "1284672069340833654740" ], - "expectedQty": "275100228928786863941", + "redemptionFee": "938205773299161413", "reserves": [ - "41850014426350991856324774", - "23643748434007645270917325", - "29346467929009705709671517" + "745668204309993397643144551", + "586312281340615887926887956", + "928863221298552008557339273" ], - "mAssetSupply": "94817250046091250171572286" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "14866204613514975232", - "expectedQty": "14829967417988808400", - "reserves": [ - "41850029292555605371300006", - "23643748434007645270917325", - "29346467929009705709671517" - ] + "mAssetSupply": "2260507871147550340817093202" }, { - "type": "redeemBassets", - "inputQtys": [ - "104774745903583", - "177070374765402", - "41033914200980" + "type": "redeemMasset", + "inputQty": "4455122769620444366923366", + "expectedQtys": [ + "1469159574701602588991211", + "1155187115285131860831492", + "1830101226351367852347341" ], - "expectedQty": "323134903400248", - "swapFee": "193997340444", + "redemptionFee": "1336536830886133310077", "reserves": [ - "41850029292450830625396423", - "23643748433830574896151923", - "29346467928968671795470537" + "744199044735291795054153340", + "585157094225330756066056464", + "927033120072200640704991932" ], - "mAssetSupply": "94817264875735533256980438" + "mAssetSupply": "2256054084914760782583479913" }, { "type": "mintMulti", "inputQtys": [ - "99886259285527", - "67620701633837", - "132733839351925" + "509909302443895808", + "1607692935588027904", + "1017358469272030080" ], - "expectedQty": "300245358053537", + "expectedQty": "3136863519732527900", "reserves": [ - "41850029292550716884681950", - "23643748433898195597785760", - "29346467929101405634822462" + "744199045245201097498049148", + "585157095833023691654084368", + "927033121089559109977022012" ], - "mAssetSupply": "94817264876035778615033975" + "mAssetSupply": "2256054088051624302316007813" }, { "type": "redeemMasset", - "inputQty": "49905350093551895052288", + "inputQty": "1848152673884171238427852", "expectedQtys": [ - "22020396853789294324409", - "12440725429032659415397", - "15441348094130008027788" + "609462709523430124138931", + "479215112410890033577688", + "759194897396098333314297" ], - "redemptionFee": "14971605028065568515", + "redemptionFee": "554445802165251371528", "reserves": [ - "41828008895696927590357541", - "23631307708469162938370363", - "29331026581007275626794674" + "743589582535677667373910217", + "584677880720612801620506680", + "926273926192163011643707715" ], - "mAssetSupply": "94767374497547254785550202" + "mAssetSupply": "2254206489823542296328951489" }, { - "type": "redeemBassets", - "inputQtys": [ - "43458464092757812051968", - "222086818685126227001344", - "603089234137350200623104" + "type": "redeemMasset", + "inputQty": "869035439073270641459", + "expectedQtys": [ + "286580595236405008076", + "225335775290307499337", + "356987428757281543111" ], - "expectedQty": "869448545171438961263556", - "swapFee": "521982316492759032177", + "redemptionFee": "260710631721981192", "reserves": [ - "41784550431604169778305573", - "23409220889784036711369019", - "28727937346869925426171570" + "743589295955082430968902141", + "584677655384837511313007343", + "926273569204734254362164604" ], - "mAssetSupply": "93897925952375815824286646" + "mAssetSupply": "2254205621048813854780291222" }, { "type": "mintMulti", "inputQtys": [ - "158530967150886092800", - "2145185237800044462080", - "2722704528636014755840" + "75830852480684392448", + "87253527124096876544", + "10490691783780050944" ], - "expectedQty": "5033509443454901876268", + "expectedQty": "173755708238169313981", "reserves": [ - "41784708962571320664398373", - "23411366075021836755831099", - "28730660051398561440927410" + "743589371785934911653294589", + "584677742638364635409883887", + "926273579695426038142215548" ], - "mAssetSupply": "93902959461819270726162914" + "mAssetSupply": "2254205794804522092949605203" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "51022989878005000568832", - "expectedQty": "51051012513094529438549", + "inputIndex": 1, + "inputQty": "1060015294456111545974784", + "expectedQty": "1062481511276271467893499", "reserves": [ - "41784708962571320664398373", - "23411366075021836755831099", - "28781683041276566441496242" + "743589371785934911653294589", + "585737757932820746955858671", + "926273579695426038142215548" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "24530543793097926508544", - "8844016651915130568704", - "15216684338446216462336" + "1514628593527007477760", + "1813898861935738486784", + "1794800141510417055744" ], - "expectedQty": "48562715024188319445989", - "swapFee": "29155122087765651058", + "expectedQty": "5124254315055387209158", "reserves": [ - "41760178418778222737889829", - "23402522058369921625262395", - "28766466356938120225033906" + "743590886414528438660772349", + "585739571831682682694345455", + "926275374495567548559271292" ], - "mAssetSupply": "93905447759308176936155474" + "mAssetSupply": "2255273400570113419804707860" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "4735868681302170402816", - "expectedQty": "4730453183886391401796", - "swapFee": "2841521208781302241", - "reserves": [ - "41760178418778222737889829", - "23402522058369921625262395", - "28761735903754233833632110" + "type": "redeemBassets", + "inputQtys": [ + "350510111563775559598080", + "167541295603505225007104", + "456316882156799251185664" ], - "mAssetSupply": "93900714732148083547054899" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "163082959531296354729984", - "expectedQty": "163392873158024071572821", - "swapFee": "97849775718777812837", + "expectedQty": "973924757179255481060177", + "swapFee": "584705677714181797714", "reserves": [ - "41596785545620198666317008", - "23402522058369921625262395", - "28761735903754233833632110" + "743240376302964663101174269", + "585572030536079177469338351", + "925819057613410749308085628" ], - "mAssetSupply": "93737729622392505970137752" + "mAssetSupply": "2254299475812934164323647683" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "163323444079502406189056", - "196153932577197837516800", - "65869103465965675347968" + "156112627894634016", + "348356402742378688", + "98244758481770208" ], - "expectedQty": "425515682022619440426873", + "expectedQty": "603338021918738008", + "swapFee": "362220145238385", "reserves": [ - "41760108989699701072506064", - "23598675990947119462779195", - "28827605007220199508980078" + "743240376146852035206540253", + "585572030187722774726959663", + "925819057515165990826315420" ], - "mAssetSupply": "94163245304415125410564625" + "mAssetSupply": "2254299475209596142404909675" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "155718371859455251841024", - "expectedQty": "156009580978508150405197", - "swapFee": "93431023115673151104", + "inputQty": "5528935397237348666179584", + "expectedQty": "5525773878192647093803721", + "swapFee": "3317361238342409199707", "reserves": [ - "41604099408721192922100867", - "23598675990947119462779195", - "28827605007220199508980078" + "737714602268659388112736532", + "585572030187722774726959663", + "925819057515165990826315420" ], - "mAssetSupply": "94007620363578785831874705" + "mAssetSupply": "2248773857173597136147929798" }, { - "type": "redeemMasset", - "inputQty": "36716737033640753286348", - "expectedQtys": [ - "16244518280242060362395", - "9214215160828381076445", - "11255875338506219968546" - ], - "redemptionFee": "11015021110092225985", + "type": "swap", + "inputIndex": 2, + "inputQty": "2409810559967772104720384", + "outputIndex": 1, + "expectedQty": "2398447698939899344457965", + "swapFee": "1443271092634530790814", "reserves": [ - "41587854890440950861738472", - "23589461775786291081702750", - "28816349131881693289011532" + "737714602268659388112736532", + "583173582488782875382501698", + "928228868075133762931035804" ], - "mAssetSupply": "93970914641566255170814342" + "mAssetSupply": "2248775300444689770678720612", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2170433259572514816", - "expectedQty": "2176300156134609567", - "reserves": [ - "41587854890440950861738472", - "23589463946219550654217566", - "28816349131881693289011532" - ] - }, - { - "type": "redeem", "inputIndex": 2, - "inputQty": "442028652775088064", - "expectedQty": "441524512313535368", - "swapFee": "265217191665052", + "inputQty": "35734791474864526999945216", + "expectedQty": "35665946696502804736267273", "reserves": [ - "41587854890440950861738472", - "23589463946219550654217566", - "28816348690357180975476164" - ], - "mAssetSupply": "93970916376102975722000897" + "737714602268659388112736532", + "583173582488782875382501698", + "963963659549998289930981020" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4249020651489677707051008", - "expectedQty": "4231047172081741639823404", - "swapFee": "2549412390893806624230", + "inputIndex": 0, + "inputQty": "130375063180694867935232", + "expectedQty": "130283069797202753407512", + "swapFee": "78225037908416920761", "reserves": [ - "41587854890440950861738472", - "19358416774137809014394162", - "28816348690357180975476164" + "737584319198862185359329020", + "583173582488782875382501698", + "963963659549998289930981020" ], - "mAssetSupply": "89724445137004191821574119" + "mAssetSupply": "2284310950303049788963973414" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "172846955467057955602432", + "inputIndex": 0, + "inputQty": "3358248823200999205240832", "outputIndex": 2, - "expectedQty": "173559095603688761354537", - "swapFee": "104196609926487506152", + "expectedQty": "3363289143983764924349188", + "swapFee": "2015135575207341565015", "reserves": [ - "41587854890440950861738472", - "19531263729604866969996594", - "28642789594753492214121627" + "740942568022063184564569852", + "583173582488782875382501698", + "960600370406014525006631832" ], - "mAssetSupply": "89724549333614118309080271", + "mAssetSupply": "2284312965438624996305538429", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "10413819473825486", - "1448678961592290", - "21391542419196876" - ], - "expectedQty": "33228852555954837", - "swapFee": "19949281102234", - "reserves": [ - "41587854880027131387912986", - "19531263728156188008404304", - "28642789573361949794924751" - ], - "mAssetSupply": "89724549300385265753125434" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "81177500946073", - "38719572983141", - "14080560632619" - ], - "expectedQty": "133907179551271", - "swapFee": "80392543256", - "reserves": [ - "41587854879945953886966913", - "19531263728117468435421163", - "28642789573347869234292132" - ], - "mAssetSupply": "89724549300251358573574163" - }, { "type": "redeemMasset", - "inputQty": "38500330344619448729", + "inputQty": "447497585301599641", "expectedQtys": [ - "17839775399709569171", - "8378247908865518103", - "12286782626436180276" - ], - "redemptionFee": "11550099103385834", - "reserves": [ - "41587837040170554177397742", - "19531255349869559569903060", - "28642777286565242798111856" - ], - "mAssetSupply": "89724510811471113057511268" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1335985315236809659121664", - "expectedQty": "1339176323757908781382635", - "swapFee": "801591189142085795472", - "reserves": [ - "40248660716412645396015107", - "19531255349869559569903060", - "28642777286565242798111856" + "145107322879630332", + "114209604065494482", + "188125442001393280" ], - "mAssetSupply": "88389327087423445484185076" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "853146433147617390100480", - "outputIndex": 0, - "expectedQty": "854819669059408718683226", - "swapFee": "511785689793501934557", + "redemptionFee": "134249275590479", "reserves": [ - "39393841047353236677331881", - "19531255349869559569903060", - "29495923719712860188212336" + "740942567876955861684939520", + "583173582374573271317007216", + "960600370217889083005238552" ], - "mAssetSupply": "88389838873113238986119633", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2284312964991261660279529267" }, { "type": "redeemMasset", - "inputQty": "282547052985793845080883", + "inputQty": "5441139019480281088", "expectedQtys": [ - "125888616287511713840954", - "62414901542542950532661", - "94258415134822888323146" + "1764365088139075586", + "1388678628648534054", + "2287423925071839869" ], - "redemptionFee": "84764115895738153524", + "redemptionFee": "1632341705844084", "reserves": [ - "39267952431065724963490927", - "19468840448327016619370399", - "29401665304578037299889190" + "740942566112590773545863934", + "583173580985894642668473162", + "960600367930465157933398683" ], - "mAssetSupply": "88107376584243340879192274" + "mAssetSupply": "2284312959551754982505092263" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "328112682037121443168256", + "inputIndex": 2, + "inputQty": "1579163856033322369024", "outputIndex": 0, - "expectedQty": "330184379601909402434291", - "swapFee": "197711260152754933563", + "expectedQty": "1574958873230808209812", + "swapFee": "945606852696158757", "reserves": [ - "38937768051463815561056636", - "19796953130364138062538655", - "29401665304578037299889190" + "740940991153717542737654122", + "583173580985894642668473162", + "960601947094321191255767707" ], - "mAssetSupply": "88107574295503493634125837", + "mAssetSupply": "2284312960497361835201251020", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2110273350457077530624", - "620752469389478068224", - "3116913369904834412544" + "8984100192272039085604864", + "8406315994396983348428800", + "18083365524164978556272640" ], - "expectedQty": "5843997811248455766895", + "expectedQty": "35459477306580331741205710", + "swapFee": "21288459459623973428780", "reserves": [ - "38939878324814272638587260", - "19797573882833527540606879", - "29404782217947942134301734" + "731956890961445503652049258", + "574767264991497659320044362", + "942518581570156212699495067" ], - "mAssetSupply": "88113418293314742089892732" + "mAssetSupply": "2248853483190781503460045310" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "15467013886015998787584", - "expectedQty": "15530938703103396722860", + "inputIndex": 0, + "inputQty": "2744041372071279104", + "expectedQty": "2744151535816718727", "reserves": [ - "38939878324814272638587260", - "19813040896719543539394463", - "29404782217947942134301734" + "731956893705486875723328362", + "574767264991497659320044362", + "942518581570156212699495067" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "373551677419382345039872", - "80673262273696387563520", - "142943708569889746714624" - ], - "expectedQty": "596484405505009295094982", - "reserves": [ - "39313430002233654983627132", - "19893714158993239926957983", - "29547725926517831881016358" - ], - "mAssetSupply": "88725433637522854781710574" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "2868945733331939550560256", - "outputIndex": 2, - "expectedQty": "2858437519399919800278093", - "swapFee": "1716512756223108897723", - "reserves": [ - "42182375735565594534187388", - "19893714158993239926957983", - "26689288407117912080738265" - ], - "mAssetSupply": "88727150150279077890608297", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemMasset", - "inputQty": "43130317819519256074649", - "expectedQtys": [ - "20498725215396129922888", - "9667444589068256943254", - "12969786070884798530064" + "35917235682775631134720", + "177521463894924582715392", + "23428226946491660369920" ], - "redemptionFee": "12939095345855776822", + "expectedQty": "237265811081808817695101", + "swapFee": "142444953621258045444", "reserves": [ - "42161877010350198404264500", - "19884046714404171670014729", - "26676318621047027282208201" + "731920976469804100092193642", + "574589743527602734737328970", + "942495153343209721039125147" ], - "mAssetSupply": "88684032771554904490310470" + "mAssetSupply": "2248616220123851230459068936" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "210474055869919435685888", - "136238575626229135704064", - "52899757615195141177344" + "73547109120182205808640", + "54543261824305680351232", + "55786819236129677508608" ], - "expectedQty": "399530609943887525320434", - "swapFee": "239862283336334315781", + "expectedQty": "183906642387807563358653", "reserves": [ - "41951402954480278968578612", - "19747808138777942534310665", - "26623418863431832141030857" + "731994523578924282298002282", + "574644286789427040417680202", + "942550940162445850716633755" ], - "mAssetSupply": "88284502161611016964990036" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "543279925241217030291456", - "expectedQty": "541480354863755741825059", - "reserves": [ - "42494682879721495998870068", - "19747808138777942534310665", - "26623418863431832141030857" - ] + "mAssetSupply": "2248800126766239038022427589" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "518233795453340002287616", - "expectedQty": "519645019920483327736184", - "swapFee": "310940277272004001372", + "inputQty": "38922232047111503872", + "expectedQty": "38897349391169862702", + "swapFee": "23353339228266902", "reserves": [ - "41975037859801012671133884", - "19747808138777942534310665", - "26623418863431832141030857" + "731994484681574891128139580", + "574644286789427040417680202", + "942550940162445850716633755" ], - "mAssetSupply": "88308059661298704708528851" + "mAssetSupply": "2248800087867360330139190619" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "272364445231018082828288", - "outputIndex": 0, - "expectedQty": "273231536998393308903774", - "swapFee": "163507349295405296531", + "type": "mintMulti", + "inputQtys": [ + "3758307248437830342410240", + "4515380428530553750290432", + "5894414045954269752852480" + ], + "expectedQty": "14167924135174412705415314", "reserves": [ - "41701806322802619362230110", - "19747808138777942534310665", - "26895783308662850223859145" + "735752791930012721470549820", + "579159667217957594167970634", + "948445354208400120469486235" ], - "mAssetSupply": "88308223168648000113825382", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2262968012002534742844605933" }, { - "type": "mintMulti", - "inputQtys": [ - "18892527359103632146432", - "25280843819766316531712", - "28519897130673020862464" + "type": "redeemMasset", + "inputQty": "3702000960896509358899", + "expectedQtys": [ + "1203260674036135909873", + "947166030757669750041", + "1551101142542179505515" ], - "expectedQty": "72753536277250680084068", + "redemptionFee": "1110600288268952807", "reserves": [ - "41720698850161722994376542", - "19773088982597708850842377", - "26924303205793523244721609" + "735751588669338685334639947", + "579158720051926836498220593", + "948443803107257578289980720" ], - "mAssetSupply": "88380976704925250793909450" + "mAssetSupply": "2262964311112174134604199841" }, { "type": "redeemBassets", "inputQtys": [ - "59959049518653598859264", - "62530844008299668439040", - "116198052469415058866176" + "8708209645050337951744", + "10656954335546329530368", + "5816828554011439267840" ], - "expectedQty": "238816989881577025126359", - "swapFee": "143376219660742660672", + "expectedQty": "25197449277805771663149", + "swapFee": "15127546094340067038", "reserves": [ - "41660739800643069395517278", - "19710558138589409182403337", - "26808105153324108185855433" + "735742880459693634996688203", + "579148063097591290168690225", + "948437986278703566850712880" ], - "mAssetSupply": "88142159715043673768783091" + "mAssetSupply": "2262939113662896328832536692" }, { - "type": "redeemBassets", - "inputQtys": [ - "237349973854013077061632", - "453819477074920874180608", - "214309962301021249077248" + "type": "redeemMasset", + "inputQty": "1178348437131184638315724", + "expectedQtys": [ + "382998101736461497792295", + "301481148756936562737859", + "493718604701327565307904" ], - "expectedQty": "906779278238255384753578", - "swapFee": "544394203465032250202", + "redemptionFee": "353504531139355391494", "reserves": [ - "41423389826789056318455646", - "19256738661514488308222729", - "26593795191023086936778185" + "735359882357957173498895908", + "578846581948834353605952366", + "947944267674002239285404976" ], - "mAssetSupply": "87235380436805418384029513" + "mAssetSupply": "2261761118730296283549612462" }, { "type": "redeemMasset", - "inputQty": "154556307393864164966", + "inputQty": "247280255840023950131", "expectedQtys": [ - "73368459740370532931", - "34107234128493797548", - "47102513820691829154" + "80373398563002434791", + "63266800588339015523", + "103608456579072200066" ], - "redemptionFee": "46366892218159249", + "redemptionFee": "74184076752007185", "reserves": [ - "41423316458329315947922715", - "19256704554280359814425181", - "26593748088509266244949031" + "735359801984558610496461117", + "578846518682033765266936843", + "947944164065545660213204910" ], - "mAssetSupply": "87235225926864916738023796" + "mAssetSupply": "2261760871524224520277669516" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "7777808352132705913143296", - "expectedQty": "7794237371832748181183755", - "swapFee": "4666685011279623547885", + "inputQty": "93542806553269518704050176", + "expectedQty": "93514187947793491107366692", "reserves": [ - "33629079086496567766738960", - "19256704554280359814425181", - "26593748088509266244949031" - ], - "mAssetSupply": "79462084259743490448428385" + "828902608537828129200511293", + "578846518682033765266936843", + "947944164065545660213204910" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "12143371707274185670656", - "expectedQty": "12139143033549522808282", - "swapFee": "7286023024364511402", + "type": "mint", + "inputIndex": 0, + "inputQty": "325833655622630208", + "expectedQty": "325624995562457342", "reserves": [ - "33629079086496567766738960", - "19256704554280359814425181", - "26581608945475716722140749" - ], - "mAssetSupply": "79449948174059240627269131" + "828902608863661784823141501", + "578846518682033765266936843", + "947944164065545660213204910" + ] }, { "type": "redeemMasset", - "inputQty": "3301129430991930549862", + "inputQty": "495387038986119987", "expectedQtys": [ - "1396862314921079317112", - "799872183007365613954", - "1104129188622759919163" - ], - "redemptionFee": "990338829297579164", - "reserves": [ - "33627682224181646687421848", - "19255904682097352448811227", - "26580504816287093962221586" + "174291499000292831", + "121712763783551770", + "199322100759292813" ], - "mAssetSupply": "79446648034967077994298433" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "5355162740859949", - "expectedQty": "5353290684012711", - "swapFee": "3213097644515", + "redemptionFee": "148616111695835", "reserves": [ - "33627682224181646687421848", - "19255904682097352448811227", - "26580504810933803278208875" + "828902608689370285822848670", + "578846518560321001483385073", + "947944163866223559453912097" ], - "mAssetSupply": "79446648029615128351082999" + "mAssetSupply": "2355275059302404584073069398" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "15570869699437473792", - "expectedQty": "15594444151452448482", - "swapFee": "9342521819662484", + "inputQty": "160401376909185299513344", + "outputIndex": 1, + "expectedQty": "159730106575392912315909", + "swapFee": "96179142674357983273", "reserves": [ - "33627666629737495234973366", - "19255904682097352448811227", - "26580504810933803278208875" + "829063010066279471122362014", + "578686788453745608571069164", + "947944163866223559453912097" ], - "mAssetSupply": "79446632468087950733271691" + "mAssetSupply": "2355275155481547258431052671", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "81336107382431943753728", - "expectedQty": "81458722179935920583524", - "swapFee": "48801664429459166252", + "type": "mint", + "inputIndex": 1, + "inputQty": "1038138612617244192014336", + "expectedQty": "1041201050014596474503344", "reserves": [ - "33546207907557559314389842", - "19255904682097352448811227", - "26580504810933803278208875" - ], - "mAssetSupply": "79365345162369948248684215" + "829063010066279471122362014", + "579724927066362852763083500", + "947944163866223559453912097" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1149709095358783684608", - "1286965835417796476928", - "1092132373272675483648" + "490301798131657792", + "2716595747496298496", + "1761717147752267776" ], - "expectedQty": "3530120748151230444464", + "expectedQty": "4973333517794991161", + "swapFee": "2985791585628371", "reserves": [ - "33547357616652918098074450", - "19257191647932770245288155", - "26581596943307075953692523" + "829063009575977672990704222", + "579724924349767105266785004", + "947944162104506411701644321" ], - "mAssetSupply": "79368875283118099479128679" + "mAssetSupply": "2356316351558228337110564854" }, { "type": "mintMulti", "inputQtys": [ - "2763207115682461696", - "2135553846302567936", - "2839715379794826240" + "14362606952077504544768", + "25899993613138558713856", + "9323528749280453984256" ], - "expectedQty": "7738596595851813509", + "expectedQty": "49637502655141582070907", "reserves": [ - "33547360379860033780536146", - "19257193783486616547856091", - "26581599783022455748518763" + "829077372182929750495248990", + "579750824343380243825498860", + "947953485633255692155628577" ], - "mAssetSupply": "79368883021714695330942188" + "mAssetSupply": "2356365989060883478692635761" }, { - "type": "mintMulti", - "inputQtys": [ - "193240054706279645184", - "5438124410296962048", - "187693864458012819456" - ], - "expectedQty": "385935253659371417835", + "type": "swap", + "inputIndex": 1, + "inputQty": "943097420425106435342336", + "outputIndex": 0, + "expectedQty": "945892174227817222750739", + "swapFee": "567518829235404160288", "reserves": [ - "33547553619914740060181330", - "19257199221611026844818139", - "26581787476886913761338219" + "828131480008701933272498251", + "580693921763805350260841196", + "947953485633255692155628577" ], - "mAssetSupply": "79369268956968354702360023" + "mAssetSupply": "2356366556579712714096796049", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "14222191261755410009292", - "expectedQtys": [ - "6009587769894176699460", - "3449665219579829514017", - "4761765544304740572372" - ], - "redemptionFee": "4266657378526623002", + "type": "swap", + "inputIndex": 2, + "inputQty": "1412196549584168152989696", + "outputIndex": 1, + "expectedQty": "1404844463172697582209187", + "swapFee": "845892550300382625476", "reserves": [ - "33541544032144845883481870", - "19253749556391447015304122", - "26577025711342609020765847" + "828131480008701933272498251", + "579289077300632652678632009", + "949365682182839860308618273" ], - "mAssetSupply": "79355051032363977818973733" + "mAssetSupply": "2356367402472263014479421525", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "995304875783177201778688", - "expectedQty": "998173068360391590395779", + "type": "swap", + "inputIndex": 0, + "inputQty": "2194096726587268734648320", + "outputIndex": 2, + "expectedQty": "2195074884113892145511968", + "swapFee": "1315620283802235591485", "reserves": [ - "33541544032144845883481870", - "20249054432174624217082810", - "26577025711342609020765847" - ] + "830325576735289202007146571", + "579289077300632652678632009", + "947170607298725968163106305" + ], + "mAssetSupply": "2356368718092546816715013010", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "48734057571691634688", - "85855226730708074496", - "82101325597548838912" - ], - "expectedQty": "216815052624652047076", - "swapFee": "130167131853903570", + "type": "swap", + "inputIndex": 0, + "inputQty": "3156788209289442906603520", + "outputIndex": 2, + "expectedQty": "3158044588967407751425179", + "swapFee": "1892821979527468241999", "reserves": [ - "33541495298087274191847182", - "20248968576947893509008314", - "26576943610017011471926935" + "833482364944578644913750091", + "579289077300632652678632009", + "944012562709758560411681126" ], - "mAssetSupply": "80353007285671744757322436" + "mAssetSupply": "2356370610914526344183255009", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2489279503645561323520", - "6188830369438853234688", - "9179599126772719812608" + "19418879998975880", + "853366158730521", + "7612061697639701" ], - "expectedQty": "17868313214850566318922", + "expectedQty": "27861076149634226", + "swapFee": "16726681698799", "reserves": [ - "33543984577590919753170702", - "20255157407317332362243002", - "26586123209143784191739543" + "833482364925159764914774211", + "579289077299779286519901488", + "944012562702146498714041425" ], - "mAssetSupply": "80370875598886595323641358" + "mAssetSupply": "2356370610886665268033620783" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "386022260851211776", - "outputIndex": 1, - "expectedQty": "384725306504997820", - "swapFee": "231587896555115", + "inputQty": "547996281724778774528", + "expectedQty": "547092853617777358453", "reserves": [ - "33543984577590919753170702", - "20255157022592025857245182", - "26586123595166045042951319" - ], - "mAssetSupply": "80370875599118183220196473", - "hardLimitError": false, - "insufficientLiquidityError": false + "833482364925159764914774211", + "579289077299779286519901488", + "944013110698428223492815953" + ] }, { - "type": "redeemMasset", - "inputQty": "26321697982031389209395", - "expectedQtys": [ - "10982457814427517441932", - "6631633371124043689409", - "8704421508353697957596" + "type": "redeemBassets", + "inputQtys": [ + "4847146055596377867550720", + "23493603679558549689597952", + "30587780726610123080859648" ], - "redemptionFee": "7896509394609416762", + "expectedQty": "58946541388022466178852073", + "swapFee": "35389158327810165806795", "reserves": [ - "33533002119776492235728770", - "20248525389220901813555773", - "26577419173657691344993723" + "828635218869563387047223491", + "555795473620220736830303536", + "913425329971818100411956305" ], - "mAssetSupply": "80344561797645546440403840" + "mAssetSupply": "2297424616591496419632127163" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "92285499552072368128", - "expectedQty": "92105783937194941561", + "inputIndex": 2, + "inputQty": "759157748076201298100224", + "expectedQty": "757933138939642487519338", "reserves": [ - "33533094405276044308096898", - "20248525389220901813555773", - "26577419173657691344993723" + "828635218869563387047223491", + "555795473620220736830303536", + "914184487719894301710056529" ] }, { "type": "mintMulti", "inputQtys": [ - "36233634076173625458688", - "23425648728417786396672", - "8436196508309963931648" + "1449310723589410", + "385184152857047", + "1622769554411441" ], - "expectedQty": "68086226114361605920165", + "expectedQty": "3454620800955843", "reserves": [ - "33569328039352217933555586", - "20271951037949319599952445", - "26585855370166001308925371" + "828635218871012697770812901", + "555795473620605920983160583", + "914184487721517071264467970" ], - "mAssetSupply": "80412740129543845241265566" + "mAssetSupply": "2298182549733890682920602344" }, { - "type": "redeemMasset", - "inputQty": "46725735233132937661644", - "expectedQtys": [ - "19500404611689934749118", - "11775965460046418331727", - "15443709092370347816004" + "type": "redeemBassets", + "inputQtys": [ + "435032540631981333938176", + "524374592840038113869824", + "412775372338305888681984" ], - "redemptionFee": "14017720569939881298", + "expectedQty": "1372796923335070532602297", + "swapFee": "824172657595599679368", "reserves": [ - "33549827634740527998806468", - "20260175072489273181620718", - "26570411661073630961109367" + "828200186330380716436874725", + "555271099027765882869290759", + "913771712349178765375785986" ], - "mAssetSupply": "80366028412031282243485220" + "mAssetSupply": "2296809752810555612388000047" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "381264952112491008098304", + "expectedQty": "380648046483552202274364", + "reserves": [ + "828200186330380716436874725", + "555271099027765882869290759", + "914152977301291256383884290" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2673582758381318106513408", - "expectedQty": "2663203185737313256990262", - "swapFee": "1604149655028790863908", + "inputIndex": 2, + "inputQty": "30896332264119778410496", + "expectedQty": "30927868634701283404230", + "swapFee": "18537799358471867046", "reserves": [ - "33549827634740527998806468", - "17596971886751959924630456", - "26570411661073630961109367" + "828200186330380716436874725", + "555271099027765882869290759", + "914122049432656555100480060" ], - "mAssetSupply": "77694049803304992927835720" + "mAssetSupply": "2297159523062574403283730961" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "53317723205632888", - "expectedQty": "53072560921466030", - "swapFee": "31990633923379", + "type": "swap", + "inputIndex": 2, + "inputQty": "20672598962633568256", + "outputIndex": 0, + "expectedQty": "20644346707319903656", + "swapFee": "12383478341451524", "reserves": [ - "33549827634740527998806468", - "17596971833679399003164426", - "26570411661073630961109367" + "828200165686034009116971069", + "555271099027765882869290759", + "914122070105255517734048316" ], - "mAssetSupply": "77694049750019260356126211" + "mAssetSupply": "2297159523074957881625182485", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "31609179310800173531136", - "77587815658543537717248", - "77560074537084934684672" + "774385754486209380352", + "3933111737341817389056", + "10301550443256816336896" ], - "expectedQty": "186951747718255613601663", + "expectedQty": "15004120733793232227401", "reserves": [ - "33581436814051328172337604", - "17674559649337942540881674", - "26647971735610715895794039" + "828200940071788495326351421", + "555275032139503224686679815", + "914132371655698774550385212" ], - "mAssetSupply": "77881001497737515969727874" + "mAssetSupply": "2297174527195691674857409886" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "299410842928346445119488", - "expectedQty": "299242900738462319911382", + "type": "swap", + "inputIndex": 1, + "inputQty": "2576663092879459425976320", + "outputIndex": 0, + "expectedQty": "2585333863407854543188030", + "swapFee": "1550843031658671114104", "reserves": [ - "33581436814051328172337604", - "17674559649337942540881674", - "26947382578539062340913527" - ] + "825615606208380640783163391", + "557851695232382684112656135", + "914132371655698774550385212" + ], + "mAssetSupply": "2297176078038723333528523990", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "12708583332294387712", - "17063192731585110016", - "7628452228502886400" - ], - "expectedQty": "37434916903655885406", - "swapFee": "22474434803075376", + "type": "mint", + "inputIndex": 1, + "inputQty": "91697500468551632", + "expectedQty": "91981661934543556", "reserves": [ - "33581424105467995877949892", - "17674542586145210955771658", - "26947374950086833838027127" - ], - "mAssetSupply": "78180206963559074633753850" + "825615606208380640783163391", + "557851695324080184581207767", + "914132371655698774550385212" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "33369087900388119543808", - "294930918168991044206592", - "202201850317817197363200" - ], - "expectedQty": "531477211961243413520318", + "type": "mint", + "inputIndex": 1, + "inputQty": "413076345085014560473088", + "expectedQty": "414355017471377555350664", "reserves": [ - "33614793193368383997493700", - "17969473504314201999978250", - "27149576800404651035390327" - ], - "mAssetSupply": "78711684175520318047274168" + "825615606208380640783163391", + "558264771669165199141680855", + "914132371655698774550385212" + ] }, { "type": "redeemMasset", - "inputQty": "128018404497470285414", + "inputQty": "1127383528978868774895616", "expectedQtys": [ - "54655433224839496654", - "29217176900386956837", - "44143418445600021120" + "404992198196757447181310", + "273847630003546165445532", + "448412646097942319218559" ], - "redemptionFee": "38405521349241085", + "redemptionFee": "338215058693660632468", "reserves": [ - "33614738537935159157997046", - "17969444287137301613021413", - "27149532656986205435369207" + "825210614010183883335982081", + "557990924039161652976235323", + "913683959009600832231166653" ], - "mAssetSupply": "78711556195521341926229839" + "mAssetSupply": "2296463387834256197904155062" }, { "type": "redeemBassets", "inputQtys": [ - "136121530925162320", - "50406874974279568", - "338241305816538944" + "261484232351394528", + "321360468513617344", + "884467228097919104" ], - "expectedQty": "524459257333286042", - "swapFee": "314864473083821", + "expectedQty": "1466667101047455290", + "swapFee": "880528577775138", "reserves": [ - "33614738401813628232834726", - "17969444236730426638741845", - "27149532318744899618830263" + "825210613748699650984587553", + "557990923717801184462617979", + "913683958125133604133247549" ], - "mAssetSupply": "78711555671062084592943797" + "mAssetSupply": "2296463386367589096856699772" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3247718831259598716928", - "3266312604535910039552", - "4503134879687978778624" + "1970223338405776588800", + "1154080420608368705536", + "2265491574744257921024" ], - "expectedQty": "11019901493927222850725", - "swapFee": "6615910442621906854", + "expectedQty": "5388101373117505192838", "reserves": [ - "33611490682982368634117798", - "17966177924125890728702293", - "27145029183865211640051639" + "825212583972038056761176353", + "557992077798221792831323515", + "913686223616708348391168573" ], - "mAssetSupply": "78700535769568157370093072" + "mAssetSupply": "2296468774468962214361892610" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "18593918715775277858816", - "127742843291220075085824", - "80428834276208208248832" + "163494400374725440", + "43463798285936360", + "196393112589428128" ], - "expectedQty": "227171909210772863524699", + "expectedQty": "403035490215095837", + "swapFee": "241966474013465", "reserves": [ - "33630084601698143911976614", - "18093920767417110803788117", - "27225458018141419848300471" + "825212583808543656386450913", + "557992077754757994545387155", + "913686223420315235801740445" ], - "mAssetSupply": "78927707678778930233617771" + "mAssetSupply": "2296468774065926724146796773" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2534613718140293480448", - "expectedQty": "2523383256679660144808", - "swapFee": "1520768230884176088", + "type": "mint", + "inputIndex": 0, + "inputQty": "9164613690718678069280768", + "expectedQty": "9156825257917141008945033", "reserves": [ - "33630084601698143911976614", - "18091397384160431143643309", - "27225458018141419848300471" - ], - "mAssetSupply": "78925174585829020824313411" + "834377197499262334455731681", + "557992077754757994545387155", + "913686223420315235801740445" + ] }, { "type": "redeemBassets", "inputQtys": [ - "608050734882975505186816", - "268746635604467132661760", - "254457546965565730455552" + "2737841811380286521344", + "2271289127292499132416", + "2366964475592262025216" ], - "expectedQty": "1130779245527424459667961", - "swapFee": "678874872239798554933", + "expectedQty": "7377067875730163780084", + "swapFee": "4428898064276664266", "reserves": [ - "33022033866815168406789798", - "17822650748555964010981549", - "26971000471175854117844919" + "834374459657450954169210337", + "557989806465630702046254739", + "913683856455839643539715229" ], - "mAssetSupply": "77794395340301596364645450" + "mAssetSupply": "2305618222255968134991961722" }, { "type": "mintMulti", "inputQtys": [ - "1221640261150024121974784", - "446963868668865709867008", - "2013675671420626530205696" + "11011216063450087791001600", + "9332114275880717734903808", + "10671956617844424741748736" ], - "expectedQty": "3679888305899340708870353", + "expectedQty": "31017940043301738707722441", "reserves": [ - "34243674127965192528764582", - "18269614617224829720848557", - "28984676142596480648050615" + "845385675720901041960211937", + "567321920741511419781158547", + "924355813073684068281463965" ], - "mAssetSupply": "81474283646200937073515803" + "mAssetSupply": "2336636162299269873699684163" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "159047372268053989425152", - "outputIndex": 2, - "expectedQty": "159734820237939307248715", - "swapFee": "95819797469159965971", + "type": "redeemBassets", + "inputQtys": [ + "187927955464382152704", + "47471704143713345536", + "728145535298703458304" + ], + "expectedQty": "962387588163925442217", + "swapFee": "577779220430613633", "reserves": [ - "34243674127965192528764582", - "18428661989492883710273709", - "28824941322358541340801900" + "845385487792945577578059233", + "567321873269807276067813011", + "924355084928148769578005661" ], - "mAssetSupply": "81474379465998406233481774", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2336635199911681709774241946" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2342363023974528005963776", - "expectedQty": "2339951565388743936268289", + "type": "redeem", + "inputIndex": 1, + "inputQty": "8112642040630628843520", + "expectedQty": "8082708414907152204872", + "swapFee": "4867585224378377306", "reserves": [ - "34243674127965192528764582", - "18428661989492883710273709", - "31167304346333069346765676" - ] + "845385487792945577578059233", + "567313790561392368915608139", + "924355084928148769578005661" + ], + "mAssetSupply": "2336627092137226303523775732" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "18789870623159085957120", - "expectedQty": "18802017230463677014976", - "swapFee": "11273922373895451574", + "type": "redeemBassets", + "inputQtys": [ + "44687388218582001891934208", + "19426917771821561673678848", + "25763548127980440900337664" + ], + "expectedQty": "89859905448018765758560778", + "swapFee": "53948312256164958430194", "reserves": [ - "34243674127965192528764582", - "18428661989492883710273709", - "31148502329102605669750700" + "800698099574363575686125025", + "547886872789570807241929291", + "898591536800168328677667997" ], - "mAssetSupply": "83795552434686364979244517" + "mAssetSupply": "2246767186689207537765214954" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "481010024111359721472", - "outputIndex": 0, - "expectedQty": "481078640257957585858", - "swapFee": "288246991750856560", + "type": "redeemBassets", + "inputQtys": [ + "4572218440265434136576", + "1426689366903896408064", + "6192150071781026168832" + ], + "expectedQty": "12181785746213189971106", + "swapFee": "7313459523441979170", "reserves": [ - "34243193049324934571178724", - "18428661989492883710273709", - "31148983339126717029472172" + "800693527355923310251988449", + "547885446100203903345521227", + "898585344650096547651499165" ], - "mAssetSupply": "83795552722933356730101077", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2246755004903461324575243848" }, { - "type": "mintMulti", - "inputQtys": [ - "71147694156363", - "16692564737022758", - "28159210958683552" + "type": "redeemMasset", + "inputQty": "5327616363374501635188326", + "expectedQtys": [ + "1898074419641133474819833", + "1298783260519852812674759", + "2130130690798748945895716" ], - "expectedQty": "44961534369063930", + "redemptionFee": "1598284909012350490556", "reserves": [ - "34243193049396082265335087", - "18428662006185448447296467", - "31148983367285927988155724" + "798795452936282176777168616", + "546586662839684050532846468", + "896455213959297798705603449" ], - "mAssetSupply": "83795552767894891099165007" + "mAssetSupply": "2241428986824995835290546078" }, { "type": "redeemMasset", - "inputQty": "5567088787128729364070", + "inputQty": "2198318761984516474850508", "expectedQtys": [ - "2274317661222903874002", - "1223969721892341281546", - "2068810665499730790280" + "783196897776828084034233", + "535913139125463756929676", + "878949598408379349726748" ], - "redemptionFee": "1670126636138618809", + "redemptionFee": "659495628595354942455", "reserves": [ - "34240918731734859361461085", - "18427438036463556106014921", - "31146914556620428257365444" + "798012256038505348693134383", + "546050749700558586775916792", + "895576264360889419355876701" ], - "mAssetSupply": "83789987349234398508419746" + "mAssetSupply": "2239231327558639914170638025" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 1, + "inputQty": "73209891895354878842634240", + "expectedQty": "73392608347038389958834022", + "reserves": [ + "798012256038505348693134383", + "619260641595913465618551032", + "895576264360889419355876701" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "162296178124050283888640", - "342538160968841442623488", - "325738079755530974265344" + "3155817588362042188759040", + "8367353383238393145589760", + "15367133025930274267987968" ], - "expectedQty": "831374395807582611300465", - "swapFee": "499124111951720599139", + "expectedQty": "26885706671347521074352654", "reserves": [ - "34078622553610809077572445", - "18084899875494714663391433", - "30821176476864897283100100" + "801168073626867390881893423", + "627627994979151858764140792", + "910943397386819693623864669" ], - "mAssetSupply": "82958612953426815897119281" + "mAssetSupply": "2339509642577025825203824701" }, { - "type": "redeemBassets", - "inputQtys": [ - "9354752686988849152", - "101840851856000848", - "74589439065099337728" + "type": "redeemMasset", + "inputQty": "528223810584694698803", + "expectedQtys": [ + "180836653226242494399", + "141665837443226542755", + "205614727651637658733" ], - "expectedQty": "83933690280420251500", - "swapFee": "50390448437314539", + "redemptionFee": "158467143175408409", "reserves": [ - "34078613198858122088723293", - "18084899773653862807390585", - "30821101887425832183762372" + "801167892790214164639399024", + "627627853313314415537598037", + "910943191772092041986205936" ], - "mAssetSupply": "82958529019736535476867781" + "mAssetSupply": "2339509114511682383684534307" }, { - "type": "mintMulti", - "inputQtys": [ - "943274755170452256063488", - "218547691008042683334656", - "771079635830739619020800" - ], - "expectedQty": "1930978182639113015857279", + "type": "mint", + "inputIndex": 0, + "inputQty": "1161582602366252482560", + "expectedQty": "1161204938421146265314", "reserves": [ - "35021887954028574344786781", - "18303447464661905490725241", - "31592181523256571802783172" - ], - "mAssetSupply": "84889507202375648492725060" + "801169054372816530891881584", + "627627853313314415537598037", + "910943191772092041986205936" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1605937141410845425664", - "1224220907216229892096", - "1757009773116253798400" + "1680527182216618835968", + "2869172977637911953408", + "769171023438545944576" ], - "expectedQty": "4587300410001172897797", - "swapFee": "2754032665600063776", + "expectedQty": "5322975155840037792260", "reserves": [ - "35020282016887163499361117", - "18302223243754689260833145", - "31590424513483455548984772" + "801170734899998747510717552", + "627630722486292053449551445", + "910943960943115480532150512" ], - "mAssetSupply": "84884919901965647319827263" + "mAssetSupply": "2339515598691776644868591881" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "107887864662130893520896", - "expectedQty": "108049129208855715387571", - "swapFee": "64732718797278536112", + "inputQty": "1752398178415111701528576", + "expectedQty": "1751817781650812122518858", "reserves": [ - "34912232887678307783973546", - "18302223243754689260833145", - "31590424513483455548984772" - ], - "mAssetSupply": "84777096770022313704842479" + "802923133078413859212246128", + "627630722486292053449551445", + "910943960943115480532150512" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "865464680633392562176", - "outputIndex": 1, - "expectedQty": "859785514001985767372", - "swapFee": "518604903250829883", + "inputIndex": 0, + "inputQty": "26072836466587381692104704", + "outputIndex": 2, + "expectedQty": "26076648379220086947449849", + "swapFee": "15637038557234439702592", "reserves": [ - "34912232887678307783973546", - "18301363458240687275065773", - "31591289978164088941546948" + "828995969545001240904350832", + "627630722486292053449551445", + "884867312563895393584700663" ], - "mAssetSupply": "84777097288627216955672362", + "mAssetSupply": "2341283053511984691430813331", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "18763213749940912128000", - "14885059900508966223872", - "25355288514781201301504" - ], - "expectedQty": "59001458339722530076365", + "type": "swap", + "inputIndex": 2, + "inputQty": "4343907695504038821888", + "outputIndex": 0, + "expectedQty": "4339098812030613289569", + "swapFee": "2603487908677254666", "reserves": [ - "34930996101428248696101546", - "18316248518141196241289645", - "31616645266678870142848452" + "828991630446189210291061263", + "627630722486292053449551445", + "884871656471590897623522551" ], - "mAssetSupply": "84836098746966939485748727" + "mAssetSupply": "2341283056115472600108067997", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "154391942274423750656", - "392325683213448183808", - "1444409367629783891968" + "13545558418045966758182912", + "647660484447128451547136", + "26410170948631823013380096" ], - "expectedQty": "1990771670586491519652", - "swapFee": "1195180110418145799", + "expectedQty": "40569249062641291471332395", + "swapFee": "24356163135466054515508", "reserves": [ - "34930841709485974272350890", - "18315856192457982793105837", - "31615200857311240358956484" + "815446072028143243532878351", + "626983062001844924998004309", + "858461485522959074610142455" ], - "mAssetSupply": "84834107975296352994229075" + "mAssetSupply": "2300713807052831308636735602" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "1086147292939984175104", - "expectedQty": "1086906777665363282718", - "swapFee": "651688375763990505", + "inputQty": "187548096779081543057408", + "outputIndex": 1, + "expectedQty": "186911174128299026503772", + "swapFee": "112418321621107431698", "reserves": [ - "34930841709485974272350890", - "18315856192457982793105837", - "31614113950533574995673766" + "815446072028143243532878351", + "626796150827716625971500537", + "858649033619738156153199863" ], - "mAssetSupply": "84833022479691788774044476" + "mAssetSupply": "2300713919471152929744167300", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "330088940220810526720", - "386537102103084597248", - "279903550604994412544" + "type": "redeemMasset", + "inputQty": "1096320478225209753600", + "expectedQtys": [ + "388454219805780931849", + "298587016479790026958", + "409034823862921961825" ], - "expectedQty": "997293415691835703858", + "redemptionFee": "328896143467562926", "reserves": [ - "34931171798426195082877610", - "18316242729560085877703085", - "31614393854084179990086310" + "815445683573923437751946502", + "626795852240700146181473579", + "858648624584914293231238038" ], - "mAssetSupply": "84834019773107480609748334" + "mAssetSupply": "2300712823479570848001976626" }, { "type": "swap", "inputIndex": 2, - "inputQty": "1071974853349217629372416", + "inputQty": "85472170630800918708224", "outputIndex": 1, - "expectedQty": "1064247693622014860668532", - "swapFee": "642289103873800800387", + "expectedQty": "85181594611691111428487", + "swapFee": "51232842732998170108", "reserves": [ - "34931171798426195082877610", - "17251995035938071017034553", - "32686368707433397619458726" + "815445683573923437751946502", + "626710670646088455070045092", + "858734096755545094149946262" ], - "mAssetSupply": "84834662062211354410548721", + "mAssetSupply": "2300712874712413581000146734", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "24892711265791077515264", - "expectedQty": "24932853033476864903607", - "swapFee": "14935626759474646509", + "type": "redeemBassets", + "inputQtys": [ + "1232724503516977247027200", + "7352843773968937027371008", + "4346274822079997412376576" + ], + "expectedQty": "12940436627441915135369394", + "swapFee": "7768923330463427137504", "reserves": [ - "34906238945392718217974003", - "17251995035938071017034553", - "32686368707433397619458726" + "814212959070406460504919302", + "619357826872119518042674084", + "854387821933465096737569686" ], - "mAssetSupply": "84809784286572322807679966" + "mAssetSupply": "2287772438084971665864777340" }, { - "type": "redeemMasset", - "inputQty": "22326476459052493701120", - "expectedQtys": [ - "9186434426706799582650", - "4540286376181891243037", - "8602221031252948951596" + "type": "mintMulti", + "inputQtys": [ + "532540777873716805632", + "13414486748448395264", + "875421789445810552832" ], - "redemptionFee": "6697942937715748110", + "expectedQty": "1420201794836834079089", "reserves": [ - "34897052510966011418391353", - "17247454749561889125791516", - "32677766486402144670507130" + "814213491611184334221724934", + "619357840286606266491069348", + "854388697355254542548122518" ], - "mAssetSupply": "84787464508056208029726956" + "mAssetSupply": "2287773858286766502698856429" }, { - "type": "redeemMasset", - "inputQty": "27884438041095582410342", - "expectedQtys": [ - "11473308923595559720259", - "5670547001792651657423", - "10743661222213381329087" - ], - "redemptionFee": "8365331412328674723", + "type": "mint", + "inputIndex": 0, + "inputQty": "20973191984841760964608", + "expectedQty": "20960190685079283878753", "reserves": [ - "34885579202042415858671094", - "17241784202560096474134093", - "32667022825179931289178043" - ], - "mAssetSupply": "84759588435346524775991337" + "814234464803169175982689542", + "619357840286606266491069348", + "854388697355254542548122518" + ] }, { "type": "mintMulti", "inputQtys": [ - "95595114483896762368", - "19053941318630981632", - "56412063007052963840" + "31865876443192507760640", + "29948222493260366479360", + "36852379477747416694784" ], - "expectedQty": "170862521671296872871", + "expectedQty": "98666563634925416483098", "reserves": [ - "34885674797156899755433462", - "17241803256501415105115725", - "32667079237242938342141883" + "814266330679612368490450182", + "619387788509099526857548708", + "854425549734732289964817302" ], - "mAssetSupply": "84759759297868196072864208" + "mAssetSupply": "2287893485041086507399218280" }, { - "type": "redeemBassets", - "inputQtys": [ - "162453468844263095664640", - "240763317695207148879872", - "197827271832600058003456" - ], - "expectedQty": "601719203023749242368342", - "swapFee": "361248270776715574765", + "type": "mint", + "inputIndex": 2, + "inputQty": "1456012117831390330880", + "expectedQty": "1454564426975910546345", "reserves": [ - "34723221328312636659768822", - "17001039938806207956235853", - "32469251965410338284138427" - ], - "mAssetSupply": "84158040094844446830495866" + "814266330679612368490450182", + "619387788509099526857548708", + "854427005746850121355148182" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "443712918643488159956992", - "expectedQty": "440827688879300019773989", - "swapFee": "266227751186092895974", + "type": "redeemMasset", + "inputQty": "555258503893492890075136", + "expectedQtys": [ + "197558313639426381490609", + "150276638461253233726960", + "207302146758846188100887" + ], + "redemptionFee": "166577551168047867022", "reserves": [ - "34723221328312636659768822", - "16560212249926907936461864", - "32469251965410338284138427" + "814068772365972942108959573", + "619237511870638273623821748", + "854219703600091275167047295" ], - "mAssetSupply": "83714593403952144763434848" + "mAssetSupply": "2287339847679171158467556511" }, { - "type": "mintMulti", - "inputQtys": [ - "26433940349751865344", - "18494348618068992000", - "29091569631669731328" - ], - "expectedQty": "74019057935175637322", + "type": "mint", + "inputIndex": 0, + "inputQty": "31061535040320678395904", + "expectedQty": "31042275903209334857103", "reserves": [ - "34723247762252986411634166", - "16560230744275526005453864", - "32469281056979969953869755" - ], - "mAssetSupply": "83714667423010079939072170" + "814099833901013262787355477", + "619237511870638273623821748", + "854219703600091275167047295" + ] }, { "type": "redeemMasset", - "inputQty": "465065991379703176783462", + "inputQty": "2948322820159887853276364", "expectedQtys": [ - "192842635119214222411732", - "91970617402325331354988", - "180324771528460659800512" + "1049024913266429733441098", + "797931101482574020182608", + "1100722188070754431119517" ], - "redemptionFee": "139519797413910953035", + "redemptionFee": "884496846047966355982", "reserves": [ - "34530405127133772189222434", - "16468260126873200674098876", - "32288956285451509294069243" + "813050808987746833053914379", + "618439580769155699603639140", + "853118981412020520735927778" ], - "mAssetSupply": "83249740951427790673241743" + "mAssetSupply": "2284423451631760527915493232" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "8731587993902254129152", - "outputIndex": 1, - "expectedQty": "8652897809055458341223", - "swapFee": "5226712291826008569", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1929676769433090275672064", + "expectedQty": "1924866028725901237285364", + "swapFee": "1157806061659854165403", "reserves": [ - "34539136715127674443351586", - "16459607229064145215757653", - "32288956285451509294069243" + "813050808987746833053914379", + "616514714740429798366353776", + "853118981412020520735927778" ], - "mAssetSupply": "83249746178140082499250312", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "474457259620241375232", - "expectedQty": "473347463771439672087", - "reserves": [ - "34539611172387294684726818", - "16459607229064145215757653", - "32288956285451509294069243" - ] + "mAssetSupply": "2282494932668389097493986571" }, { "type": "mint", "inputIndex": 1, - "inputQty": "104035385693826678784", - "expectedQty": "104673764478098820375", + "inputQty": "18525350628018361223610368", + "expectedQty": "18558684420753203839872835", "reserves": [ - "34539611172387294684726818", - "16459711264449839042436437", - "32288956285451509294069243" + "813050808987746833053914379", + "635040065368448159589964144", + "853118981412020520735927778" ] }, { "type": "redeemBassets", "inputQtys": [ - "750584968232517526093824", - "698369268557002779394048", - "513436408596954328596480" + "12575697835273461505720320", + "828305689763653542215680", + "908514561359106690514944" ], - "expectedQty": "1964065299171800356803356", - "swapFee": "1179146667503582363500", + "expectedQty": "14306657030155310942794773", + "swapFee": "8589147706717216895814", "reserves": [ - "33789026204154777158632994", - "15761341995892836263042389", - "31775519876854554965472763" + "800475111152473371548194059", + "634211759678684506047748464", + "852210466850661414045412834" ], - "mAssetSupply": "81286258900196531680939418" + "mAssetSupply": "2286746960058986990391064633" }, { - "type": "mintMulti", - "inputQtys": [ - "134941939341262700544", - "39916646457823535104", - "124171096617705324544" - ], - "expectedQty": "298727174175753629792", + "type": "redeem", + "inputIndex": 0, + "inputQty": "6352888756623714", + "expectedQty": "6352056782249276", + "swapFee": "3811733253974", "reserves": [ - "33789161146094118421333538", - "15761381912539294086577493", - "31775644047951172670797307" + "800475111146121314765944783", + "634211759678684506047748464", + "852210466850661414045412834" ], - "mAssetSupply": "81286557627370707434569210" + "mAssetSupply": "2286746960052637913367694893" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "804144421591118208040960", + "expectedQty": "803765017915127854049947", + "reserves": [ + "801279255567712432973985743", + "634211759678684506047748464", + "852210466850661414045412834" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "11799565857901976206966784", + "expectedQty": "11787869567562101256267730", + "reserves": [ + "801279255567712432973985743", + "634211759678684506047748464", + "864010032708563390252379618" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "937778400038688466665472", - "expectedQty": "939397194502971863663510", - "swapFee": "562667040023213079999", + "inputQty": "545422159248965417041920", + "expectedQty": "545332948160494966687376", + "swapFee": "327253295549379250225", "reserves": [ - "32849763951591146557670028", - "15761381912539294086577493", - "31775644047951172670797307" + "800733922619551938007298367", + "634211759678684506047748464", + "864010032708563390252379618" ], - "mAssetSupply": "80349341894372042180983737" + "mAssetSupply": "2298793499732161726440220875" }, { - "type": "mintMulti", - "inputQtys": [ - "18526163733496204", - "54953792548554440", - "49192691384710000" - ], - "expectedQty": "122878828616685753", + "type": "swap", + "inputIndex": 2, + "inputQty": "36073808166686325473280", + "outputIndex": 1, + "expectedQty": "35954162787365182173479", + "swapFee": "21622023472861064452", "reserves": [ - "32849763970117310291166232", - "15761381967493086635131933", - "31775644097143864055507307" + "800733922619551938007298367", + "634175805515897140865574985", + "864046106516730076577852898" ], - "mAssetSupply": "80349342017250870797669490" + "mAssetSupply": "2298793521354185199301285327", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "53451365183328126972723", + "inputQty": "100685013834506146781593", "expectedQtys": [ - "21846326636464068673717", - "10481910890353926409353", - "21131996584867920108230" + "35060878132893826264366", + "27767976357593281115974", + "37833060878298752965489" ], - "redemptionFee": "16035409554998438091", + "redemptionFee": "30205504150351844034", "reserves": [ - "32827917643480846222492515", - "15750900056602732708722580", - "31754512100558996135399077" + "800698861741419044181034001", + "634148037539539547584459011", + "864008273455851777824887409" ], - "mAssetSupply": "80295906687477097669134858" + "mAssetSupply": "2298692866545854843506347768" }, { - "type": "redeemBassets", - "inputQtys": [ - "41419438930563520528384", - "39296612489980085796864", - "28758876022687752257536" - ], - "expectedQty": "109572158430612386025147", - "swapFee": "65782764717197750265", + "type": "swap", + "inputIndex": 2, + "inputQty": "60971247700399792128", + "outputIndex": 0, + "expectedQty": "60898449921207524453", + "swapFee": "36545113192306176", "reserves": [ - "32786498204550282701964131", - "15711603444112752622925716", - "31725753224536308383141541" + "800698800842969122973509548", + "634148037539539547584459011", + "864008334427099478224679537" ], - "mAssetSupply": "80186334529046485283109711" + "mAssetSupply": "2298692866582399956698653944", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "92197940112874160128", + "expectedQty": "92157860915109488764", + "reserves": [ + "800698893040909235847669676", + "634148037539539547584459011", + "864008334427099478224679537" + ] }, { "type": "redeemMasset", - "inputQty": "4356400939923308701286", + "inputQty": "17270147851348063813632", "expectedQtys": [ - "1780705940659938094515", - "853331313874252772365", - "1723094576504740105739" + "6013869646306730125713", + "4762943557646668728416", + "6489372648978662270679" ], - "redemptionFee": "1306920281976992610", + "redemptionFee": "5181044355404419144", "reserves": [ - "32784717498609622763869616", - "15710750112798878370153351", - "31724030129959803643035802" + "800692879171262929117543963", + "634143274595981900915730595", + "864001845054450499562408858" ], - "mAssetSupply": "80181979435026843951401035" + "mAssetSupply": "2298675693773453879148748220" }, { - "type": "mintMulti", - "inputQtys": [ - "191005788787201984", - "240874887875413664", - "186852223217350720" - ], - "expectedQty": "619450505944929179", + "type": "mint", + "inputIndex": 0, + "inputQty": "18680245159601779863715840", + "expectedQty": "18670955597648731030659420", "reserves": [ - "32784717689615411551071600", - "15710750353673766245567015", - "31724030316812026860386522" - ], - "mAssetSupply": "80181980054477349896330214" + "819373124330864708981259803", + "634143274595981900915730595", + "864001845054450499562408858" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "83352509475923546865664", + "expectedQty": "83305877535263262872489", + "reserves": [ + "819456476840340632528125467", + "634143274595981900915730595", + "864001845054450499562408858" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "68348136850384886956032", + "inputIndex": 0, + "inputQty": "2135405072267271995392", "outputIndex": 1, - "expectedQty": "67741707870128831499962", - "swapFee": "40927374438306021314", + "expectedQty": "2129145913654290890659", + "swapFee": "1280525887252052343", "reserves": [ - "32784717689615411551071600", - "15643008645803637414067053", - "31792378453662411747342554" + "819458612245412899800120859", + "634141145450068246624839936", + "864001845054450499562408858" ], - "mAssetSupply": "80182020981851788202351528", + "mAssetSupply": "2317429956529163760694332472", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1889110519759629189120", - "1596709493741705232384", - "1316017569829479776256" - ], - "expectedQty": "4805111553257370107669", + "type": "mint", + "inputIndex": 0, + "inputQty": "4829279155330312474460160", + "expectedQty": "4826499767775425302285838", "reserves": [ - "32786606800135171180260720", - "15644605355297379119299437", - "31793694471232241227118810" - ], - "mAssetSupply": "80186826093405045572459197" + "824287891400743212274581019", + "634141145450068246624839936", + "864001845054450499562408858" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2911977971288161990475776", - "expectedQty": "2916037002770827289119141", - "swapFee": "1747186782772897194285", + "type": "redeemBassets", + "inputQtys": [ + "768221218483213040615424", + "5022343288796490191863808", + "919404919311347300171776" + ], + "expectedQty": "6717777960352565879770441", + "swapFee": "4033086628188452599421", "reserves": [ - "29870569797364343891141579", - "15644605355297379119299437", - "31793694471232241227118810" + "823519670182259999233965595", + "629118802161271756432976128", + "863082440135139152262237082" ], - "mAssetSupply": "77276595308899656479177706" + "mAssetSupply": "2315538678336586620116847869" }, { - "type": "redeemBassets", - "inputQtys": [ - "3731240101513872873095168", - "3715159567636762881687552", - "1779709389099620500504576" + "type": "redeemMasset", + "inputQty": "735147888796123529216", + "expectedQtys": [ + "261376382936203165367", + "199675615410227091089", + "273933185261194444787" ], - "expectedQty": "9240380518569573017686860", - "swapFee": "5547556845248893146500", + "redemptionFee": "220544366638837058", "reserves": [ - "26139329695850471018046411", - "11929445787660616237611885", - "30013985082132620726614234" + "823519408805877063030800228", + "629118602485656346205885039", + "863082166201953891067792295" ], - "mAssetSupply": "68036214790330083461490846" + "mAssetSupply": "2315537943409242190632155711" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "82067358444683264000000", - "expectedQty": "82279645824337253797122", - "swapFee": "49240415066809958400", + "type": "redeemMasset", + "inputQty": "30810238430524862575411", + "expectedQtys": [ + "10954351908104199551308", + "8368456759939104749054", + "11480610745889207537304" + ], + "redemptionFee": "9243071529157458772", "reserves": [ - "26139329695850471018046411", - "11929445787660616237611885", - "29931705436308283472817112" + "823508454453968958831248920", + "629110234028896407101135985", + "863070685591208001860254991" ], - "mAssetSupply": "67954196672300467007449246" + "mAssetSupply": "2315507142413883194927039072" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "18348817031239500300288", - "expectedQty": "18311287927972479246009", + "type": "redeemMasset", + "inputQty": "19941693042056433867161", + "expectedQtys": [ + "7090121153027305436382", + "5416420139647224978357", + "7430738192633876963032" + ], + "redemptionFee": "5982507912616930160", "reserves": [ - "26157678512881710518346699", - "11929445787660616237611885", - "29931705436308283472817112" - ] + "823501364332815931525812538", + "629104817608756759876157628", + "863063254853015367983291959" + ], + "mAssetSupply": "2315487206703349051110102071" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "19681379662465050083328", - "expectedQty": "19502399033771653198417", - "swapFee": "11808827797479030049", + "inputQty": "2087437003787318853632", + "expectedQty": "2082333359995233869381", + "swapFee": "1252462202272391312", "reserves": [ - "26157678512881710518346699", - "11909943388626844584413468", - "29931705436308283472817112" + "823501364332815931525812538", + "629102735275396764642288247", + "863063254853015367983291959" ], - "mAssetSupply": "67952838389393771915641976" + "mAssetSupply": "2315485120518807466063639751" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1620338882322603274403840", - "expectedQty": "1622379043250829253331573", - "swapFee": "972203329393561964642", + "type": "mintMulti", + "inputQtys": [ + "321641921248562539134976", + "44459371770355434651648", + "223266671825887187435520" + ], + "expectedQty": "589035508154694616588307", "reserves": [ - "24535299469630881265015126", - "11909943388626844584413468", - "29931705436308283472817112" + "823823006254064494064947514", + "629147194647167120076939895", + "863286521524841255170727479" ], - "mAssetSupply": "66333471710400562203202778" + "mAssetSupply": "2316074156026962160680228058" }, { "type": "mint", "inputIndex": 1, - "inputQty": "39164301566267046756352", - "expectedQty": "39479522995183893929569", + "inputQty": "161294997465374293753856", + "expectedQty": "161593456317431082816112", "reserves": [ - "24535299469630881265015126", - "11949107690193111631169820", - "29931705436308283472817112" + "823823006254064494064947514", + "629308489644632494370693751", + "863286521524841255170727479" ] }, { "type": "mintMulti", "inputQtys": [ - "17329272533641883648", - "2317305877362801664", - "8331854010061093888" + "2445323698009151660621824", + "1821063222441227663179776", + "1329765994343226721435648" ], - "expectedQty": "27941077459363608035", + "expectedQty": "5596723498483467726012855", "reserves": [ - "24535316798903414906898774", - "11949110007498988993971484", - "29931713768162293533911000" + "826268329952073645725569338", + "631129552867073722033873527", + "864616287519184481892163127" ], - "mAssetSupply": "66372979174473205460740382" + "mAssetSupply": "2321832472981763059489057025" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "1677134347379614886658048", - "expectedQty": "1660450288794226663175016", - "swapFee": "1006280608427768931994", + "inputQty": "280086011930260302462976", + "outputIndex": 0, + "expectedQty": "280605958760043123034655", + "swapFee": "168361322324742931502", "reserves": [ - "24535316798903414906898774", - "10288659718704762330796468", - "29931713768162293533911000" + "825987723993313602602534683", + "631409638879003982336336503", + "864616287519184481892163127" ], - "mAssetSupply": "64696851107702018343014328" + "mAssetSupply": "2321832641343085384231988527", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9003138115810847883264", - "6294942186328382504960", - "14264963806993601003520" + "4186425271560564", + "1288133879927688", + "1290091265586715" ], - "expectedQty": "29556395324333992781392", + "expectedQty": "6763207823255622", + "swapFee": "4060360910499", "reserves": [ - "24544319937019225754782038", - "10294954660891090713301428", - "29945978731969287134914520" + "825987723989127177330974119", + "631409638877715848456408815", + "864616287517894390626576412" ], - "mAssetSupply": "64726407503026352335795720" + "mAssetSupply": "2321832641336322176408732905" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "6919016949534765296386048", - "expectedQty": "6936641889684113491485541", - "swapFee": "4151410169720859177831", + "type": "mint", + "inputIndex": 0, + "inputQty": "59683030526267949056", + "expectedQty": "59646476793324856858", "reserves": [ - "24544319937019225754782038", - "10294954660891090713301428", - "23009336842285173643428979" - ], - "mAssetSupply": "57811541963661307898587503" + "825987783672157703598923175", + "631409638877715848456408815", + "864616287517894390626576412" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1042403018324985380864", - "933416757985842561024", - "42596145904286982144" + "12690469858561662910464", + "11195211194029026836480", + "7013862880049098653696" ], - "expectedQty": "2023050369929342127079", - "swapFee": "1214558957332004478", + "expectedQty": "30905582278069582015890", + "swapFee": "18554482056075394446", "reserves": [ - "24543277534000900769401174", - "10294021244133104870740404", - "23009294246139269356446835" + "825975093202299141936012711", + "631398443666521819429572335", + "864609273655014341527922716" ], - "mAssetSupply": "57809518913291378556460424" + "mAssetSupply": "2321801795400520900151573873" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "15615146092464451593699328", - "outputIndex": 0, - "expectedQty": "15484282053017336638488885", - "swapFee": "9330390213441006437913", + "type": "mintMulti", + "inputQtys": [ + "1194070486105353057468416", + "878495871722066370625536", + "1093322720726819411066880" + ], + "expectedQty": "3165715847618393806644465", "reserves": [ - "9058995480983564130912289", - "10294021244133104870740404", - "38624440338603720950146163" + "827169163688404494993481127", + "632276939538243885800197871", + "865702596375741160938989596" ], - "mAssetSupply": "57818849303504819562898337", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2324967511248139293958218338" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "197488505484411437056", - "expectedQty": "199756027450186234767", + "type": "redeem", + "inputIndex": 2, + "inputQty": "4018095650582838716137472", + "expectedQty": "4019524147435541899825065", + "swapFee": "2410857390349703229682", "reserves": [ - "9058995480983564130912289", - "10294218732638589282177460", - "38624440338603720950146163" - ] + "827169163688404494993481127", + "632276939538243885800197871", + "861683072228305619039164531" + ], + "mAssetSupply": "2320951826454946804945310548" }, { - "type": "redeemBassets", - "inputQtys": [ - "24704802215671101390848", - "40397778469676696731648", - "61680950810788719755264" - ], - "expectedQty": "126966349743379815875671", - "swapFee": "76225545173131768586", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2306338374891504326934528", + "expectedQty": "2306378898607470794772741", + "swapFee": "1383803024934902596160", "reserves": [ - "9034290678767893029521441", - "10253820954168912585445812", - "38562759387792932230390899" + "824862784789797024198708386", + "632276939538243885800197871", + "861683072228305619039164531" ], - "mAssetSupply": "57692082709788889933257433" + "mAssetSupply": "2318646871883080235520972180" }, { "type": "mintMulti", "inputQtys": [ - "21044661893497240944640", - "33905434379692781076480", - "5253920997096685568000" + "1966765538287498135863296", + "2758193658258784524435456", + "4493669723259241892937728" ], - "expectedQty": "60866036194952019773448", + "expectedQty": "9218145150057500722769708", "reserves": [ - "9055335340661390270466081", - "10287726388548605366522292", - "38568013308790028915958899" + "826829550328084522334571682", + "635035133196502670324633327", + "866176741951564860932102259" ], - "mAssetSupply": "57752948745983841953030881" + "mAssetSupply": "2327865017033137736243741888" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "2675221927992487", - "expectedQty": "2716934888367427", + "inputQty": "50496231896546263040", + "expectedQty": "50496098384472344269", + "swapFee": "30297739137927757", "reserves": [ - "9055335343336612198458568", - "10287726388548605366522292", - "38568013308790028915958899" - ] + "826829499831986137862227413", + "635035133196502670324633327", + "866176741951564860932102259" + ], + "mAssetSupply": "2327864966567203578835406605" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1421896745194804385677312", - "expectedQty": "1435682187612518284565106", + "type": "redeemMasset", + "inputQty": "11144844519907182772224", + "expectedQtys": [ + "3957326514440729726312", + "3039370717554921374387", + "4145648150934793598049" + ], + "redemptionFee": "3343453355972154831", "reserves": [ - "9055335343336612198458568", - "11709623133743409752199604", - "38568013308790028915958899" - ] + "826825542505471697132501101", + "635032093825785115403258940", + "866172596303413926138504210" + ], + "mAssetSupply": "2327853825066137027624789212" }, { - "type": "redeemMasset", - "inputQty": "46480108383464236620185", - "expectedQtys": [ - "7108910844198797350120", - "9192665287454420303818", - "30277903319374515219862" + "type": "mintMulti", + "inputQtys": [ + "2802795441603415512186880", + "3439431175315662976319488", + "183223921053246980882432" ], - "redemptionFee": "13944032515039270986", + "expectedQty": "6429772508305210225476819", "reserves": [ - "9048226432492413401108448", - "11700430468455955331895786", - "38537735405470654400739037" + "829628337947075112644687981", + "638471525001100778379578428", + "866355820224467173119386642" ], - "mAssetSupply": "59142164771962345928614215" + "mAssetSupply": "2334283597574442237850266031" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "17520070848170342481920", - "expectedQty": "17368019419128007634102", - "swapFee": "10512042508902205489", + "type": "redeemMasset", + "inputQty": "34770741288765744742", + "expectedQtys": [ + "12354170802922508756", + "9507614327862071224", + "12901087498582868885" + ], + "redemptionFee": "10431222386629723", "reserves": [ - "9048226432492413401108448", - "11683062449036827324261684", - "38537735405470654400739037" + "829628325592904309722179225", + "638471515493486450517507204", + "866355807323379674536517757" ], - "mAssetSupply": "59124655213156684488337784" + "mAssetSupply": "2334283562814132171471151012" }, { "type": "redeemMasset", - "inputQty": "92435327725913018833305", + "inputQty": "1177622380525456352870", "expectedQtys": [ - "14141729197043318094085", - "18259788985067825135134", - "60231717457290912242506" + "418413513520813473854", + "322005772753322461475", + "436936596930046479387" ], - "redemptionFee": "27730598317773905649", + "redemptionFee": "353286714157636905", "reserves": [ - "9034084703295370083014363", - "11664802660051759499126550", - "38477503688013363488496531" + "829627907179390788908705371", + "638471193487713697195045729", + "866355370386782744490038370" ], - "mAssetSupply": "59032247616029089243410128" + "mAssetSupply": "2334282385545038360172435047" }, { "type": "redeemBassets", "inputQtys": [ - "19019143182567860", - "5809432501110884", - "10847919525562440" + "1300631722848731376123904", + "595184704292768867942400", + "1568009087311801640550400" ], - "expectedQty": "35915411751077731", - "swapFee": "21562184361263", + "expectedQty": "3462637641322538207982184", + "swapFee": "2078829882723156818880", "reserves": [ - "9034084684276226900446503", - "11664802654242326998015666", - "38477503677165443962934091" + "828327275456542057532581467", + "637876008783420928327103329", + "864787361299470942849487970" ], - "mAssetSupply": "59032247580113677492332397" + "mAssetSupply": "2330819747903715821964452863" }, { - "type": "redeemMasset", - "inputQty": "40431407237612570463436", - "expectedQtys": [ - "6185622157896513426668", - "7986870201820792642574", - "26345480216747303346632" + "type": "mintMulti", + "inputQtys": [ + "29727527985164996608", + "224145309831157252096", + "612789009361259331584" ], - "redemptionFee": "12129422171283771139", + "expectedQty": "866469719496532282834", "reserves": [ - "9027899062118330387019835", - "11656815784040506205373092", - "38451158196948696659587459" + "828327305184070042697578075", + "637876232928730759484355425", + "864787974088480304108819554" ], - "mAssetSupply": "58991828302298236205640100" + "mAssetSupply": "2330820614373435318496735697" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "24877216676942989754368", - "expectedQty": "24630488854784352168468", + "type": "redeem", + "inputIndex": 1, + "inputQty": "249446664810050684452864", + "expectedQty": "248854658227374131931467", + "swapFee": "149667998886030410671", "reserves": [ - "9027899062118330387019835", - "11656815784040506205373092", - "38476035413625639649341827" - ] + "828327305184070042697578075", + "637627378270503385352423958", + "864787974088480304108819554" + ], + "mAssetSupply": "2330571317376624153842693504" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1759766407947235622912", - "175005151138336243712", - "2316713005010621562880" + "14632029782818946283470848", + "7000656866028547595042816", + "24814665671525404694806528" ], - "expectedQty": "4257636331632762911418", - "swapFee": "2556115468260614115", + "expectedQty": "46427278376468407079795286", "reserves": [ - "9026139295710383151396923", - "11656640778889367869129380", - "38473718700620629027778947" + "842959334966888988981048923", + "644628035136531932947466774", + "889602639760005708803626082" ], - "mAssetSupply": "59012201154821387794897150" + "mAssetSupply": "2376998595753092560922488790" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "51980691626166562324480", - "expectedQty": "52794061297274249541300", + "inputIndex": 2, + "inputQty": "9920860532262800719872", + "expectedQty": "9910846342702878807553", "reserves": [ - "9078119987336549713721403", - "11656640778889367869129380", - "38473718700620629027778947" + "842959334966888988981048923", + "644628035136531932947466774", + "889612560620537971604345954" ] }, { "type": "redeemMasset", - "inputQty": "44941733544733330636", + "inputQty": "144572277866379529420", "expectedQtys": [ - "6905343039997823364", - "8866715067055922211", - "29265335336255180614" + "51254335144901853922", + "39195225660541702595", + "54090984511074164174" ], - "redemptionFee": "13482520063419999", + "redemptionFee": "43371683359913858", "reserves": [ - "9078113081993509715898039", - "11656631912174300813207169", - "38473689435285292772598333" + "842959283712553844079195001", + "644627995941306272405764179", + "889612506529553460530181780" ], - "mAssetSupply": "59064950287867637374527813" + "mAssetSupply": "2377008362070529080781680781" }, { - "type": "mintMulti", - "inputQtys": [ - "6823991327873392705536", - "40243488339433231482880", - "44897245373408359743488" + "type": "redeemMasset", + "inputQty": "10906797284932281472699596", + "expectedQtys": [ + "3866720865504366027367372", + "2956959571542579276418045", + "4080722886236640034213590" ], - "expectedQty": "91956026077158488897111", + "redemptionFee": "3272039185479684441809", "reserves": [ - "9084937073321383108603575", - "11696875400513734044690049", - "38518586680658701132341821" + "839092562847049478051827629", + "641671036369763693129346134", + "885531783643316820495968190" ], - "mAssetSupply": "59156906313944795863424924" + "mAssetSupply": "2366104836824782278993422994" }, { "type": "redeemMasset", - "inputQty": "236648133611875366181273", + "inputQty": "7910771448722343684210688", "expectedQtys": [ - "36331994965319569380737", - "46777519176153109544795", - "154041473931892255118765" + "2804557948947045898861508", + "2144702128635053896739193", + "2959775015089508025376310" ], - "redemptionFee": "70994440083562609854", + "redemptionFee": "2373231434616703105263", "reserves": [ - "9048605078356063539222838", - "11650097881337580935145254", - "38364545206726808877223056" + "836288004898102432152966121", + "639526334241128639232606941", + "882572008628227312470591880" ], - "mAssetSupply": "58920329174773004059853505" + "mAssetSupply": "2358196438607494552012317569" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "126910640903531456888832", - "expectedQty": "128855561943491323558643", + "type": "redeemMasset", + "inputQty": "1411811945613142927396044", + "expectedQtys": [ + "500521148936394623114775", + "382758635439776049486493", + "528222278916372223392120" + ], + "redemptionFee": "423543583683942878218", "reserves": [ - "9175515719259594996111670", - "11650097881337580935145254", - "38364545206726808877223056" - ] + "835787483749166037529851346", + "639143575605688863183120448", + "882043786349310940247199760" + ], + "mAssetSupply": "2356785050205465093027799743" }, { - "type": "redeem", + "type": "redeemMasset", + "inputQty": "118322245509114841844940", + "expectedQtys": [ + "41948069961425462495931", + "32078536645027634154253", + "44269668041506403927655" + ], + "redemptionFee": "35496673652734452553", + "reserves": [ + "835745535679204612067355415", + "639111497069043835548966195", + "881999516681269433843272105" + ], + "mAssetSupply": "2356666763456629630920407356" + }, + { + "type": "swap", "inputIndex": 2, - "inputQty": "404699344477222862848", - "expectedQty": "408442232587772929418", - "swapFee": "242819606686333717", + "inputQty": "1760820177561352669233152", + "outputIndex": 1, + "expectedQty": "1754668949559171308475157", + "swapFee": "1055420168389737510652", "reserves": [ - "9175515719259594996111670", - "11650097881337580935145254", - "38364136764494221104293638" + "835745535679204612067355415", + "637356828119484664240491038", + "883760336858830786512505257" ], - "mAssetSupply": "59048780280191624846883017" + "mAssetSupply": "2356667818876798020657918008", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "2561752735062987112448", - "expectedQty": "2539509676588021457220", - "swapFee": "1537051641037792267", + "inputQty": "1285841782686872259002368", + "expectedQty": "1288270359785546376853572", "reserves": [ - "9175515719259594996111670", - "11647558371660992913688034", - "38364136764494221104293638" - ], - "mAssetSupply": "59046220064508202897562836" + "835745535679204612067355415", + "638642669902171536499493406", + "883760336858830786512505257" + ] }, { "type": "redeemBassets", "inputQtys": [ - "60376920958263118266368", - "51276648761428325433344", - "79584673807993032146944" + "3730387459863248373809152", + "2839037455079542011985920", + "2361225012305967936700416" ], - "expectedQty": "191794390890492930553445", - "swapFee": "115145721967476244078", + "expectedQty": "8931394482534127323504612", + "swapFee": "5362053921873600554435", "reserves": [ - "9115138798301331877845302", - "11596281722899564588254690", - "38284552090686228072146694" + "832015148219341363693546263", + "635803632447091994487507486", + "881399111846524818575804841" ], - "mAssetSupply": "58854425673617709967009391" + "mAssetSupply": "2349024694754049439711266968" }, { - "type": "redeemMasset", - "inputQty": "821861668407054172160", - "expectedQtys": [ - "127248472478710287160", - "161885536613742640690", - "534457113695219006482" + "type": "redeem", + "inputIndex": 2, + "inputQty": "296167476015664713433088", + "expectedQty": "296295029703839807949959", + "swapFee": "177700485609398828059", + "reserves": [ + "832015148219341363693546263", + "635803632447091994487507486", + "881102816816820978767854882" + ], + "mAssetSupply": "2348728704978519384396661939" + }, + { + "type": "mintMulti", + "inputQtys": [ + "280110545117564829696", + "138258468873259286528", + "90096247493582716928" ], - "redemptionFee": "246558500522116251", + "expectedQty": "508469931002305126016", "reserves": [ - "9115011549828853167558142", - "11596119837362950845614000", - "38284017633572532853140212" + "832015428329886481258375959", + "635803770705560867746794014", + "881102906913068472350571810" ], - "mAssetSupply": "58853604058507803434953482" + "mAssetSupply": "2348729213448450386701787955" }, { - "type": "redeemMasset", - "inputQty": "23311757903694148403", - "expectedQtys": [ - "3609348991525641141", - "4591814635866514391", - "15159649516832418049" + "type": "mintMulti", + "inputQtys": [ + "67593084789311397888", + "17661494927163697152", + "16984791049405114368" ], - "redemptionFee": "6993527371108244", + "expectedQty": "102215770690151791555", "reserves": [ - "9115007940479861641917001", - "11596115245548314979099609", - "38284002473923016020722163" + "832015495922971270569773847", + "635803788367055794910491166", + "881102923897859521755686178" ], - "mAssetSupply": "58853580753743427111913323" + "mAssetSupply": "2348729315664221076853579510" }, { "type": "mintMulti", "inputQtys": [ - "16684442951488433553408", - "57326073479984068952064", - "41348569624359701839872" + "9317453095423881349431296", + "52028589224868410774519808", + "23057433263024346278920192" ], - "expectedQty": "115675947401505629566142", + "expectedQty": "84463261389349041483857877", "reserves": [ - "9131692383431350075470409", - "11653441319028299048051673", - "38325351043547375722562035" + "841332949018395151919205143", + "687832377591924205685010974", + "904160357160883868034606370" ], - "mAssetSupply": "58969256701144932741479465" + "mAssetSupply": "2433192577053570118337437387" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2166684673988384784384", - "expectedQty": "2145495933202686990016", + "type": "redeemBassets", + "inputQtys": [ + "5395085799911518734647296", + "2109125733282820034396160", + "838319678756718693580800" + ], + "expectedQty": "8342952302019024104434696", + "swapFee": "5008776647199734303242", "reserves": [ - "9131692383431350075470409", - "11653441319028299048051673", - "38327517728221364107346419" - ] + "835937863218483633184557847", + "685723251858641385650614814", + "903322037482127149341025570" + ], + "mAssetSupply": "2424849624751551094233002691" }, { "type": "mintMulti", "inputQtys": [ - "41071262208783208677376", - "40563251625853280321536", - "22437548395971425075200" + "21817329503827824640", + "65901632668384370688", + "7263563303449703424" ], - "expectedQty": "104803706151443932110499", + "expectedQty": "95064070397896651967", "reserves": [ - "9172763645640133284147785", - "11694004570654152328373209", - "38349955276617335532421619" + "835937885035813137012382487", + "685723317760274054034985502", + "903322044745690452790728994" ], - "mAssetSupply": "59076205903229579360579980" + "mAssetSupply": "2424849719815621492129654658" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3972761318603732549632", - "9305047677083215462400", - "10172910169708554092544" + "165591971810670149632", + "387426716381687250944", + "231834469053248569344" ], - "expectedQty": "23486701348279112443170", - "swapFee": "14100481097626043091", + "expectedQty": "785142101156774639085", "reserves": [ - "9168790884321529551598153", - "11684699522977069112910809", - "38339782366447626978329075" + "835938050627784947682532119", + "685723705186990435722236446", + "903322276580159506039298338" ], - "mAssetSupply": "59052719201881300248136810" + "mAssetSupply": "2424850504957722648904293743" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "263266375679489540096", + "inputIndex": 0, + "inputQty": "15918178034667858713116672", "outputIndex": 1, - "expectedQty": "258461161173693609466", - "swapFee": "156421983602403618", + "expectedQty": "15877133876900363076428111", + "swapFee": "9547232533127536981106", "reserves": [ - "9168790884321529551598153", - "11684441061815895419301343", - "38340045632823306467869171" + "851856228662452806395648791", + "669846571310090072645808335", + "903322276580159506039298338" ], - "mAssetSupply": "59052719358303283850540428", + "mAssetSupply": "2424860052190255776441274849", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "192803303253375944805580", - "expectedQtys": [ - "29926527628017581229035", - "38137498462563272063606", - "125140211982819741832691" - ], - "redemptionFee": "57840990976012783441", + "type": "redeem", + "inputIndex": 1, + "inputQty": "105129033166753789640704", + "expectedQty": "104889477441429524916794", + "swapFee": "63077419900052273784", "reserves": [ - "9138864356693511970369118", - "11646303563353332147237737", - "38214905420840486726036480" + "851856228662452806395648791", + "669741681832648643120891541", + "903322276580159506039298338" ], - "mAssetSupply": "58859973896040883918518289" + "mAssetSupply": "2424754986234508922703907929" }, { - "type": "mintMulti", - "inputQtys": [ - "53962708828618873634816", - "72218110146443462311936", - "79078248612861564682240" - ], - "expectedQty": "205882397402730202714116", + "type": "swap", + "inputIndex": 0, + "inputQty": "14537930681880962", + "outputIndex": 2, + "expectedQty": "14535862761988203", + "swapFee": "8718389638766", "reserves": [ - "9192827065522130844003934", - "11718521673499775609549673", - "38293983669453348290718720" + "851856228676990737077529753", + "669741681832648643120891541", + "903322276565623643277310135" ], - "mAssetSupply": "59065856293443614121232405" + "mAssetSupply": "2424754986234517641093546695", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "893122306904448172032", - "expectedQty": "879415726072715496507", - "swapFee": "535873384142668903", + "type": "redeemMasset", + "inputQty": "11005135129871266887185203", + "expectedQtys": [ + "3865124733486791272714105", + "3038816941585077572488068", + "4098641479543946382496942" + ], + "redemptionFee": "3301540538961380066155", "reserves": [ - "9191947649796058128507427", - "11718521673499775609549673", - "38293983669453348290718720" + "847991103943503945804815648", + "666702864891063565548403473", + "899223635086079696894813193" ], - "mAssetSupply": "59064963707010093815729276" + "mAssetSupply": "2413753152645185335586427647" }, { "type": "redeemMasset", - "inputQty": "130270734318197068", + "inputQty": "171597314992140661555", "expectedQtys": [ - "20267218711254995", - "25838032458188696", - "84433960235974338" + "60266868016531568791", + "47382682881671057222", + "63907972478788007886" + ], + "redemptionFee": "51479194497642198", + "reserves": [ + "847991043676635929273246857", + "666702817508380683877346251", + "899223571178107218106805307" ], - "redemptionFee": "39081220295459", + "mAssetSupply": "2413752981099349537943408290" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "34408020426481596979216384", + "expectedQty": "34416891602325462291695506", + "swapFee": "20644812255888958187529", "reserves": [ - "9191947629528839417252432", - "11718521647661743151360977", - "38293983585019388054744382" + "847991043676635929273246857", + "666702817508380683877346251", + "864806679575781755815109801" ], - "mAssetSupply": "59064963576778440717827667" + "mAssetSupply": "2379365605485123829922379435" }, { "type": "swap", "inputIndex": 1, - "inputQty": "147759457696828555264", - "outputIndex": 2, - "expectedQty": "150304581216103944493", - "swapFee": "89363348547126608", + "inputQty": "39130024076768232603648", + "outputIndex": 0, + "expectedQty": "39190432485638343099946", + "swapFee": "23514224396831943714", "reserves": [ - "9191947629528839417252432", - "11718669407119439979916241", - "38293833280438171950799889" + "847951853244150290930146911", + "666741947532457452109949899", + "864806679575781755815109801" ], - "mAssetSupply": "59064963666141789264954275", + "mAssetSupply": "2379365628999348226754323149", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "49010881454253170229248", - "15472081986875230781440", - "34970708774549723283456" + "1208024764197278505238528", + "1306510336320658064015360", + "416794382368331087740928" ], - "expectedQty": "99969735711927371657176", + "expectedQty": "2932306723091043960313722", + "swapFee": "1760440298033446444054", "reserves": [ - "9240958510983092587481680", - "11734141489106315210697681", - "38328803989212721674083345" + "846743828479953012424908383", + "665435437196136794045934539", + "864389885193413424727368873" ], - "mAssetSupply": "59164933401853716636611451" + "mAssetSupply": "2376433322276257182794009427" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "40501598384624305700864", - "expectedQty": "41099349199818395798181", + "inputQty": "3622745332963265216512", + "expectedQty": "3622746810392930748047", + "swapFee": "2173647199777959129", + "reserves": [ + "846740205733142619494160336", + "665435437196136794045934539", + "864389885193413424727368873" + ], + "mAssetSupply": "2376429701704571419306752044" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "4765040974864094068736", + "expectedQty": "4772421948119940221195", "reserves": [ - "9281460109367716893182544", - "11734141489106315210697681", - "38328803989212721674083345" + "846740205733142619494160336", + "665440202237111658140003275", + "864389885193413424727368873" ] }, { "type": "redeemMasset", - "inputQty": "30312377626944165065523", + "inputQty": "860036807732106", "expectedQtys": [ - "4750507807372695930847", - "6005857925366101169890", - "19617741223090461975471" + "306345191975759", + "240752010029109", + "312730733144063" ], - "redemptionFee": "9093713288083249519", + "redemptionFee": "258011042319", "reserves": [ - "9276709601560344197251697", - "11728135631180949109527791", - "38309186247989631212107874" + "846740205732836274302184577", + "665440202236870906129974166", + "864389885193100693994224810" ], - "mAssetSupply": "59175729467139878950593628" + "mAssetSupply": "2376434474125659760450283452" }, { - "type": "mintMulti", - "inputQtys": [ - "10360715260851908509696", - "3675285150455393419264", - "5717836376248135188480" + "type": "redeemMasset", + "inputQty": "458033196288068937370828", + "expectedQtys": [ + "163151467689097860389565", + "128218247957545143699171", + "166552240545622436216653" ], - "expectedQty": "19880245122560504430602", + "redemptionFee": "137409958886420681211", "reserves": [ - "9287070316821196105761393", - "11731810916331404502947055", - "38314904084365879347296354" + "846577054265147176441795012", + "665311983988913360986274995", + "864223332952555071558008157" ], - "mAssetSupply": "59195609712262439455024230" + "mAssetSupply": "2375976578339330577933593835" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "139428223670802102353920", - "outputIndex": 0, - "expectedQty": "135961432699726295410571", - "swapFee": "82851477528474817733", + "inputQty": "822484260067123789824", + "expectedQty": "822617155001999265622", + "swapFee": "493490556040274273", "reserves": [ - "9151108884121469810350822", - "11731810916331404502947055", - "38454332308036681449650274" + "846577054265147176441795012", + "665311983988913360986274995", + "864222510335400069558742535" ], - "mAssetSupply": "59195692563739967929841963", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2375975756348561066850078284" }, { "type": "redeemBassets", "inputQtys": [ - "888684303461075994542080", - "148172696015770828668928", - "458618522989582811136" + "13571952884036308761051136", + "8241369898471747865280512", + "11621989480792474773356544" ], - "expectedQty": "1053699011674498212600590", - "swapFee": "632598966384529645347", + "expectedQty": "33431104212292642795638413", + "swapFee": "20070704950345793153275", + "reserves": [ + "833005101381110867680743876", + "657070614090441613120994483", + "852600520854607594785385991" + ], + "mAssetSupply": "2342544652136268424054439871" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "8015945084331094521675776", + "expectedQty": "8017071460904479962337165", + "swapFee": "4809567050598656713005", "reserves": [ - "8262424580660393815808742", - "11583638220315633674278127", - "38453873689513691866839138" + "833005101381110867680743876", + "657070614090441613120994483", + "844583449393703114823048826" ], - "mAssetSupply": "58141993552065469717241373" + "mAssetSupply": "2334533516618987928189477100" }, { "type": "redeemMasset", - "inputQty": "8653577852824410128384", + "inputQty": "105808238260104860375449", "expectedQtys": [ - "1229371064435870531362", - "1723536415967049074323", - "5721574722753048210858" + "37743026592204753135750", + "29771526752302075726356", + "38267635500611829122589" ], - "redemptionFee": "2596073355847323038", + "redemptionFee": "31742471478031458112", "reserves": [ - "8261195209595957945277380", - "11581914683899666625203804", - "38448152114790938818628280" + "832967358354518662927608126", + "657040842563689311045268127", + "844545181758202502993926237" ], - "mAssetSupply": "58133342570286001154436027" + "mAssetSupply": "2334427740123199301360559763" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "298590010173830529024", - "expectedQty": "295399005089349121438", + "inputIndex": 1, + "inputQty": "269232694288620344836096", + "expectedQty": "269635909420523494096904", "reserves": [ - "8261195209595957945277380", - "11581914683899666625203804", - "38448450704801112649157304" + "832967358354518662927608126", + "657310075257977931390104223", + "844545181758202502993926237" ] }, { - "type": "redeemMasset", - "inputQty": "2051943096128", - "expectedQtys": [ - "291507939590", - "408684215825", - "1356707880767" + "type": "mintMulti", + "inputQtys": [ + "6926850460703249137664", + "2881631763496243822592", + "8202353210079058067456" ], - "redemptionFee": "615582928", + "expectedQty": "18005084418148107482912", "reserves": [ - "8261195209595666437337790", - "11581914683899257940987979", - "38448450704799755941276537" + "832974285204979366176745790", + "657312956889741427633926815", + "844553384111412582051993693" ], - "mAssetSupply": "58133637969289039176044265" + "mAssetSupply": "2334715381117037972962139579" }, { "type": "redeemMasset", - "inputQty": "21430279584181711064268", + "inputQty": "85860115397110095308390", "expectedQtys": [ - "3044478503439338866775", - "4268255305581323403368", - "14169315539880467789788" + "30623780974896280962389", + "24165701608422897038215", + "31049479336893149170642" ], - "redemptionFee": "6429083875254513319", + "redemptionFee": "25758034619133028592", "reserves": [ - "8258150731092227098471015", - "11577646428593676617584611", - "38434281389259875473486749" + "832943661424004469895783401", + "657288791188133004736888600", + "844522334632075688902823051" ], - "mAssetSupply": "58112214118788732719493316" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "687961943861214410964992", - "expectedQty": "693157183665284825044668", - "reserves": [ - "8258150731092227098471015", - "12265608372454891028549603", - "38434281389259875473486749" - ] + "mAssetSupply": "2334629546759675481999859781" }, { "type": "mintMulti", "inputQtys": [ - "62077467547672697110528", - "76358482109133456670720", - "27808442849219800203264" + "1950203190292462592", + "10362876613258860544", + "24511721824713547776" ], - "expectedQty": "167666151630257460115604", + "expectedQty": "36821610102249601340", "reserves": [ - "8320228198639899795581543", - "12341966854564024485220323", - "38462089832109095273690013" + "832943663374207660188245993", + "657288801551009617995749144", + "844522359143797513616370827" ], - "mAssetSupply": "58973037454084275004653588" + "mAssetSupply": "2334629583581285584249461121" }, { - "type": "redeemBassets", - "inputQtys": [ - "243567214566482894651392", - "191199740730005090467840", - "972617547162801345134592" - ], - "expectedQty": "1403380483866332965005463", - "swapFee": "842533810606163477089", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1901603593231120201678848", + "expectedQty": "1901810250672871603869340", + "swapFee": "1140962155938672121007", "reserves": [ - "8076660984073416900930151", - "12150767113834019394752483", - "37489472284946293928555421" + "832943663374207660188245993", + "657288801551009617995749144", + "842620548893124642012501487" ], - "mAssetSupply": "57569656970217942039648125" + "mAssetSupply": "2332729120950210402719903280" }, { "type": "swap", "inputIndex": 2, - "inputQty": "198616979951419117273088", + "inputQty": "299190507908493926727680", "outputIndex": 1, - "expectedQty": "195128799352784612624657", - "swapFee": "117952180233647087998", + "expectedQty": "298355700272204529225807", + "swapFee": "179387996693640057211", "reserves": [ - "8076660984073416900930151", - "11955638314481234782127826", - "37688089264897713045828509" + "832943663374207660188245993", + "656990445850737413466523337", + "842919739401033135939229167" ], - "mAssetSupply": "57569774922398175686736123", + "mAssetSupply": "2332729300338207096359960491", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "33302107362987126784", - "expectedQty": "33536652843754333823", - "reserves": [ - "8076660984073416900930151", - "11955671616588597769254610", - "37688089264897713045828509" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1025925864874228498563072", - "expectedQty": "1043300214862194629837668", + "inputIndex": 2, + "inputQty": "128802619080846748942336", + "expectedQty": "128711661368374776408523", "reserves": [ - "9102586848947645399493223", - "11955671616588597769254610", - "37688089264897713045828509" + "832943663374207660188245993", + "656990445850737413466523337", + "843048542020113982688171503" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "19218382830208219611136", - "outputIndex": 2, - "expectedQty": "19528463470156854314893", - "swapFee": "11613983353254189499", + "type": "redeemMasset", + "inputQty": "1854412759561267960191385", + "expectedQtys": [ + "661916826059240771050726", + "522091768976451003738711", + "669946887989140105669814" + ], + "redemptionFee": "556323827868380388057", "reserves": [ - "9102586848947645399493223", - "11974889999418805988865746", - "37668560801427556191513616" + "832281746548148419417195267", + "656468354081760962462784626", + "842378595132124842582501689" ], - "mAssetSupply": "58613120287896567325097113", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2331004155563842071556565686" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "11355919777557171404800", - "expectedQty": "11268234886952272218179", - "swapFee": "6813551866534302842", + "inputIndex": 2, + "inputQty": "68556658786421531981381632", + "expectedQty": "68548735081295828541550706", + "swapFee": "41133995271852919188828", "reserves": [ - "9102586848947645399493223", - "11963621764531853716647567", - "37668560801427556191513616" + "832281746548148419417195267", + "656468354081760962462784626", + "773829860050829014040950983" ], - "mAssetSupply": "58601771181670876687995155" + "mAssetSupply": "2262488630772692392494372882" }, { "type": "redeemMasset", - "inputQty": "10677128686023656393932", + "inputQty": "3578166161880133705452748", "expectedQtys": [ - "1657976070609982854195", - "2179094682926949791191", - "6861079543591981751580" + "1315873560397747605386102", + "1037904957013306985229243", + "1223458591168642831795756" ], - "redemptionFee": "3203138605807096918", + "redemptionFee": "1073449848564040111635", "reserves": [ - "9100928872877035416639028", - "11961442669848926766856376", - "37661699721883964209762036" + "830965872987750671811809165", + "655430449124747655477555383", + "772606401459660371209155227" ], - "mAssetSupply": "58591097256123458838698141" + "mAssetSupply": "2258911538060660822829031769" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "37702055631794446336", - "expectedQty": "38036814683331436343", - "swapFee": "22621233379076667", + "type": "mintMulti", + "inputQtys": [ + "306883434560596082688", + "2374078607122004705280", + "1701567074027402690560" + ], + "expectedQty": "4384711513789678890587", "reserves": [ - "9100928872877035416639028", - "11961442669848926766856376", - "37661661685069280878325693" + "830966179871185232407891853", + "655432823203354777482260663", + "772608103026734398611845787" ], - "mAssetSupply": "58591059576689060423328472" + "mAssetSupply": "2258915922772174612507922356" }, { "type": "redeemBassets", "inputQtys": [ - "42190781203223750377472", - "13163872808060443426816", - "15029924114291528564736" + "3259935997469356720128", + "2323582806052207067136", + "1676603484726258040832" ], - "expectedQty": "70966152913591400379035", - "swapFee": "42605254901095497525", + "expectedQty": "7259808220663672022336", + "swapFee": "4358500032417653805", "reserves": [ - "9058738091673811666261556", - "11948278797040866323429560", - "37646631760954989349760957" + "830962919935187763051171725", + "655430499620548725275193527", + "772606426423249672353804955" ], - "mAssetSupply": "58520093423775469022949437" + "mAssetSupply": "2258908662963953948835900020" }, { "type": "mintMulti", "inputQtys": [ - "288301139380004540383232", - "463978142184145288167424", - "988097619129414035963904" + "826039601547721834496", + "491365924945139859456", + "837234731312443162624" ], - "expectedQty": "1738687335497536591905555", + "expectedQty": "2154338674165159794276", "reserves": [ - "9347039231053816206644788", - "12412256939225011611596984", - "38634729380084403385724861" + "830963745974789310773006221", + "655430990986473670415052983", + "772607263657980984796967579" ], - "mAssetSupply": "60258780759273005614854992" + "mAssetSupply": "2258910817302628113995694296" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "158587257679837885628416", - "395977572018741676343296", - "240352628817035714887680" + "19915657817580848021504", + "18339331403112282849280", + "33555103206250448420864" ], - "expectedQty": "797685568290822053979159", + "expectedQty": "71807278219552269871331", + "swapFee": "43110233071574306506", "reserves": [ - "9505626488733654092273204", - "12808234511243753287940280", - "38875082008901439100612541" + "830943830316971729924984717", + "655412651655070558132203703", + "772573708554774734348546715" ], - "mAssetSupply": "61056466327563827668834151" + "mAssetSupply": "2258839010024408561725822965" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7740262339994405444780032", - "246005771035735461199872", - "643495362489393690443776" + "29810097547480026578944", + "283489316128668497477632", + "66197224439276564905984" ], - "expectedQty": "8682435187749419577908321", + "expectedQty": "379797858539732960186786", + "swapFee": "228015524438502877838", "reserves": [ - "17245888828728059537053236", - "13054240282279488749140152", - "39518577371390832791056317" + "830914020219424249898405773", + "655129162338941889634726071", + "772507511330335457783640731" ], - "mAssetSupply": "69738901515313247246742472" + "mAssetSupply": "2258459212165868828765636179" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "592623566350066724634624", - "expectedQty": "589079850067126035073958", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2925385821778553149063168", + "expectedQty": "2920054086289491727766007", + "swapFee": "1755231493067131889437", "reserves": [ - "17245888828728059537053236", - "13054240282279488749140152", - "40111200937740899515690941" - ] + "830914020219424249898405773", + "652209108252652397906960064", + "772507511330335457783640731" + ], + "mAssetSupply": "2255535581575583342748462448" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "4338049927848546887794688", - "outputIndex": 1, - "expectedQty": "4241567193914891313515920", - "swapFee": "2585802939945751297414", + "inputIndex": 1, + "inputQty": "54738636472635588962418688", + "outputIndex": 0, + "expectedQty": "54783777910462559652861023", + "swapFee": "32875214614925891285656", "reserves": [ - "17245888828728059537053236", - "8812673088364597435624232", - "44449250865589446403485629" + "776130242308961690245544750", + "706947744725287986869378752", + "772507511330335457783640731" ], - "mAssetSupply": "70330567168320319033113844", + "mAssetSupply": "2255568456790198268639748104", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "17890355755211420598272", - "expectedQty": "17946272737959422257018", + "type": "redeemMasset", + "inputQty": "833272689649438221244825", + "expectedQtys": [ + "286639101615543643252273", + "261088739222874931763247", + "285301160769405541024152" + ], + "redemptionFee": "249981806894831466373", "reserves": [ - "17263779184483270957651508", - "8812673088364597435624232", - "44449250865589446403485629" - ] + "775843603207346146602292477", + "706686655986065111937615505", + "772222210169566052242616579" + ], + "mAssetSupply": "2254735434082355725249969652" }, { "type": "mintMulti", "inputQtys": [ - "7082596312934", - "12005663885207", - "1738809862224" - ], - "expectedQty": "21113448877763", - "reserves": [ - "17263779184490353553964442", - "8812673088376603099509439", - "44449250865591185213347853" + "786496948222353152", + "2109213012234910208", + "2027123793833646848" ], - "mAssetSupply": "70348513441079391904248625" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "5243628023959593984", - "expectedQty": "5292584345295214713", - "swapFee": "3146176814375756", + "expectedQty": "4923254271573838122", "reserves": [ - "17263779184490353553964442", - "8812673088376603099509439", - "44449245573006839918133140" + "775843603993843094824645629", + "706686658095278124172525713", + "772222212196689846076263427" ], - "mAssetSupply": "70348508200597544759030397" + "mAssetSupply": "2254735439005609996823807774" }, { "type": "redeemBassets", "inputQtys": [ - "1474999733335113596928", - "3384660929901049151488", - "3765620701584579100672" + "15081774898936979456", + "39421257188180803584", + "17655212833138231296" ], - "expectedQty": "8672166094649835584593", - "swapFee": "5206423510896439214", + "expectedQty": "72170635989199657491", + "swapFee": "43328378620692209", "reserves": [ - "17262304184757018440367514", - "8809288427446702050357951", - "44445479952305255339032468" + "775843588912068195887666173", + "706686618674020935991722129", + "772222194541477012938032131" ], - "mAssetSupply": "70339836034502894923445804" + "mAssetSupply": "2254735366834974007624150283" }, { - "type": "redeemMasset", - "inputQty": "27575851125296518188236", - "expectedQtys": [ - "6765439760563727103597", - "3452535046969497619979", - "17419066077643476055573" - ], - "redemptionFee": "8272755337588955456", - "reserves": [ - "17255538744996454713263917", - "8805835892399732552737972", - "44428060886227611862976895" + "type": "redeemBassets", + "inputQtys": [ + "1371867052984682407788544", + "646860270046080485294080", + "1000265884872778073505792" ], - "mAssetSupply": "70312268456132935994213024" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "28462885473618657017856", - "expectedQty": "27791808912964970398300", - "swapFee": "17077731284171194210", + "expectedQty": "3018735106745005636268432", + "swapFee": "1812328461123677588314", "reserves": [ - "17255538744996454713263917", - "8778044083486767582339672", - "44428060886227611862976895" + "774471721859083513479877629", + "706039758403974855506428049", + "771221928656604234864526339" ], - "mAssetSupply": "70283822648390601508389378" + "mAssetSupply": "2251716631728229001987881851" }, { "type": "mintMulti", "inputQtys": [ - "292200560352582828032", - "5436254339152045146112", - "2102492356243563741184" - ], - "expectedQty": "7939369801142293346890", - "reserves": [ - "17255830945556807296091949", - "8783480337825919627485784", - "44430163378583855426718079" - ], - "mAssetSupply": "70291762018191743801736268" - }, - { - "type": "redeemMasset", - "inputQty": "341735025166987978342", - "expectedQtys": [ - "83866908107734204400", - "42689531479688864376", - "215939785284160526319" + "120509278290528073416704", + "32107931846713968427008", + "43964326414894801879040" ], - "redemptionFee": "102520507550096393", + "expectedQty": "196556272547027444795907", "reserves": [ - "17255747078648699561887549", - "8783437648294439938621408", - "44429947438798571266191760" + "774592231137374041553294333", + "706071866335821569474855057", + "771265892983019129666405379" ], - "mAssetSupply": "70291420385687084363854319" + "mAssetSupply": "2251913188000776029432677758" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "156136773695384096", - "expectedQty": "155559234894389204", - "swapFee": "93682064217230", + "inputIndex": 2, + "inputQty": "1079467020541291250319360", + "expectedQty": "1079062407111188426062816", + "swapFee": "647680212324774750191", "reserves": [ - "17255746923089464667498345", - "8783437648294439938621408", - "44429947438798571266191760" + "774592231137374041553294333", + "706071866335821569474855057", + "770186830575907941240342563" ], - "mAssetSupply": "70291420229643992732687453" + "mAssetSupply": "2250834368660447062957108589" }, { - "type": "redeemBassets", - "inputQtys": [ - "556210618762494912", - "440073367666363840", - "181145711586487136" - ], - "expectedQty": "1187749370753744626", - "swapFee": "713077468933606", + "type": "mint", + "inputIndex": 2, + "inputQty": "186334836275616821417082880", + "expectedQty": "186184202533748897798713578", "reserves": [ - "17255746366878845905003433", - "8783437208221072272257568", - "44429947257652859679704624" - ], - "mAssetSupply": "70291419041894621978942827" + "774592231137374041553294333", + "706071866335821569474855057", + "956521666851524762657425443" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3211436163740938534912", - "expectedQty": "3287137024071703779579", + "inputIndex": 2, + "inputQty": "8500680635353029358387200", + "expectedQty": "8489062369096228907242730", "reserves": [ - "17255746366878845905003433", - "8786648644384813210792480", - "44429947257652859679704624" + "774592231137374041553294333", + "706071866335821569474855057", + "965022347486877792015812643" ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "464792090100679785316352", - "expectedQty": "469107150249718894610914", - "swapFee": "278875254060407871189", + "inputQty": "17206419044162298970112", + "expectedQty": "17220017078904562829058", + "swapFee": "10323851426497379382", "reserves": [ - "17255746366878845905003433", - "8786648644384813210792480", - "43960840107403140785093710" + "774592231137374041553294333", + "706071866335821569474855057", + "965005127469798887452983585" ], - "mAssetSupply": "69830192964072074305277243" + "mAssetSupply": "2445490437468099453861474167" }, { - "type": "mintMulti", - "inputQtys": [ - "3131625851747899401043968", - "2740192073809197338198016", - "1078703130050887206043648" + "type": "redeemMasset", + "inputQty": "34787776325917067339366", + "expectedQtys": [ + "11015482606468888164082", + "10041053924745454922190", + "13723345999982835373873" ], - "expectedQty": "6998320404093472265237805", + "redemptionFee": "10436332897775120201", "reserves": [ - "20387372218626745306047401", - "11526840718194010548990496", - "45039543237454027991137358" + "774581215654767572665130251", + "706061825281896824019932867", + "964991404123798904617609712" ], - "mAssetSupply": "76828513368165546570515048" + "mAssetSupply": "2445455660128106434569255002" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "1075423097458323756154880", - "expectedQty": "1076963343253618863758760", + "inputQty": "28921782127626023233126400", + "outputIndex": 2, + "expectedQty": "28947378825111717122931919", + "swapFee": "17357624968374001873927", "reserves": [ - "21462795316085069062202281", - "11526840718194010548990496", - "45039543237454027991137358" - ] + "803502997782393595898256651", + "706061825281896824019932867", + "936044025298687187494677793" + ], + "mAssetSupply": "2445473017753074808571128929", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "4451921409992343158784", - "18677102657180075556864", - "54862436143748503044096" + "645775335057565436346368", + "498548727394962558156800", + "249203272660810131832832" ], - "expectedQty": "77883844650642782918522", - "swapFee": "46758361807470151842", + "expectedQty": "1393908095005965078175870", + "swapFee": "836846965182688660101", "reserves": [ - "21458343394675076719043497", - "11508163615536830473433632", - "44984680801310279488093262" + "802857222447336030461910283", + "705563276554501861461776067", + "935794822026026377362844961" ], - "mAssetSupply": "77827592866768522651355286" + "mAssetSupply": "2444079109658068843492953059" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "4420758752241043456", - "expectedQty": "4449381229176024347", - "swapFee": "2652455251344626", + "inputIndex": 1, + "inputQty": "3255906523875330", + "expectedQty": "3249895915726041", + "swapFee": "1953543914325", "reserves": [ - "21458343394675076719043497", - "11508163615536830473433632", - "44984676351929050312068915" + "802857222447336030461910283", + "705563276551251965546050026", + "935794822026026377362844961" ], - "mAssetSupply": "77827588448662225661656456" + "mAssetSupply": "2444079109654814890512992054" }, { - "type": "redeemMasset", - "inputQty": "69082893165395640844288", - "expectedQtys": [ - "19041573206202981951689", - "10212043675682089003893", - "39918226312156352240194" - ], - "redemptionFee": "20724867949618692253", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1240982267473905422696448", + "expectedQty": "1240146646780578335000012", + "swapFee": "744589360484343253617", "reserves": [ - "21439301821468873737091808", - "11497951571861148384429739", - "44944758125616893959828721" + "801617075800555452126910271", + "705563276551251965546050026", + "935794822026026377362844961" ], - "mAssetSupply": "77758526280364779639504421" + "mAssetSupply": "2442838871976701469433549223" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "619110108528244376469504", - "821496828556342500261888", - "969973218531135457329152" + "121146015916303316942848", + "57338433538513730273280", + "164285173900779515281408" ], - "expectedQty": "2416935810256532598377945", - "swapFee": "1451032105417169860943", + "expectedQty": "342661432910764624258312", "reserves": [ - "20820191712940629360622304", - "10676454743304805884167851", - "43974784907085758502499569" + "801738221816471755443853119", + "705620614984790479276323306", + "935959107199927156878126369" ], - "mAssetSupply": "75341590470108247041126476" + "mAssetSupply": "2443181533409612234057807535" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "338298119930735104", - "outputIndex": 1, - "expectedQty": "333024039817651760", - "swapFee": "203191082100090", + "type": "mintMulti", + "inputQtys": [ + "3908845892978349178880", + "643320620301011517440", + "4704374368354815180800" + ], + "expectedQty": "9252234245392792180707", "reserves": [ - "20820192051238749291357408", - "10676454410280766066516091", - "43974784907085758502499569" + "801742130662364733793031999", + "705621258305410780287840746", + "935963811574295511693307169" ], - "mAssetSupply": "75341590470311438123226566", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2443190785643857626849988242" }, { "type": "redeemMasset", - "inputQty": "96126118585956490752819", + "inputQty": "220617300112158203314176", "expectedQtys": [ - "26555901306770811022592", - "13617687527948863631108", - "56089302399569529820588" - ], - "redemptionFee": "28837835575786947225", - "reserves": [ - "20793636149931978480334816", - "10662836722752817202884983", - "43918695604686188972678981" + "72374667519477085939088", + "63697667880242336440491", + "84491093934390370452055" ], - "mAssetSupply": "75245493189561057419420972" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "248476079672952015028224", - "outputIndex": 1, - "expectedQty": "242397019693201745401553", - "swapFee": "147977604716299721112", + "redemptionFee": "66185190033647460994", "reserves": [ - "20793636149931978480334816", - "10420439703059615457483430", - "44167171684359140987707205" + "801669755994845256707092911", + "705557560637530537951400255", + "935879320480361121322855114" ], - "mAssetSupply": "75245641167165773719142084", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "33838210693530258505728", - "expectedQty": "33580190986842825034013", - "reserves": [ - "20793636149931978480334816", - "10420439703059615457483430", - "44201009895052671246212933" - ] + "mAssetSupply": "2442970234528935502294135060" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "10890995337501492641792", - "expectedQty": "10807890593569824292756", + "inputIndex": 0, + "inputQty": "61785327119222751232", + "expectedQty": "61790126520509758610", "reserves": [ - "20793636149931978480334816", - "10420439703059615457483430", - "44211900890390172738854725" + "801669817780172375929844143", + "705557560637530537951400255", + "935879320480361121322855114" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "482761101899757387776", - "35333374596483371008", - "488444276750757658624" - ], - "expectedQty": "1003916282421572245776", - "swapFee": "602711396290717778", - "reserves": [ - "20793153388830078722947040", - "10420404369685018974112422", - "44211412446113421981196101" - ], - "mAssetSupply": "75289025332463764796223077" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "756808233139085568", - "expectedQty": "743498297366984085", - "swapFee": "454084939883451", - "reserves": [ - "20793153388830078722947040", - "10420403626186721607128337", - "44211412446113421981196101" - ], - "mAssetSupply": "75289024576109616597020960" - }, - { - "type": "mintMulti", - "inputQtys": [ - "3174639131193380962304", - "2059848542938604240896", - "3309134932208561160192" - ], - "expectedQty": "8557232592229214469628", - "reserves": [ - "20796328027961272103909344", - "10422463474729660211369233", - "44214721581045630542356293" - ], - "mAssetSupply": "75297581808701845811490588" - }, { "type": "redeemMasset", - "inputQty": "73358580237290460466380", + "inputQty": "5556536259899087671787520", "expectedQtys": [ - "20254719805284264238609", - "10151026521490865341554", - "43063217491502931083354" + "1822851086420794911943751", + "1604309327126495278282261", + "2128019040083381232502181" ], - "redemptionFee": "22007574071187138139", + "redemptionFee": "1666960877969726301536", "reserves": [ - "20776073308155987839670735", - "10412312448208169346027679", - "44171658363554127611272939" + "799846966693751581017900392", + "703953251310404042673117994", + "933751301440277740090352933" ], - "mAssetSupply": "75224245236038626538162347" + "mAssetSupply": "2437415427020040904858407686" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "394042510546743093886976", - "expectedQty": "396814747910648338556812", - "swapFee": "236425506328045856332", - "reserves": [ - "20776073308155987839670735", - "10412312448208169346027679", - "43774843615643479272716127" - ], - "mAssetSupply": "74830439150998211490131703" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "134372578301454405599232", - "44807066199667133906944", - "48929424133334589505536" - ], - "expectedQty": "228634970671571274674017", - "swapFee": "137263340407187077050", + "inputQty": "21007955035118940160", + "expectedQty": "21019525186480490823", + "swapFee": "12604773021071364", "reserves": [ - "20641700729854533434071503", - "10367505382008502212120735", - "43725914191510144683210591" + "799846966693751581017900392", + "703953251310404042673117994", + "933751280420752553609862110" ], - "mAssetSupply": "74601804180326640215457686" + "mAssetSupply": "2437415406024690642760538890" }, { - "type": "redeemMasset", - "inputQty": "48131298760631641702", - "expectedQtys": [ - "13313536074757182496", - "6686859707687572548", - "28202450157047203069" - ], - "redemptionFee": "14439389628189492", + "type": "mint", + "inputIndex": 1, + "inputQty": "136504977022855174684672", + "expectedQty": "136674697006847025420010", "reserves": [ - "20641687416318458676889007", - "10367498695148794524548187", - "43725885989059987636007522" - ], - "mAssetSupply": "74601756063467269212005476" + "799846966693751581017900392", + "704089756287426897847802666", + "933751280420752553609862110" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "123127179979979193581568", - "expectedQty": "125206844069340628170474", + "inputIndex": 2, + "inputQty": "23403397062533111019995136", + "expectedQty": "23375008652114127146522743", "reserves": [ - "20641687416318458676889007", - "10490625875128773718129755", - "43725885989059987636007522" + "799846966693751581017900392", + "704089756287426897847802666", + "957154677483285664629857246" ] }, { "type": "redeemMasset", - "inputQty": "19209769023764104531148", + "inputQty": "466699635662503857356", "expectedQtys": [ - "5304686226903754226725", - "2695975259629287309442", - "11237070908357941711349" + "151640535417205611822", + "133486219328347055840", + "181464022262425187754" ], - "redemptionFee": "5762930707129231359", + "redemptionFee": "140009890698751157", "reserves": [ - "20636382730091554922662282", - "10487929899869144430820313", - "43714648918151629694296173" + "799846815053216163812288570", + "704089622801207569500746826", + "957154496019263402204669492" ], - "mAssetSupply": "74707758901443552864876161" + "mAssetSupply": "2460926622814185845127375444" }, { - "type": "redeemMasset", - "inputQty": "20760550243714088960", - "expectedQtys": [ - "5732927074996874117", - "2913618053611390688", - "12144225935072218266" - ], - "redemptionFee": "6228165073114226", + "type": "swap", + "inputIndex": 0, + "inputQty": "4856796359630928216064", + "outputIndex": 1, + "expectedQty": "4848161395962016766443", + "swapFee": "2914515608672551967", "reserves": [ - "20636376997164479925788165", - "10487926986251090819429625", - "43714636773925694622077907" + "799851671849575794740504634", + "704084774639811607483980383", + "957154496019263402204669492" ], - "mAssetSupply": "74707738147121474223901427" + "mAssetSupply": "2460926625728701453799927411", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "19781909966006250582835", + "inputQty": "419262981135679572515225", "expectedQtys": [ - "5462680223208710453342", - "2776271791222022214600", - "11571754179645393036412" + "136228194876724119072837", + "119917481284461366238665", + "163019511991927117412975" ], - "redemptionFee": "5934572989801875174", + "redemptionFee": "125778894340703871754", "reserves": [ - "20630914316941271215334823", - "10485150714459868797215025", - "43703065019746049229041495" + "799715443654699070621431797", + "703964857158527146117741718", + "956991476507271475087256517" ], - "mAssetSupply": "74687962171728457775193766" + "mAssetSupply": "2460507488526460114931283940" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "315283566117859115401216", - "expectedQty": "314739436976728131745354", - "swapFee": "189170139670715469240", + "type": "redeemBassets", + "inputQtys": [ + "199270231070126330871808", + "42830907258760652128256", + "147536614796259282124800" + ], + "expectedQty": "389536492529798651234469", + "swapFee": "233862212845586542666", "reserves": [ - "20316174879964543083589469", - "10485150714459868797215025", - "43703065019746049229041495" + "799516173423628944290559989", + "703922026251268385465613462", + "956843939892475215805131717" ], - "mAssetSupply": "74372867775750269375261790" + "mAssetSupply": "2460117952033930316280049471" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3496537255112219518042112", - "expectedQty": "3539104702221103096443706", + "inputQty": "2460426747098199509434368", + "expectedQty": "2463668590317111639223856", "reserves": [ - "20316174879964543083589469", - "13981687969572088315257137", - "43703065019746049229041495" + "799516173423628944290559989", + "706382452998366584975047830", + "956843939892475215805131717" ] }, { - "type": "mintMulti", - "inputQtys": [ - "3961933267467400192", - "2134201757347685888", - "455172995229570304" + "type": "redeem", + "inputIndex": 0, + "inputQty": "1995540465637174296969216", + "expectedQty": "1994007740238381303943251", + "swapFee": "1197324279382304578181", + "reserves": [ + "797522165683390562986616738", + "706382452998366584975047830", + "956843939892475215805131717" + ], + "mAssetSupply": "2460587277482889635926882292" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "30555426224576598336602112", + "outputIndex": 2, + "expectedQty": "30572692579035673114062992", + "swapFee": "18334477296340999955444", + "reserves": [ + "828077591907967161323218850", + "706382452998366584975047830", + "926271247313439542691068725" ], - "expectedQty": "6575824880969262161", + "mAssetSupply": "2460605611960185976926837736", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "6697537982107082765107200", + "expectedQty": "6700190335850668977964234", + "swapFee": "4018522789264249659064", "reserves": [ - "20316178841897810550989661", - "13981690103773845662943025", - "43703065474919044458611799" + "828077591907967161323218850", + "706382452998366584975047830", + "919571056977588873713104491" ], - "mAssetSupply": "77911979053796253440967657" + "mAssetSupply": "2453912092500868158411389600" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "1490783101223455488", + "expectedQty": "1489326659189301669", + "reserves": [ + "828077591907967161323218850", + "706382452998366584975047830", + "919571058468371974936559979" + ] }, { "type": "redeemMasset", - "inputQty": "92544224737714962432", + "inputQty": "928919222550646427012300", "expectedQtys": [ - "24124415781458081434", - "16602536727788992688", - "51895138876555866972" + "313371627945514724801810", + "267318209563200243418419", + "347995746316295522330037" ], - "redemptionFee": "27763267421314488", + "redemptionFee": "278675766765193928103", "reserves": [ - "20316154717482029092908227", - "13981673501237117873950337", - "43703013579780167902744827" + "827764220280021646598417040", + "706115134788803384731629411", + "919223062722055679414229942" ], - "mAssetSupply": "77911886537334783147319713" + "mAssetSupply": "2452983453443410936367607072" }, { "type": "mintMulti", "inputQtys": [ - "40520275295288055300096", - "56555923462345453469696", - "31067126875663405940736" + "15912186776277020049408", + "31948665143967516459008", + "52332009155962876198912" ], - "expectedQty": "128544944732314941507619", + "expectedQty": "100180228326730066514096", "reserves": [ - "20356674992777317148208323", - "14038229424699463327420033", - "43734080706655831308685563" + "827780132466797923618466448", + "706147083453947352248088419", + "919275394731211642290428854" ], - "mAssetSupply": "78040431482067098088827332" + "mAssetSupply": "2453083633671737666434121168" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8223485724660119552", - "10068700202320967680", - "12935137760255918080" + "3292244088604319547392", + "1497116331286812950528", + "3215170986745645236224" ], - "expectedQty": "31257617422121285731", + "expectedQty": "8002810589397268160370", + "swapFee": "4804569095095418147", "reserves": [ - "20356683216263041808327875", - "14038239493399665648387713", - "43734093641793591564603643" + "827776840222709319298919056", + "706145586337616065435137891", + "919272179560224896645192630" ], - "mAssetSupply": "78040462739684520210113063" + "mAssetSupply": "2453075630861148269165960798" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "174908651328645562368", - "expectedQty": "175826265926736759906", - "swapFee": "104945190797187337", + "type": "redeemMasset", + "inputQty": "771332409247529066876108", + "expectedQtys": [ + "260203782193567664746543", + "221970153568088905945722", + "288964472505101620103787" + ], + "redemptionFee": "231399722774258720062", + "reserves": [ + "827516636440515751634172513", + "705923616184047976529192169", + "918983215087719795025088843" + ], + "mAssetSupply": "2452304529851623514357804752" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "134555110720415838765056", + "96092143635083512774656", + "117433011393145958563840" + ], + "expectedQty": "348068265676843663388030", + "swapFee": "208966339209631977219", "reserves": [ - "20356683216263041808327875", - "14038239493399665648387713", - "43733917815527664827843737" + "827382081329795335795407457", + "705827524040412893016417513", + "918865782076326649066525003" ], - "mAssetSupply": "78040287935978382361738032" + "mAssetSupply": "2451956461585946670694416722" }, { "type": "mintMulti", "inputQtys": [ - "25176044697693722771456", - "10691574149219543416832", - "36565291848179858276352" + "387251644508590833664", + "221951536894028120064", + "174188632713696903168" ], - "expectedQty": "72366815241898741577266", + "expectedQty": "783447448562674630784", "reserves": [ - "20381859260960735531099331", - "14048931067548885191804545", - "43770483107375844686120089" + "827382468581439844386241121", + "705827745991949787044537577", + "918865956264959362763428171" ], - "mAssetSupply": "78112654751220281103315298" + "mAssetSupply": "2451957245033395233369047506" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "42888337562193763500032", - "expectedQty": "43113106692775747151797", - "swapFee": "25733002537316258100", + "inputIndex": 1, + "inputQty": "93522424895542957973700608", + "expectedQty": "93300838964434915771528884", + "swapFee": "56113454937325774784220", "reserves": [ - "20381859260960735531099331", - "14048931067548885191804545", - "43727370000683068938968292" + "827382468581439844386241121", + "612526907027514871273008693", + "918865956264959362763428171" ], - "mAssetSupply": "78069792146660624656073366" + "mAssetSupply": "2358490933592789601170131118" }, { - "type": "redeemBassets", - "inputQtys": [ - "1284540070056131297280", - "733304479433586507776", - "1517456578713654132736" + "type": "redeemMasset", + "inputQty": "2111216432158231756", + "expectedQtys": [ + "740413882214769330", + "548142415889981753", + "822281273471482252" ], - "expectedQty": "3535590806804684728475", - "swapFee": "2122628060919362454", + "redemptionFee": "633364929647469", "reserves": [ - "20380574720890679399802051", - "14048197763069451605296769", - "43725852544104355284835556" + "827382467841025962171471791", + "612526906479372455383026940", + "918865955442678089291945919" ], - "mAssetSupply": "78066256555853819971344891" + "mAssetSupply": "2358490931482206533941546831" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "31198018044923895808", - "72558582527632072704", - "40909885494420881408" + "313417576896683439030272", + "511103255144983527686144", + "165582578424523884855296" ], - "expectedQty": "145129185768285433291", - "swapFee": "87129789334572003", + "expectedQty": "990892314279905048997054", "reserves": [ - "20380543522872634475906243", - "14048125204486923973224065", - "43725811634218860863954148" + "827695885417922645610502063", + "613038009734517438910713084", + "919031538021102613176801215" ], - "mAssetSupply": "78066111426668051685911600" + "mAssetSupply": "2359481823796486438990543885" }, { "type": "mintMulti", "inputQtys": [ - "6622800810157440761856", - "16800560667998229102592", - "77308313192025418629120" + "222238661074001920", + "840229768930173952", + "2315789250966218240" ], - "expectedQty": "100443459079317129429845", + "expectedQty": "3376930502757149177", "reserves": [ - "20387166323682791916668099", - "14064925765154922202326657", - "43803119947410886282583268" + "827695885640161306684503983", + "613038010574747207840887036", + "919031540336891864143019455" ], - "mAssetSupply": "78166554885747368815341445" + "mAssetSupply": "2359481827173416941747693062" }, { - "type": "redeemMasset", - "inputQty": "42039159460281294048460", - "expectedQtys": [ - "10961238082913089506287", - "7562061224333611069811", - "23550915261834048393257" - ], - "redemptionFee": "12611747838084388214", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5185391058668325812830208", + "expectedQty": "5185032558922050975866730", + "swapFee": "3111234635200995487698", "reserves": [ - "20376205085599878827161812", - "14057363703930588591256846", - "43779569032149052234190011" + "822510853081239255708637253", + "613038010574747207840887036", + "919031540336891864143019455" ], - "mAssetSupply": "78124528338034925605681199" + "mAssetSupply": "2354299547349383816930350552" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "990353189674658562048", - "391403278410234527744", - "818349516459699601408" + "2085393356688919034331136", + "2108391059941889801191424", + "1214128497291195257454592" ], - "expectedQty": "2200857133073342262974", + "expectedQty": "5410017535899039328501557", + "swapFee": "3247959297117694213629", "reserves": [ - "20377195438789553485723860", - "14057755107208998825784590", - "43780387381665511933791419" + "820425459724550336674306117", + "610929619514805318039695612", + "917817411839600668885564863" ], - "mAssetSupply": "78126729195167998947944173" + "mAssetSupply": "2348889529813484777601848995" }, { "type": "mint", "inputIndex": 0, - "inputQty": "351816330454938236747776", - "expectedQty": "352523325932469409092674", + "inputQty": "925955514783924532281344", + "expectedQty": "925477657276698450105913", "reserves": [ - "20729011769244491722471636", - "14057755107208998825784590", - "43780387381665511933791419" + "821351415239334261206587461", + "610929619514805318039695612", + "917817411839600668885564863" ] }, { - "type": "redeemMasset", - "inputQty": "234716865312879216374579", - "expectedQtys": [ - "61978024416122323246277", - "42031520796527714980324", - "130899723937348827770305" + "type": "mintMulti", + "inputQtys": [ + "8984960440803284484096", + "4750928920228195729408", + "325954136807633780736" ], - "redemptionFee": "70415059593863764912", + "expectedQty": "14067711360008608137297", "reserves": [ - "20667033744828369399225359", - "14015723586412471110804266", - "43649487657728163106021114" + "821360400199775064491071557", + "610934370443725546235425020", + "917817737793737476519345599" ], - "mAssetSupply": "78244606070847183004427180" + "mAssetSupply": "2349829075182121484660092205" }, { - "type": "redeemBassets", - "inputQtys": [ - "8832921171978433536", - "9278882240048013312", - "86543787432048050176" + "type": "redeem", + "inputIndex": 1, + "inputQty": "2716778983687160044978176", + "expectedQty": "2708837789124831345025834", + "swapFee": "1630067390212296026986", + "reserves": [ + "821360400199775064491071557", + "608225532654600714890399186", + "917817737793737476519345599" ], - "expectedQty": "104256641699477459745", - "swapFee": "62591539943652667", + "mAssetSupply": "2347113926265824536911141015" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "8924549449499949400064", + "expectedQty": "8923941150136924220203", + "swapFee": "5354729669699969640", "reserves": [ - "20667024911907197420791823", - "14015714307530231062790954", - "43649401113940731057970938" + "821351476258624927566851354", + "608225532654600714890399186", + "917817737793737476519345599" ], - "mAssetSupply": "78244501814205483526967435" + "mAssetSupply": "2347105007071104706661710591" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "170885342526777720832", - "548633800014296252416", - "698890616172358008832" + "27927874701394916147200", + "132950013334497863401472", + "66866718975761250779136" ], - "expectedQty": "1419563548045925961477", - "swapFee": "852249478514664375", + "expectedQty": "227948506197288153355788", "reserves": [ - "20666854026564670643070991", - "14015165673730216766538538", - "43648702223324558699962106" + "821379404133326322482998554", + "608358482667935212753800658", + "917884604512713237770124735" ], - "mAssetSupply": "78243082250657437601005958" + "mAssetSupply": "2347332955577301994815066379" }, { "type": "redeemBassets", "inputQtys": [ - "659127334083885793280", - "1728658259696697475072", - "861874487978250469376" + "12012652898206196170752", + "33112445060356002283520", + "7762602290491586248704" ], - "expectedQty": "3261238863554830798617", - "swapFee": "1957918068974283048", + "expectedQty": "52948189975809161230167", + "swapFee": "31787986777552027954", "reserves": [ - "20666194899230586757277711", - "14013437015470520069063466", - "43647840348836580449492730" + "821367391480428116286827802", + "608325370222874856751517138", + "917876841910422746183876031" ], - "mAssetSupply": "78239821011793882770207341" + "mAssetSupply": "2347280007387326185653836212" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "959644558848592497868800", - "expectedQty": "956990234608166718891698", - "swapFee": "575786735309155498721", + "type": "redeemMasset", + "inputQty": "1493343533234500916163379", + "expectedQtys": [ + "522398564940320854263986", + "386901529957793081769681", + "583779621615748380001417" + ], + "redemptionFee": "448003059970350274849", "reserves": [ - "19709204664622420038386013", - "14013437015470520069063466", - "43647840348836580449492730" + "820844992915487795432563816", + "607938468692917063669747457", + "917293062288806997803874614" ], - "mAssetSupply": "77280752239680599427837262" + "mAssetSupply": "2345787111857151655087947682" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "350354897745377102921728", - "expectedQty": "349258787668683539108476", - "swapFee": "210212938647226261753", + "inputQty": "163839611871349768192", + "outputIndex": 1, + "expectedQty": "163271141910897692929", + "swapFee": "98251536981931954", "reserves": [ - "19359945876953736499277537", - "14013437015470520069063466", - "43647840348836580449492730" + "820845156755099666782332008", + "607938305421775152772054528", + "917293062288806997803874614" ], - "mAssetSupply": "76930607554873869551177287" + "mAssetSupply": "2345787111955403192069879636", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "56322432005627141160960", - "227251179900431543304192", - "269119199137677862502400" - ], - "expectedQty": "553190732180907969946118", - "swapFee": "332113707533064620740", + "type": "mint", + "inputIndex": 1, + "inputQty": "17249347807009090081652736", + "expectedQty": "17287886490865213936026757", "reserves": [ - "19303623444948109358116577", - "13786185835570088525759274", - "43378721149698902586990330" - ], - "mAssetSupply": "76377416822692961581231169" + "820845156755099666782332008", + "625187653228784242853707264", + "917293062288806997803874614" + ] }, { "type": "redeemMasset", - "inputQty": "86756780339558204047360", + "inputQty": "190158893009542241373388", "expectedQtys": [ - "21920325045711425222980", - "15654971488545395743207", - "49258921278716066562641" + "66034374339151902871510", + "50294352334032875518075", + "73793300667494915603897" ], - "redemptionFee": "26027034101867461214", + "redemptionFee": "57047667902862672412", "reserves": [ - "19281703119902397932893597", - "13770530864081543130016067", - "43329462228420186520427689" + "820779122380760514879460498", + "625137358876450209978189189", + "917219268988139502888270717" ], - "mAssetSupply": "76290686069387505244645023" + "mAssetSupply": "2362884896600926766627205417" }, { - "type": "redeemMasset", - "inputQty": "535012762639847962076774", - "expectedQtys": [ - "135178525698723993214521", - "96541267579932608222379", - "303770511709135650046490" + "type": "redeemBassets", + "inputQtys": [ + "2796923959296162529280", + "19542489775810856091648", + "25362327828700353003520" ], - "redemptionFee": "160503828791954388623", + "expectedQty": "47708587211444200857581", + "swapFee": "28642337729504223048", "reserves": [ - "19146524594203673939679076", - "13673989596501610521793688", - "43025691716711050870381199" + "820776325456801218716931218", + "625117816386674399122097541", + "917193906660310802535267197" ], - "mAssetSupply": "75755833810576449236956872" + "mAssetSupply": "2362837188013715322426347836" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "363780468733399749623808", - "expectedQty": "360299934222800437967050", - "swapFee": "218268281240039849774", + "type": "mintMulti", + "inputQtys": [ + "21974995113778547261440", + "2889394461636115824640", + "19442176932163037954048" + ], + "expectedQty": "44277170257904302068873", "reserves": [ - "19146524594203673939679076", - "13313689662278810083826638", - "43025691716711050870381199" + "820798300451914997264192658", + "625120705781136035237922181", + "917213348837242965573221245" ], - "mAssetSupply": "75392271610124289527182838" + "mAssetSupply": "2362881465183973226728416709" }, { - "type": "redeemBassets", - "inputQtys": [ - "469895103606868718649344", - "569109366073484961120256", - "183765258188941546225664" - ], - "expectedQty": "1228343477892398577212563", - "swapFee": "737448555868960522641", + "type": "mint", + "inputIndex": 2, + "inputQty": "1513256514170950516736", + "expectedQty": "1511263543777577243836", + "reserves": [ + "820798300451914997264192658", + "625120705781136035237922181", + "917214862093757136523737981" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "36376900754777846843441152", + "expectedQty": "36269409546878337191358026", + "swapFee": "21826140452866708106064", "reserves": [ - "18676629490596805221029732", - "12744580296205325122706382", - "42841926458522109324155535" + "820798300451914997264192658", + "588851296234257698046564155", + "917214862093757136523737981" ], - "mAssetSupply": "74163928132231890949970275" + "mAssetSupply": "2326527901833192024170325457" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1269232096180141031424", - "expectedQty": "1261018434416606258574", + "inputIndex": 1, + "inputQty": "2227483365145859328049152", + "expectedQty": "2233264052285714388044368", "reserves": [ - "18676629490596805221029732", - "12744580296205325122706382", - "42843195690618289465186959" + "820798300451914997264192658", + "591078779599403557374613307", + "917214862093757136523737981" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "234025052825562", - "419387027253753", - "275209586449418" + "type": "redeemMasset", + "inputQty": "35332497247815316275", + "expectedQtys": [ + "12449603617723249957", + "8965292092842575440", + "13912018895586066234" ], - "expectedQty": "931701463720035", - "swapFee": "559356492127", + "redemptionFee": "10599749174344594", "reserves": [ - "18676629490362780168204170", - "12744580295785938095452629", - "42843195690343079878737541" + "820798288002311379540942701", + "591078770634111464532037867", + "917214848181738240937671747" ], - "mAssetSupply": "74165189149734606092508814" + "mAssetSupply": "2328761130563580239917398144" }, { - "type": "redeemBassets", - "inputQtys": [ - "67919017546241598816256", - "146859955725163850366976", - "23235151548887425089536" - ], - "expectedQty": "239546211681402361814154", - "swapFee": "143814015418092272451", + "type": "swap", + "inputIndex": 2, + "inputQty": "4514556747863232086016", + "outputIndex": 1, + "expectedQty": "4493602454323231960658", + "swapFee": "2704738372209492694", "reserves": [ - "18608710472816538569387914", - "12597720340060774245085653", - "42819960538794192453648005" + "820798288002311379540942701", + "591074277031657141300077209", + "917219362738486104169757763" ], - "mAssetSupply": "73925642938053203730694660" + "mAssetSupply": "2328761133268318612126890838", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "4869365039345229103104", - "outputIndex": 2, - "expectedQty": "4911367692339652265894", - "swapFee": "2929293137720521403", + "inputQty": "118239693120586182033408", + "outputIndex": 1, + "expectedQty": "117792399845598895437255", + "swapFee": "70900371874769783028", "reserves": [ - "18613579837855883798491018", - "12597720340060774245085653", - "42815049171101852801382111" + "820916527695431965722976109", + "590956484631811542404639954", + "917219362738486104169757763" ], - "mAssetSupply": "73925645867346341451216063", + "mAssetSupply": "2328761204168690486896673866", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "261362606699425787019264", - "114917956709524541800448", - "127993458350044341075968" + "258627544737031168983040", + "98197848223416452120576", + "144694280235288371396608" ], - "expectedQty": "505329764048689712794168", - "swapFee": "303379886361030445944", + "expectedQty": "501401015666105948686338", "reserves": [ - "18352217231156458011471754", - "12482802383351249703285205", - "42687055712751808460306143" + "821175155240168996891959149", + "591054682480034958856760530", + "917364057018721392541154371" ], - "mAssetSupply": "73420316103297651738421895" + "mAssetSupply": "2329262605184356592845360204" }, { - "type": "redeemBassets", - "inputQtys": [ - "103794573410533949440", - "66456919487317164032", - "185908775609000001536" - ], - "expectedQty": "355909121979738215503", - "swapFee": "213673677394279497", + "type": "mint", + "inputIndex": 1, + "inputQty": "56814889608888814583939072", + "expectedQty": "56940157721072862653542970", "reserves": [ - "18352113436583047477522314", - "12482735926431762386121173", - "42686869803976199460304607" - ], - "mAssetSupply": "73419960194175672000206392" + "821175155240168996891959149", + "647869572088923773440699602", + "917364057018721392541154371" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "93458504243494448", - "101883927800577168", - "112876329346100576" + "type": "swap", + "inputIndex": 1, + "inputQty": "4399830265504853422768128", + "outputIndex": 2, + "expectedQty": "4410469259710612603139427", + "swapFee": "2644726674040934697370", + "reserves": [ + "821175155240168996891959149", + "652269402354428626863467730", + "912953587759010779938014944" ], - "expectedQty": "308793858300120258", - "swapFee": "185387547508577", + "mAssetSupply": "2386205407632103496433600544", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "8213573138986997427208192", + "expectedQty": "8218108526993289580675988", + "swapFee": "4928143883392198456324", "reserves": [ - "18352113343124543234027866", - "12482735824547834585544005", - "42686869691099870114204031" + "821175155240168996891959149", + "652269402354428626863467730", + "904735479232017490357338956" ], - "mAssetSupply": "73419959885381813700086134" + "mAssetSupply": "2377996762636999891204848676" }, { "type": "mintMulti", "inputQtys": [ - "627333173025015615979520", - "806719982831631580790784", - "271290909913675749916672" + "21388312118341232654024704", + "11337466489497954501525504", + "157636921058449392926720" + ], + "expectedQty": "32893982784983598710855278", + "reserves": [ + "842563467358510229545983853", + "663606868843926581364993234", + "904893116153075939750265676" ], - "expectedQty": "1713237111256638715924382", + "mAssetSupply": "2410890745421983489915703954" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "279990867584675955605504", + "outputIndex": 0, + "expectedQty": "280432135397247153517544", + "swapFee": "168282755641760846640", "reserves": [ - "18979446516149558850007386", - "13289455807379466166334789", - "42958160601013545864120703" + "842283035223112982392466309", + "663886859711511257320598738", + "904893116153075939750265676" ], - "mAssetSupply": "75133196996638452416010516" + "mAssetSupply": "2410890913704739131676550594", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "57395793933637272", - "22573223277732020", - "52994414368418192" + "21225007727855292416", + "44734584546681413632", + "62756508538305617920" ], - "expectedQty": "132992750025245890", + "expectedQty": "128719020334687381677", "reserves": [ - "18979446573545352783644658", - "13289455829952689444066809", - "42958160654007960232538895" + "842283056448120710247758725", + "663886904446095804002012370", + "904893178909584478055883596" ], - "mAssetSupply": "75133197129631202441256406" + "mAssetSupply": "2410891042423759466363932271" }, { "type": "swap", "inputIndex": 2, - "inputQty": "8851485271962185728", + "inputQty": "190160886225745825759232", "outputIndex": 1, - "expectedQty": "8710171110753827842", - "swapFee": "5277939295396150", + "expectedQty": "189527994874458005974327", + "swapFee": "113980192454320465002", "reserves": [ - "18979446573545352783644658", - "13289447119781578690238967", - "42958169505493232194724623" + "842283056448120710247758725", + "663697376451221345996038043", + "905083339795810223881642828" ], - "mAssetSupply": "75133197134909141736652556", + "mAssetSupply": "2410891156403951920684397273", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "193482749110188832", - "expectedQty": "192869644158786576", - "swapFee": "116089649466113", - "reserves": [ - "18979446380675708624858082", - "13289447119781578690238967", - "42958169505493232194724623" - ], - "mAssetSupply": "75133196941542482275929837" - }, - { - "type": "redeemMasset", - "inputQty": "103728485593836277674803", - "expectedQtys": [ - "26195060210722344838345", - "18341834660906234689391", - "59290024280399952020155" + "type": "mintMulti", + "inputQtys": [ + "1262419309076895399673856", + "142304267463000988844032", + "271332350604099289350144" ], - "redemptionFee": "31118545678150883302", + "expectedQty": "1675438946986659616704498", "reserves": [ - "18953251320464986280019737", - "13271105285120672455549576", - "42898879481212832242704468" + "843545475757197605647432581", + "663839680718684346984882075", + "905354672146414323170992972" ], - "mAssetSupply": "75029499574494324149138336" + "mAssetSupply": "2412566595350938580301101771" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "124333157848201224519680", - "expectedQty": "125032651746598853166706", - "swapFee": "74599894708920734711", + "inputIndex": 1, + "inputQty": "143536367784357626118144", + "expectedQty": "143203717462692926657313", + "swapFee": "86121820670614575670", "reserves": [ - "18953251320464986280019737", - "13271105285120672455549576", - "42773846829466233389537762" + "843545475757197605647432581", + "663696477001221654058224762", + "905354672146414323170992972" ], - "mAssetSupply": "74905241016540831845353367" + "mAssetSupply": "2412423145104974893289559297" }, { "type": "redeemMasset", - "inputQty": "2038362848511389597696", + "inputQty": "1466159586550358212608", "expectedQtys": [ - "515611628038171319269", - "361032315048686571471", - "1163636382396441634901" + "512514256379763405692", + "403243116284649786578", + "550067767405846184093" ], - "redemptionFee": "611508854553416879", + "redemptionFee": "439847875965107463", "reserves": [ - "18952735708836948108700468", - "13270744252805623768978105", - "42772683193083836947902861" + "843544963242941225884026889", + "663696073758105369408438184", + "905354122078646917324808879" ], - "mAssetSupply": "74903203265201175009172550" + "mAssetSupply": "2412421679385236218896454152" }, { - "type": "redeemBassets", - "inputQtys": [ - "3046825043293901946880", - "2881709540938072195072", - "2485237908834309636096" - ], - "expectedQty": "8432888836317671245114", - "swapFee": "5062770964369224281", + "type": "mint", + "inputIndex": 1, + "inputQty": "300136015908037988450304", + "expectedQty": "300652449592132270097080", "reserves": [ - "18949688883793654206753588", - "13267862543264685696783033", - "42770197955175002638266765" - ], - "mAssetSupply": "74894770376364857337927436" + "843544963242941225884026889", + "663996209774013407396888488", + "905354122078646917324808879" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "131141501802682840514560", - "outputIndex": 1, - "expectedQty": "130168448713641060097244", - "swapFee": "78882560144762778879", + "type": "mintMulti", + "inputQtys": [ + "8690225494803824508928", + "34595306867493900910592", + "11844547609067998150656" + ], + "expectedQty": "55173443416041305501154", "reserves": [ - "19080830385596337047268148", - "13137694094551044636685789", - "42770197955175002638266765" + "843553653468436029708535817", + "664030805080880901297799080", + "905365966626255985322959535" ], - "mAssetSupply": "74894849258925002100706315", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2412777505278244392472052386" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3876632938513461936128", - "expectedQty": "3852576337038655314274", + "type": "mintMulti", + "inputQtys": [ + "83670287192194616918016", + "186254327473676927107072", + "41889226001216832536576" + ], + "expectedQty": "312052251057677125773629", "reserves": [ - "19080830385596337047268148", - "13137694094551044636685789", - "42774074588113516100202893" - ] + "843637323755628224325453833", + "664217059408354578224906152", + "905407855852257202155496111" + ], + "mAssetSupply": "2413089557529302069597826015" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1378455699379900494381056", - "expectedQty": "1386023578378792708251569", - "swapFee": "827073419627940296628", + "type": "redeemBassets", + "inputQtys": [ + "9323915872573453909360640", + "26378056915113496094441472", + "17975293043061081562415104" + ], + "expectedQty": "53701533705363115828005479", + "swapFee": "32240264381846977683413", "reserves": [ - "19080830385596337047268148", - "13137694094551044636685789", - "41388051009734723391951324" + "834313407883054770416093193", + "637839002493241082130464680", + "887432562809196120593081007" ], - "mAssetSupply": "73521073209301768201936161" + "mAssetSupply": "2359388023823938953769820536" }, { "type": "redeemMasset", - "inputQty": "95670377581172267417", + "inputQty": "1351698775670054405852364", "expectedQtys": [ - "24821762344012606481", - "17090488934352121160", - "53840652911049872857" + "477836658681444626397872", + "365309792277480915848666", + "508259613966669051051786" ], - "redemptionFee": "28701113274351680", + "redemptionFee": "405509632701016321755", "reserves": [ - "19080805563833993034661667", - "13137677004062110284564629", - "41387997169081812342078467" + "833835571224373325789695321", + "637473692700963601214616014", + "886924303195229451542029221" ], - "mAssetSupply": "73520977567625300304020424" + "mAssetSupply": "2358036730557901600380289927" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1644957955701673155362816", - "expectedQty": "1653448434852337956403190", - "swapFee": "986974773421003893217", + "type": "swap", + "inputIndex": 0, + "inputQty": "35706826249155712596836352", + "outputIndex": 2, + "expectedQty": "35691014168746613678297049", + "swapFee": "21409443126541481466673", "reserves": [ - "19080805563833993034661667", - "13137677004062110284564629", - "39734548734229474385675277" + "869542397473529038386531673", + "637473692700963601214616014", + "851233289026482837863732172" ], - "mAssetSupply": "71877006586697048152550825" + "mAssetSupply": "2358058140001028141861756600", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "294076829797527", - "1290227922368176", - "254510556858136" + "19173530808840838184960", + "19935179974866896945152", + "27956886382798618755072" ], - "expectedQty": "1848677285837764", + "expectedQty": "67065832705560958797038", + "swapFee": "40263657818027391713", "reserves": [ - "19080805564128069864459194", - "13137677005352338206932805", - "39734548734483984942533413" + "869523223942720197548346713", + "637453757520988734317670862", + "851205332140100039244977100" ], - "mAssetSupply": "71877006588545725438388589" + "mAssetSupply": "2357991074168322580902959562" }, { "type": "redeemMasset", - "inputQty": "827677253573752934", + "inputQty": "266835339973558067", "expectedQtys": [ - "219653150151980370", - "151237437549809519", - "457413538965309667" + "98367598486329054", + "72113997127185477", + "96295328331443740" ], - "redemptionFee": "248303176072125", + "redemptionFee": "80050601992067", "reserves": [ - "19080805344474919712478824", - "13137676854114900657123286", - "39734548277070445977223746" + "869523223844352599062017659", + "637453757448874737190485385", + "851205332043804710913533360" ], - "mAssetSupply": "71877005761116775040707780" + "mAssetSupply": "2357991073901567291531393562" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2083863314686940735864832", - "expectedQty": "2093783784532765936306174", - "swapFee": "1250317988812164441518", + "type": "swap", + "inputIndex": 0, + "inputQty": "1495013433009341349232640", + "outputIndex": 2, + "expectedQty": "1493848918790998042085985", + "swapFee": "896199223463717928768", "reserves": [ - "19080805344474919712478824", - "13137676854114900657123286", - "37640764492537680040917572" + "871018237277361940411250299", + "637453757448874737190485385", + "849711483125013712871447375" ], - "mAssetSupply": "69794392764418646469284466" + "mAssetSupply": "2357991970100790755249322330", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2296041863693521469308928", - "expectedQty": "2289807136260977405537730", - "swapFee": "1377625118216112881585", + "type": "mint", + "inputIndex": 1, + "inputQty": "529771918962641600512", + "expectedQty": "530779007360644102521", "reserves": [ - "16790998208213942306941094", - "13137676854114900657123286", - "37640764492537680040917572" - ], - "mAssetSupply": "67499728525843341112857123" + "871018237277361940411250299", + "637454287220793699832085897", + "849711483125013712871447375" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "24052604522130644", - "29865044898834504", - "35648485297197264" + "8542178838551549431513088", + "12013536449805953504641024", + "3081332913036251382153216" + ], + "expectedQty": "23650313993952477841349025", + "swapFee": "14198707620944053136691", + "reserves": [ + "862476058438810390979737211", + "625440750770987746327444873", + "846630150211977461489294159" ], - "expectedQty": "89645501923252433", + "mAssetSupply": "2334342186885845638052075826" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "394717841203210649337856", + "expectedQty": "394787143501081046901962", + "swapFee": "236830704721926389602", "reserves": [ - "16790998232266546829071738", - "13137676883979945555957790", - "37640764528186165338114836" + "862476058438810390979737211", + "625440750770987746327444873", + "846235363068476380442392197" ], - "mAssetSupply": "67499728615488843036109556" + "mAssetSupply": "2333947705875347149329127572" }, { "type": "redeemMasset", - "inputQty": "234983484687928524", + "inputQty": "9634788951964005905203", "expectedQtys": [ - "58436140036849432", - "45721827584726100", - "130997630792213434" + "3559326477550323895781", + "2581112603157629691485", + "3492303240812489355141" ], - "redemptionFee": "70495045406378", + "redemptionFee": "2890436685589201771", "reserves": [ - "16790998173830406792222306", - "13137676838258117971231690", - "37640764397188534545901402" + "862472499112332840655841430", + "625438169658384588697753388", + "846231870765235567953037056" ], - "mAssetSupply": "67499728380575853393587410" + "mAssetSupply": "2333938073976831870912424140" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "62619484189371746222080", - "expectedQty": "62142741489665386279769", - "swapFee": "37571690513623047733", + "inputIndex": 0, + "inputQty": "25291499255851914505486336", + "expectedQty": "25297672431438876872161623", + "swapFee": "15174899553511148703291", "reserves": [ - "16790998173830406792222306", - "13075534096768452584951921", - "37640764397188534545901402" + "837174826680893963783679807", + "625438169658384588697753388", + "846231870765235567953037056" ], - "mAssetSupply": "67437146468076995270413063" + "mAssetSupply": "2308661749620533467555641095" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "690487473420152940265472", - "outputIndex": 2, - "expectedQty": "695580767263016404881221", - "swapFee": "415360846383425516580", + "inputIndex": 2, + "inputQty": "1451495373740404237139968", + "outputIndex": 1, + "expectedQty": "1446646216852142220549597", + "swapFee": "870154234994786779790", "reserves": [ - "17481485647250559732487778", - "13075534096768452584951921", - "36945183629925518141020181" + "837174826680893963783679807", + "623991523441532446477203791", + "847683366138975972190177024" ], - "mAssetSupply": "67437561828923378695929643", + "mAssetSupply": "2308662619774768462342420885", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "43510206719136980992", - "expectedQty": "43387825166336287428", - "swapFee": "26106124031482188", + "type": "swap", + "inputIndex": 2, + "inputQty": "13044186100600670257152", + "outputIndex": 1, + "expectedQty": "13000351559393672819445", + "swapFee": "7819748969554102477", "reserves": [ - "17481442259425393396200350", - "13075534096768452584951921", - "36945183629925518141020181" + "837174826680893963783679807", + "623978523089973052804384346", + "847696410325076572860434176" ], - "mAssetSupply": "67437518344822783590430839" + "mAssetSupply": "2308662627594517431896523362", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "52152469487283576242176", - "expectedQtys": [ - "13515130691091848690436", - "10108865707483214781812", - "28562802642648942286276" - ], - "redemptionFee": "15645740846185072872", + "type": "mint", + "inputIndex": 2, + "inputQty": "6988980139475807313592320", + "expectedQty": "6982789709807349595665413", "reserves": [ - "17467927128734301547509914", - "13065425231060969370170109", - "36916620827282869198733905" - ], - "mAssetSupply": "67385381521076346199261535" + "837174826680893963783679807", + "623978523089973052804384346", + "854685390464552380174026496" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "50187351174765692846080", - "outputIndex": 1, - "expectedQty": "49915305538954639312431", - "swapFee": "30178779436289430688", + "inputQty": "93295993673161995427250176", + "expectedQty": "93199985737347856917294761", "reserves": [ - "17518114479909067240355994", - "13015509925522014730857678", - "36916620827282869198733905" - ], - "mAssetSupply": "67385411699855782488692223", - "hardLimitError": false, - "insufficientLiquidityError": false + "930470820354055959210929983", + "623978523089973052804384346", + "854685390464552380174026496" + ] }, { "type": "redeemMasset", - "inputQty": "148761274619472883639910", + "inputQty": "3299350483247606988", "expectedQtys": [ - "38661709829028239061168", - "28724659186037074760937", - "81473361983651068355180" + "1274066140609283115", + "854395314012983949", + "1170295395668571719" ], - "redemptionFee": "44628382385841865091", + "redemptionFee": "989805144974282", "reserves": [ - "17479452770080039001294826", - "12986785266335977656096741", - "36835147465299218130378725" + "930470819079989818601646868", + "623978522235577738791400397", + "854685389294256984505454777" ], - "mAssetSupply": "67236695053618695446917404" + "mAssetSupply": "2408845399743311960306850830" }, { "type": "mintMulti", "inputQtys": [ - "169373167471295153045504", - "67916137219321524912128", - "7139667372949485125632" + "247169939380530272", + "138705427626658112", + "235153365563308896" ], - "expectedQty": "245233434691639473460809", + "expectedQty": "620883040142529410", "reserves": [ - "17648825937551334154340330", - "13054701403555299181008869", - "36842287132672167615504357" + "930470819327159757982177140", + "623978522374283166418058509", + "854685389529410350068763673" ], - "mAssetSupply": "67481928488310334920378213" + "mAssetSupply": "2408845400364195000449380240" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "24693407924326387154944", - "110405215447515414921216", - "70837645574953685221376" + "63054962086021554176", + "94149638846499487744", + "30451228728865271808" ], - "expectedQty": "206390282415694166035821", + "expectedQty": "187775842754077972905", + "swapFee": "112733145539770646", "reserves": [ - "17673519345475660541495274", - "13165106619002814595930085", - "36913124778247121300725733" + "930470756272197671960622964", + "623978428224644319918570765", + "854685359078181621203491865" ], - "mAssetSupply": "67688318770726029086414034" + "mAssetSupply": "2408845212588352246371407335" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "238862815890441216", + "expectedQty": "239424782944079913", + "reserves": [ + "930470756272197671960622964", + "623978428463507135809011981", + "854685359078181621203491865" + ] }, { "type": "redeemBassets", "inputQtys": [ - "8587504247349661696", - "562123670610325056", - "5197466414813556736" + "24847048734375287980032", + "7719542848377438863360", + "3277894398271926304768" ], - "expectedQty": "14342138753050182059", - "swapFee": "8610449521543035", + "expectedQty": "35828243833135396447397", + "swapFee": "21509852211207962646", "reserves": [ - "17673510757971413191833578", - "13165106056879143985605029", - "36913119580780706487168997" + "930445909223463296672642932", + "623970708920658758370148621", + "854682081183783349277187097" ], - "mAssetSupply": "67688304428587276036231975" + "mAssetSupply": "2408809384583943893919039851" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "7659551092318258855936", - "expectedQty": "7675775159831259411083", + "type": "redeemBassets", + "inputQtys": [ + "19962094893442048983040", + "31523040867774894178304", + "25382470048076059901952" + ], + "expectedQty": "76899553511593068476021", + "swapFee": "46167432566495738528", "reserves": [ - "17681170309063731450689514", - "13165106056879143985605029", - "36913119580780706487168997" - ] + "930425947128569854623659892", + "623939185879790983475970317", + "854656698713735273217285145" + ], + "mAssetSupply": "2408732485030432300850563830" + }, + { + "type": "mintMulti", + "inputQtys": [ + "16587323575854003413581824", + "16088999329518958460010496", + "7176674770945664702480384" + ], + "expectedQty": "39864148444041499310887484", + "reserves": [ + "947013270704423858037241716", + "640028185209309941935980813", + "861833373484680937919765529" + ], + "mAssetSupply": "2448596633474473800161451314" }, { "type": "redeemBassets", "inputQtys": [ - "540402476215619158016", - "505277854546956517376", - "3272113815624328151040" + "887326819595056096215040", + "875449516116711250591744", + "261080854867769443745792" ], - "expectedQty": "4305410363365420376283", - "swapFee": "2584797096277018436", + "expectedQty": "2024530566991349464684439", + "swapFee": "1215447608760065718241", "reserves": [ - "17680629906587515831531498", - "13164600779024597029087653", - "36909847466965082159017957" + "946125943884828801941026676", + "639152735693193230685389069", + "861572292629813168476019737" ], - "mAssetSupply": "67691674793383741875266775" + "mAssetSupply": "2446572102907482450696766875" }, { - "type": "redeemMasset", - "inputQty": "667614185928111", - "expectedQtys": [ - "174324216766659", - "129797904937434", - "363916912725958" + "type": "redeemBassets", + "inputQtys": [ + "281959012568937955328", + "376696265510803210240", + "430039291004081733632" ], - "redemptionFee": "200284255778", + "expectedQty": "1088933107162290830921", + "swapFee": "653752115566714527", "reserves": [ - "17680629906413191614764839", - "13164600778894799124150219", - "36909847466601165246291999" + "946125661925816233003071348", + "639152358996927719882178829", + "861571862590522164394286105" ], - "mAssetSupply": "67691674792716327973594442" + "mAssetSupply": "2446571013974375288405935954" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "228506546153001406431232", - "outputIndex": 0, - "expectedQty": "229407828526583827017261", - "swapFee": "138035087949311045957", + "type": "mintMulti", + "inputQtys": [ + "13302416976346370539520", + "7885321474537450110976", + "2986183162962987450368" + ], + "expectedQty": "24172738502719125843315", "reserves": [ - "17451222077886607787747578", - "13393107325047800530581451", - "36909847466601165246291999" + "946138964342792579373610868", + "639160244318402257332289805", + "861574848773685127381736473" ], - "mAssetSupply": "67691812827804277284640399", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2446595186712878007531779269" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "187620367493491490816", - "outputIndex": 0, - "expectedQty": "186109458870583631464", - "swapFee": "111989957280450200", + "inputIndex": 1, + "inputQty": "4156986706772095401984", + "outputIndex": 2, + "expectedQty": "4166267014020247552702", + "swapFee": "2499828913456910377", "reserves": [ - "17451035968427737204116114", - "13393107325047800530581451", - "36910035086968658737782815" + "946138964342792579373610868", + "639164401305109029427691789", + "861570682506671107134183771" ], - "mAssetSupply": "67691812939794234565090599", + "mAssetSupply": "2446595189212706920988689646", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "22487207224840545894", + "inputQty": "1556496684216600780", "expectedQtys": [ - "5795491619355348030", - "4447852918294938608", - "12257828097062322037" + "601742523099291608", + "406507303907247999", + "547957261944142163" ], - "redemptionFee": "6746162167452163", + "redemptionFee": "466949005264980", "reserves": [ - "17451030172936117848768084", - "13393102877194882235642843", - "36910022829140561675460778" + "946138963741050056274319260", + "639164400898601725520443790", + "861570681958713845190041608" ], - "mAssetSupply": "67691790459333171891996868" + "mAssetSupply": "2446595187656677185777353846" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "131672662302319498493952", + "expectedQty": "131501426360866288937018", + "reserves": [ + "946270636403352375772813212", + "639164400898601725520443790", + "861570681958713845190041608" + ] }, { "type": "mintMulti", "inputQtys": [ - "2444823531371301370331136", - "2404681684221042607783936", - "2026954761907255822516224" + "94801737079432", + "61551270108265", + "73334056546627" ], - "expectedQty": "6885940232967742367777053", + "expectedQty": "229660923677794", "reserves": [ - "19895853704307419219099220", - "15797784561415924843426779", - "38936977591047817497977002" + "946270636403447177509892644", + "639164400898663276790552055", + "861570681958787179246588235" ], - "mAssetSupply": "74577730692300914259773921" + "mAssetSupply": "2446726689083267712989968658" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "68255521921426989776896", - "expectedQty": "68610665346112920062083", + "inputIndex": 0, + "inputQty": "181421575074592456704", + "expectedQty": "181185576709234883718", "reserves": [ - "19895853704307419219099220", - "15866040083337351833203675", - "38936977591047817497977002" + "946270817825022252102349348", + "639164400898663276790552055", + "861570681958787179246588235" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "225243213074027675648", - "expectedQty": "224246623735089365806", + "type": "redeemMasset", + "inputQty": "111180229222889986457", + "expectedQtys": [ + "42986017658452894393", + "29035168057739801265", + "39138364885657999009" + ], + "redemptionFee": "33354068766866995", "reserves": [ - "19895853704307419219099220", - "15866040083337351833203675", - "38937202834260891525652650" - ] + "946270774839004593649454955", + "639164371863495219050750790", + "861570642820422293588589226" + ], + "mAssetSupply": "2446726759121969268101732914" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "10909385630203918503903232", + "26171890677048727453040640", + "12602718118102800072179712" + ], + "expectedQty": "49723837801801499274448911", + "swapFee": "29852214009486591519581", + "reserves": [ + "935361389208800675145551723", + "612992481186446491597710150", + "848967924702319493516409514" + ], + "mAssetSupply": "2397002921320167768827284003" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "5960237391513878345547776", + "expectedQty": "5941597460032050211107005", + "swapFee": "3576142434908327007328", + "reserves": [ + "935361389208800675145551723", + "607050883726414441386603145", + "848967924702319493516409514" + ], + "mAssetSupply": "2391046260071088798808743555" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "359023671779019479580672", - "expectedQty": "359673544448494183642673", + "inputIndex": 1, + "inputQty": "974657941262093910016", + "expectedQty": "977168940489556647341", "reserves": [ - "20254877376086438698679892", - "15866040083337351833203675", - "38937202834260891525652650" + "935361389208800675145551723", + "607051858384355703480513161", + "848967924702319493516409514" ] }, { "type": "mintMulti", "inputQtys": [ - "3787167902663266724216832", - "1626874688196924432973824", - "2678961918608898118385664" + "1978670444722349607485440", + "7620199993334670978711552", + "4712607101330783459082240" ], - "expectedQty": "8095389219633838362492533", + "expectedQty": "14324925770234371891988333", "reserves": [ - "24042045278749705422896724", - "17492914771534276266177499", - "41616164752869789644038314" + "937340059653523024753037163", + "614672058377690374459224713", + "853680531803650276975491754" ], - "mAssetSupply": "83101628368353094815337016" + "mAssetSupply": "2405372163010263660257379229" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "385357333761606811648", - "693655005743454617600", - "2709054122584914788352" + "4417320604834937", + "9182759747692124", + "5067244930171828" ], - "expectedQty": "3781403790448780619875", + "expectedQty": "18680862163730588", + "swapFee": "11215246446106", "reserves": [ - "24042430636083467029708372", - "17493608426540019720795099", - "41618873806992374558826666" + "937340059649105704148202226", + "614672058368507614711532589", + "853680531798583032045319926" ], - "mAssetSupply": "83105409772143543595956891" + "mAssetSupply": "2405372162991582798093648641" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1942685405061635328", - "outputIndex": 0, - "expectedQty": "1949897305639553261", - "swapFee": "1171734943686221", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4320059441821798069436416", + "expectedQty": "4323398324528506963638742", + "swapFee": "2592035665093078841661", "reserves": [ - "24042428686186161390155111", - "17493610369225424782430427", - "41618873806992374558826666" + "933016661324577197184563484", + "614672058368507614711532589", + "853680531798583032045319926" ], - "mAssetSupply": "83105409773315278539643112", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2401054695585426093103053886" }, { "type": "redeemBassets", "inputQtys": [ - "6142566754444399616", - "613386483803705180160", - "522485140764099739648" + "1238881812117608577630208", + "5020476916529839552331776", + "5370185691305359771172864" ], - "expectedQty": "1143185178572488007785", - "swapFee": "686322900884023218", + "expectedQty": "11636821011107620563466338", + "swapFee": "6986284377290946906223", "reserves": [ - "24042422543619406945755495", - "17492996982741621077250267", - "41618351321851610459087018" + "931777779512459588606933276", + "609651581451977775159200813", + "848310346107277672274147062" ], - "mAssetSupply": "83104266588136706051635327" + "mAssetSupply": "2389417874574318472539587548" }, { "type": "mintMulti", "inputQtys": [ - "534413829888328400896", - "810165482055260438528", - "677140746828524814336" + "861637843017223127433216", + "859013851305467019526144", + "540187413189168348528640" ], - "expectedQty": "2023809610429966553080", + "expectedQty": "2261446421709949316733391", "reserves": [ - "24042956957449295274156391", - "17493807148223676337688795", - "41619028462598438983901354" + "932639417355476811734366492", + "610510595303283242178726957", + "848850533520466840622675702" ], - "mAssetSupply": "83106290397747136018188407" + "mAssetSupply": "2391679320996028421856320939" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "329322489090726756352", - "outputIndex": 1, - "expectedQty": "327710738171997949291", - "swapFee": "197778145587003591", + "type": "redeem", + "inputIndex": 2, + "inputQty": "671088331381364030963712", + "expectedQty": "671127014081526884612841", + "swapFee": "402652998828818418578", "reserves": [ - "24043286279938386000912743", - "17493479437485504339739504", - "41619028462598438983901354" + "932639417355476811734366492", + "610510595303283242178726957", + "848179406506385313738062861" ], - "mAssetSupply": "83106290595525281605191998", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2391008635317645886643775805" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "8245492667886171534131200", - "expectedQty": "8243990149932195238998109", + "type": "redeemMasset", + "inputQty": "3703473373785382018718105", + "expectedQtys": [ + "1444147460172237127735098", + "945346410636886353262643", + "1313365179384993699860033" + ], + "redemptionFee": "1111042012135614605615", "reserves": [ - "32288778947824557535043943", - "17493479437485504339739504", - "41619028462598438983901354" - ] + "931195269895304574606631394", + "609565248892646355825464314", + "846866041327000320038202828" + ], + "mAssetSupply": "2387306272985872640239663315" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "27897664165017492", - "expectedQty": "27808104205997560", + "type": "swap", + "inputIndex": 0, + "inputQty": "92087663057009836673728512", + "outputIndex": 2, + "expectedQty": "91887655475833685885616443", + "swapFee": "55161843417335176986456", "reserves": [ - "32288778947824557535043943", - "17493479437485504339739504", - "41619028490496103148918846" - ] + "1023282932952314411280359906", + "609565248892646355825464314", + "754978385851166634152586385" + ], + "mAssetSupply": "2387361434829289975416649771", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "2680585362209537995571", - "expectedQtys": [ - "947198647122466806413", - "513175183348559064612", - "1220903631705940257388" + "type": "mintMulti", + "inputQtys": [ + "937023779709708160", + "3381456045618883072", + "4562977977734404096" ], - "redemptionFee": "804175608662861398", + "expectedQty": "8889210938569654941", "reserves": [ - "32287831749177435068237530", - "17492966262302155780674892", - "41617807586864397208661458" + "1023282933889338190990068066", + "609565252274102401444347386", + "754978390414144611886990481" ], - "mAssetSupply": "91347600992078980175053494" + "mAssetSupply": "2387361443718500913986304712" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "1147866537773115931361280", - "outputIndex": 1, - "expectedQty": "1134779001527805730416344", - "swapFee": "686451164683079092907", + "inputIndex": 1, + "inputQty": "148784556145664928", + "outputIndex": 2, + "expectedQty": "149025608449872432", + "swapFee": "89494510226618", "reserves": [ - "32287831749177435068237530", - "16358187260774350050258548", - "42765674124637513140022738" + "1023282933889338190990068066", + "609565252422886957590012314", + "754978390265119003437118049" ], - "mAssetSupply": "91348287443243663254146401", + "mAssetSupply": "2387361443718590408496531330", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "72820533632951107190784", - "1061791181614028867764224", - "136170869234963295764480" - ], - "expectedQty": "1279495526934180943444037", - "swapFee": "768158211087160862583", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9072737507065094733824", + "expectedQty": "9086901142899518706803", + "swapFee": "5443642504239056840", "reserves": [ - "32215011215544483961046746", - "15296396079160321182494324", - "42629503255402549844258258" + "1023273846988195291471361263", + "609565252422886957590012314", + "754978390265119003437118049" ], - "mAssetSupply": "90068791916309482310702364" + "mAssetSupply": "2387352376424725847640854346" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1831139752290725", - "3653323179456695", - "6759983038480538" + "2185765769903903", + "1959383594616969", + "2395284142188603" ], - "expectedQty": "12249543133517330", - "swapFee": "7354138363128", + "expectedQty": "6541310405751983", "reserves": [ - "32215011213713344208756021", - "15296396075506998003037629", - "42629503248642566805777720" + "1023273846990381057241265166", + "609565252424846341184629283", + "754978390267514287579306652" ], - "mAssetSupply": "90068791904059939177185034" + "mAssetSupply": "2387352376431267158046606329" }, { "type": "redeemMasset", - "inputQty": "14684455500320630584115", + "inputQty": "7420824095243780279500", "expectedQtys": [ - "5250630886048372072146", - "2493115061996228801597", - "6948058621781294205737" + "3179780762218634560550", + "1894198575169577714482", + "2346063830639464185857" ], - "redemptionFee": "4405336650096189175", + "redemptionFee": "2226247228573134083", "reserves": [ - "32209760582827295836683875", - "15293902960445001774236032", - "42622555190020785511571983" + "1023270667209618838606704616", + "609563358226271171606914801", + "754976044203683648115120795" ], - "mAssetSupply": "90054111853896268642790094" + "mAssetSupply": "2387344957833419142839460912" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "162390593452083402244096", - "expectedQty": "162931410728036637156788", - "swapFee": "97434356071250041346", + "inputIndex": 1, + "inputQty": "159094054331452324052992", + "expectedQty": "158600861304351833609416", + "swapFee": "95456432598871394431", + "reserves": [ + "1023270667209618838606704616", + "609404757364966819773305385", + "754976044203683648115120795" + ], + "mAssetSupply": "2387185959235520289386802351" + }, + { + "type": "redeemMasset", + "inputQty": "135878315012866021785", + "expectedQtys": [ + "58226960256933126294", + "34676833534413217311", + "42960246520756758840" + ], + "redemptionFee": "40763494503859806", "reserves": [ - "32209760582827295836683875", - "15293902960445001774236032", - "42459623779292748874415195" + "1023270608982658581673578322", + "609404722688133285360088074", + "754976001243437127358361955" ], - "mAssetSupply": "89891818694800256490587344" + "mAssetSupply": "2387185823397968771024640372" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "13066496108277120286851072", - "expectedQty": "13002190803957563314717922", + "inputIndex": 0, + "inputQty": "46905324464930008596480", + "expectedQty": "46804074489224784646636", "reserves": [ - "32209760582827295836683875", - "15293902960445001774236032", - "55526119887569869161266267" + "1023317514307123511682174802", + "609404722688133285360088074", + "754976001243437127358361955" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "65896775731605516845056", - "38986982740265088843776", - "112647090453255003570176" - ], - "expectedQty": "217364759741317844851225", - "swapFee": "130497154137273070753", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3915363592274073696075776", + "expectedQty": "3911840096469200953183835", + "swapFee": "2349218155364444217645", "reserves": [ - "32143863807095690319838819", - "15254915977704736685392256", - "55413472797116614157696091" + "1023317514307123511682174802", + "609404722688133285360088074", + "751064161146967926405178120" ], - "mAssetSupply": "102676644739016501960454041" + "mAssetSupply": "2383319613098339286557428877" }, { "type": "swap", "inputIndex": 0, - "inputQty": "610567162588657793105920", + "inputQty": "360186966493702654001152", "outputIndex": 1, - "expectedQty": "601100037659996258996031", - "swapFee": "366120923331543582516", + "expectedQty": "358295195937734585426373", + "swapFee": "215642726924211328914", "reserves": [ - "32754430969684348112944739", - "14653815940044740426396225", - "55413472797116614157696091" + "1023677701273617214336175954", + "609046427492195550774661701", + "751064161146967926405178120" ], - "mAssetSupply": "102677010859939833504036557", + "mAssetSupply": "2383319828741066210768757791", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "20502365410945514078208", - "expectedQty": "20812648548394059635850", + "type": "mintMulti", + "inputQtys": [ + "46573993225752120655872", + "231686810889798199279616", + "275248276098452583088128" + ], + "expectedQty": "554072922317511530878521", "reserves": [ - "32754430969684348112944739", - "14674318305455685940474433", - "55413472797116614157696091" - ] + "1023724275266842966456831826", + "609278114303085348973941317", + "751339409423066378988266248" + ], + "mAssetSupply": "2383873901663383722299636312" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "6689913226470471162134528", - "expectedQty": "6723432526584847780617103", - "swapFee": "4013947935882282697280", + "inputQty": "11004717475297924887871488", + "expectedQty": "10994143899276824684276864", + "swapFee": "6602830485178754932722", "reserves": [ - "32754430969684348112944739", - "14674318305455685940474433", - "48690040270531766377078988" + "1023724275266842966456831826", + "609278114303085348973941317", + "740345265523789554303989384" ], - "mAssetSupply": "96011924229953638684235159" + "mAssetSupply": "2372875787018570976166697546" }, { - "type": "mintMulti", - "inputQtys": [ - "41653147464504492032", - "47657390503564025856", - "34929053383516336128" + "type": "redeemMasset", + "inputQty": "2797522330816568297206579", + "expectedQtys": [ + "1206566466253632086234912", + "718098182392647446441490", + "872574571505403961020575" ], - "expectedQty": "124602740790335033911", + "redemptionFee": "839256699244970489161", "reserves": [ - "32754472622831812617436771", - "14674365962846189504500289", - "48690075199585149893415116" + "1022517708800589334370596914", + "608560016120692701527499827", + "739472690952284150342968809" ], - "mAssetSupply": "96012048832694429019269070" + "mAssetSupply": "2370079103944453652839980128" }, { "type": "redeemMasset", - "inputQty": "243821955409197216353484", + "inputQty": "2370771670406369640448", "expectedQtys": [ - "83154810073255945483507", - "37254274511974400882096", - "123611025654303740412810" + "1022509656186188510918", + "608555223539491025210", + "739466867396966792692" ], - "redemptionFee": "73146586622759164906", + "redemptionFee": "711231501121910892", "reserves": [ - "32671317812758556671953264", - "14637111688334215103618193", - "48566464173930846153002306" + "1022516686290933148182085996", + "608559407565469162036474617", + "739471951485416753376176117" ], - "mAssetSupply": "95768300023871854562080492" + "mAssetSupply": "2370076733884014747592250572" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 2, + "inputQty": "601761547637231104", + "expectedQty": "602007009785118259", + "reserves": [ + "1022516686290933148182085996", + "608559407565469162036474617", + "739471952087178301013407221" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "1450080573302555648", - "976808736013234816", - "52040466520882608" + "1489470772952428800", + "4916017385493571584", + "1148681019920798976" ], - "expectedQty": "2488911898365734346", - "swapFee": "1494243685230578", + "expectedQty": "7563350582218233732", "reserves": [ - "32671316362677983369397616", - "14637110711525479090383377", - "48566464121890379632119698" + "1022516687780403921134514796", + "608559412481486547530046201", + "739471953235859320934206197" ], - "mAssetSupply": "95768297534959956196346146" + "mAssetSupply": "2370076742049372339595602563" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1382153816182277", - "expectedQty": "1383209899373269", - "swapFee": "829292289709", + "type": "redeemMasset", + "inputQty": "150540212972372544716", + "expectedQtys": [ + "64927729238514866391", + "38642284503852847817", + "46954964484144172013" + ], + "redemptionFee": "45162063891711763", "reserves": [ - "32671316361294773470024347", - "14637110711525479090383377", - "48566464121890379632119698" + "1022516622852674682619648405", + "608559373839202043677198384", + "739471906280894836790034184" ], - "mAssetSupply": "95768297533578631672453578" + "mAssetSupply": "2370076591554321431114769610" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "168844378981625482969088", - "expectedQty": "168970093517510356940540", - "swapFee": "101306627388975289781", + "type": "redeemBassets", + "inputQtys": [ + "1561994605126755607904256", + "1008966228615424620101632", + "2679071183032366017806336" + ], + "expectedQty": "5250147562945081155119377", + "swapFee": "3151979725602410139155", "reserves": [ - "32502346267777263113083807", - "14637110711525479090383377", - "48566464121890379632119698" + "1020954628247547927011744149", + "607550407610586619057096752", + "736792835097862470772227848" ], - "mAssetSupply": "95599554461224395164774271" + "mAssetSupply": "2364826443991376349959650233" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "301195232347715566305280", + "inputIndex": 1, + "inputQty": "6529969410508068625580032", "outputIndex": 0, - "expectedQty": "299863544176394395708757", - "swapFee": "179798169707145910885", + "expectedQty": "6555855274540761081536891", + "swapFee": "3927346353368225471184", "reserves": [ - "32202482723600868717375050", - "14637110711525479090383377", - "48867659354238095198424978" + "1014398772973007165930207258", + "614080377021094687682676784", + "736792835097862470772227848" ], - "mAssetSupply": "95599734259394102310685156", + "mAssetSupply": "2364830371337729718185121417", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "395980417697695240552448", - "expectedQty": "396211848966919870539972", - "swapFee": "237588250618617144331", + "type": "redeemMasset", + "inputQty": "7065416518432968", + "expectedQtys": [ + "3029815494899319", + "1834140863517819", + "2200659551043941" + ], + "redemptionFee": "2119624955529", "reserves": [ - "31806270874633948846835078", - "14637110711525479090383377", - "48867659354238095198424978" + "1014398772969977350435307939", + "614080377019260546819158965", + "736792835095661811221183907" ], - "mAssetSupply": "95203991429947025687277039" + "mAssetSupply": "2364830371330666421291643978" }, { - "type": "redeemBassets", + "type": "redeemMasset", + "inputQty": "11721766991793427474022", + "expectedQtys": [ + "5026567247193504443878", + "3042902251578935833955", + "3650969255429403235692" + ], + "redemptionFee": "3516530097538028242", + "reserves": [ + "1014393746402730156930864061", + "614077334117008967883325010", + "736789184126406381817948215" + ], + "mAssetSupply": "2364818653080204725402198198" + }, + { + "type": "mintMulti", "inputQtys": [ - "199250545019515045937152", - "97150698458454264119296", - "104988228068928173113344" + "783611418306980452761600", + "1481246880978005659746304", + "4453122172688874864640" ], - "expectedQty": "401828571507792920817757", - "swapFee": "241241888037498251441", + "expectedQty": "2271047082033999763229733", "reserves": [ - "31607020329614433800897926", - "14539960013067024826264081", - "48762671126169167025311634" + "1015177357821037137383625661", + "615558580997986973543071314", + "736793637248579070692812855" ], - "mAssetSupply": "94802162858439232766459282" + "mAssetSupply": "2367089700162238725165427931" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2645881245223591497170944", - "expectedQty": "2642094691627686966651809", + "type": "mintMulti", + "inputQtys": [ + "55870150625531904655360", + "42115969585836097273856", + "66545372063668300152832" + ], + "expectedQty": "164537672372583580529278", "reserves": [ - "34252901574838025298068870", - "14539960013067024826264081", - "48762671126169167025311634" - ] + "1015233227971662669288281021", + "615600696967572809640345170", + "736860182620642738992965687" + ], + "mAssetSupply": "2367254237834611308745957209" }, { "type": "mintMulti", "inputQtys": [ - "756286301697661340745728", - "291000325167023797567488", - "2163190334886364865101824" + "487629778270072256", + "451495807175450304", + "413501072161810048" ], - "expectedQty": "3202083495601880492335535", + "expectedQty": "1352799810685048978", "reserves": [ - "35009187876535686638814598", - "14830960338234048623831569", - "50925861461055531890413458" + "1015233228459292447558353277", + "615600697419068616815795474", + "736860183034143811154775735" ], - "mAssetSupply": "100646341045668800225446626" + "mAssetSupply": "2367254239187411119431006187" }, { - "type": "redeemMasset", - "inputQty": "909457992160328192", - "expectedQtys": [ - "316254257898962162", - "133974954581588001", - "460036964611393505" + "type": "mintMulti", + "inputQtys": [ + "18887177154895397435473920", + "16438751013653737472262144", + "20646365645307231132975104" ], - "redemptionFee": "272837397648098", + "expectedQty": "55978426196148931036486620", "reserves": [ - "35009187560281428739852436", - "14830960204259094042243568", - "50925861001018567279019953" + "1034120405614187844993827197", + "632039448432722354288057618", + "757506548679451042287750839" ], - "mAssetSupply": "100646340136483645462766532" + "mAssetSupply": "2423232665383560050467492807" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2638940738507849882140672", - "outputIndex": 2, - "expectedQty": "2644986350500408612344639", - "swapFee": "1580296543045166958275", + "inputQty": "219549218473086877696", + "outputIndex": 1, + "expectedQty": "218461205375239798977", + "swapFee": "131452669247410286", "reserves": [ - "37648128298789278621993108", - "14830960204259094042243568", - "48280874650518158666675314" + "1034120625163406318080704893", + "632039229971516979048258641", + "757506548679451042287750839" ], - "mAssetSupply": "100647920433026690629724807", + "mAssetSupply": "2423232665515012719714903093", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "169964215630597849088", - "6061674541801909248", - "386445339486155505664" - ], - "expectedQty": "560368876434232004835", - "swapFee": "336423179768400243", + "type": "mint", + "inputIndex": 0, + "inputQty": "34069625317898854646939648", + "expectedQty": "33995073401458879316102524", "reserves": [ - "37647958334573648024144020", - "14830954142584552240334320", - "48280488205178672511169650" - ], - "mAssetSupply": "100647360064150256397719972" + "1068190250481305172727644541", + "632039229971516979048258641", + "757506548679451042287750839" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "391982089156085806006272", - "expectedQty": "386406334120125413558213", - "swapFee": "235189253493651483603", + "type": "swap", + "inputIndex": 0, + "inputQty": "102445241035369568272384", + "outputIndex": 2, + "expectedQty": "102098129320006802571278", + "swapFee": "61327341790545117784", "reserves": [ - "37647958334573648024144020", - "14444547808464426826776107", - "48280488205178672511169650" + "1068292695722340542295916925", + "632039229971516979048258641", + "757404450550131035485179561" ], - "mAssetSupply": "100255613164247664243197303" + "mAssetSupply": "2457227800243813389576123401", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "688479934301399296", - "203480451253638048", - "104006835798565632" + "93377738588543713280", + "849124100724358250496", + "648039572470392160256" ], - "expectedQty": "996662828785277237", - "swapFee": "598356711297945", + "expectedQty": "1592719686846552107343", "reserves": [ - "37647957646093713722744724", - "14444547604983975573138059", - "48280488101171836712604018" + "1068292789100079130839630205", + "632040079095617703406509137", + "757405098589703505877339817" ], - "mAssetSupply": "100255612167584835457920066" + "mAssetSupply": "2457229392963500236128230744" }, { "type": "redeemMasset", - "inputQty": "1565502525299529", + "inputQty": "550609078115999732989952", "expectedQtys": [ - "587700679309697", - "225485550094671", - "753679015504484" + "239308241198777684951857", + "141583282447242162636506", + "169666297355779215317055" ], - "redemptionFee": "469650757589", + "redemptionFee": "165182723434799919896", "reserves": [ - "37647957645506013043435027", - "14444547604758490023043388", - "48280488100418157697099534" + "1068053480858880353154678348", + "631898495813170461243872631", + "757235432292347726662022762" ], - "mAssetSupply": "100255612166019802583378126" + "mAssetSupply": "2456678949068107671195160688" }, { "type": "redeemMasset", - "inputQty": "29654231829157846292889", + "inputQty": "9356995967632120137069363", "expectedQtys": [ - "11132407587186007564144", - "4271216857573087489830", - "14276420439670168930115" - ], - "redemptionFee": "8896269548747353887", - "reserves": [ - "37636825237918827035870883", - "14440276387900916935553558", - "48266211679978487528169419" - ], - "mAssetSupply": "100225966830460193484439124" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "11555317402880943587328", - "outputIndex": 0, - "expectedQty": "11741228507677717930439", - "swapFee": "7031592202290151591", - "reserves": [ - "37625084009411149317940444", - "14451831705303797879140886", - "48266211679978487528169419" - ], - "mAssetSupply": "100225973862052395774590715", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6621810782697806408712192", - "expectedQty": "6451325548280406672911231", - "swapFee": "3973086469618683845227", - "reserves": [ - "37625084009411149317940444", - "8000506157023391206229655", - "48266211679978487528169419" - ], - "mAssetSupply": "93608136165824208049723750" - }, - { - "type": "mintMulti", - "inputQtys": [ - "346492400026072085692416", - "293052231202341470076928", - "144532295532768974077952" + "4066780474415556498491978", + "2406052234874091620342233", + "2883292200036406300712088" ], - "expectedQty": "794025855582014646450801", + "redemptionFee": "2807098790289636041120", "reserves": [ - "37971576409437221403632860", - "8293558388225732676306583", - "48410743975511256502247371" + "1063986700384464796656186370", + "629492443578296369623530398", + "754352140092311320361310674" ], - "mAssetSupply": "94402162021406222696174551" + "mAssetSupply": "2447324760199265840694132445" }, { "type": "swap", "inputIndex": 1, - "inputQty": "17355495184280976", - "outputIndex": 0, - "expectedQty": "18208945105594510", - "swapFee": "10869579357506", + "inputQty": "703151608164560928768", + "outputIndex": 2, + "expectedQty": "704066489788206967443", + "swapFee": "422912207941033622", "reserves": [ - "37971576391228276298038350", - "8293558405581227860587559", - "48410743975511256502247371" + "1063986700384464796656186370", + "629493146729904534184459166", + "754351436025821532154343231" ], - "mAssetSupply": "94402162021417092275532057", + "mAssetSupply": "2447324760622178048635166067", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "125405465317395873792", - "575785089547629953024", - "1059968764697210126336" + "type": "redeemMasset", + "inputQty": "5490096358465222859135385", + "expectedQtys": [ + "2386130842274814900335120", + "1411721605044587013441792", + "1691732825950829990679848" ], - "expectedQty": "1776464050020794205805", + "redemptionFee": "1647028907539566857740", "reserves": [ - "37971701796693593693912142", - "8294134190670775490540583", - "48411803944275953712373707" + "1061600569542189981755851250", + "628081425124859947171017374", + "752659703199870702163663383" ], - "mAssetSupply": "94403938485467113069737862" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "6213081079223307", - "expectedQty": "6177649994161789", - "reserves": [ - "37971701802906674773135449", - "8294134190670775490540583", - "48411803944275953712373707" - ] + "mAssetSupply": "2441836311292620365342888422" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "977884790923604787200", - "expectedQty": "982903094867118539323", - "swapFee": "586730874554162872", + "inputQty": "19895910605957025792", + "expectedQty": "19929312554517405758", + "swapFee": "11937546363574215", "reserves": [ - "37970718899811807654596126", - "8294134190670775490540583", - "48411803944275953712373707" + "1061600549612877427238445492", + "628081425124859947171017374", + "752659703199870702163663383" ], - "mAssetSupply": "94402961193584714013275323" + "mAssetSupply": "2441836291408647305749436845" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "146034692454160745365504", - "expectedQty": "146781247782988165314009", - "swapFee": "87620815472496447219", + "type": "redeemMasset", + "inputQty": "8260094497319768660377", + "expectedQtys": [ + "3590040091055575191571", + "2123998049424348193923", + "2545287406261106612186" + ], + "redemptionFee": "2478028349195930598", "reserves": [ - "37823937652028819489282117", - "8294134190670775490540583", - "48411803944275953712373707" + "1061596959572786371663253921", + "628079301126810522822823451", + "752657157912464441057051197" ], - "mAssetSupply": "94257014121946025764357038" + "mAssetSupply": "2441828033792178335176707066" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "87314801727915147264", - "26833217800650792960", - "258310106541383974912" + "334271141581062799360", + "97683601639481933824", + "969118383402735488" ], - "expectedQty": "370889711801094513733", - "swapFee": "222667427537179015", + "expectedQty": "432400346134023230243", "reserves": [ - "37823850337227091574134853", - "8294107357452974839747623", - "48411545634169412328398795" + "1061597293843927952726053281", + "628079398810412162304757275", + "752657158881582824459786685" ], - "mAssetSupply": "94256643232234224669843305" + "mAssetSupply": "2441828466192524469199937309" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "27422622055278678376448", - "expectedQty": "27562176243803220330472", - "swapFee": "16453573233167207025", + "inputQty": "24593749124875689132032", + "expectedQty": "24537796408723725931700", "reserves": [ - "37796288160983288353804381", - "8294107357452974839747623", - "48411545634169412328398795" - ], - "mAssetSupply": "94229237063752179158673882" + "1061621887593052828415185313", + "628079398810412162304757275", + "752657158881582824459786685" + ] }, { "type": "redeemMasset", - "inputQty": "801152725182411230412", + "inputQty": "22725629637856349441228", "expectedQtys": [ - "321253954987370240920", - "70496731856917234928", - "411479572697380917122" + "9877248133172691322866", + "5843602267328541767863", + "7002664135285697919620" ], - "redemptionFee": "240345817554723369", + "redemptionFee": "6817688891356904832", "reserves": [ - "37795966907028300983563461", - "8294036860721117922512695", - "48411134154596714947481673" + "1061612010344919655723862447", + "628073555208144833762989412", + "752650156217447538761867065" ], - "mAssetSupply": "94228436151372814302166839" + "mAssetSupply": "2441830285176984227933332613" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "315422475595123318063104", - "expectedQty": "313625189799090443204167", + "inputIndex": 1, + "inputQty": "75122510103286759424", + "expectedQty": "75304361961975694461", "reserves": [ - "38111389382623424301626565", - "8294036860721117922512695", - "48411134154596714947481673" + "1061612010344919655723862447", + "628073630330654937049748836", + "752650156217447538761867065" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2466262080063806111744", - "expectedQty": "2452106492881443905838", + "type": "redeemMasset", + "inputQty": "202935470920571154962841", + "expectedQtys": [ + "88201909977009455097442", + "52182241027359196311684", + "62532432447994579450569" + ], + "redemptionFee": "60880641276171346488", "reserves": [ - "38113855644703488107738309", - "8294036860721117922512695", - "48411134154596714947481673" - ] + "1061523808434942646268765005", + "628021448089627577853437152", + "752587623784999544182416496" + ], + "mAssetSupply": "2441627485891066894925410721" }, { "type": "mintMulti", "inputQtys": [ - "23310780157319022903296", - "8186382258985911713792", - "37464679895287499587584" - ], - "expectedQty": "68862542477726419825285", - "reserves": [ - "38137166424860807130641605", - "8302223242980103834226487", - "48448598834492002447069257" + "1537640489137461102903296", + "2155158952650682734215168", + "1358745259641849918783488" ], - "mAssetSupply": "94613375990142512609102129" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "1966179140708433152", - "outputIndex": 0, - "expectedQty": "2063126136582443127", - "swapFee": "1231513094077144", + "expectedQty": "5053957413431050345669156", "reserves": [ - "38137164361734670548198478", - "8302225209159244542659639", - "48448598834492002447069257" + "1063061448924080107371668301", + "630176607042278260587652320", + "753946369044641394101199984" ], - "mAssetSupply": "94613375991374025703179273", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2446681443304497945271079877" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "64509806766339701866496", - "59567498598221348864000", - "54639800188899763945472" + "11334968171089682", + "13336220451110578", + "8215265153001251" ], - "expectedQty": "180476531288787380313021", + "expectedQty": "32897098276569875", + "swapFee": "19750109031360", "reserves": [ - "38201674168501010250064974", - "8361792707757465891523639", - "48503238634680902211014729" + "1063061448912745139200578619", + "630176607028942040136541742", + "753946369036426128948198733" ], - "mAssetSupply": "94793852522662813083492294" + "mAssetSupply": "2446681443271600846994510002" }, { "type": "mint", "inputIndex": 1, - "inputQty": "42480769390665400320", - "expectedQty": "44324971558758507573", + "inputQty": "52199725035526", + "expectedQty": "52325281542350", "reserves": [ - "38201674168501010250064974", - "8361835188526856556923959", - "48503238634680902211014729" + "1063061448912745139200578619", + "630176607028994239861577268", + "753946369036426128948198733" ] }, { - "type": "mintMulti", - "inputQtys": [ - "243993695778064334848", - "341970060110680948736", - "242251162475165712384" - ], - "expectedQty": "839581271307558725178", + "type": "mint", + "inputIndex": 2, + "inputQty": "6951909973337318621184", + "expectedQty": "6955532201978468615553", "reserves": [ - "38201918162196788314399822", - "8362177158586967237872695", - "48503480885843377376727113" - ], - "mAssetSupply": "94794736428905679400725045" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8810124462955148634750976", - "hardLimitError": true + "1063061448912745139200578619", + "630176607028994239861577268", + "753953320946399466266819917" + ] }, { - "type": "redeemMasset", - "inputQty": "92647030424038303334", - "expectedQtys": [ - "37325199892306342364", - "8170268640803466787", - "47390345999125018971" + "type": "mintMulti", + "inputQtys": [ + "5205693557970200619384832", + "17442812294880381349396480", + "3045894162763235654107136" ], - "redemptionFee": "27794109127211491", + "expectedQty": "25724741366917304238031424", "reserves": [ - "38201880836996896008057458", - "8362168988318326434405908", - "48503433495497378251708142" + "1068267142470715339819963451", + "647619419323874621210973748", + "756999215109162701920927053" ], - "mAssetSupply": "94794643809669364489633202" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "683425009311673212731392", - "expectedQty": "677479407357715973471939", - "reserves": [ - "38201880836996896008057458", - "8362168988318326434405908", - "49186858504809051464439534" - ] + "mAssetSupply": "2472413140170772454982699329" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "16328575680903666204672", + "inputIndex": 0, + "inputQty": "23502089234132273987584", "outputIndex": 1, - "expectedQty": "15489989269905479465751", - "swapFee": "9711124220698793707", + "expectedQty": "23384325223079223522331", + "swapFee": "14070137566001565516", "reserves": [ - "38201880836996896008057458", - "8346678999048420954940157", - "49203187080489955130644206" + "1068290644559949472093951035", + "647596034998651541987451417", + "756999215109162701920927053" ], - "mAssetSupply": "95472132928151301161898848", + "mAssetSupply": "2472413154240910020984264845", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "146528445846505206579", + "inputQty": "552981570306978217774284", "expectedQtys": [ - "58613783490116756748", - "12806448923266880983", - "75493271309472583070" + "238862915629035033795036", + "144798307330772417023350", + "169260154594303962506195" ], - "redemptionFee": "43958533753951561", + "redemptionFee": "165894471092093465332", "reserves": [ - "38201822223213405891300710", - "8346666192599497688059174", - "49203111587218645658061136" + "1068051781644320437060155999", + "647451236691320769570428067", + "756829954954568397958420858" ], - "mAssetSupply": "95471986443663988410643830" + "mAssetSupply": "2471860338565074134859955893" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "1389460711466708762624", - "expectedQty": "1377234376405070951026", + "inputQty": "49749048664154271186419712", + "expectedQty": "49678649465728206514884039", + "swapFee": "29849429198492562711851", "reserves": [ - "38201822223213405891300710", - "8346666192599497688059174", - "49204501047930112366823760" - ] + "1068051781644320437060155999", + "647451236691320769570428067", + "707151305488840191443536819" + ], + "mAssetSupply": "2422141139330118356236248032" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4386674043613141270528", - "expectedQty": "4361785636191663236224", + "type": "redeemMasset", + "inputQty": "1025205231182109847689625", + "expectedQtys": [ + "451932285967347239077750", + "273960609849660633106650", + "299221921171601560829666" + ], + "redemptionFee": "307561569354632954306", "reserves": [ - "38206208897257019032571238", - "8346666192599497688059174", - "49204501047930112366823760" - ] + "1067599849358353089821078249", + "647177276081471108937321417", + "706852083567668589882707153" + ], + "mAssetSupply": "2421116241660505601021512713" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "12356604067915325505536", - "expectedQty": "11824155883122325677183", - "swapFee": "7413962440749195303", + "inputQty": "15022352258160171941888", + "expectedQty": "14983589772251069619116", + "swapFee": "9013411354896103165", "reserves": [ - "38206208897257019032571238", - "8334842036716375362381991", - "49204501047930112366823760" + "1067599849358353089821078249", + "647162292491698857867702301", + "706852083567668589882707153" ], - "mAssetSupply": "95465376273571110568520847" + "mAssetSupply": "2421101228321658795745673990" }, { "type": "mintMulti", "inputQtys": [ - "107696205964965071290368", - "112274837122041562267648", - "120737780097812600455168" + "4722386102676", + "4650433473881", + "1947717622821" ], - "expectedQty": "343982232726573869769106", + "expectedQty": "11320580280866", "reserves": [ - "38313905103221984103861606", - "8447116873838416924649639", - "49325238828027924967278928" + "1067599849358357812207180925", + "647162292491703508301176182", + "706852083567670537600329974" ], - "mAssetSupply": "95809358506297684438289953" + "mAssetSupply": "2421101228321670116325954856" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 2, + "inputQty": "594072262631946584064", + "expectedQty": "594695826690996826266", + "reserves": [ + "1067599849358357812207180925", + "647162292491703508301176182", + "706852677639933169546914038" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "14802217223792447455232", - "6850269692286846631936", - "2252913567141020565504" + "567697111810843894349824", + "13635050076863083839488", + "272344788193058958082048" + ], + "expectedQty": "852639854414778560241781", + "swapFee": "511891047277233476230", + "reserves": [ + "1067032152246546968312831101", + "647148657441626645217336694", + "706580332851740110588831990" + ], + "mAssetSupply": "2420249183163082028762539341" + }, + { + "type": "redeemMasset", + "inputQty": "36868790941416069529", + "expectedQtys": [ + "16249724849382362533", + "9855361525829472060", + "10760440506550760589" ], - "expectedQty": "24100760930247527143385", + "redemptionFee": "11060637282424820", "reserves": [ - "38328707320445776551316838", - "8453967143530703771281575", - "49327491741595065987844432" + "1067032135996822118930468568", + "647148647586265119387864634", + "706580322091299604038071401" ], - "mAssetSupply": "95833459267227931965433338" + "mAssetSupply": "2420249146305351724628894632" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1065339525764744347648", + "expectedQty": "1067450982356595849573", + "reserves": [ + "1067032135996822118930468568", + "647149712925790884132212282", + "706580322091299604038071401" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "825889975910321280", + "inputQty": "1785422648789469", "outputIndex": 0, - "expectedQty": "866132571902322360", - "swapFee": "517076079852317", + "expectedQty": "1792148297289341", + "swapFee": "1073376760267", "reserves": [ - "38328706454313204648994478", - "8453967969420679681602855", - "49327491741595065987844432" + "1067032135995029970633179227", + "647149712927576306781001751", + "706580322091299604038071401" ], - "mAssetSupply": "95833459267745008045285655", + "mAssetSupply": "2420250213756335154601504472", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "123024910082060083789824", - "277658040594638940667904", - "198053387967106484535296" + "49454539017345001813180416", + "25511272820616719715270656", + "16863627464291049816457216" ], - "expectedQty": "608712120422604810883267", - "swapFee": "365446540177669488222", + "expectedQty": "91779142025003596586971156", "reserves": [ - "38205681544231144565204654", - "8176309928826040740934951", - "49129438353627959503309136" + "1116486675012374972446359643", + "672660985748193026496272407", + "723443949555590653854528617" ], - "mAssetSupply": "95224747147322403234402388" + "mAssetSupply": "2512029355781338751188475628" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11830044864730470809600", - "9425069073494652747776", - "6539383977984751828992" + "518668771412339903692800", + "964065103793815338090496", + "348933031830353325588480" ], - "expectedQty": "28101675465632376019013", - "swapFee": "16871127956153117481", + "expectedQty": "1832697251116618508003728", "reserves": [ - "38193851499366414094395054", - "8166884859752546088187175", - "49122898969649974751480144" + "1117005343783787312350052443", + "673625050851986841834362903", + "723792882587421007180117097" ], - "mAssetSupply": "95196645471856770858383375" + "mAssetSupply": "2513862053032455369696479356" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3754524991511357030400", - "1326552179904881623040", - "1618974318497965801472" - ], - "expectedQty": "6724869710452285009539", - "swapFee": "4037344232811057640", - "reserves": [ - "38190096974374902737364654", - "8165558307572641206564135", - "49121279995331476785678672" - ], - "mAssetSupply": "95189920602146318573373836" - }, - { - "type": "redeemMasset", - "inputQty": "329574140143083873894", - "expectedQtys": [ - "132185134226440283832", - "28262966225106875006", - "170020594446624251492" + "582784153939101876224", + "265809659939953082368", + "396489276166433865728" ], - "redemptionFee": "98872242042925162", + "expectedQty": "1244645204300154282077", "reserves": [ - "38189964789240676297080822", - "8165530044606416099689129", - "49121109974737030161427180" + "1117005926567941251451928667", + "673625316661646781787445271", + "723793279076697173613982825" ], - "mAssetSupply": "95189591126878417532425104" + "mAssetSupply": "2513863297677659669850761433" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9284262042374160515072", - "11370026389577731670016", - "81679997224863316049920" + "5868894904805828614684672", + "644069559938900018855936", + "5629770905492816884924416" ], - "expectedQty": "102071148061243514577476", + "expectedQty": "12136383266161513549989001", + "swapFee": "7286201680705331328790", "reserves": [ - "38199249051283050457595894", - "8176900070995993831359145", - "49202789971961893477477100" + "1111137031663135422837243995", + "672981247101707881768589335", + "718163508171204356729058409" ], - "mAssetSupply": "95291662274939661047002580" + "mAssetSupply": "2501726914411498156300772432" }, { "type": "swap", "inputIndex": 0, - "inputQty": "8793451462950258678431744", + "inputQty": "236314347502707480199168", "outputIndex": 1, - "hardLimitError": true + "expectedQty": "235144867035107074241099", + "swapFee": "141441933964528221043", + "reserves": [ + "1111373346010638130317443163", + "672746102234672774694348236", + "718163508171204356729058409" + ], + "mAssetSupply": "2501727055853432120828993475", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9281551621975537876992", - "25643718075969888583680", - "48507608878057208676352" + "47088514621498495877513216", + "50407333003555317565358080", + "4396923581316874104733696" ], - "expectedQty": "84124430852134263305139", + "expectedQty": "101888717262635156426839470", + "swapFee": "61169932316971276622076", "reserves": [ - "38208530602905025995472886", - "8202543789071963719942825", - "49251297580839950686153452" + "1064284831389139634439929947", + "622338769231117457128990156", + "713766584589887482624324713" ], - "mAssetSupply": "95375786705791795310307719" + "mAssetSupply": "2399838338590796964402154005" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "502028453589753570263040", - "expectedQty": "497494855173653670332617", + "inputIndex": 1, + "inputQty": "137823297750206726144", + "expectedQty": "138143550345601346023", "reserves": [ - "38208530602905025995472886", - "8202543789071963719942825", - "49753326034429704256416492" + "1064284831389139634439929947", + "622338907054415207335716300", + "713766584589887482624324713" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "721811228986015318278144", - "592582589434121469034496", - "511354101901152992886784" - ], - "expectedQty": "1845915578013847531995881", - "swapFee": "1108214275373532638780", - "reserves": [ - "37486719373919010677194742", - "7609961199637842250908329", - "49241971932528551263529708" - ], - "mAssetSupply": "94027365982951601448644455" - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "25496344653627838693376", - "48121394592183509581824", - "32360660594968785584128" + "207128906818255814656", + "250129340644573478912", + "203354374572842287104" ], - "expectedQty": "108045796989366852444032", - "swapFee": "64866398032439575211", + "expectedQty": "660859879288827404274", "reserves": [ - "37461223029265382838501366", - "7561839805045658741326505", - "49209611271933582477945580" + "1064285038518046452695744603", + "622339157183755851909195212", + "713766787944262055466611817" ], - "mAssetSupply": "93919320185962234596200423" + "mAssetSupply": "2399839137594226598830904302" }, { "type": "mintMulti", "inputQtys": [ - "806905050995858580963328", - "831475346339524341923840", - "949334174947944739897344" + "8118209001697771520", + "12940795633231824896", + "10119107760586362880" ], - "expectedQty": "2614674865398173951371387", + "expectedQty": "31196923185509199085", "reserves": [ - "38268128080261241419464694", - "8393315151385183083250345", - "50158945446881527217842924" + "1064285046636255454393516123", + "622339170124551485141020108", + "713766798063369816052974697" ], - "mAssetSupply": "96533995051360408547571810" + "mAssetSupply": "2399839168791149784340103387" }, { "type": "redeemMasset", - "inputQty": "3305165667052587004723", + "inputQty": "41492337286508845465", "expectedQtys": [ - "1309844871281400286965", - "287287133068864250564", - "1716844819393444499937" - ], - "redemptionFee": "991549700115776101", - "reserves": [ - "38266818235389960019177729", - "8393027864252114218999781", - "50157228602062133773342987" + "18395577001945342496", + "10756787536887824060", + "12337063399232584290" ], - "mAssetSupply": "96530690877243056076343188" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "1595873125146961903616", - "outputIndex": 0, - "expectedQty": "1675987930460064421248", - "swapFee": "1000567069451970045", + "redemptionFee": "12447701185952653", "reserves": [ - "38265142247459499954756481", - "8394623737377261180903397", - "50157228602062133773342987" + "1064285028240678452448173627", + "622339159367763948253196048", + "713766785726306416820390407" ], - "mAssetSupply": "96530691877810125528313233", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2399839127311260199017210575" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "3477450882177156", - "expectedQty": "3494916786054835", - "swapFee": "2086470529306", + "inputIndex": 1, + "inputQty": "45481238381288849670144", + "expectedQty": "45348561844719792825856", + "swapFee": "27288743028773309802", "reserves": [ - "38265142243964583168701646", - "8394623737377261180903397", - "50157228602062133773342987" + "1064285028240678452448173627", + "622293810805919228460370192", + "713766785726306416820390407" ], - "mAssetSupply": "96530691874334761116665383" + "mAssetSupply": "2399793673361621938940850233" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1302866011305607936", - "1843681208073362432", - "1778711237511720192" + "36406325331223620620386304", + "47283397440917433114165248", + "4235333117507431919779840" ], - "expectedQty": "4984888914063428657", + "expectedQty": "87958978709823842654500353", + "swapFee": "52807071468775570935261", "reserves": [ - "38265143546830594474309582", - "8394625581058469254265829", - "50157230380773371285063179" + "1027878702909454831827787323", + "575010413365001795346204944", + "709531452608798984900610567" ], - "mAssetSupply": "96530696859223675180094040" + "mAssetSupply": "2311834694651798096286349880" }, { "type": "mintMulti", "inputQtys": [ - "65447566751653136", - "2368874644590119", - "3090576393113227" + "2334260415521906688", + "959543864298002560", + "527993295838762624" ], - "expectedQty": "70619636432502349", + "expectedQty": "3818924590631727262", "reserves": [ - "38265143612278161225962718", - "8394625583427343898855948", - "50157230383863947678176406" + "1027878705243715247349694011", + "575010414324545659644207504", + "709531453136792280739373191" ], - "mAssetSupply": "96530696929843311612596389" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "971726938025276725002240", - "expectedQty": "1010911427112995720284376", - "reserves": [ - "38265143612278161225962718", - "9366352521452620623858188", - "50157230383863947678176406" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "5355605653013704704", - "expectedQty": "5312810282590336597", - "reserves": [ - "38265143612278161225962718", - "9366352521452620623858188", - "50157235739469600691881110" - ] + "mAssetSupply": "2311834698470722686918077142" }, { "type": "mint", "inputIndex": 1, - "inputQty": "758671366695577728", - "expectedQty": "786117248445180647", + "inputQty": "5465302756968182579200", + "expectedQty": "5480679950093685790733", "reserves": [ - "38265143612278161225962718", - "9366353280123987319435916", - "50157235739469600691881110" + "1027878705243715247349694011", + "575015879627302627826786704", + "709531453136792280739373191" ] }, - { - "type": "redeemMasset", - "inputQty": "740054812909076582", - "expectedQtys": [ - "290233131404835995", - "71041835616215450", - "380432169255097462" - ], - "redemptionFee": "222016443872722", - "reserves": [ - "38265143322045029821126723", - "9366353209082151703220466", - "50157235359037431436783648" - ], - "mAssetSupply": "97541613716051041903194149" - }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4451552871086452375552", - "expectedQty": "4470512073599712749207", - "swapFee": "2670931722651871425", + "inputIndex": 1, + "inputQty": "47369816808229522701811712", + "expectedQty": "47189755579707231156940869", + "swapFee": "28421890084937713621087", "reserves": [ - "38260672809971430108377516", - "9366353209082151703220466", - "50157235359037431436783648" + "1027878705243715247349694011", + "527826124047595396669845835", + "709531453136792280739373191" ], - "mAssetSupply": "97537164834111678102690022" + "mAssetSupply": "2264498784232528195615677250" }, { "type": "mint", "inputIndex": 0, - "inputQty": "8859227024298391633920", - "expectedQty": "8816357756878166190362", + "inputQty": "11160735294895902", + "expectedQty": "11129795811387453", "reserves": [ - "38269532036995728500011436", - "9366353209082151703220466", - "50157235359037431436783648" + "1027878705254875982644589913", + "527826124047595396669845835", + "709531453136792280739373191" ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "3484524602529048082513920", - "outputIndex": 1, - "expectedQty": "3270817809297387250629768", - "swapFee": "2079726803222977206634", - "reserves": [ - "41754056639524776582525356", - "6095535399784764452590698", - "50157235359037431436783648" - ], - "mAssetSupply": "97548060918671779246087018", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "619113324427809128448", - "outputIndex": 0, - "expectedQty": "616961145749360409274", - "swapFee": "366912485358500499", + "inputQty": "6405871669236885278949376", + "outputIndex": 2, + "expectedQty": "6382135995892391221387953", + "swapFee": "3832800216303598676173", "reserves": [ - "41753439678379027222116082", - "6095535399784764452590698", - "50157854472361859245912096" + "1034284576924112867923539289", + "527826124047595396669845835", + "703149317140899889517985238" ], - "mAssetSupply": "97548061285584264604587517", + "mAssetSupply": "2264502617043874295025740876", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "157816206149603098624", - "expectedQty": "159679769731014368320", - "swapFee": "94689723689761859", - "reserves": [ - "41753439678379027222116082", - "6095535399784764452590698", - "50157694792592128231543776" - ], - "mAssetSupply": "97547903564067838691250752" - }, { "type": "mint", - "inputIndex": 1, - "inputQty": "30962245619208488484864", - "expectedQty": "33738915740343790411067", + "inputIndex": 0, + "inputQty": "3401854575049301441904640", + "expectedQty": "3392196211265604602205450", "reserves": [ - "41753439678379027222116082", - "6126497645403972941075562", - "50157694792592128231543776" + "1037686431499162169365443929", + "527826124047595396669845835", + "703149317140899889517985238" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "147766519181321850322944", - "181531854905432294293504", - "146990292938326699671552" + "type": "redeemMasset", + "inputQty": "66694894198843665652121", + "expectedQtys": [ + "30507422055028295324042", + "15517803692128852873618", + "20672211117506256495331" ], - "expectedQty": "489696574155521361209864", - "swapFee": "293994341097971599685", + "redemptionFee": "20008468259653099695", "reserves": [ - "41605673159197705371793138", - "5944965790498540646782058", - "50010704499653801531872224" + "1037655924077107141070119887", + "527810606243903267816972217", + "703128644929782383261489907" ], - "mAssetSupply": "97091945905652661120451955" + "mAssetSupply": "2267828138369409315615393900" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "7836799455781737", - "expectedQty": "7908337648663679", - "swapFee": "4702079673469", + "inputIndex": 1, + "inputQty": "796485102930025", + "expectedQty": "793099165581473", + "swapFee": "477891061758", "reserves": [ - "41605673151289367723129459", - "5944965790498540646782058", - "50010704499653801531872224" + "1037655924077107141070119887", + "527810606243110168651390744", + "703128644929782383261489907" ], - "mAssetSupply": "97091945897820563744343687" + "mAssetSupply": "2267828138368613308403525633" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1413801818439380", - "3326290319676478", - "3698311421651675" + "521350028673396047872", + "1358158160371773341696", + "53915887444209016832" ], - "expectedQty": "8691210814685894", - "swapFee": "5217857203133", + "expectedQty": "1936938357954679251705", "reserves": [ - "41605673149875565904690079", - "5944965787172250327105580", - "50010704495955490110220549" + "1037656445427135814466167759", + "527811964401270540424732440", + "703128698845669827470506739" ], - "mAssetSupply": "97091945889129352929657793" + "mAssetSupply": "2267830075306971263082777338" }, { - "type": "redeemBassets", - "inputQtys": [ - "2809757378234828118294528", - "710013945868971866587136", - "1407412497670245019811840" - ], - "expectedQty": "4953021175411143141779808", - "swapFee": "2973596863364704707892", + "type": "mint", + "inputIndex": 0, + "inputQty": "715722021460231160070144", + "expectedQty": "713681861864974019292509", "reserves": [ - "38795915771640737786395551", - "5234951841303278460518444", - "48603291998285245090408709" - ], - "mAssetSupply": "92138924713718209787877985" + "1038372167448596045626237903", + "527811964401270540424732440", + "703128698845669827470506739" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "443916353976950848", - "expectedQty": "448207036623021188", - "swapFee": "266349812386170", + "inputQty": "342745856353312339656704", + "outputIndex": 1, + "expectedQty": "340311635707680589142862", + "swapFee": "205060717532104404907", "reserves": [ - "38795915323433701163374363", - "5234951841303278460518444", - "48603291998285245090408709" + "1038714913304949357965894607", + "527471652765562859835589578", + "703128698845669827470506739" ], - "mAssetSupply": "92138924270068205623313307" + "mAssetSupply": "2268543962229553769206474754", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "162525309671300722065408", - "expectedQty": "160868077330321552650681", + "type": "mintMulti", + "inputQtys": [ + "3828482412433264317825024", + "2880828492721877753528320", + "4194123461008964674650112" + ], + "expectedQty": "10904606658342646135530340", "reserves": [ - "38958440633105001885439771", - "5234951841303278460518444", - "48603291998285245090408709" - ] + "1042543395717382622283719631", + "530352481258284737589117898", + "707322822306678792145156851" + ], + "mAssetSupply": "2279448568887896415342005094" }, { "type": "mintMulti", "inputQtys": [ - "8138001658483110943129600", - "3291258374067376231546880", - "1272055349125327613853696" + "1649165619495245363281920", + "835621150911664291315712", + "3244750652031020333793280" ], - "expectedQty": "12862067704110109093375426", + "expectedQty": "5729034780383754622875604", "reserves": [ - "47096442291588112828569371", - "8526210215370654692065324", - "49875347347410572704262405" + "1044192561336877867647001551", + "531188102409196401880433610", + "710567572958709812478950131" ], - "mAssetSupply": "105161860051508636269339414" + "mAssetSupply": "2285177603668280169964880698" }, { "type": "redeemMasset", - "inputQty": "191009043318815052739379", + "inputQty": "67581310513218302299340", "expectedQtys": [ - "85517198226765883070353", - "15481798064418968817772", - "90563103245255502543845" + "30871443532239330979629", + "15704520522084397669988", + "21007855750619620941488" ], - "redemptionFee": "57302712995644515821", + "redemptionFee": "20274393153965490689", "reserves": [ - "47010925093361346945499018", - "8510728417306235723247552", - "49784784244165317201718560" + "1044161689893345628316021922", + "531172397888674317482763622", + "710546565102959192858008643" ], - "mAssetSupply": "104970908310902816861115856" + "mAssetSupply": "2285110042632160105628072047" }, { - "type": "redeemMasset", - "inputQty": "42865996472237737115648", - "expectedQtys": [ - "19191656341556628201204", - "3474404612904050067348", - "20324051661503852105014" + "type": "mintMulti", + "inputQtys": [ + "2071678983273908011008", + "1372198172563648282624", + "3576818519827426050048" ], - "redemptionFee": "12859798941671321134", + "expectedQty": "7021059298242007378433", "reserves": [ - "46991733437019790317297814", - "8507254012693331673180204", - "49764460192503813349613546" + "1044163761572328902224032930", + "531173770086846881131046246", + "710550141921479020284058691" ], - "mAssetSupply": "104928055174229520795321342" + "mAssetSupply": "2285117063691458347635450480" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "12980404073149978", - "outputIndex": 2, - "expectedQty": "12982137815800221", - "swapFee": "7728909418278", + "inputIndex": 2, + "inputQty": "22248995094441369704333312", + "outputIndex": 1, + "expectedQty": "22151272513631365053593999", + "swapFee": "13352465936134828012630", "reserves": [ - "46991733450000194390447792", - "8507254012693331673180204", - "49764460179521675533813325" + "1044163761572328902224032930", + "509022497573215516077452247", + "732799137015920389988392003" ], - "mAssetSupply": "104928055174237249704739620", + "mAssetSupply": "2285130416157394482463463110", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "2514821564689022566", - "expectedQtys": [ - "1125917865327909522", - "203833069660338925", - "1192352157728766871" - ], - "redemptionFee": "754446469406706", + "type": "redeem", + "inputIndex": 0, + "inputQty": "22684555900460343296", + "expectedQty": "22736961105816120749", + "swapFee": "13610733540276205", "reserves": [ - "46991732324082329062538270", - "8507253808860262012841279", - "49764458987169517805046454" + "1044163738835367796407912181", + "509022497573215516077452247", + "732799137015920389988392003" ], - "mAssetSupply": "104928052660170131485123760" + "mAssetSupply": "2285130393486449315543396019" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8833318868784465838080", - "6733625066555417034752", - "2621410888753611800576" + "5594609633703650304", + "9427234782950648", + "9607491523943110656" + ], + "expectedQty": "15195314585340443277", + "reserves": [ + "1044163744429977430111562485", + "509022497582642750860402895", + "732799146623411913931502659" + ], + "mAssetSupply": "2285130408681763900883839296" + }, + { + "type": "redeemMasset", + "inputQty": "2598179452377215113625", + "expectedQtys": [ + "1186851699122092268234", + "578581874126586706820", + "832938240697113315036" ], - "expectedQty": "18446022000460268068349", - "swapFee": "11074257754929118311", + "redemptionFee": "779453835713164534", "reserves": [ - "46982899005213544596700190", - "8500520183793706595806527", - "49761837576280764193245878" + "1044162557578278308019294251", + "509021919000768624273696075", + "732798313685171216818187623" ], - "mAssetSupply": "104909606638169671217055411" + "mAssetSupply": "2285127811281765359381890205" }, { "type": "mintMulti", "inputQtys": [ - "55602416179990704", - "71989958823038160", - "202819736180495168" + "76523968492321239990272", + "101123654108331317919744", + "116579235218252674105344" ], - "expectedQty": "332004964030587048", + "expectedQty": "294437096736640115157280", "reserves": [ - "46982899060815960776690894", - "8500520255783665418844687", - "49761837779100500373741046" + "1044239081546770629259284523", + "509123042654876955591615819", + "732914892920389469492292967" ], - "mAssetSupply": "104909606970174635247642459" + "mAssetSupply": "2285422248378501999497047485" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "116661683788107451727872", - "expectedQty": "115685683396945546973766", + "type": "redeemMasset", + "inputQty": "512281046332681958614630", + "expectedQtys": [ + "233997637210756253953493", + "114086506755068601303455", + "164234758352380435480875" + ], + "redemptionFee": "153684313899804587584", "reserves": [ - "46982899060815960776690894", - "8500520255783665418844687", - "49878499462888607825468918" - ] + "1044005083909559873005331030", + "509008956148121886990312364", + "732750658162037089056812092" + ], + "mAssetSupply": "2284910121016483217343020439" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "238257168609114738130944", - "outputIndex": 0, - "expectedQty": "237916721650520463293070", - "swapFee": "141752726920108158449", + "inputQty": "944259567738122546446336", + "expectedQty": "943690237547560487376360", + "swapFee": "566555740642873527867", "reserves": [ - "46744982339165440313397824", - "8500520255783665418844687", - "50116756631497722563599862" + "1044005083909559873005331030", + "509008956148121886990312364", + "731806967924489528569435732" ], - "mAssetSupply": "105025434406298500902774674", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2283966428004485737670101970" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "44775372941196624", - "325347093439235968", - "131372865548700192" + "1739603683393874555830272", + "3808331781170236198223872", + "5533573188713185414217728" ], - "expectedQty": "516864824209480723", - "swapFee": "310305077572231", + "expectedQty": "11092656044351016910039381", "reserves": [ - "46744982294390067372201200", - "8500519930436571979608719", - "50116756500124857014899670" + "1045744687592953747561161302", + "512817287929292123188536236", + "737340541113202713983653460" ], - "mAssetSupply": "105025433889433676693293951" + "mAssetSupply": "2295059084048836754580141351" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "500695767688018063785984", - "expectedQty": "504626795061968066806937", - "swapFee": "300417460612810838271", + "inputIndex": 1, + "inputQty": "43761260711303356416", + "expectedQty": "43550717399501907258", + "swapFee": "26256756426782013", "reserves": [ - "46744982294390067372201200", - "8500519930436571979608719", - "49612129705062888948092733" + "1045744687592953747561161302", + "512817244378574723686628978", + "737340541113202713983653460" ], - "mAssetSupply": "104525038539206271440346238" + "mAssetSupply": "2295059040313832799703566948" }, { - "type": "redeemBassets", - "inputQtys": [ - "22739942982497704345600", - "62174015769589531541504", - "63031767518516692910080" + "type": "redeemMasset", + "inputQty": "6010720348401439539", + "expectedQtys": [ + "2737965803453372476", + "1342656668676525152", + "1930502933478499748" ], - "expectedQty": "150446130189195718609997", - "swapFee": "90321871236259186678", + "redemptionFee": "1803216104520431", "reserves": [ - "46722242351407569667855600", - "8438345914666982448067215", - "49549097937544372255182653" + "1045744684854987944107788826", + "512817243035918055010103826", + "737340539182699780505153712" ], - "mAssetSupply": "104374592409017075721736241" + "mAssetSupply": "2295059034304915667406647840" }, { "type": "redeemMasset", - "inputQty": "8106461540966403879731", + "inputQty": "1657935758238752", "expectedQtys": [ - "3627687796158207847020", - "655184403697111178505", - "3847175324907375261085" + "755212544797145", + "370344712947516", + "532490227340226" ], - "redemptionFee": "2431938462289921163", + "redemptionFee": "497380727471", "reserves": [ - "46718614663611411460008580", - "8437690730263285336888710", - "49545250762219464879921568" + "1045744684854232731562991681", + "512817243035547710297156310", + "737340539182167290277813486" ], - "mAssetSupply": "104366488379414571607777673" + "mAssetSupply": "2295059034303258229029136559" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "142780025348452108992512", - "expectedQty": "143790002321966991293886", - "swapFee": "85668015209071265395", + "inputQty": "5201703885572807", + "expectedQty": "5213557991610946", + "swapFee": "3121022331343", "reserves": [ - "46574824661289444468714694", - "8437690730263285336888710", - "49545250762219464879921568" + "1045744684849019173571380735", + "512817243035547710297156310", + "737340539182167290277813486" ], - "mAssetSupply": "104223794022081328570050556" + "mAssetSupply": "2295059034298059646165895095" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "665388297382225590091776", + "expectedQty": "665377598178658812411201", + "reserves": [ + "1045744684849019173571380735", + "512817243035547710297156310", + "738005927479549515867905262" + ] }, { "type": "redeemMasset", - "inputQty": "23863519240841453581107", + "inputQty": "17207351651439375233843", "expectedQtys": [ - "10660769002908881841489", - "1931349660411841717284", - "11340686248599475403973" + "7835913617350530896730", + "3842612519225537177870", + "5529983351201380360319" ], - "redemptionFee": "7159055772252436074", + "redemptionFee": "5162205495431812570", "reserves": [ - "46564163892286535586873205", - "8435759380602873495171426", - "49533910075970865404517595" + "1045736848935401823040484005", + "512813400423028484759978440", + "738000397496198314487544943" ], - "mAssetSupply": "104199937661896259368905523" + "mAssetSupply": "2295707209706792361034885023" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "17202116444797708271616", - "expectedQty": "17057769983552062062997", + "type": "mintMulti", + "inputQtys": [ + "3107363543509569219067904", + "244332128940234150772736", + "3627088820966323164020736" + ], + "expectedQty": "6970793771867067272122678", "reserves": [ - "46564163892286535586873205", - "8435759380602873495171426", - "49551112192415663112789211" - ] + "1048844212478911392259551909", + "513057732551968718910751176", + "741627486317164637651565679" + ], + "mAssetSupply": "2302678003478659428307007701" }, { "type": "redeemMasset", - "inputQty": "15974646907201936", + "inputQty": "54766697814057024697139", "expectedQtys": [ - "7135332579909260", - "1292666800244248", - "7593042280650745" + "24938137868990893699122", + "12198860723932449644115", + "17633513424742738483287" ], - "redemptionFee": "4792394072160", + "redemptionFee": "16430009344217107409", "reserves": [ - "46564163885151203006963945", - "8435759379310206694927178", - "49551112184822620832138466" + "1048819274341042401365852787", + "513045533691244786461107061", + "741609852803739894913082392" ], - "mAssetSupply": "104216995415909956917838744" + "mAssetSupply": "2302623253210854715499417971" }, { "type": "redeemMasset", - "inputQty": "3086346376346877086924", + "inputQty": "45969755535800736", "expectedQtys": [ - "1378566173009083326095", - "249746834339048270107", - "1466996964907552396019" + "20932430603134855", + "10239409489292235", + "14801116987641792" ], - "redemptionFee": "925903912904063126", + "redemptionFee": "13790926660740", "reserves": [ - "46562785318978193923637850", - "8435509632475867646657071", - "49549645187857713279742447" + "1048819274320109970762717932", + "513045533681005376971814826", + "741609852788938777925440600" ], - "mAssetSupply": "104213909995437522944814946" + "mAssetSupply": "2302623253164898750890277975" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "31401738121711370371072", - "expectedQty": "31162889214835594133787", + "type": "mintMulti", + "inputQtys": [ + "49895550475604408139776", + "23559135193574164922368", + "63356556145193801220096" + ], + "expectedQty": "136766010605654403000893", "reserves": [ - "46594187057099905294008922", - "8435509632475867646657071", - "49549645187857713279742447" - ] + "1048869169870585575170857708", + "513069092816198951136737194", + "741673209345083971726660696" + ], + "mAssetSupply": "2302760019175504405293278868" }, { - "type": "redeemMasset", - "inputQty": "287571238150588334080", - "expectedQtys": [ - "128496512569311722016", - "23263278919098951304", - "136647015600550409570" + "type": "swap", + "inputIndex": 1, + "inputQty": "12122628211495895040", + "outputIndex": 0, + "expectedQty": "12202184598240492893", + "swapFee": "7304653279697181", + "reserves": [ + "1048869157668400976930364815", + "513069104938827162632632234", + "741673209345083971726660696" ], - "redemptionFee": "86271371445176500", + "mAssetSupply": "2302760019182809058572976049", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "80287378704252512", + "expectedQty": "79897842811408842", + "swapFee": "48172427222551", "reserves": [ - "46594058560587335982286906", - "8435486369196948547705767", - "49549508540842112729332877" + "1048869157668400976930364815", + "513069104858929319821223392", + "741673209345083971726660696" ], - "mAssetSupply": "104244785399685579395791153" + "mAssetSupply": "2302760019102569852295946088" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "415018420218478", - "767234094604324", - "140012577685317" + "2487148032006733921517568", + "1695274375509534029381632", + "1472982542082142896128000" ], - "expectedQty": "1357598150001469", + "expectedQty": "5655445956879352484854763", + "swapFee": "3395304756981800571255", "reserves": [ - "46594058561002354402505384", - "8435486369964182642310091", - "49549508540982125307018194" + "1046382009636394243008847247", + "511373830483419785791841760", + "740200226803001828830532696" ], - "mAssetSupply": "104244785401043177545792622" + "mAssetSupply": "2297104573145690499811091325" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "24308673006505504768", - "expectedQty": "24123688262759532790", + "inputQty": "8381265285117260800", + "expectedQty": "8400396641359956965", + "swapFee": "5028759171070356", "reserves": [ - "46594082869675360908010152", - "8435486369964182642310091", - "49549508540982125307018194" - ] + "1046382001235997601648890282", + "511373830483419785791841760", + "740200226803001828830532696" + ], + "mAssetSupply": "2297104564769453973864900881" }, { "type": "mintMulti", "inputQtys": [ - "318565118955633680318464", - "110774308748418806185984", - "402228867052325576900608" + "494408568610676277248", + "77799732927736004608", + "352900631309724155904" ], - "expectedQty": "831482062950189816747405", + "expectedQty": "924004518606203792475", "reserves": [ - "46912647988630994588328616", - "8546260678712601448496075", - "49951737408034450883918802" + "1046382495644566212325167530", + "511373908283152713527846368", + "740200579703633138554688600" ], - "mAssetSupply": "105076291587681630122072817" + "mAssetSupply": "2297105488773972580068693356" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "449129436322046612078592", - "expectedQty": "425953635721768934751022", - "swapFee": "269477661793227967247", + "inputIndex": 0, + "inputQty": "39048335047651093129461760", + "expectedQty": "39133219336379916998620674", + "swapFee": "23429001028590655877677", "reserves": [ - "46912647988630994588328616", - "8120307042990832513745053", - "49951737408034450883918802" + "1007249276308186295326546856", + "511373908283152713527846368", + "740200579703633138554688600" ], - "mAssetSupply": "104627431629021376737961472" + "mAssetSupply": "2258080582727350077595109273" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1269055575368060721168384", - "expectedQty": "1189698571964280236185560", - "swapFee": "761433345220836432701", + "type": "redeemMasset", + "inputQty": "11749763481489006972108", + "expectedQtys": [ + "5239578415311882496258", + "2660099892863342108578", + "3850426177154035815275" + ], + "redemptionFee": "3524929044446702091", "reserves": [ - "46912647988630994588328616", - "6930608471026552277559493", - "49951737408034450883918802" + "1007244036729770983444050598", + "511371248183259850185737790", + "740196729277455984518873325" ], - "mAssetSupply": "103359137486998536853225789" + "mAssetSupply": "2258068836488797633034839256" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "662254122694838105145344", - "expectedQty": "655871836193385127342222", + "type": "redeemMasset", + "inputQty": "145226091768961095329382", + "expectedQtys": [ + "64760750033099559019146", + "32878611706881679022665", + "47590944807862533107580" + ], + "redemptionFee": "43567827530688328598", "reserves": [ - "47574902111325832693473960", - "6930608471026552277559493", - "49951737408034450883918802" - ] + "1007179275979737883885031452", + "511338369571552968506715125", + "740149138332648121985765745" + ], + "mAssetSupply": "2257923653964856202627838472" }, { "type": "mintMulti", "inputQtys": [ - "919018096041843621888", - "836321822930734678016", - "693078191715112452096" + "5832336111448795857813504", + "18044116495112167187546112", + "16386779657019202866249728" ], - "expectedQty": "2497622210606287379737", + "expectedQty": "40315770647913526702720262", "reserves": [ - "47575821129421874537095848", - "6931444792849483012237509", - "49952430486226165996370898" + "1013011612091186679742844956", + "529382486066665135694261237", + "756535917989667324852015473" ], - "mAssetSupply": "104017506945402528267947748" + "mAssetSupply": "2298239424612769729330558734" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "229769818939305341485056", - "expectedQty": "227364897290609605693877", + "type": "swap", + "inputIndex": 1, + "inputQty": "8063425280498554711834624", + "outputIndex": 2, + "expectedQty": "8089348649565161707283943", + "swapFee": "4856021899234640981302", "reserves": [ - "47575821129421874537095848", - "6931444792849483012237509", - "50182200305165471337855954" - ] + "1013011612091186679742844956", + "537445911347163690406095861", + "748446569340102163144731530" + ], + "mAssetSupply": "2298244280634668963971540036", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "153492709525124989059072", + "outputIndex": 2, + "expectedQty": "153026848806521888965354", + "swapFee": "91864923383419764667", + "reserves": [ + "1013165104800711804731904028", + "537445911347163690406095861", + "748293542491295641255766176" + ], + "mAssetSupply": "2298244372499592347391304703", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "187764614492531424493568", - "82678273443813889409024", - "112943782058725881151488" + "425248960498142841667584", + "192099139653489114742784", + "329202547377232066641920" ], - "expectedQty": "386912803150005529181488", - "swapFee": "232287054122476803591", + "expectedQty": "946152332964313913779036", + "swapFee": "568032219110054380895", "reserves": [ - "47388056514929343112602280", - "6848766519405669122828485", - "50069256523106745456704466" + "1012739855840213661890236444", + "537253812207510201291353077", + "747964339943918409189124256" ], - "mAssetSupply": "103857959039543132344460137" + "mAssetSupply": "2297298220166628033477525667" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "94759832814243417161728", - "outputIndex": 0, - "expectedQty": "94622604217170837263129", - "swapFee": "56252016456658102206", + "type": "redeem", + "inputIndex": 0, + "inputQty": "233411848568113299456", + "expectedQty": "233857798212550953146", + "swapFee": "140047109140867979", "reserves": [ - "47293433910712172275339151", - "6848766519405669122828485", - "50164016355920988873866194" + "1012739621982415449339283298", + "537253812207510201291353077", + "747964339943918409189124256" ], - "mAssetSupply": "103858015291559589002562343", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2297297986894826574505094190" }, { "type": "mint", "inputIndex": 2, - "inputQty": "959965297221370942324736", - "expectedQty": "949633235878369989221143", + "inputQty": "9063886234758965886976", + "expectedQty": "9063272100155035667675", "reserves": [ - "47293433910712172275339151", - "6848766519405669122828485", - "51123981653142359816190930" + "1012739621982415449339283298", + "537253812207510201291353077", + "747973403830153168155011232" ] }, + { + "type": "mintMulti", + "inputQtys": [ + "37635130754745", + "7298550928317", + "55495616563178" + ], + "expectedQty": "100357431455670", + "reserves": [ + "1012739621982453084470038043", + "537253812207517499842281394", + "747973403830208663771574410" + ], + "mAssetSupply": "2297307050167027086972217535" + }, { "type": "redeemMasset", - "inputQty": "1744779113478574047232", + "inputQty": "1977048846048065523338444", "expectedQtys": [ - "787078442006896683930", - "113980230150761683975", - "850828127742067835552" + "871296255383770584137365", + "462218742711713517845533", + "643508372476025473183787" ], - "redemptionFee": "523433734043572214", + "redemptionFee": "593114653814419657001", "reserves": [ - "47292646832270165378655221", - "6848652539175518361144510", - "51123130825014617748355378" + "1011868325727069313885900678", + "536791593464805786324435861", + "747329895457732638298390623" ], - "mAssetSupply": "104805904271758214461308468" + "mAssetSupply": "2295330594435632835868536092" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "15732111329087379734528", - "expectedQty": "15877132088179894389713", - "swapFee": "9439266797452427840", + "type": "mint", + "inputIndex": 2, + "inputQty": "2158998148911332851712", + "expectedQty": "2158851762551115383651", "reserves": [ - "47276769700181985484265508", - "6848652539175518361144510", - "51123130825014617748355378" - ], - "mAssetSupply": "104790181599695924534001780" + "1011868325727069313885900678", + "536791593464805786324435861", + "747332054455881549631242335" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "5410495994316753731584", - "182417261500329162178560", - "160581391972917346304" - ], - "expectedQty": "203196255126043387660222", - "swapFee": "121990947644212560132", + "type": "redeem", + "inputIndex": 1, + "inputQty": "67968232478371528", + "expectedQty": "67684481761043797", + "swapFee": "40780939487022", "reserves": [ - "47271359204187668730533924", - "6666235277675189198965950", - "51122970243622644831009074" + "1011868325727069313885900678", + "536791593397121304563392064", + "747332054455881549631242335" ], - "mAssetSupply": "104586985344569881146341558" + "mAssetSupply": "2295332753219467935445035237" }, { - "type": "redeemMasset", - "inputQty": "2293517920391166689280", - "expectedQtys": [ - "1036316170564933896230", - "146141924652617707577", - "1120753911939192534820" + "type": "redeemBassets", + "inputQtys": [ + "3765707654711097277022208", + "4330150261884583122305024", + "646983256573462569811968" ], - "redemptionFee": "688055376117350006", + "expectedQty": "8749004663770673497588332", + "swapFee": "5252554330860920650943", "reserves": [ - "47270322888017103796637694", - "6666089135750536581258373", - "51121849489710705638474254" + "1008102618072358216608878470", + "532461443135236721441087040", + "746685071199308087061430367" ], - "mAssetSupply": "104584692514704866097002284" + "mAssetSupply": "2286583748555697261947446905" }, { "type": "redeemBassets", "inputQtys": [ - "1524887169768136114176", - "49655649779989511929856", - "54993583323501865992192" + "8791558960000292381261824", + "6657971001218154614489088", + "7005559082358643542196224" ], - "expectedQty": "109835103108885135820029", - "swapFee": "65940626241075726928", + "expectedQty": "22456617951605928169501965", + "swapFee": "13482060006967737544227", "reserves": [ - "47268798000847335660523518", - "6616433485970547069328517", - "51066855906387203772482062" + "999311059112357924227616646", + "525803472134018566826597952", + "739679512116949443519234143" ], - "mAssetSupply": "104474857411595980961182255" + "mAssetSupply": "2264127130604091333777944940" }, { "type": "mintMulti", "inputQtys": [ - "57685050053402113867776", - "149353807604010113302528", - "359906994128913023631360" + "78503860119202487599104", + "589694949985223570358272", + "529926081748380818604032" ], - "expectedQty": "575119456801022353827742", + "expectedQty": "1200039677136925088065854", "reserves": [ - "47326483050900737774391294", - "6765787293574557182631045", - "51426762900516116796113422" + "999389562972477126715215750", + "526393167084003790396956224", + "740209438198697824337838175" ], - "mAssetSupply": "105049976868397003315009997" + "mAssetSupply": "2265327170281228258866010794" }, { "type": "mintMulti", "inputQtys": [ - "126116610915116810240", - "128443456292053172224", - "60416451925249368064" + "658551645513814326116352", + "490237658547706577027072", + "340266227058008794333184" ], - "expectedQty": "323859124032119818497", + "expectedQty": "1489159580508290443337417", "reserves": [ - "47326609167511652891201534", - "6765915737030849235803269", - "51426823316968042045481486" + "1000048114617990941041332102", + "526883404742551496973983296", + "740549704425755833132171359" ], - "mAssetSupply": "105050300727521035434828494" + "mAssetSupply": "2266816329861736549309348211" }, { "type": "redeemBassets", "inputQtys": [ - "267105636936693383168", - "351740256948326236160", - "81320131612740780032" + "84649960378759", + "1448390401013607", + "3383676554083396" ], - "expectedQty": "726197757874521460897", - "swapFee": "435980242870435137", + "expectedQty": "4921465650264239", + "swapFee": "2954652181467", "reserves": [ - "47326342061874716197818366", - "6765563996773900909567109", - "51426741996836429304701454" + "1000048114617906291080953343", + "526883404741103106572969689", + "740549704422372156578087963" ], - "mAssetSupply": "105049574529763160913367597" + "mAssetSupply": "2266816329856815083659083972" }, { - "type": "redeemBassets", - "inputQtys": [ - "692553673018461782016", - "95060963985287938048", - "249106299643648638976" - ], - "expectedQty": "1035117576248182686013", - "swapFee": "621443411795987203", + "type": "redeem", + "inputIndex": 0, + "inputQty": "82014447779104713342976", + "expectedQty": "82172406424908702314351", + "swapFee": "49208668667462828005", "reserves": [ - "47325649508201697736036350", - "6765468935809915621629061", - "51426492890536785656062478" + "999965942211481382378638992", + "526883404741103106572969689", + "740549704422372156578087963" ], - "mAssetSupply": "105048539412186912730681584" + "mAssetSupply": "2266734364617704646408569001" }, { "type": "redeemMasset", - "inputQty": "33723230355792386536243", + "inputQty": "1155505274750260620977766", "expectedQtys": [ - "15188169172997096009474", - "2171234579969786143885", - "16504248375081302851277" + "509596227529094925569184", + "268506940156335016318161", + "377394188882900285174974" ], - "redemptionFee": "10116969106737715960", + "redemptionFee": "346651582425078186293", "reserves": [ - "47310461339028700640026876", - "6763297701229945835485176", - "51409988642161704353211201" + "999456345983952287453069808", + "526614897800946771556651528", + "740172310233489256292912989" ], - "mAssetSupply": "105014826298800227081861301" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "14213506486219560960", - "expectedQty": "14055620671627447348", - "reserves": [ - "47310461339028700640026876", - "6763297701229945835485176", - "51410002855668190572772161" - ] + "mAssetSupply": "2265579205994536810865777528" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1945122759419839834488832", - "outputIndex": 0, - "expectedQty": "1940324588252030075393844", - "swapFee": "1153811034071501899054", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1900037655471395665084416", + "expectedQty": "1891917668116599170986242", + "swapFee": "1140022593282837399050", "reserves": [ - "45370136750776670564633032", - "6763297701229945835485176", - "53355125615088030407260993" + "999456345983952287453069808", + "524722980132830172385665286", + "740172310233489256292912989" ], - "mAssetSupply": "105015994165454970211207703", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2263680308361658698038092162" }, { - "type": "mintMulti", - "inputQtys": [ - "6575036793560109154304", - "4798671600825711722496", - "7576257520646654787584" + "type": "redeemMasset", + "inputQty": "127113317649003141136384", + "expectedQtys": [ + "56106022679366732315214", + "29456133368920719743695", + "41550713636937786787966" ], - "expectedQty": "19205590504579950179644", + "redemptionFee": "38133995294700942340", "reserves": [ - "45376711787570230673787336", - "6768096372830771547207672", - "53362701872608677062048577" + "999400239961272920720754594", + "524693523999461251665921591", + "740130759519852318506125023" ], - "mAssetSupply": "105035199755959550161387347" + "mAssetSupply": "2263553233178004989597898118" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "21374799856418283180785664", - "expectedQty": "21482351509726233208150205", - "swapFee": "12824879913850969908471", + "inputQty": "22308516952302", + "expectedQty": "22351734731013", + "swapFee": "13385110171", "reserves": [ - "23894360277843997465637131", - "6768096372830771547207672", - "53362701872608677062048577" + "999400239961250568986023581", + "524693523999461251665921591", + "740130759519852318506125023" ], - "mAssetSupply": "83673224779455117950510154" + "mAssetSupply": "2263553233177982694466055987" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "15526424732309527724032", - "expectedQty": "15527651805957864412386", - "swapFee": "9315854839385716634", + "type": "redeemMasset", + "inputQty": "1895673879315233741209", + "expectedQtys": [ + "836723670128960578002", + "439286957856593266692", + "619656570729658119637" + ], + "redemptionFee": "568702163794570122", "reserves": [ - "23878832626038039601224745", - "6768096372830771547207672", - "53362701872608677062048577" + "999399403237580440025445579", + "524693084712503395072654899", + "740130139863281588848005386" ], - "mAssetSupply": "83657707670577647808502756" + "mAssetSupply": "2263551338072805543026884900" }, { "type": "mintMulti", "inputQtys": [ - "1525708980220559865413632", - "1010408991563105125269504", - "781578175476885895512064" + "217182354602298336", + "51398512415023568", + "755157550739625728" ], - "expectedQty": "3360014322032517881593514", + "expectedQty": "1023291283228088891", "reserves": [ - "25404541606258599466638377", - "7778505364393876672477176", - "54144280048085562957560641" + "999399403454762794627743915", + "524693084763901907487678467", + "740130140618439139587631114" ], - "mAssetSupply": "87017721992610165690096270" + "mAssetSupply": "2263551339096096826254973791" }, { - "type": "redeemMasset", - "inputQty": "285554637197883893350", - "expectedQtys": [ - "83341739821356578751", - "25518042416425010796", - "177624873950511750843" - ], - "redemptionFee": "85666391159365168", + "type": "mint", + "inputIndex": 0, + "inputQty": "3273672254250716852387840", + "expectedQty": "3265352374046898288081003", "reserves": [ - "25404458264518778110059626", - "7778479846351460247466380", - "54144102423211612445809798" - ], - "mAssetSupply": "87017436523639358965568088" + "1002673075709013511480131755", + "524693084763901907487678467", + "740130140618439139587631114" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1906133810529404006170624", - "expectedQty": "1795033204641389894212650", - "swapFee": "1143680286317642403702", + "type": "mint", + "inputIndex": 2, + "inputQty": "91436321067892375552", + "expectedQty": "91426651495209729992", "reserves": [ - "25404458264518778110059626", - "5983446641710070353253730", - "54144102423211612445809798" - ], - "mAssetSupply": "85112446393396272601801166" + "1002673075709013511480131755", + "524693084763901907487678467", + "740130232054760207480006666" + ] }, { "type": "redeemBassets", "inputQtys": [ - "129666456375661187563520", - "571460121485110442721280", - "890922740796298543235072" + "33219059255024062464", + "6830063136228755456", + "45107784701469073408" ], - "expectedQty": "1626692931815886731799334", - "swapFee": "976601720121605002080", + "expectedQty": "85092872545029184419", + "swapFee": "51086375352228847", "reserves": [ - "25274791808143116922496106", - "5411986520224959910532450", - "53253179682415313902574726" + "1002673042489954256456069291", + "524693077933838771258923011", + "740130186946975506010933258" ], - "mAssetSupply": "83485753461580385870001832" + "mAssetSupply": "2266816697803922674723600367" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "801590094382582063955968", - "expectedQty": "788067899033059789487017", + "inputIndex": 0, + "inputQty": "2775570467909466251591680", + "expectedQty": "2768469960184952644963511", "reserves": [ - "25274791808143116922496106", - "5411986520224959910532450", - "54054769776797895966530694" + "1005448612957863722707660971", + "524693077933838771258923011", + "740130186946975506010933258" ] }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "5343680556048882396561408", + "expectedQty": "5354133118586682777977607", + "swapFee": "3206208333629329437936", + "reserves": [ + "1000094479839277039929683364", + "524693077933838771258923011", + "740130186946975506010933258" + ], + "mAssetSupply": "2264244693416392374301440406" + }, { "type": "redeemBassets", "inputQtys": [ - "134721723299314626723840", - "96240493290238437752832", - "88924278861376117538816" + "1282224421230255276032", + "1397234084848715169792", + "1986993382128818323456" ], - "expectedQty": "327398516283678098196852", - "swapFee": "196557043996604821811", + "expectedQty": "4668160244326497455206", + "swapFee": "2802577693211825568", "reserves": [ - "25140070084843802295772266", - "5315746026934721472779618", - "53965845497936519848991878" + "1000093197614855809674407332", + "524691680699753922543753219", + "740128199953593377192609802" ], - "mAssetSupply": "83946422844329767561291997" + "mAssetSupply": "2264240025256148047803985200" }, { "type": "redeemMasset", - "inputQty": "1534052569478327802265", + "inputQty": "24643525076023308", "expectedQtys": [ - "459276499789424033715", - "97111790889237088979", - "985886059379421381412" + "10881544258743774", + "5708923687657944", + "8052987245735621" ], - "redemptionFee": "460215770843498340", + "redemptionFee": "7393057522806", "reserves": [ - "25139610808344012871738551", - "5315648915143832235690639", - "53964859611877140427610466" + "1000093197603974265415663558", + "524691680694044998856095275", + "740128199945540389946874181" ], - "mAssetSupply": "83944889251976060076988072" + "mAssetSupply": "2264240025231511915785484698" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "20980567067467505664", - "expectedQty": "20923603869285828488", + "inputIndex": 1, + "inputQty": "145498327725382567985152", + "expectedQty": "146038238891479371299749", "reserves": [ - "25139631788911080339244215", - "5315648915143832235690639", - "53964859611877140427610466" + "1000093197603974265415663558", + "524837179021770381424080427", + "740128199945540389946874181" ] }, + { + "type": "redeemMasset", + "inputQty": "10375311782828336532684", + "expectedQtys": [ + "4581005872076396580244", + "2404058146523670279239", + "3390215670062448041081" + ], + "redemptionFee": "3112593534848500959", + "reserves": [ + "1000088616598102189019083314", + "524834774963623857753801188", + "740124809729870327498833100" + ], + "mAssetSupply": "2264375691271214101668752722" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1153804597409257357312", + "expectedQty": "1148850827874006994941", + "swapFee": "692282758445554414", + "reserves": [ + "1000088616598102189019083314", + "524833626112795983746806247", + "740124809729870327498833100" + ], + "mAssetSupply": "2264374538158899450856949824" + }, + { + "type": "redeemMasset", + "inputQty": "437279877300571241394995", + "expectedQtys": [ + "193072049080234977991401", + "101321724833238872427405", + "142884751629055055384493" + ], + "redemptionFee": "131183963190171372418", + "reserves": [ + "999895544549021954041091913", + "524732304387962744874378842", + "739981924978241272443448607" + ], + "mAssetSupply": "2263937389465562069786927247" + }, { "type": "swap", - "inputIndex": 0, - "inputQty": "1765668108491444623245312", - "outputIndex": 2, - "expectedQty": "1788382609465869772733742", - "swapFee": "1055863000443794867309", + "inputIndex": 2, + "inputQty": "2085647455725937229824", + "outputIndex": 0, + "expectedQty": "2089457745794576503696", + "swapFee": "1251246897174009692", "reserves": [ - "26905299897402524962489527", - "5315648915143832235690639", - "52176477002411270654876724" + "999893455091276159464588217", + "524732304387962744874378842", + "739984010625696998380678431" ], - "mAssetSupply": "83945966038580373157683869", + "mAssetSupply": "2263937390716808966960936939", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "9199593008464190", + "inputQty": "100700275623960374266560512", "outputIndex": 2, - "expectedQty": "9305920014425255", - "swapFee": "5496178854204", + "expectedQty": "100284893989274541618658324", + "swapFee": "60250322228725106895532", "reserves": [ - "26905299906602117970953717", - "5315648915143832235690639", - "52176476993105350640451469" + "1100593730715236533731148729", + "524732304387962744874378842", + "639699116636422456762020107" ], - "mAssetSupply": "83945966038585869336538073", + "mAssetSupply": "2263997641039037692067832471", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2262999862166414592", - "expectedQty": "2298974934293862792", - "swapFee": "1357799917299848", - "reserves": [ - "26905299906602117970953717", - "5315648915143832235690639", - "52176474694130416346588677" - ], - "mAssetSupply": "83945963776943807087423329" - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "965865046241567118983168", - "293586508366860706119680", - "653789267506976994099200" + "2605003942587371008", + "53375184369080893440", + "34997182363664322560" ], - "expectedQty": "1927597025244419920866834", - "swapFee": "1157252566686663950890", + "expectedQty": "91213473947950865395", "reserves": [ - "25939434860360550851970549", - "5022062406776971529570959", - "51522685426623439352489477" + "1100593733320240476318519737", + "524732357763147113955272282", + "639699151633604820426342667" ], - "mAssetSupply": "82018366751699387166556495" + "mAssetSupply": "2263997732252511640018697866" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "45210045210697018638336", - "expectedQty": "45371893481374029709295", - "swapFee": "27126027126418211183", + "inputIndex": 2, + "inputQty": "22708189558220483723264", + "expectedQty": "22665649841927218516496", + "swapFee": "13624913734932290233", "reserves": [ - "25894062966879176822261254", - "5022062406776971529570959", - "51522685426623439352489477" + "1100593733320240476318519737", + "524732357763147113955272282", + "639676485983762893207826171" ], - "mAssetSupply": "81973183832515816566129342" + "mAssetSupply": "2263975037687867154467264835" }, { "type": "redeemMasset", - "inputQty": "49473283744966108774", + "inputQty": "23805233361732865228", "expectedQtys": [ - "15623158029212616724", - "3030056531259789079", - "31086162783304696615" - ], - "redemptionFee": "14841985123489832", - "reserves": [ - "25894047343721147609644530", - "5022059376720440269781880", - "51522654340460656047792862" + "11569045707191559230", + "5515797925443812074", + "6724049283686518103" ], - "mAssetSupply": "81973134374074056723510400" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1020389075109152322224128", - "expectedQty": "1023663163200672324023182", - "swapFee": "612233445065491393334", + "redemptionFee": "7141570008519859", "reserves": [ - "24870384180520475285621348", - "5022059376720440269781880", - "51522654340460656047792862" + "1100593721751194769126960507", + "524732352247349188511460208", + "639676479259713609521308068" ], - "mAssetSupply": "80953357532409969892679606" + "mAssetSupply": "2263975013889775362742919466" }, { "type": "mintMulti", "inputQtys": [ - "3676784519398923236802560", - "3899027750624839560331264", - "2696991028813052763963392" + "30979093498561489272832", + "15481416301490686918656", + "44080682134327986749440" ], - "expectedQty": "10468031787704506348153567", + "expectedQty": "90548205533058665968865", "reserves": [ - "28547168699919398522423908", - "8921087127345279830113144", - "54219645369273708811756254" + "1100624700844693330616233339", + "524747833663650679198378864", + "639720559941847937508057508" ], - "mAssetSupply": "91421389320114476240833173" + "mAssetSupply": "2264065562095308421408888331" }, { "type": "swap", "inputIndex": 2, - "inputQty": "640393222244119017947136", - "outputIndex": 0, - "expectedQty": "634389960235095998271601", - "swapFee": "380289312113900759452", + "inputQty": "33404348372817422170718208", + "outputIndex": 1, + "expectedQty": "33276363187253852601126221", + "swapFee": "20064194620536593894931", "reserves": [ - "27912778739684302524152307", - "8921087127345279830113144", - "54860038591517827829703390" + "1100624700844693330616233339", + "491471470476396826597252643", + "673124908314665359678775716" ], - "mAssetSupply": "91421769609426590141592625", + "mAssetSupply": "2264085626289928958002783262", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "186683011184549299224576", - "expectedQty": "179612522752638098118251", - "swapFee": "112009806710729579534", + "inputQty": "233382038464823033856", + "expectedQty": "232146580496062631113", + "swapFee": "140029223078893820", "reserves": [ - "27912778739684302524152307", - "8741474604592641731994893", - "54860038591517827829703390" + "1100624700844693330616233339", + "491471238329816330534621530", + "673124908314665359678775716" ], - "mAssetSupply": "91235198608048751571947583" + "mAssetSupply": "2264085393047919716258643226" }, { - "type": "mintMulti", - "inputQtys": [ - "18421256180176567402496", - "57192606496913581146112", - "16896422792863338725376" + "type": "redeemMasset", + "inputQty": "338977011767513867878", + "expectedQtys": [ + "164735193899244869819", + "73560596704787867438", + "100749476369670254132" ], - "expectedQty": "94551666589814372789790", + "redemptionFee": "101693103530254160", "reserves": [ - "27931199995864479091554803", - "8798667211089555313141005", - "54876935014310691168428766" + "1100624536109499431371363520", + "491471164769219625746754092", + "673124807565188990008521584" ], - "mAssetSupply": "91329750274638565944737373" + "mAssetSupply": "2264085054172601052275029508" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "480057474396353152", - "expectedQty": "461736623474540169", - "swapFee": "288034484637811", + "inputQty": "18001293395412444512256", + "expectedQty": "18086231976851993843277", + "reserves": [ + "1100624536109499431371363520", + "491489166062615038191266348", + "673124807565188990008521584" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "26443878721222389760", + "expectedQty": "26522343499751466034", + "swapFee": "15866327232733433", "reserves": [ - "27931199995864479091554803", - "8798666749352931838600836", - "54876935014310691168428766" + "1100624509587155931619897486", + "491489166062615038191266348", + "673124807565188990008521584" ], - "mAssetSupply": "91329749794869126033022032" + "mAssetSupply": "2264103113976565510279216458" }, { "type": "mint", "inputIndex": 1, - "inputQty": "9402996452073155854336", - "expectedQty": "9769832776942624071081", + "inputQty": "43440036521794374467584", + "expectedQty": "43644973535510123230024", "reserves": [ - "27931199995864479091554803", - "8808069745805004994455172", - "54876935014310691168428766" + "1100624509587155931619897486", + "491532606099136832565733932", + "673124807565188990008521584" ] }, { "type": "redeemBassets", "inputQtys": [ - "373590706215640258052096", - "753389472552243983024128", - "489899220365327864954880" + "357367896642474112", + "87273376705445104", + "143445635985688928" ], - "expectedQty": "1642678097302838149835195", - "swapFee": "986198577528219821794", + "expectedQty": "587325781068889867", + "swapFee": "352607032861050", "reserves": [ - "27557609289648838833502707", - "8054680273252761011431044", - "54387035793945363303473886" + "1100624509229788034977423374", + "491532606011863455860288828", + "673124807421743354022832656" ], - "mAssetSupply": "89696841530343230507257918" + "mAssetSupply": "2264146758362775239333556615" }, { - "type": "redeemMasset", - "inputQty": "55457013849452800534118", - "expectedQtys": [ - "17032977027413157018819", - "4978486436013349097943", - "33615874350005092697280" - ], - "redemptionFee": "16637104154835840160", + "type": "mint", + "inputIndex": 1, + "inputQty": "7961562492246701375488", + "expectedQty": "7999117606323736812967", "reserves": [ - "27540576312621425676483888", - "8049701786816747662333101", - "54353419919595358210776606" - ], - "mAssetSupply": "89641401153597932542563960" + "1100624509229788034977423374", + "491540567574355702561664316", + "673124807421743354022832656" + ] }, { - "type": "redeemMasset", - "inputQty": "508674459853279618662", - "expectedQtys": [ - "156233446190110699891", - "45664718003040424904", - "308338576864309117969" + "type": "mintMulti", + "inputQtys": [ + "11560052891383457227210752", + "2771519477116663131799552", + "14007923696508717844398080" ], - "redemptionFee": "152602337955983885", + "expectedQty": "28320603280428149361052290", "reserves": [ - "27540420079175235565783997", - "8049656122098744621908197", - "54353111581018493901658637" + "1112184562121171492204634126", + "494312087051472365693463868", + "687132731118252071867230736" ], - "mAssetSupply": "89640892631740417218929183" + "mAssetSupply": "2292475360760809712431421872" }, { - "type": "redeemMasset", - "inputQty": "30984523405716739640524", - "expectedQtys": [ - "9516536119445709094338", - "2781542293648416250843", - "18781607109767650636393" + "type": "mintMulti", + "inputQtys": [ + "456376987992357142528", + "650045050816582385664", + "198418816917045739520" ], - "redemptionFee": "9295357021715021892", + "expectedQty": "1306473384718299120764", "reserves": [ - "27530903543055789856689659", - "8046874579805096205657354", - "54334329973908726251022244" + "1112185018498159484561776654", + "494312737096523182275849532", + "687132929537068988912970256" ], - "mAssetSupply": "89609917403691722194310551" + "mAssetSupply": "2292476667234194430730542636" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3451952004945575606747136", - "expectedQty": "3562210647338917821205215", + "inputQty": "1702793781902824439808", + "expectedQty": "1711001759218491169352", "reserves": [ - "27530903543055789856689659", - "11498826584750671812404490", - "54334329973908726251022244" + "1112185018498159484561776654", + "494314439890305085100289340", + "687132929537068988912970256" ] }, { - "type": "redeemMasset", - "inputQty": "11291098267812762327449", - "expectedQtys": [ - "3335341668861753964684", - "1393071440287254550042", - "6582550206833751509129" - ], - "redemptionFee": "3387329480343828698", + "type": "mint", + "inputIndex": 1, + "inputQty": "385679055879542603776", + "expectedQty": "387538134549156415543", "reserves": [ - "27527568201386928102724975", - "11497433513310384557854448", - "54327747423701892499513115" - ], - "mAssetSupply": "93160840340092307597017015" + "1112185018498159484561776654", + "494314825569360964642893116", + "687132929537068988912970256" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "11098579084023735255040", - "expectedQty": "11345356224905081352356", + "inputIndex": 2, + "inputQty": "18703270706497723857633280", + "expectedQty": "18712536982051748906363122", "reserves": [ - "27527568201386928102724975", - "11508532092394408293109488", - "54327747423701892499513115" + "1112185018498159484561776654", + "494314825569360964642893116", + "705836200243566712770603536" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "302891392412917760000", - "expectedQty": "296131494805796351129", - "swapFee": "181734835447750656", + "inputQty": "6231618623433785273745408", + "expectedQty": "6261898932720359708692157", "reserves": [ - "27527568201386928102724975", - "11508235960899602496758359", - "54327747423701892499513115" - ], - "mAssetSupply": "93171882986659635208360027" + "1112185018498159484561776654", + "500546444192794749916638524", + "705836200243566712770603536" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "5090552944387081967239168", - "outputIndex": 1, - "expectedQty": "4828319775144686984358162", - "swapFee": "3027848894886453435292", + "type": "redeem", + "inputIndex": 0, + "inputQty": "12697653978848673792", + "expectedQty": "12733733054344755660", + "swapFee": "7618592387309204", "reserves": [ - "27527568201386928102724975", - "6679916185754915512400197", - "59418300368088974466752283" + "1112185005764426430217020994", + "500546444192794749916638524", + "705836200243566712770603536" ], - "mAssetSupply": "93174910835554521661795319", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2317453188998824920531818222" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6905703409618897600512", - "expectedQty": "6892866265160573038165", + "inputIndex": 1, + "inputQty": "1917654715576448834338816", + "expectedQty": "1926778090781110561798496", "reserves": [ - "27534473904796547000325487", - "6679916185754915512400197", - "59418300368088974466752283" + "1112185005764426430217020994", + "502464098908371198750977340", + "705836200243566712770603536" ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "166133730898441949675520", - "outputIndex": 2, - "expectedQty": "181129220873644892342310", - "swapFee": "107118112720479877357", - "reserves": [ - "27534473904796547000325487", - "6846049916653357462075717", - "59237171147215329574409973" - ], - "mAssetSupply": "93181910819932402714710841", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemMasset", - "inputQty": "36322277194720083", - "expectedQtys": [ - "10729708699307587", - "2667787356337079", - "23083702008554691" - ], - "redemptionFee": "10896683158416", + "inputQty": "9193236637405665034240", + "expectedQty": "9144429794835880529666", + "swapFee": "5515941982443399020", "reserves": [ - "27534473894066838301017900", - "6846049913985570105738638", - "59237171124131627565855282" + "1112185005764426430217020994", + "502454954478576362870447674", + "705836200243566712770603536" ], - "mAssetSupply": "93181910783621022203149174" + "mAssetSupply": "2319370779368910607871981498" }, { - "type": "redeemBassets", - "inputQtys": [ - "22127630307115802624", - "5315746973404467200", - "14274541424843827200" - ], - "expectedQty": "41851216459731201489", - "swapFee": "25125805359054153", + "type": "mint", + "inputIndex": 1, + "inputQty": "26955482745076422352568320", + "expectedQty": "27074607903646719001804787", "reserves": [ - "27534451766436531185215276", - "6846044598238596701271438", - "59237156849590202722028082" - ], - "mAssetSupply": "93181868932404562471947685" + "1112185005764426430217020994", + "529410437223652785223015994", + "705836200243566712770603536" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "47458528931418499710976", - "expectedQty": "47374076648344214158117", + "inputIndex": 1, + "inputQty": "4396872783689372126937088", + "expectedQty": "4414777799392131971239600", "reserves": [ - "27581910295367949684926252", - "6846044598238596701271438", - "59237156849590202722028082" + "1112185005764426430217020994", + "533807310007342157349953082", + "705836200243566712770603536" ] }, { - "type": "redeemMasset", - "inputQty": "16611094814741049534054", - "expectedQtys": [ - "4912924985623198246491", - "1219426181841566468433", - "10551397812808733984004" + "type": "redeemBassets", + "inputQtys": [ + "615770001876341873442816", + "590809444729267192594432", + "70394319371638772072448" ], - "redemptionFee": "4983328444422314860", + "expectedQty": "1277424496872001283760820", + "swapFee": "766914847031419622029", "reserves": [ - "27576997370382326486679761", - "6844825172056755134803005", - "59226605451777393988044078" + "1111569235762550088343578178", + "533216500562612890157358650", + "705765805924195073998531088" ], - "mAssetSupply": "93212636897566610058886608" + "mAssetSupply": "2349582740575077457561265065" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3322290931536578763292672", - "expectedQty": "3322579297728882209245391", - "swapFee": "1993374558921947257975", + "type": "swap", + "inputIndex": 1, + "inputQty": "392434969478648102912", + "outputIndex": 2, + "expectedQty": "393533223365846102093", + "swapFee": "236410847171459309", "reserves": [ - "24254418072653444277434370", - "6844825172056755134803005", - "59226605451777393988044078" + "1111569235762550088343578178", + "533216892997582368805461562", + "705765412390971708152428995" ], - "mAssetSupply": "89892339340588953242851911" + "mAssetSupply": "2349582740811488304732724374", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "9931522857924896657244160", - "expectedQty": "9758237646414510896449578", + "inputIndex": 1, + "inputQty": "47474714173434650624", + "expectedQty": "47666230047412513891", "reserves": [ - "24254418072653444277434370", - "6844825172056755134803005", - "69158128309702290645288238" + "1111569235762550088343578178", + "533216940472296542240112186", + "705765412390971708152428995" ] }, + { + "type": "redeemMasset", + "inputQty": "194399176057305745797939", + "expectedQtys": [ + "91941138732881259501479", + "44103930840668191153232", + "58375919021358055049211" + ], + "redemptionFee": "58319752817191723739", + "reserves": [ + "1111477294623817207084076699", + "533172836541455874048958954", + "705707036471950350097379784" + ], + "mAssetSupply": "2349388447621413863591164065" + }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3267301610882526567464960", - "expectedQty": "3273809536983543890164410", + "inputIndex": 2, + "inputQty": "714398765946789219532800", + "expectedQty": "714847197912076304793406", "reserves": [ - "27521719683535970844899330", - "6844825172056755134803005", - "69158128309702290645288238" + "1111477294623817207084076699", + "533172836541455874048958954", + "706421435237897139316912584" ] }, { - "type": "redeemMasset", - "inputQty": "16760997318550136422", - "expectedQtys": [ - "4480503580841997543", - "1114329483996019566", - "11258861913389724223" + "type": "mintMulti", + "inputQtys": [ + "23873069023397290608427008", + "7709076573468684110004224", + "9777941501623113323905024" ], - "redemptionFee": "5028299195565040", + "expectedQty": "41320634285388994507075847", "reserves": [ - "27521715203032390002901787", - "6844824057727271138783439", - "69158117050840377255564015" + "1135350363647214497692503707", + "540881913114924558158963178", + "716199376739520252640817608" ], - "mAssetSupply": "102924369768017988674894517" + "mAssetSupply": "2391423929104714934403033318" }, { "type": "mint", "inputIndex": 0, - "inputQty": "230695028263476854784", - "expectedQty": "230815090909579564013", + "inputQty": "128414495432582990135296", + "expectedQty": "127997380958965687589704", + "reserves": [ + "1135478778142647080682639003", + "540881913114924558158963178", + "716199376739520252640817608" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1191487673962839872110592", + "expectedQty": "1196340909936155627489193", "reserves": [ - "27521945898060653479756571", - "6844824057727271138783439", - "69158117050840377255564015" + "1135478778142647080682639003", + "542073400788887398031073770", + "716199376739520252640817608" ] }, { "type": "redeemBassets", "inputQtys": [ - "2665229602702515765248", - "90491854112545403043840", - "30318058077370720452608" + "62157726209961740992512", + "93352712822625727938560", + "20620788077243679113216" ], - "expectedQty": "131607424386868031046309", - "swapFee": "79011861749170320820", + "expectedQty": "176322612361809054839859", + "swapFee": "105857081666085083954", "reserves": [ - "27519280668457950963991323", - "6754332203614725735739599", - "69127798992763006535111407" + "1135416620416437118941646491", + "541980048076064772303135210", + "716178755951443008961704392" ], - "mAssetSupply": "102792993158722030223412221" + "mAssetSupply": "2392571944783248246663272356" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "318474211798494871552", - "expectedQty": "290077236619628340900", - "swapFee": "191084527079096922", + "inputIndex": 0, + "inputQty": "698367377160782219313152", + "expectedQty": "700216711449950940879928", + "swapFee": "419020426296469331587", "reserves": [ - "27519280668457950963991323", - "6754042126378106107398699", - "69127798992763006535111407" + "1134716403704987168000766563", + "541980048076064772303135210", + "716178755951443008961704392" ], - "mAssetSupply": "102792674875594758807637591" + "mAssetSupply": "2391873996426513760913290791" }, { "type": "redeemMasset", - "inputQty": "45752566089318093815808", + "inputQty": "15451770351250679398", "expectedQtys": [ - "12245035803623250488313", - "3005292494853352155166", - "30759247812108111902609" + "7328194251389732342", + "3500200631374280131", + "4625205932684577474" ], - "redemptionFee": "13725769826795428144", + "redemptionFee": "4635531105375203", "reserves": [ - "27507035632654327713503010", - "6751036833883252755243533", - "69097039744950898423208798" + "1134716396376792916611034221", + "541980044575864140928855079", + "716178751326237076277126918" ], - "mAssetSupply": "102746936035275267509249927" + "mAssetSupply": "2391873980979378940767986596" }, { - "type": "mintMulti", - "inputQtys": [ - "47076951652966572032", - "221359911499995611136", - "73868218178295988224" - ], - "expectedQty": "362485623008993557616", + "type": "mint", + "inputIndex": 0, + "inputQty": "5205097775972038391889920", + "expectedQty": "5188173808897876923448846", "reserves": [ - "27507082709605980680075042", - "6751258193794752750854669", - "69097113613169076719197022" - ], - "mAssetSupply": "102747298520898276502807543" + "1139921494152764955002924141", + "541980044575864140928855079", + "716178751326237076277126918" + ] }, { - "type": "redeemMasset", - "inputQty": "3193787207755542351052", - "expectedQtys": [ - "854771021858894109155", - "209792507844821718885", - "2147163733579170911251" + "type": "mintMulti", + "inputQtys": [ + "1474930473729503789056", + "2396024089424366141440", + "2006660833126049120256" ], - "redemptionFee": "958136162326662705", + "expectedQty": "5883964971396917271149", "reserves": [ - "27506227938584121785965887", - "6751048401286907929135784", - "69094966449435497548285771" + "1139922969083238684506713197", + "541982440599953565294996519", + "716180757987070202326247174" ], - "mAssetSupply": "102744105691826683287119196" + "mAssetSupply": "2397068038753248214608706591" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "11850637904465492967424", - "expectedQty": "13000942741375010783591", - "reserves": [ - "27506227938584121785965887", - "6762899039191373422103208", - "69094966449435497548285771" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "147782464601266931630080", - "expectedQty": "145051198260276530551821", + "inputQty": "2286428411916151443947520", + "expectedQty": "2275693441847597311250279", + "swapFee": "1371857047149690866368", "reserves": [ - "27506227938584121785965887", - "6762899039191373422103208", - "69242748914036764479915851" - ] + "1139922969083238684506713197", + "539706747158105967983746240", + "716180757987070202326247174" + ], + "mAssetSupply": "2394782982198379212855625439" }, { "type": "redeemMasset", - "inputQty": "146556017828801972849868", + "inputQty": "1204757357222143023120384", "expectedQtys": [ - "39163356299559606011447", - "9629012937767234643782", - "98587798113802517400810" + "573295615803198692365206", + "271431947909590703625336", + "360185117602115522101600" ], - "redemptionFee": "43966805348640591854", + "redemptionFee": "361427207166642906936", "reserves": [ - "27467064582284562179954440", - "6753270026253606187459426", - "69144161115922961962515041" + "1139349673467435485814347991", + "539435315210196377280120904", + "715820572869468086804145574" ], - "mAssetSupply": "102755645781804881496196594" + "mAssetSupply": "2393578586268364236475411991" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3635175104679555104768", - "expectedQty": "3701497963606681645027", - "swapFee": "2181105062807733062", + "type": "mintMulti", + "inputQtys": [ + "85191475246756976", + "49799339962726792", + "144152753478253536" + ], + "expectedQty": "279166380986413350", "reserves": [ - "27467064582284562179954440", - "6753270026253606187459426", - "69140459617959355280870014" + "1139349673552626961061104967", + "539435315259995717242847696", + "715820573013620840282399110" ], - "mAssetSupply": "102752012787805264748824888" + "mAssetSupply": "2393578586547530617461825341" }, { "type": "redeemMasset", - "inputQty": "1868655722788563609190", + "inputQty": "151525735100938956", "expectedQtys": [ - "499368217531917885718", - "122778624756904992250", - "1257016306759860525609" + "72105008606368900", + "34138762622469555", + "45301499421879606" ], - "redemptionFee": "560596716836569082", + "redemptionFee": "45457720530281", "reserves": [ - "27466565214067030262068722", - "6753147247628849282467176", - "69139202601652595420344405" + "1139349673480521952454736067", + "539435315225856954620378141", + "715820572968319340860519504" ], - "mAssetSupply": "102750144692679193021784780" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "152195532992761848397824", - "2327893044720597360181248", - "198187749817698815574016" - ], - "hardLimitError": true + "mAssetSupply": "2393578586396050340081416666" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2818083929872609730101248", - "expectedQty": "2764518861065876562484785", + "inputIndex": 1, + "inputQty": "54433008085691734687744", + "expectedQty": "54658231390294494450021", "reserves": [ - "27466565214067030262068722", - "6753147247628849282467176", - "71957286531525205150445653" + "1139349673480521952454736067", + "539489748233942646355065885", + "715820572968319340860519504" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "133541812751433954492416", - "73024982131634826379264", - "1155957190635150366474240" - ], - "expectedQty": "1347832895372548470391220", - "swapFee": "809185248372552613803", - "reserves": [ - "27333023401315596307576306", - "6680122265497214456087912", - "70801329340890054783971413" - ], - "mAssetSupply": "104166830658372521113878345" - }, { "type": "redeemMasset", - "inputQty": "33003661876718552167219", + "inputQty": "4307546511426837282816", "expectedQtys": [ - "8657451030687082434298", - "2115859286527408847052", - "22425585076212284613193" + "2049741488924962675897", + "970566407788328200041", + "1287793520453654194731" ], - "redemptionFee": "9901098563015565650", + "redemptionFee": "1292263953428051184", "reserves": [ - "27324365950284909225142008", - "6678006406210687047240860", - "70778903755813842499358220" + "1139347623739033027492060170", + "539488777667534858026865844", + "715819285174798887206324773" ], - "mAssetSupply": "104133836897594365577276776" + "mAssetSupply": "2393628938373193161166635055" }, { "type": "mintMulti", "inputQtys": [ - "145996661874554944094208", - "123590796901515689721856", - "103345077744043678498816" + "379813896996395398725632", + "280291069600712024391680", + "292324154030857721479168" ], - "expectedQty": "383702684866003394387828", + "expectedQty": "952538130491353475467906", "reserves": [ - "27470362612159464169236216", - "6801597203112202736962716", - "70882248833557886177857036" + "1139727437636029422890785802", + "539769068737135570051257524", + "716111609328829744927803941" ], - "mAssetSupply": "104517539582460368971664604" + "mAssetSupply": "2394581476503684514642102961" }, { "type": "redeemBassets", "inputQtys": [ - "113214460183309984", - "2073989852708584", - "207361752125317536" + "8867132472595505311907840", + "190668184651064657575936", + "3966716444877247494488064" ], - "expectedQty": "319033020557758484", - "swapFee": "191534733174559", + "expectedQty": "12999027063173061360274945", + "swapFee": "7804098697122110082214", "reserves": [ - "27470362498945003985926232", - "6801597201038212884254132", - "70882248626196134052539500" + "1130860305163433917578877962", + "539578400552484505393681588", + "712144892883952497433315877" ], - "mAssetSupply": "104517539263427348413906120" + "mAssetSupply": "2381582449440511453281828016" }, { "type": "mintMulti", "inputQtys": [ - "155057495505707040768", - "56941280216450228224", - "236548858911661096960" + "29255886151827765329920", + "44982707887516172681216", + "8620730987661834059776" ], - "expectedQty": "449922071946860527275", + "expectedQty": "82952777234372968487818", "reserves": [ - "27470517556440509692967000", - "6801654142318429334482356", - "70882485175055045713636460" + "1130889561049585745344207882", + "539623383260372021566362804", + "712153513614940159267375653" ], - "mAssetSupply": "104517989185499295274433395" + "mAssetSupply": "2381665402217745826250315834" }, { "type": "mintMulti", "inputQtys": [ - "3697023886528295110443008", - "830990823817272119787520", - "3480583922573013218754560" + "4897017974151719157760", + "3094570451134322835456", + "954916233891483484160" + ], + "expectedQty": "8943811560051972898137", + "reserves": [ + "1130894458067559897063365642", + "539626477830823155889198260", + "712154468531174050750859813" ], - "expectedQty": "8024907947432594101110255", + "mAssetSupply": "2381674346029305878223213971" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "15292612809900039390363648", + "expectedQty": "15271944354956722412026157", + "swapFee": "9175567685940023634218", "reserves": [ - "31167541442968804803410008", - "7632644966135701454269876", - "74363069097628058932391020" + "1130894458067559897063365642", + "539626477830823155889198260", + "696882524176217328338833656" ], - "mAssetSupply": "112542897132931889375543650" + "mAssetSupply": "2366390908787091778856484541" }, { "type": "redeemMasset", - "inputQty": "40546597519666252978585", + "inputQty": "116082962800666198461644", "expectedQtys": [ - "11225574153700411980284", - "2749040126023591900618", - "26783252954990122776331" + "55459220852403823526032", + "26463357211037420676177", + "34175215503762429521856" ], - "redemptionFee": "12163979255899875893", + "redemptionFee": "34824888840199859538", "reserves": [ - "31156315868815104391429724", - "7629895926009677862369258", - "74336285844673068809614689" + "1130838998846707493239839610", + "539600014473612118468522083", + "696848348960713565909311800" ], - "mAssetSupply": "112502362699391479022440958" + "mAssetSupply": "2366274860649179952857882435" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "794741632963720832", - "outputIndex": 1, - "expectedQty": "728938594669580687", - "swapFee": "476637723985678", + "type": "mintMulti", + "inputQtys": [ + "25278289500918239232", + "12592287776072753152", + "26394871788835885056" + ], + "expectedQty": "64253925142240203166", "reserves": [ - "31156316663556737355150556", - "7629895197071083192788571", - "74336285844673068809614689" + "1130839024124996994158078842", + "539600027065899894541275235", + "696848375355585354745196856" ], - "mAssetSupply": "112502362699868116746426636", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2366274924903105095098085601" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "910583389858382179467264", - "expectedQty": "909920913356710100730534", + "inputIndex": 1, + "inputQty": "4141805303148578378612736", + "expectedQty": "4158084700545119746075462", "reserves": [ - "32066900053415119534617820", - "7629895197071083192788571", - "74336285844673068809614689" + "1130839024124996994158078842", + "543741832369048472919887971", + "696848375355585354745196856" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "3147557295294243840", - "expectedQty": "3144365049168388740", + "inputQty": "46995483110738747392", + "expectedQty": "46841435241623450961", "reserves": [ - "32066903200972414828861660", - "7629895197071083192788571", - "74336285844673068809614689" + "1130839071120480104896826234", + "543741832369048472919887971", + "696848375355585354745196856" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "471745220695275664834560", + "382717919033526675570688", + "600283179641909951856640" + ], + "expectedQty": "1455202276026264511317131", + "swapFee": "873645552947527223124", + "reserves": [ + "1130367325899784829231991674", + "543359114450014946244317283", + "696248092175943444793340216" + ], + "mAssetSupply": "2368977854169059191956294893" + }, { "type": "redeemMasset", - "inputQty": "1809718143775170602886758", + "inputQty": "3045329970330922559891046", "expectedQtys": [ - "511537581854094161091799", - "121713597176778611171931", - "1185827133561362269704969" + "1452655535188189059509831", + "698280644809389374797396", + "894761040760363718328565" ], - "redemptionFee": "542915443132551180866", + "redemptionFee": "913598991099276767967", "reserves": [ - "31555365619118320667769861", - "7508181599894304581616640", - "73150458711111706539909720" + "1128914670364596640172481843", + "542660833805205556869519887", + "695353331135183081075011651" ], - "mAssetSupply": "111603111529257837963840018" + "mAssetSupply": "2365933437797719368673171814" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 2, + "inputQty": "5316115357888560328867840", + "expectedQty": "5320527649404593168486778", + "reserves": [ + "1128914670364596640172481843", + "542660833805205556869519887", + "700669446493071641403879491" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "293733883104888553472", - "123446372771512696832", - "544739761836834422784" + "13595889910622605312", + "2268588234788150784", + "12550790072533981184" ], - "expectedQty": "963369830158974395798", + "expectedQty": "28389906051908740187", + "swapFee": "17044170133225179", "reserves": [ - "31555659353001425556323333", - "7508305046267076094313472", - "73151003450873543374332504" + "1128914656768706729549876531", + "542660831536617322081369103", + "700669433942281568869898307" ], - "mAssetSupply": "111604074899087996938235816" + "mAssetSupply": "2371253937057217909932918405" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "98362133374781856", - "75554238136927984", - "119729595897108816" + "970115694987673258164224", + "406332448737143646322688", + "425957082877909165670400" ], - "expectedQty": "298274301923313258", - "swapFee": "179072024368609", + "expectedQty": "1801177037312294742678301", "reserves": [ - "31555659254639292181541477", - "7508304970712837957385488", - "73151003331143947477223688" + "1129884772463694402808040755", + "543067163985354465727691791", + "701095391025159478035568707" ], - "mAssetSupply": "111604074600813695014922558" + "mAssetSupply": "2373055114094530204675596706" }, { "type": "mint", "inputIndex": 1, - "inputQty": "3394660530714568908865536", - "expectedQty": "3605394488145490542115629", + "inputQty": "4610820099884512706560", + "expectedQty": "4628895041850082087664", "reserves": [ - "31555659254639292181541477", - "10902965501427406866251024", - "73151003331143947477223688" + "1129884772463694402808040755", + "543071774805454350240398351", + "701095391025159478035568707" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "206325345578276003774464", - "expectedQty": "208724783812611614672265", - "swapFee": "123795207346965602264", + "type": "swap", + "inputIndex": 1, + "inputQty": "39329686357772744", + "outputIndex": 0, + "expectedQty": "39589268659334081", + "swapFee": "23690316833240", "reserves": [ - "31555659254639292181541477", - "10902965501427406866251024", - "72942278547331335862551423" + "1129884772424105134148706674", + "543071774844784036598171095", + "701095391025159478035568707" ], - "mAssetSupply": "115003267538588256518865987" + "mAssetSupply": "2373059742989595745074517610", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "58022168931895910400", - "29044633421544624128", - "125091108411624521728" - ], - "expectedQty": "211919537362623458175", + "type": "swap", + "inputIndex": 0, + "inputQty": "346067241965197066240", + "outputIndex": 2, + "expectedQty": "344454977134874144275", + "swapFee": "206963245649292648", "reserves": [ - "31555717276808224077451877", - "10902994546060828410875152", - "72942403638439747487073151" + "1129885118491347099345772914", + "543071774844784036598171095", + "701095046570182343161424432" ], - "mAssetSupply": "115003479458125619142324162" + "mAssetSupply": "2373059743196558990723810258", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "26193365586402590326784", - "expectedQty": "26497271357714224485455", - "swapFee": "15716019351841554196", + "type": "redeemBassets", + "inputQtys": [ + "667429953032515915612160", + "627036164303597495910400", + "204798822218719790366720" + ], + "expectedQty": "1499712641486312862905396", + "swapFee": "900367805575132797421", "reserves": [ - "31555717276808224077451877", - "10902994546060828410875152", - "72915906367082033262587696" + "1129217688538314583430160754", + "542444738680480439102260695", + "700890247747963623371057712" ], - "mAssetSupply": "114977301808558568393551574" + "mAssetSupply": "2371560030555072677860904862" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "72244703617360865525760", - "outputIndex": 1, - "expectedQty": "68390819293399294949725", - "swapFee": "42823731557274964565", + "type": "mintMulti", + "inputQtys": [ + "3636220574833799055015936", + "6615721105675326188421120", + "1049282498306785958428672" + ], + "expectedQty": "11315906186560681889550991", "reserves": [ - "31555717276808224077451877", - "10834603726767429115925427", - "72988151070699394128113456" + "1132853909113148382485176690", + "549060459786155765290681815", + "701939530246270409329486384" ], - "mAssetSupply": "114977344632290125668516139", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2382875936741633359750455853" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "183434228663420400435200", - "outputIndex": 1, - "expectedQty": "173437338572503642081136", - "swapFee": "108721463607357384750", + "type": "redeemBassets", + "inputQtys": [ + "896547171947579520843776", + "1135161253843331232825344", + "60127082210703232204800" + ], + "expectedQty": "2093332456509111097783111", + "swapFee": "1256753526021079306253", "reserves": [ - "31555717276808224077451877", - "10661166388194925473844291", - "73171585299362814528548656" + "1131957361941200802964332914", + "547925298532312434057856471", + "701879403164059706097281584" ], - "mAssetSupply": "114977453353753733025900889", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2380782604285124248652672742" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9345223881902956512018432", - "hardLimitError": true + "type": "redeemMasset", + "inputQty": "1496033150977826409676", + "expectedQtys": [ + "711084540935686321464", + "344201312234706796409", + "440913774645386575445" + ], + "redemptionFee": "448809945293347922", + "reserves": [ + "1131956650856659867278011450", + "547924954331000199351060062", + "701878962250285060710706139" + ], + "mAssetSupply": "2380781108700783216119610988" }, { "type": "mint", "inputIndex": 2, - "inputQty": "7849980975975320191500288", - "expectedQty": "7745730678955963715254591", + "inputQty": "20806105188099975806976", + "expectedQty": "20823382473516213671169", "reserves": [ - "31555717276808224077451877", - "10661166388194925473844291", - "81021566275338134720048944" + "1131956650856659867278011450", + "547924954331000199351060062", + "701899768355473160686513115" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "1982049532539116544", - "expectedQty": "2009401293715324018", - "swapFee": "1189229719523469", + "inputQty": "6529448622447681077248", + "expectedQty": "6534869712027017961125", "reserves": [ - "31555717276808224077451877", - "10661166388194925473844291", - "81021564265936841004724926" - ], - "mAssetSupply": "122723182051849393921562405" + "1131956650856659867278011450", + "547924954331000199351060062", + "701906297804095608367590363" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "111893653567835201339392", - "expectedQty": "106060553301018666332033", - "swapFee": "67136192140701120803", + "inputQty": "159022196622623047680", + "expectedQty": "158318814525361000319", + "swapFee": "95413317973573828", "reserves": [ - "31555717276808224077451877", - "10555105834893906807512258", - "81021564265936841004724926" + "1131956650856659867278011450", + "547924796012185673990059743", + "701906297804095608367590363" ], - "mAssetSupply": "122611355534473699421343816" + "mAssetSupply": "2380808308026185454701769430" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "104808549284114094620672", - "outputIndex": 2, - "expectedQty": "112030736744333852225250", - "swapFee": "66304268715490334180", + "inputQty": "118497396161370112", + "expectedQty": "118952444709763339", "reserves": [ - "31555717276808224077451877", - "10659914384178020902132930", - "80909533529192507152499676" - ], - "mAssetSupply": "122611421838742414911677996", - "hardLimitError": false, - "insufficientLiquidityError": false + "1131956650856659867278011450", + "547924796130683070151429855", + "701906297804095608367590363" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "6465366909044844920832", - "expectedQty": "6373692650623829663051", + "inputQty": "466623765727213313327104", + "expectedQty": "467010028682885274226121", "reserves": [ - "31555717276808224077451877", - "10659914384178020902132930", - "80915998896101551997420508" + "1131956650856659867278011450", + "547924796130683070151429855", + "702372921569822821680917467" ] }, { - "type": "redeemBassets", + "type": "mintMulti", + "inputQtys": [ + "137400653713122290302976", + "1158920849800013676544", + "76831758354950242959360" + ], + "expectedQty": "215014374697069982944562", + "reserves": [ + "1132094051510372989568314426", + "547925955051532870165106399", + "702449753328177771923876827" + ], + "mAssetSupply": "2381490332548517854668703452" + }, + { + "type": "mintMulti", "inputQtys": [ - "118573803701425886199808", - "220323956346047059460096", - "225300190853878637395968" + "175730486631334510592", + "13570123601410564096", + "144077006278137495552" ], - "expectedQty": "573250946805771481754153", - "swapFee": "344157062320855402293", + "expectedQty": "332979713961567117795", "reserves": [ - "31437143473106798191252069", - "10439590427831973842672834", - "80690698705247673360024540" + "1132094227240859620902825018", + "547925968621656471575670495", + "702449897405184050061372379" ], - "mAssetSupply": "122044544584587267259586894" + "mAssetSupply": "2381490665528231816235821247" }, { "type": "mintMulti", "inputQtys": [ - "811144439335211892736", - "1663691777051921743872", - "2710686331871496241152" + "2978135259209151488", + "12574754420894302208", + "584594771311358080" ], - "expectedQty": "5240579368637576198554", + "expectedQty": "16176662458570792556", "reserves": [ - "31437954617546133403144805", - "10441254119609025764416706", - "80693409391579544856265692" + "1132094230218994880111976506", + "547925981196410892469972703", + "702449897989778821372730459" ], - "mAssetSupply": "122049785163955904835785448" + "mAssetSupply": "2381490681704894274806613803" }, { "type": "redeemMasset", - "inputQty": "261296053459990767206", + "inputQty": "142085459453268339143475", "expectedQtys": [ - "67285239997318798490", - "22346946481015161027", - "172704474039924741887" + "67523200423058801858454", + "32680774142068967943852", + "41897276731059530641479" ], - "redemptionFee": "78388816037997230", + "redemptionFee": "42625637835980501743", "reserves": [ - "31437887332306136084346315", - "10441231772662544749255679", - "80693236687105504931523805" + "1132026707018571821310118052", + "547893300422268823502028851", + "702408000713047761842088980" ], - "mAssetSupply": "122049523946291260883015472" + "mAssetSupply": "2381348638871078842447972071" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "92232072210031099904", - "outputIndex": 2, - "expectedQty": "98730774494324298903", - "swapFee": "58419277740838007", + "inputQty": "7775583599641111402905600", + "expectedQty": "7740561313206765755102472", + "swapFee": "4665350159784666841743", "reserves": [ - "31437887332306136084346315", - "10441324004734754780355583", - "80693137956331010607224902" + "1132026707018571821310118052", + "540152739109062057746926379", + "702408000713047761842088980" ], - "mAssetSupply": "122049524004710538623853479", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2373577720621597515711908214" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "13365691178760552874770432", - "outputIndex": 1, - "hardLimitError": true + "inputQty": "13445510587544430968832", + "expectedQty": "13426950458230710769591", + "swapFee": "8067306352526658581", + "reserves": [ + "1132026707018571821310118052", + "540152739109062057746926379", + "702394573762589531131319389" + ], + "mAssetSupply": "2373564283178316323807597963" }, { - "type": "mintMulti", - "inputQtys": [ - "131380664297468936192", - "63694125534210457600", - "37946486999559200768" - ], - "expectedQty": "236268409166505084695", + "type": "redeem", + "inputIndex": 1, + "inputQty": "18204914051232768720896", + "expectedQty": "18121493077184694095283", + "swapFee": "10922948430739661232", "reserves": [ - "31438018712970433553282507", - "10441387698860288990813183", - "80693175902818010166425670" + "1132026707018571821310118052", + "540134617615984873052831096", + "702394573762589531131319389" ], - "mAssetSupply": "122049760273119705128938174" + "mAssetSupply": "2373546089187213521778538299" }, { - "type": "redeemMasset", - "inputQty": "5759331558419495020134", - "expectedQtys": [ - "1483064401853365414889", - "492564450180842584354", - "3806638635423530634596" - ], - "redemptionFee": "1727799467525848506", + "type": "swap", + "inputIndex": 2, + "inputQty": "60289191472334991339290624", + "outputIndex": 0, + "expectedQty": "60458600022069997588322572", + "swapFee": "36191037435248801609835", "reserves": [ - "31436535648568580187867618", - "10440895134410108148228829", - "80689369264182586635791074" + "1071568106996501823721795480", + "540134617615984873052831096", + "762683765234924522470610013" ], - "mAssetSupply": "122044002669360753159766546" + "mAssetSupply": "2373582280224648770580148134", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "163051444871743024817766", + "inputQty": "20337082857339743738265", "expectedQtys": [ - "41986781123328637027226", - "13944907404581177443267", - "107769091484765375402156" + "9178544931838144473651", + "4626537337813579169055", + "6532787941602206089801" ], - "redemptionFee": "48915433461522907445", + "redemptionFee": "6101124857201923121", "reserves": [ - "31394548867445251550840392", - "10426950227005526970785562", - "80581600172697821260388918" + "1071558928451569985577321829", + "540129991078647059473662041", + "762677232446982920264520212" ], - "mAssetSupply": "121881000139922471657856225" + "mAssetSupply": "2373561949242916288038332990" }, { "type": "redeemBassets", "inputQtys": [ - "7332012158024560934912", - "5879682511600335454208", - "10318798213353821962240" + "4421694199481813172224", + "1024991493298449809408", + "1705337929969166974976" ], - "expectedQty": "23722957606937172373119", - "swapFee": "14242319956135985014", + "expectedQty": "7143912466969202379031", + "swapFee": "4288920832681130105", "reserves": [ - "31387216855287226989905480", - "10421070544493926635331354", - "80571281374484467438426678" + "1071554506757370503764149605", + "540128966087153761023852633", + "762675527109052951097545236" ], - "mAssetSupply": "121857277182315534485483106" + "mAssetSupply": "2373554805330449318835953959" }, { - "type": "mintMulti", - "inputQtys": [ - "469518834578349228032", - "280777154746829012992", - "384739123395870326784" + "type": "redeemMasset", + "inputQty": "3424568874249492671076761", + "expectedQtys": [ + "1545576836482211735970197", + "779065193075068771955722", + "1100059419299815646015723" ], - "expectedQty": "1146016006705113753627", + "redemptionFee": "1027370662274847801323", "reserves": [ - "31387686374121805339133512", - "10421351321648673464344346", - "80571666113607863308753462" + "1070008929920888292028179408", + "539349900894078692251896911", + "761575467689753135451529513" ], - "mAssetSupply": "121858423198322239599236733" + "mAssetSupply": "2370131263826862101012678521" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1940287220766006837248", - "outputIndex": 2, - "expectedQty": "2077073136851168200881", - "swapFee": "1229005986659408502", + "type": "redeemBassets", + "inputQtys": [ + "29865882296052411793408", + "20238746522918003408896", + "20480887427882203217920" + ], + "expectedQty": "70583669354681807411139", + "swapFee": "42375626989002485938", "reserves": [ - "31387686374121805339133512", - "10423291608869439471181594", - "80569589040471012140552581" + "1069979064038592239616386000", + "539329662147555774248488015", + "761554986802325253248311593" ], - "mAssetSupply": "121858424427328226258645235", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2370060680157507419205267382" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "298901566423880152645632", - "outputIndex": 1, - "expectedQty": "278372924099177170646562", - "swapFee": "176747719856815123790", + "type": "redeem", + "inputIndex": 0, + "inputQty": "26385682391316046171602944", + "expectedQty": "26440926025449455211727048", + "swapFee": "15831409434789627702961", "reserves": [ - "31387686374121805339133512", - "10144918684770262300535032", - "80868490606894892293198213" + "1043538138013142784404658952", + "539329662147555774248488015", + "761554986802325253248311593" ], - "mAssetSupply": "121858601175048083073769025", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2343690829175626162661367399" }, { "type": "redeemBassets", "inputQtys": [ - "1825748441887769344", - "434189710459359744", - "2641240029521551360" + "67502781535459958784", + "3019023675792592384", + "104078531920781836288" ], - "expectedQty": "4891047319001265961", - "swapFee": "2936390225536081", + "expectedQty": "174427646919079273415", + "swapFee": "104719419803329561", "reserves": [ - "31387684548373363451364168", - "10144918250580551841175288", - "80868487965654862771646853" + "1043538070510361248944700168", + "539329659128532098455895631", + "761554882723793332466475305" ], - "mAssetSupply": "121858596284000764072503064" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "6091478358691303387037696", - "outputIndex": 1, - "hardLimitError": true + "mAssetSupply": "2343690654747979243582093984" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "3609484834960608537346048", - "expectedQty": "3660042332809624954166501", - "swapFee": "2165690900976365122407", + "inputIndex": 0, + "inputQty": "416345490917358949105664", + "expectedQty": "417187178586078572192053", + "swapFee": "249807294550415369463", "reserves": [ - "31387684548373363451364168", - "10144918250580551841175288", - "77208445632845237817480352" + "1043120883331775170372508115", + "539329659128532098455895631", + "761554882723793332466475305" ], - "mAssetSupply": "118251277139941131900279423" + "mAssetSupply": "2343274559064356435048357783" }, { - "type": "redeemMasset", - "inputQty": "14743373879572041", - "expectedQtys": [ - "3912190646809717", - "1264472192314907", - "9623333584674612" + "type": "swap", + "inputIndex": 0, + "inputQty": "56508429894443704795529216", + "outputIndex": 2, + "expectedQty": "56298095699733591228956282", + "swapFee": "33811289238657504465467", + "reserves": [ + "1099629313226218875168037331", + "539329659128532098455895631", + "705256787024059741237519023" ], - "redemptionFee": "4423012163871", + "mAssetSupply": "2343308370353595092552823250", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1477009963323580783525888", + "expectedQty": "1480718339441351139486340", + "swapFee": "886205977994148470115", "reserves": [ - "31387684544461172804554451", - "10144918249316079648860381", - "77208445623221904232805740" + "1098148594886777524028550991", + "539329659128532098455895631", + "705256787024059741237519023" ], - "mAssetSupply": "118251277125202181032871253" + "mAssetSupply": "2341832246596249505917767477" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "6874132234551173316608", - "expectedQty": "7247838633770143776456", + "inputIndex": 0, + "inputQty": "1344608085237981440", + "expectedQty": "1340441189134631228", "reserves": [ - "31387684544461172804554451", - "10151792381550630822176989", - "77208445623221904232805740" + "1098148596231385609266532431", + "539329659128532098455895631", + "705256787024059741237519023" ] }, { "type": "mintMulti", "inputQtys": [ - "10921238348294395002880", - "27083086494636229787648", - "21781314880576157646848" + "2737410301102730782965760", + "1450211720941484548030464", + "1798274826679276303024128" ], - "expectedQty": "60962607228789724009638", + "expectedQty": "5984075741002332582608062", "reserves": [ - "31398605782809467199557331", - "10178875468045267051964637", - "77230226938102480390452588" + "1100886006532488340049498191", + "540779870849473583003926095", + "707055061850739017540543151" ], - "mAssetSupply": "118319487571064740900657347" + "mAssetSupply": "2347816323677693027635006767" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "920056283400405909504", - "outputIndex": 2, - "expectedQty": "982895055543740214082", - "swapFee": "581880383743086654", - "reserves": [ - "31398605782809467199557331", - "10179795524328667457874141", - "77229244043046936650238506" + "type": "mintMulti", + "inputQtys": [ + "497051537755386937344000", + "326288977396508196339712", + "542500090153339998699520" ], - "mAssetSupply": "118319488152945124643744001", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "166417381396583538491392", - "expectedQty": "168660846187108284714341", - "swapFee": "99850428837950123094", + "expectedQty": "1365884690940620831386027", "reserves": [ - "31398605782809467199557331", - "10179795524328667457874141", - "77060583196859828365524165" + "1101383058070243726986842191", + "541106159826870091200265807", + "707597561940892357539242671" ], - "mAssetSupply": "118153170621977379055375703" + "mAssetSupply": "2349182208368633648466392794" }, { - "type": "redeemMasset", - "inputQty": "172783681206175334", - "expectedQtys": [ - "45902611951396389", - "14882164097669995", - "112657296687052032" + "type": "mintMulti", + "inputQtys": [ + "4196169316921758449664", + "3998936565388687179776", + "6364616897213169139712" ], - "redemptionFee": "51835104361852", + "expectedQty": "14565954433556146270943", "reserves": [ - "31398605736906855248160942", - "10179795509446503360204146", - "77060583084202531678472133" + "1101387254239560648745291855", + "541110158763435479887445583", + "707603926557789570708382383" ], - "mAssetSupply": "118153170449245532953562221" + "mAssetSupply": "2349196774323067204612663737" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10133294006329342427136", - "10957080096376560287744", - "2961021832539556806656" + "1027592593469160166522880", + "592112079559188316946432", + "799434865933579196563456" ], - "expectedQty": "24612249849792307205668", - "swapFee": "14776215639258939687", + "expectedQty": "2418715225852316786583855", "reserves": [ - "31388472442900525905733806", - "10168838429350126799916402", - "77057622062369992121665477" + "1102414846833029808911814735", + "541702270842994668204392015", + "708403361423723149904945839" ], - "mAssetSupply": "118128558199395740646356553" + "mAssetSupply": "2351615489548919521399247592" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "20132389022629554552832", - "expectedQty": "20097704693154744310995", - "swapFee": "12079433413577732731", + "inputQty": "1026822050179986122342400", + "expectedQty": "1029389898123616514262689", + "swapFee": "616093230107991673405", "reserves": [ - "31368374738207371161422811", - "10168838429350126799916402", - "77057622062369992121665477" + "1101385456934906192397552046", + "541702270842994668204392015", + "708403361423723149904945839" ], - "mAssetSupply": "118108437889806524669536452" + "mAssetSupply": "2350589283591969643268578597" }, { - "type": "redeemBassets", - "inputQtys": [ - "86169483511081004433408", - "970211308867910071484416", - "1094252584268444532211712" - ], - "expectedQty": "2191992363539057651613216", - "swapFee": "1315985009128911938130", + "type": "mint", + "inputIndex": 0, + "inputQty": "3910996065122895527936", + "expectedQty": "3898909930465061655414", "reserves": [ - "31282205254696290156989403", - "9198627120482216728431986", - "75963369478101547589453765" - ], - "mAssetSupply": "115916445526267467017923236" + "1101389367930971315293079982", + "541702270842994668204392015", + "708403361423723149904945839" + ] }, { "type": "redeemMasset", - "inputQty": "7636405505340299699814", + "inputQty": "229732144663300946264064", "expectedQtys": [ - "2060207576764452489548", - "605810272490408273251", - "5002854117257206692787" + "107610553848551281867982", + "52926678869199005890886", + "69214103831588879516515" ], - "redemptionFee": "2290921651602089909", + "redemptionFee": "68919643398990283879", "reserves": [ - "31280145047119525704499855", - "9198021310209726320158735", - "75958366623984290382760978" + "1101281757377122764011212000", + "541649344164125469198501129", + "708334147319891561025429324" ], - "mAssetSupply": "115908811411683778320313331" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "594542116122802595561472", - "expectedQty": "630376700299902034440949", - "reserves": [ - "31280145047119525704499855", - "9792563426332528915720207", - "75958366623984290382760978" - ] + "mAssetSupply": "2350363519276880206374253826" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2010644990490880245760", - "expectedQty": "1901698819101343120585", - "swapFee": "1206386994294528147", + "type": "redeemMasset", + "inputQty": "2765087980363581903549235", + "expectedQtys": [ + "1295215562641418745480394", + "637032853178965028741215", + "833070560747419218043054" + ], + "redemptionFee": "829526394109074571064", "reserves": [ - "31280145047119525704499855", - "9790661727513427572599622", - "75958366623984290382760978" + "1099986541814481345265731606", + "541012311310946504169759914", + "707501076759144141807386270" ], - "mAssetSupply": "116537178673380183769036667" + "mAssetSupply": "2347599260822910733545275655" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "139189078071396580458496", - "264336092967047159349248", - "201658583219534456422400" - ], - "expectedQty": "617761401049604358486265", - "swapFee": "370879368250713042917", - "reserves": [ - "31140955969048129124041359", - "9526325634546380413250374", - "75756708040764755926338578" + "285269848564370249875456", + "2363573343313404574564352", + "2997648901279129205211136" ], - "mAssetSupply": "115919417272330579410550402" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "854371865999489852506112", - "expectedQty": "866290936869690781771111", - "swapFee": "512623119599693911503", + "expectedQty": "5656416046180217415185440", "reserves": [ - "31140955969048129124041359", - "9526325634546380413250374", - "74890417103895065144567467" + "1100271811663045715515607062", + "543375884654259908744324266", + "710498725660423271012597406" ], - "mAssetSupply": "115065558029450689251955793" + "mAssetSupply": "2353255676869090950960461095" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "79509037328035678781440", + "inputIndex": 1, + "inputQty": "369783954583419042660352", "outputIndex": 2, - "expectedQty": "80654456245357623099056", - "swapFee": "47733442241239137125", + "expectedQty": "370735242734243939960813", + "swapFee": "222709262924539388257", "reserves": [ - "31220465006376164802822799", - "9526325634546380413250374", - "74809762647649707521468411" + "1100271811663045715515607062", + "543745668608843327786984618", + "710127990417689027072636593" ], - "mAssetSupply": "115065605762892930491092918", + "mAssetSupply": "2353255899578353875499849352", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1567501682185893576704", - "expectedQty": "1565701001600117401882", - "swapFee": "940501009311536146", - "reserves": [ - "31218899305374564685420917", - "9526325634546380413250374", - "74809762647649707521468411" - ], - "mAssetSupply": "115064039201711753909052360" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "6257746659926574080", - "expectedQty": "6344106268710904121", - "swapFee": "3754647995955944", - "reserves": [ - "31218899305374564685420917", - "9526325634546380413250374", - "74809756303543438810564290" - ], - "mAssetSupply": "115064032947719741978434224" - }, - { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "257253855918718780964864", - "expectedQty": "242611675672189708463531", - "swapFee": "154352313551231268578", + "inputQty": "212214525216798722228224", + "outputIndex": 0, + "expectedQty": "213541681990564988403869", + "swapFee": "127809150270798276945", "reserves": [ - "31218899305374564685420917", - "9283713958874190704786843", - "74809756303543438810564290" + "1100058269981055150527203193", + "543957883134060126509212842", + "710127990417689027072636593" ], - "mAssetSupply": "114806933444114574428737938" + "mAssetSupply": "2353256027387504146298126297", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "845102776332848663101440", - "387346967575549595090944", - "9408995382391741612032" + "64511346774644195590144", + "97578348449273372213248", + "82878728120042797400064" ], - "expectedQty": "1266924020500229669536695", - "swapFee": "760610778767398240666", + "expectedQty": "245188996548258657182909", + "swapFee": "147201718960331393145", "reserves": [ - "30373796529041716022319477", - "8896366991298641109695899", - "74800347308161047068952258" + "1099993758634280506331613049", + "543860304785610853136999594", + "710045111689568984275236529" ], - "mAssetSupply": "113540009423614344759201243" + "mAssetSupply": "2353010838390955887640943388" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "537247875544467636224", - "outputIndex": 1, - "expectedQty": "503958682106301198781", - "swapFee": "322608085534269304", - "reserves": [ - "30374333776917260489955701", - "8895863032616534808497118", - "74800347308161047068952258" + "type": "redeemMasset", + "inputQty": "420511328702459753267", + "expectedQtys": [ + "196523136022962897635", + "97165217362299484770", + "126855530744336331245" ], - "mAssetSupply": "113540009746222430293470547", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2759362974947603968", - "expectedQty": "2800559853635845313", - "swapFee": "1655617784968562", + "redemptionFee": "126153398610737925", "reserves": [ - "30374333776917260489955701", - "8895863032616534808497118", - "74800344507601193433106945" + "1099993562111144483368715414", + "543860207620393490837514824", + "710044984834038239938905284" ], - "mAssetSupply": "113540006988515073130835141" + "mAssetSupply": "2353010418005780583791928046" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "13098295161218408", - "5944395687809316", - "15312841043335254" + "6836061924093225892577280", + "9210839243021015117201408", + "2002523760601636236427264" ], - "expectedQty": "34525732705615033", - "swapFee": "20727876349178", + "expectedQty": "18063993873821299472400423", "reserves": [ - "30374333763818965328737293", - "8895863026672139120687802", - "74800344492288352389771691" + "1106829624035237709261292694", + "553071046863414505954716232", + "712047508594639876175332548" ], - "mAssetSupply": "113540006953989340425220108" + "mAssetSupply": "2371074411879601883264328469" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1088563140000602545717248", - "expectedQty": "1104645909237030954716331", - "swapFee": "653137884000361527430", - "reserves": [ - "30374333763818965328737293", - "8895863026672139120687802", - "73695698583051321435055360" + "type": "redeemMasset", + "inputQty": "36053035916202837278720", + "expectedQtys": [ + "16824692054425844656309", + "8407120523004384587014", + "10823689391823283759821" ], - "mAssetSupply": "112452096951872738241030290" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "896750231287429578358784", - "expectedQty": "909745858525157867405586", - "swapFee": "538050138772457747015", + "redemptionFee": "10815910774860851183", "reserves": [ - "30374333763818965328737293", - "8895863026672139120687802", - "72785952724526163567649774" + "1106812799343183283416636385", + "553062639742891501570129218", + "712036684905248052891572727" ], - "mAssetSupply": "111555884770724081120418521" + "mAssetSupply": "2371038369659596455287900932" }, { - "type": "redeemMasset", - "inputQty": "1737944182396113282662", - "expectedQtys": [ - "473063882720767893568", - "138548273561228329499", - "1133601996709784447056" + "type": "mintMulti", + "inputQtys": [ + "616380415731491799040", + "2673275628956762505216", + "1702759054232630591488" ], - "redemptionFee": "521383254718833984", + "expectedQty": "5001416834105029094618", "reserves": [ - "30373860699936244560843725", - "8895724478398577892358303", - "72784819122529453783202718" + "1106813415723599014908435425", + "553065313018520458332634434", + "712038387664302285522164215" ], - "mAssetSupply": "111554147347924939725969843" + "mAssetSupply": "2371043371076430560316995550" }, { "type": "mint", "inputIndex": 0, - "inputQty": "9561675194357522628608", - "expectedQty": "9565382280803726122776", + "inputQty": "315874749458138944", + "expectedQty": "314915273344561212", "reserves": [ - "30383422375130602083472333", - "8895724478398577892358303", - "72784819122529453783202718" + "1106813416039473764366574369", + "553065313018520458332634434", + "712038387664302285522164215" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4065695337027333097783296", - "expectedQty": "4056100898209061808822629", - "swapFee": "2439417202216399858669", + "inputIndex": 1, + "inputQty": "651094046920662021308416", + "expectedQty": "648336017974352686406582", + "swapFee": "390656428152397212785", "reserves": [ - "26327321476921540274649704", - "8895724478398577892358303", - "72784819122529453783202718" + "1106813416039473764366574369", + "552416977000546105646227852", + "712038387664302285522164215" ], - "mAssetSupply": "107500456810380626754167992" + "mAssetSupply": "2370392668000853324037461131" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "16145827498144598016", - "expectedQty": "16393717408614076672", - "swapFee": "9687496498886758", + "type": "mint", + "inputIndex": 1, + "inputQty": "177090021969604214784", + "expectedQty": "177737748993532479274", "reserves": [ - "26327321476921540274649704", - "8895724478398577892358303", - "72784802728812045169126046" - ], - "mAssetSupply": "107500440674240625108456734" + "1106813416039473764366574369", + "552417154090568075250442636", + "712038387664302285522164215" + ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "67057896546716933423104", - "expectedQty": "66003620321442855931892", + "type": "redeemMasset", + "inputQty": "3766489435784231589930598", + "expectedQtys": [ + "1758168653806698019469698", + "877512424472186392725713", + "1131070111146710682432705" + ], + "redemptionFee": "1129946830735269476979", "reserves": [ - "26327321476921540274649704", - "8895724478398577892358303", - "72851860625358762102549150" - ] + "1105055247385667066347104671", + "551539641666095888857716923", + "710907317553155574839731510" + ], + "mAssetSupply": "2366627486249648821249486786" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "3413788897316559382380544", - "expectedQty": "3464479473815505910776026", - "swapFee": "2048273338389935629428", + "inputQty": "245105485114800999497728", + "expectedQty": "244796684174484746769416", + "swapFee": "147063291068880599698", "reserves": [ - "26327321476921540274649704", - "8895724478398577892358303", - "69387381151543256191773124" + "1105055247385667066347104671", + "551539641666095888857716923", + "710662520868981090092962094" ], - "mAssetSupply": "104154703670583898517637510" + "mAssetSupply": "2366382527827825089130588756" }, { "type": "mint", "inputIndex": 2, - "inputQty": "957712219336033139949568", - "expectedQty": "943484081927814340747964", + "inputQty": "6244778511346511172861952", + "expectedQty": "6248719654376965773018112", "reserves": [ - "26327321476921540274649704", - "8895724478398577892358303", - "70345093370879289331722692" + "1105055247385667066347104671", + "551539641666095888857716923", + "716907299380327601265824046" ] }, { - "type": "redeemMasset", - "inputQty": "166010280488688716", - "expectedQtys": [ - "41573455589754760", - "14047232524796952", - "111081889503077671" + "type": "mintMulti", + "inputQtys": [ + "25378623918122958848", + "69309093276526166016", + "4865981602823974912" ], - "redemptionFee": "49803084146606", + "expectedQty": "99735789355550463649", "reserves": [ - "26327321435348084684894944", - "8895724464351345367561351", - "70345093259797399828645021" + "1105055272764290984470063519", + "551539710975189165383882939", + "716907304246309204089798958" ], - "mAssetSupply": "105098187586551235453843364" + "mAssetSupply": "2372631347217991410454070517" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "298842667838104041160704", - "285893150990353083400192", - "162454661579501530513408" + "4611578661827692271239168", + "7429568956340008061501440", + "8230667403229713880055808" ], - "expectedQty": "762576890940966166135081", - "swapFee": "457820827060816189394", + "expectedQty": "20290018947643995025523103", "reserves": [ - "26028478767509980643734240", - "8609831313360992284161159", - "70182638598217898298131613" + "1109666851426118676741302687", + "558969279931529173445384379", + "725137971649538917969854766" ], - "mAssetSupply": "104335610695610269287708283" + "mAssetSupply": "2392921366165635405479593620" }, { "type": "redeemMasset", - "inputQty": "458729800143357271972249", + "inputQty": "101015580334560169164", "expectedQtys": [ - "114404437486066870357316", - "37843276092051811862161", - "308477700976496937296165" + "46829793267341494810", + "23589436584815444498", + "30602032726313411039" ], - "redemptionFee": "137618940043007181591", + "redemptionFee": "30304674100368050", "reserves": [ - "25914074330023913773376924", - "8571988037268940472298998", - "69874160897241401360835448" + "1109666804596325409399807877", + "558969256342092588629939881", + "725137941047506191656443727" ], - "mAssetSupply": "103877018514406955022917625" + "mAssetSupply": "2392921265180359745019792506" }, { "type": "mintMulti", "inputQtys": [ - "43117736117170020352", - "38257893882384777216", - "63280366597653225472" + "233212280338700491030528", + "400486695294209944977408", + "147837086554585630244864" + ], + "expectedQty": "782378798689049597605542", + "reserves": [ + "1109900016876664109890838405", + "559369743037386798574917289", + "725285778134060777286688591" + ], + "mAssetSupply": "2393703643979048794617398048" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "118842251713027623146749952", + "outputIndex": 2, + "expectedQty": "118177006458777806516046790", + "swapFee": "71071645616695827212022", + "reserves": [ + "1228742268589691733037588357", + "559369743037386798574917289", + "607108771675282970770641801" ], - "expectedQty": "146146241691718244751", + "mAssetSupply": "2393774715624665490444610070", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "5415577545040133829427200", + "outputIndex": 2, + "expectedQty": "5375823524697092835561280", + "swapFee": "3235919934957065339751", "reserves": [ - "25914117447760030943397276", - "8572026295162822857076214", - "69874224177607999014060920" + "1234157846134731866867015557", + "559369743037386798574917289", + "601732948150585877935080521" ], - "mAssetSupply": "103877164660648646741162376" + "mAssetSupply": "2393777951544600447509949821", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "187728185574434415837184", - "114889346157480113078272", - "155964163576378607796224" + "9585305961707758535311360", + "19453987849785297306910720", + "17445264920771618966339584" ], - "expectedQty": "463814894074578714897330", - "swapFee": "278456010050777695555", + "expectedQty": "46565561376628999686021890", + "swapFee": "27956110492272763469694", "reserves": [ - "25726389262185596527560092", - "8457136949005342743997942", - "69718260014031620406264696" + "1224572540173024108331704197", + "539915755187601501268006569", + "584287683229814258968740937" ], - "mAssetSupply": "103413349766574068026265046" + "mAssetSupply": "2347212390167971447823927931" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1654718360910802049826816", - "expectedQty": "1679618969089870744869405", - "swapFee": "992831016546481229896", + "inputQty": "36543189970571715674112", + "expectedQty": "36419052489702743703754", + "swapFee": "21925913982343029404", "reserves": [ - "25726389262185596527560092", - "8457136949005342743997942", - "68038641044941749661395291" + "1224572540173024108331704197", + "539915755187601501268006569", + "584251264177324556225037183" ], - "mAssetSupply": "101759624236679812457668126" + "mAssetSupply": "2347175868903914858451283223" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3755346316712735670272", - "expectedQty": "3540538246400100443633", - "swapFee": "2253207790027641402", + "inputQty": "1786081686904716425953280", + "expectedQty": "1777986949750859299135251", + "swapFee": "1071649012142829855571", "reserves": [ - "25726389262185596527560092", - "8453596410758942643554309", - "68038641044941749661395291" + "1224572540173024108331704197", + "538137768237850641968871318", + "584251264177324556225037183" ], - "mAssetSupply": "101755871143570889749639256" + "mAssetSupply": "2345390858866022284855185514" }, { - "type": "redeemBassets", - "inputQtys": [ - "774842690711497610362880", - "71956687195008418185216", - "490290841492869481496576" - ], - "expectedQty": "1335969978839202058693185", - "swapFee": "802063225238664433876", + "type": "redeem", + "inputIndex": 0, + "inputQty": "217559218999379001344", + "expectedQty": "218381097891956153748", + "swapFee": "130535531399627400", "reserves": [ - "24951546571474098917197212", - "8381639723563934225369093", - "67548350203448880179898715" + "1224572321791926216375550449", + "538137768237850641968871318", + "584251264177324556225037183" ], - "mAssetSupply": "100419901164731687690946071" + "mAssetSupply": "2345390641437338816875811570" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "12272564773183154176", - "62260424419195953152", - "13962974007395260416" + "209453177315438821376", + "133160587491045834752", + "422588314690646638592" ], - "expectedQty": "92054658623955435920", - "swapFee": "55265954747221594", + "expectedQty": "765998929140756559550", "reserves": [ - "24951534298909325734043036", - "8381577463139515029415941", - "67548336240474872784638299" + "1224572531245103531814371825", + "538137901398438133014706070", + "584251686765639246871675775" ], - "mAssetSupply": "100419809110073063735510151" + "mAssetSupply": "2345391407436267957632371120" }, { - "type": "redeemBassets", - "inputQtys": [ - "551643453634229764096", - "2406397177195264475136", - "2010566580778046324736" - ], - "expectedQty": "5083834687285378304166", - "swapFee": "3052132091626202704", + "type": "swap", + "inputIndex": 2, + "inputQty": "310846728791400426504192", + "outputIndex": 0, + "expectedQty": "312891870788022476777329", + "swapFee": "187029089742207319673", "reserves": [ - "24950982655455691504278940", - "8379171065962319764940805", - "67546325673894094738313563" + "1224259639374315509337594496", + "538137901398438133014706070", + "584562533494430647298179967" ], - "mAssetSupply": "100414725275385778357205985" + "mAssetSupply": "2345391594465357699839690793", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1544628980938753179648000", - "expectedQty": "1439511744463730612632038", - "swapFee": "926777388563251907788", + "inputIndex": 2, + "inputQty": "19186805054780958960517120", + "expectedQty": "19118669759165626424877247", + "swapFee": "11512083032868575376310", "reserves": [ - "24950982655455691504278940", - "6939659321498589152308767", - "67546325673894094738313563" + "1224259639374315509337594496", + "538137901398438133014706070", + "565443863735265020873302720" ], - "mAssetSupply": "98871023071835588429465773" + "mAssetSupply": "2326216301493609609454549983" }, { "type": "mintMulti", "inputQtys": [ - "17810042120810302275584", - "25804828053418564124672", - "26728130624120716001280" + "749550570501427685228544", + "2809162147935562175086592", + "2033793450099531331928064" ], - "expectedQty": "72141657958819715077497", + "expectedQty": "5606303013999891013968581", "reserves": [ - "24968792697576501806554524", - "6965464149552007716433439", - "67573053804518215454314843" + "1225009189944816937022823040", + "540947063546373695189792662", + "567477657185364552205230784" ], - "mAssetSupply": "98943164729794408144543270" + "mAssetSupply": "2331822604507609500468518564" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "5673812833990856425865216", - "expectedQty": "5945396441712246030073660", + "inputIndex": 0, + "inputQty": "55969080498092676334223360", + "expectedQty": "55711102389140168735617347", "reserves": [ - "24968792697576501806554524", - "12639276983542864142298655", - "67573053804518215454314843" + "1280978270442909613357046400", + "540947063546373695189792662", + "567477657185364552205230784" ] }, + { + "type": "redeemMasset", + "inputQty": "132285592362009781862", + "expectedQtys": [ + "70953608876080478023", + "29963151799805849187", + "31432685989219003808" + ], + "redemptionFee": "39685677708602934", + "reserves": [ + "1280978199489300737276568377", + "540947033583221895383943475", + "567477625752678562986226976" + ], + "mAssetSupply": "2387533574650842984902956983" + }, { "type": "swap", "inputIndex": 0, - "inputQty": "202935588427358332256256", + "inputQty": "1930666208416601129091072", "outputIndex": 1, - "expectedQty": "198286958772252339557022", - "swapFee": "122217894405430353960", + "expectedQty": "1912181493244431383311822", + "swapFee": "1152863220550218050151", "reserves": [ - "25171728286003860138810780", - "12440990024770611802741633", - "67573053804518215454314843" + "1282908865697717338405659449", + "539034852089977464000631653", + "567477625752678562986226976" ], - "mAssetSupply": "104888683389401059604970890", + "mAssetSupply": "2387534727514063535121007134", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "204022085408937508864", - "191195351816005287936", - "249661184687876243456" - ], - "expectedQty": "648121597751739452775", - "swapFee": "389106422504546399", + "type": "swap", + "inputIndex": 1, + "inputQty": "64669541315204515492790272", + "outputIndex": 2, + "expectedQty": "64566166804861644827995284", + "swapFee": "38940585323475176923356", "reserves": [ - "25171524263918451201301916", - "12440798829418795797453697", - "67572804143333527578071387" + "1282908865697717338405659449", + "603704393405181979493421925", + "502911458947816918158231692" ], - "mAssetSupply": "104888035267803307865518115" + "mAssetSupply": "2387573668099387010297930490", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "16940935803941356", - "expectedQtys": [ - "4064345821722721", - "2008766263460675", - "10910711695585351" + "type": "mintMulti", + "inputQtys": [ + "4332513275688134656", + "413584297284184512", + "392501687632837248" ], - "redemptionFee": "5082280741182", + "expectedQty": "5120753563644347990", "reserves": [ - "25171524259854105379579195", - "12440798827410029533993022", - "67572804132422815882486036" + "1282908870030230614093794105", + "603704393818766276777606437", + "502911459340318605791068940" ], - "mAssetSupply": "104888035250867454342317941" + "mAssetSupply": "2387573673220140573942278480" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6584736060345617408", - "6686867069771841536", - "9637915231941527552" + "415092566741441878949888", + "464080737390370840641536", + "508924061632751598567424" ], - "expectedQty": "23011197288614034487", - "swapFee": "13815007377594977", + "expectedQty": "1390029509199755008967296", "reserves": [ - "25171517675118045033961787", - "12440792140542959762151486", - "67572794494507583940958484" + "1283323962596972055972743993", + "604168474556156647618247973", + "503420383401951357389636364" ], - "mAssetSupply": "104888012239670165728283454" + "mAssetSupply": "2388963702729340328951245776" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "343538798447212743360512", - "expectedQty": "352592102033241757714117", + "inputQty": "283606168596964419043328", + "expectedQty": "282705087113023042361373", + "swapFee": "170163701158178651425", "reserves": [ - "25171517675118045033961787", - "12784330938990172505511998", - "67572794494507583940958484" - ] + "1283323962596972055972743993", + "603885769469043624575886600", + "503420383401951357389636364" + ], + "mAssetSupply": "2388680266724444522710853873" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "262521430184806307594240", + "expectedQty": "260955761788511660303350", + "swapFee": "157512858110883784556", + "reserves": [ + "1283323962596972055972743993", + "603885769469043624575886600", + "503159427640162845729333014" + ], + "mAssetSupply": "2388417902807117827287044189" }, { "type": "redeemMasset", - "inputQty": "114808154763211046912", + "inputQty": "26657017813281", "expectedQtys": [ - "27451652775011350074", - "13942385931099690771", - "73693804062282136814" + "14318820342973", + "6737918166202", + "5614053550182" ], - "redemptionFee": "34442446428963314", + "redemptionFee": "7997105343", "reserves": [ - "25171490223465270022611713", - "12784316996604241405821227", - "67572720800703521658821670" + "1283323962596957737152401020", + "603885769469036886657720398", + "503159427640157231675782832" ], - "mAssetSupply": "105240489567991090703913973" + "mAssetSupply": "2388417902807091178266336251" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4262427700148704903168", - "5269600485736919859200", - "143898708998151503872" + "105358409276927518965760", + "330904785730845391454208", + "44081918079514517176320" ], - "expectedQty": "9825165301287665116538", + "expectedQty": "480928172771773667030990", + "swapFee": "288730141748113068059", "reserves": [ - "25175752651165418727514881", - "12789586597089978325680427", - "67572864699412519810325542" + "1283218604187680809633435260", + "603554864683306041266266190", + "503115345722077717158606512" ], - "mAssetSupply": "105250314733292378369030511" + "mAssetSupply": "2387936974634319404599305261" }, { "type": "redeemBassets", "inputQtys": [ - "20278654878502957056", - "2085290369955585792", - "15657592871378061312" + "88960616782161575936", + "595891679494310068224", + "137232514859192451072" ], - "expectedQty": "37985824857364070602", - "swapFee": "22805178021231181", + "expectedQty": "823937655401435255079", + "swapFee": "494659388874185664", "reserves": [ - "25175732372510540224557825", - "12789584511799608370094635", - "67572849041819648432264230" + "1283218515227064027471859324", + "603554268791626546956197966", + "503115208489562857966155440" ], - "mAssetSupply": "105250276747467521004959909" + "mAssetSupply": "2387936150696664003164050182" }, { "type": "redeemMasset", - "inputQty": "5316713732383425", + "inputQty": "341418279265627232901529", "expectedQtys": [ - "1271369639247509", - "645871556239088", - "3412415870889625" + "183414796490945374039315", + "86268068975040584322766", + "71911971719239183528927" ], - "redemptionFee": "1595014119715", + "redemptionFee": "102425483779688169870", "reserves": [ - "25175732371239170585310316", - "12789584511153736813855547", - "67572849038407232561374605" + "1283035100430573082097820009", + "603468000722651506371875200", + "503043296517843618782626513" ], - "mAssetSupply": "105250276742152402286696199" + "mAssetSupply": "2387594834842882155619318523" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6352979602943789498368", - "5229007535396237606912", - "22908230780894259970048" + "4919736724468014176534528", + "10477761165768750184529920", + "3724596523049085204168704" ], - "expectedQty": "34407410023925637145528", - "swapFee": "20656840118426438150", + "expectedQty": "19144932983152881300403671", "reserves": [ - "25169379391636226795811948", - "12784355503618340576248635", - "67549940807626338301404557" + "1287954837155041096274354537", + "613945761888420256556405120", + "506767893040892703986795217" ], - "mAssetSupply": "105215869332128476649550671" + "mAssetSupply": "2406739767826035036919722194" }, { - "type": "redeemMasset", - "inputQty": "7897252031008963192422", - "expectedQtys": [ - "1888586798753949631647", - "959275342431929838136", - "5068616292870795628575" - ], - "redemptionFee": "2369175609302688957", + "type": "mint", + "inputIndex": 0, + "inputQty": "49807147077633905874960384", + "expectedQty": "49561012282740291534053116", "reserves": [ - "25167490804837472846180301", - "12783396228275908646410499", - "67544872191333467505775982" - ], - "mAssetSupply": "105207974449273076989047206" + "1337761984232675002149314921", + "613945761888420256556405120", + "506767893040892703986795217" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "741817384643919", - "outputIndex": 1, - "expectedQty": "715283672293313", - "swapFee": "440423448983", + "inputQty": "29496579783007232065536", + "expectedQty": "29667985435953337384366", "reserves": [ - "25167490804837472846180301", - "12783396227560624974117186", - "67544872192075284890419901" - ], - "mAssetSupply": "105207974449273517412496189", - "hardLimitError": false, - "insufficientLiquidityError": false + "1337761984232675002149314921", + "613945761888420256556405120", + "506797389620675711218860753" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1376901803365957090934784", - "expectedQty": "1408603568405759788063561", + "inputIndex": 2, + "inputQty": "2545086350975622900088832", + "expectedQty": "2559779209902871219057901", "reserves": [ - "25167490804837472846180301", - "14160298030926582065051970", - "67544872192075284890419901" + "1337761984232675002149314921", + "613945761888420256556405120", + "509342475971651334118949585" ] }, { "type": "mintMulti", "inputQtys": [ - "144655481406425242009600", - "145186424306710962241536", - "136560503866393926565888" + "38051717830412492800", + "19634036137306066944", + "8354337289543385088" ], - "expectedQty": "428642686285962951381489", + "expectedQty": "65949470873604148038", "reserves": [ - "25312146286243898088189901", - "14305484455233293027293506", - "67681432695941678816985789" + "1337762022284392832561807721", + "613945781522456393862472064", + "509342484325988623662334673" ], - "mAssetSupply": "107045220703965240151941239" + "mAssetSupply": "2458890293253585026614365615" }, { - "type": "redeemMasset", - "inputQty": "309656940817694928666624", - "expectedQtys": [ - "73200188746984837792692", - "41370026484448097521056", - "195727916233706934330226" + "type": "redeemBassets", + "inputQtys": [ + "10015870035245576192", + "2769767658730773504", + "30436804731515617280" ], - "redemptionFee": "92897082245308478599", + "expectedQty": "43353923569217362448", + "swapFee": "26027970924084868", "reserves": [ - "25238946097496913250397209", - "14264114428748844929772450", - "67485704779707971882655563" + "1337762012268522797316231529", + "613945778752688735131698560", + "509342453889183892146717393" ], - "mAssetSupply": "106735656660229790531753214" + "mAssetSupply": "2458890249899661457397003167" }, { - "type": "mintMulti", - "inputQtys": [ - "285096903590647194189824", - "51168730754489908199424", - "38839653265167123218432" - ], - "expectedQty": "376860914226791512903191", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3727240092455969751040", + "expectedQty": "3743973360636442910971", + "swapFee": "2236344055473581850", "reserves": [ - "25524043001087560444587033", - "14315283159503334837971874", - "67524544432973139005873995" + "1337758268295162160873320558", + "613945778752688735131698560", + "509342453889183892146717393" ], - "mAssetSupply": "107112517574456582044656405" + "mAssetSupply": "2458886524895913056900833977" }, { - "type": "redeemMasset", - "inputQty": "12367633945113711031091", - "expectedQtys": [ - "2946222590755892259777", - "1652403211975431229484", - "7794311356960521448722" + "type": "mintMulti", + "inputQtys": [ + "634362624823672596070400", + "463884324512819230801920", + "686078327107617069989888" ], - "redemptionFee": "3710290183534113309", + "expectedQty": "1786325485591521517661628", "reserves": [ - "25521096778496804552327256", - "14313630756291359406742390", - "67516750121616178484425273" + "1338392630919985833469390958", + "614409663077201554362500480", + "510028532216291509216707281" ], - "mAssetSupply": "107100153650801651867738623" + "mAssetSupply": "2460672850381504578418495605" }, { - "type": "mintMulti", - "inputQtys": [ - "1816473262289125376000", - "2742952325256498905088", - "1106873487228870197248" - ], - "expectedQty": "5718196628859635739690", + "type": "swap", + "inputIndex": 2, + "inputQty": "10794554800204442842955776", + "outputIndex": 0, + "expectedQty": "10902032437325510392518473", + "swapFee": "6512802865242000227573", "reserves": [ - "25522913251759093677703256", - "14316373708616615905647478", - "67517856995103407354622521" + "1327490598482660323076872485", + "614409663077201554362500480", + "520823087016495952059663057" ], - "mAssetSupply": "107105871847430511503478313" + "mAssetSupply": "2460679363184369820418723178", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "1587869796399436529664", - "expectedQty": "1602011627644428084750", - "swapFee": "952721877839661917", + "inputIndex": 0, + "inputQty": "6200199573665741799424", + "expectedQty": "6227054324428825000830", + "swapFee": "3720119744199445079", "reserves": [ - "25522913251759093677703256", - "14316373708616615905647478", - "67516254983475762926537771" + "1327484371428335894251871655", + "614409663077201554362500480", + "520823087016495952059663057" ], - "mAssetSupply": "107104284930355989906610566" + "mAssetSupply": "2460673166704915898876368833" }, { "type": "redeemBassets", "inputQtys": [ - "5325787558621933691994112", - "1239586395501745301094400", - "813117633430782910398464" + "14269950479847909345984512", + "14698066356914980067999744", + "11296248474979230726225920" ], - "expectedQty": "7426833172043842048704223", - "swapFee": "4458775168327301610188", + "expectedQty": "40295788834876807129313289", + "swapFee": "24191988494022497776253", "reserves": [ - "20197125693137159985709144", - "13076787313114870604553078", - "66703137350044980016139307" + "1313214420948487984905887143", + "599711596720286574294500736", + "509526838541516721333437137" ], - "mAssetSupply": "99677451758312147857906343" + "mAssetSupply": "2420377377870039091747055544" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "2296185939876863906152448", - "expectedQty": "2231644250754880456811239", - "swapFee": "1377711563926118343691", + "inputQty": "26147017333903250350407680", + "expectedQty": "26216168662395131920737381", "reserves": [ - "20197125693137159985709144", - "10845143062359990147741839", - "66703137350044980016139307" - ], - "mAssetSupply": "97382643529999210070097586" + "1313214420948487984905887143", + "625858614054189824644908416", + "509526838541516721333437137" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "985581892365210880049152", - "2635462952570872263606272", - "2218815208263845765185536" + "30960444497288613534367744", + "60988448875099862033498112", + "20179282763803666803589120" ], - "expectedQty": "5930625710436754625757825", - "swapFee": "3560511733302033995852", + "expectedQty": "112223710455279206098985059", "reserves": [ - "19211543800771949105659992", - "8209680109789117884135567", - "64484322141781134250953771" + "1344174865445776598440254887", + "686847062929289686678406528", + "529706121305320388137026257" ], - "mAssetSupply": "91452017819562455444339761" + "mAssetSupply": "2558817256987713429766777984" }, { - "type": "mintMulti", - "inputQtys": [ - "28580199972992913408", - "123737913577706881024", - "148947048347462139904" + "type": "redeem", + "inputIndex": 1, + "inputQty": "8573567552449067089920", + "expectedQty": "8553113938309370153968", + "swapFee": "5144140531469440253", + "reserves": [ + "1344174865445776598440254887", + "686838509815351377308252560", + "529706121305320388137026257" ], - "expectedQty": "305996583578620405939", + "mAssetSupply": "2558808688564301512169128317" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "60377195438571006197760", + "expectedQty": "60233127990417099695608", + "swapFee": "36226317263142603718", "reserves": [ - "19211572380971922098573400", - "8209803847702695591016591", - "64484471088829481713093675" + "1344174865445776598440254887", + "686778276687360960208556952", + "529706121305320388137026257" ], - "mAssetSupply": "91452323816146034064745700" + "mAssetSupply": "2558748347595180204305534275" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "108461150261307104034816", - "expectedQty": "107481657726352475899352", - "swapFee": "65076690156784262420", + "inputIndex": 1, + "inputQty": "249386173733493120", + "expectedQty": "248791006195625641", + "swapFee": "149631704240095", "reserves": [ - "19104090723245569622674048", - "8209803847702695591016591", - "64484471088829481713093675" + "1344174865445776598440254887", + "686778276438569954012931311", + "529706121305320388137026257" ], - "mAssetSupply": "91343927742574883744973304" + "mAssetSupply": "2558748347345943662276281250" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "21739348216411328610304", - "22598482150076935307264", - "19861194199463526137856" + "11088667321294028353306624", + "8667264746029261135020032", + "11749882109678602078388224" ], - "expectedQty": "65324904289386275479312", + "expectedQty": "31537744654939074427012533", + "swapFee": "18934007197281813744454", "reserves": [ - "19125830071461980951284352", - "8232402329852772526323855", - "64504332283028945239231531" + "1333086198124482570086948263", + "678111011692540692877911279", + "517956239195641786058638033" ], - "mAssetSupply": "91409252646864270020452616" + "mAssetSupply": "2527210602691004587849268717" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "98296082500061725982720", - "expectedQty": "97395204267333832995106", - "swapFee": "58977649500037035589", + "inputIndex": 2, + "inputQty": "9921150995845234082971648", + "expectedQty": "9856336302729521459996115", + "swapFee": "5952690597507140449782", "reserves": [ - "19028434867194647118289246", - "8232402329852772526323855", - "64504332283028945239231531" + "1333086198124482570086948263", + "678111011692540692877911279", + "508099902892912264598641918" ], - "mAssetSupply": "91311015542013708331505485" + "mAssetSupply": "2517295404385756860906746851" }, { "type": "redeemBassets", "inputQtys": [ - "18244772740616882749440", - "38157792969142019555328", - "34927025411753070559232" + "7016967178417953237368832", + "4983557918640937151496192", + "761887900222577168089088" ], - "expectedQty": "93053541586532935974613", - "swapFee": "55865644338522875309", + "expectedQty": "12742708232597027243825587", + "swapFee": "7650215068599375971878", "reserves": [ - "19010190094454030235539806", - "8194244536883630506768527", - "64469405257617192168672299" + "1326069230946064616849579431", + "673127453773899755726415087", + "507338014992689687430552830" ], - "mAssetSupply": "91217962000427175395530872" + "mAssetSupply": "2504552696153159833662921264" }, { - "type": "redeemBassets", - "inputQtys": [ - "57208254955777186332672", - "7172387645558351724544", - "19160398773621731885056" + "type": "redeemMasset", + "inputQty": "776634506421154611200", + "expectedQtys": [ + "411076262400317961873", + "208666871501878654770", + "157272795499523902806" ], - "expectedQty": "84126655184724552125890", - "swapFee": "50506296888968112142", + "redemptionFee": "232990351926346383", "reserves": [ - "18952981839498253049207134", - "8187072149238072155043983", - "64450244858843570436787243" + "1326068819869802216531617558", + "673127245107028253847760317", + "507337857719894187906650024" ], - "mAssetSupply": "91133835345242450843404982" + "mAssetSupply": "2504551919751643764434656447" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "63139573791241172680704", - "expectedQty": "62073091871218748533607", + "type": "swap", + "inputIndex": 0, + "inputQty": "114255955001989738266624", + "outputIndex": 2, + "expectedQty": "112966382958842914376734", + "swapFee": "68231099567235562669", "reserves": [ - "18952981839498253049207134", - "8187072149238072155043983", - "64513384432634811609467947" - ] + "1326183075824804206269884182", + "673127245107028253847760317", + "507224891336935344992273290" + ], + "mAssetSupply": "2504551987982743331670219116", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "314458551849212939599872", - "46084257695147799609344", - "294439903586013753114624" - ], - "expectedQty": "655451921653132420261184", - "swapFee": "393507257346287224491", + "type": "swap", + "inputIndex": 2, + "inputQty": "12640960411990121533931520", + "outputIndex": 1, + "expectedQty": "12683120785965696250348008", + "swapFee": "7629107226582597594860", "reserves": [ - "18638523287649040109607262", - "8140987891542924355434639", - "64218944529048797856353323" + "1326183075824804206269884182", + "660444124321062557597412309", + "519865851748925466526204810" ], - "mAssetSupply": "90540456515460537171677405" + "mAssetSupply": "2504559617089969914267813976", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "68502155728304872620032", - "expectedQty": "72371192470769347510674", + "inputQty": "1579206915221679220195328", + "expectedQty": "1582374376987602104206896", "reserves": [ - "18638523287649040109607262", - "8209490047271229228054671", - "64218944529048797856353323" + "1326183075824804206269884182", + "662023331236284236817607637", + "519865851748925466526204810" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "5002262370653518574911488", - "expectedQty": "5031312639644029680138120", - "reserves": [ - "23640785658302558684518750", - "8209490047271229228054671", - "64218944529048797856353323" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "1441584988085718351872", - "1267118810591310905344", - "1457834187661001097216" - ], - "expectedQty": "4220741939022454272836", + "inputQty": "630299816908817301504", + "expectedQty": "632868435401743957080", + "swapFee": "378179890145290380", "reserves": [ - "23642227243290644402870622", - "8210757166081820538960015", - "64220402363236458857450539" + "1326182442956368804525927102", + "662023331236284236817607637", + "519865851748925466526204810" ], - "mAssetSupply": "95648361089514358653599035" + "mAssetSupply": "2506141361545320497700009748" }, { "type": "mint", "inputIndex": 1, - "inputQty": "27706403106966414032896", - "expectedQty": "29267658259038570117641", + "inputQty": "7158754416164374315008", + "expectedQty": "7173030388787822463074", "reserves": [ - "23642227243290644402870622", - "8238463569188786952992911", - "64220402363236458857450539" + "1326182442956368804525927102", + "662030489990700401191922645", + "519865851748925466526204810" ] }, { - "type": "mintMulti", - "inputQtys": [ - "3461434571172", - "9805728355668", - "21869657464013" - ], - "expectedQty": "35371816761997", + "type": "redeem", + "inputIndex": 2, + "inputQty": "30496833727087", + "expectedQty": "30308034463288", + "swapFee": "18298100236", "reserves": [ - "23642227243294105837441794", - "8238463569198592681348579", - "64220402363258328514914552" + "1326182442956368804525927102", + "662030489990700401191922645", + "519865851748895158491741522" ], - "mAssetSupply": "95677628747808769040478673" + "mAssetSupply": "2506148534575678806986845971" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "111351439574920176", - "expectedQty": "117605079463975687", + "inputIndex": 0, + "inputQty": "294834527496384634945536", + "expectedQty": "293461470623843475486075", "reserves": [ - "23642227243294105837441794", - "8238463680550032256268755", - "64220402363258328514914552" + "1326477277483865189160872638", + "662030489990700401191922645", + "519865851748895158491741522" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "15270304468860191899648", - "expectedQty": "15042489231917660093351", + "inputIndex": 0, + "inputQty": "81473892394306384166912", + "expectedQty": "81094379557907797620811", "reserves": [ - "23642227243294105837441794", - "8238463680550032256268755", - "64235672667727188706814200" + "1326558751376259495545039550", + "662030489990700401191922645", + "519865851748895158491741522" ] }, - { - "type": "redeemMasset", - "inputQty": "5777377222433310140006", - "expectedQtys": [ - "1426954501430808256738", - "497242189276796937760", - "3877019763087174103916" - ], - "redemptionFee": "1733213166729993042", - "reserves": [ - "23640800288792675029185056", - "8237966438360755459330995", - "64231795647964101532710284" - ], - "mAssetSupply": "95686895710636499584400747" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "66711964280634321403904", - "expectedQty": "67681095336690715078511", - "swapFee": "40027178568380592842", - "reserves": [ - "23640800288792675029185056", - "8237966438360755459330995", - "64164114552627410817631773" - ], - "mAssetSupply": "95620223773534433643589685" - }, { "type": "mint", "inputIndex": 1, - "inputQty": "2120430632892085896740864", - "expectedQty": "2214968651106262236338004", + "inputQty": "121185088739425255424", + "expectedQty": "121426974369084666367", "reserves": [ - "23640800288792675029185056", - "10358397071252841356071859", - "64164114552627410817631773" + "1326558751376259495545039550", + "662030611175789140617178069", + "519865851748895158491741522" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "15424574776890832", - "expectedQty": "14888354056431957", - "swapFee": "9254744866134", + "inputQty": "26660950516754210824912896", + "expectedQty": "26709166093841716508337146", "reserves": [ - "23640800288792675029185056", - "10358397056364487299639902", - "64164114552627410817631773" - ], - "mAssetSupply": "97835192409225375847902991" + "1326558751376259495545039550", + "688691561692543351442090965", + "519865851748895158491741522" + ] }, { "type": "redeemMasset", - "inputQty": "11380154458658419664486", + "inputQty": "20111090855595287039180", "expectedQtys": [ - "2749064435833339620947", - "1204523561471472355249", - "7461307706109498753061" + "10528264301105554843430", + "5465816554236935304352", + "4125927391194230125024" ], - "redemptionFee": "3414046337597525899", + "redemptionFee": "6033327256678586111", "reserves": [ - "23638051224356841689564109", - "10357192532803015827284653", - "64156653244921301318878712" + "1326548223111958389990196120", + "688686095875989114506786613", + "519861725821503964261616498" ], - "mAssetSupply": "97823815668813055025764404" + "mAssetSupply": "2533212272889148305244503301" }, { "type": "redeemBassets", "inputQtys": [ - "1084274245494199418880", - "220382149221905024", - "1432610166708321910784" + "80567890257461670576128", + "289215156161726983962624", + "10234206201601228537856" ], - "expectedQty": "2503575985689794380395", - "swapFee": "1503047419865796105", + "expectedQty": "380182223687408432039786", + "swapFee": "228246281981634039647", "reserves": [ - "23636966950111347490145229", - "10357192312420866605379629", - "64155220634754592996967928" + "1326467655221700928319619992", + "688396880719827387522823989", + "519851491615302363033078642" ], - "mAssetSupply": "97821312092827365231384009" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "80744595945100037586944", - "expectedQty": "79763874531616511553778", - "reserves": [ - "23636966950111347490145229", - "10357192312420866605379629", - "64235965230699693034554872" - ] + "mAssetSupply": "2532832090665460896812463515" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "482750106754172795748352", - "expectedQty": "480649316197571457239272", - "swapFee": "289650064052503677449", + "type": "redeemMasset", + "inputQty": "19303923327318000", + "expectedQtys": [ + "10106610776898233", + "5245027502991248", + "3960847945943854" + ], + "redemptionFee": "5791176998195", "reserves": [ - "23156317633913776032905957", - "10357192312420866605379629", - "64235965230699693034554872" + "1326467655211594317542721759", + "688396880714582360019832741", + "519851491611341515087134788" ], - "mAssetSupply": "97418615510668861450866884" + "mAssetSupply": "2532832090646162764662143710" }, { - "type": "redeemBassets", - "inputQtys": [ - "8750150867363661086720", - "7161285660838535888896", - "1711609966343560101888" + "type": "redeemMasset", + "inputQty": "132197972860241587889766", + "expectedQtys": [ + "69212534392046092524423", + "35919226974467748149125", + "27124852310226117624231" ], - "expectedQty": "17890283499235692065630", - "swapFee": "10740614468222348648", + "redemptionFee": "39659391858072476366", "reserves": [ - "23147567483046412371819237", - "10350031026760028069490733", - "64234253620733349474452984" + "1326398442677202271450197336", + "688360961487607892271683616", + "519824366759031288969510557" ], - "mAssetSupply": "97400725227169625758801254" + "mAssetSupply": "2532699932332694381146730310" }, { "type": "redeemBassets", "inputQtys": [ - "355363882739287443111936", - "467211495016878800109568", - "147434634388775087636480" + "7087855071683687634436096", + "867849429139850658840576", + "3075502571906039445192704" ], - "expectedQty": "986889028022528837586071", - "swapFee": "592488910159613070393", + "expectedQty": "11018339833305077786609987", + "swapFee": "6614972883713274636748", "reserves": [ - "22792203600307124928707301", - "9882819531743149269381165", - "64086818986344574386816504" + "1319310587605518583815761240", + "687493112058468041612843040", + "516748864187125249524317853" ], - "mAssetSupply": "96413836199147096921215183" + "mAssetSupply": "2521681592499389303360120323" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "942135012413956423680", - "expectedQty": "953844734796952928395", - "swapFee": "565281007448373854", + "inputQty": "1854708782983737803538432", + "expectedQty": "1842842440744702692945271", + "swapFee": "1112825269790242682123", "reserves": [ - "22792203600307124928707301", - "9882819531743149269381165", - "64085865141609777433888109" + "1319310587605518583815761240", + "687493112058468041612843040", + "514906021746380546831372582" ], - "mAssetSupply": "96412894629415690413165357" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "18615132795366072", - "expectedQty": "18692437584250711", - "reserves": [ - "22792203618922257724073373", - "9882819531743149269381165", - "64085865141609777433888109" - ] + "mAssetSupply": "2519827996541675355799264014" }, { - "type": "redeemMasset", - "inputQty": "21854292052413232", - "expectedQtys": [ - "5164848996403886", - "2239505727203481", - "14522238472173203" - ], - "redemptionFee": "6556287615723", - "reserves": [ - "22792203613757408727669487", - "9882819529503643542177684", - "64085865127087538961714906" + "type": "redeemBassets", + "inputQtys": [ + "195159925847457274003456", + "607825458790058264887296", + "892687299762293231845376" ], - "mAssetSupply": "96412894626260392232618559" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "524652259974761500639232", - "expectedQty": "531132940008893887120511", - "swapFee": "314791355984856900383", + "expectedQty": "1700988829374582200262724", + "swapFee": "1021206021237491815246", "reserves": [ - "22792203613757408727669487", - "9882819529503643542177684", - "63554732187078645074594395" + "1319115427679671126541757784", + "686885286599677983347955744", + "514013334446618253599527206" ], - "mAssetSupply": "95888557157641615588879710" + "mAssetSupply": "2518127007712300773599001290" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "372740761046860890112", - "283195160233551134720", - "89014665539208708096" + "1457697210686432083968", + "2657046360752067706880", + "2113864196947851608064" ], - "expectedQty": "756084621271363329338", + "expectedQty": "6238617307103968048797", + "swapFee": "3745417634843286801", "reserves": [ - "22792576354518455588559599", - "9883102724663877093312404", - "63554821201744184283302491" + "1319113969982460440109673816", + "686882629553317231280248864", + "514011220582421305747919142" ], - "mAssetSupply": "95889313242262886952209048" + "mAssetSupply": "2518120769094993669630952493" }, { "type": "redeemMasset", - "inputQty": "1118248741120286235033", + "inputQty": "31122280464309034365747", "expectedQtys": [ - "265724329675910016155", - "115220886212314833650", - "740945735963624701081" + "16298471181924696742467", + "8486860876235169984286", + "6350927407705283160501" ], - "redemptionFee": "335474622336085870", + "redemptionFee": "9336684139292710309", "reserves": [ - "22792310630188779678543444", - "9882987503777664778478754", - "63554080256008220658601410" + "1319097671511278515412931349", + "686874142692440996110264578", + "514004869655013600464758641" ], - "mAssetSupply": "95888195328996389002059885" + "mAssetSupply": "2518089656151213499889297055" }, { - "type": "redeemMasset", - "inputQty": "119918223946317736339046", - "expectedQtys": [ - "28495618642179459885595", - "12356002316854213018688", - "79457184640637617148075" - ], - "redemptionFee": "35975467183895320901", - "reserves": [ - "22763815011546600218657849", - "9870631501460810565460066", - "63474623071367583041453335" + "type": "redeemBassets", + "inputQtys": [ + "3991107391075610", + "3036007669806180", + "4466773635932983" ], - "mAssetSupply": "95768313080517255161041740" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "538564176199307470307328", - "expectedQty": "535967567046691589502270", - "swapFee": "323138505719584482184", + "expectedQty": "11506819960110357", + "swapFee": "6908236918217", "reserves": [ - "22227847444499908629155579", - "9870631501460810565460066", - "63474623071367583041453335" + "1319097671507287408021855739", + "686874142689404988440458398", + "514004869650546826828825658" ], - "mAssetSupply": "95230072042823667275216596" + "mAssetSupply": "2518089656139706679929186698" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3871335050819491332096", - "expectedQty": "3888707527351852653416", + "inputIndex": 2, + "inputQty": "511437112643224604770304", + "expectedQty": "514441592333654761671763", "reserves": [ - "22231718779550728120487675", - "9870631501460810565460066", - "63474623071367583041453335" + "1319097671507287408021855739", + "686874142689404988440458398", + "514516306763190051433595962" ] }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "7453160490604072745828352", - "outputIndex": 1, - "hardLimitError": true - }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "986816595833183182782464", - "expectedQty": "981350798370896605150316", - "swapFee": "592089957499909909669", + "inputIndex": 1, + "inputQty": "1744377543064060952576", + "expectedQty": "1740572278794255609872", + "swapFee": "1046626525838436571", "reserves": [ - "21250367981179831515337359", - "9870631501460810565460066", - "63474623071367583041453335" + "1319097671507287408021855739", + "686872402117126194184848526", + "514516306763190051433595962" ], - "mAssetSupply": "94247736244475335854997217" + "mAssetSupply": "2518602354401123796468342456" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "154663730497521859952640", - "185270240107290511278080", - "146378191007780417044480" + "326948262778684731031552", + "1671814060664559402745856", + "1386934291155118066761728" ], - "expectedQty": "492125175698968032117928", + "expectedQty": "3395025098289762064602291", + "swapFee": "2038238001774922192076", "reserves": [ - "21405031711677353375289999", - "10055901741568101076738146", - "63621001262375363458497815" + "1318770723244508723290824187", + "685200588056461634782102670", + "513129372472034933366834234" ], - "mAssetSupply": "94739861420174303887115145" + "mAssetSupply": "2515207329302834034403740165" }, { - "type": "redeemBassets", - "inputQtys": [ - "578586702690659532800", - "13017104253454081064960", - "10806554025665964802048" - ], - "expectedQty": "24741851651717971336312", - "swapFee": "14854023405073827098", + "type": "mint", + "inputIndex": 2, + "inputQty": "4196191763288455544569856", + "expectedQty": "4220674141100330024142585", "reserves": [ - "21404453124974662715757199", - "10042884637314646995673186", - "63610194708349697493695767" - ], - "mAssetSupply": "94715119568522585915778833" + "1318770723244508723290824187", + "685200588056461634782102670", + "517325564235323388911404090" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "1058409969068", - "97640118712725", - "82404876522112" - ], - "expectedQty": "183619296875333", + "type": "swap", + "inputIndex": 1, + "inputQty": "841406005191138", + "outputIndex": 2, + "expectedQty": "837429327587995", + "swapFee": "505662633971", "reserves": [ - "21404453124975721125726267", - "10042884637412287114385911", - "63610194708432102370217879" + "1318770723244508723290824187", + "685200588057303040787293808", + "517325564234485959583816095" ], - "mAssetSupply": "94715119568706205212654166" + "mAssetSupply": "2519428003443934870090516721", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "702077249562404716544", - "417263372350051188736", - "658191736546547728384" - ], - "expectedQty": "1788059002395080803337", - "reserves": [ - "21405155202225283530442811", - "10043301900784637165574647", - "63610852900168648917946263" + "36600099943390236672", + "23570213655089291264", + "21583084484793516032" ], - "mAssetSupply": "94716907627708600293457503" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1006347084402976272416768", - "expectedQty": "1018816944599222988818825", - "swapFee": "603808250641785763450", + "expectedQty": "81750645958527883332", "reserves": [ - "21405155202225283530442811", - "10043301900784637165574647", - "62592035955569425929127438" + "1318770759844608666681060859", + "685200611627516695876585072", + "517325585817570444377332127" ], - "mAssetSupply": "93711164351556265806804185" + "mAssetSupply": "2519428085194580828618400053" }, { "type": "mintMulti", "inputQtys": [ - "65086422858803718389760", - "56309836601538021163008", - "75958516347049208709120" + "14430700945009310433280", + "30720258008248144101376", + "3029936453486913781760" ], - "expectedQty": "198712245667756481524567", + "expectedQty": "48182922675405792709542", "reserves": [ - "21470241625084087248832571", - "10099611737386175186737655", - "62667994471916475137836558" + "1318785190545553675991494139", + "685231331885524944020686448", + "517328615754023931291113887" ], - "mAssetSupply": "93909876597224022288328752" + "mAssetSupply": "2519476268117256234411109595" }, { "type": "mint", "inputIndex": 1, - "inputQty": "631866439261200640", - "expectedQty": "654117053127784114", + "inputQty": "18863971375051255763173376", + "expectedQty": "18892254843496498492935827", "reserves": [ - "21470241625084087248832571", - "10099612369252614447938295", - "62667994471916475137836558" + "1318785190545553675991494139", + "704095303260576199783859824", + "517328615754023931291113887" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "111406507613788758343680", - "212865043118730365632512", - "291872816391988357103616" - ], - "expectedQty": "620612980033016524499452", - "swapFee": "372591342825505217830", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6608893428778467558686720", + "expectedQty": "6595558294953920601755891", + "swapFee": "3965336057267080535212", "reserves": [ - "21358835117470298490488891", - "9886747326133884082305783", - "62376121655524486780732942" + "1318785190545553675991494139", + "697499744965622279182103933", + "517328615754023931291113887" ], - "mAssetSupply": "93289264271308058891613414" + "mAssetSupply": "2531763594868031532425893914" }, { "type": "redeemBassets", "inputQtys": [ - "52279412004033772126208", - "260678656052695960387584", - "783015089803718786285568" + "8237799835188922", + "12183536847914800", + "16241628048116816" ], - "expectedQty": "1095796151591746303594416", - "swapFee": "657872414403689996154", + "expectedQty": "36738940727064156", + "swapFee": "22056598395275", "reserves": [ - "21306555705466264718362683", - "9626068670081188121918199", - "61593106565720767994447374" + "1318785190537315876156305217", + "697499744953438742334189133", + "517328615737782303242997071" ], - "mAssetSupply": "92193468119716312588018998" + "mAssetSupply": "2531763594831292591698829758" }, { "type": "redeemBassets", "inputQtys": [ - "669390619969088932282368", - "60736262883670837166080", - "1098823339198344415150080" + "7619745591073436598272", + "27756174717249524858880", + "6884659734845141811200" ], - "expectedQty": "1820331744153601643574772", - "swapFee": "1092854759347769647933", + "expectedQty": "42307373442521763829486", + "swapFee": "25399663863831357111", "reserves": [ - "20637165085497175786080315", - "9565332407197517284752119", - "60494283226522423579297294" + "1318777570791724802719706945", + "697471988778721492809330253", + "517321731078047458101185871" ], - "mAssetSupply": "90373136375562710944444226" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "672255465722120952086528", - "expectedQty": "663537767509788101650983", - "reserves": [ - "20637165085497175786080315", - "9565332407197517284752119", - "61166538692244544531383822" - ] + "mAssetSupply": "2531721287457850069935000272" }, { "type": "redeemMasset", - "inputQty": "2256693992143493215027", + "inputQty": "6482128533423730688", "expectedQtys": [ - "511418012264003499774", - "237042407039288277712", - "1515792964075295592255" - ], - "redemptionFee": "677008197643047964", - "reserves": [ - "20636653667484911782580541", - "9565095364790477996474407", - "61165022899280469235791567" + "3375537906754789837", + "1785246571648016294", + "1324134677384303978" ], - "mAssetSupply": "91034418126088553195928146" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "60675761042815492096", - "outputIndex": 2, - "expectedQty": "61768004096042447042", - "swapFee": "36598414852690242", + "redemptionFee": "1944638560027119", "reserves": [ - "20636714343245954598072637", - "9565095364790477996474407", - "61164961131276373193344525" + "1318777567416186895964917108", + "697471986993474921161313959", + "517321729753912780716881893" ], - "mAssetSupply": "91034418162686968048618388", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2531721280977666175071296703" }, { "type": "redeemMasset", - "inputQty": "473675814660261963366", + "inputQty": "5320244597822974361", "expectedQtys": [ - "107345992229453392297", - "49754754348229139567", - "318161764179368569318" + "2770492319082945122", + "1465251480222611039", + "1086791218011073560" ], - "redemptionFee": "142102744398078589", + "redemptionFee": "1596073379346892", "reserves": [ - "20636606997253725144680340", - "9565045610036129767334840", - "61164642969512193824775207" + "1318777564645694576881971986", + "697471985528223440938702920", + "517321728667121562705808333" ], - "mAssetSupply": "91033944628975052184733611" + "mAssetSupply": "2531721275659017650627669234" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1678664722112873496576", - "1009819508001989853184", - "199544037012902576128" + "1325275893481374381768704", + "342135403064892258779136", + "388193667473648891461632" ], - "expectedQty": "2932069066450088301726", + "expectedQty": "2052451793111662789261637", + "swapFee": "1232210402108262631135", "reserves": [ - "20638285661975838018176916", - "9566055429544131757188024", - "61164842513549206727351335" + "1317452288752213202500203282", + "697129850125158548679923784", + "516933534999647913814346701" ], - "mAssetSupply": "91036876698041502273035337" + "mAssetSupply": "2529668823865905987838407597" }, { "type": "redeemBassets", "inputQtys": [ - "24685776407297448214528", - "23659809972736095158272", - "29042956749853058662400" + "180721400333436846080", + "172621802635470897152", + "319733781729720926208" ], - "expectedQty": "78025808245887959058205", - "swapFee": "46843591102194091890", + "expectedQty": "674390742504127961981", + "swapFee": "404877371925632156", "reserves": [ - "20613599885568540569962388", - "9542395619571395662029752", - "61135799556799353668688935" + "1317452108030812869063357202", + "697129677503355913209026632", + "516933215265866184093420493" ], - "mAssetSupply": "90958850889795614313977132" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "125571340599028436959232", - "expectedQty": "123924574869005852501901", - "reserves": [ - "20613599885568540569962388", - "9542395619571395662029752", - "61261370897398382105648167" - ] + "mAssetSupply": "2529668149475163483710445616" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "373040461882718116904960", - "expectedQty": "370755700611772067431157", - "swapFee": "223824277129630870142", + "inputQty": "6665773626679400710799360", + "expectedQty": "6691549022896175000461891", + "swapFee": "3999464176007640426479", "reserves": [ - "20242844184956768502531231", - "9542395619571395662029752", - "61261370897398382105648167" + "1310760559007916694062895311", + "697129677503355913209026632", + "516933215265866184093420493" ], - "mAssetSupply": "90709958827059031680444215" + "mAssetSupply": "2523006375312660090640072735" }, { "type": "redeemMasset", - "inputQty": "126046817616187", + "inputQty": "1209060122441803789605273", "expectedQtys": [ - "28120182813118", - "13255741478109", - "85100736501115" - ], - "redemptionFee": "37814045284", - "reserves": [ - "20242844184928648319718113", - "9542395619558139920551643", - "61261370897313281369147052" - ], - "mAssetSupply": "90709958826933022676873312" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1509577239302972851093504", - "340491191377992464990208", - "153340285787670637969408" + "627946445546763767911915", + "333974119121133930562738", + "247647347092094036987535" ], - "expectedQty": "2024569303397664649753087", - "swapFee": "1215470864557333189765", + "redemptionFee": "362718036732541136881", "reserves": [ - "18733266945625675468624609", - "9201904428180147455561435", - "61108030611525610731177644" + "1310132612562369930294983396", + "696795703384234779278463894", + "516685567918774090056432958" ], - "mAssetSupply": "88685389523535358027120225" + "mAssetSupply": "2521797677908255019391604343" }, { "type": "mint", "inputIndex": 2, - "inputQty": "18671341295650616639488", - "expectedQty": "18405465544445867824863", + "inputQty": "1850570596893554473172992", + "expectedQty": "1861243953036015347391637", "reserves": [ - "18733266945625675468624609", - "9201904428180147455561435", - "61126701952821261347817132" + "1310132612562369930294983396", + "696795703384234779278463894", + "518536138515667644529605950" ] }, - { - "type": "redeemMasset", - "inputQty": "416023761954816760217", - "expectedQtys": [ - "87833289929992770956", - "43144292017744313824", - "286600268424621351311" - ], - "redemptionFee": "124807128586445028", - "reserves": [ - "18733179112335745475853653", - "9201861283888129711247611", - "61126415352552836726465821" - ], - "mAssetSupply": "88703379090124977664629899" - }, { "type": "redeemBassets", "inputQtys": [ - "844586944196936223162368", - "430821615746187597447168", - "227045200402491660828672" + "1538167724470172909568", + "2132270835931420033024", + "782758197564214345728" ], - "expectedQty": "1524148747721700139455039", - "swapFee": "915038271595977670275", + "expectedQty": "4453968998508546470762", + "swapFee": "2673985790579475567", "reserves": [ - "17888592168138809252691285", - "8771039668141942113800443", - "60899370152150345065637149" + "1310131074394645460122073828", + "696793571113398847858430870", + "518535355757470080315260222" ], - "mAssetSupply": "87179230342403277525174860" + "mAssetSupply": "2523654467892292526192525218" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "14219310646815112", - "7284808991408597", - "2103871281023788" + "21179415303941924", + "4666650818010766", + "3792214717943689" ], - "expectedQty": "24021638740920979", - "reserves": [ - "17888592182358119899506397", - "8771039675426751105209040", - "60899370154254216346660937" - ], - "mAssetSupply": "87179230366424916266095839" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1118374222559735185408", - "expectedQty": "1107971149097214967407", - "swapFee": "671024533535841111", + "expectedQty": "29573231931964337", + "swapFee": "17754591914327", "reserves": [ - "17887484211209022684538990", - "8771039675426751105209040", - "60899370154254216346660937" + "1310131074373466044818131904", + "696793571108732197040420104", + "518535355753677865597316533" ], - "mAssetSupply": "87178112663226890066751542" + "mAssetSupply": "2523654467862719294260560881" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3856323109017280705462272", - "expectedQty": "3805918550529175549132887", - "swapFee": "2313793865410368423277", - "reserves": [ - "14081565660679847135406103", - "8771039675426751105209040", - "60899370154254216346660937" + "type": "redeemBassets", + "inputQtys": [ + "1506004426255950906654720", + "1294688965200142896463872", + "1321891326297165474562048" ], - "mAssetSupply": "83324103348075019729712547" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2430282890132477952", - "expectedQty": "2387180586719107433", - "swapFee": "1458169734079486", + "expectedQty": "4125394771751851400772986", + "swapFee": "2476722896789184351074", "reserves": [ - "14081563273499260416298670", - "8771039675426751105209040", - "60899370154254216346660937" + "1308625069947210093911477184", + "695498882143532054143956232", + "517213464427380700122754485" ], - "mAssetSupply": "83324100919250299331314081" + "mAssetSupply": "2519529073090967442859787895" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "1867869839799173861343232", - "outputIndex": 1, - "expectedQty": "1794210686108153831648798", - "swapFee": "1137327165415340125258", + "inputIndex": 1, + "inputQty": "128450657764972789760", + "outputIndex": 0, + "expectedQty": "129130124892902911386", + "swapFee": "77181567514417999", "reserves": [ - "15949433113298434277641902", - "6976828989318597273560242", - "60899370154254216346660937" + "1308624940817085201008565798", + "695499010594189819116745992", + "517213464427380700122754485" ], - "mAssetSupply": "83325238246415714671439339", + "mAssetSupply": "2519529073168149010374205894", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "88934435908030592", - "expectedQty": "87182446552815439", + "inputIndex": 0, + "inputQty": "7411476366833043743178752", + "expectedQty": "7378533149894218030498110", "reserves": [ - "15949433113298434277641902", - "6976828989318597273560242", - "60899370243188652254691529" + "1316036417183918244751744550", + "695499010594189819116745992", + "517213464427380700122754485" ] }, { "type": "redeemMasset", - "inputQty": "356298185311194060", + "inputQty": "321633725338156199523123", "expectedQtys": [ - "68179213914078909", - "29823926200116045", - "260327195427473019" + "167459510578410234916974", + "88499012946079438875650", + "65813006757752168953053" ], - "redemptionFee": "106889455593358", + "redemptionFee": "96490117601446859856", "reserves": [ - "15949433045119220363562993", - "6976828959494671073444197", - "60899369982861456827218510" + "1315868957673339834516827576", + "695410511581243739677870342", + "517147651420622947953801432" ], - "mAssetSupply": "83325237977406865368654076" + "mAssetSupply": "2526586069082822673652040737" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "164539357730662547456", - "74612392360735358976", - "271934043929103073280" + "568728353563106701475840", + "243418004212232616935424", + "388994297381920989773824" ], - "expectedQty": "513128344111451779334", + "expectedQty": "1201223820411984507491462", + "swapFee": "721166992442656298273", "reserves": [ - "15949597584476951026110449", - "6976903571887031808803173", - "60899641916905385930291790" + "1315300229319776727815351736", + "695167093577031507060934918", + "516758657123241026964027608" ], - "mAssetSupply": "83325751105750976820433410" + "mAssetSupply": "2525384845262410689144549275" }, { - "type": "redeemMasset", - "inputQty": "48822662897617294747238", - "expectedQtys": [ - "9342468628740330328869", - "4086717699356833287080", - "35671934109732359831144" - ], - "redemptionFee": "14646798869285188424", + "type": "swap", + "inputIndex": 2, + "inputQty": "177758575594602242244608", + "outputIndex": 1, + "expectedQty": "178422612077186512691151", + "swapFee": "107275901873752096337", "reserves": [ - "15940255115848210695781580", - "6972816854187674975516093", - "60863969982795653570460646" + "1315300229319776727815351736", + "694988670964954320548243767", + "516936415698835629206272216" ], - "mAssetSupply": "83276943089652228810874596" + "mAssetSupply": "2525384952538312562896645612", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "14998216655207110017024", - "expectedQty": "15290377988015364772026", - "swapFee": "8998929993124266010", + "type": "redeemBassets", + "inputQtys": [ + "597305260574337138688", + "97466896471089037312", + "147369720371180470272" + ], + "expectedQty": "840475719652716423002", + "swapFee": "504588184702451324", "reserves": [ - "15940255115848210695781580", - "6972816854187674975516093", - "60848679604807638205688620" + "1315299632014516153478213048", + "694988573498057849459206455", + "516936268329115258025801944" ], - "mAssetSupply": "83261953871927014825123582" + "mAssetSupply": "2525384112062592910180222610" }, { "type": "swap", "inputIndex": 1, - "inputQty": "22820660422617188", + "inputQty": "11213860284126066848563200", "outputIndex": 0, - "expectedQty": "24093210144053912", - "swapFee": "14654033953805", + "expectedQty": "11272329888316317871288932", + "swapFee": "6737774721862328873186", "reserves": [ - "15940255091755000551727668", - "6972816877008335398133281", - "60848679604807638205688620" + "1304027302126199835606924116", + "706202433782183916307769655", + "516936268329115258025801944" ], - "mAssetSupply": "83261953871941668859077387", + "mAssetSupply": "2525390849837314772509095796", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "114224540613168951459840", - "3956843548973155745792", - "107221760446538060922880" - ], - "expectedQty": "225055859227119754292061", - "reserves": [ - "16054479632368169503187508", - "6976773720557308553879073", - "60955901365254176266611500" + "2742203536815079001423872", + "3138534392632038800752640", + "5749987042042734283063296" ], - "mAssetSupply": "83487009731168788613369448" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "251095049419669626683392", - "expectedQty": "233917498453212756697793", - "swapFee": "150657029651801776010", + "expectedQty": "11656419492241394769845338", + "swapFee": "6998050525660233001708", "reserves": [ - "16054479632368169503187508", - "6742856222104095797181280", - "60955901365254176266611500" + "1301285098589384756605500244", + "703063899389551877507017015", + "511186281287072523742738648" ], - "mAssetSupply": "83236065338778770788462066" + "mAssetSupply": "2513734430345073377739250458" }, { "type": "swap", "inputIndex": 1, - "inputQty": "234217304586494968594432", + "inputQty": "11541143949494392", "outputIndex": 0, - "expectedQty": "247844001584037623291589", - "swapFee": "150759174968886718394", + "expectedQty": "11600019286718410", + "swapFee": "6933548683915", "reserves": [ - "15806635630784131879895919", - "6977073526690590765775712", - "60955901365254176266611500" + "1301285098577784737318781834", + "703063899401093021456511407", + "511186281287072523742738648" ], - "mAssetSupply": "83236216097953739675180460", + "mAssetSupply": "2513734430345080311287934373", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "763687179066900507262976", - "expectedQty": "812193733133752113270667", - "reserves": [ - "15806635630784131879895919", - "7740760705757491273038688", - "60955901365254176266611500" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "37684514753810224", - "expectedQty": "37172291689612327", - "swapFee": "22610708852286", + "type": "mintMulti", + "inputQtys": [ + "395636054172274977144832", + "174320454579939069394944", + "557704865873494747906048" + ], + "expectedQty": "1129441384167041192193409", "reserves": [ - "15806635593611840190283592", - "7740760705757491273038688", - "60955901365254176266611500" + "1301680734631957012295926666", + "703238219855672960525906351", + "511743986152946018490644696" ], - "mAssetSupply": "84048409793425587743493189" + "mAssetSupply": "2514863871729247352480127782" }, { - "type": "redeemMasset", - "inputQty": "554322521795819691048960", - "expectedQtys": [ - "104217861261815833250946", - "51037143262768913757352", - "401900431875610156138807" + "type": "mintMulti", + "inputQtys": [ + "3309037156929868", + "1956662131159403", + "1336514643731389" ], - "redemptionFee": "166296756538745907314", + "expectedQty": "6598067393506810", "reserves": [ - "15702417732350024357032646", - "7689723562494722359281336", - "60554000933378566110472693" + "1301680734635266049452856534", + "703238219857629622657065754", + "511743986154282533134376085" ], - "mAssetSupply": "83494253568386306798351543" + "mAssetSupply": "2514863871735845419873634592" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "4747645258423602176", - "expectedQty": "4832484319681501348", - "swapFee": "2848587155054161", + "type": "redeemBassets", + "inputQtys": [ + "23148178851575876481449984", + "10060444876524550258425856", + "3136699901803149142261760" + ], + "expectedQty": "36275436501514614743921942", + "swapFee": "21778328898247717476839", "reserves": [ - "15702417732350024357032646", - "7689723562494722359281336", - "60553996100894246428971345" + "1278532555783690172971406550", + "693177774981105072398639898", + "508607286252479383992114325" ], - "mAssetSupply": "83494248823589635529803528" + "mAssetSupply": "2478588435234330805129712650" }, { - "type": "redeemMasset", - "inputQty": "329524309696946", - "expectedQtys": [ - "61953681100188", - "30339702424162", - "238914989253408" + "type": "redeemBassets", + "inputQtys": [ + "99523336727305421586432", + "24529546565986855944192", + "214482065771419437891584" ], - "redemptionFee": "98857292909", + "expectedQty": "339368315021292349428829", + "swapFee": "203743234953747658252", "reserves": [ - "15702417732288070675932458", - "7689723562464382656857174", - "60553996100655331439717937" + "1278433032446962867549820118", + "693153245434539085542695706", + "508392804186707964554222741" ], - "mAssetSupply": "83494248823260210077399491" + "mAssetSupply": "2478249066919309512780283821" }, { "type": "mintMulti", "inputQtys": [ - "1238139902429851593736192", - "1583405321252783563735040", - "1543276989509202178211840" + "141993562776284556165120", + "202702867106768646832128", + "423334704280800050806784" ], - "expectedQty": "4430636218198879843698633", + "expectedQty": "770110060957467870533676", "reserves": [ - "16940557634717922269668650", - "9273128883717166220592214", - "62097273090164533617929777" + "1278575026009739152105985238", + "693355948301645854189527834", + "508816138890988764605029525" ], - "mAssetSupply": "87924885041459089921098124" + "mAssetSupply": "2479019176980266980650817497" }, { - "type": "mintMulti", - "inputQtys": [ - "690168431598612693123072", - "273441202270944479936512", - "542335459837611593433088" - ], - "expectedQty": "1515996774644914371498181", + "type": "mint", + "inputIndex": 1, + "inputQty": "2028792409627623424000", + "expectedQty": "2031405516872860804942", "reserves": [ - "17630726066316534962791722", - "9546570085988110700528726", - "62639608550002145211362865" - ], - "mAssetSupply": "89440881816104004292596305" + "1278575026009739152105985238", + "693357977094055481812951834", + "508816138890988764605029525" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1589273652536153735168", - "495253939600886464512", - "1769296098221324500992" + "16633227772655862546432", + "498475584580055019290624", + "467515114706431582928896" ], - "expectedQty": "3862996601324347819159", - "swapFee": "2319189474479296269", + "expectedQty": "985882552850612412424320", + "swapFee": "591884662507872170757", "reserves": [ - "17629136792663998809056554", - "9546074832048509814064214", - "62637839253903923886861873" + "1278558392781966496243438806", + "692859501509475426793661210", + "508348623776282333022100629" ], - "mAssetSupply": "89437018819502679944777146" + "mAssetSupply": "2478035325832933241099198119" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "18806791423909260821528576", + "expectedQty": "18724163046696127171734900", + "reserves": [ + "1297365184205875757064967382", + "692859501509475426793661210", + "508348623776282333022100629" + ] }, { "type": "redeemMasset", - "inputQty": "288643885725867565698252", + "inputQty": "1989436316971190573439385", "expectedQtys": [ - "56878192612054834280389", - "30799209817935452391540", - "202093110274635327254163" + "1033439991998137373368149", + "551909922057967651916612", + "404934404039209351366381" ], - "redemptionFee": "86593165717760269709", + "redemptionFee": "596830895091357172031", "reserves": [ - "17572258600051943974776165", - "9515275622230574361672674", - "62435746143629288559607710" + "1296331744213877619691599233", + "692307591587417459141744598", + "507943689372243123670734248" ], - "mAssetSupply": "89148461526942530139348603" + "mAssetSupply": "2494770649393553269054665665" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "40452077711750111232", - "expectedQty": "38899916627330502718", - "swapFee": "24271246627050066", + "inputQty": "1812584742747109159075840", + "outputIndex": 0, + "expectedQty": "1822039839806064969875348", + "swapFee": "1089031693994917563424", "reserves": [ - "17572258600051943974776165", - "9515236722313947031169956", - "62435746143629288559607710" + "1294509704374071554721723885", + "694120176330164568300820438", + "507943689372243123670734248" ], - "mAssetSupply": "89148421099136065016287437" + "mAssetSupply": "2494771738425247263972229089", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "404561755761624200773632", - "expectedQty": "410367482809561433789525", - "swapFee": "242737053456974520464", + "type": "swap", + "inputIndex": 1, + "inputQty": "862449545158257872470016", + "outputIndex": 0, + "expectedQty": "866917173797697337828141", + "swapFee": "518161483174377443727", "reserves": [ - "17572258600051943974776165", - "9515236722313947031169956", - "62025378660819727125818185" + "1293642787200273857383895744", + "694982625875322826173290454", + "507943689372243123670734248" ], - "mAssetSupply": "88744102080427897790034269" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "19266394147101483008", - "expectedQty": "19455482030623864101", - "reserves": [ - "17572277866446091076259173", - "9515236722313947031169956", - "62025378660819727125818185" - ] + "mAssetSupply": "2494772256586730438349672816", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "974159494484835", + "inputQty": "3746409920828005166560051", "expectedQtys": [ - "192836050058846", - "104419055904503", - "680658996816546" + "1942085977720454716772645", + "1043345215407482151464570", + "762552326161355108735549" ], - "redemptionFee": "292247848345", + "redemptionFee": "1123922976248401549968", "reserves": [ - "17572277866253255026200327", - "9515236722209527975265453", - "62025378660139068129001639" + "1291700701222553402667123099", + "693939280659915344021825884", + "507181137046081768561998699" ], - "mAssetSupply": "88744121534936061167261880" + "mAssetSupply": "2491026970588878681584662733" }, { "type": "redeemBassets", "inputQtys": [ - "2535903806073071", - "10489097609843290", - "5865711922519679" + "2548494528970246854803456", + "4195638264759978628743168", + "4466923477851727739224064" ], - "expectedQty": "19235914688562177", - "swapFee": "11548477899877", + "expectedQty": "11231886118643079014197709", + "swapFee": "6743177577732486900659", "reserves": [ - "17572277863717351220127256", - "9515236711720430365422163", - "62025378654273356206481960" + "1289152206693583155812319643", + "689743642395155365393082716", + "502714213568230040822774635" ], - "mAssetSupply": "88744121515700146478699703" + "mAssetSupply": "2479795084470235602570465024" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1970886394718892551307264", - "expectedQty": "1998341859705732195347201", - "swapFee": "1182531836831335530784", + "type": "mint", + "inputIndex": 0, + "inputQty": "4103276371523992551424", + "expectedQty": "4084977513278329329717", "reserves": [ - "17572277863717351220127256", - "9515236711720430365422163", - "60027036794567624011134759" - ], - "mAssetSupply": "86774417652818085262923223" + "1289156309969954679804871067", + "689743642395155365393082716", + "502714213568230040822774635" + ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "303066261485030027034624", - "expectedQty": "313688378357766139012400", + "inputQty": "9972632552327398991855616", + "expectedQty": "9952654876979460123678337", + "swapFee": "5983579531396439395113", "reserves": [ - "17572277863717351220127256", - "9818302973205460392456787", - "60027036794567624011134759" - ] + "1289156309969954679804871067", + "679790987518175905269404379", + "502714213568230040822774635" + ], + "mAssetSupply": "2469832520474952878347334238" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4912295651440031956992", - "2021481532222062460928", - "3316045252837866733568" + "70408950898668789760", + "67920291652488241152", + "34771155471322562560" ], - "expectedQty": "10316647954293750469365", + "expectedQty": "173089118889221463177", + "swapFee": "103915820826028495", "reserves": [ - "17577190159368791252084248", - "9820324454737682454917715", - "60030352839820461877868327" + "1289156239561003781136081307", + "679790919597884252781163227", + "502714178797074569500212075" ], - "mAssetSupply": "87098422679130145152404988" + "mAssetSupply": "2469832347385833989125871061" }, { - "type": "mintMulti", - "inputQtys": [ - "14228140617016629264384", - "24110957719374885027840", - "10527234900495224012800" - ], - "expectedQty": "49664706737471518566083", + "type": "redeem", + "inputIndex": 0, + "inputQty": "200542173015703126016", + "expectedQty": "201328637135668671573", + "swapFee": "120325303809421875", "reserves": [ - "17591418299985807881348632", - "9844435412457057339945555", - "60040880074720957101881127" + "1289156038232366645467409734", + "679790919597884252781163227", + "502714178797074569500212075" ], - "mAssetSupply": "87148087385867616670971071" + "mAssetSupply": "2469832146963986277232166920" }, { "type": "mintMulti", "inputQtys": [ - "3246958676057263702016", - "1343815744244454260736", - "266924269113916850176" + "2998838805627088926670848", + "561166160363438932492288", + "5561585804438620237463552" ], - "expectedQty": "4928066104690366722480", + "expectedQty": "9141535958426241326611365", "reserves": [ - "17594665258661865145050648", - "9845779228201301794206291", - "60041146998990071018731303" + "1292154877037993734394080582", + "680352085758247691713655515", + "508275764601513189737675627" ], - "mAssetSupply": "87153015451972307037693551" + "mAssetSupply": "2478973682922412518558778285" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "6577169959031547904", - "expectedQty": "6663790752775651350", - "swapFee": "3946301975418928", + "inputQty": "1124481843045618304", + "expectedQty": "1117338304855482412", + "swapFee": "674689105827370", "reserves": [ - "17594665258661865145050648", - "9845779228201301794206291", - "60041140335199318243079953" + "1292154877037993734394080582", + "680352085758247691713655515", + "508275763484174884882193215" ], - "mAssetSupply": "87153008878748649981564575" + "mAssetSupply": "2478973681798605364618987351" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3597670166420945633280", - "expectedQty": "3629369940600275099046", - "reserves": [ - "17598262928828286090683928", - "9845779228201301794206291", - "60041140335199318243079953" - ] - }, - { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "106202236727377858134016", - "85024131622414931984384", - "80505250272297116237824" + "6510119704718430015848448", + "3241318073324599091658752", + "14504935131006385394810880" ], - "expectedQty": "274419760363316683511993", + "expectedQty": "24318240485854193789367060", + "swapFee": "14599704113980904816510", "reserves": [ - "17704465165555663948817944", - "9930803359823716726190675", - "60121645585471615359317777" + "1285644757333275304378232134", + "677110767684923092621996763", + "493770828353168499487382335" ], - "mAssetSupply": "87431058009052566940175614" + "mAssetSupply": "2454655441312751170829620291" }, { - "type": "redeemBassets", - "inputQtys": [ - "363709137559402840064", - "1009399089613536624640", - "1050600310295207346176" - ], - "expectedQty": "2446284170603203778023", - "swapFee": "1468651693377949036", + "type": "redeem", + "inputIndex": 1, + "inputQty": "42385405962477774045184", + "expectedQty": "42299278863477474320062", + "swapFee": "25431243577486664427", "reserves": [ - "17704101456418104545977880", - "9929793960734103189566035", - "60120594985161320151971601" + "1285644757333275304378232134", + "677068468406059615147676701", + "493770828353168499487382335" ], - "mAssetSupply": "87428611724881963736397591" + "mAssetSupply": "2454613081338032270542239534" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "547582693184753", - "1070584591261363", - "2585600030710602" + "54826078236127404032", + "61068864703346597888", + "51043731344557408256" ], - "expectedQty": "4209300243480302", + "expectedQty": "167089385543299766033", + "swapFee": "100313819617750509", "reserves": [ - "17704101456965687239162633", - "9929793961804687780827398", - "60120594987746920182682203" + "1285644702507197068250828102", + "677068407337194911801078813", + "493770777309437154929974079" ], - "mAssetSupply": "87428611729091263979877893" + "mAssetSupply": "2454612914248646727242473501" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "33297063899329334345728", + "inputIndex": 1, + "inputQty": "472486664258229578498048", "outputIndex": 2, - "expectedQty": "34022660311668324152515", - "swapFee": "20151138673010958254", + "expectedQty": "469986202136699088041816", + "swapFee": "283897979321519789694", "reserves": [ - "17737398520865016573508361", - "9929793961804687780827398", - "60086572327435251858529688" + "1285644702507197068250828102", + "677540894001453141379576861", + "493300791107300455841932263" ], - "mAssetSupply": "87428631880229936990836147", + "mAssetSupply": "2454613198146626048762263195", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1094963724842595973595136", - "outputIndex": 0, - "expectedQty": "1116324907784482586909347", - "swapFee": "676560527737384132432", - "reserves": [ - "16621073613080533986599014", - "11024757686647283754422534", - "60086572327435251858529688" + "type": "mintMulti", + "inputQtys": [ + "17173750466357371420540928", + "15191889772492442809925632", + "35138205788034238349574144" ], - "mAssetSupply": "87429308440757674374968579", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "736337672910444", - "expectedQty": "756017838619041", + "expectedQty": "67652558049921910928788830", "reserves": [ - "16621073613080533986599014", - "11024757687383621427332978", - "60086572327435251858529688" - ] + "1302818452973554439671369030", + "692732783773945584189502493", + "528438996895334694191506407" + ], + "mAssetSupply": "2522265756196547959691052025" }, { "type": "redeemBassets", "inputQtys": [ - "2344292369526976495484928", - "1854366199612531558842368", - "1661028516130908134178816" + "16516454569229248512", + "58209913881498935296", + "30010260300722212864" ], - "expectedQty": "5923743735452655632838340", - "swapFee": "3556380069313181288476", + "expectedQty": "104915558181176804355", + "swapFee": "62987127185017092", "reserves": [ - "14276781243553557491114086", - "9170391487771089868490610", - "58425543811304343724350872" + "1302818436457099870442120518", + "692732725564031702690567197", + "528438966885074393469293543" ], - "mAssetSupply": "81505564706061036580749280" + "mAssetSupply": "2522265651280989778514247670" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "9529600984384465272832", - "expectedQty": "9676530263343212032667", - "swapFee": "5717760590630679163", + "type": "redeemMasset", + "inputQty": "33575493896939003654963", + "expectedQtys": [ + "17337448023421820237055", + "9218642665397384135750", + "7032279299666164537413" + ], + "redemptionFee": "10072648169081701096", "reserves": [ - "14276781243553557491114086", - "9170391487771089868490610", - "58415867281041000512318205" + "1302801099009076448621883463", + "692723506921366305306431447", + "528431934605774727304756130" ], - "mAssetSupply": "81496040822837242746155611" + "mAssetSupply": "2522232085859741008592293803" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "29607792333708840665088", - "expectedQty": "29140613675293759775767", + "inputIndex": 1, + "inputQty": "872972347373087270895616", + "expectedQty": "874293048305111227717701", "reserves": [ - "14276781243553557491114086", - "9170391487771089868490610", - "58445475073374709352983293" + "1302801099009076448621883463", + "693596479268739392577327063", + "528431934605774727304756130" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "10291117369714307340697600", - "expectedQty": "10107141538786431738415749", + "type": "redeemMasset", + "inputQty": "3695633353638264403551846", + "expectedQtys": [ + "1907660664779108856167184", + "1015616828798080857103704", + "773770314154102281852594" + ], + "redemptionFee": "1108690006091479321065", "reserves": [ - "14276781243553557491114086", - "9170391487771089868490610", - "68736592443089016693680893" - ] + "1300893438344297339765716279", + "692580862439941311720223359", + "527658164291620625022903536" + ], + "mAssetSupply": "2519411854244413946895780723" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "53607485180457735159808", - "expectedQty": "52350470873771869560564", - "swapFee": "32164491108274641095", + "inputQty": "30644106465729016936529920", + "expectedQty": "30509340778484472195986432", "reserves": [ - "14224430772679785621553522", - "9170391487771089868490610", - "68736592443089016693680893" - ], - "mAssetSupply": "91578747654609618783828414" + "1331537544810026356702246199", + "692580862439941311720223359", + "527658164291620625022903536" + ] }, { "type": "mintMulti", "inputQtys": [ - "6174431791470673395712", - "232550651755297177600", - "635137016205407420416" + "3670036233722078819254272", + "5804401458609536083427328", + "24058769408567425443561472" ], - "expectedQty": "7186906354530448467261", + "expectedQty": "33655568558338231620269667", "reserves": [ - "14230605204471256294949234", - "9170624038422845165668210", - "68737227580105222101101309" + "1335207581043748435521500471", + "698385263898550847803650687", + "551716933700188050466465008" ], - "mAssetSupply": "91585934560964149232295675" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1281704057769410611380224", - "expectedQty": "1341964607268806518783744", - "reserves": [ - "14230605204471256294949234", - "10452328096192255777048434", - "68737227580105222101101309" - ] + "mAssetSupply": "2583576763581236650712036822" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "173753376463920308420608", - "expectedQty": "180765602873960063678681", + "type": "mintMulti", + "inputQtys": [ + "389332663818070123347968", + "237903005724819255721984", + "556003708450319357706240" + ], + "expectedQty": "1184797102706344810373073", "reserves": [ - "14230605204471256294949234", - "10626081472656176085469042", - "68737227580105222101101309" - ] + "1335596913707566505644848439", + "698623166904275667059372671", + "552272937408638369824171248" + ], + "mAssetSupply": "2584761560683942995522409895" }, { "type": "redeemBassets", "inputQtys": [ - "1569915767016790784", - "1495029865216975616", - "968444997801415680" + "319876565495642914816", + "3291199425610005348352", + "389673946146353446912" ], - "expectedQty": "4110648406575402003", - "swapFee": "2467869765804724", + "expectedQty": "4007024520695418979564", + "swapFee": "2405658107281620359", "reserves": [ - "14230603634555489278158450", - "10626079977626310868493426", - "68737226611660224299685629" + "1335596593831001010001933623", + "698619875704850057054024319", + "552272547734692223470724336" ], - "mAssetSupply": "93108660660458509239356097" + "mAssetSupply": "2584757553659422300103430331" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "153101720885286560", - "expectedQty": "155788707015634925", - "swapFee": "91861032531171", + "inputQty": "41278626047220855309598720", + "expectedQty": "41468509991176320529059545", "reserves": [ - "14230603634555489278158450", - "10626079977626310868493426", - "68737226455871517284050704" - ], - "mAssetSupply": "93108660507448649386600708" + "1335596593831001010001933623", + "698619875704850057054024319", + "593551173781913078780323056" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "7292702914836150030958592", - "3348998683821121210417152", - "5598872359451119058944" + "type": "redeemMasset", + "inputQty": "1100755386383020614641254", + "expectedQtys": [ + "559633504325170003809438", + "292731421327202972346778", + "248706177384816749783755" ], - "expectedQty": "10840365981629138366554915", + "redemptionFee": "330226615914906184392", "reserves": [ - "21523306549391639309117042", - "13975078661447432078910578", - "68742825328230968403109648" + "1335036960326675839998124185", + "698327144283522854081677541", + "593302467604528262030539301" ], - "mAssetSupply": "103949026489077787753155623" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "11156594747021651840335872", - "expectedQty": "11020220475341845240458591", - "reserves": [ - "21523306549391639309117042", - "13975078661447432078910578", - "79899420075252620243445520" - ] + "mAssetSupply": "2625125638490831514924033014" }, { "type": "mint", "inputIndex": 2, - "inputQty": "31186993169091075768320", - "expectedQty": "30763740499434111767896", + "inputQty": "30741634588457348372627456", + "expectedQty": "30860574601794448338495656", "reserves": [ - "21523306549391639309117042", - "13975078661447432078910578", - "79930607068421711319213840" + "1335036960326675839998124185", + "698327144283522854081677541", + "624044102192985610403166757" ] }, { "type": "redeemBassets", "inputQtys": [ - "179814642133857206272", - "420684347348575584256", - "226548389358701182976" + "64472143626139949072384", + "6945477953008960536576", + "200304620612805690654720" ], - "expectedQty": "838453373714446606210", - "swapFee": "503374048657862681", + "expectedQty": "272208176631094662406337", + "swapFee": "163422959754509503145", "reserves": [ - "21523126734749505451910770", - "13974657977100083503326322", - "79930380520032352618030864" + "1334972488183049700049051801", + "698320198805569845121140965", + "623843797572372804712512037" ], - "mAssetSupply": "114999172251545352658775900" + "mAssetSupply": "2655714004915994868600122333" }, { "type": "redeemBassets", "inputQtys": [ - "57380645321141001388032", - "54620970114347924717568", - "44397955028582351765504" + "324898001835241046016", + "476048612033155694592", + "318459549099969675264" ], - "expectedQty": "158066790363652548976072", - "swapFee": "94897012425646917536", + "expectedQty": "1120302193586250159379", + "swapFee": "672584867071993291", "reserves": [ - "21465746089428364450522738", - "13920037006985735578608754", - "79885982565003770266265360" + "1334972163285047864808005785", + "698319722756957811965446373", + "623843479112823704742836773" ], - "mAssetSupply": "114841105461181700109799828" + "mAssetSupply": "2655712884613801282349962954" }, { "type": "mint", "inputIndex": 2, - "inputQty": "484048600081135632384", - "expectedQty": "477450353521293417789", + "inputQty": "6363104608045922680569856", + "expectedQty": "6385608653166838108628251", "reserves": [ - "21465746089428364450522738", - "13920037006985735578608754", - "79886466613603851401897744" + "1334972163285047864808005785", + "698319722756957811965446373", + "630206583720869627423406629" ] }, { "type": "mintMulti", "inputQtys": [ - "32470012058111774720", - "9141455574906506240", - "77546816718259027968" - ], - "expectedQty": "118741619941386744425", - "reserves": [ - "21465778559440422562297458", - "13920046148441310485114994", - "79886544160420569660925712" - ], - "mAssetSupply": "114841701653155162789962042" - }, - { - "type": "redeemMasset", - "inputQty": "25375937123408301103513", - "expectedQtys": [ - "4741751688771640329805", - "3074913036551486885400", - "17646793226431159345749" - ], - "redemptionFee": "7612781137022490331", - "reserves": [ - "21461036807751650921967653", - "13916971235404758998229594", - "79868897367194138501579963" - ], - "mAssetSupply": "114816333328812891511348860" - }, - { - "type": "mintMulti", - "inputQtys": [ - "164018883675280637952", - "136128234942775164928", - "76041891152423682048" + "226102687226844673998848", + "122040542556878545092608", + "68714709987754629922816" ], - "expectedQty": "381070235502154814351", + "expectedQty": "416496460922674745987610", "reserves": [ - "21461200826635326202605605", - "13917107363639701773394522", - "79868973409085290925262011" + "1335198265972274709482004633", + "698441763299514690510538981", + "630275298430857382053329445" ], - "mAssetSupply": "114816714399048393666163211" + "mAssetSupply": "2662514989727890795204578815" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "15066546962478278656", - "expectedQty": "15265596542061580676", - "swapFee": "9039928177486967", + "inputIndex": 0, + "inputQty": "68935065760650860953600", + "expectedQty": "69157141052439760073672", + "swapFee": "41361039456390516572", "reserves": [ - "21461200826635326202605605", - "13917107363639701773394522", - "79868958143488748863681335" + "1335129108831222269721930961", + "698441763299514690510538981", + "630275298430857382053329445" ], - "mAssetSupply": "114816699341541359365371522" + "mAssetSupply": "2662446096023169600734141787" }, { - "type": "redeemMasset", - "inputQty": "3216845382759687", - "expectedQtys": [ - "601102922954633", - "389801762861972", - "2237035316952453" + "type": "redeemBassets", + "inputQtys": [ + "8829125493497821032087552", + "7649162438805492603027456", + "2310440242518182984679424" ], - "redemptionFee": "965053614827", + "expectedQty": "18779586905180780506620250", + "swapFee": "11274516853220400544298", "reserves": [ - "21461200826034223279650972", - "13917107363249900010532550", - "79868958141251713546728882" + "1326299983337724448689843409", + "690792600860709197907511525", + "627964858188339199068650021" ], - "mAssetSupply": "114816699338325479036226662" + "mAssetSupply": "2643666509117988820227521537" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "60761278403176124383232", - "68515070328813226295296", - "60939517117477905498112" + "49838526711476168", + "34176544689963504", + "15063222147058334" ], - "expectedQty": "192107742270476207246811", + "expectedQty": "99014653600620549", + "swapFee": "59444458835673", "reserves": [ - "21521962104437399404034204", - "13985622433578713236827846", - "79929897658369191452226994" + "1326299983287885921978367241", + "690792600826532653217548021", + "627964858173275976921591687" ], - "mAssetSupply": "115008807080595955243473473" + "mAssetSupply": "2643666509018974166626900988" }, { "type": "redeemBassets", "inputQtys": [ - "7615343890254559232", - "9137349477840723968", - "5535097302535359488" + "685933713787200959676416", + "758564205574202348011520", + "1437992564796883921272832" ], - "expectedQty": "22568561865946784171", - "swapFee": "13549266679575815", + "expectedQty": "2886481061497243317408332", + "swapFee": "1732928393934706814533", "reserves": [ - "21521954489093509149474972", - "13985613296229235396103878", - "79929892123271888916867506" + "1325614049574098721018690825", + "690034036620958450869536501", + "626526865608479093000318855" ], - "mAssetSupply": "115008784512034089296689302" + "mAssetSupply": "2640780027957476923309492656" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "4233819099792119185801216", + "inputIndex": 1, + "inputQty": "14465908786618581343272960", "outputIndex": 0, - "expectedQty": "4101592107140447888220453", - "swapFee": "2504488206917838495341", - "reserves": [ - "17420362381953061261254519", - "13985613296229235396103878", - "84163711223064008102668722" - ], - "mAssetSupply": "115011289000241007135184643", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "11990019487169611776", - "outputIndex": 1, - "expectedQty": "11843281863269773299", - "swapFee": "7352482736365596", + "expectedQty": "14541544506685958992153587", + "swapFee": "8697678182873736925139", "reserves": [ - "17420374371972548430866295", - "13985601452947372126330579", - "84163711223064008102668722" + "1311072505067412762026537238", + "704499945407577032212809461", + "626526865608479093000318855" ], - "mAssetSupply": "115011289007593489871550239", + "mAssetSupply": "2640788725635659797046417795", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "291362183586357968896", - "expectedQty": "281593202503018550135", - "swapFee": "174817310151814781", + "inputQty": "6695675666956313333596160", + "expectedQty": "6678461858381310405478364", + "swapFee": "4017405400173788000157", "reserves": [ - "17420374371972548430866295", - "13985319859744869107780444", - "84163711223064008102668722" + "1311072505067412762026537238", + "697821483549195721807331097", + "626526865608479093000318855" ], - "mAssetSupply": "115010997820227213665396124" + "mAssetSupply": "2634097067374103657500821792" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "195260358564851834945536", - "outputIndex": 0, - "expectedQty": "187637302062733792612853", - "swapFee": "115178056517588918060", + "type": "mint", + "inputIndex": 1, + "inputQty": "236532177971946040474992640", + "expectedQty": "236725441274633194919477264", "reserves": [ - "17232737069909814638253442", - "13985319859744869107780444", - "84358971581628859937614258" - ], - "mAssetSupply": "115011112998283731254314184", - "hardLimitError": false, - "insufficientLiquidityError": false + "1311072505067412762026537238", + "934353661521141762282323737", + "626526865608479093000318855" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "456103359063072833536", - "expectedQty": "445700281225013122025", - "swapFee": "273662015437843700", - "reserves": [ - "17232291369628589625131417", - "13985319859744869107780444", - "84358971581628859937614258" + "type": "redeemBassets", + "inputQtys": [ + "1722520010062361798901760", + "7206795620988717845446656", + "452261745357680092905472" ], - "mAssetSupply": "115010657168586683619324348" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "49591550332812574720", - "outputIndex": 2, - "expectedQty": "51567059216168589886", - "swapFee": "30431187579186285", + "expectedQty": "9377560351941071334784276", + "swapFee": "5629914159660439064309", "reserves": [ - "17232340961178922437706137", - "13985319859744869107780444", - "84358920014569643769024372" + "1309349985057350400227635478", + "927146865900153044436877081", + "626074603863121412907413383" ], - "mAssetSupply": "115010657199017871198510633", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2861444948296795781085514780" }, { - "type": "redeemMasset", - "inputQty": "1384785682541453508608", - "expectedQtys": [ - "207423735251945016891", - "168339710230700372827", - "1015418760031602780937" + "type": "redeemBassets", + "inputQtys": [ + "129551561013355184128", + "150382781102491500544", + "70945790670885675008" ], - "redemptionFee": "415435704762436052", + "expectedQty": "350802579539807554321", + "swapFee": "210607912471367353", "reserves": [ - "17232133537443670492689246", - "13985151520034638407407617", - "84357904595809612166243435" + "1309349855505789386872451350", + "927146715517371941945376537", + "626074532917330742021738375" ], - "mAssetSupply": "115009272828771034507438077" + "mAssetSupply": "2861444597494216241277960459" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "15815566156733", - "outputIndex": 1, - "expectedQty": "15021005151415", - "swapFee": "9327615334", + "type": "mint", + "inputIndex": 0, + "inputQty": "2567644577529387810816", + "expectedQty": "2560075224235651572754", "reserves": [ - "17232133537443670492689246", - "13985151520019617402256202", - "84357904595825427732400168" - ], - "mAssetSupply": "115009272828771043835053411", - "hardLimitError": false, - "insufficientLiquidityError": false + "1309352423150366916260262166", + "927146715517371941945376537", + "626074532917330742021738375" + ] }, { "type": "redeemMasset", - "inputQty": "2830423193827033088", + "inputQty": "785730011302710631989248", "expectedQtys": [ - "423962320385825040", - "344076795626691664", - "2075458207053666886" + "359429616679174351122200", + "254510537172232767693025", + "171863377193465312700975" ], - "redemptionFee": "849126958148109", + "redemptionFee": "235719003390813189596", "reserves": [ - "17232133113481350106864206", - "13985151175942821775564538", - "84357902520367220678733282" + "1308992993533687741909139966", + "926892204980199709177683512", + "625902669540137276709037400" ], - "mAssetSupply": "115009269999196976966168432" + "mAssetSupply": "2860661663277141157110733561" }, { "type": "mintMulti", "inputQtys": [ - "717542269024589578240", - "999649984633406488576", - "1336781671758894465024" + "2627697770373661", + "1000489160230474", + "712209344983863" ], - "expectedQty": "3081816821016980746098", + "expectedQty": "4335765809908072", "reserves": [ - "17232850655750374696442446", - "13986150825927455182053114", - "84359239302038979573198306" + "1308992993536315439679513627", + "926892204981200198337913986", + "625902669540849486054021263" ], - "mAssetSupply": "115012351816017993946914530" + "mAssetSupply": "2860661663281476922920641633" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "42160332694862421819392", - "expectedQty": "41441583482440904485481", - "reserves": [ - "17232850655750374696442446", - "13986150825927455182053114", - "84401399634733841995017698" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "300116321596415541248", - "134809732230492454912", - "134270894775466196992" - ], - "expectedQty": "578369403949369885614", - "swapFee": "347229980357836633", + "inputQty": "56838947251666827608064", + "expectedQty": "56547975013491050790956", + "swapFee": "34103368351000096564", "reserves": [ - "17232550539428778280901198", - "13986016016195224689598202", - "84401265363839066528820706" + "1308992993536315439679513627", + "926892204981200198337913986", + "625846121565835995003230307" ], - "mAssetSupply": "115053215030096485481514397" + "mAssetSupply": "2860604858437593607093130133" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "103784130574799634432", - "expectedQty": "107350944227577966523", + "inputQty": "9444524953048741576704", + "outputIndex": 2, + "expectedQty": "9395050399933834832731", + "swapFee": "5666039808812356302", "reserves": [ - "17232550539428778280901198", - "13986119800325799489232634", - "84401265363839066528820706" - ] + "1308992993536315439679513627", + "926901649506153247079490690", + "625836726515436061168397576" + ], + "mAssetSupply": "2860604864103633415905486435", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "871359843930633760931840", - "2234809360188638144495616", - "2390806802474315175428096" - ], - "expectedQty": "5563899571645076321646863", - "swapFee": "3340343949356659788861", - "reserves": [ - "16361190695498144519969358", - "11751310440137161344737018", - "82010458561364751353392610" + "126722454859907787128832", + "38026398689371585773568", + "12935940264322964389888" ], - "mAssetSupply": "109489422809395636737834057" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "418893092072978907136", - "outputIndex": 2, - "expectedQty": "446935390514914168670", - "swapFee": "263108050548090763", + "expectedQty": "177365431602527763891641", + "swapFee": "106483148850827154627", "reserves": [ - "16361190695498144519969358", - "11751729333229234323644154", - "82010011625974236439223940" + "1308866271081455531892384795", + "926863623107463875493717122", + "625823790575171738204007688" ], - "mAssetSupply": "109489423072503687285924820", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2860427498672030888141594794" }, { "type": "redeemMasset", - "inputQty": "5058827793611216021094", + "inputQty": "17919146430129579334041", "expectedQtys": [ - "755722455842136303620", - "542811701017807204796", - "3788037713335655828373" + "8196932189311164512725", + "5804594736079287020750", + "3919296636442322844277" ], - "redemptionFee": "1517648338083364806", + "redemptionFee": "5375743929038873800", "reserves": [ - "16360434973042302383665738", - "11751186521528216516439358", - "82006223588260900783395567" + "1308858074149266220727872070", + "926857818512727796206696372", + "625819871278535295881163411" ], - "mAssetSupply": "109484365762358414153268532" + "mAssetSupply": "2860409584901344687601134553" }, { "type": "mint", "inputIndex": 0, - "inputQty": "137878428843027548078080", - "expectedQty": "141297554234541735137662", + "inputQty": "6187535900371929123520512", + "expectedQty": "6169210446066009490277408", "reserves": [ - "16498313401885329931743818", - "11751186521528216516439358", - "82006223588260900783395567" + "1315045610049638149851392582", + "926857818512727796206696372", + "625819871278535295881163411" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "200480434495891374080", - "207144508278774595584", - "329758119881787965440" + "7016209269880101642698752", + "55810000250889140252442624", + "20183667933073592631164928" ], - "expectedQty": "745617259058896111787", - "swapFee": "447638938798616837", + "expectedQty": "83068430290315547693124234", "reserves": [ - "16498112921450834040369738", - "11750979377019937741843774", - "82005893830141018995430127" + "1322061819319518251494091334", + "982667818763616936459138996", + "646003539211608888512328339" ], - "mAssetSupply": "109624917699333896992294407" + "mAssetSupply": "2949647225637726244784536195" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "496120230870858203136", - "346408676573345480704", - "227739875640330321920" + "252818079500590613790720", + "137030325436486917292032", + "113673003737638355599360" ], - "expectedQty": "1094244548474326352323", - "swapFee": "656940893620768272", + "expectedQty": "503287502784354420420419", "reserves": [ - "16497616801219963182166602", - "11750632968343364396363070", - "82005666090265378665108207" + "1322314637399018842107882054", + "982804849089053423376431028", + "646117212215346526867927699" ], - "mAssetSupply": "109623823454785422665942084" + "mAssetSupply": "2950150513140510599204956614" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "6769736414401068389105664", - "expectedQty": "6890660902459937051616265", - "swapFee": "4061841848640641033463", + "type": "mintMulti", + "inputQtys": [ + "17903861170013806734082048", + "5258575660585992258060288", + "24702364229824041107587072" + ], + "expectedQty": "47921977311582328148023849", "reserves": [ - "16497616801219963182166602", - "11750632968343364396363070", - "75115005187805441613491942" + "1340218498569032648841964102", + "988063424749639415634491316", + "670819576445170567975514771" ], - "mAssetSupply": "102858148882232994917869883" + "mAssetSupply": "2998072490452092927352980463" }, { - "type": "redeemBassets", - "inputQtys": [ - "1688902207167408", - "19480986935848220", - "1093144373023164" - ], - "expectedQty": "23022499475124983", - "swapFee": "13821792760731", + "type": "redeem", + "inputIndex": 2, + "inputQty": "440380345839283536396288", + "expectedQty": "438273077540715763065891", + "swapFee": "264228207503570121837", "reserves": [ - "16497616799531060974999194", - "11750632948862377460514850", - "75115005186712297240468778" + "1340218498569032648841964102", + "988063424749639415634491316", + "670381303367629852212448880" ], - "mAssetSupply": "102858148859210495442744900" + "mAssetSupply": "2997632374334461147386706012" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "22122971949464327028736", - "101824423887494107365376", - "96893987321295008694272" + "343213766191568704", + "78795533953517360", + "370497359461665920" ], - "expectedQty": "223547310737267106469609", - "swapFee": "134208911789433924236", + "expectedQty": "793120593988697151", "reserves": [ - "16475493827581596647970458", - "11648808524974883353149474", - "75018111199391002231774506" + "1340218498912246415033532806", + "988063424828434949588008676", + "670381303738127211674114800" ], - "mAssetSupply": "102634601548473228336275291" + "mAssetSupply": "2997632375127581741375403163" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "902683432083342120452096", - "expectedQty": "935117980207896652439834", + "type": "redeem", + "inputIndex": 2, + "inputQty": "480246791770020201365504", + "expectedQty": "477945122307826122885688", + "swapFee": "288148075062012120819", "reserves": [ - "16475493827581596647970458", - "12551491957058225473601570", - "75018111199391002231774506" - ] + "1340218498912246415033532806", + "988063424828434949588008676", + "669903358615819385551229112" + ], + "mAssetSupply": "2997152416483886783186158478" }, { - "type": "redeemMasset", - "inputQty": "206093648621391917875", - "expectedQtys": [ - "32774791732778280104", - "24968752932889145426", - "149233946883603051567" + "type": "redeemBassets", + "inputQtys": [ + "41772060249679680117932032", + "54279361627919036220178432", + "31775014133154007998267392" ], - "redemptionFee": "61828094586417575", + "expectedQty": "127836236222257077044565035", + "swapFee": "76747790407598805510045", "reserves": [ - "16475461052789863869690354", - "12551466988305292584456144", - "75017961965444118628722939" + "1298446438662566734915600774", + "933784063200515913367830244", + "638128344482665377552961720" ], - "mAssetSupply": "103569513496860598183214825" + "mAssetSupply": "2869316180261629706141593443" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "633767191271183457714176", - "outputIndex": 0, - "expectedQty": "640653845545153591290429", - "swapFee": "392247859208975845871", + "inputIndex": 2, + "inputQty": "173476604603566311604224", + "outputIndex": 1, + "expectedQty": "174139909256438507731601", + "swapFee": "104532871251088432015", "reserves": [ - "15834807207244710278399925", - "13185234179576476042170320", - "75017961965444118628722939" + "1298446438662566734915600774", + "933609923291259474860098643", + "638301821087268943864565944" ], - "mAssetSupply": "103569905744719807159060696", + "mAssetSupply": "2869316284794500957230025458", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 2, - "inputQty": "25081452382548769374208", - "expectedQty": "25471726492286314272754", - "swapFee": "15048871429529261624", + "inputQty": "1857370383468255955124224", + "expectedQty": "1848293997188601561895076", + "swapFee": "1114422230080953573074", "reserves": [ - "15834807207244710278399925", - "13185234179576476042170320", - "74992490238951832314450185" + "1298446438662566734915600774", + "933609923291259474860098643", + "636453527090080342302670868" ], - "mAssetSupply": "103544839341208687918948112" + "mAssetSupply": "2867460028833262782228474308" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "56457545919719563853824", - "expectedQty": "57335284848321336619446", - "swapFee": "33874527551831738312", + "inputQty": "2023837762112329472", + "expectedQty": "2013914783413756200", + "swapFee": "1214302657267397", + "reserves": [ + "1298446438662566734915600774", + "933609923291259474860098643", + "636453525076165558888914668" + ], + "mAssetSupply": "2867460026810639322773412233" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "3643819848001200890839040", + "expectedQty": "3643263059020707816954097", + "reserves": [ + "1298446438662566734915600774", + "937253743139260675750937683", + "636453525076165558888914668" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "168756182994880266240", + "248428538330428112896", + "120105255840783351808" + ], + "expectedQty": "537294871091567306244", "reserves": [ - "15834807207244710278399925", - "13185234179576476042170320", - "74935154954103510977830739" + "1298446607418749729795867014", + "937253991567799006179050579", + "636453645181421399672266476" ], - "mAssetSupply": "103488415669816520186832600" + "mAssetSupply": "2871103827164531122157672574" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1140062754815340800", + "inputQty": "7303866130555931197440", "outputIndex": 1, - "expectedQty": "1129063005322899703", - "swapFee": "698204669621214", + "expectedQty": "7280116102861203844592", + "swapFee": "4369970219344906020", "reserves": [ - "15834808347307465093740725", - "13185233050513470719270617", - "74935154954103510977830739" + "1298453911284880285727064454", + "937246711451696144975205987", + "636453645181421399672266476" ], - "mAssetSupply": "103488415670514724856453814", + "mAssetSupply": "2871103831534501341502578594", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "45420822148331320115", - "expectedQtys": [ - "6947775169165265810", - "5785231673081260943", - "32878996541577958113" - ], - "redemptionFee": "13626246644499396", + "type": "swap", + "inputIndex": 2, + "inputQty": "789870656292052447264768", + "outputIndex": 1, + "expectedQty": "792944427716360796049704", + "swapFee": "475976782105624027354", "reserves": [ - "15834801399532295928474915", - "13185227265281797638009674", - "74935122075106969399872626" + "1298453911284880285727064454", + "936453767023979784179156283", + "637243515837713452119531244" ], - "mAssetSupply": "103488370263318823169633095" + "mAssetSupply": "2871104307511283447126605948", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "122183795227999292358656", - "expectedQty": "120239869261508366730095", + "type": "redeemMasset", + "inputQty": "101606647361464883", + "expectedQtys": [ + "45937714233990988", + "33130591058348088", + "22544897646038969" + ], + "redemptionFee": "30481994208439", "reserves": [ - "15834801399532295928474915", - "13185227265281797638009674", - "75057305870334968692231282" - ] + "1298453911238942571493073466", + "936453766990849193120808195", + "637243515815168554473492275" + ], + "mAssetSupply": "2871104307409707281759349504" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "367122001788184383455232", - "expectedQty": "372818591853685158507936", - "swapFee": "220273201072910630073", + "inputQty": "656197872934267", + "outputIndex": 1, + "expectedQty": "658742521203758", + "swapFee": "395421140991", "reserves": [ - "15834801399532295928474915", - "13185227265281797638009674", - "74684487278481283533723346" + "1298453911238942571493073466", + "936453766990190450599604437", + "637243515815824752346426542" ], - "mAssetSupply": "103241708403993220063538031" + "mAssetSupply": "2871104307409707677180490495", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "6766786664541426483", - "expectedQtys": [ - "1037551386790012480", - "863942053270000729", - "4893587951774251606" + "type": "redeemBassets", + "inputQtys": [ + "3662755103821554555813888", + "67891425628435706281984", + "1070311502400564077002752" ], - "redemptionFee": "2030035999362427", + "expectedQty": "4795279739051494953971310", + "swapFee": "2878895180539220504685", "reserves": [ - "15834800361980909138462435", - "13185226401339744368008945", - "74684482384893331759471740" + "1294791156135121016937259578", + "936385875564562014893322453", + "636173204313424188269423790" ], - "mAssetSupply": "103241701639236591521473975" + "mAssetSupply": "2866309027670656182226519185" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "543586653728470269952", - "113766718173741023232", - "804213532443081834496" + "181551018717921343963136", + "91196500216055643242496", + "63808818023044206297088" ], - "expectedQty": "1463403138587989609316", + "expectedQty": "336307376162880405550620", + "swapFee": "201905569039151734370", "reserves": [ - "15835343948634637608732387", - "13185340168057918109032177", - "74685286598425774841306236" + "1294609605116403095593296442", + "936294679064345959250079957", + "636109395495401144063126702" ], - "mAssetSupply": "103243165042375179511083291" + "mAssetSupply": "2865972720294493301820968565" }, { - "type": "mintMulti", - "inputQtys": [ - "1580126082925885724295168", - "1929420080363217302323200", - "25234060520112250683392" - ], - "expectedQty": "3612376485134663582419193", + "type": "mint", + "inputIndex": 0, + "inputQty": "4488537038670357504", + "expectedQty": "4475945390889960981", + "reserves": [ + "1294609609604940134263653946", + "936294679064345959250079957", + "636109395495401144063126702" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "9230760796949457435361280", + "expectedQty": "9250984666207690419823947", + "swapFee": "5538456478169674461216", "reserves": [ - "17415470031560523333027555", - "15114760248421135411355377", - "74710520658945887091989628" + "1285358624938732443843829999", + "936294679064345959250079957", + "636109395495401144063126702" ], - "mAssetSupply": "106855541527509843093502484" + "mAssetSupply": "2856747502429967404950029482" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "17974840438513137664", - "outputIndex": 2, - "expectedQty": "18604812329177869183", - "swapFee": "11020798289747933", + "type": "redeem", + "inputIndex": 0, + "inputQty": "21381711714813595648", + "expectedQty": "21428117096530708084", + "swapFee": "12829027028888157", "reserves": [ - "17415470031560523333027555", - "15114778223261573924493041", - "74710502054133557914120445" + "1285358603510615347313121915", + "936294679064345959250079957", + "636109395495401144063126702" ], - "mAssetSupply": "106855541538530641383250417", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2856747481061084717165321991" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "27868381532340646576128", + "inputIndex": 2, + "inputQty": "107917377437931283677184", "outputIndex": 0, - "expectedQty": "28009448592312364978615", - "swapFee": "17086017851285182445", + "expectedQty": "108613680862354350534123", + "swapFee": "65027130977675297124", "reserves": [ - "17387460582968210968048940", - "15142646604793914571069169", - "74710502054133557914120445" + "1285249989829752992962587792", + "936294679064345959250079957", + "636217312872839075346803886" ], - "mAssetSupply": "106855558624548492668432862", + "mAssetSupply": "2856747546088215694840619115", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2375537147861127680", - "4096260065572992000", - "5732808276162135040" - ], - "expectedQty": "12255757568343035686", - "reserves": [ - "17387462958505358829176620", - "15142650701053980144061169", - "74710507786941834076255485" - ], - "mAssetSupply": "106855570880306061011468548" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "484693517842358965633024", - "expectedQty": "473714118921559900029456", - "swapFee": "290816110705415379379", - "reserves": [ - "17387462958505358829176620", - "14668936582132420244031713", - "74710507786941834076255485" + "57803241347398737330176", + "147423545130353940234240", + "144836722501299516473344" ], - "mAssetSupply": "106371168178574407461214903" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "316640864551129373999104", - "expectedQty": "311308609769603563630751", - "swapFee": "189984518730677624399", + "expectedQty": "350493945790084975697945", "reserves": [ - "17076154348735755265545869", - "14668936582132420244031713", - "74710507786941834076255485" + "1285307793071100391699917968", + "936442102609476313190314197", + "636362149595340374863277230" ], - "mAssetSupply": "106054717298542008764840198" + "mAssetSupply": "2857098040034005779816317060" }, { - "type": "redeemMasset", - "inputQty": "22404994963596097513062", - "expectedQtys": [ - "3606406056966765394841", - "3098012623842344700737", - "15778519114980805464577" + "type": "redeemBassets", + "inputQtys": [ + "2763182097296695918329856", + "3162916815571331951099904", + "4624166417179584457867264" ], - "redemptionFee": "6721498489078829253", + "expectedQty": "10561848797493891555293283", + "swapFee": "6340913826792410379403", "reserves": [ - "17072547942678788500151028", - "14665838569508577899330976", - "74694729267826853270790908" + "1282544610973803695781588112", + "933279185793904981239214293", + "631737983178160790405409966" ], - "mAssetSupply": "106032319025076901746156389" + "mAssetSupply": "2846536191236511888261023777" }, { "type": "mintMulti", "inputQtys": [ - "4910003302037712076275712", - "1648765758849849749405696", - "3434348072012685957398528" + "10729393857963028480", + "13096827313092476928", + "10684790182134523904" ], - "expectedQty": "10049671038293969143423449", + "expectedQty": "34524710456255171531", "reserves": [ - "21982551244716500576426740", - "16314604328358427648736672", - "78129077339839539228189436" + "1282544621703197553744616592", + "933279198890732294331691221", + "631737993862950972539933870" ], - "mAssetSupply": "116081990063370870889579838" + "mAssetSupply": "2846536225761222344516195308" }, { "type": "redeemBassets", "inputQtys": [ - "19408427698684491202560", - "92730996709034442752", - "31755149339705110167552" + "5088577750917752069029888", + "3394711976320753513529344", + "5988992305461836583534592" ], - "expectedQty": "51088080423943477361418", - "swapFee": "30671251004969067857", + "expectedQty": "14483445874111576299193990", + "swapFee": "8695284695284116249265", "reserves": [ - "21963142817017816085224180", - "16314511597361718614293920", - "78097322190499834118021884" + "1277456043952279801675586704", + "929884486914411540818161877", + "625749001557489135956399278" ], - "mAssetSupply": "116030901982946927412218420" + "mAssetSupply": "2832052779887110768217001318" }, { - "type": "redeemMasset", - "inputQty": "5938733532127775948", - "expectedQtys": [ - "1123787891967637568", - "834764439189223573", - "3996004843385889944" + "type": "redeemBassets", + "inputQtys": [ + "5245633825490977792", + "589777078504687488", + "5393243390712020992" ], - "redemptionFee": "1781620059638332", + "expectedQty": "11237499735487980938", + "swapFee": "6746547769954761", "reserves": [ - "21963141693229924117586612", - "16314510762597279425070347", - "78097318194494990732131940" + "1277456038706645976184608912", + "929884486324634462313474389", + "625748996164245745244378286" ], - "mAssetSupply": "116030896045995015344080804" + "mAssetSupply": "2832052768649611032729020380" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "5002872619681870168195072", - "expectedQty": "4856787978248426197892665", - "swapFee": "3001723571809122100917", + "inputQty": "75435754243649502707712", + "outputIndex": 2, + "expectedQty": "75044468617199549338824", + "swapFee": "45251457671536335719", "reserves": [ - "21963141693229924117586612", - "11457722784348853227177682", - "78097318194494990732131940" + "1277456038706645976184608912", + "929959922078878111816182101", + "625673951695628545695039462" ], - "mAssetSupply": "111031025149884954297986649" + "mAssetSupply": "2832052813901068704265356099", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "67126130809112893587456", - "129908317749026272313344", - "11424578318527077810176" + "1599812209535537905664", + "116795009531803189248", + "172680320929470152704" ], - "expectedQty": "214410844015731329524838", + "expectedQty": "1885539176826567846429", + "swapFee": "1132002707720573051", "reserves": [ - "22030267824039037011174068", - "11587631102097879499491026", - "78108742772813517809942116" + "1277454438894436440646703248", + "929959805283868580012992853", + "625673779015307616224886758" ], - "mAssetSupply": "111245435993900685627511487" + "mAssetSupply": "2832050928361891877697509670" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "2571709010756300288", - "expectedQty": "2609652623356634791", - "swapFee": "1543025406453780", - "reserves": [ - "22030267824039037011174068", - "11587631102097879499491026", - "78108740163160894453307325" - ], - "mAssetSupply": "111245433423734700277664979" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "304893347894589495705600", - "expectedQty": "301636278802841474319457", - "swapFee": "182936008736753697423", + "inputQty": "1224140775031569945460736", + "expectedQty": "1218045707569231512016306", + "swapFee": "734484465018941967276", "reserves": [ - "21728631545236195536854611", - "11587631102097879499491026", - "78108740163160894453307325" + "1277454438894436440646703248", + "929959805283868580012992853", + "624455733307738384712870452" ], - "mAssetSupply": "110940723011848847535656802" + "mAssetSupply": "2830827522071325326694016210" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "109866166304050950176768", - "114986766699291520008192", - "354859058557228070993920" + "67702435659392176", + "323788941164478976", + "150848182831805696" ], - "expectedQty": "580231002563318470690326", - "swapFee": "348347610104053514522", + "expectedQty": "542741414966573568", "reserves": [ - "21618765378932144586677843", - "11472644335398587979482834", - "77753881104603666382313405" + "1277454438962138876306095424", + "929959805607657521177471829", + "624455733458586567544676148" ], - "mAssetSupply": "110360492009285529064966476" + "mAssetSupply": "2830827522614066741660589778" }, { - "type": "redeemMasset", - "inputQty": "10757379839100034272460", - "expectedQtys": [ - "2106655182660358106448", - "1117959570047392515366", - "7576779419633144122434" + "type": "mintMulti", + "inputQtys": [ + "2600824707102830592262144", + "5574707452336345207275520", + "5307371047366635768774656" ], - "redemptionFee": "3227213951730010281", + "expectedQty": "13497629176551730604559237", "reserves": [ - "21616658723749484228571395", - "11471526375828540586967468", - "77746304325184033238190971" + "1280055263669241706898357568", + "935534513059993866384747349", + "629763104505953203313450804" ], - "mAssetSupply": "110349737856660380760704297" + "mAssetSupply": "2844325151790618472265149015" }, { - "type": "redeemBassets", - "inputQtys": [ - "83095036861469605888", - "105922838292257177600", - "109999403925529903104" - ], - "expectedQty": "302644901668055744056", - "swapFee": "181695958575979033", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3722214422349449527296", + "expectedQty": "3730337587614919397396", + "swapFee": "2233328653409669716", "reserves": [ - "21616575628712622758965507", - "11471420452990248329789868", - "77746194325780107708287867" + "1280051533331654091978960172", + "935534513059993866384747349", + "629763104505953203313450804" ], - "mAssetSupply": "110349435211758712704960241" + "mAssetSupply": "2844321431809524776225291435" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "163371561312576734232576", - "expectedQty": "165811543397860801065997", - "swapFee": "98022936787546040539", + "type": "mint", + "inputIndex": 1, + "inputQty": "16557847040164662519791616", + "expectedQty": "16553083096525956067970641", "reserves": [ - "21616575628712622758965507", - "11471420452990248329789868", - "77580382782382246907221870" - ], - "mAssetSupply": "110186161673382923516768204" + "1280051533331654091978960172", + "952092360100158528904538965", + "629763104505953203313450804" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10455713504298069393408", - "8676705210561637384192", - "31326125752297711468544" + "2450557498646897404936192", + "4217338336789100379504640", + "6757423505963729610080256" ], - "expectedQty": "50450850492030811731311", - "swapFee": "30288683505321680046", + "expectedQty": "13446928144525633717057214", "reserves": [ - "21606119915208324689572099", - "11462743747779686692405676", - "77549056656629949195753326" + "1282502090830300989383896364", + "956309698436947629284043605", + "636520528011916932923531060" ], - "mAssetSupply": "110135710822890892705036893" + "mAssetSupply": "2874321443050576366010319290" }, { "type": "mintMulti", "inputQtys": [ - "889309203535411150848", - "720223114257763532800", - "164040232265174941696" + "83986990608329006383104", + "34263654735535872671744", + "132296771742231049535488" ], - "expectedQty": "1810404674695084571736", + "expectedQty": "250884607862958805693515", "reserves": [ - "21607009224411860100722947", - "11463463970893944455938476", - "77549220696862214370695022" + "1282586077820909318390279468", + "956343962091683165156715349", + "636652824783659163973066548" ], - "mAssetSupply": "110137521227565587789608629" + "mAssetSupply": "2874572327658439324816012805" }, { "type": "redeemBassets", "inputQtys": [ - "4168209268217602899968", - "2056865039681381203968", - "3975452652519540391936" + "7371725938802323137495040", + "3005925205316146043027456", + "3772609170865539019440128" ], - "expectedQty": "10268985514245711089466", - "swapFee": "6165090362765085705", + "expectedQty": "14145789429869789239290158", + "swapFee": "8492569199441538466654", "reserves": [ - "21602841015143642497822979", - "11461407105854263074734508", - "77545245244209694830303086" + "1275214351882106995252784428", + "953338036886367019113687893", + "632880215612793624953626420" ], - "mAssetSupply": "110127252242051342078519163" + "mAssetSupply": "2860426538228569535576722647" }, { - "type": "mintMulti", - "inputQtys": [ - "683257085793173116026880", - "511467968509457488412672", - "250706374576354881437696" - ], - "expectedQty": "1468987570896858799445685", + "type": "mint", + "inputIndex": 0, + "inputQty": "1040609180183775543296", + "expectedQty": "1037805558695752153575", "reserves": [ - "22286098100936815613849859", - "11972875074363720563147180", - "77795951618786049711740782" - ], - "mAssetSupply": "111596239812948200877964848" + "1275215392491287179028327724", + "953338036886367019113687893", + "632880215612793624953626420" + ] }, { "type": "mintMulti", "inputQtys": [ - "8879780801045757952", - "13686455188428566528", - "4437008775403665920" + "7984826938208782647296", + "4082609084412472590336", + "760750991945134768128" ], - "expectedQty": "27549529928042897777", + "expectedQty": "12808575670488366883896", "reserves": [ - "22286106980717616659607811", - "11972888760818908991713708", - "77795956055794825115406702" + "1275223377318225387810975020", + "953342119495451431586278229", + "632880976363785570088394548" ], - "mAssetSupply": "111596267362478128920862625" + "mAssetSupply": "2860440384609798719695760118" }, { "type": "redeemMasset", - "inputQty": "7364266396645032827289", + "inputQty": "3315321257194045204070", "expectedQtys": [ - "1470224734027937365793", - "789856981712929322868", - "5132235024248145857240" + "1477572076202978657605", + "1104615646081530079748", + "733304670278053367223" ], - "redemptionFee": "2209279918993509848", + "redemptionFee": "994596377158213561", "reserves": [ - "22284636755983588722242018", - "11972098903837196062390840", - "77790823820770576969549462" + "1275221899746149184832317415", + "953341014879805350056198481", + "632880243059115292035027325" ], - "mAssetSupply": "111588905305361402881545184" + "mAssetSupply": "2860437070283137902808769609" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "409267908266270474108928", - "expectedQty": "415031079259637595690524", - "swapFee": "245560744959762284465", + "inputQty": "2126209202381132398592", + "expectedQty": "2135483126520939071642", "reserves": [ - "22284636755983588722242018", - "11972098903837196062390840", - "77375792741510939373858938" - ], - "mAssetSupply": "111179882957840092169720721" + "1275221899746149184832317415", + "953341014879805350056198481", + "632882369268317673167425917" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "163516295217172971520000", - "71919824163949282066432", - "105122403329950397497344" + "620063646259236541825024", + "1027535033364167266402304", + "1302335808238833733992448" ], - "expectedQty": "343281497176946875593768", + "expectedQty": "2953594986084312697787109", + "swapFee": "1773220924205110685083", "reserves": [ - "22448153051200761693762018", - "12044018728001145344457272", - "77480915144840889771356282" + "1274601836099889948290492391", + "952313479846441182789796177", + "631580033460078839433433469" ], - "mAssetSupply": "111523164455017039045314489" + "mAssetSupply": "2857485610780180111050054142" }, { - "type": "redeemMasset", - "inputQty": "157213839994330910661017", - "expectedQtys": [ - "31635594372684811681181", - "16973320265013187995516", - "109191825160666591772065" + "type": "redeemBassets", + "inputQtys": [ + "19049243233911662975123456", + "38007019068508583493632000", + "37120680244871984412884992" ], - "redemptionFee": "47164151998299273198", + "expectedQty": "94280590808469158484139984", + "swapFee": "56602315874606258845791", "reserves": [ - "22416517456828076882080837", - "12027045407736132156461756", - "77371723319680223179584217" + "1255552592865978285315368935", + "914306460777932599296164177", + "594459353215206855020548477" ], - "mAssetSupply": "111365997779174706433926670" + "mAssetSupply": "2763205019971710952565914158" }, { "type": "mint", "inputIndex": 2, - "inputQty": "381589979978054779273216", - "expectedQty": "376108041832208004565371", + "inputQty": "15951022328299270144", + "expectedQty": "16027460679818229083", "reserves": [ - "22416517456828076882080837", - "12027045407736132156461756", - "77753313299658277958857433" + "1255552592865978285315368935", + "914306460777932599296164177", + "594459369166229183319818621" ] }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "518543995696264859615232", + "expectedQty": "515758594885407475717895", + "swapFee": "311126397417758915769", + "reserves": [ + "1255552592865978285315368935", + "914306460777932599296164177", + "593943610571343775844100726" + ], + "mAssetSupply": "2762686803129872785283443778" + }, { "type": "swap", - "inputIndex": 1, - "inputQty": "2436744669429403316387840", + "inputIndex": 0, + "inputQty": "18076915156594014967300096", "outputIndex": 2, - "expectedQty": "2542604696470244886252675", - "swapFee": "1508057539998789339604", + "expectedQty": "17921157694013427966559221", + "swapFee": "10814035715506869520025", "reserves": [ - "22416517456828076882080837", - "14463790077165535472849596", - "75210708603188033072604758" + "1273629508022572300282669031", + "914306460777932599296164177", + "576022452877330347877541505" ], - "mAssetSupply": "111743613878546913227831645", + "mAssetSupply": "2762697617165588292152963803", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "7947916619849256455372", + "inputQty": "160613019698262048768", "expectedQtys": [ - "1593926991338904907476", - "1028448127388835160920", - "5347859171756895682463" + "74021894957055646747", + "53138449110949766499", + "33477768245171352417" ], - "redemptionFee": "2384374985954776936", + "redemptionFee": "48183905909478614", "reserves": [ - "22414923529836737977173361", - "14462761629038146637688676", - "75205360744016276176922295" + "1273629434000677343227022284", + "914306407639483488346397678", + "576022419399562102706189088" ], - "mAssetSupply": "111735668346302049926153209" + "mAssetSupply": "2762697456600752499800393649" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10110805401670466404352", - "expectedQty": "9865742532827459998979", - "swapFee": "6066483241002279842", + "type": "mint", + "inputIndex": 2, + "inputQty": "9284942844733016382636032", + "expectedQty": "9333179340126739890956112", "reserves": [ - "22414923529836737977173361", - "14452895886505319177689697", - "75205360744016276176922295" - ], - "mAssetSupply": "111725563607383620462028699" + "1273629434000677343227022284", + "914306407639483488346397678", + "585307362244295119088825120" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "329752930687973792415744", - "49167953346167991959552", - "203899008171730656034816" + "type": "redeemMasset", + "inputQty": "201753289491793403969536", + "expectedQtys": [ + "92669192358202836177144", + "66524873014072985330862", + "42586924495072596227316" ], - "expectedQty": "584420199449313065562414", - "swapFee": "350862637251939002739", + "redemptionFee": "60525986847538021190", "reserves": [ - "22085170599148764184757617", - "14403727933159151185730145", - "75001461735844545520887479" + "1273536764808319140390845140", + "914239882766469415361066816", + "585264775319800046492597804" ], - "mAssetSupply": "111141143407934307396466285" + "mAssetSupply": "2771828943177374293825401415" }, { "type": "mintMulti", "inputQtys": [ - "6636002415715903488", - "16066262263032727552", - "8152528321549885440" + "16572861613649655808", + "47530366265682477056", + "23520609602149756928" ], - "expectedQty": "31205636140104677640", + "expectedQty": "87677238767253538630", "reserves": [ - "22085177235151179900661105", - "14403743999421414218457697", - "75001469888372867070772919" + "1273536781381180754040500948", + "914239930296835681043543872", + "585264798840409648642354732" ], - "mAssetSupply": "111141174613570447501143925" + "mAssetSupply": "2771829030854613061078940045" }, { - "type": "mintMulti", - "inputQtys": [ - "1131605767653730942976", - "5263937192336629432320", - "5952820014693086134272" + "type": "redeemMasset", + "inputQty": "6192065270711421337", + "expectedQtys": [ + "2844135421177434141", + "2041733075343152910", + "1307046933772126074" ], - "expectedQty": "12415213537517615591450", + "redemptionFee": "1857619581213426", "reserves": [ - "22086308840918833631604081", - "14409007936613750847890017", - "75007422708387560156907191" + "1273536778537045332863066807", + "914239928255102605700390962", + "585264797533362714870228658" ], - "mAssetSupply": "111153589827107965116735375" + "mAssetSupply": "2771829024664405409948732134" }, { - "type": "mintMulti", - "inputQtys": [ - "31280887132882399657984", - "33420320814043777466368", - "54985077625714605293568" - ], - "expectedQty": "120115101752676348863345", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9654475411860494433124352", + "expectedQty": "9678025860243991792144127", + "swapFee": "5792685247116296659874", "reserves": [ - "22117589728051716031262065", - "14442428257427794625356385", - "75062407786013274762200759" + "1263858752676801341070922680", + "914239928255102605700390962", + "585264797533362714870228658" ], - "mAssetSupply": "111273704928860641465598720" + "mAssetSupply": "2762180341937792031812267656" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "401860270559100993536", - "expectedQty": "397095029025901422387", + "type": "mintMulti", + "inputQtys": [ + "4602768479696426201251840", + "3022649693091126612852736", + "15664469172884163082059776" + ], + "expectedQty": "23351869465297685658205317", "reserves": [ - "22117589728051716031262065", - "14442428257427794625356385", - "75062809646283833863194295" - ] + "1268461521156497767272174520", + "917262577948193732313243698", + "600929266706246877952288434" + ], + "mAssetSupply": "2785532211403089717470472973" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "3851633278475902124032", - "expectedQty": "3805958906371222469865", + "inputIndex": 1, + "inputQty": "586617725489588281016320", + "expectedQty": "586450701888441058078176", "reserves": [ - "22117589728051716031262065", - "14442428257427794625356385", - "75066661279562309765318327" + "1268461521156497767272174520", + "917849195673683320594260018", + "600929266706246877952288434" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "704943347561045765914624", - "expectedQty": "687032082314534354287664", - "swapFee": "422966008536627459548", + "inputQty": "260933975002373775425536", + "expectedQty": "260851980419321694729723", + "swapFee": "156560385001424265255", "reserves": [ - "22117589728051716031262065", - "13755396175113260271068721", - "75066661279562309765318327" + "1268461521156497767272174520", + "917588343693263998899530295", + "600929266706246877952288434" ], - "mAssetSupply": "110573387601243529451035896" + "mAssetSupply": "2785857884690360786177390868" }, { - "type": "redeemBassets", - "inputQtys": [ - "85452574676364222791680", - "71719679692355200352256", - "135526981539964336996352" - ], - "expectedQty": "293694942528923060483925", - "swapFee": "176322759172857550820", + "type": "redeem", + "inputIndex": 1, + "inputQty": "459005084581538816", + "expectedQty": "458860433250157321", + "swapFee": "275403050748923", "reserves": [ - "22032137153375351808470385", - "13683676495420905070716465", - "74931134298022345428321975" + "1268461521156497767272174520", + "917588343234403565649372974", + "600929266706246877952288434" ], - "mAssetSupply": "110279692658714606390551971" + "mAssetSupply": "2785857884231631104646600975" }, { - "type": "redeemMasset", - "inputQty": "61598941176729922279833", - "expectedQtys": [ - "12302801548522882435166", - "7640999836076248158626", - "41841736398824786637750" - ], - "redemptionFee": "18479682353018976683", + "type": "redeem", + "inputIndex": 0, + "inputQty": "78386015990193449861120", + "expectedQty": "78569137101408284006176", + "swapFee": "47031609594116069916", "reserves": [ - "22019834351826828926035219", - "13676035495584828822557839", - "74889292561623520641684225" + "1268382952019396358988168344", + "917588343234403565649372974", + "600929266706246877952288434" ], - "mAssetSupply": "110218112197220229487248821" + "mAssetSupply": "2785779545247250505312809771" }, { "type": "mint", "inputIndex": 0, - "inputQty": "3581150217175967947816960", - "expectedQty": "3605764391390931471507317", + "inputQty": "4345380161372513739210752", + "expectedQty": "4332608721499339301653439", "reserves": [ - "25600984569002796873852179", - "13676035495584828822557839", - "74889292561623520641684225" + "1272728332180768872727379096", + "917588343234403565649372974", + "600929266706246877952288434" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "221650297056400800481280", - "120826162262052542873600", - "93167124140806132203520" + "type": "redeemMasset", + "inputQty": "328733718084750", + "expectedQtys": [ + "149909099367065", + "108078714558269", + "70780827987766" ], - "expectedQty": "439076396895793740287648", - "swapFee": "263604000537798923526", + "redemptionFee": "98620115425", "reserves": [ - "25379334271946396073370899", - "13555209333322776279684239", - "74796125437482714509480705" + "1272728332180618963628012031", + "917588343234295486934814705", + "600929266706176097124300668" ], - "mAssetSupply": "113384800191715367218468490" + "mAssetSupply": "2790112153968421209516493885" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6509560851739864727552", - "2767557384182969663488", - "17827377978366572363776" + "513077832914675840", + "1140614359443669504", + "141367223204710608" ], - "expectedQty": "27011734645175327608528", - "swapFee": "16216770849614965544", + "expectedQty": "1793909156455869694", "reserves": [ - "25372824711094656208643347", - "13552441775938593310020751", - "74778298059504347937116929" + "1272728332693696796542687871", + "917588344374909846378484209", + "600929266847543320329011276" ], - "mAssetSupply": "113357788457070191890859962" + "mAssetSupply": "2790112155762330365972363579" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "53776256356865163264", - "expectedQty": "53455716233832003439", - "swapFee": "32265753814119097", + "type": "mintMulti", + "inputQtys": [ + "21371362077201647271936", + "16123435153382428377088", + "8363584099350754623488" + ], + "expectedQty": "45830895626629375217867", "reserves": [ - "25372771255378422376639908", - "13552441775938593310020751", - "74778298059504347937116929" + "1272749704055773998189959807", + "917604467810063228806861297", + "600937630431642671083634764" ], - "mAssetSupply": "113357734713079588839815795" + "mAssetSupply": "2790157986657956995347581446" }, { - "type": "redeemMasset", - "inputQty": "36508115392878300364", - "expectedQtys": [ - "8169130845408148826", - "4363404731319986222", - "24075955089672383863" + "type": "mintMulti", + "inputQtys": [ + "691166932420258131083264", + "897392389755053348487168", + "249151049273864871739392" ], - "redemptionFee": "10952434617863490", + "expectedQty": "1836615732968188677699967", "reserves": [ - "25372763086247576968491082", - "13552437412533861990034529", - "74778273983549258264733066" + "1273440870988194256321043071", + "918501860199818282155348465", + "601186781480916535955374156" ], - "mAssetSupply": "113357698215916630579378921" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "4253701228775429942280192", - "expectedQty": "4342004905378352948718471", - "reserves": [ - "25372763086247576968491082", - "17806138641309291932314721", - "74778273983549258264733066" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "21635242386355170312192", - "expectedQty": "21969562843994929669962", - "reserves": [ - "25372763086247576968491082", - "17827773883695647102626913", - "74778273983549258264733066" - ] + "mAssetSupply": "2791994602390925184025281413" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11532986523431192231936", - "20307028116697216188416", - "33622310759819292704768" + "45467690480923341488128", + "47510884112627144851456", + "45639157363974218973184" ], - "expectedQty": "65537259968990671364296", - "swapFee": "39345963559530120891", + "expectedQty": "138688708414610366147610", "reserves": [ - "25361230099724145776259146", - "17807466855578949886438497", - "74744651672789438972028298" + "1273486338678675179662531199", + "918549371083930909300199921", + "601232420638280510174347340" ], - "mAssetSupply": "117656135424169987786403058" + "mAssetSupply": "2792133291099339794391429023" }, { "type": "redeemBassets", "inputQtys": [ - "26682956286730780540928", - "99569549109627080146944", - "173517384094174089838592" + "169193447122134532096", + "146517194874382548992", + "55564916167260045312" ], - "expectedQty": "299888226779330401651926", - "swapFee": "180040960643984631770", + "expectedQty": "371001757970145051711", + "swapFee": "222734695599446699", "reserves": [ - "25334547143437414995718218", - "17707897306469322806291553", - "74571134288695264882189706" + "1273486169485228057527999103", + "918549224566736034917650929", + "601232365073364342914302028" ], - "mAssetSupply": "117356247197390657384751132" + "mAssetSupply": "2792132920097581824246377312" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "93666575544548449058816", - "168688008507078469484544", - "167048710794394338328576" + "711020100959245650886656", + "1891823239481640053899264", + "1766028252039833303646208" ], - "expectedQty": "431034714712381396529067", + "expectedQty": "4374711071896850230043404", + "swapFee": "2626402484628887470508", "reserves": [ - "25428213718981963444777034", - "17876585314976401275776097", - "74738182999489659220518282" + "1272775149384268811877112447", + "916657401327254394863751665", + "599466336821324509610655820" ], - "mAssetSupply": "117787281912103038781280199" + "mAssetSupply": "2787758209025684974016333908" }, { - "type": "redeemMasset", - "inputQty": "71462217336690587992064", - "expectedQtys": [ - "15422814405928340610101", - "10842572764708664694048", - "45330479685915814288841" + "type": "redeemBassets", + "inputQtys": [ + "469887471433477128192", + "425440375822423752704", + "373035371699904184320" ], - "redemptionFee": "21438665201007176397", + "expectedQty": "1268646837317793400570", + "swapFee": "761645089444342645", "reserves": [ - "25412790904576035104166933", - "17865742742211692611082049", - "74692852519803743406229441" + "1272774679496797378399984255", + "916656975886878572439998961", + "599465963785952809706471500" ], - "mAssetSupply": "117715841133431549200464532" + "mAssetSupply": "2787756940378847656222933338" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "69603152684284035072", - "expectedQty": "70670062944291789617", + "inputIndex": 2, + "inputQty": "903421928759786335109120", + "expectedQty": "907752488050656845485332", "reserves": [ - "25412790904576035104166933", - "17865812345364376895117121", - "74692852519803743406229441" + "1272774679496797378399984255", + "916656975886878572439998961", + "600369385714712596041580620" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "641151961706320232448", - "expectedQty": "637067514454885087938", - "swapFee": "384691177023792139", + "inputQty": "12841876129100099684925440", + "expectedQty": "12803552170705141271111969", "reserves": [ - "25412153837061580219078995", - "17865812345364376895117121", - "74692852519803743406229441" - ], - "mAssetSupply": "117715271036223964195813840" + "1285616555625897478084909695", + "916656975886878572439998961", + "600369385714712596041580620" + ] }, { - "type": "redeemMasset", - "inputQty": "9172299992176141113753", - "expectedQtys": [ - "1979505038047451374044", - "1391675250087674718613", - "5818274154056644700069" + "type": "mintMulti", + "inputQtys": [ + "2520857937232754376704", + "879625403549568335872", + "3949488310670329380864" ], - "redemptionFee": "2751689997652842334", + "expectedQty": "7361356977524653763714", "reserves": [ - "25410174332023532767704951", - "17864420670114289220398508", - "74687034245649686761529372" + "1285619076483834710839286399", + "916657855512282122008334833", + "600373335203023266370961484" ], - "mAssetSupply": "117706101487921785707542421" + "mAssetSupply": "2801475606394580978993294353" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "27169135044249318850560", - "expectedQty": "26995781701154388955671", - "swapFee": "16301481026549591310", + "inputQty": "61543536839509361339400192", + "expectedQty": "61683762417841354999147591", + "swapFee": "36926122103705616803640", "reserves": [ - "25383178550322378378749280", - "17864420670114289220398508", - "74687034245649686761529372" + "1223935314065993355840138808", + "916657855512282122008334833", + "600373335203023266370961484" ], - "mAssetSupply": "117678948654358562938283171" + "mAssetSupply": "2739968995677175323270697801" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1902265649230675806519296", - "expectedQty": "1868816355554716248567004", - "swapFee": "1141359389538405483911", + "type": "mintMulti", + "inputQtys": [ + "16153348628764354936832", + "15996276131418620297216", + "8583210301269028634624" + ], + "expectedQty": "40721103450561459186903", "reserves": [ - "25383178550322378378749280", - "15995604314559572971831504", - "74687034245649686761529372" + "1223951467414622120195075640", + "916673851788413540628632049", + "600381918413324535399596108" ], - "mAssetSupply": "115777824364517425537247786" + "mAssetSupply": "2740009716780625884729884704" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "134635649719951536", - "outputIndex": 1, - "expectedQty": "130673113252432896", - "swapFee": "79978469626753", + "type": "redeemBassets", + "inputQtys": [ + "4899921949170380908265472", + "4512570460637076570243072", + "2328536673569288147173376" + ], + "expectedQty": "11736368033972575985331825", + "swapFee": "7046048449453217521712", "reserves": [ - "25383178550322378378749280", - "15995604183886459719398608", - "74687034380285336481480908" + "1219051545465451739286810168", + "912161281327776464058388977", + "598053381739755247252422732" ], - "mAssetSupply": "115777824364597404006874539", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2728273348746653308744552879" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "468921280868003757424640", + "596603173330744036556800", + "540714331641723091943424" + ], + "expectedQty": "1607159907999909003255614", + "swapFee": "964874869721778469034", + "reserves": [ + "1218582624184583735529385528", + "911564678154445720021832177", + "597512667408113524160479308" + ], + "mAssetSupply": "2726666188838653399741297265" }, { "type": "redeemBassets", "inputQtys": [ - "520515137703413678080", - "1534130942656678461440", - "2022136959397438160896" + "19448030877900607586304", + "50288512299974336184320", + "100989423671229370335232" ], - "expectedQty": "4089487444194530055512", - "swapFee": "2455165565856231772", + "expectedQty": "171108192882559814520734", + "swapFee": "102726551660532208037", "reserves": [ - "25382658035184674965071200", - "15994070052943803040937168", - "74685012243325939043320012" + "1218563176153705834921799224", + "911514389642145745685647857", + "597411677984442294790144076" ], - "mAssetSupply": "115773734877153209476819027" + "mAssetSupply": "2726495080645770839926776531" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "59283477228973531136", - "expectedQty": "58694201831576401514", + "inputIndex": 0, + "inputQty": "6386065812532102000803840", + "expectedQty": "6368510734228824186658258", "reserves": [ - "25382658035184674965071200", - "15994070052943803040937168", - "74685071526803168016851148" + "1224949241966237936922603064", + "911514389642145745685647857", + "597411677984442294790144076" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "4056846858155476125745152", - "outputIndex": 1, - "expectedQty": "3899376401769789599396411", - "swapFee": "2408959336284882584906", + "type": "mintMulti", + "inputQtys": [ + "747998945308342", + "23179977957363648", + "24056948824001816" + ], + "expectedQty": "48083487694001460", "reserves": [ - "25382658035184674965071200", - "12094693651174013441540757", - "78741918384958644142596300" + "1224949241966985935867911406", + "911514389665325723643011505", + "597411678008499243614145892" ], - "mAssetSupply": "115776202530691325935805447", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2732863591428083151807436249" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "392334765953175068344320", - "553070822573218308554752", - "269873590453908893859840" + "24613561939389113780142080", + "19357932970263650186035200", + "30236700267011258552680448" ], - "expectedQty": "1236403798305375845698436", - "swapFee": "742287651574170009424", + "expectedQty": "74267263455796001897780915", "reserves": [ - "24990323269231499896726880", - "11541622828600795132986005", - "78472044794504735248736460" + "1249562803906375049648053486", + "930872322635589373829046705", + "627648378275510502166826340" ], - "mAssetSupply": "114539798732385950090107011" + "mAssetSupply": "2807130854883879153705217164" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "383387452842295028613120", - "outputIndex": 0, - "expectedQty": "375094954539053330251889", - "swapFee": "226748933109579826297", + "type": "redeemBassets", + "inputQtys": [ + "48019920508132081532928", + "1231009036845852708044800", + "401228988417948036104192" + ], + "expectedQty": "1681468471933180728101954", + "swapFee": "1009486775225043462938", "reserves": [ - "24615228314692446566474991", - "11541622828600795132986005", - "78855432247347030277349580" + "1249514783985866917566520558", + "929641313598743521121001905", + "627247149287092554130722148" ], - "mAssetSupply": "114540025481319059669933308", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2805449386411945972977115210" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "9918238297221844959232", - "35365289876025818218496", - "23705590897075936034816" + "22593935504725710764769280", + "12601051609999668557119488", + "2685909199855544457756672" ], - "expectedQty": "70227668800463234866417", - "swapFee": "42161898419329538643", + "expectedQty": "37827843757069340996247536", "reserves": [ - "24605310076395224721515759", - "11506257538724769314767509", - "78831726656449954341314764" + "1272108719490592628331289838", + "942242365208743189678121393", + "629933058486948098588478820" ], - "mAssetSupply": "114469797812518596435066891" + "mAssetSupply": "2843277230169015313973362746" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "5817087553598483", - "expectedQty": "6066297308172108", + "inputIndex": 2, + "inputQty": "1318697105613737164800", + "expectedQty": "1324425553042626964681", "reserves": [ - "24605310076395224721515759", - "11506257544541856868365992", - "78831726656449954341314764" + "1272108719490592628331289838", + "942242365208743189678121393", + "629934377184053712325643620" ] }, { - "type": "mintMulti", - "inputQtys": [ - "188376576388846592196608", - "92290295803572618526720", - "113924734498516422885376" - ], - "expectedQty": "398202122343541282827633", + "type": "redeem", + "inputIndex": 2, + "inputQty": "5908608812734442635264", + "expectedQty": "5879522637262449272056", + "swapFee": "3545165287640665581", "reserves": [ - "24793686652784071313712367", - "11598547840345429486892712", - "78945651390948470764200140" + "1272108719490592628331289838", + "942242365208743189678121393", + "629928497661416449876371564" ], - "mAssetSupply": "114867999940928435026066632" + "mAssetSupply": "2843272649530920909798357744" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "1550002182512488704", - "expectedQty": "1571621620862059764", - "swapFee": "930001309507493", + "inputIndex": 0, + "inputQty": "6329381994609094877511680", + "expectedQty": "6342767382246582888604274", + "swapFee": "3797629196765456926507", "reserves": [ - "24793686652784071313712367", - "11598547840345429486892712", - "78945649819326849902140376" + "1265765952108346045442685564", + "942242365208743189678121393", + "629928497661416449876371564" ], - "mAssetSupply": "114867998391856253823085421" + "mAssetSupply": "2836947065165508580377772571" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "57016609249107787776", - "expectedQty": "59427399038245726101", + "type": "redeemBassets", + "inputQtys": [ + "39877459833069396012564480", + "29354581052695507869106176", + "9666887256509845514223616" + ], + "expectedQty": "78824906588196638869436357", + "swapFee": "47323337955691398160558", "reserves": [ - "24793686652784071313712367", - "11598604856954678594680488", - "78945649819326849902140376" - ] + "1225888492275276649430121084", + "912887784156047681809015217", + "620261610404906604362147948" + ], + "mAssetSupply": "2758122158577311941508336214" }, { "type": "redeemMasset", - "inputQty": "167567880636078924", + "inputQty": "5910172575017834066739", "expectedQtys": [ - "36157825045146417", - "16914802992335983", - "115130235943434590" + "2626076209418971730540", + "1955571739964645087057", + "1328713230415462978959" ], - "redemptionFee": "50270364190823", + "redemptionFee": "1773051772505350220", "reserves": [ - "24793686616626246268565950", - "11598604840039875602344505", - "78945649704196613958705786" + "1225885866199067230458390544", + "912885828584307717163928160", + "620260281691676188899168989" ], - "mAssetSupply": "114868057651737681796923421" + "mAssetSupply": "2758116250177788696179619695" }, { - "type": "mintMulti", - "inputQtys": [ - "52963712524679550861312", - "36508032943730903220224", - "49800093237011869073408" + "type": "redeemMasset", + "inputQty": "6548557432405463400448", + "expectedQtys": [ + "2909730749986074845733", + "2166802016319957946038", + "1472233642948471299109" ], - "expectedQty": "140465418435100052135523", + "redemptionFee": "1964567229721639020", "reserves": [ - "24846650329150925819427262", - "11635112872983606505564729", - "78995449797433625827779194" + "1225882956468317244383544811", + "912883661782291397205982122", + "620258809458033240427869880" ], - "mAssetSupply": "115008523070172781849058944" + "mAssetSupply": "2758109703584923520437858267" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "96397365759573101641728", - "expectedQty": "97736393842405309112973", - "swapFee": "57838419455743860985", + "inputQty": "42417128694665408801669120", + "expectedQty": "42200658274270792655903745", + "swapFee": "25450277216799245281001", "reserves": [ - "24846650329150925819427262", - "11635112872983606505564729", - "78897713403591220518666221" + "1225882956468317244383544811", + "912883661782291397205982122", + "578058151183762447771966135" ], - "mAssetSupply": "114912183542832664491278201" + "mAssetSupply": "2715718025167474910881470148" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "10415748176802490613760", - "7863325380293744918528", - "719401779440232169472" - ], - "expectedQty": "19390169121778457346000", - "swapFee": "11641086124741919559", - "reserves": [ - "24836234580974123328813502", - "11627249547603312760646201", - "78896994001811780286496749" + "517303816946988930301952", + "317683906518707320389632", + "1244102568063689067331584" ], - "mAssetSupply": "114892793373710886033932201" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "2199259385077896595898368", - "outputIndex": 1, - "expectedQty": "2054927370818466041862488", - "swapFee": "1300323118164453700740", + "expectedQty": "2083597400198850626264081", "reserves": [ - "24836234580974123328813502", - "9572322176784846718783713", - "81096253386889676882395117" + "1226400260285264233313846763", + "913201345688810104526371754", + "579302253751826136839297719" ], - "mAssetSupply": "114894093696829050487632941", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2717801622567673761507734229" }, { "type": "redeemMasset", - "inputQty": "237529553518995020185", + "inputQty": "160895772224631869538304", "expectedQtys": [ - "51330488099417774773", - "19783674049996659552", - "167606335646868404202" + "72581978946513301173246", + "54045944862483521629193", + "34284813324894859132044" ], - "redemptionFee": "71258866055698506", + "redemptionFee": "48268731667389560861", "reserves": [ - "24836183250486023911038729", - "9572302393110796722124161", - "81096085780554030013990915" + "1226327678306317720012673517", + "913147299743947621004742561", + "579267968938501241980165675" ], - "mAssetSupply": "114893856238534397548311262" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "4918386160055901304651776", - "outputIndex": 1, - "hardLimitError": true + "mAssetSupply": "2717640775064180797027756786" }, { "type": "redeemBassets", "inputQtys": [ - "515847980931613196288", - "9642736084775906312192", - "7928268603719084408832" + "598654321498651", + "1783332897113884", + "1585202603681608" ], - "expectedQty": "18584308132979731953962", - "swapFee": "11157279247336240916", + "expectedQty": "3972434952409653", + "swapFee": "2384891906589", "reserves": [ - "24835667402505092297842441", - "9562659657026020815811969", - "81088157511950310929582083" + "1226327678305719065691174866", + "913147299742164288107628677", + "579267968936916039376484067" ], - "mAssetSupply": "114875271930401417816357300" + "mAssetSupply": "2717640775060208362075347133" }, { - "type": "mintMulti", - "inputQtys": [ - "11351753912139416338432", - "19959113585633062289408", - "17116698299609634570240" - ], - "expectedQty": "49521971497481621782854", - "reserves": [ - "24847019156417231714180873", - "9582618770611653878101377", - "81105274210249920564152323" + "type": "redeemMasset", + "inputQty": "3062518341709761839156428", + "expectedQtys": [ + "1381538114570019137758451", + "1028719991506213446692458", + "652583148691196944261882" ], - "mAssetSupply": "114924793901898899438140154" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "254769244149718007676928", - "expectedQty": "259164859486328544941166", - "swapFee": "152861546489830804606", + "redemptionFee": "918755502512928551746", "reserves": [ - "24847019156417231714180873", - "9582618770611653878101377", - "80846109350763592019211157" + "1224946140191149046553416415", + "912118579750658074660936219", + "578615385788224842432222185" ], - "mAssetSupply": "114670177519295671261267832" + "mAssetSupply": "2714579175474001113164742451" }, { - "type": "redeemMasset", - "inputQty": "333355014448386387476480", - "expectedQtys": [ - "72210523655677458605788", - "27849051633216850536572", - "234955342328660702631307" + "type": "mintMulti", + "inputQtys": [ + "2149436409500092896116736", + "2264111548190872569905152", + "1705633565882428277391360" ], - "redemptionFee": "100006504334515916242", + "expectedQty": "6120332502638567266365269", "reserves": [ - "24774808632761554255575085", - "9554769718978437027564805", - "80611154008434931316579850" + "1227095576600649139449533151", + "914382691298848947230841371", + "580321019354107270709613545" ], - "mAssetSupply": "114336922511351619389707594" + "mAssetSupply": "2720699507976639680431107720" }, { - "type": "redeemMasset", - "inputQty": "3352488524718573564723", - "expectedQtys": [ - "726207620785797357686", - "280072661211190818152", - "2362901575911698265811" - ], - "redemptionFee": "1005746557415572069", + "type": "redeem", + "inputIndex": 1, + "inputQty": "963095997583539707052032", + "expectedQty": "962974880036770116237698", + "swapFee": "577857598550123824231", "reserves": [ - "24774082425140768458217399", - "9554489646317225836746653", - "80608791106859019618314039" + "1227095576600649139449533151", + "913419716418812177114603673", + "580321019354107270709613545" ], - "mAssetSupply": "114333571028573458231714940" + "mAssetSupply": "2719736989836654690847879919" }, { - "type": "redeemMasset", - "inputQty": "487706295870249519965798", - "expectedQtys": [ - "105645709494537210011282", - "40743823332042448793752", - "343745240765770724984901" + "type": "redeemBassets", + "inputQtys": [ + "5466604852766419451904", + "6946072931821420544000", + "1078985021944717508608" ], - "redemptionFee": "146311888761074855989", + "expectedQty": "13478009055424174072154", + "swapFee": "8091660429512211770", "reserves": [ - "24668436715646231248206117", - "9513745822985183387952901", - "80265045866093248893329138" + "1227090109995796373030081247", + "913412770345880355694059673", + "580319940369085325992104937" ], - "mAssetSupply": "113846011044591969786605131" + "mAssetSupply": "2719723511827599266673807765" }, { "type": "mint", "inputIndex": 0, - "inputQty": "772217978571689820160", - "expectedQty": "778019276535327329759", - "reserves": [ - "24669208933624802938026277", - "9513745822985183387952901", - "80265045866093248893329138" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "3565289732526789623808", - "expectedQty": "3502856836859836594659", + "inputQty": "15510305012997095562412032", + "expectedQty": "15465238200587658154327055", "reserves": [ - "24669208933624802938026277", - "9513745822985183387952901", - "80268611155825775682952946" + "1242600415008793468592493279", + "913412770345880355694059673", + "580319940369085325992104937" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "313801320009874538496", - "550406655930684932096", - "379083990585376309248" + "2203583539344984768512", + "1596601314197103706112", + "1114845013633269235712" ], - "expectedQty": "1274826196171481164005", - "swapFee": "765354930661285469", + "expectedQty": "4913439751484301986170", "reserves": [ - "24668895132304793063487781", - "9513195416329252703020805", - "80268232071835190306643698" + "1242602618592332813577261791", + "913414366947194552797765785", + "580321055214098959261340649" ], - "mAssetSupply": "113849017094509193469365544" + "mAssetSupply": "2735193663467938409130120990" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "652781205821979230208", - "621857203493367840768", - "793221339243877498880" + "86407591690137625427968", + "84378096680699978317824", + "50419631459353837436928" ], - "expectedQty": "2099337578766469860184", + "expectedQty": "221167138468309871826928", + "swapFee": "132779951051616893232", "reserves": [ - "24669547913510615042717989", - "9513817273532746070861573", - "80269025293174434184142578" + "1242516211000642675951833823", + "913329988850513852819447961", + "580270635582639605423903721" ], - "mAssetSupply": "113851116432087959939225728" + "mAssetSupply": "2734972496329470099258294062" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "62154160218912319340544", - "outputIndex": 2, - "expectedQty": "63694538845591540149616", - "swapFee": "37571281334847250198", + "type": "redeem", + "inputIndex": 1, + "inputQty": "26598938079946823100792832", + "expectedQty": "26591970822185396511488896", + "swapFee": "15959362847968093860475", "reserves": [ - "24731702073729527362058533", - "9513817273532746070861573", - "80205330754328842643992962" + "1242516211000642675951833823", + "886738018028328456307959065", + "580270635582639605423903721" ], - "mAssetSupply": "113851154003369294786475926", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2708389517612371244251361705" }, { "type": "redeemBassets", "inputQtys": [ - "1401596531743433216", - "5701929064288568320", - "4934956170626737152" + "6612332586980601153716224", + "17604375843396808813314048", + "12202929354950027394416640" ], - "expectedQty": "12333078130067598838", - "swapFee": "7404289451711586", + "expectedQty": "36455655570857937181885256", + "swapFee": "21886525257669363927487", "reserves": [ - "24731700672132995618625317", - "9513811571603681782293253", - "80205325819372672017255810" + "1235903878413662074798117599", + "869133642184931647494645017", + "568067706227689578029487081" ], - "mAssetSupply": "113851141670291164718877088" + "mAssetSupply": "2671933862041513307069476449" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "2207327296222008967168", - "outputIndex": 0, - "expectedQty": "2331984087316160618970", - "swapFee": "1410413081510938009", + "inputQty": "141511265319975108608", + "expectedQty": "141454310233380333612", + "swapFee": "84906759191985065", "reserves": [ - "24729368688045679458006347", - "9516018898899903791260421", - "80205325819372672017255810" + "1235903878413662074798117599", + "869133500730621414114311405", + "568067706227689578029487081" ], - "mAssetSupply": "113851143080704246229815097", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2671933720615154746286352906" }, { - "type": "redeemMasset", - "inputQty": "13176853462339016038809", - "expectedQtys": [ - "2861258148347193317464", - "1101030396601483256511", - "9279983849828624568684" + "type": "redeemBassets", + "inputQtys": [ + "2785024011699973259264", + "6622728131566037368832", + "21316817152594763841536" ], - "redemptionFee": "3953056038701704811", + "expectedQty": "30820998770154528197419", + "swapFee": "18503701482982506422", "reserves": [ - "24726507429897332264688883", - "9514917868503302308003910", - "80196045835522843392687126" + "1235901093389650374824858335", + "869126878002489848076942573", + "568046389410536983265645545" ], - "mAssetSupply": "113837970180297945915481099" + "mAssetSupply": "2671902899616384591758155487" }, { "type": "mint", "inputIndex": 1, - "inputQty": "195813129954635527749632", - "expectedQty": "208272433613167113516306", + "inputQty": "2161373042481774234435584", + "expectedQty": "2160928254300193018523256", "reserves": [ - "24726507429897332264688883", - "9710730998457937835753542", - "80196045835522843392687126" + "1235901093389650374824858335", + "871288251044971622311378157", + "568046389410536983265645545" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "57071847699025666048", - "expectedQty": "60630245472317093363", + "type": "swap", + "inputIndex": 0, + "inputQty": "10585165690241695088640", + "outputIndex": 2, + "expectedQty": "10493557932125791571459", + "swapFee": "6331431664504664280", "reserves": [ - "24726507429897332264688883", - "9710788070305636861419590", - "80196045835522843392687126" - ] + "1235911678555340616519946975", + "871288251044971622311378157", + "568035895852604857474074086" + ], + "mAssetSupply": "2674063834202116449281343023", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "5326517572821247328256", - "expectedQty": "5366001833364829026420", + "inputQty": "210886704324826040893440", + "expectedQty": "210233515503088833642550", "reserves": [ - "24731833947470153512017139", - "9710788070305636861419590", - "80196045835522843392687126" + "1236122565259665442560840415", + "871288251044971622311378157", + "568035895852604857474074086" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "61276114101320168767488", - "31812686321814501064704", - "57224487545770776461312" + "36105577839485000", + "41617746175272432", + "42145986439487000" ], - "expectedQty": "151774277424190510480483", - "swapFee": "91119237997312693904", + "expectedQty": "119959488656815050", "reserves": [ - "24670557833368833343249651", - "9678975383983822360354886", - "80138821347977072616225814" + "1236122565295771020400325415", + "871288251086589368486650589", + "568035895894750843913561086" ], - "mAssetSupply": "113899894968565759664636705" + "mAssetSupply": "2674274067837579026771800623" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "465161876942892327501824", - "expectedQty": "461311536504774521342365", - "swapFee": "279097126165735396501", + "type": "mintMulti", + "inputQtys": [ + "1946234636047215199518720", + "1535244592763538218418176", + "2371468421370702634942464" + ], + "expectedQty": "5858435436185578182090979", "reserves": [ - "24209246296864058821907286", - "9678975383983822360354886", - "80138821347977072616225814" + "1238068799931818235599844135", + "872823495679352906705068765", + "570407364316121546548503550" ], - "mAssetSupply": "113435012188749033072531382" + "mAssetSupply": "2680132503273764604953891602" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "136745786107685744148480", - "expectedQty": "137831644671822698236400", + "inputIndex": 1, + "inputQty": "4266688213483191795712", + "expectedQty": "4265807504999681183052", "reserves": [ - "24345992082971744566055766", - "9678975383983822360354886", - "80138821347977072616225814" + "1238068799931818235599844135", + "872827762367566389896864477", + "570407364316121546548503550" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "125683476792718262272", - "1717335243012118413312", - "478998257313637531648" + "type": "redeemMasset", + "inputQty": "5434631293418640244736", + "expectedQtys": [ + "2509733453486194686489", + "1769340310058711450745", + "1156293127181539384423" ], - "expectedQty": "2422356349084506892918", - "swapFee": "1454286381279471818", + "redemptionFee": "1630389388025592073", "reserves": [ - "24345866399494951847793494", - "9677258048740810241941574", - "80138342349719758978694166" + "1238066290198364749405157646", + "872825993027256331185413732", + "570406208022994365009119127" ], - "mAssetSupply": "113570421477071771263874864" + "mAssetSupply": "2680131336080365574020421991" }, { - "type": "mintMulti", - "inputQtys": [ - "105763481100475568", - "257955488443715584", - "201992085776171936" - ], - "expectedQty": "579213894966786072", + "type": "redeem", + "inputIndex": 2, + "inputQty": "211506214074490311147520", + "expectedQty": "210332927336968512247777", + "swapFee": "126903728444694186688", "reserves": [ - "24345866505258432948269062", - "9677258306696298685657158", - "80138342551711844754866102" + "1238066290198364749405157646", + "872825993027256331185413732", + "570195875095657396496871350" ], - "mAssetSupply": "113570422056285666230660936" + "mAssetSupply": "2679919956770019528403461159" }, { - "type": "mintMulti", - "inputQtys": [ - "465556823472788340736", - "84126238528444563456", - "295017477750399434752" + "type": "redeem", + "inputIndex": 0, + "inputQty": "9258060931183217943248896", + "expectedQty": "9280973135683764823565983", + "swapFee": "5554836558709930765949", + "reserves": [ + "1228785317062680984581591663", + "872825993027256331185413732", + "570195875095657396496871350" ], - "expectedQty": "848518705697049142069", + "mAssetSupply": "2670667450675395020390978212" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "1341710733555901399040", + "outputIndex": 0, + "expectedQty": "1344688077337659783478", + "swapFee": "804839016658661935", "reserves": [ - "24346332062081905736609798", - "9677342432934827130220614", - "80138637569189595154300854" + "1228783972374603646921808185", + "872827334737989887086812772", + "570195875095657396496871350" ], - "mAssetSupply": "113571270574991363279803005" + "mAssetSupply": "2670667451480234037049640147", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "32195421783872847740928", - "100781728861172600406016", - "69883019907280555474944" + "type": "redeemMasset", + "inputQty": "333280419067325369548", + "expectedQtys": [ + "153297550444974923880", + "108890004577598303522", + "71135067588060714790" ], - "expectedQty": "208165837642056706328908", + "redemptionFee": "99984125720197610", "reserves": [ - "24378527483865778584350726", - "9778124161795999730626630", - "80208520589096875709775798" + "1228783819077053201946884305", + "872827225847985309488509250", + "570195803960589808436156560" ], - "mAssetSupply": "113779436412633419986131913" + "mAssetSupply": "2670667118299799095444468209" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "44833111842561200226304", - "expectedQty": "42198888949448802370566", - "swapFee": "26899867105536720135", + "type": "mint", + "inputIndex": 0, + "inputQty": "2305448379535369560915968", + "expectedQty": "2298415578214453653679996", "reserves": [ - "24378527483865778584350726", - "9735925272846550928256064", - "80208520589096875709775798" - ], - "mAssetSupply": "113734630200657964322625744" + "1231089267456588571507800273", + "872827225847985309488509250", + "570195803960589808436156560" + ] }, { "type": "redeemBassets", "inputQtys": [ - "770185878566623510528", - "3163122607662691254272", - "444376747426016526336" + "18493634200498020352", + "24182089779794337792", + "10129458726971959296" ], - "expectedQty": "4572403495501436444323", - "swapFee": "2745089150791336668", + "expectedQty": "52793163559304922647", + "swapFee": "31694915084633733", "reserves": [ - "24377757297987211960840198", - "9732762150238888237001792", - "80208076212349449693249462" + "1231089248962954371009779921", + "872827201665895529694171458", + "570195793831131081464197264" ], - "mAssetSupply": "113730057797162462886181421" + "mAssetSupply": "2672965481084849989793225558" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "108289224337991258865664", + "expectedQty": "108823378287389774739175", + "reserves": [ + "1231089248962954371009779921", + "872827201665895529694171458", + "570304083055469072723062928" + ] }, { "type": "redeemMasset", - "inputQty": "12965599524409268869529", + "inputQty": "2156866941191864996750950", "expectedQtys": [ - "2778310526500958603113", - "1109233930069992957132", - "9141240505727776387530" + "993051001089633473027268", + "704060998926539516319766", + "460032480245289859910627" ], - "redemptionFee": "3889679857322780660", + "redemptionFee": "647060082357559499025", "reserves": [ - "24374978987460711002237085", - "9731652916308818244044660", - "80198934971843721916861932" + "1230096197961864737536752653", + "872123140666968990177851692", + "569844050575223782863152301" ], - "mAssetSupply": "113717096087317910940092552" + "mAssetSupply": "2670918084582027872130712808" }, { - "type": "mintMulti", - "inputQtys": [ - "1044526458550875979776", - "1837299802136800395264", - "1338015954789026758656" - ], - "expectedQty": "4319010386782255559023", + "type": "mint", + "inputIndex": 0, + "inputQty": "2106542342156474368", + "expectedQty": "2100106070514604525", "reserves": [ - "24376023513919261878216861", - "9733490216110955044439924", - "80200272987798510943620588" - ], - "mAssetSupply": "113721415097704693195651575" + "1230096200068407079693227021", + "872123140666968990177851692", + "569844050575223782863152301" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "330388835659690111139840", - "593369585801651596296192", - "364998737158089176252416" - ], - "expectedQty": "1323956722525234613439863", - "swapFee": "794850944081589721897", + "type": "redeem", + "inputIndex": 2, + "inputQty": "4029233744173716", + "expectedQty": "4007055496126562", + "swapFee": "2417540246504", "reserves": [ - "24045634678259571767077021", - "9140120630309303448143732", - "79835274250640421767368172" + "1230096200068407079693227021", + "872123140666968990177851692", + "569844050571216727367025739" ], - "mAssetSupply": "112397458375179458582211712" + "mAssetSupply": "2670918086678107126441390121" }, { - "type": "mintMulti", - "inputQtys": [ - "8405028171213381632", - "48204219619283230720", - "60594125853518405632" - ], - "expectedQty": "119527397717940074432", + "type": "mint", + "inputIndex": 1, + "inputQty": "24663565385800523710464", + "expectedQty": "24657989828372280535642", "reserves": [ - "24045643083287742980458653", - "9140168834528922731374452", - "79835334844766275285773804" - ], - "mAssetSupply": "112397577902577176522286144" + "1230096200068407079693227021", + "872147804232354790701562156", + "569844050571216727367025739" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "293655066558496866304", - "expectedQty": "291108164886225408423", - "swapFee": "176193039935098119", + "inputQty": "22412003917289299053117440", + "outputIndex": 2, + "expectedQty": "22210570420962379840514930", + "swapFee": "13405394976490742925424", "reserves": [ - "24045351975122856755050230", - "9140168834528922731374452", - "79835334844766275285773804" + "1252508203985696378746344461", + "872147804232354790701562156", + "547633480150254347526510809" ], - "mAssetSupply": "112397284423703657960517959" + "mAssetSupply": "2670956150062911989464851187", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "137455251862939125153792", - "expectedQty": "136250958314796288295867", - "swapFee": "82473151117763475092", + "inputQty": "694411583272377778176", + "expectedQty": "696298186226084418457", + "swapFee": "416646949963426666", "reserves": [ - "23909101016808060466754363", - "9140168834528922731374452", - "79835334844766275285773804" + "1252507507687510152661926004", + "872147804232354790701562156", + "547633480150254347526510809" ], - "mAssetSupply": "112259911644991836598839259" + "mAssetSupply": "2670955456067975667050499677" }, { - "type": "mintMulti", - "inputQtys": [ - "17338613293372330213376", - "24582177365896592359424", - "184670279261779614760960" + "type": "redeemMasset", + "inputQty": "1357485133601700784059187", + "expectedQtys": [ + "636382849235592549270502", + "443127008185905752961459", + "278245481400955454722531" ], - "expectedQty": "225068891469553406192645", + "redemptionFee": "407245540080510235217", "reserves": [ - "23926439630101432796967739", - "9164751011894819323733876", - "80020005124028054900534764" + "1251871124838274560112655502", + "871704677224168884948600697", + "547355234668853392071788278" ], - "mAssetSupply": "112484980536461390005031904" + "mAssetSupply": "2669598378179914046776675707" }, { "type": "mintMulti", "inputQtys": [ - "53859887961080722358272", - "156386397467314720079872", - "177587099106153913647104" + "10370116195073260519424", + "16647306915072916324352", + "7427896214621395091456" ], - "expectedQty": "395793237778092410314754", + "expectedQty": "34447723174641195539503", "reserves": [ - "23980299518062513519326011", - "9321137409362134043813748", - "80197592223134208814181868" + "1251881494954469633373174926", + "871721324531083957864925049", + "547362662565068013466879734" ], - "mAssetSupply": "112880773774239482415346658" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "776375248912916492058624", - "expectedQty": "824891517567324626628135", - "reserves": [ - "23980299518062513519326011", - "10097512658275050535872372", - "80197592223134208814181868" - ] + "mAssetSupply": "2669632825903088687972215210" }, { "type": "redeemMasset", - "inputQty": "1697457843603521929216", + "inputQty": "4004319937868214400817561", "expectedQtys": [ - "357883098790298415848", - "150695745793158035162", - "1196872574452937126665" + "1877198280325364344967691", + "1307147503919462085409966", + "820771177641561328265379" ], - "redemptionFee": "509237353081056578", + "redemptionFee": "1201295981360464320245", "reserves": [ - "23979941634963723220910163", - "10097361962529257377837210", - "80196395350559755877055203" + "1250004296674144269028207235", + "870414177027164495779515083", + "546541891387426452138614355" ], - "mAssetSupply": "113703968343200556601102155" + "mAssetSupply": "2665629707261201834035717894" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "9008384304378940137406464", - "outputIndex": 0, - "hardLimitError": true + "type": "redeem", + "inputIndex": 0, + "inputQty": "65870619220034975694848", + "expectedQty": "66049565135909350442081", + "swapFee": "39522371532020985416", + "reserves": [ + "1249938247109008359677765154", + "870414177027164495779515083", + "546541891387426452138614355" + ], + "mAssetSupply": "2665563876164353331081008462" }, { - "type": "redeemBassets", - "inputQtys": [ - "341189183245196631998464", - "663969844102721653702656", - "629669570531017384525824" + "type": "redeemMasset", + "inputQty": "1018598808989322443961139", + "expectedQtys": [ + "477498838243565005009375", + "332513833609375893420039", + "208788809201209355113176" ], - "expectedQty": "1667468347774467692003901", - "swapFee": "1001081657659276180910", + "redemptionFee": "305579642696796733188", "reserves": [ - "23638752451718526588911699", - "9433392118426535724134554", - "79566725780028738492529379" + "1249460748270764794672755779", + "870081663193555119886095044", + "546333102578225242783501179" ], - "mAssetSupply": "112036499995426088909098254" + "mAssetSupply": "2664545582935006705433780511" }, { - "type": "mintMulti", - "inputQtys": [ - "68971768053669904384", - "103623183278753464320", - "104367604720459563008" - ], - "expectedQty": "282434183895897543157", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1199737858788579088531456", + "expectedQty": "1192330010441746050871051", + "swapFee": "719842715273147453118", "reserves": [ - "23638821423486580258816083", - "9433495741609814477598874", - "79566830147633458952092387" + "1249460748270764794672755779", + "870081663193555119886095044", + "545140772567783496732630128" ], - "mAssetSupply": "112036782429609984806641411" + "mAssetSupply": "2663346564918933399492702173" }, { "type": "mintMulti", "inputQtys": [ - "438078235703678009344", - "2903114955723471585280", - "5484643283963159248896" + "370572515724240302899200", + "53655344221748184743936", + "144635222503381136310272" ], - "expectedQty": "8920667464853995777949", + "expectedQty": "568431685618313618655760", "reserves": [ - "23639259501722283936825427", - "9436398856565537949184154", - "79572314790917422111341283" + "1249831320786489034975654979", + "870135318537776868070838980", + "545285407790286877868940400" ], - "mAssetSupply": "112045703097074838802419360" + "mAssetSupply": "2663914996604551713111357933" }, { "type": "mintMulti", "inputQtys": [ - "142964729662824890368", - "246327979799701618688", - "315608124744953626624" + "94576555381298000", + "88097272025119408", + "94486002788102544" ], - "expectedQty": "716517954102676997582", + "expectedQty": "277351334189610573", "reserves": [ - "23639402466451946761715795", - "9436645184545337650802842", - "79572630399042167064967907" + "1249831320881065590356952979", + "870135318625874140095958388", + "545285407884772880657042944" ], - "mAssetSupply": "112046419615028941479416942" + "mAssetSupply": "2663914996881903047300968506" }, { "type": "redeemBassets", "inputQtys": [ - "52519135453812545814528", - "30179701318260491288576", - "25973311347571698958336" - ], - "expectedQty": "110627583641894436274387", - "swapFee": "66416400025151752816", - "reserves": [ - "23586883330998134215901267", - "9406465483227077159514266", - "79546657087694595366009571" + "14508491931298203648", + "206579549997406272", + "19670405174627045376" ], - "mAssetSupply": "111935792031387047043142555" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "372615879687403798528", - "outputIndex": 2, - "expectedQty": "382440765992500618234", - "swapFee": "225495823588451690", + "expectedQty": "34447914052019624195", + "swapFee": "20681157125487066", "reserves": [ - "23587255946877821619699795", - "9406465483227077159514266", - "79546274646928602865391337" + "1249831306372573659058749331", + "870135318419294590098552116", + "545285388214367706029997568" ], - "mAssetSupply": "111935792256882870631594245", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2663914962433988995281344311" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "23116580516873297920", - "16424454513056483328", - "22241457544697769984" - ], - "expectedQty": "62658136836630314275", - "reserves": [ - "23587279063458338492997715", - "9406481907681590215997594", - "79546296888386147563161321" - ], - "mAssetSupply": "111935854915019707261908520" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "2499669469756884841922560", - "expectedQty": "2453966011854205464425559", - "reserves": [ - "23587279063458338492997715", - "9406481907681590215997594", - "82045966358143032405083881" - ] - }, - { - "type": "redeemMasset", - "inputQty": "417275848425435975961804", - "expectedQtys": [ - "86016824599954564911448", - "34303053869794754626301", - "299200831023170354744985" + "9647237648563763675136", + "14616654408241964384256", + "46975786086322944344064" ], - "redemptionFee": "125182754527630792788", + "expectedQty": "71467523210640675031311", + "swapFee": "42906257680993000819", "reserves": [ - "23501262238858383928086267", - "9372178853811795461371293", - "81746765527119862050338896" + "1249821659134925095295074195", + "870120701764886348134167860", + "545238412428281383085653504" ], - "mAssetSupply": "113972670261203004381165063" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "9383728673462855680", - "expectedQty": "9474421781131940590", - "reserves": [ - "23501271622587057390941947", - "9372178853811795461371293", - "81746765527119862050338896" - ] + "mAssetSupply": "2663843494910778354606313000" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2152410350480233739583488", - "expectedQty": "2126995002485812856219971", - "swapFee": "1291446210288140243750", + "inputIndex": 2, + "inputQty": "9843452302057279488", + "expectedQty": "9782525824752125202", + "swapFee": "5906071381234367", "reserves": [ - "21374276620101244534721976", - "9372178853811795461371293", - "81746765527119862050338896" + "1249821659134925095295074195", + "870120701764886348134167860", + "545238402645755558333528302" ], - "mAssetSupply": "111821560831354839913765915" + "mAssetSupply": "2663843485073232123930267879" }, { "type": "redeemBassets", "inputQtys": [ - "2573130484975123038208", - "5801052833263090925568", - "3251078935981465272320" - ], - "expectedQty": "12002414461100468092128", - "swapFee": "7205772139944247403", - "reserves": [ - "21371703489616269411683768", - "9366377800978532370445725", - "81743514448183880585066576" + "385852952190095", + "194800467842777", + "1176547524319476" ], - "mAssetSupply": "111809558416893739445673787" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "6929128176826029441024", - "expectedQty": "7064243894334558279140", - "swapFee": "4157476906095617664", + "expectedQty": "1762480620915502", + "swapFee": "1058123246497", "reserves": [ - "21371703489616269411683768", - "9366377800978532370445725", - "81736450204289546026787436" + "1249821659134539242342884100", + "870120701764691547666325083", + "545238402644579010809208826" ], - "mAssetSupply": "111802633446193819511850427" + "mAssetSupply": "2663843485071469643309352377" }, { - "type": "mintMulti", - "inputQtys": [ - "5082084672546200879104", - "69999287683190366404608", - "26825211365768686469120" + "type": "redeemMasset", + "inputQty": "10708301012412735488", + "expectedQtys": [ + "5022611716065380384", + "3496721631549133034", + "2191129245645952556" ], - "expectedQty": "106328656403836224835249", + "redemptionFee": "3212490303723820", "reserves": [ - "21376785574288815612562872", - "9436377088661722736850333", - "81763275415655314713256556" + "1249821654111927526277503716", + "870120698267969916117192049", + "545238400453449765163256270" ], - "mAssetSupply": "111908962102597655736685676" + "mAssetSupply": "2663843474366381121200340709" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "622075434458370124283904", - "expectedQty": "578992277077948605846968", - "swapFee": "373245260675022074570", + "type": "redeemMasset", + "inputQty": "190789882282532454", + "expectedQtys": [ + "89487911943098392", + "62301116459531406", + "39039366782650215" + ], + "redemptionFee": "57236964684759", "reserves": [ - "21376785574288815612562872", - "8857384811583774131003365", - "81763275415655314713256556" + "1249821654022439614334405324", + "870120698205668799657660643", + "545238400414410398380606055" ], - "mAssetSupply": "111287259913399960634476342" + "mAssetSupply": "2663843474175648475882493014" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "917932105660681027584", - "expectedQty": "850554211044245799879", - "swapFee": "550759263396408616", + "inputQty": "148584275521950580736", + "expectedQty": "148539292428931335363", + "swapFee": "89150565313170348", "reserves": [ - "21376785574288815612562872", - "8856534257372729885203486", - "81763275415655314713256556" + "1249821654022439614334405324", + "870120549666376370726325280", + "545238400414410398380606055" ], - "mAssetSupply": "111286342532053563349857374" + "mAssetSupply": "2663843325680523519245082626" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "980077759981158869762048", - "outputIndex": 1, - "expectedQty": "880372780235898390880843", - "swapFee": "575773037847490675402", - "reserves": [ - "21376785574288815612562872", - "7976161477136831494322643", - "82743353175636473583018604" + "type": "redeemBassets", + "inputQtys": [ + "173833359115927977984", + "94913909709039878144", + "72381152313606332416" ], - "mAssetSupply": "111286918305091410840532776", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "207753633510346304", - "expectedQty": "204689402305630622", - "swapFee": "124652180106207", + "expectedQty": "340930759388351934190", + "swapFee": "204681264391646148", "reserves": [ - "21376785369599413306932250", - "7976161477136831494322643", - "82743353175636473583018604" + "1249821480189080498406427340", + "870120454752466661686447136", + "545238328033258084774273639" ], - "mAssetSupply": "111286918097462429510292679" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9951299983724428285444096", - "hardLimitError": true + "mAssetSupply": "2663842984749764130893148436" }, { - "type": "redeemBassets", - "inputQtys": [ - "137235624290447729360896", - "41812322432833273462784", - "152100668184302247215104" + "type": "redeemMasset", + "inputQty": "518272473447373055249612", + "expectedQtys": [ + "243090057931890451875972", + "169238275310727039193280", + "106048758842134834678346" ], - "expectedQty": "333778693720450667455739", - "swapFee": "200387448701491295250", + "redemptionFee": "155481742034211916574", "reserves": [ - "21239549745308965577571354", - "7934349154703998220859859", - "82591252507452171335803500" + "1249578390131148607954551368", + "869951216477155934647253856", + "545132279274415949939595293" ], - "mAssetSupply": "110953139403741978842836940" + "mAssetSupply": "2663324867758058792049815398" }, { - "type": "mintMulti", - "inputQtys": [ - "860123772822466068480", - "996884154637531348992", - "251868553493335408640" + "type": "redeemMasset", + "inputQty": "752936224608557625402982", + "expectedQtys": [ + "353156534132810169092067", + "245866092837480530053720", + "154065585571039200559173" ], - "expectedQty": "2215085937204247162667", + "redemptionFee": "225880867382567287620", "reserves": [ - "21240409869081788043639834", - "7935346038858635752208851", - "82591504376005664671212140" + "1249225233597015797785459301", + "869705350384318454117200136", + "544978213688844910739036120" ], - "mAssetSupply": "110955354489679183089999607" + "mAssetSupply": "2662572157414317616991700036" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "97327610411965267968", - "341659712822645489664", - "185605186185722429440" + "111708822759759023177728", + "361337025848594644598784", + "121511228666759681671168" ], - "expectedQty": "655807646176927526636", + "expectedQty": "594762815092773535045718", + "swapFee": "357071932214993116897", "reserves": [ - "21240507196692200008907802", - "7935687698571458397698515", - "82591689981191850393641580" + "1249113524774256038762281573", + "869344013358469859472601352", + "544856702460178151057364952" ], - "mAssetSupply": "110956010297325360017526243" + "mAssetSupply": "2661977394599224843456654318" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "184011566993320214528", - "expectedQty": "202373917800074703140", + "inputIndex": 0, + "inputQty": "2186333033059494133760", + "expectedQty": "2179079027368684533312", "reserves": [ - "21240507196692200008907802", - "7935871710138451717913043", - "82591689981191850393641580" + "1249115711107289098256415333", + "869344013358469859472601352", + "544856702460178151057364952" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1831359192346728473821184", - "5072937810599709318840320", - "3515842169163590123126784" - ], - "expectedQty": "10697995286851295283031670", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2343556595821332922368", + "expectedQty": "2342842996608089810413", + "swapFee": "1406133957492799753", "reserves": [ - "23071866389038928482728986", - "13008809520738161036753363", - "86107532150355440516768364" + "1249115711107289098256415333", + "869341670515473251382790939", + "544856702460178151057364952" ], - "mAssetSupply": "121654207958094455375261053" + "mAssetSupply": "2661977231527790348301065015" }, { "type": "redeemBassets", "inputQtys": [ - "13595292887916505726976", - "39967721387627917606912", - "1807028545349561352192" - ], - "expectedQty": "57107734169950400000602", - "swapFee": "34285211628947608565", - "reserves": [ - "23058271096151011977002010", - "12968841799350533119146451", - "86105725121810090955416172" - ], - "mAssetSupply": "121597100223924504975260451" - }, - { - "type": "mintMulti", - "inputQtys": [ - "2161040203001995991187456", - "176893057662169636667392", - "304007104663257935249408" + "7508118375724884164608", + "26869168248632746442752", + "11990436896351629344768" ], - "expectedQty": "2666548172485870314344216", + "expectedQty": "46402312149274825976864", + "swapFee": "27858102150855408831", "reserves": [ - "25219311299153007968189466", - "13145734857012702755813843", - "86409732226473348890665580" + "1249108202988913373372250725", + "869314801347224618636348187", + "544844712023281799428020184" ], - "mAssetSupply": "124263648396410375289604667" + "mAssetSupply": "2661930829215641073475088151" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "3149097628864028344320", - "outputIndex": 0, - "expectedQty": "3074010246603724717412", - "swapFee": "1862029053823018640", + "type": "mint", + "inputIndex": 0, + "inputQty": "3154531306548515760504832", + "expectedQty": "3144040179451684364117675", "reserves": [ - "25216237288906404243472054", - "13145734857012702755813843", - "86412881324102212919009900" - ], - "mAssetSupply": "124263650258439429112623307", - "hardLimitError": false, - "insufficientLiquidityError": false + "1252262734295461889132755557", + "869314801347224618636348187", + "544844712023281799428020184" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "254709140637733399560192", - "expectedQty": "252261861818636488082203", - "swapFee": "152825484382640039736", + "inputQty": "10917331592805779456", + "expectedQty": "10947273335370231663", + "swapFee": "6550398955683467", "reserves": [ - "24963975427087767755389851", - "13145734857012702755813843", - "86412881324102212919009900" + "1252262723348188553762523894", + "869314801347224618636348187", + "544844712023281799428020184" ], - "mAssetSupply": "124009093943286078353102851" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "88136018508364273156096", - "expectedQty": "91583944097052485055227", - "reserves": [ - "24963975427087767755389851", - "13233870875521067028969939", - "86412881324102212919009900" - ] + "mAssetSupply": "2665074858484311563989109837" }, { "type": "mintMulti", "inputQtys": [ - "44163452923938", - "128689776998691", - "159497899605893" + "72160707269381521408", + "23676176213417840640", + "2544052105184653824" ], - "expectedQty": "335443066353391", + "expectedQty": "98147965228170664980", "reserves": [ - "24963975427131931208313789", - "13233870875649756805968630", - "86412881324261710818615793" + "1252262795508895823144045302", + "869314825023400832054188827", + "544844714567333904612674008" ], - "mAssetSupply": "124100677887718573904511469" + "mAssetSupply": "2665074956632276792159774817" }, { - "type": "mintMulti", - "inputQtys": [ - "1233543839752223981568", - "798313954688253558784", - "1764048590321773969408" + "type": "redeemMasset", + "inputQty": "6389650574587", + "expectedQtys": [ + "3001462009329", + "2083600527630", + "1305900580630" ], - "expectedQty": "3812701764765027853092", + "redemptionFee": "1916895172", "reserves": [ - "24965208970971683432295357", - "13234669189604445059527414", - "86414645372852032592585201" + "1252262795508892821682035973", + "869314825023398748453661197", + "544844714567332598712093378" ], - "mAssetSupply": "124104490589483338932364561" + "mAssetSupply": "2665074956632270404426095402" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "11004226646908835201024", - "17246656413388209389568", - "17940245863687079854080" - ], - "expectedQty": "46701664350801557472484", - "reserves": [ - "24976213197618592267496381", - "13251915846017833268916982", - "86432585618715719672439281" - ], - "mAssetSupply": "124151192253834140489837045" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "47863779466293651963904", - "expectedQty": "49712330136265827345058", - "reserves": [ - "24976213197618592267496381", - "13299779625484126920880886", - "86432585618715719672439281" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "23638924649208511201280", - "expectedQty": "23297009157922144684665", - "reserves": [ - "24976213197618592267496381", - "13299779625484126920880886", - "86456224543364928183640561" - ] - }, - { - "type": "redeemMasset", - "inputQty": "3349600111227494", - "expectedQtys": [ - "673260341658414", - "358509678940793", - "2330519315078252" + "226386855001321504", + "767691361308281216", + "25639945749220648" ], - "redemptionFee": "1004880033368", + "expectedQty": "1018888092810467299", + "swapFee": "611699875611647", "reserves": [ - "24976213196945331925837967", - "13299779625125617241940093", - "86456224541034408868562309" + "1252262795282505966680714469", + "869314824255707387145379981", + "544844714541692652962872730" ], - "mAssetSupply": "124224201589779733230672642" + "mAssetSupply": "2665074955613382311615628103" }, { "type": "swap", "inputIndex": 1, - "inputQty": "17452140163065511411712", + "inputQty": "333217408240052544", "outputIndex": 2, - "expectedQty": "18377818550656096466183", - "swapFee": "10873894603900092429", + "expectedQty": "331052767328906140", + "swapFee": "199873100830105", "reserves": [ - "24976213196945331925837967", - "13317231765288682753351805", - "86437846722483752772096126" + "1252262795282505966680714469", + "869314824588924795385432525", + "544844714210639885633966590" ], - "mAssetSupply": "124224212463674337130765071", + "mAssetSupply": "2665074955613582184716458208", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "9505281414212661071052", + "inputQty": "69556078035296115176243", "expectedQtys": [ - "1910535060845802541610", - "1018690783921768817655", - "6611992596520520296163" + "32673136558257725996114", + "22681534645053582552870", + "14215694834591905443691" + ], + "redemptionFee": "20866823410588834552", + "reserves": [ + "1252230122145947708954718355", + "869292143054279741802879655", + "544830498515805293728522899" ], - "redemptionFee": "2851584424263798321", + "mAssetSupply": "2665005420402370299190116517" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "964993568358230910828544", + "outputIndex": 0, + "expectedQty": "973083150262176078837677", + "swapFee": "582258257975424163435", "reserves": [ - "24974302661884486123296357", - "13316213074504760984534150", - "86431234729887232251799963" + "1251257038995685532875880678", + "869292143054279741802879655", + "545795492084163524639351443" ], - "mAssetSupply": "124214710033844548733492340" + "mAssetSupply": "2665006002660628274614279952", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "77072219122082246557696", - "8836970688676783718400", - "121963774659451343077376" - ], - "expectedQty": "207160236855120775365713", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5215589845769608", + "expectedQty": "5229834449470091", + "swapFee": "3129353907461", "reserves": [ - "25051374881006568369854053", - "13325050045193437768252550", - "86553198504546683594877339" + "1251257038990455698426410587", + "869292143054279741802879655", + "545795492084163524639351443" ], - "mAssetSupply": "124421870270699669508858053" + "mAssetSupply": "2665006002655415814122417805" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2375862061313991114752", - "5326550734928148955136", - "1645471159833239486464" + "6458742112120059050590208", + "555572377347548608724992", + "5821430593165396138786816" ], - "expectedQty": "9550754312296850692896", - "swapFee": "5733892923131989609", + "expectedQty": "12846580840467093956296916", "reserves": [ - "25048999018945254378739301", - "13319723494458509619297414", - "86551553033386850355390875" + "1257715781102575757477000795", + "869847715431627290411604647", + "551616922677328920778138259" ], - "mAssetSupply": "124412319516387372658165157" + "mAssetSupply": "2677852583495882908078714721" }, { "type": "redeemBassets", "inputQtys": [ - "11021393877731704307712", - "38885566098192895836160", - "23984249289728786956288" + "8543278935494364233728", + "19316766826264633802752", + "12296756344568825249792" ], - "expectedQty": "75145464492275570419806", - "swapFee": "45114347303747590806", + "expectedQty": "40191795174215645919682", + "swapFee": "24129554837431846659", "reserves": [ - "25037977625067522674431589", - "13280837928360316723461254", - "86527568784097121568434587" + "1257707237823640263112767067", + "869828398664801025777801895", + "551604625920984351952888467" ], - "mAssetSupply": "124337174051895097087745351" + "mAssetSupply": "2677812391700708692432795039" }, { "type": "mintMulti", "inputQtys": [ - "374850515688232620916736", - "314638302179157017100288", - "384152797849727312855040" + "289137449707095845765120", + "1141711482330112333971456", + "1013781509821049002262528" ], - "expectedQty": "1083461044491230651322984", + "expectedQty": "2448989212161328577540604", "reserves": [ - "25412828140755755295348325", - "13595476230539473740561542", - "86911721581946848881289627" + "1257996375273347358958532187", + "870970110147131138111773351", + "552618407430805400955150995" ], - "mAssetSupply": "125420635096386327739068335" + "mAssetSupply": "2680261380912870021010335643" }, { - "type": "redeemMasset", - "inputQty": "50448974051831466006937", - "expectedQtys": [ - "10218944363815699583180", - "5466979685612038655903", - "34948729141444638986753" - ], - "redemptionFee": "15134692215549439802", + "type": "swap", + "inputIndex": 2, + "inputQty": "119998397804783419392", + "outputIndex": 1, + "expectedQty": "120615014630405555603", + "swapFee": "72395196434238913", "reserves": [ - "25402609196391939595765145", - "13590009250853861701905639", - "86876772852805404242302874" + "1257996375273347358958532187", + "870969989532116507706217748", + "552618527429203205738570387" ], - "mAssetSupply": "125370201257026711822501200" + "mAssetSupply": "2680261380985265217444574556", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "91277257895752333524992", - "expectedQty": "94649099274197848010162", - "reserves": [ - "25402609196391939595765145", - "13681286508749614035430631", - "86876772852805404242302874" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7292602552606869422080", - "expectedQty": "7357352005051201626036", - "reserves": [ - "25409901798944546465187225", - "13681286508749614035430631", - "86876772852805404242302874" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "679139749026126178025472", - "expectedQty": "684917876119828306985987", - "reserves": [ - "26089041547970672643212697", - "13681286508749614035430631", - "86876772852805404242302874" - ] - }, - { - "type": "redeemMasset", - "inputQty": "179139333816209569008844", - "expectedQtys": [ - "37034542671340166219354", - "19421188320600840781666", - "123325402562203987982393" - ], - "redemptionFee": "53741800144862870702", + "inputQty": "30957829544203299848192", + "expectedQty": "30946627435663487318868", + "swapFee": "18574697726521979908", "reserves": [ - "26052007005299332476993343", - "13661865320429013194648965", - "86753447450243200254320481" + "1257996375273347358958532187", + "870939042904680844218898880", + "552618527429203205738570387" ], - "mAssetSupply": "125978039992409724472985243" + "mAssetSupply": "2680230441730418740666706272" }, { "type": "redeemBassets", "inputQtys": [ - "5301278413128644608", - "8832788746701908992", - "159736992050723840" + "8986843431850556587507712", + "10998481510219694219460608", + "800092664795932353626112" ], - "expectedQty": "14658812611389432553", - "swapFee": "8800567907578206", + "expectedQty": "20757802608789519540856147", + "swapFee": "12462158860590065763972", "reserves": [ - "26052001704020919348348735", - "13661856487640266492739973", - "86753447290506208203596641" + "1249009531841496802371024475", + "859940561394461149999438272", + "551818434764407273384944275" ], - "mAssetSupply": "125978025333597113083552690" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "445038711612963749888", - "expectedQty": "448665654703138828570", - "reserves": [ - "26052446742732532312098623", - "13661856487640266492739973", - "86753447290506208203596641" - ] + "mAssetSupply": "2659472639121629221125850125" }, { "type": "mintMulti", "inputQtys": [ - "4555000447439459840", - "7942140384234983424", - "8057745492491565056" + "1574112401220420096753664", + "3937588762772539875262464", + "578873563738439266861056" ], - "expectedQty": "20771639963165306758", + "expectedQty": "6087756513515887771308625", "reserves": [ - "26052451297732979751558463", - "13661864429780650727723397", - "86753455348251700695161697" + "1250583644242717222467778139", + "863878150157233689874700736", + "552397308328145712651805331" ], - "mAssetSupply": "125978494770891779387688018" + "mAssetSupply": "2665560395635145108897158750" }, { "type": "redeemBassets", "inputQtys": [ - "15262132033090884730880", - "4296937996533601140736", - "20586821993873346134016" + "97857746001355128832", + "140170852503665983488", + "129559006976836042752" ], - "expectedQty": "40142525902485931714202", - "swapFee": "24099975526807643614", + "expectedQty": "367938737516073934971", + "swapFee": "220895779977630939", "reserves": [ - "26037189165699888866827583", - "13657567491784117126582661", - "86732868526257827349027681" + "1250583546384971221112649307", + "863878009986381186208717248", + "552397178769138735815762579" ], - "mAssetSupply": "125938352244989293455973816" + "mAssetSupply": "2665560027696407592823223779" }, { "type": "mintMulti", "inputQtys": [ - "55429345694901122105344", - "37385059115416818810880", - "189056933669324290260992" + "1572121680565496935612416", + "1291259240578977879818240", + "1275709816660096618332160" ], - "expectedQty": "281073248140851805902089", + "expectedQty": "4140561259052064186760078", "reserves": [ - "26092618511394789988932927", - "13694952550899533945393541", - "86921925459927151639288673" + "1252155668065536718048261723", + "865169269226960164088535488", + "553672888585798832434094739" ], - "mAssetSupply": "126219425493130145261875905" + "mAssetSupply": "2669700588955459657009983857" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "13563938011968157253632", - "107778891520256726007808", - "87981229939849789702144" + "7801252266002344140865536", + "5988724148831542174547968", + "6693878680634308866080768" ], - "expectedQty": "212140928820354708166874", + "expectedQty": "20493302492283914335748400", + "swapFee": "12303363513478435662846", "reserves": [ - "26106182449406758146186559", - "13802731442419790671401349", - "87009906689867001428990817" + "1244354415799534373907396187", + "859180545078128621913987520", + "546979009905164523568013971" ], - "mAssetSupply": "126431566421950499970042779" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "431427541049282624749568", - "expectedQty": "415669388156857151713618", - "swapFee": "258856524629569574849", - "reserves": [ - "26106182449406758146186559", - "13387062054262933519687731", - "87009906689867001428990817" - ], - "mAssetSupply": "126000397737425846914868060" + "mAssetSupply": "2649207286463175742674235457" }, { "type": "mintMulti", "inputQtys": [ - "499012112134180324769792", - "1495339835270567550779392", - "1469481376393283938287616" + "508823190130801984", + "1060043274086455680", + "1109937650575875584" ], - "expectedQty": "3500384069550848833878591", + "expectedQty": "2682971888070974899", "reserves": [ - "26605194561540938470956351", - "14882401889533501070467123", - "88479388066260285367278433" + "1244354416308357564038198171", + "859180546138171896000443200", + "546979011015102174143889555" ], - "mAssetSupply": "129500781806976695748746651" + "mAssetSupply": "2649207289146147630745210356" }, { "type": "redeemBassets", "inputQtys": [ - "190703658261700672", - "331666778444787008", - "195658176231669536" + "1209495508899104328515584", + "7611180967856128263192576", + "7518208060167197732896768" + ], + "expectedQty": "16374929121453625013728365", + "swapFee": "9830855986464053440301", + "reserves": [ + "1243144920799458459709682587", + "851569365170315767737250624", + "539460802954934976410992787" ], - "expectedQty": "727639988574243656", - "swapFee": "436846100805029", + "mAssetSupply": "2632832360024694005731481991" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "40852175567722022699008", + "expectedQty": "40965927896476332434286", + "swapFee": "24511305340633213619", "reserves": [ - "26605194370837280209255679", - "14882401557866722625680115", - "88479387870602109135608897" + "1243103954871561983377248301", + "851569365170315767737250624", + "539460802954934976410992787" ], - "mAssetSupply": "129500781079336707174502995" + "mAssetSupply": "2632791532360431624341996602" }, { "type": "mint", "inputIndex": 2, - "inputQty": "2127168840595235888168960", - "expectedQty": "2098818134565158786036287", + "inputQty": "9771102347627358628872192", + "expectedQty": "9824767897147039340183910", "reserves": [ - "26605194370837280209255679", - "14882401557866722625680115", - "90606556711197345023777857" + "1243103954871561983377248301", + "851569365170315767737250624", + "549231905302562335039864979" ] }, { - "type": "mintMulti", - "inputQtys": [ - "20513474405611021008896", - "14366047299094133604352", - "30103342431336331739136" + "type": "redeemMasset", + "inputQty": "6113179720639740850995", + "expectedQtys": [ + "2874816934816125379751", + "1969349403618605868075", + "1270160211716380188039" ], - "expectedQty": "65237481886695448622963", + "redemptionFee": "1833953916191922255", "reserves": [ - "26625707845242891230264575", - "14896767605165816759284467", - "90636660053628681355516993" + "1243101080054627167251868550", + "851567395820912149131382549", + "549230635142350618659676940" ], - "mAssetSupply": "131664836695788561409162245" + "mAssetSupply": "2642610188911811940133251772" }, { - "type": "redeemMasset", - "inputQty": "1164588387542277734", - "expectedQtys": [ - "235436343883034030", - "131723840771507795", - "801449636149611660" - ], - "redemptionFee": "349376516262683", + "type": "redeem", + "inputIndex": 2, + "inputQty": "86622671156487", + "expectedQty": "86108088637892", + "swapFee": "51973602693", "reserves": [ - "26625707609806547347230545", - "14896767473441975987776672", - "90636659252179045205905333" + "1243101080054627167251868550", + "851567395820912149131382549", + "549230635142264510571039048" ], - "mAssetSupply": "131664835531549550383147194" + "mAssetSupply": "2642610188911725369435697978" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "97413119750621020160", - "expectedQty": "98691458344534134392", - "swapFee": "58447871850372612", + "inputQty": "6979098291192252302622720", + "expectedQty": "7016011894193029231535519", + "reserves": [ + "1243101080054627167251868550", + "851567395820912149131382549", + "556209733433456762873661768" + ] + }, + { + "type": "redeemMasset", + "inputQty": "44932025289631884902", + "expectedQtys": [ + "21074026455071020041", + "14436439735871853330", + "9429304523192572276" + ], + "redemptionFee": "13479607586889565", "reserves": [ - "26625707609806547347230545", - "14896767473441975987776672", - "90636560560720700671770941" + "1243101058980600712180848509", + "851567381384472413259529219", + "556209724004152239681089492" ], - "mAssetSupply": "131664738176877671612499646" + "mAssetSupply": "2649626155887372716622238160" }, { "type": "mintMulti", "inputQtys": [ - "72409138256227610918912", - "141865296850361455214592", - "26043410131767139500032" + "17805721741937317249024", + "24163282447706651361280", + "2849972297236878458880" ], - "expectedQty": "245319002174116093246319", + "expectedQty": "44773093192515228170659", "reserves": [ - "26698116748062774958149457", - "15038632770292337442991264", - "90662603970852467811270973" + "1243118864702342649498097533", + "851591544666920119910890499", + "556212573976449476559548372" ], - "mAssetSupply": "131910057179051787705745965" + "mAssetSupply": "2649670928980565231850408819" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2232270455044012507136", - "expectedQty": "2211731388344347552670", - "swapFee": "1339362273026407504", + "type": "mint", + "inputIndex": 1, + "inputQty": "28274171378846", + "expectedQty": "28271083267378", "reserves": [ - "26695905016674430610596787", - "15038632770292337442991264", - "90662603970852467811270973" - ], - "mAssetSupply": "131907826247959016719646333" + "1243118864702342649498097533", + "851591544666948394082269345", + "556212573976449476559548372" + ] }, { - "type": "redeemMasset", - "inputQty": "95877043902179618848768", - "expectedQtys": [ - "19398065093916404421778", - "10927532788996093621524", - "65878234594859324116228" - ], - "redemptionFee": "28763113170653885654", + "type": "mint", + "inputIndex": 1, + "inputQty": "3979236091651597824", + "expectedQty": "3978801478512989601", "reserves": [ - "26676506951580514206175009", - "15027705237503341349369740", - "90596725736257608487154745" - ], - "mAssetSupply": "131811977967170007754683219" + "1243118864702342649498097533", + "851591548646184485733867169", + "556212573976449476559548372" + ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "5903956021452136775680", - "expectedQty": "5980681677340688939491", - "swapFee": "3542373612871282065", + "inputIndex": 1, + "inputQty": "67799812212212211712", + "expectedQty": "67766533785287843115", + "swapFee": "40679887327327327", "reserves": [ - "26676506951580514206175009", - "15027705237503341349369740", - "90590745054580267798215254" + "1243118864702342649498097533", + "851591480879650700446024054", + "556212573976449476559548372" ], - "mAssetSupply": "131806077553522168489189604" + "mAssetSupply": "2649670865200262656561781413" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1967849052965987632021504", - "expectedQty": "1983082784862799883357030", + "inputQty": "9102612968479854845493248", + "expectedQty": "9072716964453521427296634", "reserves": [ - "28644356004546501838196513", - "15027705237503341349369740", - "90590745054580267798215254" + "1252221477670822504343590781", + "851591480879650700446024054", + "556212573976449476559548372" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "63115450839484176", - "87422737099812576", - "67696811236425880" + "699135194063255764992", + "324995766237141794816", + "194434497665300955136" ], - "expectedQty": "220682453880216083", + "expectedQty": "1217250747116981044174", + "swapFee": "730788921623162524", "reserves": [ - "28644356067661952677680689", - "15027705324926078449182316", - "90590745122277079034641134" + "1252220778535628441087825789", + "851591155883884463304229238", + "556212379541951811258593236" ], - "mAssetSupply": "133789160559067422252762717" + "mAssetSupply": "2658742364913969061008033873" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "7317780153515467776", - "expectedQty": "7559350254511654181", + "inputQty": "178565336333377249214464", + "outputIndex": 2, + "expectedQty": "177507761733410965699415", + "swapFee": "107130200404684741101", "reserves": [ - "28644356067661952677680689", - "15027712642706231964650092", - "90590745122277079034641134" - ] + "1252220778535628441087825789", + "851769721220217840553443702", + "556034871780218400292893821" + ], + "mAssetSupply": "2658742472044169465692774974", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "7678248684492326699008", - "147680256815167897600", - "6098157926904636637184" + "280551581772948897792", + "317427898373569576960", + "206055842986212687872" ], - "expectedQty": "13903118938430893932991", + "expectedQty": "804166603779933973729", "reserves": [ - "28652034316346445004379697", - "15027860322963047132547692", - "90596843280203983671278318" + "1252221059087210214036723581", + "851770038648116214123020662", + "556035077836061386505581693" ], - "mAssetSupply": "133803071237356107658349889" + "mAssetSupply": "2658743276210773245626748703" }, { "type": "mintMulti", "inputQtys": [ - "68607483862823234174976", - "7830933874741252980736", - "63001015192619419959296" + "1874628078103785652617216", + "1334859335996702424301568", + "642550062363113343156224" ], - "expectedQty": "139356322218523658706322", + "expectedQty": "3849110376105859594907615", "reserves": [ - "28720641800209268238554673", - "15035691256837788385528428", - "90659844295396603091237614" + "1254095687165313999689340797", + "853104897984112916547322230", + "556677627898424499848737917" ], - "mAssetSupply": "133942427559574631317056211" + "mAssetSupply": "2662592386586879105221656318" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "85544008951848037777408", - "expectedQty": "84910979667271463104258", - "swapFee": "51326405371108822666", + "inputQty": "68506515406154481967038464", + "expectedQty": "68268523124680544174104313", "reserves": [ - "28635730820541996775450415", - "15035691256837788385528428", - "90659844295396603091237614" - ], - "mAssetSupply": "133856934877028154388101469" + "1322602202571468481656379261", + "853104897984112916547322230", + "556677627898424499848737917" + ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "282172046775768953389056", - "expectedQty": "278528372669274942570296", + "inputQty": "2564975224348607227363328", + "expectedQty": "2548729198008807575870793", + "swapFee": "1538985134609164336417", "reserves": [ - "28635730820541996775450415", - "15035691256837788385528428", - "90942016342172372044626670" - ] + "1322602202571468481656379261", + "853104897984112916547322230", + "554128898700415692272867124" + ], + "mAssetSupply": "2728297473472345651332733720" }, { "type": "mintMulti", "inputQtys": [ - "43154463617997692993536", - "22778345076312128880640", - "82747865126109806854144" + "7611271568121648128", + "17006231216014772224", + "9276373812203466752" ], - "expectedQty": "148666789425156516835202", + "expectedQty": "33921519458842018481", "reserves": [ - "28678885284159994468443951", - "15058469601914100514409068", - "91024764207298481851480814" + "1322602210182740049778027389", + "853104914990344132562094454", + "554128907976789504476333876" ], - "mAssetSupply": "134284130039122585847506967" + "mAssetSupply": "2728297507393865110174752201" }, { - "type": "redeemBassets", - "inputQtys": [ - "24637078959800287494144", - "10701422119596943474688", - "26606612533571198386176" - ], - "expectedQty": "62127588413520998048422", - "swapFee": "37298932407557133108", + "type": "swap", + "inputIndex": 1, + "inputQty": "26826624732190293532606464", + "outputIndex": 2, + "expectedQty": "26641868523897119755757070", + "swapFee": "16095772755444958475381", "reserves": [ - "28654248205200194180949807", - "15047768179794503570934380", - "90998157594764910653094638" + "1322602210182740049778027389", + "879931539722534426094700918", + "527487039452892384720576806" ], - "mAssetSupply": "134222002450709064849458545" + "mAssetSupply": "2728313603166620555133227582", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "21230397810017711423488", - "expectedQty": "21495753392992250220654", - "swapFee": "12738238686010626854", - "reserves": [ - "28654248205200194180949807", - "15047768179794503570934380", - "90976661841371918402873984" + "type": "mintMulti", + "inputQtys": [ + "6609630290916810269130752", + "14239237128804090888847360", + "4684290230083431868399616" ], - "mAssetSupply": "134200784791137733148661911" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "24743423257453694976", - "expectedQty": "24423367769000998469", + "expectedQty": "25535264251121322114490682", "reserves": [ - "28654248205200194180949807", - "15047768179794503570934380", - "90976686584795175856568960" - ] + "1329211840473656860047158141", + "894170776851338516983548278", + "532171329682975816588976422" + ], + "mAssetSupply": "2753848867417741877247718264" }, { "type": "swap", "inputIndex": 0, - "inputQty": "119504355244389385109504", + "inputQty": "12120954328397998245019648", "outputIndex": 1, - "expectedQty": "116361734510840988927480", - "swapFee": "72197556762660451908", + "expectedQty": "12071304434940799919940965", + "swapFee": "7245218013976953633656", "reserves": [ - "28773752560444583566059311", - "14931406445283662582006900", - "90976686584795175856568960" + "1341332794802054858292177789", + "882099472416397717063607313", + "532171329682975816588976422" ], - "mAssetSupply": "134200881412062264810112288", + "mAssetSupply": "2753856112635755854201351920", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "342741146265447104", - "303916586696023232", - "576304886201576192" + "6542679785626948796940288", + "514281365692958797463552", + "10373579537923845776211968" ], - "expectedQty": "1228078226037837379", - "swapFee": "737289309208227", + "expectedQty": "17476201902849509529093663", + "swapFee": "10492016351520618088309", "reserves": [ - "28773752217703437300612207", - "14931406141367075885983668", - "90976686008490289654992768" + "1334790115016427909495237501", + "881585191050704758266143761", + "521797750145051970812764454" ], - "mAssetSupply": "134200880183984038772274909" + "mAssetSupply": "2736379910732906344672258257" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1290237031015206354944", - "864017102163919634432", - "576888653520416997376" + "7334638458640522018816", + "3670246616541664116736", + "5871728645628626993152" ], - "expectedQty": "2761639869369273123627", - "swapFee": "1657978708846871997", + "expectedQty": "16888055889383255166276", "reserves": [ - "28772461980672422094257263", - "14930542124264911966349236", - "90976109119836769237995392" + "1334797449654886550017256317", + "881588861297321299930260497", + "521803621873697599439757606" ], - "mAssetSupply": "134198118544114669499151282" + "mAssetSupply": "2736396798788795727927424533" }, { "type": "mint", "inputIndex": 0, - "inputQty": "548556063158184771584", - "expectedQty": "552312253797307237311", + "inputQty": "12994028442140838723584", + "expectedQty": "12943687776944889939699", "reserves": [ - "28773010536735580279028847", - "14930542124264911966349236", - "90976109119836769237995392" + "1334810443683328690855979901", + "881588861297321299930260497", + "521803621873697599439757606" ] }, { - "type": "mintMulti", - "inputQtys": [ - "2204039082904755776782336", - "776129750247487358107648", - "1388187956404756798242816" + "type": "mint", + "inputIndex": 1, + "inputQty": "481228318395565174947840", + "expectedQty": "481085337440913088743196", + "reserves": [ + "1334810443683328690855979901", + "882070089615716865105208337", + "521803621873697599439757606" + ] + }, + { + "type": "redeemMasset", + "inputQty": "326390319480749162496", + "expectedQtys": [ + "159136236627225583521", + "105160485645845084262", + "62209480781629277025" ], - "expectedQty": "4389788440366973181192476", + "redemptionFee": "97917095844224748", "reserves": [ - "30977049619640336055811183", - "15706671874512399324456884", - "92364297076241526036238208" + "1334810284547092063630396380", + "882069984455231219260124075", + "521803559664216817810480581" ], - "mAssetSupply": "138588459296735439987581069" + "mAssetSupply": "2736890501521611201001169680" }, { "type": "redeemMasset", - "inputQty": "119240322271215846686720", + "inputQty": "63425305808459556454", "expectedQtys": [ - "26644392212609314619330", - "13509831663049352664380", - "79445608537909451299738" + "30923908801420430489", + "20435152524329814978", + "12088763383170876645" ], - "redemptionFee": "35772096681364754006", + "redemptionFee": "19027591742537866", "reserves": [ - "30950405227427726741191853", - "15693162042849349971792504", - "92284851467703616584938470" + "1334810253623183262209965891", + "882069964020078694930309097", + "521803547575453434639603936" ], - "mAssetSupply": "138469254746560905505648355" + "mAssetSupply": "2736890438115332984284151092" }, { - "type": "mintMulti", - "inputQtys": [ - "299253980733312606404608", - "382572600505080781733888", - "78835435944494275493888" + "type": "mint", + "inputIndex": 1, + "inputQty": "8811895925225991973109760", + "expectedQty": "8808952799048767453366293", + "reserves": [ + "1334810253623183262209965891", + "890881859945304686903418857", + "521803547575453434639603936" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "1453974261056802838806528", + "outputIndex": 2, + "expectedQty": "1442369557823187655273395", + "swapFee": "872057900726954841637", + "reserves": [ + "1334810253623183262209965891", + "892335834206361489742225385", + "520361178017630246984330541" ], - "expectedQty": "773117269208003848396985", + "mAssetSupply": "2745700262972282478692359022", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "28776413248757399805755392", + "outputIndex": 1, + "expectedQty": "28651756821721713605072951", + "swapFee": "17198050391135973292918", "reserves": [ - "31249659208161039347596461", - "16075734643354430753526392", - "92363686903648110860432358" + "1363586666871940662015721283", + "863684077384639776137152434", + "520361178017630246984330541" ], - "mAssetSupply": "139242372015768909354045340" + "mAssetSupply": "2745717461022673614665651940", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "38772793891919091256524", + "inputQty": "453474655963266252", "expectedQtys": [ - "8699026647972243303699", - "4475032611291640669378", - "25711453949871159766580" + "225138419306703305", + "142600740155966611", + "85915546062218580" ], - "redemptionFee": "11631838167575727376", + "redemptionFee": "136042396788979", "reserves": [ - "31240960181513067104292762", - "16071259610743139112857014", - "92337975449698239700665778" + "1363586666646802242709017978", + "863684077242039035981185823", + "520361177931714700922111961" ], - "mAssetSupply": "139203610853715157838516192" + "mAssetSupply": "2745717460569335001099174667" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "448662289484330968285184", - "expectedQty": "453769675526547497735612", - "swapFee": "269197373690598580971", + "inputQty": "20275271828277489804771328", + "expectedQty": "20413634187448801007874057", + "reserves": [ + "1363586666646802242709017978", + "863684077242039035981185823", + "540636449759992190726883289" + ] + }, + { + "type": "redeemMasset", + "inputQty": "495402588567581365370880", + "expectedQtys": [ + "244139443847698853426539", + "154635825822871158439550", + "96796694626515625182345" + ], + "redemptionFee": "148620776570274409611", "reserves": [ - "31240960181513067104292762", - "16071259610743139112857014", - "91884205774171692202930166" + "1363342527202954543855591439", + "863529441416216164822746273", + "540539653065365675101700944" ], - "mAssetSupply": "138755217761604517468811979" + "mAssetSupply": "2765635840788992791016087455" }, { - "type": "mintMulti", - "inputQtys": [ - "19312754710586939408384", - "114251844000064328433664", - "57724715574452180484096" + "type": "mint", + "inputIndex": 2, + "inputQty": "406165291122139158544384", + "expectedQty": "408813048725982652951533", + "reserves": [ + "1363342527202954543855591439", + "863529441416216164822746273", + "540945818356487814260245328" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "2136803825780800618496", + "expectedQty": "2135408465625990581922", + "swapFee": "1282082295468480371", + "reserves": [ + "1363342527202954543855591439", + "863527306007750538832164351", + "540945818356487814260245328" ], - "expectedQty": "194089281023424479467966", + "mAssetSupply": "2766042518315975288336900863" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "44280884548577591296", + "outputIndex": 0, + "expectedQty": "44430763845393730519", + "swapFee": "26569940354722347", "reserves": [ - "31260272936223654043701146", - "16185511454743203441290678", - "91941930489746144383414262" + "1363342482772190698461860920", + "863527350288635087409755647", + "540945818356487814260245328" ], - "mAssetSupply": "138949307042627941948279945" + "mAssetSupply": "2766042518342545228691623210", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "529696423245769185689", + "inputQty": "39857220700005709801062", "expectedQtys": [ - "119133283784542952322", - "61683182781859284921", - "350391825403455685844" + "19639155997294027944497", + "12439242930187662811398", + "7792406858168833496258" ], - "redemptionFee": "158908926973730755", + "redemptionFee": "11957166210001712940", "reserves": [ - "31260153802939869500748824", - "16185449771560421582005757", - "91941580097920740927728418" + "1363322843616193404433916423", + "863514911045704899746944249", + "540938025949629645426749070" ], - "mAssetSupply": "138948777505113623152825011" + "mAssetSupply": "2766002673079011432983535088" }, { - "type": "mintMulti", - "inputQtys": [ - "1840355493270171697545216", - "1202903198322746147733504", - "2141285827095003742076928" + "type": "redeemMasset", + "inputQty": "142124295021940029626777", + "expectedQtys": [ + "70030000886161122528399", + "44356294819606422972979", + "27786441497693727397984" ], - "expectedQty": "5203001669750982575586340", + "redemptionFee": "42637288506582008888", "reserves": [ - "33100509296210041198294040", - "17388352969883167729739261", - "94082865925015744669805346" + "1363252813615307243311388024", + "863470554750885293323971270", + "540910239508131951699351086" ], - "mAssetSupply": "144151779174864605728411351" + "mAssetSupply": "2765860591421277999535917199" }, { "type": "mintMulti", "inputQtys": [ - "2449740383572540260352", - "545506571441148002304", - "1104225105017647661056" + "3301485434842903040", + "4705806242793391104", + "4476847562567834112" ], - "expectedQty": "4113340251674935400990", + "expectedQty": "12500610441127181348", "reserves": [ - "33102959036593613738554392", - "17388898476454608877741565", - "94083970150120762317466402" + "1363252816916792678154291064", + "863470559456691536117362374", + "540910243984979514267185198" ], - "mAssetSupply": "144155892515116280663812341" + "mAssetSupply": "2765860603921888440663098547" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "38007187085011487555584", - "expectedQty": "36995920310482656147299", - "swapFee": "22804312251006892533", + "inputIndex": 2, + "inputQty": "131198816071048172142592", + "expectedQty": "130271382088027175680285", + "swapFee": "78719289642628903285", "reserves": [ - "33102959036593613738554392", - "17351902556144126221594266", - "94083970150120762317466402" + "1363252816916792678154291064", + "863470559456691536117362374", + "540779972602891487091504913" ], - "mAssetSupply": "144117908132343520183149290" + "mAssetSupply": "2765729483825107035119859240" }, { - "type": "redeemMasset", - "inputQty": "1731668270222232099225", - "expectedQtys": [ - "397633767750548923205", - "208431590161251282165", - "1130139559257128832810" + "type": "mintMulti", + "inputQtys": [ + "1027168834242849931264", + "119754909020904603648", + "1202558534184752119808" ], - "redemptionFee": "519500481066669629", + "expectedQty": "2353299476291416120755", "reserves": [ - "33102561402825863189631187", - "17351694124553964970312101", - "94082840010561505188633592" + "1363253844085626921004222328", + "863470679211600557021966022", + "540781175161425671843624721" ], - "mAssetSupply": "144116176983573779017719694" + "mAssetSupply": "2765731837124583326535979995" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "18348289892322103001088", - "expectedQty": "18839066916260932448905", + "inputIndex": 0, + "inputQty": "28600308739943709804593152", + "expectedQty": "28486226528965316918150880", "reserves": [ - "33102561402825863189631187", - "17370042414446287073313189", - "94082840010561505188633592" + "1391854152825570630808815480", + "863470679211600557021966022", + "540781175161425671843624721" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "7358390058587461028675584", + "2786831783564252368863232", + "278219467703707399880704" + ], + "expectedQty": "10395920757287632563432968", + "swapFee": "6241297232712206862177", + "reserves": [ + "1384495762766983169780139896", + "860683847428036304653102790", + "540502955693721964443744017" + ], + "mAssetSupply": "2783822142896261010890697907" + }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "117889991633638155878400", - "expectedQty": "114732669324493485475213", - "swapFee": "70733994980182893527", + "inputIndex": 0, + "inputQty": "241029390375617885634560", + "expectedQty": "241860069147129529182114", + "swapFee": "144617634225370731380", "reserves": [ - "33102561402825863189631187", - "17255309745121793587837976", - "94082840010561505188633592" + "1384253902697836040250957782", + "860683847428036304653102790", + "540502955693721964443744017" ], - "mAssetSupply": "144017196792851381977183726" + "mAssetSupply": "2783581258123519618375794727" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9149860597769145679872", - "15804897616288748142592", - "10475300117469842112512" + "170620395456220004089856", + "805091801537672078426112", + "591058880679462175768576" ], - "expectedQty": "35784283634310709104960", + "expectedQty": "1570138208281504116809141", + "swapFee": "942648514077348879413", "reserves": [ - "33111711263423632335311059", - "17271114642738082335980568", - "94093315310678975030746104" + "1384083282302379820246867926", + "859878755626498632574676678", + "539911896813042502267975441" ], - "mAssetSupply": "144052981076485692686288686" + "mAssetSupply": "2782011119915238114258985586" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "582365514964519868170240", - "expectedQty": "588525855918655776390109", - "swapFee": "349419308978711920902", + "inputQty": "181271781612268097110016", + "outputIndex": 0, + "expectedQty": "183111431489972170766869", + "swapFee": "109489109336812325451", "reserves": [ - "33111711263423632335311059", - "17271114642738082335980568", - "93504789454760319254355995" + "1383900170870889848076101057", + "859878755626498632574676678", + "540093168594654770365085457" ], - "mAssetSupply": "143470964980830151530039348" + "mAssetSupply": "2782011229404347451071311037", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "674022281595963965440", - "1903525745325429489664", - "1572396215628940705792" + "824354725817784729600", + "550745076458457726976", + "176427893058885550080" ], - "expectedQty": "4186566314696502156925", + "expectedQty": "1549455347302906645747", + "swapFee": "930231347190058022", "reserves": [ - "33112385285705228299276499", - "17273018168483407765470232", - "93506361850975948195061787" + "1383899346516164030291371457", + "859878204881422174116949702", + "540092992166761711479535377" ], - "mAssetSupply": "143475151547144848032196273" + "mAssetSupply": "2782009679949000148164665290" }, { - "type": "redeemBassets", - "inputQtys": [ - "1548080194493210737770496", - "1938476007599141115920384", - "917063593364979936395264" + "type": "redeemMasset", + "inputQty": "1575515469485145325568", + "expectedQtys": [ + "783498611779799529813", + "486822529051921406396", + "305775207322647133676" ], - "expectedQty": "4458234179244174299148981", - "swapFee": "2676546435407749229026", + "redemptionFee": "472654640845543597", "reserves": [ - "31564305091212017561506003", - "15334542160884266649549848", - "92589298257610968258666523" + "1383898563017552250491841644", + "859877718058893122195543306", + "540092686391554388832401701" ], - "mAssetSupply": "139016917367900673733047292" + "mAssetSupply": "2782008104906185303864883319" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "9605076408825276268544", - "expectedQty": "9924635010443201439012", + "inputIndex": 0, + "inputQty": "146768307030590933172224", + "expectedQty": "146175936033205133697758", "reserves": [ - "31564305091212017561506003", - "15344147237293091925818392", - "92589298257610968258666523" + "1384045331324582841425013868", + "859877718058893122195543306", + "540092686391554388832401701" ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "24953549217828440113152", - "expectedQty": "25250480241893471006614", - "swapFee": "14972129530697064067", + "inputIndex": 1, + "inputQty": "28316133201213399236608", + "expectedQty": "28295145116031344856011", + "swapFee": "16989679920728039541", "reserves": [ - "31564305091212017561506003", - "15344147237293091925818392", - "92564047777369074787659909" + "1384045331324582841425013868", + "859849422913777090850687295", + "540092686391554388832401701" ], - "mAssetSupply": "139001903425822819191437219" + "mAssetSupply": "2782125981698697216327384010" }, { "type": "redeemBassets", "inputQtys": [ - "988800701795490332672", - "2386464833599862472704", - "3866061269035236458496" + "891414034756686047084544", + "8543127005118838526181376", + "11587979096992294987890688" ], - "expectedQty": "7277987820084609574552", - "swapFee": "4369414340655158840", + "expectedQty": "21099057294133465883422463", + "swapFee": "12667034597238422583603", "reserves": [ - "31563316290510222071173331", - "15341760772459492063345688", - "92560181716100039551201413" + "1383153917289826155377929324", + "851306295908658252324505919", + "528504707294562093844511013" ], - "mAssetSupply": "138994625438002734581862667" + "mAssetSupply": "2761026924404563750443961547" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "931332676857200246784", - "expectedQty": "942413671651530053239", - "swapFee": "558799606114320148", - "reserves": [ - "31563316290510222071173331", - "15341760772459492063345688", - "92559239302428388021148174" + "type": "redeemBassets", + "inputQtys": [ + "2622595138647684022272", + "4579415431662861287424", + "3410773231727342518272" ], - "mAssetSupply": "138993694664125483495936031" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "78507962617893126144", - "outputIndex": 1, - "expectedQty": "76328164794055834237", - "swapFee": "47347507359850383", + "expectedQty": "10626298173631883012958", + "swapFee": "6379606668180037830", "reserves": [ - "31563394798472839964299475", - "15341684444294698007511451", - "92559239302428388021148174" + "1383151294694687507693907052", + "851301716493226589463218495", + "528501296521330366501992741" ], - "mAssetSupply": "138993694711472990855786414", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2761016298106390118560948589" }, { "type": "redeemMasset", - "inputQty": "61680535653197532364", + "inputQty": "150153163297725379667558", "expectedQtys": [ - "14002527583095046183", - "6806060025354771003", - "41062227611373957075" + "75197758520107826243307", + "46282703237277910680151", + "28733019320310474769073" ], - "redemptionFee": "18504160695959259", + "redemptionFee": "45045948989317613900", "reserves": [ - "31563380795945256869253292", - "15341677638234672652740448", - "92559198240200776647191099" + "1383076096936167399867663745", + "851255433789989311552538344", + "528472563502010056027223668" ], - "mAssetSupply": "138993633049441498354213309" + "mAssetSupply": "2760866189989041382498894931" }, { - "type": "redeemMasset", - "inputQty": "25070346027051810344140", - "expectedQtys": [ - "5691393695659837605454", - "2766355351968860796535", - "16689937011034041160816" - ], - "redemptionFee": "7521103808115543103", + "type": "mint", + "inputIndex": 1, + "inputQty": "3799388852705144340480", + "expectedQty": "3799932308010641027940", "reserves": [ - "31557689402249597031647838", - "15338911282882703791943913", - "92542508303189742606030283" - ], - "mAssetSupply": "138968570224518254659412272" + "1383076096936167399867663745", + "851259233178842016696878824", + "528472563502010056027223668" + ] }, { - "type": "redeemMasset", - "inputQty": "152642866949828431052", - "expectedQtys": [ - "34652519343302383477", - "16843182438363237647", - "101618056321493686793" + "type": "redeem", + "inputIndex": 1, + "inputQty": "24475806564677666734080", + "expectedQty": "24457620489409144401815", + "swapFee": "14685483938806600040", + "reserves": [ + "1383076096936167399867663745", + "851234775558352607552477009", + "528472563502010056027223668" ], - "redemptionFee": "45792860084948529", + "mAssetSupply": "2760845528800268654279788831" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "8657802177867310845394944", + "outputIndex": 2, + "expectedQty": "8592099969014492073047558", + "swapFee": "5195227903340452755825", "reserves": [ - "31557654749730253729264361", - "15338894439700265428706266", - "92542406685133421112343490" + "1383076096936167399867663745", + "859892577736219918397871953", + "519880463532995563954176110" ], - "mAssetSupply": "138968417627444164915929749" + "mAssetSupply": "2760850724028171994732544656", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "3075430695285638666649", + "inputQty": "1658339636636174978016870", "expectedQtys": [ - "698174921546776394406", - "339354476971821142060", - "2047388756849720497639" + "830512786911653313258755", + "516350317066692447071239", + "312179043211125277554823" ], - "redemptionFee": "922629208585691599", + "redemptionFee": "497501890990852493405", "reserves": [ - "31556956574808706952869955", - "15338555085223293607564206", - "92540359296376571391845851" + "1382245584149255746554404990", + "859376227419153225950800714", + "519568284489784438676621287" ], - "mAssetSupply": "138965343119378087862954699" + "mAssetSupply": "2759192881893426810607021191" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2740708292795659142037504", - "expectedQty": "2633092237646273157882784", - "swapFee": "1644424975677395485222", + "type": "redeemBassets", + "inputQtys": [ + "10085740904649938356404224", + "16148734621787452545695744", + "3065725290027430870777856" + ], + "expectedQty": "29280964337990123901268833", + "swapFee": "17579126078441139024175", "reserves": [ - "31556956574808706952869955", - "12705462847577020449681422", - "92540359296376571391845851" + "1372159843244605808198000766", + "843227492797365773405104970", + "516502559199757007805843431" ], - "mAssetSupply": "136226279251558106116402417" + "mAssetSupply": "2729911917555436686705752358" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "1182124778636421971836928", - "expectedQty": "1198728180083267159153111", - "swapFee": "709274867181853183102", + "inputIndex": 0, + "inputQty": "66449806083189815377920", + "expectedQty": "66691115520798011567420", + "swapFee": "39869883649913889226", "reserves": [ - "31556956574808706952869955", - "12705462847577020449681422", - "91341631116293304232692740" + "1372093152129085010186433346", + "843227492797365773405104970", + "516502559199757007805843431" ], - "mAssetSupply": "135044863747788865997748591" + "mAssetSupply": "2729845507619237146804263664" }, { "type": "redeemBassets", "inputQtys": [ - "16368000366201179996160", - "37626336085029918081024", - "59580606243755226300416" + "1057850160066273883455488", + "194011010519156381450240", + "170932262978482847350784" ], - "expectedQty": "114586444743729993792528", - "swapFee": "68793142731877122549", + "expectedQty": "1419585584227191212133581", + "swapFee": "852262708161211454152", "reserves": [ - "31540588574442505772873795", - "12667836511491990531600398", - "91282050510049549006392324" + "1371035301969018736302977858", + "843033481786846617023654730", + "516331626936778524958492647" ], - "mAssetSupply": "134930277303045136003956063" + "mAssetSupply": "2728425922035009955592130083" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "896444474765615887810560", - "expectedQty": "852330186974967148998336", - "swapFee": "537866684859369532686", - "reserves": [ - "31540588574442505772873795", - "11815506324517023382602062", - "91282050510049549006392324" + "type": "redeemBassets", + "inputQtys": [ + "131321353590808940380160", + "989506399044806488621056", + "1091029116531731242942464" ], - "mAssetSupply": "134034370694964379485678189" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "221815658468915488", - "expectedQty": "218431494732112829", + "expectedQty": "2219269459969272776175816", + "swapFee": "1332361092637145953277", "reserves": [ - "31540588574442505772873795", - "11815506324517023382602062", - "91282050731865207475307812" - ] + "1370903980615427927362597698", + "842043975387801810535033674", + "515240597820246793715550183" + ], + "mAssetSupply": "2726206652575040682815954267" }, { "type": "redeemBassets", "inputQtys": [ - "119629335333150130176000", - "121741243224222064443392", - "82104917809478343065600" + "3953525961892325729763328", + "1813707713183258047938560", + "4315215782761297478680576" ], - "expectedQty": "329491199306432408158916", - "swapFee": "197813407628436506799", + "expectedQty": "10097245914950721248846728", + "swapFee": "6061984739814321342113", "reserves": [ - "31420959239109355642697795", - "11693765081292801318158670", - "91199945814055729132242212" + "1366950454653535601632834370", + "840230267674618552487095114", + "510925382037485496236869607" ], - "mAssetSupply": "133704879714089441809632102" + "mAssetSupply": "2716109406660089961567107539" }, { - "type": "redeemBassets", - "inputQtys": [ - "377191069146071254958080", - "244613214463855547121664", - "163909083774526446108672" - ], - "expectedQty": "798830763151668250704626", - "swapFee": "479586209616771013030", + "type": "swap", + "inputIndex": 2, + "inputQty": "14006371462410561126400", + "outputIndex": 1, + "expectedQty": "14099264140547747026695", + "swapFee": "8465324022175687532", "reserves": [ - "31043768169963284387739715", - "11449151866828945771037006", - "91036036730281202686133540" + "1366950454653535601632834370", + "840216168410478004740068419", + "510939388408947906797996007" ], - "mAssetSupply": "132906048950937773558927476" + "mAssetSupply": "2716109415125413983742795071", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "8287794618682697580544", - "9099438348927207735296", - "4606429311719651672064" + "414850810468848212377600", + "45759133212503628054528", + "125974830346199459954688" ], - "expectedQty": "22487834066957649666921", + "expectedQty": "585748807679581051811544", "reserves": [ - "31052055964581967085320259", - "11458251305177872978772302", - "91040643159592922337805604" + "1367365305464004449845211970", + "840261927543690508368122947", + "511065363239294106257950695" ], - "mAssetSupply": "132928536785004731208594397" + "mAssetSupply": "2716695163933093564794606615" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "1454571434115895845191680", - "expectedQty": "1529326318586373714505028", + "inputQty": "2309901193972438481764352", + "outputIndex": 2, + "expectedQty": "2291791123635690816574696", + "swapFee": "1386041214147761508939", "reserves": [ - "31052055964581967085320259", - "12912822739293768823963982", - "91040643159592922337805604" - ] + "1367365305464004449845211970", + "842571828737662946849887299", + "508773572115658415441375999" + ], + "mAssetSupply": "2716696549974307712556115554", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "95400328111268832686899", + "inputQty": "110026626854763763649740", "expectedQtys": [ - "22025395512724323339734", - "9159136784470702645237", - "64575633111378396752091" + "55361890993010953335262", + "34114050978152702486985", + "20599226064196316429457" ], - "redemptionFee": "28620098433380649806", + "redemptionFee": "33007988056429129094", "reserves": [ - "31030030569069242761980525", - "12903663602509298121318745", - "90976067526481543941053513" + "1367309943573011438891876708", + "842537714686684794147400314", + "508752972889594219124946542" ], - "mAssetSupply": "134362491395578269471062332" + "mAssetSupply": "2716586556355441005221594908" }, { "type": "mintMulti", "inputQtys": [ - "8259902161515701", - "10489257128786750", - "14574898570567224" + "2530985755386001353605120", + "12871550453933471640322048", + "554442314278252134268928" ], - "expectedQty": "33636498329288307", + "expectedQty": "15950318541779054966537255", "reserves": [ - "31030030577329144923496226", - "12903663612998555250105495", - "90976067541056442511620737" + "1369840929328397440245481828", + "855409265140618265787722362", + "509307415203872471259215470" ], - "mAssetSupply": "134362491429214767800350639" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "85755717406467866624", - "expectedQty": "84541503726066020087", - "reserves": [ - "31030030577329144923496226", - "12903663612998555250105495", - "90976153296773848979487361" - ] + "mAssetSupply": "2732536874897220060188132163" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "68830421779169386496", - "expectedQty": "69168929261641640294", + "type": "redeemMasset", + "inputQty": "2015951747344", + "expectedQtys": [ + "1010308325738", + "630895955860", + "375633046818" + ], + "redemptionFee": "604785524", "reserves": [ - "31030099407750924092882722", - "12903663612998555250105495", - "90976153296773848979487361" - ] + "1369840929328396429937156090", + "855409265140617634891766502", + "509307415203872095626168652" + ], + "mAssetSupply": "2732536874897218044841170343" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "821650640711246", - "expectedQty": "810016909508633", + "inputIndex": 1, + "inputQty": "22921523772609175486464", + "expectedQty": "22920259547378892866470", "reserves": [ - "31030099407750924092882722", - "12903663612998555250105495", - "90976153297595499620198607" + "1369840929328396429937156090", + "855432186664390244067252966", + "509307415203872095626168652" ] }, { "type": "redeemMasset", - "inputQty": "11030112370174484650393", + "inputQty": "209730176853968604364", "expectedQtys": [ - "2546561980247526695150", - "1058971121264199077196", - "7466183399946102993104" + "105106864188222170185", + "65636668273629261746", + "39078774895515283181" ], - "redemptionFee": "3309033711052345395", + "redemptionFee": "62919053056190581", "reserves": [ - "31027552845770676566187572", - "12902604641877291051028299", - "90968687114195553517205503" + "1369840824221532241714985905", + "855432121027721970437991220", + "509307376125097200110885471" ], - "mAssetSupply": "134351618337121308985214655" + "mAssetSupply": "2732559585489507622821623030" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "12266326550367512297472", - "expectedQty": "11724003158313780463234", - "swapFee": "7359795930220507378", + "type": "swap", + "inputIndex": 2, + "inputQty": "11928003233970202345472", + "outputIndex": 1, + "expectedQty": "12010854098134569725886", + "swapFee": "7210441467770660136", "reserves": [ - "31027552845770676566187572", - "12890880638718977270565065", - "90968687114195553517205503" + "1369840824221532241714985905", + "855420110173623835868265334", + "509319304128331170313230943" ], - "mAssetSupply": "134339359370366871693424561" + "mAssetSupply": "2732559592699949090592283166", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "177947006174235176468480", - "expectedQty": "175421980982094386457326", + "type": "swap", + "inputIndex": 0, + "inputQty": "411381904454748536832", + "outputIndex": 2, + "expectedQty": "406351638130673855737", + "swapFee": "245785728113179844", "reserves": [ - "31027552845770676566187572", - "12890880638718977270565065", - "91146634120369788693673983" - ] + "1369841235603436696463522737", + "855420110173623835868265334", + "509318897776693039639375206" + ], + "mAssetSupply": "2732559592945734818705463010", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1087549215703965045358592", - "expectedQty": "1102428943917885509415392", - "swapFee": "652529529422379027215", + "type": "mintMulti", + "inputQtys": [ + "482555545030822805372928", + "424781412369444152279040", + "386204540712965449449472" + ], + "expectedQty": "1294372049333075958727868", "reserves": [ - "31027552845770676566187572", - "12890880638718977270565065", - "90044205176451903184258591" + "1370323791148467519268895665", + "855844891585993280020544374", + "509705102317406005088824678" ], - "mAssetSupply": "133427884665174423413550510" + "mAssetSupply": "2733853964995067894664190878" }, { "type": "mintMulti", "inputQtys": [ - "2249046398787215687680", - "265924146686393974784", - "4032956611885906001920" + "31998463452274506072064", + "72146833709036556255232", + "67539781105466948452352" ], - "expectedQty": "6514069442293795897613", + "expectedQty": "172051650292431921567446", "reserves": [ - "31029801892169463781875252", - "12891146562865663664539849", - "90048238133063789090260511" + "1370355789611919793774967729", + "855917038419702316576799606", + "509772642098511472037277030" ], - "mAssetSupply": "133434398734616717209448123" + "mAssetSupply": "2734026016645360326585758324" }, { - "type": "redeemMasset", - "inputQty": "230660435278335616378470", - "expectedQtys": [ - "53623357054995681253930", - "22277504619301827378584", - "155614555399436909718927" - ], - "redemptionFee": "69198130583500684913", + "type": "mint", + "inputIndex": 2, + "inputQty": "3324400908079430893568", + "expectedQty": "3349290296892322116405", "reserves": [ - "30976178535114468100621322", - "12868869058246361837161265", - "89892623577664352180541584" - ], - "mAssetSupply": "133203807497468965093754566" + "1370355789611919793774967729", + "855917038419702316576799606", + "509775966499419551468170598" + ] }, { "type": "mintMulti", "inputQtys": [ - "100152377433448129757184", - "341612447332426563190784", - "68012822371856237461504" + "20512124648636452700160", + "59970293765811367575552", + "69198722317109593899008" ], - "expectedQty": "524221109729231517562348", + "expectedQty": "150109220233499234058021", "reserves": [ - "31076330912547916230378506", - "13210481505578788400352049", - "89960636400036208418003088" + "1370376301736568430227667889", + "855977008713468127944375158", + "509845165221736661062069606" ], - "mAssetSupply": "133728028607198196611316914" + "mAssetSupply": "2734179475155890718141932750" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1468453723881390211072", - "46408795869597757603840", - "13803974669081870598144" + "165981487105376813056", + "94309360988148662272", + "211580478148281204736" ], - "expectedQty": "63468199204122016326139", + "expectedQty": "472748764301496769081", + "swapFee": "283819550311084712", "reserves": [ - "31077799366271797620589578", - "13256890301448386157955889", - "89974440374705290288601232" + "1370376135755081324850854833", + "855976914404107139795712886", + "509844953641258512780864870" ], - "mAssetSupply": "133791496806402318627643053" + "mAssetSupply": "2734179002407126416645163669" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3294850167112237322338304", - "expectedQty": "3306792966535173191466296", + "type": "redeemMasset", + "inputQty": "214334219426208864534528", + "expectedQtys": [ + "107392523887078788811427", + "67080503540934647332983", + "39955115193578638338979" + ], + "redemptionFee": "64300265827862659360", "reserves": [ - "34372649533384034942927882", - "13256890301448386157955889", - "89974440374705290288601232" - ] + "1370268743231194246062043406", + "855909833900566205148379903", + "509804998526064934142525891" + ], + "mAssetSupply": "2733964732487966035643288501" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "22054514538725215567872", - "14913862668422668615680", - "14622842362515534381056" + "4300476983624639715475456", + "9065106564224261644353536", + "2720100302659524822564864" + ], + "expectedQty": "16087535312905338155271431", + "swapFee": "9658316177449672696780", + "reserves": [ + "1365968266247569606346567950", + "846844727336341943504026367", + "507084898223405409319961027" ], - "expectedQty": "52098057095342904551337", + "mAssetSupply": "2717877197175060697488017070" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "121213615340817891328", + "expectedQty": "120241311403056736476", + "swapFee": "72728169204490734", "reserves": [ - "34394704047922760158495754", - "13271804164116808826571569", - "89989063217067805822982288" + "1365968266247569606346567950", + "846844727336341943504026367", + "507084777982094006263224551" ], - "mAssetSupply": "137150387830032834723660686" + "mAssetSupply": "2717877076034173525874616476" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "131956941858250080256", - "outputIndex": 1, - "expectedQty": "126808462987157505215", - "swapFee": "79382903337088666", + "inputIndex": 1, + "inputQty": "7403757413181563076608", + "outputIndex": 0, + "expectedQty": "7430872908978951897629", + "swapFee": "4442227619477185141", "reserves": [ - "34394836004864618408576010", - "13271677355653821669066354", - "89989063217067805822982288" + "1365960835374660627394670321", + "846852131093755125067102975", + "507084777982094006263224551" ], - "mAssetSupply": "137150387909415738060749352", + "mAssetSupply": "2717877080476401145351801617", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "961282690827563520", - "5313562618913136640", - "1797833822199101952" + "620677926176606287560704", + "332747942042074326499328", + "461193165933867079565312" ], - "expectedQty": "8278968967713150477", - "swapFee": "4970363598787162", + "expectedQty": "1415428730164021726922145", + "swapFee": "849767098357427492648", "reserves": [ - "34394835043581927581012490", - "13271672042091202755929714", - "89989061419233983623880336" + "1365340157448484021107109617", + "846519383151713050740603647", + "506623584816160139183659239" ], - "mAssetSupply": "137150379630446770347598875" + "mAssetSupply": "2716461651746237123624879472" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1649678281244069748277248", - "outputIndex": 1, - "expectedQty": "1575328300141655084726520", - "swapFee": "991986685306129422101", + "type": "redeemMasset", + "inputQty": "20973717234943406165196", + "expectedQtys": [ + "10538587024012354426936", + "6533989451778203121121", + "3910451697970846843346" + ], + "redemptionFee": "6292115170483021849", "reserves": [ - "36044513324825997329289738", - "11696343741949547671203194", - "89989061419233983623880336" + "1365329618861460008752682681", + "846512849162261272537482526", + "506619674364462168336815893" ], - "mAssetSupply": "137151371617132076477020976", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2716440684321117350701736125" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "20282855928270483370278912", + "9807919277688650121347072", + "539839818395063207067648" + ], + "expectedQty": "30549020003635007827600273", + "swapFee": "18340416251932163994957", + "reserves": [ + "1345046762933189525382403769", + "836704929884572622416135454", + "506079834546067105129748245" + ], + "mAssetSupply": "2685891664317482342874135852" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "82230719057160912", - "expectedQty": "86788957969160314", + "inputIndex": 2, + "inputQty": "821153460511369", + "expectedQty": "827124536047358", "reserves": [ - "36044513324825997329289738", - "11696343824180266728364106", - "89989061419233983623880336" + "1345046762933189525382403769", + "836704929884572622416135454", + "506079834546888258590259614" ] }, { "type": "redeemMasset", - "inputQty": "148551226412163892930150", + "inputQty": "411911979251927996799385", "expectedQtys": [ - "39028777155726413675601", - "12664729095850324162607", - "97439601776096812189955" + "206216307754353420940278", + "128279704524468014044109", + "77589804150457764514360" ], - "redemptionFee": "44565367923649167879", + "redemptionFee": "123573593775578399039", "reserves": [ - "36005484547670270915614137", - "11683679095084416404201499", - "89891621817457886811690381" + "1344840546625435171961463491", + "836576650180048154402091345", + "506002244742737800825745254" ], - "mAssetSupply": "137002865042876794202419019" + "mAssetSupply": "2685479875912651314991782864" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "1497472701119339", + "expectedQty": "1497492026750315", + "reserves": [ + "1344840546625435171961463491", + "836576650181545627103210684", + "506002244742737800825745254" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "896451494107791126167552", - "344975712469745389273088", - "584897010703560905588736" + "1166097117035450117128192", + "1252639359628134747996160", + "1464688696934013998202880" ], - "expectedQty": "1837992933689836380233974", + "expectedQty": "3889225623679046329978584", + "swapFee": "2334936336009033217917", "reserves": [ - "36901936041778062041781689", - "12028654807554161793474587", - "90476518828161447717279117" + "1343674449508399721844335299", + "835324010821917492355214524", + "504537556045803786827542374" ], - "mAssetSupply": "138840857976566630582652993" + "mAssetSupply": "2681590650290469760688554595" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1394063463655481939066880", - "expectedQty": "1391176506378588959281600", - "swapFee": "836438078193289163440", + "type": "mintMulti", + "inputQtys": [ + "13288388783686521267945472", + "1414599385796633465716736", + "4647537575909298716803072" + ], + "expectedQty": "19328517920933521186736138", "reserves": [ - "35510759535399473082500089", - "12028654807554161793474587", - "90476518828161447717279117" + "1356962838292086243112280771", + "836738610207714125820931260", + "509185093621713085544345446" ], - "mAssetSupply": "137447630950989341932749553" + "mAssetSupply": "2700919168211403281875290733" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "19960639562412673990656", - "expectedQty": "18946684447264233954027", - "swapFee": "11976383737447604394", + "inputQty": "56787393843101985406976", + "expectedQty": "56749339607759964605286", + "swapFee": "34072436305861191244", "reserves": [ - "35510759535399473082500089", - "12009708123106897559520560", - "90476518828161447717279117" + "1356962838292086243112280771", + "836681860868106365856325974", + "509185093621713085544345446" ], - "mAssetSupply": "137427682287810666706363291" + "mAssetSupply": "2700862414889996485751075001" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1537486603637788160", - "1657042499819758336", - "1318878630338130944" + "746435116458152095121408", + "310777629338884059955200", + "90030441458293798862848" ], - "expectedQty": "4585474201709782524", + "expectedQty": "1144769391389982129032835", + "swapFee": "687273999233529395056", "reserves": [ - "35510761072886076720288249", - "12009709780149397379278896", - "90476520147040078055410061" + "1356216403175628091017159363", + "836371083238767481796370774", + "509095063180254791745482598" ], - "mAssetSupply": "137427686873284868416145815" + "mAssetSupply": "2699717645498606503622042166" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "276755237998462", - "170285510090291", - "58866234964346" + "1102387042725427601735680", + "283298490331894785245184", + "223644460371583933874176" ], - "expectedQty": "514607115973257", + "expectedQty": "1606324439657934240511981", + "swapFee": "964373287767420996905", "reserves": [ - "35510761073162831958286711", - "12009709780319682889369187", - "90476520147098944290374407" + "1355114016132902663415423683", + "836087784748435587011125590", + "508871418719883207811608422" ], - "mAssetSupply": "137427686873799475532119072" + "mAssetSupply": "2698111321058948569381530185" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "94484328794800623976448", - "expectedQty": "94252500508480701655460", - "swapFee": "56690597276880374385", - "reserves": [ - "35416508572654351256631251", - "12009709780319682889369187", - "90476520147098944290374407" + "type": "mintMulti", + "inputQtys": [ + "8894862688902003556352", + "2344187550642736726016", + "286265698519947509760" ], - "mAssetSupply": "137333259235601951788517009" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "41609281977217779236864", - "expectedQty": "43804633098118307422653", + "expectedQty": "11490052687584390630265", "reserves": [ - "35416508572654351256631251", - "12051319062296900668606051", - "90476520147098944290374407" - ] + "1355122910995591565418980035", + "836090128935986229747851606", + "508871704985581727759118182" + ], + "mAssetSupply": "2698122811111636153772160450" }, { "type": "redeemBassets", "inputQtys": [ - "14918944314992780902400", - "3273470260914175868928", - "11662249764378852196352" + "231435696611983733293056", + "275771927025080816631808", + "85254843830216574369792" ], - "expectedQty": "29891633659906548282245", - "swapFee": "17945747644530647357", + "expectedQty": "592124512755822396433904", + "swapFee": "355488000453765697278", "reserves": [ - "35401589628339358475728851", - "12048045592035986492737123", - "90464857897334565438178055" + "1354891475298979581685686979", + "835814357008961148931219798", + "508786450141751511184748390" ], - "mAssetSupply": "137347172235040163547657417" + "mAssetSupply": "2697530686598880331375726546" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "26059912508176114647040", - "expectedQty": "24740459904474035362126", - "swapFee": "15635947504905668788", - "reserves": [ - "35401589628339358475728851", - "12023305132131512457374997", - "90464857897334565438178055" + "type": "mintMulti", + "inputQtys": [ + "106891252678684508160", + "80190741846234841088", + "709156569322509565952" ], - "mAssetSupply": "137321127958479492338679165" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "87175691917237585707008", - "expectedQty": "82724733134404894800368", - "swapFee": "52305415150342551424", + "expectedQty": "900941345760148411762", "reserves": [ - "35401589628339358475728851", - "11940580398997107562574629", - "90464857897334565438178055" + "1354891582190232260370195139", + "835814437199702995166060886", + "508787159298320833694314342" ], - "mAssetSupply": "137234004571977405095523581" + "mAssetSupply": "2697531587540226091524138308" }, { "type": "swap", "inputIndex": 1, - "inputQty": "394379037742643871744", + "inputQty": "3570520746120681587998720", "outputIndex": 2, - "expectedQty": "421196495536109923593", - "swapFee": "249295801729917645", + "expectedQty": "3542561473798312110677720", + "swapFee": "2142426264630244189166", "reserves": [ - "35401589628339358475728851", - "11940974778034850206446373", - "90464436700839029328254462" + "1354891582190232260370195139", + "839384957945823676754059606", + "505244597824522521583636622" ], - "mAssetSupply": "137234004821273206825441226", + "mAssetSupply": "2697533729966490721768327474", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1644492775307638016", - "952895474308788992", - "398755130676287616" + "type": "redeemMasset", + "inputQty": "21526088737272723249561", + "expectedQtys": [ + "10808675513037861649975", + "6696210796656572879390", + "4030599189178392171653" ], - "expectedQty": "3044599792076398209", + "redemptionFee": "6457826621181816974", "reserves": [ - "35401591272832133783366867", - "11940975730930324515235365", - "90464437099594160004542078" + "1354880773514719222508545164", + "839378261735027020181180216", + "505240567225333343191464969" ], - "mAssetSupply": "137234007865872998901839435" + "mAssetSupply": "2697512210335580070226894887" }, { "type": "redeemMasset", - "inputQty": "813119814458021825740", + "inputQty": "9065643689108702608385638", "expectedQtys": [ - "209693647035444626621", - "70729779655472466514", - "535846470748344158664" + "4552039255637210094285051", + "2820087842736561059629300", + "1697474006944525219167215" ], - "redemptionFee": "243935944337406547", + "redemptionFee": "2719693106732610782515", "reserves": [ - "35401381579185098338740246", - "11940905001150669042768851", - "90463901253123411660383414" + "1350328734259082012414260113", + "836558173892290459121550916", + "503543093218388817972297754" ], - "mAssetSupply": "137233194989994485217420242" + "mAssetSupply": "2688449286339578100229291764" }, { "type": "redeemMasset", - "inputQty": "46049186632786680112742", + "inputQty": "377494729296211716603904", "expectedQtys": [ - "11875521560720000958511", - "4005619794201778841897", - "30346443044753101270831" + "189547580456632856355581", + "117428870281360003709731", + "70683065948059446338282" ], - "redemptionFee": "13814755989836004033", + "redemptionFee": "113248418788863514981", "reserves": [ - "35389506057624378337781735", - "11936899381356467263926954", - "90433554810078658559112583" + "1350139186678625379557904532", + "836440745022009099117841185", + "503472410152440758525959472" ], - "mAssetSupply": "137187159618117688373311533" + "mAssetSupply": "2688071904858700677376202841" }, { "type": "redeemBassets", "inputQtys": [ - "23825041369332617216", - "3021609624034813952", - "32228674856144588800" + "564421072729816751407104", + "1226336628834531398385664", + "1317890955205112886198272" ], - "expectedQty": "58826204086780913176", - "swapFee": "35316912599628324", + "expectedQty": "3116046443718167555371022", + "swapFee": "1870750316420752985013", "reserves": [ - "35389482232583009005164519", - "11936896359746843229113002", - "90433522581403802414523783" + "1349574765605895562806497428", + "835214408393174567719455521", + "502154519197235645639761200" ], - "mAssetSupply": "137187100791913601592398357" + "mAssetSupply": "2684955858414982509820831819" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "38131169124514709635072", - "expectedQty": "37592106748504233253446", + "inputIndex": 0, + "inputQty": "788362146086063207088128", + "expectedQty": "785011961754443118870631", "reserves": [ - "35389482232583009005164519", - "11936896359746843229113002", - "90471653750528317124158855" + "1350363127751981626013585556", + "835214408393174567719455521", + "502154519197235645639761200" ] }, { - "type": "redeemBassets", + "type": "redeemMasset", + "inputQty": "1042377864536944445646438", + "expectedQtys": [ + "523939733868709228589385", + "324062473169961105544142", + "194835522195546850660762" + ], + "redemptionFee": "312713359361083333693", + "reserves": [ + "1349839188018112916784996171", + "834890345920004606613911379", + "501959683675040098789100438" + ], + "mAssetSupply": "2684698805225559369577389705" + }, + { + "type": "mintMulti", "inputQtys": [ - "4092722541805228169101312", - "2596715032209453549092864", - "7439213157065204057505792" + "114977407731558531072", + "83841723951096463360", + "127742613399012425728" ], - "expectedQty": "14184966863168104452077726", - "swapFee": "8516089771763921023860", + "expectedQty": "327024645897457144028", "reserves": [ - "31296759690777780836063207", - "9340181327537389680020138", - "83032440593463113066653063" + "1349839302995520648343527243", + "834890429761728557710374739", + "501959811417653497801526166" ], - "mAssetSupply": "123039726035494001373574077" + "mAssetSupply": "2684699132250205267034533733" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1637501573404378483654656", + "expectedQty": "1636478749118395632693429", + "swapFee": "982500944042627090192", + "reserves": [ + "1349839302995520648343527243", + "833253951012610162077681310", + "501959811417653497801526166" + ], + "mAssetSupply": "2683062613177744931177969269" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "2750444844828616051130368", + "expectedQty": "2750498799680644032239199", + "reserves": [ + "1349839302995520648343527243", + "836004395857438778128811678", + "501959811417653497801526166" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "7691115520844342419783680", - "outputIndex": 0, - "expectedQty": "7489101394818734013697828", - "swapFee": "4533080374302412882953", + "inputIndex": 0, + "inputQty": "1580292088486874578944", + "outputIndex": 1, + "expectedQty": "1572623337148352039297", + "swapFee": "944147318376884973", "reserves": [ - "23807658295959046822365379", - "9340181327537389680020138", - "90723556114307455486436743" + "1349840883287609135218106187", + "836002823234101629776772381", + "501959811417653497801526166" ], - "mAssetSupply": "123044259115868303786457030", + "mAssetSupply": "2685813112921572893587093441", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "60948990907846157873971", - "expectedQtys": [ - "11789395487576495417849", - "4625196238418196042884", - "44925707088649368134227" + "type": "mintMulti", + "inputQtys": [ + "486212163042055498498048", + "716870008119123811237888", + "789072166277109143044096" ], - "redemptionFee": "18284697272353847362", + "expectedQty": "1995964392276315860788209", "reserves": [ - "23795868900471470326947530", - "9335556131298971483977254", - "90678630407218806118302516" + "1350327095450651190716604235", + "836719693242220753588010269", + "502748883583930606944570262" ], - "mAssetSupply": "122983328409657729982430421" + "mAssetSupply": "2687809077313849209447881650" }, { - "type": "redeemBassets", - "inputQtys": [ - "440481948292350410752", - "289802496241326751744", - "76388195448385896448" - ], - "expectedQty": "836104201336727153720", - "swapFee": "501963699021449161", + "type": "swap", + "inputIndex": 2, + "inputQty": "12147671824111072150814720", + "outputIndex": 1, + "expectedQty": "12226394405304672475493776", + "swapFee": "7341275371252461888795", "reserves": [ - "23795428418523177976536778", - "9335266328802730157225510", - "90678554019023357732406068" + "1350327095450651190716604235", + "824493298836916081112516493", + "514896555408041679095384982" ], - "mAssetSupply": "122982492305456393255276701" + "mAssetSupply": "2687816418589220461909770445", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "524492073351690305142784", - "expectedQty": "517004240727904701971042", - "swapFee": "314695244011014183085", + "type": "mint", + "inputIndex": 1, + "inputQty": "5913170678792817999872", + "expectedQty": "5914333317907739987447", "reserves": [ - "23278424177795273274565736", - "9335266328802730157225510", - "90678554019023357732406068" - ], - "mAssetSupply": "122458314927348713964317002" + "1350327095450651190716604235", + "824499212007594873930516365", + "514896555408041679095384982" + ] }, { "type": "redeemMasset", - "inputQty": "119450967728938467878502", + "inputQty": "1386917591712459897228492", "expectedQtys": [ - "22699937589399063060854", - "9103277843281861167932", - "88425122817902660628293" + "696560387415860074361716", + "425314349741618135716215", + "265607159422673950022981" ], - "redemptionFee": "35835290318681540363", + "redemptionFee": "416075277513737969168", "reserves": [ - "23255724240205874211504882", - "9326163050959448296057578", - "90590128896205455071777775" + "1349630535063235330642242519", + "824073897657853255794800150", + "514630948248619005145362001" ], - "mAssetSupply": "122338899794910094177978863" + "mAssetSupply": "2686435831406103423490498568" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3573474661315160047616", - "expectedQty": "3884599832165649740251", + "type": "redeemBassets", + "inputQtys": [ + "175023766334081928790016", + "54081638236988215656448", + "179614629855657788964864" + ], + "expectedQty": "409248298817919546785768", + "swapFee": "245696397129029145558", "reserves": [ - "23255724240205874211504882", - "9329736525620763456105194", - "90590128896205455071777775" - ] + "1349455511296901248713452503", + "824019816019616267579143702", + "514451333618763347356397137" + ], + "mAssetSupply": "2686026583107285503943712800" }, { "type": "redeemBassets", "inputQtys": [ - "131386103703327981568", - "265844545717730213888", - "38092555435533811712" + "1157869088195526040485888", + "797552264399374438629376", + "4483942731686926320926720" ], - "expectedQty": "459514538602918983983", - "swapFee": "275874247710377616", + "expectedQty": "6466129520541500138104892", + "swapFee": "3882006916474784953835", "reserves": [ - "23255592854102170883523314", - "9329470681075045725891306", - "90590090803650019537966063" + "1348297642208705722672966615", + "823222263755216893140514326", + "509967390887076421035470417" ], - "mAssetSupply": "122342324880203656908735131" + "mAssetSupply": "2679560453586744003805607908" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "120022199600976102424576", - "expectedQty": "117398273825388032548543", + "type": "redeem", + "inputIndex": 0, + "inputQty": "133761186324063358812160", + "expectedQty": "134246451908450652717578", + "swapFee": "80256711794438015287", "reserves": [ - "23255592854102170883523314", - "9329470681075045725891306", - "90710113003250995640390639" - ] + "1348163395756797272020249037", + "823222263755216893140514326", + "509967390887076421035470417" + ], + "mAssetSupply": "2679426772657131734884811035" }, { "type": "redeemMasset", - "inputQty": "2591704352711621214208", + "inputQty": "42079537620473498828", "expectedQtys": [ - "492027404493736276008", - "197387152127581600683", - "1919188289128060909283" + "21166121754599470210", + "12924562942875811621", + "8006471560023333830" ], - "redemptionFee": "777511305813486364", + "redemptionFee": "12623861286142049", "reserves": [ - "23255100826697677147247306", - "9329273293922918144290623", - "90708193814961867579481356" + "1348163374590675517420778827", + "823222250830653950264702705", + "509967382880604861012136587" ], - "mAssetSupply": "122457132227187639133555830" + "mAssetSupply": "2679426730590217975697454256" }, { - "type": "redeemMasset", - "inputQty": "1670072618229355354521", - "expectedQtys": [ - "317058346104834870314", - "127194630673688769803", - "1236708889092898142880" + "type": "mint", + "inputIndex": 2, + "inputQty": "10186047331083544323686400", + "expectedQty": "10256554900373134606454547", + "reserves": [ + "1348163374590675517420778827", + "823222250830653950264702705", + "520153430211688405335822987" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "41538670852621910016", + "165434813276044197888", + "479876123799811522560" ], - "redemptionFee": "501021785468806606", + "expectedQty": "689962381839742832951", + "swapFee": "414225964682655292", "reserves": [ - "23254783768351572312376992", - "9329146099292244455520820", - "90706957106072774681338476" + "1348163333052004664798868811", + "823222085395840674220504817", + "520152950335564605524300427" ], - "mAssetSupply": "122455462655591195247007915" + "mAssetSupply": "2689682595528209270561075852" }, { - "type": "redeemMasset", - "inputQty": "16140658068252840375091", - "expectedQtys": [ - "3064256186410392910557", - "1229290881972756474326", - "11952351706706419210179" - ], - "redemptionFee": "4842197420475852112", + "type": "redeem", + "inputIndex": 2, + "inputQty": "457887445876282", + "expectedQty": "454538540337744", + "swapFee": "274732467525", "reserves": [ - "23251719512165161919466435", - "9327916808410271699046494", - "90695004754366068262128297" + "1348163333052004664798868811", + "823222085395840674220504817", + "520152950335110066983962683" ], - "mAssetSupply": "122439326839720362882484936" + "mAssetSupply": "2689682595527751657847667095" }, { "type": "redeemBassets", "inputQtys": [ - "3715493912874485", - "35943505530385364", - "16064961886388424" + "2766937452920273511645184", + "6118125725092614431047680", + "1141902808209910285729792" ], - "expectedQty": "58563122248054623", - "swapFee": "35158968730070", + "expectedQty": "10024786172486835431049446", + "swapFee": "6018482793168002059865", "reserves": [ - "23251719508449668006591950", - "9327916772466766168661130", - "90695004738301106375739873" + "1345396395599084391287223627", + "817103959670748059789457137", + "519011047526900156698232891" ], - "mAssetSupply": "122439326781157240634430313" + "mAssetSupply": "2679657809355264822416617649" }, { - "type": "redeemMasset", - "inputQty": "283521820923048581136384", - "expectedQtys": [ - "53825778995425347826802", - "21593344376103490960071", - "209951323353046259947958" + "type": "mintMulti", + "inputQtys": [ + "244913813288526599421952", + "100665220883206188826624", + "216526169484850947424256" ], - "redemptionFee": "85056546276914574340", + "expectedQty": "562576644123914372299746", "reserves": [ - "23197893729454242658765148", - "9306323428090662677701059", - "90485053414948060115791915" + "1345641309412372917886645579", + "817204624891631265978283761", + "519227573696385007645657147" ], - "mAssetSupply": "122155890016780468967868269" + "mAssetSupply": "2680220385999388736788917395" }, { - "type": "redeemMasset", - "inputQty": "628778098763075283425689", - "expectedQtys": [ - "119371662015287497868647", - "47888455211451896158094", - "465617755631408780889725" - ], - "redemptionFee": "188633429628922585027", + "type": "mint", + "inputIndex": 2, + "inputQty": "2103532874066465459798016", + "expectedQty": "2117630712191300786460722", "reserves": [ - "23078522067438955160896501", - "9258434972879210781542965", - "90019435659316651334902190" - ], - "mAssetSupply": "121527300551447022607027607" + "1345641309412372917886645579", + "817204624891631265978283761", + "521331106570451473105455163" + ] }, { - "type": "redeemMasset", - "inputQty": "8243685598351351139532", - "expectedQtys": [ - "1565039324592453831462", - "627848472029386834009", - "6104548479004262695703" + "type": "redeemBassets", + "inputQtys": [ + "14173866446917883597422592", + "6050222888627645137813504", + "6966060706331265515651072" ], - "redemptionFee": "2473105679505405341", + "expectedQty": "27179964665351463756190133", + "swapFee": "16317769460887410700134", "reserves": [ - "23076957028114362707065039", - "9257807124407181394708956", - "90013331110837647072206487" + "1331467442965455034289222987", + "811154402003003620840470257", + "514365045864120207589804091" ], - "mAssetSupply": "121519059338954350761293416" + "mAssetSupply": "2655158052046228573819187984" }, { "type": "mintMulti", "inputQtys": [ - "37466822013209837568", - "1327779154197746810880", - "1788402661341820092416" + "7044670007577878528", + "7251974609866429440", + "1192962526150949888" ], - "expectedQty": "3230929832623329902710", + "expectedQty": "15470399406343899882", "reserves": [ - "23076994494936375916902607", - "9259134903561379141519836", - "90015119513498988892298903" + "1331467450010125041867101515", + "811154409254978230706899697", + "514365047057082733740753979" ], - "mAssetSupply": "121522290268786974091196126" + "mAssetSupply": "2655158067516627980163087866" }, { "type": "mintMulti", "inputQtys": [ - "24969269819789716", - "16985238731454706", - "5656792931883562" + "212821934320837204115456", + "669636755162535622082560", + "800192479892750989262848" ], - "expectedQty": "49329604460706278", + "expectedQty": "1687323043273430520392920", "reserves": [ - "23076994519905645736692323", - "9259134920546617872974542", - "90015119519155781824182465" + "1331680271944445879071216971", + "811824046010140766328982257", + "515165239536975484730016827" ], - "mAssetSupply": "121522290318116578551902404" + "mAssetSupply": "2656845390559901410683480786" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "117281708737798995968", - "expectedQty": "119833365013554864731", - "swapFee": "70369025242679397", + "type": "redeemMasset", + "inputQty": "5032907073603033995673", + "expectedQtys": [ + "2521867631942512964380", + "1537390639178134321720", + "975593443907689019066" + ], + "redemptionFee": "1509872122080910198", "reserves": [ - "23076994519905645736692323", - "9259134920546617872974542", - "90014999685790768269317734" + "1331677750076813936558252591", + "811822508619501588194660537", + "515164263943531577040997761" ], - "mAssetSupply": "121522173106776865995585833" + "mAssetSupply": "2656840359162699929730395311" }, { "type": "redeemBassets", "inputQtys": [ - "58596471271625353854976", - "16899685325731562258432", - "3297786263727861399552" - ], - "expectedQty": "81047387998677623157841", - "swapFee": "48657627375631953066", - "reserves": [ - "23018398048634020382837347", - "9242235235220886310716110", - "90011701899527040407918182" + "2722590807403796480", + "1853809331470249984", + "1911333511078528000" ], - "mAssetSupply": "121441125718778188372427992" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "59702287702556512", - "expectedQty": "58811630816225894", - "swapFee": "35821372621533", + "expectedQty": "6489813736065394564", + "swapFee": "3896225977225572", "reserves": [ - "23018397989822389566611453", - "9242235235220886310716110", - "90011701899527040407918182" + "1331677747354223129154456111", + "811822506765692256724410553", + "515164262032198065962469761" ], - "mAssetSupply": "121441125659111722042493013" + "mAssetSupply": "2656840352672886193665000747" }, { "type": "mintMulti", "inputQtys": [ - "1039150094760302478360576", - "1090805943308237691420672", - "1985927312839500823003136" + "8211184212252878914453504", + "13721924447943324854124544", + "6845369752139503048327168" ], - "expectedQty": "4175891109984487811197427", + "expectedQty": "28793727122174439713934883", "reserves": [ - "24057548084582692044972029", - "10333041178529124002136782", - "91997629212366541230921318" + "1339888931566476008068909615", + "825544431213635581578535097", + "522009631784337569010796929" ], - "mAssetSupply": "125617016769096209853690440" + "mAssetSupply": "2685634079795060633378935630" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "29760035427402607755264", - "95788242513992932655104", - "97793413527302670647296" + "23952780100093549215744", + "8479166268779216764928", + "18698469795334396575744" ], - "expectedQty": "228828480543923660194263", - "swapFee": "137379516035975781585", + "expectedQty": "51159172972446099261061", "reserves": [ - "24027788049155289437216765", - "10237252936015131069481678", - "91899835798839238560274022" + "1339912884346576101618125359", + "825552910379904360795300025", + "522028330254132903407372673" ], - "mAssetSupply": "125388188288552286193496177" + "mAssetSupply": "2685685238968033079478196691" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "802872481571800743936", + "expectedQty": "799608870092122522316", + "reserves": [ + "1339913687219057673418869295", + "825552910379904360795300025", + "522028330254132903407372673" + ] }, { "type": "mintMulti", "inputQtys": [ - "27520427298218242473984", - "43264151894537340452864", - "48012399427573640069120" + "4214070410151451133214720", + "3045802469737041418518528", + "3723267904692268950355968" ], - "expectedQty": "121397020807959275798569", + "expectedQty": "10991333441662444665068360", "reserves": [ - "24055308476453507679690749", - "10280517087909668409934542", - "91947848198266812200343142" + "1344127757629209124552084015", + "828598712849641402213818553", + "525751598158825172357728641" ], - "mAssetSupply": "125509585309360245469294746" + "mAssetSupply": "2696677372018565616265787367" }, { "type": "redeemBassets", "inputQtys": [ - "23257286008951369891840", - "12160033638553382551552", - "56253971455287173840896" + "30571393051281850368000", + "43057994798583244652544", + "49914397049341884760064" ], - "expectedQty": "91744096273647003716250", - "swapFee": "55079505467468683439", + "expectedQty": "123758210908781709788599", + "swapFee": "74299506249018436935", "reserves": [ - "24032051190444556309798909", - "10268357054271115027382990", - "91891594226811525026502246" + "1344097186236157842701716015", + "828555654854842818969166009", + "525701683761775830472968577" ], - "mAssetSupply": "125417841213086598465578496" + "mAssetSupply": "2696553613807656834555998768" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "2087837740287795134464", - "expectedQty": "1943048910001358585533", - "swapFee": "1252702644172677080", + "inputQty": "4806246347864931303424", + "outputIndex": 2, + "expectedQty": "4772869938296108972532", + "swapFee": "2884344280810585264", "reserves": [ - "24032051190444556309798909", - "10266414005361113668797457", - "91891594226811525026502246" + "1344097186236157842701716015", + "828560461101190683900469433", + "525696910891837534363996045" ], - "mAssetSupply": "125415754628048954843121112" + "mAssetSupply": "2696553616692001115366584032", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "155054316988688368664576", - "expectedQty": "166340848423021657573980", + "inputQty": "64849147066814086250496", + "expectedQty": "64862538114197415456648", "reserves": [ - "24032051190444556309798909", - "10421468322349802037462033", - "91891594226811525026502246" + "1344097186236157842701716015", + "828625310248257497986719929", + "525696910891837534363996045" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "143581319455509808414720", - "421794614041632437174272", - "120465001625097636675584" + "type": "redeemMasset", + "inputQty": "3962340096233567295845171", + "expectedQtys": [ + "1974388473643486515502493", + "1217194915871185716796812", + "772213447155053257623466" ], - "expectedQty": "716803362876854860691107", - "swapFee": "430340221859228453486", + "redemptionFee": "1188702028870070188753", "reserves": [ - "23888469870989046501384189", - "9999673708308169600287761", - "91771129225186427389826662" + "1342122797762514356186213522", + "827408115332386312269923117", + "524924697444682481106372579" ], - "mAssetSupply": "124865292113595121640003985" + "mAssetSupply": "2692657327835910615556384262" }, { - "type": "redeemMasset", - "inputQty": "30028414982904931680256", - "expectedQtys": [ - "5743130653747328720737", - "2404064928051339478938", - "22063095218260376768590" + "type": "mintMulti", + "inputQtys": [ + "1163398263706740992", + "9639291428959842304", + "9145784277565797376" ], - "redemptionFee": "9008524494871479504", + "expectedQty": "20006091135116294804", "reserves": [ - "23882726740335299172663452", - "9997269643380118260808823", - "91749066129968167013058072" + "1342122798925912619892954514", + "827408124971677741229765421", + "524924706590466758672169955" ], - "mAssetSupply": "124835272707136711579803233" + "mAssetSupply": "2692657347842001750672679066" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "51839812931569376559104", - "299200314223584312557568", - "149415613057454405844992" + "6844637454238694244352", + "22935805163058002657280", + "4882044370199006674944" + ], + "expectedQty": "34671723945967768859180", + "swapFee": "20815523681789735156", + "reserves": [ + "1342115954288458381198710162", + "827385189166514683227108141", + "524919824546096559665495011" + ], + "mAssetSupply": "2692622676118055782903819886" + }, + { + "type": "redeemMasset", + "inputQty": "2830975859845561", + "expectedQtys": [ + "1410653654532828", + "869637185277975", + "551725852350259" ], - "expectedQty": "520717569676060019140892", + "redemptionFee": "849292757953", "reserves": [ - "23934566553266868549222556", - "10296469957603702573366391", - "91898481743025621418903064" + "1342115954287047727544177334", + "827385189165645046041830166", + "524919824545544833813144752" ], - "mAssetSupply": "125355990276812771598944125" + "mAssetSupply": "2692622676115225656336732278" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "19974455099318733897728", - "expectedQty": "18593370270681584718840", - "swapFee": "11984673059591240338", + "inputQty": "17788868474453222227968", + "expectedQty": "17774525805085554995988", + "swapFee": "10673321084671933336", + "reserves": [ + "1342115954287047727544177334", + "827367414639839960486834178", + "524919824545544833813144752" + ], + "mAssetSupply": "2692604897920072287786437646" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "865423370845034953834496", + "360241199958340810047488", + "522541659504924214427648" + ], + "expectedQty": "1748226009323603651185253", + "swapFee": "1049565344801042816400", "reserves": [ - "23934566553266868549222556", - "10277876587333020988647551", - "91898481743025621418903064" + "1341250530916202692590342838", + "827007173439881619676786690", + "524397282886039909598717104" ], - "mAssetSupply": "125336027806386512456286735" + "mAssetSupply": "2690856671910748684135252393" }, { "type": "mintMulti", "inputQtys": [ - "1126199931747498590208", - "944977059514601308160", - "1567938410799589490688" + "43249280910581531934720", + "106176424698550950035456", + "93703830787608027332608" ], - "expectedQty": "3692291166821787695259", + "expectedQty": "243594807126545911042145", "reserves": [ - "23935692753198616047812764", - "10278821564392535589955711", - "91900049681436421008393752" + "1341293780197113274122277558", + "827113349864580170626822146", + "524490986716827517626049712" ], - "mAssetSupply": "125339720097553334243981994" + "mAssetSupply": "2691100266717875230046294538" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "18172734593665308033024", - "expectedQty": "18416206951202741905347", + "type": "redeem", + "inputIndex": 1, + "inputQty": "34591558467523312615424", + "expectedQty": "34563761897599791558606", + "swapFee": "20754935080513987569", "reserves": [ - "23953865487792281355845788", - "10278821564392535589955711", - "91900049681436421008393752" - ] + "1341293780197113274122277558", + "827078786102682570835263540", + "524490986716827517626049712" + ], + "mAssetSupply": "2691065695914342787247666683" }, { "type": "redeemMasset", - "inputQty": "740239789643028391526", + "inputQty": "477784217450793", "expectedQtys": [ - "141405140432666476313", - "60678231976212348722", - "542506988594192276056" + "238068043235069", + "146799329957204", + "93092613076723" ], - "redemptionFee": "222071936892908517", + "redemptionFee": "143335265235", "reserves": [ - "23953724082651848689369475", - "10278760886160559377606989", - "91899507174447826816117696" + "1341293780196875206079042489", + "827078786102535771505306336", + "524490986716734425012972989" ], - "mAssetSupply": "125357396286786830850404332" + "mAssetSupply": "2691065695913865146365481125" }, { "type": "redeemMasset", - "inputQty": "111150686689233053365043", + "inputQty": "107956656784408456881766", "expectedQtys": [ - "21232685246570949878475", - "9111138371117552407522", - "81460123002887140740060" + "53792128530304931510901", + "33169711977778567259447", + "21034531723774829518192" ], - "redemptionFee": "33345206006769916009", + "redemptionFee": "32386997035322537064", "reserves": [ - "23932491397405277739491000", - "10269649747789441825199467", - "91818047051444939675377636" + "1341239988068344901147531588", + "827045616390557992938046889", + "524469952185010650183454797" ], - "mAssetSupply": "125246278945303604566955298" + "mAssetSupply": "2690957771644077773231136423" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "3095311706511461318656", - "expectedQty": "3032891819580889736761", + "inputIndex": 0, + "inputQty": "43461083925371452129280", + "expectedQty": "43285165330388711773982", "reserves": [ - "23932491397405277739491000", - "10269649747789441825199467", - "91821142363151451136696292" + "1341283449152270272599660868", + "827045616390557992938046889", + "524469952185010650183454797" ] }, { - "type": "mintMulti", - "inputQtys": [ - "755673568304679092224", - "213467412459462426624", - "222087109792034619392" - ], - "expectedQty": "1212606446523460958100", + "type": "redeem", + "inputIndex": 1, + "inputQty": "431123344458909350887424", + "expectedQty": "430775942395696004381621", + "swapFee": "258674006675345610532", "reserves": [ - "23933247070973582418583224", - "10269863215201901287626091", - "91821364450261243171315684" + "1341283449152270272599660868", + "826614840448162296933665268", + "524469952185010650183454797" ], - "mAssetSupply": "125250524443569708917650159" + "mAssetSupply": "2690570192138955927937633513" }, { - "type": "redeemBassets", - "inputQtys": [ - "128462565309006999453696", - "51040688222614430154752", - "62892771371263163629568" + "type": "mint", + "inputIndex": 2, + "inputQty": "358173816250477811073024", + "expectedQty": "360535656973427221360358", + "reserves": [ + "1341283449152270272599660868", + "826614840448162296933665268", + "524828126001261127994527821" + ] + }, + { + "type": "redeemMasset", + "inputQty": "489897374708881791805030", + "expectedQtys": [ + "244114092690179282981586", + "150444212152007453028386", + "95518916510942691392185" ], - "expectedQty": "246637615757340965648749", - "swapFee": "148071412301785650779", + "redemptionFee": "146969212412664537541", "reserves": [ - "23804784505664575419129528", - "10218822526979286857471339", - "91758471678889980007686116" + "1341039335059580093316679282", + "826464396236010289480636882", + "524732607084750185303135636" ], - "mAssetSupply": "125003886827812367952001410" + "mAssetSupply": "2690440977390432886031726382" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "5705115847783447789568", - "expectedQty": "5625213771237108771285", - "swapFee": "3423069508670068673", + "inputQty": "210160876826852950016", + "outputIndex": 2, + "expectedQty": "207815639931586276898", + "swapFee": "125586289478489327", "reserves": [ - "23799159291893338310358243", - "10218822526979286857471339", - "91758471678889980007686116" + "1341039545220456920169629298", + "826464396236010289480636882", + "524732399269110253716858738" ], - "mAssetSupply": "124998185135034093174280515" + "mAssetSupply": "2690440977516019175510215709", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "243511403637886761618636", + "inputQty": "27842309844437109964", "expectedQtys": [ - "46349697544059871196529", - "19901515325511955827093", - "178702842283610313826099" + "13873724624345246643", + "8550187416970776161", + "5428619040264647821" ], - "redemptionFee": "73053421091366028485", + "redemptionFee": "8352692953331132", "reserves": [ - "23752809594349278439161714", - "10198921011653774901644246", - "91579768836606369693860017" + "1341039531346732295824382655", + "826464387685822872509860721", + "524732393840491213452210917" ], - "mAssetSupply": "124754746784817297778690364" + "mAssetSupply": "2690440949682062024026436877" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1729100017542643970998272", - "1692909254336439476289536", - "1580608103293869768048640" + "52588938738981469683712", + "85322554120759523934208", + "68157931535976657584128" ], - "expectedQty": "5142656942640510767490174", - "swapFee": "3087446633564445127570", + "expectedQty": "206323605236696181180305", "reserves": [ - "22023709576806634468163442", - "8506011757317335425354710", - "89999160733312499925811377" + "1341092120285471277294066367", + "826549710239943632033794929", + "524800551772027190109795045" ], - "mAssetSupply": "119612089842176787011200190" + "mAssetSupply": "2690647273287298720207617182" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "201345437752983428268032", - "outputIndex": 0, - "expectedQty": "192993540415901391291614", - "swapFee": "117882513383714100873", + "type": "mintMulti", + "inputQtys": [ + "7072265290933353513484288", + "10803715770554663967916032", + "8318680982994919412989952" + ], + "expectedQty": "26222698264010268851436875", "reserves": [ - "21830716036390733076871828", - "8506011757317335425354710", - "90200506171065483354079409" + "1348164385576404630807550655", + "837353426010498296001710961", + "533119232755022109522784997" ], - "mAssetSupply": "119612207724690170725301063", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2716869971551308989059054057" }, { "type": "mintMulti", "inputQtys": [ - "147844697636958208000", - "546336085648321413120", - "98476123578228015104" + "434446973056378863616", + "208694430671972827136", + "127000426014007443456" ], - "expectedQty": "849920799174608391914", + "expectedQty": "769271396732591636617", "reserves": [ - "21830863881088370035079828", - "8506558093402983746767830", - "90200604647189061582094513" + "1348164820023377687186414271", + "837353634704928967974538097", + "533119359755448123530228453" ], - "mAssetSupply": "119613057645489345333692977" + "mAssetSupply": "2716870740822705721650690674" }, { - "type": "swap", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2197928344799899132362752", + "expectedQty": "2205381149636766988815647", + "swapFee": "1318757006879939479417", + "reserves": [ + "1345959438873740920197598624", + "837353634704928967974538097", + "533119359755448123530228453" + ], + "mAssetSupply": "2714674131234912702457807339" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "532414961134294272", - "outputIndex": 0, - "expectedQty": "577479861185869065", - "swapFee": "352808793880700", + "inputQty": "9389681556091776568131584", + "expectedQty": "9381974456391589968091294", + "swapFee": "5633808933655065940878", "reserves": [ - "21830863303608508849210763", - "8506558625817944881062102", - "90200604647189061582094513" + "1345959438873740920197598624", + "827971660248537378006446803", + "533119359755448123530228453" ], - "mAssetSupply": "119613057645842154127573677", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2705290083487754580955616633" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "16063388647981206776840192", + "expectedQty": "15998470989511473709745835", + "reserves": [ + "1362022827521722126974438816", + "827971660248537378006446803", + "533119359755448123530228453" + ] }, { "type": "redeemMasset", - "inputQty": "297078297908750937436979", + "inputQty": "16422109737563741958963", "expectedQtys": [ - "54204199750480716649998", - "21121070501448976872293", - "223960524323479757605813" + "8216908168498963973529", + "4995046309731069974139", + "3216240384113250804410" ], - "redemptionFee": "89123489372625281231", + "redemptionFee": "4926632921269122587", "reserves": [ - "21776659103858028132560765", - "8485437555316495904189809", - "89976644122865581824488700" + "1362014610613553628010465287", + "827966665202227646936472664", + "533116143515064010279424043" ], - "mAssetSupply": "119316068471422775815417929" + "mAssetSupply": "2721272137294161412192526092" }, { - "type": "redeem", + "type": "mintMulti", + "inputQtys": [ + "113309861159167936", + "137538049365100416", + "1298763987732869376" + ], + "expectedQty": "1557653858017805222", + "reserves": [ + "1362014610726863489169633223", + "827966665339765696301573080", + "533116144813827998012293419" + ], + "mAssetSupply": "2721272138851815270210331314" + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "5869930453981455187968", - "expectedQty": "5311400943034586490491", - "swapFee": "3521958272388873112", + "inputQty": "2361053455641398501965824", + "expectedQty": "2361770413647267250103578", + "reserves": [ + "1362014610726863489169633223", + "830327718795407094803538904", + "533116144813827998012293419" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "247164692389087051776", + "expectedQty": "245414087796900440606", + "swapFee": "148298815433452231", "reserves": [ - "21776659103858028132560765", - "8480126154373461317699318", - "89976644122865581824488700" + "1362014610726863489169633223", + "830327718795407094803538904", + "533115899399740201111852813" ], - "mAssetSupply": "119310202062927066749103073" + "mAssetSupply": "2723633662249068963806835347" }, { "type": "mintMulti", "inputQtys": [ - "45328058079863361241088", - "163339780355643288846336", - "93586762216622214086656" + "279081880181362990776320", + "2517034982602388359086080", + "5817674915002902183411712" ], - "expectedQty": "317562803404897011667296", + "expectedQty": "8650961715464127475911564", "reserves": [ - "21821987161937891493801853", - "8643465934729104606545654", - "90070230885082204038575356" + "1362293692607044852160409543", + "832844753778009483162624984", + "538933574314743103295264525" ], - "mAssetSupply": "119627764866331963760770369" + "mAssetSupply": "2732284623964533091282746911" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "69254047844749824491520", - "44714800342762294083584", - "29244638639156101120000" + "4574090786263633928126464", + "12453019309983378712821760", + "2420944398103857982341120" ], - "expectedQty": "148259496208892150850173", - "swapFee": "89009103187247639093", + "expectedQty": "19448518135118083152266658", "reserves": [ - "21752733114093141669310333", - "8598751134386342312462070", - "90040986246443047937455356" + "1366867783393308486088536007", + "845297773087992861875446744", + "541354518712846961277605645" ], - "mAssetSupply": "119479505370123071609920196" + "mAssetSupply": "2751733142099651174435013569" }, { "type": "redeemMasset", - "inputQty": "1576214064572928420426547", + "inputQty": "103482907839683448379801", "expectedQtys": [ - "286883325152623854302994", - "113403603338213955737537", - "1187494803476705227658938" + "51387620572163725803474", + "31779109700065067293198", + "20352312740578618099728" ], - "redemptionFee": "472864219371878526127", + "redemptionFee": "31044872351905034513", "reserves": [ - "21465849788940517815007339", - "8485347531048128356724533", - "88853491442966342709796418" + "1366816395772736322362732533", + "845265993978292796808153546", + "541334166400106382659505917" ], - "mAssetSupply": "117903764169769515068019776" + "mAssetSupply": "2751629690236683842891668281" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "8075291874707077", - "expectedQty": "7930527961432831", - "swapFee": "4845175124824", - "reserves": [ - "21465849781009989853574508", - "8485347531048128356724533", - "88853491442966342709796418" - ], - "mAssetSupply": "117903764161699068368437523" - }, - { - "type": "mint", "inputIndex": 1, - "inputQty": "1927893385944776704", - "expectedQty": "2124363379135846710", - "reserves": [ - "21465849781009989853574508", - "8485349458941514301501237", - "88853491442966342709796418" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "105185000469250848063488", - "expectedQty": "107027646529439990684967", + "inputQty": "240090294889626589986816", + "expectedQty": "239892425757965285728582", + "swapFee": "144054176933775953992", "reserves": [ - "21571034781479240701637996", - "8485349458941514301501237", - "88853491442966342709796418" - ] + "1366816395772736322362732533", + "845026101552534831522424964", + "541334166400106382659505917" + ], + "mAssetSupply": "2751389743995971150077635457" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "91069670568866960", - "88541352745000976", - "68256428661268184" + "121454412546197307392", + "8995252378698457808896", + "3636355749681003757568" ], - "expectedQty": "256824964011198539", + "expectedQty": "12777943922373834338463", + "swapFee": "7671369174929258157", "reserves": [ - "21571034872548911270504956", - "8485349547482867046502213", - "88853491511222771371064602" + "1366816274318323776165425141", + "845017106300156133064616068", + "541330530044356701655748349" ], - "mAssetSupply": "118010794189416851506167739" + "mAssetSupply": "2751376966052048776243296994" }, { - "type": "redeemMasset", - "inputQty": "308000745598148100174643", - "expectedQtys": [ - "56282153689777812059226", - "22139584408658716204969", - "231832450072762218800555" + "type": "mintMulti", + "inputQtys": [ + "1140714123382367453184", + "966004062247911424000", + "220533231399289487360" ], - "redemptionFee": "92400223679444430052", + "expectedQty": "2324334698308005367307", "reserves": [ - "21514752718859133458445730", - "8463209963074208330297244", - "88621659061150009152264047" + "1366817415032447158532878325", + "845018072304218380976040068", + "541330750577588100945235709" ], - "mAssetSupply": "117702885844042382850423148" + "mAssetSupply": "2751379290386747084248664301" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "6556033332861255811072", - "outputIndex": 1, - "expectedQty": "5802999910828710402371", - "swapFee": "3838948711043441745", + "type": "mint", + "inputIndex": 1, + "inputQty": "3333252294138814491787264", + "expectedQty": "3333954895887019582165593", "reserves": [ - "21514752718859133458445730", - "8457406963163379619894873", - "88628215094482870408075119" - ], - "mAssetSupply": "117702889682991093893864893", - "hardLimitError": false, - "insufficientLiquidityError": false + "1366817415032447158532878325", + "848351324598357195467827332", + "541330750577588100945235709" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "26752310643794972672", - "30609419768304640000", - "34420784661332922368" + "type": "redeemMasset", + "inputQty": "46646325051665", + "expectedQtys": [ + "23137755784272", + "14361059167038", + "9163754110553" ], - "expectedQty": "94540761910472150989", + "redemptionFee": "13993897515", "reserves": [ - "21514779471169777253418402", - "8457437572583147924534873", - "88628249515267531740997487" + "1366817415032424020777094053", + "848351324598342834408660294", + "541330750577578937191125156" ], - "mAssetSupply": "117702984223753004366015882" + "mAssetSupply": "2754713245282587471499675744" }, { - "type": "redeemBassets", - "inputQtys": [ - "125815810115", - "7647987773236", - "11446377496073" + "type": "redeemMasset", + "inputQty": "4820112398328430329856", + "expectedQtys": [ + "2390897533765925788570", + "1483973694980406627343", + "946919714566914589361" ], - "expectedQty": "19726673294146", - "swapFee": "11843109842", + "redemptionFee": "1446033719498529098", "reserves": [ - "21514779471169651437608287", - "8457437572575499936761637", - "88628249515256085363501414" + "1366815024134890254851305483", + "848349840624647854002032951", + "541329803657864370276535795" ], - "mAssetSupply": "117702984223733277692721736" + "mAssetSupply": "2754708426616222862567874986" }, { "type": "mint", "inputIndex": 2, - "inputQty": "615121657848792071798784", - "expectedQty": "600233981651966696027371", + "inputQty": "12882815112479206455377920", + "expectedQty": "12963457230372259019936581", "reserves": [ - "21514779471169651437608287", - "8457437572575499936761637", - "89243371173104877435300198" + "1366815024134890254851305483", + "848349840624647854002032951", + "554212618770343576731913715" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "95766237347429310529536", - "expectedQty": "94024353819004088264707", - "swapFee": "57459742408457586317", + "inputQty": "128293221727758119337984", + "expectedQty": "128716116491382365563653", + "swapFee": "76975933036654871602", + "reserves": [ + "1366686308018398872485741830", + "848349840624647854002032951", + "554212618770343576731913715" + ], + "mAssetSupply": "2767543667600800400123345185" + }, + { + "type": "mintMulti", + "inputQtys": [ + "416187969526369550336", + "115234092903847591936", + "3625466561592343134208" + ], + "expectedQty": "4177362386401578639140", "reserves": [ - "21420755117350647349343580", - "8457437572575499936761637", - "89243371173104877435300198" + "1366686724206368398855292166", + "848349955858740757849624887", + "554216244236905169075047923" ], - "mAssetSupply": "118207509427780223535805888" + "mAssetSupply": "2767547844963186801701984325" }, { "type": "redeemMasset", - "inputQty": "37019164059706156646", + "inputQty": "151345043402605120716", "expectedQtys": [ - "6706346815655845366", - "2647829603705625152", - "27940051357030200209" + "74715676403075781215", + "46378617466495720789", + "30298561351562491558" ], - "redemptionFee": "11105749217911846", + "redemptionFee": "45403513020781536", "reserves": [ - "21420748411003831693498214", - "8457434924745896231136485", - "89243343233053520405099989" + "1366686649490691995779510951", + "848349909480123291353904098", + "554216213938343817512556365" ], - "mAssetSupply": "118207472419721913047561088" + "mAssetSupply": "2767547693663546912117645145" }, { "type": "redeemBassets", "inputQtys": [ - "64212783503589302272", - "28277048499680575488", - "25122335034170978304" + "7006066974923446812672", + "13725819147882537680896", + "3820877922691648585728" ], - "expectedQty": "121085917175827788101", - "swapFee": "72695167405940237", + "expectedQty": "24552526978248337253506", + "swapFee": "14740360403190916902", "reserves": [ - "21420684198220328104195942", - "8457406647697396550560997", - "89243318110718486234121685" + "1366679643423717072332698279", + "848336183660975408816223202", + "554212393060421125863970637" ], - "mAssetSupply": "118207351333804737219772987" + "mAssetSupply": "2767523141136568663780391639" }, { "type": "redeemBassets", "inputQtys": [ - "90253447524166219595776", - "52980720822022916014080", - "16818422947594702422016" + "2839423278371243556864", + "12988053079515138621440", + "11654581275864938315776" ], - "hardLimitError": true + "expectedQty": "27545464682815343705815", + "swapFee": "16537201130367426679", + "reserves": [ + "1366676804000438701089141415", + "848323195607895893677601762", + "554200738479145260925654861" + ], + "mAssetSupply": "2767495595671885848436685824" }, { "type": "swap", "inputIndex": 0, - "inputQty": "351364620310599077724160", - "outputIndex": 2, - "expectedQty": "366156340768256063120775", - "swapFee": "214530917056190350008", + "inputQty": "108960652168332434210816", + "outputIndex": 1, + "expectedQty": "108442873569827525058527", + "swapFee": "65122496416699417573", "reserves": [ - "21772048818530927181920102", - "8457406647697396550560997", - "88877161769950230171000910" + "1366785764652607033523352231", + "848214752734326066152543235", + "554200738479145260925654861" ], - "mAssetSupply": "118207565864721793410122995", + "mAssetSupply": "2767495660794382265136103397", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mintMulti", - "inputQtys": [ - "931603490705515", - "1217624295456099", - "1300407677403854" - ], - "expectedQty": "3558895904573088", - "reserves": [ - "21772048819462530672625617", - "8457406648915020846017096", - "88877161771250637848404764" - ], - "mAssetSupply": "118207565868280689314696083" - }, { "type": "redeemMasset", - "inputQty": "202456667896305760075776", + "inputQty": "345790422423638658724659", "expectedQtys": [ - "37278274499258117310722", - "14480838676435040131664", - "152176180601887934203763" + "170724618356996374220647", + "105950137680976065071585", + "69224974401211955172074" ], - "redemptionFee": "60737000368891728022", + "redemptionFee": "103737126727091597617", "reserves": [ - "21734770544963272555314895", - "8442925810238585805885432", - "88724985590648749914201001" + "1366615040034250037149131584", + "848108802596645090087471650", + "554131513504744048970482787" ], - "mAssetSupply": "118005169937384752446348329" + "mAssetSupply": "2767149974109085353568976355" }, { - "type": "redeemMasset", - "inputQty": "271583240902127966696243", - "expectedQtys": [ - "50006525885001030266893", - "19425159663011872576994", - "204135041564231866400414" - ], - "redemptionFee": "81474972270638390008", + "type": "redeem", + "inputIndex": 0, + "inputQty": "37498767791953299898368", + "expectedQty": "37622397403676238160226", + "swapFee": "22499260675171979939", "reserves": [ - "21684764019078271525048002", - "8423500650575573933308438", - "88520850549084518047800587" + "1366577417636846360910971358", + "848108802596645090087471650", + "554131513504744048970482787" ], - "mAssetSupply": "117733668171454895118042094" + "mAssetSupply": "2767112497840554075441057926" }, { "type": "mintMulti", "inputQtys": [ - "246179522983745323794432", - "30382099387671851827200", - "12496369751499256889344" + "115739900565134606336", + "376343855828508147712", + "665616936114088706048" ], - "expectedQty": "295962069608156555604805", + "expectedQty": "1161403533484841348047", "reserves": [ - "21930943542062016848842434", - "8453882749963245785135638", - "88533346918836017304689931" + "1366577533376746926045577694", + "848109178940500918595619362", + "554132179121680163059188835" ], - "mAssetSupply": "118029630241063051673646899" + "mAssetSupply": "2767113659244087560282405973" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "12315666400134406602752", - "expectedQty": "11172384278064889155661", - "swapFee": "7389399840080643961", + "type": "redeemBassets", + "inputQtys": [ + "9077897429685450924097536", + "16053305317663675005272064", + "5024472251404869605261312" + ], + "expectedQty": "30155783365698994971160695", + "swapFee": "18104332618990791457570", "reserves": [ - "21930943542062016848842434", - "8442710365685180895979977", - "88533346918836017304689931" + "1357499635947061475121480158", + "832055873622837243590347298", + "549107706870275293453927523" ], - "mAssetSupply": "118017321964062757347688108" + "mAssetSupply": "2736957875878388565311245278" }, { - "type": "mintMulti", - "inputQtys": [ - "1419197013384332214009856", - "386298090892004083892224", - "962568513407235697672192" + "type": "redeemMasset", + "inputQty": "284472673273663966098227", + "expectedQtys": [ + "141052846426021527791500", + "86455897483988780952981", + "57055783292702287068183" ], - "expectedQty": "2805079826195502948176883", + "redemptionFee": "85341801982099189829", "reserves": [ - "23350140555446349062852290", - "8829008456577184979872201", - "89495915432243253002362123" + "1357358583100635453593688658", + "831969417725353254809394317", + "549050651086982591166859340" ], - "mAssetSupply": "120822401790258260295864991" + "mAssetSupply": "2736673488546916883444336880" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "4465530563646428779905024", - "expectedQty": "4361624290179223358340305", + "inputIndex": 1, + "inputQty": "12858116248875730731008", + "expectedQty": "12862708864955240089747", "reserves": [ - "23350140555446349062852290", - "8829008456577184979872201", - "93961445995889681782267147" + "1357358583100635453593688658", + "831982275841602130540125325", + "549050651086982591166859340" ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "1298865279429825527808", - "outputIndex": 0, - "expectedQty": "1246475821413407172279", - "swapFee": "760552516161880078", + "inputIndex": 0, + "inputQty": "53541848906384659705757696", + "outputIndex": 1, + "expectedQty": "53250412462003812888468247", + "swapFee": "31994779083111730008955", "reserves": [ - "23348894079624935655680011", - "8829008456577184979872201", - "93962744861169111607794955" + "1410900432007020113299446354", + "778731863379598317651657078", + "549050651086982591166859340" ], - "mAssetSupply": "125184026840989999816085374", + "mAssetSupply": "2736718346034864950414435582", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "14757945018174537728", - "expectedQty": "13350494583111953579", - "swapFee": "8854767010904722", + "inputQty": "6029583201180706140061696", + "expectedQty": "6019338871316302255874639", + "swapFee": "3617749920708423684037", "reserves": [ - "23348894079624935655680011", - "8828995106082601867918622", - "93962744861169111607794955" + "1410900432007020113299446354", + "772712524508282015395782439", + "549050651086982591166859340" ], - "mAssetSupply": "125184012091899748652452368" + "mAssetSupply": "2730692380583604952698057923" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "4046307900531716653056", - "expectedQty": "3660273431772537055572", - "swapFee": "2427784740319029991", + "inputQty": "866389228811587456", + "expectedQty": "864888714106882576", + "swapFee": "519833537286952", "reserves": [ - "23348894079624935655680011", - "8825334832650829330863050", - "93962744861169111607794955" + "1410900432007020113299446354", + "772712523643393301288899863", + "549050651086982591166859340" ], - "mAssetSupply": "125179968211783957254829303" + "mAssetSupply": "2730692379717735557423757419" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5034701740143211911839744", - "expectedQty": "5094603377772050866680301", + "type": "redeem", + "inputIndex": 2, + "inputQty": "35010833795570856617836544", + "expectedQty": "34759683164233905070095940", + "swapFee": "21006500277342513970701", "reserves": [ - "28383595819768147567519755", - "8825334832650829330863050", - "93962744861169111607794955" - ] + "1410900432007020113299446354", + "772712523643393301288899863", + "514290967922748686096763400" + ], + "mAssetSupply": "2695702552422442043319891576" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "32190787551515536", - "28313811587444364", - "16190948926671992" + "9953719194219975693828096", + "5415070372781634652995584", + "4991004267970200732696576" ], - "expectedQty": "79526171810113889", + "expectedQty": "20354014684719458166857792", + "swapFee": "12219740655224809785986", "reserves": [ - "28383595851958935119035291", - "8825334860964640918307414", - "93962744877360060534466947" + "1400946712812800137605618258", + "767297453270611666635904279", + "509299963654778485364066824" ], - "mAssetSupply": "130274571669082179931623493" + "mAssetSupply": "2675348537737722585153033784" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "124788157921772894683136", - "expectedQty": "123691493033641769967180", - "swapFee": "74872894753063736809", - "reserves": [ - "28259904358925293349068111", - "8825334860964640918307414", - "93962744877360060534466947" - ], - "mAssetSupply": "130149858384055160100677166" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "2261607481710906573848576", - "outputIndex": 2, - "expectedQty": "2489759041581131855372038", - "swapFee": "1468664526057488992540", + "inputQty": "148248767789645237846016", + "expectedQty": "148857857748914394191809", + "swapFee": "88949260673787142707", "reserves": [ - "28259904358925293349068111", - "11086942342675547492155990", - "91472985835778928679094909" + "1400797854955051223211426449", + "767297453270611666635904279", + "509299963654778485364066824" ], - "mAssetSupply": "130151327048581217589669706", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2675200377919193613702330475" }, { "type": "redeemBassets", "inputQtys": [ - "800279489976644539514880", - "2281752199454002811764736", - "1312311568065318552076288" + "60592622081290543300608", + "45911125935368976728064", + "19853990217715491536896" ], - "expectedQty": "4551415480176918844712151", - "swapFee": "2732488781374976292602", + "expectedQty": "126258822257335056478997", + "swapFee": "75800773818692249236", "reserves": [ - "27459624868948648809553231", - "8805190143221544680391254", - "90160674267713610127018621" + "1400737262332969932668125841", + "767251542144676297659176215", + "509280109664560769872529928" ], - "mAssetSupply": "125599911568404298744957555" + "mAssetSupply": "2675074119096936278645851478" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "200507870404097408", - "1775871372229124352", - "2667063100098171904" + "78036701923827041435648", + "1377375365815534612381696", + "1161902302143901534781440" ], - "expectedQty": "4758853779943855020", + "expectedQty": "2626604596789328324491989", + "swapFee": "1576908903415646382524", "reserves": [ - "27459625069456519213650639", - "8805191919092916909515606", - "90160676934776710225190525" + "1400659225631046105626690193", + "765874166778860763046794519", + "508118207362416868337748488" ], - "mAssetSupply": "125599916327258078688812575" + "mAssetSupply": "2672447514500146950321359489" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "1091074991456922726563840", - "expectedQty": "1081161498208648999137000", - "swapFee": "654644994874153635938", + "inputQty": "35528428489443580575744", + "outputIndex": 2, + "expectedQty": "35086340229678513784632", + "swapFee": "21216779523702944319", "reserves": [ - "26378463571247870214513639", - "8805191919092916909515606", - "90160676934776710225190525" + "1400694754059535549207265937", + "765874166778860763046794519", + "508083121022187189823963856" ], - "mAssetSupply": "124509495980796030115884673" + "mAssetSupply": "2672447535716926474024303808", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2977497902280349184", - "2049465626405644032", - "556552345712753408" + "type": "redeemMasset", + "inputQty": "1607468484259963061298790", + "expectedQtys": [ + "842260576244823738736757", + "460532614384853650772672", + "305518658545805247892755" ], - "expectedQty": "5795171655834719067", - "swapFee": "3479190507805514", + "redemptionFee": "482240545277988918389", "reserves": [ - "26378460593749967934164455", - "8805189869627290503871574", - "90160676378224364512437117" + "1399852493483290725468529180", + "765413634164475909396021847", + "507777602363641384576071101" ], - "mAssetSupply": "124509490185624374281165606" + "mAssetSupply": "2670840549473211788951923407" }, { "type": "redeemBassets", "inputQtys": [ - "1032934510566008", - "616746591095523", - "174035402510038" + "1731040590160843891539968", + "13816793313028295622656", + "933131085200735174918144" ], - "expectedQty": "1888541181463702", - "swapFee": "1133804991873", + "expectedQty": "2676614724524130810035735", + "swapFee": "1606932994511185197139", "reserves": [ - "26378460592717033423598447", - "8805189869010543912776051", - "90160676378050329109927079" + "1398121452893129881576989212", + "765399817371162881100399191", + "506844471278440649401152957" ], - "mAssetSupply": "124509490183735833099701904" + "mAssetSupply": "2668163934748687658141887672" }, { - "type": "redeemMasset", - "inputQty": "41993748472963172558438", - "expectedQtys": [ - "8894086052947429761335", - "2968866061469213896702", - "30399682023890510400239" + "type": "mintMulti", + "inputQtys": [ + "20830123258889789440", + "57240915869157212160", + "6592232523000085504" ], - "redemptionFee": "12598124541888951767", + "expectedQty": "84665461708143077069", "reserves": [ - "26369566506664085993837112", - "8802221002949074698879349", - "90130276696026438599526840" + "1398121473723253140466778652", + "765399874612078750257611351", + "506844477870673172401238461" ], - "mAssetSupply": "124467509033387411816095233" + "mAssetSupply": "2668164019414149366284964741" }, { - "type": "mintMulti", - "inputQtys": [ - "898748060597956823220224", - "1271520382546142677696512", - "115150013137896995815424" + "type": "redeemMasset", + "inputQty": "2281940369632964924302950", + "expectedQtys": [ + "1195381048684697699035460", + "654409879236307833046383", + "433347384232380998913548" ], - "expectedQty": "2397336002936283104096717", + "redemptionFee": "684582110889889477290", "reserves": [ - "27268314567262042817057336", - "10073741385495217376575861", - "90245426709164335595342264" + "1396926092674568442767743192", + "764745464732842442424564968", + "506411130486440791402324913" ], - "mAssetSupply": "126864845036323694920191950" + "mAssetSupply": "2665882763626627291250139081" }, { - "type": "redeemBassets", - "inputQtys": [ - "7035369176545525760", - "4926470124838564864", - "2664759188651881472" - ], - "expectedQty": "14994839969713706480", - "swapFee": "9002305365047252", + "type": "mint", + "inputIndex": 1, + "inputQty": "517467191019917027573760", + "expectedQty": "517939221002754801755862", "reserves": [ - "27268307531892866271531576", - "10073736459025092538010997", - "90245424044405146943460792" - ], - "mAssetSupply": "126864830041483725206485470" + "1396926092674568442767743192", + "765262931923862359452138728", + "506411130486440791402324913" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "1449978035941362176", - "1159492933427754752", - "971764889695199232" - ], - "expectedQty": "3659828442822288008", + "type": "redeem", + "inputIndex": 0, + "inputQty": "12314575822288775695826944", + "expectedQty": "12364915331988241661421442", + "swapFee": "7388745493373265417496", "reserves": [ - "27268308981870902212893752", - "10073737618518025965765749", - "90245425016170036638660024" + "1384561177342580201106321750", + "765262931923862359452138728", + "506411130486440791402324913" ], - "mAssetSupply": "126864833701312168028773478" + "mAssetSupply": "2654093515770834643621485495" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1006243143436314192379904", - "expectedQty": "987354070909454970977897", + "inputQty": "4241315932633236504576", + "expectedQty": "4271614683261698176750", "reserves": [ - "27268308981870902212893752", - "10073737618518025965765749", - "91251668159606350831039928" + "1384561177342580201106321750", + "765262931923862359452138728", + "506415371802373424638829489" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "206620520244868129226752", - "expectedQty": "210471844412769385773469", - "swapFee": "123972312146920877536", + "type": "mint", + "inputIndex": 0, + "inputQty": "4507622850002992128", + "expectedQty": "4486726118949033311", "reserves": [ - "27268308981870902212893752", - "10073737618518025965765749", - "91041196315193581445266459" - ], - "mAssetSupply": "127645691224288901791402159" + "1384561181850203051109313878", + "765262931923862359452138728", + "506415371802373424638829489" + ] }, { - "type": "redeemMasset", - "inputQty": "547617466146371552254361", - "expectedQtys": [ - "116949678025846941643135", - "43204746278392560110497", - "390462004931385228747459" + "type": "redeemBassets", + "inputQtys": [ + "6389466489961033253257216", + "355327886952946814943232", + "4080152270128807097139200" ], - "redemptionFee": "164285239843911465676", + "expectedQty": "10824921005399676001472829", + "swapFee": "6498851914388438664082", "reserves": [ - "27151359303845055271250617", - "10030532872239633405655252", - "90650734310262196216519000" + "1378171715360242017856056662", + "764907604036909412637195496", + "502335219532244617541690289" ], - "mAssetSupply": "127098238043382374150613474" + "mAssetSupply": "2643272870866844348267222727" }, { - "type": "redeemBassets", - "inputQtys": [ - "323636297335471552", - "1111208480682083840", - "354773817622588288" - ], - "expectedQty": "1868547750280434075", - "swapFee": "1121801731206984", + "type": "mint", + "inputIndex": 2, + "inputQty": "1983580739516119761551360", + "expectedQty": "1997840304121900482697246", "reserves": [ - "27151358980208757935779065", - "10030531761031152723571412", - "90650733955488378593930712" + "1378171715360242017856056662", + "764907604036909412637195496", + "504318800271760737303241649" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "43275641243156857663520768", + "expectedQty": "43203162339175102645771136", + "swapFee": "25965384745894114598112", + "reserves": [ + "1378171715360242017856056662", + "721704441697734309991424360", + "504318800271760737303241649" ], - "mAssetSupply": "127098236174834623870179399" + "mAssetSupply": "2602021035312555285200997317" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3557980153368443055243264", - "expectedQty": "3206505223635076876108764", - "swapFee": "2134788092021065833145", + "inputQty": "29279433907525374210736128", + "expectedQty": "29217292289904452921389395", + "swapFee": "17567660344515224526441", "reserves": [ - "27151358980208757935779065", - "6824026537396075847462648", - "90650733955488378593930712" + "1378171715360242017856056662", + "692487149407829857070034965", + "504318800271760737303241649" ], - "mAssetSupply": "123542390809558201880769280" + "mAssetSupply": "2572759169065374426214787630" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "4331297278527004307619840", + "inputIndex": 1, + "inputQty": "4730823025342721032192", "outputIndex": 2, - "expectedQty": "4461194390421994945262322", - "swapFee": "2614032636848915774459", + "expectedQty": "4704561830032994984615", + "swapFee": "2843378679802119196", "reserves": [ - "31482656258735762243398905", - "6824026537396075847462648", - "86189539565066383648668390" + "1378171715360242017856056662", + "692491880230855199791067157", + "504314095709930704308257034" ], - "mAssetSupply": "123545004842195050796543739", + "mAssetSupply": "2572759171908753106016906826", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "63039513398469410816", - "expectedQty": "64498354888845983320", - "swapFee": "37823708039081646", + "inputIndex": 1, + "inputQty": "18937515198619004220473344", + "expectedQty": "18891125829278001711965055", + "swapFee": "11362509119171402532284", "reserves": [ - "31482656258735762243398905", - "6824026537396075847462648", - "86189475066711494802685070" + "1378171715360242017856056662", + "673600754401577198079102102", + "504314095709930704308257034" ], - "mAssetSupply": "123544941840505360366214569" + "mAssetSupply": "2553833019219253273198965766" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "54799727289327304704", - "11318744355804899328", - "62101171438440849408" + "15141531256754176794820608", + "2290583937463738850869248", + "2844582883917065720168448" ], - "expectedQty": "128523109732296854529", - "swapFee": "77160161936540036", + "expectedQty": "20223765042209099893851533", "reserves": [ - "31482601459008472916094201", - "6824015218651720042563320", - "86189412965540056361835662" + "1393313246616996194650877270", + "675891338339040936929971350", + "507158678593847770028425482" ], - "mAssetSupply": "123544813317395628069360040" + "mAssetSupply": "2574056784261462373092817299" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "7066975667255426", - "outputIndex": 1, - "expectedQty": "6025812656376651", - "swapFee": "4141793078934", + "type": "mintMulti", + "inputQtys": [ + "45522359592038400000", + "48637314630658580480", + "69518286801380450304" + ], + "expectedQty": "164009106953846003921", "reserves": [ - "31482601459008472916094201", - "6824015212625907386186669", - "86189412972607032029091088" + "1393313292139355786689277270", + "675891386976355567588551830", + "507158748112134571408875786" ], - "mAssetSupply": "123544813317399769862438974", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2574056948270569326938821220" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2345755511274963468288", - "expectedQty": "2685500674876425185585", + "inputIndex": 0, + "inputQty": "20410949384172996657152", + "expectedQty": "20307465779016615516526", "reserves": [ - "31482601459008472916094201", - "6826360968137182349654957", - "86189412972607032029091088" + "1393333703088739959685934422", + "675891386976355567588551830", + "507158748112134571408875786" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "682395122574091747328", - "expectedQty": "666565204536299676499", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1451332629392933836029952", + "expectedQty": "1457847210565808628732365", + "swapFee": "870799577635760301617", "reserves": [ - "31482601459008472916094201", - "6826360968137182349654957", - "86190095367729606120838416" - ] + "1391875855878174151057202057", + "675891386976355567588551830", + "507158748112134571408875786" + ], + "mAssetSupply": "2572626793906533045478609411" }, { - "type": "redeemBassets", - "inputQtys": [ - "12446036477089402585088", - "11226277830549970092032", - "4391807397611100962816" - ], - "expectedQty": "29613889179018404291600", - "swapFee": "17779000907955816064", + "type": "redeem", + "inputIndex": 0, + "inputQty": "52260259069359445508096", + "expectedQty": "52494614360867959025592", + "swapFee": "31356155441615667304", "reserves": [ - "31470155422531383513509113", - "6815134690306632379562925", - "86185703560331995019875600" + "1391823361263813283098176465", + "675891386976355567588551830", + "507158748112134571408875786" ], - "mAssetSupply": "123518551494100164183009458" + "mAssetSupply": "2572574565003619127648768619" }, { "type": "redeemBassets", "inputQtys": [ - "44656784638779368407040", - "48951583793220832722944", - "21308921150937082363904" + "4533644563704201776988160", + "7850314989375123621937152", + "7522573634142302606721024" ], - "expectedQty": "121663451571971311179117", - "swapFee": "73041896080831285478", + "expectedQty": "19950138680221006942636011", + "swapFee": "11977269569874528882911", "reserves": [ - "31425498637892604145102073", - "6766183106513411546839981", - "86164394639181057937511696" + "1387289716700109081321188305", + "668041071986980443966614678", + "499636174477992268802154762" ], - "mAssetSupply": "123396888042528192871830341" + "mAssetSupply": "2552624426323398120706132608" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "16408620929782747496448", - "expectedQty": "16791540555652537986209", - "swapFee": "9845172557869648497", + "type": "redeemMasset", + "inputQty": "212170365244825847568793", + "expectedQtys": [ + "115274875664613594803751", + "55509927439908554999591", + "41516560814343715497997" + ], + "redemptionFee": "63651109573447754270", "reserves": [ - "31425498637892604145102073", - "6766183106513411546839981", - "86147603098625405399525487" + "1387174441824444467726384554", + "667985562059540535411615087", + "499594657917177925086656765" ], - "mAssetSupply": "123380489266770967993982390" + "mAssetSupply": "2552412319609262868306318085" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "330767953366996603633664", - "expectedQty": "323012455151280654112930", + "inputIndex": 0, + "inputQty": "25572759180782663106560", + "expectedQty": "25441244662977917939788", "reserves": [ - "31425498637892604145102073", - "6766183106513411546839981", - "86478371051992402003159151" + "1387200014583625250389491114", + "667985562059540535411615087", + "499594657917177925086656765" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "436533935642185713057792", - "63812015029138220908544", - "1051678707806694482640896" + "1075853299112285646618624", + "2817846113432366192001024", + "2197929329711306040672256" ], - "expectedQty": "1537652175992151921972153", - "swapFee": "923145192710917703805", + "expectedQty": "6106854433695290148844883", "reserves": [ - "30988964702250418432044281", - "6702371091484273325931437", - "85426692344185707520518255" + "1388275867882737536036109738", + "670803408172972901603616111", + "501792587246889231127329021" ], - "mAssetSupply": "122165849545930096726123167" + "mAssetSupply": "2558544615287621136373102756" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "11050077178949908", - "outputIndex": 1, - "expectedQty": "9645117990281876", - "swapFee": "6643868267852", + "type": "mintMulti", + "inputQtys": [ + "80023620482003632128000", + "86783979857905998364672", + "186418861965948326248448" + ], + "expectedQty": "354254310673922316833342", "reserves": [ - "30988964713300495610994189", - "6702371081839155335649561", - "85426692344185707520518255" + "1388355891503219539668237738", + "670890192152830807601980783", + "501979006108855179453577469" ], - "mAssetSupply": "122165849545936740594391019", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2558898869598295058689936098" }, { - "type": "redeemMasset", - "inputQty": "1243082054304838", - "expectedQtys": [ - "315229415683259", - "68178609365213", - "868986962312210" + "type": "redeemBassets", + "inputQtys": [ + "196479450418916130816", + "249149951576186290176", + "158781989485129859072" ], - "redemptionFee": "372924616291", + "expectedQty": "604992793794300044802", + "swapFee": "363213604439243573", "reserves": [ - "30988964712985266195310930", - "6702371081770976726284348", - "85426692343316720558206045" + "1388355695023769120752106922", + "670889943002879231415690607", + "501978847326865694323718397" ], - "mAssetSupply": "122165849544694031464702472" + "mAssetSupply": "2558898264605501264389891296" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "177452424177274781696", - "3777645708400342859776", - "191577036459787091968" + "110641274830258388992", + "444459739750250250240", + "320450761809439555584" ], - "expectedQty": "4698940371033515533769", + "expectedQty": "878066239501846810096", + "swapFee": "527156037323502187", "reserves": [ - "30989142165409443470092626", - "6706148727479377069144124", - "85426883920353180345298013" + "1388355584382494290493717930", + "670889498543139481165440367", + "501978526876103884884162813" ], - "mAssetSupply": "122170548485065064980236241" + "mAssetSupply": "2558897386539261762543081200" }, { "type": "mintMulti", "inputQtys": [ - "1685593810548323584", - "643368187183695232", - "1504492764324773632" + "918520340379899133952", + "1463125158481703993344", + "4977555983960960401408" ], - "expectedQty": "3896394361668137742", + "expectedQty": "7391098096251953020663", "reserves": [ - "30989143851003254018416210", - "6706149370847564252839356", - "85426885424845944670071645" + "1388356502902834670392851882", + "670890961668297962869433711", + "501983504432087845844564221" ], - "mAssetSupply": "122170552381459426648373983" + "mAssetSupply": "2558904777637358014496101863" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "508593184486233931776", - "expectedQty": "520494770224935513763", - "swapFee": "305155910691740359", + "inputIndex": 1, + "inputQty": "3507683922474878082482176", + "expectedQty": "3498252571359848727611218", + "swapFee": "2104610353484926849489", "reserves": [ - "30989143851003254018416210", - "6706149370847564252839356", - "85426364930075719734557882" + "1388356502902834670392851882", + "667392709096938114141822493", + "501983504432087845844564221" ], - "mAssetSupply": "122170044093430851106182566" + "mAssetSupply": "2555399198325236621340469176" }, { "type": "mint", "inputIndex": 1, - "inputQty": "784987150844111616", - "expectedQty": "900539394371802628", + "inputQty": "12504943078056654798848", + "expectedQty": "12531464135338910453432", "reserves": [ - "30989143851003254018416210", - "6706150155834715096950972", - "85426364930075719734557882" + "1388356502902834670392851882", + "667405214040016170796621341", + "501983504432087845844564221" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "375609296317904440000512", - "expectedQty": "325155706931965201790784", - "swapFee": "225365577790742664000", + "inputIndex": 2, + "inputQty": "1892436614708290560", + "expectedQty": "1878671519716713628", + "swapFee": "1135461968824974", "reserves": [ - "30989143851003254018416210", - "6380994448902749895160188", - "85426364930075719734557882" + "1388356502902834670392851882", + "667405214040016170796621341", + "501983502553416326127850593" ], - "mAssetSupply": "121794661063230131780648682" + "mAssetSupply": "2555411727898070807511457022" }, { "type": "redeemMasset", - "inputQty": "15462968631719417", + "inputQty": "384491803558798528033587", "expectedQtys": [ - "3933180648989373", - "809883745365890", - "10842420399607156" - ], - "redemptionFee": "4638890589515", - "reserves": [ - "30989143847070073369426837", - "6380994448092866149794298", - "85426364919233299334950726" - ], - "mAssetSupply": "121794661047771802039518780" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "55328843014262879158272", - "expectedQty": "47534177825247388115444", - "swapFee": "33197305808557727494", - "reserves": [ - "30989143847070073369426837", - "6333460270267618761678854", - "85426364919233299334950726" + "208831925771081914215884", + "100388852449803384480846", + "75506673771728915660186" ], - "mAssetSupply": "121739365402063347718088002" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "537973409709878935552", - "outputIndex": 2, - "expectedQty": "641926786131892898045", - "swapFee": "375867613356193598", + "redemptionFee": "115347541067639558410", "reserves": [ - "30989143847070073369426837", - "6333998243677328640614406", - "85425722992447167442052681" + "1388147670977063588478635998", + "667304825187566367412140495", + "501907995879644597212190407" ], - "mAssetSupply": "121739365777930961074281600", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2555027351442053076622981845" }, { "type": "redeemMasset", - "inputQty": "12595735625606836623769", + "inputQty": "2306394784828917892618649", "expectedQtys": [ - "3205322792254806844748", - "655149075326274178927", - "8835901317694033395176" + "1252689550326257405286072", + "602187936393235752157621", + "452930847927067302185078" ], - "redemptionFee": "3778720687682050987", + "redemptionFee": "691918435448675367785", "reserves": [ - "30985938524277818562582089", - "6333343094602002366435479", - "85416887091129473408657505" + "1386894981426737331073349926", + "666702637251173131659982874", + "501455065031717529910005329" ], - "mAssetSupply": "121726773821026041919708818" + "mAssetSupply": "2552721648575659607405730981" }, { "type": "redeemBassets", "inputQtys": [ - "4721124988037007671296", - "2441438034304363921408", - "2973541525532376563712" + "5329065422552141127483392", + "6698159517927725783318528", + "4726990475906125645479936" ], - "expectedQty": "10473250549566740715691", - "swapFee": "6287722963518155322", + "expectedQty": "16773046652970051601600353", + "swapFee": "10069869913730269122433", "reserves": [ - "30981217399289781554910793", - "6330901656567698002514071", - "85413913549603941032093793" + "1381565916004185189945866534", + "660004477733245405876664346", + "496728074555811404264525393" ], - "mAssetSupply": "121716300570476475178993127" + "mAssetSupply": "2535948601922689555804130628" }, { - "type": "mintMulti", - "inputQtys": [ - "33733956799518765744128", - "29213504228017429282816", - "48652158884769106493440" + "type": "mint", + "inputIndex": 1, + "inputQty": "1404974414300061440", + "expectedQty": "1408019797357358367", + "reserves": [ + "1381565916004185189945866534", + "660004479138219820176725786", + "496728074555811404264525393" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1072391786943849483888230", + "expectedQtys": [ + "584055791003292021341161", + "279016320295224327130365", + "209991362075088850881475" ], - "expectedQty": "115252511475712634107179", + "redemptionFee": "321717536083154845166", "reserves": [ - "31014951356089300320654921", - "6360115160795715431796887", - "85462565708488710138587233" + "1380981860213181897924525373", + "659725462817924595849595421", + "496518083193736315413643918" ], - "mAssetSupply": "121831553081952187813100306" + "mAssetSupply": "2534876533261301586832445931" }, { "type": "mintMulti", "inputQtys": [ - "1030817036615051008", - "2324465061193323008", - "1440348793597537280" + "6310583684075162", + "16452122799583396", + "37287543507472744" ], - "expectedQty": "5141671975053152471", + "expectedQty": "60306437650844498", "reserves": [ - "31014952386906336935705929", - "6360117485260776625119895", - "85462567148837503736124513" + "1380981860219492481608600535", + "659725462834376718649178817", + "496518083231023858921116662" ], - "mAssetSupply": "121831558223624162866252777" + "mAssetSupply": "2534876533321608024483290429" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "68510035180327419904", - "239970218683505770496", - "195409060145522343936" + "230093276922582713499648", + "21618314228433602740224", + "457572394828567096066048" ], - "expectedQty": "538392652185395783624", - "swapFee": "323229529028654662", + "expectedQty": "711244003006389038833931", "reserves": [ - "31014883876871156608286025", - "6359877515042093119349399", - "85462371739777358213780577" + "1381211953496415064322100183", + "659747081148605152251919041", + "496975655625852426017182710" ], - "mAssetSupply": "121831019830971977470469153" + "mAssetSupply": "2535587777324614413522124360" }, { "type": "mintMulti", "inputQtys": [ - "6931234566323077268897792", - "3439321864145915445510144", - "693593620445839239413760" + "4049133472042987160600576", + "299433250927616284688384", + "1791969898517064482553856" ], - "expectedQty": "11427743524286333114233522", + "expectedQty": "6132352028446987510531092", "reserves": [ - "37946118443194233877183817", - "9799199379188008564859543", - "86155965360223197453194337" + "1385261086968458051482700759", + "660046514399532768536607425", + "498767625524369490499736566" ], - "mAssetSupply": "133258763355258310584702675" + "mAssetSupply": "2541720129353061401032655452" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "554834068979313767612416", - "expectedQty": "563158671263894571035205", - "swapFee": "332900441387588260567", + "type": "mintMulti", + "inputQtys": [ + "9045939118163198113480704", + "22922027360261207010312192", + "20709329522153324940361728" + ], + "expectedQty": "52815188645850074250145587", "reserves": [ - "37946118443194233877183817", - "9799199379188008564859543", - "85592806688959302882159132" + "1394307026086621249596181463", + "682968541759793975546919617", + "519476955046522815440098294" ], - "mAssetSupply": "132704262186720384405350826" + "mAssetSupply": "2594535317998911475282801039" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "2071485226168427544051712", - "expectedQty": "2071248963786259135499930", - "swapFee": "1242891135701056526431", + "inputQty": "76261242502927596453363712", + "expectedQty": "76577195261561138613811034", + "swapFee": "45756745501756557872018", "reserves": [ - "35874869479407974741683887", - "9799199379188008564859543", - "85592806688959302882159132" + "1317729830825060110982370429", + "682968541759793975546919617", + "519476955046522815440098294" ], - "mAssetSupply": "130634019851687657917825545" + "mAssetSupply": "2518319832241485635387309345" }, { - "type": "mintMulti", - "inputQtys": [ - "1888643125517229471301632", - "1092537002137515913641984", - "1647022809525916308340736" + "type": "redeemMasset", + "inputQty": "95160031525129855329894", + "expectedQtys": [ + "49778265681077771864670", + "25799666007599606541549", + "19623644603471123302440" ], - "expectedQty": "4675822845288656056984570", + "redemptionFee": "28548009457538956598", "reserves": [ - "37763512604925204212985519", - "10891736381325524478501527", - "87239829498485219190499868" + "1317680052559379033210505759", + "682942742093786375940378068", + "519457331401919344316795854" ], - "mAssetSupply": "135309842696976313974810115" + "mAssetSupply": "2518224700757969963070936049" }, { "type": "redeemBassets", "inputQtys": [ - "7582905397641208832", - "10539097185724229632", - "14180153791679074304" + "7137036499348962148352", + "17638173522603932647424", + "50389816196039639564288" ], - "expectedQty": "32742035219530701049", - "swapFee": "19657015340922974", + "expectedQty": "75449007152564943494635", + "swapFee": "45296582240883496194", "reserves": [ - "37763505022019806571776687", - "10891725842228338754271895", - "87239815318331427511425564" + "1317672915522879684248357407", + "682925103920263772007730644", + "519406941585723304677231566" ], - "mAssetSupply": "135309809954941094444109066" + "mAssetSupply": "2518149251750817398127441414" }, { - "type": "redeemMasset", - "inputQty": "833346535401514504028160", - "expectedQtys": [ - "232508234690241976655401", - "67059875581727770078567", - "537131694808001391356948" + "type": "mintMulti", + "inputQtys": [ + "2092128456689503436800", + "1972952116992302907392", + "1617024066822942228480" ], - "redemptionFee": "250003960620454351208", + "expectedQty": "5685145311487578117517", "reserves": [ - "37530996787329564595121286", - "10824665966646610984193328", - "86702683623523426120068616" + "1317675007651336373751794207", + "682927076872380764310638036", + "519408558609790127619460046" ], - "mAssetSupply": "134476713423500200394432114" + "mAssetSupply": "2518154936896128885705558931" }, { - "type": "redeemMasset", - "inputQty": "44289687411613598377574", - "expectedQtys": [ - "12357064675495854241681", - "3564016649982732781589", - "28546821581798085369531" + "type": "mintMulti", + "inputQtys": [ + "69941206537699825025024", + "11810166810279921319936", + "104086386060250708967424" ], - "redemptionFee": "13286906223484079513", + "expectedQty": "186134313243463548213105", "reserves": [ - "37518639722654068740879605", - "10821101949996628251411739", - "86674136801941628034699085" + "1317744948857874073576819231", + "682938887039191044231957972", + "519512644995850378328427470" ], - "mAssetSupply": "134432437022994810280134053" + "mAssetSupply": "2518341071209372349253772036" }, { - "type": "mintMulti", - "inputQtys": [ - "77473242999114956800", - "40310634173818175488", - "134425479079733395456" + "type": "redeemMasset", + "inputQty": "493629240292749502054", + "expectedQtys": [ + "258218516231654354444", + "133825188433469260953", + "101801023385200804902" ], - "expectedQty": "252740322115197155822", + "redemptionFee": "148088772087824850", "reserves": [ - "37518717195897067855836405", - "10821142260630802069587227", - "86674271227420707768094541" + "1317744690639357841922464787", + "682938753214002610762697019", + "519512543194826993127622568" ], - "mAssetSupply": "134432689763316925477289875" + "mAssetSupply": "2518340577728220828592094832" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1755965570350644985856", - "expectedQty": "1730939429666905380435", + "inputQty": "2239419870532993418264576", + "expectedQty": "2252097615668612584616827", "reserves": [ - "37518717195897067855836405", - "10821142260630802069587227", - "86676027192991058413080397" + "1317744690639357841922464787", + "682938753214002610762697019", + "521751963065359986545887144" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "76082928918951284965376", - "expectedQty": "74997942912841427151525", - "reserves": [ - "37518717195897067855836405", - "10821142260630802069587227", - "86752110121910009698045773" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "19917393704913968", - "expectedQty": "19914064808202947", - "reserves": [ - "37518717215814461560750373", - "10821142260630802069587227", - "86752110121910009698045773" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "18415381271005427138560", - "65859843539352575541248", - "479472578699418337280" - ], - "expectedQty": "88795226683935193728968", - "swapFee": "53309121483251066877", + "inputQty": "308244362280046976", + "expectedQty": "306334657434104712", + "swapFee": "184946617368028", "reserves": [ - "37500301834543456133611813", - "10755282417091449494045979", - "86751630649331310279708493" + "1317744690639357841922464787", + "682938753214002610762697019", + "521751962759025329111782432" ], - "mAssetSupply": "134420623438889563424295814" + "mAssetSupply": "2520592675035830025514032711" }, { - "type": "redeemMasset", - "inputQty": "269760517112931536601088", - "expectedQtys": [ - "75234482074327208447222", - "21577642382270825466766", - "174044305824591509450939" - ], - "redemptionFee": "80928155133879460980", + "type": "redeem", + "inputIndex": 2, + "inputQty": "125871276119779216195584", + "expectedQty": "125091236381671598085773", + "swapFee": "75522765671867529717", "reserves": [ - "37425067352469128925164591", - "10733704774709178668579213", - "86577586343506718770257554" + "1317744690639357841922464787", + "682938753214002610762697019", + "521626871522643657513696659" ], - "mAssetSupply": "134150943849931765767155706" + "mAssetSupply": "2520466879282475918165366844" }, { "type": "redeemMasset", - "inputQty": "2236305799010179455385", + "inputQty": "1667724820680816", "expectedQtys": [ - "623691377629999521712", - "178877944425940988612", - "1442821561011818084968" + "871654476120980", + "451746552563712", + "345042860470254" ], - "redemptionFee": "670891739703053836", + "redemptionFee": "500317446204", "reserves": [ - "37424443661091498925642879", - "10733525896764752727590601", - "86576143521945706952172586" + "1317744690638486187446343807", + "682938753213550864210133307", + "521626871522298614653226405" ], - "mAssetSupply": "134148708215024495290754157" + "mAssetSupply": "2520466879280808693662132232" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "234414183350488032", - "expectedQty": "234370897384661524", + "inputIndex": 1, + "inputQty": "8436490611177365578973184", + "expectedQty": "8450136022001337488337260", "reserves": [ - "37424443895505682276130911", - "10733525896764752727590601", - "86576143521945706952172586" + "1317744690638486187446343807", + "691375243824728229789106491", + "521626871522298614653226405" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "10850106589875988856832", - "expectedQty": "10845571680790788004438", - "swapFee": "6510063953925593314", - "reserves": [ - "37413598323824891488126473", - "10733525896764752727590601", - "86576143521945706952172586" - ], - "mAssetSupply": "134137864852869470612152163" - }, - { - "type": "mintMulti", - "inputQtys": [ - "2594706952198894", - "59194529546945", - "8437233134426016" + "type": "redeemMasset", + "inputQty": "10145835391834584150494412", + "expectedQtys": [ + "5285112066781589830211499", + "2772916233145030773794111", + "2092102129210061276800143" ], - "expectedQty": "10973219605113014", + "redemptionFee": "3043750617550375245148", "reserves": [ - "37413598326419598440325367", - "10733525896823947257137546", - "86576143530382940086598602" + "1312459578571704597616132308", + "688602327591583199015312380", + "519534769393088553376426262" ], - "mAssetSupply": "134137864863842690217265177" + "mAssetSupply": "2518774223661592997375220228" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "661098840844271339175936", - "988387948592958944575488", - "287478387087783491534848" + "1511180725658115777757184", + "1197404822682372436656128", + "5481544994646096084992" ], - "expectedQty": "1989245201895666772440939", + "expectedQty": "2709239254575790373436743", + "swapFee": "1626519464424128701282", "reserves": [ - "38074697167263869779501303", - "11721913845416906201713034", - "86863621917470723578133450" + "1310948397846046481838375124", + "687404922768900826578656252", + "519529287848093907280341270" ], - "mAssetSupply": "136127110065738356989706116" + "mAssetSupply": "2516064984407017207001783485" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8154999982069743616", - "expectedQty": "7743708586679737369", - "swapFee": "4892999989241846", - "reserves": [ - "38074697167263869779501303", - "11721906101708319521975665", - "86863621917470723578133450" + "type": "redeemMasset", + "inputQty": "1089516946603338025559654", + "expectedQtys": [ + "567502037616730624135311", + "297573645904051118941472", + "224901247020698216008486" ], - "mAssetSupply": "136127101915631374909204346" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "69186186155805651238912", - "expectedQty": "69180734302221604864433", + "redemptionFee": "326855083981001407667", "reserves": [ - "38143883353419675430740215", - "11721906101708319521975665", - "86863621917470723578133450" - ] + "1310380895808429751214239813", + "687107349122996775459714780", + "519304386601073209064332784" + ], + "mAssetSupply": "2514975794315497849977631498" }, { "type": "redeemBassets", "inputQtys": [ - "966146807845198619475968", - "769171470703774903828480", - "233854959505123573760000" + "29000816834919781835472896", + "7498076594767576145330176", + "4858847315058097009983488" ], - "expectedQty": "2008902468488588576334544", - "swapFee": "1206065120165252297179", + "expectedQty": "41268540562274996197166487", + "swapFee": "24775989931323791993495", "reserves": [ - "37177736545574476811264247", - "10952734631004544618147185", - "86629766957965600004373450" + "1281380078973509969378766917", + "679609272528229199314384604", + "514445539286015112054349296" ], - "mAssetSupply": "134187380181445007937734235" + "mAssetSupply": "2473707253753222853780465011" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "4163425240173920649216", - "outputIndex": 2, - "expectedQty": "4220679241546820645348", - "swapFee": "2498113367627286667", + "type": "mintMulti", + "inputQtys": [ + "53485181782130868556398592", + "26466707943112047750807552", + "17131052966850537168306176" + ], + "expectedQty": "96983740677093712411126945", "reserves": [ - "37181899970814650731913463", - "10952734631004544618147185", - "86625546278724053183728102" + "1334865260755640837935165509", + "706075980471341247065192156", + "531576592252865649222655472" ], - "mAssetSupply": "134187382679558375565020902", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2570690994430316566191591956" }, { "type": "mintMulti", "inputQtys": [ - "498304287032956092416", - "145609128157757767680", - "301846964126058151936" + "270391208579986280677376", + "379753391852754160320512", + "234655420051531944165376" ], - "expectedQty": "950155833060132933267", + "expectedQty": "885501581349599890351574", "reserves": [ - "37182398275101683688005879", - "10952880240132702375914865", - "86625848125688179241880038" + "1335135651964220824215842885", + "706455733863194001225512668", + "531811247672917181166820848" ], - "mAssetSupply": "134188332835391435697954169" + "mAssetSupply": "2571576496011666166081943530" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "183510171061988219682816", - "expectedQty": "186025468624259780629271", - "swapFee": "110106102637192931809", + "type": "redeemMasset", + "inputQty": "165158387553670996688896", + "expectedQtys": [ + "85722784887125821256399", + "45358202229966417743945", + "34145100625356647710670" + ], + "redemptionFee": "49547516266101299006", "reserves": [ - "37182398275101683688005879", - "10952880240132702375914865", - "86439822657063919461250767" + "1335049929179333698394586486", + "706410375660964034807768723", + "531777102572291824519110178" ], - "mAssetSupply": "134004932770432084671203162" + "mAssetSupply": "2571411387171628761186553640" }, { - "type": "redeemMasset", - "inputQty": "174663890222484747924275", - "expectedQtys": [ - "48449515026095058524200", - "14271853360483047053877", - "112633065131809535152969" + "type": "mintMulti", + "inputQtys": [ + "2375621403780759280418816", + "1717584867555701667397632", + "359370471061374711627776" ], - "redemptionFee": "52399167066745424377", + "expectedQty": "4446709842591323579104212", "reserves": [ - "37133948760075588629481679", - "10938608386772219328860988", - "86327189591932109926097798" + "1337425550583114457675005302", + "708127960528519736475166355", + "532136473043353199230737954" ], - "mAssetSupply": "133830321279376666668703264" + "mAssetSupply": "2575858097014220084765657852" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "518331627197567795200", - "outputIndex": 2, - "expectedQty": "556522684009488990617", - "swapFee": "329405658584459103", + "inputIndex": 2, + "inputQty": "29528066319935027766362112", + "outputIndex": 1, + "expectedQty": "29610948727449210184624934", + "swapFee": "17810204488775824830831", "reserves": [ - "37133948760075588629481679", - "10939126718399416896656188", - "86326633069248100437107181" + "1337425550583114457675005302", + "678517011801070526290541421", + "561664539363288226997100066" ], - "mAssetSupply": "133830321608782325253162367", + "mAssetSupply": "2575875907218708860590488683", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "872474406441539097067520", - "expectedQty": "871775637837905285386271", - "swapFee": "523484643864923458240", - "reserves": [ - "36262173122237683344095408", - "10939126718399416896656188", - "86326633069248100437107181" - ], - "mAssetSupply": "132958370686984651079553087" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "23217148732331255660544", - "35088918606317331939328", - "18396868613000969322496" - ], - "expectedQty": "78521729902073194087384", - "swapFee": "47141322734884847360", + "inputQty": "7771967400950792416395264", + "outputIndex": 1, + "expectedQty": "7716974988499062078433728", + "swapFee": "4642895683535864249154", "reserves": [ - "36238955973505352088434864", - "10904037799793099564716860", - "86308236200635099467784685" + "1345197517984065250091400566", + "670800036812571464212107693", + "561664539363288226997100066" ], - "mAssetSupply": "132879848957082577885465703" + "mAssetSupply": "2575880550114392396454737837", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "41231014000426481614848", - "expectedQty": "41802688369766572386807", - "swapFee": "24738608400255888968", + "inputQty": "39401895302151939427401728", + "outputIndex": 1, + "expectedQty": "39442028067467884199925733", + "swapFee": "23743520609235096543001", "reserves": [ - "36238955973505352088434864", - "10904037799793099564716860", - "86266433512265332895397878" + "1345197517984065250091400566", + "631358008745103580012181960", + "601066434665440166424501794" ], - "mAssetSupply": "132838642681690551659739823" + "mAssetSupply": "2575904293635001631551280838", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "32958668447008184860672", - "90937150701830798311424", - "68976063752557121503232" + "type": "redeemMasset", + "inputQty": "2724767613823887396044", + "expectedQtys": [ + "1422510547097644449742", + "667644278574349426606", + "635611745774938434442" ], - "expectedQty": "197244900058521417942959", + "redemptionFee": "817430284147166218", "reserves": [ - "36271914641952360273295536", - "10994974950494930363028284", - "86335409576017890016901110" + "1345196095473518152446950824", + "631357341100825005662755354", + "601065799053694391486067352" ], - "mAssetSupply": "133035887581749073077682782" + "mAssetSupply": "2575901569684818091811051012" }, { "type": "redeemMasset", - "inputQty": "384825490970686888345", + "inputQty": "2182000590745247752703180", "expectedQtys": [ - "104890267633636228824", - "31795009349979661796", - "249662702012817845486" + "1139149936442625535028289", + "534651176440132929745976", + "508999445578104670644017" ], - "redemptionFee": "115447647291206066", + "redemptionFee": "654600177223574325810", "reserves": [ - "36271809751684726637066712", - "10994943155485580383366488", - "86335159913315877199055624" + "1344056945537075526911922535", + "630822689924384872733009378", + "600556799608116286815423335" ], - "mAssetSupply": "133035502871705749682000503" + "mAssetSupply": "2573720223694250067632673642" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "901783240405424678109184", - "outputIndex": 1, - "expectedQty": "847645140153031648529756", - "swapFee": "541184172063870020790", - "reserves": [ - "37173592992090151315175896", - "10147298015332548734836732", - "86335159913315877199055624" + "type": "redeemBassets", + "inputQtys": [ + "49222772958634251911168", + "44212536958912779255808", + "32930584133263861743616" ], - "mAssetSupply": "133036044055877813552021293", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "4595076868376382930944", - "expectedQty": "4525661754239846661192", - "reserves": [ - "37173592992090151315175896", - "10147298015332548734836732", - "86339754990184253581986568" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3588057304002735701491712", - "expectedQty": "3583749190292729042230803", - "swapFee": "2152834382401641420895", + "expectedQty": "126407486609060976538719", + "swapFee": "75890025981025201043", "reserves": [ - "33589843801797422272945093", - "10147298015332548734836732", - "86339754990184253581986568" + "1344007722764116892660011367", + "630778477387425959953753570", + "600523869023983022953679719" ], - "mAssetSupply": "129454665248011719338611668" + "mAssetSupply": "2573593816207641006656134923" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "84159502586367996592128", - "1410656402069008897015808", - "369144457630959297101824" + "410663577835620204544", + "662753894968050974720", + "952289062934700752896" ], - "expectedQty": "1967505156682353913298533", - "swapFee": "1181211821102073592134", + "expectedQty": "2029462057608442921363", "reserves": [ - "33505684299211054276352965", - "8736641613263539837820924", - "85970610532553294284884744" + "1344008133427694728280215911", + "630779140141320928004728290", + "600524821313045957654432615" ], - "mAssetSupply": "127487160091329365425313135" + "mAssetSupply": "2573595845669698615099056286" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2829868780425490989056", - "436700926345304080384", - "488601902653939646464" + "125928076708333830144", + "440602169856337510400", + "201212979526735200256" ], - "expectedQty": "3788653730220188852793", - "swapFee": "2274556972315502613", + "expectedQty": "769273916196178078802", "reserves": [ - "33502854430430628785363909", - "8736204912337194533740540", - "85970121930650640345238280" + "1344008259355771436614046055", + "630779580743490784342238690", + "600525022526025484389632871" ], - "mAssetSupply": "127483371437599145236460342" + "mAssetSupply": "2573596614943614811277135088" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "477499921951362646016", - "expectedQty": "476692241215085956942", - "swapFee": "286499953170817587", - "reserves": [ - "33502377738189413699406967", - "8736204912337194533740540", - "85970121930650640345238280" + "type": "mintMulti", + "inputQtys": [ + "810160476622774186541056", + "576557426238846438211584", + "380488136343220540932096" ], - "mAssetSupply": "127482894224177147044631913" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "532771316511899123712", - "expectedQty": "531869963940927581289", - "swapFee": "319662789907139474", + "expectedQty": "1766832950608823176762833", "reserves": [ - "33501845868225472771825678", - "8736204912337194533740540", - "85970121930650640345238280" + "1344818419832394210800587111", + "631356138169729630780450274", + "600905510662368704930564967" ], - "mAssetSupply": "127482361772523425052647675" + "mAssetSupply": "2575363447894223634453897921" }, { "type": "redeemMasset", - "inputQty": "1201375163958173473177", + "inputQty": "114992358219692658340659", "expectedQtys": [ - "315621788988860632917", - "82304020926211384383", - "809926825825363798043" + "60029371173911005636104", + "28182177907587879446949", + "26822937140090294068582" ], - "redemptionFee": "360412549187452041", + "redemptionFee": "34497707465907797502", "reserves": [ - "33501530246436483911192761", - "8736122608316268322356157", - "85969312003824814981440237" + "1344758390461220299794951007", + "631327955991822042901003325", + "600878687725228614636496385" ], - "mAssetSupply": "127481160757772016066626539" + "mAssetSupply": "2575248490033711407703354764" }, { "type": "mintMulti", "inputQtys": [ - "15119469266694240731136", - "78231019786985938092032", - "37753645881410560458752" + "513423729529692375482368", + "767406197127999576342528", + "676255502425799562100736" ], - "expectedQty": "137405017758796077705647", + "expectedQty": "1959677973125905097938316", "reserves": [ - "33516649715703178151923897", - "8814353628103254260448189", - "86007065649706225541898989" + "1345271814190749992170433375", + "632095362188950042477345853", + "601554943227654414198597121" ], - "mAssetSupply": "127618565775530812144332186" + "mAssetSupply": "2577208168006837312801293080" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "29365052654835822592", + "expectedQty": "29453459776593741582", + "reserves": [ + "1345271814190749992170433375", + "632095391554002697313168445", + "601554943227654414198597121" + ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "2767570057653804597248", - "expectedQty": "2770678297389635615298", + "inputQty": "9956723570011696674111488", + "expectedQty": "9913150439407640091640481", "reserves": [ - "33519417285760831956521145", - "8814353628103254260448189", - "86007065649706225541898989" + "1355228537760761688844544863", + "632095391554002697313168445", + "601554943227654414198597121" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1317059973665329497767936", - "expectedQty": "1194688376300575973656819", - "swapFee": "790235984199197698660", + "inputQty": "276984877470190489567232", + "expectedQty": "275972143724428456914748", + "swapFee": "166190926482114293740", "reserves": [ - "33519417285760831956521145", - "7619665251802678286791370", - "86007065649706225541898989" + "1355228537760761688844544863", + "631819419410278268856253697", + "601554943227654414198597121" ], - "mAssetSupply": "126305066716147071479878208" + "mAssetSupply": "2586844529213161021111401651" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2778280261099541101543424", - "expectedQty": "2777178815929350698158620", + "type": "redeemBassets", + "inputQtys": [ + "9359682711497124872192", + "5880281272053861974016", + "9016891822907581267968" + ], + "expectedQty": "24267719715552729032762", + "swapFee": "14569373453403679627", "reserves": [ - "36297697546860373058064569", - "7619665251802678286791370", - "86007065649706225541898989" - ] + "1355219178078050191719672671", + "631813539129006214994279681", + "601545926335831506617329153" + ], + "mAssetSupply": "2586820261493445468382368889" }, { "type": "redeemBassets", "inputQtys": [ - "403453088461043632439296", - "88697444762760178040832", - "1817142623106695168000" + "1047323004160421789696", + "347890481539879075840", + "768696660821233238016" ], - "expectedQty": "504111510261559194846226", - "swapFee": "302648495254087969689", + "expectedQty": "2163267021340239668173", + "swapFee": "1298739456478030619", "reserves": [ - "35894244458399329425625273", - "7530967807039918108750538", - "86005248507083118846730989" + "1355218130755046031297882975", + "631813191238524675115203841", + "601545157639170685384091137" ], - "mAssetSupply": "128578134021814862983190602" + "mAssetSupply": "2586818098226424128142700716" }, { - "type": "redeemMasset", - "inputQty": "46196703055242486559539", - "expectedQtys": [ - "12892536561698095480489", - "2704981794776667567065", - "30891465403613811353351" + "type": "redeemBassets", + "inputQtys": [ + "379503938731495784448", + "237993783905024802816", + "191105036365130366976" ], - "redemptionFee": "13859010916572745967", + "expectedQty": "808383319243810689332", + "swapFee": "485321184256840517", "reserves": [ - "35881351921837631330144784", - "7528262825245141441183473", - "85974357041679505035377638" + "1355217751251107299802098527", + "631812953244740770090401025", + "601544966534134320253724161" ], - "mAssetSupply": "128531951177770537069377030" + "mAssetSupply": "2586817289843104884332011384" }, { - "type": "redeemMasset", - "inputQty": "3725945575107489792", - "expectedQtys": [ - "1039833719227269295", - "218167407681503384", - "2491518035205744769" + "type": "swap", + "inputIndex": 0, + "inputQty": "239664899914353006870528", + "outputIndex": 2, + "expectedQty": "237568555648220745396289", + "swapFee": "143165561552350072529", + "reserves": [ + "1355457416151021652808969055", + "631812953244740770090401025", + "601307397978486099508327872" + ], + "mAssetSupply": "2586817433008666436682083913", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "219541856538409435136", + "375548411966666309632", + "143980168099645341696" ], - "redemptionFee": "1117783672532246", + "expectedQty": "739800166558165937354", "reserves": [ - "35881350882003912102875489", - "7528262607077733759680089", - "85974354550161469829632869" + "1355457635692878191218404191", + "631813328793152736756710657", + "601307541958654199153669568" ], - "mAssetSupply": "128531947452942745634419484" + "mAssetSupply": "2586818172808832994848021267" }, { "type": "redeemMasset", - "inputQty": "96137895123281800226406", + "inputQty": "370566958436197544755", "expectedQtys": [ - "26830081929427890155634", - "5629216781674958662089", - "64286848730866081634820" + "194113808338756089631", + "90481390330235553710", + "86112685397758768781" ], - "redemptionFee": "28841368536984540067", + "redemptionFee": "111170087530859263", "reserves": [ - "35854520800074484212719855", - "7522633390296058801018000", - "85910067701430603747998049" + "1355457441579069852462314560", + "631813238311762406521156947", + "601307455845968801394900787" ], - "mAssetSupply": "128435838399188000818733145" + "mAssetSupply": "2586817802353044646181335775" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "254049801905123590144", - "expectedQty": "253766750468146362044", + "inputIndex": 2, + "inputQty": "11412144258676247217831936", + "expectedQty": "11454052745732829112400185", "reserves": [ - "35854774849876389336309999", - "7522633390296058801018000", - "85910067701430603747998049" + "1355457441579069852462314560", + "631813238311762406521156947", + "612719600104645048612732723" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "66078546773605397561344", - "expectedQty": "58834501087016495217427", - "swapFee": "39647128064163238536", - "reserves": [ - "35854774849876389336309999", - "7463798889209042305800573", - "85910067701430603747998049" - ], - "mAssetSupply": "128370053266292927730772381" - }, - { - "type": "mintMulti", - "inputQtys": [ - "3309341794372972242272256", - "2524140207463571512098816", - "3793583702062290754863104" + "type": "redeemMasset", + "inputQty": "7621366993430273379532", + "expectedQtys": [ + "3974695509402606599111", + "1852706816212043868594", + "1796717306167688620012" ], - "expectedQty": "9800836224490521023964679", + "redemptionFee": "2286410098029082013", "reserves": [ - "39164116644249361578582255", - "9987939096672613817899389", - "89703651403492894502861153" + "1355453466883560449855715449", + "631811385604946194477288353", + "612717803387338880924112711" ], - "mAssetSupply": "138170889490783448754737060" + "mAssetSupply": "2598264236018194143049438441" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "21770807193133977174016", - "expectedQty": "20205423845961390142617", - "swapFee": "13062484315880386304", + "inputQty": "12362963647867680146325504", + "outputIndex": 2, + "expectedQty": "12346698166955721022281692", + "swapFee": "7440234076680995721460", "reserves": [ - "39164116644249361578582255", - "9967733672826652427756772", - "89703651403492894502861153" + "1355453466883560449855715449", + "644174349252813874623613857", + "600371105220383159901831019" ], - "mAssetSupply": "138149131746074630657949348" + "mAssetSupply": "2598271676252270824045159901", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "148644778608982032384", - "33091386721642586112", - "115423988754226020352" + "7484842685757249919385600", + "12231339367061996504612864", + "8214642114848308471005184" ], - "expectedQty": "297752693582466986661", - "swapFee": "178758871472363610", + "expectedQty": "27965661874837087774881001", + "swapFee": "16789470807386684675734", "reserves": [ - "39163967999470752596549871", - "9967700581439930785170660", - "89703535979504140276840801" + "1347968624197803199936329849", + "631943009885751878119000993", + "592156463105534851430825835" ], - "mAssetSupply": "138148833993381048190962687" + "mAssetSupply": "2570306014377433736270278900" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "576945036365855111249920", - "expectedQty": "533267938987133885153080", - "swapFee": "346167021819513066749", + "inputQty": "2713854370817520640", + "expectedQty": "2721935960870028203", "reserves": [ - "39163967999470752596549871", - "9434432642452796900017580", - "89703535979504140276840801" - ], - "mAssetSupply": "137572235124037012592779516" + "1347968624197803199936329849", + "631943012599606248936521633", + "592156463105534851430825835" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2066653948037542912", - "1670021617527465728", - "1577770384335493120" + "6870207770313135048622080", + "4768975789007900027912192", + "6619110315421005577715712" ], - "expectedQty": "5429057160857970331", - "swapFee": "3259389930473066", + "expectedQty": "18267899947040421039921099", "reserves": [ - "39163965932816804559006959", - "9434430972431179372551852", - "89703534401733755941347681" + "1354838831968116334984951929", + "636711988388614148964433825", + "598775573420955857008541547" ], - "mAssetSupply": "137572229694979851734809185" + "mAssetSupply": "2588573917046410118180228202" }, { - "type": "redeemBassets", - "inputQtys": [ - "38228837718780849160192", - "13640543954756947673088", - "84140689379364303798272" + "type": "swap", + "inputIndex": 2, + "inputQty": "89609581802929419389501440", + "outputIndex": 0, + "expectedQty": "90164653912108712354214898", + "swapFee": "53931220101476737386566", + "reserves": [ + "1264674178056007622630737031", + "636711988388614148964433825", + "688385155223885276398042987" ], - "expectedQty": "135735057898902421067509", - "swapFee": "81489928696559388273", + "mAssetSupply": "2588627848266511594917614768", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "1772766085059397287936", + "expectedQty": "1777880957868615007062", + "swapFee": "1063659651035638372", "reserves": [ - "39125737095098023709846767", - "9420790428476422424878764", - "89619393712354391637549409" + "1264672400175049754015729969", + "636711988388614148964433825", + "688385155223885276398042987" ], - "mAssetSupply": "137436494637080949313741676" + "mAssetSupply": "2588626076564086186555965204" }, { "type": "redeemBassets", "inputQtys": [ - "40539418146009520", - "851680256417114", - "60460250741936320" + "2993097519741285695488", + "1561138038625112686592", + "723948705893043666944" ], - "expectedQty": "100870774516230385", - "swapFee": "60558799989732", + "expectedQty": "5273840297056623539115", + "swapFee": "3166203900574318714", "reserves": [ - "39125737054558605563837247", - "9420790427624742168461650", - "89619393651894140895613089" + "1264669407077530012730034481", + "636710427250575523851747233", + "688384431275179383354376043" ], - "mAssetSupply": "137436494536210174797511291" + "mAssetSupply": "2588620802723789129932426089" }, { - "type": "redeemMasset", - "inputQty": "15433168990154764635340", - "expectedQtys": [ - "4392231944149094944917", - "1057572323753230094044", - "10060619767091637780721" + "type": "mintMulti", + "inputQtys": [ + "1276705400965725945856", + "16633057815703775977930752", + "12895744871039786574413824" ], - "redemptionFee": "4629950697046429390", + "expectedQty": "29602850133948520234872310", "reserves": [ - "39121344822614456468892330", - "9419732855300988938367606", - "89609333032127049257832368" + "1264670683782930978455980337", + "653343485066279299829677985", + "701280176146219169928789867" ], - "mAssetSupply": "137421065997170717079305341" + "mAssetSupply": "2618223652857737650167298399" }, { - "type": "redeemBassets", - "inputQtys": [ - "4773248618881810956288", - "72757024418743174823936", - "57243988703477153923072" - ], - "expectedQty": "140101759179154858679140", - "swapFee": "84111522420945482496", + "type": "swap", + "inputIndex": 1, + "inputQty": "2443819427670871506944", + "outputIndex": 0, + "expectedQty": "2457331175111038424377", + "swapFee": "1470358801728645541", "reserves": [ - "39116571573995574657936042", - "9346975830882245763543670", - "89552089043423572103909296" + "1264668226451755867417555960", + "653345928885706970701184929", + "701280176146219169928789867" ], - "mAssetSupply": "137280964237991562220626201" + "mAssetSupply": "2618223654328096451895943940", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "3070214802886727680", + "inputQty": "2113204279134261248", "expectedQtys": [ - "874558602264742491", - "208977366602676479", - "2002183388581270966" + "1020424879560668249", + "527166277170705164", + "565843060112326241" ], - "redemptionFee": "921064440866018", + "redemptionFee": "633961283740278", "reserves": [ - "39116570699436972393193551", - "9346975621904879160867191", - "89552087041240183522638330" + "1264668225431330987856887711", + "653345928358540693530479765", + "701280175580376109816463626" ], - "mAssetSupply": "137280961168697823774764539" + "mAssetSupply": "2618223652215526134045422970" }, { - "type": "mintMulti", - "inputQtys": [ - "36227548379080019673088", - "15318155660804736679936", - "86414494687920675356672" + "type": "redeemMasset", + "inputQty": "776370944935586478371635", + "expectedQtys": [ + "374894294793335622729660", + "193675824332926453078293", + "207885302714144109824149" ], - "expectedQty": "137801099026196143499341", + "redemptionFee": "232911283480675943511", "reserves": [ - "39152798247816052412866639", - "9362293777565683897547127", - "89638501535928104197995002" + "1264293331136537652234158051", + "653152252534207767077401472", + "701072290277661965706639477" ], - "mAssetSupply": "137418762267724019918263880" + "mAssetSupply": "2617447514181874028242994846" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "73863614658062325907456", - "expectedQty": "80236931065903435281169", + "inputIndex": 2, + "inputQty": "183340595224878505787392", + "expectedQty": "183690473709717182578002", "reserves": [ - "39152798247816052412866639", - "9436157392223746223454583", - "89638501535928104197995002" + "1264293331136537652234158051", + "653152252534207767077401472", + "701255630872886844212426869" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "427489223628518605193216", - "expectedQty": "426961411287140704743743", + "inputIndex": 1, + "inputQty": "816867957354929122705408", + "expectedQty": "819129619923507882438773", "reserves": [ - "39580287471444571018059855", - "9436157392223746223454583", - "89638501535928104197995002" + "1264293331136537652234158051", + "653969120491562696200106880", + "701255630872886844212426869" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "737586491410091157225472", - "expectedQty": "674837580352296107725170", - "swapFee": "442551894846054694335", + "type": "mint", + "inputIndex": 2, + "inputQty": "17892873690022295820566528", + "expectedQty": "17925179472000891105510994", "reserves": [ - "39580287471444571018059855", - "8761319811871450115729413", - "89638501535928104197995002" - ], - "mAssetSupply": "137188816670561818955757655" + "1264293331136537652234158051", + "653969120491562696200106880", + "719148504562909140032993397" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "20223962872970678272", - "12794536947726690304", - "26678570438047420416" + "2571525519620776132608", + "1323563257866950803456", + "2210967876432231923712" ], - "expectedQty": "60458405999798234412", - "swapFee": "36296821692894677", + "expectedQty": "6105205251408660522758", "reserves": [ - "39580267247481698047381583", - "8761307017334502389039109", - "89638474857357666150574586" + "1264295902662057273010290659", + "653970444054820563150910336", + "719150715530785572264917109" ], - "mAssetSupply": "137188756212155819157523243" + "mAssetSupply": "2636381618952759553074045373" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2050364484423708416", - "expectedQty": "2253943845950964807", + "inputIndex": 2, + "inputQty": "8630574536370633270362112", + "expectedQty": "8644843198840504890833373", "reserves": [ - "39580267247481698047381583", - "8761309067698986812747525", - "89638474857357666150574586" + "1264295902662057273010290659", + "653970444054820563150910336", + "727781290067156205535279221" ] }, { - "type": "redeemMasset", - "inputQty": "99884091293590358904012", - "expectedQtys": [ - "28808869178888625764620", - "6377001074524326153930", - "65244205639491200848469" + "type": "mint", + "inputIndex": 2, + "inputQty": "14814767814440904556544", + "expectedQty": "14838546139226257245815", + "reserves": [ + "1264295902662057273010290659", + "653970444054820563150910336", + "727796104834970646439835765" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "6781780843932773376", + "6153186291733455872", + "1092780936190687488" + ], + "expectedQty": "14025404249032143310", + "swapFee": "8420294726255039", + "reserves": [ + "1264295895880276429077517283", + "653970437901634271417454464", + "727796103742189710249148277" ], - "redemptionFee": "29965227388077107671", + "mAssetSupply": "2645041286672335035189981251" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "224251658736424000", + "expectedQty": "224842589776074797", + "swapFee": "134550995241854", "reserves": [ - "39551458378302809421616963", - "8754932066624462486593595", - "89573230651718174949726117" + "1264295895655433839301442486", + "653970437901634271417454464", + "727796103742189710249148277" ], - "mAssetSupply": "137088904340033462826691709" + "mAssetSupply": "2645041286448217927448799105" }, { "type": "mintMulti", "inputQtys": [ - "36242018322251929092096", - "30010208574383711059968", - "118032947043283161317376" + "5569910976832124", + "7523493076618087", + "17093356449423156" ], - "expectedQty": "185100912454263612392049", + "expectedQty": "30217967807835512", "reserves": [ - "39587700396625061350709059", - "8784942275198846197653563", - "89691263598761458111043493" + "1264295895661003750278274610", + "653970437909157764494072551", + "727796103759283066698571433" ], - "mAssetSupply": "137274005252487726439083758" + "mAssetSupply": "2645041286478435895256634617" }, { "type": "redeemBassets", "inputQtys": [ - "4432085829732029956096", - "11225214231824989945856", - "2128465282193089888256" + "779438378144056507105280", + "8034493703013881570394112", + "7288441902601677511327744" ], - "expectedQty": "18851600904514597846084", - "swapFee": "11317751193424813595", + "expectedQty": "16135218481112070946302403", + "swapFee": "9686943254620014576527", "reserves": [ - "39583268310795329320752963", - "8773717060967021207707707", - "89689135133479265021155237" + "1263516457282859693771169330", + "645935944206143882923678439", + "720507661856681389187243689" ], - "mAssetSupply": "137255153651583211841237674" + "mAssetSupply": "2628906067997323824310332214" }, { - "type": "redeemMasset", - "inputQty": "1805004445819039", - "expectedQtys": [ - "520392415061969", - "115346104686908", - "1179123089848586" - ], - "redemptionFee": "541501333745", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1739995807834838558310400", + "expectedQty": "1744685675841851082000589", + "swapFee": "1043997484700903134986", "reserves": [ - "39583268310274936905690994", - "8773717060851675103020799", - "89689135132300141931306651" + "1261771771607017842689168741", + "645935944206143882923678439", + "720507661856681389187243689" ], - "mAssetSupply": "137255153649778748896752380" + "mAssetSupply": "2627167116186973686655156800" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "125967150980015014805504", - "expectedQty": "125747001592175241757755", + "inputIndex": 1, + "inputQty": "7057155905642252969443328", + "expectedQty": "7077688742879324053629179", "reserves": [ - "39709235461254951920496498", - "8773717060851675103020799", - "89689135132300141931306651" + "1261771771607017842689168741", + "652993100111786135893121767", + "720507661856681389187243689" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "65609616798317639892992", - "148903543147287174709248", - "108287233552490210263040" + "72650453808761618432", + "89825274309540397056", + "68666768638283276288" ], - "expectedQty": "335746519383568839678805", - "swapFee": "201568852941906447675", + "expectedQty": "231278005155144400459", "reserves": [ - "39643625844456634280603506", - "8624813517704387928311551", - "89580847898747651721043611" + "1261771844257471651450787173", + "652993189937060445433518823", + "720507730523450027470519977" ], - "mAssetSupply": "137045154131987355298831330" + "mAssetSupply": "2634245036207858165853186438" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "26172456147069", - "expectedQty": "26636342822737", - "swapFee": "15703473688", + "type": "swap", + "inputIndex": 0, + "inputQty": "5981255597620692254720", + "outputIndex": 1, + "expectedQty": "5941273410266134980260", + "swapFee": "3577097076964720465", "reserves": [ - "39643625844456634280603506", - "8624813517704387928311551", - "89580847898721015378220874" + "1261777825513069272143041893", + "652987248663650179298538563", + "720507730523450027470519977" ], - "mAssetSupply": "137045154131961198546157949" + "mAssetSupply": "2634245039784955242817906903", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "258341840955089259121868", - "expectedQtys": [ - "74709207089133030726854", - "16253633855981689615414", - "168816902448429541702059" + "type": "redeemBassets", + "inputQtys": [ + "74419963552386101805056", + "46861126804388884512768", + "432328534496167973617664" ], - "redemptionFee": "77502552286526777736", + "expectedQty": "554225416122194632305034", + "swapFee": "332734890607681388215", "reserves": [ - "39568916637367501249876652", - "8608559883848406238696137", - "89412030996272585836518815" + "1261703405549516886041236837", + "652940387536845790414025795", + "720075401988953859496902313" ], - "mAssetSupply": "136786889793558395813813817" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "33670022006001500", - "expectedQty": "37114962638151666", - "reserves": [ - "39568916637367501249876652", - "8608559917518428244697637", - "89412030996272585836518815" - ] + "mAssetSupply": "2633690814368833048185601869" }, { "type": "redeemMasset", - "inputQty": "26296069508115435251302", + "inputQty": "66786587804514392211456", "expectedQtys": [ - "7604492151623646792673", - "1654423014142599540315", - "17183515389192639224917" + "31985374045735264308619", + "16552656062489891254051", + "18254592143007385532476" ], - "redemptionFee": "7888820852434630575", + "redemptionFee": "20035976341354317663", "reserves": [ - "39561312145215877603083979", - "8606905494504285645157322", - "89394847480883393197293898" + "1261671420175471150776928218", + "652923834880783300522771744", + "720057147396810852111369837" ], - "mAssetSupply": "136760601649986095451344756" + "mAssetSupply": "2633624047817004875147708076" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "978773549239317561344", - "1032161294647926456320", - "116710548717155844096" + "10288666177345993347956736", + "6022689490100270040875008", + "10292948213508040139210752" + ], + "expectedQty": "26605422712674437447254072", + "swapFee": "15972837330002664066792", + "reserves": [ + "1251382753998125157428971482", + "646901145390683030481896736", + "709764199183302811972159085" ], - "expectedQty": "2229318863778723198516", + "mAssetSupply": "2607018625104330437700454004" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "13650881845845047296", + "expectedQty": "13687460394858030266", + "swapFee": "8190529107507028", "reserves": [ - "39562290918765116920645323", - "8607937655798933571613642", - "89394964191432110353137994" + "1251382740310664762570941216", + "646901145390683030481896736", + "709764199183302811972159085" ], - "mAssetSupply": "136762830968849874174543272" + "mAssetSupply": "2607018611461639120962913736" }, { "type": "mintMulti", "inputQtys": [ - "61415120265783468359680", - "123762411891812877729792", - "167508561871891819659264" + "19917588497361147606859776", + "22692400564594134904471552", + "4997969434168796590899200" ], - "expectedQty": "362082537201222585382810", + "expectedQty": "47614286620926590905539884", "reserves": [ - "39623706039030900389005003", - "8731700067690746449343434", - "89562472753304002172797258" + "1271300328808025910177800992", + "669593545955277165386368288", + "714762168617471608563058285" ], - "mAssetSupply": "137124913506051096759926082" + "mAssetSupply": "2654632898082565711868453620" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "65374186358053992923136", - "expectedQty": "59368420894642079932220", - "swapFee": "39224511814832395753", + "inputIndex": 2, + "inputQty": "9454297187398651201191936", + "expectedQty": "9430609577287340556254411", + "swapFee": "5672578312439190720715", "reserves": [ - "39623706039030900389005003", - "8672331646796104369411214", - "89562472753304002172797258" + "1271300328808025910177800992", + "669593545955277165386368288", + "705331559040184268006803874" ], - "mAssetSupply": "137059578544204857599398699" + "mAssetSupply": "2645184273473479499857982399" }, { - "type": "redeemBassets", - "inputQtys": [ - "14142854311103225135104", - "14437963788208553590784", - "6121508030055409778688" - ], - "expectedQty": "36029787730024802654947", - "swapFee": "21630851148704104055", + "type": "redeem", + "inputIndex": 2, + "inputQty": "20057650503387715731456", + "expectedQty": "20006274999318821984669", + "swapFee": "12034590302032629438", "reserves": [ - "39609563184719797163869899", - "8657893683007895815820430", - "89556351245273946763018570" + "1271300328808025910177800992", + "669593545955277165386368288", + "705311552765184949184819205" ], - "mAssetSupply": "137023548756474832796743752" + "mAssetSupply": "2645164227857566414174880381" }, { - "type": "mintMulti", - "inputQtys": [ - "74078512499688488960", - "22488558209525411840", - "70335859105051189248" + "type": "swap", + "inputIndex": 2, + "inputQty": "13721300127364530176", + "outputIndex": 1, + "expectedQty": "13704474710755541837", + "swapFee": "8248970239914215", + "reserves": [ + "1271300328808025910177800992", + "669593532250802454630826451", + "705311566486485076549349381" ], - "expectedQty": "167788192256431572255", + "mAssetSupply": "2645164227865815384414794596", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "204287064203125306949632", + "expectedQty": "203763531709078227267486", + "swapFee": "122572238521875184169", "reserves": [ - "39609637263232296852358859", - "8657916171566105341232270", - "89556421581133051814207818" + "1271300328808025910177800992", + "669593532250802454630826451", + "705107802954775998322081895" ], - "mAssetSupply": "137023716544667089228316007" + "mAssetSupply": "2644960063373850780983029133" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "5537216155453458835570688", - "expectedQty": "5882319324225154008130280", + "type": "redeemMasset", + "inputQty": "1922948122145155846032588", + "expectedQtys": [ + "923987934801755005731312", + "486664190200534598576873", + "512476153668303206958157" + ], + "redemptionFee": "576884436643546753809", "reserves": [ - "39609637263232296852358859", - "14195132327019564176802958", - "89556421581133051814207818" - ] + "1270376340873224155172069680", + "669106868060601920032249578", + "704595326801107695115123738" + ], + "mAssetSupply": "2643037692136142268683750354" }, { "type": "redeemBassets", "inputQtys": [ - "129241526268041902424064", - "140474139517457266638848", - "123838901518291959808000" + "285506686908118532096", + "281617402550036791296", + "865214456210461818880" ], - "expectedQty": "397606071896721039593957", - "swapFee": "238706867258387656350", + "expectedQty": "1433836851189304685847", + "swapFee": "860818601874707636", "reserves": [ - "39480395736964254949934795", - "14054658187502106910164110", - "89432582679614759854399818" + "1270376055366537247053537584", + "669106586443199369995458282", + "704594461586651484653304858" ], - "mAssetSupply": "142508429796995522196852330" + "mAssetSupply": "2643036258299291079379064507" }, { "type": "redeemBassets", "inputQtys": [ - "778188920255242880", - "743968084688967168", - "449011311446741120" + "2486639491430645497856", + "32889494121901597917184", + "67495943972899046555648" + ], + "expectedQty": "103082159513810000452194", + "swapFee": "61886427564824895208", + "reserves": [ + "1270373568727045816408039728", + "669073696949077468397541098", + "704526965642678585606749210" + ], + "mAssetSupply": "2642933176139777269378612313" + }, + { + "type": "mintMulti", + "inputQtys": [ + "325690374352646499729408", + "429941414353107620462592", + "481655319668639521570816" ], - "expectedQty": "1995233121598841020", - "swapFee": "1197858588112171", + "expectedQty": "1238282797510703518046608", "reserves": [ - "39480394958775334694691915", - "14054657443534022221196942", - "89432582230603448407658698" + "1270699259101398462907769136", + "669503638363430576018003690", + "705008620962347225128320026" ], - "mAssetSupply": "142508427801762400598011310" + "mAssetSupply": "2644171458937287972896658921" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "252470100133157824", - "outputIndex": 0, - "expectedQty": "249331038729766652", - "swapFee": "149752247621900", + "inputIndex": 0, + "inputQty": "198299523374295778590720", + "outputIndex": 2, + "expectedQty": "197143076038195126749019", + "swapFee": "118589936292817409497", "reserves": [ - "39480394709444295964925263", - "14054657443534022221196942", - "89432582483073548540816522" + "1270897558624772758686359856", + "669503638363430576018003690", + "704811477886309030001571007" ], - "mAssetSupply": "142508427801912152845633210", + "mAssetSupply": "2644171577527224265714068418", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "6132043925677476069507072", + "expectedQty": "6111858377243336035728993", + "reserves": [ + "1277029602550450234755866928", + "669503638363430576018003690", + "704811477886309030001571007" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "1806817642465639203340288", - "2052285344974785784840192", - "89978086181501436690432" + "4940366163740218506608640", + "5146992596764015124807680", + "1846526170851162105839616" ], - "expectedQty": "4018699630220659735186046", + "expectedQty": "11934782835102413771555004", + "swapFee": "7165168802342853975318", "reserves": [ - "41287212351909935168265551", - "16106942788508808006037134", - "89522560569255049977506954" + "1272089236386710016249258288", + "664356645766666560893196010", + "702964951715457867895731391" ], - "mAssetSupply": "146527127432132812580819256" + "mAssetSupply": "2638348653069365187978242407" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "412456093622004080443392", - "225504256523261469261824", - "422496063477865336799232" + "2347700414054351144747008", + "200796506179223846649856", + "2509906103870634533584896" ], - "expectedQty": "1063202876843372904131023", - "swapFee": "638304708931382572021", + "expectedQty": "5056085789066633370007747", "reserves": [ - "40874756258287931087822159", - "15881438531985546536775310", - "89100064505777184640707722" + "1274436936800764367394005296", + "664557442272845784739845866", + "705474857819328502429316287" ], - "mAssetSupply": "145463924555289439676688233" + "mAssetSupply": "2643404738858431821348250154" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "6243134135840337920", - "expectedQty": "6433191936262460543", + "inputIndex": 0, + "inputQty": "23019159936646852378624", + "expectedQty": "22942866083543680650334", "reserves": [ - "40874756258287931087822159", - "15881444775119682377113230", - "89100064505777184640707722" + "1274459955960701014246383920", + "664557442272845784739845866", + "705474857819328502429316287" ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "870724937738811464482816", - "expectedQty": "878925861405917323539664", - "swapFee": "522434962643286878689", + "inputIndex": 0, + "inputQty": "3825848559813943055351808", + "expectedQty": "3836232977013951058229507", + "swapFee": "2295509135888365833211", "reserves": [ - "40874756258287931087822159", - "15881444775119682377113230", - "88221138644371267317168058" + "1270623722983687063188154413", + "664557442272845784739845866", + "705474857819328502429316287" ], - "mAssetSupply": "144593728485705207761544649" + "mAssetSupply": "2639604128673837310339381891" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1356269371294458112", - "322048922152461120", - "183053813771353088" + "131995807509005847232512", + "25582228899396874928128", + "111098476515489814151168" ], - "expectedQty": "1869561368943927616", - "swapFee": "1122410267526872", + "expectedQty": "268524792840669108261822", "reserves": [ - "40874754902018559793364047", - "15881444453070760224652110", - "88221138461317453545814970" + "1270755718791196069035386925", + "664583024501745181614773994", + "705585956295843992243467455" ], - "mAssetSupply": "144593726616143838817617033" + "mAssetSupply": "2639872653466677979447643713" }, { - "type": "mintMulti", - "inputQtys": [ - "539486636562849660928", - "238122672057868943360", - "680045766354554060800" + "type": "redeemMasset", + "inputQty": "141007568146373332172", + "expectedQtys": [ + "67856461760578583868", + "35487743176737426323", + "37677238633822245495" ], - "expectedQty": "1458219836338419840255", + "redemptionFee": "42302270443911999", "reserves": [ - "40875294388655122643024975", - "15881682575742818093595470", - "88221818507083808099875770" + "1270755650934734308456803057", + "664582989014002004877347671", + "705585918618605358421221960" ], - "mAssetSupply": "144595184835980177237457288" + "mAssetSupply": "2639872512501412103518223540" }, { - "type": "mintMulti", - "inputQtys": [ - "138525897441298396217344", - "88193522790317131038720", - "48630164681073545445376" - ], - "expectedQty": "277534236340795446842963", + "type": "redeem", + "inputIndex": 0, + "inputQty": "62262302420466198779002880", + "expectedQty": "62421419069849265513828835", + "swapFee": "37357381452279719267401", "reserves": [ - "41013820286096421039242319", - "15969876098533135224634190", - "88270448671764881645321146" + "1208334231864885042942974222", + "664582989014002004877347671", + "705585918618605358421221960" ], - "mAssetSupply": "144872719072320972684300251" + "mAssetSupply": "2577647567462398184458488061" }, { - "type": "redeemBassets", - "inputQtys": [ - "30675202279620422402048", - "29158601253219840557056", - "13489999803979931844608" - ], - "expectedQty": "74065143826634360953014", - "swapFee": "44465765755433876897", + "type": "mint", + "inputIndex": 2, + "inputQty": "3030941821421910228992", + "expectedQty": "3036043084778725719747", "reserves": [ - "40983145083816800616840271", - "15940717497279915384077134", - "88256958671960901713476538" - ], - "mAssetSupply": "144798653928494338323347237" + "1208334231864885042942974222", + "664582989014002004877347671", + "705588949560426780331450952" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1947053469465892244946944", - "1205526171761777022337024", - "1202998769981662232051712" + "31577139056501030912", + "12853780461581555712", + "58837764734958092288" ], - "expectedQty": "4382088602587873180876270", - "swapFee": "2630831660549053340530", + "expectedQty": "103303588657357046849", + "swapFee": "62019364813302209", "reserves": [ - "39036091614350908371893327", - "14735191325518138361740110", - "87053959901979239481424826" + "1208334200287745986441943310", + "664582976160221543295791959", + "705588890722662045373358664" ], - "mAssetSupply": "140416565325906465142470967" + "mAssetSupply": "2577650500201894305827160959" }, { "type": "redeemBassets", "inputQtys": [ - "1124917273870137556992", - "300674007347121291264", - "2297965235965955670016" + "7005444447441653858304", + "41910716454639773941760", + "24452103997331844628480" ], - "expectedQty": "3709850667420380292922", - "swapFee": "2227246748501328973", + "expectedQty": "73488056221186745500212", + "swapFee": "44119305315901588253", "reserves": [ - "39034966697077038234336335", - "14734890651510791240448846", - "87051661936743273525754810" + "1208327194843298544788085006", + "664541065443766903521850199", + "705564438618664713528730184" ], - "mAssetSupply": "140412855475239044762178045" + "mAssetSupply": "2577577012145673119081660747" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "3172901940746145759232", - "expectedQty": "3279358832010021265094", + "inputQty": "1165168248507203290398720", + "expectedQty": "1161698068183060087046040", + "swapFee": "699100949104321974239", "reserves": [ - "39034966697077038234336335", - "14738063553451537386208078", - "87051661936743273525754810" - ] + "1208327194843298544788085006", + "663379367375583843434804159", + "705564438618664713528730184" + ], + "mAssetSupply": "2576412542998115020113236266" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "98460972838494000", - "outputIndex": 1, - "expectedQty": "95253617016364961", - "swapFee": "59104780777023", + "inputIndex": 1, + "inputQty": "15145332655255187357696", + "outputIndex": 2, + "expectedQty": "15147053027146272874157", + "swapFee": "9108944856673890375", "reserves": [ - "39034966795538011072830335", - "14738063458197920369843117", - "87051661936743273525754810" + "1208327194843298544788085006", + "663394512708239098622161855", + "705549291565637567255856027" ], - "mAssetSupply": "140416134834130159564220162", + "mAssetSupply": "2576412552107059876787126641", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "210146438175661607197081", - "expectedQtys": [ - "58402108335368755561830", - "22050332033012072897517", - "130242216365474574691126" - ], - "redemptionFee": "63043931452698482159", + "type": "swap", + "inputIndex": 1, + "inputQty": "19053896619679722260922368", + "outputIndex": 2, + "expectedQty": "19049904651010269421756793", + "swapFee": "11458282532028509635083", "reserves": [ - "38976564687202642317268505", - "14716013126164908296945600", - "86921419720377798951063684" + "1208327194843298544788085006", + "682448409327918820883084223", + "686499386914627297834099234" ], - "mAssetSupply": "140206051439885950655505240" + "mAssetSupply": "2576424010389591905296761724", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "354321178819067019421286", - "expectedQtys": [ - "98469924356316390022398", - "37178358610855264966552", - "219597229604472912867323" + "type": "redeemBassets", + "inputQtys": [ + "1338810804694158336", + "51173265447385272", + "1691992292181089280" ], - "redemptionFee": "106296353645720105826", + "expectedQty": "3081435842812921585", + "swapFee": "1849971488580901", "reserves": [ - "38878094762846325927246107", - "14678834767554053031979048", - "86701822490773326038196361" + "1208327193504487740093926670", + "682448409276745555435698951", + "686499385222635005653009954" ], - "mAssetSupply": "139851836557420529356189780" + "mAssetSupply": "2576424007308156062483840139" }, { - "type": "mintMulti", - "inputQtys": [ - "595848253761308567011328", - "797545690236035111321600", - "1426327992504767756632064" - ], - "expectedQty": "2830977359096423331868973", + "type": "mint", + "inputIndex": 0, + "inputQty": "5952115791088670736384", + "expectedQty": "5934268534335732939806", "reserves": [ - "39473943016607634494257435", - "15476380457790088143300648", - "88128150483278093794828425" - ], - "mAssetSupply": "142682813916516952688058753" + "1208333145620278828764663054", + "682448409276745555435698951", + "686499385222635005653009954" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "24351715302175607357440", - "expectedQty": "24321765571453161375113", - "swapFee": "14611029181305364414", + "inputQty": "1583024980545323663360", + "expectedQty": "1586833258385931526396", + "swapFee": "949814988327194198", "reserves": [ - "39449621251036181332882322", - "15476380457790088143300648", - "88128150483278093794828425" + "1208331558787020442833136658", + "682448409276745555435698951", + "686499385222635005653009954" ], - "mAssetSupply": "142658476812243958386065727" + "mAssetSupply": "2576428359501524841220310783" }, { "type": "redeemMasset", - "inputQty": "77861907611901455079833", + "inputQty": "2537773003292328699573043", "expectedQtys": [ - "21524842736015967097944", - "8444356242531290765180", - "48085241875894701713495" + "1189845336179373328808429", + "672007654733523158790368", + "675996654938922050677039" ], - "redemptionFee": "23358572283570436523", + "redemptionFee": "761331900987698609871", "reserves": [ - "39428096408300165365784378", - "15467936101547556852535468", - "88080065241402199093114930" + "1207141713450841069504328229", + "681776401622012032276908583", + "685823388567696083602332915" ], - "mAssetSupply": "142580638263204340501422417" + "mAssetSupply": "2573891347830133500219347611" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "541334913147845851742208", - "expectedQty": "540614849962812351089387", - "swapFee": "324800947888707511045", - "reserves": [ - "38887481558337353014694991", - "15467936101547556852535468", - "88080065241402199093114930" + "type": "redeemMasset", + "inputQty": "1671928081322472", + "expectedQtys": [ + "783890374516572", + "442730089474124", + "445358110755443" ], - "mAssetSupply": "142039628151004383357191254" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "86383870542939382874112", - "expectedQty": "86454072692950894018414", + "redemptionFee": "501578424396", "reserves": [ - "38973865428880292397569103", - "15467936101547556852535468", - "88080065241402199093114930" - ] + "1207141713450057179129811657", + "681776401621569302187434459", + "685823388567250725491577472" + ], + "mAssetSupply": "2573891347828462073716449535" }, { "type": "redeemMasset", - "inputQty": "2378613563786701203046", + "inputQty": "758380932400468937251225", "expectedQtys": [ - "652068588417033529172", - "258792787127216194226", - "1473660443418106715673" + "355570027064441601647796", + "200820873701427736114420", + "202012935281084945480020" ], - "redemptionFee": "713584069136010360", + "redemptionFee": "227514279720140681175", "reserves": [ - "38973213360291875364039931", - "15467677308760429636341242", - "88078591580958780986399257" + "1206786143422992737528163861", + "681575580747867874451320039", + "685621375631969640546097452" ], - "mAssetSupply": "142123704323717616686016982" + "mAssetSupply": "2573133194410341324919879485" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5851413623450748583936", - "expectedQty": "5671816937411241455881", - "swapFee": "3510848174070449150", + "type": "mint", + "inputIndex": 0, + "inputQty": "1786746655595697408", + "expectedQty": "1781389132600231861", "reserves": [ - "38973213360291875364039931", - "15462005491823018394885361", - "88078591580958780986399257" - ], - "mAssetSupply": "142117856420942340007882196" + "1206786145209739393123861269", + "681575580747867874451320039", + "685621375631969640546097452" + ] }, { "type": "mintMulti", "inputQtys": [ - "157461256471177043378176", - "393409420910136989319168", - "206222519894367918882816" + "381197502799423078400", + "111011192267077435392", + "355394043263734185984" ], - "expectedQty": "767064046694690422551581", + "expectedQty": "847395878528450231369", "reserves": [ - "39130674616763052407418107", - "15855414912733155384204529", - "88284814100853148905282073" + "1206786526407242192546939669", + "681575691759060141528755431", + "685621731026012904280283436" ], - "mAssetSupply": "142884920467637030430433777" + "mAssetSupply": "2573134043587608985970342715" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "5202873665988608409993216", - "expectedQty": "5250515451048565036276503", - "swapFee": "3121724199593165045995", + "inputQty": "664426161129159393280000", + "expectedQty": "665746254850724114707040", + "reserves": [ + "1206786526407242192546939669", + "681575691759060141528755431", + "686286157187142063673563436" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "213738296033314177024", + "outputIndex": 2, + "expectedQty": "212548704012886522594", + "swapFee": "127858802430241463", "reserves": [ - "39130674616763052407418107", - "15855414912733155384204529", - "83034298649804583869005570" + "1206786740145538225861116693", + "681575691759060141528755431", + "686285944638438050787040842" ], - "mAssetSupply": "137685168525848015185486556" + "mAssetSupply": "2573799789970318512515291218", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5155610254564176013819904", - "expectedQty": "4959322220925707337672150", - "swapFee": "3093366152738505608291", + "inputQty": "758394660786575114240", + "expectedQty": "756379535406224440366", + "swapFee": "455036796471945068", "reserves": [ - "39130674616763052407418107", - "10896092691807448046532379", - "83034298649804583869005570" + "1206786740145538225861116693", + "681574935379524735304315065", + "686285944638438050787040842" ], - "mAssetSupply": "132532651637436577677274943" + "mAssetSupply": "2573799032030694522412122046" }, { - "type": "redeemBassets", - "inputQtys": [ - "11818853003660806324224", - "15626595794725040553984", - "9456031300484415356928" + "type": "redeemMasset", + "inputQty": "2412527453480934807961", + "expectedQtys": [ + "1130831383116641969059", + "638676496213334250484", + "643090993770284348294" ], - "expectedQty": "37647098559311051855639", - "swapFee": "22601820227723265072", + "redemptionFee": "723758236044280442", "reserves": [ - "39118855763759391601093883", - "10880466096012723005978395", - "83024842618504099453648642" + "1206785609314155109219147634", + "681574296703028521970064581", + "686285301547444280502692548" ], - "mAssetSupply": "132495004538877266625419304" + "mAssetSupply": "2573796620226999277521594527" }, { - "type": "mintMulti", - "inputQtys": [ - "189242652885471461376", - "76299640981781561344", - "520986438630042632192" + "type": "redeemMasset", + "inputQty": "27413120208152649793536", + "expectedQtys": [ + "12849435804678608239315", + "7257167390802602423645", + "7307328541098596583287" ], - "expectedQty": "783739138479172266094", + "redemptionFee": "8223936062445794938", "reserves": [ - "39119045006412277072555259", - "10880542395653704787539739", - "83025363604942729496280834" + "1206772759878350430610908319", + "681567039535637719367640936", + "686277994218903181906109261" ], - "mAssetSupply": "132495788278015745797685398" + "mAssetSupply": "2573769215330727187317595929" }, { "type": "mintMulti", "inputQtys": [ - "92161838798734376960", - "81994624453636866048", - "32954795286085013504" - ], - "expectedQty": "211208196177442621988", - "reserves": [ - "39119137168251075806932219", - "10880624390278158424405787", - "83025396559738015581294338" + "54403013767685419827200", + "5672837557432654757888", + "35104983866187458805760" ], - "mAssetSupply": "132495999486211923240307386" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "132171389339644421210112", - "outputIndex": 0, - "expectedQty": "130518540801823080276616", - "swapFee": "78256400167298457576", + "expectedQty": "95099163041140902439482", "reserves": [ - "38988618627449252726655603", - "10880624390278158424405787", - "83157567949077660002504450" + "1206827162892118116030735519", + "681572712373195152022398824", + "686313099202769369364915021" ], - "mAssetSupply": "132496077742612090538764962", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2573864314493768328220035411" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "196218158892516045225984", - "expectedQty": "185378525117947723243049", - "swapFee": "117730895335509627135", + "inputQty": "385631227064593521049600", + "expectedQty": "386425833044240972534165", "reserves": [ - "38988618627449252726655603", - "10695245865160210701162738", - "83157567949077660002504450" - ], - "mAssetSupply": "132299977314614910003166113" + "1206827162892118116030735519", + "681958343600259745543448424", + "686313099202769369364915021" + ] }, { - "type": "redeemMasset", - "inputQty": "484941955160517745049", - "expectedQtys": [ - "142868843704866956355", - "39191370807349529201", - "304720351642037506729" + "type": "mintMulti", + "inputQtys": [ + "95623683153570056634368", + "39404346130667577278464", + "116315518993588520222720" ], - "redemptionFee": "145482586548155323", + "expectedQty": "251369132480634318264705", "reserves": [ - "38988475758605547859699248", - "10695206673789403351633537", - "83157263228726017964997721" + "1206922786575271686087369887", + "681997747946390413120726888", + "686429414721762957885137741" ], - "mAssetSupply": "132299492518142336033576387" + "mAssetSupply": "2574502109459293203510834281" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1338139141017304832", - "3498372936191576064", - "705343091768258176" + "1318144607535731572736", + "1876821661629069918208", + "1026438601165165428736" ], - "expectedQty": "5736366593888687322", + "expectedQty": "4223358204964920459384", + "swapFee": "2535536244725787748", "reserves": [ - "38988477096744688877004080", - "10695210172162339543209601", - "83157263934069109733255897" + "1206921468430664150355797151", + "681995871124728784050808680", + "686428388283161792719709005" ], - "mAssetSupply": "132299498254508929922263709" + "mAssetSupply": "2574497886101088238590374897" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "15107427371913984151126016", + "expectedQty": "15136038204964489944882425", + "reserves": [ + "1206921468430664150355797151", + "681995871124728784050808680", + "701535815655075776870835021" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "2277821108302081213595648", + "inputIndex": 2, + "inputQty": "95847404759515774976", "outputIndex": 1, - "expectedQty": "2114912887712304476538480", - "swapFee": "1364239912194410948498", + "expectedQty": "95758913743416696496", + "swapFee": "57612276114655289", "reserves": [ - "41266298205046770090599728", - "8580297284450035066671121", - "83157263934069109733255897" + "1206921468430664150355797151", + "681995775365815040634112184", + "701535911502480536386609997" ], - "mAssetSupply": "132300862494421124333212207", + "mAssetSupply": "2589633924363665004649912611", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "1458020878016137920512", - "1203485850795787157504", - "398858237441355939840" + "5458690191852496064872448", + "1159700855020629285404672", + "8787489871076861472145408" ], - "expectedQty": "3159962079479814615855", + "expectedQty": "15407961376690963331378201", "reserves": [ - "41267756225924786228520240", - "8581500770300830853828625", - "83157662792306551089195737" + "1212380158622516646420669599", + "683155476220835669919516856", + "710323401373557397858755405" ], - "mAssetSupply": "132304022456500604147828062" + "mAssetSupply": "2605041885740355967981290812" }, { "type": "mintMulti", "inputQtys": [ - "454756407167982632960", - "84808051065611599872", - "15377643889920644743168" + "38434166648652007735296", + "19424696093192080064512", + "25335630064788701184000" ], - "expectedQty": "15673798659334464497748", + "expectedQty": "83168604844383762760091", "reserves": [ - "41268210982331954211153200", - "8581585578351896465428497", - "83173040436196471733938905" + "1212418592789165298428404895", + "683174900916928861999581368", + "710348737003622186559939405" ], - "mAssetSupply": "132319696255159938612325810" + "mAssetSupply": "2605125054345200351744050903" }, { "type": "mintMulti", "inputQtys": [ - "1231914725711126919643136", - "834933596690901813428224", - "340435951656611365257216" + "20204095687835999272960", + "30546168587093037547520", + "11974960622174663081984" ], - "expectedQty": "2468804243814515282316515", + "expectedQty": "62753607512906142811430", "reserves": [ - "42500125708043081130796336", - "9416519175042798278856721", - "83513476387853083099196121" + "1212438796884853134427677855", + "683205447085515955037128888", + "710360711964244361223021389" ], - "mAssetSupply": "134788500498974453894642325" + "mAssetSupply": "2605187807952713257886862333" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "320558240137601613824", - "expectedQty": "325179471370805539010", - "swapFee": "192334944082560968", + "inputQty": "889501376356011116331008", + "expectedQty": "891038442243037864826357", "reserves": [ - "42500125708043081130796336", - "9416519175042798278856721", - "83513151208381712293657111" - ], - "mAssetSupply": "134788180133069260375589469" + "1212438796884853134427677855", + "683205447085515955037128888", + "711250213340600372339352397" + ] }, { - "type": "redeemMasset", - "inputQty": "247918824624645563272396", - "expectedQtys": [ - "78147952047242209826150", - "17314812054871567930898", - "153561468989057472575633" - ], - "redemptionFee": "74375647387393668981", + "type": "mint", + "inputIndex": 0, + "inputQty": "82049453444258169094144", + "expectedQty": "81810356894695930512004", "reserves": [ - "42421977755995838920970186", - "9399204362987926710925823", - "83359589739392654821081478" - ], - "mAssetSupply": "134540335684092002205986054" + "1212520846338297392596771999", + "683205447085515955037128888", + "711250213340600372339352397" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "794454473573391382085632", - "857271438207644688449536", - "845669150981827866918912" - ], - "expectedQty": "2545174301941779003601088", + "type": "swap", + "inputIndex": 2, + "inputQty": "53800679537033283184361472", + "outputIndex": 0, + "expectedQty": "53985558220935538178626558", + "swapFee": "32326841058995319009563", "reserves": [ - "43216432229569230303055818", - "10256475801195571399375359", - "84205258890374482688000390" + "1158535288117361854418145441", + "683205447085515955037128888", + "765050892877633655523713869" ], - "mAssetSupply": "137085509986033781209587142" + "mAssetSupply": "2606192983592909987001210257", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "29174540794099570153881", + "inputQty": "73228378445445040649011", "expectedQtys": [ - "9194562717211345836892", - "2182128536448904429246", - "17915188599414925834239" + "32542566784744454832764", + "19190834424742463957495", + "21489824289820581951497" ], - "redemptionFee": "8752362238229871046", + "redemptionFee": "21968513533633512194", "reserves": [ - "43207237666852018957218926", - "10254293672659122494946113", - "84187343701775067762166151" + "1158502745550577109963312677", + "683186256251091212573171393", + "765029403053343834941762372" ], - "mAssetSupply": "137056344197601919869304307" + "mAssetSupply": "2606119777182978075594073440" }, { "type": "redeemBassets", "inputQtys": [ - "389829414399526096076800", - "673897427537393973460992", - "264826186769357560872960" + "1089170444454173610082304", + "323936679101464173346816", + "698024715764401635852288" ], - "expectedQty": "1372029235822410938751807", - "swapFee": "823711768554579310837", + "expectedQty": "2109848343351611443282962", + "swapFee": "1266669007415416115639", "reserves": [ - "42817408252452492861142126", - "9580396245121728521485121", - "83922517515005710201293191" + "1157413575106122936353230373", + "682862319571989748399824577", + "764331378337579433305910084" ], - "mAssetSupply": "135684314961779508930552500" + "mAssetSupply": "2604009928839626464150790478" }, { - "type": "redeemMasset", - "inputQty": "122537985415539898240204", - "expectedQtys": [ - "38657267951445603301284", - "8649564741169988879044", - "75768603919449995976627" + "type": "redeem", + "inputIndex": 2, + "inputQty": "13567234613283548068577280", + "expectedQty": "13544904905695786757863327", + "swapFee": "8140340767970128841146", + "reserves": [ + "1157413575106122936353230373", + "682862319571989748399824577", + "750786473431883646548046757" ], - "redemptionFee": "36761395624661969472", + "mAssetSupply": "2590450834567110886211054344" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "4339877054901697155956736", + "expectedQty": "4348137638433242294605716", + "swapFee": "2603926232941018293574", "reserves": [ - "42778750984501047257840842", - "9571746680380558532606077", - "83846748911086260205316564" + "1153065437467689694058624657", + "682862319571989748399824577", + "750786473431883646548046757" ], - "mAssetSupply": "135561813737759593694281768" + "mAssetSupply": "2586113561438442130073391182" }, { "type": "mint", "inputIndex": 0, - "inputQty": "11945972912839005831168", - "expectedQty": "11906093689307745750457", + "inputQty": "2323731855505472228425728", + "expectedQty": "2317936764132801668577976", "reserves": [ - "42790696957413886263672010", - "9571746680380558532606077", - "83846748911086260205316564" + "1155389169323195166287050385", + "682862319571989748399824577", + "750786473431883646548046757" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "64839257085057288896512", - "expectedQty": "60164439566712481683487", - "swapFee": "38903554251034373337", + "type": "swap", + "inputIndex": 2, + "inputQty": "17849512822467289153536", + "outputIndex": 1, + "expectedQty": "17820579797103392174217", + "swapFee": "10721527686977888097", "reserves": [ - "42790696957413886263672010", - "9511582240813846050922590", - "83846748911086260205316564" + "1155389169323195166287050385", + "682844498992192645007650360", + "750804322944706113837200293" ], - "mAssetSupply": "135508919477918095185509050" + "mAssetSupply": "2588431508924102618719857255", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "117841081629057299251", - "expectedQtys": [ - "37200424015928951051", - "8268967733168681651", - "72892820954838849745" + "type": "mint", + "inputIndex": 0, + "inputQty": "118162048744402848", + "expectedQty": "117866716966359460", + "reserves": [ + "1155389169441357215031453233", + "682844498992192645007650360", + "750804322944706113837200293" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1675290833605358291779584", + "expectedQty": "1671097013385158557462180", + "reserves": [ + "1157064460274962573323232817", + "682844498992192645007650360", + "750804322944706113837200293" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "32484905596091736522752", + "270308222503392863322112", + "43403975525934569619456" ], - "redemptionFee": "35352324488717189", + "expectedQty": "346741132092563611686082", + "swapFee": "208169581004140651402", "reserves": [ - "42790659756989870334720959", - "9511573971846112882240939", - "83846676018265305366466819" + "1157031975369366481586710065", + "682574190769689252144328248", + "750760918969180179267580837" ], - "mAssetSupply": "135508801672188790616926988" + "mAssetSupply": "2589755864923261930631992813" }, { - "type": "redeemMasset", - "inputQty": "21089720286525190989414", - "expectedQtys": [ - "6657665783361427723578", - "1479876237896212259068", - "13045443775477431365097" + "type": "redeemBassets", + "inputQtys": [ + "19528255171016708325376", + "33002488701958431440896", + "14673217598650065092608" ], - "redemptionFee": "6326916085957557296", + "expectedQty": "67241783069882769361537", + "swapFee": "40369291416779729454", "reserves": [ - "42784002091206508906997381", - "9510094095608216669981871", - "83833630574489827935101722" + "1157012447114195464878384689", + "682541188280987293712887352", + "750746245751581529202488229" ], - "mAssetSupply": "135487718278818351383494870" + "mAssetSupply": "2589688623140192047862631276" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1161224440827359141036032", + "expectedQty": "1163698653264190586577609", + "reserves": [ + "1157012447114195464878384689", + "683702412721814652853923384", + "750746245751581529202488229" + ] }, { "type": "redeemMasset", - "inputQty": "37265075868187833139", + "inputQty": "11585789566659049029632", "expectedQtys": [ - "11763950263509126265", - "2614909042485790399", - "23051014685005245174" + "5172383294379502256188", + "3056467496706402382638", + "3356184585160601656771" ], - "redemptionFee": "11179522760456349", + "redemptionFee": "3475736869997714708", "reserves": [ - "42783990327256245397871116", - "9510091480699174184191472", - "83833607523475142929856548" + "1157007274730901085376128501", + "683699356254317946451540746", + "750742889566996368600831458" ], - "mAssetSupply": "135487681024922005956118080" + "mAssetSupply": "2590840739479626449397893961" }, { - "type": "mintMulti", - "inputQtys": [ - "216414227427402652319744", - "126642396797901280903168", - "218722793622844158771200" + "type": "redeemMasset", + "inputQty": "2207026832738028512870", + "expectedQtys": [ + "985309516819866892100", + "582239625518064358194", + "639334021428043287284" ], - "expectedQty": "567573721104131683073588", + "redemptionFee": "662108049821408553", "reserves": [ - "43000404554683648050190860", - "9636733877497075465094640", - "84052330317097987088627748" + "1157006289421384265509236401", + "683698774014692428387182552", + "750742250232974940557544174" ], - "mAssetSupply": "136055254746026137639191668" + "mAssetSupply": "2590838533114901761190789644" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "890749272634448150528", - "expectedQty": "887764522025111430889", + "inputIndex": 2, + "inputQty": "73584168657257553199104", + "expectedQty": "73666083375527983462689", "reserves": [ - "43001295303956282498341388", - "9636733877497075465094640", - "84052330317097987088627748" + "1157006289421384265509236401", + "683698774014692428387182552", + "750815834401632198110743278" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "981684755504586", - "expectedQty": "1056293739598820", + "inputQty": "24658365848193209466880", + "expectedQty": "24710738111710962892349", "reserves": [ - "43001295303956282498341388", - "9636733878478760220599226", - "84052330317097987088627748" + "1157006289421384265509236401", + "683723432380540621596649432", + "750815834401632198110743278" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "2607389113109391605760", - "5101424566776194138112", - "5051777324834970664960" - ], - "expectedQty": "13066248388355263913303", - "swapFee": "7844455706437020560", - "reserves": [ - "42998687914843173106735628", - "9631632453911984026461114", - "84047278539773152117962788" - ], - "mAssetSupply": "136043076263216101226308074" - }, { "type": "swap", - "inputIndex": 2, - "inputQty": "118272356654752462798848", - "outputIndex": 0, - "expectedQty": "116867904273938178129486", - "swapFee": "69929881735236010709", + "inputIndex": 0, + "inputQty": "2365771966459145906814976", + "outputIndex": 1, + "expectedQty": "2353366057150291769903373", + "swapFee": "1415901885194438531554", "reserves": [ - "42881820010569234928606142", - "9631632453911984026461114", - "84165550896427904580761636" + "1159372061387843411416051377", + "681370066323390329826746059", + "750815834401632198110743278" ], - "mAssetSupply": "136043146193097836462318783", + "mAssetSupply": "2590938325838274194575676236", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "1500279009446009765888", - "outputIndex": 2, - "expectedQty": "1516557637035348310407", - "swapFee": "897197292560303433", + "inputQty": "222933277665122624", + "outputIndex": 1, + "expectedQty": "221757663524731484", + "swapFee": "133422312312579", "reserves": [ - "42883320289578680938372030", - "9631632453911984026461114", - "84164034338790869232451229" + "1159372061610776689081174001", + "681370066101632666302014575", + "750815834401632198110743278" ], - "mAssetSupply": "136043147090295129022622216", + "mAssetSupply": "2590938325838407616887988815", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "197005487778126645690368", - "expectedQty": "197532082244260000877444", - "swapFee": "118203292666875987414", - "reserves": [ - "42685788207334420937494586", - "9631632453911984026461114", - "84164034338790869232451229" - ], - "mAssetSupply": "135846259805809669252919262" - }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1549130510934708324401152", - "expectedQty": "1570881050347586456992488", - "swapFee": "929478306560824994640", + "inputQty": "816079729029355274240", + "expectedQty": "814685245527537833926", + "swapFee": "489647837417613164", "reserves": [ - "42685788207334420937494586", - "9631632453911984026461114", - "82593153288443282775458741" + "1159372061610776689081174001", + "681370066101632666302014575", + "750815019716386670572909352" ], - "mAssetSupply": "134298058773181521753512750" + "mAssetSupply": "2590937510248326424950327739" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "485762308631002441842688", - "expectedQty": "487083616837309072615960", - "swapFee": "291457385178601465105", + "inputIndex": 2, + "inputQty": "44781225014318243840", + "expectedQty": "44704704515772326647", + "swapFee": "26868735008590946", "reserves": [ - "42198704590497111864878626", - "9631632453911984026461114", - "82593153288443282775458741" + "1159372061610776689081174001", + "681370066101632666302014575", + "750814975011682154800582705" ], - "mAssetSupply": "133812587921935697913135167" + "mAssetSupply": "2590937465493970145640674845" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "228373984834506203332608", - "expectedQty": "212294375170992266809628", - "swapFee": "137024390900703721999", + "inputIndex": 2, + "inputQty": "414457209106572705792", + "expectedQty": "413748999082835251241", + "swapFee": "248674325463943623", "reserves": [ - "42198704590497111864878626", - "9419338078740991759651486", - "82593153288443282775458741" + "1159372061610776689081174001", + "681370066101632666302014575", + "750814561262683071965331464" ], - "mAssetSupply": "133584350961492092413524558" + "mAssetSupply": "2590937051285435364531912676" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "486625191903909707251712", - "271687057420088252563456", - "554029463333194241671168" + "291593553274708435140608", + "284404357892689790763008", + "194561708816848482467840" ], - "expectedQty": "1323792951951757059716299", - "swapFee": "794752622744701056463", + "expectedQty": "770654432426048176603715", "reserves": [ - "41712079398593202157626914", - "9147651021320903507088030", - "82039123825110088533787573" + "1159663655164051397516314609", + "681654470459525356092777583", + "751009122971499920447799304" ], - "mAssetSupply": "132260558009540335353808259" + "mAssetSupply": "2591707705717861412708516391" }, { - "type": "redeemBassets", - "inputQtys": [ - "3363419843416720775577600", - "817426357842174470520832", - "1675482899783155338706944" - ], - "expectedQty": "5889032033021886464344370", - "swapFee": "3535540544139615647995", + "type": "mint", + "inputIndex": 1, + "inputQty": "28799129162550724", + "expectedQty": "28861353399237386", "reserves": [ - "38348659555176481382049314", - "8330224663478729036567198", - "80363640925326933195080629" - ], - "mAssetSupply": "126371525976518448889463889" + "1159663655164051397516314609", + "681654470488324485255328307", + "751009122971499920447799304" + ] }, { - "type": "redeemMasset", - "inputQty": "22318231447322325575270", - "expectedQtys": [ - "6770650989274979714687", - "1470743554348089726287", - "14188609751793970389800" - ], - "redemptionFee": "6695469434196697672", + "type": "redeem", + "inputIndex": 0, + "inputQty": "54519124756458823680", + "expectedQty": "54624276226354423462", + "swapFee": "32711474853875294", "reserves": [ - "38341888904187206402334627", - "8328753919924380946840911", - "80349452315575139224690829" + "1159663600539775171161891147", + "681654470488324485255328307", + "751009122971499920447799304" ], - "mAssetSupply": "126349214440540560760586291" + "mAssetSupply": "2591707651260309484502805391" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1228886052774249758720", - "outputIndex": 2, - "expectedQty": "1245045392935132734041", - "swapFee": "735239367697399470", + "type": "mintMulti", + "inputQtys": [ + "2009134746215464960", + "3568987756390350336", + "9986763796654874624" + ], + "expectedQty": "15578623303804441234", "reserves": [ - "38343117790239980652093347", - "8328753919924380946840911", - "80348207270182204091956788" + "1159663602548909917377356107", + "681654474057312241645678643", + "751009132958263717102673928" ], - "mAssetSupply": "126349215175779928457985761", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2591707666838932788307246625" }, { - "type": "redeemBassets", - "inputQtys": [ - "508854551451067416576", - "229634450487744200704", - "266612371259318599680" - ], - "expectedQty": "1020061578136841492135", - "swapFee": "612404389515814383", + "type": "redeem", + "inputIndex": 2, + "inputQty": "426429767465793572831232", + "expectedQty": "425700048323955987351305", + "swapFee": "255857860479476143698", "reserves": [ - "38342608935688529584676771", - "8328524285473893202640207", - "80347940657810944773357108" + "1159663602548909917377356107", + "681654474057312241645678643", + "750583432909939761115322623" ], - "mAssetSupply": "126348195114201791616493626" + "mAssetSupply": "2591281492929327474210559091" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1534906981891628645482496", - "540712397209390872002560", - "1018764805429225561522176" + "2543884209052787249512448", + "11160520588750629118148608", + "11677664583404804634574848" ], - "expectedQty": "3124317297762484621658082", - "swapFee": "1875715808142376198714", + "expectedQty": "25412163164394363612665501", "reserves": [ - "36807701953796900939194275", - "7787811888264502330637647", - "79329175852381719211834932" + "1162207486757962704626868555", + "692814994646062870763827251", + "762261097493344565749897471" ], - "mAssetSupply": "123223877816439306994835544" + "mAssetSupply": "2616693656093721837823224592" }, { - "type": "redeemMasset", - "inputQty": "76513262008279105745715", - "expectedQtys": [ - "22848107933305503552365", - "4834226456481943190887", - "49242997414252300463607" - ], - "redemptionFee": "22953978602483731723", + "type": "redeem", + "inputIndex": 0, + "inputQty": "6946824156186158309572608", + "expectedQty": "6959599080622029668876686", + "swapFee": "4168094493711694985743", "reserves": [ - "36784853845863595435641910", - "7782977661808020387446760", - "79279932854967466911371325" + "1155247887677340674957991869", + "692814994646062870763827251", + "762261097493344565749897471" ], - "mAssetSupply": "123147387508409630372821552" + "mAssetSupply": "2609751000032029391208637727" }, { "type": "mintMulti", "inputQtys": [ - "227793218140544401408", - "164218763229409509376", - "413556337569155448832" - ], - "expectedQty": "814151042084443321244", - "reserves": [ - "36785081639081735980043318", - "7783141880571249796956136", - "79280346411305036066820157" + "1086936016713545728", + "1091402358870217984", + "1172066840520275968" ], - "mAssetSupply": "123148201659451714816142796" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "1922502760774011480702976", - "outputIndex": 0, - "expectedQty": "2077670480293539528142000", - "swapFee": "1246154084607249970251", + "expectedQty": "3351245075853039391", "reserves": [ - "34707411158788196451901318", - "9705644641345261277659112", - "79280346411305036066820157" + "1155247888764276691671537597", + "692814995737465229634045235", + "762261098665411406270173439" ], - "mAssetSupply": "123149447813536322066113047", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2609751003383274467061677118" }, { "type": "redeemMasset", - "inputQty": "44390964667729", + "inputQty": "18109489151517481", "expectedQtys": [ - "12507025253993", - "3497487671443", - "28569151705817" + "8014049155281000", + "4806114328670074", + "5287867628477077" ], - "redemptionFee": "13317289400", + "redemptionFee": "5432846745455", "reserves": [ - "34707411158775689426647325", - "9705644641341763789987669", - "79280346411276466915114340" + "1155247888756262642516256597", + "692814995732659115305375161", + "762261098660123538641696362" ], - "mAssetSupply": "123149447813491944418734718" + "mAssetSupply": "2609751003365170410756905092" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "149429499929068172214272", - "expectedQty": "158795858154511284779937", + "type": "redeemBassets", + "inputQtys": [ + "445599393501055156224", + "697941996730462240768", + "22363775140527718400" + ], + "expectedQty": "1166288708875906410652", + "swapFee": "700193341330342051", "reserves": [ - "34707411158775689426647325", - "9855074141270831962201941", - "79280346411276466915114340" - ] + "1155247443156869141461100373", + "692814297790662384843134393", + "762261076296348398113977962" + ], + "mAssetSupply": "2609749837076461534850494440" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "34045347709368062181376", - "expectedQty": "34031674287648540519326", + "inputIndex": 2, + "inputQty": "16990301093751167123456", + "expectedQty": "17007983527238855865417", "reserves": [ - "34741456506485057488828701", - "9855074141270831962201941", - "79280346411276466915114340" + "1155247443156869141461100373", + "692814297790662384843134393", + "762278066597442149281101418" ] }, { "type": "redeemBassets", "inputQtys": [ - "1775186354725284676108288", - "926798653047669325299712", - "1408144078932167408746496" - ], - "expectedQty": "4150381548805923430834904", - "swapFee": "2491723963661751109166", - "reserves": [ - "32966270151759772812720413", - "8928275488223162636902229", - "77872202332344299506367844" - ], - "mAssetSupply": "119191893797128180813199077" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1776277551776030051532800", - "expectedQty": "1632197636314693552200547", - "swapFee": "1065766531065618030919", - "reserves": [ - "32966270151759772812720413", - "7296077851908469084701682", - "77872202332344299506367844" + "2251423235979895", + "1560256771970998", + "516224572298641" ], - "mAssetSupply": "117416682011883216379697196" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "200835867928455249920", - "outputIndex": 1, - "expectedQty": "181149914198179375154", - "swapFee": "120370925699809706", + "expectedQty": "4326211927811892", + "swapFee": "2597285528003", "reserves": [ - "32966470987627701267970333", - "7295896701994270905326528", - "77872202332344299506367844" + "1155247443154617718225120478", + "692814297789102128071163395", + "762278066596925924708802777" ], - "mAssetSupply": "117416682132254142079506902", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2609766845055662561778547965" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2238193755531387537981440", - "expectedQty": "2278808444220847450671774", - "swapFee": "1342916253318832522788", - "reserves": [ - "32966470987627701267970333", - "7295896701994270905326528", - "75593393888123452055696070" + "type": "redeemMasset", + "inputQty": "54019195450128414120345", + "expectedQtys": [ + "23905130024162093022329", + "14336163191170480369957", + "15773552587839430236327" ], - "mAssetSupply": "115179831292976073374048250" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "13493712629771606", - "expectedQty": "12243363787058876", - "swapFee": "8096227577862", + "redemptionFee": "16205758635038524236", "reserves": [ - "32966470987627701267970333", - "7295896689750907118267652", - "75593393888123452055696070" + "1155223538024593556132098149", + "692799961625910957590793438", + "762262293044338085278566450" ], - "mAssetSupply": "115179831279490456971854506" + "mAssetSupply": "2609712842065971068402951856" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "132591998503763472023552", - "744604254871115234541568", - "325758142996907319885824" + "522742961110662999179264", + "13219560156560917266432", + "267561600800787923992576" ], - "expectedQty": "1266118716250255243796252", + "expectedQty": "802566189250558072689032", + "swapFee": "481828810836836945780", "reserves": [ - "33099062986131464739993885", - "8040500944622022352809220", - "75919152031120359375581894" + "1154700795063482893132918885", + "692786742065754396673527006", + "761994731443537297354573874" ], - "mAssetSupply": "116445949995740712215650758" + "mAssetSupply": "2608910275876720510330262824" }, { - "type": "redeemBassets", - "inputQtys": [ - "3646396189982064115712", - "4427626767406217035776", - "2491866043838254546944" - ], - "expectedQty": "10895356107575134183020", - "swapFee": "6541138347553612677", + "type": "mint", + "inputIndex": 2, + "inputQty": "59260036997672783128297472", + "expectedQty": "59306471651423797344510405", "reserves": [ - "33095416589941482675878173", - "8036073317854616135773444", - "75916660165076521121034950" - ], - "mAssetSupply": "116435054639633137081467738" + "1154700795063482893132918885", + "692786742065754396673527006", + "821254768441210080482871346" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "64329841938818342912", - "expectedQty": "65374643359187334418", - "swapFee": "38597905163291005", + "inputQty": "17482140864381588602880", + "expectedQty": "17462243748620717405249", + "swapFee": "10489284518628953161", "reserves": [ - "33095416589941482675878173", - "8036073317854616135773444", - "75916594790433161933700532" + "1154700795063482893132918885", + "692786742065754396673527006", + "821237306197461459765466097" ], - "mAssetSupply": "116434990348389103426415831" + "mAssetSupply": "2668199275876564444715123510" }, { "type": "redeemMasset", - "inputQty": "1564496595183255053926", + "inputQty": "1186625082324550470860", "expectedQtys": [ - "444558230445025841998", - "107945537540014163190", - "1019758943046642202291" + "513374649078496049372", + "308009791033951672280", + "365118319552306550954" ], - "redemptionFee": "469348978554976516", + "redemptionFee": "355987524697365141", "reserves": [ - "33094972031711037650036175", - "8035965372317076121610254", - "75915575031490115291498241" + "1154700281688833814636869513", + "692786434055963362721854726", + "821236941079141907458915143" ], - "mAssetSupply": "116433426321142898726338421" + "mAssetSupply": "2668198089607469644862017791" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "501256774340466163318784", - "86803462860404445675520", - "82982875474405321867264" - ], - "expectedQty": "676586461753636082762931", - "swapFee": "406195594408826945825", - "reserves": [ - "32593715257370571486717391", - "7949161909456671675934734", - "75832592156015709969630977" + "43797495043801997312", + "59170697562604732416", + "21138107011429646336" ], - "mAssetSupply": "115756839859389262643575490" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1401225768142354073518080", - "expectedQty": "1400952459114058002534302", - "swapFee": "840735460885412444110", + "expectedQty": "124157106603729592547", "reserves": [ - "31192762798256513484183089", - "7949161909456671675934734", - "75832592156015709969630977" + "1154700325486328858438866825", + "692786493226660925326587142", + "821236962217248918888561479" ], - "mAssetSupply": "114356454826707793982501520" + "mAssetSupply": "2668198213764576248591610338" }, { "type": "redeemMasset", - "inputQty": "18183982029557106475008", + "inputQty": "330309854068747861491712", "expectedQtys": [ - "4958517439558209367096", - "1263628304194839101196", - "12054630528384169153957" + "142903353794601718605445", + "85737841378016574859293", + "101634609058854853187530" ], - "redemptionFee": "5455194608867131942", + "redemptionFee": "99092956220624358447", "reserves": [ - "31187804280816955274815993", - "7947898281152476836833538", - "75820537525487325800477020" + "1154557422132534256720261380", + "692700755385282908751727849", + "821135327608190064035373949" ], - "mAssetSupply": "114338276299872845743158454" + "mAssetSupply": "2667868003003463721354477073" }, { - "type": "redeemMasset", - "inputQty": "376290862676011661236633", - "expectedQtys": [ - "102609252576942416120421", - "26148936130403934684423", - "249452914845228010157630" - ], - "redemptionFee": "112887258802803498370", + "type": "swap", + "inputIndex": 2, + "inputQty": "35564739539829690368", + "outputIndex": 1, + "expectedQty": "35480428565053541760", + "swapFee": "21350341550959474", "reserves": [ - "31085195028240012858695572", - "7921749345022072902149115", - "75571084610642097790319390" + "1154557422132534256720261380", + "692700719904854343698186089", + "821135363172929603865064317" ], - "mAssetSupply": "113962098324455636885420191" + "mAssetSupply": "2667868003024814062905436547", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "9258603839894624256", - "expectedQty": "9100275666142907127", + "inputIndex": 0, + "inputQty": "20981232097462323953795072", + "expectedQty": "20933491761820200921150030", "reserves": [ - "31085195028240012858695572", - "7921749345022072902149115", - "75571093869245937684943646" + "1175538654229996580674056452", + "692700719904854343698186089", + "821135363172929603865064317" ] }, { - "type": "redeemMasset", - "inputQty": "438718047894182553", - "expectedQtys": [ - "119632262849996977", - "30487079106774671", - "290837517905683717" + "type": "mintMulti", + "inputQtys": [ + "272862569730253824", + "1022139550226474368", + "513042885446798016" ], - "redemptionFee": "131615414368254", + "expectedQty": "1810174807223016913", "reserves": [ - "31085194908607750008698595", - "7921749314534993795374444", - "75571093578408419779259929" + "1175538654502859150404310276", + "692700720926993893924660457", + "821135363685972489311862333" ], - "mAssetSupply": "113962106986144870548513019" + "mAssetSupply": "2688801496596809071049603490" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "37567787328430161920", - "expectedQty": "34597250344061444517", - "swapFee": "22540672397058097", + "type": "mint", + "inputIndex": 0, + "inputQty": "18313169126809450502422528", + "expectedQty": "18269852295434225859482578", "reserves": [ - "31085194908607750008698595", - "7921714717284649733929927", - "75571093578408419779259929" - ], - "mAssetSupply": "113962069440898214515409196" + "1193851823629668600906732804", + "692700720926993893924660457", + "821135363685972489311862333" + ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "906825955823105987313664", - "expectedQty": "891195581703650636613839", + "inputIndex": 1, + "inputQty": "16967445019807547503149056", + "expectedQty": "17007747366303449096550539", "reserves": [ - "31085194908607750008698595", - "7921714717284649733929927", - "76477919534231525766573593" + "1193851823629668600906732804", + "709668165946801441427809513", + "821135363685972489311862333" ] }, { "type": "redeemBassets", "inputQtys": [ - "81481750636574965760", - "89444913774660665344", - "55971657753636921344" + "1206486075208765014016", + "8803107999140078944256", + "59216030465325883457536" ], - "expectedQty": "233730426407606524403", - "swapFee": "140322449314152406", + "expectedQty": "69286107588188060547746", + "swapFee": "41596622526428693544", "reserves": [ - "31085113426857113433732835", - "7921625272370875073264583", - "76477863562573772129652249" + "1193850617143593392141718788", + "709659362838802301348865257", + "821076147655507163428404797" ], - "mAssetSupply": "114853031292175457545498632" + "mAssetSupply": "2724009810150958557945088861" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4153846113132579303456768", - "expectedQty": "4143796352797974266127494", - "swapFee": "2492307667879547582074", - "reserves": [ - "26941317074059139167605341", - "7921625272370875073264583", - "76477863562573772129652249" + "type": "redeemMasset", + "inputQty": "3779061389973501603584409", + "expectedQtys": [ + "1655750748548753568786248", + "984226170646314661480896", + "1138750046759506693308032" ], - "mAssetSupply": "110701677486710757789623938" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1162102691032820", - "expectedQty": "1157243101258058", - "swapFee": "697261614619", + "redemptionFee": "1133718416992050481075", "reserves": [ - "26941317072901896066347283", - "7921625272370875073264583", - "76477863562573772129652249" + "1192194866395044638572932540", + "708675136668155986687384361", + "819937397608747656735096765" ], - "mAssetSupply": "110701677485549352360205737" + "mAssetSupply": "2720231882479402048391985527" }, { - "type": "redeemMasset", - "inputQty": "372807595125595648819", - "expectedQtys": [ - "90702459775166258118", - "26669479286291169159", - "257475546748681412980" + "type": "mintMulti", + "inputQtys": [ + "25504568502365859086336", + "28688799847485467000832", + "6599388135964529393664" ], - "redemptionFee": "111842278537678694", + "expectedQty": "60803205917829291182967", "reserves": [ - "26941226370442120900089165", - "7921598602891588782095424", - "76477606087027023448239269" + "1192220370963547004432018876", + "708703825468003472154385193", + "819943996996883621264490429" ], - "mAssetSupply": "110701304789796505302235612" + "mAssetSupply": "2720292685685319877683168494" }, { "type": "redeemMasset", - "inputQty": "17513262900984861740236", + "inputQty": "688630833780485617876992", "expectedQtys": [ - "4260900380190324191827", - "1252843580120291430563", - "12095346231520183410624" + "301715110478085877143009", + "179351618379500632492393", + "207503159369621413899038" ], - "redemptionFee": "5253978870295458522", + "redemptionFee": "206589250134145685363", "reserves": [ - "26936965470061930575897338", - "7920345759311468490664861", - "76465510740795503264828645" + "1191918655853068918554875867", + "708524473849623971521892800", + "819736493837513999850591391" ], - "mAssetSupply": "110683796780874390735953898" + "mAssetSupply": "2719604261440789526210976865" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "162378060290661954879488", - "expectedQty": "159374806211053418681375", + "type": "redeemBassets", + "inputQtys": [ + "86541043312240459776", + "94261661707814780928", + "57902128206279680000" + ], + "expectedQty": "238759238230277032673", + "swapFee": "143341547866886351", "reserves": [ - "26936965470061930575897338", - "7920345759311468490664861", - "76627888801086165219708133" - ] + "1191918569312025606314416091", + "708524379587962263707111872", + "819736435935385793570911391" + ], + "mAssetSupply": "2719604022681551295933944192" }, { "type": "redeemMasset", - "inputQty": "295117468013915540344012", + "inputQty": "3712932336940517793831321", "expectedQtys": [ - "71697553047239225267202", - "21081417313388443409566", - "203958835983955122212200" + "1626775555632733666075746", + "967020877901777143398062", + "1118807299739356173039476" ], - "redemptionFee": "88535240404174662103", + "redemptionFee": "1113879701082155338149", "reserves": [ - "26865267917014691350630136", - "7899264341998080047255295", - "76423929965102210097495933" + "1190291793756392872648340345", + "707557358710060486563713810", + "818617628635646437397871915" ], - "mAssetSupply": "110548142654311932788953364" + "mAssetSupply": "2715892204224311860295451020" }, { - "type": "redeemBassets", - "inputQtys": [ - "11534334530976309248", - "6634024010616518656", - "30482849764569415680" - ], - "expectedQty": "48697422166737953497", - "swapFee": "29235994896980960", + "type": "swap", + "inputIndex": 0, + "inputQty": "24629851348546712722472960", + "outputIndex": 2, + "expectedQty": "24533811982748388149429756", + "swapFee": "14742549718717302605045", "reserves": [ - "26865256382680160374320888", - "7899257707974069430736639", - "76423899482252445528080253" + "1214921645104939585370813305", + "707557358710060486563713810", + "794083816652898049248442159" ], - "mAssetSupply": "110548093956889766050999867" + "mAssetSupply": "2715906946774030577598056065", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "23747603042609238376448", - "36050243820277102280704", - "17333446280574568235008" + "type": "redeemMasset", + "inputQty": "15604469751825519607808", + "expectedQtys": [ + "6978339453776748455620", + "4064110185204574513369", + "4561106018385160688839" ], - "expectedQty": "79975044080956731276954", + "redemptionFee": "4681340925547655882", "reserves": [ - "26889003985722769612697336", - "7935307951794346533017343", - "76441232928533020096315261" + "1214914666765485808622357685", + "707553294599875281989200441", + "794079255546879664087753320" ], - "mAssetSupply": "110628069000970722782276821" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "6767560778858005504", - "expectedQty": "7342865883201460826", - "reserves": [ - "26889003985722769612697336", - "7935314719355125391022847", - "76441232928533020096315261" - ] + "mAssetSupply": "2715891346985619677626104139" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "202700627089879306600448", - "expectedQty": "186361686880101160947688", - "swapFee": "121620376253927583960", + "type": "redeemMasset", + "inputQty": "44567233165163338137", + "expectedQtys": [ + "19930525451256897224", + "11607324639258442665", + "13026772370052536219" + ], + "redemptionFee": "13370169949549001", "reserves": [ - "26889003985722769612697336", - "7748953032475024230075159", - "76441232928533020096315261" + "1214914646834960357365460461", + "707553282992550642730757776", + "794079242520107294035217101" ], - "mAssetSupply": "110425497337122980604721159" + "mAssetSupply": "2715891302431756682412315003" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "66569285916727525244928", - "outputIndex": 1, - "expectedQty": "61264813802538899217865", - "swapFee": "40083700604045478573", + "type": "redeemBassets", + "inputQtys": [ + "1066829967747381198848", + "699576977785893814272", + "2681457346684598616064" + ], + "expectedQty": "4449485185602617189925", + "swapFee": "2671293887694186826", "reserves": [ - "26955573271639497137942264", - "7687688218672485330857294", - "76441232928533020096315261" + "1214913580004992609984261613", + "707552583415572856836943504", + "794076561062760609436601037" ], - "mAssetSupply": "110425537420823584650199732", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2715886852946571079795125078" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "458555654608744049803264", - "outputIndex": 0, - "expectedQty": "447818399463517893468172", - "swapFee": "269895796762525130777", + "inputIndex": 0, + "inputQty": "175482382730566205440", + "outputIndex": 2, + "expectedQty": "174756179280856409299", + "swapFee": "105023430073835569", "reserves": [ - "26507754872175979244474092", - "7687688218672485330857294", - "76899788583141764146118525" + "1214913755487375340550467053", + "707552583415572856836943504", + "794076386306581328580191738" ], - "mAssetSupply": "110425807316620347175330509", + "mAssetSupply": "2715886853051594509868960647", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1832477798077800629927936", - "outputIndex": 0, - "expectedQty": "1785234001624483827898688", - "swapFee": "1077964923778695156377", + "type": "redeemMasset", + "inputQty": "1460097277306471146586112", + "expectedQtys": [ + "652958018805816103838463", + "380275662351548903586150", + "426778066872101648686958" + ], + "redemptionFee": "438029183191941343975", "reserves": [ - "24722520870551495416575404", - "7687688218672485330857294", - "78732266381219564776046461" + "1214260797468569524446628590", + "707172307753221307933357354", + "793649608239709226931504780" ], - "mAssetSupply": "110426885281544125870486886", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2714427193803471230663718510" }, { "type": "swap", "inputIndex": 2, - "inputQty": "36310109536678865534976", + "inputQty": "46343945792215629292371968", "outputIndex": 0, - "expectedQty": "35298232116559844395392", - "swapFee": "21337895510394265828", + "expectedQty": "46459963591414213486118605", + "swapFee": "27829185332408123859515", "reserves": [ - "24687222638434935572180012", - "7687688218672485330857294", - "78768576490756243641581437" + "1167800833877155310960509985", + "707172307753221307933357354", + "839993554031924856223876748" ], - "mAssetSupply": "110426906619439636264752714", + "mAssetSupply": "2714455022988803638787578025", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "8519322527090734962573312", - "expectedQty": "8679569523725228895771784", - "swapFee": "5111593516254440977543", - "reserves": [ - "24687222638434935572180012", - "7687688218672485330857294", - "70089006967031014745809653" - ], - "mAssetSupply": "101912695685865155743156945" - }, { "type": "swap", "inputIndex": 2, - "inputQty": "628908430718466212757504", - "outputIndex": 1, - "expectedQty": "569756614240653755647686", - "swapFee": "370686123293791050700", + "inputQty": "4553562754453376335872", + "outputIndex": 0, + "expectedQty": "4562991582442421483133", + "swapFee": "2733486633497920017", "reserves": [ - "24687222638434935572180012", - "7117931604431831575209608", - "70717915397749480958567157" + "1167796270885572868539026852", + "707172307753221307933357354", + "839998107594679309600212620" ], - "mAssetSupply": "101913066371988449534207645", + "mAssetSupply": "2714455025722290272285498042", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "375545659659047770521", - "expectedQtys": [ - "90944157477093067403", - "26221430503762185757", - "260514571791960616827" + "type": "redeemBassets", + "inputQtys": [ + "96381791316045887176704", + "295859874466182920667136", + "200193489296701901504512" ], - "redemptionFee": "112663697897714331", + "expectedQty": "592998792666891026816649", + "swapFee": "356012883330132695707", "reserves": [ - "24687131694277458479112609", - "7117905383001327813023851", - "70717654883177688997950330" + "1167699889094256822651850148", + "706876447878755125012690218", + "839797914105382607698708108" ], - "mAssetSupply": "101912690938992488384151455" + "mAssetSupply": "2713862026929623381258681393" }, { "type": "swap", "inputIndex": 1, - "inputQty": "40350875730670444544", - "outputIndex": 0, - "expectedQty": "43801881196826988443", - "swapFee": "26396283954811912", + "inputQty": "48994796287128145470947328", + "outputIndex": 2, + "expectedQty": "49020200208214354182155592", + "swapFee": "29455955962434131200607", "reserves": [ - "24687087892396261652124166", - "7117945733877058483468395", - "70717654883177688997950330" + "1167699889094256822651850148", + "755871244165883270483637546", + "790777713897168253516552516" ], - "mAssetSupply": "101912690965388772338963367", + "mAssetSupply": "2713891482885585815389882000", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "12477855462516020215808", - "expectedQty": "12240347165647612341906", + "inputQty": "9015074199825543069696", + "expectedQty": "9024938193052657388213", "reserves": [ - "24687087892396261652124166", - "7117945733877058483468395", - "70730132738640205018166138" + "1167699889094256822651850148", + "755871244165883270483637546", + "790786728971368079059622212" ] }, { "type": "mintMulti", "inputQtys": [ - "44549548603759183003648", - "156206242198810418741248", - "60626214838600619524096" - ], - "expectedQty": "274229049039055773805922", - "reserves": [ - "24731637441000020835127814", - "7274151976075868902209643", - "70790758953478805637690234" - ], - "mAssetSupply": "102199160361593475725111195" - }, - { - "type": "mintMulti", - "inputQtys": [ - "348453875578009288704", - "4675124902774960029696", - "3936561264661053308928" + "2675374130162761094660096", + "7357956670835514130038784", + "7200795306827607502225408" ], - "expectedQty": "9293014314636771894143", + "expectedQty": "17247578236003972578045815", "reserves": [ - "24731985894875598844416518", - "7278827100978643862239339", - "70794695514743466690999162" + "1170375263224419583746510244", + "763229200836718784613676330", + "797987524278195686561847620" ], - "mAssetSupply": "102208453375908112497005338" + "mAssetSupply": "2731148086059782840625316028" }, { "type": "redeemBassets", "inputQtys": [ - "309135091018902563454976", - "130629712272352130105344", - "160871535810551931207680" - ], - "expectedQty": "610301865879640979479880", - "swapFee": "366400960103846895825", - "reserves": [ - "24422850803856696280961542", - "7148197388706291732133995", - "70633823978932914759791482" - ], - "mAssetSupply": "101598151510028471517525458" - }, - { - "type": "redeemMasset", - "inputQty": "22890259503883851346739", - "expectedQtys": [ - "5500864639765964254553", - "1610019508754174004070", - "15909162604220164495979" + "13766176944974092132417536", + "2238660604861786582155264", + "22885239862052159964053504" ], - "redemptionFee": "6867077851165155404", + "expectedQty": "38890420613770172407767414", + "swapFee": "23348261325057137727296", "reserves": [ - "24417349939216930316706989", - "7146587369197537558129925", - "70617914816328694595295503" + "1156609086279445491614092708", + "760990540231856998031521066", + "775102284416143526597794116" ], - "mAssetSupply": "101575268117602438831334123" + "mAssetSupply": "2692257665446012668217548614" }, { - "type": "mintMulti", - "inputQtys": [ - "4794180274618593443840", - "5896804710480940630016", - "4042310736112105553920" - ], - "expectedQty": "15201791722818566482416", + "type": "redeem", + "inputIndex": 0, + "inputQty": "6893574092324257621082112", + "expectedQty": "6903995398437777602454613", + "swapFee": "4136144455394554572649", "reserves": [ - "24422144119491548910150829", - "7152484173908018498759941", - "70621957127064806700849423" + "1149705090881007714011638095", + "760990540231856998031521066", + "775102284416143526597794116" ], - "mAssetSupply": "101590469909325257397816539" + "mAssetSupply": "2685368227498143805151039151" }, { - "type": "redeemBassets", - "inputQtys": [ - "5029463810044175", - "1768331513609845", - "15031781977412884" - ], - "expectedQty": "21721803695470698", - "swapFee": "13040906761339", + "type": "mint", + "inputIndex": 1, + "inputQty": "172947600013426688000", + "expectedQty": "173186447519625842739", "reserves": [ - "24422144114462085100106654", - "7152484172139686985150096", - "70621957112033024723436539" - ], - "mAssetSupply": "101590469887603453702345841" + "1149705090881007714011638095", + "760990713179457011458209066", + "775102284416143526597794116" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1644415451494319", - "2013593789503693", - "34497164278057844" + "71322471032149166260224", + "90384271302599179763712", + "128827429504865894662144" ], - "expectedQty": "37685571350779964", - "swapFee": "22624917761124", + "expectedQty": "290663573528588884026228", + "swapFee": "174502845824648119287", "reserves": [ - "24422144112817669648612335", - "7152484170126093195646403", - "70621957077535860445378695" + "1149633768409975564845377871", + "760900328908154412278445354", + "774973456986638660703131972" ], - "mAssetSupply": "101590469849917882351565877" + "mAssetSupply": "2685077737111062735892855662" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "26113378195499722473472", - "expectedQty": "28432483906902814703261", + "inputIndex": 2, + "inputQty": "35019863962408567271587840", + "expectedQty": "35056357113554534856968404", "reserves": [ - "24422144112817669648612335", - "7178597548321592918119875", - "70621957077535860445378695" + "1149633768409975564845377871", + "760900328908154412278445354", + "809993320949047227974719812" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1520746297021913297321984", - "expectedQty": "1370579441655395790514803", - "swapFee": "912447778213147978393", + "inputQty": "1063104920809789718528", + "expectedQty": "1060852561200778500947", + "swapFee": "637862952485873831", "reserves": [ - "24422144112817669648612335", - "5808018106666197127605072", - "70621957077535860445378695" + "1149633768409975564845377871", + "760899268055593211499944407", + "809993320949047227974719812" ], - "mAssetSupply": "100099068484581085016925547" + "mAssetSupply": "2720133031757559413445979369" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "16121379105858360705024", - "14625653031644486959104", - "19474146166518096855040" + "801726496881828954112", + "723464114821464588288", + "1254318297674860724224" ], - "expectedQty": "51796336429016254035505", - "swapFee": "31096459733249702242", + "expectedQty": "2780144638218389366443", "reserves": [ - "24406022733711811287907311", - "5793392453634552640645968", - "70602482931369342348523655" + "1149634570136472446674331983", + "760899991519708032964532695", + "809994575267344902835444036" ], - "mAssetSupply": "100047272148152068762890042" + "mAssetSupply": "2720135811902197631835345812" }, { - "type": "mintMulti", - "inputQtys": [ - "226096421907145726885888", - "490736538348701836378112", - "31956983410411526160384" + "type": "redeemMasset", + "inputQty": "178493470398846956103270", + "expectedQtys": [ + "75415610697561438944163", + "49914763378606570104759", + "53135350260254612153204" ], - "expectedQty": "809935467065293938814368", + "redemptionFee": "53548041119654086830", "reserves": [ - "24632119155618957014793199", - "6284128991983254477024080", - "70634439914779753874684039" + "1149559154525774885235387820", + "760850076756329426394427936", + "809941439917084648223290832" ], - "mAssetSupply": "100857207615217362701704410" + "mAssetSupply": "2719957371979839904533329372" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "765847638423910875136", - "2359642052269160529920", - "3263097554214957088768" + "175662780939736650350592", + "199190542764652844023808", + "201836117446820565614592" ], - "expectedQty": "6593077993818456205401", + "expectedQty": "576825393571426703895469", + "swapFee": "346303017953628199256", "reserves": [ - "24632885003257380925668335", - "6286488634035523637554000", - "70637703012333968831772807" + "1149383491744835148585037228", + "760650886213564773550404128", + "809739603799637827657676240" ], - "mAssetSupply": "100863800693211181157909811" + "mAssetSupply": "2719380546586268477829433903" }, { - "type": "redeemMasset", - "inputQty": "44150616275316407428710", - "expectedQtys": [ - "10779197085024488379765", - "2750928279414874579090", - "30910618967396152669495" - ], - "redemptionFee": "13245184882594922228", + "type": "redeem", + "inputIndex": 1, + "inputQty": "12758015878497138900992", + "expectedQty": "12730979002864622666203", + "swapFee": "7654809527098283340", "reserves": [ - "24622105806172356437288570", - "6283737705756108762974910", - "70606792393366572679103312" + "1149383491744835148585037228", + "760638155234561908927737925", + "809739603799637827657676240" ], - "mAssetSupply": "100819663322120747345403329" + "mAssetSupply": "2719367796225199507788816251" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3465720342665319415808", - "expectedQty": "3478064664444029716802", + "type": "mintMulti", + "inputQtys": [ + "97395621702746652016640", + "258232107083021233946624", + "159270502208386946301952" + ], + "expectedQty": "515240867223204466997494", "reserves": [ - "24625571526515021756704378", - "6283737705756108762974910", - "70606792393366572679103312" - ] + "1149480887366537895237053868", + "760896387341644930161684549", + "809898874301846214603978192" + ], + "mAssetSupply": "2719883037092422712255813745" }, { - "type": "redeemMasset", - "inputQty": "88714576445750829803110", - "expectedQtys": [ - "21661611843521304064015", - "5527420428071212070919", - "62108484617073412989021" - ], - "redemptionFee": "26614372933725248940", + "type": "swap", + "inputIndex": 1, + "inputQty": "5004740931328093718577152", + "outputIndex": 0, + "expectedQty": "5019015367773644461888035", + "swapFee": "3007340622146874773447", "reserves": [ - "24603909914671500452640363", - "6278210285328037550903991", - "70544683908749499266114291" + "1144461871998764250775165833", + "765901128272973023880261701", + "809898874301846214603978192" ], - "mAssetSupply": "100734453424712374270565961" + "mAssetSupply": "2719886044433044859130587192", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "175356062176778059776", - "1558451633193581805568", - "3825299035972999053312" + "131132039452296896", + "145844463352083552", + "8949187474922328" ], - "expectedQty": "5657368255836202359933", + "expectedQty": "285891867432352588", "reserves": [ - "24604085270733677230700139", - "6279768736961231132709559", - "70548509207785472265167603" + "1144461872129896290227462729", + "765901128418817487232345253", + "809898874310795402078900520" ], - "mAssetSupply": "100740110792968210472925894" + "mAssetSupply": "2719886044718936726562939780" }, { "type": "redeemBassets", "inputQtys": [ - "9887227716655751626752", - "49235228299061723398144", - "12825911167142112264192" + "1063948252307397988581376", + "5324377901658788518166528", + "6512309042425935760982016" ], - "expectedQty": "77407508745433981553901", - "swapFee": "46472388680468670134", + "expectedQty": "12912308939400224143413847", + "swapFee": "7752036585591489379676", "reserves": [ - "24594198043017021479073387", - "6230533508662169409311415", - "70535683296618330152903411" + "1143397923877588892238881353", + "760576750517158698714178725", + "803386565268369466317918504" ], - "mAssetSupply": "100662703284222776491371993" + "mAssetSupply": "2706973735779536502419525933" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3154640538670439333888", - "outputIndex": 2, - "expectedQty": "3597222095602802871589", - "swapFee": "2113371990363869337", + "type": "redeemBassets", + "inputQtys": [ + "150343990080652771328", + "134049523415575068672", + "21446599074649513984" + ], + "expectedQty": "305761328292141633329", + "swapFee": "183566937137567520", "reserves": [ - "24594198043017021479073387", - "6233688149200839848645303", - "70532086074522727350031822" + "1143397773533598811586110025", + "760576616467635283139110053", + "803386543821770391668404520" ], - "mAssetSupply": "100662705397594766855241330", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2706973430018208210277892604" }, { "type": "redeemMasset", - "inputQty": "144293469939245609123840", + "inputQty": "469801848079863042067660", "expectedQtys": [ - "35243614080651352202615", - "8932907633145716197711", - "101072847244944092572015" + "198379943454688562238795", + "131960328820225857124401", + "139387867306300311157259" ], - "redemptionFee": "43288040981773682737", + "redemptionFee": "140940554423958912620", "reserves": [ - "24558954428936370126870772", - "6224755241567694132447592", - "70431013227277783257459807" + "1143199393590144123023871230", + "760444656138815057281985652", + "803247155954464091357247261" ], - "mAssetSupply": "100518455215696503019800227" + "mAssetSupply": "2706503769110682771194737564" }, { - "type": "redeemMasset", - "inputQty": "446885527669019444143718", - "expectedQtys": [ - "109151585875830702853253", - "27665750521750920337573", - "313028667846749440693488" + "type": "redeemBassets", + "inputQtys": [ + "17500789924807431753302016", + "16634569629531964696428544", + "15612898224267741819305984" ], - "redemptionFee": "134065658300705833243", + "expectedQty": "49752877005089170854630025", + "swapFee": "29869647991848611679785", "reserves": [ - "24449802843060539424017519", - "6197089491045943212110019", - "70117984559431033816766319" + "1125698603665336691270569214", + "743810086509283092585557108", + "787634257730196349537941277" ], - "mAssetSupply": "100071703753685784281489752" + "mAssetSupply": "2656750892105593600340107539" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "396280335017032688861184", - "773425907600786309775360", - "661247645374257196695552" + "11918119458292281796198400", + "5767053795489846346645504", + "9141446254507611912142848" ], - "expectedQty": "1899931785272500390332611", + "expectedQty": "26820064501728192703380887", + "swapFee": "16101699720869437284399", "reserves": [ - "24846083178077572112878703", - "6970515398646729521885379", - "70779232204805291013461871" + "1113780484207044409474370814", + "738043032713793246238911604", + "778492811475688737625798429" ], - "mAssetSupply": "101971635538958284671822363" + "mAssetSupply": "2629930827603865407636726652" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4293929336627972947312640", - "expectedQty": "4300574591399761885949968", + "inputQty": "45127122507825653219328", + "expectedQty": "45037014051344985401760", "reserves": [ - "29140012514705545060191343", - "6970515398646729521885379", - "70779232204805291013461871" + "1113825611329552235127590142", + "738043032713793246238911604", + "778492811475688737625798429" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "64990680967677919232", - "1388822106727703117824", - "670235132372752269312" + "72954408627376660480", + "244061124435288227840", + "527283801642122018816" ], - "expectedQty": "2245696741395997541098", - "swapFee": "1348226981026214253", + "expectedQty": "845018318477366117201", "reserves": [ - "29139947524024577382272111", - "6969126576540001818767555", - "70778561969672918261192559" + "1113825684283960862504250622", + "738043276774917681527139444", + "778493338759490379747817245" ], - "mAssetSupply": "106269964433616650560231233" + "mAssetSupply": "2629976709636235229988245613" }, { "type": "mintMulti", "inputQtys": [ - "102563669863937664352256", - "116296991583012458070016", - "131851718982586997932032" + "1431454959801756", + "1467040484715927", + "236117531939898" ], - "expectedQty": "359365332089285986596981", + "expectedQty": "3134161866277340", "reserves": [ - "29242511193888515046624367", - "7085423568123014276837571", - "70910413688655505259124591" + "1113825684285392317464052378", + "738043276776384722011855371", + "778493338759726497279757143" ], - "mAssetSupply": "106629329765705936546828214" + "mAssetSupply": "2629976709639369391854522953" }, { - "type": "redeemMasset", - "inputQty": "55129866058273318502", - "expectedQtys": [ - "15114528883847234356", - "3662231279134088285", - "36651349426062085698" + "type": "redeemBassets", + "inputQtys": [ + "6728837450219645501964288", + "19948598691888945975787520", + "16444624036850468533567488" ], - "redemptionFee": "16538959817481995", + "expectedQty": "43154986594512098573716075", + "swapFee": "25908537078954631923383", "reserves": [ - "29242496079359631199390011", - "7085419905891735142749286", - "70910377037306079197038893" + "1107096846835172671962088090", + "718094678084495776036067851", + "762048714722876028746189655" ], - "mAssetSupply": "106629274652378838090991707" + "mAssetSupply": "2586821723044857293280806878" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "3887569159928572937240576", - "expectedQty": "3879966325262854451682527", - "swapFee": "2332541495957143762344", + "inputQty": "21502233614071336", + "expectedQty": "21457226139044225", "reserves": [ - "25362529754096776747707484", - "7085419905891735142749286", - "70910377037306079197038893" - ], - "mAssetSupply": "102744038033946222297513475" + "1107096846856674905576159426", + "718094678084495776036067851", + "762048714722876028746189655" + ] }, { - "type": "redeemMasset", - "inputQty": "18459907354460372231782", - "expectedQtys": [ - "4555490532656199472244", - "1272647626799524052099", - "12736566675031718251875" - ], - "redemptionFee": "5537972206338111669", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1016980792271236514185216", + "expectedQty": "1014747278109450710545491", + "swapFee": "610188475362741908511", "reserves": [ - "25357974263564120548235240", - "7084147258264935618697187", - "70897640470631047478787018" + "1107096846856674905576159426", + "717079930806386325325522360", + "762048714722876028746189655" ], - "mAssetSupply": "102725583664563968263393362" + "mAssetSupply": "2585805352462518645647574398" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "3663476737154454913024", + "inputIndex": 0, + "inputQty": "256794077434057621504", "outputIndex": 2, - "expectedQty": "4074268991279428599979", - "swapFee": "2399700675089339365", + "expectedQty": "255849857950233607688", + "swapFee": "153753353787163811", "reserves": [ - "25357974263564120548235240", - "7087810735002090073610211", - "70893566201639768050187039" + "1107097103650752339633780930", + "717079930806386325325522360", + "762048458873018078512581967" ], - "mAssetSupply": "102725586064264643352732727", + "mAssetSupply": "2585805352616271999434738209", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "84941069504072468398080", - "55984894904275345408", - "58913776545412551802880" + "1561602366624234261708800", + "874371104797620980154368", + "252086239321117383720960" ], - "expectedQty": "143062854736945570129784", + "expectedQty": "2686439314039532488768831", + "swapFee": "1612831287196037115530", "reserves": [ - "25442915333068193016633320", - "7087866719896994348955619", - "70952479978185180601989919" + "1105535501284128105372072130", + "716205559701588704345367992", + "761796372633696961128861007" ], - "mAssetSupply": "102868648919001588922862511" + "mAssetSupply": "2583118913302232466945969378" }, { "type": "redeemBassets", "inputQtys": [ - "607102391311726270218240", - "278086039727321110282240", - "527684316862805182513152" + "3065778486536162504605696", + "40871516448857630422597632", + "39250691308110758599983104" ], - "expectedQty": "1431008374694547366546950", - "swapFee": "859120497114997418379", + "expectedQty": "83293804877112394951013017", + "swapFee": "50006286698286408815897", "reserves": [ - "24835812941756466746415080", - "6809780680169673238673379", - "70424795661322375419476767" + "1102469722797591942867466434", + "675334043252731073922770360", + "722545681325586202528877903" ], - "mAssetSupply": "101437640544307041556315561" + "mAssetSupply": "2499825108425120071994956361" }, { - "type": "redeemMasset", - "inputQty": "368652710193365201715", - "expectedQtys": [ - "90233201056276138674", - "24741219894992407336", - "255866589153245741851" + "type": "redeemBassets", + "inputQtys": [ + "160617994307872302825472", + "127035111134244183736320", + "70798292915955062276096" ], - "redemptionFee": "110595813058009560", + "expectedQty": "358388819377075305718515", + "swapFee": "215162389059680992026", "reserves": [ - "24835722708555410470276406", - "6809755938949778246266043", - "70424539794733222173734916" + "1102309104803284070564640962", + "675207008141596829739034040", + "722474883032670247466601807" ], - "mAssetSupply": "101437272002192661249123406" + "mAssetSupply": "2499466719605742996689237846" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "3714937425082995703808", - "outputIndex": 0, - "expectedQty": "3627337697858084237446", - "swapFee": "2185173073142161710", + "type": "redeemBassets", + "inputQtys": [ + "2156937649746149573132288", + "1449718077454245106286592", + "1686285520258015340527616" + ], + "expectedQty": "5292470159278613333947407", + "swapFee": "3177388528684378627544", "reserves": [ - "24832095370857552386038960", - "6809755938949778246266043", - "70428254732158305169438724" + "1100152167153537920991508674", + "673757290064142584632747448", + "720788597512412232126074191" ], - "mAssetSupply": "101437274187365734391285116", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2494174249446464383355290439" }, { - "type": "redeemBassets", - "inputQtys": [ - "553006567232086", - "646673415234264", - "296538844809243" + "type": "redeemMasset", + "inputQty": "13980710260398114406", + "expectedQtys": [ + "6164883797564574720", + "3775509902193160978", + "4039057576708309291" ], - "expectedQty": "1555511198165077", - "swapFee": "933867039122", + "redemptionFee": "4194213078119434", "reserves": [ - "24832095370304545818806874", - "6809755938303104831031779", - "70428254731861766324629481" + "1100152160988654123426933954", + "673757286288632682439586470", + "720788593473354655417764900" ], - "mAssetSupply": "101437274185810223193120039" + "mAssetSupply": "2494174235469948336035295467" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "307773829558021920915456", - "outputIndex": 2, - "expectedQty": "342833890927599213008830", - "swapFee": "201951294208750094709", + "type": "redeem", + "inputIndex": 0, + "inputQty": "27236534798657666802515968", + "expectedQty": "27283238206531096258135293", + "swapFee": "16341920879194600081509", "reserves": [ - "24832095370304545818806874", - "7117529767861126751947235", - "70085420840934167111620651" + "1072868922782123027168798661", + "673757286288632682439586470", + "720788593473354655417764900" ], - "mAssetSupply": "101437476137104431943214748", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2466954042592169863832861008" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "6953483554304887357440", + "inputIndex": 1, + "inputQty": "3913896349950094073659392", "outputIndex": 0, - "expectedQty": "6795802457799969907384", - "swapFee": "4093847565206778235", + "expectedQty": "3927048676937443139606574", + "swapFee": "2352415008055160374187", "reserves": [ - "24825299567846745848899490", - "7117529767861126751947235", - "70092374324488471998978091" + "1068941874105185584029192087", + "677671182638582776513245862", + "720788593473354655417764900" ], - "mAssetSupply": "101437480230951997149992983", + "mAssetSupply": "2466956395007177918993235195", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "45735753790447775907840", - "7115405880226156118016", - "56139429425302669885440" - ], - "expectedQty": "108726170486716475304166", - "swapFee": "65274867212357299562", - "reserves": [ - "24779563814056298072991650", - "7110414361980900595829219", - "70036234895063169329092651" - ], - "mAssetSupply": "101328754060465280674688817" - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "31464505737829318656", - "expectedQty": "28879477094355970825", - "swapFee": "18878703442697591", + "inputQty": "665944053250646716973056", + "expectedQty": "664413559382187348894958", + "swapFee": "399566431950388030183", "reserves": [ - "24779563814056298072991650", - "7110385482503806239858394", - "70036234895063169329092651" + "1068941874105185584029192087", + "677006769079200589164350904", + "720788593473354655417764900" ], - "mAssetSupply": "101328722614838246288067752" + "mAssetSupply": "2466290850520359222664292322" }, { - "type": "redeemBassets", - "inputQtys": [ - "174926937342969315328", - "285615582994643386368", - "763884141720705302528" + "type": "redeemMasset", + "inputQty": "4989435455905034330020249", + "expectedQtys": [ + "2161876593302427175225896", + "1369209236755565708544180", + "1457755586807603332998688" ], - "expectedQty": "1236070505361164827289", - "swapFee": "742087555750148985", + "redemptionFee": "1496830636771510299006", "reserves": [ - "24779388887118955103676322", - "7110099866920811596472026", - "70035471010921448623790123" + "1066779997511883156853966191", + "675637559842445023455806724", + "719330837886547052084766212" ], - "mAssetSupply": "101327486544332885123240463" + "mAssetSupply": "2461302911895090959844571079" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "568117716674140971204608", - "expectedQty": "518178738939134340166551", - "swapFee": "340870630004484582722", + "inputQty": "3468146465926207498092544", + "expectedQty": "3460095949305634624459676", + "swapFee": "2080887879555724498855", "reserves": [ - "24779388887118955103676322", - "6591921127981677256305475", - "70035471010921448623790123" + "1066779997511883156853966191", + "672177463893139388831347048", + "719330837886547052084766212" ], - "mAssetSupply": "100759709698288748636618577" + "mAssetSupply": "2457836846317044308070977390" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "192170627409504224", - "expectedQty": "192800178014964110", + "type": "redeemMasset", + "inputQty": "329694393892263244804915", + "expectedQtys": [ + "143055008637992732088033", + "90138878801414692457368", + "96462137898576658915707" + ], + "redemptionFee": "98908318167678973441", "reserves": [ - "24779389079289582513180546", - "6591921127981677256305475", - "70035471010921448623790123" - ] + "1066636942503245164121878158", + "672087325014337974138889680", + "719234375748648475425850505" + ], + "mAssetSupply": "2457507250831470212505145916" + }, + { + "type": "redeemMasset", + "inputQty": "72120828876198690527641", + "expectedQtys": [ + "31293361333997218489170", + "19717929008078883055916", + "21101145391901618169846" + ], + "redemptionFee": "21636248662859607158", + "reserves": [ + "1066605649141911166903388988", + "672067607085329895255833764", + "719213274603256573807680659" + ], + "mAssetSupply": "2457435151638842676674225433" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4092686983491298462269440", - "hardLimitError": true + "inputIndex": 2, + "inputQty": "19218319815472331767152640", + "expectedQty": "19185016131238279879173244", + "swapFee": "11530991889283399060291", + "reserves": [ + "1066605649141911166903388988", + "672067607085329895255833764", + "700028258472018293928507415" + ], + "mAssetSupply": "2438228362815259628306133084" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7541341036566629318656", - "1239828948578608349184", - "12129081635353890127872" + "131727034433197528055808", + "119691807720865632616448", + "18954590658531566813184" ], - "expectedQty": "20818965800369536339903", - "swapFee": "12498878807506225539", + "expectedQty": "270292710787059014350228", "reserves": [ - "24771847738253015883861890", - "6590681299033098647956291", - "70023341929286094733662251" + "1066737376176344364431444796", + "672187298893050760888450212", + "700047213062676825495320599" ], - "mAssetSupply": "100738890925288557115242784" + "mAssetSupply": "2438498655526046687320483312" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "38896015485153467957248", - "expectedQty": "42882914853399690197264", + "inputIndex": 0, + "inputQty": "17879245088717151404032", + "expectedQty": "17838207283789325756413", "reserves": [ - "24771847738253015883861890", - "6629577314518252115913539", - "70023341929286094733662251" + "1066755255421433081582848828", + "672187298893050760888450212", + "700047213062676825495320599" ] }, { "type": "redeemMasset", - "inputQty": "8752529424274941385113", + "inputQty": "47089926303728075486003", "expectedQtys": [ - "2150699209448902235817", - "575581879881210408345", - "6079447432487184774266" + "20593814502815937523000", + "12976641525036212846933", + "13514479891951020879648" ], - "redemptionFee": "2625758827282482415", + "redemptionFee": "14126977891118422645", "reserves": [ - "24769697039043566981626073", - "6629001732638370905505194", - "70017262481853607548887985" + "1066734661606930265645325828", + "672174322251525724675603279", + "700033698582784874474440951" ], - "mAssetSupply": "100773023936476509146537350" + "mAssetSupply": "2438469417934004639689176367" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8897371997153899520", - "639533486835959332864", - "1513097384644602232832" - ], - "expectedQty": "2196473823129675412997", - "reserves": [ - "24769705936415564135525593", - "6629641266125206864838058", - "70018775579238252151120817" + "167096719988632124915712", + "172806321479179179130880", + "294278044020107351425024" ], - "mAssetSupply": "100775220410299638821950347" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1992197525610395336704", - "expectedQty": "2031623610696964102420", - "swapFee": "1195318515366237202", + "expectedQty": "634446225637543955972657", + "swapFee": "380896273146414222116", "reserves": [ - "24769705936415564135525593", - "6629641266125206864838058", - "70016743955627555187018397" + "1066567564886941633520410116", + "672001515930046545496472399", + "699739420538764767123015927" ], - "mAssetSupply": "100773229408092543792850845" + "mAssetSupply": "2437834971708367095733203710" }, { "type": "mintMulti", "inputQtys": [ - "24999052440956213133312", - "247189649012031102124032", - "637852134180306940854272" + "368696648196058560", + "8563666079668842496", + "13154777988264552448" ], - "expectedQty": "922015448616530058136438", + "expectedQty": "22116694295077477465", "reserves": [ - "24794704988856520348658905", - "6876830915137237966962090", - "70654596089807862127872669" + "1066567565255638281716468676", + "672001524493712625165314895", + "699739433693542755387568375" ], - "mAssetSupply": "101695244856709073850987283" + "mAssetSupply": "2437834993825061390810681175" }, { - "type": "redeemBassets", - "inputQtys": [ - "4054283275564527124480", - "6596722118772378304512", - "8818872895395802906624" - ], - "expectedQty": "19948610382923062809289", - "swapFee": "11976352040978424740", + "type": "swap", + "inputIndex": 2, + "inputQty": "18166966607791050752", + "outputIndex": 1, + "expectedQty": "18148389494116102142", + "swapFee": "10913617074112612", "reserves": [ - "24790650705580955821534425", - "6870234193018465588657578", - "70645777216912466324966045" + "1066567565255638281716468676", + "672001506345323131049212753", + "699739451860509363178619127" ], - "mAssetSupply": "101675296246326150788177994" + "mAssetSupply": "2437834993835975007884793787", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "362303453044447327027200", + "expectedQty": "362902789973221559235034", + "reserves": [ + "1066567565255638281716468676", + "672363809798367578376239953", + "699739451860509363178619127" + ] }, { "type": "redeemMasset", - "inputQty": "759069227157317746688", + "inputQty": "29134149760767396046438", "expectedQtys": [ - "185022079308380176413", - "51275177518500687057", - "527256373794462006305" + "12740646342681854504865", + "8031698875266284923911", + "8358713670464933939411" ], - "redemptionFee": "227720768147195324", + "redemptionFee": "8740244928230218813", "reserves": [ - "24790465683501647441358012", - "6870182917840947087970521", - "70645249960538671862959740" + "1066554824609295599861963811", + "672355778099492312091316042", + "699731093146838898244679716" ], - "mAssetSupply": "101674537404819761617626630" + "mAssetSupply": "2438168771216432390278201196" }, { "type": "redeemBassets", "inputQtys": [ - "1539670623265517993984", - "5856072404120340791296", - "5341677049675432067072" - ], - "expectedQty": "13204560171219381498377", - "swapFee": "7927492598290603260", - "reserves": [ - "24788926012878381923364028", - "6864326845436826747179225", - "70639908283488996430892668" + "47036710634355421085696", + "8044169511648019611648", + "15769152863662254325760" ], - "mAssetSupply": "101661332844648542236128253" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "715970522792810587881472", - "outputIndex": 2, - "expectedQty": "792446159054407834403500", - "swapFee": "467292809474739761830", + "expectedQty": "70774850712988918646610", + "swapFee": "42490404670595708613", "reserves": [ - "24788926012878381923364028", - "7580297368229637335060697", - "69847462124434588596489168" + "1066507787898661244440878115", + "672347733929980664071704394", + "699715323993975235990353956" ], - "mAssetSupply": "101661800137458016975890083", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2438097996365719401359554586" }, { "type": "redeemBassets", "inputQtys": [ - "119729864921346518024192", - "130959112662177611251712", - "17674599997367620993024" + "60515897854955456823296", + "125869524476473540345856", + "100046420405135672868864" ], - "expectedQty": "278852222897597133578806", - "swapFee": "167411780807042505650", + "expectedQty": "286624449533955156423485", + "swapFee": "172077916470255247002", "reserves": [ - "24669196147957035405339836", - "7449338255567459723808985", - "69829787524437220975496144" + "1066447272000806288984054819", + "672221864405504190531358538", + "699615277573570100317485092" ], - "mAssetSupply": "101382947914560419842311277" + "mAssetSupply": "2437811371916185446203131101" }, { "type": "redeemMasset", - "inputQty": "36538623185248379836825", + "inputQty": "153156897964694809", "expectedQtys": [ - "8888161839147583439603", - "2683951419127215521082", - "25159249170017498236879" + "66980061614611975", + "42220054454352775", + "43940545049625440" ], - "redemptionFee": "10961586955574513951", + "redemptionFee": "45947069389408", "reserves": [ - "24660307986117887821900233", - "7446654304148332508287903", - "69804628275267203477259265" + "1066447271933826227369442844", + "672221864363284136077005763", + "699615277529629555267859652" ], - "mAssetSupply": "101346420252962127036988403" + "mAssetSupply": "2437811371763074495307825700" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "983463086706339837116416", - "outputIndex": 0, - "expectedQty": "960780614867207067272273", - "swapFee": "579378055491708832185", + "type": "mintMulti", + "inputQtys": [ + "51155592116984424169472", + "34939137847329057406976", + "60808875502302153146368" + ], + "expectedQty": "146919004608390395316975", "reserves": [ - "23699527371250680754627960", - "7446654304148332508287903", - "70788091361973543314375681" + "1066498427525943211793612316", + "672256803501131465134412739", + "699676086405131857421006020" ], - "mAssetSupply": "101346999631017618745820588", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2437958290767682885703142675" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "503585471056576380928", - "expectedQty": "512848494558354638940", - "swapFee": "302151282633945828", + "type": "mint", + "inputIndex": 0, + "inputQty": "29915860267344765047013376", + "expectedQty": "29844965550998788992924826", "reserves": [ - "23699527371250680754627960", - "7446654304148332508287903", - "70787578513478984959736741" - ], - "mAssetSupply": "101346496347697844803385488" + "1096414287793287976840625692", + "672256803501131465134412739", + "699676086405131857421006020" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1968087461096423161856", - "outputIndex": 0, - "expectedQty": "2118666951803531619208", - "swapFee": "1278311397691037054", + "type": "mint", + "inputIndex": 0, + "inputQty": "1032475014104756158201856", + "expectedQty": "1029948861989506252943860", + "reserves": [ + "1097446762807392732998827548", + "672256803501131465134412739", + "699676086405131857421006020" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "89044966298359840768", + "expectedQty": "89210036973146692683", + "swapFee": "53426979779015904", "reserves": [ - "23697408704298877223008752", - "7448622391609428931449759", - "70787578513478984959736741" + "1097446673597355759852134865", + "672256803501131465134412739", + "699676086405131857421006020" ], - "mAssetSupply": "101346497626009242494422542", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2468833116189131862368186497" }, { "type": "mintMulti", "inputQtys": [ - "18884566674453745893376", - "700098423905034043392", - "2961492187965671604224" + "6884193578102392002445312", + "5486864439148636828336128", + "13053026720825292150013952" ], - "expectedQty": "22642782297088507942748", + "expectedQty": "25434279771571866340905631", "reserves": [ - "23716293270973330968902128", - "7449322490033333965493151", - "70790540005666950631340965" + "1104330867175458151854580177", + "677743667940280101962748867", + "712729113125957149571019972" ], - "mAssetSupply": "101369140408306331002365290" + "mAssetSupply": "2494267395960703728709092128" }, { "type": "redeemMasset", - "inputQty": "60995630855623317913", + "inputQty": "56706987505151201247232", "expectedQtys": [ - "14266238094888752545", - "4481046303238918731", - "42583159478072375504" + "25099349734855719403336", + "15403830371712578874902", + "16198983301369317742726" ], - "redemptionFee": "18298689256686995", + "redemptionFee": "17012096251545360374", "reserves": [ - "23716279004735236080149583", - "7449318008987030726574420", - "70790497422507472558965461" + "1104305767825723296135176841", + "677728264109908389383873965", + "712712914142655780253277246" ], - "mAssetSupply": "101369079430974164635734372" + "mAssetSupply": "2494210705985294829053205270" }, { "type": "redeemMasset", - "inputQty": "17090230310573965312000", + "inputQty": "875044893497425380612505", "expectedQtys": [ - "3997225560044438339363", - "1255534409275462327618", - "11931280857718420716506" + "387307786603835278629496", + "237696335144645416683853", + "249966331158495413903928" ], - "redemptionFee": "5127069093172189593", + "redemptionFee": "262513468049227614183", "reserves": [ - "23712281779175191641810220", - "7448062474577755264246802", - "70778566141649754138248955" + "1103918460039119460856547345", + "677490567774763743967190112", + "712462947811497284839373318" ], - "mAssetSupply": "101351994327732683842611965" + "mAssetSupply": "2493335923605265452900206948" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "117365279387554091630592", - "expectedQty": "108235090129609749352064", - "swapFee": "70419167632532454978", + "type": "mint", + "inputIndex": 2, + "inputQty": "1366574021961516288", + "expectedQty": "1368307569307235601", + "reserves": [ + "1103918460039119460856547345", + "677490567774763743967190112", + "712462949178071306800889606" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "98708629364135772160", + "21713193158672023552", + "89333352413487595520" + ], + "expectedQty": "209669628417877993621", "reserves": [ - "23712281779175191641810220", - "7339827384448145514894738", - "70778566141649754138248955" + "1103918558747748824992319505", + "677490589487956902639213664", + "712463038511423720288485126" ], - "mAssetSupply": "101234699467512762283436351" + "mAssetSupply": "2493336134643201440085436170" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "11636966341611089920", - "expectedQty": "11572661786294367380", - "swapFee": "6982179804966653", + "type": "redeemMasset", + "inputQty": "638095005195603508880998", + "expectedQtys": [ + "282430269717682785264142", + "173331491172075354012370", + "182278961193405664005061" + ], + "redemptionFee": "191428501558681052664", "reserves": [ - "23712270206513405347442840", - "7339827384448145514894738", - "70778566141649754138248955" + "1103636128478031142207055363", + "677317257996784827285201294", + "712280759550230314624480065" ], - "mAssetSupply": "101234687837528600477313084" + "mAssetSupply": "2492698231066507395257607836" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2702639080018477580288", - "expectedQty": "2932066757031901980076", + "inputQty": "420832975235160876253184", + "expectedQty": "421591251824686873814481", "reserves": [ - "23712270206513405347442840", - "7342530023528163992475026", - "70778566141649754138248955" + "1103636128478031142207055363", + "677738090972019988161454478", + "712280759550230314624480065" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "3983252483509926362087424", - "outputIndex": 1, - "hardLimitError": true - }, - { - "type": "redeemMasset", - "inputQty": "18666375647551293489152", - "expectedQtys": [ - "4370799678088312747239", - "1353422830614306980105", - "13046365084963431012557" - ], - "redemptionFee": "5599912694265388046", + "type": "mint", + "inputIndex": 1, + "inputQty": "608064223915609216253952", + "expectedQty": "609156282130050384468950", "reserves": [ - "23707899406835317034695601", - "7341176600697549685494921", - "70765519776564790707236398" - ], - "mAssetSupply": "101218959128550775351192054" + "1103636128478031142207055363", + "678346155195935597377708430", + "712280759550230314624480065" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "51727666210158231420928", - "636575759983202308980736", - "230756385254967720542208" - ], - "expectedQty": "973650934159503700372652", - "swapFee": "584541285266862337626", + "type": "swap", + "inputIndex": 1, + "inputQty": "6775907760565003485184", + "outputIndex": 2, + "expectedQty": "6775353264129230586988", + "swapFee": "4072831918159164765", "reserves": [ - "23656171740625158803274673", - "6704600840714347376514185", - "70534763391309822986694190" + "1103636128478031142207055363", + "678352931103696162381193614", + "712273984196966185393893077" ], - "mAssetSupply": "100245308194391271650819402" + "mAssetSupply": "2493728982673294050675056032", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "4299123279004245504", - "1039576167363833216", - "635202144287318144" + "18797247950658933358592", + "9511405704996150312960", + "15364972804946993872896" ], - "expectedQty": "6086400839939633058", + "expectedQty": "43664986748846315667583", "reserves": [ - "23656176039748437807520177", - "6704601880290514740347401", - "70534764026511967274012334" + "1103654925725981801140413955", + "678362442509401158531506574", + "712289349169771132387765973" ], - "mAssetSupply": "100245314280792111590452460" + "mAssetSupply": "2493772647660042896990723615" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "9364566976695096427151360", - "expectedQty": "9536049397679041277706323", - "swapFee": "5618740186017057856290", + "inputQty": "2891957197198881", + "expectedQty": "2895639522404068", "reserves": [ - "23656176039748437807520177", - "6704601880290514740347401", - "60998714628832925996306011" - ], - "mAssetSupply": "90886366044283032221157390" + "1103654925725981801140413955", + "678362442509401158531506574", + "712289349172663089584964854" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1966505333966879091326976", - "expectedQty": "1998104973491053137277690", - "swapFee": "1179903200380127454796", + "inputQty": "4375802733796797165076480", + "expectedQty": "4367519268691019550689967", + "swapFee": "2625481640278078299045", "reserves": [ - "23656176039748437807520177", - "6704601880290514740347401", - "59000609655341872859028321" + "1103654925725981801140413955", + "678362442509401158531506574", + "707921829903972070034274887" ], - "mAssetSupply": "88921040613516533257285210" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "113827194097337", - "expectedQty": "112001349389547", - "reserves": [ - "23656176039748437807520177", - "6704601880290514740347401", - "59000609655455700053125658" - ] + "mAssetSupply": "2489399470410782017426350248" }, { - "type": "redeemBassets", - "inputQtys": [ - "186089706748127552", - "219398564517154592", - "99832349290746400" + "type": "redeemMasset", + "inputQty": "44018275167599866675", + "expectedQtys": [ + "19509288281002964219", + "11991400700917153420", + "12513921460484450658" ], - "expectedQty": "519756324346188376", - "swapFee": "312041019219244", + "redemptionFee": "13205482550279960", "reserves": [ - "23656175853658731059392625", - "6704601660891950223192809", - "59000609555623350762379258" + "1103654906216693520137449736", + "678362430518000457614353154", + "707921817390050609549824229" ], - "mAssetSupply": "88921040093872210260486381" + "mAssetSupply": "2489399426405712332376763533" }, { - "type": "mintMulti", - "inputQtys": [ - "2990270547750897447862272", - "951855113434357978628096", - "1117836521319324733931520" + "type": "redeemMasset", + "inputQty": "1447547491361861930686873", + "expectedQtys": [ + "641565831507365173218157", + "394338986169638331741041", + "411522158654617316383744" ], - "expectedQty": "5105852337212298789612692", + "redemptionFee": "434264247408558579206", "reserves": [ - "26646446401409628507254897", - "7656456774326308201820905", - "60118446076942675496310778" + "1103013340385186154964231579", + "677968091531830819282612113", + "707510295231395992233440485" ], - "mAssetSupply": "94026892431084509050099073" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "14536046464932467703808", - "expectedQty": "14528767230562050393016", - "reserves": [ - "26660982447874560974958705", - "7656456774326308201820905", - "60118446076942675496310778" - ] + "mAssetSupply": "2487952313178597879004655866" }, { "type": "mintMulti", "inputQtys": [ - "60483681565322457907200", - "28085927201061361156096", - "31801587696159460163584" + "10673811474513376837632", + "11702887666092945178624", + "1265073179310584758272" ], - "expectedQty": "121553854439046613087743", + "expectedQty": "23638311219756163801084", "reserves": [ - "26721466129439883432865905", - "7684542701527369562977001", - "60150247664638834956474362" + "1103024014196660668341069211", + "677979794419496912227790737", + "707511560304575302818198757" ], - "mAssetSupply": "94162975052754117713579832" + "mAssetSupply": "2487975951489817635168456950" }, { "type": "swap", "inputIndex": 1, - "inputQty": "3805446936449059129393152", + "inputQty": "16290841219337661225893888", "outputIndex": 0, - "expectedQty": "3944074864164055226636272", - "swapFee": "2372981211270672706123", + "expectedQty": "16346340219529277062070433", + "swapFee": "9790936389381580266842", "reserves": [ - "22777391265275828206229633", - "11489989637976428692370153", - "60150247664638834956474362" + "1086677673977131391278998778", + "694270635638834573453684625", + "707511560304575302818198757" ], - "mAssetSupply": "94165348033965388386285955", + "mAssetSupply": "2487985742426207016748723792", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "194366476997684709294080", - "expectedQty": "199178683355002288264847", + "inputIndex": 0, + "inputQty": "9782679087901278763745280", + "expectedQty": "9760152131100409238334893", "reserves": [ - "22777391265275828206229633", - "11684356114974113401664233", - "60150247664638834956474362" + "1096460353065032670042744058", + "694270635638834573453684625", + "707511560304575302818198757" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2525968062825478582435840", - "expectedQty": "2576044928626362025233601", + "type": "redeemBassets", + "inputQtys": [ + "2020832531223435150360576", + "5323480583532461516914688", + "1581448178854993449713664" + ], + "expectedQty": "8931641183289405452353772", + "swapFee": "5362202031192358686624", "reserves": [ - "22777391265275828206229633", - "14210324177799591984100073", - "60150247664638834956474362" - ] + "1094439520533809234892383482", + "688947155055302111936769937", + "705930112125720309368485093" + ], + "mAssetSupply": "2488814253374018020534704913" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "9995310265263027195478016", - "expectedQty": "10082990282345006887623802", + "type": "redeemMasset", + "inputQty": "14386297916932059955", + "expectedQtys": [ + "6324380975087533260", + "3981183243590510290", + "4079321778047392750" + ], + "redemptionFee": "4315889375079617", "reserves": [ - "22777391265275828206229633", - "24205634443062619179578089", - "60150247664638834956474362" - ] + "1094439514209428259804850222", + "688947151074118868346259647", + "705930108046398531321092343" + ], + "mAssetSupply": "2488814238992035992977724575" }, { - "type": "mintMulti", - "inputQtys": [ - "59886535896939012030464", - "14223042321950842028032", - "126916906421018144276480" + "type": "redeemMasset", + "inputQty": "308277121524224921", + "expectedQtys": [ + "135522145702813959", + "85310878287183999", + "87413842169043152" ], - "expectedQty": "200698561186978510994595", + "redemptionFee": "92483136457267", "reserves": [ - "22837277801172767218260097", - "24219857485384570021606121", - "60277164571059853100750842" + "1094439514073906114102036263", + "688947150988807990059075648", + "705930107958984689152049191" ], - "mAssetSupply": "107224260489478738098402800" + "mAssetSupply": "2488814238683851354589956921" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1580156208023690943660032", - "outputIndex": 2, - "expectedQty": "1593775272091257646328201", - "swapFee": "951825761532812075865", + "inputIndex": 2, + "inputQty": "3214147163877584928768", + "outputIndex": 1, + "expectedQty": "3211395547408103567722", + "swapFee": "1931095195143309442", "reserves": [ - "22837277801172767218260097", - "25800013693408260965266153", - "58683389298968595454422641" + "1094439514073906114102036263", + "688943939593260581955507926", + "705933322106148566736977959" ], - "mAssetSupply": "107225212315240270910478665", + "mAssetSupply": "2488814240614946549733266363", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "40151657069138690048", - "41906951062536724480", - "65100154461064544256" + "2126857567062521467109376", + "3171679342034610133401600", + "1257774108988483305472000" ], - "expectedQty": "147174855342693845861", + "expectedQty": "6558108992013261815962841", "reserves": [ - "22837317952829836356950145", - "25800055600359323501990633", - "58683454399123056518966897" + "1096566371640968635569145639", + "692115618935295192088909526", + "707191096215137050042449959" ], - "mAssetSupply": "107225359490095613604324526" + "mAssetSupply": "2495372349606959811549229204" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2544038493675675189248", - "expectedQty": "2557431264561485785168", - "reserves": [ - "22839861991323512032139393", - "25800055600359323501990633", - "58683454399123056518966897" - ] - }, - { - "type": "redeem", "inputIndex": 2, - "inputQty": "98808131574308540514304", - "expectedQty": "99257458588756782046530", - "swapFee": "59284878944585124308", - "reserves": [ - "22839861991323512032139393", - "25800055600359323501990633", - "58584196940534299736920367" - ], - "mAssetSupply": "107129168074664811134719698" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "32360449353578035806208", - "expectedQty": "32529864611760620579153", + "inputQty": "1002579315208621916160", + "expectedQty": "1003944030965705620738", "reserves": [ - "22872222440677090067945601", - "25800055600359323501990633", - "58584196940534299736920367" + "1096566371640968635569145639", + "692115618935295192088909526", + "707192098794452258664366119" ] }, { - "type": "mintMulti", - "inputQtys": [ - "4793611182225258184704", - "45064951648482800697344", - "43319755806143636570112" - ], - "expectedQty": "93130454514348403346997", - "reserves": [ - "22877016051859315326130305", - "25845120552007806302687977", - "58627516696340443373490479" - ], - "mAssetSupply": "107254828393790920158645848" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "34239392468697020891136", - "33905191123822992949248", - "1681125681264823631872" + "type": "redeemMasset", + "inputQty": "1825314323129987666175590", + "expectedQtys": [ + "801875129459150590024784", + "506116470363685068872862", + "517141297087815277560005" ], - "expectedQty": "70108319923242718218718", - "swapFee": "42090246101606594888", + "redemptionFee": "547594296938996299852", "reserves": [ - "22842776659390618305239169", - "25811215360883983309738729", - "58625835570659178549858607" + "1095764496511509484979120855", + "691609502464931507020036664", + "706674957497364443386806114" ], - "mAssetSupply": "107184720073867677440427130" + "mAssetSupply": "2493548586822157728584974204" }, { "type": "mintMulti", "inputQtys": [ - "480189033041307612741632", - "247594460182027540889600", - "1460578788173099609096192" + "605367357648971818336256", + "889715976469985609383936", + "986806573727882982457344" ], - "expectedQty": "2184189195726089107465236", + "expectedQty": "2483229583797943696398981", "reserves": [ - "23322965692431925917980801", - "26058809821066010850628329", - "60086414358832278158954799" + "1096369863869158456797457111", + "692499218441401492629420600", + "707661764071092326369263458" ], - "mAssetSupply": "109368909269593766547892366" + "mAssetSupply": "2496031816405955672281373185" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "10248343463569636982784", - "expectedQty": "10188617153992163953074", - "swapFee": "6149006078141782189", + "type": "mint", + "inputIndex": 2, + "inputQty": "159898010893626567032832", + "expectedQty": "160114922896739290993703", "reserves": [ - "23312777075277933754027727", - "26058809821066010850628329", - "60086414358832278158954799" - ], - "mAssetSupply": "109358667075136275052691771" + "1096369863869158456797457111", + "692499218441401492629420600", + "707821662081985952936296290" + ] }, { "type": "redeemBassets", "inputQtys": [ - "85234144687746986278912", - "69740624739713987641344", - "70898552270871632805888" + "14100474757864832892928", + "272950512601250087829504", + "269037610821192167456768" ], - "expectedQty": "226195884336246120679956", - "swapFee": "135799010007752323802", + "expectedQty": "556853771361892650690445", + "swapFee": "334312850527452061651", "reserves": [ - "23227542930590186767748815", - "25989069196326296862986985", - "60015515806561406526148911" + "1096355763394400591964564183", + "692226267928800242541591096", + "707552624471164760768839522" ], - "mAssetSupply": "109132471190800028932011815" + "mAssetSupply": "2495635077557490518921676443" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "224502943240998780928", - "outputIndex": 1, - "expectedQty": "224775334307038588483", - "swapFee": "135414616500757811", + "inputIndex": 2, + "inputQty": "13010136817261745341988864", + "outputIndex": 0, + "expectedQty": "13048535035761047664478568", + "swapFee": "7816163616820821138440", "reserves": [ - "23227767433533427766529743", - "25988844420991989824398502", - "60015515806561406526148911" + "1083307228358639544300085615", + "692226267928800242541591096", + "720562761288426506110828386" ], - "mAssetSupply": "109132471326214645432769626", + "mAssetSupply": "2495642893721107339742814883", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "472348446443977375744", - "expectedQty": "469886596305078390475", + "inputIndex": 0, + "inputQty": "40929687224006904467423232", + "expectedQty": "40834655898213735582017078", "reserves": [ - "23227767433533427766529743", - "25988844420991989824398502", - "60015988155007850503524655" + "1124236915582646448767508847", + "692226267928800242541591096", + "720562761288426506110828386" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "625532039573881539788800", - "expectedQty": "622904020463073199184997", - "swapFee": "375319223744328923873", + "type": "mintMulti", + "inputQtys": [ + "6717499511294335245090816", + "2048458560997964187172864", + "5016489587777390688337920" + ], + "expectedQty": "13776415633648195936619770", "reserves": [ - "23227767433533427766529743", - "25365940400528916625213505", - "60015988155007850503524655" + "1130954415093940784012599663", + "694274726489798206728763960", + "725579250876203896799166306" ], - "mAssetSupply": "108507784492460813300295174" + "mAssetSupply": "2550253965252969271261451731" }, { "type": "redeemMasset", - "inputQty": "187833713958520383078", + "inputQty": "1770639479292374600908", "expectedQtys": [ - "40196645402535164597", - "43896845209061718954", - "103860235438159739215" + "784985264275739156490", + "481889828962108660877", + "503618017137091671795" ], - "redemptionFee": "56350114187556114", + "redemptionFee": "531191843787712380", "reserves": [ - "23227727236888025231365146", - "25365896503683707563494551", - "60015884294772412343785440" + "1130953630108676508273443173", + "694274244599969244620103083", + "725578747258186759707494511" ], - "mAssetSupply": "108507596715096968967468210" + "mAssetSupply": "2550252195144681822674563203" }, { - "type": "redeemMasset", - "inputQty": "47874364765526261760", - "expectedQtys": [ - "10245172838228863043", - "11188266128084703902", - "26471514038730687545" + "type": "redeemBassets", + "inputQtys": [ + "20078456968185868288", + "549443640081973837824", + "259146132582409633792" ], - "redemptionFee": "14362309429657878", + "expectedQty": "829939122730188804789", + "swapFee": "498262431096771345", "reserves": [ - "23227716991715187002502103", - "25365885315417579478790649", - "60015857823258373613097895" + "1130953610030219540087574885", + "694273695156329162646265259", + "725578488112054177297860719" ], - "mAssetSupply": "108507548855094512870864328" + "mAssetSupply": "2550251365205559092485758414" }, { - "type": "redeemMasset", - "inputQty": "63227896895310786671411", - "expectedQtys": [ - "13530847564511853894795", - "14776395272261351631536", - "34961052089173078717824" + "type": "redeemBassets", + "inputQtys": [ + "7726555490561916837822464", + "3311381165977326063714304", + "3601965098293547180752896" ], - "redemptionFee": "18968369068593236001", + "expectedQty": "14631794939529499669175043", + "swapFee": "8784347572261056435366", "reserves": [ - "23214186144150675148607308", - "25351108920145318127159113", - "59980896771169200534380071" + "1123227054539657623249752421", + "690962313990351836582550955", + "721976523013760630117107823" ], - "mAssetSupply": "108444339926568270677428918" + "mAssetSupply": "2535619570266029592816583371" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "165132346975316705280", - "1152595115792911826944", - "848863336106912907264" + "16705511502716847783936", + "8155734632321233453056", + "30827666700022589685760" ], - "expectedQty": "2167286433106094589459", - "swapFee": "1301152551394493449", + "expectedQty": "55703247531358215017997", "reserves": [ - "23214021011803699831902028", - "25349956325029525215332169", - "59980047907833093621472807" + "1123243760051160340097536357", + "690970469724984157816004011", + "722007350680460652706793583" ], - "mAssetSupply": "108442172640135164582839459" + "mAssetSupply": "2535675273513560951031601368" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4403613786590620", - "expectedQty": "4378159587574917", - "swapFee": "2642168271954", + "inputIndex": 1, + "inputQty": "440328454776290082816", + "expectedQty": "439285445769814976243", + "swapFee": "264197072865774049", "reserves": [ - "23214021007425540244327111", - "25349956325029525215332169", - "59980047907833093621472807" + "1123243760051160340097536357", + "690970030439538388001027768", + "722007350680460652706793583" ], - "mAssetSupply": "108442172635734192964520793" + "mAssetSupply": "2535674833449303247607292601" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "126625785775200080494592", - "outputIndex": 0, - "expectedQty": "125217045732230655513974", - "swapFee": "75571699787258964951", + "inputQty": "61010201996012900319232", + "expectedQty": "60894109183693070574520", + "swapFee": "36606121197607740191", "reserves": [ - "23088803961693309588813137", - "25349956325029525215332169", - "60106673693608293701967399" + "1123243760051160340097536357", + "690970030439538388001027768", + "721946456571276959636219063" ], - "mAssetSupply": "108442248207433980223485744", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2535613859853428432314713560" }, { - "type": "redeemBassets", - "inputQtys": [ - "306960244792605286596608", - "510096415543960325324800", - "250987746101665848098816" + "type": "redeemMasset", + "inputQty": "327858336948075133245849", + "expectedQtys": [ + "145193381980334379546100", + "89316566122745880920691", + "93320658762019727743602" ], - "expectedQty": "1070298495785168642796925", - "swapFee": "642564636252852897416", + "redemptionFee": "98357501084422539973", "reserves": [ - "22781843716900704302216529", - "24839859909485564890007369", - "59855685947506627853868583" + "1123098566669180005717990257", + "690880713873415642120107077", + "721853135912514939908475461" ], - "mAssetSupply": "107371949711648811580688819" + "mAssetSupply": "2535286099873981441604007684" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "7420962818599162205962240", - "expectedQty": "7438975085907238524067939", + "type": "redeemBassets", + "inputQtys": [ + "2778857820126245814272", + "6343492217493873754112", + "3620283369093561581568" + ], + "expectedQty": "12751891078344031432657", + "swapFee": "7655728083856732899", "reserves": [ - "22781843716900704302216529", - "32260822728084727095969609", - "59855685947506627853868583" - ] + "1123095787811359879472175985", + "690874370381198148246352965", + "721849515629145846346893893" + ], + "mAssetSupply": "2535273347982903097572575027" }, { "type": "redeemBassets", "inputQtys": [ - "343794277026444527796224", - "373882619240112334045184", - "78458696700539661451264" + "38831966052889453920256", + "186963091727642018185216", + "74292059989877175877632" ], - "expectedQty": "798458809989388599322316", - "swapFee": "479362903735874684404", + "expectedQty": "300421844702601891915377", + "swapFee": "180361323615730573493", "reserves": [ - "22438049439874259774420305", - "31886940108844614761924425", - "59777227250806088192417319" + "1123056955845306990018255729", + "690687407289470506228167749", + "721775223569155969171016261" ], - "mAssetSupply": "114012465987566661505434442" + "mAssetSupply": "2534972926138200495680659650" }, { - "type": "mintMulti", - "inputQtys": [ - "5362361161721676038144", - "12587350457247078547456", - "14850602634216432730112" - ], - "expectedQty": "32782456923161074313234", + "type": "redeem", + "inputIndex": 2, + "inputQty": "417478341732253237248", + "expectedQty": "416683918907062398423", + "swapFee": "250487005039351942", "reserves": [ - "22443411801035981450458449", - "31899527459301861840471881", - "59792077853440304625147431" + "1123056955845306990018255729", + "690687407289470506228167749", + "721774806885237062108617838" ], - "mAssetSupply": "114045248444489822579747676" + "mAssetSupply": "2534972508910345768466774344" }, { - "type": "redeemMasset", - "inputQty": "41734400709454453748531", - "expectedQtys": [ - "8210612502151631158657", - "11670001927157225703322", - "21874106588839557015927" + "type": "redeemBassets", + "inputQtys": [ + "171766937942583947558912", + "1379203428247314953666560", + "1166914370369321575645184" ], - "redemptionFee": "12520320212836336124", + "expectedQty": "2721448601105527340982534", + "swapFee": "1633849470345523718820", "reserves": [ - "22435201188533829819299792", - "31887857457374704614768559", - "59770203746851465068131504" + "1122885188907364406070696817", + "689308203861223191274501189", + "720607892514867740532972654" ], - "mAssetSupply": "114003526564100580962335269" + "mAssetSupply": "2532251060309240241125791810" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "656746719444516147822592", - "expectedQty": "659378300908848244167836", - "swapFee": "394048031666709688693", + "type": "swap", + "inputIndex": 0, + "inputQty": "249725973606583779050127360", + "outputIndex": 2, + "expectedQty": "247704767379184405473883035", + "swapFee": "149383965253621596109896", "reserves": [ - "22435201188533829819299792", - "31887857457374704614768559", - "59110825445942616823963668" + "1372611162513948185120824177", + "689308203861223191274501189", + "472903125135683335059089619" ], - "mAssetSupply": "113347173892687731524201370" + "mAssetSupply": "2532400444274493862721901706", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "13110880580049651630080", - "12806502743272308342784", - "59808038715115763138560" - ], - "expectedQty": "85552989178092385754353", - "swapFee": "51362611073499531171", + "type": "redeem", + "inputIndex": 1, + "inputQty": "10740850250819518341316608", + "expectedQty": "10717077645247816863438831", + "swapFee": "6444510150491711004789", "reserves": [ - "22422090307953780167669712", - "31875050954631432306425775", - "59051017407227501060825108" + "1372611162513948185120824177", + "678591126215975374411062358", + "472903125135683335059089619" ], - "mAssetSupply": "113261620903509639138447017" + "mAssetSupply": "2521666038533824836091589887" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "870804405569144909463552", - "2211540069804113435557888", - "629261813920707937042432" + "2700847037147451490304", + "3993471671257588039680", + "3589224909176097996800" ], - "expectedQty": "3717441158010187360525925", - "swapFee": "2231803777072355829813", + "expectedQty": "10303648048648878917225", "reserves": [ - "21551285902384635258206160", - "29663510884827318870867887", - "58421755593306793123782676" + "1372613863360985332572314481", + "678595119687646631999102038", + "472906714360592511157086419" ], - "mAssetSupply": "109544179745499451777921092" + "mAssetSupply": "2521676342181873484970507112" }, { "type": "mintMulti", "inputQtys": [ - "1151027727445996909625344", - "2083713488280635314274304", - "2183192207514428669689856" + "16760862790460913974509568", + "26820914782623429872844800", + "1427381376269477098815488" ], - "expectedQty": "5418237548504683706111020", + "expectedQty": "44974111439788998874029320", "reserves": [ - "22702313629830632167831504", - "31747224373107954185142191", - "60604947800821221793472532" + "1389374726151446246546824049", + "705416034470270061871946838", + "474334095736861988255901907" ], - "mAssetSupply": "114962417294004135484032112" + "mAssetSupply": "2566650453621662483844536432" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "7162378818192879386624", - "expectedQty": "7128753744306748844290", + "type": "redeemMasset", + "inputQty": "825267279337711962213580", + "expectedQtys": [ + "446598217908513862834216", + "226747714600483746839768", + "152469134396963320465186" + ], + "redemptionFee": "247580183801313588664", "reserves": [ - "22702313629830632167831504", - "31747224373107954185142191", - "60612110179639414672859156" - ] + "1388928127933537732683989833", + "705189286755669578125107070", + "474181626602465024935436721" + ], + "mAssetSupply": "2565825433922508573195911516" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "65122289943294160", - "expectedQty": "64991798961621179", - "swapFee": "39073373965976", + "inputIndex": 0, + "inputQty": "9189094252733419634032640", + "expectedQty": "9231464238789433965993034", + "swapFee": "5513456551640051780419", "reserves": [ - "22702313629830632167831504", - "31747224308116155223521012", - "60612110179639414672859156" + "1379696663694748298717996799", + "705189286755669578125107070", + "474181626602465024935436721" ], - "mAssetSupply": "114969545982665225663548218" + "mAssetSupply": "2556641853126326793613659295" }, { - "type": "redeemMasset", - "inputQty": "14179964652553882304512", - "expectedQtys": [ - "2799188486395112234664", - "3914423270124858731260", - "7473455072350896350880" - ], - "redemptionFee": "4253989395766164691", + "type": "redeem", + "inputIndex": 0, + "inputQty": "302805961469284914823168", + "expectedQty": "304193775919054643064361", + "swapFee": "181683576881570948893", "reserves": [ - "22699514441344237055596840", - "31743309884846030364789752", - "60604636724567063776508276" + "1379392469918829244074932438", + "705189286755669578125107070", + "474181626602465024935436721" ], - "mAssetSupply": "114955370272002067547408397" + "mAssetSupply": "2556339228848434390269785020" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "210989693112988410576896", - "expectedQty": "210560580690454884658701", - "swapFee": "126593815867793046346", + "inputQty": "455468315337658073088", + "expectedQty": "456089622050718208662", "reserves": [ - "22699514441344237055596840", - "31532749304155575480131051", - "60604636724567063776508276" - ], - "mAssetSupply": "114744507172704946929877847" + "1379392469918829244074932438", + "705189742223984915783180158", + "474181626602465024935436721" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1455196907241106256691200", - "expectedQty": "1463934159098655395522733", + "inputIndex": 1, + "inputQty": "361062775270714769408", + "expectedQty": "361555300923516048327", "reserves": [ - "24154711348585343312288040", - "31532749304155575480131051", - "60604636724567063776508276" + "1379392469918829244074932438", + "705190103286760186497949566", + "474181626602465024935436721" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "6536392958701310312448", - "expectedQty": "6507263079078325886085", + "inputIndex": 1, + "inputQty": "6781946216150775713759232", + "expectedQty": "6790892502652376128003817", "reserves": [ - "24154711348585343312288040", - "31532749304155575480131051", - "60611173117525765086820724" + "1379392469918829244074932438", + "711972049502910962211708798", + "474181626602465024935436721" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "9701778202301999104", - "18188609604171024384", - "18846584446591426560" + "type": "redeemMasset", + "inputQty": "134199524854098404625612", + "expectedQtys": [ + "72200088216601672314108", + "37266003623239855713789", + "24819589796226938940363" ], - "expectedQty": "46737028765813515536", - "swapFee": "28059052691102770", + "redemptionFee": "40259857456229521387", "reserves": [ - "24154701646807141010288936", - "31532731115545971309106667", - "60611154270941318495394164" + "1379320269830612642402618330", + "711934783499287722355995009", + "474156807012668797996496358" ], - "mAssetSupply": "116214901857853914837771129" + "mAssetSupply": "2562996779731013098456941601" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1110446480713235587661824", - "outputIndex": 0, - "expectedQty": "1104779067792537218978508", - "swapFee": "667269653190099111846", + "type": "redeem", + "inputIndex": 0, + "inputQty": "14494195550335587581952", + "expectedQty": "14560162197851080025224", + "swapFee": "8696517330201352549", "reserves": [ - "23049922579014603791310428", - "32643177596259206896768491", - "60611154270941318495394164" + "1379305709668414791322593106", + "711934783499287722355995009", + "474156807012668797996496358" ], - "mAssetSupply": "116215569127507104936882975", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "2729947371613191504134144", - "expectedQty": "2717093650492920212725383", - "reserves": [ - "23049922579014603791310428", - "32643177596259206896768491", - "63341101642554509999528308" - ] + "mAssetSupply": "2562982294231980093070712198" }, { "type": "mintMulti", "inputQtys": [ - "5829537715902380769280", - "5440591688012630327296", - "4795971405839429795840" + "204276258824281141542912", + "189540714616418996322304", + "142354682192189890494464" ], - "expectedQty": "16090974209338663021130", + "expectedQty": "536491628433450557294560", "reserves": [ - "23055752116730506172079708", - "32648618187947219527095787", - "63345897613960349429324148" + "1379509985927239072464136018", + "712124324213904141352317313", + "474299161694860987886990822" ], - "mAssetSupply": "118948753752209363812629488" + "mAssetSupply": "2563518785860413543628006758" }, { "type": "redeemMasset", - "inputQty": "39614523154718329195724", + "inputQty": "9387395248134305297203", "expectedQtys": [ - "7676151237296036458999", - "10869987221868010138664", - "21090298329247668029627" + "5050136771537637166144", + "2606958465184109361930", + "1736323521844393175571" ], - "redemptionFee": "11884356946415498758", + "redemptionFee": "2816218574440291589", "reserves": [ - "23048075965493210135620709", - "32637748200725351516957123", - "63324807315631101761294521" + "1379504935790467534826969874", + "712121717255438957242955383", + "474297425371339143493815251" ], - "mAssetSupply": "118909151113411591898932522" + "mAssetSupply": "2563509401281383983763001144" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "703625730722320175071232", - "1124894317454722422800384", - "671407604517957860851712" + "8554173051053944782979072", + "10033163855740759917461504", + "20849519285884476819767296" ], - "expectedQty": "2503054310447291584478390", + "expectedQty": "39576666987763022333973990", + "swapFee": "23760256346465692816074", "reserves": [ - "23751701696215530310691941", - "33762642518180073939757507", - "63996214920149059622146233" + "1370950762739413590043990802", + "702088553399698197325493879", + "453447906085454666674047955" ], - "mAssetSupply": "121412205423858883483410912" + "mAssetSupply": "2523932734293620961429027154" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "16654631046477699350528", - "1435547261454123532288", - "3544972779111255638016" + "7104328486074379264", + "6488144480019398656", + "4713392036224799744" ], - "expectedQty": "21731654707427128787344", + "expectedQty": "18316467529843455100", + "swapFee": "10996478404949042", "reserves": [ - "23768356327262008010042469", - "33764078065441528063289795", - "63999759892928170877784249" + "1370950755635085103969611538", + "702088546911553717306095223", + "453447901372062630449248211" ], - "mAssetSupply": "121433937078566310612198256" + "mAssetSupply": "2523932715977153431585572054" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1442941436682272243712", - "1749036393942011346944", - "3439717128615844380672" + "6284550708587376148480", + "5384832646116834017280", + "4245111364655273476096" ], - "expectedQty": "6627432955433711388541", + "expectedQty": "15924089359366140387325", + "swapFee": "9560189729457358647", "reserves": [ - "23769799268698690282286181", - "33765827101835470074636739", - "64003199610056786722164921" + "1370944471084376516593463058", + "702083162078907600472077943", + "453443656260697975175772115" ], - "mAssetSupply": "121440564511521744323586797" + "mAssetSupply": "2523916791887794065445184729" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4566392269945138315264", - "expectedQty": "4557654410798362429803", - "swapFee": "2739835361967082989", + "type": "mint", + "inputIndex": 2, + "inputQty": "20039217851979698012160", + "expectedQty": "20211678666107623818557", "reserves": [ - "23769799268698690282286181", - "33761269447424671712206936", - "64003199610056786722164921" - ], - "mAssetSupply": "121436000859087161152354522" + "1370944471084376516593463058", + "702083162078907600472077943", + "453463695478549954873784275" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "29471573423005614080", + "inputQty": "187147699759576856395776", "outputIndex": 0, - "expectedQty": "29297027574808263683", - "swapFee": "17706226022628523", + "expectedQty": "188269512193248667899431", + "swapFee": "112426304071717978215", "reserves": [ - "23769769971671115474022498", - "33761298918998094717821016", - "64003199610056786722164921" + "1370756201572183267925563627", + "702270309778667177328473719", + "453463695478549954873784275" ], - "mAssetSupply": "121436000876793387174983045", + "mAssetSupply": "2523937115992764244786981501", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "237091567213233569792", - "41637403133211115520", - "58637975606873645056" + "3305330522364758196224", + "3065283668802368700416", + "4065110510603975786496" ], - "expectedQty": "338728848482431237882", + "expectedQty": "10456818950008929061654", + "swapFee": "6277858084856271199", "reserves": [ - "23770007063238328707592290", - "33761340556401227928936536", - "64003258248032393595809977" + "1370752896241660903167367403", + "702267244494998374959773303", + "453459630368039350897997779" ], - "mAssetSupply": "121436339605641869606220927" + "mAssetSupply": "2523926659173814235857919847" }, { - "type": "redeemMasset", - "inputQty": "80961904309378846661017", - "expectedQtys": [ - "15842767527609106981353", - "22502015604476510868044", - "42658327308673742665288" + "type": "redeemBassets", + "inputQtys": [ + "49832406939560897937408", + "22694709348508924641280", + "37208126364834955526144" ], - "redemptionFee": "24288571292813653998", + "expectedQty": "109817289714810771405304", + "swapFee": "65929931787959238386", "reserves": [ - "23754164295710719600610937", - "33738838540796751418068492", - "63960599920723719853144689" + "1370703063834721342269429995", + "702244549785649866035132023", + "453422422241674515942471635" ], - "mAssetSupply": "121355401989903783573213908" + "mAssetSupply": "2523816841884099425086514543" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1310226351395589956042752", - "expectedQty": "1300153982459245271634543", - "swapFee": "786135810837353973625", + "type": "mintMulti", + "inputQtys": [ + "2485967946476868752900096", + "2141422033405137611915264", + "3033603351809969992237056" + ], + "expectedQty": "7676357700178492895739679", "reserves": [ - "22454010313251474328976394", - "33738838540796751418068492", - "63960599920723719853144689" + "1373189031781198211022330091", + "704385971819055003647047287", + "456456025593484485934708691" ], - "mAssetSupply": "120045961774319030971144781" + "mAssetSupply": "2531493199584277917982254222" }, { - "type": "redeemMasset", - "inputQty": "1387249091685675276697", - "expectedQtys": [ - "259400317677299967354", - "389768478478911270735", - "738905866114919699724" - ], - "redemptionFee": "416174727505702583", + "type": "swap", + "inputIndex": 2, + "inputQty": "1843494898505753921847296", + "outputIndex": 1, + "expectedQty": "1855683562519623183171148", + "swapFee": "1115474007841613016110", "reserves": [ - "22453750912933797029009040", - "33738448772318272506797757", - "63959861014857604933444965" + "1373189031781198211022330091", + "702530288256535380463876139", + "458299520491990239856555987" ], - "mAssetSupply": "120044574941402072801570667" + "mAssetSupply": "2531494315058285759595270332", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "39584182264326742016", - "4304354032105157632", - "67440344875124244480" - ], - "expectedQty": "111301282584002700906", - "swapFee": "66820862067642205", + "type": "mint", + "inputIndex": 2, + "inputQty": "5211238818923282608160768", + "expectedQty": "5254580605994227908825211", "reserves": [ - "22453711328751532702267024", - "33738444467964240401640125", - "63959793574512729809200485" - ], - "mAssetSupply": "120044463640119488798869761" + "1373189031781198211022330091", + "702530288256535380463876139", + "463510759310913522464716755" + ] }, { "type": "redeemMasset", - "inputQty": "132405232121852", + "inputQty": "603662507335197048543641", "expectedQtys": [ - "24758300996972", - "37201269361555", - "70524457976545" + "326675632959341268890417", + "167128866658381718510577", + "110267171654400611214385" ], - "redemptionFee": "39721569636", + "redemptionFee": "181098752200559114563", "reserves": [ - "22453711328726774401270052", - "33738444467927039132278570", - "63959793574442205351223940" + "1372862356148238869753439674", + "702363159389876998745365562", + "463400492139259121853502370" ], - "mAssetSupply": "120044463639987123288317545" + "mAssetSupply": "2536145414255696991014666465" }, { "type": "redeemMasset", - "inputQty": "602367284548611552051", + "inputQty": "16673900138750", "expectedQtys": [ - "112635960849786483440", - "169244275682848172076", - "320845525247064181592" + "9023182350302", + "4616304638937", + "3045714760162" ], - "redemptionFee": "180710185364583465", + "redemptionFee": "5002170041", "reserves": [ - "22453598692765924614786612", - "33738275223651356284106494", - "63959472728916958287042348" + "1372862356148229846571089372", + "702363159389872382440726625", + "463400492139256076138742208" ], - "mAssetSupply": "120043861453412760041348959" + "mAssetSupply": "2536145414255680322116697756" }, { "type": "mintMulti", "inputQtys": [ - "18440795197585397645312", - "856136440898247425261568", - "188900442516943508865024" + "7420340295569980428124160", + "7138533244848558942715904", + "3720467270342853653430272" ], - "expectedQty": "1063576893202533384249052", + "expectedQty": "18280182803357426615411539", "reserves": [ - "22472039487963510012431924", - "34594411664549603709368062", - "64148373171433901795907372" + "1380282696443799826999213532", + "709501692634720941383442529", + "467120959409598929792172480" ], - "mAssetSupply": "121107438346615293425598011" + "mAssetSupply": "2554425597059037748732109295" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "8564486239196258304", - "outputIndex": 0, - "expectedQty": "8501261754720403764", - "swapFee": "5143508047593652", - "reserves": [ - "22472030986701755292028160", - "34594420229035842905626366", - "64148373171433901795907372" + "type": "redeemMasset", + "inputQty": "366369610129571471320678", + "expectedQtys": [ + "197908260023991263914801", + "101730062859721958836317", + "66976929099868121626369" ], - "mAssetSupply": "121107438351758801473191663", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "34823178521598590976", - "expectedQty": "34533740155589353542", - "swapFee": "20893907112959154", + "redemptionFee": "109910883038871441396", "reserves": [ - "22471996452961599702674618", - "34594420229035842905626366", - "64148373171433901795907372" - ], - "mAssetSupply": "121107403549474186987559841" - }, - { - "type": "mintMulti", - "inputQtys": [ - "2213985353116775350272", - "73106627024053100544", - "1333987315936276512768" + "1380084788183775835735298731", + "709399962571861219424606212", + "467053982480499061670546111" ], - "expectedQty": "3631821640985633921848", + "mAssetSupply": "2554059337359791216132230013" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "807616252449341833216", + "expectedQty": "800581033171568353472", + "swapFee": "484569751469605099", "reserves": [ - "22474210438314716478024890", - "34594493335662866958726910", - "64149707158749838072420140" + "1380084788183775835735298731", + "709399962571861219424606212", + "467053181899465890102192639" ], - "mAssetSupply": "121111035371115172621481689" + "mAssetSupply": "2554058530228108518260001896" }, { "type": "mint", "inputIndex": 2, - "inputQty": "590251160022912466944", - "expectedQty": "587356949749397255853", + "inputQty": "1435087774096972878708736", + "expectedQty": "1446788678606224351075637", "reserves": [ - "22474210438314716478024890", - "34594493335662866958726910", - "64150297409909860984887084" + "1380084788183775835735298731", + "709399962571861219424606212", + "468488269673562862980901375" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "2853892718059781879758848", - "expectedQty": "2855591014267531364471340", + "inputIndex": 0, + "inputQty": "6444117905783189871263744", + "expectedQty": "6410483376812000581610608", "reserves": [ - "22474210438314716478024890", - "37448386053722648838485758", - "64150297409909860984887084" + "1386528906089559025606562475", + "709399962571861219424606212", + "468488269673562862980901375" ] }, { "type": "mintMulti", "inputQtys": [ - "4777088386783343804416", - "10585487081529958989824", - "10520748459822237614080" + "986580588951050802692096", + "1398332841634770068701184", + "625744539290767990980608" ], - "expectedQty": "25876126724558409877827", + "expectedQty": "3012431913449242369129907", "reserves": [ - "22478987526701499821829306", - "37458971540804178797475582", - "64160818158369683222501164" + "1387515486678510076409254571", + "710798295413495989493307396", + "469114014212853630971881983" ], - "mAssetSupply": "123993089869057011793086709" + "mAssetSupply": "2564928234196975985561818048" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2974428435782828132663296", - "expectedQty": "2944453503639794141452117", - "swapFee": "1784657061469696879597", + "type": "redeemMasset", + "inputQty": "12443979903526633472", + "expectedQtys": [ + "6729636618084091430", + "3447467277166861704", + "2275266026515144626" + ], + "redemptionFee": "3733193971057990", "reserves": [ - "19534534023061705680377189", - "37458971540804178797475582", - "64160818158369683222501164" + "1387515479948873458325163141", + "710798291966028712326445692", + "469114011937587604456737357" ], - "mAssetSupply": "121020446090335653357303010" + "mAssetSupply": "2564928221756729276006242566" }, { "type": "redeemMasset", - "inputQty": "358147532731133861874892", + "inputQty": "6502168841220796", "expectedQtys": [ - "57793096256166000094072", - "110822707383698944100931", - "189820363020865566193223" + "3516337527871129", + "1801354107327828", + "1188861118210447" ], - "redemptionFee": "107444259819340158562", + "redemptionFee": "1950650652366", "reserves": [ - "19476740926805539680283117", - "37348148833420479853374651", - "63970997795348817656307941" + "1387515479945357120797292012", + "710798291964227358219117864", + "469114011936398743338526910" ], - "mAssetSupply": "120662406001864338835586680" + "mAssetSupply": "2564928221750229057815674136" }, { "type": "mintMulti", "inputQtys": [ - "72605911310518062153728", - "107491725458624361791488", - "31185598090984418181120" + "1570574750083226271744", + "563058613555574079488", + "3950032178938312130560" ], - "expectedQty": "211901742971528465528323", + "expectedQty": "6108506834352542261701", "reserves": [ - "19549346838116057742436845", - "37455640558879104215166139", - "64002183393439802074489061" + "1387517050520107204023563756", + "710798855022840913793197352", + "469117961968577681650657470" ], - "mAssetSupply": "120874307744835867301115003" + "mAssetSupply": "2564934330257063410357935837" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "20636289755086644576256", - "97262570499963504033792", - "25212327120438890070016" + "65372482649857794048", + "198207635076747460608", + "116592085686358392832" ], - "expectedQty": "143185288021089676764963", - "swapFee": "85962750462931564997", + "expectedQty": "381040766120636032110", "reserves": [ - "19528710548360971097860589", - "37358377988379140711132347", - "63976971066319363184419045" + "1387517115892589853881357804", + "710799053230475990540657960", + "469118078560663368009050302" ], - "mAssetSupply": "120731122456814777624350040" + "mAssetSupply": "2564934711297829530993967947" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "126522105416497187782656", - "expectedQty": "126469673936892524873742", - "swapFee": "75913263249898312669", + "inputQty": "810467005610508156928", + "outputIndex": 0, + "expectedQty": "815292823693971624898", + "swapFee": "486908975924621790", "reserves": [ - "19528710548360971097860589", - "37231908314442248186258605", - "63976971066319363184419045" + "1387516300599766159909732906", + "710799863697481601048814888", + "469118078560663368009050302" ], - "mAssetSupply": "120604676264661530334880053" + "mAssetSupply": "2564934711784738506918589737", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "293569516274617650511872", + "expectedQty": "291009927218080492288522", + "swapFee": "176141709764770590307", + "reserves": [ + "1387516300599766159909732906", + "710799863697481601048814888", + "468827068633445287516761780" + ], + "mAssetSupply": "2564641318410173654038668172" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "10351328710383922864717824", - "expectedQty": "10339203231502647155567261", + "inputIndex": 2, + "inputQty": "34620163264557132808192", + "expectedQty": "34903890517569739695222", "reserves": [ - "19528710548360971097860589", - "47583237024826171050976429", - "63976971066319363184419045" + "1387516300599766159909732906", + "710799863697481601048814888", + "468861688796709844649569972" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "6896671945739897667584", - "expectedQty": "6803235281541435693946", - "swapFee": "4138003167443938600", + "type": "mint", + "inputIndex": 2, + "inputQty": "820016307434813521920", + "expectedQty": "826736110135396173319", + "reserves": [ + "1387516300599766159909732906", + "710799863697481601048814888", + "468862508813017279463091892" + ] + }, + { + "type": "redeemMasset", + "inputQty": "73438348641752386738585", + "expectedQtys": [ + "39718972334574649719057", + "20347321404019591536743", + "13421634764372608717234" + ], + "redemptionFee": "22031504592525716021", "reserves": [ - "19521907313079429662166643", - "47583237024826171050976429", - "63976971066319363184419045" + "1387476581627431585260013849", + "710779516376077581457278145", + "468849087178252906854374658" ], - "mAssetSupply": "130936986962221605036718330" + "mAssetSupply": "2564603632719664199313514149" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "215697701557778859950080", - "expectedQty": "216594958912398621384430", - "swapFee": "129418620934667315970", + "inputIndex": 1, + "inputQty": "2205188198177343375671296", + "expectedQty": "2200990741256571756253429", + "swapFee": "1323112918906406025402", "reserves": [ - "19521907313079429662166643", - "47583237024826171050976429", - "63760376107406964563034615" + "1387476581627431585260013849", + "708578525634821009701024716", + "468849087178252906854374658" ], - "mAssetSupply": "130721418679284760844084220" + "mAssetSupply": "2562399767634405762343868255" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4315627443735262694211584", - "931945797301216693190656", - "4045269630084150984704" + "9411714007516819014811648", + "13082635115180883781353472", + "2721924157985928578596864" ], - "expectedQty": "5296023047545237025244030", + "expectedQty": "25206958106344300419949053", + "swapFee": "15133254816696598210895", "reserves": [ - "23837534756814692356378227", - "48515182822127387744167085", - "63764421377037048714019319" + "1378064867619914766245202201", + "695495890519640125919671244", + "466127163020266978275777794" ], - "mAssetSupply": "136017441726829997869328250" + "mAssetSupply": "2537192809528061461923919202" }, { - "type": "redeemMasset", - "inputQty": "276798979761334470574080", - "expectedQtys": [ - "48495441138857348180629", - "98700021495250115071249", - "129723302983727082353815" + "type": "mintMulti", + "inputQtys": [ + "14705341168115712000", + "20528433741667569664", + "16082475798783361024" ], - "redemptionFee": "83039693928400341172", + "expectedQty": "51398498893948266481", "reserves": [ - "23789039315675835008197598", - "48416482800632137629095836", - "63634698074053321631665504" + "1378064882325255934360914201", + "695495911048073867587240908", + "466127179102742777059138818" ], - "mAssetSupply": "135740725786762591799095342" + "mAssetSupply": "2537192860926560355872185683" }, { - "type": "redeemMasset", - "inputQty": "80298653321738101719040", - "expectedQtys": [ - "14068399453825675932485", - "28632615682791916627036", - "37632387745874817270895" - ], - "redemptionFee": "24089595996521430515", + "type": "swap", + "inputIndex": 0, + "inputQty": "98683929399335701184512", + "outputIndex": 2, + "expectedQty": "97315057020955833218744", + "swapFee": "58897862654041242408", "reserves": [ - "23774970916222009332265113", - "48387850184949345712468800", - "63597065686307446814394609" + "1378163566254655270062098713", + "695495911048073867587240908", + "466029864045721821225920074" ], - "mAssetSupply": "135660451223036850218806817" + "mAssetSupply": "2537192919824423009913428091", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1324692008799563660918784", - "expectedQty": "1311797645384642143688153", - "swapFee": "794815205279738196551", + "inputIndex": 1, + "inputQty": "38284649867676550692864", + "expectedQty": "38206797736712681608393", + "swapFee": "22970789920605930415", "reserves": [ - "22463173270837367188576960", - "48387850184949345712468800", - "63597065686307446814394609" + "1378163566254655270062098713", + "695457704250337154905632515", + "466029864045721821225920074" ], - "mAssetSupply": "134336554029442566296084584" + "mAssetSupply": "2537154658145345253968665642" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "571264511650482356224000", - "expectedQty": "571824673205446637854347", - "swapFee": "342758706990289413734", + "inputIndex": 2, + "inputQty": "87976559594609647774859264", + "expectedQty": "87032021117077421989086576", + "swapFee": "52785935756765788664915", "reserves": [ - "22463173270837367188576960", - "47816025511743899074614453", - "63597065686307446814394609" + "1378163566254655270062098713", + "695457704250337154905632515", + "378997842928644399236833498" ], - "mAssetSupply": "133765632276499074229274318" + "mAssetSupply": "2449230884486492371982471293" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2924742333800965002493952", - "expectedQty": "2919656329391151235773418", + "type": "redeem", + "inputIndex": 2, + "inputQty": "133661271082260689707859968", + "expectedQty": "130958434877857536944512996", + "swapFee": "80196762649356413824715", "reserves": [ - "22463173270837367188576960", - "50740767845544864077108405", - "63597065686307446814394609" - ] + "1378163566254655270062098713", + "695457704250337154905632515", + "248039408050786862292320502" + ], + "mAssetSupply": "2315649810166881038688436040" }, { "type": "redeemMasset", - "inputQty": "41575061447597571755212", + "inputQty": "316597508870370020556", "expectedQtys": [ - "6830491022280716838373", - "15429002619259256782527", - "19338282306608713966430" + "188367106732397704928", + "95055012925936888302", + "33901974188098656402" ], - "redemptionFee": "12472518434279271526", + "redemptionFee": "94979252661111006", "reserves": [ - "22456342779815086471738587", - "50725338842925604820325878", - "63577727404000838100428179" + "1378163377887548537664393785", + "695457609195324228968744213", + "248039374148812674193664100" ], - "mAssetSupply": "136643726016961062172564050" + "mAssetSupply": "2315649493664351420979526490" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "109916614837135548088320", - "expectedQty": "109703280226675346458072", + "inputQty": "4592724277945100", + "expectedQty": "4593685311862636", + "swapFee": "2755634566767", "reserves": [ - "22456342779815086471738587", - "50835255457762740368414198", - "63577727404000838100428179" - ] + "1378163377887548537664393785", + "695457609190730543656881577", + "248039374148812674193664100" + ], + "mAssetSupply": "2315649493659761452336148157" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "209900502064516458086400", - "expectedQty": "209083774151330716611900", + "inputQty": "5074693565764007924596736", + "expectedQty": "4916766906916841518718614", + "swapFee": "3044816139458404754758", "reserves": [ - "22456342779815086471738587", - "50835255457762740368414198", - "63787627906065354558514579" - ] + "1378163377887548537664393785", + "695457609190730543656881577", + "243122607241895832674945486" + ], + "mAssetSupply": "2310577844910136902816306179" }, { "type": "mint", "inputIndex": 2, - "inputQty": "299242580179828864", - "expectedQty": "298074914484879898", + "inputQty": "377714729573652277231616", + "expectedQty": "389836209050352219791545", "reserves": [ - "22456342779815086471738587", - "50835255457762740368414198", - "63787628205307934738343443" + "1378163377887548537664393785", + "695457609190730543656881577", + "243500321971469484952177102" ] }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "408605555400948876050432", - "expectedQty": "404126074990390513156153", - "swapFee": "245163333240569325630", - "reserves": [ - "22052216704824695958582434", - "50835255457762740368414198", - "63787628205307934738343443" - ], - "mAssetSupply": "136554152977346274413789118" - }, { "type": "redeemMasset", - "inputQty": "107333799042289696768", + "inputQty": "124295755810045207511040", "expectedQtys": [ - "17328203208630032370", - "39945355540697524853", - "50123078261619290856" + "74102494001005650509078", + "37394073982725479567719", + "13092773641824390028635" ], - "redemptionFee": "32200139712686909", + "redemptionFee": "37288726743013562253", "reserves": [ - "22052199376621487328550064", - "50835215512407199670889345", - "63787578082229673119052587" + "1378089275393547532013884707", + "695420215116747818177313858", + "243487229197827660562148467" ], - "mAssetSupply": "136554045675747371836779259" + "mAssetSupply": "2310843422652103952842148937" }, { - "type": "redeemBassets", - "inputQtys": [ - "15060587789153428570112", - "22626858815070513659904", - "13294594261560896520192" - ], - "expectedQty": "51044461335215688322208", - "swapFee": "30645063839433072837", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7250795499522349330333696", + "expectedQty": "7252432633535604582931304", + "swapFee": "4350477299713409598200", "reserves": [ - "22037138788832333899979952", - "50812588653592129157229441", - "63774283487968112222532395" + "1378089275393547532013884707", + "688167782483212213594382554", + "243487229197827660562148467" ], - "mAssetSupply": "136503001214412156148457051" + "mAssetSupply": "2303596977629881316921413441" }, { - "type": "redeemMasset", - "inputQty": "307806322898473543584972", - "expectedQtys": [ - "49677557608751701883520", - "114545056156193335384424", - "143764155242145518533271" + "type": "mintMulti", + "inputQtys": [ + "79965618651030647472128", + "6764279047910149062656", + "61278722373541617991680" ], - "redemptionFee": "92341896869542063075", + "expectedQty": "149181545320468614882610", "reserves": [ - "21987461231223582198096432", - "50698043597435935821845017", - "63630519332725966703999124" + "1378169241012198562661356835", + "688174546762260123743445210", + "243548507920201202180140147" ], - "mAssetSupply": "136195287233410552146935154" + "mAssetSupply": "2303746159175201785536296051" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2105906943660537772244992", - "expectedQty": "2112832431385842916918149", - "swapFee": "1263544166196322663346", + "type": "mint", + "inputIndex": 0, + "inputQty": "4467226120910739674759168", + "expectedQty": "4423721757322078267370941", "reserves": [ - "21987461231223582198096432", - "50698043597435935821845017", - "61517686901340123787080975" - ], - "mAssetSupply": "134090643833916210697353508" + "1382636467133109302336116003", + "688174546762260123743445210", + "243548507920201202180140147" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1714017118085980618752", - "outputIndex": 2, - "expectedQty": "1715847979916237720598", - "swapFee": "1026251233600675249", + "inputIndex": 2, + "inputQty": "792687437977529670959104", + "outputIndex": 1, + "expectedQty": "818118155135430518914681", + "swapFee": "490815106457169471830", "reserves": [ - "21987461231223582198096432", - "50699757614554021802463769", - "61515971053360207549360377" + "1382636467133109302336116003", + "687356428607124693224530529", + "244341195358178731851099251" ], - "mAssetSupply": "134090644860167444298028757", + "mAssetSupply": "2308170371747630320973138822", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "43247210533040645210112", - "expectedQty": "43689498741595052876924", + "inputIndex": 2, + "inputQty": "25796378518979026960252928", + "expectedQty": "26538743782317882938760902", "reserves": [ - "22030708441756622843306544", - "50699757614554021802463769", - "61515971053360207549360377" + "1382636467133109302336116003", + "687356428607124693224530529", + "270137573877157758811352179" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "748958500680618108518400", - "outputIndex": 1, - "expectedQty": "747173077571109199366231", - "swapFee": "447670384284903880197", + "type": "mintMulti", + "inputQtys": [ + "16105237327303292055715840", + "6485068986319155157270528", + "11415492526709339276181504" + ], + "expectedQty": "34151444614363556233201873", "reserves": [ - "22030708441756622843306544", - "49952584536982912603097538", - "62264929554040825657878777" + "1398741704460412594391831843", + "693841497593443848381801057", + "281553066403867098087533683" ], - "mAssetSupply": "134134782029293324254785878", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2368860560144311760145101597" }, { - "type": "redeemMasset", - "inputQty": "36216119124228630118", - "expectedQtys": [ - "5946462127289401839", - "13483050392804638115", - "16806361285671116467" + "type": "mintMulti", + "inputQtys": [ + "2620874379112271052800", + "1349438196540011446272", + "4957903883218557337600" ], - "redemptionFee": "10864835737268589", + "expectedQty": "9026624447402231092480", "reserves": [ - "22030702495294495553904705", - "49952571053932519798459423", - "62264912747679539986762310" + "1398744325334791706662884643", + "693842847031640388393247329", + "281558024307750316644871283" ], - "mAssetSupply": "134134745824039035763424349" + "mAssetSupply": "2368869586768759162376194077" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1896557767568664035328", - "969256091463387578368", - "721882332533750628352" + "2420343766139335962787840", + "6091694179958578034507776", + "8445188164407172551147520" ], - "expectedQty": "3602395796565896363622", + "expectedQty": "17147313225482437901489087", + "swapFee": "10294564674093919092348", "reserves": [ - "22032599053062064217940033", - "49953540310023983186037791", - "62265634630012073737390662" + "1396323981568652370700096803", + "687751152851681810358739553", + "273112836143343144093723763" ], - "mAssetSupply": "134138348219835601659787971" + "mAssetSupply": "2351722273543276724474704990" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1968698431371166261182464", - "expectedQty": "1960882648819235380062199", + "type": "redeemBassets", + "inputQtys": [ + "5546433510914930679742464", + "22932517842438136755388416", + "614265220230560742375424" + ], + "expectedQty": "29059423872604641437415102", + "swapFee": "17446121996760841367269", "reserves": [ - "22032599053062064217940033", - "49953540310023983186037791", - "64234333061383239998573126" - ] + "1390777548057737440020354339", + "664818635009243673603351137", + "272498570923112583351348339" + ], + "mAssetSupply": "2322662849670672083037289888" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "38767892790538838016", + "expectedQty": "39095883393323075839", + "swapFee": "23260735674323302", + "reserves": [ + "1390777508961854046697278500", + "664818635009243673603351137", + "272498570923112583351348339" + ], + "mAssetSupply": "2322662810926040028172775174" }, { "type": "redeemMasset", - "inputQty": "88120845214679511859", + "inputQty": "5177837901092699819212", "expectedQtys": [ - "14261276710151849913", - "32333963836825141973", - "41577645736403865510" + "3099485684222224691135", + "1481614297425217191679", + "607290105070549920407" ], - "redemptionFee": "26436253564403853", + "redemptionFee": "1553351370327809945", "reserves": [ - "22032584791785354066090120", - "49953507976060146360895818", - "64234291483737503594707616" + "1390774409476169824472587365", + "664817153394946248386159458", + "272497963633007512801427932" ], - "mAssetSupply": "136099142774245875924742164" + "mAssetSupply": "2322657634641490305800765907" }, { "type": "mint", "inputIndex": 0, - "inputQty": "49948117155103178227712", - "expectedQty": "50478205566148401305435", + "inputQty": "4213732827786052863262720", + "expectedQty": "4175795893293087622857469", "reserves": [ - "22082532908940457244317832", - "49953507976060146360895818", - "64234291483737503594707616" + "1394988142303955877335850085", + "664817153394946248386159458", + "272497963633007512801427932" ] }, { "type": "mintMulti", "inputQtys": [ - "237105197960716255232", - "228654844460774260736", - "154507013639813005312" + "40719472748555538991677440", + "9472488275574275918790656", + "11737659745452454374801408" ], - "expectedQty": "621721699376023503755", + "expectedQty": "61862043816545062859521959", "reserves": [ - "22082770014138417960573064", - "49953736630904607135156554", - "64234445990751143407712928" + "1435707615052511416327527525", + "674289641670520524304950114", + "284235623378459967176229340" ], - "mAssetSupply": "136150242701511400349551354" + "mAssetSupply": "2388695474351328456283145335" }, { "type": "redeemBassets", "inputQtys": [ - "21260661067046453248000", - "102484205857529416122368", - "178341887640989220208640" + "2857651585883833460850688", + "5907279785706742899277824", + "4899554483505688630788096" ], - "expectedQty": "301395962592738377166708", - "swapFee": "180946145242788699519", + "expectedQty": "13764514484468096973196325", + "swapFee": "8263666890815347392353", "reserves": [ - "22061509353071371507325064", - "49851252425047077719034186", - "64056104103110154187504288" + "1432849963466627582866676837", + "668382361884813781405672290", + "279336068894954278545441244" ], - "mAssetSupply": "135848846738918661972384646" + "mAssetSupply": "2374930959866860359309949010" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1066327760516896692109312", - "outputIndex": 0, - "expectedQty": "1049393460959822272506639", - "swapFee": "637166350652786562800", + "type": "redeemBassets", + "inputQtys": [ + "21696550113170785809989632", + "28575425345139034099286016", + "24744217859197328466903040" + ], + "expectedQty": "75503975178547444692730342", + "swapFee": "45329582856842572359053", "reserves": [ - "21012115892111549234818425", - "49851252425047077719034186", - "65122431863627050879613600" + "1411153413353456797056687205", + "639806936539674747306386274", + "254591851035756950078538204" ], - "mAssetSupply": "135849483905269314758947446", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2299426984688312914617218668" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "8547035634040277303296", - "expectedQty": "8509383300269388197485", + "type": "redeemMasset", + "inputQty": "254331743851162976124928", + "expectedQtys": [ + "156036021372429958832241", + "70745624026016585601320", + "28151084873938992145857" + ], + "redemptionFee": "76299523155348892837", "reserves": [ - "21012115892111549234818425", - "49851252425047077719034186", - "65130978899261091156916896" - ] + "1410997377332084367097854964", + "639736190915648730720784954", + "254563699950883011086392347" + ], + "mAssetSupply": "2299172729243984906989986577" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "19419469088806696", - "expectedQty": "19333911237403407", + "inputIndex": 0, + "inputQty": "1218701618777568313344", + "expectedQty": "1206596182520930134874", "reserves": [ - "21012115892111549234818425", - "49851252425047077719034186", - "65130978918680560245723592" + "1410998596033703144666168308", + "639736190915648730720784954", + "254563699950883011086392347" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5206882559876994695168", - "outputIndex": 2, - "expectedQty": "5216236261189169993216", - "swapFee": "3117825105523730186", + "type": "mint", + "inputIndex": 0, + "inputQty": "6473476962932721748803584", + "expectedQty": "6408972586248974948166128", "reserves": [ - "21012115892111549234818425", - "49856459307606954713729354", - "65125762682419371075730376" - ], - "mAssetSupply": "135857996425728600908278524", - "hardLimitError": false, - "insufficientLiquidityError": false + "1417472072996635866414971892", + "639736190915648730720784954", + "254563699950883011086392347" + ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "4074665640695175315456", - "expectedQty": "4090237342367581601014", - "swapFee": "2444799384417105189", + "inputIndex": 0, + "inputQty": "125159833836084719723216896", + "expectedQty": "126270476399279400186920182", + "swapFee": "75095900301650831833930", "reserves": [ - "21012115892111549234818425", - "49856459307606954713729354", - "65121672445077003494129362" + "1291201596597356466228051710", + "639736190915648730720784954", + "254563699950883011086392347" ], - "mAssetSupply": "135853924204887290150068257" + "mAssetSupply": "2180498170490633333976904613" }, { "type": "mint", "inputIndex": 1, - "inputQty": "728333358200054582607872", - "expectedQty": "726826463096325911014436", + "inputQty": "2313680365492150206464", + "expectedQty": "2313173570705704122058", "reserves": [ - "21012115892111549234818425", - "50584792665807009296337226", - "65121672445077003494129362" + "1291201596597356466228051710", + "639738504596014222870991418", + "254563699950883011086392347" ] }, { - "type": "redeemMasset", - "inputQty": "1071844811061821702144", - "expectedQtys": [ - "164847321163909102417", - "396855205130513033862", - "510902058003341028285" - ], - "redemptionFee": "321553443318546510", + "type": "swap", + "inputIndex": 2, + "inputQty": "5722750402183055080947712", + "outputIndex": 0, + "expectedQty": "5912584930154867696490560", + "swapFee": "3519215598625979911244", "reserves": [ - "21011951044790385325716008", - "50584395810601878783303364", - "65121161543019000153101077" + "1285289011667201598531561150", + "639738504596014222870991418", + "260286450353066066167340059" ], - "mAssetSupply": "136579679144725997557927059" + "mAssetSupply": "2180504002879802665660937915", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "13103354456674807054336", - "expectedQty": "12938884580799895994269", - "swapFee": "7862012674004884232", + "inputIndex": 1, + "inputQty": "4189117283586915732291584", + "expectedQty": "4187147647096035972022593", + "swapFee": "2513470370152149439374", "reserves": [ - "20999012160209585429721739", - "50584395810601878783303364", - "65121161543019000153101077" + "1285289011667201598531561150", + "635551356948918186898968825", + "260286450353066066167340059" ], - "mAssetSupply": "136566583652281996755756955" + "mAssetSupply": "2176317399066585902078085705" }, { "type": "redeemMasset", - "inputQty": "192970089703374489", + "inputQty": "959210788611953049", "expectedQtys": [ - "29662934354235295", - "71454866582807986", - "91989314791788999" + "566320532142160451", + "280034902192238362", + "114686704496241311" ], - "redemptionFee": "57891026911012", + "redemptionFee": "287763236583585", "reserves": [ - "20999012130546651075486444", - "50584395739147012200495378", - "65121161451029685361312078" + "1285289011100881066389400699", + "635551356668883284706730463", + "260286450238379361671098748" ], - "mAssetSupply": "136566583459369798079293478" + "mAssetSupply": "2176317398107662876702716241" }, { - "type": "mintMulti", - "inputQtys": [ - "88376896883995342536704", - "97645650347059201441792", - "92365698031906233253888" + "type": "redeemMasset", + "inputQty": "48362903362270351536947", + "expectedQtys": [ + "28553583313730802241124", + "14119212454213722497460", + "5782443308957437812715" ], - "expectedQty": "278845414308731973508697", + "redemptionFee": "14508871008681105461", "reserves": [ - "21087389027430646418023148", - "50682041389494071401937170", - "65213527149061591594565966" + "1285260457517567335587159575", + "635537237456429070984233003", + "260280667795070404233286033" ], - "mAssetSupply": "136845428873678530052802175" + "mAssetSupply": "2176269049713171615032284755" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1033027226724584521728", - "expectedQty": "1036930005048758319674", - "swapFee": "619816336034750713", - "reserves": [ - "21087389027430646418023148", - "50682041389494071401937170", - "65212490219056542836246292" + "type": "mintMulti", + "inputQtys": [ + "1868010838008244404748288", + "3881378796485177046466560", + "1202746172885793215873024" ], - "mAssetSupply": "136844396466268141503031160" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "31378060358941106176", - "expectedQty": "31756031147450854323", + "expectedQty": "6964649117693299867851716", "reserves": [ - "21087420405491005359129324", - "50682041389494071401937170", - "65212490219056542836246292" - ] - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "14836184781202216976384", - "expectedQty": "14892222824544284936801", - "swapFee": "8901710868721330185", - "reserves": [ - "21087420405491005359129324", - "50682041389494071401937170", - "65197597996231998551309491" + "1287128468355575579991907863", + "639418616252914248030699563", + "261483413967956197449159057" ], - "mAssetSupply": "136829600939228955458239284" + "mAssetSupply": "2183233698830864914900136471" }, { "type": "redeemMasset", - "inputQty": "71750601865595640086528", + "inputQty": "925394070123316019", "expectedQtys": [ - "11054488100325961195034", - "26568637257049303505525", - "34178010271541355632838" + "545403692891501032", + "270945195589886911", + "110800143974907861" ], - "redemptionFee": "21525180559678692025", + "redemptionFee": "277618221036994", "reserves": [ - "21076365917390679397934290", - "50655472752237022098431645", - "65163419985960457195676653" + "1287128467810171887100406831", + "639418615981969052440812652", + "261483413857156053474251196" ], - "mAssetSupply": "136757871862543919496844781" + "mAssetSupply": "2183233697905748462997857446" }, { "type": "redeemBassets", "inputQtys": [ - "434008249904807884619776", - "1498861033688516322656256", - "173244131002317453393920" + "691691967712659786170368", + "568570947392602189594624", + "2917131117137233667162112" ], - "expectedQty": "2107529322710875259197641", - "swapFee": "1265276759682334556252", + "expectedQty": "4242158988409631785512663", + "swapFee": "2546823487138061908452", "reserves": [ - "20642357667485871513314514", - "49156611718548505775775389", - "64990175854958139742282733" + "1286436775842459227314236463", + "638850045034576450251218028", + "258566282740018819807089084" ], - "mAssetSupply": "134650342539833044237647140" + "mAssetSupply": "2178991538917338831212344783" }, { - "type": "mintMulti", - "inputQtys": [ - "605908132796632006656", - "473649764627807928320", - "601181875262571806720" - ], - "expectedQty": "1684494682552122144570", + "type": "mint", + "inputIndex": 1, + "inputQty": "15954734516283999879430144", + "expectedQty": "15949758071579800494719670", "reserves": [ - "20642963575618668145321170", - "49157085368313133583703709", - "64990777036833402314089453" - ], - "mAssetSupply": "134652027034515596359791710" + "1286436775842459227314236463", + "654804779550860450130648172", + "258566282740018819807089084" + ] }, { - "type": "redeemMasset", - "inputQty": "2955206808821506867", - "expectedQtys": [ - "452915017976937980", - "1078526449059830206", - "1425924085083330616" + "type": "redeemBassets", + "inputQtys": [ + "29940261592542602067968", + "590022246485239005184", + "7823718864723066748928" ], - "redemptionFee": "886562042646452", + "expectedQty": "38292086462623025579728", + "swapFee": "22989045304756669349", "reserves": [ - "20642963122703650168383190", - "49157084289786684523873503", - "64990775610909317230758837" + "1286406835580866684712168495", + "654804189528613964891642988", + "258558459021154096740340156" ], - "mAssetSupply": "134652024080195349580931295" + "mAssetSupply": "2194903004902456008681484725" }, { - "type": "redeemMasset", - "inputQty": "115122574798720", - "expectedQtys": [ - "17643686688480", - "42014907868258", - "55548075908691" + "type": "mintMulti", + "inputQtys": [ + "28696412418274410627072", + "77824648479188352761856", + "16697235138384819650560" ], - "redemptionFee": "34536772439", + "expectedQty": "123351944937000527328243", "reserves": [ - "20642963122686006481694710", - "49157084289744669616005245", - "64990775610853769154850146" + "1286435531993284959122795567", + "654882014177093153244404844", + "258575156256292481559990716" ], - "mAssetSupply": "134652024080080261542905014" + "mAssetSupply": "2195026356847393009208812968" }, { "type": "redeemBassets", "inputQtys": [ - "12005481038159473016832", - "59212455383408635281408", - "32979022635764727939072" + "109152586345475393716224", + "36984969290431183454208", + "16719488710463386025984" ], - "expectedQty": "104076818667531245904954", - "swapFee": "62483581349328344549", + "expectedQty": "162323223278605977412271", + "swapFee": "97452405410409832346", "reserves": [ - "20630957641647847008677878", - "49097871834361260980723837", - "64957796588218004426911074" + "1286326379406939483729079343", + "654845029207802722060950636", + "258558436767582018173964732" ], - "mAssetSupply": "134547947261412730297000060" + "mAssetSupply": "2194864033624114403231400697" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1335197200530003712", + "expectedQty": "1323805621205343735", + "reserves": [ + "1286326380742136684259083055", + "654845029207802722060950636", + "258558436767582018173964732" + ] }, { "type": "mintMulti", "inputQtys": [ - "591971847883042383200256", - "431235436860464850534400", - "306167691084328440168448" + "208030591837396954775552", + "284064543024497461035008", + "93256391999788672876544" ], - "expectedQty": "1334241044306680125922807", + "expectedQty": "585757932211297231973827", "reserves": [ - "21222929489530889391878134", - "49529107271221725831258237", - "65263964279302332867079522" + "1286534411333974081213858607", + "655129093750827219521985644", + "258651693159581806846841276" ], - "mAssetSupply": "135882188305719410422922867" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "39493963050642468503552", - "expectedQty": "39954129302694841944180", - "reserves": [ - "21262423452581531860381686", - "49529107271221725831258237", - "65263964279302332867079522" - ] + "mAssetSupply": "2195449792880131321668718259" }, { "type": "redeemMasset", - "inputQty": "64334630183353224842444", + "inputQty": "1533321656689253102387", "expectedQtys": [ - "10060905104056453723624", - "23436070175899601624361", - "30881453978797015199246" + "898257514267611757678", + "457410719909805752577", + "180590448970371507660" ], - "redemptionFee": "19300389055005967452", + "redemptionFee": "459996497006775930", "reserves": [ - "21252362547477475406658062", - "49505671201045826229633876", - "65233082825323535851880276" + "1286533513076459813602100929", + "655128636340107309716233067", + "258651512569132836475333616" ], - "mAssetSupply": "135857827105227807045992055" + "mAssetSupply": "2195448260018471129422391802" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "35059231233349431328768", - "49381505032463300165632", - "80714369727176600715264" + "32014960086661805899776", + "27720290909672269938688", + "29633887312633405636608" ], - "expectedQty": "165114944245826186395984", - "swapFee": "99128443613663910183", + "expectedQty": "89817304642396854195165", "reserves": [ - "21217303316244125975329294", - "49456289696013362929468244", - "65152368455596359251165012" + "1286565528036546475408000705", + "655156356631016981986171755", + "258681146456445469880970224" ], - "mAssetSupply": "135692712160981980859596071" + "mAssetSupply": "2195538077323113526276586967" }, { - "type": "redeemBassets", - "inputQtys": [ - "715301941761043840", - "4403139989774326272", - "4764852278761431040" - ], - "expectedQty": "9862301319088581837", - "swapFee": "5920933351464027", + "type": "redeem", + "inputIndex": 2, + "inputQty": "18699281341884289037369344", + "expectedQty": "18202710748560956512608268", + "swapFee": "11219568805130573422421", "reserves": [ - "21217302600942184214285454", - "49456285292873373155141972", - "65152363690744080489733972" + "1286565528036546475408000705", + "655156356631016981986171755", + "240478435707884513368361956" ], - "mAssetSupply": "135692702298680661771014234" + "mAssetSupply": "2176850015550034367812640044" }, { "type": "redeemMasset", - "inputQty": "218308262814587864219648", + "inputQty": "18976831568272541142220", "expectedQtys": [ - "34125069515447483131035", - "79543531302615356339507", - "104788482393781207538384" + "11212353938739255625983", + "5709654732450732923094", + "2095757485361881410706" ], - "redemptionFee": "65492478844376359265", + "redemptionFee": "5693049470481762342", "reserves": [ - "21183177531426736731154419", - "49376741761570757798802465", - "65047575208350299282195588" + "1286554315682607736152374722", + "655150646976284531253248661", + "240476339950399151486951250" ], - "mAssetSupply": "135474459528344918283153851" + "mAssetSupply": "2176831044411515565753260166" }, { - "type": "redeemMasset", - "inputQty": "12485829392735068160", - "expectedQtys": [ - "1951734627410676253", - "4549378701179289769", - "5993227634281491817" - ], - "redemptionFee": "3745748817820520", + "type": "redeem", + "inputIndex": 1, + "inputQty": "93336415750157223591936", + "expectedQty": "93350805717189406752021", + "swapFee": "56001849450094334155", "reserves": [ - "21183175579692109320478166", - "49376737212192056619512696", - "65047569215122665000703771" + "1286554315682607736152374722", + "655057296170567341846496640", + "240476339950399151486951250" ], - "mAssetSupply": "135474447046261274365906211" + "mAssetSupply": "2176737763997614858624002385" }, { - "type": "redeemMasset", - "inputQty": "519655176597071360", - "expectedQtys": [ - "81230406933787482", - "189343304157579243", - "249435713617161090" - ], - "redemptionFee": "155896552979121", + "type": "redeem", + "inputIndex": 1, + "inputQty": "97506716197475558883328", + "expectedQty": "97521584032332357196315", + "swapFee": "58504029718485335329", "reserves": [ - "21183175498461702386690684", - "49376737022848752461933453", - "65047568965686951383542681" + "1286554315682607736152374722", + "654959774586535009489300325", + "240476339950399151486951250" ], - "mAssetSupply": "135474446526761994321813972" + "mAssetSupply": "2176640315785447101550454386" }, { - "type": "redeemBassets", - "inputQtys": [ - "516921260512963461120", - "1789041559451851554816", - "1455355511908650713088" - ], - "expectedQty": "3757526861672866195457", - "swapFee": "2255869638786991912", + "type": "mint", + "inputIndex": 1, + "inputQty": "21836046548885376", + "expectedQty": "21819636738110453", + "reserves": [ + "1286554315682607736152374722", + "654959774608371056038185701", + "240476339950399151486951250" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "358147102603020861440", + "expectedQty": "347944773305150688347", + "swapFee": "214888261561812516", "reserves": [ - "21182658577201189423229564", - "49374947981289300610378637", - "65046113610175042732829593" + "1286554315682607736152374722", + "654959774608371056038185701", + "240475992005625846336262903" ], - "mAssetSupply": "135470688999900321455618515" + "mAssetSupply": "2176639957875052396829515915" }, { "type": "mintMulti", "inputQtys": [ - "1190800294935810816", - "1905173708654546176", - "1584813087176065024" + "314908403745634450931712", + "614108000414892600328192", + "192519219315442605621248" ], - "expectedQty": "4684050431520195374", + "expectedQty": "1123718682776764628847244", "reserves": [ - "21182659768001484359040380", - "49374949886463009264924813", - "65046115194988129908894617" + "1286869224086353370603306434", + "655573882608785948638513893", + "240668511224941288941884151" ], - "mAssetSupply": "135470693683950752975813889" + "mAssetSupply": "2177763676557829161458363159" }, { "type": "redeemBassets", "inputQtys": [ - "745145517714632559558656", - "965784627730978913124352", - "217452541264551066206208" - ], - "expectedQty": "1934461351252837871304585", - "swapFee": "1161373634932662320174", - "reserves": [ - "20437514250286851799481724", - "48409165258732030351800461", - "64828662653723578842688409" + "6732358363543225000525824", + "15266515263349422309769216", + "16185446519003042442903552" ], - "mAssetSupply": "133536232332697915104509304" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "799421387008797084483584", - "expectedQty": "788828741864549261043349", - "swapFee": "479652832205278250690", + "expectedQty": "38602178011348710976491312", + "swapFee": "23175211933969608350905", "reserves": [ - "19648685508422302538438375", - "48409165258732030351800461", - "64828662653723578842688409" + "1280136865722810145602780610", + "640307367345436526328744677", + "224483064705938246498980599" ], - "mAssetSupply": "132737290598521323298276410" + "mAssetSupply": "2139161498546480450481871847" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "11378861856670132224", - "12112046996843431936", - "9803055711921811456" + "3250097022085358696792064", + "21871181517008951685677056", + "11614181069984090254475264" ], - "expectedQty": "33373631159408520490", + "expectedQty": "37080657635101479384914341", + "swapFee": "22261751632040111697967", "reserves": [ - "19648696887284159208570599", - "48409177370779027195232397", - "64828672456779290764499865" + "1276886768700724786905988546", + "618436185828427574643067621", + "212868883635954156244505335" ], - "mAssetSupply": "132737323972152482706796900" + "mAssetSupply": "2102080840911378971096957506" }, { - "type": "mintMulti", - "inputQtys": [ - "467320423928300830720", - "601461417581350486016", - "100345916509838475264" - ], - "expectedQty": "1173625246085439521431", + "type": "redeem", + "inputIndex": 2, + "inputQty": "235191948869179250049024", + "expectedQty": "226991165715070003395917", + "swapFee": "141115169321507550029", "reserves": [ - "19649164207708087509401319", - "48409778832196608545718413", - "64828772802695800602975129" + "1276886768700724786905988546", + "618436185828427574643067621", + "212641892470239086241109418" ], - "mAssetSupply": "132738497597398568146318331" + "mAssetSupply": "2101845790077679113354458511" }, { "type": "redeemMasset", - "inputQty": "1017568934467695411", + "inputQty": "13622344900577382419660", "expectedQtys": [ - "150584654294627387", - "370996431851591128", - "496826136605307115" + "8273191966187837295066", + "4006965542764411643721", + "1377747220491471451130" ], - "redemptionFee": "305270680340308", + "redemptionFee": "4086703470173214725", "reserves": [ - "19649164057123433214773932", - "48409778461200176694127285", - "64828772305869663997668014" + "1276878495508758599068693480", + "618432178862884810231423900", + "212640514723018594769658288" ], - "mAssetSupply": "132738496580134904358963228" + "mAssetSupply": "2101832171819482006145253576" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "305802996113294590214144", - "expectedQty": "306256906104468279283475", - "swapFee": "183481797667976754128", + "inputIndex": 0, + "inputQty": "23518796500102098944", + "expectedQty": "23751846033484809461", + "swapFee": "14111277900061259", "reserves": [ - "19649164057123433214773932", - "48103521555095708414843810", - "64828772305869663997668014" + "1276878471756912565583884019", + "618432178862884810231423900", + "212640514723018594769658288" ], - "mAssetSupply": "132432877065819277745503212" + "mAssetSupply": "2101832148314796783943215891" }, { "type": "redeemBassets", "inputQtys": [ - "11830889447641904", - "4264374677697508", - "7484804323892501" + "1497946263634181229641728", + "1987024561250141374251008", + "8545998482224684633948160" ], - "expectedQty": "23692670994770864", - "swapFee": "14224137079109", + "expectedQty": "12329706434787919950909054", + "swapFee": "7402265220004754823439", "reserves": [ - "19649164045292543767132028", - "48103521550831333737146302", - "64828772298384859673775513" + "1275380525493278384354242291", + "616445154301634668857172892", + "204094516240793910135710128" ], - "mAssetSupply": "132432877042126606750732348" + "mAssetSupply": "2089502441880008863992306837" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9889607331143481344", - "16250262084431392768", - "4959240166682887168" - ], - "expectedQty": "31173341648691355981", - "reserves": [ - "19649173934899874910613372", - "48103537801093418168539070", - "64828777257625026356662681" + "732734897730380701368320", + "2330683568740265053126656", + "659438355284666099957760" ], - "mAssetSupply": "132432908215468255442088329" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1999577835263992325472256", - "expectedQty": "1995168800998397736621728", - "reserves": [ - "19649173934899874910613372", - "50103115636357410494011326", - "64828777257625026356662681" - ] - }, - { - "type": "redeemMasset", - "inputQty": "1144904666354366683073740", - "expectedQtys": [ - "167298993617547489558252", - "426593039017185274368043", - "551971763728604978111912" - ], - "redemptionFee": "343471399906310004922", + "expectedQty": "3738568048075102057105017", + "swapFee": "2244487521357875959838", "reserves": [ - "19481874941282327421055120", - "49676522597340225219643283", - "64276805493896421378550769" + "1274647790595548003652873971", + "614114470732894403804046236", + "203435077885509244035752368" ], - "mAssetSupply": "133283515821512192805641239" + "mAssetSupply": "2085763873831933761935201820" }, { "type": "redeemBassets", "inputQtys": [ - "50579561022601813819392", - "421307428272146208522240", - "371102376742102849552384" + "50133924834669932576768", + "57057478943781364432896", + "78352099314677271494656" ], - "expectedQty": "840953911994222182774630", - "swapFee": "504875272359949279232", + "expectedQty": "187984779807949940700205", + "swapFee": "112858583034590718851", "reserves": [ - "19431295380259725607235728", - "49255215169068079011121043", - "63905703117154318528998385" + "1274597656670713333720297203", + "614057413253950622439613340", + "203356725786194566764257712" ], - "mAssetSupply": "132442561909517970622866609" + "mAssetSupply": "2085575889052125811994501615" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "30497722646894989017088", - "expectedQty": "30354508471507610323299", + "inputIndex": 0, + "inputQty": "41903118643497957064704", + "expectedQty": "41448126996954544214971", "reserves": [ - "19431295380259725607235728", - "49255215169068079011121043", - "63936200839801213518015473" + "1274639559789356831677361907", + "614057413253950622439613340", + "203356725786194566764257712" ] }, { "type": "redeemBassets", "inputQtys": [ - "4585578277389101056", - "5383749889820048384", - "4823970964784685056" + "4067044850546920914944", + "58727005963420872736768", + "52585792792132166090752" ], - "expectedQty": "14820609822991901647", - "swapFee": "8897704516505044", + "expectedQty": "117325449667001997481839", + "swapFee": "70437532319592954261", "reserves": [ - "19431290794681448218134672", - "49255209785318189191072659", - "63936196015830248733330417" + "1274635492744506284756446963", + "613998686247987201566876572", + "203304139993402434598166960" ], - "mAssetSupply": "132472901597379655241288261" + "mAssetSupply": "2085500011729455764541234747" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2312758677184166494208", - "expectedQty": "2280320540669070902443", - "swapFee": "1387655206310499896", + "type": "swap", + "inputIndex": 2, + "inputQty": "15896150189176553855778816", + "outputIndex": 0, + "expectedQty": "16623181612477194196191184", + "swapFee": "9879806961951044681499", "reserves": [ - "19429010474140779147232229", - "49255209785318189191072659", - "63936196015830248733330417" + "1258012311132029090560255779", + "613998686247987201566876572", + "219200290182578988453945776" ], - "mAssetSupply": "132470590226357677385293949" + "mAssetSupply": "2085509891536417715585916246", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "12971334045720784", - "25095931763419944", - "3130533958408616" + "8619425617540138907205632", + "10580166439628790598467584", + "4522993214236793910591488" ], - "expectedQty": "41301642314351117", - "swapFee": "24795862906354", + "expectedQty": "23779852852292901603049794", + "swapFee": "14276477597934501662827", "reserves": [ - "19429010461169445101511445", - "49255209760222257427652715", - "63936196012699714774921801" + "1249392885514488951653050147", + "603418519808358410968408988", + "214677296968342194543354288" ], - "mAssetSupply": "132470590185056035070942832" + "mAssetSupply": "2061730038684124813982866452" }, { - "type": "redeemMasset", - "inputQty": "281908171641037852665446", - "expectedQtys": [ - "41334107813734195394686", - "104787639838173015396041", - "136020597882261048845470" + "type": "mintMulti", + "inputQtys": [ + "2329911269098401206108160", + "3726324204866477884440576", + "416717282352363315658752" ], - "redemptionFee": "84572451492311355799", + "expectedQty": "6461486455970198102900020", "reserves": [ - "19387676353355710906116759", - "49150422120384084412256674", - "63800175414817453726076331" + "1251722796783587352859158307", + "607144844013224888852849564", + "215094014250694557859013040" ], - "mAssetSupply": "132188766585866489529633185" + "mAssetSupply": "2068191525140095012085766472" }, { - "type": "redeemMasset", - "inputQty": "1841256683150360371", - "expectedQtys": [ - "269969833832999240", - "684410604490268240", - "888405729564040233" + "type": "redeemBassets", + "inputQtys": [ + "38898791355759223373824000", + "26216799355921592047632384", + "33108475434559120527589376" ], - "redemptionFee": "552377004945108", + "expectedQty": "99047952137917280770715814", + "swapFee": "59464449952722001663427", "reserves": [ - "19387676083385877073117519", - "49150421435973479921988434", - "63800174526411724162036098" + "1212824005427828129485334307", + "580928044657303296805217180", + "181985538816135437331423664" ], - "mAssetSupply": "132188764745162183384217922" + "mAssetSupply": "1969143573002177731315050658" }, { - "type": "redeemMasset", - "inputQty": "108782700644508977489510", - "expectedQtys": [ - "15950001912093393859429", - "40435445306194928478708", - "52487616427643690152371" + "type": "redeemBassets", + "inputQtys": [ + "17349749852383324399468544", + "10686308327326727949778944", + "14177720666136342926721024" ], - "redemptionFee": "32634810193352693246", + "expectedQty": "42656008109154141811010950", + "swapFee": "25608970247641069728443", "reserves": [ - "19371726081473783679258090", - "49109985990667284993509726", - "63747686909984080471883727" + "1195474255575444805085865763", + "570241736329976568855438236", + "167807818149999094404702640" ], - "mAssetSupply": "132080014679327867759421658" + "mAssetSupply": "1926487564893023589504039708" }, { - "type": "redeemMasset", - "inputQty": "15337192395777667891", - "expectedQtys": [ - "2248778956483336387", - "5700963485882723115", - "7400190166056393241" - ], - "redemptionFee": "4601157718733300", + "type": "swap", + "inputIndex": 2, + "inputQty": "628383797644695175168000", + "outputIndex": 1, + "expectedQty": "659895122264634577597367", + "swapFee": "395712874934877472132", "reserves": [ - "19371723832694827195921703", - "49109980289703799110786611", - "63747679509793914415490486" + "1195474255575444805085865763", + "569581841207711934277840869", + "168436201947643789579870640" ], - "mAssetSupply": "132079999346736629700487067" + "mAssetSupply": "1926487960605898524381511840", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "365033466994481920", - "expectedQtys": [ - "53522154368705302", - "135686011674055089", - "176128524897275802" - ], - "redemptionFee": "109510040098344", + "type": "redeem", + "inputIndex": 2, + "inputQty": "619531678426237939744768", + "expectedQty": "589944664804097342428263", + "swapFee": "371719007055742763846", "reserves": [ - "19371723779172672827216401", - "49109980154017787436731522", - "63747679333665389518214684" + "1195474255575444805085865763", + "569581841207711934277840869", + "167846257282839692237442377" ], - "mAssetSupply": "132079998981812672746103491" + "mAssetSupply": "1925868800646479342184530918" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "4850464031566783840256", + "inputQty": "745457171499694719762432", + "expectedQty": "744574818431560058168839", + "reserves": [ + "1195474255575444805085865763", + "570327298379211628997603301", + "167846257282839692237442377" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "215893530871071760187392", "outputIndex": 2, - "expectedQty": "4859157116160047006155", - "swapFee": "2903540014263311484", + "expectedQty": "203003130432802070938956", + "swapFee": "127943254039672819809", "reserves": [ - "19371723779172672827216401", - "49114830618049354220571778", - "63742820176549229471208529" + "1195690149106315876846053155", + "570327298379211628997603301", + "167643254152406890166503421" ], - "mAssetSupply": "132080001885352687009414975", + "mAssetSupply": "1926613503408164941915519566", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "81011520041653459799244", + "inputQty": "40678405459372742", "expectedQtys": [ - "11878119071370569590257", - "30115637250548422741726", - "39085050800489488751315" + "25238158547369268", + "12038244850595876", + "3538548035088948" ], - "redemptionFee": "24303456012496037939", + "redemptionFee": "12203521637811", "reserves": [ - "19359845660101302257626144", - "49084714980798805797830052", - "63703735125748739982457214" + "1195690149081077718298683887", + "570327298367173384147007425", + "167643254148868342131414473" ], - "mAssetSupply": "131999014668767046045653670" + "mAssetSupply": "1926613503367498739977784635" }, { "type": "redeemMasset", - "inputQty": "161792203676253002137", + "inputQty": "2779397747759458475101388", "expectedQtys": [ - "23722392310351079088", - "60145462193224072130", - "78058731604567777113" + "1724425533203678632000063", + "822526602183069333324299", + "241775269408913992575802" ], - "redemptionFee": "48537661102875900", + "redemptionFee": "833819324327837542530", "reserves": [ - "19359821937708991906547056", - "49084654835336612573757922", - "63703657067017135414680101" + "1193965723547874039666683824", + "569504771764990314813683126", + "167401478879459428138838671" ], - "mAssetSupply": "131998852925101030895527433" + "mAssetSupply": "1923834939439063609340225777" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "465023403103903192973312", - "725245202575997351755776", - "583118384046358866690048" - ], - "expectedQty": "1775350388021390746126903", - "swapFee": "1065849742658429505379", - "reserves": [ - "18894798534605088713573744", - "48359409632760615222002146", - "63120538682970776547990053" - ], - "mAssetSupply": "130223502537079640149400530" - }, - { - "type": "redeemMasset", - "inputQty": "2656612179593333964", - "expectedQtys": [ - "385345902197111244", - "986255571898602141", - "1287298241439831392" - ], - "redemptionFee": "796983653878000", - "reserves": [ - "18894798149259186516462500", - "48359408646505043323400005", - "63120537395672535108158661" + "249049038525355622400", + "2029569447864105697280", + "592554178982807339008" ], - "mAssetSupply": "130223499881264444209944566" - }, - { - "type": "redeemMasset", - "inputQty": "699951525631257319833", - "expectedQtys": [ - "101529103197859209516", - "259853921289493044398", - "339171210220143622461" - ], - "redemptionFee": "209985457689377195", + "expectedQty": "2895215767755111155256", "reserves": [ - "18894696620155988657252984", - "48359148792583753830355607", - "63120198224462314964536200" + "1193965972596912565022306224", + "569506801334438178919380406", + "167402071433638410946177679" ], - "mAssetSupply": "130222800139724270642001928" + "mAssetSupply": "1923837834654831364451381033" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "9704105913890336768", - "expectedQty": "9564490517717063449", - "swapFee": "5822463548334202", + "inputIndex": 2, + "inputQty": "159860731806703840919552", + "expectedQty": "152172125253461888931870", + "swapFee": "95916439084022304551", "reserves": [ - "18894687055665470940189535", - "48359148792583753830355607", - "63120198224462314964536200" + "1193965972596912565022306224", + "569506801334438178919380406", + "167249899308384949057245809" ], - "mAssetSupply": "130222790441440820299999362" + "mAssetSupply": "1923678069839463744632766032" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2242133822806907827519488", - "expectedQty": "2245665299128076566176466", - "swapFee": "1345280293684144696511", + "type": "redeemBassets", + "inputQtys": [ + "131369713970957959168", + "646507138019024437248", + "1555550030692491984896" + ], + "expectedQty": "2408716880162886617687", + "swapFee": "1446097786769793846", "reserves": [ - "18894687055665470940189535", - "46113483493455677264179141", - "63120198224462314964536200" + "1193965841227198594064347056", + "569506154827300159894943158", + "167248343758354256565260913" ], - "mAssetSupply": "127982001898927596617176385" + "mAssetSupply": "1923675661122583581746148345" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9403399769060489312600064", - "expectedQty": "9155834114471575343111308", - "swapFee": "5642039861436293587560", + "type": "mint", + "inputIndex": 2, + "inputQty": "9502053433111832053153792", + "expectedQty": "9951236581866448045672126", "reserves": [ - "9738852941193895597078227", - "46113483493455677264179141", - "63120198224462314964536200" - ], - "mAssetSupply": "118584244169728543598163881" + "1193965841227198594064347056", + "569506154827300159894943158", + "176750397191466088618414705" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "706852013233116125593600", - "381174535346383526821888", - "1408287906569225980870656" + "160338369478873022464", + "86083718220545654784", + "178037488148293156864" ], - "expectedQty": "2518071825092425071530741", - "swapFee": "1511750145142540567258", + "expectedQty": "430468767421945353450", "reserves": [ - "9032000927960779471484627", - "45732308958109293737357253", - "61711910317893088983665544" + "1193966001565568072937369520", + "569506240911018380440597942", + "176750575228954236911571569" ], - "mAssetSupply": "116066172344636118526633140" + "mAssetSupply": "1933627328173217451737173921" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3265957513804653789184", - "expectedQty": "3453168660214560661781", + "inputIndex": 2, + "inputQty": "6937178327241488", + "expectedQty": "7247570727155020", "reserves": [ - "9035266885474584125273811", - "45732308958109293737357253", - "61711910317893088983665544" + "1193966001565568072937369520", + "569506240911018380440597942", + "176750575235891415238813057" ] }, { "type": "mintMulti", "inputQtys": [ - "28803091558323486720", - "44200019919456681984", - "114225904180366360576" + "7084637556371543285563392", + "6228305841273651513524224", + "9622465052630615708401664" ], - "expectedQty": "187417533427369920011", + "expectedQty": "23260106236033410295171322", "reserves": [ - "9035295688566142448760531", - "45732353158129213194039237", - "61712024543797269350026120" + "1201050639121939616222932912", + "575734546752292031954122166", + "186373040288522030947214721" ], - "mAssetSupply": "116069812930829760457214932" + "mAssetSupply": "1956887434416498432759500263" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "9992497720605", - "30121213064315", - "22315554303265" + "102986909024254724931584", + "378315194243020545327104", + "177149131312864285425664" ], - "expectedQty": "62580787538738", - "swapFee": "37571015132", + "expectedQty": "664219780684330845248591", "reserves": [ - "9035295688556149951039926", - "45732353158099091980974922", - "61712024543774953795722855" + "1201153626030963870947864496", + "576112861946535052499449270", + "186550189419834895232640385" ], - "mAssetSupply": "116069812930767179669676194" + "mAssetSupply": "1957551654197182763604748854" }, { - "type": "redeemBassets", - "inputQtys": [ - "9691500067990135635968", - "14945381420433842110464", - "24246090332812257263616" + "type": "redeemMasset", + "inputQty": "914315047713611", + "expectedQtys": [ + "560855373952148", + "269004719815362", + "87105990424914" ], - "expectedQty": "49093171624178555698235", - "swapFee": "29473587126783203340", + "redemptionFee": "274294514314", + "reserves": [ + "1201153626030403015573912348", + "576112861946266047779633908", + "186550189419747789242215471" + ], + "mAssetSupply": "1957551654196268722851549557" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "16878920394617963088445440", + "expectedQty": "17057287736231218802068668", + "swapFee": "10127352236770777853067", "reserves": [ - "9025604188488159815403958", - "45717407776678658138864458", - "61687778453442141538459239" + "1184096338294171796771843680", + "576112861946266047779633908", + "186550189419747789242215471" ], - "mAssetSupply": "116020719759143001113977959" + "mAssetSupply": "1940682861153887530540957184" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "851695645474437413732352", + "expectedQty": "842369257155691984742525", + "reserves": [ + "1184948033939646234185576032", + "576112861946266047779633908", + "186550189419747789242215471" + ] }, { "type": "redeemBassets", "inputQtys": [ - "116713310520619906891776", - "22685219169169997561856", - "36677596551782638551040" + "707646462211793688199168", + "482773507343519481593856", + "650350503802829799424000" ], - "expectedQty": "182328885267830303183009", - "swapFee": "109463008966077828606", + "expectedQty": "1858534079566754392622316", + "swapFee": "1115789921693068476659", "reserves": [ - "8908890877967539908512182", - "45694722557509488141302602", - "61651100856890358899908199" + "1184240387477434440497376864", + "575630088438922528298040052", + "185899838915944959442791471" ], - "mAssetSupply": "115838390873875170810794950" + "mAssetSupply": "1939666696331476468133077393" }, { - "type": "mintMulti", - "inputQtys": [ - "1907454370384877191168", - "5066555737890393948160", - "14681326643237510709248" + "type": "mint", + "inputIndex": 1, + "inputQty": "2482744350137927073792", + "expectedQty": "2480417483045384533893", + "reserves": [ + "1184240387477434440497376864", + "575632571183272666225113844", + "185899838915944959442791471" + ] + }, + { + "type": "redeemMasset", + "inputQty": "33737619823028686815232", + "expectedQtys": [ + "20591895986687490604288", + "10009256699650684855424", + "3232477280270126450782" ], - "expectedQty": "21580883379668876058351", + "redemptionFee": "10121285946908606044", "reserves": [ - "8910798332337924785703350", - "45699789113247378535250762", - "61665782183533596410617447" + "1184219795581447753006772576", + "575622561926573015540258420", + "185896606438664689316340689" ], - "mAssetSupply": "115859971757254839686853301" + "mAssetSupply": "1939635449250422431739402098" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "8327022092419619356672", - "expectedQty": "7859470307328351154918", - "swapFee": "4996213255451771614", + "inputQty": "30366484074445554518589440", + "expectedQty": "30679512932318076573134188", + "swapFee": "18219890444667332711153", "reserves": [ - "8902938862030596434548432", - "45699789113247378535250762", - "61665782183533596410617447" + "1153540282649129676433638388", + "575622561926573015540258420", + "185896606438664689316340689" ], - "mAssetSupply": "115851649731375675519268243" + "mAssetSupply": "1909287185066421544553523811" }, { - "type": "redeemMasset", - "inputQty": "38422788909376364924108", - "expectedQtys": [ - "2951819146638349946309", - "15152020539771604501080", - "20445634791236527873443" + "type": "mintMulti", + "inputQtys": [ + "8939464847455027", + "8412098394270410", + "11694384804461250" ], - "redemptionFee": "11526836672812909477", + "expectedQty": "29390069584854163", "reserves": [ - "8899987042883958084602123", - "45684637092707606930749682", - "61645336548742359882744004" + "1153540282658069141281093415", + "575622561934985113934528830", + "185896606450359074120801939" ], - "mAssetSupply": "115813238469302971967253612" + "mAssetSupply": "1909287185095811614138377974" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3463334023410002944", - "1234737750499300352", - "217232883708201248" + "382952820925408739328", + "23415880351216134258688", + "32881143155651329916928" ], - "expectedQty": "5109104285766440453", - "swapFee": "3067302953231803", + "expectedQty": "57910182011231513643304", "reserves": [ - "8899983579549934674599179", - "45684635857969856431449330", - "61645336331509476174542756" + "1153540665610890066689832743", + "575645977815336330068787518", + "185929487593514725450718867" ], - "mAssetSupply": "115813233360198686200813159" + "mAssetSupply": "1909345095277822845652021278" }, { "type": "swap", "inputIndex": 0, - "inputQty": "126321890113872052224", + "inputQty": "206304670681971130368", "outputIndex": 2, - "expectedQty": "135102186821036734041", - "swapFee": "80257622838248915", + "expectedQty": "196458431508381224969", + "swapFee": "122469946190779662", "reserves": [ - "8900109901440048546651403", - "45684635857969856431449330", - "61645201229322655137808715" + "1153540871915560748660963111", + "575645977815336330068787518", + "185929291135083217069493898" ], - "mAssetSupply": "115813233440456309039062074", + "mAssetSupply": "1909345095400292791842800940", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "76568365472805522348441", - "expectedQtys": [ - "5882422995913964111749", - "30194722931162421741353", - "40743670956292179301792" + "type": "mint", + "inputIndex": 2, + "inputQty": "778069838741502850760704", + "expectedQty": "807790427151490041247375", + "reserves": [ + "1153540871915560748660963111", + "575645977815336330068787518", + "186707360973824719920254602" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "4809727092494943979044864", + "8384326638640775699628032", + "9683815591729768974778368" ], - "redemptionFee": "22970509641841656704", + "expectedQty": "23201908698137558382574733", + "swapFee": "13929502920634915979132", "reserves": [ - "8894227478444134582539654", - "45654441135038694009707977", - "61604457558366362958506923" + "1148731144823065804681918247", + "567261651176695554369159486", + "177023545382094950945476234" ], - "mAssetSupply": "115736688045493145358370337" + "mAssetSupply": "1886950977129306723501473582" }, { "type": "mintMulti", "inputQtys": [ - "315772356149508416", - "61385685186671256", - "135187062723158192" + "337449706055416676352", + "32625300361935511552", + "201707659664094396416" ], - "expectedQty": "529130395381076706", + "expectedQty": "576423102823157673590", "reserves": [ - "8894227794216490732048070", - "45654441196424379196379233", - "61604457693553425681665115" + "1148731482272771860098594599", + "567261683801995916304671038", + "177023747089754615039872650" ], - "mAssetSupply": "115736688574623540739447043" + "mAssetSupply": "1886951553552409546659147172" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1320320733234134465380352", - "expectedQty": "1311636902557653345269686", + "type": "redeemMasset", + "inputQty": "170848667356830965012889", + "expectedQtys": [ + "103977425787588782551594", + "51345689170951984955219", + "16023303800509177500075" + ], + "redemptionFee": "51254600207049289503", "reserves": [ - "8894227794216490732048070", - "46974761929658513661759585", - "61604457693553425681665115" - ] + "1148627504846984271316043005", + "567210338112824964319715819", + "177007723785954105862372575" + ], + "mAssetSupply": "1886780756139652922743423786" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "528872135524678853722112", - "expectedQty": "496943869440479999490604", - "swapFee": "317323281314807312233", + "inputQty": "443664304048369284677632", + "expectedQty": "448379380713102628266413", + "swapFee": "266198582429021570806", "reserves": [ - "8397283924776010732557466", - "46974761929658513661759585", - "61604457693553425681665115" + "1148179125466271168687776592", + "567210338112824964319715819", + "177007723785954105862372575" ], - "mAssetSupply": "116519770664937830038306850" + "mAssetSupply": "1886337358034186982480316960" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2534383417067518065377280", - "expectedQty": "2515283249035626313267132", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5688649801606414336", + "expectedQty": "5749089602349918546", + "swapFee": "3413189880963848", "reserves": [ - "8397283924776010732557466", - "49509145346726031727136865", - "61604457693553425681665115" - ] + "1148179119717181566337858046", + "567210338112824964319715819", + "177007723785954105862372575" + ], + "mAssetSupply": "1886337352348950370754866472" }, { "type": "redeemBassets", "inputQtys": [ - "55848698969601519648768", - "145944773748850235015168", - "29517412112512141230080" + "17934723502784730095419392", + "1816601094346946222489600", + "602208769696784996892672" ], - "expectedQty": "233769808282661928056849", - "swapFee": "140346092625172260190", + "expectedQty": "20178528023858892188262090", + "swapFee": "12114385445582684923911", "reserves": [ - "8341435225806409212908698", - "49363200572977181492121697", - "61574940281440913540435035" + "1130244396214396836242438654", + "565393737018478018097226219", + "176405515016257320865479903" ], - "mAssetSupply": "118801284105690794423517133" + "mAssetSupply": "1866158824325091478566604382" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "1790749682753200711532544", - "expectedQty": "1770627785867922147452186", - "reserves": [ - "8341435225806409212908698", - "49363200572977181492121697", - "63365689964194114251967579" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "59657996486077407297536", - "expectedQty": "63995402381266514413899", + "inputQty": "37329695154895333437210624", + "outputIndex": 1, + "expectedQty": "38570458404821612158475662", + "swapFee": "23154389287774530067705", "reserves": [ - "8401093222292486620206234", - "49363200572977181492121697", - "63365689964194114251967579" - ] + "1130244396214396836242438654", + "526823278613656405938750557", + "213735210171152654302690527" + ], + "mAssetSupply": "1866181978714379253096672087", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "108835873766831722332160", - "expectedQty": "109616150879987779644991", - "swapFee": "65301524260099033399", + "type": "mintMulti", + "inputQtys": [ + "1096934930938279755776", + "438435910143009226752", + "442934588549911805952" + ], + "expectedQty": "1980185534755616932178", "reserves": [ - "8401093222292486620206234", - "49253584422097193712476706", - "63365689964194114251967579" + "1130245493149327774522194430", + "526823717049566548947977309", + "213735653105741204214496479" ], - "mAssetSupply": "120527136721697411462084457" + "mAssetSupply": "1866183958899914008713604265" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "926365167212763392", - "expectedQty": "993136641960141067", + "type": "mintMulti", + "inputQtys": [ + "104263985466761317187584", + "168024303014221252132864", + "192046313530573572800512" + ], + "expectedQty": "468625549408492571000012", "reserves": [ - "8401094148657653832969626", - "49253584422097193712476706", - "63365689964194114251967579" - ] + "1130349757134794535839382014", + "526991741352580770200110173", + "213927699419271777787296991" + ], + "mAssetSupply": "1866652584449322501284604277" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "391824287086878523392", - "expectedQty": "387375296425196864104", + "type": "redeemMasset", + "inputQty": "1388539649603914956", + "expectedQtys": [ + "840576660133033850", + "391893708179935350", + "159085831578014073" + ], + "redemptionFee": "416561894881174", "reserves": [ - "8401094148657653832969626", - "49253584422097193712476706", - "63366081788481201130490971" - ] + "1130349756294217875706348164", + "526991740960687062020174823", + "213927699260185946209282918" + ], + "mAssetSupply": "1866652583061199413575570495" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "772332074139629360513024", - "927050291123414332604416", - "105198235875790435647488" + "18309120633082749124608", + "11156692411212300812288", + "11291813200548815962112" ], - "expectedQty": "1848038113401026997664355", + "expectedQty": "40895903291735090185716", + "swapFee": "24552273339044480799", "reserves": [ - "9173426222797283193482650", - "50180634713220608045081122", - "63471280024356991566138459" + "1130331447173584792957223556", + "526980584268275849719362535", + "213916407446985397393320806" ], - "mAssetSupply": "122375563203531505616753983" + "mAssetSupply": "1866611687157907678485384779" }, { "type": "redeemBassets", "inputQtys": [ - "1855230771861669239848960", - "858112682240713844326400", - "1493934130611543770923008" + "67742850200256987136", + "49578439684158136320", + "86085500921716932608" ], - "expectedQty": "4322790942210119249377230", - "swapFee": "2595231704348680758081", + "expectedQty": "205122182949080592699", + "swapFee": "123147198088301336", "reserves": [ - "7318195450935613953633690", - "49322522030979894200754722", - "61977345893745447795215451" + "1130331379430734592700236420", + "526980534689836165561226215", + "213916321361484475676388198" ], - "mAssetSupply": "118052772261321386367376753" + "mAssetSupply": "1866611482035724729404792080" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4428235645568930545664", - "expectedQty": "4466338647131406723038", - "swapFee": "2656941387341358327", + "type": "redeemBassets", + "inputQtys": [ + "7997115276226464841728", + "6472982530274537504768", + "12050813347456035586048" + ], + "expectedQty": "26774830106133713864235", + "swapFee": "16074542789353840622", "reserves": [ - "7318195450935613953633690", - "49318055692332762794031684", - "61977345893745447795215451" + "1130323382315458366235394692", + "526974061707305891023721447", + "213904270548137019640802150" ], - "mAssetSupply": "118048346682617204778189416" + "mAssetSupply": "1866584707205618595690927845" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "91160365178280", - "89680996145809", - "87751727051708" + "6808633383072841131360256", + "13367367801296568065196032", + "20354030433947694219132928" ], - "expectedQty": "275047566702564", + "expectedQty": "41072022680910918026869940", + "swapFee": "24658008413594707640706", "reserves": [ - "7318195451026774318811970", - "49318055692422443790177493", - "61977345893833199522267159" + "1123514748932385525104034436", + "513606693906009322958525415", + "193550240114189325421669222" ], - "mAssetSupply": "118048346682892252344891980" + "mAssetSupply": "1825512684524707677664057905" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "9684941884975120121856", - "6206608329848810110976", - "6242225020966344327168" + "9791939596748941312", + "5338768057295232000", + "11738354750799056896" ], - "expectedQty": "22888046423830554057549", + "expectedQty": "27151778636686886003", + "swapFee": "16300847690626507", "reserves": [ - "7327880392911749438933826", - "49324262300752292600288469", - "61983588118854165866594327" + "1123514739140445928355093124", + "513606688567241265663293415", + "193550228375834574622612326" ], - "mAssetSupply": "118071234729316082898949529" + "mAssetSupply": "1825512657372929040977171902" }, { - "type": "redeemMasset", - "inputQty": "1095802457083828428", - "expectedQtys": [ - "67988620474500841", - "457634182047294753", - "575088350559996288" - ], - "redemptionFee": "328740737125148", + "type": "swap", + "inputIndex": 0, + "inputQty": "3272087546329013833170944", + "outputIndex": 1, + "expectedQty": "3235155889832945908310441", + "swapFee": "1942932838220320309897", "reserves": [ - "7327880324923128964432985", - "49324261843118110552993716", - "61983587543765815306598039" + "1126786826686774942188264068", + "510371532677408319754982974", + "193550228375834574622612326" ], - "mAssetSupply": "118071233633842366552246249" + "mAssetSupply": "1825514600305767261297481799", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10144568795669145600", - "18123830972292167680", - "9529432894476836864" + "253758460476096", + "176758554542152", + "212294716718302" ], - "expectedQty": "38442955467203240499", + "expectedQty": "647178845738211", + "swapFee": "388540431701", "reserves": [ - "7327890469491924633578585", - "49324279966949082845161396", - "61983597073198709783434903" + "1126786826686521183727787972", + "510371532677231561200440822", + "193550228375622279905894024" ], - "mAssetSupply": "118071272076797833755486748" + "mAssetSupply": "1825514600305120082451743588" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "213266134795120199860224", - "179290418713836730187776", - "153444474824649179398144" + "1756506900598912188416", + "573280525592828116992", + "1530396704833626963968" ], - "expectedQty": "562461199497840361440504", - "swapFee": "337679327295081265623", + "expectedQty": "3892148871115340543150", "reserves": [ - "7114624334696804433718361", - "49144989548235246114973620", - "61830152598374060604036759" + "1126788583193421782639976388", + "510372105957757154028557814", + "193551758772327113532857992" ], - "mAssetSupply": "117508810877299993394046244" + "mAssetSupply": "1825518492453991197792286738" }, { - "type": "redeemBassets", - "inputQtys": [ - "290828317784194678784", - "1035537832299292393472", - "624011220992585236480" - ], - "expectedQty": "1960634029670023392543", - "swapFee": "1177086669803896373", + "type": "swap", + "inputIndex": 0, + "inputQty": "22683590734413643930140672", + "outputIndex": 1, + "expectedQty": "22410293143300150418130501", + "swapFee": "13466666825335647247573", "reserves": [ - "7114333506379020239039577", - "49143954010402946822580148", - "61829528587153068018800279" + "1149472173927835426570117060", + "487961812814457003610427313", + "193551758772327113532857992" ], - "mAssetSupply": "117506850243270323370653701" + "mAssetSupply": "1825531959120816533439534311", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "5138826851115353505792", - "4303270460473086050304", - "9538218738144589643776" + "42343392985275762212864", + "84233409531274609033216", + "52382073163016719826944" ], - "expectedQty": "19312060066373424411491", + "expectedQty": "180353198595209417427637", "reserves": [ - "7119472333230135592545369", - "49148257280863419908630452", - "61839066805891212608444055" + "1149514517320820702332329924", + "488046046223988278219460529", + "193604140845490130252684936" ], - "mAssetSupply": "117526162303336696795065192" + "mAssetSupply": "1825712312319411742856961948" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "138467204905305210880", - "expectedQty": "139693818638586853466", - "swapFee": "83080322943183126", + "inputQty": "98951657352494560", + "expectedQty": "99076189945422228", "reserves": [ - "7119472333230135592545369", - "49148117587044781321776986", - "61839066805891212608444055" + "1149514517320820702332329924", + "488046046322939935571955089", + "193604140845490130252684936" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "133014217458313068544", + "41691065977159057408", + "144617907598605729792" + ], + "expectedQty": "322755779771587957252", + "swapFee": "193769729700773238", + "reserves": [ + "1149514384306603244019261380", + "488046004631873958412897681", + "193603996227582531646955144" ], - "mAssetSupply": "117526023919212114433037438" + "mAssetSupply": "1825711989662708161214426924" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "116874446333897472", - "expectedQty": "117909778038672989", - "swapFee": "70124667800338", + "type": "redeemBassets", + "inputQtys": [ + "95315511843371", + "269170294231760", + "200189825430086" + ], + "expectedQty": "570661694755134", + "swapFee": "342602578400", "reserves": [ - "7119472333230135592545369", - "49148117469135003283103997", - "61839066805891212608444055" + "1149514384306507928507418009", + "488046004631604788118665921", + "193603996227382341821525058" ], - "mAssetSupply": "117526023802407792766940304" + "mAssetSupply": "1825711989662137499519671790" }, { "type": "redeemMasset", - "inputQty": "82056850361482841", + "inputQty": "362479768552383322888601", "expectedQtys": [ - "4969335271988049", - "34304996530603108", - "43163178601175584" + "228157950222889815260913", + "96868362459331362627984", + "38426914475583886190197" ], - "redemptionFee": "24617055108444", + "redemptionFee": "108743930565714996866", "reserves": [ - "7119472328260800320557320", - "49148117434830006752500889", - "61839066762728034007268471" + "1149286226356285038692157096", + "487949136269145456756037937", + "193565569312906757935334861" ], - "mAssetSupply": "117526023720375559460565907" + "mAssetSupply": "1825349618637515681911780055" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "19390391737017861931008", - "expectedQty": "17667877738607921722181", - "swapFee": "11634235042210717158", + "type": "redeemBassets", + "inputQtys": [ + "398553104917290680320", + "639634386430059741184", + "701615302833911365632" + ], + "expectedQty": "1759697054648572843174", + "swapFee": "1056452104051574650", "reserves": [ - "7101804450522192398835139", - "49148117434830006752500889", - "61839066762728034007268471" + "1149285827803180121401476776", + "487948496634759026696296753", + "193564867697603924023969229" ], - "mAssetSupply": "117506644962873583809352057" + "mAssetSupply": "1825347858940461033338936881" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "49028799946616299520", - "expectedQty": "49464442276942984441", - "swapFee": "29417279967969779", + "type": "mintMulti", + "inputQtys": [ + "2428024702679509473689600", + "5227754616477090083504128", + "2613911171803910158417920" + ], + "expectedQty": "10336154316909478171126665", "reserves": [ - "7101804450522192398835139", - "49148067970387729809516448", - "61839066762728034007268471" + "1151713852505859630875166376", + "493176251251236116779800881", + "196178778869407834182387149" ], - "mAssetSupply": "117506595963490917161022316" + "mAssetSupply": "1835684013257370511510063546" }, { - "type": "redeemMasset", - "inputQty": "302375003600612019404", - "expectedQtys": [ - "18269305703661067151", - "126432807992805843785", - "159080248264835607922" - ], - "redemptionFee": "90712501080183605", + "type": "swap", + "inputIndex": 0, + "inputQty": "4838866614339817944645632", + "outputIndex": 1, + "expectedQty": "4777671573731979374296648", + "swapFee": "2872023506421715240351", "reserves": [ - "7101786181216488737767988", - "49147941537579737003672663", - "61838907682479769171660549" + "1156552719120199448819812008", + "488398579677504137405504233", + "196178778869407834182387149" ], - "mAssetSupply": "117506293679199817629186517" + "mAssetSupply": "1835686885280876933225303897", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "22518270645651562823680", - "expectedQty": "22223384164515078839522", + "type": "redeemBassets", + "inputQtys": [ + "13465359104005992448", + "7284095419905823744", + "13507845024269934592" + ], + "expectedQty": "34565146118921399962", + "swapFee": "20751538594509545", "reserves": [ - "7101786181216488737767988", - "49147941537579737003672663", - "61861425953125420734484229" - ] + "1156552705654840344813819560", + "488398572393408717499680489", + "196178765361562809912452557" + ], + "mAssetSupply": "1835686850715730814303903935" }, { - "type": "redeemMasset", - "inputQty": "25518612015272521", - "expectedQtys": [ - "1541526791819872", - "10668142733353640", - "13427755082115042" + "type": "redeemBassets", + "inputQtys": [ + "232541091997069672448", + "97911969390904836096", + "153814579715034611712" ], - "redemptionFee": "7655583604581", + "expectedQty": "486933332598850280001", + "swapFee": "292335400799790042", "reserves": [ - "7101786179674961945948116", - "49147941526911594270319023", - "61861425939697665652369187" + "1156552473113748347744147112", + "488398474481439326594844393", + "196178611546983094877840845" ], - "mAssetSupply": "117528517037853376276358099" + "mAssetSupply": "1835686363782398215453623934" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "4578386124104617380806656", - "expectedQty": "4633649388389341196387271", - "swapFee": "2747031674462770428483", + "inputIndex": 1, + "inputQty": "25491659154502834978816", + "expectedQty": "25441657125352082161219", + "swapFee": "15294995492701700987", "reserves": [ - "7101786179674961945948116", - "49147941526911594270319023", - "57227776551308324455981916" + "1156552473113748347744147112", + "488373032824313974512683174", + "196178611546983094877840845" ], - "mAssetSupply": "112952877945423221665979926" + "mAssetSupply": "1835660887418239205320346105" }, { - "type": "redeemBassets", - "inputQtys": [ - "63865996097059266560", - "332322388929403879424", - "181668366833929289728" - ], - "expectedQty": "578167040824749827921", - "swapFee": "347108489588603058", + "type": "mint", + "inputIndex": 0, + "inputQty": "455336112202572594413568", + "expectedQty": "450389895617252338733813", "reserves": [ - "7101722313678864886681556", - "49147609204522664866439599", - "57227594882941490526692188" - ], - "mAssetSupply": "112952299778382396916152005" + "1157007809225950920338560680", + "488373032824313974512683174", + "196178611546983094877840845" + ] }, { - "type": "redeemMasset", - "inputQty": "18393854049948470476", - "expectedQtys": [ - "1156141624244662791", - "8001100891260250369", - "9316501205931463510" + "type": "mintMulti", + "inputQtys": [ + "445119300586994451611648", + "132999949865447963230208", + "31122413826571732254720" ], - "redemptionFee": "5518156214984541", + "expectedQty": "605610910188893013985236", "reserves": [ - "7101721157537240642018765", - "49147601203421773606189230", - "57227585566440284595228678" + "1157452928526537914790172328", + "488506032774179422475913382", + "196209733960809666610095565" ], - "mAssetSupply": "112952281390046503182666070" + "mAssetSupply": "1836716888224045350673065154" }, { "type": "redeemBassets", "inputQtys": [ - "88636916231749200", - "89651614929121696", - "102084842895982752" + "103465795116352815104", + "26741107597801897984", + "345749691020637175808" ], - "expectedQty": "286160958126635678", - "swapFee": "171799654668782", + "expectedQty": "486249758650549910395", + "swapFee": "291925010196447814", "reserves": [ - "7101721068900324410269565", - "49147601113770158677067534", - "57227585464355441699245926" + "1157452825060742798437357224", + "488506006033071824674015398", + "196209388211118645972919757" ], - "mAssetSupply": "112952281103885545056030392" + "mAssetSupply": "1836716401974286700123154759" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "6414439093165365395456", - "expectedQty": "5887623046428674314557", - "swapFee": "3848663455899219237", + "inputIndex": 2, + "inputQty": "18946427709485588821311488", + "expectedQty": "18271284972347020647648743", + "swapFee": "11367856625691353292786", "reserves": [ - "7095833445853895735955008", - "49147601113770158677067534", - "57227585464355441699245926" + "1157452825060742798437357224", + "488506006033071824674015398", + "177938103238771625325271014" ], - "mAssetSupply": "112945870513455835589854173" + "mAssetSupply": "1817781342121426802655136057" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "9825823066195283148800", - "expectedQty": "10698127958407774870179", + "inputIndex": 2, + "inputQty": "14440626894880227328", + "expectedQty": "15019442299005704294", "reserves": [ - "7105659268920091019103808", - "49147601113770158677067534", - "57227585464355441699245926" + "1157452825060742798437357224", + "488506006033071824674015398", + "177938117679398520205498342" ] }, { "type": "redeemBassets", "inputQtys": [ - "9244260587133724672", - "12078219413306705920", - "10661035415253467136" + "28874580856123462516736", + "19110796189819715190784", + "1549297727175314636800" ], - "expectedQty": "32560032729144770622", - "swapFee": "19547748286458737", + "expectedQty": "49273504967167333911840", + "swapFee": "29581852091555333547", "reserves": [ - "7105650024659503885379136", - "49147589035550745370361614", - "57227574803320026445778790" + "1157423950479886674974840488", + "488486895236882004958824614", + "177936568381671344890861542" ], - "mAssetSupply": "112956536081381514219953730" + "mAssetSupply": "1817732083635901934326928511" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "37686595456656979525632", - "expectedQty": "34583283159385644102138", - "swapFee": "22611957273994187715", + "type": "redeemBassets", + "inputQtys": [ + "40348752296141886849024", + "178223176422467011870720", + "409242975164132138942464" + ], + "expectedQty": "643959936578403169058336", + "swapFee": "386607926703063739678", "reserves": [ - "7071066741500118241276998", - "49147589035550745370361614", - "57227574803320026445778790" + "1157383601727590533087991464", + "488308672060459537946953894", + "177527325406507212751919078" ], - "mAssetSupply": "112918872097882131234615813" + "mAssetSupply": "1817088123699323531157870175" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "52969663462473900032", - "expectedQty": "48588847371131648636", - "swapFee": "31781798077484340", + "type": "redeemBassets", + "inputQtys": [ + "5922561674068471808", + "3998986183433192960", + "12772656801030885376" + ], + "expectedQty": "23142049564448636525", + "swapFee": "13893565878196099", "reserves": [ - "7071018152652747109628362", - "49147589035550745370361614", - "57227574803320026445778790" + "1157383595805028859019519656", + "488308668061473354513760934", + "177527312633850411721033702" ], - "mAssetSupply": "112918819160000466838200121" + "mAssetSupply": "1817088100557273966709233650" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "2103228777078097405018112", - "outputIndex": 2, - "expectedQty": "2105651090002887903455116", - "swapFee": "1249421175829305291756", + "inputQty": "175900988983632000", + "expectedQty": "176083889160883084", "reserves": [ - "7071018152652747109628362", - "51250817812628842775379726", - "55121923713317138542323674" - ], - "mAssetSupply": "112920068581176296143491877", - "hardLimitError": false, - "insufficientLiquidityError": false + "1157383595805028859019519656", + "488308668237374343497392934", + "177527312633850411721033702" + ] }, { "type": "mintMulti", "inputQtys": [ - "526980627388614705152", - "1283008950365096771584", - "868657819461547589632" + "1623278837274428345155584", + "398613845453357916880896", + "444387918108985709821952" ], - "expectedQty": "2702553325980865426257", + "expectedQty": "2465239070721273980701743", "reserves": [ - "7071545133280135724333514", - "51252100821579207872151310", - "55122792371136600089913306" + "1159006874642303287364675240", + "488707282082827701414273830", + "177971700551959397430855654" ], - "mAssetSupply": "112922771134502277008918134" + "mAssetSupply": "1819553339804079129850818477" }, { - "type": "redeemMasset", - "inputQty": "19321983740545440573030", - "expectedQtys": [ - "1209634583259099137375", - "8767010950223167396241", - "9429118349840593111038" + "type": "mintMulti", + "inputQtys": [ + "58517773260476410494976", + "24540227400757837561856", + "48562303146945025146880" ], - "redemptionFee": "5796595122163632171", + "expectedQty": "132899830102536746961876", "reserves": [ - "7070335498696876625196139", - "51243333810628984704755069", - "55113363252786759496802268" + "1159065392415563763775170216", + "488731822310228459251835686", + "178020262855106342456002534" ], - "mAssetSupply": "112903454947356853731977275" + "mAssetSupply": "1819686239634181666597780353" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "376926052357117218652160", - "outputIndex": 0, - "expectedQty": "340729982894580434545557", - "swapFee": "223822264744894118089", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4256012542575205", + "expectedQty": "4304686999974537", + "swapFee": "2553607525545", "reserves": [ - "6729605515802296190650582", - "51620259862986101923407229", - "55113363252786759496802268" + "1159065392411259076775195679", + "488731822310228459251835686", + "178020262855106342456002534" ], - "mAssetSupply": "112903678769621598626095364", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1819686239629928207662730693" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "7267160734271997476864", - "expectedQty": "7180115901120457503861", + "type": "redeemBassets", + "inputQtys": [ + "81257502883282115624960", + "130218521307288931663872", + "88869913027368028471296" + ], + "expectedQty": "303085474745258103008362", + "swapFee": "181960461123829159300", "reserves": [ - "6729605515802296190650582", - "51620259862986101923407229", - "55120630413521031494279132" - ] + "1158984134908375794659570719", + "488601603788921170320171814", + "177931392942078974427531238" + ], + "mAssetSupply": "1819383154155182949559722331" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "632325609411173305810944", - "expectedQty": "689567905369519634276248", + "inputIndex": 1, + "inputQty": "38045703521844164820992", + "expectedQty": "38085834309944146239991", "reserves": [ - "7361931125213469496461526", - "51620259862986101923407229", - "55120630413521031494279132" + "1158984134908375794659570719", + "488639649492443014484992806", + "177931392942078974427531238" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2257540710383148561596416", - "expectedQty": "2232316016481291365718742", + "inputIndex": 1, + "inputQty": "22214533068784590806581248", + "expectedQty": "22230117870925313542641638", "reserves": [ - "7361931125213469496461526", - "51620259862986101923407229", - "57378171123904180055875548" + "1158984134908375794659570719", + "510854182561227605291574054", + "177931392942078974427531238" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "273152383832990941184", - "173427034735041019904", - "12217291529809393664" - ], - "expectedQty": "480583995807612019202", - "reserves": [ - "7362204277597302487402710", - "51620433290020836964427133", - "57378183341195709865269212" - ], - "mAssetSupply": "115833223391369337695613417" - }, { "type": "redeemMasset", - "inputQty": "46517603691977581474611", + "inputQty": "31098272913714508", "expectedQtys": [ - "2955709503978957352281", - "20724092883309680725487", - "23035660982496803364681" + "19564828084739947", + "8623736906433940", + "3003662439318285" ], - "redemptionFee": "13955281107593274442", + "redemptionFee": "9329481874114", "reserves": [ - "7359248568093323530050429", - "51599709197137527283701646", - "57355147680213213061904531" + "1158984134888810966574830772", + "510854182552603868385140114", + "177931392939075311988212953" ], - "mAssetSupply": "115786719742958467707413248" + "mAssetSupply": "1841651357829329263816763566" }, { "type": "redeemBassets", "inputQtys": [ - "16309133984390815744", - "16394598335190202368", - "11790555914971801600" + "565055131066622338400256", + "518942991129199962488832", + "314939851224373992095744" ], - "expectedQty": "45609079467822882334", - "swapFee": "27381876806777796", + "expectedQty": "1405336846602225199730062", + "swapFee": "843708332961111786910", "reserves": [ - "7359232258959339139234685", - "51599692802539192093499278", - "57355135889657298090102931" + "1158419079757744344236430516", + "510335239561474668422651282", + "177616453087850937996117209" ], - "mAssetSupply": "115786674133878999884530914" + "mAssetSupply": "1840246020982727038617033504" }, { - "type": "mintMulti", - "inputQtys": [ - "355913093964442160332800", - "889807711002925658537984", - "15896057637220351213568" - ], - "expectedQty": "1282443581194889726632921", - "reserves": [ - "7715145352923781299567485", - "52489500513542117752037262", - "57371031947294518441316499" - ], - "mAssetSupply": "117069117715073889611163835" - }, - { - "type": "mintMulti", - "inputQtys": [ - "224670373413288542208", - "60499780419279364096", - "85781367241571270656" + "type": "redeemMasset", + "inputQty": "4210544888998802961203", + "expectedQtys": [ + "2649706727977627082753", + "1167313920686546279758", + "406270510362124332557" ], - "expectedQty": "387440054787551069545", + "redemptionFee": "1263163466699640888", "reserves": [ - "7715370023297194588109693", - "52489561013322537031401358", - "57371117728661760012587155" + "1158416430051016366609347763", + "510334072247553981876371524", + "177616046817340575871784652" ], - "mAssetSupply": "117069505155128677162233380" + "mAssetSupply": "1840241811701001506513713189" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "391395132833991984414720", - "outputIndex": 1, - "expectedQty": "390599203800677472079523", - "swapFee": "232274980340242905574", + "inputQty": "21078433761846087385088", + "expectedQty": "20241168797655802379179", + "swapFee": "12647060257107652431", "reserves": [ - "7715370023297194588109693", - "52098961809521859559321835", - "57762512861495751997001875" + "1158416430051016366609347763", + "510334072247553981876371524", + "177595805648542920069405473" ], - "mAssetSupply": "117069737430109017405138954", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1840220745914299917533980532" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "59622560056028879126528", - "expectedQty": "60247248488059824656911", - "swapFee": "35773536033617327475", + "type": "mintMulti", + "inputQtys": [ + "24229000730682238959616", + "253029389922145147027456", + "351884494563117763657728" + ], + "expectedQty": "643261924591898511701679", "reserves": [ - "7715370023297194588109693", - "52098961809521859559321835", - "57702265613007692172344964" + "1158440659051747048848307379", + "510587101637476127023398980", + "177947690143106037833063201" ], - "mAssetSupply": "117010150643589022143339901" + "mAssetSupply": "1840864007838891816045682211" }, { - "type": "redeemMasset", - "inputQty": "279442526274634488217", - "expectedQtys": [ - "18420245404792231684", - "124384917245507523867", - "137762659444021772573" + "type": "redeemBassets", + "inputQtys": [ + "11286815949744440826920960", + "5945679951072642774073344", + "18308615103808153535381504" ], - "redemptionFee": "83832757882390346", + "expectedQty": "36224122443713789379377904", + "swapFee": "21747521979415923181535", "reserves": [ - "7715351603051789795878009", - "52098837424604614051797968", - "57702127850348248150572391" + "1147153843102002608021386419", + "504641421686403484249325636", + "159639075039297884297681697" ], - "mAssetSupply": "117009871284895505391242030" + "mAssetSupply": "1804639885395178026666304307" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "35519385352912322428928", - "expectedQty": "35130105070801767892632", + "inputIndex": 0, + "inputQty": "27319256373152748404736", + "expectedQty": "26969533934535581793490", "reserves": [ - "7715351603051789795878009", - "52098837424604614051797968", - "57737647235701160473001319" + "1147181162358375760769791155", + "504641421686403484249325636", + "159639075039297884297681697" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "49246336582472194588672", - "expectedQty": "53167559225923280061605", + "inputIndex": 1, + "inputQty": "788988613075834194886656", + "expectedQty": "788982190491176052196070", "reserves": [ - "7764597939634261990466681", - "52098837424604614051797968", - "57737647235701160473001319" + "1147181162358375760769791155", + "505430410299479318444212292", + "159639075039297884297681697" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4186754257489687675404288", - "expectedQty": "4139139086895323310332058", + "type": "redeemBassets", + "inputQtys": [ + "22442021899688575221366784", + "17746316727595922444255232", + "12466752041953590570385408" + ], + "expectedQty": "53012078505786251374084866", + "swapFee": "31826342909217281193166", "reserves": [ - "7764597939634261990466681", - "52098837424604614051797968", - "61924401493190848148405607" - ] + "1124739140458687185548424371", + "487684093571883395999957060", + "147172322997344293727296289" + ], + "mAssetSupply": "1752443758613817486926209001" }, { "type": "redeemMasset", - "inputQty": "3731367812377538566553", + "inputQty": "2659792584598", "expectedQtys": [ - "238902360386741978602", - "1602985155304698807415", - "1905299642978864094194" + "1706574227475", + "739966340016", + "223305550940" ], - "redemptionFee": "1119410343713261569", + "redemptionFee": "797937775", "reserves": [ - "7764359037273875248488079", - "52097234439449309352990553", - "61922496193547869284311413" + "1124739140458685478974196896", + "487684093571882656033617044", + "147172322997344070421745349" ], - "mAssetSupply": "121233577787685519924223341" + "mAssetSupply": "1752443758613814827931562178" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2236927869326925312", - "expectedQty": "2428212291706815564", + "inputIndex": 1, + "inputQty": "1277871794609793399783424", + "expectedQty": "1277829792696449202741747", "reserves": [ - "7764361274201744575413391", - "52097234439449309352990553", - "61922496193547869284311413" + "1124739140458685478974196896", + "488961965366492449433400468", + "147172322997344070421745349" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "132548550358214801096704", - "expectedQty": "133699754852846049554824", - "swapFee": "79529130214928880658", + "type": "redeemMasset", + "inputQty": "415241847464469200896", + "expectedQtys": [ + "266233049794593187772", + "115740468692136971146", + "34836643438014252416" + ], + "redemptionFee": "124572554239340760", "reserves": [ - "7764361274201744575413391", - "51963534684596463303435729", - "61922496193547869284311413" + "1124738874225635684381009124", + "488961849626023757296429322", + "147172288160700632407492933" ], - "mAssetSupply": "121101111194669811758822859" + "mAssetSupply": "1753721173289236366904443789" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1130080676566809444352", - "expectedQty": "1119696421367855721171", + "type": "redeemMasset", + "inputQty": "2823285319010614876569", + "expectedQtys": [ + "1810154408834753044076", + "786935055002803982834", + "236859036686009598012" + ], + "redemptionFee": "846985595703184462", "reserves": [ - "7764361274201744575413391", - "51964664765273030112880081", - "61922496193547869284311413" - ] + "1124737064071226849627965048", + "488961062690968754492446488", + "147172051301663946397894921" + ], + "mAssetSupply": "1753718350850902951992751682" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "211331624224394149888", - "19944107368170156032", - "88144782641646256128" + "260787085087645", + "176193163910176", + "242300115429778" ], - "expectedQty": "336225448281869757672", + "expectedQty": "689209357904594", + "swapFee": "413773879070", "reserves": [ - "7764572605825968969563279", - "51964684709380398283036113", - "61922584338330510930567541" + "1124737064070966062542877403", + "488961062690792561328536312", + "147172051301421646282465143" ], - "mAssetSupply": "121102567116539461484301702" + "mAssetSupply": "1753718350850213742634847088" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "36041487719727003336704", - "expectedQty": "36451992396074967575394", - "swapFee": "21624892631836202002", + "type": "redeemBassets", + "inputQtys": [ + "66564732257811952566272", + "1294948558369437991829504", + "1123452085473722236928000" + ], + "expectedQty": "2546996031569802286545689", + "swapFee": "1529115087994678178834", "reserves": [ - "7764572605825968969563279", - "51964684709380398283036113", - "61886132345934435962992147" + "1124670499338708250590311131", + "487666114132423123336706808", + "146048599215947924045537143" ], - "mAssetSupply": "121066547253712366317167000" + "mAssetSupply": "1751171354818643940348301399" }, { - "type": "redeemMasset", - "inputQty": "2722809452458978099", - "expectedQtys": [ - "174574312470064015", - "1168344938787357081", - "1391413224420950589" - ], - "redemptionFee": "816842835737693", + "type": "mint", + "inputIndex": 1, + "inputQty": "441490721700906012770304", + "expectedQty": "441468495075973999729486", "reserves": [ - "7764572431251656499499264", - "51964683541035459495679032", - "61886130954521211542041558" - ], - "mAssetSupply": "121066544531719756693926594" + "1124670499338708250590311131", + "488107604854124029349477112", + "146048599215947924045537143" + ] }, { "type": "redeemBassets", "inputQtys": [ - "104251243787701780480", - "172036451075547561984", - "120363825233156915200" + "91440404032061600", + "293271203204100352", + "113446450533150032" ], - "expectedQty": "402534005117457549249", - "swapFee": "241665402311861646", + "expectedQty": "503295644379401643", + "swapFee": "302158681836743", "reserves": [ - "7764468180007868797718784", - "51964511504584383948117048", - "61886010590695978385126358" + "1124670499247267846558249531", + "488107604560852826145376760", + "146048599102501473512387111" ], - "mAssetSupply": "121066141997714639236377345" + "mAssetSupply": "1751612822810424269968629242" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "126139908849676468224", - "expectedQty": "116158646770022572617", - "swapFee": "75683945309805880", + "inputIndex": 1, + "inputQty": "13006347124270939766784", + "expectedQty": "12999294629026264117118", + "swapFee": "7803808274562563860", "reserves": [ - "7764352021361098775146167", - "51964511504584383948117048", - "61886010590695978385126358" + "1124670499247267846558249531", + "488094605266223799881259642", + "146048599102501473512387111" ], - "mAssetSupply": "121066015933489734869715001" + "mAssetSupply": "1751599824267108273591426318" }, { "type": "redeemBassets", "inputQtys": [ - "132093768922711588864", - "45506532347786485760", - "441971004907883790336" + "727646515939413332066304", + "706329546439527824883712", + "1267703343869910134554624" ], - "expectedQty": "625180067839941029033", - "swapFee": "375333240648353629", + "expectedQty": "2763797668375123358879468", + "swapFee": "1659274165524388648516", "reserves": [ - "7764219927592176063557303", - "51964465998052036161631288", - "61885568619691070501336022" + "1123942852731328433226183227", + "487388275719784272056375930", + "144780895758631563377832487" ], - "mAssetSupply": "121065390753421894928685968" + "mAssetSupply": "1748836026598733150232546850" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "148288301184321060864", - "expectedQty": "146530933470212424143", + "inputIndex": 1, + "inputQty": "26000324716004410130432", + "expectedQty": "25998295018036815842793", "reserves": [ - "7764219927592176063557303", - "51964465998052036161631288", - "61885716907992254822396886" + "1123942852731328433226183227", + "487414276044500276466506362", + "144780895758631563377832487" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4850219514044738560", - "569650519328084032", - "473343657038437376" + "330008650627929765576704", + "403004198987506649137152", + "135859807266879290998784" ], - "expectedQty": "6295994849919671304", - "swapFee": "3779864828849112", + "expectedQty": "872070306657692344175006", "reserves": [ - "7764215077372662018818743", - "51964465428401516833547256", - "61885716434648597783959510" + "1124272861381956362991759931", + "487817280243487783115643514", + "144916755565898442668831271" ], - "mAssetSupply": "121065530988360515221438807" + "mAssetSupply": "1749734095200408879392564649" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "7168061670595701724151808", - "hardLimitError": true + "inputIndex": 1, + "inputQty": "2431097350326697984", + "expectedQty": "2429845015608328930", + "swapFee": "1458658410196018", + "reserves": [ + "1124272861381956362991759931", + "487817277813642767507314584", + "144916755565898442668831271" + ], + "mAssetSupply": "1749734092770770187476062683" }, { "type": "redeemBassets", "inputQtys": [ - "2343645394231416548491264", - "1114109423205339872886784", - "411948755645964245532672" + "338343696675579756544", + "1229804308319139266560", + "38333923122633416704" ], - "hardLimitError": true + "expectedQty": "1603898668548619851272", + "swapFee": "962916951299951881", + "reserves": [ + "1124272523038259687412003387", + "487816048009334448368048024", + "144916717231975320035414567" + ], + "mAssetSupply": "1749732488872101638856211411" }, { - "type": "redeemMasset", - "inputQty": "273987926673430885171", - "expectedQtys": [ - "17566213798236265346", - "117567442494811402825", - "140013860398612855953" + "type": "mintMulti", + "inputQtys": [ + "590753507573041463296", + "142796833283248701440", + "500936028811292704768" ], - "redemptionFee": "82196378002029265", + "expectedQty": "1255029537394436094150", "reserves": [ - "7764197511158863782553397", - "51964347860959022022144431", - "61885576420788199171103557" + "1124273113791767260453466683", + "487816190806167731616749464", + "144917218168004131328119335" ], - "mAssetSupply": "121065257082630219792582901" + "mAssetSupply": "1749733743901639033292305561" }, { "type": "redeemMasset", - "inputQty": "17564704987342697", + "inputQty": "11112542711630131730841", "expectedQtys": [ - "1126127588382267", - "7536965108681885", - "8975950808854024" + "7138106000515906771391", + "3097186649779880851140", + "920091792548813282924" ], - "redemptionFee": "5269411496202", + "redemptionFee": "3333762813489039519", "reserves": [ - "7764197510032736194171130", - "51964347853422056913462546", - "61885576411812248362249533" + "1124265975685766744546695292", + "487813093619517951735898324", + "144916298076211582514836411" ], - "mAssetSupply": "121065257065070784216736406" + "mAssetSupply": "1749722634692690216649614239" }, { "type": "redeemBassets", "inputQtys": [ - "100906676762138665549824", - "51712380062731534860288", - "61911492579319986782208" - ], - "expectedQty": "222021264158081514926558", - "swapFee": "133292734135330107020", - "reserves": [ - "7663290833270597528621306", - "51912635473359325378602258", - "61823664919232928375467325" + "361672947280218095616", + "455877544759765499904", + "379085251424138100736" ], - "mAssetSupply": "120843235800912702701809848" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "51793517018537426944", - "expectedQty": "52249224839551603473", - "swapFee": "31076110211122456", + "expectedQty": "1213332517835294575990", + "swapFee": "728436572644763603", "reserves": [ - "7663290833270597528621306", - "51912583224134485826998785", - "61823664919232928375467325" + "1124265614012819464328599676", + "487812637741973191970398420", + "144915918990960158376735675" ], - "mAssetSupply": "120843184038471794375505360" + "mAssetSupply": "1749721421360172381355038249" }, { "type": "redeemMasset", - "inputQty": "26735968254011552563", + "inputQty": "591485382479930143539", "expectedQtys": [ - "1694957282193429386", - "11481961586425440264", - "13674082498839194776" + "379938870608104946814", + "164853376588223743607", + "48973472023251986003" ], - "redemptionFee": "8020790476203465", + "redemptionFee": "177445614743979043", "reserves": [ - "7663289138313315335191920", - "51912571742172899401558521", - "61823651245150429536272549" + "1124265234073948856223652862", + "487812472888596603746654813", + "144915870017488135124749672" ], - "mAssetSupply": "120843157310524330840156262" + "mAssetSupply": "1749720830052235516168873753" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1714788754527692370477056", - "1426374799982758127992832", - "1352532831039972301602816" + "88830744460874", + "83754515193646", + "80327628488469" + ], + "expectedQty": "256283476778801", + "reserves": [ + "1124265234074037686968113736", + "487812472888680358261848459", + "144915870017568462753238141" ], - "expectedQty": "4647262233498542118313844", - "swapFee": "2790031358914473955361", + "mAssetSupply": "1749720830052491799645652554" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "2216143893817653286928384", + "expectedQty": "2093066516711247307911065", + "swapFee": "1329686336290591972157", "reserves": [ - "5948500383785622964714864", - "50486196942190141273565689", - "60471118414110457234669733" + "1124265234074037686968113736", + "487812472888680358261848459", + "142822803500857215445327076" ], - "mAssetSupply": "116195895077025788721842418" + "mAssetSupply": "1747506015845010436950696327" }, { "type": "mintMulti", "inputQtys": [ - "308476435359815184678912", - "90204847468568220008448", - "81481539886240589938688" + "43141162655038488576", + "31266159008407896064", + "26910942064874467328" ], - "expectedQty": "518014478281786499694999", + "expectedQty": "102297328360115139295", "reserves": [ - "6256976819145438149393776", - "50576401789658709493574137", - "60552599953996697824608421" + "1124265277215200342006602312", + "487812504154839366669744523", + "142822830411799280319794404" ], - "mAssetSupply": "116713909555307575221537417" + "mAssetSupply": "1747506118142338797065835622" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "119215717839585872445440", - "outputIndex": 1, - "expectedQty": "135141068101653466668411", - "swapFee": "80235733710960409427", + "inputQty": "1432681190667581", + "expectedQty": "1412608706075474", "reserves": [ - "6376192536985024021839216", - "50441260721557056026905726", - "60552599953996697824608421" - ], - "mAssetSupply": "116713989791041286181946844", - "hardLimitError": false, - "insufficientLiquidityError": false + "1124265277216633023197269893", + "487812504154839366669744523", + "142822830411799280319794404" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "107316943982506811588608", - "expectedQty": "108794935630568513754181", - "swapFee": "64390166389504086953", + "inputQty": "139498159546811719614464", + "expectedQty": "131639126761587518944637", + "swapFee": "83698895728087031768", "reserves": [ - "6376192536985024021839216", - "50441260721557056026905726", - "60443805018366129310854240" + "1124265277216633023197269893", + "487812504154839366669744523", + "142691191285037692800849767" ], - "mAssetSupply": "116606737237225168874445189" + "mAssetSupply": "1747366703683100322139328400" }, { "type": "mintMulti", "inputQtys": [ - "5441138275122361344", - "14872554671041671168", - "12331923524564355072" + "6223764313719006298112", + "33308325591241549938688", + "33547224093371456815104" ], - "expectedQty": "32954157938463230914", + "expectedQty": "74969914215302690083892", "reserves": [ - "6376197978123299144200560", - "50441275594111727068576894", - "60443817350289653875209312" + "1124271500980946742203568005", + "487845812480430608219683211", + "142724738509131064257664871" ], - "mAssetSupply": "116606770191383107337676103" + "mAssetSupply": "1747441673597315624829412292" }, { - "type": "mintMulti", - "inputQtys": [ - "61564205801848073879552", - "18071324009074062786560", - "232897553473838153465856" - ], - "expectedQty": "316319990522483806969622", + "type": "redeem", + "inputIndex": 0, + "inputQty": "36420907369108720320512", + "expectedQty": "36916580651030149849601", + "swapFee": "21852544421465232192", "reserves": [ - "6437762183925147218080112", - "50459346918120801131363454", - "60676714903763492028675168" + "1124234584400295712053718404", + "487845812480430608219683211", + "142724738509131064257664871" ], - "mAssetSupply": "116923090181905591144645725" + "mAssetSupply": "1747405274542490937574323972" }, { - "type": "redeemMasset", - "inputQty": "3150636313104063502745", - "expectedQtys": [ - "173421369261305292925", - "1359281188799110918709", - "1634518126059883517811" + "type": "redeem", + "inputIndex": 0, + "inputQty": "146902027840930054144", + "expectedQty": "148901256437461825840", + "swapFee": "88141216704558032", + "reserves": [ + "1124234435499039274591892564", + "487845812480430608219683211", + "142724738509131064257664871" ], - "redemptionFee": "945190893931219050", + "mAssetSupply": "1747405127728604313348827860" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "609048386761502228480", + "outputIndex": 0, + "expectedQty": "653815429114955324188", + "swapFee": "387022194695960140", "reserves": [ - "6437588762555885912787187", - "50457987636932002020444745", - "60675080385637432145157357" + "1124233781683610159636568376", + "487845812480430608219683211", + "142725347557517825759893351" ], - "mAssetSupply": "116919940490783381012362030" + "mAssetSupply": "1747405128115626508044788000", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "95641733067129470976", - "expectedQty": "106864693084934037396", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7701000062228713439232", + "expectedQty": "7697536858455693666961", + "swapFee": "4620600037337228063", "reserves": [ - "6437684404288953042258163", - "50457987636932002020444745", - "60675080385637432145157357" - ] + "1124233781683610159636568376", + "487838114943572152526016250", + "142725347557517825759893351" + ], + "mAssetSupply": "1747397431736164316668576831" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "9112381772147640500224", - "expectedQty": "9237022297220854514560", - "swapFee": "5467429063288584300", + "inputIndex": 1, + "inputQty": "31154408975617312384090112", + "expectedQty": "31122449646565319576181126", + "swapFee": "18692645385370387430454", "reserves": [ - "6437684404288953042258163", - "50457987636932002020444745", - "60665843363340211290642797" + "1124233781683610159636568376", + "456715665297006832949835124", + "142725347557517825759893351" ], - "mAssetSupply": "116910940441133381594483502" + "mAssetSupply": "1716261715405932374671917173" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "225644035471565039599616", - "expectedQty": "223170825961205892162516", + "inputQty": "7782119481079918", + "expectedQty": "7769427059293323", + "swapFee": "4669271688647", "reserves": [ - "6437684404288953042258163", - "50683631672403567060044361", - "60665843363340211290642797" - ] + "1124233781683610159636568376", + "456715665289237405890541801", + "142725347557517825759893351" + ], + "mAssetSupply": "1716261715398154924462525902" }, { "type": "redeemMasset", - "inputQty": "67367682695646654811340", + "inputQty": "890795851174629710233", "expectedQtys": [ - "3701413431055543644152", - "29141079808435776359478", - "34880455972923841272677" + "583338974851701345363", + "236979222942007560742", + "74056890378149188832" ], - "redemptionFee": "20210304808693996443", + "redemptionFee": "267238755352388913", "reserves": [ - "6433982990857897498614011", - "50654490592595131283684883", - "60630962907367287449370120" + "1124233198344635307935223013", + "456715428310014463882981059", + "142725273500627447610704519" ], - "mAssetSupply": "117066763794703749525831121" + "mAssetSupply": "1716260824869542505185204582" }, { - "type": "mintMulti", - "inputQtys": [ - "46223712149650318295040", - "185249381896594969853952", - "533634224253813332639744" - ], - "expectedQty": "760995920735768496388470", + "type": "swap", + "inputIndex": 2, + "inputQty": "33597548582612188004352", + "outputIndex": 0, + "expectedQty": "36051756600686663468731", + "swapFee": "21332285352849725838", "reserves": [ - "6480206703007547816909051", - "50839739974491726253538835", - "61164597131621100782009864" + "1124197146588034621271754282", + "456715428310014463882981059", + "142758871049210059798708871" ], - "mAssetSupply": "117827759715439518022219591" + "mAssetSupply": "1716260846201827858034930420", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "11219346637068750028800", - "expectedQty": "11336597957387292015384", - "swapFee": "6731607982241250017", + "inputQty": "16647766275232126976", + "expectedQty": "16620608466050304514", + "swapFee": "9988659765139276", "reserves": [ - "6480206703007547816909051", - "50828403376534338961523451", - "61164597131621100782009864" + "1124197146588034621271754282", + "456715411689405997832676545", + "142758871049210059798708871" ], - "mAssetSupply": "117816547100410431513440808" + "mAssetSupply": "1716260829564050242567942720" }, { - "type": "redeemBassets", - "inputQtys": [ - "9587027131310022852608", - "6619619476611344105472", - "27462130631760972611584" - ], - "expectedQty": "44337450943204419241763", - "swapFee": "26618441630901192260", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5527130090006687818711040", + "expectedQty": "5517483986623036553405695", + "swapFee": "3316278054004012691226", "reserves": [ - "6470619675876237794056443", - "50821783757057727617417979", - "61137135000989339809398280" + "1124197146588034621271754282", + "451197927702782961279270850", + "142758871049210059798708871" ], - "mAssetSupply": "117772209649467227094199045" + "mAssetSupply": "1710737015752097558761922906" }, { - "type": "mintMulti", - "inputQtys": [ - "3212647299670", - "6563221912600", - "8820909694455" - ], - "expectedQty": "18779004193912", + "type": "redeem", + "inputIndex": 1, + "inputQty": "17947569244577413971574784", + "expectedQty": "17907203483008136822234231", + "swapFee": "10768541546746448382944", "reserves": [ - "6470619675879450441356113", - "50821783757064290839330579", - "61137135000998160719092735" + "1124197146588034621271754282", + "433290724219774824457036619", + "142758871049210059798708871" ], - "mAssetSupply": "117772209649486006098392957" + "mAssetSupply": "1692800215049066891238731066" }, { - "type": "redeemBassets", - "inputQtys": [ - "4171138173486715371520", - "10550780994530796634112", - "3328089633645413793792" - ], - "expectedQty": "18379330162771018932876", - "swapFee": "11034218628839915308", + "type": "mint", + "inputIndex": 1, + "inputQty": "2862867141547138404581376", + "expectedQty": "2868563375007132807866028", "reserves": [ - "6466448537705963725984593", - "50811232976069760042696467", - "61133806911364515305298943" - ], - "mAssetSupply": "117753830319323235079460081" + "1124197146588034621271754282", + "436153591361321962861617995", + "142758871049210059798708871" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15661549421094934413312", - "expectedQty": "15825513003600010773679", - "swapFee": "9396929652656960647", + "type": "redeemMasset", + "inputQty": "329617107638272603350630", + "expectedQtys": [ + "218464508047538010948041", + "84757446733526766983456", + "27742239542097356432066" + ], + "redemptionFee": "98885132291481781005", "reserves": [ - "6466448537705963725984593", - "50795407463066160031922788", - "61133806911364515305298943" + "1123978682079987083260806241", + "436068833914588436094634539", + "142731128809667962442276805" ], - "mAssetSupply": "117738178166831792802007416" + "mAssetSupply": "1695339260201568042925027469" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5371176480322747392", - "expectedQty": "5427395892391031452", - "swapFee": "3222705888193648", + "inputQty": "242745362134610919555072", + "expectedQty": "242132554505201019209927", + "swapFee": "145647217280766551733", "reserves": [ - "6466448537705963725984593", - "50795402035670267640891336", - "61133806911364515305298943" + "1123978682079987083260806241", + "435826701360083235075424612", + "142731128809667962442276805" ], - "mAssetSupply": "117738172798878018367453672" + "mAssetSupply": "1695096660486650712772024130" }, { "type": "mintMulti", "inputQtys": [ - "545558315770978697216", - "142631066933801598976", - "204122880962538504192" + "10938508960939880448", + "335205820193369489408", + "204740625014039445504" ], - "expectedQty": "952216881724964472117", + "expectedQty": "563192433153070066772", "reserves": [ - "6466994096021734704681809", - "50795544666737201442490312", - "61134011034245477843803135" + "1123978693018496044200686689", + "435827036565903428444914020", + "142731333550292976481722309" ], - "mAssetSupply": "117739125015759743331925789" + "mAssetSupply": "1695097223679083865842090902" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "6217832172787581952", - "expectedQty": "6149739102188833812", + "type": "swap", + "inputIndex": 2, + "inputQty": "388574040745752691474432", + "outputIndex": 1, + "expectedQty": "409899002258270371326583", + "swapFee": "246567539922572653152", "reserves": [ - "6466994096021734704681809", - "50795550884569374230072264", - "61134011034245477843803135" - ] + "1123978693018496044200686689", + "435417137563645158073587437", + "143119907591038729173196741" + ], + "mAssetSupply": "1695097470246623788414744054", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "347800104147904714768384", - "80061777241168397991936", - "411242285630187726962688" + "type": "redeemMasset", + "inputQty": "3784679017408420", + "expectedQtys": [ + "2508777507224922", + "971873157173768", + "319450899942102" ], - "expectedQty": "871726398377183033538711", + "redemptionFee": "1135403705222", "reserves": [ - "6814794200169639419450193", - "50875612661810542628064200", - "61545253319875665570765823" + "1123978693015987266693461767", + "435417137562673284916413669", + "143119907590719278273254639" ], - "mAssetSupply": "118610857563876028554298312" + "mAssetSupply": "1695097470242840244801040856" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "146563440408940691587072", - "expectedQty": "148477369975333332410981", - "swapFee": "87938064245364414952", + "type": "mintMulti", + "inputQtys": [ + "6760708467480139399168", + "6444682114669677117440", + "10661479812291708846080" + ], + "expectedQty": "24392373623769639483638", "reserves": [ - "6814794200169639419450193", - "50875612661810542628064200", - "61396775949900332238354842" + "1123985453724454746832860935", + "435423582244787954593531109", + "143130569070531569982100719" ], - "mAssetSupply": "118464382061531333227126192" + "mAssetSupply": "1695121862616464014440524494" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1858763762404799272714240", - "expectedQty": "1882539261219486734938796", - "swapFee": "1115258257442879563628", + "type": "redeemMasset", + "inputQty": "52289503088866898739", + "expectedQtys": [ + "34661230179298241009", + "13427502072799136458", + "4413830787407903909" + ], + "redemptionFee": "15686850926660069", "reserves": [ - "6814794200169639419450193", - "50875612661810542628064200", - "59514236688680845503416046" + "1123985419063224567534619926", + "435423568817285881794394651", + "143130564656700782574196810" ], - "mAssetSupply": "116606733557383976833975580" + "mAssetSupply": "1695121810342647776500285824" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1166413603072618790912", - "1490387777985798471680", - "1345921403782494683136" + "26254172556837353684992", + "57776149989287176175616", + "15337120742899112214528" ], - "expectedQty": "4090385038409317375522", - "swapFee": "2455704445713018236", + "expectedQty": "99975958654420060321317", "reserves": [ - "6813627786566566800659281", - "50874122274032556829592520", - "59512890767277063008732910" + "1124011673235781404888304918", + "435481344967275168970570267", + "143145901777443681686411338" ], - "mAssetSupply": "116602643172345567516600058" + "mAssetSupply": "1695221786301302196560607141" }, { "type": "mintMulti", "inputQtys": [ - "5296195803827262193664", - "1340289742104170070016", - "1783223073806694219776" + "11584156976050575360", + "22662508434960056320", + "36494751382155456512" ], - "expectedQty": "8930193682255538543742", + "expectedQty": "72710504445033671579", "reserves": [ - "6818923982370394062852945", - "50875462563774660999662536", - "59514673990350869702952686" + "1124011684819938380938880278", + "435481367629783603930626587", + "143145938272195063841867850" ], - "mAssetSupply": "116611573366027823055143800" + "mAssetSupply": "1695221859011806641594278720" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2337763832518252429312", - "expectedQty": "2313410768674311493439", + "type": "redeem", + "inputIndex": 0, + "inputQty": "7557669765664308520288256", + "expectedQty": "7665041389463407548948593", + "swapFee": "4534601859398585112172", "reserves": [ - "6818923982370394062852945", - "50877800327607179252091848", - "59514673990350869702952686" - ] + "1116346643430474973389931685", + "435481367629783603930626587", + "143145938272195063841867850" + ], + "mAssetSupply": "1687668723848001731659102636" }, { "type": "mintMulti", "inputQtys": [ - "23403955749524092", - "47872901330252880", - "56062048730076360" + "346330377892030155063296", + "648212892451299603251200", + "232215217104293311021056" + ], + "expectedQty": "1236066285247829175971723", + "reserves": [ + "1116692973808367003544994981", + "436129580522234903533877787", + "143378153489299357152888906" ], - "expectedQty": "128531089945673273", + "mAssetSupply": "1688904790133249560835074359" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "3027158055984415291473920", + "outputIndex": 1, + "expectedQty": "3186641949373023902380659", + "swapFee": "1916885446909894826863", "reserves": [ - "6818924005774349812377037", - "50877800375480080582344728", - "59514674046412918433029046" + "1116692973808367003544994981", + "432942938572861879631497128", + "146405311545283772444362826" ], - "mAssetSupply": "116613886905327587312310512" + "mAssetSupply": "1688906707018696470729901222", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "507760380869457368580096", - "85877534043383468654592", - "451553275593567095488512" + "11307501895217574225903616", + "12790723156044041833938944", + "8609523386820442651099136" ], - "expectedQty": "1094475435108243183051415", - "swapFee": "657079508770208034651", + "expectedQty": "33058996674518720467015262", + "swapFee": "19847306388544358895546", "reserves": [ - "6311163624904892443796941", - "50791922841436697113690136", - "59063120770819351337540534" + "1105385471913149429319091365", + "420152215416817837797558184", + "137795788158463329793263690" ], - "mAssetSupply": "115519411470219344129259097" + "mAssetSupply": "1655847710344177750262885960" }, { - "type": "redeemMasset", - "inputQty": "7774539199592078612889", - "expectedQtys": [ - "424618412229437993194", - "3417307316499179930848", - "3973797868914988083439" + "type": "redeemBassets", + "inputQtys": [ + "3084529233564833064943616", + "1391200195404053063139328", + "2057267621751238661505024" ], - "redemptionFee": "2332361759877623583", + "expectedQty": "6613705795246609623986014", + "swapFee": "3970605840652357188704", "reserves": [ - "6310739006492663005803747", - "50788505534120197933759288", - "59059146972950436349457095" + "1102300942679584596254147749", + "418761015221413784734418856", + "135738520536712091131758666" ], - "mAssetSupply": "115511639263381511928269791" + "mAssetSupply": "1649234004548931140638899946" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "50206408774690791227392", - "outputIndex": 2, - "expectedQty": "56883521176225367893601", - "swapFee": "33679384279652739180", + "inputQty": "4915097994506764508200960", + "expectedQty": "4988019078666969173651886", + "swapFee": "2949058796704058704920", "reserves": [ - "6360945415267353797031139", - "50788505534120197933759288", - "59002263451774210981563494" + "1097312923600917627080495863", + "418761015221413784734418856", + "135738520536712091131758666" ], - "mAssetSupply": "115511672942765791581008971", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1644321855613221080189403906" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "421759917350348440731648", - "outputIndex": 2, - "expectedQty": "473924820271790353894676", - "swapFee": "280868499288980691256", + "type": "redeemBassets", + "inputQtys": [ + "13006326351356452317167616", + "1750740766724574391828480", + "9179709217997536905658368" + ], + "expectedQty": "24328327721936424752132522", + "swapFee": "14605760089215384081728", "reserves": [ - "6782705332617702237762787", - "50788505534120197933759288", - "58528338631502420627668818" + "1084306597249561174763328247", + "417010274454689210342590376", + "126558811318714554226100298" ], - "mAssetSupply": "115511953811265080561700227", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1619993527891284655437271384" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "88403719838443904172032", + "295241251914422761291776", + "324618649630066851446784" + ], + "expectedQty": "729574377122087090660015", + "swapFee": "438007430731691269157", + "reserves": [ + "1084218193529722730859156215", + "416715033202774787581298600", + "126234192669084487374653514" + ], + "mAssetSupply": "1619263953514162568346611369" }, { "type": "mintMulti", "inputQtys": [ - "13007906674371941367808", - "119804024075818520018944", - "19091159701508522508288" + "5248517607938384593944576", + "73511791537753392414720", + "11339377696961766812024832" ], - "expectedQty": "151731533391079172608079", + "expectedQty": "17296858601023590724290967", "reserves": [ - "6795713239292074179130595", - "50908309558196016453778232", - "58547429791203929150177106" + "1089466711137661115453100791", + "416788544994312540973713320", + "137573570366046254186678346" ], - "mAssetSupply": "115663685344656159734308306" + "mAssetSupply": "1636560812115186159070902336" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "138597234034116118183936", - "expectedQty": "140302839205220262655217", - "swapFee": "83158340420469670910", + "type": "redeemBassets", + "inputQtys": [ + "66128973227966616", + "279165488789183296", + "544498625583731712" + ], + "expectedQty": "921142132169441345", + "swapFee": "553017089555398", "reserves": [ - "6795713239292074179130595", - "50908309558196016453778232", - "58407126951998708887521889" + "1089466711071532142225134175", + "416788544715147052184530024", + "137573569821547628602946634" ], - "mAssetSupply": "115525171268962464085795280" + "mAssetSupply": "1636560811194044026901460991" }, { "type": "mintMulti", "inputQtys": [ - "6063680146911108530176", - "707486662349768097792", - "7755545303662273232896" + "464370462237356489441280", + "549245426888830896570368", + "29956037923210400890880" ], - "expectedQty": "15038040815094400838184", + "expectedQty": "1039613187225987810287598", "reserves": [ - "6801776919438985287660771", - "50909017044858366221876024", - "58414882497302371160754785" + "1089931081533769498714575455", + "417337790142035883081100392", + "137603525859470839003837514" ], - "mAssetSupply": "115540209309777558486633464" + "mAssetSupply": "1637600424381270014711748589" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "695492959557238113959936", - "outputIndex": 1, - "expectedQty": "693365786376135249837656", - "swapFee": "411949794529086795760", + "type": "redeemMasset", + "inputQty": "3110975714492329597337", + "expectedQtys": [ + "2069938337775597764830", + "792585426962871499940", + "261329196327529077182" + ], + "redemptionFee": "933292714347698879", "reserves": [ - "6801776919438985287660771", - "50215651258482230972038368", - "59110375456859609274714721" + "1089929011595431723116810625", + "417336997556608920209600452", + "137603264530274511474760332" ], - "mAssetSupply": "115540621259572087573429224", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1637597314338848236729850131" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1338720761204586546462720", - "expectedQty": "1321183195184081983629664", + "type": "redeemMasset", + "inputQty": "15570239821317", + "expectedQtys": [ + "10359912545881", + "3966840730771", + "1307936362271" + ], + "redemptionFee": "4671071946", "reserves": [ - "6801776919438985287660771", - "50215651258482230972038368", - "60449096218064195821177441" - ] + "1089929011595421363204264744", + "417336997556604953368869681", + "137603264530273203538398061" + ], + "mAssetSupply": "1637597314338832671161100760" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1153099247346235067072512", - "1511408512756861171138560", - "600402573602120552939520" + "8471282787414002688", + "6011037728672866304", + "9321320943040763904" ], - "hardLimitError": true + "expectedQty": "24234116755676574635", + "reserves": [ + "1089929020066704150618267432", + "417337003567642682041735985", + "137603273851594146579161965" + ], + "mAssetSupply": "1637597338572949426837675395" }, { "type": "mint", "inputIndex": 2, - "inputQty": "34312332176097628160", - "expectedQty": "33856912295469297483", + "inputQty": "1160817732432528146432", + "expectedQty": "1228479261013844189007", "reserves": [ - "6801776919438985287660771", - "50215651258482230972038368", - "60449130530396371918805601" + "1089929020066704150618267432", + "417337003567642682041735985", + "137604434669326579107308397" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1624841116862600821342208", - "expectedQty": "1607861199732946547293505", + "inputIndex": 2, + "inputQty": "4045181053972949730590720", + "expectedQty": "4274269021621440315621935", "reserves": [ - "6801776919438985287660771", - "51840492375344831793380576", - "60449130530396371918805601" + "1089929020066704150618267432", + "417337003567642682041735985", + "141649615723299528837899117" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "12588998729895384186880", - "expectedQty": "13937532771501882942103", + "type": "mintMulti", + "inputQtys": [ + "3191393678052369163616256", + "1259630921974632583004160", + "1522583250955543219535872" + ], + "expectedQty": "6013558289050433204256989", "reserves": [ - "6814365918168880671847651", - "51840492375344831793380576", - "60449130530396371918805601" - ] + "1093120413744756519781883688", + "418596634489617314624740145", + "143172198974255072057434989" + ], + "mAssetSupply": "1647886394362882314201743326" + }, + { + "type": "mintMulti", + "inputQtys": [ + "14963580793186739552256", + "31977552580256490061824", + "24673527103730799869952" + ], + "expectedQty": "72808938039600901774410", + "reserves": [ + "1093135377325549706521435944", + "418628612042197571114801969", + "143196872501358802857304941" + ], + "mAssetSupply": "1647959203300921915103517736" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1965869553804824637603840", - "expectedQty": "1939458098428060161498970", + "inputQty": "181353196253974334799872", + "expectedQty": "191163464031670380594241", "reserves": [ - "6814365918168880671847651", - "51840492375344831793380576", - "62415000084201196556409441" + "1093135377325549706521435944", + "418628612042197571114801969", + "143378225697612777192104813" ] }, { "type": "redeemMasset", - "inputQty": "1380978726676857", + "inputQty": "646450829665113543068876", "expectedQtys": [ - "78121818819986", - "594314071407232", - "715543219542532" + "428629746637464373457890", + "164148631209656636480424", + "56220092981031125786587" ], - "redemptionFee": "414293618003", + "redemptionFee": "193935248899534062920", "reserves": [ - "6814365918090758853027665", - "51840492374750517721973344", - "62415000083485653336866909" + "1092706747578912242147978054", + "418464463410987914478321545", + "143322005604631746066318226" ], - "mAssetSupply": "120423095141220409185032095" + "mAssetSupply": "1647504109870537371475106021" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "194574137121524359888896", - "expectedQty": "196529923010787946198514", - "swapFee": "116744482272914615933", + "type": "redeemMasset", + "inputQty": "1160685489352911670476", + "expectedQtys": [ + "769593454593980964050", + "294724556917794049267", + "100941700650238650591" + ], + "redemptionFee": "348205646805873501", "reserves": [ - "6814365918090758853027665", - "51643962451739729775774830", - "62415000083485653336866909" + "1092705977985457648167014004", + "418464168686430996684272278", + "143321904662931095827667635" ], - "mAssetSupply": "120228637748581157739759132" + "mAssetSupply": "1647502949533253665369309046" }, { "type": "redeemBassets", "inputQtys": [ - "105747732934667452416", - "116520012193989951488", - "101130228877722058752" + "1010252958410604233621504", + "881754002267782843990016", + "2471913909287617134854144" ], - "expectedQty": "332477181565043324197", - "swapFee": "199606072582575539", + "expectedQty": "4487049477934019705050515", + "swapFee": "2693845994357026038653", "reserves": [ - "6814260170357824185575249", - "51643845931727535785823342", - "62414898953256775614808157" + "1091695725027047043933392500", + "417582414684163213840282262", + "140849990753643478692813491" ], - "mAssetSupply": "120228305271399592696434935" + "mAssetSupply": "1643015900055319645664258531" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "714283771103905054720", - "expectedQty": "721443940957710591514", - "swapFee": "428570262662343032", + "type": "redeemMasset", + "inputQty": "22575966230125488793190", + "expectedQtys": [ + "14996015556031360572923", + "5736096828971007963248", + "1934777799332484228992" + ], + "redemptionFee": "6772789869037646637", "reserves": [ - "6814260170357824185575249", - "51643124487786578075231828", - "62414898953256775614808157" + "1091680729011491012572819577", + "417576678587334242832319014", + "140848055975844146208584499" ], - "mAssetSupply": "120227591416198751453723247" + "mAssetSupply": "1642993330861879389213111978" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "146547445821528594186240", - "expectedQty": "145003018609799873167028", + "inputQty": "15693420834073450301620224", + "expectedQty": "15642624109758715439738626", + "swapFee": "9416052500444070180972", "reserves": [ - "6814260170357824185575249", - "51789671933608106669418068", - "62414898953256775614808157" - ] + "1091680729011491012572819577", + "401934054477575527392580388", + "140848055975844146208584499" + ], + "mAssetSupply": "1627309326080306382981672726" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1585109641040286671962112", - "expectedQty": "1563089794182939974898066", + "type": "mintMulti", + "inputQtys": [ + "1378954085481996366118912", + "2522549329014195121815552", + "1547455120580876599033856" + ], + "expectedQty": "5521320901028101670939782", "reserves": [ - "6814260170357824185575249", - "51789671933608106669418068", - "64000008594297062286770269" - ] + "1093059683096973008938938489", + "404456603806589722514395940", + "142395511096425022807618355" + ], + "mAssetSupply": "1632830646981334484652612508" }, { "type": "redeemBassets", "inputQtys": [ - "8345013174678310617088", - "2393962711214289584128", - "1775634057698333163520" + "28764266105374343430144", + "54735754715765686665216", + "86625628911622934233088" ], - "expectedQty": "13417426756999103837231", - "swapFee": "8055289227736103964", + "expectedQty": "174589656116596369942015", + "swapFee": "104816683680165921518", "reserves": [ - "6805915157183145874958161", - "51787277970896892379833940", - "63998232960239363953606749" + "1093030918830867634595508345", + "404401868051873956827730724", + "142308885467513399873385267" ], - "mAssetSupply": "121922266802234492197951110" + "mAssetSupply": "1632656057325217888282670493" }, { - "type": "redeemMasset", - "inputQty": "15687027002458505216000", - "expectedQtys": [ - "875414707043187715540", - "6661168076068166940279", - "8231809104913589366475" + "type": "redeem", + "inputIndex": 2, + "inputQty": "64232665380680346804158464", + "expectedQty": "58774252880440013263853075", + "swapFee": "38539599228408208082495", + "reserves": [ + "1093030918830867634595508345", + "404401868051873956827730724", + "83534632587073386609532192" + ], + "mAssetSupply": "1568461931543765949686594524" + }, + { + "type": "mintMulti", + "inputQtys": [ + "40092865083717993193537536", + "32741399374531926800990208", + "59774367456835973832245248" ], - "redemptionFee": "4706108100737551564", + "expectedQty": "137575516175862828129318745", "reserves": [ - "6805039742476102687242621", - "51780616802820824212893661", - "63990001151134450364240274" + "1133123783914585627789045881", + "437143267426405883628720932", + "143309000043909360441777440" ], - "mAssetSupply": "121906584481340134430286674" + "mAssetSupply": "1706037447719628777815913269" }, { "type": "redeemBassets", "inputQtys": [ - "2288329896500832501760", - "4288879536409030426624", - "2190625367481368444928" + "4123993470537155282468864", + "3934062601856907195973632", + "4200444874323801071943680" ], - "expectedQty": "8953545517931470024656", - "swapFee": "5375352522272245362", + "expectedQty": "12455303149485760581839574", + "swapFee": "7477668490785927905847", "reserves": [ - "6802751412579601854740861", - "51776327923284415182467037", - "63987810525766968995795346" + "1128999790444048472506577017", + "433209204824548976432747300", + "139108555169585559369833760" ], - "mAssetSupply": "121897630935822202960262018" + "mAssetSupply": "1693582144570143017234073695" }, { "type": "redeemBassets", "inputQtys": [ - "24434307939166614192128", - "81562871055349805219840", - "13865598931787686346752" + "169153664880685204111360", + "420852982748789887467520", + "375784519775446663954432" ], - "expectedQty": "121611514519290887276407", - "swapFee": "73010715140658927722", + "expectedQty": "987140319831718119719145", + "swapFee": "592639775764489565570", "reserves": [ - "6778317104640435240548733", - "51694765052229065377247197", - "63973944926835181309448594" + "1128830636779167787302465657", + "432788351841800186545279780", + "138732770649810112705879328" ], - "mAssetSupply": "121776019421302912072985611" + "mAssetSupply": "1692595004250311299114354550" }, { "type": "redeemMasset", - "inputQty": "13804212327515936102809", + "inputQty": "2077567846120121", "expectedQtys": [ - "768141857334887218585", - "5858225903082217033530", - "7249744164889688249429" + "1385162228489344", + "531064677347779", + "170235806414762" ], - "redemptionFee": "4141263698254780830", + "redemptionFee": "623270353836", "reserves": [ - "6777548962783100353330148", - "51688906826325983160213667", - "63966695182670291621199165" + "1128830636777782625073976313", + "432788351841269121867932001", + "138732770649639876899464566" ], - "mAssetSupply": "121762219350239094391663632" + "mAssetSupply": "1692595004248234354538588265" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "629331567016857057624064", - "55591251116410166837248", - "647390852201470383620096" + "56646415855557374115840", + "36536383945150816059392", + "2890336564297614753792" ], - "expectedQty": "1401188513553026055705094", - "swapFee": "841217838835116703445", + "expectedQty": "95464119769385128240846", "reserves": [ - "6148217395766243295706084", - "51633315575209572993376419", - "63319304330468821237579069" + "1128887283193638182448092153", + "432824888225214272683991393", + "138735660986204174514218358" ], - "mAssetSupply": "120361030836686068335958538" + "mAssetSupply": "1692690468368003739666829111" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "15989474577782", - "expectedQty": "18184342535221", + "type": "redeemBassets", + "inputQtys": [ + "155808618080735297536", + "13140450694200664522752", + "24364569135861330870272" + ], + "expectedQty": "39184314800360514217638", + "swapFee": "23524703702437771193", "reserves": [ - "6148217395782232770283866", - "51633315575209572993376419", - "63319304330468821237579069" - ] + "1128887127385020101712794617", + "432811747774520072019468641", + "138711296417068313183348086" + ], + "mAssetSupply": "1692651284053203379152611473" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "626919289879530930438144", - "673643287617768544796672", - "49901665192505287639040" + "2171778574002357369044992", + "3156078602638658822471680", + "6326357277142871030366208" ], - "expectedQty": "1420904523592023368860142", + "expectedQty": "12033611074784145898251421", + "swapFee": "7224501345677894275516", "reserves": [ - "6775136685661763700722010", - "52306958862827341538173091", - "63369205995661326525218109" + "1126715348811017744343749625", + "429655669171881413196996961", + "132384939139925442152981878" ], - "mAssetSupply": "121781935360296276047353901" + "mAssetSupply": "1680617672978419233254360052" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "110507136298481", + "expectedQty": "108750478516949", + "reserves": [ + "1126715348811128251480048106", + "429655669171881413196996961", + "132384939139925442152981878" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "33361730016299", - "expectedQty": "32894881114529", + "inputQty": "2750930954010583340417024", + "expectedQty": "2931997960552704189282544", "reserves": [ - "6775136685661763700722010", - "52306958862827341538173091", - "63369205995694688255234408" + "1126715348811128251480048106", + "429655669171881413196996961", + "135135870093936025493398902" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "457000279884811112284160", - "expectedQty": "461650118719940380214571", - "swapFee": "274200167930886667370", + "inputQty": "289955673234854876545024", + "expectedQty": "289170130790990791663462", + "swapFee": "173973403940912925927", "reserves": [ - "6775136685661763700722010", - "51845308744107401157958520", - "63369205995694688255234408" + "1126715348811128251480048106", + "429366499041090422405333499", + "135135870093936025493398902" ], - "mAssetSupply": "121325209280612290702851640" + "mAssetSupply": "1683259889239249773958540448" }, { - "type": "redeemBassets", - "inputQtys": [ - "143775931540082188615680", - "375186854880197088378880", - "182939017600228713824256" + "type": "redeemMasset", + "inputQty": "1924264940668619797299200", + "expectedQtys": [ + "1287649297671377007551037", + "490694896024316479596002", + "154437949567540797599162" ], - "expectedQty": "711984700748403782264779", - "swapFee": "427447288822335670761", + "redemptionFee": "577279482200585939189", "reserves": [ - "6631360754121681512106330", - "51470121889227204069579640", - "63186266978094459541410152" + "1125427699513456874472497069", + "428875804145066105925737497", + "134981432144368484695799740" ], - "mAssetSupply": "120613224579863886920586861" + "mAssetSupply": "1681336201578063354747180437" }, { - "type": "redeemMasset", - "inputQty": "4538973664053", - "expectedQtys": [ - "249479624253", - "1936366779811", - "2377141996671" - ], - "redemptionFee": "1361692099", + "type": "redeem", + "inputIndex": 1, + "inputQty": "45892171811872437459484672", + "expectedQty": "45711064188127091622681025", + "swapFee": "27535303087123462475690", "reserves": [ - "6631360754121432032482077", - "51470121889225267702799829", - "63186266978092082399413481" + "1125427699513456874472497069", + "383164739956939014303056472", + "134981432144368484695799740" ], - "mAssetSupply": "120613224579859349308614907" + "mAssetSupply": "1635471565069278040750171455" }, { - "type": "redeemMasset", - "inputQty": "360890700495184199680", - "expectedQtys": [ - "19835954781879931998", - "153959202080506406075", - "189004938968861959829" + "type": "swap", + "inputIndex": 0, + "inputQty": "23257020533373352804352", + "outputIndex": 1, + "expectedQty": "22753281879845264518350", + "swapFee": "13724652327626427809", + "reserves": [ + "1125450956533990247825301421", + "383141986675059169038538122", + "134981432144368484695799740" ], - "redemptionFee": "108267210148555259", + "mAssetSupply": "1635471578793930368376599264", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "102958274710376138600873984", + "outputIndex": 0, + "expectedQty": "107606710978176698723755911", + "swapFee": "63998293084273034576152", "reserves": [ - "6631340918166650152550079", - "51469967930023187196393754", - "63186077973153113537453652" + "1017844245555813549101545510", + "383141986675059169038538122", + "237939706854744623296673724" ], - "mAssetSupply": "120612863797426064272970486" + "mAssetSupply": "1635535577087014641411175416", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "24388924690143775948", - "expectedQtys": [ - "1340510039933330450", - "10404533504864317889", - "12772917717890341645" + "type": "mintMulti", + "inputQtys": [ + "5099381161197673763569664", + "12865905222708749408403456", + "10501186888603616174669824" ], - "redemptionFee": "7316677407043132", + "expectedQty": "28638919444111998286800925", "reserves": [ - "6631339577656610219219629", - "51469957525489682332075865", - "63186065200235395647112007" + "1022943626717011222865115174", + "396007891897767918446941578", + "248440893743348239471343548" ], - "mAssetSupply": "120612839415818051536237670" + "mAssetSupply": "1664174496531126639697976341" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "196931915172127768576", - "expectedQty": "194813247164110943515", + "type": "swap", + "inputIndex": 2, + "inputQty": "16645349129060006255132672", + "outputIndex": 1, + "expectedQty": "16801804295694932377073938", + "swapFee": "10129099795631950041464", "reserves": [ - "6631339577656610219219629", - "51470154457404854459844441", - "63186065200235395647112007" - ] + "1022943626717011222865115174", + "379206087602072986069867640", + "265086242872408245726476220" + ], + "mAssetSupply": "1664184625630922271648017805", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "9067694649845090353152", - "16404546006815279677440", - "14531476070693330747392" + "1539017813982941696", + "331753688328065984", + "1203329866496048128" ], - "expectedQty": "40687932367357543936240", + "expectedQty": "3078956933268476202", "reserves": [ - "6640407272306455309572781", - "51486559003411669739521881", - "63200596676306088977859399" + "1022943628256029036848056870", + "379206087933826674397933624", + "265086244075738112222524348" ], - "mAssetSupply": "120653722161432573191117425" + "mAssetSupply": "1664184628709879204916494007" }, { "type": "redeemBassets", "inputQtys": [ - "29293007125060681728", - "16296091423764043776", - "17944519350590676992" + "169775524718085", + "178566362516194", + "68236281839361" ], - "expectedQty": "66549192147676274074", - "swapFee": "39953487381034385", + "expectedQty": "416908990288870", + "swapFee": "250295571516", "reserves": [ - "6640377979299330248891053", - "51486542707320245975478105", - "63200578731786738387182407" + "1022943628255859261323338785", + "379206087933648108035417430", + "265086244075669875940684987" ], - "mAssetSupply": "120653655612240425514843351" + "mAssetSupply": "1664184628709462295926205137" }, { - "type": "mintMulti", - "inputQtys": [ - "116445815626588311519232", - "565924513167070640209920", - "437099402159722208428032" + "type": "redeem", + "inputIndex": 0, + "inputQty": "988978067477114940030976", + "expectedQty": "996389526397833133185473", + "swapFee": "593386840486268964018", + "reserves": [ + "1021947238729461428190153312", + "379206087933648108035417430", + "265086244075669875940684987" ], - "expectedQty": "1120787805027244952787442", + "mAssetSupply": "1663196244028825667255138179" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "3310422550644082", + "expectedQty": "3265811214720559", + "swapFee": "1986253530386", "reserves": [ - "6756823794925918560410285", - "52052467220487316615688025", - "63637678133946460595610439" + "1021947238729461428190153312", + "379206087933648108035417430", + "265086244072404064725964428" ], - "mAssetSupply": "121774443417267670467630793" + "mAssetSupply": "1663196244025517230958024483" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "63331981197347139878912", - "expectedQty": "56684336374931570946380", - "swapFee": "37999188718408283927", + "inputQty": "2991023762576236699713536", + "expectedQty": "3013369077650756280168609", + "swapFee": "1794614257545742019828", "reserves": [ - "6700139458550986989463905", - "52052467220487316615688025", - "63637678133946460595610439" + "1018933869651810671909984703", + "379206087933648108035417430", + "265086244072404064725964428" ], - "mAssetSupply": "121711149435259041736035808" + "mAssetSupply": "1660207014877198540000330775" }, { "type": "redeemBassets", "inputQtys": [ - "1454336272160067944448", - "6770694890580703444992", - "209850556981786148864" + "162136214516253016981504", + "231954941577042468012032", + "393252384680420130684928" ], - "expectedQty": "8529908016085688043788", - "swapFee": "5121017420103474911", + "expectedQty": "792188568477798316718102", + "swapFee": "475598500186791064669", "reserves": [ - "6698685122278826921519457", - "52045696525596735912243033", - "63637468283389478809461575" + "1018771733437294418893003199", + "378974132992071065567405398", + "264692991687723644595279500" ], - "mAssetSupply": "121702619527242956047992020" + "mAssetSupply": "1659414826308720741683612673" }, { "type": "mintMulti", "inputQtys": [ - "41764588953439471403008", - "35272909923844299423744", - "66739088761725986537472" + "142089902528538894925824", + "228127827279828924497920", + "749673610037487799894016" ], - "expectedQty": "147336112928567224123313", + "expectedQty": "1129497504893330331456726", "reserves": [ - "6740449711232266392922465", - "52080969435520580211666777", - "63704207372151204795999047" + "1018913823339822957787929023", + "379202260819350894491903318", + "265442665297761132395173516" ], - "mAssetSupply": "121849955640171523272115333" + "mAssetSupply": "1660544323813614072015069399" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "303534612154693036539904", - "outputIndex": 0, - "expectedQty": "266594124492741222754068", - "swapFee": "179534427278687348502", + "inputQty": "252248724866631290847232", + "expectedQty": "248874334986975859905613", + "swapFee": "151349234919978774508", "reserves": [ - "6473855586739525170168397", - "52080969435520580211666777", - "64007741984305897832538951" + "1018913823339822957787929023", + "379202260819350894491903318", + "265193790962774156535267903" ], - "mAssetSupply": "121850135174598801959463835", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1660292226437982360702996675" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "19725972353348432652402688", + "expectedQty": "19805952977415939314216337", + "reserves": [ + "1018913823339822957787929023", + "398928233172699327144306006", + "265193790962774156535267903" + ] }, { "type": "mintMulti", "inputQtys": [ - "7253021450183248885841920", - "1810574385771035079213056", - "1358556598542782504632320" + "584984825500835446784", + "22739846732322699214848", + "114703528833190901841920" ], - "expectedQty": "10843565648548569471096243", + "expectedQty": "139614766045213573179933", "reserves": [ - "13726877036922774056010317", - "53891543821291615290879833", - "65366298582848680337171271" + "1018914408324648458623375807", + "398950973019431649843520854", + "265308494491607347437109823" ], - "mAssetSupply": "132693700823147371430560078" + "mAssetSupply": "1680237794181443513590392945" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4379353032450458517504", - "expectedQty": "4247451899978031521625", - "swapFee": "2627611819470275110", - "reserves": [ - "13722629585022796024488692", - "53891543821291615290879833", - "65366298582848680337171271" - ], - "mAssetSupply": "132689324097726740442317684" - }, - { - "type": "swap", "inputIndex": 2, - "inputQty": "606087922714410876928", - "outputIndex": 0, - "expectedQty": "583771336993930460645", - "swapFee": "361143784942742443", + "inputQty": "851317825233571186475008", + "expectedQty": "839738855044215010464574", + "swapFee": "510790695140142711885", "reserves": [ - "13722045813685802094028047", - "53891543821291615290879833", - "65366904670771394748048199" + "1018914408324648458623375807", + "398950973019431649843520854", + "264468755636563132426645249" ], - "mAssetSupply": "132689324458870525385060127", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1679386987146905082546629822" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2403348867657514352640", - "outputIndex": 2, - "expectedQty": "2492218862985836380638", - "swapFee": "1485907739373862051", + "type": "redeem", + "inputIndex": 2, + "inputQty": "712760836533295249358848", + "expectedQty": "703007406696082269123899", + "swapFee": "427656501919977149615", "reserves": [ - "13724449162553459608380687", - "53891543821291615290879833", - "65364412451908408911667561" + "1018914408324648458623375807", + "398950973019431649843520854", + "263765748229867050157521350" ], - "mAssetSupply": "132689325944778264758922178", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1678674653966873707274420589" }, { - "type": "redeemMasset", - "inputQty": "43412791865383358090444", - "expectedQtys": [ - "4488966280621310032959", - "17626741893908883881347", - "21379265570076215970899" + "type": "redeemBassets", + "inputQtys": [ + "1265887271550114332672", + "983347971651634200576", + "505143228858964705280" ], - "redemptionFee": "13023837559615007427", + "expectedQty": "2754853239455130775764", + "swapFee": "1653904286244825360", "reserves": [ - "13719960196272838298347728", - "53873917079397706406998486", - "65343033186338332695696662" + "1018913142437376908509043135", + "398949989671459998209320278", + "263765243086638191192816070" ], - "mAssetSupply": "132645926176750441015839161" + "mAssetSupply": "1678671899113634252143644825" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "95578058764375056", - "expectedQty": "94918757697621859", - "reserves": [ - "13719960196272838298347728", - "53873917079397706406998486", - "65343033281916391460071718" - ] - }, - { - "type": "redeemMasset", - "inputQty": "22782661658049925401804", - "expectedQtys": [ - "2355771087234686722410", - "9250363295237670802492", - "11219655622584821201489" - ], - "redemptionFee": "6834798497414977620", + "type": "swap", + "inputIndex": 1, + "inputQty": "6102686713350317051740160", + "outputIndex": 0, + "expectedQty": "6168047399597806461983667", + "swapFee": "3674626485481316484724", "reserves": [ - "13717604425185603611625318", - "53864666716102468736195994", - "65331813626293806638870229" + "1012745095037779102047059468", + "405052676384810315261060438", + "263765243086638191192816070" ], - "mAssetSupply": "132623150444809646203036836" + "mAssetSupply": "1678675573740119733460129549", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 2, - "inputQty": "3556866418500361762373632", - "outputIndex": 1, - "expectedQty": "3544705905280880952065505", - "swapFee": "2118846987803804185491", + "inputQty": "100982583396817120", + "outputIndex": 0, + "expectedQty": "103042717139259753", + "swapFee": "61389996144031", "reserves": [ - "13717604425185603611625318", - "50319960810821587784130489", - "68888680044794168401243861" + "1012745094934736384907799715", + "405052676384810315261060438", + "263765243187620774589633190" ], - "mAssetSupply": "132625269291797450007222327", + "mAssetSupply": "1678675573740181123456273580", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "78253369787309302480896", - "expectedQtys": [ - "8091419853689569523240", - "29681562270013765823208", - "40634444333845419086791" - ], - "redemptionFee": "23476010936192790744", - "reserves": [ - "13709513005331914042102078", - "50290279248551574018307281", - "68848045600460322982157070" - ], - "mAssetSupply": "132547039398021076897532175" - }, - { - "type": "redeemMasset", - "inputQty": "6661439415812921858457", - "expectedQtys": [ - "688794658808421159252", - "2526689002221611788809", - "3459070067664126755001" - ], - "redemptionFee": "1998431824743876557", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1025774340934237283155968", + "expectedQty": "1033047521722824068911348", + "swapFee": "615464604560542369893", "reserves": [ - "13708824210673105620942826", - "50287752559549352406518472", - "68844586530392658855402069" + "1011712047413013560838888367", + "405052676384810315261060438", + "263765243187620774589633190" ], - "mAssetSupply": "132540379957037088719550275" + "mAssetSupply": "1677650414863851446715487505" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4453858791790568538112", - "expectedQty": "4591212188414298980986", + "inputIndex": 2, + "inputQty": "1583604400153870869725184", + "expectedQty": "1604347824610104573694968", "reserves": [ - "13713278069464896189480938", - "50287752559549352406518472", - "68844586530392658855402069" + "1011712047413013560838888367", + "405052676384810315261060438", + "265348847587774645459358374" ] }, { "type": "redeemBassets", "inputQtys": [ - "949035114809972947419136", - "349549746862704109289472", - "714869420305746803818496" + "308519522881790659264512", + "1363686985166619303477248", + "164241994807042803499008" ], - "expectedQty": "2037530536459589033708251", - "swapFee": "1223252273239697238568", + "expectedQty": "1840878422998842246890646", + "swapFee": "1105190167900045375359", "reserves": [ - "12764242954654923242061802", - "49938202812686648297229000", - "68129717110086912051583573" + "1011403527890131770179623855", + "403688989399643695957583190", + "265184605592967602655859366" ], - "mAssetSupply": "130507440632765913984823010" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "982945512637703475167232", - "expectedQty": "1014823174089582731308421", - "reserves": [ - "13747188467292626717229034", - "49938202812686648297229000", - "68129717110086912051583573" - ] + "mAssetSupply": "1677413884265462709042291827" }, { "type": "redeemMasset", - "inputQty": "21977380966710990444953", + "inputQty": "6300453695439926067", "expectedQtys": [ - "2296467162783677122025", - "8342174343547916151305", - "11381065919427860067843" + "3797744530615639390", + "1515821933862971798", + "995748341510194252" ], - "redemptionFee": "6593214290013297133", + "redemptionFee": "1890136108631977", "reserves": [ - "13744892000129843040107009", - "49929860638343100381077695", - "68118336044167484191515730" + "1011403524092387239563984465", + "403688987883821762094611392", + "265184604597219261145665114" ], - "mAssetSupply": "131500293019103075738983611" + "mAssetSupply": "1677413877966899149710997737" }, { "type": "redeemBassets", "inputQtys": [ - "659636794406076642492416", - "1918719988086293632385024", - "679811506892445004595200" - ], - "expectedQty": "3265796027464667895889312", - "swapFee": "1960654008884131216263", - "reserves": [ - "13085255205723766397614593", - "48011140650256806748692671", - "67438524537275039186920530" - ], - "mAssetSupply": "128234496991638407843094299" - }, - { - "type": "mintMulti", - "inputQtys": [ - "9523898166486694", - "3772903919342405", - "1446152434816932" + "544133124663597225476096", + "675690546702402797436928", + "885310532285811035996160" ], - "expectedQty": "15020622942306873", + "expectedQty": "2114854466117060429178243", + "swapFee": "1269674484360852769168", "reserves": [ - "13085255215247664564101287", - "48011140654029710668035076", - "67438524538721191621737462" + "1010859390967723642338508369", + "403013297337119359297174464", + "264299294064933450109668954" ], - "mAssetSupply": "128234497006659030785401172" + "mAssetSupply": "1675299023500782089281819494" }, { - "type": "redeemMasset", - "inputQty": "30244301625482274406", - "expectedQtys": [ - "3085251539093631373", - "11320103670876884149", - "15900707185660737728" - ], - "redemptionFee": "9073290487644682", + "type": "redeem", + "inputIndex": 1, + "inputQty": "9753612968957615718531072", + "expectedQty": "9712750767091770631690169", + "swapFee": "5852167781374569431118", "reserves": [ - "13085252129996125470469914", - "48011129333926039791150927", - "67438508638014005960999734" + "1010859390967723642338508369", + "393300546570027588665484295", + "264299294064933450109668954" ], - "mAssetSupply": "128234466771430695790771448" + "mAssetSupply": "1665551262699605848132719540" }, { "type": "redeemMasset", - "inputQty": "10425903492829816658329", + "inputQty": "619504852624688860364", "expectedQtys": [ - "1063556870845151569273", - "3902299013641349267891", - "5481337960396727808926" + "375878210630161952769", + "146244974331278587515", + "98277116097063786004" ], - "redemptionFee": "3127771047848944997", + "redemptionFee": "185851455787406658", "reserves": [ - "13084188573125280318900641", - "48007227034912398441883036", - "67433027300053609233190808" + "1010859015089513012176555600", + "393300400325053257386896780", + "264299195787817353045882950" ], - "mAssetSupply": "128224043995708913823058116" + "mAssetSupply": "1665550643380604679231265834" }, { - "type": "redeemMasset", - "inputQty": "23108175569046611558", - "expectedQtys": [ - "2357288163664451932", - "8649131539742102542", - "12148944216607952129" - ], - "redemptionFee": "6932452670713983", + "type": "redeem", + "inputIndex": 1, + "inputQty": "45764396828699703537303552", + "expectedQty": "45521761364564372022646979", + "swapFee": "27458638097219822122382", "reserves": [ - "13084186215837116654448709", - "48007218385780858699780494", - "67433015151109392625238679" + "1010859015089513012176555600", + "347778638960488885364249801", + "264299195787817353045882950" ], - "mAssetSupply": "128224020894465797447160541" + "mAssetSupply": "1619813705190002195516084664" }, { - "type": "redeemMasset", - "inputQty": "65887613440313419785830", - "expectedQtys": [ - "6721261521960889994908", - "24660996441808753645192", - "34639902135935752708370" - ], - "redemptionFee": "19766284032094025935", + "type": "redeem", + "inputIndex": 2, + "inputQty": "533274625641681472", + "expectedQty": "526326552874195764", + "swapFee": "319964775385008", "reserves": [ - "13077464954315155764453801", - "47982557389339049946135302", - "67398375248973456872530309" + "1010859015089513012176555600", + "347778638960488885364249801", + "264299195261490800171687186" ], - "mAssetSupply": "128158153047309516121400646" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1312575257806254601404416", - "expectedQty": "1350644360290329649408137", - "reserves": [ - "14390040212121410365858217", - "47982557389339049946135302", - "67398375248973456872530309" - ] + "mAssetSupply": "1619813704657047534649788200" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "41329075358784550862848", - "outputIndex": 2, - "expectedQty": "42691235664679680619480", - "swapFee": "25449104584073578173", + "inputIndex": 2, + "inputQty": "3044789597779707547353088", + "outputIndex": 0, + "expectedQty": "3106495108182174104121391", + "swapFee": "1849582682197062773744", "reserves": [ - "14431369287480194916721065", - "47982557389339049946135302", - "67355684013308777191910829" + "1007752519981330838072434209", + "347778638960488885364249801", + "267343984859270507719040274" ], - "mAssetSupply": "129508822856704429844386956", + "mAssetSupply": "1619815554239729731712561944", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1155165827300709944524", - "expectedQtys": [ - "128683305793777832442", - "427856427363167138023", - "600604967565561739131" + "type": "redeemBassets", + "inputQtys": [ + "1458828618510110147215360", + "1004998590643863566680064", + "652640172669201960402944" ], - "redemptionFee": "346549748190212983", + "expectedQty": "3118172525894719049808897", + "swapFee": "1872026731575776896022", "reserves": [ - "14431240604174401138888623", - "47982129532911686778997279", - "67355083408341211630171698" + "1006293691362820727925218849", + "346773640369845021797569737", + "266691344686601305758637330" ], - "mAssetSupply": "129507668037426877324655415" + "mAssetSupply": "1616697381713835012662753047" }, { - "type": "redeemMasset", - "inputQty": "21511423866741282832384", - "expectedQtys": [ - "2396332258176157356245", - "7967514919156953798320", - "11184427143212167061971" + "type": "mintMulti", + "inputQtys": [ + "257105755626325818736640", + "127386559502519233413120", + "91903003678464827981824" ], - "redemptionFee": "6453427160022384849", + "expectedQty": "476127544352421227371739", "reserves": [ - "14428844271916224981532378", - "47974162017992529825198959", - "67343898981197999463109727" + "1006550797118447053743955489", + "346901026929347541030982857", + "266783247690279770586619154" ], - "mAssetSupply": "129486163066987296064207880" + "mAssetSupply": "1617173509258187433890124786" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4634800259874619463303168", - "expectedQty": "4617169397118441505304072", + "type": "mintMulti", + "inputQtys": [ + "6784185360037668978688", + "9004726839683804299264", + "3282267749939251511296" + ], + "expectedQty": "19107183586656851371778", "reserves": [ - "14428844271916224981532378", - "52608962277867149288502127", - "67343898981197999463109727" - ] + "1006557581303807091412934177", + "346910031656187224835282121", + "266786529958029709838130450" + ], + "mAssetSupply": "1617192616441774090741496564" }, { - "type": "redeemMasset", - "inputQty": "2094794653497610259660", - "expectedQtys": [ - "225321754813933482080", - "821544919052258397881", - "1051646632848481696546" + "type": "mintMulti", + "inputQtys": [ + "2732934983977562464583680", + "2495756909341361827741696", + "2870043200074338122334208" ], - "redemptionFee": "628438396049283077", + "expectedQty": "8125332483793818296152068", "reserves": [ - "14428618950161411048050298", - "52608140732948097030104246", - "67342847334565150981413181" + "1009290516287784653877517857", + "349405788565528586663023817", + "269656573158104047960464658" ], - "mAssetSupply": "134101238297890636008535369" + "mAssetSupply": "1625317948925567909037648632" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "134173500080130298478592", - "outputIndex": 1, - "expectedQty": "138385357284514764924422", - "swapFee": "82738031005106037284", + "inputIndex": 1, + "inputQty": "5765100122059967091965952", + "outputIndex": 0, + "expectedQty": "5840881538420364116158737", + "swapFee": "3478329571893097799171", "reserves": [ - "14562792450241541346528890", - "52469755375663582265179824", - "67342847334565150981413181" + "1003449634749364289761359120", + "355170888687588553754989769", + "269656573158104047960464658" ], - "mAssetSupply": "134101321035921641114572653", + "mAssetSupply": "1625321427255139802135447803", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "386207097387354565482905", - "expectedQtys": [ - "41927748977323903785345", - "151065720383587939336567", - "193886852958277387070135" + "type": "mintMulti", + "inputQtys": [ + "51188589182913622310912", + "43982565816938136600576", + "64126518048025504382976" ], - "redemptionFee": "115862129216206369644", + "expectedQty": "159884876604888005769317", "reserves": [ - "14520864701264217442743545", - "52318689655279994325843257", - "67148960481606873594343046" + "1003500823338547203383670032", + "355214871253405491891590345", + "269720699676152073464847634" ], - "mAssetSupply": "133715229800663502755459392" + "mAssetSupply": "1625481312131744690141217120" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5411466081534669225984", - "5177015243350463217664", - "3596555524316322594816" + "13443455322573538385199104", + "1617696979551334824935424", + "7606772165551205847662592" ], - "expectedQty": "14287796945402124748139", - "swapFee": "8577824862158569990", + "expectedQty": "22657984613890273676668716", "reserves": [ - "14515453235182682773517561", - "52313512640036643862625593", - "67145363926082557271748230" + "1016944278661120741768869136", + "356832568232956826716525769", + "277327471841703279312510226" ], - "mAssetSupply": "133700942003718100630711253" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "234529236491176800", - "expectedQty": "240968105606334545", - "reserves": [ - "14515453469711919264694361", - "52313512640036643862625593", - "67145363926082557271748230" - ] + "mAssetSupply": "1648139296745634963817885836" }, { "type": "redeemBassets", "inputQtys": [ - "38624486761134007779328", - "30625230796949129527296", - "25817582984502259482624" + "2609407457336317440", + "3149317028700373504", + "1246083464515428608" ], - "expectedQty": "95828011852148869880107", - "swapFee": "57531325906833421981", + "expectedQty": "7015681303952297423", + "swapFee": "4211935943937741", "reserves": [ - "14476828982950785256915033", - "52282887409239694733098297", - "67119546343098055012265606" + "1016944276051713284432551696", + "356832565083639798016152265", + "277327470595619814797081618" ], - "mAssetSupply": "133605114232834057367165691" + "mAssetSupply": "1648139289729953659865588413" }, { "type": "redeemMasset", - "inputQty": "546532249224468860030156", + "inputQty": "864675087529793945", "expectedQtys": [ - "59201927523029849070761", - "213807023260534478709256", - "274480448906484307882045" + "533366681124202468", + "187151455038052364", + "145452642843366331" ], - "redemptionFee": "163959674767340658009", + "redemptionFee": "259402526258938", "reserves": [ - "14417627055427755407844272", - "52069080385979160254389041", - "66845065894191570704383561" + "1016944275518346603308349228", + "356832564896488342978099901", + "277327470450167171953715287" ], - "mAssetSupply": "133058745943284355847793544" + "mAssetSupply": "1648139288865537974862053406" }, { - "type": "mintMulti", - "inputQtys": [ - "79239636970002863620096", - "21215128560749858783232", - "49908774439977423470592" + "type": "redeemMasset", + "inputQty": "2502862401389454524678144", + "expectedQtys": [ + "1543867091340996854170413", + "541722951124031554860716", + "421022828349783565314863" ], - "expectedQty": "152111450130126900642698", + "redemptionFee": "750858720416836357403", "reserves": [ - "14496866692397758271464368", - "52090295514539910113172273", - "66894974668631548127854153" + "1015400408427005606454178815", + "356290841945364311423239185", + "276906447621817388388400424" ], - "mAssetSupply": "133210857393414482748436242" + "mAssetSupply": "1645637177322868937173732665" }, { "type": "redeemMasset", - "inputQty": "45430512360568109871923", + "inputQty": "3346764197602719", "expectedQtys": [ - "4942558844806266140440", - "17759654985237230266658", - "22807159349469738804568" + "2064419963434136", + "724378206662541", + "562981060210202" ], - "redemptionFee": "13629153708170432961", + "redemptionFee": "1004029259280", "reserves": [ - "14491924133552952005323928", - "52072535859554672882905615", - "66872167509282078389049585" + "1015400408424941186490744679", + "356290841944639933216576644", + "276906447621254407328190222" ], - "mAssetSupply": "133165440510207622808997280" + "mAssetSupply": "1645637177319523177005389226" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1957280758692116426653696", - "expectedQty": "1948945552234878466061730", + "inputQty": "11015012322491100037120", + "expectedQty": "11075857665959037707713", "reserves": [ - "14491924133552952005323928", - "54029816618246789309559311", - "66872167509282078389049585" + "1015400408424941186490744679", + "356301856956962424316613764", + "276906447621254407328190222" ] }, { "type": "mintMulti", "inputQtys": [ - "57550111657693341024256", - "75468667924556564922368", - "93635681362397961912320" + "200539059503918609334272", + "182935304437974765142016", + "65677678864340579516416" ], - "expectedQty": "227308576201953480264252", + "expectedQty": "449315116628667979404392", "reserves": [ - "14549474245210645346348184", - "54105285286171345874481679", - "66965803190644476350961905" + "1015600947484445105100078951", + "356484792261400399081755780", + "276972125300118747907706638" ], - "mAssetSupply": "135341694638644454755323262" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "3380336792011755562729472", - "expectedQty": "3364578954696098354281303", - "reserves": [ - "14549474245210645346348184", - "57485622078183101437211151", - "66965803190644476350961905" - ] + "mAssetSupply": "1646097568293817804022501331" }, { "type": "redeemMasset", - "inputQty": "118361323955190374", + "inputQty": "966900078391565955891", "expectedQtys": [ - "12411683779005194", - "49039116537745261", - "57126351042064268" + "596374151359727973667", + "209332529655598544559", + "162641652299845293011" ], - "redemptionFee": "35508397186557", + "redemptionFee": "290070023517469786", "reserves": [ - "14549474232798961567342990", - "57485622029143984899465890", - "66965803133518125308897637" + "1015600351110293745372105284", + "356484582928870743483211221", + "276971962658466448062413627" ], - "mAssetSupply": "138706273475014737551600748" + "mAssetSupply": "1646096601683809435974015226" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "661898793096355531194368", - "expectedQty": "664738426256866727433654", - "swapFee": "397139275857813318716", - "reserves": [ - "14549474232798961567342990", - "56820883602887118172032236", - "66965803133518125308897637" + "type": "mintMulti", + "inputQtys": [ + "4841456263159655432192", + "16288416203265688993792", + "17623684616060653273088" ], - "mAssetSupply": "138044771821194239833725096" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "481124939104672595050496", - "expectedQty": "484009068811083727718445", - "swapFee": "288674963462803557030", + "expectedQty": "39007287541998712053888", "reserves": [ - "14549474232798961567342990", - "56820883602887118172032236", - "66481794064707041581179192" + "1015605192566556905027537476", + "356500871345074009172205013", + "276989586343082508715686715" ], - "mAssetSupply": "137563935557053030042231630" + "mAssetSupply": "1646135608971351434686069114" }, { - "type": "redeemBassets", - "inputQtys": [ - "19688961048187242545152", - "55960511265887901188096", - "10889381026865816272896" - ], - "expectedQty": "86766182599226751536634", - "swapFee": "52090964138018862239", + "type": "mint", + "inputIndex": 0, + "inputQty": "866157572610429550592", + "expectedQty": "859241160867067390412", "reserves": [ - "14529785271750774324797838", - "56764923091621230270844140", - "66470904683680175764906296" - ], - "mAssetSupply": "137477169374453803290694996" + "1015606058724129515457088068", + "356500871345074009172205013", + "276989586343082508715686715" + ] }, { "type": "mintMulti", "inputQtys": [ - "970996730223439", - "439874936008061", - "850328963752989" + "3337516214803641663488", + "1105671130764895584256", + "2365616569098317070336" ], - "expectedQty": "2281604913062938", + "expectedQty": "6815435455624203501837", "reserves": [ - "14529785272721771055021277", - "56764923092061105206852201", - "66470904684530504728659285" + "1015609396240344319098751556", + "356501977016204774067789269", + "276991951959651607032757051" ], - "mAssetSupply": "137477169376735408203757934" + "mAssetSupply": "1646143283647967925956961363" }, { "type": "redeemMasset", - "inputQty": "1018987081453983393382", + "inputQty": "30569337200449919385", "expectedQtys": [ - "107663125864895827292", - "420617988831907942521", - "492537586969000461164" + "18854490039898945024", + "6618354457667533863", + "5142274203732851147" ], - "redemptionFee": "305696124436195018", + "redemptionFee": "9170801160134975", "reserves": [ - "14529677609595906159193985", - "56764502474072273298909680", - "66470412146943535728198121" + "1015609377385854279199806532", + "356501970397850316400255406", + "276991946817377403299905904" ], - "mAssetSupply": "137476150695350078656559570" + "mAssetSupply": "1646143253087801526667176953" }, { - "type": "redeemBassets", - "inputQtys": [ - "3054812199070727667712", - "2318481874869852045312", - "1443712482127540912128" + "type": "redeemMasset", + "inputQty": "9112463729765805260", + "expectedQtys": [ + "5620365777157937708", + "1972876106235682588", + "1532868928847311601" ], - "expectedQty": "6884737487025220891541", - "swapFee": "4133322485706556468", + "redemptionFee": "2733739118929741", "reserves": [ - "14526622797396835431526273", - "56762183992197403446864368", - "66468968434461408187285993" + "1015609371765488502041868824", + "356501968424974210164572818", + "276991945284508474452594303" ], - "mAssetSupply": "137469265957863053435668029" + "mAssetSupply": "1646143243978071536020301434" }, { "type": "redeemMasset", - "inputQty": "2414110926521607861043", + "inputQty": "18470160129939197237657", "expectedQtys": [ - "255026881192145474960", - "996507099762988333030", - "1166917731142405394250" + "11391985633242703194097", + "3998845831306315803702", + "3106990097698403643957" ], - "redemptionFee": "724233277956482358", + "redemptionFee": "5541048038981759171", "reserves": [ - "14526367770515643286051313", - "56761187485097640458531338", - "66467801516730265781891743" + "1015597979779855259338674727", + "356497969579142903848769116", + "276988838294410776048950346" ], - "mAssetSupply": "137466852571169809784289344" + "mAssetSupply": "1646124779358989635804822948" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "370872341869161545728", - "expectedQty": "360226294948190139761", - "swapFee": "222523405121496927", + "type": "swap", + "inputIndex": 1, + "inputQty": "1811465261149629666295808", + "outputIndex": 0, + "expectedQty": "1834872394779469943408182", + "swapFee": "1092828930354513801089", "reserves": [ - "14526007544220695095911552", - "56761187485097640458531338", - "66467801516730265781891743" + "1013763107385075789395266545", + "358309434840292533515064924", + "276988838294410776048950346" ], - "mAssetSupply": "137466481921351345744240543" + "mAssetSupply": "1646125872187919990318624037", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "15477970447589596725248", - "expectedQty": "15925377123743282596960", + "type": "redeemMasset", + "inputQty": "899290842382000081548083", + "expectedQtys": [ + "553660199290294709392556", + "195688392738003207168063", + "151275672091525506979925" + ], + "redemptionFee": "269787252714600024464", "reserves": [ - "14541485514668284692636800", - "56761187485097640458531338", - "66467801516730265781891743" - ] + "1013209447185785494685873989", + "358113746447554530307896861", + "276837562622319250541970421" + ], + "mAssetSupply": "1645226851132790704837100418" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "129658854961074946048", - "expectedQty": "125944343368413171463", - "swapFee": "77795312976644967", + "type": "mintMulti", + "inputQtys": [ + "435239436686741542535168", + "275892075121897304489984", + "106459114507161852444672" + ], + "expectedQty": "816846744152208344120404", "reserves": [ - "14541359570324916279465337", - "56761187485097640458531338", - "66467801516730265781891743" + "1013644686622472236228409157", + "358389638522676427612386845", + "276944021736826412394415093" ], - "mAssetSupply": "137482277717415440928536422" + "mAssetSupply": "1646043697876942913181220822" }, { "type": "redeemMasset", - "inputQty": "98893558898577083308441", + "inputQty": "169004675855834299760640", "expectedQtys": [ - "10456732380070730072741", - "40817128841098029303637", - "47797182167924183430731" + "104042984222715452604437", + "36785994144205731781187", + "28426215679332694436198" ], - "redemptionFee": "29668067669573124992", + "redemptionFee": "50701402756750289928", "reserves": [ - "14530902837944845549392596", - "56720370356256542429227701", - "66420004334562341598461012" + "1013540643638249520775804720", + "358352852528532221880605658", + "276915595521147079699978895" ], - "mAssetSupply": "137383413826584533418352973" + "mAssetSupply": "1645874743902489835631750110" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "240303321193988602462208", - "outputIndex": 0, - "expectedQty": "231759247579007349697236", - "swapFee": "143238664717161215283", + "inputQty": "620319943128889010683904", + "expectedQty": "627413354485484853984254", + "reserves": [ + "1013540643638249520775804720", + "358352852528532221880605658", + "277535915464275968710662799" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "446761047647677184999424", + "outputIndex": 2, + "expectedQty": "443827689554258336305853", + "swapFee": "269502180855303063846", "reserves": [ - "14299143590365838199695360", - "56720370356256542429227701", - "66660307655756330200923220" + "1013540643638249520775804720", + "358799613576179899065605082", + "277092087774721710374356946" ], - "mAssetSupply": "137383557065249250579568256", + "mAssetSupply": "1646502426759156175788798210", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "386315797336980608", - "expectedQty": "388679124022136475", - "swapFee": "231789478402188", + "type": "redeemBassets", + "inputQtys": [ + "745208499202848896", + "1124440625014822272", + "53305145774699816" + ], + "expectedQty": "1923706371700054143", + "swapFee": "1154916773083882", "reserves": [ - "14299143590365838199695360", - "56720370356256542429227701", - "66660307267077206178786745" + "1013540642893041021572955824", + "358799612451739274050782810", + "277092087721416564599657130" ], - "mAssetSupply": "137383556679165242720989836" + "mAssetSupply": "1646502424835449804088744067" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "9076601040168052326400", - "expectedQty": "9348186383906761826492", + "inputIndex": 1, + "inputQty": "50681369781792279625728", + "expectedQty": "50953900332252536246003", "reserves": [ - "14308220191406006252021760", - "56720370356256542429227701", - "66660307267077206178786745" + "1013540642893041021572955824", + "358850293821521066330408538", + "277092087721416564599657130" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "8057865708040031232", - "expectedQty": "8107122386020431899", - "swapFee": "4834719424824018", - "reserves": [ - "14308220191406006252021760", - "56720370356256542429227701", - "66660299159954820158354846" + "type": "mintMulti", + "inputQtys": [ + "4169345951258151223296", + "1225259511228406956032", + "5067464609456012132352" ], - "mAssetSupply": "137392896812518160867609114" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2763790672259954245632", - "expectedQty": "2846419172836462663187", + "expectedQty": "10493646962409881747872", "reserves": [ - "14310983982078266206267392", - "56720370356256542429227701", - "66660299159954820158354846" - ] + "1013544812238992279724179120", + "358851519081032294737364570", + "277097155186026020611789482" + ], + "mAssetSupply": "1646563872382744466506737942" }, { "type": "redeemMasset", - "inputQty": "73484084418380223112806", + "inputQty": "1319700110876293778636", "expectedQtys": [ - "7651722254668229287416", - "30326951710064371662158", - "35641580985893569139893" + "812099640322204798410", + "287528667756691163404", + "222023237002979260311" ], - "redemptionFee": "22045225325514066933", + "redemptionFee": "395910033262888133", "reserves": [ - "14303332259823597976979976", - "56690043404546478057565543", - "66624657578968926589214953" + "1013544000139351957519380710", + "358851231552364538046201166", + "277096933162789017632529171" ], - "mAssetSupply": "137322281192497942621226428" + "mAssetSupply": "1646562553078543623475847439" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "205088389589692800040960", - "expectedQty": "198935375427414121552836", - "swapFee": "123053033753815680024", + "inputQty": "8056670901395071696896", + "expectedQty": "8116154466934121784672", + "swapFee": "4834002540837043018", "reserves": [ - "14104396884396183855427140", - "56690043404546478057565543", - "66624657578968926589214953" + "1013535883984885023397596038", + "358851231552364538046201166", + "277096933162789017632529171" ], - "mAssetSupply": "137117315855942003636865492" + "mAssetSupply": "1646554501241644769241193561" }, { - "type": "redeemMasset", - "inputQty": "357326091318019384934", - "expectedQtys": [ - "36744863454663891601", - "147689257556524496571", - "173570976874687962836" + "type": "redeemBassets", + "inputQtys": [ + "16439566831712924073984", + "513576098573629718528", + "32516424714048457670656" ], - "redemptionFee": "107197827395405815", + "expectedQty": "49714444201925684095196", + "swapFee": "29846574465834911403", "reserves": [ - "14104360139532729191535539", - "56689895715288921533068972", - "66624484007992051901252117" + "1013519444418053310473522054", + "358850717976265964416482638", + "277064416738074969174858515" ], - "mAssetSupply": "137116958637048513012886373" + "mAssetSupply": "1646504786797442843557098365" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1893914369981303", - "2153099083207894", - "1245877409365948" + "18746404487591152056270848", + "5653410729121240173248512", + "5633606849145491687473152" ], - "expectedQty": "5331879072015665", - "swapFee": "3201048072052", + "expectedQty": "29979732633937279398841925", "reserves": [ - "14104360137638814821554236", - "56689895713135822449861078", - "66624484006746174491886169" + "1032265848905644462529792902", + "364504128705387204589731150", + "282698023587220460862331667" ], - "mAssetSupply": "137116958631716633940870708" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "91795896131651403776", - "expectedQty": "91336083066411812418", - "reserves": [ - "14104360137638814821554236", - "56689987509031954101264854", - "66624484006746174491886169" - ] + "mAssetSupply": "1676484519431380122955940290" }, { - "type": "redeemMasset", - "inputQty": "4372311087908894697062", - "expectedQtys": [ - "449616948709667522244", - "1807156011152955613468", - "2123846591844332611149" + "type": "redeemBassets", + "inputQtys": [ + "157961454796359807795200", + "238542092543597236715520", + "322584686777419123654656" ], - "redemptionFee": "1311693326372668409", + "expectedQty": "722811223497229579792420", + "swapFee": "433947102359753600035", "reserves": [ - "14103910520690105154031992", - "56688180353020801145651386", - "66622360160154330159275020" + "1032107887450848102721997702", + "364265586612843607353015630", + "282375438900443041738677011" ], - "mAssetSupply": "137112678968405117830654473" + "mAssetSupply": "1675761708207882893376147870" }, { "type": "redeemMasset", - "inputQty": "34064532613381", + "inputQty": "2089505658802603137433", "expectedQtys": [ - "3502950934849", - "14079493348407", - "16546819299698" + "1286548249779257373590", + "454066148132102750676", + "351988034502173594978" ], - "redemptionFee": "10219359784", + "redemptionFee": "626851697640780941", "reserves": [ - "14103910520686602203097143", - "56688180353006721652302979", - "66622360160137783339975322" + "1032106600902598323464624112", + "364265132546695475250264954", + "282375086912408539565082033" ], - "mAssetSupply": "137112678968371063517400876" + "mAssetSupply": "1675759619329075788413791378" }, { - "type": "redeemMasset", - "inputQty": "304583247356048630507110", - "expectedQtys": [ - "31321145168059006023698", - "125889817830693223370993", - "147951067255693482002271" + "type": "mintMulti", + "inputQtys": [ + "18458513670692120035328", + "13717665126132846952448", + "2285155003806051205120" ], - "redemptionFee": "91374974206814589152", + "expectedQty": "34415448731855915165324", "reserves": [ - "14072589375518543197073445", - "56562290535176028428931986", - "66474409092882089857973051" + "1032125059416269015584659440", + "364278850211821608097217402", + "282377372067412345616287153" ], - "mAssetSupply": "136808187095989221701482918" + "mAssetSupply": "1675794034777807644328956702" }, { "type": "redeemBassets", "inputQtys": [ - "4065250079252722745344", - "477262418868818673664", - "4073398061510377865216" + "2605782871699820118016", + "51890627346554478592", + "797668381278942658560" ], - "expectedQty": "8710906352686059768867", - "swapFee": "5229681620583986253", + "expectedQty": "3444054938960302053926", + "swapFee": "2067673567516691247", "reserves": [ - "14068524125439290474328101", - "56561813272757159610258322", - "66470335694820579480107835" + "1032122453633397315764541424", + "364278798321194261542738810", + "282376574399031066673628593" ], - "mAssetSupply": "136799476189636535641714051" + "mAssetSupply": "1675790590722868684026902776" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "103237778823154906431488", - "expectedQty": "103694619297239801084530", - "swapFee": "61942667293892943858", + "type": "mintMulti", + "inputQtys": [ + "10158482640661217542144", + "43222290130010858586112", + "44138322678656748486656" + ], + "expectedQty": "98177342075558223970926", "reserves": [ - "14068524125439290474328101", - "56458118653459919809173792", - "66470335694820579480107835" + "1032132612116037976982083568", + "364322020611324272401324922", + "282420712721709723422115249" ], - "mAssetSupply": "136696300353480674628226421" + "mAssetSupply": "1675888768064944242250873702" }, { - "type": "redeemBassets", - "inputQtys": [ - "1294663605385050900660224", - "919817487479428205248512", - "2710642269501519587966976" + "type": "redeemMasset", + "inputQty": "38360174156389049958", + "expectedQtys": [ + "23617861561860018095", + "8336629368870289293", + "6462515782335614672" ], - "expectedQty": "4943809279734035194591345", - "swapFee": "2968066407685032136036", + "redemptionFee": "11508052246916714", "reserves": [ - "12773860520054239573667877", - "55538301165980491603925280", - "63759693425319059892140859" + "1032132588498176415122065473", + "364322012274694903531035629", + "282420706259193941086500577" ], - "mAssetSupply": "131752491073746639433635076" + "mAssetSupply": "1675888729716278138108740458" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "505509196572790404153344", - "145714018781529437634560", - "295187875155929846513664" + "41474313361611978440704", + "58729897156510738284544", + "81673571567216546021376" ], - "expectedQty": "961767339831239724792468", - "swapFee": "577406848007548363893", + "expectedQty": "182800039907133832497226", "reserves": [ - "12268351323481449169514533", - "55392587147198962166290720", - "63464505550163130045627195" + "1032174062811538027100506177", + "364380742171851414269320173", + "282502379830761157632521953" ], - "mAssetSupply": "130790723733915399708842608" + "mAssetSupply": "1676071529756185271941237684" }, { - "type": "redeemMasset", - "inputQty": "2763948172478054714572", - "expectedQtys": [ - "259184394167389842105", - "1170238262873367339672", - "1340767719185609885432" + "type": "redeemBassets", + "inputQtys": [ + "3989171207580142717108224", + "16180950842989553041539072", + "10052766397674840704155648" ], - "redemptionFee": "829184451743416414", + "expectedQty": "30401962969403260834770703", + "swapFee": "18252129059077402942627", "reserves": [ - "12268092139087281779672428", - "55391416908936088798951048", - "63463164782443944435741763" + "1028184891603957884383397953", + "348199791328861861227781101", + "272449613433086316928366305" ], - "mAssetSupply": "130787960614927373397544450" + "mAssetSupply": "1645669566786782011106466981" }, { - "type": "mintMulti", - "inputQtys": [ - "13430030246982956613632", - "9108310147846599868416", - "248497903126933078016" - ], - "expectedQty": "23236478425725021113551", + "type": "mint", + "inputIndex": 1, + "inputQty": "300772044657350127124480", + "expectedQty": "302602555352860651036564", "reserves": [ - "12281522169334264736286060", - "55400525219083935398819464", - "63463413280347071368819779" - ], - "mAssetSupply": "130811197093353098418658001" + "1028184891603957884383397953", + "348500563373519211354905581", + "272449613433086316928366305" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "505095269718662242631680", + "inputQty": "77518558594621761388544", "outputIndex": 0, - "expectedQty": "482802187388046512388481", - "swapFee": "301270269603912966523", + "expectedQty": "78599951774091364919418", + "swapFee": "46793740089877226437", "reserves": [ - "11798719981946218223897579", - "55905620488802597641451144", - "63463413280347071368819779" + "1028106291652183793018478535", + "348578081932113833116294125", + "272449613433086316928366305" ], - "mAssetSupply": "130811498363622702331624524", + "mAssetSupply": "1645972216135874961634729982", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "117662977827581036855296", - "expectedQty": "116928139814107434899785", + "inputIndex": 0, + "inputQty": "3245055138128329401434112", + "expectedQty": "3217862020834792469847058", "reserves": [ - "11798719981946218223897579", - "56023283466630178678306440", - "63463413280347071368819779" + "1031351346790312122419912647", + "348578081932113833116294125", + "272449613433086316928366305" ] }, { - "type": "redeemMasset", - "inputQty": "7908136257069126", - "expectedQtys": [ - "712434236030503", - "3382816544298166", - "3832068938448877" + "type": "redeemBassets", + "inputQtys": [ + "3908646820135617003782144", + "11099481070675355353743360", + "6443943699771762535301120" ], - "redemptionFee": "2372440877120", + "expectedQty": "21569947492377294256330797", + "swapFee": "12949738338429434214327", "reserves": [ - "11798719981233783987867076", - "56023283463247362134008274", - "63463413276515002430370902" + "1027442699970176505416130503", + "337478600861438477762550765", + "266005669733314554393065185" ], - "mAssetSupply": "130928426495531045950332303" + "mAssetSupply": "1627620130664332459848246243" }, { - "type": "redeemBassets", - "inputQtys": [ - "1150749706040992145080320", - "7784325927145845852995584", - "8643789541028708323688448" - ], - "expectedQty": "17511396842704024500354100", - "swapFee": "10513145993218345707637", + "type": "redeem", + "inputIndex": 2, + "inputQty": "28257081244217848", + "expectedQty": "27884382748915073", + "swapFee": "16954248746530", "reserves": [ - "10647970275192791842786756", - "48238957536101516281012690", - "54819623735486294106682454" + "1027442699970176505416130503", + "337478600861438477762550765", + "266005669705430171644150112" ], - "mAssetSupply": "113417029652827021449978203" + "mAssetSupply": "1627620130636092332852774925" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "35296170274981556", - "expectedQty": "36621102552552204", + "type": "swap", + "inputIndex": 2, + "inputQty": "5699048164362405543936", + "outputIndex": 1, + "expectedQty": "5730318549198702551726", + "swapFee": "3463052329750196428", "reserves": [ - "10647970310488962117768312", - "48238957536101516281012690", - "54819623735486294106682454" - ] + "1027442699970176505416130503", + "337472870542889279059999039", + "266011368753594534049694048" + ], + "mAssetSupply": "1627620134099144662602971353", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "1375553648397900840960", - "expectedQty": "1367434994471552554484", + "inputQty": "44497384475932598272", + "expectedQty": "44792256218729731157", "reserves": [ - "10647970310488962117768312", - "48240333089749914181853650", - "54819623735486294106682454" + "1027442699970176505416130503", + "337472915040273754992597311", + "266011368753594534049694048" ] }, { "type": "mintMulti", "inputQtys": [ - "6195077079591561461760", - "46790936850579842924544", - "80680860833138285215744" + "152501418482513536", + "89878766961572032", + "140555807100558032" ], - "expectedQty": "133027699788669332902608", + "expectedQty": "383998230859720958", "reserves": [ - "10654165387568553679230072", - "48287124026600494024778194", - "54900304596319432391898198" + "1027442700122677923898644039", + "337472915130152521954169343", + "266011368894150341150252080" ], - "mAssetSupply": "113551424824231264887987499" + "mAssetSupply": "1627620179275399112192423468" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "257112444262510723072", - "expectedQty": "266776628945527518333", + "type": "redeemMasset", + "inputQty": "9181854798632022032200499", + "expectedQtys": [ + "5794349110204267780341333", + "1903206753300167678259437", + "1500193381559865728593405" + ], + "redemptionFee": "2754556439589606609660", "reserves": [ - "10654422500012816189953144", - "48287124026600494024778194", - "54900304596319432391898198" - ] + "1021648351012473656118302706", + "335569708376852354275909906", + "264511175512590475421658675" + ], + "mAssetSupply": "1618441079033206679766832629" }, { - "type": "redeemBassets", - "inputQtys": [ - "1213812890526070528", - "601628560596656896", - "548033686828377920" - ], - "expectedQty": "2401497930777404648", - "swapFee": "1441763816756496", + "type": "swap", + "inputIndex": 1, + "inputQty": "3201620829650338384445440", + "outputIndex": 0, + "expectedQty": "3248622995800634792051872", + "swapFee": "1933525388768050590630", "reserves": [ - "10654421286199925663882616", - "48287123424971933428121298", - "54900304048285745563520278" + "1018399728016673021326250834", + "338771329206502692660355346", + "264511175512590475421658675" ], - "mAssetSupply": "113551689199362279638101184" + "mAssetSupply": "1618443012558595447817423259", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "23866888195216118", - "expectedQtys": [ - "2238730194595864", - "10146195491788958", - "11535771400797286" - ], - "redemptionFee": "7160066458564", + "type": "mint", + "inputIndex": 0, + "inputQty": "46430216740175713941848064", + "expectedQty": "46017391632658438130370767", "reserves": [ - "10654421283961195469286752", - "48287123414825737936332340", - "54900304036749974162722992" - ], - "mAssetSupply": "113551689175502551509343630" + "1064829944756848735268098898", + "338771329206502692660355346", + "264511175512590475421658675" + ] }, { "type": "redeemMasset", - "inputQty": "18513201703846535181107", + "inputQty": "7434739314692", "expectedQtys": [ - "1736550794307249617525", - "7870257828743580255002", - "8948131863928171125513" + "4754909166897", + "1512755071039", + "1181152558099" ], - "redemptionFee": "5553960511153960554", + "redemptionFee": "2230421794", "reserves": [ - "10652684733166888219669227", - "48279253156996994356077338", - "54891355904886045991597479" + "1064829944756843980358932001", + "338771329206501179905284307", + "264511175512589294269100576" ], - "mAssetSupply": "113533181527759216128123077" + "mAssetSupply": "1664460404191246453438901128" }, { - "type": "redeemMasset", - "inputQty": "66722414182904378163", - "expectedQtys": [ - "6258607408968376429", - "28364764289613331010", - "32249470941820445343" - ], - "redemptionFee": "20016724254871313", + "type": "swap", + "inputIndex": 1, + "inputQty": "479322819477476946739200", + "outputIndex": 2, + "expectedQty": "475828012470159705711656", + "swapFee": "289658753810222248282", "reserves": [ - "10652678474559479251292798", - "48279224792232704742746328", - "54891323655415104171152136" + "1064829944756843980358932001", + "339250652025978656852023507", + "264035347500119134563388920" ], - "mAssetSupply": "113533114825361757478616227" + "mAssetSupply": "1664460693850000263661149410", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "21186208971873948008448", - "expectedQty": "20405083187435591837855", - "swapFee": "12711725383124368805", + "inputIndex": 1, + "inputQty": "135510231088370785714176", + "expectedQty": "134465214110189980675968", + "swapFee": "81306138653022471428", "reserves": [ - "10632273391372043659454943", - "48279224792232704742746328", - "54891323655415104171152136" + "1064829944756843980358932001", + "339116186811868466871347539", + "264035347500119134563388920" ], - "mAssetSupply": "113511941328115266654976584" + "mAssetSupply": "1664325264925050545897906662" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1719575488683322445398016", - "expectedQty": "1775478386134911475831029", + "inputQty": "1343936351271775411109888", + "expectedQty": "1355573476459469642742902", + "swapFee": "806361810763065246665", "reserves": [ - "12351848880055366104852959", - "48279224792232704742746328", - "54891323655415104171152136" - ] + "1063474371280384510716189099", + "339116186811868466871347539", + "264035347500119134563388920" + ], + "mAssetSupply": "1662982134935589533552043439" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "843983074257070649769984", - "expectedQty": "818921364418951020898553", - "swapFee": "506389844554242389861", + "type": "redeemBassets", + "inputQtys": [ + "1075455728566334369300480", + "631153974351716711137280", + "1555940560004745481158656" + ], + "expectedQty": "3279017607882879401915205", + "swapFee": "1968591719761584591904", "reserves": [ - "11532927515636415083954406", - "48279224792232704742746328", - "54891323655415104171152136" + "1062398915551818176346888619", + "338485032837516750160210259", + "262479406940114389082230264" ], - "mAssetSupply": "114443943029837661723427490" + "mAssetSupply": "1659703117327706654150128234" }, { "type": "redeemMasset", - "inputQty": "388517605391513854725324", + "inputQty": "732623378414049008025", "expectedQtys": [ - "39140569953506750225298", - "163850537751098024250414", - "186290747987658405106399" + "468821666433333875164", + "149368673889507870824", + "115828462515119716331" ], - "redemptionFee": "116555281617454156417", + "redemptionFee": "219787013524214702", "reserves": [ - "11493786945682908333729108", - "48115374254481606718495914", - "54705032907427445766045737" + "1062398446730151743013013455", + "338484883468842860652339435", + "262479291111651873962513933" ], - "mAssetSupply": "114055541979727765322858583" + "mAssetSupply": "1659702384924115253625334911" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10110367869801854926848", - "9567701737751648927744", - "7324253154085272813568" + "579020894815424624984064", + "576298936674994976980992", + "251953404624390108217344" ], - "expectedQty": "27225965991357942364113", + "expectedQty": "1409624372850990982067867", + "swapFee": "846282393146482478727", "reserves": [ - "11503897313552710188655956", - "48124941956219358367423658", - "54712357160581531038859305" + "1061819425835336318388029391", + "337908584532167865675358443", + "262227337707027483854296589" ], - "mAssetSupply": "114082767945719123265222696" + "mAssetSupply": "1658292760551264262643267044" }, { - "type": "redeemMasset", - "inputQty": "50236269626843557632409", - "expectedQtys": [ - "5064213673461045624219", - "21185428072457259249674", - "24085321668638327864967" + "type": "mintMulti", + "inputQtys": [ + "367265765996007629258752", + "248665538731792484270080", + "6795324150027804213248" ], - "redemptionFee": "15070880888053067289", + "expectedQty": "621219986976688282463044", "reserves": [ - "11498833099879249143031737", - "48103756528146901108173984", - "54688271838912892710994338" + "1062186691601332326017288143", + "338157250070899658159628523", + "262234133031177511658509837" ], - "mAssetSupply": "114032546746973167760657576" + "mAssetSupply": "1658913980538240950925730088" }, { "type": "redeemMasset", - "inputQty": "149826687975819071560089", + "inputQty": "71375689956531198387814", "expectedQtys": [ - "15103716249884268811912", - "63184279904217270855559", - "71833040176933327474698" + "45687458525551004699567", + "14545037571914188482764", + "11279383531706376276122" ], - "redemptionFee": "44948006392745721468", + "redemptionFee": "21412706986959359516", "reserves": [ - "11483729383629364874219825", - "48040572248242683837318425", - "54616438798735959383519640" + "1062141004142806775012588576", + "338142705033327743971145759", + "262222853647645805282233715" ], - "mAssetSupply": "113882765007003741434818955" + "mAssetSupply": "1658842626260991406686701790" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "566345339042978154414080", - "outputIndex": 0, - "expectedQty": "544442517060657276207641", - "swapFee": "337972644995589942522", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3536486466485821011656704", + "expectedQty": "3484369982851659300009071", + "swapFee": "2121891879891492606994", "reserves": [ - "10939286866568707598012184", - "48606917587285661991732505", - "54616438798735959383519640" + "1062141004142806775012588576", + "338142705033327743971145759", + "258738483664794145982224644" ], - "mAssetSupply": "113883102979648737024761477", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1655308261686385477167652080" }, { "type": "redeemMasset", - "inputQty": "1288713828118738816204", + "inputQty": "100867246460395031049011", "expectedQtys": [ - "123753046789978331769", - "549876259747704142968", - "617860267182299276624" + "64702811160936211619874", + "20598756195159487235726", + "15761661759910063935262" ], - "redemptionFee": "386614148435621644", + "redemptionFee": "30260173938118509314", "reserves": [ - "10939163113521917619680415", - "48606367711025914287589537", - "54615820938468777084243016" + "1062076301331645838800968702", + "338122106277132584483910033", + "258722722003034235918289382" ], - "mAssetSupply": "113881814652434766721566917" + "mAssetSupply": "1655207424700099020255112383" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "544030125405093889048576", - "expectedQty": "562524008972789796641351", + "inputQty": "78129007936206831616", + "outputIndex": 2, + "expectedQty": "76243834462224358887", + "swapFee": "46440465466837831", "reserves": [ - "11483193238927011508728991", - "48606367711025914287589537", - "54615820938468777084243016" - ] + "1062076379460653775007800318", + "338122106277132584483910033", + "258722645759199773693930495" + ], + "mAssetSupply": "1655207424746539485721950214", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "11367113393581416932966", - "expectedQtys": [ - "1140218921841648524642", - "4826349172478377850691", - "5423055344471088730575" - ], - "redemptionFee": "3410134018074425079", + "type": "swap", + "inputIndex": 2, + "inputQty": "524182731594444488835072", + "outputIndex": 1, + "expectedQty": "527697987390781068876062", + "swapFee": "319080138072280345179", "reserves": [ - "11482053020005169860204349", - "48601541361853435909738846", - "54610397883124305995512441" + "1062076379460653775007800318", + "337594408289741803415033971", + "259246828490794218182765567" ], - "mAssetSupply": "114432974958147993175700381" + "mAssetSupply": "1655207743826677558002295393", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "298062744215778127511552", - "194056861425692147974144", - "216339736292919200448512" + "type": "redeemMasset", + "inputQty": "23565968621623353068748", + "expectedQtys": [ + "15116742939288431704164", + "4805047910441991803649", + "3689911328327697367910" ], - "expectedQty": "715424690019600492075838", + "redemptionFee": "7069790586487005920", "reserves": [ - "11780115764220947987715901", - "48795598223279128057712990", - "54826737619417225195960953" + "1062061262717714486576096154", + "337589603241831361423230322", + "259243138579465890485397657" ], - "mAssetSupply": "115148399648167593667776219" + "mAssetSupply": "1655184184927846521136232565" }, { "type": "redeemMasset", - "inputQty": "507713912692814540", + "inputQty": "55198610502438362074316", "expectedQtys": [ - "51925466669931986", - "215085679962317057", - "241670285238188324" + "35407974056522686574024", + "11254872325115240838193", + "8642885911933505232928" ], - "redemptionFee": "152314173807844", + "redemptionFee": "16559583150731508622", "reserves": [ - "11780115712295481317783915", - "48795598008193448095395933", - "54826737377746939957772629" + "1062025854743657963889522130", + "337578348369506246182392129", + "259234495693553956980164729" ], - "mAssetSupply": "115148399140605995148769523" + "mAssetSupply": "1655129002876927233505666871" }, { - "type": "mintMulti", - "inputQtys": [ - "9609386765960800632832", - "5713664230447485288448", - "26735947694939341586432" - ], - "expectedQty": "42150860497435176900473", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1136484770216579432448", + "expectedQty": "1119573480535950871583", + "swapFee": "681890862129947659", "reserves": [ - "11789725099061442118416747", - "48801311672423895580684381", - "54853473325441879299359061" + "1062025854743657963889522130", + "337578348369506246182392129", + "259233376120073421029293146" ], - "mAssetSupply": "115190550001103430325669996" + "mAssetSupply": "1655127867074047879056182082" }, { - "type": "mintMulti", - "inputQtys": [ - "7983636623071741952", - "17769409734852589568", - "20833731665637310464" - ], - "expectedQty": "46603050708039323664", + "type": "mint", + "inputIndex": 0, + "inputQty": "30989224531005041530634240", + "expectedQty": "30694388396827689316412018", "reserves": [ - "11789733082698065190158699", - "48801329441833630433273949", - "54853494159173544936669525" - ], - "mAssetSupply": "115190596604154138364993660" + "1093015079274663005420156370", + "337578348369506246182392129", + "259233376120073421029293146" + ] }, { - "type": "redeemMasset", - "inputQty": "516341038381963330505932", - "expectedQtys": [ - "52831541329480231642818", - "218685990196292453523741", - "245806637301204896812401" - ], - "redemptionFee": "154902311514588999151", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1234573499396865564606464", + "expectedQty": "1215020620804586377995449", + "swapFee": "740744099638119338763", "reserves": [ - "11736901541368584958515881", - "48582643451637337979750208", - "54607687521872340039857124" + "1093015079274663005420156370", + "337578348369506246182392129", + "258018355499268834651297697" ], - "mAssetSupply": "114674410468083689623486879" + "mAssetSupply": "1684588422715578340927326399" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "5395319551364634247168", - "expectedQty": "5359835945451219351323", + "inputIndex": 0, + "inputQty": "772841899584135626752", + "expectedQty": "765306607463173978793", "reserves": [ - "11736901541368584958515881", - "48582643451637337979750208", - "54613082841423704674104292" + "1093015852116562589555783122", + "337578348369506246182392129", + "258018355499268834651297697" ] }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "573166770929943835574272", - "expectedQty": "590110830078418365651189", + "inputQty": "15909423423441721156960256", + "outputIndex": 1, + "expectedQty": "15608802127308406053996693", + "swapFee": "9451595064884305109430", "reserves": [ - "12310068312298528794090153", - "48582643451637337979750208", - "54613082841423704674104292" - ] + "1108925275540004310712743378", + "321969546242197840128395436", + "258018355499268834651297697" + ], + "mAssetSupply": "1684598639617250688406414622", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "7986203942138074365952", - "2250223541896546353152", - "6988663686552736497664" + "type": "redeemMasset", + "inputQty": "71289034355379206619136", + "expectedQtys": [ + "46913546018211312229634", + "13621055861262188804807", + "10915574079924995141525" ], - "expectedQty": "17395528428625853060000", - "swapFee": "10443583207099771699", + "redemptionFee": "21386710306613761985", "reserves": [ - "12302082108356390719724201", - "48580393228095441433397056", - "54606094177737151937606628" + "1108878361993986099400513744", + "321955925186336577939590629", + "258007439925188909656156172" ], - "mAssetSupply": "115252485605678933355429391" + "mAssetSupply": "1684527371969605615813557471" }, { "type": "redeemMasset", - "inputQty": "12284974235123143252377", + "inputQty": "461681840227714695430144", "expectedQtys": [ - "1310908148462190200989", - "5176719906214007807999", - "5818817756440194755399" + "303821372433291460967156", + "88212642978485128038688", + "70691409610620595360786" ], - "redemptionFee": "3685492270536942975", + "redemptionFee": "138504552068314408629", "reserves": [ - "12300771200207928529523212", - "48575216508189227425589057", - "54600275359980711742851229" + "1108574540621552807939546588", + "321867712543358092811551941", + "257936748515578289060795386" ], - "mAssetSupply": "115240204316936080749119989" + "mAssetSupply": "1684065828633929969432535956" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "2418194054496899817275392", - "expectedQty": "2431422997271517821292966", - "swapFee": "1450916432698139890365", + "inputQty": "391306542837714443567104", + "expectedQty": "384909470226541224315259", + "swapFee": "234783925702628666140", "reserves": [ - "12300771200207928529523212", - "48575216508189227425589057", - "52168852362709193921558263" + "1108574540621552807939546588", + "321867712543358092811551941", + "257551839045351747836480127" ], - "mAssetSupply": "112823461178871879071734962" + "mAssetSupply": "1683674756875017957617634992" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "22041247687980003360768", - "expectedQty": "22157307148673714044401", - "swapFee": "13224748612788002016", + "type": "mint", + "inputIndex": 0, + "inputQty": "104916895170858047242240", + "expectedQty": "103837374013928271521233", "reserves": [ - "12300771200207928529523212", - "48575216508189227425589057", - "52146695055560520207513862" - ], - "mAssetSupply": "112801433155932511856376210" + "1108679457516723665986788828", + "321867712543358092811551941", + "257551839045351747836480127" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "15008378333899039703040", - "7902311960476072804352", - "12232168710326280257536" - ], - "expectedQty": "35434539706017835754495", - "swapFee": "21273487916360517763", + "type": "redeem", + "inputIndex": 0, + "inputQty": "98993641585170169856", + "expectedQty": "99962863937385360543", + "swapFee": "59396184951102101", "reserves": [ - "12285762821874029489820172", - "48567314196228751352784705", - "52134462886850193927256326" + "1108679357553859728601428285", + "321867712543358092811551941", + "257551839045351747836480127" ], - "mAssetSupply": "112765998616226494020621715" + "mAssetSupply": "1683778495314786485670088470" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1892363042237631248203776", - "expectedQty": "1902032855858002843044198", - "swapFee": "1135417825342578748922", + "type": "mint", + "inputIndex": 0, + "inputQty": "12677606689993702506496", + "expectedQty": "12547152953810548361617", "reserves": [ - "12285762821874029489820172", - "48567314196228751352784705", - "50232430030992191084212128" - ], - "mAssetSupply": "110874770991814205351166861" + "1108692035160549722303934781", + "321867712543358092811551941", + "257551839045351747836480127" + ] }, { "type": "mintMulti", "inputQtys": [ - "1625876909720388612653056", - "413707623367066353926144", - "144716017024633132810240" + "7391071113789806540226560", + "491705224603194049429504", + "161011218294618969866240" ], - "expectedQty": "2218902229480609845746709", + "expectedQty": "7974567120850056388368997", "reserves": [ - "13911639731594418102473228", - "48981021819595817706710849", - "50377146048016824217022368" + "1116083106274339528844161341", + "322359417767961286860981445", + "257712850263646366806346367" ], - "mAssetSupply": "113093673221294815196913570" + "mAssetSupply": "1691765609588590352606819084" }, { "type": "mint", "inputIndex": 0, - "inputQty": "149315203143199870681088", - "expectedQty": "152326029420977171806363", + "inputQty": "7219942958361945833472", + "expectedQty": "7145038793616813007307", "reserves": [ - "14060954934737617973154316", - "48981021819595817706710849", - "50377146048016824217022368" + "1116090326217297890789994813", + "322359417767961286860981445", + "257712850263646366806346367" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "10387481063524134813696", - "expectedQty": "10178068860447481648846", - "swapFee": "6232488638114480888", + "inputIndex": 1, + "inputQty": "11792774758069301248", + "expectedQty": "11676996909136833153", + "swapFee": "7075664854841580", "reserves": [ - "14050776865877170491505470", - "48981021819595817706710849", - "50377146048016824217022368" + "1116090326217297890789994813", + "322359406090964377724148292", + "257712850263646366806346367" ], - "mAssetSupply": "113235618002140906348387125" + "mAssetSupply": "1691772742841684876205366723" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "3549541010274782208", - "expectedQty": "3532845118833085120", + "inputQty": "21837815963995728773120000", + "expectedQty": "21441036734404003489231616", + "swapFee": "13102689578397437263872", "reserves": [ - "14050776865877170491505470", - "48981021819595817706710849", - "50377149597557834491804576" - ] + "1116090326217297890789994813", + "322359406090964377724148292", + "236271813529242363317114751" + ], + "mAssetSupply": "1669948029567267544869510595" }, { "type": "mint", "inputIndex": 1, - "inputQty": "137828908559960369004544", - "expectedQty": "137216624852697120141999", + "inputQty": "38647989281926948036018176", + "expectedQty": "38951805614204739494815573", "reserves": [ - "14050776865877170491505470", - "49118850728155778075715393", - "50377149597557834491804576" + "1116090326217297890789994813", + "361007395372891325760166468", + "236271813529242363317114751" ] }, { - "type": "mintMulti", - "inputQtys": [ - "3301840613469725917184", - "7456203594094940782592", - "1847999870393896140800" + "type": "redeemMasset", + "inputQty": "4617823849601961164", + "expectedQtys": [ + "3015017175428022819", + "975228860906628004", + "638266956649079273" ], - "expectedQty": "12630295479477287357791", + "redemptionFee": "1385347154880588", "reserves": [ - "14054078706490640217422654", - "49126306931749873016497985", - "50378997597428228387945376" + "1116090323202280715361971994", + "361007394397662464853538464", + "236271812890975406668035478" ], - "mAssetSupply": "113385468455318199588972035" + "mAssetSupply": "1708899830565033781917245592" }, { - "type": "redeemBassets", - "inputQtys": [ - "86694745659942218235904", - "44458085926508225888256", - "167677036544890526236672" - ], - "expectedQty": "299585920325403218701053", - "swapFee": "179859467875967511727", + "type": "redeem", + "inputIndex": 0, + "inputQty": "45405038874307623162740736", + "expectedQty": "45837934187203124671060301", + "swapFee": "27243023324584573897644", "reserves": [ - "13967383960830697999186750", - "49081848845823364790609729", - "50211320560883337861708704" + "1070252389015077590690911693", + "361007394397662464853538464", + "236271812890975406668035478" ], - "mAssetSupply": "113085882534992796370270982" + "mAssetSupply": "1663522034714050743328402500" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "305942466243833616138240", - "outputIndex": 2, - "expectedQty": "313227200365595394577261", - "swapFee": "187191563395697559717", + "inputQty": "7230288053130222999961600", + "expectedQty": "7296637376143381703838154", + "swapFee": "4338172831878133799976", "reserves": [ - "14273326427074531615324990", - "49081848845823364790609729", - "49898093360517742467131443" + "1062955751638934208987073539", + "361007394397662464853538464", + "236271812890975406668035478" ], - "mAssetSupply": "113086069726556192067830699", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1656296084833752398462240876" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3027608105332440", - "expectedQty": "3039097856738954", - "swapFee": "1816564863199", + "type": "redeemBassets", + "inputQtys": [ + "5521035309499888040935424", + "14847819540783318400237568", + "29100019501236841267331072" + ], + "expectedQty": "50097962502516266428894113", + "swapFee": "30076823595667160153428", "reserves": [ - "14273326427074531615324990", - "49081848842784266933870775", - "49898093360517742467131443" + "1057434716329434320946138115", + "346159574856879146453300896", + "207171793389738565400704406" ], - "mAssetSupply": "113086069723530400527361458" + "mAssetSupply": "1606198122331236132033346763" }, { - "type": "redeemMasset", - "inputQty": "8321391677722338315468", - "expectedQtys": [ - "1049981733842525901918", - "3610584050707936313557", - "3670629047110706229025" - ], - "redemptionFee": "2496417503316701494", + "type": "redeem", + "inputIndex": 2, + "inputQty": "8955980436968451072", + "expectedQty": "8745827264140643339", + "swapFee": "5373588262181070", "reserves": [ - "14272276445340689089423072", - "49078238258733558997557218", - "49894422731470631760902418" + "1057434716329434320946138115", + "346159574856879146453300896", + "207171784643911301260061067" ], - "mAssetSupply": "113077750828270181505747484" + "mAssetSupply": "1606198113380629283327076761" }, { - "type": "redeemMasset", - "inputQty": "37795396066088015259238", - "expectedQtys": [ - "4768970988227558043024", - "16399114416371096921866", - "16671836156762805890084" - ], - "redemptionFee": "11338618819826404577", + "type": "redeem", + "inputIndex": 2, + "inputQty": "2008807159111479721984", + "expectedQty": "1961669804960030670662", + "swapFee": "1205284295466887833", "reserves": [ - "14267507474352461531380048", - "49061839144317187900635352", - "49877750895313868955012334" + "1057434716329434320946138115", + "346159574856879146453300896", + "207169822974106341229390405" ], - "mAssetSupply": "113039966770822913316892823" + "mAssetSupply": "1606196105778754467314242610" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "683816764004097196032", - "expectedQty": "696946217737904762487", + "inputIndex": 1, + "inputQty": "9921625316129589248", + "expectedQty": "9983662537244461606", "reserves": [ - "14268191291116465628576080", - "49061839144317187900635352", - "49877750895313868955012334" + "1057434716329434320946138115", + "346159584778504462582890144", + "207169822974106341229390405" ] }, { "type": "redeemMasset", - "inputQty": "29992927986573566699110", + "inputQty": "767300122041058433433", "expectedQtys": [ - "3784624367686297271630", - "13013606851815554857043", - "13230026679087299288823" + "504998342353069773170", + "165315185706756369606", + "98937944415765766406" ], - "redemptionFee": "8997878395972070009", + "redemptionFee": "230190036612317530", "reserves": [ - "14264406666748779331304450", - "49048825537465372345778309", - "49864520868634781655723511" + "1057434211331091967876364945", + "346159419463318755826520538", + "207169724036161925463623999" ], - "mAssetSupply": "113010679786932473627026209" + "mAssetSupply": "1606195348692485000112588313" }, { - "type": "redeemBassets", - "inputQtys": [ - "361081123828257571995648", - "112156497389251807150080", - "240679636880767443795968" - ], - "expectedQty": "719402083039614147633563", - "swapFee": "431900390057803170482", + "type": "swap", + "inputIndex": 0, + "inputQty": "124890870232230161022976", + "outputIndex": 2, + "expectedQty": "120621799161284620953167", + "swapFee": "74113605986778896261", "reserves": [ - "13903325542920521759308802", - "48936669040076120538628229", - "49623841231754014211927543" + "1057559102201324198037387921", + "346159419463318755826520538", + "207049102237000640842670832" ], - "mAssetSupply": "112291277703892859479392646" + "mAssetSupply": "1606195422806090986891484574", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "14855908667664334848", - "expectedQtys": [ - "1838830002688097357", - "6472279958109020084", - "6563164174203180363" - ], - "redemptionFee": "4456772600299300", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3452992540395875860480", + "expectedQty": "3489166859722798320567", + "swapFee": "2071795524237525516", "reserves": [ - "13903323704090519071211445", - "48936662567796162429608145", - "49623834668589840008747180" + "1057555613034464475239067354", + "346159419463318755826520538", + "207049102237000640842670832" ], - "mAssetSupply": "112291262852440964415357098" + "mAssetSupply": "1606191971885346115253149610" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "267621225665344474972160", - "expectedQty": "266371271621891645735660", + "inputIndex": 0, + "inputQty": "369484205088026329088", + "expectedQty": "365434153606267988396", "reserves": [ - "13903323704090519071211445", - "48936662567796162429608145", - "49891455894255184483719340" + "1057555982518669563265396442", + "346159419463318755826520538", + "207049102237000640842670832" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "204033478645847821385728", - "225968688243650034925568", - "345205237832206277148672" - ], - "expectedQty": "776712232876080705993240", - "swapFee": "466307124000048452667", + "type": "mint", + "inputIndex": 2, + "inputQty": "437825491662523315781632", + "expectedQty": "448069333739332840772216", "reserves": [ - "13699290225444671249825717", - "48710693879552512394682577", - "49546250656422978206570668" - ], - "mAssetSupply": "111780921891186775355099518" + "1057555982518669563265396442", + "346159419463318755826520538", + "207486927728663164158452464" + ] }, { - "type": "redeemMasset", - "inputQty": "101078007667401228", - "expectedQtys": [ - "12383880271664313", - "44033478452310807", - "44788804817009800" - ], - "redemptionFee": "30323402300220", - "reserves": [ - "13699290213060790978161404", - "48710693835519033942371770", - "49546250611634173389560868" + "type": "mintMulti", + "inputQtys": [ + "67088790754898923749376", + "110287225853335270588416", + "113781069310976147324928" ], - "mAssetSupply": "111780921790139091089998510" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1456217678244047104", - "expectedQty": "1426030762284998826", - "swapFee": "873730606946428", + "expectedQty": "293767932631588915697242", "reserves": [ - "13699288787030028693162578", - "48710693835519033942371770", - "49546250611634173389560868" + "1057623071309424462189145818", + "346269706689172091097108954", + "207600708797974140305777392" ], - "mAssetSupply": "111780920334795143452897834" + "mAssetSupply": "1606934174585870643277607464" }, { "type": "redeemBassets", "inputQtys": [ - "3756788738926483", - "21362000206571308", - "27198877714166380" + "2964545370149686345728", + "3742846317683040321536", + "1993260906711373578240" ], - "expectedQty": "52168623965124711", - "swapFee": "31319966358890", + "expectedQty": "8738121365066423400127", + "swapFee": "5246020431298633220", "reserves": [ - "13699288783273239954236095", - "48710693814157033735800462", - "49546250584435295675394488" + "1057620106764054312502800090", + "346265963842854408056787418", + "207598715537067428932199152" ], - "mAssetSupply": "111780920282626519487773123" + "mAssetSupply": "1606925436464505576854207337" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "7506500629092030742528", - "expectedQty": "7536407897229745775671", - "swapFee": "4503900377455218445", + "type": "redeemMasset", + "inputQty": "33072801040997049958", + "expectedQtys": [ + "21760789291561894794", + "7124505888109917421", + "4271393742525394130" + ], + "redemptionFee": "9921840312299114", "reserves": [ - "13699288783273239954236095", - "48703157406259803990024791", - "49546250584435295675394488" + "1057620085003265020940905296", + "346265956718348519946869997", + "207598711265673686406805022" ], - "mAssetSupply": "111773418285897804912249040" + "mAssetSupply": "1606925403401626376169456493" }, { "type": "redeemBassets", "inputQtys": [ - "5836695559494684672", - "203113441389571712", - "934533719437060224" + "73758926057263142535168", + "566606652535190192128", + "6458447040495942107136" ], - "expectedQty": "7088952082993409812", - "swapFee": "4255924804678853", - "reserves": [ - "13699282946577680459551423", - "48703157203146362600453079", - "49546249649901576238334264" - ], - "mAssetSupply": "111773411196945721918839228" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "845430169940500141834240", - "outputIndex": 1, - "expectedQty": "864869753678531525984551", - "swapFee": "517071099924213261307", + "expectedQty": "80131551567943238140964", + "swapFee": "48107795618136824979", "reserves": [ - "14544713116518180601385663", - "47838287449467831074468528", - "49546249649901576238334264" + "1057546326077207757798370128", + "346265390111695984756677869", + "207592252818633190464697886" ], - "mAssetSupply": "111773928268045646132100535", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1606845271850058432931315529" }, { "type": "mint", "inputIndex": 1, - "inputQty": "15442640915326581080064", - "expectedQty": "15379342190207543047368", + "inputQty": "1717474029891057793105920", + "expectedQty": "1728120171296619012298375", "reserves": [ - "14544713116518180601385663", - "47853730090383157655548592", - "49546249649901576238334264" + "1057546326077207757798370128", + "347982864141587042549783789", + "207592252818633190464697886" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "734332117001394334990336", - "expectedQty": "731279686662561760068868", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3345168997404601483264", + "expectedQty": "3266937658033165577747", + "swapFee": "2007101398442760889", "reserves": [ - "14544713116518180601385663", - "48588062207384551990538928", - "49546249649901576238334264" - ] + "1057546326077207757798370128", + "347982864141587042549783789", + "207588985880975157299120139" + ], + "mAssetSupply": "1608570048859459045784891529" }, { "type": "mintMulti", "inputQtys": [ - "1427293008698748472131584", - "318869452207885213761536", - "204230282111227371978752" + "23758150054661838602240", + "6079969211942339346432", + "11166172561214887952384" ], - "expectedQty": "1971965711420944273903891", + "expectedQty": "41043152708567140922258", "reserves": [ - "15972006125216929073517247", - "48906931659592437204300464", - "49750479932012803610313016" + "1057570084227262419636972368", + "347988944110798984889130221", + "207600152053536372187072523" ], - "mAssetSupply": "114492553008319359709120662" + "mAssetSupply": "1608611092012167612925813787" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1861625185993023018762240", - "expectedQty": "1854082433403900126263269", + "type": "redeemBassets", + "inputQtys": [ + "1722226067879707541504", + "853708516242269667328", + "1140033098349569769472" + ], + "expectedQty": "3729035979839508022247", + "swapFee": "2238764846811791888", "reserves": [ - "15972006125216929073517247", - "48906931659592437204300464", - "51612105118005826629075256" - ] + "1057568362001194539929430864", + "347988090402282742619462893", + "207599012020438022617303051" + ], + "mAssetSupply": "1608607362976187773417791540" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4635606349739467267375104", - "expectedQty": "4614731422728344038578023", + "type": "redeemBassets", + "inputQtys": [ + "2610274567242207", + "4708241331140992", + "2881283019839212" + ], + "expectedQty": "10267502996126433", + "swapFee": "6164200317866", "reserves": [ - "15972006125216929073517247", - "48906931659592437204300464", - "56247711467745293896450360" - ] + "1057568361998584265362188657", + "347988090397574501288321901", + "207599012017556739597463839" + ], + "mAssetSupply": "1608607362965920270421665107" }, { "type": "redeemMasset", - "inputQty": "151600999013358922576691", + "inputQty": "444743853253783702837657", "expectedQtys": [ - "20011725528180270310916", - "61276716595545454569132", - "70474163023494880109342" + "292306211640774465019407", + "96182038017849229837485", + "57379251236811162933429" ], - "redemptionFee": "45480299704007676773", + "redemptionFee": "133423155976135110851", "reserves": [ - "15951994399688748803206331", - "48845654942996891749731332", - "56177237304721799016341018" + "1057276055786943490897169250", + "347891908359556652058484416", + "207541632766319928434530410" ], - "mAssetSupply": "120809811345737948959062036" + "mAssetSupply": "1608162752535822462853938301" }, { - "type": "redeemMasset", - "inputQty": "19736978325254048972", - "expectedQtys": [ - "2605332389437768126", - "7977633624844669560", - "9175051860724018023" - ], - "redemptionFee": "5921093497576214", + "type": "swap", + "inputIndex": 2, + "inputQty": "3942451756340732319760384", + "outputIndex": 1, + "expectedQty": "4004999824744168362999936", + "swapFee": "2419576723323055257804", "reserves": [ - "15951991794356359365438205", - "48845646965363266905061772", - "56177228129669938292322995" + "1057276055786943490897169250", + "343886908534812483695484480", + "211484084522660660754290794" ], - "mAssetSupply": "120809791614680717202589278" + "mAssetSupply": "1608165172112545785909196105", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "95242267398710858088448", - "99432661367149303955456", - "22798586987272361476096" - ], - "expectedQty": "218674694455451639678925", - "swapFee": "131283586825366203529", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5236676609636807808647168", + "expectedQty": "5290500281005494953493703", + "swapFee": "3142005965782084685188", "reserves": [ - "15856749526957648507349757", - "48746214303996117601106316", - "56154429542682665930846899" + "1051985555505937995943675547", + "343886908534812483695484480", + "211484084522660660754290794" ], - "mAssetSupply": "120591116920225265562910353" + "mAssetSupply": "1602931637508874760185234125" }, { "type": "redeemMasset", - "inputQty": "370449443100342374", + "inputQty": "1895984747876695321817907", "expectedQtys": [ - "48696470721954862", - "149700832041592248", - "172451644612562796" + "1243939639718006191043570", + "406635390445832970326046", + "250073239627980745378316" ], - "redemptionFee": "111134832930102", + "redemptionFee": "568795424363008596545", "reserves": [ - "15856749478261177785394895", - "48746214154295285559514068", - "56154429370231021318284103" + "1050741615866219989752631977", + "343480273144366650725158434", + "211234011283032680008912478" ], - "mAssetSupply": "120591116549886957295498081" + "mAssetSupply": "1601036221556422427872012763" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "363501638856889625214976", - "expectedQty": "364555684258162452135381", - "swapFee": "218100983314133775128", + "inputQty": "3357304822198052352", + "expectedQty": "3378514222647813406", "reserves": [ - "15856749478261177785394895", - "48381658470037123107378687", - "56154429370231021318284103" - ], - "mAssetSupply": "120227833012013381804058233" + "1050741615866219989752631977", + "343480276501671472923210786", + "211234011283032680008912478" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "49752223631879526416384", - "34730628375322535395328", - "25081476327287583408128" - ], - "expectedQty": "110185953745232169531906", + "type": "mint", + "inputIndex": 1, + "inputQty": "15369661050772399543287808", + "expectedQty": "15459788298452655412043287", "reserves": [ - "15906501701893057311811279", - "48416389098412445642774015", - "56179510846558308901692231" - ], - "mAssetSupply": "120338018965758613973590139" + "1050741615866219989752631977", + "358849937552443872466498594", + "211234011283032680008912478" + ] }, { "type": "redeemBassets", "inputQtys": [ - "25965247144714638983168", - "28330315093979510603776", - "57269508032304636755968" + "682686008401997987840", + "944908017656481972224", + "566830682704191094784" ], - "expectedQty": "111639052523550495890848", - "swapFee": "67023645701551228271", + "expectedQty": "2205047420580799400435", + "swapFee": "1323822745996077286", "reserves": [ - "15880536454748342672828111", - "48388058783318466132170239", - "56122241338526004264936263" + "1050740933180211587754644137", + "358848992644426215984526370", + "211233444452349975817817694" ], - "mAssetSupply": "120226379913235063477699291" + "mAssetSupply": "1616493808185968725132469021" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "105935664640490525949952", - "expectedQty": "104055527021321758875435", - "swapFee": "63561398784294315569", - "reserves": [ - "15776480927727020913952676", - "48388058783318466132170239", - "56122241338526004264936263" + "type": "mintMulti", + "inputQtys": [ + "16963138379106215855652864", + "29121319384770473277521920", + "11063413693452363973525504" ], - "mAssetSupply": "120120507809993357246064908" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "6739068705294919925760", - "outputIndex": 1, - "expectedQty": "6725525316784148456263", - "swapFee": "4023649738546273501", + "expectedQty": "57356653661023280396151090", "reserves": [ - "15776480927727020913952676", - "48381333258001681983713976", - "56128980407231299184862023" + "1067704071559317803610297001", + "387970312029196689262048290", + "222296858145802339791343198" ], - "mAssetSupply": "120120511833643095792338409", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1673850461846992005528620111" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1328766436783077720064", - "expectedQty": "1352117929507655462296", + "inputQty": "36080081818973077740978176", + "expectedQty": "35718337797288826882030668", "reserves": [ - "15777809694163803991672740", - "48381333258001681983713976", - "56128980407231299184862023" + "1103784153378290881351275177", + "387970312029196689262048290", + "222296858145802339791343198" ] }, { "type": "redeemBassets", "inputQtys": [ - "4618102257824450478080", - "8942520646898989137920", - "6214866947944266858496" + "52258489080305076404224", + "7430128967869862510592", + "163736783196702917001216" ], - "expectedQty": "19795032982761840292600", - "swapFee": "11884150279824999175", + "expectedQty": "226576791306914385618968", + "swapFee": "136027691398988024185", "reserves": [ - "15773191591905979541194660", - "48372390737354782994576056", - "56122765540283354918003527" + "1103731894889210576274870953", + "387962881900228819399537698", + "222133121362605636874341982" ], - "mAssetSupply": "120102068918589841607508105" + "mAssetSupply": "1709342222852973918025031811" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "44984890433592467914752", - "expectedQty": "45773330009172677731195", + "type": "redeemMasset", + "inputQty": "1013009590303231671743283", + "expectedQtys": [ + "653909762716998456011512", + "229849945644495908467462", + "131603532845617324774801" + ], + "redemptionFee": "303902877090969501522", "reserves": [ - "15818176482339572009109412", - "48372390737354782994576056", - "56122765540283354918003527" - ] + "1103077985126493577818859441", + "387733031954584323491070236", + "222001517829760019549567181" + ], + "mAssetSupply": "1708329517165547777322790050" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "3444773743288737001897984", + "expectedQty": "3425708612025042243858270", + "swapFee": "2066864245973242201138", + "reserves": [ + "1103077985126493577818859441", + "384307323342559281247211966", + "222001517829760019549567181" + ], + "mAssetSupply": "1704886810286505013563093204" }, { "type": "mint", "inputIndex": 2, - "inputQty": "2191945502747208712192", - "expectedQty": "2181248607366622011898", + "inputQty": "32663339722851519920340992", + "expectedQty": "33292849651343343182412316", "reserves": [ - "15818176482339572009109412", - "48372390737354782994576056", - "56124957485786102126715719" + "1103077985126493577818859441", + "384307323342559281247211966", + "254664857552611539469908173" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "558458301747421118464", - "outputIndex": 2, - "expectedQty": "558911838237586132168", - "swapFee": "333910895079937237", + "type": "redeemBassets", + "inputQtys": [ + "3193611176663636770816", + "9018961143017766912000", + "2060029494197595930624" + ], + "expectedQty": "14325323956407658828750", + "swapFee": "8600354586596553229", "reserves": [ - "15818176482339572009109412", - "48372949195656530415694520", - "56124398573947864540583551" + "1103074791515316914182088625", + "384298304381416263480299966", + "254662797523117341873977549" ], - "mAssetSupply": "120150023831117275987188435", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1738165334613891949086676770" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "14528215816044307021824", - "outputIndex": 2, - "expectedQty": "14539973666682240723528", - "swapFee": "8686635764158222847", + "type": "redeemMasset", + "inputQty": "2779157297621293753958", + "expectedQtys": [ + "1763180182071494175144", + "614271271087771272667", + "407058887717688546824" + ], + "redemptionFee": "833747189286388126", "reserves": [ - "15818176482339572009109412", - "48387477411472574722716344", - "56109858600281182299860023" + "1103073028335134842687913481", + "384297690110145175709027299", + "254662390464229624185430725" ], - "mAssetSupply": "120150032517753040145411282", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1738162556290341517079310938" }, { - "type": "redeemBassets", - "inputQtys": [ - "380901635151402884923392", - "493077430775749869043712", - "219902485005712721182720" + "type": "redeemMasset", + "inputQty": "1302861393077810872136499", + "expectedQtys": [ + "826574080649206881085397", + "287968703557040201618660", + "190828101011229516845751" ], - "expectedQty": "1097843972919589363340524", - "swapFee": "659101844858668819295", + "redemptionFee": "390858417923343261640", "reserves": [ - "15437274847188169124186020", - "47894399980696824853672632", - "55889956115275469578677303" + "1102246454254485635806828084", + "384009721406588135507408639", + "254471562363218394668584974" ], - "mAssetSupply": "119052188544833450782070758" + "mAssetSupply": "1736860085755681629550436079" }, { "type": "mintMulti", "inputQtys": [ - "17934482963649429241856", - "17224428121919158484992", - "10690467044270373076992" + "364569673481468510208", + "47465500672630546497536", + "43973812468473137201152" ], - "expectedQty": "46059674276101408554517", + "expectedQty": "92783411559263110622639", "reserves": [ - "15455209330151818553427876", - "47911624408818744012157624", - "55900646582319739951754295" + "1102246818824159117275338292", + "384057186907260766053906175", + "254515536175686867805786126" ], - "mAssetSupply": "119098248219109552190625275" + "mAssetSupply": "1736952869167240892661058718" }, { "type": "redeemBassets", "inputQtys": [ - "1063494607748770168832", - "2464500046560359874560", - "1579778543969106132992" + "2471570344712247705600", + "1606925735516344680448", + "772634501466586611712" ], - "expectedQty": "5110404567912421851297", - "swapFee": "3068083590901994307", + "expectedQty": "4849771199523322883582", + "swapFee": "2911609685525308915", "reserves": [ - "15454145835544069783259044", - "47909159908772183652283064", - "55899066803775770845621303" + "1102244347253814405027632692", + "384055579981525249709225727", + "254514763541185401219174414" ], - "mAssetSupply": "119093137814541639768773978" + "mAssetSupply": "1736948019396041369338175136" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "19755927643503247360", - "8543508492775691264", - "6534206064932063232" + "2336194147461860163584", + "3676823651854252507136", + "928857392362804215808" ], - "expectedQty": "35128101623143538890", + "expectedQty": "6955331790786174922937", + "swapFee": "4175704497170006957", "reserves": [ - "15454165591471713286506404", - "47909168452280676427974328", - "55899073337981835777684535" + "1102242011059666943167469108", + "384051903157873395456718591", + "254513834683793038414958606" ], - "mAssetSupply": "119093172942643262912312868" + "mAssetSupply": "1736941064064250583163252199" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2499668303673609420800", - "10093897106687654887424", - "3429300407265060192256" + "15455505478632650752", + "15262367522245132288", + "9070711047168763904" ], - "expectedQty": "16015282350713846763542", + "expectedQty": "39878202923748453360", + "swapFee": "23941286526164770", "reserves": [ - "15456665259775386895927204", - "47919262349387364082861752", - "55902502638389100837876791" + "1102241995604161464534818356", + "384051887895505873211586303", + "254513825613081991246194702" ], - "mAssetSupply": "119109188224993976759076410" + "mAssetSupply": "1736941024186047659414798839" }, { - "type": "redeemMasset", - "inputQty": "2594986303106223544729", - "expectedQtys": [ - "336647426516576033487", - "1043685431454335363667", - "1217561054260889960317" + "type": "mintMulti", + "inputQtys": [ + "1310410767628704153600", + "691350587631671967744", + "2446854443028320354304" ], - "redemptionFee": "778495890931867063", + "expectedQty": "4480911772780137438136", "reserves": [ - "15456328612348870319893717", - "47918218663955909747498085", - "55901285077334839947916474" + "1102243306014929093238971956", + "384052579246093504883554047", + "254516272467525019566549006" ], - "mAssetSupply": "119106594017186761467398744" + "mAssetSupply": "1736945505097820439552236975" }, { "type": "mintMulti", "inputQtys": [ - "5361858791910975488", - "755843527345300736", - "4941678182314524672" + "2363692044910204312092672", + "1428487714739290751631360", + "917966799333941525348352" ], - "expectedQty": "11128965915119599697", + "expectedQty": "4711232480895571289153354", "reserves": [ - "15456333974207662230869205", - "47918219419799437092798821", - "55901290019013022262441146" + "1104606998059839297551064628", + "385481066960832795635185407", + "255434239266858961091897358" ], - "mAssetSupply": "119106605146152676586998441" + "mAssetSupply": "1741656737578716010841390329" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "156366474367232286654464", - "74696076016736891043840", - "51908786666840178819072" + "6139528048060968960", + "4797824490893915136", + "2775258057684507648" ], - "expectedQty": "285253389713562177443082", + "expectedQty": "13727605522155029921", + "swapFee": "8241508218223952", "reserves": [ - "15612700448574894517523669", - "47992915495816173983842661", - "55953198805679862441260218" + "1104606991920311249490095668", + "385481062163008304741270271", + "255434236491600903407389710" ], - "mAssetSupply": "119391858535866238764441523" + "mAssetSupply": "1741656723851110488686360408" }, { "type": "redeem", + "inputIndex": 1, + "inputQty": "37908041601119814395363328", + "expectedQty": "37650239153309071028917231", + "swapFee": "22744824960671888637217", + "reserves": [ + "1104606991920311249490095668", + "347830823009699233712353040", + "255434236491600903407389710" + ], + "mAssetSupply": "1703771427074951346179634297" + }, + { + "type": "swap", "inputIndex": 2, - "inputQty": "7710461893374371692544", - "expectedQty": "7744141500055847430325", - "swapFee": "4626277136024623015", + "inputQty": "22373074577521198652981248", + "outputIndex": 0, + "expectedQty": "22898677712289887368516240", + "swapFee": "13623506103160273048689", "reserves": [ - "15612700448574894517523669", - "47992915495816173983842661", - "55945454664179806593829893" + "1081708314208021362121579428", + "347830823009699233712353040", + "277807311069122102060370958" ], - "mAssetSupply": "119384152700250000417371994" + "mAssetSupply": "1703785050581054506452682986", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "11930346004827680538624", - "expectedQty": "11714988624086894148125", - "swapFee": "7158207602896608323", + "type": "redeemMasset", + "inputQty": "1319157616141197", + "expectedQtys": [ + "837262703717191", + "269227638804365", + "215028115549276" + ], + "redemptionFee": "395747284842", "reserves": [ - "15600985459950807623375544", - "47992915495816173983842661", - "55945454664179806593829893" + "1081708314207184099417862237", + "347830823009430006073548675", + "277807311068907073944821682" ], - "mAssetSupply": "119372229512452775633441693" + "mAssetSupply": "1703785050579735744583826631" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "5737820417635013099520", - "expectedQty": "5634134338963174806048", - "swapFee": "3442692250581007859", + "inputQty": "21896734797654779244838912", + "expectedQty": "22076698070654059492051077", + "swapFee": "13138040878592867546903", "reserves": [ - "15595351325611844448569496", - "47992915495816173983842661", - "55945454664179806593829893" + "1059631616136530039925811160", + "347830823009430006073548675", + "277807311068907073944821682" ], - "mAssetSupply": "119366495134727391201350032" + "mAssetSupply": "1681901453822959558206534622" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "2567339076281008255926272", - "expectedQty": "2554171134274125641102029", + "inputQty": "2961595890278289", + "expectedQty": "2923580575271442", + "swapFee": "1776957534166", "reserves": [ - "15595351325611844448569496", - "47992915495816173983842661", - "58512793740460814849756165" - ] + "1059631616136530039925811160", + "347830823009430006073548675", + "277807311065983493369550240" + ], + "mAssetSupply": "1681901453819999739273790499" }, { - "type": "mintMulti", - "inputQtys": [ - "265305856378030144880640", - "2949432266946819129344", - "148631232008225384562688" + "type": "redeemMasset", + "inputQty": "186027711188737078172057", + "expectedQtys": [ + "117166025127245717163785", + "38460493560341654746839", + "30717824848947960524609" ], - "expectedQty": "420995274174014774711600", + "redemptionFee": "55808313356621123451", "reserves": [ - "15860657181989874593450136", - "47995864928083120802972005", - "58661424972469040234318853" + "1059514450111402794208647375", + "347792362515869664418801836", + "277776593241134545409025631" ], - "mAssetSupply": "122341661543175531617163661" + "mAssetSupply": "1681715481917124358816741893" }, { - "type": "redeemMasset", - "inputQty": "2729113043664385553203", - "expectedQtys": [ - "353702411694544102204", - "1070337312107438749185", - "1308185861917591051873" + "type": "redeem", + "inputIndex": 0, + "inputQty": "671114209767281311875072", + "expectedQty": "676537489964958354091460", + "swapFee": "402668525860368787125", + "reserves": [ + "1058837912621437835854555915", + "347792362515869664418801836", + "277776593241134545409025631" ], - "redemptionFee": "818733913099315665", + "mAssetSupply": "1681044770375882937873653946" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "80487243504918327944282112", + "outputIndex": 1, + "expectedQty": "78818531357971015130648004", + "swapFee": "47853361991972868915179", "reserves": [ - "15860303479578180049347932", - "47994794590771013364222820", - "58660116786607122643266980" + "1139325156126356163798838027", + "268973831157898649288153832", + "277776593241134545409025631" ], - "mAssetSupply": "122338933248865780330926123" + "mAssetSupply": "1681092623737874910742569125", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "338851064884140346808729", - "expectedQtys": [ - "43916260315057809082477", - "132894802153690310936280", - "162426460643037173004800" - ], - "redemptionFee": "101655319465242104042", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1772777727263309517815808", + "expectedQty": "1746599526574535283852635", + "swapFee": "1063666636357985710689", "reserves": [ - "15816387219263122240265455", - "47861899788617323053286540", - "58497690325964085470262180" + "1139325156126356163798838027", + "268973831157898649288153832", + "276029993714560010125172996" ], - "mAssetSupply": "122000183839301105226221436" + "mAssetSupply": "1679320909677247959210464006" }, { - "type": "mintMulti", - "inputQtys": [ - "710738495459183", - "2608020053755788", - "80234562371149" - ], - "expectedQty": "3402901746422116", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3085908933095293307584512", + "expectedQty": "3039444057626774676391272", + "swapFee": "1851545359857175984550", "reserves": [ - "15816387219973860735724638", - "47861899791225343107042328", - "58497690326044320032633329" + "1139325156126356163798838027", + "268973831157898649288153832", + "272990549656933235448781724" ], - "mAssetSupply": "122000183842704006972643552" + "mAssetSupply": "1676236852289512523078864044" }, { - "type": "mintMulti", - "inputQtys": [ - "112225153125685716320256", - "47734099557232532258816", - "47077724482033158193152" - ], - "expectedQty": "208663508588748918200545", + "type": "swap", + "inputIndex": 2, + "inputQty": "15465401605315215360", + "outputIndex": 0, + "expectedQty": "15870575676940415554", + "swapFee": "9417234275401031", "reserves": [ - "15928612373099546452044894", - "47909633890782575639301144", - "58544768050526353190826481" + "1139325140255780486858422473", + "268973831157898649288153832", + "272990565122334840763997084" ], - "mAssetSupply": "122208847351292755890844097" + "mAssetSupply": "1676236852298929757354265075", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 1, - "inputQty": "779721972143710848", + "inputIndex": 0, + "inputQty": "3911951373149620955774976", "outputIndex": 2, - "expectedQty": "780758572267542353", - "swapFee": "466304687029544", + "expectedQty": "3806001388363595624269924", + "swapFee": "2319800404504295121271", "reserves": [ - "15928612373099546452044894", - "47909634670504547783011992", - "58544767269767780923284128" + "1143237091628930107814197449", + "268973831157898649288153832", + "269184563733971245139727160" ], - "mAssetSupply": "122208847351759060577873641", + "mAssetSupply": "1676239172099334261649386346", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "2578681211468753928192", - "3391083474489164431360", - "4724408568833004011520" - ], - "expectedQty": "10704896059226110616003", + "type": "swap", + "inputIndex": 2, + "inputQty": "3205329438368260356571136", + "outputIndex": 1, + "expectedQty": "3201976195475617055141319", + "swapFee": "1952587778168035129089", "reserves": [ - "15931191054311015205973086", - "47913025753979036947443352", - "58549491678336613927295648" + "1143237091628930107814197449", + "265771854962423032233012513", + "272389893172339505496298296" ], - "mAssetSupply": "122219552247818286688489644" + "mAssetSupply": "1676241124687112429684515435", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2389285912663358976", - "expectedQty": "2432190282583027018", + "type": "redeemBassets", + "inputQtys": [ + "118653154663247770550272", + "116843541916728032231424", + "42398481553935787098112" + ], + "expectedQty": "278997650537811986472381", + "swapFee": "167499089776553123757", "reserves": [ - "15931193443596927869332062", - "47913025753979036947443352", - "58549491678336613927295648" - ] + "1143118438474266860043647177", + "265655011420506304200781089", + "272347494690785569709200184" + ], + "mAssetSupply": "1675962127036574617698043054" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "41425092193343842025472", - "expectedQty": "41210091406603816855469", + "inputIndex": 1, + "inputQty": "309471947192771983441920", + "expectedQty": "314406977240997297014264", "reserves": [ - "15931193443596927869332062", - "47913025753979036947443352", - "58590916770529957769321120" + "1143118438474266860043647177", + "265964483367699076184223009", + "272347494690785569709200184" ] }, { - "type": "mintMulti", - "inputQtys": [ - "404994772670284585500672", - "597925648539337667641344", - "302357876182513386258432" - ], - "expectedQty": "1308943095916949576097476", - "reserves": [ - "16336188216267212454832734", - "48510951402518374615084696", - "58893274646712471155579552" - ], - "mAssetSupply": "123569707867332122664469607" - }, - { - "type": "mintMulti", - "inputQtys": [ - "4327824320931042951168", - "6499138248699465957376", - "9222168879455313854464" + "type": "redeemMasset", + "inputQty": "2681125721617138768779673", + "expectedQtys": [ + "1827815836350811034033814", + "425270101718585648380616", + "435476366255369843817180" ], - "expectedQty": "20056654117966606133604", + "redemptionFee": "804337716485141630633", "reserves": [ - "16340516040588143497783902", - "48517450540767074081042072", - "58902496815591926469434016" + "1141290622637916049009613363", + "265539213265980490535842393", + "271912018324530199865383004" ], - "mAssetSupply": "123589764521450089270603211" + "mAssetSupply": "1673596212629914961367908278" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "11103454517702321766400", - "expectedQty": "11067700777796848092988", + "inputIndex": 0, + "inputQty": "3517684624640027450671104", + "expectedQty": "3476060298003212306750590", "reserves": [ - "16340516040588143497783902", - "48528553995284776402808472", - "58902496815591926469434016" + "1144808307262556076460284467", + "265539213265980490535842393", + "271912018324530199865383004" ] }, { - "type": "mintMulti", - "inputQtys": [ - "4347391466339174973440", - "3908916437776101015552", - "17153072769132128108544" + "type": "redeemMasset", + "inputQty": "25724283017517281260339", + "expectedQtys": [ + "17554722333796049411581", + "4071832050874396453466", + "4169553933726346748171" ], - "expectedQty": "25385443867198754958901", + "redemptionFee": "7717284905255184378", "reserves": [ - "16344863432054482672757342", - "48532462911722552503824024", - "58919649888361058597542560" + "1144790752540222280410872886", + "265535141433929616139388927", + "271907848770596473518634833" ], - "mAssetSupply": "123626217666095084873655100" + "mAssetSupply": "1677046556362185561648582907" }, { - "type": "mintMulti", - "inputQtys": [ - "2644091879881344693567488", - "1622232304597459611418624", - "2457463483255570720358400" - ], - "expectedQty": "6748205314627048272862197", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3242019778751445768077312", + "expectedQty": "3188212968207886507395657", + "swapFee": "1945211867250867460846", "reserves": [ - "18988955311935827366324830", - "50154695216320012115242648", - "61377113371616629317900960" + "1144790752540222280410872886", + "262346928465721729631993270", + "271907848770596473518634833" ], - "mAssetSupply": "130374422980722133146517297" + "mAssetSupply": "1673806481795301366747966441" }, { "type": "redeemBassets", "inputQtys": [ - "11623987787421012", - "2001297418631017472", - "1649704272283435520" + "4039910815592421523456", + "1695917801481374007296", + "19164732817187123757056" ], - "expectedQty": "3650088574533171841", - "swapFee": "2191367965499202", + "expectedQty": "25171458925993724491943", + "swapFee": "15111942521108900035", "reserves": [ - "18988955300311839578903818", - "50154693215022593484225176", - "61377111721912357034465440" + "1144786712629406687989349430", + "262345232547920248257985974", + "271888684037779286394877777" ], - "mAssetSupply": "130374419330633558613345456" + "mAssetSupply": "1673781310336375373023474498" }, { "type": "mint", "inputIndex": 1, - "inputQty": "491854529327851921997824", - "expectedQty": "490533982886036725565912", + "inputQty": "32765945998354709905145856", + "expectedQty": "33236884727442606325173871", "reserves": [ - "18988955300311839578903818", - "50646547744350445406223000", - "61377111721912357034465440" + "1144786712629406687989349430", + "295111178546274958163131830", + "271888684037779286394877777" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "151737254972610171633664", - "expectedQty": "152058036251404594135430", - "swapFee": "91042352983566102980", + "type": "redeemMasset", + "inputQty": "861645006004107563604377", + "expectedQtys": [ + "577676229112460315467922", + "148917445416519195204275", + "137199032798469039225643" + ], + "redemptionFee": "258493501801232269081", "reserves": [ - "18988955300311839578903818", - "50494489708099040812087570", - "61377111721912357034465440" + "1144209036400294227673881508", + "294962261100858438967927555", + "271751485004980817355652134" ], - "mAssetSupply": "130713307100899968733380684" + "mAssetSupply": "1706156808551315673017313073" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "23022416288736524369920", - "expectedQty": "23111815264444731137937", - "swapFee": "13813449773241914621", + "inputQty": "28464209924268270551040", + "expectedQty": "28021850141819496799534", + "swapFee": "17078525954560962330", "reserves": [ - "18988955300311839578903818", - "50494489708099040812087570", - "61353999906647912303327503" + "1144209036400294227673881508", + "294962261100858438967927555", + "271723463154838997858852600" ], - "mAssetSupply": "130690298498061005450925385" + "mAssetSupply": "1706128361419917359307724363" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "605873308420876", - "expectedQty": "607148343378646", - "swapFee": "363523985052", + "type": "swap", + "inputIndex": 0, + "inputQty": "1426393618508149948416", + "outputIndex": 1, + "expectedQty": "1392504669811441042413", + "swapFee": "846433796767979284", "reserves": [ - "18988955300311839578903818", - "50494489707491892468708924", - "61353999906647912303327503" + "1144210462793912735823829924", + "294960868596188627526885142", + "271723463154838997858852600" ], - "mAssetSupply": "130690298497455495666489561" + "mAssetSupply": "1706128362266351156075703647", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "171928723260788539392", - "7349145489629364879360", - "282689719853647429632" + "344168719637788295168", + "466536016673013563392", + "161681340725968011264" ], - "expectedQty": "7785046385780923510446", + "expectedQty": "976879254473056643581", "reserves": [ - "18989127229035100367443210", - "50501838852981521833588284", - "61354282596367765950757135" + "1144210806962632373612125092", + "294961335132205300540448534", + "271723624836179723826863864" ], - "mAssetSupply": "130698083543841276590000007" + "mAssetSupply": "1706129339145605629132347228" }, { "type": "swap", "inputIndex": 2, - "inputQty": "2826592823395602432", + "inputQty": "6553282282294715875328", "outputIndex": 1, - "expectedQty": "2819899214721204847", - "swapFee": "1688384760948058", + "expectedQty": "6566832000488977010850", + "swapFee": "3991649539269418703", "reserves": [ - "18989127229035100367443210", - "50501836033082307112383437", - "61354285422960589346359567" + "1144210806962632373612125092", + "294954768300204811563437684", + "271730178118462018542739192" ], - "mAssetSupply": "130698083545529661350948065", + "mAssetSupply": "1706129343137255168401765931", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "45378523043237208064", - "expectedQty": "45175948181968164532", + "type": "redeem", + "inputIndex": 0, + "inputQty": "611620618054841007079424", + "expectedQty": "618040879567332794161092", + "swapFee": "366972370832904604247", "reserves": [ - "18989127229035100367443210", - "50501836033082307112383437", - "61354330801483632583567631" - ] + "1143592766083065040817964000", + "294954768300204811563437684", + "271730178118462018542739192" + ], + "mAssetSupply": "1705518089491571160299290754" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "222992195483040250593280", - "expectedQty": "219776765185665861886680", - "swapFee": "133795317289824150355", + "type": "mintMulti", + "inputQtys": [ + "8223077186689912", + "20230905590329208", + "21142286692081860" + ], + "expectedQty": "50078565672554952", "reserves": [ - "18769350463849434505556530", - "50501836033082307112383437", - "61354330801483632583567631" + "1143592766091288118004653912", + "294954768320435717153766892", + "271730178139604305234821052" ], - "mAssetSupply": "130475270321312092892669672" + "mAssetSupply": "1705518089541649725971845706" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "454871498114202523926528", - "expectedQty": "453605279683227298908661", + "inputIndex": 2, + "inputQty": "884810548079258725515264", + "expectedQty": "898173168155253713156343", "reserves": [ - "18769350463849434505556530", - "50956707531196509636309965", - "61354330801483632583567631" + "1143592766091288118004653912", + "294954768320435717153766892", + "272614988687683563960336316" ] }, { - "type": "redeemMasset", - "inputQty": "6241021730359824980377", - "expectedQtys": [ - "894415243351409830130", - "2428238316221114442472", - "2923715917616108598402" - ], - "redemptionFee": "1872306519107947494", + "type": "redeem", + "inputIndex": 1, + "inputQty": "67325660530268867286532096", + "expectedQty": "66172413681160928021384165", + "swapFee": "40395396318161320371919", "reserves": [ - "18768456048606083095726400", - "50954279292880288521867493", - "61351407085566016474969229" + "1143592766091288118004653912", + "228782354639274789132382727", + "272614988687683563960336316" ], - "mAssetSupply": "130922636451571479474545450" + "mAssetSupply": "1639130997575854273718841872" }, { - "type": "redeemMasset", - "inputQty": "46887674275270184298086", - "expectedQtys": [ - "6719580929047581982388", - "18242917931186545818139", - "21965352075565212654432" + "type": "redeemBassets", + "inputQtys": [ + "1568948393218234149502976", + "497748248347386599964672", + "2493142622983866682441728" ], - "redemptionFee": "14066302282581055289", + "expectedQty": "4588478107175216695185093", + "swapFee": "2754739708130008021924", "reserves": [ - "18761736467677035513744012", - "50936036374949101976049354", - "61329441733490451262314797" + "1142023817698069883855150936", + "228284606390927402532418055", + "270121846064699697277894588" ], - "mAssetSupply": "130875762843598491871302653" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1678257462035823141584896", - "expectedQty": "1670527194901088688414547", - "reserves": [ - "18761736467677035513744012", - "50936036374949101976049354", - "63007699195526274403899693" - ] + "mAssetSupply": "1634542519468679057023656779" }, { "type": "mintMulti", "inputQtys": [ - "163530733989774822998016", - "167676907827324723920896", - "118838443353066266689536" - ], - "expectedQty": "451431373982607060975986", - "reserves": [ - "18925267201666810336742028", - "51103713282776426699970250", - "63126537638879340670589229" + "70289089378597514248192", + "33019151935711102369792", + "9971949313353274359808" ], - "mAssetSupply": "132997721412482187620693186" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "793178346410963107840", - "expectedQty": "794869656895619280513", - "swapFee": "475907007846577864", + "expectedQty": "113240014713461954613424", "reserves": [ - "18925267201666810336742028", - "51102918413119531080689737", - "63126537638879340670589229" + "1142094106787448481369399128", + "228317625542863113634787847", + "270131818014013050552254396" ], - "mAssetSupply": "132996928710042784504163210" + "mAssetSupply": "1634655759483392518978270203" }, { "type": "mint", "inputIndex": 0, - "inputQty": "4990739349410409349120", - "expectedQty": "5063527426133010000295", + "inputQty": "712382378646494080", + "expectedQty": "702902635367143727", "reserves": [ - "18930257941016220746091148", - "51102918413119531080689737", - "63126537638879340670589229" + "1142094107499830860015893208", + "228317625542863113634787847", + "270131818014013050552254396" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "38781393729335114858496", - "29891543960820364869632", - "37432797340748472123392" - ], - "expectedQty": "106415724594114036953236", - "swapFee": "63887767416918573315", - "reserves": [ - "18891476547286885631232652", - "51073026869158710715820105", - "63089104841538592198465837" - ], - "mAssetSupply": "132895576512874803477210269" - }, { "type": "redeemMasset", - "inputQty": "68584272068752", + "inputQty": "1182860580120245776364339", "expectedQtys": [ - "9746520567776", - "26349677093418", - "32549031114723" + "826187904519838917733252", + "165164376012010254833050", + "195412654004227903679404" ], - "redemptionFee": "20575281620", + "redemptionFee": "354858174036073732909", "reserves": [ - "18891476547277139110664876", - "51073026869132361038726687", - "63089104841506043167351114" + "1141267919595311021098159956", + "228152461166851103379954797", + "269936405360008822648574992" ], - "mAssetSupply": "132895576512806239780423137" + "mAssetSupply": "1633473254464348944642782500" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "6427964832754729025011712", - "expectedQty": "6285442658093045180529018", - "swapFee": "3856778899652837415007", - "reserves": [ - "12606033889184093930135858", - "51073026869132361038726687", - "63089104841506043167351114" - ], - "mAssetSupply": "126471468458951163592826432" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "5896695503717097277489152", - "outputIndex": 0, - "expectedQty": "5509174436717747182686535", - "swapFee": "3518745435068111809803", + "inputIndex": 2, + "inputQty": "195566667748404640", + "expectedQty": "192463879097957635", + "swapFee": "117340000649042", "reserves": [ - "7096859452466346747449323", - "56969722372849458316215839", - "63089104841506043167351114" + "1141267919595311021098159956", + "228152461166851103379954797", + "269936405167544943550617357" ], - "mAssetSupply": "126474987204386231704636235", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1633473254268899616895026902" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "5361094837579446782787584", - "expectedQty": "5296364525303774611439650", + "inputIndex": 2, + "inputQty": "4255341622767331477291008", + "expectedQty": "4320107662438940794706221", "reserves": [ - "7096859452466346747449323", - "62330817210428905099003423", - "63089104841506043167351114" + "1141267919595311021098159956", + "228152461166851103379954797", + "274191746790312275027908365" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "363561642988548915200", - "77356408841079046144", - "9503175697610952704" - ], - "expectedQty": "493625487558503813784", - "swapFee": "296353104397740932", - "reserves": [ - "7096495890823358198534123", - "62330739854020064019957279", - "63089095338330345556398410" - ], - "mAssetSupply": "131770858104202447812262101" - }, { "type": "swap", - "inputIndex": 2, - "inputQty": "6081378659658130432", - "outputIndex": 0, - "expectedQty": "5347278296208106677", - "swapFee": "3601597008266087", + "inputIndex": 1, + "inputQty": "432678209440377667584", + "outputIndex": 2, + "expectedQty": "435597911996503753900", + "swapFee": "265420730748437192", "reserves": [ - "7096490543545061990427446", - "62330739854020064019957279", - "63089101419709005214528842" + "1141267919595311021098159956", + "228152893845060543757622381", + "274191311192400278524154465" ], - "mAssetSupply": "131770858107804044820528188", + "mAssetSupply": "1637793362196759288438170315", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "142786452021625906790", + "inputQty": "214813875190875728694476", "expectedQtys": [ - "7687426007935138306", - "67521114515325845782", - "68342625991698964325" + "149644419156292696811730", + "29915681227925813111578", + "35952293757313824622018" ], - "redemptionFee": "42835935606487772", + "redemptionFee": "64444162557262718608", "reserves": [ - "7096482856119054055289140", - "62330672332905548694111497", - "63089033077083013515564517" + "1141118275176154728401348226", + "228122978163832617944510803", + "274155358898642964699532447" ], - "mAssetSupply": "131770715364187958801109170" + "mAssetSupply": "1637578612765730969972194447" }, { - "type": "mintMulti", - "inputQtys": [ - "84333471158043131904", - "76656608764149760000", - "31401028980379004928" + "type": "redeemMasset", + "inputQty": "1784640723499864373067776", + "expectedQtys": [ + "1243222879497435112832643", + "248534890696225072873250", + "298686141598256939232508" ], - "expectedQty": "201287698711154053494", + "redemptionFee": "535392217049959311920", "reserves": [ - "7096567189590212098421044", - "62330748989514312843871497", - "63089064478111993894569445" + "1139875052296657293288515583", + "227874443273136392871637553", + "273856672757044707760299939" ], - "mAssetSupply": "131770916651886669955162664" + "mAssetSupply": "1635794507434448155558438591" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "10096508080783058010112", - "expectedQty": "11325449493327245629450", + "inputQty": "18522657789748723601899520", + "expectedQty": "18755451430699507903261784", + "swapFee": "11113594673849234161139", "reserves": [ - "7106663697670995156431156", - "62330748989514312843871497", - "63089064478111993894569445" - ] + "1121119600865957785385253799", + "227874443273136392871637553", + "273856672757044707760299939" + ], + "mAssetSupply": "1617282963239373281190700210" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "250371736982303902007296", - "expectedQty": "247128151492366829353343", + "inputIndex": 1, + "inputQty": "1772858013845646064222208", + "expectedQty": "1810769457321014238866759", "reserves": [ - "7106663697670995156431156", - "62330748989514312843871497", - "63339436215094297796576741" + "1121119600865957785385253799", + "229647301286982038935859761", + "273856672757044707760299939" ] }, { "type": "mintMulti", "inputQtys": [ - "4530684011909052394110976", - "1804138747896587935023104", - "1155549730452044714606592" + "3088998366386074943488", + "355713401365813592064", + "1976905724129778597888" ], - "expectedQty": "7809021939198584589744503", + "expectedQty": "5417993933918659585798", "reserves": [ - "11637347709580047550542132", - "64134887737410900778894601", - "64494985945546342511183333" + "1121122689864324171460197287", + "229647657000383404749451825", + "273858649662768837538897827" ], - "mAssetSupply": "139838392192070948619889960" + "mAssetSupply": "1619099150690628214089152767" }, { - "type": "redeemBassets", - "inputQtys": [ - "690012551355442397184", - "147464554101161967616", - "227896748406304571392" + "type": "redeemMasset", + "inputQty": "261033877264300378370867", + "expectedQtys": [ + "180695053294720037221078", + "37013072695650861963372", + "44138704660435187493388" ], - "expectedQty": "1096023150723750676584", - "swapFee": "658008695651641390", + "redemptionFee": "78310163179290113511", "reserves": [ - "11636657697028692108144948", - "64134740272856799616926985", - "64494758048797936206611941" + "1120941994811029451422976209", + "229610643927687753887488453", + "273814510958108402351404439" ], - "mAssetSupply": "139837296168920224869213376" + "mAssetSupply": "1618838195123527093000895411" }, { - "type": "redeemMasset", - "inputQty": "92868994240583235639705", - "expectedQtys": [ - "7725839392167252431123", - "42580499977495458829895", - "42819523895502146475269" - ], - "redemptionFee": "27860698272174970691", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9002770220119055493234688", + "expectedQty": "9113049551247737319147934", + "swapFee": "5401662132071433295940", "reserves": [ - "11628931857636524855713825", - "64092159772879304158097090", - "64451938524902434060136672" + "1111828945259781714103828275", + "229610643927687753887488453", + "273814510958108402351404439" ], - "mAssetSupply": "139744455035377913808544362" + "mAssetSupply": "1609840826565540108940956663" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "84668326912488028241920", - "outputIndex": 2, - "expectedQty": "84622071329140138934905", - "swapFee": "50409540869411335257", + "type": "mintMulti", + "inputQtys": [ + "7440400386708050968313856", + "5814048729555959327752192", + "8936714464937200423272448" + ], + "expectedQty": "22338537860745219596383196", "reserves": [ - "11628931857636524855713825", - "64176828099791792186339010", - "64367316453573293921201767" + "1119269345646489765072142131", + "235424692657243713215240645", + "282751225423045602774676887" ], - "mAssetSupply": "139744505444918783219879619", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1632179364426285328537339859" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "2580223499062260736", - "expectedQty": "2598821464163738968", - "swapFee": "1548134099437356", + "inputIndex": 1, + "inputQty": "9635580424320905641984", + "expectedQty": "9441311593629333809201", + "swapFee": "5781348254592543385", "reserves": [ - "11628931857636524855713825", - "64176828099791792186339010", - "64367313854751829757462799" + "1119269345646489765072142131", + "235415251345650083881431444", + "282751225423045602774676887" ], - "mAssetSupply": "139744502866243418257056239" + "mAssetSupply": "1632169734627209262224241260" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "260051289406377029533696", - "expectedQty": "247596090805032604004363", - "swapFee": "156030773643826217720", + "type": "redeemMasset", + "inputQty": "493423476844774247786086", + "expectedQtys": [ + "338266344614674849906149", + "71147357737419253517751", + "85453268090647915699849" + ], + "redemptionFee": "148027043053432274335", "reserves": [ - "11381335766831492251709462", - "64176828099791792186339010", - "64367313854751829757462799" + "1118931079301875090222235982", + "235344103987912664627913693", + "282665772154954954858977038" ], - "mAssetSupply": "139484607607610685053740263" + "mAssetSupply": "1631676459177407541408729509" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1387200622106945519616", - "expectedQty": "1397412487300796675497", - "swapFee": "832320373264167311", + "type": "redeemBassets", + "inputQtys": [ + "4536685657744945249779712", + "13304270784139375071461376", + "10292832109457068708069376" + ], + "expectedQty": "28499852044216543343797035", + "swapFee": "17110177332929683816568", "reserves": [ - "11381335766831492251709462", - "64175430687304491389663513", - "64367313854751829757462799" + "1114394393644130144972456270", + "222039833203773289556452317", + "272372940045497886150907662" ], - "mAssetSupply": "139483221239308951372387958" + "mAssetSupply": "1603176607133190998064932474" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "339267518656313468911616", - "806375126166599349829632", - "692179837694718334992384" + "43100514414891327488", + "9228827930493636608", + "53258942419298484224" ], - "expectedQty": "1843360548133599214385137", - "swapFee": "1106680337082408974015", + "expectedQty": "105996768173020948068", "reserves": [ - "11042068248175178782797846", - "63369055561137892039833881", - "63675134017057111422470415" + "1114394436744644559863783758", + "222039842432601220050088925", + "272372993304440305449391886" ], - "mAssetSupply": "137639860691175352158002821" + "mAssetSupply": "1603176713129959171085880542" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "6936792475176538112", - "outputIndex": 1, - "expectedQty": "7356728303436497725", - "swapFee": "4381102914896124", + "inputIndex": 1, + "inputQty": "10853397503295947184013312", + "outputIndex": 0, + "expectedQty": "11218766011889475008209380", + "swapFee": "6651265813235783847562", "reserves": [ - "11042075184967653959335958", - "63369048204409588603336156", - "63675134017057111422470415" + "1103175670732755084855574378", + "232893239935897167234102237", + "272372993304440305449391886" ], - "mAssetSupply": "137639860695556455072898945", + "mAssetSupply": "1603183364395772406869728104", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "119146540725302835806208", - "expectedQtys": [ - "9555592155883734105932", - "54838313433350190754007", - "55103194005286862922249" - ], - "redemptionFee": "35743962217590850741", + "type": "swap", + "inputIndex": 2, + "inputQty": "530340530242161748213760", + "outputIndex": 0, + "expectedQty": "544101205923042258792775", + "swapFee": "322618224079011257687", "reserves": [ - "11032519592811770225230026", - "63314209890976238412582149", - "63620030823051824559548166" + "1102631569526832042596781603", + "232893239935897167234102237", + "272903333834682467197605646" ], - "mAssetSupply": "137520749898793369827943478" + "mAssetSupply": "1603183687013996485880985791", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "128273268040865611776", - "82476014749068673024", - "824749138913101086720" - ], - "expectedQty": "1034888742353717590212", - "swapFee": "621306029029648343", + "type": "mint", + "inputIndex": 2, + "inputQty": "4018908022829907756187648", + "expectedQty": "4073461535135533964898514", "reserves": [ - "11032391319543729359618250", - "63314127414961489343909125", - "63619206073912911458461446" - ], - "mAssetSupply": "137519715010051016110353266" + "1102631569526832042596781603", + "232893239935897167234102237", + "276922241857512374953793294" + ] }, { - "type": "redeemMasset", - "inputQty": "44302221551847737602867", - "expectedQtys": [ - "3553038316113809060071", - "20390640083456863370433", - "20488892233266198581943" - ], - "redemptionFee": "13290666465554321280", + "type": "mint", + "inputIndex": 0, + "inputQty": "1099409822027257791643648", + "expectedQty": "1085950185537109142680922", "reserves": [ - "11028838281227615550558179", - "63293736774878032480538692", - "63598717181679645259879503" - ], - "mAssetSupply": "137475426079165633927071679" + "1103730979348859300388425251", + "232893239935897167234102237", + "276922241857512374953793294" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "766949199682653934059520", - "723841536383642366902272", - "765565797234597525716992" - ], - "expectedQty": "2282883244288366117024581", + "type": "mint", + "inputIndex": 2, + "inputQty": "1050293374416900224", + "expectedQty": "1064330037397808525", "reserves": [ - "11795787480910269484617699", - "64017578311261674847440964", - "64364282978914242785596495" - ], - "mAssetSupply": "139758309323454000044096260" + "1103730979348859300388425251", + "232893239935897167234102237", + "276922242907805749370693518" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1283314679504617603072", + "expectedQty": "1308761723931696106176", + "reserves": [ + "1103730979348859300388425251", + "232894523250576671851705309", + "276922242907805749370693518" + ] }, { "type": "redeemBassets", "inputQtys": [ - "707461544510893568", - "762205974685666304", - "240429442241494272" + "802514957583144049442816", + "1047705521311683851583488", + "1041811555909781770207232" ], - "expectedQty": "1735863250674731822", - "swapFee": "1042143236346647", + "expectedQty": "2917016158357657014785585", + "swapFee": "1751260451285365428128", "reserves": [ - "11795786773448724973724131", - "64017577549055700161774660", - "64364282738484800544102223" + "1102928464391276156338982435", + "231846817729264988000121821", + "275880431351895967600486286" ], - "mAssetSupply": "139758307587590749369364438" + "mAssetSupply": "1605427392402365441067694343" }, { "type": "redeemMasset", - "inputQty": "178588797429696036864", + "inputQty": "25727026180823606466969", "expectedQtys": [ - "15068609747403167042", - "81779699106819576808", - "82222600059273735143" + "17669162175985089483165", + "3714238189242294626244", + "4419666587739874579976" ], - "redemptionFee": "53576639228908811", + "redemptionFee": "7718107854247081940", "reserves": [ - "11795771704838977570557089", - "64017495769356593342197852", - "64364200515884741270367080" + "1102910795229100171249499270", + "231843103491075745705495577", + "275876011685308227725906310" ], - "mAssetSupply": "139758129052369958902236385" + "mAssetSupply": "1605401673094292471708309314" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3500796861603794432", - "expectedQty": "3525608384178460817", - "swapFee": "2100478116962276", - "reserves": [ - "11795771704838977570557089", - "64017495769356593342197852", - "64364196990276357091906263" + "type": "mintMulti", + "inputQtys": [ + "41732786154346473217589248", + "94911077237405289250029568", + "14221153260925241677316096" ], - "mAssetSupply": "139758125553673575415404229" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "969798292837728649216", - "expectedQty": "962395462512077397124", + "expectedQty": "151931675274432918133453665", "reserves": [ - "11795771704838977570557089", - "64017495769356593342197852", - "64365166788569194820555479" - ] + "1144643581383446644467088518", + "326754180728481034955525145", + "290097164946233469403222406" + ], + "mAssetSupply": "1757333348368725389841762979" }, { "type": "redeemMasset", - "inputQty": "47446202068438018424832", + "inputQty": "1007641847571811401728", "expectedQtys": [ - "4003293644090026117556", - "21726499998206250509083", - "21844493904520759714864" + "656133201475302193451", + "187302204969074430301", + "166289650919134249991" ], - "redemptionFee": "14233860620531405527", + "redemptionFee": "302292554271543420", "reserves": [ - "11791768411194887544439533", - "63995769269358387091688769", - "64343322294664674060840615" + "1144642925250245169164895067", + "326753993426276065881094844", + "290096998656582550268972415" ], - "mAssetSupply": "139711655980928270005782048" + "mAssetSupply": "1757332341029170372301904671" }, { "type": "mintMulti", "inputQtys": [ - "12654860490340265099264", - "84530115152351068160000", - "112411030549673843621888" + "216037766715025947361280", + "164227130159541409284096", + "29785716782782717362176" ], - "expectedQty": "208695060576621213234406", + "expectedQty": "409931317392298799208796", "reserves": [ - "11804423271685227809538797", - "64080299384510738159848769", - "64455733325214347904462503" + "1144858963016960195112256347", + "326918220556435607290378940", + "290126784373365332986334591" ], - "mAssetSupply": "139920351041504891219016454" + "mAssetSupply": "1757742272346562671101113467" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "13287161295329625636864", - "expectedQty": "13185632782365094641560", + "inputIndex": 1, + "inputQty": "271056196639501416660992", + "expectedQty": "273679645759552106261873", "reserves": [ - "11804423271685227809538797", - "64080299384510738159848769", - "64469020486509677530099367" + "1144858963016960195112256347", + "327189276753075108707039932", + "290126784373365332986334591" ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "98332173752248240", - "expectedQty": "97580701877064178", + "inputQty": "4180668925925092088610816", + "expectedQty": "4234682430064875168936996", "reserves": [ - "11804423271685227809538797", - "64080299384510738159848769", - "64469020584841851282347607" + "1144858963016960195112256347", + "327189276753075108707039932", + "294307453299290425074945407" ] }, { "type": "mintMulti", "inputQtys": [ - "117635661983438178615296", - "19080630068767889555456", - "40827394273658026328064" - ], - "expectedQty": "182592942600572630824830", - "reserves": [ - "11922058933668665988154093", - "64099380014579506049404225", - "64509847979115509308675671" - ], - "mAssetSupply": "140116129714468530821547022" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "37025416377732924702720", - "11725818966669730512896", - "77416932263630557151232" + "7180390167204221419520", + "9370445609746487574528", + "9654562705056980795392" ], - "expectedQty": "127214297511036418848205", - "swapFee": "76374403148510957883", + "expectedQty": "26349743897714095132284", "reserves": [ - "11885033517290933063451373", - "64087654195612836318891329", - "64432431046851878751524439" + "1144866143407127399333675867", + "327198647198684855194614460", + "294317107861995482055740799" ], - "mAssetSupply": "139988915416957494402698817" + "mAssetSupply": "1762276984166284812471444620" }, { - "type": "redeemMasset", - "inputQty": "28310889347421834444", - "expectedQtys": [ - "2402868291649305691", - "12956984254927453669", - "13026689852503742358" - ], - "redemptionFee": "8493266804226550", + "type": "redeem", + "inputIndex": 0, + "inputQty": "102769895720253688526143488", + "expectedQty": "103640138594507781220204820", + "swapFee": "61661937432152213115686", "reserves": [ - "11885031114422641414145682", - "64087641238628581391437660", - "64432418020162026247782081" + "1041226004812619618113471047", + "327198647198684855194614460", + "294317107861995482055740799" ], - "mAssetSupply": "139988887114561413785090923" + "mAssetSupply": "1659568750383463276158416818" }, { "type": "mint", "inputIndex": 2, - "inputQty": "5085794920090869065318400", - "expectedQty": "5045182992489175601618068", + "inputQty": "455656703996496", + "expectedQty": "460349193032302", "reserves": [ - "11885031114422641414145682", - "64087641238628581391437660", - "69518212940252895313100481" + "1041226004812619618113471047", + "327198647198684855194614460", + "294317107862451138759737295" ] }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1405087739345866198089728", - "expectedQty": "1414496096303647285161352", - "swapFee": "843052643607519718853", - "reserves": [ - "11885031114422641414145682", - "62673145142324934106276308", - "69518212940252895313100481" - ], - "mAssetSupply": "143629825420348330708338116" - }, { "type": "redeemMasset", - "inputQty": "227209250220628725936947", + "inputQty": "1174501000610041551021670", "expectedQtys": [ - "18795392139158375058771", - "99113441791070141621735", - "109938464649029335989309" - ], - "redemptionFee": "68162775066188617781", - "reserves": [ - "11866235722283483039086911", - "62574031700533863964654573", - "69408274475603865977111172" + "736669757089267119485759", + "231493784094615824927333", + "208230020527835098601397" ], - "mAssetSupply": "143402684332902768171018950" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "351916537988393784573952", - "outputIndex": 2, - "expectedQty": "371592979015893521472555", - "swapFee": "221273767818000418930", + "redemptionFee": "352350300183012465306", "reserves": [ - "12218152260271876823660863", - "62574031700533863964654573", - "69036681496587972455638617" + "1040489335055530350993985288", + "326967153414590239369687127", + "294108877841923303661135898" ], - "mAssetSupply": "143402905606670586171437880", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1658394601733613766812892756" }, { "type": "mint", "inputIndex": 1, - "inputQty": "15468867864829553016832", - "expectedQty": "15362081121980420789645", + "inputQty": "42157636103512045557645312", + "expectedQty": "42431177696844857072080708", "reserves": [ - "12218152260271876823660863", - "62589500568398693517671405", - "69036681496587972455638617" + "1040489335055530350993985288", + "369124789518102284927332439", + "294108877841923303661135898" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "751196882554270162878464", - "59723240041402605764608", - "1353242316068676574380032" + "5521237122844283904", + "6936966304691844096", + "218655137571406080" ], - "expectedQty": "2186171328623236388993194", + "expectedQty": "12674227492224086535", + "swapFee": "7609101956508356", "reserves": [ - "12969349142826146986539327", - "62649223808440096123436013", - "70389923812656649030018649" + "1040489329534293228149701384", + "369124782581135980235488343", + "294108877623268166089729818" ], - "mAssetSupply": "145604439016415802981220719" + "mAssetSupply": "1700825766756231131660886929" }, { "type": "redeemBassets", "inputQtys": [ - "713414712050158141440", - "113067345378719285248", - "1043725372492598870016" + "520532769569969143808", + "916125071035715158016", + "812511185586659262464" ], - "expectedQty": "1891374838180156154395", - "swapFee": "1135506206632072936", + "expectedQty": "2258741087012696103554", + "swapFee": "1356058287179925617", "reserves": [ - "12968635728114096828397887", - "62649110741094717404150765", - "70388880087284156431148633" + "1040488809001523658180557576", + "369123866456064944520330327", + "294108065112082579430467354" ], - "mAssetSupply": "145602547641577622825066324" + "mAssetSupply": "1700823508015144118964783375" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "449612499335693467648", - "expectedQty": "468537306998840218113", + "inputIndex": 1, + "inputQty": "7671541760626345415540736", + "expectedQty": "7711799770084099524258796", "reserves": [ - "12969085340613432521865535", - "62649110741094717404150765", - "70388880087284156431148633" + "1040488809001523658180557576", + "376795408216691289935871063", + "294108065112082579430467354" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "62082496002942490902528", - "expectedQty": "62444825281709417320676", - "swapFee": "37249497601765494541", + "type": "redeemBassets", + "inputQtys": [ + "75942091783386103808", + "16402678693668155392", + "53918249786247159808" + ], + "expectedQty": "146344337901469515177", + "swapFee": "87859318331880837", "reserves": [ - "12969085340613432521865535", - "62586665915813007986830089", - "70388880087284156431148633" + "1040488733059431874794453768", + "376795391814012596267715671", + "294108011193832793183307546" ], - "mAssetSupply": "145540970932379280939876450" + "mAssetSupply": "1708535161440890317019526994" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "10987424713511792541696", - "expectedQty": "10901739495198960097530", + "type": "mintMulti", + "inputQtys": [ + "35261082943649838998224896", + "13073116196313291391238144", + "4077224154902271948226560" + ], + "expectedQty": "52251858726178342581480367", "reserves": [ - "12969085340613432521865535", - "62586665915813007986830089", - "70399867511997668223690329" - ] + "1075749816003081713792678664", + "389868508010325887658953815", + "298185235348735065131534106" + ], + "mAssetSupply": "1760787020167068659601007361" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4859810099250831961358336", - "expectedQty": "4886236910503038591957060", - "swapFee": "2915886059550499176815", + "type": "mintMulti", + "inputQtys": [ + "164776327748966108102656", + "278651925668810691969024", + "168645378678465362919424" + ], + "expectedQty": "614082098116607991655937", "reserves": [ - "12969085340613432521865535", - "57700429005309969394873029", - "70399867511997668223690329" + "1075914592330830679900781320", + "390147159935994698350922839", + "298353880727413530494453530" ], - "mAssetSupply": "140694978458683198437792459" + "mAssetSupply": "1761401102265185267592663298" }, { "type": "swap", "inputIndex": 1, - "inputQty": "2104247774993155620864", + "inputQty": "6842716576383592562688", "outputIndex": 0, - "expectedQty": "2012136580843626651694", - "swapFee": "1255466447672743105", + "expectedQty": "6926306597897076192223", + "swapFee": "4126208164974854923", "reserves": [ - "12967073204032588895213841", - "57702533253084962550493893", - "70399867511997668223690329" + "1075907666024232782824589097", + "390154002652571081943485527", + "298353880727413530494453530" ], - "mAssetSupply": "140694979714149646110535564", + "mAssetSupply": "1761401106391393432567518221", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1630791209370837495840768", + "expectedQty": "1621630230357202998760972", + "swapFee": "978474725622502497504", + "reserves": [ + "1075907666024232782824589097", + "388532372422213878944724555", + "298353880727413530494453530" + ], + "mAssetSupply": "1759771293656748217574174957" + }, { "type": "mintMulti", "inputQtys": [ - "2073149076810095965241344", - "3157830757113242176192512", - "3416648239180972986204160" + "33631279872626613288960", + "38066128835152711778304", + "7650700682545335369728" ], - "expectedQty": "8679011459173403564433965", + "expectedQty": "79366620994252428913395", "reserves": [ - "15040222280842684860455185", - "60860364010198204726686405", - "73816515751178641209894489" + "1075941297304105409437878057", + "388570438551049031656502859", + "298361531428096075829823258" ], - "mAssetSupply": "149373991173323049674969529" + "mAssetSupply": "1759850660277742470003088352" }, { "type": "swap", "inputIndex": 2, - "inputQty": "604256524786071936", - "outputIndex": 0, - "expectedQty": "580821642946516209", - "swapFee": "359969922095128", + "inputQty": "407561306536590467661824", + "outputIndex": 1, + "expectedQty": "409762125633087357051509", + "swapFee": "247257188391595325796", "reserves": [ - "15040221700021041913938976", - "60860364010198204726686405", - "73816516355435165995966425" + "1075941297304105409437878057", + "388160676425415944299451350", + "298769092734632666297485082" ], - "mAssetSupply": "149373991173683019597064657", + "mAssetSupply": "1759850907534930861598414148", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "15493800562603629477888", - "expectedQty": "15595641456591438958644", - "swapFee": "9296280337562177686", + "type": "redeemBassets", + "inputQtys": [ + "15587262947552204800", + "3240357738790700544", + "19269565829128564736" + ], + "expectedQty": "38207190555594127705", + "swapFee": "22938077179664275", "reserves": [ - "15040221700021041913938976", - "60860364010198204726686405", - "73800920713978574557007781" + "1075941281716842461885673257", + "388160673185058205508750806", + "298769073465066837168920346" ], - "mAssetSupply": "149358506669400753529764455" + "mAssetSupply": "1759850869327740306004286443" }, { - "type": "mintMulti", - "inputQtys": [ - "581023652886820474060800", - "463304124875009622540288", - "195336236133105967038464" - ], - "expectedQty": "1254194067930369616907423", + "type": "swap", + "inputIndex": 2, + "inputQty": "1175715204045111872716800", + "outputIndex": 0, + "expectedQty": "1197215890258554125927405", + "swapFee": "713226896670277552538", "reserves": [ - "15621245352907862387999776", - "61323668135073214349226693", - "73996256950111680524046245" + "1074744065826583907759745852", + "388160673185058205508750806", + "299944788669111949041637146" ], - "mAssetSupply": "150612700737331123146671878" + "mAssetSupply": "1759851582554636976281838981", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "3061318999441719217356", + "inputQty": "1296777218242898601338470", "expectedQtys": [ - "317418574098975519973", - "1246076792099696532096", - "1503579633962643965227" + "791706256783959249987513", + "285937129935891431988696", + "220953223590438674900539" ], - "redemptionFee": "918395699832515765", + "redemptionFee": "389033165472869580401", + "reserves": [ + "1073952359569799948509758339", + "387874736055122314076762110", + "299723835445521510366736607" + ], + "mAssetSupply": "1758555194369559550550080912" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "18046978859725993984", + "outputIndex": 2, + "expectedQty": "17931136828022576228", + "swapFee": "10883333672508171", "reserves": [ - "15620927934333763412479803", - "61322422058281114652694597", - "73994753370477717880081018" + "1073952359569799948509758339", + "387874754102101173802756094", + "299723817514384682344160379" ], - "mAssetSupply": "150609640336727381259970287" + "mAssetSupply": "1758555194380442884222589083", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "97328800813551596863488", - "expectedQty": "96661767276503295664137", + "inputIndex": 0, + "inputQty": "58849320025727049728", + "expectedQty": "58396595819837763941", "reserves": [ - "15620927934333763412479803", - "61322422058281114652694597", - "74092082171291269476944506" + "1073952418419119974236808067", + "387874754102101173802756094", + "299723817514384682344160379" ] }, { - "type": "mintMulti", - "inputQtys": [ - "47896074538309109415936", - "75742689934343812415488", - "13178755204630943105024" + "type": "swap", + "inputIndex": 0, + "inputQty": "44982343692438568960", + "outputIndex": 1, + "expectedQty": "44383476918595221839", + "swapFee": "26781778355767456", + "reserves": [ + "1073952463401463666675377027", + "387874709718624255207534255", + "299723817514384682344160379" + ], + "mAssetSupply": "1758555252803820482416120480", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "5516159150420255736384716", + "expectedQtys": [ + "3367716465464166507848381", + "1216303412833872557539366", + "939878504620221124326111" ], - "expectedQty": "137811466196867750637165", + "redemptionFee": "1654847745126076720915", "reserves": [ - "15668824008872072521895739", - "61398164748215458465110085", - "74105260926495900420049530" + "1070584746935999500167528646", + "386658406305790382649994889", + "298783939009764461219834268" ], - "mAssetSupply": "150844113570200752306271589" + "mAssetSupply": "1753040748501145352756456679" }, { "type": "redeemBassets", "inputQtys": [ - "358625592558683328", - "1266710835560874496", - "1086337821789494656" + "7880460107734553600", + "5300927853434876928", + "7090944846994375680" ], - "expectedQty": "2708995215256200750", - "swapFee": "1626372952925475", + "expectedQty": "20316558581624259121", + "swapFee": "12197253501075200", "reserves": [ - "15668823650246479963212411", - "61398163481504622904235589", - "74105259840158078630554874" + "1070584739055539392432975046", + "386658401004862529215117961", + "298783931918819614225458588" ], - "mAssetSupply": "150844110861205537050070839" + "mAssetSupply": "1753040728184586771132197558" }, { - "type": "mintMulti", - "inputQtys": [ - "107966267202964701184", - "52069553506337128448", - "36679802944011296768" + "type": "redeemMasset", + "inputQty": "7997034356800351436", + "expectedQtys": [ + "4882336360818449196", + "1763332038627188697", + "1362585885655782588" ], - "expectedQty": "199469385945077590547", + "redemptionFee": "2399110307040105", "reserves": [ - "15668931616513682927913595", - "61398215551058129241364037", - "74105296519961022641851642" + "1070584734173203031614525850", + "386658399241530490587929264", + "298783930556233728569676000" ], - "mAssetSupply": "150844310330591482127661386" + "mAssetSupply": "1753040720189951524638886227" }, { "type": "redeemBassets", "inputQtys": [ - "2405430777009182", - "1050088749998041", - "1258201124468001" + "467995471535099281408", + "264075111461308628992", + "272667637948452700160" ], - "expectedQty": "4772584223265004", - "swapFee": "2865269695776", + "expectedQty": "1005476526588590833128", + "swapFee": "603648104816044126", "reserves": [ - "15668931614108252150904413", - "61398215550008040491365996", - "74105296518702821517383641" + "1070584266177731496515244442", + "386658135166419029279300272", + "298783657888595780116975840" ], - "mAssetSupply": "150844310325818897904396382" + "mAssetSupply": "1753039714713424936048053099" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "571295421332119057596416", - "expectedQty": "567369283801348658514699", - "reserves": [ - "15668931614108252150904413", - "61398215550008040491365996", - "74676591940034940574980057" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "7514934682521342836736", - "5472695652034968289280", - "921008609261682163712" - ], - "expectedQty": "14104621442762426188804", + "type": "swap", + "inputIndex": 0, + "inputQty": "88583604382692408211537920", + "outputIndex": 1, + "expectedQty": "87023026259437798375202609", + "swapFee": "52716238366901834495066", "reserves": [ - "15676446548790773493741149", - "61403688245660075459655276", - "74677512948644202257143769" + "1159167870560423904726782362", + "299635108906981230904097663", + "298783657888595780116975840" ], - "mAssetSupply": "151425784231063008989099885" + "mAssetSupply": "1753092430951791837882548165", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "82919519489353312108544", - "187439966147157686222848", - "256103225243460259807232" + "type": "redeemMasset", + "inputQty": "125675143463074686566", + "expectedQtys": [ + "83073135382183237241", + "21473704197348476363", + "21412683953846182654" ], - "expectedQty": "526322671328608850361806", - "swapFee": "315983192712792986008", + "redemptionFee": "37702543038922405", "reserves": [ - "15593527029301420181632605", - "61216248279512917773432428", - "74421409723400741997336537" + "1159167787487288522543545121", + "299635087433277033555621300", + "298783636475911826270793186" ], - "mAssetSupply": "150899461559734400138738079" + "mAssetSupply": "1753092305314350917846784004" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "24265815115928961024000", - "expectedQty": "24149817379755709985142", + "inputIndex": 0, + "inputQty": "1869897111283799936729088", + "expectedQty": "1850581164030429327994035", "reserves": [ - "15593527029301420181632605", - "61240514094628846734456428", - "74421409723400741997336537" + "1161037684598572322480274209", + "299635087433277033555621300", + "298783636475911826270793186" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "72415090783890063360", - "40873546440496259072", - "7456285254642150400" + "2049117201186584788992", + "1609841102577847238656", + "3788396827018899456" ], - "expectedQty": "122707601263850705600", + "expectedQty": "3661691958570127086805", + "swapFee": "2198334175647464730", "reserves": [ - "15593599444392204071695965", - "61240554968175287230715500", - "74421417179685996639486937" + "1161035635481371135895485217", + "299633477592174455708382644", + "298783632687514999251893730" ], - "mAssetSupply": "150923734084715419699428821" + "mAssetSupply": "1754939224786422777047691234" }, { - "type": "mint", + "type": "redeem", + "inputIndex": 2, + "inputQty": "23245563477410243785261056", + "expectedQty": "22915061949071185908002640", + "swapFee": "13947338086446146271156", + "reserves": [ + "1161035635481371135895485217", + "299633477592174455708382644", + "275868570738443813343891090" + ], + "mAssetSupply": "1731707608647098979408701334" + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "5761389104136559001600", - "expectedQty": "5733835735423018959601", + "inputQty": "136749514152734219042816", + "outputIndex": 2, + "expectedQty": "136299347773259154342817", + "swapFee": "83069940982457076552", "reserves": [ - "15593599444392204071695965", - "61246316357279423789717100", - "74421417179685996639486937" - ] + "1161035635481371135895485217", + "299770227106327189927425460", + "275732271390670554189548273" + ], + "mAssetSupply": "1731707691717039961865777886", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "3741572968818105384960", - "3366640601871698362368", - "5742539767279283863552" + "129463369717745799135232", + "421303752360643243540480", + "488333822891060566687744" ], - "expectedQty": "12909122862025696712534", - "swapFee": "7750123791490312214", + "expectedQty": "1050348354519760646408467", + "swapFee": "630587365130934948814", "reserves": [ - "15589857871423385966311005", - "61242949716677552091354732", - "74415674639918717355623385" + "1160906172111653390096349985", + "299348923353966546683884980", + "275243937567779493622860529" ], - "mAssetSupply": "150916558797588817021675888" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1130749409962353475190784", - "expectedQty": "1125248872664016411786710", - "reserves": [ - "15589857871423385966311005", - "62373699126639905566545516", - "74415674639918717355623385" - ] + "mAssetSupply": "1730657343362520201219369419" }, { "type": "mintMulti", "inputQtys": [ - "134422606125275581251584", - "252670956265928965226496", - "556253487561346539061248" + "12744091889444472832", + "6450183200454246400", + "23702755388257804288" ], - "expectedQty": "942429841678422459618116", + "expectedQty": "43198406960356626146", "reserves": [ - "15724280477548661547562589", - "62626370082905834531772012", - "74971928127480063894684633" + "1160906184855745279540822817", + "299348929804149747138131380", + "275243961270534881880664817" ], - "mAssetSupply": "152984237511931255893080714" + "mAssetSupply": "1730657386560927161575995565" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "75609208300176505044992", - "outputIndex": 0, - "expectedQty": "72786297250724347575186", - "swapFee": "45053172414955639062", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8208643588767478139846656", + "expectedQty": "8294459207414250951301267", + "swapFee": "4925186153260486883907", "reserves": [ - "15651494180297937199987403", - "62626370082905834531772012", - "75047537335780240399729625" + "1152611725648331028589521550", + "299348929804149747138131380", + "275243961270534881880664817" ], - "mAssetSupply": "152984282565103670848719776", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1722453668158312943923032816" }, { - "type": "redeemBassets", - "inputQtys": [ - "2877037449469473849344", - "305567402055151225143296", - "354052973358602858266624" + "type": "redeemMasset", + "inputQty": "18903988213397851419443", + "expectedQtys": [ + "12646158321360010679366", + "3284379184589326558918", + "3019905692237833716650" ], - "expectedQty": "658637592230481724445440", - "swapFee": "395419807222622608232", + "redemptionFee": "5671196464019355425", "reserves": [ - "15648617142848467726138059", - "62320802680850683306628716", - "74693484362421637541463001" + "1152599079490009668578842184", + "299345645424965157811572462", + "275240941364842644046948167" ], - "mAssetSupply": "152325644972873189124274336" + "mAssetSupply": "1722434769841296010090968798" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "379678039819119855927296", - "expectedQty": "381309972315354423122675", - "swapFee": "227806823891471913556", + "type": "swap", + "inputIndex": 2, + "inputQty": "17825255716135779696640", + "outputIndex": 1, + "expectedQty": "17862687587016647434966", + "swapFee": "10855434013113148534", "reserves": [ - "15648617142848467726138059", - "61939492708535328883506041", - "74693484362421637541463001" + "1152599079490009668578842184", + "299327782737378141164137496", + "275258766620558779826644807" ], - "mAssetSupply": "151946194739877960740260596" + "mAssetSupply": "1722434780696730023204117332", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "16398038127082471424000", - "expectedQty": "15899353605963801974308", - "swapFee": "9838822876249482854", + "type": "mint", + "inputIndex": 1, + "inputQty": "8603230956253305896960", + "expectedQty": "8708638548897368046840", "reserves": [ - "15632717789242503924163751", - "61939492708535328883506041", - "74693484362421637541463001" - ], - "mAssetSupply": "151929806540573754518319450" + "1152599079490009668578842184", + "299336385968334394470034456", + "275258766620558779826644807" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "155722034060913989910528", - "expectedQty": "160467655743962365694290", + "inputIndex": 1, + "inputQty": "3341024993584346038272", + "expectedQty": "3381957537050491585789", "reserves": [ - "15788439823303417914074279", - "61939492708535328883506041", - "74693484362421637541463001" + "1152599079490009668578842184", + "299339726993327978816072728", + "275258766620558779826644807" ] }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "43278221238692913539448832", + "expectedQty": "42482491287188270491405537", + "swapFee": "25966932743215748123669", + "reserves": [ + "1152599079490009668578842184", + "299339726993327978816072728", + "232776275333370509335239270" + ], + "mAssetSupply": "1679194616986866273272424798" + }, { "type": "redeemBassets", "inputQtys": [ - "3981186490806089809920", - "2887965639484446867456", - "689565743348088700928" + "129035321206663741440", + "389338490175130894336", + "290755566019137306624" ], - "expectedQty": "7660318191410747451156", - "swapFee": "4598950285017458946", + "expectedQty": "818650819858969344165", + "swapFee": "491485383145268767", "reserves": [ - "15784458636812611824264359", - "61936604742895844436638585", - "74692794796678289452762073" + "1152598950454688461915100744", + "299339337654837803685178392", + "232775984577804490197932646" ], - "mAssetSupply": "152082613878126306136562584" + "mAssetSupply": "1679193798336046414303080633" }, { "type": "redeemBassets", "inputQtys": [ - "75781981854889082880", - "127107717675694915584", - "98539279085604093952" + "56460827928466947047424", + "90453635355049283551232", + "32104477494910407147520" ], - "expectedQty": "302433444515039643569", - "swapFee": "181569008113892121", + "expectedQty": "180130702726509568866462", + "swapFee": "108143307620478028136", "reserves": [ - "15784382854830756935181479", - "61936477635178168741723001", - "74692696257399203848668121" + "1152542489626759994968053320", + "299248884019482754401627160", + "232743880100309579790785126" ], - "mAssetSupply": "152082311444681791096919015" + "mAssetSupply": "1679013667633319904734214171" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2793862525138086731448320", - "expectedQty": "2810907533309123342153910", - "swapFee": "1676317515082852038868", + "type": "redeemMasset", + "inputQty": "885857526804038811648", + "expectedQtys": [ + "607905797636674701989", + "157838112840993757571", + "122760206544100856237" + ], + "redemptionFee": "265757258041211643", "reserves": [ - "15784382854830756935181479", - "61936477635178168741723001", - "71881788724090080506514211" + "1152541881720962358293351331", + "299248726181369913407869589", + "232743757340103035689928889" ], - "mAssetSupply": "149290125237058787217509563" + "mAssetSupply": "1679012782041550358736614166" }, { - "type": "mintMulti", - "inputQtys": [ - "3157061380972209256792064", - "3620483328787870436556800", - "206660566276301228343296" - ], - "expectedQty": "7044466801566168141406208", + "type": "swap", + "inputIndex": 2, + "inputQty": "94605489684373504000", + "outputIndex": 1, + "expectedQty": "95438020454831670745", + "swapFee": "58001101581165709", "reserves": [ - "18941444235802966191973543", - "65556960963966039178279801", - "72088449290366381734857507" + "1152541881720962358293351331", + "299248630743349458576198844", + "232743851945592720063432889" ], - "mAssetSupply": "156334592038624955358915771" + "mAssetSupply": "1679012782099551460317779875", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1535334819880427008819200", - "2172012816788611445817344", - "2220892252646325882978304" + "1206838885323706965426176", + "858150910972817836081152", + "1318045719165358089175040" ], - "expectedQty": "5939039462671336441638281", + "expectedQty": "3407509992103528803894379", + "swapFee": "2045733435323311269098", "reserves": [ - "20476779055683393200792743", - "67728973780754650624097145", - "74309341543012707617835811" + "1151335042835638651327925155", + "298390479832376640740117692", + "231425806226427361974257849" ], - "mAssetSupply": "162273631501296291800554052" + "mAssetSupply": "1675605272107447931513885496" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1166430722694941033627648", - "expectedQty": "1171398714914927370459967", - "swapFee": "699858433616964620176", - "reserves": [ - "20476779055683393200792743", - "67728973780754650624097145", - "73137942828097780247375844" + "type": "redeemBassets", + "inputQtys": [ + "15172718138652673179648", + "6500608228129778958336", + "13166751980457144877056" ], - "mAssetSupply": "161107900637034967731546580" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "4627329123011839655936", - "expectedQty": "4646749317087584819881", - "swapFee": "2776397473807103793", + "expectedQty": "35021572928763866440592", + "swapFee": "21025559092713948233", "reserves": [ - "20476779055683393200792743", - "67728973780754650624097145", - "73133296078780692662555963" + "1151319870117499998654745507", + "298383979224148510961159356", + "231412639474446904829380793" ], - "mAssetSupply": "161103276084309429698994437" + "mAssetSupply": "1675570250534519167647444904" }, { "type": "redeemMasset", - "inputQty": "2554307868741715558", + "inputQty": "130808437274864489857024", "expectedQtys": [ - "324563894291592957", - "1073527209864270437", - "1159187551575452872" + "89854288269702341348668", + "23287255592601960544254", + "18060504779151898267790" ], - "redemptionFee": "766292360622514", + "redemptionFee": "39242531182459346957", "reserves": [ - "20476778731119498909199786", - "67728972707227440759826708", - "73133294919593141087103091" + "1151230015829230296313396839", + "298360691968555909000615102", + "231394578969667752931113003" ], - "mAssetSupply": "161103273530767853317901393" + "mAssetSupply": "1675439481339775485616934837" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "46273594511485625696256", - "expectedQty": "46467672199998148410590", - "swapFee": "27764156706891375417", - "reserves": [ - "20476778731119498909199786", - "67728972707227440759826708", - "73086827247393142938692501" + "type": "redeemBassets", + "inputQtys": [ + "2165450590324352000", + "18670267909775608", + "609473208018539136" ], - "mAssetSupply": "161057027700413074583580554" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "264428702373169130897408", - "expectedQty": "259305485162991653995523", - "swapFee": "158657221423901478538", + "expectedQty": "2780302384689388640", + "swapFee": "1669182940577979", "reserves": [ - "20217473245956507255204263", - "67728972707227440759826708", - "73086827247393142938692501" + "1151230013663779705989044839", + "298360691949885641090839494", + "231394578360194544912573867" ], - "mAssetSupply": "160792757655261329354161684" + "mAssetSupply": "1675439478559473100927546197" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "230039188477247258624", - "expectedQty": "234500583498088408905", + "inputIndex": 1, + "inputQty": "3554855706625853358080", + "expectedQty": "3598744086692227825226", "reserves": [ - "20217703285144984502462887", - "67728972707227440759826708", - "73086827247393142938692501" + "1151230013663779705989044839", + "298364246805592266944197574", + "231394578360194544912573867" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "144102187238844268544", - "expectedQty": "143403989834958743583", + "inputIndex": 0, + "inputQty": "142151372942763572068352", + "expectedQty": "140382129727632013151752", "reserves": [ - "20217703285144984502462887", - "67728972707227440759826708", - "73086971349580381782961045" + "1151372165036722469561113191", + "298364246805592266944197574", + "231394578360194544912573867" ] }, { "type": "redeemMasset", - "inputQty": "165272786537695343856844", + "inputQty": "98681504002541676711116", "expectedQtys": [ - "20774728453736643442501", - "69594997839196959001770", - "75100616616981575198699" - ], - "redemptionFee": "49581835961308603157", - "reserves": [ - "20196928556691247859020386", - "67659377709388243800824938", - "73011870732963400207762346" + "67788357859434332951340", + "17566537518538142685277", + "13623621415334019716204" ], - "mAssetSupply": "160627912355132928366060485" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "792605135716938573414400", - "outputIndex": 2, - "expectedQty": "792626433011969653320597", - "swapFee": "473586621474881035787", + "redemptionFee": "29604451200762503013", "reserves": [ - "20196928556691247859020386", - "68451982845105182374239338", - "72219244299951430554441749" + "1151304376678863035228161851", + "298346680268073728801512297", + "231380954738779210892857663" ], - "mAssetSupply": "160628385941754403247096272", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1675484807533736084254315072" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7462564810570", - "19682416834897", - "1446408671835" + "1468386331629511495385088", + "1781756149480948928348160", + "1149843736750885556977664" ], - "expectedQty": "28646065266199", + "expectedQty": "4429236682270794839319599", + "swapFee": "2659137491857591458466", "reserves": [ - "20196928556698710423830956", - "68451982845124864791074235", - "72219244299952876963113584" + "1149835990347233523732776763", + "296564924118592779873164137", + "230231111002028325335879999" ], - "mAssetSupply": "160628385941783049312362471" + "mAssetSupply": "1671055570851465289414995473" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "337827109985356947128320", - "outputIndex": 2, - "expectedQty": "337783524793996920875438", - "swapFee": "201836560547419206094", + "type": "redeem", + "inputIndex": 2, + "inputQty": "252015507306531086401536", + "expectedQty": "246383467587195869393821", + "swapFee": "151209304383918651840", "reserves": [ - "20196928556698710423830956", - "68789809955110221738202555", - "71881460775158880042238146" + "1149835990347233523732776763", + "296564924118592779873164137", + "229984727534441129466486178" ], - "mAssetSupply": "160628587778343596731568565", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1670803706553463142247245777" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1355693953798272259719168", - "expectedQty": "1349234536180053298392192", + "inputQty": "6353513617476618813440", + "expectedQty": "6495008524008756638314", "reserves": [ - "20196928556698710423830956", - "68789809955110221738202555", - "73237154728957152301957314" + "1149835990347233523732776763", + "296564924118592779873164137", + "229991081048058606085299618" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "37289985037780", - "expectedQty": "37132207113050", + "type": "redeem", + "inputIndex": 2, + "inputQty": "17472013068073603176595456", + "expectedQty": "17048927302338205623872029", + "swapFee": "10483207840844161905957", "reserves": [ - "20196928556698710423830956", - "68789809955147511723240335", - "73237154728957152301957314" - ] + "1149835990347233523732776763", + "296564924118592779873164137", + "212942153745720400461427589" + ], + "mAssetSupply": "1653348671701754391989194592" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "18242970900435271680", - "13466352084663259136", - "13357660817174937600" + "6017249919222666615586816", + "2662533711697788400566272", + "1528551699875100706734080" ], - "expectedQty": "45305994257348196060", + "expectedQty": "10201912429740393969581833", + "swapFee": "6124822351254989375374", "reserves": [ - "20196946799669610859102636", - "68789823421499596386499471", - "73237168086617969476894914" + "1143818740428010857117189947", + "293902390406894991472597865", + "211413602045845299754693509" ], - "mAssetSupply": "161977867620555039585269867" + "mAssetSupply": "1643146759272013998019612759" }, { - "type": "redeemMasset", - "inputQty": "5269065988691412582", - "expectedQtys": [ - "656800347521127617", - "2237030199529813558", - "2381656887443046238" + "type": "mintMulti", + "inputQtys": [ + "699159987479105090093056", + "2552937072252168538423296", + "439734189461139705823232" ], - "redemptionFee": "1580719796607423", + "expectedQty": "3726183325267253858681948", "reserves": [ - "20196946142869263337975019", - "68789821184469396856685913", - "73237165704961082033848676" + "1144517900415489962207283003", + "296455327479147160011021161", + "211853336235306439460516741" ], - "mAssetSupply": "161977862353069770690464708" + "mAssetSupply": "1646872942597281251878294707" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "24647130161486650933248", - "expectedQty": "24736972723755869763141", - "swapFee": "14788278096891990559", + "type": "redeemBassets", + "inputQtys": [ + "3817071243629105250304", + "1038958579543116873728", + "2119067996341003616256" + ], + "expectedQty": "6993020263377414749129", + "swapFee": "4198331156720481138", "reserves": [ - "20196946142869263337975019", - "68765084211745640986922772", - "73237165704961082033848676" + "1144514083344246333102032699", + "296454288520567616894147433", + "211851217167310098456900485" ], - "mAssetSupply": "161953230011186380931522019" + "mAssetSupply": "1646865949577017874463545578" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "818210001691844935680", - "expectedQty": "821693975236604774001", - "swapFee": "490926001015106961", + "inputIndex": 1, + "inputQty": "46720421947516964246126592", + "expectedQty": "45984030973382053683869247", + "swapFee": "28032253168510178547675", "reserves": [ - "20196946142869263337975019", - "68765084211745640986922772", - "73236344010985845429074675" + "1144514083344246333102032699", + "250470257547185563210278186", + "211851217167310098456900485" ], - "mAssetSupply": "161952412292110690101693300" + "mAssetSupply": "1600173559882669420395966661" }, { "type": "mint", "inputIndex": 0, - "inputQty": "116393630965454969241600", - "expectedQty": "118680157044275594867164", + "inputQty": "9582371846609459740672", + "expectedQty": "9439502625724673018870", "reserves": [ - "20313339773834718307216619", - "68765084211745640986922772", - "73236344010985845429074675" + "1144523665716092942561773371", + "250470257547185563210278186", + "211851217167310098456900485" ] }, { - "type": "mintMulti", - "inputQtys": [ - "353376985923553910063104", - "57566730780257846034432", - "47790104144528399138816" + "type": "redeemMasset", + "inputQty": "396145508797778964040908", + "expectedQtys": [ + "283256284242085986263387", + "61988473101239517413881", + "52430710158736834939493" ], - "expectedQty": "465054896322222068234184", + "redemptionFee": "118843652639333689212", "reserves": [ - "20666716759758272217279723", - "68822650942525898832957204", - "73284134115130373828213491" + "1144240409431850856575509984", + "250408269074084323692864305", + "211798786457151361621960992" ], - "mAssetSupply": "162536147345477187764794648" + "mAssetSupply": "1599786972720150005438633835" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "676606307272070397952", - "expectedQty": "678989209312669308748", - "swapFee": "405963784363242238", + "inputQty": "690817240984250753220608", + "expectedQty": "703821878679989948497949", "reserves": [ - "20666716759758272217279723", - "68821971953316586163648456", - "73284134115130373828213491" - ], - "mAssetSupply": "162535471145133700057638934" + "1144240409431850856575509984", + "251099086315068574446084913", + "211798786457151361621960992" + ] }, { - "type": "redeemMasset", - "inputQty": "1265321972294643561267", - "expectedQtys": [ - "160840003796619900722", - "535611261282499918779", - "570338314804844595526" + "type": "mintMulti", + "inputQtys": [ + "4606998910095530605412352", + "9790042217759900822405120", + "6531909863994793293512704" ], - "redemptionFee": "379596591688393068", + "expectedQty": "21207371601935671858529065", "reserves": [ - "20666555919754475597379001", - "68821436342055303663729677", - "73283563776815568983617965" + "1148847408341946387180922336", + "260889128532828475268490033", + "218330696321146154915473696" ], - "mAssetSupply": "162534206202757997102470735" + "mAssetSupply": "1621698166200765667245660849" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "28435937258267352", - "expectedQty": "28302053553968237", + "type": "mintMulti", + "inputQtys": [ + "495270059178790754451456", + "4742021402691038181588992", + "473618651121512311947264" + ], + "expectedQty": "5795742938185546376545197", "reserves": [ - "20666555919754475597379001", - "68821436342055303663729677", - "73283563805251506241885317" - ] + "1149342678401125177935373792", + "265631149935519513450079025", + "218804314972267667227420960" + ], + "mAssetSupply": "1627493909138951213622206046" }, { "type": "swap", "inputIndex": 0, - "inputQty": "39015841594287005696", + "inputQty": "77610909650587011898146816", "outputIndex": 1, - "expectedQty": "39892793846448125858", - "swapFee": "23851675608971242", + "expectedQty": "74315383799139289431007965", + "swapFee": "45879761443087917506674", "reserves": [ - "20666594935596069884384697", - "68821396449261457215603819", - "73283563805251506241885317" + "1226953588051712189833520608", + "191315766136380224019071060", + "218804314972267667227420960" ], - "mAssetSupply": "162534206254911726265410214", + "mAssetSupply": "1627539788900394301539712720", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "1190265528294219972608", - "expectedQty": "1185376641184974611804", + "inputQty": "33005066185382662144", + "expectedQty": "31703932557660515116", + "swapFee": "19803039711229597", "reserves": [ - "20666594935596069884384697", - "68822586714789751435576427", - "73283563805251506241885317" - ] + "1226953588051712189833520608", + "191315734432447666358555944", + "218804314972267667227420960" + ], + "mAssetSupply": "1627539755915131155868280173" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "62315669990474088448", - "1005037052394559766528", - "588325635148447612928" + "194358814558364532736", + "177415494043525644288", + "123643669187343925248" ], - "expectedQty": "1649957348438689708581", - "swapFee": "990568750313401866", + "expectedQty": "502653577512594558268", "reserves": [ - "20666532619926079410296249", - "68821581677737356875809899", - "73282975479616357794272389" + "1226953782410526748198053344", + "191315911847941709884200232", + "218804438615936854571346208" ], - "mAssetSupply": "162533741674204472550313437" + "mAssetSupply": "1627540258568708668462838441" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "607682143821958400", - "expectedQty": "596058896991198713", - "swapFee": "364609286293175", + "type": "swap", + "inputIndex": 2, + "inputQty": "15632895897910560512016384", + "outputIndex": 0, + "expectedQty": "16382646025252841487459139", + "swapFee": "9653028967220780878509", "reserves": [ - "20666532023867182419097536", - "68821581677737356875809899", - "73282975479616357794272389" + "1210571136385273906710594205", + "191315911847941709884200232", + "234437334513847415083362592" + ], + "mAssetSupply": "1627549911597675889243716950", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "415709672112179", + "expectedQtys": [ + "309111968088447", + "48851353101426", + "59862145797866" ], - "mAssetSupply": "162533741066886938014648212" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "352470435602325225603072", - "expectedQty": "351015939845761275329792", + "redemptionFee": "124712901633", "reserves": [ - "20666532023867182419097536", - "69174052113339682101412971", - "73282975479616357794272389" - ] + "1210571136384964794742505758", + "191315911847892858531098806", + "234437334513787552937564726" + ], + "mAssetSupply": "1627549911597260304284506404" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "13193762654399028", - "expectedQty": "13444195327093980", + "inputQty": "2937613968672290766848", + "outputIndex": 1, + "expectedQty": "2775229087220378226557", + "swapFee": "1730196484120432919", "reserves": [ - "20666532037060945073496564", - "69174052113339682101412971", - "73282975479616357794272389" - ] + "1210574073998933467033272606", + "191313136618805638152872249", + "234437334513787552937564726" + ], + "mAssetSupply": "1627549913327456788404939323", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "177856486429216787660800", - "98017611158151657160704", - "28645637100881842274304" - ], - "expectedQty": "307378838913177154709682", - "swapFee": "184538026163604455499", + "type": "swap", + "inputIndex": 2, + "inputQty": "213925074507979793891328", + "outputIndex": 0, + "expectedQty": "223458248706196629455143", + "swapFee": "131693392615360014661", "reserves": [ - "20488675550631728285835764", - "69076034502181530444252267", - "73254329842515475951998085" + "1210350615750227270403817463", + "191313136618805638152872249", + "234651259588295532731456054" ], - "mAssetSupply": "162577378181263717462362302" + "mAssetSupply": "1627550045020849403764953984", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "309482459181698703687680", - "1556611884592509434724352", - "2598013969493013404057600" - ], - "expectedQty": "4451341911405103173549998", - "swapFee": "2672408591998260860646", + "type": "swap", + "inputIndex": 2, + "inputQty": "48875135032698786021376", + "outputIndex": 0, + "expectedQty": "51050594689702004739458", + "swapFee": "30086450969339871984", "reserves": [ - "20179193091450029582148084", - "67519422617589021009527915", - "70656315873022462547940485" + "1210299565155537568399078005", + "191313136618805638152872249", + "234700134723328231517477430" ], - "mAssetSupply": "158126036269858614288812304" + "mAssetSupply": "1627550075107300373104825968", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "121613583703573472", - "expectedQty": "122102582238657702", - "swapFee": "72968150222144", + "inputIndex": 0, + "inputQty": "8302111982939988295680", + "expectedQty": "8452192624191803423878", + "swapFee": "4981267189763992977", "reserves": [ - "20179193091450029582148084", - "67519422617589021009527915", - "70656315750919880309282783" + "1210291112962913376595654127", + "191313136618805638152872249", + "234700134723328231517477430" ], - "mAssetSupply": "158126036148317998735460976" + "mAssetSupply": "1627541777976584622880523265" }, { - "type": "mintMulti", - "inputQtys": [ - "36256165423314846613504", - "13662829932755338395648", - "32356724373769244639232" - ], - "expectedQty": "82747801944016022403659", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1193488315007986302976", + "expectedQty": "1148644515553583785787", + "swapFee": "716092989004791781", "reserves": [ - "20215449256873344428761588", - "67533085447521776347923563", - "70688672475293649553922015" + "1210291112962913376595654127", + "191311987974290084569086462", + "234700134723328231517477430" ], - "mAssetSupply": "158208783950262014757864635" + "mAssetSupply": "1627540585204362603899012070" }, { "type": "mint", "inputIndex": 0, - "inputQty": "876251711202988916736", - "expectedQty": "892607777785533890158", - "reserves": [ - "20216325508584547417678324", - "67533085447521776347923563", - "70688672475293649553922015" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "45304591185506362982400", - "expectedQty": "45096300420534452133431", + "inputQty": "1640460702408553267200", + "expectedQty": "1610365187061509930051", "reserves": [ - "20216325508584547417678324", - "67533085447521776347923563", - "70733977066479155916904415" + "1210292753423615785148921327", + "191311987974290084569086462", + "234700134723328231517477430" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "480713134692966642745344", - "expectedQty": "489480194279669148438152", + "inputIndex": 1, + "inputQty": "534991052095077888", + "expectedQty": "555544106104054581", "reserves": [ - "20697038643277514060423668", - "67533085447521776347923563", - "70733977066479155916904415" + "1210292753423615785148921327", + "191311988509281136664164350", + "234700134723328231517477430" ] }, { "type": "redeemBassets", "inputQtys": [ - "4539832663149910016", - "3974562504638017024", - "3639751639311345664" + "69607169624185712653893632", + "31218212299437544862384128", + "13745950247742165160558592" ], - "expectedQty": "12202697696085483717", - "swapFee": "7326014226187002", + "expectedQty": "114953727598144527851698324", + "swapFee": "69013644745734157205342", "reserves": [ - "20697034103444850910513652", - "67533081472959271709906539", - "70733973426727516605558751" + "1140685583799430072495027695", + "160093776209843591801780222", + "220954184475586066356918838" ], - "mAssetSupply": "158744240850042307806842659" + "mAssetSupply": "1512588468526949243661298378" }, { - "type": "redeemBassets", - "inputQtys": [ - "151092498710129184", - "70454925742533648", - "268210944032238208" - ], - "expectedQty": "490966240541785120", - "swapFee": "294756598284041", + "type": "redeem", + "inputIndex": 0, + "inputQty": "32730306848912635330560", + "expectedQty": "33383704834309723380950", + "swapFee": "19638184109347581198", "reserves": [ - "20697033952352352200384468", - "67533081402504345967372891", - "70733973158516572573320543" + "1140652200094595762771646745", + "160093776209843591801780222", + "220954184475586066356918838" ], - "mAssetSupply": "158744240359076067265057539" + "mAssetSupply": "1512555757858284440373549016" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "64418457680163561472", - "expectedQty": "64130577128448548989", + "inputIndex": 0, + "inputQty": "11741762013925617296211968", + "hardLimitError": true + }, + { + "type": "mintMulti", + "inputQtys": [ + "9401787773325236307492864", + "13961982204939668859912192", + "12282880594300602536689664" + ], + "expectedQty": "36408593148082101041471578", "reserves": [ - "20697033952352352200384468", - "67533081402504345967372891", - "70734037576974252736882015" - ] + "1150053987867920999079139609", + "174055758414783260661692414", + "233237065069886668893608502" + ], + "mAssetSupply": "1548964351006366541415020594" }, { "type": "redeemMasset", - "inputQty": "798035944305026457", + "inputQty": "893467012965708333056", "expectedQtys": [ - "104016468461358861", - "339399000261271159", - "355485950581517350" + "663170227275968695825", + "100367981055059319911", + "134494449028718584119" ], - "redemptionFee": "239410783291507", + "redemptionFee": "268040103889712499", "reserves": [ - "20697033848335883739025607", - "67533081063105345706101732", - "70734037221488302155364665" + "1150053324697693723110443784", + "174055658046802205602372503", + "233236930575437640175024383" ], - "mAssetSupply": "158744303691856662191871578" + "mAssetSupply": "1548963457807393679596400037" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "60636945991042930311168", - "outputIndex": 1, - "expectedQty": "60573485743739524598771", - "swapFee": "36219461948150194911", + "inputQty": "1743576969466619344453632", + "expectedQty": "1701854762342435326150262", + "swapFee": "1046146181679971606672", "reserves": [ - "20697033848335883739025607", - "67472507577361606181502961", - "70794674167479345085675833" + "1150053324697693723110443784", + "174055658046802205602372503", + "231535075813095204848874121" ], - "mAssetSupply": "158744339911318610342066489", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1547220926984108740223553077" }, { "type": "redeemBassets", "inputQtys": [ - "83680024042204544630784", - "142699745906191904014336", - "156543241559435538071552" + "9501830658570378828316672", + "7077112011239531711823872", + "3688785709871524757897216" ], - "expectedQty": "383139465947034519904122", - "swapFee": "230021692583770974527", + "expectedQty": "20485315977421781865547699", + "swapFee": "12298568727689682929086", "reserves": [ - "20613353824293679194394823", - "67329807831455414277488625", - "70638130925919909547604281" + "1140551494039123344282127112", + "166978546035562673890548631", + "227846290103223680090976905" ], - "mAssetSupply": "158361200445371575822162367" + "mAssetSupply": "1526735611006686958358005378" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "359769004315549823401984", - "expectedQty": "358147831507873693024033", + "type": "redeemMasset", + "inputQty": "372375636574833625740083", + "expectedQtys": [ + "278100655740023023889859", + "40714376676282464181790", + "55555757909045794109102" + ], + "redemptionFee": "111712690972450087722", "reserves": [ - "20613353824293679194394823", - "67329807831455414277488625", - "70997899930235459371006265" - ] + "1140273393383383321258237253", + "166937831658886391426366841", + "227790734345314634296867803" + ], + "mAssetSupply": "1526363347082803097182353017" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "171536045329955139092480", - "expectedQty": "172124081425814720873707", - "swapFee": "102921627197973083455", + "type": "redeemMasset", + "inputQty": "7135073158256690777292", + "expectedQtys": [ + "5328674406080427743962", + "780126376822495434907", + "1064501428421939736991" + ], + "redemptionFee": "2140521947477007233", "reserves": [ - "20613353824293679194394823", - "67157683750029599556614918", - "70997899930235459371006265" + "1140268064708977240830493291", + "166937051532509568930931934", + "227789669843886212357130812" ], - "mAssetSupply": "158547915153176692349177375" + "mAssetSupply": "1526356214150166787968582958" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2064450131713604096", - "8982397361131080704", - "10825084397669898240" + "1164703207680973340672", + "899933907649813676032", + "1087151935042933227520" ], - "expectedQty": "21823931512051237399", + "expectedQty": "3196822327142446327987", + "swapFee": "1919244943251418647", "reserves": [ - "20613355888743810907998919", - "67157692732426960687695622", - "70997910755319857040904505" + "1140266900005769559857152619", + "166936151598601919117255902", + "227788582691951169423903292" ], - "mAssetSupply": "158547936977108204400414774" + "mAssetSupply": "1526353017327839645522254971" }, { - "type": "redeemMasset", - "inputQty": "9266598045941068778700", - "expectedQtys": [ - "1204420456896092516585", - "3923965578503690920555", - "4148346177697582573606" - ], - "redemptionFee": "2779979413782320633", + "type": "mint", + "inputIndex": 1, + "inputQty": "219940267300276144177152", + "expectedQty": "229777304818099260582829", "reserves": [ - "20612151468286914815482334", - "67153768766848456996775067", - "70993762409142159458330899" - ], - "mAssetSupply": "158538673159041677113956707" + "1140266900005769559857152619", + "167156091865902195261433054", + "227788582691951169423903292" + ] }, { - "type": "redeemMasset", - "inputQty": "737782733955714881945", - "expectedQtys": [ - "95892863067500043824", - "312416060144601474121", - "330280667101671557623" + "type": "redeemBassets", + "inputQtys": [ + "1848636713017553862000640", + "2704336045183842784378880", + "184768383619984535846912" ], - "redemptionFee": "221334820186714464", + "expectedQty": "4829514738348978413220267", + "swapFee": "2899448512116657042157", "reserves": [ - "20612055575423847315438510", - "67153456350788312395300946", - "70993432128475057786773276" + "1138418263292752005995151979", + "164451755820718352477054174", + "227603814308331184888056380" ], - "mAssetSupply": "158537935597642541585789226" + "mAssetSupply": "1521753279894308766369617533" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "6713125897676376064", - "expectedQty": "6590930951520632448", - "swapFee": "4027875538605825", - "reserves": [ - "20612048984492895794806062", - "67153456350788312395300946", - "70993432128475057786773276" - ], - "mAssetSupply": "158537928888544519448018987" - }, - { - "type": "mintMulti", - "inputQtys": [ - "2192156603689802173251584", - "2791774878995869847257088", - "1391907249357988548313088" - ], - "expectedQty": "6395600660103134095872478", + "inputQty": "824558037242422362112", + "expectedQty": "840263361940732815375", + "swapFee": "494734822345453417", "reserves": [ - "22804205588182697968057646", - "69945231229784182242558034", - "72385339377833046335086364" + "1138417423029390065262336604", + "164451755820718352477054174", + "227603814308331184888056380" ], - "mAssetSupply": "164933529548647653543891465" + "mAssetSupply": "1521752455831006346292708838" }, { "type": "swap", "inputIndex": 2, - "inputQty": "1035902330421093439897600", + "inputQty": "334843092139576393728", "outputIndex": 0, - "expectedQty": "1014316575395460929353755", - "swapFee": "618991808357117665983", + "expectedQty": "349701568314525816609", + "swapFee": "205899194435653921", "reserves": [ - "21789889012787237038703891", - "69945231229784182242558034", - "73421241708254139774983964" + "1138417073327821750736519995", + "164451755820718352477054174", + "227604149151423324464450108" ], - "mAssetSupply": "164934148540456010661557448", + "mAssetSupply": "1521752456036905540728362759", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "639843203879976147353", + "inputQty": "533352286196832727675699", "expectedQtys": [ - "84506027937523564192", - "271263137730163827251", - "284743878198016851149" + "398879064129185001989479", + "57620676984769779044565", + "79748039740876260018482" ], - "redemptionFee": "191952961163992844", + "redemptionFee": "160005685859049818302", "reserves": [ - "21789804506759299515139699", - "69944959966646452078730783", - "73420956964375941758132815" + "1138018194263692565734530516", + "164394135143733582698009609", + "227524401111682448204431626" ], - "mAssetSupply": "164933508889205091849402939" + "mAssetSupply": "1521219263756394567050505362" }, { "type": "mintMulti", "inputQtys": [ - "5628006167832066785280", - "9880211053894625656832", - "15066758659001618006016" + "8735649146870456540725248", + "6969939087527528605155328", + "8719044837875814471041024" ], - "expectedQty": "30566968954463126727062", + "expectedQty": "24776999242926258358114180", "reserves": [ - "21795432512927131581924979", - "69954840177700346704387615", - "73436023723034943376138831" + "1146753843410563022275255764", + "171364074231261111303164937", + "236243445949558262675472650" ], - "mAssetSupply": "164964075858159554976130001" + "mAssetSupply": "1545996262999320825408619542" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "2694491426853680578560", + "57402722943195966078976", + "35026047173622769909760" + ], + "expectedQty": "98324232386896157884756", + "swapFee": "59029957406581643717", + "reserves": [ + "1146751148919136168594677204", + "171306671508317915337085961", + "236208419902384639905562890" + ], + "mAssetSupply": "1545897938766933929250734786" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "361256152285418671308800", - "expectedQty": "362460822445113158408538", - "swapFee": "216753691371251202785", + "inputQty": "7931477592964100045930496", + "expectedQty": "7587525715173663099297461", + "swapFee": "4758886555778460027558", "reserves": [ - "21795432512927131581924979", - "69592379355255233545979077", - "73436023723034943376138831" + "1146751148919136168594677204", + "163719145793144252237788500", + "236208419902384639905562890" ], - "mAssetSupply": "164603036459565507556023986" + "mAssetSupply": "1537971220060525607664831848" }, { - "type": "mintMulti", - "inputQtys": [ - "151779376493835091968", - "192269351686552158208", - "486499834459366621184" - ], - "expectedQty": "830261597851777285101", + "type": "mint", + "inputIndex": 0, + "inputQty": "25898840059243319525376", + "expectedQty": "25404925089293887068738", "reserves": [ - "21795584292303625417016947", - "69592571624606920098137285", - "73436510222869402742760015" - ], - "mAssetSupply": "164603866721163359333309087" + "1146777047759195411914202580", + "163719145793144252237788500", + "236208419902384639905562890" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "89780253599424585924608", - "expectedQty": "89384304609037416960500", + "inputQty": "493925378192699555840", + "expectedQty": "505409626466015983403", "reserves": [ - "21795584292303625417016947", - "69592571624606920098137285", - "73526290476468827328684623" + "1146777047759195411914202580", + "163719145793144252237788500", + "236208913827762832605118730" ] }, { "type": "redeemMasset", - "inputQty": "62623697627429298241536", + "inputQty": "85158585601363958929817", "expectedQtys": [ - "8285164059920955602238", - "26454251720394116420378", - "27949577820221978764952" + "63477760838718643250745", + "9062375988151780693496", + "13074915450418684856409" ], - "redemptionFee": "18787109288228789472", + "redemptionFee": "25547575680409187678", "reserves": [ - "21787299128243704461414709", - "69566117372886525981716907", - "73498340898648605349919671" + "1146713569998356693270951835", + "163710083417156100457095004", + "236195838912312413920262321" ], - "mAssetSupply": "164630646115254255680817523" + "mAssetSupply": "1537911997357215684018141850" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2038259833175582259019776", - "expectedQty": "2070249770307597764218802", + "inputQty": "3032161479186369698856960", + "expectedQty": "2974221368323994951743822", "reserves": [ - "23825558961419286720434485", - "69566117372886525981716907", - "73498340898648605349919671" + "1149745731477543062969808795", + "163710083417156100457095004", + "236195838912312413920262321" ] }, { "type": "redeemBassets", "inputQtys": [ - "78448847562860505595904", - "75033886201112778768384", - "18598303727985744674816" + "92430212252139601920", + "86753906670430601216", + "134971744018677088256" ], - "expectedQty": "172874389580769636856212", - "swapFee": "103786905891996980301", + "expectedQty": "319635953601476074026", + "swapFee": "191896710186997843", "reserves": [ - "23747110113856426214838581", - "69491083486685413202948523", - "73479742594920619605244855" + "1149745639047330810830206875", + "163709996663249430026493788", + "236195703940568395243174065" ], - "mAssetSupply": "166528021495981083808180113" + "mAssetSupply": "1540885899089586077493811646" }, { "type": "redeemBassets", "inputQtys": [ - "90269902407816151040", - "58827252827161673728", - "88088745145785958400" + "1475603500275609856", + "31902288959481085952", + "42783900882521636864" ], - "expectedQty": "237932645209691699609", - "swapFee": "142845294302396457", + "expectedQty": "78639116869887953817", + "swapFee": "47211797200252924", "reserves": [ - "23747019843954018398687541", - "69491024659432586041274795", - "73479654506175473819286455" + "1149745637571727310554597019", + "163709964760960470545407836", + "236195661156667512721537201" ], - "mAssetSupply": "166527783563335874116480504" + "mAssetSupply": "1540885820450469207605857829" }, { - "type": "mintMulti", - "inputQtys": [ - "189897080930209824768", - "46245412918213402624", - "340728554545631657984" + "type": "redeemMasset", + "inputQty": "14579599591730108484812", + "expectedQtys": [ + "10875434088897476083246", + "1548531147475201510762", + "2234172725732693316921" ], - "expectedQty": "578094084218229069115", + "redemptionFee": "4373879877519032545", "reserves": [ - "23747209741034948608512309", - "69491070904845504254677419", - "73479995234730019450944439" + "1149734762137638413078513773", + "163708416229812995343897074", + "236193426983941780028220280" ], - "mAssetSupply": "166528361657420092345549619" + "mAssetSupply": "1540871245224757355016405562" }, { "type": "redeemBassets", "inputQtys": [ - "129115967249984874610688", - "85587451942287620177920", - "164087907699758808956928" + "287369670841366016", + "273346150081141024", + "268718707185685952" ], - "expectedQty": "379708369705937074575096", - "swapFee": "227961798902903987137", + "expectedQty": "843109277819373133", + "swapFee": "506169268252575", "reserves": [ - "23618093773784963733901621", - "69405483452903216634499499", - "73315907327030260641987511" + "1149734761850268742237147757", + "163708415956466845262756050", + "236193426715223072842534328" ], - "mAssetSupply": "166148653287714155270974523" + "mAssetSupply": "1540871244381648077197032429" }, { - "type": "redeemMasset", - "inputQty": "3250982807937248709836", - "expectedQtys": [ - "461989794626016266408", - "1357629678052868035458", - "1434120860610278450578" + "type": "mintMulti", + "inputQtys": [ + "4150591049413910568370176", + "8582361706051885902856192", + "14614468978956290526019584" ], - "redemptionFee": "975294842381174612", + "expectedQty": "27971387388079655780010644", "reserves": [ - "23617631783990337717635213", - "69404125823225163766464041", - "73314473206169650363536933" + "1153885352899682652805517933", + "172290777662518731165612242", + "250807895694179363368553912" ], - "mAssetSupply": "166145403280201060403439299" + "mAssetSupply": "1568842631769727732977043073" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "206657296932709192433664", - "outputIndex": 0, - "expectedQty": "202834524159092704120070", - "swapFee": "123561180812000206523", + "type": "mint", + "inputIndex": 0, + "inputQty": "6630502776840190703960064", + "expectedQty": "6512362262604383150285135", "reserves": [ - "23414797259831245013515143", - "69610783120157872958897705", - "73314473206169650363536933" - ], - "mAssetSupply": "166145526841381872403645822", - "hardLimitError": false, - "insufficientLiquidityError": false + "1160515855676522843509477997", + "172290777662518731165612242", + "250807895694179363368553912" + ] }, { "type": "redeemBassets", "inputQtys": [ - "3078297876973334560768", - "1557936277246983012352", - "3579303715994672824320" + "442550383547429249089536", + "535521060908412268707840", + "241368577958465173979136" ], - "expectedQty": "8241228367919598991927", - "swapFee": "4947705644138242340", + "expectedQty": "1239433903864801460826364", + "swapFee": "744106806402722510001", "reserves": [ - "23411718961954271678954375", - "69609225183880625975885353", - "73310893902453655690712613" + "1160073305292975414260388461", + "171755256601610318896904402", + "250566527116220898194574776" ], - "mAssetSupply": "166137285613013952804653895" + "mAssetSupply": "1574115560128467314666501844" }, { - "type": "redeemMasset", - "inputQty": "473588501547595776", - "expectedQtys": [ - "66717080423435973", - "198367504853149173", - "208916261653078693" - ], - "redemptionFee": "142076550464278", + "type": "mint", + "inputIndex": 0, + "inputQty": "4147628822211821603651584", + "expectedQty": "4073026955398371387554465", "reserves": [ - "23411718895237191255518402", - "69609224985513121122736180", - "73310893693537394037633920" - ], - "mAssetSupply": "166137285139567527807522397" + "1164220934115187235864040045", + "171755256601610318896904402", + "250566527116220898194574776" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "112691833588636561965056", - "expectedQty": "110972467740227773516820", - "swapFee": "67615100153181937179", + "inputIndex": 2, + "inputQty": "3055395233563735004020736", + "expectedQty": "2990692399599019793881723", + "swapFee": "1833237140138241002412", "reserves": [ - "23300746427496963482001582", - "69609224985513121122736180", - "73310893693537394037633920" + "1164220934115187235864040045", + "171755256601610318896904402", + "247575834716621878400693053" ], - "mAssetSupply": "166024660921079044427494520" + "mAssetSupply": "1575135025087442089291037985" }, { - "type": "redeemBassets", - "inputQtys": [ - "47176435993361268736", - "463731106812688576", - "59027908223266701312" - ], - "expectedQty": "107133540083431630558", - "swapFee": "64318715279226514", + "type": "mint", + "inputIndex": 1, + "inputQty": "7106849462904672212746240", + "expectedQty": "7403127971479162046284449", "reserves": [ - "23300699251060970120732846", - "69609224521782014310047604", - "73310834665629170770932608" - ], - "mAssetSupply": "166024553787538960995863962" + "1164220934115187235864040045", + "178862106064514991109650642", + "247575834716621878400693053" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "52020902582622225432576", - "71781812661584278847488", - "16069516980844457099264" + "type": "redeemMasset", + "inputQty": "16005403701771026772787", + "expectedQtys": [ + "11771113299698374960732", + "1808424890682962342015", + "2503170244856996525748" ], - "expectedQty": "140330192868332701995832", - "swapFee": "84248664919951592152", + "redemptionFee": "4801621110531308031", "reserves": [ - "23248678348478347895300270", - "69537442709120430031200116", - "73294765148648326313833344" + "1164209163001887537489079313", + "178860297639624308147308627", + "247573331546377021404167305" ], - "mAssetSupply": "165884223594670628293868130" + "mAssetSupply": "1582522152456840590841857678" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "663029444943119000797184", - "expectedQty": "665306296567093147119066", - "swapFee": "397817666965871400478", + "inputIndex": 0, + "inputQty": "25881385792943984640", + "expectedQty": "26329255011660489310", + "swapFee": "15528831475766390", "reserves": [ - "23248678348478347895300270", - "69537442709120430031200116", - "72629458852081233166714278" + "1164209136672632525828590003", + "178860297639624308147308627", + "247573331546377021404167305" ], - "mAssetSupply": "165221591967394475164471424" + "mAssetSupply": "1582522126590983629373639428" }, { - "type": "redeemMasset", - "inputQty": "7122413812674585427968", - "expectedQtys": [ - "1001909192449615421311", - "2996738224229690059350", - "3129989643962020572722" + "type": "redeemBassets", + "inputQtys": [ + "49227900835404363857920", + "23369055067507588595712", + "26706809333281554694144" ], - "redemptionFee": "2136724143802375628", + "expectedQty": "99934651574561840404381", + "swapFee": "59996789018147993038", "reserves": [ - "23247676439285898279878959", - "69534445970896200341140766", - "72626328862437271146141556" + "1164159908771797121464732083", + "178836928584556800558712915", + "247546624737043739849473161" ], - "mAssetSupply": "165214471690305944381419084" + "mAssetSupply": "1582422191939409067533235047" }, { "type": "redeemBassets", "inputQtys": [ - "841262921998835968", - "1001484960178527232", - "282868642443960128" - ], - "expectedQty": "2133392351076873965", - "swapFee": "1280803892981913", - "reserves": [ - "23247675598022976281042991", - "69534444969411240162613534", - "72626328579568628702181428" + "1016341973939494016", + "1604449486517667072", + "596687941513578880" ], - "mAssetSupply": "165214469556913593304545119" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "372467753794210889728", - "outputIndex": 1, - "expectedQty": "379138583373764138333", - "swapFee": "226801854177449952", + "expectedQty": "3276312915614587621", + "swapFee": "1966967930126828", "reserves": [ - "23248048065776770491932719", - "69534065830827866398475201", - "72626328579568628702181428" + "1164159907755455147525238067", + "178836926980107314041045843", + "247546624140355798335894281" ], - "mAssetSupply": "165214469783715447481995071", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1582422188663096151918647426" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "430426230550016204734464", - "expectedQty": "431709759247682020512449", - "swapFee": "258255738330009722840", - "reserves": [ - "23248048065776770491932719", - "69102356071580184377962752", - "72626328579568628702181428" + "type": "mintMulti", + "inputQtys": [ + "6377639107324232704", + "6925919234526622720", + "4421743321072731648" ], - "mAssetSupply": "164784301808903761286983447" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1981684122592415544508416", - "expectedQty": "1988255132816000282093552", - "swapFee": "1189010473555449326705", + "expectedQty": "17983170723340294281", "reserves": [ - "23248048065776770491932719", - "69102356071580184377962752", - "70638073446752628420087876" + "1164159914133094254849470771", + "178836933906026548567668563", + "247546628562099119408625929" ], - "mAssetSupply": "162803806696784901191801736" + "mAssetSupply": "1582422206646266875258941707" }, { "type": "swap", "inputIndex": 2, - "inputQty": "56799420466065400", - "outputIndex": 0, - "expectedQty": "55749838917681542", - "swapFee": "33949972922599", + "inputQty": "4201589264750858037362688", + "outputIndex": 1, + "expectedQty": "4117770060355928975987768", + "swapFee": "2573063875115852832459", "reserves": [ - "23248048010026931574251177", - "69102356071580184377962752", - "70638073503552048886153276" + "1164159914133094254849470771", + "174719163845670619591680795", + "251748217826849977445988617" ], - "mAssetSupply": "162803806696818851164724335", + "mAssetSupply": "1582424779710141991111774166", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "154086921805386630561792", - "expectedQty": "154581499777847260265041", - "swapFee": "92452153083231978337", - "reserves": [ - "23248048010026931574251177", - "69102356071580184377962752", - "70483492003774201625888235" - ], - "mAssetSupply": "162649812227166547766140880" - }, { "type": "redeemBassets", "inputQtys": [ - "2246952674576827648", - "5448161098845331456", - "2272848823845359104" + "3464620667722479960064", + "717639505302856794112", + "122997086721058652160" ], - "expectedQty": "9971819817974211926", - "swapFee": "5986683901125202", + "expectedQty": "4276348565114168521756", + "swapFee": "2567349548797779780", "reserves": [ - "23248045763074256997423529", - "69102350623419085532631296", - "70483489730925377780529131" + "1164156449512426532369510707", + "174718446206165316734886683", + "251748094829763256387336457" ], - "mAssetSupply": "162649802255346729791928954" + "mAssetSupply": "1582420503361576876943252410" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1928731218026649092096", - "expectedQty": "1900381229226818561212", - "swapFee": "1157238730815989455", + "inputQty": "11086889818107608236556288", + "expectedQty": "11278788833938229865033552", + "swapFee": "6652133890864564941933", "reserves": [ - "23246145381845030178862317", - "69102350623419085532631296", - "70483489730925377780529131" + "1152877660678488302504477155", + "174718446206165316734886683", + "251748094829763256387336457" ], - "mAssetSupply": "162647874681367433958826313" + "mAssetSupply": "1571340265677360133271638055" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "714180463366514933760", - "expectedQty": "716467561513168702996", - "swapFee": "428508278019908960", - "reserves": [ - "23246145381845030178862317", - "69102350623419085532631296", - "70482773263363864611826135" - ], - "mAssetSupply": "162647160929412345463801513" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "668920719416686464", - "expectedQty": "666385352106417566", - "reserves": [ - "23246145381845030178862317", - "69102350623419085532631296", - "70482773932284584028512599" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "469533686351956291878912", - "expectedQty": "467826537950350701584433", - "reserves": [ - "23246145381845030178862317", - "69571884309771041824510208", - "70482773932284584028512599" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "133633402271460966400", - "expectedQty": "131656186060719457435", - "swapFee": "80180041362876579", + "inputQty": "1615909100738141749248", + "expectedQty": "1583501357018275824493", + "swapFee": "969545460442885049", "reserves": [ - "23246013725658969459404882", - "69571884309771041824510208", - "70482773932284584028512599" + "1152877660678488302504477155", + "174718446206165316734886683", + "251746511328406238111511964" ], - "mAssetSupply": "163114854580525818173713691" + "mAssetSupply": "1571338650737804855572773856" }, { "type": "redeemMasset", - "inputQty": "3923788267816075080499", + "inputQty": "3190940597559149933363", "expectedQtys": [ - "559023716349740556331", - "1673075383130012621238", - "1694980596986092704904" - ], - "redemptionFee": "1177136480344822524", - "reserves": [ - "23245454701942619718848551", - "69570211234387911811888970", - "70481078951687597935807695" - ], - "mAssetSupply": "163110931969394482443455716" - }, - { - "type": "mintMulti", - "inputQtys": [ - "2411080853414688394838016", - "1344385513045412984913920", - "1412158523310580967669760" + "2340463337111807017968", + "354696887284652325273", + "511071989774856619961" ], - "expectedQty": "5189899821783053893885093", + "redemptionFee": "957282179267744980", "reserves": [ - "25656535555357308113686567", - "70914596747433324796802890", - "71893237474998178903477455" + "1152875320215151190697459187", + "174718091509278032082561410", + "251746000256416463254892003" ], - "mAssetSupply": "168300831791177536337340809" + "mAssetSupply": "1571335460754489475690585473" }, { "type": "redeemMasset", - "inputQty": "444617921254972352102", + "inputQty": "235721629903158775067443", "expectedQtys": [ - "67759221254030005655", - "187286309204997117650", - "189870911223620997733" + "172895049495622763748166", + "26202220265795900473493", + "37753984677662603299998" ], - "redemptionFee": "133385376376491705", + "redemptionFee": "70716488970947632520", "reserves": [ - "25656467796136054083680912", - "70914409461124119799685240", - "71893047604086955282479722" + "1152702425165655567933711021", + "174691889289012236182087917", + "251708246271738800651592005" ], - "mAssetSupply": "168300387306641657741480412" + "mAssetSupply": "1571099809841075287863150550" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "128548846625048670240768", - "outputIndex": 1, - "expectedQty": "128454266772121172885646", - "swapFee": "76866523078825919500", + "inputIndex": 1, + "inputQty": "2031752852081072144384", + "outputIndex": 0, + "expectedQty": "2151199972692015786760", + "swapFee": "1268922572156935758", "reserves": [ - "25656467796136054083680912", - "70785955194351998626799594", - "72021596450712003952720490" + "1152700273965682875917924261", + "174693921041864317254232301", + "251708246271738800651592005" ], - "mAssetSupply": "168300464173164736567399912", + "mAssetSupply": "1571099811109997860020086308", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "1130215595667986186240", - "expectedQty": "1115893458866630046597", - "swapFee": "678129357400791711", + "inputQty": "1424985477834206940758016", + "outputIndex": 2, + "expectedQty": "1371710584390458581629731", + "swapFee": "840034450018441028408", "reserves": [ - "25655351902677187453634315", - "70785955194351998626799594", - "72021596450712003952720490" + "1154125259443517082858682277", + "174693921041864317254232301", + "250336535687348342069962274" ], - "mAssetSupply": "168299334635698425982005383" + "mAssetSupply": "1571100651144447878461114716", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "199300066114076278784", - "expectedQtys": [ - "30371952494339274572", - "83799578216073509975", - "85262385574186402173" - ], - "redemptionFee": "59790019834222883", + "type": "swap", + "inputIndex": 0, + "inputQty": "3869027558927989997568", + "outputIndex": 2, + "expectedQty": "3723584855703700988401", + "swapFee": "2280620259789671710", "reserves": [ - "25655321530724693114359743", - "70785871394773782553289619", - "72021511188326429766318317" + "1154129128471076010848679845", + "174693921041864317254232301", + "250332812102492638368973873" ], - "mAssetSupply": "168299135395422331739949482" + "mAssetSupply": "1571100653425068138250786426", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "859338540427831094018048", - "expectedQty": "856368094135818116705482", + "type": "redeemBassets", + "inputQtys": [ + "1596634270296985567232", + "2790158222776415027200", + "1259940804016786636800" + ], + "expectedQty": "5758691294587167032001", + "swapFee": "3457289150242445686", "reserves": [ - "25655321530724693114359743", - "70785871394773782553289619", - "72880849728754260860336365" - ] + "1154127531836805713863112613", + "174691130883641540839205101", + "250331552161688621582337073" + ], + "mAssetSupply": "1571094894733773551083754425" }, { "type": "redeemMasset", - "inputQty": "168627652426106663652556", + "inputQty": "4710244983768644492407603", "expectedQtys": [ - "25567591321304177144273", - "70543814037821928458588", - "72631628443346026224588" + "3459111584319207257466357", + "523578285629938746989114", + "750285170500158602002875" ], - "redemptionFee": "50588295727831999095", + "redemptionFee": "1413073495130593347722", "reserves": [ - "25629753939403388937215470", - "70715327580735960624831031", - "72808218100310914834111777" + "1150668420252486506605646256", + "174167552598011602092215987", + "249581266991188462980334198" ], - "mAssetSupply": "168986926425427771025001503" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "102977748385690288128", - "expectedQty": "104252911797235017048", - "reserves": [ - "25629856917151774627503598", - "70715327580735960624831031", - "72808218100310914834111777" - ] + "mAssetSupply": "1566386062823500037184694544" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "24448603521494786048", - "expectedQty": "24135073063628605475", - "swapFee": "14669162112896871", + "inputQty": "3683649753279554048229376", + "outputIndex": 2, + "expectedQty": "3543180998425352924588533", + "swapFee": "2171255536646748580026", "reserves": [ - "25629832782078710998898123", - "70715327580735960624831031", - "72808218100310914834111777" + "1154352070005766060653875632", + "174167552598011602092215987", + "246038085992763110055745665" ], - "mAssetSupply": "168987006244405208878129374" + "mAssetSupply": "1566388234079036683933274570", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "229211621515717190352896", - "59343175130423299670016", - "129954118252758912991232" - ], - "expectedQty": "420720064327671098167690", - "swapFee": "252583588749852570442", + "type": "redeem", + "inputIndex": 2, + "inputQty": "7297677607922298781696", + "expectedQty": "7142738910341866827821", + "swapFee": "4378606564753379269", "reserves": [ - "25400621160562993808545227", - "70655984405605537325161015", - "72678263982058155921120545" + "1154352070005766060653875632", + "174167552598011602092215987", + "246030943253852768188917844" ], - "mAssetSupply": "168566286180077537779961684" + "mAssetSupply": "1566380940780035326387872143" }, { - "type": "redeemMasset", - "inputQty": "23473542690235030385459", - "expectedQtys": [ - "3536078927221799393280", - "9836182192531708386328", - "10117708386322105948014" - ], - "redemptionFee": "7042062807070509115", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1812460110548844316459008", + "expectedQty": "1738500867194487401865193", + "swapFee": "1087476066329306589875", "reserves": [ - "25397085081635772009151947", - "70646148223413005616774687", - "72668146273671833815172531" + "1154352070005766060653875632", + "172429051730817114690350794", + "246030943253852768188917844" ], - "mAssetSupply": "168542819679450109820085340" + "mAssetSupply": "1564569568145552811378003010" }, { "type": "mintMulti", "inputQtys": [ - "3181295457036174014545920", - "4011228000002686872190976", - "1059710296969726763466752" + "5323305890647389503488", + "4666123809555649921024", + "286287514152445050880" ], - "expectedQty": "8272694145935915242806802", + "expectedQty": "10383727211559975639830", "reserves": [ - "28578380538671946023697867", - "74657376223415692488965663", - "73727856570641560578639283" + "1154357393311656708043379120", + "172433717854626670340271818", + "246031229541366920633968724" ], - "mAssetSupply": "176815513825386025062892142" + "mAssetSupply": "1564579951872764371353642840" }, { "type": "mintMulti", "inputQtys": [ - "334724931179604344832", - "95697485577995026432", - "315064975078837714944" + "5479764148663778017280", + "5620659441181212540928", + "7247989179776022609920" ], - "expectedQty": "747788857049570364205", + "expectedQty": "18641185071862032381884", "reserves": [ - "28578715263603125628042699", - "74657471920901270483992095", - "73728171635616639416354227" + "1154362873075805371821396400", + "172439338514067851552812746", + "246038477530546696656578644" ], - "mAssetSupply": "176816261614243074633256347" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "12093925659494620069888", - "expectedQty": "12221593915927009653156", - "reserves": [ - "28590809189262620248112587", - "74657471920901270483992095", - "73728171635616639416354227" - ] + "mAssetSupply": "1564598593057836233386024724" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "1304594572327513795592192", - "expectedQty": "1307770208468126326783922", - "swapFee": "782756743396508277355", + "inputQty": "49234681317085548734578688", + "outputIndex": 2, + "expectedQty": "49530982731443422207813855", + "swapFee": "30501446676284752940386", "reserves": [ - "28590809189262620248112587", - "73349701712433144157208173", - "73728171635616639416354227" + "1154362873075805371821396400", + "221674019831153400287391434", + "196507494799103274448764789" ], - "mAssetSupply": "175524671392574884355594666" + "mAssetSupply": "1564629094504512518138965110", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1688595899088275", - "250845459311722", - "5193220466521004" + "type": "redeemMasset", + "inputQty": "271115269273584016556032", + "expectedQtys": [ + "199965290593105932194865", + "38399632235545415448295", + "34040143890391312972113" ], - "expectedQty": "7133750386942562", - "swapFee": "4282819924120", + "redemptionFee": "81334580782075204966", "reserves": [ - "28590809187574024349024312", - "73349701712182298697896451", - "73728171630423418949833223" + "1154162907785212265889201535", + "221635620198917854871943139", + "196473454655212883135792676" ], - "mAssetSupply": "175524671385441133968652104" + "mAssetSupply": "1564358060569819716197614044" }, { "type": "swap", "inputIndex": 2, - "inputQty": "58582705564348489662464", + "inputQty": "6406838917543625728", "outputIndex": 0, - "expectedQty": "57770948086959082800106", - "swapFee": "35043598704037574513", + "expectedQty": "6731026650035640628", + "swapFee": "3970530275100001", "reserves": [ - "28533038239487065266224206", - "73349701712182298697896451", - "73786754335987767439495687" + "1154162901054185615853560907", + "221635620198917854871943139", + "196473461062051800679418404" ], - "mAssetSupply": "175524706429039838006226617", + "mAssetSupply": "1564358060573790246472714045", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "28571214623147116462080", - "22078707543358847320064", - "13425365294510065582080" - ], - "expectedQty": "64266472223282191735793", - "swapFee": "38583033153861632020", - "reserves": [ - "28504467024863918149762126", - "73327623004638939850576387", - "73773328970693257373913607" - ], - "mAssetSupply": "175460439956816555814490824" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "5939443644920318490836992", - "expectedQty": "5919933980402140513647301", - "reserves": [ - "28504467024863918149762126", - "73327623004638939850576387", - "79712772615613575864750599" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "510253016054960960", - "477164468804509888", - "35934410112314492" + "type": "redeemMasset", + "inputQty": "28126392002739648", + "expectedQtys": [ + "20745058485337368", + "3983704466034219", + "3531436885405108" ], - "expectedQty": "1027673851653572849", - "swapFee": "616974495689557", + "redemptionFee": "8437917600821", "reserves": [ - "28504466514610902094801166", - "73327622527474471046066499", - "79712772579679165752436107" + "1154162901033440557368223539", + "221635620194934150405908920", + "196473461058520363794013296" ], - "mAssetSupply": "181380372909544844674565276" + "mAssetSupply": "1564358060545672292387575218" }, { "type": "redeemMasset", - "inputQty": "82215387641756316703129", + "inputQty": "2316985365434855954841", "expectedQtys": [ - "12916517232321257952687", - "33227687299314512503796", - "36121054927787201436796" + "1708928642924943955190", + "328168111541633233908", + "290911382506632648394" ], - "redemptionFee": "24664616292526895010", + "redemptionFee": "695095609630456786", "reserves": [ - "28491549997378580836848479", - "73294394840175156533562703", - "79676651524751378550999311" + "1154161192104797632424268349", + "221635292026822608772675012", + "196473170147137857161364902" ], - "mAssetSupply": "181298182186519380884757157" + "mAssetSupply": "1564355744255402467162077163" }, { "type": "redeemMasset", - "inputQty": "273555478195061961785344", + "inputQty": "9698500131681080442880", "expectedQtys": [ - "42977162176728969951683", - "110558572418181358137487", - "120185682231855290758741" + "7153279824592458192412", + "1373654974468394783418", + "1217704748436585718776" ], - "redemptionFee": "82066643458518588535", + "redemptionFee": "2909550039504324132", "reserves": [ - "28448572835201851866896796", - "73183836267756975175425216", - "79556465842519523260240570" + "1154154038824973039966075937", + "221633918371848140377891594", + "196471952442389420575646126" ], - "mAssetSupply": "181024708774967777441560348" + "mAssetSupply": "1564346048664820825585958415" }, { - "type": "mintMulti", - "inputQtys": [ - "4367618372015719424", - "5095239383666222080", - "617203233146667136" - ], - "expectedQty": "10113117892360477908", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7248433495846900727808", + "expectedQty": "7060495130393172057521", + "swapFee": "4349060097508140436", "reserves": [ - "28448577202820223882616220", - "73183841362996358841647296", - "79556466459722756406907706" + "1154154038824973039966075937", + "221626857876717747205834073", + "196471952442389420575646126" ], - "mAssetSupply": "181024718888085669802038256" + "mAssetSupply": "1564338804580385076193371043" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "27131603856041392996352", - "outputIndex": 0, - "expectedQty": "26735171041903188888465", - "swapFee": "16233150410543963108", + "inputQty": "11310141574278899712", + "expectedQty": "11016880643868689261", + "swapFee": "6786084944567339", "reserves": [ - "28421842031778320693727755", - "73210972966852400234643648", - "79556466459722756406907706" + "1154154038824973039966075937", + "221626846859837103337144812", + "196471952442389420575646126" ], - "mAssetSupply": "181024735121236080346001364", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1564338793277029586859038670" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "1584978808193141516009472", - "expectedQty": "1589546170792956776975101", - "swapFee": "950987284915884909605", + "inputIndex": 1, + "inputQty": "2158347485856862830592", + "expectedQty": "2102383069389589530777", + "swapFee": "1295008491514117698", "reserves": [ - "28421842031778320693727755", - "73210972966852400234643648", - "77966920288929799629932605" + "1154154038824973039966075937", + "221624744476767713747614035", + "196471952442389420575646126" ], - "mAssetSupply": "179440707300327854714901497" + "mAssetSupply": "1564336636224552221510325776" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "31338697145388236800", - "expectedQty": "31248951139015812870", - "reserves": [ - "28421842031778320693727755", - "73211004305549545622880448", - "77966920288929799629932605" - ] - }, - { - "type": "redeem", "inputIndex": 2, - "inputQty": "20570359410927411200", - "expectedQty": "20628258880303622706", - "swapFee": "12342215646556446", + "inputQty": "12765737998972019468664832", + "expectedQty": "13158028307683606438020272", "reserves": [ - "28421842031778320693727755", - "73211004305549545622880448", - "77966899660670919326309899" - ], - "mAssetSupply": "179440717991261798449859613" + "1154154038824973039966075937", + "221624744476767713747614035", + "209237690441361440044310958" + ] }, { "type": "redeemMasset", - "inputQty": "57385460676881039333785", + "inputQty": "153495811572069878988", "expectedQtys": [ - "9086628811912447750013", - "23405985450487334804034", - "24926472958368348183650" + "112269580054571269096", + "21558402219377994267", + "20353459631225562930" ], - "redemptionFee": "17215638203064311800", + "redemptionFee": "46048743471620963", "reserves": [ - "28412755402966408245977742", - "73187598320099058288076414", - "77941973187712550978126249" + "1154153926555392985394806841", + "221624722918365494369619768", + "209237670087901808818748028" ], - "mAssetSupply": "179383349746223120474837628" + "mAssetSupply": "1577494511082472999350088023" }, { "type": "swap", "inputIndex": 1, - "inputQty": "38655708623934435885056", + "inputQty": "1203394715215570982141952", "outputIndex": 0, - "expectedQty": "38097261983989172291009", - "swapFee": "23126965337918028933", + "expectedQty": "1254042740907259425929871", + "swapFee": "740411657454232558975", "reserves": [ - "28374658140982419073686733", - "73226254028722992723961470", - "77941973187712550978126249" + "1152899883814485725968876970", + "222828117633581065351761720", + "209237670087901808818748028" ], - "mAssetSupply": "179383372873188458392866561", + "mAssetSupply": "1577495251494130453582646998", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "11469481212604200960", - "expectedQty": "11495626083694883967", - "swapFee": "6881688727562520", + "type": "redeemBassets", + "inputQtys": [ + "58196809399795938492416", + "59865136333521244127232", + "83438074346935372742656" + ], + "expectedQty": "204434070400070834181387", + "swapFee": "122734082689656294285", "reserves": [ - "28374658140982419073686733", - "73226242533096909029077503", - "77941973187712550978126249" + "1152841687005085930030384554", + "222768252497247544107634488", + "209154232013554873446005372" ], - "mAssetSupply": "179383361410588934516228121" + "mAssetSupply": "1577290817423730382748465611" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "176218795361737572352", - "expectedQty": "176715678536856976910", - "swapFee": "105731277217042543", + "type": "mintMulti", + "inputQtys": [ + "18859642145595897937920", + "58963096242863323742208", + "36280277683988894580736" + ], + "expectedQty": "116316641007202670001359", "reserves": [ - "28374658140982419073686733", - "73226242533096909029077503", - "77941796472034014121149339" + "1152860546647231525928322474", + "222827215593490407431376696", + "209190512291238862340586108" ], - "mAssetSupply": "179383185297524849995698312" + "mAssetSupply": "1577407134064737585418466970" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1930527207845252690870272", - "117761479293796066787328", - "324906440908235870306304" + "35735693047468", + "32445462793710", + "47393239088280" ], - "expectedQty": "2394807764139472678619749", - "swapFee": "1437747306867804289745", + "expectedQty": "117157098463497", "reserves": [ - "26444130933137166382816461", - "73108481053803112962290175", - "77616890031125778250843035" + "1152860546647267261621369942", + "222827215593522852894170406", + "209190512291286255579674388" ], - "mAssetSupply": "176988377533385377317078563" + "mAssetSupply": "1577407134064854742516930467" }, { "type": "redeemBassets", "inputQtys": [ - "7421764968268446711152640", - "3018798669850184771436544", - "5636041305550184874246144" + "32669155776546746193149952", + "32990538794941869574848512", + "13508310761476223966117888" ], - "expectedQty": "16165860889958426824863009", - "swapFee": "9705339737817746742963", + "expectedQty": "79968322085953107023606927", + "swapFee": "48009799131050494510870", "reserves": [ - "19022365964868719671663821", - "70089682383952928190853631", - "71980848725575593376596891" + "1120191390870720515428219990", + "189836676798580983319321894", + "195682201529810031613556500" ], - "mAssetSupply": "160822516643426950492215554" + "mAssetSupply": "1497438811978901635493323540" }, { - "type": "redeemBassets", - "inputQtys": [ - "13144878366355315752960", - "5220968214433209778176", - "4418434629868671991808" + "type": "mint", + "inputIndex": 2, + "inputQty": "14726810157974588227584", + "expectedQty": "15199809040277232700717", + "reserves": [ + "1120191390870720515428219990", + "189836676798580983319321894", + "195696928339968006201784084" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "28718717012055239501545472", + "expectedQty": "29556211982465922528895777", + "reserves": [ + "1120191390870720515428219990", + "218555393810636222820867366", + "195696928339968006201784084" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1671171711936120", + "expectedQtys": [ + "1225578274196017", + "239116944252236", + "214107969097968" ], - "expectedQty": "23030622988092130294978", - "swapFee": "13826669794732117447", + "redemptionFee": "501351513580", "reserves": [ - "19009221086502364355910861", - "70084461415738494981075455", - "71976430290945724704605083" + "1120191390869494937154023973", + "218555393810397105876615130", + "195696928339753898232686116" ], - "mAssetSupply": "160799486020438858361920576" + "mAssetSupply": "1527010223768737164894497494" }, { "type": "mint", "inputIndex": 0, - "inputQty": "410509522080070423805952", - "expectedQty": "419482055685372041274741", + "inputQty": "16164710790795988798799872", + "expectedQty": "15888392749694521094806384", "reserves": [ - "19419730608582434779716813", - "70084461415738494981075455", - "71976430290945724704605083" + "1136356101660290925952823845", + "218555393810397105876615130", + "195696928339753898232686116" ] }, { - "type": "redeemMasset", - "inputQty": "1226856638199337164", - "expectedQtys": [ - "147737441355616791", - "533174183362343916", - "547567515915785750" + "type": "redeemBassets", + "inputQtys": [ + "338701115164090", + "390575889080084", + "75956035040809" ], - "redemptionFee": "368056991459801", + "expectedQty": "811907304926104", + "swapFee": "487436845062", "reserves": [ - "19419730460844993424100022", - "70084460882564311618731539", - "71976429743378208788819333" + "1136356101659952224837659755", + "218555393810006529987535046", + "195696928339677942197645307" ], - "mAssetSupply": "161218966849635649195317954" + "mAssetSupply": "1542898616517619778684377774" }, { "type": "redeemMasset", - "inputQty": "12847108798992061405593", + "inputQty": "3070854066739248282520780", "expectedQtys": [ - "1547042191959787192589", - "5583168015884218098498", - "5733888730543706476890" + "2261027940250129971326960", + "434863553049033087327784", + "389381657871845239084484" ], - "redemptionFee": "3854132639697618421", + "redemptionFee": "921256220021774484756", "reserves": [ - "19418183418653033636907433", - "70078877714548427400633041", - "71970695854647665082342443" + "1134095073719702094866332795", + "218120530256957496900207262", + "195307546681806096958560823" ], - "mAssetSupply": "161206123594969296831530782" + "mAssetSupply": "1539828683707100552176341750" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "106963858058204747399168", - "141938040944455397146624", - "132001858872149645721600" + "2312627906793037627392", + "5291909322624284491776", + "15782469916240203743232" ], - "expectedQty": "381882720876289269095496", + "expectedQty": "23989915862692845465172", + "swapFee": "14402591072259062716", "reserves": [ - "19525147276711238384306601", - "70220815755492882797779665", - "72102697713519814728064043" + "1134092761091795301828705403", + "218115238347634872615715486", + "195291764211889856754817591" ], - "mAssetSupply": "161588006315845586100626278" + "mAssetSupply": "1539804693791237859330876578" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "88395059122150539264", - "expectedQty": "90272436573609798885", + "type": "redeemBassets", + "inputQtys": [ + "81048068399224372330496", + "116174875665450758307840", + "111806642704695802462208" + ], + "expectedQty": "314220078573023038163316", + "swapFee": "188645234284384453570", "reserves": [ - "19525235671770360534845865", - "70220815755492882797779665", - "72102697713519814728064043" - ] + "1134011713023396077456374907", + "217999063471969421857407646", + "195179957569185160952355383" + ], + "mAssetSupply": "1539490473712664836292713262" }, { - "type": "mintMulti", - "inputQtys": [ - "14459031512426318135296", - "16496658084417715044352", - "37100048038302029185024" - ], - "expectedQty": "68105849738651188307994", + "type": "redeem", + "inputIndex": 2, + "inputQty": "512530896538175579095040", + "expectedQty": "496244611982239253996567", + "swapFee": "307518537922905347457", "reserves": [ - "19539694703282786852981161", - "70237312413577300512824017", - "72139797761558116757249067" + "1134011713023396077456374907", + "217999063471969421857407646", + "194683712957202921698358816" ], - "mAssetSupply": "161656202438020810898733157" + "mAssetSupply": "1538978250334664583618965679" }, { "type": "redeemMasset", - "inputQty": "135328750177876110108262", + "inputQty": "7061556252589247640371", "expectedQtys": [ - "16352537907273471981351", - "58780770692137153190269", - "60372938033710914522717" + "5201818241822559117575", + "999982180118212577537", + "893032477368804405420" ], - "redemptionFee": "40598625053362833032", + "redemptionFee": "2118466875776774292", "reserves": [ - "19523342165375513380999810", - "70178531642885163359633748", - "72079424823524405842726350" + "1134006511205154254897257332", + "217998063489789303644830109", + "194682819924725552893953396" ], - "mAssetSupply": "161520914286467988151457927" + "mAssetSupply": "1538971190896878870148099600" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1989746839572435370508288", - "expectedQty": "1997538238084720488974817", - "swapFee": "1193848103743461222304", + "type": "redeemMasset", + "inputQty": "128022755135842487055155", + "expectedQtys": [ + "94306563484476261105602", + "18129215318300245533778", + "16190266577090656787346" + ], + "redemptionFee": "38406826540752746116", "reserves": [ - "19523342165375513380999810", - "68180993404800442870658931", - "72079424823524405842726350" + "1133912204641669778636151730", + "217979934274471003399296331", + "194666629658148462237166050" ], - "mAssetSupply": "159532361294999296242171943" + "mAssetSupply": "1538843206548569568413790561" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "14978767963485349347328", - "expectedQty": "14666880870275273272978", - "swapFee": "8987260778091209608", + "inputQty": "5377877296876977389568", + "expectedQty": "5284716433789288925352", "reserves": [ - "19508675284505238107726832", - "68180993404800442870658931", - "72079424823524405842726350" - ], - "mAssetSupply": "159517391514296588984034223" + "1133917582518966655613541298", + "217979934274471003399296331", + "194666629658148462237166050" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "928267561497154405007360", + "inputIndex": 1, + "inputQty": "22800970159857944913510400", "outputIndex": 0, - "expectedQty": "903237304356581699400750", - "swapFee": "554184726027827263015", - "reserves": [ - "18605437980148656408326082", - "68180993404800442870658931", - "73007692385021560247733710" - ], - "mAssetSupply": "159517945699022616811297238", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "1226698478309076658814976", - "outputIndex": 1, - "expectedQty": "1224899972768298815988641", - "swapFee": "732049003017450272917", + "expectedQty": "23690411625841443863669778", + "swapFee": "13996723229322186471081", "reserves": [ - "18605437980148656408326082", - "66956093432032144054670290", - "74234390863330636906548686" + "1110227170893125211749871520", + "240780904434328948312806731", + "194666629658148462237166050" ], - "mAssetSupply": "159518677748025634261570155", + "mAssetSupply": "1538862487988232679889186994", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "530672514434647182226227", + "inputQty": "248204243387029043", "expectedQtys": [ - "61876343736425011233161", - "222676738750737415651241", - "246882265874338428561356" + "179015622358113322", + "38824075458886529", + "31388502077980981" ], - "redemptionFee": "159201754330394154667", + "redemptionFee": "74461273016108", "reserves": [ - "18543561636412231397092921", - "66733416693281406639019049", - "73987508597456298477987330" + "1110227170714109589391758198", + "240780904395504872853920202", + "194666629626759960159185069" ], - "mAssetSupply": "158988164435345317473498595" + "mAssetSupply": "1538862487740102897775174059" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "4867565261188672914456576", + "expectedQty": "4791156396509463760934033", + "reserves": [ + "1115094735975298262306214774", + "240780904395504872853920202", + "194666629626759960159185069" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "126176782040942164049920", - "150411004835461511249920", - "131233356182745088262144" + "1273255566917861269045248", + "1322577214534095615295488", + "39802954931829412462592" ], - "expectedQty": "409351173597444385036848", - "swapFee": "245758159053898970404", + "expectedQty": "2642767067001445838381176", "reserves": [ - "18417384854371289233043001", - "66583005688445945127769129", - "73856275241273553389725186" + "1116367991542216123575260022", + "242103481610038968469215690", + "194706432581691789571647661" ], - "mAssetSupply": "158578813261747873088461747" + "mAssetSupply": "1546296411203613807374489268" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "101671424617905930240", - "106195885591636606976", - "919450132453766201344" + "263957942981828389371904", + "55785096878149660049408", + "222504007360802602352640" ], - "expectedQty": "1124125408763133771083", - "swapFee": "674880173361897401", + "expectedQty": "545963629247390300683952", "reserves": [ - "18417283182946671327112761", - "66582899492560353491162153", - "73855355791141099623523842" + "1116631949485197951964631926", + "242159266706917118129265098", + "194928936589052592174000301" ], - "mAssetSupply": "158577689136339109954690664" + "mAssetSupply": "1546842374832861197675173220" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "10079605736761708249088", - "83175451298364215263232", - "464640918023211952635904" + "154058819811976620802048", + "233604540796014503657472", + "64100757100167109279744" ], - "expectedQty": "555178421445402793006943", + "expectedQty": "455858224563961535603660", + "swapFee": "273679142223711148051", "reserves": [ - "18427362788683433035361849", - "66666074943858717706425385", - "74319996709164311576159746" + "1116477890665385975343829878", + "241925662166121103625607626", + "194864835831952425064720557" ], - "mAssetSupply": "159132867557784512747697607" + "mAssetSupply": "1546386516608297236139569560" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "5483335878312647", - "outputIndex": 0, - "expectedQty": "5324533617489137", - "swapFee": "3271652980415", + "inputIndex": 0, + "inputQty": "6156093473074263040", + "outputIndex": 1, + "expectedQty": "5939574537224732089", + "swapFee": "3635619265039700", "reserves": [ - "18427362783358899417872712", - "66666074943858717706425385", - "74319996714647647454472393" + "1116477896821479448418092918", + "241925656226546566400875537", + "194864835831952425064720557" ], - "mAssetSupply": "159132867557787784400678022", + "mAssetSupply": "1546386516611932855404609260", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "359104706600166227968", - "expectedQty": "357101949689771270343", + "inputIndex": 1, + "inputQty": "1536216471784039120896", + "expectedQty": "1566258745689930048549", "reserves": [ - "18427362783358899417872712", - "66666074943858717706425385", - "74320355819354247620700361" + "1116477896821479448418092918", + "241927192443018350439996433", + "194864835831952425064720557" ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "931695079708658570887168", - "outputIndex": 1, - "expectedQty": "929980946388663624886924", - "swapFee": "555870095913203196078", + "inputQty": "10334515987658215260160", + "expectedQty": "10023290748669839954803", + "swapFee": "6200709592594929156", "reserves": [ - "18427362783358899417872712", - "65736093997470054081538461", - "75252050899062906191587529" + "1116477896821479448418092918", + "241927192443018350439996433", + "194854812541203755224765754" ], - "mAssetSupply": "159133780529833387375144443", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1546377754555400479714326805" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2303422889090107784036352", - "expectedQty": "2314955451901225610886123", - "swapFee": "1382053733454064670421", + "type": "redeemMasset", + "inputQty": "1067424747747283317450342", + "expectedQtys": [ + "770444742256015218138250", + "166946012954778593319495", + "134462908986416129276191" + ], + "redemptionFee": "320227424324184995235", "reserves": [ - "18427362783358899417872712", - "65736093997470054081538461", - "72937095447161680580701406" + "1115707452079223433199954668", + "241760246430063571846676938", + "194720349632217339095489563" ], - "mAssetSupply": "156831739694476733655778512" + "mAssetSupply": "1545310650035077520581871698" }, { "type": "mintMulti", "inputQtys": [ - "138230363028988329984", - "116139093038478196736", - "140182191667952697344" + "461249586641076536475648", + "4833228205513282101968896", + "5231769310739149323501568" ], - "expectedQty": "396413267598638860432", + "expectedQty": "10765839793760938208360292", "reserves": [ - "18427501013721928406202696", - "65736210136563092559735197", - "72937235629353348533398750" + "1116168701665864509736430316", + "246593474635576853948645834", + "199952118942956488418991131" ], - "mAssetSupply": "156832136107744332294638944" + "mAssetSupply": "1556076489828838458790231990" }, { "type": "mint", "inputIndex": 1, - "inputQty": "177083790341749243904", - "expectedQty": "176303553873083490462", + "inputQty": "141335093406530646925377536", + "expectedQty": "142793542520857454113665562", "reserves": [ - "18427501013721928406202696", - "65736387220353434308979101", - "72937235629353348533398750" + "1116168701665864509736430316", + "387928568042107500874023370", + "199952118942956488418991131" ] }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "2860628138513983705448448", + "expectedQty": "2844798422174234962396475", + "swapFee": "1716376883108390223269", + "reserves": [ + "1116168701665864509736430316", + "385083769619933265911626895", + "199952118942956488418991131" + ], + "mAssetSupply": "1696011120588065037588672373" + }, { "type": "mintMulti", "inputQtys": [ - "2193969874884", - "7874005737172", - "9879922419581" + "182260658594857056", + "185982601543578656", + "279594428164795712" ], - "expectedQty": "19909168030149", + "expectedQty": "654615021105151608", "reserves": [ - "18427501013724122376077580", - "65736387220361308314716273", - "72937235629363228455818331" + "1116168701848125168331287372", + "385083769805915867455205551", + "199952119222550916583786843" ], - "mAssetSupply": "156832312411318114546159555" + "mAssetSupply": "1696011121242680058693823981" }, { "type": "redeemMasset", - "inputQty": "346864892498439977513779", + "inputQty": "77565592221114092748", "expectedQtys": [ - "40743744091678182515878", - "145345076167578643838821", - "161266362759875479903021" + "51031689832430245346", + "17606187548262218390", + "9141892719807471577" ], - "redemptionFee": "104059467749531993254", + "redemptionFee": "23269677666334227", "reserves": [ - "18386757269632444193561702", - "65591042144193729670877452", - "72775969266603352975915310" + "1116168650816435335901042026", + "385083752199728319192987161", + "199952110080658196776315266" ], - "mAssetSupply": "156485551578287424100639030" + "mAssetSupply": "1696011043700357515246065460" }, { - "type": "redeemBassets", - "inputQtys": [ - "482478235093041873420288", - "951664417315701586395136", - "599114011617894338658304" - ], - "expectedQty": "2036855214082306283430324", - "swapFee": "1222846836551314558793", + "type": "mint", + "inputIndex": 0, + "inputQty": "1643376331941954436726784", + "expectedQty": "1624503594382318902758810", "reserves": [ - "17904279034539402320141414", - "64639377726878028084482316", - "72176855254985458637257006" - ], - "mAssetSupply": "154448696364205117817208706" + "1117812027148377290337768810", + "385083752199728319192987161", + "199952110080658196776315266" + ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "9321379565298669060096", - "expectedQty": "9269387374369539038265", + "inputIndex": 1, + "inputQty": "1911494648038645481603072", + "expectedQty": "1921075743706033594619637", "reserves": [ - "17904279034539402320141414", - "64639377726878028084482316", - "72186176634550757306317102" + "1117812027148377290337768810", + "386995246847766964674590233", + "199952110080658196776315266" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "361361751626366991728640", - "103999593609405050912768", - "333016475953659828502528" + "type": "redeemMasset", + "inputQty": "138501831886759515075379", + "expectedQtys": [ + "91066437953895552896985", + "31527911473112677258021", + "16289792902714686807089" ], - "expectedQty": "804641674170867006828066", - "swapFee": "483074849412167504599", + "redemptionFee": "41550549566027854522", "reserves": [ - "17542917282913035328412774", - "64535378133268623033569548", - "71853160158597097477814574" + "1117720960710423394784871825", + "386963718936293851997332212", + "199935820287755482089508177" ], - "mAssetSupply": "153653324077408620349418905" + "mAssetSupply": "1699418162757108674256223050" }, { "type": "redeemMasset", - "inputQty": "132387442915838468816896", + "inputQty": "1036356654331365261993574", "expectedQtys": [ - "15110413235258995369537", - "55586891060427982702596", - "61889988121483190089817" + "681415600603303850773142", + "235911398479156874809635", + "121890339228228641415476" ], - "redemptionFee": "39716232874751540645", + "redemptionFee": "310906996299409578598", "reserves": [ - "17527806869677776333043237", - "64479791242208195050866952", - "71791270170475614287724757" + "1117039545109820090934098683", + "386727807537814695122522577", + "199813929948527253448092701" ], - "mAssetSupply": "153520976350725656632142654" + "mAssetSupply": "1698382117009773608403808074" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1676526832040093679616", - "expectedQty": "1717149992806981208182", + "inputIndex": 1, + "inputQty": "136505043543206248448", + "expectedQty": "137182468942285844826", "reserves": [ - "17529483396509816426722853", - "64479791242208195050866952", - "71791270170475614287724757" + "1117039545109820090934098683", + "386727944042858238328771025", + "199813929948527253448092701" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1495468282630644170752", - "expectedQty": "1503099304016512912056", - "swapFee": "897280969578386502", - "reserves": [ - "17529483396509816426722853", - "64479791242208195050866952", - "71789767071171597774812701" + "type": "mintMulti", + "inputQtys": [ + "10600735083653183488", + "103359260153341886464", + "133511264084108361728" ], - "mAssetSupply": "153521198929716802547566586" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "446582590928272261906432", - "expectedQty": "448849427353984723312351", - "swapFee": "267949554556963357143", + "expectedQty": "251663261066679527022", "reserves": [ - "17529483396509816426722853", - "64479791242208195050866952", - "71340917643817613051500350" + "1117039555710555174587282171", + "386728047402118391670657489", + "199814063459791337556454429" ], - "mAssetSupply": "153074884288343087249017297" + "mAssetSupply": "1698382505855503617369179922" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "25748534218804461568", - "expectedQty": "25851796196013208358", - "swapFee": "15449120531282676", + "inputIndex": 2, + "inputQty": "6058645854131399680", + "expectedQty": "5887416549615305091", + "swapFee": "3635187512478839", "reserves": [ - "17529483396509816426722853", - "64479765390411999037658594", - "71340917643817613051500350" + "1117039555710555174587282171", + "386728047402118391670657489", + "199814057572374787941149338" ], - "mAssetSupply": "153074858555257988975838405" + "mAssetSupply": "1698382499800492950750259081" }, { "type": "mintMulti", "inputQtys": [ - "4793247057824584826880", - "16765914456318759927808", - "1725282396868865687552" + "1528019392437400419434496", + "1287720720034043556528128", + "1211935142159732464156672" ], - "expectedQty": "23313070271786653480869", + "expectedQty": "4050909670843470640781994", "reserves": [ - "17534276643567641011549733", - "64496531304868317797586402", - "71342642926214481917187902" + "1118567575102992575006716667", + "388015768122152435227185617", + "201025992714534520405306010" ], - "mAssetSupply": "153098171625529775629319274" + "mAssetSupply": "1702433409471336421391041075" }, { - "type": "mintMulti", - "inputQtys": [ - "24568989262341912", - "18810316256776832", - "5469589654782807" - ], - "expectedQty": "49322767115430462", + "type": "redeem", + "inputIndex": 2, + "inputQty": "423078260013431", + "expectedQty": "411228081256956", + "swapFee": "253846956008", "reserves": [ - "17534276668136630273891645", - "64496531323678634054363234", - "71342642931684071571970709" + "1118567575102992575006716667", + "388015768122152435227185617", + "201025992714123292324049054" ], - "mAssetSupply": "153098171674852542744749736" + "mAssetSupply": "1702433409470913596977983652" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "688359494918369", - "expectedQty": "691833745396768", - "swapFee": "413015696951", + "inputIndex": 1, + "inputQty": "8476947974538571", + "expectedQty": "8430288405388343", + "swapFee": "5086168784723", "reserves": [ - "17534276668136630273891645", - "64496531323678634054363234", - "71342642930992237826573941" + "1118567575102992575006716667", + "388015768113722146821797274", + "201025992714123292324049054" ], - "mAssetSupply": "153098171674164596265528318" + "mAssetSupply": "1702433409462441735172229804" }, { - "type": "swap", + "type": "mint", + "inputIndex": 2, + "inputQty": "41641771353709811335168", + "expectedQty": "42815787915293871986317", + "reserves": [ + "1118567575102992575006716667", + "388015768113722146821797274", + "201067634485477002135384222" + ] + }, + { + "type": "mint", "inputIndex": 1, - "inputQty": "1456007587875586714894336", - "outputIndex": 2, - "expectedQty": "1456314353488448948889413", - "swapFee": "869513320501102386786", + "inputQty": "4858059356349910443098112", + "expectedQty": "4881418405013844996809493", "reserves": [ - "17534276668136630273891645", - "65952538911554220769257570", - "69886328577503788877684528" - ], - "mAssetSupply": "153099041187485097367915104", - "hardLimitError": false, - "insufficientLiquidityError": false + "1118567575102992575006716667", + "392873827470072057264895386", + "201067634485477002135384222" + ] }, { "type": "redeemMasset", - "inputQty": "725931994052762704596172", + "inputQty": "580972841165323029708", "expectedQtys": [ - "83115307055793920527260", - "312625700306436586331074", - "331272499496759458597144" + "380507521281512194640", + "133645431527239743613", + "68397966212243791327" ], - "redemptionFee": "217779598215828811378", + "redemptionFee": "174291852349596908", "reserves": [ - "17451161361080836353364385", - "65639913211247784182926496", - "69555056078007029419087384" + "1118567194595471293494522027", + "392873693824640530025151773", + "201067566087510789891592895" ], - "mAssetSupply": "152373326973030550492130310" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "393758097301163147264", - "expectedQty": "403215706469308244331", - "reserves": [ - "17451555119178137516511649", - "65639913211247784182926496", - "69555056078007029419087384" - ] + "mAssetSupply": "1707357062856821561067592814" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "56063795612828426240", - "54257508985936961536", - "11329983527615266816" + "14831875834733688176771072", + "53517951784799240221360128", + "4109449475826277605703680" ], - "expectedQty": "122675327622693372797", + "expectedQty": "72724060638435879685279563", + "swapFee": "43660632762719159306751", "reserves": [ - "17451611182973750344937889", - "65639967468756770119888032", - "69555067407990557034354200" + "1103735318760737605317750955", + "339355742039841289803791645", + "196958116611684512285889215" ], - "mAssetSupply": "152373852864064642493747438" + "mAssetSupply": "1634633002218385681382313251" }, { "type": "mint", "inputIndex": 0, - "inputQty": "177360410874048608731136", - "expectedQty": "181577281807982259159123", + "inputQty": "41848509549144047121072128", + "expectedQty": "41319647733174324089369843", "reserves": [ - "17628971593847798953669025", - "65639967468756770119888032", - "69555067407990557034354200" + "1145583828309881652438823083", + "339355742039841289803791645", + "196958116611684512285889215" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "793486772376816320512", - "1341133903136378585088", - "1770541763121157242880" + "type": "redeemMasset", + "inputQty": "8350384202951008385918566", + "expectedQtys": [ + "5706124981407116787342347", + "1690322636706851040387283", + "981043553265681776297594" ], - "expectedQty": "3908007440077048922558", - "swapFee": "2346212191361045981", + "redemptionFee": "2505115260885302515775", "reserves": [ - "17628178107075422137348513", - "65638626334853633741302944", - "69553296866227435877111320" + "1139877703328474535651480736", + "337665419403134438763404362", + "195977073058418830509591621" ], - "mAssetSupply": "152551522138432547703984003" + "mAssetSupply": "1667604770863869882388280303" }, { "type": "mintMulti", "inputQtys": [ - "59854927741777019404288", - "191617088250528636338176", - "143694320817156525129728" + "202959995205057511424", + "108446197644998557696", + "67611224930982035456" ], - "expectedQty": "394896262230536833430943", + "expectedQty": "379377427036093203659", "reserves": [ - "17688033034817199156752801", - "65830243423104162377641120", - "69696991187044592402241048" + "1139877906288469740708992160", + "337665527849332083761962058", + "195977140669643761491627077" ], - "mAssetSupply": "152946418400663084537414946" + "mAssetSupply": "1667605150241296918481483962" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "389109509718438215417856", - "expectedQty": "390724122276992558243263", - "swapFee": "233465705831062929250", + "type": "mintMulti", + "inputQtys": [ + "150733649387532288000", + "9172448090656516079616", + "10794679089494430318592" + ], + "expectedQty": "20524472428378082709095", "reserves": [ - "17688033034817199156752801", - "65439519300827169819397857", - "69696991187044592402241048" + "1139878057022119128241280160", + "337674700297422740278041674", + "195987935348733255921945669" ], - "mAssetSupply": "152557542356650477384926340" + "mAssetSupply": "1667625674713725296564193057" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "2923356699392847380480", - "expectedQty": "2937290322074521249452", - "swapFee": "1754014019635708428", + "inputIndex": 1, + "inputQty": "1831126409923370680320", + "expectedQty": "1814563915015111580226", + "swapFee": "1098675845954022408", "reserves": [ - "17688033034817199156752801", - "65439519300827169819397857", - "69694053896722517880991596" + "1139878057022119128241280160", + "337672885733507725166461448", + "195987935348733255921945669" ], - "mAssetSupply": "152554620753965104173254288" + "mAssetSupply": "1667623844685991219147535145" }, { "type": "redeemMasset", - "inputQty": "4021241290524939675238", + "inputQty": "416281571894777873222860", "expectedQtys": [ - "466105255165085456461", - "1724425987985939395255", - "1836539128521408738016" + "284457359966600528525001", + "84266502909085540490608", + "48908925240872169081582" ], - "redemptionFee": "1206372387157481902", + "redemptionFee": "124884471568433361966", "reserves": [ - "17687566929562034071296340", - "65437794874839183880002602", - "69692217357593996472253580" + "1139593599662152527712755159", + "337588619230598639625970840", + "195939026423492383752864087" ], - "mAssetSupply": "152550600719046966391060952" + "mAssetSupply": "1667207687998568009707674251" }, { - "type": "redeemBassets", - "inputQtys": [ - "2702208942026162962432", - "2261265573874279645184", - "2777561090737978212352" + "type": "redeemMasset", + "inputQty": "1378046256924805038080", + "expectedQtys": [ + "941659267722206866861", + "278953349747032733459", + "161906665845480123647" ], - "expectedQty": "7778688566936458514308", - "swapFee": "4670015149251425964", + "redemptionFee": "413413877077441511", "reserves": [ - "17684864720620007908333908", - "65435533609265309600357418", - "69689439796503258494041228" + "1139592658002884805505888298", + "337588340277248892593237381", + "195938864516826538272740440" ], - "mAssetSupply": "152542822030480029932546644" + "mAssetSupply": "1667206310365724961980077682" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "285364725510599126024192", - "167411138409453947191296", - "71005403578943013912576" + "1830573084094888851537920", + "1727466171617284544528384", + "477966573584364932694016" ], - "expectedQty": "529196645095565746956783", + "expectedQty": "4041662030239626725735620", + "swapFee": "2426453089997774700261", "reserves": [ - "17970229446130607034358100", - "65602944747674763547548714", - "69760445200082201507953804" + "1137762084918789916654350378", + "335860874105631608048708997", + "195460897943242173340046424" ], - "mAssetSupply": "153072018675575595679503427" + "mAssetSupply": "1663164648335485335254342062" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "30477172034143", - "expectedQty": "30317329621978", + "inputIndex": 1, + "inputQty": "6870069792657393057792", + "expectedQty": "6929257679013146787004", "reserves": [ - "17970229446130607034358100", - "65602944747674763547548714", - "69760445200112678679987947" + "1137762084918789916654350378", + "335867744175424265441766789", + "195460897943242173340046424" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2272418635761468928", - "expectedQty": "2260500571809650576", + "type": "redeemBassets", + "inputQtys": [ + "1452174733211931305312256", + "2202212145821807909273600", + "559996595762584767954944" + ], + "expectedQty": "4231768724797890852362565", + "swapFee": "2540585586230472795094", "reserves": [ - "17970229446130607034358100", - "65602944747674763547548714", - "69760447472531314441456875" - ] + "1136309910185577985349038122", + "333665532029602457532493189", + "194900901347479588572091480" + ], + "mAssetSupply": "1658939808868366457548766501" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "302836226026354212077568", - "expectedQty": "309597543030265926138759", + "type": "redeemBassets", + "inputQtys": [ + "10298991260528859624243200", + "16891435575719976379613184", + "2536395201799025378459648" + ], + "expectedQty": "29826380367434998138589231", + "swapFee": "17906572163759254435815", "reserves": [ - "18273065672156961246435668", - "65602944747674763547548714", - "69760447472531314441456875" - ] + "1126010918925049125724794922", + "316774096453882481152880005", + "192364506145680563193631832" + ], + "mAssetSupply": "1629113428500931459410177270" }, { - "type": "redeemMasset", - "inputQty": "1021292800184439193", - "expectedQtys": [ - "121634860475061106", - "436686715535382105", - "464361177660976829" + "type": "mintMulti", + "inputQtys": [ + "563811428347439508094976", + "842471005660620410322944", + "959295923394432527761408" ], - "redemptionFee": "306387840055331", + "expectedQty": "2395996090347523224084148", "reserves": [ - "18273065550522100771374562", - "65602944310988048012166609", - "69760447008170136780480046" + "1126574730353396565232889898", + "317616567459543101563202949", + "193323802069074995721393240" ], - "mAssetSupply": "153381617458150338400530878" + "mAssetSupply": "1631509424591278982634261418" }, { "type": "redeemMasset", - "inputQty": "272382935355441792679936", + "inputQty": "943451447693141606819430", "expectedQtys": [ - "32440511018743547232615", - "116466119595451241995852", - "123847010978207650855855" + "651267889540094797328365", + "183612738683973208866358", + "111759638467923039581375" ], - "redemptionFee": "81714880606632537803", - "reserves": [ - "18240625039503357224141947", - "65486478191392596770170757", - "69636599997191929129624191" - ], - "mAssetSupply": "153109316237675503240388745" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "941871826790416390291456", - "expectedQty": "937549914651286877434551", - "reserves": [ - "18240625039503357224141947", - "66428350018183013160462213", - "69636599997191929129624191" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "41183869482374354960384", - "expectedQty": "42098388658612819166539", + "redemptionFee": "283035434307942482045", "reserves": [ - "18281808908985731579102331", - "66428350018183013160462213", - "69636599997191929129624191" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "29923344217219767730176", - "expectedQty": "30044491718037299078440", - "swapFee": "17954006530331860638", - "reserves": [ - "18281808908985731579102331", - "66398305526464975861383773", - "69636599997191929129624191" + "1125923462463856470435561533", + "317432954720859128354336591", + "193212042430607072681811865" ], - "mAssetSupply": "154059059150774713501120297" + "mAssetSupply": "1630566256179020148969924033" }, { - "type": "mintMulti", - "inputQtys": [ - "33033789312338434719744", - "12882539039709741449216", - "5566921575715815030784" + "type": "redeemMasset", + "inputQty": "376447128244439193", + "expectedQtys": [ + "259862791386511712", + "73263429035682460", + "44593280404367142" ], - "expectedQty": "52125650950151474757490", + "redemptionFee": "112934138473331", "reserves": [ - "18314842698298070013822075", - "66411188065504685602832989", - "69642166918767644944654975" + "1125923462203993679049049821", + "317432954647595699318654131", + "193212042386013792277444723" ], - "mAssetSupply": "154111184801724864975877787" + "mAssetSupply": "1630566255802685954863958171" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3921871851968899579904", - "expectedQty": "3937705474344969067461", - "swapFee": "2353123111181339747", + "type": "redeemMasset", + "inputQty": "229709609343008033996", + "expectedQtys": [ + "158569360246038673953", + "44705650276572164312", + "27211005882236284273" + ], + "redemptionFee": "68912882802902410", "reserves": [ - "18314842698298070013822075", - "66407250360030340633765528", - "69642166918767644944654975" + "1125923303634633433010375868", + "317432909941945422746489819", + "193212015175007910041160450" ], - "mAssetSupply": "154107265282996007257637630" + "mAssetSupply": "1630566026161989494658826585" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "12086602895782081200128", - "expectedQty": "12141146826368577726757", - "swapFee": "7251961737469248720", + "type": "redeemBassets", + "inputQtys": [ + "946409581256705441792", + "233526134205105635328", + "1874658769641499787264" + ], + "expectedQty": "3101857371661452860950", + "swapFee": "1862231762054104179", "reserves": [ - "18314842698298070013822075", - "66407250360030340633765528", - "69630025771941276366928218" + "1125922357225052176304934076", + "317432676415811217640854491", + "193210140516238268541373186" ], - "mAssetSupply": "154095185932061962645686222" + "mAssetSupply": "1630562924304617833205965635" }, { "type": "mint", "inputIndex": 2, - "inputQty": "115541232951084154880", - "expectedQty": "114953232436812659464", + "inputQty": "2398427018768464264298496", + "expectedQty": "2471217390461550403367553", "reserves": [ - "18314842698298070013822075", - "66407250360030340633765528", - "69630141313174227451083098" + "1125922357225052176304934076", + "317432676415811217640854491", + "195608567535006732805671682" ] }, { "type": "redeemMasset", - "inputQty": "1459244915043215605760", + "inputQty": "4522394092230744099887513", "expectedQtys": [ - "173385062175730265634", - "628671805827909298744", - "659182641083315489018" + "3117103878769101158582572", + "878808934341113063978254", + "541540205389102475851343" ], - "redemptionFee": "437773474512964681", + "redemptionFee": "1356718227669223229966", "reserves": [ - "18314669313235894283556441", - "66406621688224512724466784", - "69629482130533144135594080" + "1122805253346283075146351504", + "316553867481470104576876237", + "195067027329617630329820339" ], - "mAssetSupply": "154093842078152830755704607" + "mAssetSupply": "1628513104321076308732675641" }, { - "type": "redeemMasset", - "inputQty": "47347518917865", - "expectedQtys": [ - "5625753721537", - "20398255229611", - "21388227738381" - ], - "redemptionFee": "14204255675", + "type": "redeem", + "inputIndex": 1, + "inputQty": "12337813839160367120384", + "expectedQty": "12209691820301548894982", + "swapFee": "7402688303496220272", "reserves": [ - "18314669313230268529834904", - "66406621688204114469237173", - "69629482130511755907855699" + "1122805253346283075146351504", + "316541657789649803027981255", + "195067027329617630329820339" ], - "mAssetSupply": "154093842078105497441042417" + "mAssetSupply": "1628500773909925451861775529" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "4741999121333108500070400", + "expectedQty": "4678931801108736002067896", + "reserves": [ + "1127547252467616183646421904", + "316541657789649803027981255", + "195067027329617630329820339" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "262312597215137822146560", - "44883315805899976605696", - "465918837843588246667264" + "119992406901345", + "31546845365620", + "757795287308880" ], - "expectedQty": "776376292515790174307119", - "swapFee": "466105438772737747232", + "expectedQty": "930956823248796", "reserves": [ - "18052356716015130707688344", - "66361738372398214492631477", - "69163563292668167661188435" + "1127547252467736176053323249", + "316541657789681349873346875", + "195067027330375425617129219" ], - "mAssetSupply": "153317465785589707266735298" + "mAssetSupply": "1633179705711965144687092221" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "1484360171076875674714112", + "inputIndex": 0, + "inputQty": "186974500905153109950464", "outputIndex": 1, - "expectedQty": "1482527847096101951624167", - "swapFee": "885975074951988480620", + "expectedQty": "182539353781117446722469", + "swapFee": "110687942218797920284", "reserves": [ - "18052356716015130707688344", - "64879210525302112541007310", - "70647923463745043335902547" + "1127734226968641329163273713", + "316359118435900232426624406", + "195067027330375425617129219" ], - "mAssetSupply": "153318351760664659255215918", + "mAssetSupply": "1633179816399907363485012505", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "496647996085716836260249", - "expectedQtys": [ - "58459910276029311795692", - "210101810292944748833858", - "228782941299533067682729" - ], - "redemptionFee": "148994398825715050878", + "type": "swap", + "inputIndex": 1, + "inputQty": "84802323773414050889728", + "outputIndex": 0, + "expectedQty": "86759241856977513502781", + "swapFee": "51391681954261410375", "reserves": [ - "17993896805739101395892652", - "64669108715009167792173452", - "70419140522445510268219818" + "1127647467726784351649770932", + "316443920759673646477514134", + "195067027330375425617129219" ], - "mAssetSupply": "152821852758977768134006547" + "mAssetSupply": "1633179867791589317746422880", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "65740802703069059481", - "expectedQtys": [ - "7738280347017168993", - "27810968265020959985", - "30283771049797217776" + "type": "mintMulti", + "inputQtys": [ + "70663583717089026768896", + "20407089066256225009664", + "68158296339878625935360" ], - "redemptionFee": "19722240810920717", + "expectedQty": "160550764938268844761686", "reserves": [ - "17993889067458754378723659", - "64669080904040902771213467", - "70419110238674460471002042" + "1127718131310501440676539828", + "316464327848739902702523798", + "195135185626715304243064579" ], - "mAssetSupply": "152821787037897305875867783" + "mAssetSupply": "1633340418556527586591184566" }, { - "type": "redeemMasset", - "inputQty": "670541629458831376384", - "expectedQtys": [ - "78928745919555171401", - "283665717643943768204", - "308887758453567163046" - ], - "redemptionFee": "201162488837649412", + "type": "mint", + "inputIndex": 2, + "inputQty": "5164068956745980", + "expectedQty": "5320109329313880", "reserves": [ - "17993810138712834823552258", - "64668797238323258827445263", - "70418801350916006903838996" - ], - "mAssetSupply": "152821116697430335882140811" + "1127718131310501440676539828", + "316464327848739902702523798", + "195135185631879373199810559" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "1385504707949309697458176", + "inputQty": "72608812931975913472", "outputIndex": 2, - "expectedQty": "1420512304406304536691875", - "swapFee": "848713458549566053352", + "expectedQty": "69497159665988115004", + "swapFee": "42984065718121684", "reserves": [ - "19379314846662144521010434", - "64668797238323258827445263", - "68998289046509702367147121" + "1127718203919314372652453300", + "316464327848739902702523798", + "195135116134719707211695555" ], - "mAssetSupply": "152821965410888885448194163", + "mAssetSupply": "1633340418604831761638620130", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "7169533944724722081071104", + "expectedQty": "7239081609123095824527046", + "reserves": [ + "1127718203919314372652453300", + "323633861793464624783594902", + "195135116134719707211695555" + ] + }, + { + "type": "redeemMasset", + "inputQty": "938819492197864810374758", + "expectedQtys": [ + "645141679667656419647224", + "185143498144421515429154", + "111632317495429380033553" + ], + "redemptionFee": "281645847659359443112", + "reserves": [ + "1127073062239646716232806076", + "323448718295320203268165748", + "195023483817224277831662002" + ], + "mAssetSupply": "1639640962367604652012215530" + }, { "type": "swap", - "inputIndex": 0, - "inputQty": "1565128463870124621824", + "inputIndex": 2, + "inputQty": "13884877597291320619040768", "outputIndex": 1, - "expectedQty": "1600504134857715883602", - "swapFee": "956926011618197307", + "expectedQty": "14125395242268148087269927", + "swapFee": "8565107328765017995396", "reserves": [ - "19380879975126014645632258", - "64667196734188401111561661", - "68998289046509702367147121" + "1127073062239646716232806076", + "309323323053052055180895821", + "208908361414515598450702770" ], - "mAssetSupply": "152821966367814897066391470", + "mAssetSupply": "1639649527474933417030210926", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "3836376337405195583488", - "5354161466855252819968", - "4558407388661305311232" + "10097680940350128701571072", + "9623828286034358973759488", + "12507306218488031338299392" ], - "expectedQty": "13778239509690968427808", + "expectedQty": "32512918197253939565593985", "reserves": [ - "19384716351463419841215746", - "64672550895655256364381629", - "69002847453898363672458353" + "1137170743179996844934377148", + "318947151339086414154655309", + "221415667633003629789002162" ], - "mAssetSupply": "152835744607324588034819278" + "mAssetSupply": "1672162445672187356595804911" }, { "type": "redeemMasset", - "inputQty": "14568808015150294630", + "inputQty": "14965397816141130445619", "expectedQtys": [ - "1847260848662748212", - "6162951734069295271", - "6575606072162700158" + "10174314784326767773102", + "2853633666492006200338", + "1981015352523428496532" ], - "redemptionFee": "4370642404545088", + "redemptionFee": "4489619344842339133", "reserves": [ - "19384714504202571178467534", - "64672544732703522295086358", - "69002840878292291509758195" + "1137160568865212518166604046", + "318944297705419922148454971", + "221413686617651106360505630" ], - "mAssetSupply": "152835730042887215289069736" + "mAssetSupply": "1672147484763990560307698425" }, { - "type": "redeemMasset", - "inputQty": "2356944191770738278", - "expectedQtys": [ - "298850168346887477", - "997043359942180885", - "1063802647618072164" - ], - "redemptionFee": "707083257531221", + "type": "mint", + "inputIndex": 0, + "inputQty": "351783776971207999488", + "expectedQty": "347521159251547892464", "reserves": [ - "19384714205352402831580057", - "64672543735660162352905473", - "69002839814489643891686031" - ], - "mAssetSupply": "152835727686650106775862679" + "1137160920648989489374603534", + "318944297705419922148454971", + "221413686617651106360505630" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "102754446987072938967040", + "expectedQty": "101509273640637238699465", + "reserves": [ + "1137263675095976562313570574", + "318944297705419922148454971", + "221413686617651106360505630" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "401750579639939380543488", - "outputIndex": 2, - "expectedQty": "401736671145041901010688", - "swapFee": "240053226178278009738", + "inputQty": "4266522587376589471744", + "outputIndex": 0, + "expectedQty": "4359484476865539875218", + "swapFee": "2585543481203481594", "reserves": [ - "19384714205352402831580057", - "65074294315300101733448961", - "68601103143344601990675343" + "1137259315611499696773695356", + "318948564228007298737926715", + "221413686617651106360505630" ], - "mAssetSupply": "152835967739876285053872417", + "mAssetSupply": "1672249344144333930297771948", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "51024964861072261120", - "expectedQty": "51994160933480456433", + "type": "redeemMasset", + "inputQty": "216182248978220671041536", + "expectedQtys": [ + "146976598195727121221222", + "41220128361347207244218", + "28614960551489622350577" + ], + "redemptionFee": "64854674693466201312", "reserves": [ - "19384765230317263903841177", - "65074294315300101733448961", - "68601103143344601990675343" - ] + "1137112339013303969652474134", + "318907344099645951530682497", + "221385071657099616738155053" + ], + "mAssetSupply": "1672033226750030403092931724" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "4391856639531381738700800", - "outputIndex": 2, - "expectedQty": "4472088935923586040429744", - "swapFee": "2675750400168496285931", + "type": "redeemMasset", + "inputQty": "5899653462837564538880", + "expectedQtys": [ + "4011018483709382364826", + "1124904908590023180196", + "780907553254123554266" + ], + "redemptionFee": "1769896038851269361", "reserves": [ - "23776621869848645642541977", - "65074294315300101733448961", - "64129014207421015950245599" + "1137108327994820260270109308", + "318906219194737361507502301", + "221384290749546362614600787" ], - "mAssetSupply": "152838695484437387030614781", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1672027328866463604379662205" }, { "type": "mintMulti", "inputQtys": [ - "1771563586905676972032", - "2332189115967692079104", - "677137803713785495552" + "1003916635211994635436032", + "1226609555442498510258176", + "435374979899768585584640" ], - "expectedQty": "4791655036659945507696", + "expectedQty": "2676227729970280911947388", "reserves": [ - "23778393433435551319514009", - "65076626504416069425528065", - "64129691345224729735741151" + "1138112244630032254905545340", + "320132828750179860017760477", + "221819665729446131200185427" ], - "mAssetSupply": "152843487139474046976122477" + "mAssetSupply": "1674703556596433885291609593" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "5501062359706094592", - "expectedQty": "5483631953582751614", + "type": "mintMulti", + "inputQtys": [ + "206200994738601696", + "1045638197407797504", + "151082675944074400" + ], + "expectedQty": "1414364150939383047", "reserves": [ - "23778393433435551319514009", - "65076626504416069425528065", - "64129696846287089441835743" - ] + "1138112244836233249644147036", + "320132829795818057425557981", + "221819665880528807144259827" + ], + "mAssetSupply": "1674703558010798036230992640" }, { - "type": "redeemBassets", - "inputQtys": [ - "7221562318482154979328", - "1329460741073612832768", - "1594539813781478309888" + "type": "redeemMasset", + "inputQty": "247940437324408238899", + "expectedQtys": [ + "168447359620900779012", + "47381556741648367028", + "32830625625104363324" ], - "expectedQty": "10220104241948751162932", - "swapFee": "6135743991564189211", + "redemptionFee": "74382131197322471", "reserves": [ - "23771171871117069164534681", - "65075297043674995812695297", - "64128102306473307963525855" + "1138112076388873628743368024", + "320132782414261315777190953", + "221819633049903182039896503" ], - "mAssetSupply": "152833272518864051807711159" + "mAssetSupply": "1674703310144742843020076212" }, { "type": "redeemBassets", "inputQtys": [ - "2444477974028109742080", - "2238350679199729319936", - "1363026186205088186368" + "820583782339634397184", + "1235689236535852138496", + "1361382463301370773504" ], - "expectedQty": "6062591094307018017539", - "swapFee": "3639738499684021223", + "expectedQty": "3452009164015425814783", + "swapFee": "2072448967789929446", "reserves": [ - "23768727393143041054792601", - "65073058692995796083375361", - "64126739280287102875339487" + "1138111255805091289108970840", + "320131546725024779925052457", + "221818271667439880669122999" ], - "mAssetSupply": "152827209927769744789693620" + "mAssetSupply": "1674699858135578827594261429" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3140337731557245", - "outputIndex": 0, - "expectedQty": "3092132660442263", - "swapFee": "1877990470249", - "reserves": [ - "23768727390050908394350338", - "65073058696136133814932606", - "64126739280287102875339487" + "type": "redeemMasset", + "inputQty": "283383244177344993165312", + "expectedQtys": [ + "192526978395865435377943", + "54154599619142186198699", + "37523573709773659676481" ], - "mAssetSupply": "152827209927771622780163869", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "41437942042754331705344", - "expectedQty": "41919144838709371140719", + "redemptionFee": "85014973253203497949", "reserves": [ - "23810165332093662726055682", - "65073058696136133814932606", - "64126739280287102875339487" - ] + "1137918728826695423673592897", + "320077392125405637738853758", + "221780748093730107009446518" + ], + "mAssetSupply": "1674416559906374735804594066" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "585206865146176667648", - "expectedQty": "578153960258188176961", - "swapFee": "351124119087706000", + "inputIndex": 1, + "inputQty": "1242415867877842", + "expectedQty": "1229462064933763", + "swapFee": "745449520726", "reserves": [ - "23809587178133404537878721", - "65073058696136133814932606", - "64126739280287102875339487" + "1137918728826695423673592897", + "320077392124176175673919995", + "221780748093730107009446518" ], - "mAssetSupply": "152868544216869305062342940" + "mAssetSupply": "1674416559905133065386236950" }, { - "type": "mintMulti", - "inputQtys": [ - "930511315011479535616", - "202721713058986590208", - "1789510758044152627200" + "type": "redeemMasset", + "inputQty": "978664576980085934076723", + "expectedQtys": [ + "664892288943054779234959", + "187023013592369772886128", + "129587733735245859573313" ], - "expectedQty": "2927203866855416848256", + "redemptionFee": "293599373094025780223", "reserves": [ - "23810517689448416017414337", - "65073261417849192801522814", - "64128528791045147027966687" + "1137253836537752368894357938", + "319890369110583805901033867", + "221651160359994861149873205" ], - "mAssetSupply": "152871471420736160479191196" + "mAssetSupply": "1673438188927526073477940450" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "35391927611661624541184", - "expectedQty": "35487347054992597634556", - "swapFee": "21235156566996974724", + "inputQty": "19524144514624596738048", + "expectedQty": "19320563912402582273136", + "swapFee": "11714486708774758042", "reserves": [ - "23810517689448416017414337", - "65037774070794200203888258", - "64128528791045147027966687" + "1137253836537752368894357938", + "319871048546671403318760731", + "221651160359994861149873205" ], - "mAssetSupply": "152836100728281065851624736" + "mAssetSupply": "1673418676497498157655960444" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "156673896819757454196736", - "expectedQty": "156157916583965672611196", + "type": "redeemMasset", + "inputQty": "19274704814166842225459", + "expectedQtys": [ + "13095142438777051286441", + "3683220762316224393822", + "2552247724633631504476" + ], + "redemptionFee": "5782411444250052667", "reserves": [ - "23810517689448416017414337", - "65194447967613957658084994", - "64128528791045147027966687" - ] + "1137240741395313591843071497", + "319867365325909087094366909", + "221648608112270227518368729" + ], + "mAssetSupply": "1673399407575095435063787652" }, { "type": "mint", "inputIndex": 2, - "inputQty": "490347086684125115973632", - "expectedQty": "488785988757726383763890", + "inputQty": "450654899336334396096512", + "expectedQty": "461224970292640419500103", "reserves": [ - "23810517689448416017414337", - "65194447967613957658084994", - "64618875877729272143940319" + "1137240741395313591843071497", + "319867365325909087094366909", + "222099263011606561914465241" ] }, { - "type": "redeemMasset", - "inputQty": "15983278222044062705254", - "expectedQtys": [ - "2478846548841886880203", - "6787212040323997785001", - "6727290836290175848715" - ], - "redemptionFee": "4794983466613218811", + "type": "mint", + "inputIndex": 2, + "inputQty": "1108144614544599825776640", + "expectedQty": "1133942065834602308799891", "reserves": [ - "23808038842899574130534134", - "65187660755573633660299993", - "64612148586892981968091604" - ], - "mAssetSupply": "153465066150384180458513379" + "1137240741395313591843071497", + "319867365325909087094366909", + "223207407626151161740241881" + ] }, { "type": "redeemMasset", - "inputQty": "4939906135178072607948", + "inputQty": "18739845316237", "expectedQtys": [ - "766130020680013603084", - "2097704233948019307099", - "2079184558614727218664" + "12719636462906", + "3577603628850", + "2496496104552" ], - "redemptionFee": "1481971840553421782", + "redemptionFee": "5621953594", "reserves": [ - "23807272712878894116931050", - "65185563051339685640992894", - "64610069402334367240872940" + "1137240741395300872206608591", + "319867365325905509490738059", + "223207407626148665244137329" ], - "mAssetSupply": "153460127726220842939327213" + "mAssetSupply": "1674994574611203943568725003" }, { "type": "redeemBassets", "inputQtys": [ - "53352011887159961190400", - "41452909136164069310464", - "607483705296674357248" + "3244664679306302951784448", + "843442696517967163686912", + "1202997772489017824116736" ], - "expectedQty": "95899962898359913726442", - "swapFee": "57574522452487440700", + "expectedQty": "5288383194665966206428648", + "swapFee": "3174934877726215453129", "reserves": [ - "23753920700991734155740650", - "65144110142203521571682430", - "64609461918629070566515692" + "1133996076715994569254824143", + "319023922629387542327051147", + "222004409853659647420020593" ], - "mAssetSupply": "153364227763322483025600771" + "mAssetSupply": "1669706191416537977362296355" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "136205674075187836878848", - "expectedQty": "135766143789875976178404", + "type": "redeemMasset", + "inputQty": "75758684110230997748940", + "expectedQtys": [ + "51436760541768569514007", + "14470558983682645934427", + "10069865234392018422904" + ], + "redemptionFee": "22727605233069299324", "reserves": [ - "23753920700991734155740650", - "65144110142203521571682430", - "64745667592704258403394540" - ] + "1133944639955452800685310136", + "319009452070403859681116720", + "221994339988425255401597689" + ], + "mAssetSupply": "1669630455460032979433846739" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "522866572714435697180672", - "outputIndex": 2, - "expectedQty": "522488354196093180626613", - "swapFee": "312680417850293569506", + "inputIndex": 0, + "inputQty": "1453407454614401075642368", + "outputIndex": 1, + "expectedQty": "1420789814769304385288352", + "swapFee": "861535051812674640912", "reserves": [ - "23753920700991734155740650", - "65666976714917957268863102", - "64223179238508165222767927" + "1135398047410067201760952504", + "317588662255634555295828368", + "221994339988425255401597689" ], - "mAssetSupply": "153500306587530209295348681", + "mAssetSupply": "1669631316995084792108487651", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "647610515188098126577664", - "expectedQty": "639470261479477376212783", - "swapFee": "388566309112858875946", - "reserves": [ - "23114450439512256779527867", - "65666976714917957268863102", - "64223179238508165222767927" - ], - "mAssetSupply": "152853084638651224027646963" - }, { "type": "mintMulti", "inputQtys": [ - "682339834806767583232", - "130750274617216663552", - "602283501462404726784" + "147859551024120458117120", + "2999139775955004288925696", + "5609240182802575532228608" ], - "expectedQty": "1421448546565595414749", + "expectedQty": "8911858425629517807980259", "reserves": [ - "23115132779347063547111099", - "65667107465192574485526654", - "64223781522009627627494711" + "1135545906961091322219069624", + "320587802031589559584754064", + "227603580171227830933826297" ], - "mAssetSupply": "152854506087197789623061712" + "mAssetSupply": "1678543175420714309916467910" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1645314881124209000448", - "expectedQty": "1649751091640691970474", - "swapFee": "987188928674525400", + "type": "redeemBassets", + "inputQtys": [ + "20934758889223228489728", + "6265178307524160389120", + "20714710405813907750912" + ], + "expectedQty": "48188081843856085434862", + "swapFee": "28930207230652042486", "reserves": [ - "23115132779347063547111099", - "65667107465192574485526654", - "64222131770917986935524237" + "1135524972202202098990579896", + "320581536853282035424364944", + "227582865460822017026075385" ], - "mAssetSupply": "152852861759505594088586664" + "mAssetSupply": "1678494987338870453831033048" }, { "type": "redeemMasset", - "inputQty": "2562652456885667915366", + "inputQty": "136427552009287624975974", "expectedQtys": [ - "387420165452067903111", - "1100610664095101917133", - "1076392212577044467934" + "92267429038221618276282", + "26048950861211950702818", + "18492315363613463681481" ], - "redemptionFee": "768795737065700374", + "redemptionFee": "40928265602786287492", "reserves": [ - "23114745359181611479207988", - "65666006854528479383609521", - "64221055378705409891056303" + "1135432704773163877372303614", + "320555487902420823473662126", + "227564373145458403562393904" ], - "mAssetSupply": "152850299875844445486371672" + "mAssetSupply": "1678358600715126768992344566" }, { "type": "mintMulti", "inputQtys": [ - "4154446453764803002368", - "13034224041753882624", - "3865483776829850386432" + "1619649557550056490401792", + "800494615452593455890432", + "53856564620844161040384" ], - "expectedQty": "8072017119091769623409", + "expectedQty": "2463958789205729302008613", "reserves": [ - "23118899805635376282210356", - "65666019888752521137492145", - "64224920862482239741442735" + "1137052354330713933862705406", + "321355982517873416929552558", + "227618229710079247723434288" ], - "mAssetSupply": "152858371892963537255995081" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "169600586360523004575744", - "expectedQty": "169008677952684130783549", - "reserves": [ - "23118899805635376282210356", - "65835620475113044142067889", - "64224920862482239741442735" - ] + "mAssetSupply": "1680822559504332498294353179" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "17368473721165087506432", - "expectedQty": "17415184671657356330429", - "swapFee": "10421084232699052503", - "reserves": [ - "23118899805635376282210356", - "65835620475113044142067889", - "64207505677810582385112306" + "type": "redeemBassets", + "inputQtys": [ + "745857583562532454400", + "674752420277373370368", + "1154679288639913066496" ], - "mAssetSupply": "153010022518279288998324701" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "221031588914635613405184", - "outputIndex": 1, - "expectedQty": "220941027838027627709714", - "swapFee": "132182480365340500288", + "expectedQty": "2598740160065441766035", + "swapFee": "1560180204161762116", "reserves": [ - "23118899805635376282210356", - "65614679447275016514358175", - "64428537266725217998517490" + "1137051608473130371330251006", + "321355307765453139556182190", + "227617075030790607810367792" ], - "mAssetSupply": "153010154700759654338824989", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1680819960764172432852587144" }, { "type": "redeemMasset", - "inputQty": "85347925413667934516019", + "inputQty": "1047004051643720898969", "expectedQtys": [ - "12891681568940729606759", - "36588400001465468882169", - "35926977208179707144578" + "708071369622472160946", + "200116240291403200063", + "141743024560631891338" ], - "redemptionFee": "25604377624100380354", + "redemptionFee": "314101215493116269", "reserves": [ - "23106008124066435552603597", - "65578091047273551045476006", - "64392610289517038291372912" + "1137050900401760748858090060", + "321355107649212848152982127", + "227616933287766047178476454" ], - "mAssetSupply": "152924832379723610504689324" + "mAssetSupply": "1680818914074222004624804444" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5428266068284650918248448", - "expectedQty": "5482545735420221263838123", + "inputIndex": 1, + "inputQty": "713411052799892536688640", + "expectedQty": "720382441578277080954668", "reserves": [ - "28534274192351086470852045", - "65578091047273551045476006", - "64392610289517038291372912" + "1137050900401760748858090060", + "322068518702012740689670767", + "227616933287766047178476454" ] }, { - "type": "mintMulti", - "inputQtys": [ - "5357953112904217657344", - "10122423434114355953664", - "405698425380863541248" + "type": "redeem", + "inputIndex": 2, + "inputQty": "557766835657841034919936", + "expectedQty": "545296369719487397418034", + "swapFee": "334660101394704620951", + "reserves": [ + "1137050900401760748858090060", + "322068518702012740689670767", + "227071636918046559781058420" ], - "expectedQty": "15901687969707909155438", + "mAssetSupply": "1680981864340243835375460127" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "854326982194407726383104", + "expectedQty": "835106958459923251372748", + "swapFee": "512596189316644635829", "reserves": [ - "28539632145463990688509389", - "65588213470707665401429670", - "64393015987942419154914160" + "1137050900401760748858090060", + "322068518702012740689670767", + "226236529959586636529685672" ], - "mAssetSupply": "158423279803113539677682885" + "mAssetSupply": "1680128049954238744293712852" }, { "type": "mintMulti", "inputQtys": [ - "2159574796684317687808", - "12760766583821758889984", - "4587327022790982238208" + "3633201536188387302572032", + "7801990679494498495496192", + "10653958166535078148046848" ], - "expectedQty": "19480915864478501118733", + "expectedQty": "22349917703659761344005202", "reserves": [ - "28541791720260675006197197", - "65600974237291487160319654", - "64397603314965210137152368" + "1140684101937949136160662092", + "329870509381507239185166959", + "236890488126121714677732520" ], - "mAssetSupply": "158442760718978018178801618" + "mAssetSupply": "1702477967657898505637718054" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1088685954567915299667968", - "232244921115046194446336", - "81660894426875765456896" + "4123007306096600191860736", + "18318888949938691619422208", + "25461582002952982543466496" ], - "expectedQty": "1410791528852198021333876", - "swapFee": "846983107175624187312", + "expectedQty": "48487178006148435062888937", "reserves": [ - "27453105765692759706529229", - "65368729316176440965873318", - "64315942420538334371695472" + "1144807109244045736352522828", + "348189398331445930804589167", + "262352070129074697221199016" ], - "mAssetSupply": "157031969190125820157467742" + "mAssetSupply": "1750965145664046940700606991" }, { "type": "mintMulti", "inputQtys": [ - "96050527947605812445184", - "46656600008185834635264", - "101022230875585504083968" + "9985753378669963264", + "18888845863228817408", + "20333893325743509504" ], - "expectedQty": "244169505474293958131719", + "expectedQty": "49597549507005852778", "reserves": [ - "27549156293640365518974413", - "65415385916184626800508582", - "64416964651413919875779440" + "1144807119229799115022486092", + "348189417220291794033406575", + "262352090462968022964708520" ], - "mAssetSupply": "157276138695600114115599461" + "mAssetSupply": "1750965195261596447706459769" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "49123921402333908434944", - "expectedQty": "48997699363544265912616", + "inputQty": "4233370814786705916166144", + "outputIndex": 0, + "expectedQty": "4342933766246737897139922", + "swapFee": "2581435937664046225795", "reserves": [ - "27549156293640365518974413", - "65415385916184626800508582", - "64466088572816253784214384" - ] + "1140464185463552377125346170", + "348189417220291794033406575", + "266585461277754728880874664" + ], + "mAssetSupply": "1750967776697534111752685564", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "2503961621178713899008", - "expectedQty": "2525449277195134847178", + "inputQty": "5653127784473210912768", + "expectedQty": "5706237584811784693428", + "swapFee": "3391876670683926547", "reserves": [ - "27551660255261544232873421", - "65415385916184626800508582", - "64466088572816253784214384" - ] + "1140458479225967565340652742", + "348189417220291794033406575", + "266585461277754728880874664" + ], + "mAssetSupply": "1750962126961626309225699343" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "556117149441203", - "6888517586797661184", - "2387309099211051008" + "8704735423913978232832000", + "7334247621726172354707456", + "29249965144590861029343232" ], - "expectedQty": "9251703343770501586", + "expectedQty": "45781265932879033801894982", + "swapFee": "27485250710153512388570", "reserves": [ - "27551660255817661382314624", - "65415392804702213598169766", - "64466090960125352995265392" + "1131753743802053587107820742", + "340855169598565621678699119", + "237335496133163867851531432" ], - "mAssetSupply": "157327671095944197286860841" + "mAssetSupply": "1705180861028747275423804361" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "38354104524761235456", - "expectedQty": "38004985450510859363", - "swapFee": "23012462714856741", + "inputQty": "114975852272807433432203264", + "expectedQty": "113628729286651240719380660", "reserves": [ - "27551622250832210871455261", - "65415392804702213598169766", - "64466090960125352995265392" - ], - "mAssetSupply": "157327632764852135240482126" + "1246729596074861020540024006", + "340855169598565621678699119", + "237335496133163867851531432" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3136364794346291593216", - "outputIndex": 0, - "expectedQty": "3099443886007880572942", - "swapFee": "1876752313713023907", + "type": "mintMulti", + "inputQtys": [ + "119802387785822068801536", + "2624284305349885820928", + "208014940084033680310272" + ], + "expectedQty": "334105955115140764820984", "reserves": [ - "27548522806946202990882319", - "65418529169496559889762982", - "64466090960125352995265392" + "1246849398462646842608825542", + "340857793882870971564520047", + "237543511073247901531841704" ], - "mAssetSupply": "157327634641604448953506033", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1819143696270513656908006005" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "2378735658000606520410112", + "expectedQty": "2436828939827406653282728", + "reserves": [ + "1246849398462646842608825542", + "340857793882870971564520047", + "239922246731248508052251816" + ] }, { "type": "redeemBassets", "inputQtys": [ - "23621397167133966729216", - "23693180664061009854464", - "13566522567641549242368" + "6947373463599831842816", + "425097992241058217984", + "3013909860805622366208" ], - "expectedQty": "60985239481631141384499", - "swapFee": "36613111555912232170", + "expectedQty": "10377365453507180072712", + "swapFee": "6230157366524222577", "reserves": [ - "27524901409779069024153103", - "65394835988832498879908518", - "64452524437557711446023024" + "1246842451089183242776982726", + "340857368784878730506302063", + "239919232821387702429885608" ], - "mAssetSupply": "157266649402122817812121534" + "mAssetSupply": "1821570147844887556381216021" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "295236263365237803057152", - "expectedQty": "295816592905413984803477", - "swapFee": "177141758019142681834", + "type": "mint", + "inputIndex": 1, + "inputQty": "183151839825861476352", + "expectedQty": "185119336307947543522", "reserves": [ - "27524901409779069024153103", - "65394835988832498879908518", - "64156707844652297461219547" - ], - "mAssetSupply": "156971590280515599151746216" + "1246842451089183242776982726", + "340857551936718556367778415", + "239919232821387702429885608" + ] }, { "type": "redeemBassets", "inputQtys": [ - "12802192535969886208", - "12819316509566709760", - "5576467373520422912" + "21702670576615900355493888", + "58111488216704657576165376", + "38789078591622682482049024" ], - "expectedQty": "31258584122384874900", - "swapFee": "18766410319622698", + "expectedQty": "120201126557495864433391321", + "swapFee": "72163974319088972043260", "reserves": [ - "27524888607586533054266895", - "65394823169515989313198758", - "64156702268184923940796635" + "1225139780512567342421488838", + "282746063720013898791613039", + "201130154229765019947836584" ], - "mAssetSupply": "156971559021931476766871316" + "mAssetSupply": "1701369206406727999895368222" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "688196677654946684862464", + "expectedQty": "677321045886994182640407", + "reserves": [ + "1225827977190222289106351302", + "282746063720013898791613039", + "201130154229765019947836584" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "6000715961168746774528", - "outputIndex": 1, - "expectedQty": "5998060329221807588135", - "swapFee": "3591259914993906117", + "inputIndex": 1, + "inputQty": "541245803897261928742912", + "outputIndex": 2, + "expectedQty": "531798412338115150436417", + "swapFee": "330263696847906484957", "reserves": [ - "27524888607586533054266895", - "65388825109186767505610623", - "64162702984146092687571163" + "1225827977190222289106351302", + "283287309523911160720355951", + "200598355817426904797400167" ], - "mAssetSupply": "156971562613191391760777433", + "mAssetSupply": "1702046857716311841984493586", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "568574477803840", - "expectedQty": "569773807685879", - "swapFee": "341144686682", + "type": "redeemMasset", + "inputQty": "259697496861163509304524", + "expectedQtys": [ + "186980136580088567741979", + "43210875271096102676286", + "30598019189003435099728" + ], + "redemptionFee": "77909249058349052791", "reserves": [ - "27524888607586533054266895", - "65388825108616993697924744", - "64162702984146092687571163" + "1225640997053642200538609323", + "283244098648640064617679665", + "200567757798237901362300439" ], - "mAssetSupply": "156971562612623158427660275" + "mAssetSupply": "1701787238128699736824241853" }, { - "type": "mintMulti", - "inputQtys": [ - "1480999695800197586092032", - "475775599623797240496128", - "1678988775194577728438272" + "type": "redeemMasset", + "inputQty": "40809506740466562682060", + "expectedQtys": [ + "29382520957365442018814", + "6790263775934631764138", + "4808248386799512530146" ], - "expectedQty": "3642480504374042157945137", + "redemptionFee": "12242852022139968804", "reserves": [ - "29005888303386730640358927", - "65864600708240790938420872", - "65841691759340670416009435" + "1225611614532684835096590509", + "283237308384864129985915527", + "200562949549851101849770293" ], - "mAssetSupply": "160614043116997200585605412" + "mAssetSupply": "1701746440864811292401528597" }, { "type": "mintMulti", "inputQtys": [ - "149437530487973707776", - "56252262320594657280", - "133385866413161988096" - ], - "expectedQty": "339785313716018372884", - "reserves": [ - "29006037740917218614066703", - "65864656960503111533078152", - "65841825145207083577997531" + "46884437610242167013376", + "16681483440760259870720", + "29167763650476941246464" ], - "mAssetSupply": "160614382902310916603978296" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "9675761138535868416", - "outputIndex": 0, - "expectedQty": "9570282620984939465", - "swapFee": "5791019459044164", + "expectedQty": "93281679803089999038546", "reserves": [ - "29006028170634597629127238", - "65864666636264250068946568", - "65841825145207083577997531" + "1225658498970295077263603885", + "283253989868304890245786247", + "200592117313501578791016757" ], - "mAssetSupply": "160614382908101936063022460", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1701839722544614382400567143" }, { "type": "swap", "inputIndex": 1, - "inputQty": "131195312806940804907008", + "inputQty": "60002411819889560911872", "outputIndex": 2, - "expectedQty": "131114082029339180125206", - "swapFee": "78520959573710326726", + "expectedQty": "58947392380213672585856", + "swapFee": "36611651602288023085", "reserves": [ - "29006028170634597629127238", - "65995861949071190873853576", - "65710711063177744397872325" + "1225658498970295077263603885", + "283313992280124779806698119", + "200533169921121365118430901" ], - "mAssetSupply": "160614461429061509773349186", + "mAssetSupply": "1701839759156265984688590228", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "156637856691975782400", - "expectedQty": "156936703119291333693", - "swapFee": "93982714015185469", + "type": "mintMulti", + "inputQtys": [ + "1296812188847850127360", + "14388315287071559254016", + "2374347737305514508288" + ], + "expectedQty": "18364774418843134357966", "reserves": [ - "29006028170634597629127238", - "65995705012368071582519883", - "65710711063177744397872325" + "1225659795782483925113731245", + "283328380595411851365952135", + "200535544268858670632939189" ], - "mAssetSupply": "160614304885187531812752255" + "mAssetSupply": "1701858123930684827822948194" }, { - "type": "mintMulti", - "inputQtys": [ - "15818594179358174216192", - "910013631668000523288576", - "821990861618283703959552" + "type": "redeemMasset", + "inputQty": "46811958597835694905753", + "expectedQtys": [ + "33703351735360628439279", + "7791000488615160932627", + "5514352357148529887784" ], - "expectedQty": "1743601352878777856772775", + "redemptionFee": "14043587579350708471", "reserves": [ - "29021846764813955803343430", - "66905718644036072105808459", - "66532701924796028101831877" + "1225626092430748564485291966", + "283320589594923236205019508", + "200530029916501522103051405" ], - "mAssetSupply": "162357906238066309669525030" + "mAssetSupply": "1701811326015674571478750912" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "152841091916183699456", - "expectedQty": "153140932285195816513", - "swapFee": "91704655149710219", + "type": "redeemMasset", + "inputQty": "988707433373193868830310", + "expectedQtys": [ + "711842772412496994705328", + "164552399156914077522745", + "116467700328262195644802" + ], + "redemptionFee": "296612230011958160649", "reserves": [ - "29021846764813955803343430", - "66905565503103786909991946", - "66532701924796028101831877" + "1224914249658336067490586638", + "283156037195766322127496763", + "200413562216173259907406603" ], - "mAssetSupply": "162357753488679048635535793" + "mAssetSupply": "1700822915194531389568081251" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1958467713302830592", - "expectedQty": "1962219575243286667", - "swapFee": "1175080627981698", + "type": "mintMulti", + "inputQtys": [ + "72028128039840281264128", + "28590978099319528226816", + "42233092738201033900032" + ], + "expectedQty": "143655504246922771419655", "reserves": [ - "29021846764813955803343430", - "66905565503103786909991946", - "66532699962576452858545210" + "1224986277786375907771850766", + "283184628173865641655723579", + "200455795308911460941306635" ], - "mAssetSupply": "162357751531386415960686899" + "mAssetSupply": "1700966570698778312339500906" }, { - "type": "redeemMasset", - "inputQty": "15040256566366457", - "expectedQtys": [ - "2687676248594793", - "6196039168655159", - "6161508566060641" + "type": "mintMulti", + "inputQtys": [ + "8729655076768401326080", + "16976148161421851492352", + "2116637487071520882688" ], - "redemptionFee": "4512076969909", + "expectedQty": "28045007869668071123470", "reserves": [ - "29021846762126279554748637", - "66905565496907747741336787", - "66532699956414944292484569" + "1224995007441452676173176846", + "283201604322027063507215931", + "200457911946398532462189323" ], - "mAssetSupply": "162357751516350671471290351" + "mAssetSupply": "1700994615706647980410624376" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "4836866039392051200", - "outputIndex": 1, - "expectedQty": "4834186137596254139", - "swapFee": "2894832683051880", + "type": "redeem", + "inputIndex": 1, + "inputQty": "13515109504874274059452416", + "expectedQty": "13268526013963553417646494", + "swapFee": "8109065702924564435671", "reserves": [ - "29021846762126279554748637", - "66905560662721610145082648", - "66532704793280983684535769" + "1224995007441452676173176846", + "269933078308063510089569437", + "200457911946398532462189323" ], - "mAssetSupply": "162357751519245504154342231", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1687487615267476630915607631" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "8792246164755716243456", - "expectedQty": "8769763049712794267094", + "inputIndex": 2, + "inputQty": "540957949229894194954240", + "expectedQty": "559723858773724966885906", "reserves": [ - "29021846762126279554748637", - "66914352908886365861326104", - "66532704793280983684535769" + "1224995007441452676173176846", + "269933078308063510089569437", + "200998869895628426657143563" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3885291672095465930752", - "expectedQty": "3851662576765794613678", - "swapFee": "2331175003257279558", + "inputQty": "51930771029784382144512", + "expectedQty": "52759804009056882201511", + "swapFee": "31158462617870629286", "reserves": [ - "29017995099549513760134959", - "66914352908886365861326104", - "66532704793280983684535769" + "1224942247637443619290975335", + "269933078308063510089569437", + "200998869895628426657143563" ], - "mAssetSupply": "162362638321798124739958131" + "mAssetSupply": "1687995439513683189370978311" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "9983350230384766976", - "outputIndex": 1, - "expectedQty": "10084242425476597623", - "swapFee": "6038690979993376", + "type": "redeem", + "inputIndex": 1, + "inputQty": "14335423395576988223668224", + "expectedQty": "14041774665653110910125060", + "swapFee": "8601254037346192934200", "reserves": [ - "29018005082899744144901935", - "66914342824643940384728481", - "66532704793280983684535769" + "1224942247637443619290975335", + "255891303642410399179444377", + "200998869895628426657143563" ], - "mAssetSupply": "162362638327836815719951507", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1673668617372143547340244287" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "264782684345162818125824", - "285645482244861809655808", - "247088290826701217202176" + "162439189918010633617408", + "224493204723502512340992", + "1365726206592069926912" ], - "expectedQty": "798310356722325439820535", + "expectedQty": "390456652682037321946321", + "swapFee": "234414640393458468248", "reserves": [ - "29282787767244906963027759", - "67199988306888802194384289", - "66779793084107684901737945" + "1224779808447525608657357927", + "255666810437686896667103385", + "200997504169421834587216651" ], - "mAssetSupply": "163160948684559141159772042" + "mAssetSupply": "1673278160719461510018297966" }, { - "type": "mintMulti", - "inputQtys": [ - "584413873912736896", - "553161618564984256", - "516352470682440704" + "type": "redeemMasset", + "inputQty": "574651446291854706868224", + "expectedQtys": [ + "420498132578509903743266", + "87776933951599566665358", + "69007567379246414029928" ], - "expectedQty": "1655933877981001157", + "redemptionFee": "172395433887556412060", "reserves": [ - "29282788351658780875764655", - "67199988860050420759368545", - "66779793600460155584178649" + "1224359310314947098753614661", + "255579033503735297100438027", + "200928496602042588173186723" ], - "mAssetSupply": "163160950340493019140773199" + "mAssetSupply": "1672703681668603542867841802" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "15472531221352792064", - "expectedQty": "15433223261136878441", + "inputIndex": 2, + "inputQty": "11964014515915187195740160", + "expectedQty": "12356978624642769290612690", "reserves": [ - "29282788351658780875764655", - "67200004332581642112160609", - "66779793600460155584178649" + "1224359310314947098753614661", + "255579033503735297100438027", + "212892511117957775368926883" ] }, { - "type": "redeemMasset", - "inputQty": "17669022926605030", - "expectedQtys": [ - "3170139602998614", - "7275037899330644", - "7229546101640282" + "type": "mintMulti", + "inputQtys": [ + "595743381788773318656", + "371949589913913262080", + "1723835984480006569984" ], - "redemptionFee": "5300706877981", + "expectedQty": "2743070084775050149904", "reserves": [ - "29282788348488641272766041", - "67200004325306604212829965", - "66779793593230609482538367" + "1224359906058328887526933317", + "255579405453325211013700107", + "212894234953942255375496867" ], - "mAssetSupply": "163160965756052558057924591" + "mAssetSupply": "1685063403363331087208604396" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "41028583250314690560", - "expectedQty": "40926458844610853942", + "type": "mintMulti", + "inputQtys": [ + "19152374928299848886124544", + "16574332185055845783961600", + "7679446671792149173895168" + ], + "expectedQty": "43669213078058666585557286", "reserves": [ - "29282788348488641272766041", - "67200004325306604212829965", - "66779834621813859797228927" - ] + "1243512280986628736413057861", + "272153737638381056797661707", + "220573681625734404549392035" + ], + "mAssetSupply": "1728732616441389753794161682" }, { "type": "redeemMasset", - "inputQty": "110281098216706603063705", + "inputQty": "464713636470685", "expectedQtys": [ - "19786401923734688472742", - "45407093034767380205574", - "45123184052789816580668" + "334177619757201", + "73137748329963", + "59276284628476" ], - "redemptionFee": "33084329465011980919", + "redemptionFee": "139414090941", "reserves": [ - "29263001946564906584293299", - "67154597232271836832624391", - "66734711437761069980648259" + "1243512280986294558793300660", + "272153737638307919049331744", + "220573681625675128264763559" ], - "mAssetSupply": "163050758668624161077695747" + "mAssetSupply": "1728732616440925179571781938" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1123658470238629527552", - "expectedQty": "1125786419291848834002", - "swapFee": "674195082143177716", + "inputQty": "9637216329885888282624", + "expectedQty": "9356824745202200999939", + "swapFee": "5782329797931532969", "reserves": [ - "29263001946564906584293299", - "67154597232271836832624391", - "66733585651341778131814257" + "1243512280986294558793300660", + "272153737638307919049331744", + "220564324800929926063763620" ], - "mAssetSupply": "163049635684349004591345911" + "mAssetSupply": "1728722985006925091615032283" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3646048639472283156480", - "8512581091516385067008", - "1749537988951361191936" + "37975464797633604118118400", + "42406801474020489893511168", + "26588886099077757189226496" ], - "expectedQty": "13911484535351478854348", + "expectedQty": "108169443221625821760337870", + "swapFee": "64940630311162190370424", "reserves": [ - "29266647995204378867449779", - "67163109813363353217691399", - "66735335189330729493006193" + "1205536816188660954675182260", + "229746936164287429155820576", + "193975438701852168874537124" ], - "mAssetSupply": "163063547168884356070200259" + "mAssetSupply": "1620553541785299269854694413" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "28664415880937111289856", - "expectedQty": "28718643581542658901793", - "swapFee": "17198649528562266773", + "inputQty": "2889383254640418095104", + "expectedQty": "2784194629575919711336", + "swapFee": "1733629952784250857", "reserves": [ - "29266647995204378867449779", - "67163109813363353217691399", - "66706616545749186834104400" + "1205536816188660954675182260", + "229746936164287429155820576", + "193972654507222592954825788" ], - "mAssetSupply": "163034899951652947521177176" + "mAssetSupply": "1620550654135674582220850166" }, { - "type": "redeemMasset", - "inputQty": "1825323777749199041331", - "expectedQtys": [ - "327568405071277667963", - "751726428144265318132", - "746617104670574351102" - ], - "redemptionFee": "547597133324759712", + "type": "mint", + "inputIndex": 2, + "inputQty": "33419116213371875123789824", + "expectedQty": "34466422223353785062221471", + "reserves": [ + "1205536816188660954675182260", + "229746936164287429155820576", + "227391770720594468078615612" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "2969690592979885444038656", + "outputIndex": 2, + "expectedQty": "2964392990627964232056631", + "swapFee": "1827148159941617546823", "reserves": [ - "29266320426799307589781816", - "67162358086935208952373267", - "66705869928644516259753298" + "1205536816188660954675182260", + "232716626757267314599859232", + "224427377729966503846558981" ], - "mAssetSupply": "163033075175472331646895557" + "mAssetSupply": "1655018903507188308900618460", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "60057677238298448", - "101210934861271216", - "125075557655666656" + "707634329668011083956224", + "231496259007127415160832", + "1944851862120839092633600" ], - "expectedQty": "286258358475822761", + "expectedQty": "2931355488912272748920382", + "swapFee": "1759869214876289423006", "reserves": [ - "29266320486856984828080264", - "67162358188146143813644483", - "66705870053720073915419954" + "1204829181858992943591226036", + "232485130498260187184698400", + "222482525867845664753925381" ], - "mAssetSupply": "163033075461730690122718318" + "mAssetSupply": "1652087548018276036151698078" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3585557208097627832320", - "expectedQty": "3614350478657518064418", + "inputIndex": 2, + "inputQty": "27892034446910484", + "expectedQty": "28660064103694062", "reserves": [ - "29269906044065082455912584", - "67162358188146143813644483", - "66705870053720073915419954" + "1204829181858992943591226036", + "232485130498260187184698400", + "222482525895737699200835865" ] }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 2, + "inputQty": "184218673250272643383296", + "expectedQty": "189286677533533144554245", + "reserves": [ + "1204829181858992943591226036", + "232485130498260187184698400", + "222666744568987971844219161" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "279184380447302528", - "769205621694269440", - "663333618740483584" + "502687481134760973041664", + "347841243380163413016576", + "718960838149653076639744" ], - "expectedQty": "1710361944673877857", - "swapFee": "1026833266764385", + "expectedQty": "1589743467436079791712659", "reserves": [ - "29269905764880702008610056", - "67162357418940522119375043", - "66705869390386455174936370" + "1205331869340127704564267700", + "232832971741640350597714976", + "223385705407137624920858905" ], - "mAssetSupply": "163036688101847402966904879" + "mAssetSupply": "1653866578191905713191659044" }, { "type": "redeemMasset", - "inputQty": "650164894804258310219366", + "inputQty": "22213496215511873303347", "expectedQtys": [ - "116688803878971079195256", - "267752660902359115974542", - "265932803931690089534391" + "16184257473060514445042", + "3126299784098041846569", + "2999449250511906847393" ], - "redemptionFee": "195049468441277493065", + "redemptionFee": "6664048864653561991", + "reserves": [ + "1205315685082654644049822658", + "232829845441856252555868407", + "223382705957887113014011512" + ], + "mAssetSupply": "1653844371359739065971917688" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "5019085883370828", + "expectedQty": "4882723846519513", + "swapFee": "3011451530022", "reserves": [ - "29153216961001730929414800", - "66894604758038163003400501", - "66439936586454765085401979" + "1205315685082654644049822658", + "232829845441856252555868407", + "223382705953004389167491999" ], - "mAssetSupply": "162386718256511585934178578" + "mAssetSupply": "1653844371354722991540076882" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "3696356313856143685320704", - "outputIndex": 2, - "expectedQty": "3692244101364734230952397", - "swapFee": "2211812992098087498001", + "inputIndex": 0, + "inputQty": "158259692318633666543616", + "outputIndex": 1, + "expectedQty": "151768255296671507354180", + "swapFee": "93408589089336568755", "reserves": [ - "29153216961001730929414800", - "70590961071894306688721205", - "62747692485090030854449582" + "1205473944774973277716366274", + "232678077186559581048514227", + "223382705953004389167491999" ], - "mAssetSupply": "162388930069503684021676579", + "mAssetSupply": "1653844464763312080876645637", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mintMulti", + "inputQtys": [ + "9011606966296198144", + "19034009449456001024", + "27885702773312024576" + ], + "expectedQty": "57025671090303742939", + "reserves": [ + "1205473953786580244012564418", + "232678096220569030504515251", + "223382733838707162479516575" + ], + "mAssetSupply": "1653844521788983171180388576" + }, { "type": "mint", "inputIndex": 1, - "inputQty": "2049052173659696640", - "expectedQty": "2042929233422605364", + "inputQty": "8995598578627422317445120", + "expectedQty": "9212696960714570278650732", "reserves": [ - "29153216961001730929414800", - "70590963120946480348417845", - "62747692485090030854449582" + "1205473953786580244012564418", + "241673694799196452821960371", + "223382733838707162479516575" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "794562855965377639219200", - "expectedQty": "796438519003027624152998", - "swapFee": "476737713579226583531", + "inputIndex": 2, + "inputQty": "18661680926078023235534848", + "expectedQty": "18112135763393413614088492", + "swapFee": "11197008555646813941320", "reserves": [ - "29153216961001730929414800", - "69794524601943452724264847", - "62747692485090030854449582" + "1205473953786580244012564418", + "241673694799196452821960371", + "205270598075313748865428083" ], - "mAssetSupply": "161594845994181119031646274" + "mAssetSupply": "1644406734832175365037445780" }, { "type": "mintMulti", "inputQtys": [ - "12130089918396397568", - "86090344021586460672", - "57496210026303922176" + "20492484790282983833600", + "259622325633403374796800", + "144495677481665964277760" ], - "expectedQty": "155444089310334400146", + "expectedQty": "435076420003097668348147", "reserves": [ - "29153229091091649325812368", - "69794610692287474310725519", - "62747749981300057158371758" + "1205494446271370526996398018", + "241933317124829856196757171", + "205415093752795414829705843" ], - "mAssetSupply": "161595001438270429366046420" + "mAssetSupply": "1644841811252178462705793927" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "10919882583785136", - "expectedQty": "10888006883710029", + "type": "redeemBassets", + "inputQtys": [ + "1344198738489728217120768", + "1402032866922658090975232", + "3741354710315713400143872" + ], + "expectedQty": "6621821610350447932644902", + "swapFee": "3975478253162166059222", "reserves": [ - "29153229091091649325812368", - "69794610703207356894510655", - "62747749981300057158371758" - ] + "1204150247532880798779277250", + "240531284257907198105781939", + "201673739042479701429561971" + ], + "mAssetSupply": "1638219989641828014773149025" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "352491786719752930459648", - "expectedQty": "352995904678514661126052", - "swapFee": "211495072031851758275", + "type": "redeemMasset", + "inputQty": "4631494146947845867752652", + "expectedQtys": [ + "3403292448083393799643158", + "679814088748408316102686", + "569990924692535514804756" + ], + "redemptionFee": "1389448244084353760325", "reserves": [ - "29153229091091649325812368", - "69794610703207356894510655", - "62394754076621542497245706" + "1200746955084797404979634092", + "239851470169158789789679253", + "201103748117787165914757215" ], - "mAssetSupply": "161242721157510715171055076" + "mAssetSupply": "1633589884943124253259156698" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "25140946444624437706752", - "expectedQty": "25339196411950900163624", + "inputIndex": 1, + "inputQty": "6440288946315983847424", + "expectedQty": "6594020335654520056377", "reserves": [ - "29178370037536273763519120", - "69794610703207356894510655", - "62394754076621542497245706" + "1200746955084797404979634092", + "239857910458105105773526677", + "201103748117787165914757215" ] }, { - "type": "mintMulti", - "inputQtys": [ - "1221915049602300510208", - "7919951261667802742784", - "2698047772531346636800" - ], - "expectedQty": "11820938987582327230126", - "reserves": [ - "29179591952585876064029328", - "69802530654469024697253439", - "62397452124394073843882506" - ], - "mAssetSupply": "161279881292910248398448826" + "type": "redeem", + "inputIndex": 2, + "inputQty": "125804937185004382813421568", + "hardLimitError": true }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3847454981239625916350464", - "expectedQty": "3855782140010175538377971", - "swapFee": "2308472988743775549810", + "inputQty": "134302803417240044568576", + "expectedQty": "131091173021001910326249", + "swapFee": "80581682050344026741", "reserves": [ - "29179591952585876064029328", - "65946748514458849158875468", - "62397452124394073843882506" + "1200746955084797404979634092", + "239726819285084103863200428", + "201103748117787165914757215" ], - "mAssetSupply": "157434734784659366257648172" + "mAssetSupply": "1633462256741724718078671240" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "99791870918290882560", - "expectedQty": "99990651642475539088", - "swapFee": "59875122550974529", + "type": "mint", + "inputIndex": 2, + "inputQty": "3424491630586960275308544", + "expectedQty": "3538031220133951116988756", "reserves": [ - "29179591952585876064029328", - "65946648523807206683336380", - "62397452124394073843882506" - ], - "mAssetSupply": "157434635052663570517740141" + "1200746955084797404979634092", + "239726819285084103863200428", + "204528239748374126190065759" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "378508934317187268608", - "876049677809203675136", - "871594389881028476928" + "1133826555158665266987008", + "6885209747824008316846080", + "1578742026168895323242496" ], - "expectedQty": "2124811520442506054904", + "expectedQty": "9799603885867833678521465", + "swapFee": "5883292306904843112980", "reserves": [ - "29179970461520193251297936", - "65947524573485015887011516", - "62398323718783954872359434" + "1199613128529638739712647084", + "232841609537260095546354348", + "202949497722205230866823263" ], - "mAssetSupply": "157436759864184013023795045" + "mAssetSupply": "1627200684075990835517138531" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "1606020306212846082981888", - "expectedQty": "1609101802417839359973969", - "swapFee": "963612183727707649789", + "inputQty": "11324534731224631706910720", + "expectedQty": "11597252283096497524023826", "reserves": [ - "29179970461520193251297936", - "64338422771067176527037547", - "62398323718783954872359434" - ], - "mAssetSupply": "155831703170154894648462946" + "1199613128529638739712647084", + "244166144268484727253265068", + "202949497722205230866823263" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "904753835234916040704", - "outputIndex": 1, - "expectedQty": "912910052297370836760", - "swapFee": "546737353879566781", + "type": "mintMulti", + "inputQtys": [ + "28463612622003342478934016", + "89938787714231714134884352", + "41455040084285127038861312" + ], + "expectedQty": "162001586119789034605791427", "reserves": [ - "29180875215355428167338640", - "64337509861014879156200787", - "62398323718783954872359434" + "1228076741151642082191581100", + "334104931982716441388149420", + "244404537806490357905684575" ], - "mAssetSupply": "155831703716892248528029727", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1800799522478876367646953784" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "20053966055600965025792", - "outputIndex": 1, - "expectedQty": "20234559089434398307863", - "swapFee": "12118421211733675124", + "inputQty": "12829775717954907799552", + "expectedQty": "12673964335614441641824", "reserves": [ - "29200929181411029132364432", - "64317275301925444757892924", - "62398323718783954872359434" - ], - "mAssetSupply": "155831715835313460261704851", - "hardLimitError": false, - "insufficientLiquidityError": false + "1228089570927360037099380652", + "334104931982716441388149420", + "244404537806490357905684575" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "245494655621765568", - "32758792221856352", - "223703748131057952" + "1397252185752203778064384", + "367848160327489801945088", + "467206654864579408953344" ], - "expectedQty": "503140764751645361", - "swapFee": "302065698269949", + "expectedQty": "2229837956576030241884783", "reserves": [ - "29200928935916373510598864", - "64317275269166652536036572", - "62398323495080206741301482" + "1229486823113112240877445036", + "334472780143043931190094508", + "244871744461354937314637919" ], - "mAssetSupply": "155831715332172695510059490" + "mAssetSupply": "1803042034399788012330480391" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "652681529315016948318208", - "expectedQty": "653863036171034101038161", - "swapFee": "391608917589010168990", + "inputIndex": 0, + "inputQty": "36455959204840374272", + "expectedQty": "36881734120087715444", + "swapFee": "21873575522904224", "reserves": [ - "29200928935916373510598864", - "63663412232995618434998411", - "62398323495080206741301482" + "1229486786231378120789729592", + "334472780143043931190094508", + "244871744461354937314637919" ], - "mAssetSupply": "155179425411775267571910272" + "mAssetSupply": "1803041997965702383013010343" }, { - "type": "mintMulti", - "inputQtys": [ - "16867814469811591708672", - "10579231184666713128960", - "15080938683803954577408" - ], - "expectedQty": "42588508078369746701664", + "type": "redeem", + "inputIndex": 1, + "inputQty": "94236385558593204649984", + "expectedQty": "93166203709528087188235", + "swapFee": "56541831335155922789", "reserves": [ - "29217796750386185102307536", - "63673991464180285148127371", - "62413404433764010695878890" + "1229486786231378120789729592", + "334379613939334403102906273", + "244871744461354937314637919" ], - "mAssetSupply": "155222013919853637318611936" + "mAssetSupply": "1802947818121975124964283148" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "246707106116125461577728", - "outputIndex": 1, - "expectedQty": "246591175225132480632035", - "swapFee": "147695025207842744542", + "type": "redeem", + "inputIndex": 0, + "inputQty": "86477918478448747555586048", + "expectedQty": "87433096451941034507049081", + "swapFee": "51886751087069248533351", "reserves": [ - "29217796750386185102307536", - "63427400288955152667495336", - "62660111539880136157456618" + "1142053689779437086282680511", + "334379613939334403102906273", + "244871744461354937314637919" ], - "mAssetSupply": "155222161614878845161356478", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1716521786394613446657230451" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "3994367043300812652544", - "expectedQty": "3985401371250242971940", + "inputIndex": 1, + "inputQty": "949130441088239535128576", + "expectedQty": "957554734644573651850885", "reserves": [ - "29217796750386185102307536", - "63427400288955152667495336", - "62664105906923436970109162" + "1142053689779437086282680511", + "335328744380422642638034849", + "244871744461354937314637919" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "7415810168477576454995968", - "expectedQty": "7340291127099581162505411", - "swapFee": "4449486101086545872997", + "type": "mintMulti", + "inputQtys": [ + "272653319310843968", + "174098629987394176", + "242586916188462240" + ], + "expectedQty": "692557349515379793", "reserves": [ - "21877505623286603939802125", - "63427400288955152667495336", - "62664105906923436970109162" + "1142053690052090405593524479", + "335328744554521272625429025", + "244871744703941853503100159" ], - "mAssetSupply": "147814786333873605495205447" + "mAssetSupply": "1717479341821815369824461129" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "158220160799391615025152", - "outputIndex": 1, - "expectedQty": "160753465253792315148006", - "swapFee": "96170795062733120377", + "type": "redeemMasset", + "inputQty": "492767162660140135481344", + "expectedQtys": [ + "327571757508769032965552", + "96181315426530842809375", + "70235811569638399942130" + ], + "redemptionFee": "147830148798042040644", "reserves": [ - "22035725784085995554827277", - "63266646823701360352347330", - "62664105906923436970109162" + "1141726118294581636560558927", + "335232563239094741782619650", + "244801508892372215103158029" ], - "mAssetSupply": "147814882504668668228325824", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1716986722489304027731020429" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "307174082193554254331904", + "expectedQty": "304296198672909241126081", + "swapFee": "184304449316132552599", + "reserves": [ + "1141726118294581636560558927", + "334928267040421832541493569", + "244801508892372215103158029" + ], + "mAssetSupply": "1716679732711559789609241124" }, { "type": "redeemMasset", - "inputQty": "984030732121742745", + "inputQty": "72403761386657036422348", "expectedQtys": [ - "146651851690580564", - "421051296329454421", - "417041274511673498" + "48139710793783284856714", + "14121906868586561372001", + "10321804547629654415675" ], - "redemptionFee": "295209219636522", + "redemptionFee": "21721128415997110926", "reserves": [ - "22035725637434143864246713", - "63266646402650064022892909", - "62664105489882162458435664" + "1141677978583787853275702213", + "334914145133553245980121568", + "244791187087824585448742354" ], - "mAssetSupply": "147814881520933145326219601" + "mAssetSupply": "1716607350671301548569929702" }, { - "type": "redeemMasset", - "inputQty": "184299598508678525747", - "expectedQtys": [ - "27466497239218764087", - "78858903824841700933", - "78107864871582026005" + "type": "redeemBassets", + "inputQtys": [ + "91873717994913988608", + "63489630438015787008", + "164172942939453947904" ], - "redemptionFee": "55289879552603557", + "expectedQty": "322243151753178721213", + "swapFee": "193461968232846940", "reserves": [ - "22035698170936904645482626", - "63266567543746239181191976", - "62664027382017290876409659" + "1141677886710069858361713605", + "334914081643922807964334560", + "244791022914881645994794450" ], - "mAssetSupply": "147814697276624516200297411" + "mAssetSupply": "1716607028428149795391208489" }, { - "type": "redeemMasset", - "inputQty": "21554995103716147934003", - "expectedQtys": [ - "3212379290558871392978", - "9223043889316140048937", - "9135205168606989489638" + "type": "mintMulti", + "inputQtys": [ + "211067650486252624412672", + "280308090811379131351040", + "135129026561876212842496" ], - "redemptionFee": "6466498531114844380", + "expectedQty": "629276531439598256757795", "reserves": [ - "22032485791646345774089648", - "63257344499856923041143039", - "62654892176848683886920021" + "1141888954360556110986126277", + "335194389734734187095685600", + "244926151941443522207636946" ], - "mAssetSupply": "147793148748019331167207788" + "mAssetSupply": "1717236304959589393647966284" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "386209869175862460416", + "inputIndex": 0, + "inputQty": "223836278208832794001408", "outputIndex": 1, - "expectedQty": "386010811088047437679", - "swapFee": "230933049193002824", + "expectedQty": "219323970504401429464391", + "swapFee": "132840019801719984552", "reserves": [ - "22032485791646345774089648", - "63256958489045834993705360", - "62655278386717859749380437" + "1142112790638764943780127685", + "334975065764229785666221209", + "244926151941443522207636946" ], - "mAssetSupply": "147793148978952380360210612", + "mAssetSupply": "1717236437799609195367950836", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1486310593797910953984", - "expectedQty": "1490644761491821189070", - "swapFee": "891786356278746572", - "reserves": [ - "22032485791646345774089648", - "63255467844284343172516290", - "62655278386717859749380437" - ], - "mAssetSupply": "147791663560144938728003200" - }, { "type": "redeemMasset", - "inputQty": "105510970013419125814067", + "inputQty": "147603763511573479424", "expectedQtys": [ - "15724645700692161449722", - "45145601358337324167904", - "44717244491900496182916" + "98139993130507954850", + "28783891505677666681", + "21046127025310246907" ], - "redemptionFee": "31653291004025737744", + "redemptionFee": "44281129053472043", "reserves": [ - "22016761145945653612639926", - "63210322242926005848348386", - "62610561142225959253197521" + "1142112692498771813272172835", + "334975036980338279988554528", + "244926130895316496897390039" ], - "mAssetSupply": "147686184243422523627926877" + "mAssetSupply": "1717236290240126812847943455" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "170198958102457745408", - "154188489221394890752", - "66088829785598009344" + "9379228562794", + "4794660837467", + "18859560326910" ], - "expectedQty": "391907907329916353743", + "expectedQty": "33334938335099", + "swapFee": "20012970783", "reserves": [ - "22016931344903756070385334", - "63210476431415227243239138", - "62610627231055744851206865" + "1142112692498762434043610041", + "334975036980333485327717061", + "244926130895297637337063129" ], - "mAssetSupply": "147686576151329853544280620" + "mAssetSupply": "1717236290240093477909608356" }, { "type": "mintMulti", "inputQtys": [ - "457067758946772", - "225177904295127", - "62548272432418" + "341031557375445570682880", + "838380244458806167207936", + "1100936857578428317040640" ], - "expectedQty": "749694006716584", + "expectedQty": "2305042172739247779651021", "reserves": [ - "22016931345360823829332106", - "63210476431640405147534265", - "62610627231118293123639283" + "1142453724056137879614292921", + "335813417224792291494924997", + "246027067752876065654103769" ], - "mAssetSupply": "147686576152079547550997204" + "mAssetSupply": "1719541332412832725689259377" }, { "type": "redeemMasset", - "inputQty": "51628709319096646447923", + "inputQty": "560382163862801088512", "expectedQtys": [ - "7694434839043304920630", - "22090675781237887932574", - "21881041635849041911560" + "372203107147549776757", + "109405566878577925248", + "80153827793484922641" ], - "redemptionFee": "15488612795728993934", + "redemptionFee": "168114649158840326", "reserves": [ - "22009236910521780524411476", - "63188385755859167259601691", - "62588746189482444081727723" + "1142453351853030732064516164", + "335813307819225412916999749", + "246026987599048272169181128" ], - "mAssetSupply": "147634962931373246633543215" + "mAssetSupply": "1719540772198783512047011191" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "178585157987583362334720", - "expectedQty": "179104179993860469974925", - "swapFee": "107151094792550017400", + "type": "mintMulti", + "inputQtys": [ + "820089099871515922399232", + "1541753386416657569677312", + "959267968817753363578880" + ], + "expectedQty": "3343907603896646905047428", "reserves": [ - "22009236910521780524411476", - "63009281575865306789626766", - "62588746189482444081727723" + "1143273440952902247986915396", + "337355061205642070486677061", + "246986255567866025532760008" ], - "mAssetSupply": "147456484924480455821225895" + "mAssetSupply": "1722884679802680158952058619" }, { "type": "redeemMasset", - "inputQty": "13180568181980786589696", + "inputQty": "4299359099635697269394636", "expectedQtys": [ - "1966730860339627360893", - "5630467747104892137135", - "5592888982987512416542" + "2852116874922780531509923", + "841597494037173707068779", + "616155017816180309582284" ], - "redemptionFee": "3954170454594235976", - "reserves": [ - "22007270179661440897050583", - "63003651108118201897489631", - "62583153300499456569311181" - ], - "mAssetSupply": "147443308310468929628872175" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "29178939333636980736", - "expectedQty": "28790673533286531514", - "swapFee": "17507363600182188", + "redemptionFee": "1289807729890709180818", "reserves": [ - "22007241388987907610519069", - "63003651108118201897489631", - "62583153300499456569311181" + "1140421324077979467455405473", + "336513463711604896779608282", + "246370100550049845223177724" ], - "mAssetSupply": "147443279149036959592073627" + "mAssetSupply": "1718586610510774352391844801" }, { "type": "redeemMasset", - "inputQty": "10983110408764473344", + "inputQty": "408519612538256057853542", "expectedQtys": [ - "1638836649412469366", - "4691759892016576878", - "4660446234573439883" + "271004504079690319231456", + "79967519392917388897052", + "58546263130962194303415" ], - "redemptionFee": "3294933122629342", + "redemptionFee": "122555883761476817356", "reserves": [ - "22007239750151258198049703", - "63003646416358309880912753", - "62583148640053221995871298" + "1140150319573899777136174017", + "336433496192211979390711230", + "246311554286918883028874309" ], - "mAssetSupply": "147443268169221483950229625" + "mAssetSupply": "1718178213454119857810808615" }, { - "type": "mintMulti", - "inputQtys": [ - "21315970329206059008", - "16225646748975386624", - "1741143803171756288" - ], - "expectedQty": "39494723025408232429", + "type": "swap", + "inputIndex": 0, + "inputQty": "24387369343736274944", + "outputIndex": 2, + "expectedQty": "23663879500143664560", + "swapFee": "14474633473711668", "reserves": [ - "22007261066121587404108711", - "63003662642005058856299377", - "62583150381197025167627586" + "1140150343961269120872448961", + "336433496192211979390711230", + "246311530623039382885209749" ], - "mAssetSupply": "147443307663944509358462054" + "mAssetSupply": "1718178213468594491284520283", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "15919393803967431442432", - "53020371393340350922752", - "90229583543889681186816" + "type": "redeemMasset", + "inputQty": "6978423852133846426111180", + "expectedQtys": [ + "4629359956528584903759199", + "1366023142084887675885763", + "1000100331273765393781163" ], - "expectedQty": "158880334047716240381931", - "swapFee": "95385431687642329626", + "redemptionFee": "2093527155640153927833", "reserves": [ - "21991341672317619972666279", - "62950642270611718505376625", - "62492920797653135486440770" + "1135520984004740535968689762", + "335067473050127091714825467", + "245311430291765617491428586" ], - "mAssetSupply": "147284427329896793118080123" + "mAssetSupply": "1711201883143616285012336936" }, { "type": "mint", "inputIndex": 2, - "inputQty": "97114995666701520994304", - "expectedQty": "96782070883490276581713", + "inputQty": "5398498951968282128678912", + "expectedQty": "5497862986001045024434783", "reserves": [ - "21991341672317619972666279", - "62950642270611718505376625", - "62590035793319837007435074" + "1135520984004740535968689762", + "335067473050127091714825467", + "250709929243733899620107498" ] }, { "type": "mintMulti", "inputQtys": [ - "16219603618552879251456", - "17339219073191582367744", - "14276609990908425797632" + "24449985966706329124864", + "31650763323001075138560", + "186405086327075346841600" ], - "expectedQty": "47934961246427207805262", + "expectedQty": "245870923911412695480687", "reserves": [ - "22007561275936172851917735", - "62967981489684910087744369", - "62604312403310745433232706" + "1135545433990707242297814626", + "335099123813450092789964027", + "250896334330060974966949098" ], - "mAssetSupply": "147429144362026710602467098" + "mAssetSupply": "1716945617053528742732252406" }, { - "type": "mintMulti", - "inputQtys": [ - "30871979393434243072", - "28385272923775864832", - "27665781342132060160" + "type": "redeem", + "inputIndex": 1, + "inputQty": "110114191167486758536347648", + "expectedQty": "108482797826949971373508664", + "swapFee": "66068514700492055121808", + "reserves": [ + "1135545433990707242297814626", + "226616325986500121416455363", + "250896334330060974966949098" + ], + "mAssetSupply": "1606897494400742476251026566" + }, + { + "type": "redeemMasset", + "inputQty": "4602332588977497414041", + "expectedQtys": [ + "3251352328320910658015", + "648859567461188308006", + "718379341216127072410" ], - "expectedQty": "87126731489860164353", + "redemptionFee": "1380699776693249224", "reserves": [ - "22007592147915566286160807", - "62968009874957833863609201", - "62604340069092087565292866" + "1135542182638378921387156611", + "226615677126932660228147357", + "250895615950719758839876688" ], - "mAssetSupply": "147429231488758200462631451" + "mAssetSupply": "1606892893448853275446861749" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "56734248513671780106240", - "expectedQty": "56536529935725660607581", + "inputIndex": 0, + "inputQty": "404585183671046701056", + "expectedQty": "398928370533700433154", "reserves": [ - "22007592147915566286160807", - "63024744123471505643715441", - "62604340069092087565292866" + "1135542587223562592433857667", + "226615677126932660228147357", + "250895615950719758839876688" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "19976422435882602070016", - "outputIndex": 0, - "expectedQty": "19641354402186165932320", - "swapFee": "11944033511502041754", + "type": "redeem", + "inputIndex": 0, + "inputQty": "510728563516666384744448", + "expectedQty": "517657462692223392001691", + "swapFee": "306437138109999830846", "reserves": [ - "21987950793513380120228487", - "63044720545907388245785457", - "62604340069092087565292866" + "1135024929760870369041855976", + "226615677126932660228147357", + "250895615950719758839876688" ], - "mAssetSupply": "147485779962727437625280786", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1606382870250845252762381301" + }, + { + "type": "redeemMasset", + "inputQty": "1950657927969912966348", + "expectedQtys": [ + "1377866513057749216370", + "275100700134306450523", + "304575396034981752530" + ], + "redemptionFee": "585197378390973889", + "reserves": [ + "1135023551894357311292639606", + "226615402026232525921696834", + "250895311375323723858124158" + ], + "mAssetSupply": "1606380920178114661240388842" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3278871298526943211683840", - "expectedQty": "3287806464947545196598927", - "swapFee": "1967322779116165927010", + "type": "redeemBassets", + "inputQtys": [ + "23112376675944353497088", + "5980525979956269809664", + "6482704268902553092096" + ], + "expectedQty": "35506284834006498629344", + "swapFee": "21316560836906042803", "reserves": [ - "21987950793513380120228487", - "59756914080959843049186530", - "62604340069092087565292866" + "1135000439517681366939142518", + "226609421500252569651887170", + "250888828671054821305032062" ], - "mAssetSupply": "144208875986979610579523956" + "mAssetSupply": "1606345413893280654741759498" }, { "type": "redeemMasset", - "inputQty": "48377079091410716380364", + "inputQty": "10556311917394228019", "expectedQtys": [ - "7373982450577294433300", - "20040359370990010089674", - "20995285524090149165912" + "7456568267778656071", + "1488747107672057038", + "1648254585173312504" ], - "redemptionFee": "14513123727423214914", + "redemptionFee": "3166893575218268", "reserves": [ - "21980576811062802825795187", - "59736873721588853039096856", - "62583344783567997416126954" + "1135000432061113099160486447", + "226609420011505461979830132", + "250888827022800236131719558" ], - "mAssetSupply": "144160513421011927286358506" + "mAssetSupply": "1606345403340135630922749747" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "78778057740107357618176", - "51064516557896949956608", - "30645751790892067323904" + "112309251265025145831424", + "133590909697438659903488", + "76528413363858221039616" ], - "expectedQty": "161185141054770442403023", - "swapFee": "96769146120534586193", + "expectedQty": "325278520121904613756069", "reserves": [ - "21901798753322695468177011", - "59685809205030956089140248", - "62552699031777105348803050" + "1135112741312378124306317871", + "226743010921202900639733620", + "250965355436164094352759174" ], - "mAssetSupply": "143999328279957156843955483" + "mAssetSupply": "1606670681860257535536505816" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "26763252756589350912", - "outputIndex": 0, - "expectedQty": "26339046554748348134", - "swapFee": "16007415117916378", + "type": "redeemBassets", + "inputQtys": [ + "2469879454036448509952", + "301883614230064529408", + "436130322573398179840" + ], + "expectedQty": "3188175455759108513983", + "swapFee": "1914053705678872431", "reserves": [ - "21901772414276140719828877", - "59685835968283712678491160", - "62552699031777105348803050" + "1135110271432924087857807919", + "226742709037588670575204212", + "250964919305841520954579334" ], - "mAssetSupply": "143999328295964571961871861", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1606667493684801776427991833" }, { "type": "redeemBassets", "inputQtys": [ - "677087489253915623424", - "890553617261753663488", - "180822497589769568256" + "768548416263020901040128", + "1729839766017742890598400", + "95021498064474107543552" ], - "expectedQty": "1753345996468564075860", - "swapFee": "1052639181389972428", + "expectedQty": "2623824854340321129462735", + "swapFee": "1575240056638175583027", "reserves": [ - "21901095326786886804205453", - "59684945414666450924827672", - "62552518209279515579234794" + "1134341723016661066956767791", + "225012869271570927684605812", + "250869897807777046847035782" ], - "mAssetSupply": "143997574949968103397796001" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "34572901626925008551936", - "expectedQty": "34464027571083801176355", - "reserves": [ - "21901095326786886804205453", - "59719518316293375933379608", - "62552518209279515579234794" - ] + "mAssetSupply": "1604043668830461455298529098" }, { "type": "redeemMasset", - "inputQty": "1322415464258054651904", + "inputQty": "1676298328067267049082060", "expectedQtys": [ - "201022346456572884648", - "548144169141828326308", - "574147265219984366259" + "1185082876575079189892413", + "235078101221221558302855", + "262091761334048934616818" ], - "redemptionFee": "396724639277416395", + "redemptionFee": "502889498420180114724", "reserves": [ - "21900894304440430231320805", - "59718970172124234105053300", - "62551944062014295594868535" + "1133156640140085987766875378", + "224777791170349706126302957", + "250607806046442997912418964" ], - "mAssetSupply": "144030716958799568421736847" + "mAssetSupply": "1602367873391892608429561762" }, { "type": "swap", "inputIndex": 2, - "inputQty": "1124450697384151351296", + "inputQty": "3617118470653301047164928", "outputIndex": 0, - "expectedQty": "1106163865839980036245", - "swapFee": "672270915858483383", + "expectedQty": "3731430733377250506184210", + "swapFee": "2209152843857867516490", "reserves": [ - "21899788140574590251284560", - "59718970172124234105053300", - "62553068512711679746219831" + "1129425209406708737260691168", + "224777791170349706126302957", + "254224924517096298959583892" ], - "mAssetSupply": "144030717631070484280220230", + "mAssetSupply": "1602370082544736466297078252", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3756889275268139656937472", - "expectedQty": "3765698308701396337530068", - "swapFee": "2254133565160883794162", - "reserves": [ - "21899788140574590251284560", - "55953271863422837767523232", - "62553068512711679746219831" - ], - "mAssetSupply": "140276082489367505507076920" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1485699208478866688", - "expectedQty": "1490305563182177183", - "swapFee": "891419525087320", - "reserves": [ - "21899788140574590251284560", - "55953271863422837767523232", - "62553067022406116564042648" - ], - "mAssetSupply": "140276081004559716553297552" - }, { "type": "redeemMasset", - "inputQty": "90687617509409092009984", + "inputQty": "758915108015525408958054", "expectedQtys": [ - "14153829963939864296782", - "36162591656021783543079", - "40428038329636586275419" + "534758307565935763527431", + "106427402349030261371419", + "120369980449838412805456" ], - "redemptionFee": "27206285252822727602", + "redemptionFee": "227674532404657622687", "reserves": [ - "21885634310610650386987778", - "55917109271766815983980153", - "62512638984076479977767229" + "1128890451099142801497163737", + "224671363768000675864931538", + "254104554536646460546778436" ], - "mAssetSupply": "140185420593335560284015170" + "mAssetSupply": "1601611395111253345545742885" }, { - "type": "mintMulti", - "inputQtys": [ - "133140679080549287985152", - "41491667409512211415040", - "582198537604362842144768" + "type": "redeemMasset", + "inputQty": "715860765931701209242009", + "expectedQtys": [ + "504420702130309530935727", + "100389623235883122546414", + "113541218892485736101526" ], - "expectedQty": "756098481117419363991994", + "redemptionFee": "214758229779510362772", "reserves": [ - "22018774989691199674972930", - "55958600939176328195395193", - "63094837521680842819911997" + "1128386030397012491966228010", + "224570974144764792742385124", + "253991013317753974810676910" ], - "mAssetSupply": "140941519074452979648007164" + "mAssetSupply": "1600895749103551423846863648" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "152551543757701775360", - "expectedQty": "152869454779152138802", - "swapFee": "91530926254621065", - "reserves": [ - "22018774989691199674972930", - "55958448069721549043256391", - "63094837521680842819911997" + "type": "redeemMasset", + "inputQty": "2593817521663588591206", + "expectedQtys": [ + "1827695157692545031501", + "363747220318096414732", + "411400117187688570087" ], - "mAssetSupply": "140941366614440148200852869" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "27596393989369046761472", - "expectedQty": "27682811462019163873143", - "swapFee": "16557836393621428056", + "redemptionFee": "778145256499076577", "reserves": [ - "22018774989691199674972930", - "55958448069721549043256391", - "63067154710218823656038854" + "1128384202701854799421196509", + "224570610397544474645970392", + "253990601917636787122106823" ], - "mAssetSupply": "140913786778287172775519453" + "mAssetSupply": "1600893156064175016757349019" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "38420253733205", - "expectedQty": "38277393438890", + "inputIndex": 1, + "inputQty": "2471375183940148002816", + "expectedQty": "2527629946098240135228", "reserves": [ - "22018774989691199674972930", - "55958448069721549043256391", - "63067154710257243909772059" + "1128384202701854799421196509", + "224573081772728414793973208", + "253990601917636787122106823" ] }, - { - "type": "redeemMasset", - "inputQty": "883417169558748672", - "expectedQtys": [ - "137998763598420753", - "350709639847057969", - "395262196818873729" - ], - "redemptionFee": "265025150867624", - "reserves": [ - "22018774851692436076552177", - "55958447719011909196198422", - "63067154314995047090898330" - ], - "mAssetSupply": "140913785895173305761077295" - }, { "type": "mintMulti", "inputQtys": [ - "426789965783106525855744", - "80441953773833263513600", - "410953138420786292326400" + "7427894813740769476608", + "97787196649900894846976", + "91484883381590519971840" ], - "expectedQty": "921298325567293822836068", + "expectedQty": "200419729626964015621894", "reserves": [ - "22445564817475542602407921", - "56038889672785742459712022", - "63478107453415833383224730" + "1128391630596668540190673117", + "224670868969378315688820184", + "254082086801018377642078663" ], - "mAssetSupply": "141835084220740599583913363" + "mAssetSupply": "1601096103423748079013106141" }, { - "type": "mintMulti", - "inputQtys": [ - "27233571095465598910464", - "49785495527881300770816", - "11090162795296145276928" + "type": "redeemMasset", + "inputQty": "21709883335542335078", + "expectedQtys": [ + "15295709876184373121", + "3045485570970337385", + "3444164046474580477" ], - "expectedQty": "88243496446621228313356", + "redemptionFee": "6512965000662700", "reserves": [ - "22472798388571008201318385", - "56088675168313623760482838", - "63489197616211129528501658" + "1128391615300958664006299996", + "224670865923892744718482799", + "254082083356854331167498186" ], - "mAssetSupply": "141923327717187220812226719" + "mAssetSupply": "1601096081720377708471433763" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "9806273830694760448", - "outputIndex": 2, - "expectedQty": "9810926499351904805", - "swapFee": "5868511280869111", + "inputQty": "78909968631829528313856", + "expectedQty": "80703670413775566627851", "reserves": [ - "22472798388571008201318385", - "56088684974587454455243286", - "63489187805284630176596853" - ], - "mAssetSupply": "141923327723055732093095830", - "hardLimitError": false, - "insufficientLiquidityError": false + "1128391615300958664006299996", + "224749775892524574246796655", + "254082083356854331167498186" + ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "915517122852137600", - "expectedQty": "925728595045298355", + "type": "redeem", + "inputIndex": 2, + "inputQty": "13849025742662585548800", + "expectedQty": "13603254851763128368435", + "swapFee": "8309415445597551329", "reserves": [ - "22472799304088131053455985", - "56088684974587454455243286", - "63489187805284630176596853" - ] + "1128391615300958664006299996", + "224749775892524574246796655", + "254068480102002568039129751" + ], + "mAssetSupply": "1601162944674464267050064143" }, { "type": "mintMulti", "inputQtys": [ - "2927370765928704770048", - "12761372951759175024640", - "13165799040693213069312" + "345593578251064319148032", + "11795629856378236960768", + "238889091986709956001792" ], - "expectedQty": "28805875869845513953093", + "expectedQty": "595939824663889054823275", "reserves": [ - "22475726674854059758226033", - "56101446347539213630267926", - "63502353604325323389666165" + "1128737208879209728325448028", + "224761571522380952483757423", + "254307369193989277995131543" ], - "mAssetSupply": "141952134524654172652347278" + "mAssetSupply": "1601758884499128156104887418" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "482778745907824361472", - "expectedQty": "488164408308151426417", + "type": "redeemBassets", + "inputQtys": [ + "2362834670493091495936", + "647115853015462707200", + "1488060593336651874304" + ], + "expectedQty": "4506026926482996169796", + "swapFee": "2705239299469479389", "reserves": [ - "22476209453599967582587505", - "56101446347539213630267926", - "63502353604325323389666165" - ] + "1128734846044539235233952092", + "224760924406527937021050223", + "254305881133395941343257239" + ], + "mAssetSupply": "1601754378472201673108717622" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2756497037057533149184", - "expectedQty": "2787242599627260856204", + "inputQty": "4932727934880392192", + "expectedQty": "4864597850092539355", "reserves": [ - "22478965950637025115736689", - "56101446347539213630267926", - "63502353604325323389666165" + "1128734850977267170114344284", + "224760924406527937021050223", + "254305881133395941343257239" ] }, { "type": "redeemMasset", - "inputQty": "33840546944975765504", + "inputQty": "6209002632470457640550", "expectedQtys": [ - "5357120892697081921", - "13369931294833859390", - "15133693692859946310" + "4374088336306108300266", + "870996529479688203632", + "985489539511027071295" ], - "redemptionFee": "10152164083492729", + "redemptionFee": "1862700789741137292", "reserves": [ - "22478960593516132418654768", - "56101432977607918796408536", - "63502338470631630529719855" + "1128730476888930864006044018", + "224760053409998457332846591", + "254304895643856430316185944" ], - "mAssetSupply": "141955376101267327172357124" + "mAssetSupply": "1601748176196867842484753719" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "116090520883766416", - "expectedQty": "116322402179168080", - "swapFee": "69654312530259", + "inputIndex": 0, + "inputQty": "33201077872777229464764416", + "expectedQty": "33635597709966805623224450", + "swapFee": "19920646723666337678858", "reserves": [ - "22478960593516132418654768", - "56101432861285516617240456", - "63502338470631630529719855" + "1095094879178964058382819568", + "224760053409998457332846591", + "254304895643856430316185944" ], - "mAssetSupply": "141955375985246460601120967" + "mAssetSupply": "1568567018970814279357668161" }, { "type": "redeemMasset", - "inputQty": "237400741261282011145830", + "inputQty": "351188163310507633567334", "expectedQtys": [ - "37581676030825597184018", - "93793743971689314482852", - "106167022344061756763041" + "245108420177088678449264", + "50306674478787064328319", + "56919516655303894022288" ], - "redemptionFee": "71220222378384603343", + "redemptionFee": "105356448993152290070", "reserves": [ - "22441378917485306821470750", - "56007639117313827302757604", - "63396171448287568772956814" + "1094849770758786969704370304", + "224709746735519670268518272", + "254247976127201126422163656" ], - "mAssetSupply": "141718046464207556974578480" + "mAssetSupply": "1568215936163952764876390897" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "120384052818904016", - "expectedQty": "120624510090582520", - "swapFee": "72230431691342", + "type": "redeemBassets", + "inputQtys": [ + "4641793570610825528344576", + "6022657149809716646379520", + "5901950739057200303439872" + ], + "expectedQty": "16732912217050755239269369", + "swapFee": "10045774795107517654154", "reserves": [ - "22441378917485306821470750", - "56007638996689317212175084", - "63396171448287568772956814" + "1090207977188176144176025728", + "218687089585709953622138752", + "248346025388143926118723784" ], - "mAssetSupply": "141718046343895734587365806" + "mAssetSupply": "1551483023946902009637121528" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1830899686812139462328320", - "expectedQty": "1825959933023158890496499", + "type": "redeemMasset", + "inputQty": "893016602421992583541555", + "expectedQtys": [ + "627323494071393262699775", + "125836126700375453492152", + "142902363260127357540627" + ], + "redemptionFee": "267904980726597775062", "reserves": [ - "22441378917485306821470750", - "57838538683501456674503404", - "63396171448287568772956814" - ] + "1089580653694104750913325953", + "218561253459009578168646600", + "248203123024883798761183157" + ], + "mAssetSupply": "1550590275249460743651355035" }, { "type": "redeemBassets", "inputQtys": [ - "390694762787263086592", - "125715053981507387392", - "311153839032534761472" - ], - "expectedQty": "830585421341294359172", - "swapFee": "498650443070618986", - "reserves": [ - "22440988222722519558384158", - "57838412968447475167116012", - "63395860294448536238195342" + "3805407884378285056", + "948833168878728960", + "2160635931278975232" ], - "mAssetSupply": "143543175691497552183503133" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "7543014654307495575552", - "expectedQty": "7559673889098745851266", - "swapFee": "4525808792584497345", + "expectedQty": "6920874222530505323", + "swapFee": "4155017544044730", "reserves": [ - "22440988222722519558384158", - "57830853294558376421264746", - "63395860294448536238195342" + "1089580649888696866535040897", + "218561252510176409289917640", + "248203120864247867482207925" ], - "mAssetSupply": "143535637202652037272424926" + "mAssetSupply": "1550590268328586521120849712" }, { "type": "mintMulti", "inputQtys": [ - "866048941115795377750016", - "1135479800720751484469248", - "1085128638474688562987008" + "201568641795091202048", + "266469571687490617344", + "140222561657106415616" ], - "expectedQty": "3089422477285377881297525", + "expectedQty": "613846086780172304624", "reserves": [ - "23307037163838314936134174", - "58966333095279127905733994", - "64480988932923224801182350" + "1089580851457338661626242945", + "218561518979748096780534984", + "248203261086809524588623541" ], - "mAssetSupply": "146625059679937415153722451" + "mAssetSupply": "1550590882174673301293154336" }, { - "type": "redeemMasset", - "inputQty": "27728209107248814489", - "expectedQtys": [ - "4406262632319217143", - "11147755429237397980", - "12190317028839298473" - ], - "redemptionFee": "8318462732174644", + "type": "mint", + "inputIndex": 1, + "inputQty": "278443450906446191919104", + "expectedQty": "284655325102887664235557", "reserves": [ - "23307032757575682616917031", - "58966321947523698668336014", - "64480976742606195961883877" - ], - "mAssetSupply": "146625031960046770637082606" + "1089580851457338661626242945", + "218839962430654542972454088", + "248203261086809524588623541" + ] }, { - "type": "redeemMasset", - "inputQty": "3554944676639129835929", - "expectedQtys": [ - "564912787120541890246", - "1429217937096496798370", - "1562881412953805244616" - ], - "redemptionFee": "1066483402991738950", + "type": "redeem", + "inputIndex": 1, + "inputQty": "69543793812286107287552", + "expectedQty": "67986938809160164163858", + "swapFee": "41726276287371664372", "reserves": [ - "23306467844788562075026785", - "58964892729586602171537644", - "64479413861193242156639261" + "1089580851457338661626242945", + "218771975491845382808290230", + "248203261086809524588623541" ], - "mAssetSupply": "146621478081853534498985627" + "mAssetSupply": "1550806035432240190221766713" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "401110583761861806653440", - "expectedQty": "402268602200873156944973", - "swapFee": "240666350257117083992", + "inputQty": "2822898417503012411932672", + "expectedQty": "2870150464209054884868145", "reserves": [ - "23306467844788562075026785", - "58964892729586602171537644", - "64077145258992368999694288" - ], - "mAssetSupply": "146220608164441929809416179" + "1089580851457338661626242945", + "218771975491845382808290230", + "251026159504312537000556213" + ] }, { "type": "mintMulti", "inputQtys": [ - "6903057558616198144", - "10742307122463688704", - "988811721339745408" + "1079183467647062144", + "1406639185668936704", + "1330036746093806336" ], - "expectedQty": "18676910900449062445", + "expectedQty": "3854566708308859336", "reserves": [ - "23306474747846120691224929", - "58964903471893724635226348", - "64077146247804090339439696" + "1089580852536522129273305089", + "218771976898484568477226934", + "251026160834349283094362549" ], - "mAssetSupply": "146220626841352830258478624" + "mAssetSupply": "1553676189751015953415494194" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "405363619424411926396928", - "outputIndex": 2, - "expectedQty": "410857426303523845207313", - "swapFee": "245834022427197914912", + "inputIndex": 2, + "inputQty": "24113820323819696934617088", + "outputIndex": 0, + "expectedQty": "24764292969092071191379389", + "swapFee": "14682146250998684086915", "reserves": [ - "23711838367270532617621857", - "58964903471893724635226348", - "63666288821500566494232383" + "1064816559567430058081925700", + "218771976898484568477226934", + "275139981158168980028979637" ], - "mAssetSupply": "146220872675375257456393536", + "mAssetSupply": "1553690871897266952099581109", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1168954844345973388345344", + "expectedQty": "1193364862489112822522126", + "reserves": [ + "1064816559567430058081925700", + "219940931742830541865572278", + "275139981158168980028979637" + ] + }, { "type": "redeemBassets", "inputQtys": [ - "20572499622619743518720", - "266274615382425862144", - "34806575206031222112256" + "8840686588737562345472", + "15006444718711373824000", + "10673930934004526088192" ], - "expectedQty": "55744261494415595402429", - "swapFee": "33466636878776623215", + "expectedQty": "34857329684966351401823", + "swapFee": "20926953983369832740", "reserves": [ - "23691265867647912874103137", - "58964637197278342209364204", - "63631482246294535272120127" + "1064807718880841320519580228", + "219925925298111830491748278", + "275129307227234975502891445" ], - "mAssetSupply": "146165128413880841860991107" + "mAssetSupply": "1554849379430071098570701412" }, { "type": "mintMulti", "inputQtys": [ - "885178575779421329817600", - "313187440374865738072064", - "269215542039085186023424" + "140994212801228696453120", + "134276716006455138844672", + "3952710574653298966528" ], - "expectedQty": "1474860631336831027075395", + "expectedQty": "280338382078110939371311", "reserves": [ - "24576444443427334203920737", - "59277824637653207947436268", - "63900697788333620458143551" + "1064948713093642549216033348", + "220060202014118285630592950", + "275133259937809628801857973" ], - "mAssetSupply": "147639989045217672888066502" + "mAssetSupply": "1555129717812149209510072723" }, { - "type": "swap", + "type": "redeemBassets", + "inputQtys": [ + "16344708364672715194368", + "1141759666038264047861760", + "339885190559592733474816" + ], + "expectedQty": "1525838367808965919346348", + "swapFee": "916052652276745598967", + "reserves": [ + "1064932368385277876500838980", + "218918442348080021582731190", + "274793374747250036068383157" + ], + "mAssetSupply": "1553603879444340243590726375" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "1603302251315904768", - "outputIndex": 1, - "expectedQty": "1622205468325643218", - "swapFee": "971413448435863", + "inputQty": "945778518145662189568", + "expectedQty": "956946697109536137632", + "swapFee": "567467110887397313", "reserves": [ - "24576446046729585519825505", - "59277823015447739621793050", - "63900697788333620458143551" + "1064931411438580766964701348", + "218918442348080021582731190", + "274793374747250036068383157" ], - "mAssetSupply": "147639989046189086336502365", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1553602934233289208815934120" }, { - "type": "redeemMasset", - "inputQty": "43486419441353550410547", - "expectedQtys": [ - "7236664169212809852567", - "17454667653296156440387", - "18815897513955885381155" + "type": "redeem", + "inputIndex": 2, + "inputQty": "6734206328155708040675328", + "expectedQty": "6644691986465159179668082", + "swapFee": "4040523796893424824405", + "reserves": [ + "1064931411438580766964701348", + "218918442348080021582731190", + "268148682760784876888715075" ], - "redemptionFee": "13045925832406065123", + "mAssetSupply": "1546872768428930394200083197" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "91380263837754070138880", + "expectedQty": "92478620298135413094533", + "swapFee": "54828158302652442083", "reserves": [ - "24569209382560372709972938", - "59260368347794443465352663", - "63881881890819664572762396" + "1064838932818282631551606815", + "218918442348080021582731190", + "268148682760784876888715075" ], - "mAssetSupply": "147596515672673565192156941" + "mAssetSupply": "1546781442993250942782386400" }, { "type": "mintMulti", "inputQtys": [ - "75826876329772672", - "976169704418636544", - "1432660703164293120" + "16728608684309702656", + "16822703186984093696", + "12880320521089439744" ], - "expectedQty": "2478324033184390872", + "expectedQty": "46747085393160664791", "reserves": [ - "24569209458387249039745610", - "59260369323964147883989207", - "63881883323480367737055516" + "1064838949546891315861309471", + "218918459170783208566824886", + "268148695641105397978154819" ], - "mAssetSupply": "147596518150997598376547813" + "mAssetSupply": "1546781489740336335943051191" }, { - "type": "mintMulti", - "inputQtys": [ - "18928923177039257600", - "5288859906165824512", - "36688785198781206528" - ], - "expectedQty": "60961413617939284563", + "type": "redeem", + "inputIndex": 2, + "inputQty": "83819861298548850688", + "expectedQty": "82673124253617152703", + "swapFee": "50291916779129310", "reserves": [ - "24569228387310426079003210", - "59260374612824054049813719", - "63881920012265566518262044" + "1064838949546891315861309471", + "218918459170783208566824886", + "268148612967981144361002116" ], - "mAssetSupply": "147596579112411216315832376" + "mAssetSupply": "1546781405970766954173329813" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "594465289485631356928", - "342364927358996054016", - "597229132726832201728" + "36416154854492224", + "7705881219297062", + "31373789841653336" ], - "expectedQty": "1537103375192991686422", - "swapFee": "922815714544521724", + "expectedQty": "75619643118498977", "reserves": [ - "24568633922020940447646282", - "59260032247896695053759703", - "63881322783132839686060316" + "1064838949583307470715801695", + "218918459178489089786121948", + "268148612999354934202655452" ], - "mAssetSupply": "147595042009036023324145954" + "mAssetSupply": "1546781406046386597291828790" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "55442784367178056", + "inputIndex": 2, + "inputQty": "108066946470455587897344", "outputIndex": 1, - "expectedQty": "56096487804950159", - "swapFee": "33591847269995", + "expectedQty": "107182141808263909358788", + "swapFee": "65699671843733845232", "reserves": [ - "24568633977463724814824338", - "59260032191800207248809544", - "63881322783132839686060316" + "1064838949583307470715801695", + "218811277036680825876763160", + "268256679945825389790552796" ], - "mAssetSupply": "147595042009069615171415949", + "mAssetSupply": "1546781471746058441025674022", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "8644006253303273881600", - "expectedQty": "8616388058247459139193", - "reserves": [ - "24568633977463724814824338", - "59260032191800207248809544", - "63889966789386142959941916" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "275000197040371306332160", - "2165063000474649440026624", - "475679306920954093895680" - ], - "expectedQty": "2911513206887428049349124", - "swapFee": "1747956698151347638192", - "reserves": [ - "24293633780423353508492178", - "57094969191325557808782920", - "63414287482465188866046236" + "type": "redeemMasset", + "inputQty": "3869280339079972821925888", + "expectedQtys": [ + "2662899988798101022683397", + "547193120046826645441473", + "670843896443015952500122" ], - "mAssetSupply": "144692145190240434581206018" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "86401280782601504", - "expectedQty": "85528476009959443", - "swapFee": "51840768469560", + "redemptionFee": "1160784101723991846577", "reserves": [ - "24293633694894877498532735", - "57094969191325557808782920", - "63414287482465188866046236" + "1062176049594509369693118298", + "218264083916633999231321687", + "267585836049382373838052674" ], - "mAssetSupply": "144692145103890994567074074" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "13706992148955531313152", - "expectedQty": "13662117615728612756064", - "reserves": [ - "24293633694894877498532735", - "57094969191325557808782920", - "63427994474614144397359388" - ] + "mAssetSupply": "1542913352191080192195594711" }, { "type": "swap", "inputIndex": 2, - "inputQty": "171479260728991936413696", + "inputQty": "22331827433964992670466048", "outputIndex": 0, - "expectedQty": "169172078964323129695517", - "swapFee": "102549764351545700726", + "expectedQty": "22851218727981320704091033", + "swapFee": "13559430976597302735683", "reserves": [ - "24124461615930554368837218", - "57094969191325557808782920", - "63599473735343136333773084" + "1039324830866528048989027265", + "218264083916633999231321687", + "289917663483347366508518722" ], - "mAssetSupply": "144705909771271074725530864", + "mAssetSupply": "1542926911622056789498330394", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1229521399789990707200", - "expectedQtys": [ - "204916602228095804343", - "484972774823640372843", - "540222959949310731323" + "type": "mintMulti", + "inputQtys": [ + "31085785356189044834304", + "43559630732265101721600", + "28664253138094983741440" ], - "redemptionFee": "368856419936997212", + "expectedQty": "104116764864390406814363", "reserves": [ - "24124256699328326273032875", - "57094484218550734168410077", - "63598933512383187023041761" + "1039355916651884238033861569", + "218307643547366264333043287", + "289946327736485461492260162" ], - "mAssetSupply": "144704680618727704671820876" + "mAssetSupply": "1543031028386921179905144757" }, { "type": "mintMulti", "inputQtys": [ - "514362682816001146880", - "570950346134219522048", - "92106168290564931584" + "50456291245574911577554944", + "13226122439979879402307584", + "7936869062319860197883904" ], - "expectedQty": "1180766170338713376299", + "expectedQty": "71384763948443555143669823", "reserves": [ - "24124771062011142274179755", - "57095055168896868387932125", - "63599025618551477587973345" + "1089812207897459149611416513", + "231533765987346143735350871", + "297883196798805321690144066" ], - "mAssetSupply": "144705861384898043385197175" + "mAssetSupply": "1614415792335364735048814580" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "90074447924648869888", - "outputIndex": 2, - "expectedQty": "90102765520548238937", - "swapFee": "53914429049967366", + "type": "redeemBassets", + "inputQtys": [ + "229761522130334974476288", + "223147677173493379629056", + "41026641776243845890048" + ], + "expectedQty": "496090188498813986216280", + "swapFee": "297832812786960568070", "reserves": [ - "24124771062011142274179755", - "57095145243344793036802013", - "63598935515785957039734408" + "1089582446375328814636940225", + "231310618310172650355721815", + "297842170157029077844254018" ], - "mAssetSupply": "144705861438812472435164541", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1613919702146865921062598300" }, { "type": "mintMulti", "inputQtys": [ - "5301219625659798528", - "22476570984042020864", - "20221039002784911360" + "122952860897273865830400", + "186689885682569983295488", + "210082351430966758604800" ], - "expectedQty": "47929323486315589710", + "expectedQty": "524209292441194976546785", "reserves": [ - "24124776363230767933978283", - "57095167719915777078822877", - "63598955736824959824645768" + "1089705399236226088502770625", + "231497308195855220339017303", + "298052252508460044602858818" ], - "mAssetSupply": "144705909368135958750754251" + "mAssetSupply": "1614443911439307116039145085" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2501005597159898742784", - "expectedQty": "2475302104940438820564", - "swapFee": "1500603358295939245", + "type": "redeemBassets", + "inputQtys": [ + "23536956699182209433600", + "44997163366293839020032", + "15702897956470776659968" + ], + "expectedQty": "85012729992918195921368", + "swapFee": "51038260952322310939", "reserves": [ - "24122301061125827495157719", - "57095167719915777078822877", - "63598955736824959824645768" + "1089681862279526906293337025", + "231452311032488926499997271", + "298036549610503573826198850" ], - "mAssetSupply": "144703409863142157147950712" + "mAssetSupply": "1614358898709314197843223717" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "70533071482684060991488", - "67118850578604630212608", - "44062093677128541274112" + "195318783423105408", + "128790566636551440", + "202394996461354432" ], - "expectedQty": "182096644876453948508427", - "swapFee": "109323581074517079352", + "expectedQty": "528942196412552326", "reserves": [ - "24051767989643143434166231", - "57028048869337172448610269", - "63554893643147831283371656" + "1089681862474845689716442433", + "231452311161279493136548711", + "298036549812898570287553282" ], - "mAssetSupply": "144521313218265703199442285" + "mAssetSupply": "1614358899238256394255776043" }, { "type": "mint", "inputIndex": 2, - "inputQty": "69187452226327921295360", - "expectedQty": "68956619020259107554458", + "inputQty": "8430996791254170206208", + "expectedQty": "8521359519034606684646", "reserves": [ - "24051767989643143434166231", - "57028048869337172448610269", - "63624081095374159204667016" + "1089681862474845689716442433", + "231452311161279493136548711", + "298044980809689824457759490" ] }, { "type": "redeemMasset", - "inputQty": "366781222073687657676", + "inputQty": "1344801620588418481468211", "expectedQtys": [ - "60993663993723485312", - "144619291706613637449", - "161346385259982023396" + "907455325293389251957856", + "192746745217679569968007", + "248203181429903277490874" ], - "redemptionFee": "110034366622106297", + "redemptionFee": "403440486176525544440", "reserves": [ - "24051706995979149710680919", - "57027904250045465834972820", - "63623919748988899222643620" + "1088774407149552300464484577", + "231259564416061813566580704", + "297796777628259921180268616" ], - "mAssetSupply": "144589903166098255241445364" + "mAssetSupply": "1613023022417673186906536918" }, { "type": "redeemBassets", "inputQtys": [ - "969210753761971498123264", - "1167621134474427844526080", - "798640911609535196561408" + "3603257289569215415582720", + "645355081327819492425728", + "5127722384132565907800064" ], - "expectedQty": "2939679974561562917859490", - "swapFee": "1764866904879865670117", + "expectedQty": "9403305835268644553551372", + "swapFee": "5645370723595343938493", "reserves": [ - "23082496242217178212557655", - "55860283115571037990446740", - "62825278837379364026082212" + "1085171149859983085048901857", + "230614209334733994074154976", + "292669055244127355272468552" ], - "mAssetSupply": "141650223191536692323585874" + "mAssetSupply": "1603619716582404542352985546" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "3995254566106310377472", - "expectedQty": "3985351054990710937154", - "reserves": [ - "23082496242217178212557655", - "55864278370137144300824212", - "62825278837379364026082212" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "1181549797376529992253440", - "3170809007781020111470592", - "6301849340818678708436992" - ], - "expectedQty": "10636223018521244301695928", + "inputQty": "252544548214160308043776", + "outputIndex": 0, + "expectedQty": "260321870045872276443579", + "swapFee": "154476434114467294764", "reserves": [ - "24264046039593708204811095", - "59035087377918164412294804", - "69127128178198042734519204" + "1084910827989937212772458278", + "230866753882948154382198752", + "292669055244127355272468552" ], - "mAssetSupply": "152290431561112927336218956" + "mAssetSupply": "1603619871058838656820280310", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "66692984237780570734592", - "expectedQty": "66813460461807750365596", - "swapFee": "40015790542668342440", - "reserves": [ - "24264046039593708204811095", - "58968273917456356661929208", - "69127128178198042734519204" + "type": "redeemMasset", + "inputQty": "13546703787723115724800", + "expectedQtys": [ + "9162119276736721975163", + "1949679809194614248033", + "2471602940607221100102" ], - "mAssetSupply": "152223778592665689433826804" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "426975250061501632", - "expectedQty": "428335569875374885", - "swapFee": "256185150036900", + "redemptionFee": "4064011136316934717", "reserves": [ - "24264046039593708204811095", - "58968273917456356661929208", - "69127127749862472859144319" + "1084901665870660476050483115", + "230864804203138959767950719", + "292666583641186748051368450" ], - "mAssetSupply": "152223778165946624522362072" + "mAssetSupply": "1603606328419062070021490227" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5692756757819586064154624", - "expectedQty": "5608297348332175633370306", - "swapFee": "3415654054691751638492", + "type": "swap", + "inputIndex": 2, + "inputQty": "114107687106908132474880", + "outputIndex": 0, + "expectedQty": "116656581557579317164363", + "swapFee": "69225078201891160340", "reserves": [ - "18655748691261532571440789", - "58968273917456356661929208", - "69127127749862472859144319" + "1084785009289102896733318752", + "230864804203138959767950719", + "292780691328293656183843330" ], - "mAssetSupply": "146534437062181730209845940" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "179328415065916443721728", - "expectedQty": "182687883843142300160072", - "reserves": [ - "18835077106327449015162517", - "58968273917456356661929208", - "69127127749862472859144319" - ] + "mAssetSupply": "1603606397644140271912650567", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "950552783206165454730035", + "inputQty": "7290578992249762427699", "expectedQtys": [ - "121992329466769749319873", - "381929792971668793801772", - "447727359752603961640518" + "4930348368655710627599", + "1049280641819429994894", + "1330688377423583963158" ], - "redemptionFee": "285165834961849636419", + "redemptionFee": "2187173697674928728", "reserves": [ - "18713084776860679265842644", - "58586344124484687868127436", - "68679400390109868897503801" + "1084780078940734241022691153", + "230863754922497140337955825", + "292779360639916232599880172" ], - "mAssetSupply": "145766857328653668904912396" + "mAssetSupply": "1603599109252321719825151596" }, { - "type": "redeemBassets", - "inputQtys": [ - "624898099396893036511232", - "484276957030121874653184", - "536409966954956135071744" + "type": "redeemMasset", + "inputQty": "248389886598213243030732", + "expectedQtys": [ + "167976874467986466740554", + "35748971365414412991975", + "45336527526438334057632" ], - "expectedQty": "1652950988979137409677162", - "swapFee": "992366012995279613574", + "redemptionFee": "74516965979463972909", "reserves": [ - "18088186677463786229331412", - "58102067167454565993474252", - "68142990423154912762432057" + "1084612102066266254555950599", + "230828005951131725924963850", + "292734024112389794265822540" ], - "mAssetSupply": "144113906339674531495235234" + "mAssetSupply": "1603350793882689486046093773" }, { - "type": "mintMulti", - "inputQtys": [ - "138568937699253984165888", - "112268554166606005010432", - "127237664512531838795776" - ], - "expectedQty": "379688958449884989017645", + "type": "swap", + "inputIndex": 1, + "inputQty": "1608611639216388", + "outputIndex": 0, + "expectedQty": "1658076426247744", + "swapFee": "983918560353", "reserves": [ - "18226755615163040213497300", - "58214335721621171998484684", - "68270228087667444601227833" + "1084612102064608178129702855", + "230828005952740337564180238", + "292734024112389794265822540" ], - "mAssetSupply": "144493595298124416484252879" + "mAssetSupply": "1603350793882690469964654126", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "379983633398565306368", - "expectedQty": "378001122161435251661", + "inputIndex": 1, + "inputQty": "11902495818649650069504", + "expectedQty": "12133728256960533710362", "reserves": [ - "18226755615163040213497300", - "58214335721621171998484684", - "68270608071300843166534201" + "1084612102064608178129702855", + "230839908448558987214249742", + "292734024112389794265822540" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "115579960693531397324800", - "expectedQty": "117799656941720118313356", + "type": "redeemMasset", + "inputQty": "3503575661785646733721", + "expectedQtys": [ + "2369320439984963718445", + "504266652022705139809", + "639473508997616870786" + ], + "redemptionFee": "1051072698535694020", "reserves": [ - "18342335575856571610822100", - "58214335721621171998484684", - "68270608071300843166534201" - ] + "1084609732744168193165984410", + "230839404181906964509109933", + "292733384638880796648951754" + ], + "mAssetSupply": "1603359425086358343387324787" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "45379461490690768", - "outputIndex": 0, - "expectedQty": "44341029487977711", - "swapFee": "27128569014157", + "type": "mint", + "inputIndex": 0, + "inputQty": "12841739409782854989643776", + "expectedQty": "12691785487205591004796419", "reserves": [ - "18342335531515542122844389", - "58214335767000633489175452", - "68270608071300843166534201" - ], - "mAssetSupply": "144611772956215426606832053", - "hardLimitError": false, - "insufficientLiquidityError": false + "1097451472153951048155628186", + "230839404181906964509109933", + "292733384638880796648951754" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "25633650181644", - "expectedQty": "26122796183197", + "inputIndex": 2, + "inputQty": "11844363315444840541454336", + "expectedQty": "11973064024514303569455114", "reserves": [ - "18342335531541175773026033", - "58214335767000633489175452", - "68270608071300843166534201" + "1097451472153951048155628186", + "230839404181906964509109933", + "304577747954325637190406090" ] }, { "type": "redeemBassets", "inputQtys": [ - "660106613690749157376", - "623315790593680474112", - "1489769627934829051904" + "22829687879936879519334400", + "5099327398382785836089344", + "3568094569323626156261376" ], - "expectedQty": "2775803074426636404098", - "swapFee": "1666481733696199562", + "expectedQty": "31374091320854128282162042", + "swapFee": "18835756246260233109162", "reserves": [ - "18341675424927485023868657", - "58213712451210039808701340", - "68269118301672908337482297" + "1074621784274014168636293786", + "225740076783524178673020589", + "301009653385002011034144714" ], - "mAssetSupply": "144608997153167122766611152" + "mAssetSupply": "1596650183277224109679414278" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "958446447371223258103808", + "expectedQty": "968042306424455362438111", + "reserves": [ + "1074621784274014168636293786", + "225740076783524178673020589", + "301968099832373234292248522" + ] }, { "type": "redeemBassets", "inputQtys": [ - "1026505838110082727936", - "849496575576422088704", - "427822296641267236864" + "2590353676461158627803136", + "2415637969206700157173760", + "677755893891512779407360" ], - "expectedQty": "2318105916646868164141", - "swapFee": "1391698569129598657", + "expectedQty": "5709659235292151922502153", + "swapFee": "3427852252526807237843", "reserves": [ - "18340648919089374941140721", - "58212862954634463386612636", - "68268690479376267070245433" + "1072031430597553010008490650", + "223324438814317478515846829", + "301290343938481721512841162" ], - "mAssetSupply": "144606679047250475898447011" + "mAssetSupply": "1591908566348356413119350236" }, { "type": "redeemMasset", - "inputQty": "79545362854455920925081", + "inputQty": "486355587814911576218009", "expectedQtys": [ - "10085812832383856223453", - "32012173767012283120742", - "37542032319820528077143" + "327425878005670128005292", + "68209008030802753115255", + "92021793935369796497217" ], - "redemptionFee": "23863608856336776277", + "redemptionFee": "145906676344473472865", "reserves": [ - "18330563106256991084917268", - "58180850780867451103491894", - "68231148447056446542168290" + "1071704004719547339880485358", + "223256229806286675762731574", + "301198322144546351716343945" ], - "mAssetSupply": "144527157548004876314298207" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "32681004141689899581440", - "expectedQty": "32561965502286308630073", - "reserves": [ - "18330563106256991084917268", - "58213531785009141003073334", - "68231148447056446542168290" - ] + "mAssetSupply": "1591422356667217846016605092" }, { - "type": "mintMulti", - "inputQtys": [ - "1088270011722876059648", - "458619302882284863488", - "59101206002328690688" + "type": "redeemMasset", + "inputQty": "1905850262852200300544", + "expectedQtys": [ + "1283062662989694956465", + "267286239001462561408", + "360599866751399182283" ], - "expectedQty": "1624791309071207877295", + "redemptionFee": "571755078855660090", "reserves": [ - "18331651376268713960976916", - "58213990404312023287936822", - "68231207548262448870858978" + "1071702721656884350185528893", + "223255962520047674300170166", + "301197961544679600317161662" ], - "mAssetSupply": "144561344304816233830805575" + "mAssetSupply": "1591420451388710072671964638" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "5967507536060518236160", - "expectedQty": "5994970368600395724245", - "swapFee": "3580504521636310941", - "reserves": [ - "18331651376268713960976916", - "58213990404312023287936822", - "68225212577893848475134733" - ], - "mAssetSupply": "144555380377784694948880356" - }, - { - "type": "mintMulti", - "inputQtys": [ - "168793338764106796105728", - "195797259808458923835392", - "53587632334689462648832" - ], - "expectedQty": "420389573163870414440953", + "inputIndex": 0, + "inputQty": "58579967091412310163456", + "expectedQty": "59223584792720565212995", + "swapFee": "35147980254847386098", "reserves": [ - "18500444715032820757082644", - "58409787664120482211772214", - "68278800210228537937783565" + "1071643498072091629620315898", + "223255962520047674300170166", + "301197961544679600317161662" ], - "mAssetSupply": "144975769950948565363321309" + "mAssetSupply": "1591361906569598915209187280" }, { - "type": "mintMulti", - "inputQtys": [ - "208519121781821729144832", - "220844646215856968171520", - "13191381766762538205184" + "type": "redeemMasset", + "inputQty": "36335823928938892309299", + "expectedQtys": [ + "24461668703390581777276", + "5096110227931979692809", + "6875238605653241032646" ], - "expectedQty": "445576610369379567332564", + "redemptionFee": "10900747178681667692", "reserves": [ - "18708963836814642486227476", - "58630632310336339179943734", - "68291991591995300475988749" + "1071619036403388239038538622", + "223250866409819742320477357", + "301191086306073947076129016" ], - "mAssetSupply": "145421346561317944930653873" + "mAssetSupply": "1591325581646417154998545673" }, { "type": "mintMulti", "inputQtys": [ - "537664244296250701119488", - "569583534180793084542976", - "387768369842918638223360" + "16167264260934753409040384", + "15547579342666446464352256", + "1461650014510251277025280" ], - "expectedQty": "1500776018234184444194537", + "expectedQty": "33308110091820604836161973", "reserves": [ - "19246628081110893187346964", - "59200215844517132264486710", - "68679759961838219114212109" + "1087786300664322992447579006", + "238798445752486188784829613", + "302652736320584198353154296" ], - "mAssetSupply": "146922122579552129374848410" + "mAssetSupply": "1624633691738237759834707646" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "447117048940329883926528", - "expectedQty": "454840442860150571825435", - "reserves": [ - "19693745130051223071273492", - "59200215844517132264486710", - "68679759961838219114212109" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "51804564684413109010432", - "6950067590949336252416", - "24285878102813482942464" - ], - "expectedQty": "83776888451901632856930", - "swapFee": "50296310857655573057", + "inputQty": "63083639904667195311915008", + "expectedQty": "63721316139886050829036576", + "swapFee": "37850183942800317187149", "reserves": [ - "19641940565366809962263060", - "59193265776926182928234294", - "68655474083735405631269645" + "1024064984524436941618542430", + "238798445752486188784829613", + "302652736320584198353154296" ], - "mAssetSupply": "147293186133960378313816915" + "mAssetSupply": "1561587902017513364839979787" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3787884079344396009472", - "4810311634206643453952", - "324863517253405310976" + "20878410733968944634265600", + "9875067055719800889147392", + "4240812876675472687104000" ], - "expectedQty": "8969376073933317178204", - "swapFee": "5384856558294967287", + "expectedQty": "34975061982942503440180285", "reserves": [ - "19638152681287465566253588", - "59188455465291976284780342", - "68655149220218152225958669" + "1044943395258405886252808030", + "248673512808205989673977005", + "306893549197259671040258296" ], - "mAssetSupply": "147284216757886444996638711" + "mAssetSupply": "1596562964000455868280160072" }, { "type": "redeemBassets", "inputQtys": [ - "328576909483504238592", - "447268355424207896576", - "1165603291734988947456" + "203577084186636160", + "1378307221235049728", + "399860553351828608" ], - "expectedQty": "1939909782580141122805", - "swapFee": "1164644656341889807", + "expectedQty": "2004236317885833001", + "swapFee": "1203263748980888", "reserves": [ - "19637824104377982062014996", - "59188008196936552076883766", - "68653983616926417237011213" + "1044943395054828802066171870", + "248673511429898768438927277", + "306893548797399117688429688" ], - "mAssetSupply": "147282276848103864855515906" + "mAssetSupply": "1596562961996219550394327071" }, { - "type": "redeemBassets", - "inputQtys": [ - "18630601496217379667968", - "102332431710224706961408", - "103872006677817299304448" - ], - "expectedQty": "224304884570452079695490", - "swapFee": "134663728979659043243", + "type": "mint", + "inputIndex": 0, + "inputQty": "19333206660991246049214464", + "expectedQty": "19136889387213507737667413", "reserves": [ - "19619193502881764682347028", - "59085675765226327369922358", - "68550111610248599937706765" - ], - "mAssetSupply": "147057971963533412775820416" + "1064276601715820048115386334", + "248673511429898768438927277", + "306893548797399117688429688" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3688625584241081057280", - "outputIndex": 2, - "expectedQty": "3691580525798913214315", - "swapFee": "2205655361182808906", - "reserves": [ - "19619193502881764682347028", - "59089364390810568450979638", - "68546420029722801024492450" + "type": "redeemMasset", + "inputQty": "10205118382804030", + "expectedQtys": [ + "6720190252321689", + "1570205813815337", + "1937826155159035" ], - "mAssetSupply": "147057974169188773958629322", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "6669625022927388090040320", - "expectedQty": "6685481624398224656583297", - "swapFee": "4001775013756432854024", + "redemptionFee": "3061535514841", "reserves": [ - "19619193502881764682347028", - "52403882766412343794396341", - "68546420029722801024492450" + "1064276601709099857863064645", + "248673511428328562625111940", + "306893548795461291533270653" ], - "mAssetSupply": "140392350921275142301443026" + "mAssetSupply": "1615699851373231001284705295" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "74471081002296691130368", - "expectedQty": "73299038386594172929359", - "swapFee": "44682648601378014678", + "inputQty": "3872290881362103820615680", + "expectedQty": "3910095948319502102461335", + "swapFee": "2323374528817262292369", "reserves": [ - "19545894464495170509417669", - "52403882766412343794396341", - "68546420029722801024492450" + "1060366505760780355760603310", + "248673511428328562625111940", + "306893548795461291533270653" ], - "mAssetSupply": "140317924522921446988327336" + "mAssetSupply": "1611829883866397714726381984" }, { "type": "redeemBassets", "inputQtys": [ - "165004518930782027776", - "139774266355923746816", - "84633473729105018880" + "1924172395957407535071232", + "130528143204187319042048", + "2290109701667607898226688" ], - "expectedQty": "391176378678577987855", - "swapFee": "234846735248295770", + "expectedQty": "4348530559579061996746243", + "swapFee": "2610684746595394434708", "reserves": [ - "19545729459976239727389893", - "52403742992145987870649525", - "68546335396249071919473570" + "1058442333364822948225532078", + "248542983285124375306069892", + "304603439093793683635043965" ], - "mAssetSupply": "140317533346542768410339481" + "mAssetSupply": "1607481353306818652729635741" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1121097802417944653725696", - "expectedQty": "1137439164098273241485045", - "reserves": [ - "20666827262394184381115589", - "52403742992145987870649525", - "68546335396249071919473570" - ] - }, - { - "type": "swap", "inputIndex": 1, - "inputQty": "7115516885154793026224128", - "outputIndex": 2, - "expectedQty": "7120905270855558698899026", - "swapFee": "4257545935991004090523", + "inputQty": "43927232488921379110912", + "expectedQty": "44614432523894861216089", "reserves": [ - "20666827262394184381115589", - "59519259877300780896873653", - "61425430125393513220574544" - ], - "mAssetSupply": "141459230056577032655915049", - "hardLimitError": false, - "insufficientLiquidityError": false + "1058442333364822948225532078", + "248586910517613296685180804", + "304603439093793683635043965" + ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "959631058863509", - "expectedQty": "962632671511789", - "swapFee": "575778635318", + "inputIndex": 0, + "inputQty": "657136016430372329881600", + "expectedQty": "663548555494708805524403", + "swapFee": "394281609858223397928", "reserves": [ - "20666827262394184381115589", - "59519259877300780896873653", - "61425430124430880549062755" + "1057778784809328239420007675", + "248586910517613296685180804", + "304603439093793683635043965" ], - "mAssetSupply": "141459230055617977375686858" + "mAssetSupply": "1606869226004522033484368158" }, { - "type": "redeemBassets", - "inputQtys": [ - "205148158525286580224", - "538056669602970402816", - "7454662825153170432" + "type": "redeemMasset", + "inputQty": "13835475203858402508", + "expectedQtys": [ + "9104961032287043053", + "2139742416754447967", + "2621911578373672601" ], - "expectedQty": "751567325405852312953", - "swapFee": "451211121916661384", + "redemptionFee": "4150642561157520", "reserves": [ - "20666622114235659094535365", - "59518721820631177926470837", - "61425422669768055395892323" + "1057778775704367207132964622", + "248586908377870879930732837", + "304603436471882105261371364" ], - "mAssetSupply": "141458478488292571523373905" + "mAssetSupply": "1606869212173197472187123170" }, { - "type": "redeemMasset", - "inputQty": "16349693850039274700", - "expectedQtys": [ - "2387920329758220701", - "6877077688414773641", - "7097387020789170874" - ], - "redemptionFee": "4904908155011782", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2305790894084606117543936", + "expectedQty": "2328241780833629245271630", + "swapFee": "1383474536450763670526", "reserves": [ - "20666619726315329336314664", - "59518714943553489511697196", - "61425415572381034606721449" + "1055450533923533577887692992", + "248586908377870879930732837", + "304603436471882105261371364" ], - "mAssetSupply": "141458462143503629639110987" + "mAssetSupply": "1604564804753649316833249760" }, { - "type": "mintMulti", - "inputQtys": [ - "623565398294775220666368", - "1343274183329551292039168", - "556390004286879170560000" + "type": "redeemMasset", + "inputQty": "1039638787892981601927168", + "expectedQtys": [ + "683648378878377040419329", + "161017528970459079197129", + "197301189256749975664759" ], - "expectedQty": "2524925701627812966305691", + "redemptionFee": "311891636367894480578", "reserves": [ - "21290185124610104556981032", - "60861989126883040803736364", - "61981805576667913777281449" + "1054766885544655200847273663", + "248425890848900420851535708", + "304406135282625355285706605" ], - "mAssetSupply": "143983387845131442605416678" + "mAssetSupply": "1603525477857392703125803170" }, { "type": "mint", "inputIndex": 1, - "inputQty": "175332697828987416608768", - "expectedQty": "174729908376057625809511", + "inputQty": "12753036526993104896", + "expectedQty": "12951279911194736902", "reserves": [ - "21290185124610104556981032", - "61037321824712028220345132", - "61981805576667913777281449" + "1054766885544655200847273663", + "248425903601936947844640604", + "304406135282625355285706605" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "227010939297512520941568", - "expectedQty": "227687857235999017370324", - "swapFee": "136206563578507512564", - "reserves": [ - "21290185124610104556981032", - "61037321824712028220345132", - "61754117719431914759911125" - ], - "mAssetSupply": "143931243020773566217797185" - }, - { - "type": "mintMulti", - "inputQtys": [ - "3371488817897291120640", - "3202975794033022992384", - "4046125525523240583168" - ], - "expectedQty": "10639506988143726681329", - "reserves": [ - "21293556613428001848101672", - "61040524800506061243337516", - "61758163844957438000494293" - ], - "mAssetSupply": "143941882527761709944478514" - }, - { - "type": "mintMulti", - "inputQtys": [ - "46391147902109352984576", - "58751227034476245680128", - "30010399826064435052544" + "type": "redeemMasset", + "inputQty": "31427937751438796", + "expectedQtys": [ + "20666464902941851", + "4867507018026956", + "5964349845710250" ], - "expectedQty": "135452986615492379620095", + "redemptionFee": "9428381325431", "reserves": [ - "21339947761330111201086248", - "61099276027540537489017644", - "61788174244783502435546837" + "1054766885523988735944331812", + "248425903597069440826613648", + "304406135276661005439996355" ], - "mAssetSupply": "144077335514377202324098609" + "mAssetSupply": "1603525490777254104950426707" }, { - "type": "mintMulti", - "inputQtys": [ - "1841942419889154686976", - "1183201086267925463040", - "3504628210812092153856" + "type": "redeemMasset", + "inputQty": "1712641775404943251865", + "expectedQtys": [ + "1126203425202403066982", + "265251125513893040983", + "325022748539259860360" ], - "expectedQty": "6537421151732736340239", + "redemptionFee": "513792532621482975", "reserves": [ - "21341789703750000355773224", - "61100459228626805414480684", - "61791678872994314527700693" + "1054765759320563533541264830", + "248425638345943926933572665", + "304405810253912466180135995" ], - "mAssetSupply": "144083872935528935060438848" + "mAssetSupply": "1603523778649271232628657817" }, { "type": "redeemBassets", "inputQtys": [ - "11655391237676791808", - "4944670470727446528", - "12587447980346150912" + "3456150671184357027217408", + "471202341290601149890560", + "1835161300508170810032128" ], - "expectedQty": "29278711971724453325", - "swapFee": "17577773847343077", + "expectedQty": "5751706151561562691055667", + "swapFee": "3453095548265897152925", "reserves": [ - "21341778048358762678981416", - "61100454283956334687034156", - "61791666285546334181549781" + "1051309608649379176514047422", + "247954436004653325783682105", + "302570648953404295370103867" ], - "mAssetSupply": "144083843656816963335985523" + "mAssetSupply": "1597772072497709669937602150" }, { "type": "redeemBassets", "inputQtys": [ - "47161963487343102918656", - "35070322636655800877056", - "61839095284427313381376" + "2425581170876371242582016", + "1446979395050521206194176", + "2856753726601155011674112" ], - "expectedQty": "144350364583230876915437", - "swapFee": "86662216079586277916", + "expectedQty": "6754066893577871774975866", + "swapFee": "4054873059982712692601", "reserves": [ - "21294616084871419576062760", - "61065383961319678886157100", - "61729827190261906868168405" + "1048884027478502805271465406", + "246507456609602804577487929", + "299713895226803140358429755" ], - "mAssetSupply": "143939493292233732459070086" + "mAssetSupply": "1591018005604131798162626284" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "485247278643202555904", - "outputIndex": 1, - "expectedQty": "493043144638801436044", - "swapFee": "294979857294334465", + "inputQty": "5449424081610227945832448", + "expectedQty": "5502654740167648789141337", + "swapFee": "3269654448966136767499", "reserves": [ - "21295101332150062778618664", - "61064890918175040084721056", - "61729827190261906868168405" + "1043381372738335156482324069", + "246507456609602804577487929", + "299713895226803140358429755" ], - "mAssetSupply": "143939493587213589753404551", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1585571851176970536353561335" }, { "type": "mint", "inputIndex": 0, - "inputQty": "223019836703692541657088", - "expectedQty": "225923088464488486533643", + "inputQty": "17937094648322324430848", + "expectedQty": "17753623765177715305642", "reserves": [ - "21518121168853755320275752", - "61064890918175040084721056", - "61729827190261906868168405" + "1043399309832983478806754917", + "246507456609602804577487929", + "299713895226803140358429755" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "271239560841855565824", - "outputIndex": 0, - "expectedQty": "266717870646101044559", - "swapFee": "162188904462763633", + "type": "redeemBassets", + "inputQtys": [ + "37460591298403228450816", + "38991152596588947308544", + "51137930639875426484224" + ], + "expectedQty": "128292475791347629778165", + "swapFee": "77021698493904920819", "reserves": [ - "21517854450983109219231193", - "61065162157735881940286880", - "61729827190261906868168405" + "1043361849241685075578304101", + "246468465457006215630179385", + "299662757296163264931945531" ], - "mAssetSupply": "144165416837866982702701827", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1585461312324944366439088812" }, { - "type": "mintMulti", - "inputQtys": [ - "256575008764293", - "212188300286267", - "140650315417512" - ], - "expectedQty": "611501471633659", + "type": "redeem", + "inputIndex": 2, + "inputQty": "521361569530173500424192", + "expectedQty": "516149291561320491330357", + "swapFee": "312816941718104100254", "reserves": [ - "21517854451239684227995486", - "61065162157948070240573147", - "61729827190402557183585917" + "1043361849241685075578304101", + "246468465457006215630179385", + "299146608004601944440615174" ], - "mAssetSupply": "144165416838478484174335486" + "mAssetSupply": "1584940263572355911042764874" }, { - "type": "mintMulti", - "inputQtys": [ - "9248648040065946091520", - "4430499399770162855936", - "251514328243513262080" + "type": "redeemMasset", + "inputQty": "307388197929512", + "expectedQtys": [ + "202292105803758", + "47786513305767", + "58000009604801" ], - "expectedQty": "14033735706546847671737", + "redemptionFee": "92216459378", "reserves": [ - "21527103099279750174087006", - "61069592657347840403429083", - "61730078704730800696847997" + "1043361849241482783472500343", + "246468465456958429116873618", + "299146608004543944431010373" ], - "mAssetSupply": "144179450574185031022007223" + "mAssetSupply": "1584940263572048615061294740" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "8105177681977436160", - "expectedQty": "7997406813151864670", - "swapFee": "4863106609186461", + "inputIndex": 2, + "inputQty": "58570362236681175040", + "expectedQty": "57983559927491083020", + "swapFee": "35142217342008705", "reserves": [ - "21527095101872937022222336", - "61069592657347840403429083", - "61730078704730800696847997" + "1043361849241482783472500343", + "246468465456958429116873618", + "299146550020984016939927353" ], - "mAssetSupply": "144179442473870455653757524" + "mAssetSupply": "1584940205036828595722128405" }, { - "type": "redeemBassets", - "inputQtys": [ - "2193647643208519774109696", - "969437021230021845450752", - "2243727192322415045640192" - ], - "expectedQty": "5425769222415661240820426", - "swapFee": "3257415983039220276658", + "type": "swap", + "inputIndex": 2, + "inputQty": "4949960522540390547456", + "outputIndex": 1, + "expectedQty": "4918146845448172726502", + "swapFee": "2998232285814652442", "reserves": [ - "19333447458664417248112640", - "60100155636117818557978331", - "59486351512408385651207805" + "1043361849241482783472500343", + "246463547310112980944147116", + "299151499981506557330474809" ], - "mAssetSupply": "138753673251454794412937098" + "mAssetSupply": "1584940208035060881536780847", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "1961827767750115662495744", - "expectedQty": "1953958947421932989570820", + "inputQty": "102814562513962504552448", + "outputIndex": 2, + "expectedQty": "103354327885245608241418", + "swapFee": "62640440719589696419", "reserves": [ - "19333447458664417248112640", - "62061983403867934220474075", - "59486351512408385651207805" - ] + "1043361849241482783472500343", + "246566361872626943448699564", + "299048145653621311722233391" + ], + "mAssetSupply": "1584940270675501601126477266", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "85280579806964117143552", - "81949754473713082826752", - "14629535397936587866112" + "type": "redeemMasset", + "inputQty": "24640854034922677993472", + "expectedQtys": [ + "16216140576516816665836", + "3832184192352454149270", + "4647866675009524790500" ], - "expectedQty": "182812936705441070611554", - "swapFee": "109753614191779710193", + "redemptionFee": "7392256210476803398", "reserves": [ - "19248166878857453130969088", - "61980033649394221137647323", - "59471721977010449063341693" + "1043345633100906266655834507", + "246562529688434590994550294", + "299043497786946302197442891" ], - "mAssetSupply": "140524819262171286331896364" + "mAssetSupply": "1584915637213722888925287192" }, { - "type": "redeemBassets", - "inputQtys": [ - "213570264110277920", - "49442063445992728", - "112989743685753936" + "type": "redeemMasset", + "inputQty": "4605516218583528505344", + "expectedQtys": [ + "3030889202222125975593", + "716257091798240113475", + "868712802049494184180" ], - "expectedQty": "378757306723493615", - "swapFee": "227390818525211", + "redemptionFee": "1381654865575058551", "reserves": [ - "19248166665287189020691168", - "61980033599952157691654595", - "59471721864020705377587757" + "1043342602211704044529858914", + "246561813431342792754436819", + "299042629074144252703258711" ], - "mAssetSupply": "140524818883413979608402749" + "mAssetSupply": "1584911033079159170971840399" }, { "type": "mint", "inputIndex": 0, - "inputQty": "8835260244761839140864", - "expectedQty": "8975217132828125831506", + "inputQty": "9245178875332120281088", + "expectedQty": "9150491323006291025387", "reserves": [ - "19257001925531950859832032", - "61980033599952157691654595", - "59471721864020705377587757" + "1043351847390579376650140002", + "246561813431342792754436819", + "299042629074144252703258711" ] }, { - "type": "redeemMasset", - "inputQty": "2671131977261828066508", - "expectedQtys": [ - "365908873097108421117", - "1177703795054947502282", - "1130042506749521108628" - ], - "redemptionFee": "801339593178548419", + "type": "swap", + "inputIndex": 1, + "inputQty": "561837819843606577414144", + "outputIndex": 0, + "expectedQty": "576023706445706928247962", + "swapFee": "342287532533774307325", "reserves": [ - "19256636016658853751410915", - "61978855896157102744152313", - "59470591821513955856479129" + "1042775823684133669721892040", + "247123651251186399331850963", + "299042629074144252703258711" ], - "mAssetSupply": "140531123769909139084716166" + "mAssetSupply": "1584920525858014711037173111", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "95080767753762795159552", - "19558121386198595272704", - "108403680939958673080320" - ], - "expectedQty": "224054759514674180946073", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1710695805286308066099200", + "expectedQty": "1683671311021667825295493", + "swapFee": "1026417483171784839659", "reserves": [ - "19351716784412616546570467", - "61998414017543301339425017", - "59578995502453914529559449" + "1042775823684133669721892040", + "245439979940164731506555470", + "299042629074144252703258711" ], - "mAssetSupply": "140755178529423813265662239" + "mAssetSupply": "1583210856470211574755913570" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "156330651832245087633408", - "expectedQty": "158766107663934782203608", + "type": "swap", + "inputIndex": 2, + "inputQty": "1813626286153378727723008", + "outputIndex": 1, + "expectedQty": "1801353109696189428063594", + "swapFee": "1098436457435580848969", "reserves": [ - "19508047436244861634203875", - "61998414017543301339425017", - "59578995502453914529559449" - ] + "1042775823684133669721892040", + "243638626830468542078491876", + "300856255360297631430981719" + ], + "mAssetSupply": "1583211954906669010336762539", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "7187844157797844176076", + "inputQty": "1740597972854677678378188", "expectedQtys": [ - "994782588155034856699", - "3161512855627494627390", - "3038138365169821240304" + "1146093524103020025543590", + "267778218567842845145203", + "330664940750263829087551" ], - "redemptionFee": "2156353247339353252", + "redemptionFee": "522179391856403303513", "reserves": [ - "19507052653656706599347176", - "61995252504687673844797627", - "59575957364088744708319145" + "1041629730160030649696348450", + "243370848611900699233346673", + "300525590419547367601894168" ], - "mAssetSupply": "140906758949283197543043023" + "mAssetSupply": "1581471879113206189061687864" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "17238108789668726177792", - "expectedQty": "17298122336716542093112", - "swapFee": "10342865273801235706", + "inputQty": "28683419708791164239872", + "expectedQty": "28219508847296478216271", + "swapFee": "17210051825274698543", "reserves": [ - "19507052653656706599347176", - "61977954382350957302704515", - "59575957364088744708319145" + "1041629730160030649696348450", + "243342629103053402755130402", + "300525590419547367601894168" ], - "mAssetSupply": "140889531183358802618100937" + "mAssetSupply": "1581443212903549223172146535" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "2560308485943235209854976", - "expectedQty": "2514071123838845198175190", - "swapFee": "1536185091565941125912", + "inputQty": "197180189849336057692160", + "expectedQty": "199110012707751362091229", + "swapFee": "118308113909601634615", "reserves": [ - "16992981529817861401171986", - "61977954382350957302704515", - "59575957364088744708319145" + "1041430620147322898334257221", + "243342629103053402755130402", + "300525590419547367601894168" ], - "mAssetSupply": "138330758882507133349371873" + "mAssetSupply": "1581246151021813796716088990" }, { - "type": "mintMulti", - "inputQtys": [ - "474605106447058552750080", - "690595187072884426145792", - "1638230010643455770886144" + "type": "redeemMasset", + "inputQty": "3645929271373384388706304", + "expectedQtys": [ + "2400539147514842584169815", + "560914472956853134083674", + "692723481214793694594024" ], - "expectedQty": "2802462827212514254890878", + "redemptionFee": "1093778781412015316611", "reserves": [ - "17467586636264919953922066", - "62668549569423841728850307", - "61214187374732200479205289" + "1039030080999808055750087406", + "242781714630096549621046728", + "299832866938332573907300144" ], - "mAssetSupply": "141133221709719647604262751" + "mAssetSupply": "1577601315529221824342699297" }, { "type": "redeemMasset", - "inputQty": "31822935455075", + "inputQty": "126162782474394331512832", "expectedQtys": [ - "3937436660094", - "14126361566017", - "13798528125618" + "83067628510275325956543", + "19409737647416833492714", + "23970822078642807031993" ], - "redemptionFee": "9546880636", + "redemptionFee": "37848834742318299453", "reserves": [ - "17467586636260982517261972", - "62668549569409715367284290", - "61214187374718401951079671" + "1038947013371297780424130863", + "242762304892449132787554014", + "299808896116253931100268151" ], - "mAssetSupply": "141133221709687834215688312" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "2566342729850481016832", - "expectedQty": "2554868879120648417059", - "reserves": [ - "17467586636260982517261972", - "62668549569409715367284290", - "61216753717448252432096503" - ] + "mAssetSupply": "1577475190595582172329485918" }, { "type": "redeemBassets", "inputQtys": [ - "125758318659750265356288", - "939897039545064828698624", - "1499994776364931042246656" + "28100867717456215819681792", + "1389068610099299884204032", + "9710530545472356470489088" ], - "expectedQty": "2557124022853601418016459", - "swapFee": "1535195531030779318400", + "expectedQty": "39026264703876421378078236", + "swapFee": "23429816712353264785718", "reserves": [ - "17341828317601232251905684", - "61728652529864650538585666", - "59716758941083321389849847" + "1010846145653841564604449071", + "241373236282349832903349982", + "290098365570781574629779063" ], - "mAssetSupply": "138578652555713353446088912" + "mAssetSupply": "1538448925891705750951407682" }, { - "type": "redeemBassets", - "inputQtys": [ - "92189316813701446107136", - "77352720277272117903360", - "96098568377683339640832" - ], - "expectedQty": "266672173487396215294211", - "swapFee": "160099363710664127653", + "type": "redeem", + "inputIndex": 0, + "inputQty": "127867618988393758720", + "expectedQty": "129101371490644158279", + "swapFee": "76720571393036255", "reserves": [ - "17249639000787530805798548", - "61651299809587378420682306", - "59620660372705638050209015" + "1010846016552470073960290792", + "241373236282349832903349982", + "290098365570781574629779063" ], - "mAssetSupply": "138311980382225957230794701" + "mAssetSupply": "1538448798100807333950685217" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "116880919903607736762368", - "outputIndex": 1, - "expectedQty": "119657935948513720294044", - "swapFee": "71503830281562933559", + "inputQty": "3414530503800795430912", + "expectedQty": "3379870446785434690260", + "reserves": [ + "1010849431082973874755721704", + "241373236282349832903349982", + "290098365570781574629779063" + ] + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "275606926229849216", + "outputIndex": 0, + "expectedQty": "280909803515581160", + "swapFee": "166935171315927", "reserves": [ - "17366519920691138542560916", - "61531641873638864700388262", - "59620660372705638050209015" + "1010849430802064071240140544", + "241373236282349832903349982", + "290098365846388500859628279" ], - "mAssetSupply": "138312051886056238793728260", + "mAssetSupply": "1538452177971421054556691404", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 2, - "inputQty": "3494390916192354063876096", + "inputQty": "81114077074846089216", "outputIndex": 1, - "expectedQty": "3491411626588275979581782", - "swapFee": "2087075831114984477543", + "expectedQty": "80621089244860487807", + "swapFee": "49130812822702436", "reserves": [ - "17366519920691138542560916", - "58040230247050588720806480", - "63115051288897992114085111" + "1010849430802064071240140544", + "241373155661260588042862175", + "290098446960465575705717495" ], - "mAssetSupply": "138314138961887353778205803", + "mAssetSupply": "1538452178020551867379393840", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "10320741290663429734", - "expectedQtys": [ - "1295468344434501879", - "4329553723608178418", - "4708113736979112451" - ], - "redemptionFee": "3096222387199028", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2733177044951266530164736", + "expectedQty": "2759492362436460957528770", + "swapFee": "1639906226970759918098", "reserves": [ - "17366518625222794108059037", - "58040225917496865112628062", - "63115046580784255134972660" + "1008089938439627610282611774", + "241373155661260588042862175", + "290098446960465575705717495" ], - "mAssetSupply": "138314128644242285501975097" + "mAssetSupply": "1535720640881827571609147202" }, { "type": "redeemBassets", "inputQtys": [ - "450200868757504262144", - "726035092706914729984", - "354568560124271329280" + "1250466459517401088", + "8965408417659308032", + "7287429150238415872" ], - "expectedQty": "1534868445160939438623", - "swapFee": "921473951467444129", + "expectedQty": "17693662810664468755", + "swapFee": "10622571229136162", "reserves": [ - "17366068424354036603796893", - "58039499882404158197898078", - "63114692012224130863643380" + "1008089937189161150765210686", + "241373146695852170383554143", + "290098439673036425467301623" ], - "mAssetSupply": "138312593775797124562536474" + "mAssetSupply": "1535720623188164760944678447" }, { "type": "redeemBassets", "inputQtys": [ - "22755455268068979113984", - "3841627640361446277120", - "84567944967634708070400" + "162048163188373031223296", + "59029901695497126543360", + "237950066755691972919296" ], - "expectedQty": "111178951094439070298489", - "swapFee": "66747419108128319170", + "expectedQty": "460520204701634982603826", + "swapFee": "276478009626757043788", "reserves": [ - "17343312969085967624682909", - "58035658254763796751620958", - "63030124067256496155572980" + "1007927889025972777733987390", + "241314116794156673257010783", + "289860489606280733494382327" ], - "mAssetSupply": "138201414824702685492237985" + "mAssetSupply": "1535260102983463125962074621" }, { - "type": "redeemMasset", - "inputQty": "162503114747708535786700", - "expectedQtys": [ - "20386888791126409488550", - "68220328657428507286724", - "74091272650186178314312" + "type": "redeem", + "inputIndex": 0, + "inputQty": "42363909060751064563712", + "expectedQty": "42771132295606725675528", + "swapFee": "25418345436450638738", + "reserves": [ + "1007885117893677171008311862", + "241314116794156673257010783", + "289860489606280733494382327" ], - "redemptionFee": "48750934424312560736", + "mAssetSupply": "1535217764492747811348149647" + }, + { + "type": "mintMulti", + "inputQtys": [ + "4591941326459886999961600", + "10054626086750219436818432", + "900158295646764714164224" + ], + "expectedQty": "15653902721135155047144584", "reserves": [ - "17322926080294841215194359", - "57967437926106368244334234", - "62956032794606309977258668" + "1012477059220137058008273462", + "251368742880906892693829215", + "290760647901927498208546551" ], - "mAssetSupply": "138038960460889401269012021" + "mAssetSupply": "1550871667213882966395294231" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "14450221805708079267840", - "expectedQty": "14379567604279038705815", + "type": "mintMulti", + "inputQtys": [ + "3386031963781466624", + "14075561833559898112", + "14941165621028718592" + ], + "expectedQty": "32705712695159567653", "reserves": [ - "17322926080294841215194359", - "57967437926106368244334234", - "62970483016412018056526508" - ] + "1012477062606169021789740086", + "251368756956468726253727327", + "290760662843093119237265143" + ], + "mAssetSupply": "1550871699919595661554861884" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "30531464543014452461568", - "expectedQty": "30382096419852991335774", + "type": "redeemBassets", + "inputQtys": [ + "955196089607265418477568", + "1421947968906152944599040", + "683758084615479146577920" + ], + "expectedQty": "3077701468676143386054051", + "swapFee": "1847729518917036253384", "reserves": [ - "17322926080294841215194359", - "57967437926106368244334234", - "63001014480955032508988076" - ] + "1011521866516561756371262518", + "249946808987562573309128287", + "290076904758477640090687223" + ], + "mAssetSupply": "1547793998450919518168807833" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "903954072688941465600", - "outputIndex": 2, - "expectedQty": "925557640433634058823", - "swapFee": "552948660830342451", + "inputQty": "809808025184247207690240", + "expectedQty": "817402302857843709827648", + "swapFee": "485884815110548324614", "reserves": [ - "17323830034367530156659959", - "57967437926106368244334234", - "63000088923314598874929253" + "1010704464213703912661434870", + "249946808987562573309128287", + "290076904758477640090687223" ], - "mAssetSupply": "138083722677862194129396061", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1546984676310550381509442207" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "3252909124406532898816", - "outputIndex": 0, - "expectedQty": "3173160344964784918152", - "swapFee": "1942193755231919121", + "type": "redeemBassets", + "inputQtys": [ + "861223370914967424", + "5314340158199478272", + "2393432160058363392" + ], + "expectedQty": "8657210370459725007", + "swapFee": "5197444689089288", "reserves": [ - "17320656874022565371741807", - "57967437926106368244334234", - "63003341832439005407828069" + "1010704463352480541746467446", + "249946803673222415109650015", + "290076902365045480032323831" ], - "mAssetSupply": "138083724620055949361315182", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1546984667653340011049717200" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "113029560336439079600128", - "63549164415128101191680", - "53863287904228754849792" + "3475303283836326", + "4943377836224860", + "4041210071190545" + ], + "expectedQty": "12532832666468085", + "swapFee": "7524214128357", + "reserves": [ + "1010704463349005238462631120", + "249946803668279037273425155", + "290076902361004269961133286" ], - "expectedQty": "232112681226856511142838", + "mAssetSupply": "1546984667640807178383249115" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "513739208150731783667712", + "expectedQty": "508570822927597928302130", + "swapFee": "308243524890439070200", "reserves": [ - "17433686434359004451341935", - "58030987090521496345525914", - "63057205120343234162677861" + "1010704463349005238462631120", + "249946803668279037273425155", + "289568331538076672032831156" ], - "mAssetSupply": "138315837301282805872458020" + "mAssetSupply": "1546471236676181337038651603" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "63191700000537135022080", - "93582018466824266448896", - "60894445884163573678080" + "6553656353213048160256", + "20461448156900004724736", + "19618880865602509996032" ], - "expectedQty": "218208904745173471352645", + "expectedQty": "47041609935792278416212", + "swapFee": "28241911108140251200", "reserves": [ - "17496878134359541586364015", - "58124569108988320611974810", - "63118099566227397736355941" + "1010697909692652025414470864", + "249926342220122137268700419", + "289548712657211069522835124" ], - "mAssetSupply": "138534046206027979343810665" + "mAssetSupply": "1546424195066245544760235391" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "65774176047033567150080", - "outputIndex": 2, - "expectedQty": "65786345109797835558063", - "swapFee": "39304387297705825362", + "type": "redeemBassets", + "inputQtys": [ + "59338227616401376", + "23131907920821836", + "47999738893756048" + ], + "expectedQty": "130664391400020290", + "swapFee": "78445702261368", "reserves": [ - "17496878134359541586364015", - "58190343285035354179124890", - "63052313221117599900797878" + "1010697909633313797798069488", + "249926342196990229347878583", + "289548712609211330629079076" ], - "mAssetSupply": "138534085510415277049636027", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1546424194935581153360215101" }, { - "type": "mintMulti", - "inputQtys": [ - "46126089017259712315392", - "17393909730110611652608", - "30487175632613879578624" - ], - "expectedQty": "94672829603674933120891", + "type": "redeem", + "inputIndex": 2, + "inputQty": "5095145013186024964096000", + "expectedQty": "5042663509219323921933033", + "swapFee": "3057087007911614978457", "reserves": [ - "17543004223376801298679407", - "58207737194765464790777498", - "63082800396750213780376502" + "1010697909633313797798069488", + "249926342196990229347878583", + "284506049099992006707146043" ], - "mAssetSupply": "138628758340018951982756918" + "mAssetSupply": "1541332107009403040011097558" }, { "type": "mintMulti", "inputQtys": [ - "1868120440982373314592768", - "563982824869952833454080", - "1536033090747997517512704" + "20140600198869007990784", + "31280789474075985575936", + "6931332968199046037504" ], - "expectedQty": "3991679991889695398968333", + "expectedQty": "58654833304834238622029", "reserves": [ - "19411124664359174613272175", - "58771720019635417624231578", - "64618833487498211297889206" + "1010718050233512666806060272", + "249957622986464305333454519", + "284512980432960205753183547" ], - "mAssetSupply": "142620438331908647381725251" + "mAssetSupply": "1541390761842707874249719587" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "3045228753663694752186368", - "outputIndex": 2, - "expectedQty": "3096533438121587911904286", - "swapFee": "1852477565128983906912", + "inputIndex": 2, + "inputQty": "36809790607248400", + "outputIndex": 0, + "expectedQty": "37532365076771611", + "swapFee": "22307314166644", "reserves": [ - "22456353418022869365458543", - "58771720019635417624231578", - "61522300049376623385984920" + "1010718050195980301729288661", + "249957622986464305333454519", + "284512980469769996360431947" ], - "mAssetSupply": "142622290809473776365632163", + "mAssetSupply": "1541390761842730181563886231", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5923542516054876433154048", - "expectedQty": "5830154911898487777945988", - "swapFee": "3554125509632925859892", - "reserves": [ - "16626198506124381587512555", - "58771720019635417624231578", - "61522300049376623385984920" - ], - "mAssetSupply": "136702302418928532858338007" - }, - { - "type": "redeemMasset", - "inputQty": "4687998712972045398835", - "expectedQtys": [ - "569999281214594202583", - "2014882605581646002206", - "2109181289631291103224" + "type": "redeemBassets", + "inputQtys": [ + "26008728464203725144064", + "16802225598514073698304", + "6272871939623073349632" ], - "redemptionFee": "1406399613891613619", + "expectedQty": "49119547527151490360711", + "swapFee": "29489422169592649806", "reserves": [ - "16625628506843166993309972", - "58769705137029835978229372", - "61520190868086992094881696" + "1010692041467516098004144597", + "249940820760865791259756215", + "284506707597830373287082315" ], - "mAssetSupply": "136697615826615174704552791" + "mAssetSupply": "1541341642295203030073525520" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3546872987088094494720", - "expectedQty": "3560677923519740764934", - "swapFee": "2128123792252856696", + "type": "redeemBassets", + "inputQtys": [ + "2201790003619234786050048", + "2345661680903916198297600", + "1636670473166724976869376" + ], + "expectedQty": "6211299835309571977880309", + "swapFee": "3729017311572686798807", "reserves": [ - "16625628506843166993309972", - "58766144459106316237464438", - "61520190868086992094881696" + "1008490251463896863218094549", + "247595159079961875061458615", + "282870037124663648310212939" ], - "mAssetSupply": "136694071081751878862914767" + "mAssetSupply": "1535130342459893458095645211" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1247432675300747509760", - "expectedQty": "1241850945607651297383", + "inputIndex": 0, + "inputQty": "4643619108368771072", + "expectedQty": "4596745449786951080", "reserves": [ - "16625628506843166993309972", - "58767391891781616984974198", - "61520190868086992094881696" + "1008490256107515971586865621", + "247595159079961875061458615", + "282870037124663648310212939" ] }, { - "type": "mintMulti", - "inputQtys": [ - "739752640259631480832", - "1106353047623039057920", - "700313874660906237952" + "type": "redeemMasset", + "inputQty": "1355419394795159263641", + "expectedQtys": [ + "890163611861598845935", + "218544700606972406828", + "249680760333960508133" ], - "expectedQty": "2553502251347140113113", + "redemptionFee": "406625818438547779", "reserves": [ - "16626368259483426624790804", - "58768498244829240024032118", - "61520891181961653001119648" + "1008489365943904109988019686", + "247594940535261268089051787", + "282869787443903314349704806" ], - "mAssetSupply": "136697866434948833654325263" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "119288463400772496", - "expectedQty": "121784737661018087", - "reserves": [ - "16626368378771890025563300", - "58768498244829240024032118", - "61520891181961653001119648" - ] + "mAssetSupply": "1535128992043869931161880429" }, { "type": "mintMulti", "inputQtys": [ - "10528363818531283795968", - "11097300115915905433600", - "1110970948074150428672" + "239827040954333941202944", + "77487388881523126042624", + "342190472082602288218112" ], - "expectedQty": "22901726924346393668970", + "expectedQty": "661634454215858494286517", "reserves": [ - "16636896742590421309359268", - "58779595544945155929465718", - "61522002152909727151548320" + "1008729192984858443929222630", + "247672427924142791215094411", + "283211977915985916637922918" ], - "mAssetSupply": "136720768283657917709012320" + "mAssetSupply": "1535790626498085789656166946" }, { - "type": "redeemBassets", - "inputQtys": [ - "18059233398036824588288", - "3730205104249181306880", - "8328462786207563120640" - ], - "expectedQty": "30438100886740787584760", - "swapFee": "18273824826940636933", + "type": "mint", + "inputIndex": 1, + "inputQty": "3379768188458097325375488", + "expectedQty": "3426723634464088078635994", "reserves": [ - "16618837509192384484770980", - "58775865339840906748158838", - "61513673690123519588427680" - ], - "mAssetSupply": "136690330182771176921427560" + "1008729192984858443929222630", + "251052196112600888540469899", + "283211977915985916637922918" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1015452138593846296576", - "671737288113920409600", - "300139239781611601920" + "type": "redeemMasset", + "inputQty": "2378009857554747108202905", + "expectedQtys": [ + "1557966023398432753369677", + "387746081270459834181769", + "437416347302240214798347" ], - "expectedQty": "2004112503950057769284", - "swapFee": "1203189416019646449", + "redemptionFee": "713402957266424132460", "reserves": [ - "16617822057053790638474404", - "58775193602552792827749238", - "61513373550883737976825760" + "1007171226961460011175852953", + "250664450031330428706288130", + "282774561568683676423124571" ], - "mAssetSupply": "136688326070267226863658276" + "mAssetSupply": "1536840053677952397050732495" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "256700836956974050443264", - "outputIndex": 0, - "expectedQty": "250052327731745514118684", - "swapFee": "153328097745692550607", + "type": "redeem", + "inputIndex": 0, + "inputQty": "16056917518138178663350272", + "expectedQty": "16207182859802799856012051", + "swapFee": "9634150510882907198010", "reserves": [ - "16367769729322045124355720", - "59031894439509766878192502", - "61513373550883737976825760" + "990964044101657211319840902", + "250664450031330428706288130", + "282774561568683676423124571" ], - "mAssetSupply": "136688479398364972556208883", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1520792770310325101294580233" }, { "type": "redeemMasset", - "inputQty": "26435696754280588902", + "inputQty": "27168464515574838748774", "expectedQtys": [ - "3164594346158865709", - "11413405887037571690", - "11893182600409666651" + "17697936959191214149448", + "4476694851816171220421", + "5050159381758671792690" ], - "redemptionFee": "7930709026284176", + "redemptionFee": "8150539354672451624", "reserves": [ - "16367766564727698965490011", - "59031883026103879840620812", - "61513361657701137567159109" + "990946346164698020105691454", + "250659973336478612535067709", + "282769511409301917751331881" ], - "mAssetSupply": "136688452970598927301904157" + "mAssetSupply": "1520765609996348881128283083" }, { "type": "mintMulti", "inputQtys": [ - "20735118847750348734464", - "24933008610611781697536", - "24525195313055421956096" + "8856585140319115280384", + "147625422624470088024064", + "323711754159670991781888" ], - "expectedQty": "70405288751994256077785", + "expectedQty": "485190596809741244177069", "reserves": [ - "16388501683575449314224475", - "59056816034714491622318348", - "61537886853014192989115205" + "990955202749838339220971838", + "250807598759103082623091773", + "283093223163461588743113769" ], - "mAssetSupply": "136758858259350921557981942" + "mAssetSupply": "1521250800593158622372460152" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "36848589853943222272", - "outputIndex": 0, - "expectedQty": "35865729398378244625", - "swapFee": "21998568821780914", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9764211110922888291549184", + "expectedQty": "9853602237379269557702428", + "swapFee": "5858526666553732974929", "reserves": [ - "16388465817846050935979850", - "59056816034714491622318348", - "61537923701604046932337477" + "981101600512459069663269410", + "250807598759103082623091773", + "283093223163461588743113769" ], - "mAssetSupply": "136758858281349490379762856", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1511492448008902287813885897" }, { "type": "mintMulti", "inputQtys": [ - "37194548958824696381440", - "50492645048442750500864", - "71570909449996300451840" + "2035303318131750656", + "61066956945946368", + "1534628067324598016" ], - "expectedQty": "159472840747451943229014", + "expectedQty": "3626743460982537132", "reserves": [ - "16425660366804875632361290", - "59107308679762934372819212", - "61609494611054043232789317" + "981101602547762387795020066", + "250807598820170039569038141", + "283093224698089656067711785" ], - "mAssetSupply": "136918331122096942322991870" + "mAssetSupply": "1511492451635645748796423029" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "133824976120158810537984", - "expectedQty": "130894855434748614552892", - "swapFee": "80294985672095286322", - "reserves": [ - "16294765511370127017808398", - "59107308679762934372819212", - "61609494611054043232789317" + "type": "redeemBassets", + "inputQtys": [ + "1020047367098864238592", + "789571688108795232256", + "808842410581557116928" ], - "mAssetSupply": "136784586440962455607740208" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "292263279974477955072", - "outputIndex": 1, - "expectedQty": "291967334095114813218", - "swapFee": "174473444828160319", + "expectedQty": "2626483958752599984089", + "swapFee": "1576836477137842696", "reserves": [ - "16294765511370127017808398", - "59107016712428839258005994", - "61609786874334017710744389" + "981100582500395288930781474", + "250806809248481930773805885", + "283092415855679074510594857" ], - "mAssetSupply": "136784586615435900435900527", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1511489825151686996196438940" }, { - "type": "redeemMasset", - "inputQty": "51800246073619196883763", - "expectedQtys": [ - "6168967295374434338408", - "22377078870616051335572", - "23324592184990454398957" - ], - "redemptionFee": "15540073822085759065", + "type": "redeem", + "inputIndex": 1, + "inputQty": "20660819029723642331136", + "expectedQty": "20385710244310854323647", + "swapFee": "12396491417834185398", "reserves": [ - "16288596544074752583469990", - "59084639633558223206670422", - "61586462282149027256345432" + "981100582500395288930781474", + "250786423538237619919482238", + "283092415855679074510594857" ], - "mAssetSupply": "136732801909436103324775829" + "mAssetSupply": "1511469176729148690388293202" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "236841953881998210629632", - "expectedQty": "231544195116461358252579", - "swapFee": "142105172329198926377", + "type": "redeemBassets", + "inputQtys": [ + "77966954371689637478400", + "134944386452445447847936", + "95020389705388218384384" + ], + "expectedQty": "309820808021849274001302", + "swapFee": "186004087265468845708", "reserves": [ - "16057052348958291225217411", - "59084639633558223206670422", - "61586462282149027256345432" + "981022615546023599293303074", + "250651479151785174471634302", + "282997395465973686292210473" ], - "mAssetSupply": "136496102060726434313072574" + "mAssetSupply": "1511159355921126841114291900" }, { "type": "mintMulti", "inputQtys": [ - "67800680753681781489664", - "353743790768546104999936", - "170406215712061226221568" + "6385787034751128576", + "13294915412677095424", + "11779813826399676416" ], - "expectedQty": "590937438336501364926257", + "expectedQty": "31682012782581122761", "reserves": [ - "16124853029711973006707075", - "59438383424326769311670358", - "61756868497861088482567000" + "981022621931810634044431650", + "250651492446700587148729726", + "282997407245787512691886889" ], - "mAssetSupply": "137087039499062935677998831" + "mAssetSupply": "1511159387603139623695414661" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "153737961449803374133248", - "expectedQty": "152949828149220597389084", + "inputIndex": 0, + "inputQty": "81264838823278901460992", + "expectedQty": "80484515463664152202245", "reserves": [ - "16124853029711973006707075", - "59438383424326769311670358", - "61910606459310891856700248" + "981103886770633912945892642", + "250651492446700587148729726", + "282997407245787512691886889" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "337288827271081920", - "expectedQty": "335556336573075626", + "inputIndex": 0, + "inputQty": "35308643391023326120902656", + "expectedQty": "34960615804623049434459709", "reserves": [ - "16124853029711973006707075", - "59438383424326769311670358", - "61910606796599719127782168" + "1016412530161657239066795298", + "250651492446700587148729726", + "282997407245787512691886889" ] }, - { - "type": "redeemMasset", - "inputQty": "1793493743290064966359449", - "expectedQtys": [ - "210661244906792857301837", - "776525765806599665236438", - "808823837133578570905071" - ], - "redemptionFee": "538048122987019489907", - "reserves": [ - "15914191784805180149405238", - "58661857658520169646433920", - "61101782959466140556877097" - ], - "mAssetSupply": "135447033967601414901593999" - }, { "type": "mint", - "inputIndex": 2, - "inputQty": "30363532487571722240", - "expectedQty": "30207569543792226371", + "inputIndex": 1, + "inputQty": "48949779622858544119808", + "expectedQty": "49633044727385865901609", "reserves": [ - "15914191784805180149405238", - "58661857658520169646433920", - "61101813322998628128599337" + "1016412530161657239066795298", + "250700442226323445692849534", + "282997407245787512691886889" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2360687950605993025470464", - "expectedQty": "2371076418660394620306067", - "swapFee": "1416412770363595815282", + "type": "redeemBassets", + "inputQtys": [ + "1861720044119178153558016", + "2166921280639548587507712", + "2134005545571640932302848" + ], + "expectedQty": "6196366470659247230155820", + "swapFee": "3720051913543674542819", "reserves": [ - "15914191784805180149405238", - "58661857658520169646433920", - "58730736904338233508293270" + "1014550810117538060913237282", + "248533520945683897105341822", + "280863401700215871759584041" ], - "mAssetSupply": "133087792637335329264165188" + "mAssetSupply": "1540053754497294475917822404" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "67293271522198104834048", - "expectedQty": "65815340219241363507185", - "swapFee": "40375962913318862900", + "type": "redeemMasset", + "inputQty": "1067303281471986483383500", + "expectedQtys": [ + "702903100411067375642562", + "172189485915014297633526", + "194588337891336612769434" + ], + "redemptionFee": "320190984441595945015", "reserves": [ - "15848376444585938785898053", - "58661857658520169646433920", - "58730736904338233508293270" + "1013847907017126993537594720", + "248361331459768882807708296", + "280668813362324535146814607" ], - "mAssetSupply": "133020539741776044478194040" + "mAssetSupply": "1538986771406806931030383919" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "281860657860329714221056", - "expectedQty": "283054126704795449488039", - "swapFee": "169116394716197828532", + "type": "mint", + "inputIndex": 2, + "inputQty": "4710009995826634752", + "expectedQty": "4759255842868078510", "reserves": [ - "15848376444585938785898053", - "58378803531815374196945881", - "58730736904338233508293270" - ], - "mAssetSupply": "132738848200310430961801516" + "1013847907017126993537594720", + "248361331459768882807708296", + "280668818072334530973449359" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6668339533909736", - "42778647686112136", - "28067570113669072" + "51099114728972779520", + "34427393387811831808", + "93490572857628278784" ], - "expectedQty": "77318754364983051", - "swapFee": "46419104081438", + "expectedQty": "179961049064461956401", "reserves": [ - "15848376437917599251988317", - "58378803489036726510833745", - "58730736876270663394624198" + "1013847958116241722510374240", + "248361365887162270619540104", + "280668911562907388601728143" ], - "mAssetSupply": "132738848122991676596818465" + "mAssetSupply": "1538986956127111838360418830" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "48374640194243272", - "outputIndex": 2, - "expectedQty": "49641842673424549", - "swapFee": "29658319139320", + "inputIndex": 2, + "inputQty": "829642579974673406099456", + "outputIndex": 1, + "expectedQty": "826027657504097568590277", + "swapFee": "502970614973315330015", "reserves": [ - "15848376486292239446231589", - "58378803489036726510833745", - "58730736826628820721199649" + "1013847958116241722510374240", + "247535338229658173050949827", + "281498554142882062007827599" ], - "mAssetSupply": "132738848123021334915957785", + "mAssetSupply": "1538987459097726811675748845", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1194720875023549541122048", - "expectedQty": "1199658211377411529358671", - "swapFee": "716832525014129724673", + "inputQty": "10705225911613679206400", + "expectedQty": "10548127153569271435931", + "swapFee": "6423135546968207523", "reserves": [ - "15848376486292239446231589", - "57179145277659314981475074", - "58730736826628820721199649" + "1013847958116241722510374240", + "247524790102504603779513896", + "281498554142882062007827599" ], - "mAssetSupply": "131544844080522799504560410" + "mAssetSupply": "1538976760294950744964749968" }, { - "type": "mintMulti", - "inputQtys": [ - "101170277937744011329536", - "88608574149068758974464", - "144978782440554787504128" - ], - "expectedQty": "335794297982212236638949", + "type": "mint", + "inputIndex": 1, + "inputQty": "263885646837426814976", + "expectedQty": "267655324061462829306", "reserves": [ - "15949546764229983457561125", - "57267753851808383740449538", - "58875715609069375508703777" - ], - "mAssetSupply": "131880638378505011741199359" + "1013847958116241722510374240", + "247525053988151441206328872", + "281498554142882062007827599" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1896484826897186681782272", - "2004388344569198681260032", - "345168999773287691059200" - ], - "expectedQty": "4279234527532745980571539", - "swapFee": "2569082165819139071785", + "type": "mint", + "inputIndex": 1, + "inputQty": "9848641747892442234880", + "expectedQty": "9989325623688410968255", "reserves": [ - "14053061937332796775778853", - "55263365507239185059189506", - "58530546609296087817644577" - ], - "mAssetSupply": "127601403850972265760627820" + "1013847958116241722510374240", + "247534902629899333648563752", + "281498554142882062007827599" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "13453220192712726151168", + "expectedQty": "13592778093686302175948", + "reserves": [ + "1013847958116241722510374240", + "247534902629899333648563752", + "281512007363074774733978767" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "1573563768693730050048", - "expectedQty": "1564611897567747070795", + "inputQty": "465079180624690241601536", + "expectedQty": "469893237206849421274786", "reserves": [ - "14053061937332796775778853", - "55263365507239185059189506", - "58532120173064781547694625" + "1013847958116241722510374240", + "247534902629899333648563752", + "281977086543699464975580303" ] }, { "type": "redeemMasset", - "inputQty": "4683239009938144", + "inputQty": "1360506447208641671987", "expectedQtys": [ - "515615776907074", - "2027648014901081", - "2147580701745709" + "895718934889250909784", + "218693244442226894137", + "249122379347079767398" ], - "redemptionFee": "1404971702981", + "redemptionFee": "408151934162592501", "reserves": [ - "14053061936817180998871779", - "55263365505211537044288425", - "58532120170917200845948916" + "1013847062397306833259464456", + "247534683936654891421669615", + "281976837421320117895812905" ], - "mAssetSupply": "127602968458187999469463452" + "mAssetSupply": "1539469143192903756082918777" }, { - "type": "redeemMasset", - "inputQty": "56226824815629989576704", - "expectedQtys": [ - "6190467302396338484268", - "24343880267411095881221", - "25783788450309872239596" - ], - "redemptionFee": "16868047444688996873", + "type": "swap", + "inputIndex": 2, + "inputQty": "1415103156392742134743040", + "outputIndex": 0, + "expectedQty": "1443420788469419629704586", + "swapFee": "857775912609697869322", "reserves": [ - "14046871469514784660387511", - "55239021624944125948407204", - "58506336382466890973709320" + "1012403641608837413629759870", + "247534683936654891421669615", + "283391940577712860030555945" ], - "mAssetSupply": "127546758501419814168883621" + "mAssetSupply": "1539470000968816365780788099", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "1368758212235683956785152", - "expectedQty": "1401485533396094557812632", + "inputQty": "673318931050242304", + "expectedQty": "666491240025634071", "reserves": [ - "15415629681750468617172663", - "55239021624944125948407204", - "58506336382466890973709320" + "1012403642282156344680002174", + "247534683936654891421669615", + "283391940577712860030555945" ] }, { - "type": "redeemMasset", - "inputQty": "108455652846173696819", - "expectedQtys": [ - "12961871796125194665", - "46446439829411493218", - "49193685052532926597" - ], - "redemptionFee": "32536695853852109", + "type": "redeem", + "inputIndex": 1, + "inputQty": "11413599143084584599552", + "expectedQty": "11246531452648001665007", + "swapFee": "6848159485850750759", "reserves": [ - "15415616719878672491977998", - "55238975178504296536913986", - "58506287188781838440782723" + "1012403642282156344680002174", + "247523437405202243420004608", + "283391940577712860030555945" ], - "mAssetSupply": "128948135611699758406851543" + "mAssetSupply": "1539458594884324007072573377" }, { "type": "mint", "inputIndex": 0, - "inputQty": "6750662822121233711104", - "expectedQty": "6897614692277788834978", + "inputQty": "1854289763476061", + "expectedQty": "1835485959289181", "reserves": [ - "15422367382700793725689102", - "55238975178504296536913986", - "58506287188781838440782723" + "1012403642284010634443478235", + "247523437405202243420004608", + "283391940577712860030555945" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3672650112978031132803072", - "outputIndex": 2, - "expectedQty": "3670186914485210910470470", - "swapFee": "2193047011472816275382", + "type": "redeemBassets", + "inputQtys": [ + "19783072487984181419180032", + "4480151868589332376846336", + "13903319534677611637637120" + ], + "expectedQty": "38174440129943419413602291", + "swapFee": "22918415127042277014369", "reserves": [ - "15422367382700793725689102", - "58911625291482327669717058", - "54836100274296627530312253" + "992620569796026453024298203", + "243043285536612911043158272", + "269488621043035248392918825" ], - "mAssetSupply": "128957226273403509011961903", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1501284154756216073618260267" }, { "type": "mintMulti", "inputQtys": [ - "74088891528682", - "224724817302616", - "122730151871891" + "2224314775353470916493312", + "1221013619479513818726400", + "3956774156718211380281344" ], - "expectedQty": "421449151174107", + "expectedQty": "7439255807706507092407804", "reserves": [ - "15422367382774882617217784", - "58911625291707052487019674", - "54836100274419357682184144" + "994844884571379923940791515", + "244264299156092424861884672", + "273445395199753459773200169" ], - "mAssetSupply": "128957226273824958163136010" + "mAssetSupply": "1508723410563922580710668071" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "1473017080097690871660544", - "outputIndex": 0, - "expectedQty": "1430215825837280691626528", - "swapFee": "879780189326771889644", - "reserves": [ - "13992151556937601925591256", - "58911625291707052487019674", - "56309117354517048553844688" - ], - "mAssetSupply": "128958106054014284935025654", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "180602025652443464859648", - "expectedQty": "175666641676366804168041", - "swapFee": "108361215391466078915", + "inputQty": "3294784668169658070728704", + "expectedQty": "3329342163517918555109287", "reserves": [ - "13816484915261235121423215", - "58911625291707052487019674", - "56309117354517048553844688" - ], - "mAssetSupply": "128777612389577232936244921" + "994844884571379923940791515", + "244264299156092424861884672", + "276740179867923117843928873" + ] }, { "type": "redeemMasset", - "inputQty": "6967944456067572", + "inputQty": "182744273205278417302323", "expectedQtys": [ - "747362961091713", - "3186654709267145", - "3045879537424804" + "120199288281136105572596", + "29512535437826057988744", + "33436340855538937799082" ], - "redemptionFee": "2090383336820", + "redemptionFee": "54823281961583525190", "reserves": [ - "13816484914513872160331502", - "58911625288520397777752529", - "56309117351471169016419884" + "994724685283098787835218919", + "244234786620654598803895928", + "276706743527067578906129791" ], - "mAssetSupply": "128777612382611378863514169" + "mAssetSupply": "1511870063277517182432000225" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "24853101995244179456", - "expectedQty": "24971698884575453426", - "swapFee": "14911861197146507", + "type": "mintMulti", + "inputQtys": [ + "55480350240961149796352", + "73194398747909557321728", + "6102460654972220473344" + ], + "expectedQty": "135308948415425238052562", "reserves": [ - "13816484914513872160331502", - "58911625288520397777752529", - "56309092379772284440966458" + "994780165633339748985015271", + "244307981019402508361217656", + "276712845987722551126603135" ], - "mAssetSupply": "128777587544421244816481220" + "mAssetSupply": "1512005372225932607670052787" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "78252761369792049315840", - "expectedQty": "77796650614039202315411", + "type": "swap", + "inputIndex": 0, + "inputQty": "3466163577814976582123520", + "outputIndex": 1, + "expectedQty": "3380046093068356488641854", + "swapFee": "2058534355467044623385", "reserves": [ - "13816484914513872160331502", - "58989878049890189827068369", - "56309092379772284440966458" - ] + "998246329211154725567138791", + "240927934926334151872575802", + "276712845987722551126603135" + ], + "mAssetSupply": "1512007430760288074714676172", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "7015403762504864083476480", - "expectedQty": "6656323807157429398100773", - "swapFee": "4209242257502918450085", + "inputQty": "1475218640174523323777024", + "expectedQty": "1489677323081315561611687", + "swapFee": "885131184104713994266", "reserves": [ - "7160161107356442762230729", - "58989878049890189827068369", - "56309092379772284440966458" + "996756651888073410005527104", + "240927934926334151872575802", + "276712845987722551126603135" ], - "mAssetSupply": "121844189674787922853770236" + "mAssetSupply": "1510533097251297656104893414" }, { "type": "mintMulti", "inputQtys": [ - "47814479630417770053632", - "66655533775609380470784", - "19275724483168340803584" + "35859054119102124", + "7879763775620582", + "46801700931281384" ], - "expectedQty": "137566863417578913266440", + "expectedQty": "90772071263036187", "reserves": [ - "7207975586986860532284361", - "59056533583665799207539153", - "56328368104255452781770042" + "996756651923932464124629228", + "240927934934213915648196384", + "276712846034524252057884519" ], - "mAssetSupply": "121981756538205501767036676" + "mAssetSupply": "1510533097342069727367929601" }, { - "type": "mintMulti", - "inputQtys": [ - "700037713738122412425216", - "877600899462148655153152", - "894416358516022153576448" - ], - "expectedQty": "2517642797656036278292864", + "type": "mint", + "inputIndex": 0, + "inputQty": "11833497081032596963459072", + "expectedQty": "11710685997337906989497952", "reserves": [ - "7908013300724982944709577", - "59934134483127947862692305", - "57222784462771474935346490" - ], - "mAssetSupply": "124499399335861538045329540" + "1008590149004965061088088300", + "240927934934213915648196384", + "276712846034524252057884519" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "250218065001297149952", - "141725411469136543744", - "44493057756931293184" - ], - "expectedQty": "456050645341335880010", - "swapFee": "273794664003203450", + "type": "mint", + "inputIndex": 0, + "inputQty": "178063211722428322414592", + "expectedQty": "176199036637316756447024", "reserves": [ - "7907763082659981647559625", - "59933992757716478726148561", - "57222739969713718004053306" - ], - "mAssetSupply": "124498943285216196709449530" + "1008768212216687489410502892", + "240927934934213915648196384", + "276712846034524252057884519" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "39854245193175851008", - "expectedQty": "40245009908797642157", - "swapFee": "23912547115905510", + "inputQty": "7338977330420630528", + "expectedQty": "7257043659490640643", + "swapFee": "4403386398252378", "reserves": [ - "7907763082659981647559625", - "59933992757716478726148561", - "57222699724703809206411149" + "1008768212216687489410502892", + "240927934934213915648196384", + "276712838777480592567243876" ], - "mAssetSupply": "124498903454883550649504032" + "mAssetSupply": "1522419975041471007091496427" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "19620430748705263452160", - "expectedQty": "21312638093570235724415", + "inputQty": "13480071945701274635206656", + "expectedQty": "13613118023650761715314715", + "swapFee": "8088043167420764781123", "reserves": [ - "7927383513408686911011785", - "59933992757716478726148561", - "57222699724703809206411149" - ] - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "2546317475296926819680256", - "outputIndex": 0, - "hardLimitError": true + "995155094193036727695188177", + "240927934934213915648196384", + "276712838777480592567243876" + ], + "mAssetSupply": "1508947991138937153221070894" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1517804081613381888", - "4709667364161606656", - "4997539432036086784" + "5194631271633593344", + "8814337567159872512", + "8766275188711513088" + ], + "expectedQty": "22940844685187857692", + "reserves": [ + "995155099387667999328781521", + "240927943748551482808068896", + "276712847543755781278756964" ], - "expectedQty": "11252547377951940281", - "swapFee": "6755581775836666", + "mAssetSupply": "1508948014079781838408928586" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "1012291288107269632", + "expectedQty": "1001341746449766033", + "swapFee": "607374772864361", "reserves": [ - "7927381995604605297629897", - "59933988048049114564541905", - "57222694727164377170324365" + "995155099387667999328781521", + "240927943748551482808068896", + "276712846542414034828990931" ], - "mAssetSupply": "124520204840429742933288166" + "mAssetSupply": "1508948013068097925074523315" }, { "type": "mint", "inputIndex": 2, - "inputQty": "364722995862828075712512", - "expectedQty": "360959848126284985593817", + "inputQty": "1581906322954633594535936", + "expectedQty": "1598125463182976848503361", "reserves": [ - "7927381995604605297629897", - "59933988048049114564541905", - "57587417723027205246036877" + "995155099387667999328781521", + "240927943748551482808068896", + "278294752865368668423526867" ] }, { - "type": "redeemMasset", - "inputQty": "955423857757340876", - "expectedQtys": [ - "60631542827723627", - "458397257150772200", - "440449821384624269" - ], - "redemptionFee": "286627157327202", + "type": "mint", + "inputIndex": 1, + "inputQty": "289346954232033066352640", + "expectedQty": "293557116221773363500416", "reserves": [ - "7927381934973062469906270", - "59933987589651857413769705", - "57587417282577383861412608" - ], - "mAssetSupply": "124881163733418797318868309" + "995155099387667999328781521", + "241217290702783515874421536", + "278294752865368668423526867" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "452638492588848753672192", - "expectedQty": "447926099720616118803835", + "inputQty": "1350321089783438589820928", + "expectedQty": "1363980354201329447707659", "reserves": [ - "7927381934973062469906270", - "59933987589651857413769705", - "58040055775166232615084800" + "995155099387667999328781521", + "241217290702783515874421536", + "279645073955152107013347795" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "578127280822173493624832", - "expectedQty": "571758896959911262358837", + "type": "redeemBassets", + "inputQtys": [ + "202535150860856929026048", + "192610770628976933076992", + "15636519761173001797632" + ], + "expectedQty": "411678944015225923242670", + "swapFee": "247155659805018565084", "reserves": [ - "7927381934973062469906270", - "60512114870474030907394537", - "58040055775166232615084800" - ] + "994952564236807142399755473", + "241024679932154538941344544", + "279629437435390934011550163" + ], + "mAssetSupply": "1511791997057688778810992081" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "308844112032324980310016", - "expectedQty": "311905254104202905837220", - "swapFee": "185306467219394988186", + "inputIndex": 0, + "inputQty": "256761910456912548200448", + "expectedQty": "259247543657155547667822", + "swapFee": "154057146274147528920", "reserves": [ - "7927381934973062469906270", - "60512114870474030907394537", - "57728150521062029709247580" + "994693316693149986852087651", + "241024679932154538941344544", + "279629437435390934011550163" ], - "mAssetSupply": "125592189924534219114709151" + "mAssetSupply": "1511535389204378140410320553" }, { - "type": "swap", + "type": "redeemBassets", + "inputQtys": [ + "1190875148606421598208", + "1702029492791976132608", + "832909973340698312704" + ], + "expectedQty": "3746814673915836248763", + "swapFee": "2249438467429959725", + "reserves": [ + "994692125818001380430489443", + "241022977902661746965211936", + "279628604525417593313237459" + ], + "mAssetSupply": "1511531642389704224574071790" + }, + { + "type": "redeem", "inputIndex": 2, - "inputQty": "392718126900974731657216", - "outputIndex": 1, - "expectedQty": "392727017166334102101475", - "swapFee": "233176157512392753869", + "inputQty": "3329282465607518571724800", + "expectedQty": "3293700969315796280220116", + "swapFee": "1997569479364511143034", "reserves": [ - "7927381934973062469906270", - "60119387853307696805293062", - "58120868647963004440904796" + "994692125818001380430489443", + "241022977902661746965211936", + "276334903556101797033017343" ], - "mAssetSupply": "125592423100691731507463020", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1508204357493576070513490024" }, { "type": "redeemMasset", - "inputQty": "132086407201826380185", + "inputQty": "364167208031882525120921", "expectedQtys": [ - "8334780416239908162", - "63209001487044297238", - "61107775777116031072" + "240103791130764488254368", + "58179339357356207975571", + "66703109679299993556498" ], - "redemptionFee": "39625922160547914", + "redemptionFee": "109250162409564757536", "reserves": [ - "7927373600192646229998108", - "60119324644306209760995824", - "58120807540187227324873724" + "994452022026870615942235075", + "240964798563304390757236365", + "276268200446422497039460845" ], - "mAssetSupply": "125592291053910451841630749" + "mAssetSupply": "1507840299535706597553126639" }, { - "type": "mintMulti", - "inputQtys": [ - "329519639034037824", - "151726408753347136", - "351029252483160896" + "type": "redeemMasset", + "inputQty": "9714352084726991057164697", + "expectedQtys": [ + "6404895093458804240321300", + "1551964520991938986651122", + "1779340583884068873725535" ], - "expectedQty": "855790479672858042", + "redemptionFee": "2914305625418097317149", "reserves": [ - "7927373929712285264035932", - "60119324796032618514342960", - "58120807891216479808034620" + "988047126933411811701913775", + "239412834042312451770585243", + "274488859862538428165735310" ], - "mAssetSupply": "125592291909700931514488791" + "mAssetSupply": "1498128861756605024593279091" }, { "type": "mint", "inputIndex": 1, - "inputQty": "93369373939221348352", - "expectedQty": "92343273060708446821", + "inputQty": "10371490391380750", + "expectedQty": "10522245364166147", "reserves": [ - "7927373929712285264035932", - "60119418165406557735691312", - "58120807891216479808034620" + "988047126933411811701913775", + "239412834052683942161965993", + "274488859862538428165735310" ] }, { "type": "mintMulti", "inputQtys": [ - "11080363533886117888", - "14910919427272450048", - "823288810405026048" + "6518195686804022099968", + "4980497866919053885440", + "1154691934230477930496" ], - "expectedQty": "27612508736861097439", + "expectedQty": "12670827825789906187433", "reserves": [ - "7927385010075819150153820", - "60119433076325985008141360", - "58120808714505290213060668" + "988053645129098615724013743", + "239417814550550861215851433", + "274490014554472658643665806" ], - "mAssetSupply": "125592411865482729084033051" + "mAssetSupply": "1498141532594953059863632671" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "14527200909225483831345152", + "expectedQty": "14667872401770376544364026", + "reserves": [ + "988053645129098615724013743", + "239417814550550861215851433", + "289017215463698142475010958" + ] }, { "type": "redeemBassets", "inputQtys": [ - "68264443735905188970496", - "165833169336398136737792", - "82216894558447505244160" + "20222555331711733707309056", + "26953160977462647104471040", + "20969739332399345409458176" ], - "expectedQty": "319638830951757008480130", - "swapFee": "191898437633634385719", + "expectedQty": "68574993144039917451365739", + "swapFee": "41169697705046978658014", "reserves": [ - "7859120566339913961183324", - "59953599906989586871403568", - "58038591819946842707816508" + "967831089797386882016704687", + "212464653573088214111380393", + "268047476131298797065552782" ], - "mAssetSupply": "125272773034530972075552921" + "mAssetSupply": "1444234411852683518956630958" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "826357078082123613601792", + "expectedQty": "841291017081456328174553", + "reserves": [ + "967831089797386882016704687", + "213291010651170337724982185", + "268047476131298797065552782" + ] }, { "type": "redeemBassets", "inputQtys": [ - "112606992270395103510528", - "402191707800295230668800", - "350949863918884737777664" + "1478184387522787853467648", + "3244241082573138417418240", + "1244159816329708510904320" ], - "expectedQty": "867628790642102869918390", - "swapFee": "520889808270223856264", + "expectedQty": "6022352630161271014191382", + "swapFee": "3615580926652754261071", "reserves": [ - "7746513574069518857672796", - "59551408199189291640734768", - "57687641956027957970038844" + "966352905409864094163237039", + "210046769568597199307563945", + "266803316314969088554648462" ], - "mAssetSupply": "124405144243888869205634531" + "mAssetSupply": "1439053350239603704270614129" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "134122201436478815338496", - "expectedQty": "135550368319784013883337", - "swapFee": "80473320861887289203", + "inputQty": "396421227036410871021568", + "expectedQty": "388953370825839044526526", + "swapFee": "237852736221846522612", "reserves": [ - "7746513574069518857672796", - "59415857830869507626851431", - "57687641956027957970038844" + "966352905409864094163237039", + "209657816197771360263037419", + "266803316314969088554648462" ], - "mAssetSupply": "124271102515773252277585238" + "mAssetSupply": "1438657166865303515246115173" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "12618670493840525230080", - "6952983326559401148416", - "15762734947959891296256" + "195326437231074037727232", + "276803696335613528637440", + "97224922251186329878528" ], - "expectedQty": "36222110292934302968964", + "expectedQty": "573339683453671636763793", + "swapFee": "344210336273967362475", "reserves": [ - "7759132244563359382902876", - "59422810814196067027999847", - "57703404690975917861335100" + "966157578972633020125509807", + "209381012501435746734399979", + "266706091392717902224769934" ], - "mAssetSupply": "124307324626066186580554202" + "mAssetSupply": "1438083827181849843609351380" }, { - "type": "redeemMasset", - "inputQty": "44241550947660973526220", - "expectedQtys": [ - "2760682548083543870651", - "21142508157115814479022", - "20530747160160546202324" - ], - "redemptionFee": "13272465284298292057", + "type": "swap", + "inputIndex": 1, + "inputQty": "1973117769178174", + "outputIndex": 0, + "expectedQty": "2031592976091233", + "swapFee": "1205976262903", "reserves": [ - "7756371562015275839032225", - "59401668306038951213520825", - "57682873943815757315132776" + "966157578970601427149418574", + "209381012503408864503578153", + "266706091392717902224769934" ], - "mAssetSupply": "124263096347583809905320039" + "mAssetSupply": "1438083827181851049585614283", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6313485598312793899008", - "1271210731586709618688", - "5289682003144250228736" + "264447540222228791296", + "212346341257674948608", + "426169569685367554048" ], - "expectedQty": "13369577078871096962592", + "expectedQty": "908414960174362352981", + "swapFee": "545376201825712839", "reserves": [ - "7762685047613588632931233", - "59402939516770537923139513", - "57688163625818901565361512" + "966157314523061204920627278", + "209380800157067606828629545", + "266705665223148216857215886" ], - "mAssetSupply": "124276465924662681002282631" + "mAssetSupply": "1438082918766890875223261302" }, { - "type": "redeemBassets", - "inputQtys": [ - "1648182613853673728", - "1122848963410188800", - "570780752077326784" + "type": "redeemMasset", + "inputQty": "664439840130898892475596", + "expectedQtys": [ + "446261350583184333181238", + "96711536785711018924508", + "123189493658620789623265" ], - "expectedQty": "3470833596124755189", - "swapFee": "2083750407919604", + "redemptionFee": "199331952039269667742", "reserves": [ - "7762683399430974779257505", - "59402938393921574512950713", - "57688163055038149488034728" + "965711053172478020587446040", + "209284088620281895809705037", + "266582475729489596067592621" ], - "mAssetSupply": "124276462453829084877527442" + "mAssetSupply": "1437418678258712015600453448" }, { "type": "redeemMasset", - "inputQty": "258308630500690878267392", + "inputQty": "3428283093270896503160832", "expectedQtys": [ - "16129897229950679686528", - "123431968321841179952286", - "119868876982746894053571" + "2302556455800671267679692", + "498998564597482757566939", + "635615796751818142011503" ], - "redemptionFee": "77492589150207263480", + "redemptionFee": "1028484927981268950948", "reserves": [ - "7746553502201024099570977", - "59279506425599733332998427", - "57568294178055402593981157" + "963408496716677349319766348", + "208785090055684413052138098", + "265946859932737777925581118" ], - "mAssetSupply": "124018231315917544206523530" + "mAssetSupply": "1433991423650369100366243564" }, { - "type": "redeemBassets", - "inputQtys": [ - "45299964227441311744", - "100922623341420527616", - "25269414661925990400" + "type": "redeem", + "inputIndex": 0, + "inputQty": "81671754673820864", + "expectedQty": "82550762077832591", + "swapFee": "49003052804292", + "reserves": [ + "963408496634126587241933757", + "208785090055684413052138098", + "265946859932737777925581118" + ], + "mAssetSupply": "1433991423568746348745226992" + }, + { + "type": "redeemMasset", + "inputQty": "801408259105201431825612", + "expectedQtys": [ + "538254196190374409481738", + "116647768020604933673698", + "148583922419788217755447" ], - "expectedQty": "174159472576048560485", - "swapFee": "104558418596787208", + "redemptionFee": "240422477731560429547", "reserves": [ - "7746508202236796658259233", - "59279405502976391912470811", - "57568268908640740667990757" + "962870242437936212832452019", + "208668442287663808118464400", + "265798276010317989707825671" ], - "mAssetSupply": "124018057156444968157963045" + "mAssetSupply": "1433190255732118878873830927" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "570135109495811653763072", - "outputIndex": 1, - "expectedQty": "569965697657188941552445", - "swapFee": "338419692922855440386", + "type": "redeemMasset", + "inputQty": "784524882845686063693824", + "expectedQtys": [ + "526914722190328989800171", + "114190333704263539825409", + "145453684816386353926965" + ], + "redemptionFee": "235357464853705819108", "reserves": [ - "7746508202236796658259233", - "58709439805319202970918366", - "58138404018136552321753829" + "962343327715745883842651848", + "208554251953959544578638991", + "265652822325501603353898706" ], - "mAssetSupply": "124018395576137891013403431", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1432405966206738046515956211" }, { "type": "mintMulti", "inputQtys": [ - "2041272584147709", - "2632113737049782", - "2106998297240376" + "374332139865045551022080", + "155326962359040875692032", + "600581463628660336492544" ], - "expectedQty": "6911567430634226", + "expectedQty": "1135203788207789401246973", "reserves": [ - "7746508204278069242406942", - "58709439807951316707968148", - "58138404020243550618994205" + "962717659855610929393673928", + "208709578916318585454331023", + "266253403789130263690391250" ], - "mAssetSupply": "124018395583049458444037657" + "mAssetSupply": "1433541169994945835917203184" }, { "type": "redeemMasset", - "inputQty": "2411341551546806272", + "inputQty": "7730365006648634572", "expectedQtys": [ - "150573414382991197", - "1141169747101530157", - "1130070190240213651" + "5189893682219115568", + "1125127927121301510", + "1435339680381254919" + ], + "redemptionFee": "2319109501994590", + "reserves": [ + "962717654665717247174558360", + "208709577791190658333029513", + "266253402353790583309136331" ], - "redemptionFee": "723402465464041", + "mAssetSupply": "1433541162266899938770563202" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "117370252245170841708396544", + "outputIndex": 0, + "expectedQty": "118988193431347765960927858", + "swapFee": "70850091484930681946419", "reserves": [ - "7746508053704654859415745", - "58709438666781569606437991", - "58138402890173360378780554" + "843729461234369481213630502", + "208709577791190658333029513", + "383623654598961425017532875" ], - "mAssetSupply": "124018393172431309362695426" + "mAssetSupply": "1433612012358384869452509621", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "298519608054450732662784", - "expectedQty": "295289060445949480060000", + "inputQty": "42300005652108588651380736", + "expectedQty": "42341072242736847941510240", "reserves": [ - "7746508053704654859415745", - "58709438666781569606437991", - "58436922498227811111443338" + "843729461234369481213630502", + "208709577791190658333029513", + "425923660251070013668913611" ] }, + { + "type": "mintMulti", + "inputQtys": [ + "859033392796363915264", + "378568268406566682624", + "383743796652685393920" + ], + "expectedQty": "1621543025206685052689", + "reserves": [ + "843730320267762277577545766", + "208709956359459064899712137", + "425924043994866666354307531" + ], + "mAssetSupply": "1475954706144146924079072550" + }, { "type": "mint", - "inputIndex": 1, - "inputQty": "67595923179583904", - "expectedQty": "66857246327993464", + "inputIndex": 0, + "inputQty": "683991863291460736", + "expectedQty": "679173942407060355", "reserves": [ - "7746508053704654859415745", - "58709438734377492786021895", - "58436922498227811111443338" + "843730320951754140869006502", + "208709956359459064899712137", + "425924043994866666354307531" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "26789032887146", - "26854174869838", - "17500323887282" + "561553485771344183296", + "4827802285428397047808", + "1986829294889228042240" ], - "expectedQty": "73069729213335", - "swapFee": "43868158423", + "expectedQty": "7450711270142837405857", "reserves": [ - "7746508053677865826528599", - "58709438734350638611152057", - "58436922498210310787556056" + "843730882505239912213189798", + "208714784161744493296759945", + "425926030824161555582349771" ], - "mAssetSupply": "124313682299661435441535555" + "mAssetSupply": "1475962157534591009323538762" }, { "type": "mintMulti", "inputQtys": [ - "3405696339437579776", - "464901004390288588800", - "347283218019036233728" + "38882056898884919904698368", + "45700659711947660572229632", + "5584922664286759883374592" ], - "expectedQty": "807045648755565510382", + "expectedQty": "90534944310466806166405700", "reserves": [ - "7746511459374205264108375", - "58709903635355028899740857", - "58437269781428329823789784" + "882612939404124832117888166", + "254415443873692153868989577", + "431510953488448315465724363" ], - "mAssetSupply": "124314489345310191007045937" + "mAssetSupply": "1566497101845057815489944462" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "125612120683995985870848", - "outputIndex": 1, - "expectedQty": "125541650746299781622648", - "swapFee": "74547965145935388904", + "type": "redeemMasset", + "inputQty": "1372211733989468356686643", + "expectedQtys": [ + "772914607403739961066882", + "222794618274960698762057", + "377879254105549810235812" + ], + "redemptionFee": "411663520196840507005", "reserves": [ - "7746511459374205264108375", - "58584361984608729118118209", - "58562881902112325809660632" + "881840024796721092156821284", + "254192649255417193170227520", + "431133074234342765655488551" ], - "mAssetSupply": "124314563893275336942434841", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1565125301774588543973764824" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "35389330085868778318462976", + "expectedQty": "35739292996679900245793578", + "reserves": [ + "881840024796721092156821284", + "289581979341285971488690496", + "431133074234342765655488551" + ] }, { "type": "redeemBassets", "inputQtys": [ - "168078116360216674304", - "178060319494895468544", - "183997029707353063424" + "293253098109636406411264", + "3937665722484871655325696", + "365928709457356733284352" ], - "expectedQty": "541310707807899328705", - "swapFee": "324981413532859312", + "expectedQty": "4629917917738494255110912", + "swapFee": "2779618521756150243212", "reserves": [ - "7746343381257845047434071", - "58584183924289234222649665", - "58562697905082618456597208" + "881546771698611455750410020", + "285644313618801099833364800", + "430767145524885408922204199" ], - "mAssetSupply": "124314022582567529043106136" + "mAssetSupply": "1596234676853529949964447490" }, { - "type": "redeemMasset", - "inputQty": "28581604415616304807936", - "expectedQtys": [ - "1780462869077973480182", - "13465316351041285749177", - "13460377884268145655777" - ], - "redemptionFee": "8574481324684891442", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4807813092154404639866880", + "expectedQty": "4762240902173330294006620", + "swapFee": "2884687855292642783920", "reserves": [ - "7744562918388767073953889", - "58570718607938192936900488", - "58549237527198350310941431" + "881546771698611455750410020", + "280882072716627769539358180", + "430767145524885408922204199" ], - "mAssetSupply": "124285449552633237423189642" + "mAssetSupply": "1591429748449230837967364530" }, { "type": "redeemMasset", - "inputQty": "13508015299486388", + "inputQty": "37024603445761742890598", "expectedQtys": [ - "841468495817961", - "6363872952594281", - "6361538972886300" + "20503027542959846810223", + "6532759302306841749547", + "10018788489555567375066" ], - "redemptionFee": "4052404589845", + "redemptionFee": "11107381033728522867", "reserves": [ - "7744562917547298578135928", - "58570718601574319984306207", - "58549237520836811338055131" + "881526268671068495903599797", + "280875539957325462697608633", + "430757126736395853354829133" ], - "mAssetSupply": "124285449539129274528293099" + "mAssetSupply": "1591392734953166109952996799" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "24934908450412190236672", - "46155933895268514136064", - "450624424388329603072" + "38961717898587091763200", + "131601256699614971559936", + "293869432203843400105984" + ], + "expectedQty": "465873729844190634700843", + "reserves": [ + "881565230388967082995362997", + "281007141214025077669168569", + "431050996168599696754935117" ], - "expectedQty": "73282222846800287560218", - "swapFee": "43995731146768233476", + "mAssetSupply": "1591858608683010300587697642" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "3855616130217417375744", + "expectedQty": "3847283264913847983104", + "swapFee": "2313369678130450425", "reserves": [ - "7719628009096886387899256", - "58524562667679051470170143", - "58548786896412423008452059" + "881565230388967082995362997", + "281007141214025077669168569", + "431047148885334782906952013" ], - "mAssetSupply": "124212167316282474240732881" + "mAssetSupply": "1591854755380249761300772323" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "13754706994063001600", - "expectedQty": "14998832946549306128", + "inputIndex": 1, + "inputQty": "149670017032534796271616", + "expectedQty": "151035877913998440925876", "reserves": [ - "7719641763803880450900856", - "58524562667679051470170143", - "58548786896412423008452059" + "881565230388967082995362997", + "281156811231057612465440185", + "431047148885334782906952013" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1083153138078668161024", - "1774689526806698524672", - "1919119470853669257216" - ], - "expectedQty": "4834585962646026093237", - "swapFee": "2902493073431674660", + "type": "mint", + "inputIndex": 2, + "inputQty": "3821017291874834818531328", + "expectedQty": "3826832198426704981697008", "reserves": [ - "7718558610665801782739832", - "58522787978152244771645471", - "58546867776941569339194843" + "881565230388967082995362997", + "281156811231057612465440185", + "434868166177209617725483341" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "176968612597501310009344", + "expectedQty": "177866288905433168839089", + "swapFee": "106181167558500786005", + "reserves": [ + "881387364100061649826523908", + "281156811231057612465440185", + "434868166177209617725483341" ], - "mAssetSupply": "124207347729152774763945772" + "mAssetSupply": "1595655761025160521914171868" }, { - "type": "redeemBassets", - "inputQtys": [ - "15069710773474536980480", - "935170646402117664768", - "16173377560816820158464" + "type": "redeemMasset", + "inputQty": "320336380625530598195", + "expectedQtys": [ + "176890118099223505986", + "56426792087998113125", + "87275906605743432322" ], - "expectedQty": "33356874764873966063109", - "swapFee": "20026140543250329835", + "redemptionFee": "96100914187659179", "reserves": [ - "7703488899892327245759352", - "58521852807505842653980703", - "58530694399380752519036379" + "881387187209943550603017922", + "281156754804265524467327060", + "434868078901303011982051019" ], - "mAssetSupply": "124173990854387900797882663" + "mAssetSupply": "1595655440784880810571232852" }, { - "type": "redeemBassets", - "inputQtys": [ - "3018054481252207558656", - "2082582026217424158720", - "1608322693801397977088" + "type": "redeemMasset", + "inputQty": "4448194857139506673352704", + "expectedQtys": [ + "2456298320132344036017665", + "783543117645842214970063", + "1211914295084955257810900" ], - "expectedQty": "6942651226084092628436", - "swapFee": "4168091590604818468", + "redemptionFee": "1334458457141852002005", "reserves": [ - "7700470845411075038200696", - "58519770225479625229821983", - "58529086076686951121059291" + "878930888889811206567000257", + "280373211686619682252356997", + "433656164606218056724240119" ], - "mAssetSupply": "124167048203161816705254227" + "mAssetSupply": "1591208580386198445749882153" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "5514640460417497917554688", - "expectedQty": "5450742427925940376815444", + "type": "mintMulti", + "inputQtys": [ + "5549523888683308426461184", + "5159312045201215406997504", + "2330431905817035397922816" + ], + "expectedQty": "13058211012535746284284011", "reserves": [ - "7700470845411075038200696", - "58519770225479625229821983", - "64043726537104449038613979" - ] + "884480412778494514993461441", + "285532523731820897659354501", + "435986596512035092122162935" + ], + "mAssetSupply": "1604266791398734192034166164" }, { "type": "swap", "inputIndex": 1, - "inputQty": "957183372276163200", - "outputIndex": 2, - "expectedQty": "958005851093288485", - "swapFee": "568121813984526", + "inputQty": "23379727000616464023552", + "outputIndex": 0, + "expectedQty": "23706246826500956163662", + "swapFee": "14152798863441249125", "reserves": [ - "7700470845411075038200696", - "58519771182662997505985183", - "64043725579098597945325494" + "884456706531668014037297779", + "285555903458821514123378053", + "435986596512035092122162935" ], - "mAssetSupply": "129617790631655878896054197", + "mAssetSupply": "1604266805551533055475415289", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "redeemMasset", + "inputQty": "89339397897559814753484", + "expectedQtys": [ + "49239393538378690624658", + "15897442355040523204422", + "24272206253371617712411" + ], + "redemptionFee": "26801819369267944426", + "reserves": [ + "884407467138129635346673121", + "285540006016466473600173631", + "435962324305781720504450524" + ], + "mAssetSupply": "1604177492955454864928606231" + }, + { + "type": "mintMulti", "inputQtys": [ - "110647621991716356096", - "131248396373534048256", - "164774529845122039808" + "2348168665130829824", + "17445987745658267648", + "4007802414625706496" ], - "expectedQty": "414261727096458361186", - "swapFee": "248706260013883346", + "expectedQty": "23950337071131381545", "reserves": [ - "7700360197789083321844600", - "58519639934266623971936927", - "64043560804568752823285686" + "884407469486298300477502945", + "285540023462454219258441279", + "435962328313584135130157020" ], - "mAssetSupply": "129617376369928782437693011" + "mAssetSupply": "1604177516905791936059987776" + }, + { + "type": "mintMulti", + "inputQtys": [ + "427521989021399121920", + "244718453344386220032", + "480833789195157241856" + ], + "expectedQty": "1153598347652203283882", + "reserves": [ + "884407897008287321876624865", + "285540268180907563644661311", + "435962809147373330287398876" + ], + "mAssetSupply": "1604178670504139588263271658" }, { "type": "redeemMasset", - "inputQty": "5020387353345860304896", + "inputQty": "41527208388384373761638", "expectedQtys": [ - "298163675259116953563", - "2265923991795980531097", - "2479814317212539140141" + "22887707969926762657132", + "7389534053106655817799", + "11282338720931272220369" ], - "redemptionFee": "1506116206003758091", + "redemptionFee": "12458162516515312128", "reserves": [ - "7700062034113824204891037", - "58517374010274827991405830", - "64041080990251540284145545" + "884385009300317395113967733", + "285532878646854456988843512", + "435951526808652399015178507" ], - "mAssetSupply": "129612357488691642581146206" + "mAssetSupply": "1604137155753913720404822148" }, { - "type": "redeemBassets", - "inputQtys": [ - "2217684883344656896", - "5349305149456928768", - "5983401245500022784" + "type": "redeemMasset", + "inputQty": "22352496301059684591206", + "expectedQtys": [ + "12319571374815114264577", + "3977501474306235175034", + "6072848243694094562745" ], - "expectedQty": "13640493562951682977", - "swapFee": "8189209663569151", + "redemptionFee": "6705748890317905377", "reserves": [ - "7700059816428940860234141", - "58517368660969678534477062", - "64041075006850294784122761" + "884372689728942579999703156", + "285528901145380150753668478", + "435945453960408704920615762" ], - "mAssetSupply": "129612343848198079629463229" + "mAssetSupply": "1604114809963361551038136319" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1504306252108666765312", - "474629496879264890880", - "5630724938842276626432" + "3651043045140521790996480", + "12600890649613529637715968", + "12645607428629286409469952" ], - "expectedQty": "7685539740900255994982", + "expectedQty": "29013497933134456204126091", + "swapFee": "17418549889814562459951", "reserves": [ - "7701564122681049526999453", - "58517843290466557799367942", - "64046705731789137060749193" + "880721646683802058208706676", + "272928010495766621115952510", + "423299846531779418511145810" ], - "mAssetSupply": "129620029387938979885458211" + "mAssetSupply": "1575101312030227094834010228" }, { - "type": "mintMulti", - "inputQtys": [ - "101641347712008427929600", - "186337738449016464605184", - "324659372228908513492992" - ], - "expectedQty": "616723365588307560660758", + "type": "mint", + "inputIndex": 2, + "inputQty": "76353590596511", + "expectedQty": "76479870585180", + "reserves": [ + "880721646683802058208706676", + "272928010495766621115952510", + "423299846531855772101742321" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "11030321609947272714387456", + "expectedQty": "11003986825477454546579288", + "swapFee": "6618192965968363628632", "reserves": [ - "7803205470393057954929053", - "58704181028915574263973126", - "64371365104018045574242185" + "880721646683802058208706676", + "272928010495766621115952510", + "412295859706378317555163033" ], - "mAssetSupply": "130236752753527287446118969" + "mAssetSupply": "1564077608613322270353836584" }, { - "type": "mintMulti", - "inputQtys": [ - "31141933486044276", - "135401975699626176", - "95064668400955440" + "type": "mint", + "inputIndex": 0, + "inputQty": "197158009426446936702976", + "expectedQty": "195979196162654165317313", + "reserves": [ + "880918804693228505145409652", + "272928010495766621115952510", + "412295859706378317555163033" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1482885143843031954227", + "expectedQtys": [ + "834834474075435845231", + "258650071821357963520", + "390727040185409530496" ], - "expectedQty": "262060978856495308", + "redemptionFee": "444865543152909586", "reserves": [ - "7803205501534991440973329", - "58704181164317549963599302", - "64371365199082713975197625" + "880917969858754429709564421", + "272927751845694799757988990", + "412295468979338132145632537" ], - "mAssetSupply": "130236753015588266302614277" + "mAssetSupply": "1564272105369206624640109256" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "84202382539297961017344", - "expectedQty": "85057190835671062883005", - "swapFee": "50521429523578776610", + "inputIndex": 0, + "inputQty": "177650890940124192", + "expectedQty": "178612407414138675", + "swapFee": "106590534564074", "reserves": [ - "7803205501534991440973329", - "58619123973481878900716297", - "64371365199082713975197625" + "880917969680142022295425746", + "272927751845694799757988990", + "412295468979338132145632537" ], - "mAssetSupply": "130152601154478491920373543" + "mAssetSupply": "1564272105191662324234549138" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 1, + "inputQty": "5231541168603276878282752", + "expectedQty": "5280338130043259269085999", + "reserves": [ + "880917969680142022295425746", + "278159293014298076636271742", + "412295468979338132145632537" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "51525737673953887911936", - "9086448200098525478912", - "38080277614427119812608" + "45177596243147298741157888", + "8352133871312672640729088", + "23197732177623924139360256" ], - "expectedQty": "103140497497031836173356", + "expectedQty": "76585777928753412206780281", + "swapFee": "45979054189765906868189", "reserves": [ - "7854731239208945328885265", - "58628210421681977426195209", - "64409445476697141095010233" + "835740373436994723554267858", + "269807159142985403995542654", + "389097736801714208006272281" ], - "mAssetSupply": "130255741651975523756546899" + "mAssetSupply": "1492966665392952171296854856" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "337558575913693216768", - "outputIndex": 0, - "expectedQty": "304405115004566314992", - "swapFee": "200396559137374365", + "inputQty": "723593341662354735104", + "expectedQty": "729852782579616005084", "reserves": [ - "7854426834093940762570273", - "58628547980257891119411977", - "64409445476697141095010233" - ], - "mAssetSupply": "130255741852372082893921264", - "hardLimitError": false, - "insufficientLiquidityError": false + "835740373436994723554267858", + "269807882736327066350277758", + "389097736801714208006272281" + ] }, { - "type": "redeem", + "type": "mint", + "inputIndex": 0, + "inputQty": "200678325179702273114112", + "expectedQty": "199517050063398693168133", + "reserves": [ + "835941051762174425827381970", + "269807882736327066350277758", + "389097736801714208006272281" + ] + }, + { + "type": "swap", "inputIndex": 2, - "inputQty": "680159101078174302208", - "expectedQty": "688039538833433648065", - "swapFee": "408095460646904581", + "inputQty": "1388976647233905885184", + "outputIndex": 1, + "expectedQty": "1379145632600557294407", + "swapFee": "835149804452937956", "reserves": [ - "7854426834093940762570273", - "58628547980257891119411977", - "64408757437158307661362168" + "835941051762174425827381970", + "269806503590694465792983351", + "389099125778361441912157465" ], - "mAssetSupply": "130255062101366465366523637" + "mAssetSupply": "1493166913130947954058966029", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "1124522197985237091221504", - "118725377314087749287936", - "1461489583875277740572672" + "49360411525783824105472", + "219582499107811780198400", + "790275700361085266690048" ], - "expectedQty": "2809074842635682948015118", - "swapFee": "1686456779649199288382", + "expectedQty": "1062513798023329369447073", + "swapFee": "637891013422050852179", "reserves": [ - "6729904636108703671348769", - "58509822602943803370124041", - "62947267853283029920789496" + "835891691350648642003276498", + "269586921091586654012784951", + "388308850078000356645467417" ], - "mAssetSupply": "127445987258730782418508519" + "mAssetSupply": "1492104399332924624689518956" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "57175073961634512", - "expectedQty": "50696958923046634", - "swapFee": "34305044376980", + "type": "mintMulti", + "inputQtys": [ + "4784651273560097030144", + "38315765526954631168", + "2507108395741468426240" + ], + "expectedQty": "7308015759415142211148", "reserves": [ - "6729904585411744748302135", - "58509822602943803370124041", - "62947267853283029920789496" + "835896476001922202100306642", + "269586959407352180967416119", + "388311357186396098113893657" ], - "mAssetSupply": "127445987201590013501250987" + "mAssetSupply": "1492111707348684039831730104" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "62722346981800083456", - "53623187243686166528", - "87568621603050815488" + "6939622587988990976", + "25658331441724899328", + "10344373501194977280" ], - "expectedQty": "210012184865582308284", + "expectedQty": "43146405522628263198", + "swapFee": "25903385344783828", "reserves": [ - "6729967307758726548385591", - "58509876226131047056290569", - "62947355421904632971604984" + "835896469062299614111315666", + "269586933749020739242516791", + "388311346842022596918916377" ], - "mAssetSupply": "127446197213774879083559271" + "mAssetSupply": "1492111664202278517203466906" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "127877697828619359879168", - "expectedQty": "113176896908202407360367", - "swapFee": "76726618697171615927", + "type": "swap", + "inputIndex": 2, + "inputQty": "38912920839274373120", + "outputIndex": 0, + "expectedQty": "39199933578366964356", + "swapFee": "23397610302939817", + "reserves": [ + "835896429862366035744351310", + "269586933749020739242516791", + "388311385754943436193289497" + ], + "mAssetSupply": "1492111664225676127506406723", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "4864687815441563988787", + "expectedQtys": [ + "2724430994163530739434", + "878662680792016659000", + "1265620400976651123338" + ], + "redemptionFee": "1459406344632469196", "reserves": [ - "6616790410850524141025224", - "58509876226131047056290569", - "62947355421904632971604984" + "835893705431371872213611876", + "269586055086339947225857791", + "388310120134542459542166159" ], - "mAssetSupply": "127318396242564956895296030" + "mAssetSupply": "1492106800997267030574887132" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "186687389939307347181568", - "expectedQty": "188971839838211662065064", - "swapFee": "112012433963584408308", + "inputIndex": 0, + "inputQty": "45751018312606930698240", + "expectedQty": "45990246594053038181327", + "swapFee": "27450610987564158418", "reserves": [ - "6616790410850524141025224", - "58320904386292835394225505", - "62947355421904632971604984" + "835847715184777819175430549", + "269586055086339947225857791", + "388310120134542459542166159" ], - "mAssetSupply": "127131820865059613132522770" + "mAssetSupply": "1492061077429565411208347310" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "24341546235341960118272", + "inputIndex": 1, + "inputQty": "5603698582741211676672", "outputIndex": 2, - "expectedQty": "27891028628065193578479", - "swapFee": "16511052791132500409", + "expectedQty": "5636800100700667026376", + "swapFee": "3391336118820097350", "reserves": [ - "6641131957085866101143496", - "58320904386292835394225505", - "62919464393276567778026505" + "835847715184777819175430549", + "269591658784922688437534463", + "388304483334441758875139783" ], - "mAssetSupply": "127131837376112404265023179", + "mAssetSupply": "1492061080820901530028444660", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "5424404860211452738273280", - "expectedQty": "5493873765404344127005978", - "swapFee": "3254642916126871642963", + "type": "redeemBassets", + "inputQtys": [ + "1116567296166682427392", + "1862748739829728280576", + "1940287785301833940992" + ], + "expectedQty": "4933403658768174758309", + "swapFee": "2961819286833004657", "reserves": [ - "6641131957085866101143496", - "58320904386292835394225505", - "57425590627872223651020527" + "835846598617481652493003157", + "269589796036182858709253887", + "388302543046656457041198791" ], - "mAssetSupply": "121710687158817078398392862" + "mAssetSupply": "1492056147417242761853686351" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1428349799497780546240512", + "expectedQty": "1420057090998689214651262", + "reserves": [ + "837274948416979433039243669", + "269589796036182858709253887", + "388302543046656457041198791" + ] }, { "type": "redeemBassets", "inputQtys": [ - "23361133372491046060032", - "4348680941312853147648", - "24895580935638516498432" + "8000094548065213850058752", + "10591990976570961025826816", + "12511331511132163594518528" ], - "expectedQty": "55017621611668448278423", - "swapFee": "33030391201722102228", + "expectedQty": "31178611713147238944881601", + "swapFee": "18718398066728380395166", "reserves": [ - "6617770823713375055083464", - "58316555705351522541077857", - "57400695046936585134522095" + "829274853868914219189184917", + "258997805059611897683427071", + "375791211535524293446680263" ], - "mAssetSupply": "121655669537205409950114439" + "mAssetSupply": "1462297592795094212123456012" }, { "type": "mint", "inputIndex": 0, - "inputQty": "2229499844635483940323328", - "expectedQty": "2429962535594404116360618", + "inputQty": "27889197808382329548177408", + "expectedQty": "27716019655846047572432866", "reserves": [ - "8847270668348858995406792", - "58316555705351522541077857", - "57400695046936585134522095" + "857164051677296548737362325", + "258997805059611897683427071", + "375791211535524293446680263" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "217719855959396745216", - "expectedQty": "219610550085089840182", - "swapFee": "130631913575638047", + "type": "mint", + "inputIndex": 0, + "inputQty": "1076544076825161197682688", + "expectedQty": "1069688230795370976933379", "reserves": [ - "8847270668348858995406792", - "58316555705351522541077857", - "57400475436386500044681913" - ], - "mAssetSupply": "124085414483575768245367888" + "858240595754121709935045013", + "258997805059611897683427071", + "375791211535524293446680263" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "1675879957711709446078464", - "expectedQty": "1690131736743981027620133", - "swapFee": "1005527974627025667647", + "inputQty": "3698543228729510644940800", + "outputIndex": 1, + "expectedQty": "3668991451580481694537181", + "swapFee": "2224791380295562284742", "reserves": [ - "8847270668348858995406792", - "58316555705351522541077857", - "55710343699642519017061780" + "858240595754121709935045013", + "255328813608031415988889890", + "379489754764253804091621063" ], - "mAssetSupply": "122410540053838685824957071" + "mAssetSupply": "1491085525473115926235106999", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "117989621479315062784", - "989630623838864670720", - "892029290209021132800" - ], - "expectedQty": "1990138474580201311336", - "swapFee": "1194799964726956960", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1889503241645722043416576", + "expectedQty": "1900541059292618397379857", + "swapFee": "1133701944987433226049", "reserves": [ - "8847152678727379680344008", - "58315566074727683676407137", - "55709451670352309995928980" + "856340054694829091537665156", + "255328813608031415988889890", + "379489754764253804091621063" ], - "mAssetSupply": "122408549915364105623645735" + "mAssetSupply": "1489197155933415191624916472" }, { - "type": "redeemBassets", - "inputQtys": [ - "75639257162090056515584", - "5846903193521304371200", - "84074700819985590124544" - ], - "expectedQty": "169774266329441148313736", - "swapFee": "101925715226800769449", + "type": "swap", + "inputIndex": 1, + "inputQty": "1295316021574642480185344", + "outputIndex": 2, + "expectedQty": "1304374281453776684749502", + "swapFee": "785028063712837217587", "reserves": [ - "8771513421565289623828424", - "58309719171534162372035937", - "55625376969532324405804436" + "856340054694829091537665156", + "256624129629606058469075234", + "378185380482800027406871561" ], - "mAssetSupply": "122238775649034664475331999" + "mAssetSupply": "1489197940961478904462134059", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "11435951588965911363584", - "outputIndex": 1, - "expectedQty": "12309469407525062837895", - "swapFee": "7319505133507223771", + "type": "mintMulti", + "inputQtys": [ + "38047159350671423045632", + "268792775367716111384576", + "82957972792709014880256" + ], + "expectedQty": "392450382477301657591163", "reserves": [ - "8782949373154255535192008", - "58297409702126637309198042", - "55625376969532324405804436" + "856378101854179762960710788", + "256892922404973774580459810", + "378268338455592736421751817" ], - "mAssetSupply": "122238782968539797982555770", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1489590391343956206119725222" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "293946187448376576", - "expectedQty": "275416271053715654", - "swapFee": "176367712469025", + "inputIndex": 1, + "inputQty": "44498370407803929204097024", + "expectedQty": "43930868346919216201836619", + "swapFee": "26699022244682357522458", "reserves": [ - "8782949097737984481476354", - "58297409702126637309198042", - "55625376969532324405804436" + "856378101854179762960710788", + "212962054058054558378623191", + "378268338455592736421751817" ], - "mAssetSupply": "122238782674769978246648219" + "mAssetSupply": "1445118719958396959273150656" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "97891989825386857889792", - "expectedQty": "98711168401714761207916", - "swapFee": "58735193895232114733", + "inputQty": "76459031015704980736704512", + "expectedQty": "76152014742776118331420411", + "swapFee": "45875418609422988442022", "reserves": [ - "8782949097737984481476354", - "58297409702126637309198042", - "55526665801130609644596520" + "856378101854179762960710788", + "212962054058054558378623191", + "302116323712816618090331406" ], - "mAssetSupply": "122140949420138486620873160" + "mAssetSupply": "1368705564361301401524888166" }, { "type": "redeemMasset", - "inputQty": "99762264069186355", + "inputQty": "547124277652199309312", "expectedQtys": [ - "7171583562164250", - "47601863620523803", - "45339454810655195" + "342224579920953115606", + "85103588393168483215", + "120731288838450961214" ], - "redemptionFee": "29928679220755", + "redemptionFee": "164137283295659792", "reserves": [ - "8782949090566400919312104", - "58297409654524773688674239", - "55526665755791154833941325" + "856377759629599842007595182", + "212961968954466165210139976", + "302116202981527779639370192" ], - "mAssetSupply": "122140949320406151230907560" + "mAssetSupply": "1368705017401161032621238646" }, { "type": "redeemBassets", "inputQtys": [ - "5802690018249059386523648", - "1156242009859294207410176", - "907146503785958850166784" + "48435678457953351892992", + "76733329308435678756864", + "21454165068369132257280" ], - "hardLimitError": true + "expectedQty": "147407075268110967525039", + "swapFee": "88497343567006784585", + "reserves": [ + "856329323951141888655702190", + "212885235625157729531383112", + "302094748816459410507112912" + ], + "mAssetSupply": "1368557610325892921653713607" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "857141041908365123387392", - "expectedQty": "798318191698680896400653", - "swapFee": "514284625145019074032", + "type": "redeemBassets", + "inputQtys": [ + "217217639806157848576", + "229748853421282230272", + "76122259198532485120" + ], + "expectedQty": "524879315788688568297", + "swapFee": "315116659468894477", "reserves": [ - "7984630898867720022911451", - "58297409654524773688674239", - "55526665755791154833941325" + "856329106733502082497853614", + "212885005876304308249152840", + "302094672694200211974627792" ], - "mAssetSupply": "121284322563122931126594200" + "mAssetSupply": "1368557085446577132965145310" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1308006224223588421992448", - "expectedQty": "1320042158100444653068590", - "swapFee": "784803734534153053195", + "type": "mintMulti", + "inputQtys": [ + "14089513580092752658432", + "13255827819946269736960", + "12825065206694495125504" + ], + "expectedQty": "40304461997496795461763", "reserves": [ - "7984630898867720022911451", - "58297409654524773688674239", - "54206623597690710180872735" + "856343196247082175250512046", + "212898261704124254518889800", + "302107497759406906469753296" ], - "mAssetSupply": "119977101142633876857654947" + "mAssetSupply": "1368597389908574629760607073" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "76592365319587161440256", - "expectedQty": "77367934382726502703464", - "swapFee": "45955419191752296864", + "type": "mint", + "inputIndex": 2, + "inputQty": "112881441395588560068804608", + "expectedQty": "113193307464799208435580970", "reserves": [ - "7984630898867720022911451", - "58220041720142047185970775", - "54206623597690710180872735" - ], - "mAssetSupply": "119900554732733481448511555" + "856343196247082175250512046", + "212898261704124254518889800", + "414988939154995466538557904" + ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "160953755632893088", - "outputIndex": 1, - "expectedQty": "175315331627247908", - "swapFee": "104135653306774", + "type": "redeemMasset", + "inputQty": "5749077304467382272", + "expectedQtys": [ + "3321458481371946613", + "825758574489190639", + "1609598275168876746" + ], + "redemptionFee": "1724723191340214", "reserves": [ - "7984631059821475655804539", - "58220041544826715558722867", - "54206623597690710180872735" + "856343192925623693878565433", + "212898260878365680029699161", + "414988937545397191369681158" ], - "mAssetSupply": "119900554732837617101818329", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1481790691626021256920145985" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "201579077842804244480", - "expectedQty": "203403310816787547520", - "swapFee": "120947446705682546", + "type": "redeemMasset", + "inputQty": "14182865134667925094", + "expectedQtys": [ + "8193975345416147977", + "2037130808221205619", + "3970848546422395930" + ], + "redemptionFee": "4254859540400377", "reserves": [ - "7984631059821475655804539", - "58220041544826715558722867", - "54206420194379893393325215" + "856343184731648348462417456", + "212898258841234871808493542", + "414988933574548644947285228" ], - "mAssetSupply": "119900353274707221003256395" + "mAssetSupply": "1481790677447410981792621268" }, { "type": "redeemBassets", "inputQtys": [ - "41441333904668819456", - "71846336189688643584", - "19064176253916037120" + "363172485772713787392", + "210590261575909048320", + "533351285766463291392" ], - "expectedQty": "134652889736076516224", - "swapFee": "80840237984436571", + "expectedQty": "1108270204129329495583", + "swapFee": "665361339281166397", "reserves": [ - "7984589618487570986985083", - "58219969698490525870079283", - "54206401130203639477288095" + "856342821559162575748630064", + "212898048250973295899445222", + "414988400223262878483993836" ], - "mAssetSupply": "119900218621817484926740171" + "mAssetSupply": "1481789569177206852463125685" }, { "type": "mint", "inputIndex": 0, - "inputQty": "58843521218520201297920", - "expectedQty": "63419083107867130068768", - "reserves": [ - "8043433139706091188283003", - "58219969698490525870079283", - "54206401130203639477288095" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "155022218389461049278464", - "expectedQty": "153548880210398304986344", + "inputQty": "126533586127316028751872", + "expectedQty": "125627911679202486940074", "reserves": [ - "8043433139706091188283003", - "58219969698490525870079283", - "54361423348593100526566559" + "856469355145289891777381936", + "212898048250973295899445222", + "414988400223262878483993836" ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "8813133656767868174336", - "expectedQty": "8892509524602510769063", - "swapFee": "5287880194060720904", + "inputQty": "1844585684078034482626560", + "expectedQty": "1841838150406287679302257", + "swapFee": "1106751410446820689575", "reserves": [ - "8043433139706091188283003", - "58219969698490525870079283", - "54352530839068498015797496" + "856469355145289891777381936", + "212898048250973295899445222", + "413146562072856590804691579" ], - "mAssetSupply": "120108378739359176554341851" + "mAssetSupply": "1480071718156218467288128774" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "9661290731390336237568", - "expectedQty": "9559618933164834118330", + "inputIndex": 0, + "inputQty": "7437497761510731022336", + "expectedQty": "7384135558905626967729", "reserves": [ - "8043433139706091188283003", - "58229630989221916206316851", - "54352530839068498015797496" + "856476792643051402508404272", + "212898048250973295899445222", + "413146562072856590804691579" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "7616364137128629248", - "1783391236097271040", - "3759786507428243968" + "type": "redeemMasset", + "inputQty": "5943682353329083170947072", + "expectedQtys": [ + "3438396503800923290059932", + "854696719234130664216181", + "1658610842454805486847899" ], - "expectedQty": "13694523490429541037", - "swapFee": "8221647082507228", + "redemptionFee": "1783104705998724951284", "reserves": [ - "8043425523341954059653755", - "58229629205830680109045811", - "54352527079281990587553528" + "853038396139250479218344340", + "212043351531739165235229041", + "411487951230401785317843680" ], - "mAssetSupply": "120117924663768850958919144" + "mAssetSupply": "1474137203043154288469100715" }, { "type": "redeemBassets", "inputQtys": [ - "9056349920215086080", - "4094263105026608128", - "1626091644674259200" + "95699834145210208616448", + "485229906077073589403648", + "127564791417973063548928" ], - "expectedQty": "15419139584414864046", - "swapFee": "9257037973432978", + "expectedQty": "715518086636556719310131", + "swapFee": "429568593137816721619", "reserves": [ - "8043416466992033844567675", - "58229625111567575082437683", - "54352525453190345913294328" + "852942696305105269009727892", + "211558121625662091645825393", + "411360386438983812254294752" ], - "mAssetSupply": "120117909244629266544055098" + "mAssetSupply": "1473421684956517731749790584" }, { "type": "redeemBassets", "inputQtys": [ - "1557649228721414995968", - "4688079511271599243264", - "4197575735766593044480" + "479952792663549909401600", + "630139896523560945975296", + "389225009157530223378432" ], - "expectedQty": "10474582791844799965323", - "swapFee": "6288522788780148068", + "expectedQty": "1506125529884601226280765", + "swapFee": "904217848639944702590", "reserves": [ - "8041858817763312429571707", - "58224937032056303483194419", - "54348327877454579320249848" + "852462743512441719100326292", + "210927981729138530699850097", + "410971161429826282030916320" ], - "mAssetSupply": "120107434661837421744089775" + "mAssetSupply": "1471915559426633130523509819" }, { - "type": "mintMulti", - "inputQtys": [ - "198270231254226534400", - "307558916953425313792", - "68290336758367617024" - ], - "expectedQty": "585582214935211877141", - "reserves": [ - "8042057087994566656106107", - "58225244590973256908508211", - "54348396167791337687866872" - ], - "mAssetSupply": "120108020244052356955966916" - }, - { - "type": "mintMulti", - "inputQtys": [ - "947892379612087261855744", - "1654758912865500552757248", - "1694689616295910487097344" - ], - "expectedQty": "4332927796190837014220149", + "type": "mint", + "inputIndex": 2, + "inputQty": "19243539465634188", + "expectedQty": "19260981659315753", "reserves": [ - "8989949467606653917961851", - "59880003503838757461265459", - "56043085784087248174964216" - ], - "mAssetSupply": "124440948040243193970187065" + "852462743512441719100326292", + "210927981729138530699850097", + "410971161449069821496550508" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "323335026123008267780096", - "outputIndex": 2, - "expectedQty": "346602367240175001472594", - "swapFee": "206351066892784171605", + "inputQty": "3159302105932881723392", + "expectedQty": "3136531803590126773532", "reserves": [ - "9313284493729662185741947", - "59880003503838757461265459", - "55696483416847073173491622" - ], - "mAssetSupply": "124441154391310086754358670", - "hardLimitError": false, - "insufficientLiquidityError": false + "852465902814547651982049684", + "210927981729138530699850097", + "410971161449069821496550508" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "117706700157631594496", - "outputIndex": 1, - "expectedQty": "117751744613729220715", - "swapFee": "70037584058066731", + "type": "redeemBassets", + "inputQtys": [ + "1506362125142512625516544", + "637132719306545418993664", + "2725305053435235202498560" + ], + "expectedQty": "4870508310162475844599371", + "swapFee": "2924059421750535828256", "reserves": [ - "9313284493729662185741947", - "59879885752094143732044744", - "55696601123547230805086118" + "850959540689405139356533140", + "210290849009831985280856433", + "408245856395634586294051948" ], - "mAssetSupply": "124441154461347670812425401", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1467048187667535226464999733" }, { "type": "mintMulti", "inputQtys": [ - "8076801204056426020864", - "1971217340827997569024", - "9272726491914264641536" + "119880443917532292710400", + "463200350569970800787456", + "645769685226888431140864" ], - "expectedQty": "19718943217765758157466", + "expectedQty": "1235892161882189719214040", "reserves": [ - "9321361294933718611762811", - "59881856969434971729613768", - "55705873850039145069727654" + "851079421133322671649243540", + "210754049360401956081643889", + "408891626080861474725192812" ], - "mAssetSupply": "124460873404565436570582867" + "mAssetSupply": "1468284079829417416184213773" }, { "type": "mintMulti", "inputQtys": [ - "2097038131418749730816", - "1089546710569567518720", - "162849527021206405120" + "447815099615827329024", + "42332844758844579840", + "2813576771366881329152" ], - "expectedQty": "3465978327773875680931", + "expectedQty": "3303823509646867147276", "reserves": [ - "9323458333065137361493627", - "59882946516145541297132488", - "55706036699566166276132774" + "851079868948422287476572564", + "210754091693246714926223729", + "408894439657632841606521964" ], - "mAssetSupply": "124464339382893210446263798" + "mAssetSupply": "1468287383652927063051361049" }, { - "type": "redeemBassets", - "inputQtys": [ - "14982192634572056821760", - "35077495337012317650944", - "36248588739986046582784" + "type": "redeemMasset", + "inputQty": "815770088614513254", + "expectedQtys": [ + "472712101314435409", + "117058355131846565", + "227110705867326867" ], - "expectedQty": "86597315379532717906491", - "swapFee": "51989582977506134424", + "redemptionFee": "244731026584353", "reserves": [ - "9308476140430565304671867", - "59847869020808528979481544", - "55669788110826180229549990" + "851079868475710186162137155", + "210754091576188359794377164", + "408894439430522135739195097" ], - "mAssetSupply": "124377742067513677728357307" + "mAssetSupply": "1468287382837401705463432148" }, { "type": "mintMulti", "inputQtys": [ - "26395375258122630201344", - "19643783696997100290048", - "23983413704274764365824" + "45753692382491131904", + "52825197139442384896", + "67881506777162637312" ], - "expectedQty": "71251643233280272602444", + "expectedQty": "167024762794120037854", "reserves": [ - "9334871515688687934873211", - "59867512804505526079771592", - "55693771524530454993915814" + "851079914229402568653269059", + "210754144401385499236762060", + "408894507312028912901832409" ], - "mAssetSupply": "124448993710746958000959751" + "mAssetSupply": "1468287549862164499583470002" }, { - "type": "mintMulti", - "inputQtys": [ - "51414276855879220330496", - "69936902340398528069632", - "87702683413780602290176" - ], - "expectedQty": "210799262229524879312481", + "type": "swap", + "inputIndex": 0, + "inputQty": "24909956885946652", + "outputIndex": 1, + "expectedQty": "24332985199437905", + "swapFee": "14838141583667", "reserves": [ - "9386285792544567155203707", - "59937449706845924607841224", - "55781474207944235596205990" + "851079914254312525539215711", + "210754144377052514037324155", + "408894507312028912901832409" ], - "mAssetSupply": "124659792972976482880272232" + "mAssetSupply": "1468287549862179337725053669", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "5015003079800799205785", + "inputQty": "4652279340038591034163", "expectedQtys": [ - "377492448523923130004", - "2410531188607992321192", - "2243388465515973011972" + "2695843647062290035235", + "667575643244651674166", + "1295196422091114667785" ], - "redemptionFee": "1504500923940239761", + "redemptionFee": "1395683802011577310", "reserves": [ - "9385908300096043232073703", - "59935039175657316615520032", - "55779230819478719623194018" + "851077218410665463249180476", + "210753476801409269385649989", + "408893212115606821787164624" ], - "mAssetSupply": "124654779474397606021306208" + "mAssetSupply": "1468282898978523101145596816" }, { "type": "redeemMasset", - "inputQty": "47364868940432", + "inputQty": "86167180001569871704883", "expectedQtys": [ - "3565278039877", - "22766584986777", - "21187983129983" + "49931061274273795874283", + "12364500583846827670077", + "23988977248040438335885" ], - "redemptionFee": "14209460682", + "redemptionFee": "25850154000470961511", "reserves": [ - "9385908300092477954033826", - "59935039175634550030533255", - "55779230819457531640064035" + "851027287349391189453306193", + "210741112300825422557979912", + "408869223138358781348828739" ], - "mAssetSupply": "124654779474350255361826458" + "mAssetSupply": "1468196757648675531744853444" }, { - "type": "mintMulti", - "inputQtys": [ - "494783129352848749363200", - "232917144785586028019712", - "332976299621397871722496" - ], - "expectedQty": "1084435514193347897742723", + "type": "mint", + "inputIndex": 0, + "inputQty": "15598201937570940726542336", + "expectedQty": "15484182731026949277701292", "reserves": [ - "9880691429445326703397026", - "60167956320420136058552967", - "56112207119078929511786531" - ], - "mAssetSupply": "125739214988543603259569181" + "866625489286962130179848529", + "210741112300825422557979912", + "408869223138358781348828739" + ] }, { - "type": "redeemMasset", - "inputQty": "12778030839174888475852", - "expectedQtys": [ - "1003806991123525468701", - "6112630439613187729609", - "5700595570229709495801" - ], - "redemptionFee": "3833409251752466542", + "type": "mint", + "inputIndex": 2, + "inputQty": "79311108993124657004544", + "expectedQty": "79397518531080472394077", "reserves": [ - "9879687622454203177928325", - "60161843689980522870823358", - "56106506523508699802290730" - ], - "mAssetSupply": "125726440791113680123559871" + "866625489286962130179848529", + "210741112300825422557979912", + "408948534247351906005833283" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "5867546885010963300352", - "expectedQty": "5557746312710147633257", - "swapFee": "3520528131006577980", + "inputIndex": 1, + "inputQty": "775067866914146091008", + "expectedQty": "762244587123030555798", + "swapFee": "465040720148487654", "reserves": [ - "9874129876141493030295068", - "60161843689980522870823358", - "56106506523508699802290730" + "866625489286962130179848529", + "210740350056238299527424114", + "408948534247351906005833283" ], - "mAssetSupply": "125720576764756800166837499" + "mAssetSupply": "1483759563295407367497345459" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "530782500050443304960", - "398088136244957609984", - "344546963992431689728" + "15665544090098355306233856", + "28288034986058733949288448", + "9127458961482065511448576" ], - "expectedQty": "1296500839265064124237", - "swapFee": "778367524073482564", + "expectedQty": "53391182798662538028534788", "reserves": [ - "9873599093641442586990108", - "60161445601844277913213374", - "56106161976544707370601002" + "882291033377060485486082385", + "239028385042297033476712562", + "418075993208833971517281859" ], - "mAssetSupply": "125719280263917535102713262" + "mAssetSupply": "1537150746094069905525880247" }, { "type": "mint", "inputIndex": 0, - "inputQty": "6074582369711065923584", - "expectedQty": "6409358522108754132690", + "inputQty": "496277890791662677917696", + "expectedQty": "492953512541770001936803", "reserves": [ - "9879673676011153652913692", - "60161445601844277913213374", - "56106161976544707370601002" + "882787311267852148164000081", + "239028385042297033476712562", + "418075993208833971517281859" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "274173841256857472", - "268573432420266848", - "48969744954717560" - ], - "expectedQty": "604085790425251476", - "swapFee": "362669075700571", + "type": "swap", + "inputIndex": 1, + "inputQty": "3253146636241772914671616", + "outputIndex": 0, + "expectedQty": "3314437812218296963511231", + "swapFee": "1976720048154898827142", "reserves": [ - "9879673401837312396056220", - "60161445333270845492946526", - "56106161927574962415883442" + "879472873455633851200488850", + "242281531678538806391384178", + "418075993208833971517281859" ], - "mAssetSupply": "125725689018353853431594476" + "mAssetSupply": "1537645676326659830426644192", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "2228644852277098158489", - "expectedQtys": [ - "175077010562173972417", - "1066116821036808990826", - "994253423657742649516" + "type": "mintMulti", + "inputQtys": [ + "754151923714761630416896", + "1339416777279954829180928", + "8714794777059803529216" ], - "redemptionFee": "668593455683129447", + "expectedQty": "2113935764254426032759689", "reserves": [ - "9879498324826750222083803", - "60160379216449808683955700", - "56105167674151304673233926" + "880227025379348612830905746", + "243620948455818761220565106", + "418084708003611031320811075" ], - "mAssetSupply": "125723461042095032016565434" + "mAssetSupply": "1539759612090914256459403881" }, { "type": "redeemBassets", "inputQtys": [ - "61634212616808664399872", - "142706596112830004461568", - "520459560785329006837760" - ], - "expectedQty": "722877627723049944576636", - "swapFee": "433986968815119038168", - "reserves": [ - "9817864112209941557683931", - "60017672620336978679494132", - "55584708113365975666396166" + "230134487529094341722112", + "327893273482634905780224", + "148543634406430570708992" ], - "mAssetSupply": "125000583414371982071988798" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "2190474029145887744", - "outputIndex": 2, - "expectedQty": "2186959267032358057", - "swapFee": "1302727371902469", + "expectedQty": "709319432616157628621770", + "swapFee": "425847167870416827269", "reserves": [ - "9817864112209941557683931", - "60017674810811007825381876", - "55584705926406708634038109" + "879996890891819518489183634", + "243293055182336126314784882", + "417936164369204600750102083" ], - "mAssetSupply": "125000583415674709443891267", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1539050292658298098830782111" }, { "type": "redeemBassets", "inputQtys": [ - "928018039575727560458240", - "772387390911334395674624", - "113872266861182441226240" + "13944328625403992064", + "34654013405846274048", + "16363112795891458048" ], - "expectedQty": "1862210224995732085793256", - "swapFee": "1117996933157333651666", + "expectedQty": "65321367638115597430", + "swapFee": "39216350393105221", "reserves": [ - "8889846072634213997225691", - "59245287419899673429707252", - "55470833659545526192811869" + "879996876947490893085191570", + "243293020528322720468510834", + "417936148006091804858644035" ], - "mAssetSupply": "123138373190678977358098011" + "mAssetSupply": "1539050227336930460715184681" }, { - "type": "redeemMasset", - "inputQty": "336983106311344076", - "expectedQtys": [ - "24320844495527403", - "162083281381861307", - "151757129251543197" - ], - "redemptionFee": "101094931893403", + "type": "mint", + "inputIndex": 0, + "inputQty": "57099081747573581226704896", + "expectedQty": "56706290659663747130700731", "reserves": [ - "8889846048313369501698288", - "59245287257816392047845945", - "55470833507788396941268672" - ], - "mAssetSupply": "123138372853796965978647338" + "937095958695064474311896466", + "243293020528322720468510834", + "417936148006091804858644035" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "567017107095717184", - "2505232024013627392", - "2752424174007907840" + "type": "redeemMasset", + "inputQty": "92874218966653210932019", + "expectedQtys": [ + "54523321485952873085211", + "14155587216517719543711", + "24316898122225294361244" ], - "expectedQty": "5813965690136026068", + "redemptionFee": "27862265689995963279", "reserves": [ - "8889846615330476597415472", - "59245289763048416061473337", - "55470836260212570949176512" + "937041435373578521438811255", + "243278864941106202748967123", + "417911831107969579564282791" ], - "mAssetSupply": "123138378667762656114673406" + "mAssetSupply": "1595663671639893244630916672" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1578330368142159214804992", - "outputIndex": 2, - "expectedQty": "1575328971746098487503033", - "swapFee": "937725115896939510186", + "inputIndex": 2, + "inputQty": "415179762113180656992256", + "outputIndex": 1, + "expectedQty": "410065968276931895502209", + "swapFee": "249592443404598074946", "reserves": [ - "8889846615330476597415472", - "60823620131190575276278329", - "53895507288466472461673479" + "937041435373578521438811255", + "242868798972829270853464914", + "418327010870082760221275047" ], - "mAssetSupply": "123139316392878553054183592", + "mAssetSupply": "1595663921232336649228991618", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "612356026292197736316928", - "expectedQty": "606189066013811522629816", + "inputIndex": 2, + "inputQty": "4456530401059999744", + "expectedQty": "4465150583874212304", "reserves": [ - "8889846615330476597415472", - "61435976157482773012595257", - "53895507288466472461673479" + "937041435373578521438811255", + "242868798972829270853464914", + "418327015326613161281274791" ] }, { "type": "mintMulti", "inputQtys": [ - "78486260091041", - "58223821128596", - "58175696624232" + "58483199226633024", + "70559163368993872", + "89798215243928432" ], - "expectedQty": "199062270984985", + "expectedQty": "219570840902408064", "reserves": [ - "8889846615408962857506513", - "61435976157540996833723853", - "53895507288524648158297711" + "937041435432061720665444279", + "242868799043388434222458786", + "418327015416411376525203223" ], - "mAssetSupply": "123745505459091426847798393" + "mAssetSupply": "1595663925917058074005611986" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "7351788560515656618868736", - "hardLimitError": true - }, - { - "type": "mintMulti", - "inputQtys": [ - "75957496039639607148544", - "121119954740246273327104", - "8090863519005272965120" - ], - "expectedQty": "208922438648203024389431", - "reserves": [ - "8965804111448602464655057", - "61557096112281243107050957", - "53903598152043653431262831" - ], - "mAssetSupply": "123954427897739629872187824" - }, - { - "type": "redeemMasset", - "inputQty": "22713673780896487833", - "expectedQtys": [ - "1642420196831429788", - "11276469645818424982", - "9874447086542211317" - ], - "redemptionFee": "6814102134268946", + "inputIndex": 2, + "inputQty": "775500613499080081932288", + "expectedQty": "773530499583080381099458", + "swapFee": "465300368099448049159", "reserves": [ - "8965802469028405633225269", - "61557084835811597288625975", - "53903588277596566889051514" + "937041435432061720665444279", + "242868799043388434222458786", + "417553484916828296144103765" ], - "mAssetSupply": "123954405190879951109968937" + "mAssetSupply": "1594888890603927093371728857" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "36441495307750524059648", - "36407253605982540922880", - "33651190923119502032896" + "45855437161988200", + "34211893714503256", + "429066073475476" ], - "expectedQty": "108252391164939596998037", + "expectedQty": "80640418388696403", + "swapFee": "48413299012625", "reserves": [ - "9002243964336156157284917", - "61593492089417579829548855", - "53937239468519686391084410" + "937041435386206283503456079", + "242868799009176540507955530", + "417553484916399230070628289" ], - "mAssetSupply": "124062657582044890706966974" + "mAssetSupply": "1594888890523286674983032454" }, { "type": "swap", "inputIndex": 0, - "inputQty": "332964308919040", + "inputQty": "12702031291460043669504", "outputIndex": 1, - "expectedQty": "358149708458551", - "swapFee": "212862059850", + "expectedQty": "12430754552157309218179", + "swapFee": "7566279362378677155", "reserves": [ - "9002243964669120466203957", - "61593492089059430121090304", - "53937239468519686391084410" + "937054137417497743547125583", + "242856368254624383198737351", + "417553484916399230070628289" ], - "mAssetSupply": "124062657582045103569026824", + "mAssetSupply": "1594888898089566037361709609", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "58701654884322321104896", - "expectedQty": "58220187211791610935165", + "type": "mintMulti", + "inputQtys": [ + "357452121735528257159168", + "758969334263311119679488", + "723902875581517454639104" + ], + "expectedQty": "1849647533645110498994725", "reserves": [ - "9002243964669120466203957", - "61593492089059430121090304", - "53995941123404008712189306" - ] + "937411589539233271804284751", + "243615337588887694318416839", + "418277387791980747525267393" + ], + "mAssetSupply": "1596738545623211147860704334" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "211777357172919040", - "expectedQty": "225659560307993157", + "inputQty": "711648400869655150854144", + "expectedQty": "716366504003258720992336", + "swapFee": "426989040521793090512", "reserves": [ - "9002244176446477639122997", - "61593492089059430121090304", - "53995941123404008712189306" - ] + "936695223035230013083292415", + "243615337588887694318416839", + "418277387791980747525267393" + ], + "mAssetSupply": "1596027324211382014502940702" }, { "type": "redeemMasset", - "inputQty": "710013672850621183977062", + "inputQty": "3361048632298050764", "expectedQtys": [ - "51480452280905531515650", - "352230040438295873412817", - "308782500883379749604801" + "1971979844617220083", + "512871768480063969", + "880579464804107447" ], - "redemptionFee": "213004101855186355193", + "redemptionFee": "1008314589689415", "reserves": [ - "8950763724165572107607347", - "61241262048621134247677487", - "53687158622520628962584505" + "936695221063250168466072332", + "243615337076015925838352870", + "418277386911401282721159946" ], - "mAssetSupply": "123411077326167689490333277" + "mAssetSupply": "1596027320851341696794579353" }, { "type": "redeemMasset", - "inputQty": "1253033066943313503846", + "inputQty": "6753045493416446446796", "expectedQtys": [ - "90852770130728787339", - "621616040248877691396", - "544939765099045065626" - ], - "redemptionFee": "375909920082994051", - "reserves": [ - "8950672871395441378820008", - "61240640432580885369986091", - "53686613682755529917518879" + "3962117499530268697780", + "1030466013360465977623", + "1769267224891232299895" ], - "mAssetSupply": "123409824669010666259823482" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "62387349581602455552", - "expectedQty": "62981531144045252466", - "swapFee": "37432409748961473", + "redemptionFee": "2025913648024933934", "reserves": [ - "8950672871395441378820008", - "61240577451049741324733625", - "53686613682755529917518879" + "936691258945750638197374552", + "243614306610002565372375247", + "418275617644176391488860051" ], - "mAssetSupply": "123409762319093494406329403" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "132210666424179664", - "expectedQty": "130884784863775670", - "reserves": [ - "8950672871395441378820008", - "61240577583260407748913289", - "53686613682755529917518879" - ] + "mAssetSupply": "1596020569831761928373066491" }, { "type": "mintMulti", "inputQtys": [ - "6644996516307290554368", - "401914430673375002624", - "3996448051578045726720" + "442440946667503724003328", + "796474554902783499173888", + "350753537485295866347520" ], - "expectedQty": "11441822011202788750528", + "expectedQty": "1598102832428619131883477", "reserves": [ - "8957317867911748669374376", - "61240979497691081123915913", - "53690610130807107963245599" + "937133699892418141921377880", + "244410781164905348871549135", + "418626371181661687355207571" ], - "mAssetSupply": "123421204271989482058855601" + "mAssetSupply": "1597618672664190547504949968" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "8380468016670597120", - "expectedQty": "8460216475353216332", - "swapFee": "5028280810002358", + "type": "swap", + "inputIndex": 2, + "inputQty": "546827330238614069051392", + "outputIndex": 1, + "expectedQty": "540150470168991362039064", + "swapFee": "328732166412859946222", "reserves": [ - "8957317867911748669374376", - "61240971037474605770699581", - "53690610130807107963245599" + "937133699892418141921377880", + "243870630694736357509510071", + "419173198511900301424258963" ], - "mAssetSupply": "123421195896549746198260839" + "mAssetSupply": "1597619001396356960364896190", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "12730199393117896704", + "inputQty": "1233580709413148162418278", "expectedQtys": [ - "923619586775492757", - "6314765334608922674", - "5536221877353244911" + "723378505326904833478235", + "188245041604351371561766", + "323562029460092848805253" ], - "redemptionFee": "3819059817935369", + "redemptionFee": "370074212823944448725", "reserves": [ - "8957316944292161893881619", - "61240964722709271161776907", - "53690604594585230610000688" + "936410321387091237087899645", + "243682385653132006137948305", + "418849636482440208575453710" ], - "mAssetSupply": "123421183170169412898299504" + "mAssetSupply": "1596385790761156636146926637" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "128314382967509467791360", - "outputIndex": 0, - "expectedQty": "119257630850922463056417", - "swapFee": "76356099150593187943", + "type": "mintMulti", + "inputQtys": [ + "821150977086386870419456", + "573650140479964330328064", + "263045626793944361730048" + ], + "expectedQty": "1660344273960062946292091", "reserves": [ - "8838059313441239430825202", - "61240964722709271161776907", - "53818918977552740077792048" + "937231472364177623958319101", + "244256035793611970468276369", + "419112682109234152937183758" ], - "mAssetSupply": "123421259526268563491487447", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1598046135035116699093218728" }, { - "type": "redeemBassets", - "inputQtys": [ - "689464799889592287232", - "520723324788111376384", - "1804923073503614992384" - ], - "expectedQty": "3041171246341175253556", - "swapFee": "1825798226740749601", + "type": "redeem", + "inputIndex": 2, + "inputQty": "45752698012330070871375872", + "expectedQty": "45604675495540983204957605", + "swapFee": "27451618807398042522825", "reserves": [ - "8837369848641349838537970", - "61240443999384483050400523", - "53817114054479236462799664" + "937231472364177623958319101", + "244256035793611970468276369", + "373508006613693169732226153" ], - "mAssetSupply": "123418218355022222316233891" + "mAssetSupply": "1552320888641594026264365681" }, { - "type": "redeemMasset", - "inputQty": "10994988978211638476", - "expectedQtys": [ - "787060738209190374", - "5454105677134736623", - "4792980065502023263" - ], - "redemptionFee": "3298496693463491", + "type": "swap", + "inputIndex": 2, + "inputQty": "952531177279883881480192", + "outputIndex": 1, + "expectedQty": "942720234646488416253962", + "swapFee": "573467562912717078703", "reserves": [ - "8837369061580611629347596", - "61240438545278805915663900", - "53817109261499170960776401" + "937231472364177623958319101", + "243313315558965482052022407", + "374460537790973053613706345" ], - "mAssetSupply": "123418207363331740798058906" + "mAssetSupply": "1552321462109156938981444384", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "108512490226229776", - "expectedQty": "107605695035243465", + "inputQty": "1699913929510984072822784", + "expectedQty": "1705608601808269139334660", "reserves": [ - "8837369061580611629347596", - "61240438545278805915663900", - "53817109370011661187006177" + "937231472364177623958319101", + "243313315558965482052022407", + "376160451720484037686529129" ] }, { - "type": "redeemMasset", - "inputQty": "1577084902618042676019", - "expectedQtys": [ - "112893392530966460325", - "782318902750921948395", - "687489230183176949485" + "type": "mintMulti", + "inputQtys": [ + "38109020351129953763328", + "63539021401528117231616", + "63816719415232587366400" ], - "redemptionFee": "473125470785412802", + "expectedQty": "166231181491859770419510", "reserves": [ - "8837256168188080662887271", - "61239656226376054993715505", - "53816421880781478010056692" + "937269581384528753912082429", + "243376854580367010169254023", + "376224268439899270273895529" ], - "mAssetSupply": "123416630859160288576039154" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4266683962300248279220224", - "hardLimitError": true + "mAssetSupply": "1554193301892457067891198554" }, { - "type": "mintMulti", - "inputQtys": [ - "4355277303593836544", - "4798990062511292416", - "4377168144468753408" + "type": "redeemMasset", + "inputQty": "1015234999874791827046", + "expectedQtys": [ + "612062487668853279945", + "158931694801654268672", + "245684663448227683218" ], - "expectedQty": "13739429750037282059", + "redemptionFee": "304570499962437548", "reserves": [ - "8837260523465384256723815", - "61239661025366117505007921", - "53816426257949622478810100" + "937268969322041085058802484", + "243376695648672208514985351", + "376224022755235822046212311" ], - "mAssetSupply": "123416644598590038613321213" + "mAssetSupply": "1554192286962027693061809056" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "5373291044425905995776", - "expectedQty": "5328385505524600889112", + "inputIndex": 1, + "inputQty": "3050239255299436423675904", + "expectedQty": "3090294983342366274967145", "reserves": [ - "8837260523465384256723815", - "61239661025366117505007921", - "53821799548994048384805876" + "937268969322041085058802484", + "246426934903971644938661255", + "376224022755235822046212311" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "232825693516774162563072", - "104697665821662343331840", - "67545470737091840180224" - ], - "expectedQty": "419492513825440707076372", - "swapFee": "251846616265023438308", + "type": "mint", + "inputIndex": 2, + "inputQty": "720242904870708997783552", + "expectedQty": "722645942820494583558799", "reserves": [ - "8604434829948610094160743", - "61134963359544455161676081", - "53754254078256956544625652" - ], - "mAssetSupply": "123002480470270122507133953" + "937268969322041085058802484", + "246426934903971644938661255", + "376944265660106531043995863" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "35096703947812172", - "outputIndex": 2, - "expectedQty": "35011037601914984", - "swapFee": "20838397390214", + "type": "redeem", + "inputIndex": 2, + "inputQty": "63353882457658068605861888", + "expectedQty": "63020642700768802737357655", + "swapFee": "38012329474594841163517", "reserves": [ - "8604434829948610094160743", - "61134963394641159109488253", - "53754254043245918942710668" + "937268969322041085058802484", + "246426934903971644938661255", + "313923622959337728306638208" ], - "mAssetSupply": "123002480470290960904524167", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1494689357760007080155636629" }, { - "type": "mintMulti", - "inputQtys": [ - "5122700659998954881024", - "9117523480826017218560", - "74916003535784471691264" + "type": "redeemMasset", + "inputQty": "80910142038055397097472", + "expectedQtys": [ + "50720783333663132420888", + "13335517959037935438865", + "16988135300111753292779" ], - "expectedQty": "88778796461110720723085", + "redemptionFee": "24273042611416619129", "reserves": [ - "8609557530608609049041767", - "61144080918121985126706813", - "53829170046781703414401932" + "937218248538707421926381596", + "246413599386012607003222390", + "313906634824037616553345429" ], - "mAssetSupply": "123091259266752071625247252" + "mAssetSupply": "1494608471891011636175158286" }, { "type": "mintMulti", "inputQtys": [ - "18796611784404769964032", - "2677745634602932240384", - "35005529247709243899904" + "404311045690731708547072", + "558187161660950979805184", + "427327028878241836302336" ], - "expectedQty": "57478707008182090969419", + "expectedQty": "1395969474476322160710733", "reserves": [ - "8628354142393013819005799", - "61146758663756588058947197", - "53864175576029412658301836" + "937622559584398153634928668", + "246971786547673557983027574", + "314333961852915858389647765" ], - "mAssetSupply": "123148737973760253716216671" + "mAssetSupply": "1496004441365487958335869019" }, { - "type": "redeemBassets", - "inputQtys": [ - "380905273996476139175936", - "130112156482829419544576", - "242389316361454595604480" - ], - "expectedQty": "777879033886612268467122", - "swapFee": "467007624906911507985", + "type": "mint", + "inputIndex": 0, + "inputQty": "40877572512770062024704", + "expectedQty": "40531572830444256146112", "reserves": [ - "8247448868396537679829863", - "61016646507273758639402621", - "53621786259667958062697356" - ], - "mAssetSupply": "122370858939873641447749549" + "937663437156910923696953372", + "246971786547673557983027574", + "314333961852915858389647765" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "17645873422457069568", - "46019488287062843392", - "11662598742931918848" - ], - "expectedQty": "76073285139392622989", + "type": "redeem", + "inputIndex": 0, + "inputQty": "10853929071072430260224", + "expectedQty": "10940018374105082895338", + "swapFee": "6512357442643458156", "reserves": [ - "8247466514269960136899431", - "61016692526762045702246013", - "53621797922266700994616204" + "937652497138536818614058034", + "246971786547673557983027574", + "314333961852915858389647765" ], - "mAssetSupply": "122370935013158780840372538" + "mAssetSupply": "1496034125521604772805213063" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "8464184011550164130988032", + "expectedQty": "8392067017842993374020945", + "reserves": [ + "946116681150086982745046066", + "246971786547673557983027574", + "314333961852915858389647765" + ] }, { "type": "mintMulti", "inputQtys": [ - "1503977172310491651899392", - "2767142721574660451860480", - "1843644688194909258121216" + "807609281677719714660352", + "1676288519076390046269440", + "154410289378967571922944" ], - "expectedQty": "6172647894928609710212995", + "expectedQty": "2653282846969588174080955", "reserves": [ - "9751443686580451788798823", - "63783835248336706154106493", - "55465442610461610252737420" + "946924290431764702459706418", + "248648075066749948029297014", + "314488372142294825961570709" ], - "mAssetSupply": "128543582908087390550585533" + "mAssetSupply": "1507079475386417354353314963" }, { "type": "redeemMasset", - "inputQty": "28346087834429472269926", + "inputQty": "35729499634096406108569", "expectedQtys": [ - "2149717227550072705393", - "14061221484697719862101", - "12227422045977220757555" + "22442732252391616628081", + "5893123906718242428916", + "7453582513193133385248" ], - "redemptionFee": "8503826350328841680", + "redemptionFee": "10718849890228921832", "reserves": [ - "9749293969352901716093430", - "63769774026852008434244392", - "55453215188415633031979865" + "946901847699512310843078337", + "248642181942843229786868098", + "314480918559781632828185461" ], - "mAssetSupply": "128515245324079311407157287" + "mAssetSupply": "1507043756605633148176128226" }, { - "type": "redeemBassets", - "inputQtys": [ - "5415941551271300825088", - "6750899698568910602240", - "4759840655895699652608" - ], - "expectedQty": "17148222184416385755256", - "swapFee": "10295110376875957027", + "type": "swap", + "inputIndex": 0, + "inputQty": "1342826701443125477376", + "outputIndex": 2, + "expectedQty": "1322047951758166481863", + "swapFee": "798817004887760435", "reserves": [ - "9743878027801630415268342", - "63763023127153439523642152", - "55448455347759737332327257" + "946903190526213753968555713", + "248642181942843229786868098", + "314479596511829874661703598" ], - "mAssetSupply": "128498097101894895021402031" + "mAssetSupply": "1507043757404450153063888661", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 1, - "inputQty": "3025271315517829380308992", + "inputIndex": 0, + "inputQty": "51014872305065420390400", "outputIndex": 2, - "expectedQty": "3015606908230257469706079", - "swapFee": "1797250786685436464936", + "expectedQty": "50225331381846662538237", + "swapFee": "30347573750867644898", "reserves": [ - "9743878027801630415268342", - "66788294442671268903951144", - "52432848439529479862621178" + "946954205398518819388946113", + "248642181942843229786868098", + "314429371180448027999165361" ], - "mAssetSupply": "128499894352681580457866967", + "mAssetSupply": "1507043787752023903931533559", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "35530064720669340", - "100388169648158784", - "13999142773855032" + "25000020472579754033152", + "23412511525658714701824", + "5239690886083314188288" ], - "expectedQty": "150927150131970760", - "swapFee": "90610656473066", + "expectedQty": "53762368484017251659493", + "swapFee": "32276787162707975781", "reserves": [ - "9743877992271565694599002", - "66788294342283099255792360", - "52432848425530337088766146" + "946929205378046239634912961", + "248618769431317571072166274", + "314424131489561944684977073" ], - "mAssetSupply": "128499894201754430325896207" + "mAssetSupply": "1506990025383539886679874066" }, { - "type": "redeemMasset", - "inputQty": "1056057925197577177792512", - "expectedQtys": [ - "80054638254195732561463", - "548725337840540361498518", - "430782560770176117793733" - ], - "redemptionFee": "316817377559273153337", + "type": "redeem", + "inputIndex": 2, + "inputQty": "171349481947772527575040", + "expectedQty": "170149288270353356061018", + "swapFee": "102809689168663516545", "reserves": [ - "9663823354017369962037539", - "66239569004442558894293842", - "52002065864760160970972413" + "946929205378046239634912961", + "248618769431317571072166274", + "314253982201291591328916055" ], - "mAssetSupply": "127444153093934412421257032" + "mAssetSupply": "1506818778711281282815815571" }, { "type": "redeemBassets", "inputQtys": [ - "524893442899180091604992", - "791346346534417649893376", - "1223434230979273745760256" + "18588555532354216760705024", + "24365784985970301225402368", + "23304415343792176819601408" ], - "expectedQty": "2555501938195923340713245", - "swapFee": "1534221695935115073472", + "expectedQty": "66583027556029330315547319", + "swapFee": "39973800814106061826424", "reserves": [ - "9138929911118189870432547", - "65448222657908141244400466", - "50778631633780887225212157" + "928340649845692022874207937", + "224252984445347269846763906", + "290949566857499414509314647" ], - "mAssetSupply": "124888651155738489080543787" + "mAssetSupply": "1440235751155251952500268252" }, { "type": "redeemBassets", "inputQtys": [ - "10578045243866847232", - "26219356383366472531968", - "12215432489889496563712" + "3717759620122107904", + "1405055616850761875456", + "1982378916744907194368" ], - "expectedQty": "38075589354341390507612", - "swapFee": "22859069054037256658", + "expectedQty": "3426730793617382333483", + "swapFee": "2057272839874354012", "reserves": [ - "9138919333072946003585315", - "65422003301524774771868498", - "50766416201290997728648445" + "928340646127932402752100033", + "224251579389730419084888450", + "290947584478582669602120279" ], - "mAssetSupply": "124850575566384147690036175" + "mAssetSupply": "1440232324424458335117934769" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "140627369014536634368", - "expectedQty": "142072440950017011779", - "swapFee": "84376421408721980", - "reserves": [ - "9138919333072946003585315", - "65421861229083824754856719", - "50766416201290997728648445" + "type": "redeemMasset", + "inputQty": "2156894045220084531", + "expectedQtys": [ + "1389867230375876260", + "335738742942931196", + "435592812951198243" ], - "mAssetSupply": "124850435023391554562123787" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "163012781031611695104", - "outputIndex": 1, - "expectedQty": "175388202528350473360", - "swapFee": "104162582294378804", + "redemptionFee": "647068213566025", "reserves": [ - "9139082345853977615280419", - "65421685840881296404383359", - "50766416201290997728648445" + "928340644738065172376223773", + "224251579053991676141957254", + "290947584042989856650922036" ], - "mAssetSupply": "124850435127554136856502591", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1440232322268211358111416263" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "20436073719539999703040", - "4397966316936096645120", - "16483516680699576844288" + "7317348551878515053559808", + "6347259574660253106569216", + "9422050548549568727875584" ], - "expectedQty": "42481585109275144882811", - "swapFee": "25504253617735728366", + "expectedQty": "23178550977277995153681696", "reserves": [ - "9118646272134437615577379", - "65417287874564360307738239", - "50749932684610298151804157" + "935657993289943687429783581", + "230598838628651929248526470", + "300369634591539425378797620" ], - "mAssetSupply": "124807953542444861711619780" + "mAssetSupply": "1463410873245489353265097959" }, { - "type": "redeemMasset", - "inputQty": "6480240211420", - "expectedQtys": [ - "473313512994", - "3395557345956", - "2634231903108" - ], - "redemptionFee": "1944072063", + "type": "redeem", + "inputIndex": 1, + "inputQty": "273926341656218410418176", + "expectedQty": "269922214105122409621461", + "swapFee": "164355804993731046250", "reserves": [ - "9118646272133964302064385", - "65417287874560964750392283", - "50749932684607663919901049" + "935657993289943687429783581", + "230328916414546806838905009", + "300369634591539425378797620" ], - "mAssetSupply": "124807953542438383415480423" + "mAssetSupply": "1463137111259638128585726033" }, { "type": "redeemBassets", "inputQtys": [ - "770754541145414149603328", - "1364182827572958924374016", - "1545767895355580708028416" - ], - "expectedQty": "3707407920704084543955360", - "swapFee": "2225780220554783596531", - "reserves": [ - "8347891730988550152461057", - "64053105046988005826018267", - "49204164789252083211872633" - ], - "mAssetSupply": "121100545621734298871525063" - }, - { - "type": "redeemMasset", - "inputQty": "625917608887460467782451", - "expectedQtys": [ - "43133785045843927104024", - "330964146834768155483271", - "254239266125287126428292" + "39675658991668023001088", + "625347811750850980741120", + "238471447223143308984320" ], - "redemptionFee": "187775282666238140334", + "expectedQty": "913732870025782500760162", + "swapFee": "548568863333469582205", "reserves": [ - "8304757945942706225357033", - "63722140900153237670534996", - "48949925523126796085444341" + "935618317630952019406782493", + "229703568602795955858163889", + "300131163144316282069813300" ], - "mAssetSupply": "120474815788129504641882946" + "mAssetSupply": "1462223378389612346084965871" }, { "type": "mint", "inputIndex": 2, - "inputQty": "13462209400038714507264", - "expectedQty": "13358313708136450071501", + "inputQty": "1324859289486857827516416", + "expectedQty": "1334080815731383118821075", "reserves": [ - "8304757945942706225357033", - "63722140900153237670534996", - "48963387732526834799951605" + "935618317630952019406782493", + "229703568602795955858163889", + "301456022433803139897329716" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "400534855475432016314368", - "expectedQty": "404966366948633094163712", - "swapFee": "240320913285259209788", + "inputIndex": 2, + "inputQty": "236314662151933604659200", + "expectedQty": "234549000950596633469670", + "swapFee": "141788797291160162795", "reserves": [ - "8304757945942706225357033", - "63317174533204604576371284", - "48963387732526834799951605" + "935618317630952019406782493", + "229703568602795955858163889", + "301221473432852543263860046" ], - "mAssetSupply": "120087879567275494334849867" + "mAssetSupply": "1463321286331989086759290541" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "4282625833742237171712", - "expectedQty": "4329811057926528430945", - "swapFee": "2569575500245342303", + "inputQty": "20654289796004180918272", + "outputIndex": 2, + "expectedQty": "20793649316399295269603", + "swapFee": "12570218774335700670", "reserves": [ - "8304757945942706225357033", - "63312844722146678047940339", - "48963387732526834799951605" + "935618317630952019406782493", + "229724222892591960039082161", + "301200679783536143968590443" ], - "mAssetSupply": "120083599511017252343020458" + "mAssetSupply": "1463321298902207861094991211", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "762749680631370408263680", - "expectedQty": "771086859507265900116487", - "swapFee": "457649808378822244958", + "type": "mint", + "inputIndex": 2, + "inputQty": "18935128687045", + "expectedQty": "19066403524821", "reserves": [ - "8304757945942706225357033", - "62541757862639412147823852", - "48963387732526834799951605" - ], - "mAssetSupply": "119321307480194260757001736" + "935618317630952019406782493", + "229724222892591960039082161", + "301200679783555079097277488" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1517509561457601150976", - "1384493185668115857408", - "1974666320397219659776" + "type": "swap", + "inputIndex": 2, + "inputQty": "5983628351887219802243072", + "outputIndex": 1, + "expectedQty": "5932488532659906245010745", + "swapFee": "3614352907312227971779", + "reserves": [ + "935618317630952019406782493", + "223791734359932053794071416", + "307184308135442298899520560" ], - "expectedQty": "4955295719548631146459", - "swapFee": "2974962409174683497", + "mAssetSupply": "1463324913255134239726487811", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "35038299644732018688", + "expectedQty": "35344971510489394815", + "swapFee": "21022979786839211", "reserves": [ - "8303240436381248624206057", - "62540373369453744031966444", - "48961413066206437580291829" + "935618282285980508917387678", + "223791734359932053794071416", + "307184308135442298899520560" ], - "mAssetSupply": "119316352184474712125855277" + "mAssetSupply": "1463324878237857574781308334" }, { "type": "mintMulti", "inputQtys": [ - "96543554096432185344", - "78292451075221585920", - "101687394878350049280" + "579446612898897486413824", + "277012633857740995821568", + "198264055189080540971008" ], - "expectedQty": "281823370864164341527", + "expectedQty": "1054858400806318308732712", "reserves": [ - "8303336979935345056391401", - "62540451661904819253552364", - "48961514753601315930341109" + "936197728898879406403801502", + "224068746993789794789892984", + "307382572190631379440491568" ], - "mAssetSupply": "119316634007845576290196804" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "123600053405635739648", - "expectedQty": "122639246917194265561", - "reserves": [ - "8303336979935345056391401", - "62540451661904819253552364", - "48961638353654721566080757" - ] + "mAssetSupply": "1464379736638663893090041046" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "286267147003299406807040", - "expectedQty": "288326525668744610805120", - "swapFee": "171760288201979644084", + "inputQty": "281187474285143596728320", + "expectedQty": "279203177398878696293035", + "swapFee": "168712484571086158036", "reserves": [ - "8303336979935345056391401", - "62540451661904819253552364", - "48673311827985976955275637" + "936197728898879406403801502", + "224068746993789794789892984", + "307103369013232500744198533" ], - "mAssetSupply": "119030661260377396057299409" + "mAssetSupply": "1464098717876863320579470762" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "119673901750401118502912", - "expectedQty": "120971750556167504009547", - "swapFee": "71804341050240671101", + "inputQty": "14700334085715273973760", + "expectedQty": "14924000442346247163462", + "reserves": [ + "936197728898879406403801502", + "224083447327875510063866744", + "307103369013232500744198533" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1022829358531834544128", + "130823764408155013120", + "796375724403343622144" + ], + "expectedQty": "1947721981798334146450", + "swapFee": "1169334789952972271", "reserves": [ - "8303336979935345056391401", - "62419479911348651749542817", - "48673311827985976955275637" + "936196706069520874569257374", + "224083316504111101908853624", + "307102572637508097400576389" ], - "mAssetSupply": "118911059162968045179467598" + "mAssetSupply": "1464111694155323868492487774" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "4159428699269883232256", - "expectedQty": "4189222752892167079872", - "swapFee": "2495657219561929939", + "type": "mintMulti", + "inputQtys": [ + "3043813618314539117314048", + "6318297799491259243429888", + "5429932587249442266021888" + ], + "expectedQty": "14892588439879387899307689", "reserves": [ - "8303336979935345056391401", - "62419479911348651749542817", - "48669122605233084788195765" + "939240519687835413686571422", + "230401614303602361152283512", + "312532505224757539666598277" ], - "mAssetSupply": "118906902229925994858165281" + "mAssetSupply": "1479004282595203256391795463" }, { "type": "redeemMasset", - "inputQty": "249412705756765696819", + "inputQty": "16959946385266560204", "expectedQtys": [ - "17411406880734794658", - "130888456610465758958", - "102055101250952606122" + "10767169644820475634", + "2641254519632403185", + "3582778247678371640" ], - "redemptionFee": "74823811727029709", + "redemptionFee": "5087983915579968", "reserves": [ - "8303319568528464321596743", - "62419349022892041283783859", - "48669020550131833835589643" + "939240508920665768866095788", + "230401611662347841519880327", + "312532501641979291988226637" ], - "mAssetSupply": "118906652892044049819498171" + "mAssetSupply": "1479004265640344855040815227" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "313090524039874458157056", - "expectedQty": "291253735597398601471245", - "swapFee": "187854314423924674894", + "inputQty": "42905540547080024489984", + "expectedQty": "42519128769255596014482", "reserves": [ - "8012065832931065720125498", - "62419349022892041283783859", - "48669020550131833835589643" - ], - "mAssetSupply": "118593750222318599286016009" + "939283414461212848890585772", + "230401611662347841519880327", + "312532501641979291988226637" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "7236848627340761104384", - "5939679809899567513600", - "980316686545323163648" + "type": "mint", + "inputIndex": 1, + "inputQty": "6761298398790558144266240", + "expectedQty": "6855833800281827055661996", + "reserves": [ + "939283414461212848890585772", + "237162910061138399664146567", + "312532501641979291988226637" + ] + }, + { + "type": "redeemMasset", + "inputQty": "654730189049443072029491", + "expectedQtys": [ + "413750340483855421315711", + "104469251002611052748567", + "137669234839853368884084" ], - "expectedQty": "14636784752547412310870", - "swapFee": "8787343257482937148", + "redemptionFee": "196419056714832921608", "reserves": [ - "8004828984303724959021114", - "62413409343082141716270259", - "48668040233445288512425995" + "938869664120728993469270061", + "237058440810135788611398000", + "312394832407139438619342553" ], - "mAssetSupply": "118579113437566051873705139" + "mAssetSupply": "1485248084799403209453383822" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1053175991588361900916736", - "expectedQty": "1044561279551481212315343", + "type": "redeemMasset", + "inputQty": "2242025516322964875562188", + "expectedQtys": [ + "1416826100685676848976749", + "357739310538061551087771", + "471427685000639127470097" + ], + "redemptionFee": "672607654896889462668", "reserves": [ - "8004828984303724959021114", - "62413409343082141716270259", - "49721216225033650413342731" - ] + "937452838020043316620293312", + "236700701499597727060310229", + "311923404722138799491872456" + ], + "mAssetSupply": "1483006731890735141467284302" }, { "type": "redeemBassets", "inputQtys": [ - "421963396641313219674112", - "353602238641688912330752", - "234989642086232082087936" + "3845470673738445126369280", + "1668151436595063280369664", + "266179055416459460083712" ], - "expectedQty": "1038988474802130321924777", - "swapFee": "623767345288451263913", + "expectedQty": "5770298056334550343555403", + "swapFee": "3464257388233670408378", "reserves": [ - "7582865587662411739347002", - "62059807104440452803939507", - "49486226582947418331254795" + "933607367346304871493924032", + "235032550063002663779940565", + "311657225666722340031788744" ], - "mAssetSupply": "118584686242315402764095705" + "mAssetSupply": "1477236433834400591123728899" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "26223581439342616", - "18406013721556412", - "13484640277514608" + "126737112330741960763506688", + "38479020367324095015026688", + "44112520968012746863935488" ], - "expectedQty": "60030358231955661", - "swapFee": "36039838842478", + "expectedQty": "209011661384888703623768633", "reserves": [ - "7582865561438830300004386", - "62059807086034439082383095", - "49486226569462778053740187" + "1060344479677046832257430720", + "273511570430326758794967253", + "355769746634735086895724232" ], - "mAssetSupply": "118584686182285044532140044" + "mAssetSupply": "1686248095219289294747497532" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "392251080043534626062336", - "outputIndex": 2, - "expectedQty": "390592834852738466299077", - "swapFee": "232448349874986663461", + "type": "redeemBassets", + "inputQtys": [ + "822816843683658966499328", + "4385997950400897285619712", + "3462296960379969922400256" + ], + "expectedQty": "8743325594837862569195982", + "swapFee": "5249144843809002943283", "reserves": [ - "7582865561438830300004386", - "62452058166077973708445431", - "49095633734610039587441110" + "1059521662833363173290931392", + "269125572479925861509347541", + "352307449674355116973323976" ], - "mAssetSupply": "118584918630634919518803505", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1677504769624451432178301550" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "909099669137164804816896", - "expectedQty": "979362981390967138547876", + "inputQty": "11596558241237718532096", + "expectedQty": "11692027455309022230242", + "swapFee": "6957934944742631119", "reserves": [ - "8491965230575995104821282", - "62452058166077973708445431", - "49095633734610039587441110" - ] + "1059509970805907864268701150", + "269125572479925861509347541", + "352307449674355116973323976" + ], + "mAssetSupply": "1677493180024145139202400573" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "120235950703397105041408", - "outputIndex": 0, - "expectedQty": "111036727276377870921709", - "swapFee": "71344227878587424491", + "type": "mintMulti", + "inputQtys": [ + "1644586597064421933056", + "4448288952469239627776", + "8691541412908225265664" + ], + "expectedQty": "14884624972854758089138", "reserves": [ - "8380928503299617233899573", - "62572294116781370813486839", - "49095633734610039587441110" + "1059511615392504928690634206", + "269130020768878330748975317", + "352316141215768025198589640" ], - "mAssetSupply": "119564352956253765244775872", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1677508064649117993960489711" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "6296937453975098517094400", - "expectedQty": "6337014848677873098150451", - "swapFee": "3778162472385059110256", + "inputQty": "10442705401635424", + "expectedQty": "10370553389595952", + "swapFee": "6265623240981", "reserves": [ - "8380928503299617233899573", - "62572294116781370813486839", - "42758618885932166489290659" + "1059511615392504928690634206", + "269130020768878330748975317", + "352316141205397471808993688" ], - "mAssetSupply": "113271193664751051786791728" + "mAssetSupply": "1677508064638681554182095268" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "886017320688978362368", - "outputIndex": 0, - "expectedQty": "826625290269878187005", - "swapFee": "528375631545080761", + "type": "mintMulti", + "inputQtys": [ + "30432201919532132990976", + "782622851574231334912", + "30470528852475137490944" + ], + "expectedQty": "61622784399145173840048", "reserves": [ - "8380101878009347355712568", - "62572294116781370813486839", - "42759504903252855467653027" + "1059542047594424460823625182", + "269130803391729904980310229", + "352346611734249946946484632" ], - "mAssetSupply": "113271194193126683331872489", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1677569687423080699355935316" }, { "type": "mintMulti", "inputQtys": [ - "10829332698718833475584", - "43103584834391979851776", - "22945203128505370411008" + "12190289948551119772844032", + "10796219362639066592968704", + "3172478486689596928163840" ], - "expectedQty": "76941054992423155592103", + "expectedQty": "26213249932669833054097651", "reserves": [ - "8390931210708066189188152", - "62615397701615762793338615", - "42782450106381360838064035" + "1071732337542975580596469214", + "279927022754368971573278933", + "355519090220939543874648472" ], - "mAssetSupply": "113348135248119106487464592" + "mAssetSupply": "1703782937355750532410032967" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "840124880823347183616", - "expectedQty": "849424831083793320112", - "swapFee": "504074928494008310", + "type": "swap", + "inputIndex": 0, + "inputQty": "1193157997920212480", + "outputIndex": 2, + "expectedQty": "1174630228961193714", + "swapFee": "709751766726376", "reserves": [ - "8390931210708066189188152", - "62614548276784679000018503", - "42782450106381360838064035" + "1071732338736133578516681694", + "279927022754368971573278933", + "355519089046309314913454758" ], - "mAssetSupply": "113347295627313211634289286" + "mAssetSupply": "1703782937356460284176759343", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "206944246589368125358080", - "outputIndex": 1, - "expectedQty": "207949400785106814238316", - "swapFee": "123408160448386423627", + "type": "mintMulti", + "inputQtys": [ + "890221998139686707527680", + "805775812866046961909760", + "7209125633703911547207680" + ], + "expectedQty": "8952848165211973350539560", "reserves": [ - "8390931210708066189188152", - "62406598875999572185780187", - "42989394352970728963422115" + "1072622560734273265224209374", + "280732798567235018535188693", + "362728214680013226460662438" ], - "mAssetSupply": "113347419035473660020712913", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1712735785521672257527298903" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2167155752882780766208", - "expectedQty": "2191011634468280725425", - "swapFee": "1300293451729668459", + "type": "mintMulti", + "inputQtys": [ + "50472765030895104032768", + "377037461353426071846912", + "301852870467034147717120" + ], + "expectedQty": "735487821075169853764482", "reserves": [ - "8390931210708066189188152", - "62404407864365103905054762", - "42989394352970728963422115" + "1072673033499304160328242142", + "281109836028588444607035605", + "363030067550480260608379558" ], - "mAssetSupply": "113345253180014228969615164" + "mAssetSupply": "1713471273342747427381063385" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "55909292584819165757440", - "expectedQty": "59492927396253232547925", + "inputIndex": 1, + "inputQty": "209885068207631804399616", + "expectedQty": "212502909707743748835512", "reserves": [ - "8446840503292885354945592", - "62404407864365103905054762", - "42989394352970728963422115" + "1072673033499304160328242142", + "281319721096796076411435221", + "363030067550480260608379558" ] }, { "type": "redeemMasset", - "inputQty": "559221251685990321356", + "inputQty": "56931813417408829849", "expectedQtys": [ - "41640546673020400672", - "307636169673771609262", - "211925616602078674146" + "35625534349328020330", + "9343168956511097478", + "12056926703161029680" ], - "redemptionFee": "167766375505797096", + "redemptionFee": "17079544025222648", "reserves": [ - "8446798862746212334544920", - "62404100228195430133445500", - "42989182427354126884747969" + "1072672997873769811000221812", + "281319711753627119900337743", + "363030055493553557447349878" ], - "mAssetSupply": "113404187053925171717638829" + "mAssetSupply": "1713683719337721297746291696" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "501063873710021551325184", - "922103234589599371100160", - "656463443010529458651136" + "1809079052916921414451200", + "1505998259657969137352704", + "1981090648415627814895616" ], - "expectedQty": "2096035810978963556913983", + "expectedQty": "5311812800089782287960927", + "swapFee": "3189001080702290747224", "reserves": [ - "8947862736456233885870104", - "63326203462785029504545660", - "43645645870364656343399105" + "1070863918820852889585770612", + "279813713493969150762985039", + "361048964845137929632454262" ], - "mAssetSupply": "115500222864904135274552812" + "mAssetSupply": "1708371906537631515458330769" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "569303851322323894272", - "expectedQty": "563086574302796540827", + "type": "redeemBassets", + "inputQtys": [ + "4274159871494765674496", + "5083307602314148184064", + "4866427708090365247488" + ], + "expectedQty": "14281371683417327635663", + "swapFee": "8573967390484687393", "reserves": [ - "8947862736456233885870104", - "63326772766636351828439932", - "43645645870364656343399105" - ] + "1070859644660981394820096116", + "279808630186366836614800975", + "361044098417429839267206774" + ], + "mAssetSupply": "1708357625165948098130695106" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "3597754707866508328960", - "outputIndex": 1, - "expectedQty": "3614327879559312900122", - "swapFee": "2146202722028358732", + "type": "redeemMasset", + "inputQty": "16460985591483092172", + "expectedQtys": [ + "10315238858724879063", + "2695304533600898533", + "3477819088875841675" + ], + "redemptionFee": "4938295677444927", "reserves": [ - "8947862736456233885870104", - "63323158438756792515539810", - "43649243625072522851728065" + "1070859634345742536095217053", + "279808627491062303013902442", + "361044094939610750391365099" ], - "mAssetSupply": "115500788097681160099452371", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1708357608709900802325047861" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "32571150039873073709056", - "expectedQty": "32215361966741108358381", - "reserves": [ - "8947862736456233885870104", - "63355729588796665589248866", - "43649243625072522851728065" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "3637402269111400529920", - "expectedQty": "3616426253123917922720", + "inputQty": "1803578369225787441152", + "expectedQty": "1780141935525658258956", + "swapFee": "1082147021535472464", "reserves": [ - "8947862736456233885870104", - "63355729588796665589248866", - "43652881027341634252257985" - ] + "1070859634345742536095217053", + "279806847349126777355643486", + "361044094939610750391365099" + ], + "mAssetSupply": "1708355806213678598073079173" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4738171363473360945152", - "expectedQty": "5015591907795163515836", + "type": "redeemBassets", + "inputQtys": [ + "10451729914053909282816", + "136809269521718408380416", + "45640527413663554863104" + ], + "expectedQty": "194812339591935556475962", + "swapFee": "116957578302142619457", "reserves": [ - "8952600907819707246815256", - "63355729588796665589248866", - "43652881027341634252257985" - ] + "1070849182615828482185934237", + "279670038079605058947263070", + "360998454412197086836501995" + ], + "mAssetSupply": "1708160993874086662516603211" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2129585901231142208536576", - "outputIndex": 2, - "expectedQty": "2238193493897292752729283", - "swapFee": "1338320075680727393500", + "type": "mintMulti", + "inputQtys": [ + "12445900411553155072", + "1510881608676311296", + "13522083182917095424" + ], + "expectedQty": "27475330892818361082", "reserves": [ - "11082186809050849455351832", - "63355729588796665589248866", - "41414687533444341499528702" + "1070849195061728893739089309", + "279670039590486667623574366", + "360998467934280269753597419" ], - "mAssetSupply": "115542973797884501016642808", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1708161021349417555334964293" }, { "type": "redeemMasset", - "inputQty": "9657045715295059679641", + "inputQty": "198200037729548186419", "expectedQtys": [ - "925967843550610485416", - "5293663544455098213643", - "3460388239922679831424" + "124214682050884367052", + "32440725740927521058", + "41874532961411182232" ], - "redemptionFee": "2897113714588517903", + "redemptionFee": "59460011318864455", "reserves": [ - "11081260841207298844866416", - "63350435925252210491035223", - "41411227145204418819697278" + "1070849070847046842854722257", + "279670007149760926696053308", + "360998426059747308342415187" ], - "mAssetSupply": "115533319649282920545481070" + "mAssetSupply": "1708160823208839837105642329" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "20304482369016552226816", - "expectedQty": "20475089026966050321783", - "swapFee": "12182689421409931336", - "reserves": [ - "11081260841207298844866416", - "63329960836225244440713440", - "41411227145204418819697278" + "type": "mintMulti", + "inputQtys": [ + "1930482787289363040436224", + "5745691556210480397680640", + "71412784133980712062681088" ], - "mAssetSupply": "115513027349603325403185590" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "1213912637156454301696", - "outputIndex": 2, - "expectedQty": "1262960329165391098450", - "swapFee": "755383696536903853", + "expectedQty": "79475956452069940333644728", "reserves": [ - "11082474753844455299168112", - "63329960836225244440713440", - "41409964184875253428598828" + "1072779553634336205895158481", + "285415698705971407093733948", + "432411210193728020405096275" ], - "mAssetSupply": "115513028104987021940089443", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1787636779660909777439287057" }, { - "type": "redeemMasset", - "inputQty": "7361205591446475977523", - "expectedQtys": [ - "706032058465322970890", - "4034566611236148750833", - "2638107724475590435189" + "type": "redeemBassets", + "inputQtys": [ + "62487708255204021370880", + "56615286875848991309824", + "32392514133045379334144" ], - "redemptionFee": "2208361677433942793", + "expectedQty": "151851837920901527300571", + "swapFee": "91165802233881245127", "reserves": [ - "11081768721785989976197222", - "63325926269614008291962607", - "41407326077150777838163639" + "1072717065926081001873787601", + "285359083419095558102424124", + "432378817679594975025762131" ], - "mAssetSupply": "115505669107757252898054713" + "mAssetSupply": "1787484927822988875911986486" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "158740642436649031041024", - "expectedQty": "160071611882933753062661", - "swapFee": "95244385461989418624", + "inputIndex": 0, + "inputQty": "5858851511589931426250752", + "expectedQty": "5899229296520774763395007", + "swapFee": "3515310906953958855750", "reserves": [ - "11081768721785989976197222", - "63165854657731074538899946", - "41407326077150777838163639" + "1066817836629560227110392594", + "285359083419095558102424124", + "432378817679594975025762131" ], - "mAssetSupply": "115347023709706065856432313" + "mAssetSupply": "1781629591622305898444591484" }, { - "type": "redeemBassets", - "inputQtys": [ - "28259109577741289127936", - "29262023640353656012800", - "24512419459068260777984" + "type": "redeemMasset", + "inputQty": "3806694137093753665486848", + "expectedQtys": [ + "2278717702250779430597993", + "609525612113422556933741", + "923559048316585609910749" ], - "expectedQty": "82727844415854816851038", - "swapFee": "49666506553444957084", + "redemptionFee": "1142008241128126099646", "reserves": [ - "11053509612208248687069286", - "63136592634090720882887146", - "41382813657691709577385655" + "1064539118927309447679794601", + "284749557806982135545490383", + "431455258631278389415851382" ], - "mAssetSupply": "115264295865290211039581275" + "mAssetSupply": "1777824039493453272905204282" }, { "type": "redeemBassets", "inputQtys": [ - "320997486063317680128", - "2815229776587185979392", - "752764256026270236672" + "13195814306384237821952", + "7579427027880597520384", + "8695535115746750234624" ], - "expectedQty": "3872973700790698652990", - "swapFee": "2325179328071261948", + "expectedQty": "29496155049478084177065", + "swapFee": "17708318020499149996", "reserves": [ - "11053188614722185369389158", - "63133777404314133696907754", - "41382060893435683307148983" + "1064525923113003063441972649", + "284741978379954254947969999", + "431446563096162642665616758" ], - "mAssetSupply": "115260422891589420340928285" + "mAssetSupply": "1777794543338403794821027217" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "29995652435329720320", - "expectedQty": "31109559048060943403", + "type": "swap", + "inputIndex": 1, + "inputQty": "2318760837863457362542592", + "outputIndex": 2, + "expectedQty": "2338331241739651603391157", + "swapFee": "1408503051771532327061", "reserves": [ - "11053218610374620699109478", - "63133777404314133696907754", - "41382060893435683307148983" - ] + "1064525923113003063441972649", + "287060739217817712310512591", + "429108231854422991062225601" + ], + "mAssetSupply": "1777795951841455566353354278", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "137861400352719110563430", + "inputQty": "2162325779424008398385971", "expectedQtys": [ - "13216632413724424442271", - "75490765021107316520243", - "49481649339455443670288" + "1294389993674415228072963", + "349046031057414425436690", + "521765970612934454011528" ], - "redemptionFee": "41358420105815733169", + "redemptionFee": "648697733827202519515", "reserves": [ - "11040001977960896274667207", - "63058286639293026380387511", - "41332579244096227863478695" + "1063231533119328648213899686", + "286711693186760297885075901", + "428586465883810056608214073" ], - "mAssetSupply": "115122633959215855107041427" + "mAssetSupply": "1775634274759765385157487822" }, { - "type": "redeemMasset", - "inputQty": "12833917808877032282521", - "expectedQtys": [ - "1230374663784806121780", - "7027654377014541576656", - "4606390324234947282803" + "type": "mintMulti", + "inputQtys": [ + "184973855223853472", + "1421702548506942720", + "691738956661360896" ], - "redemptionFee": "3850175342663109684", + "expectedQty": "2316807898899848411", "reserves": [ - "11038771603297111468545427", - "63051258984916011838810855", - "41327972853771992916195892" + "1063231533304302503437753158", + "286711694608462846392018621", + "428586466575549013269574969" ], - "mAssetSupply": "115109803891582320737868590" + "mAssetSupply": "1775634277076573284057336233" }, { - "type": "redeemBassets", - "inputQtys": [ - "25652346993920203292672", - "99483397438139556429824", - "119897505698128255254528" - ], - "expectedQty": "244646575986048044249431", - "swapFee": "146876071234369448218", + "type": "mint", + "inputIndex": 0, + "inputQty": "42775521365645456377380864", + "expectedQty": "42450357802033311511593118", "reserves": [ - "11013119256303191265252755", - "62951775587477872282381031", - "41208075348073864660941364" - ], - "mAssetSupply": "114865157315596272693619159" + "1106007054669947959815134022", + "286711694608462846392018621", + "428586466575549013269574969" + ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "101155134064012918784", + "inputQty": "16351069246345938944", "outputIndex": 1, - "expectedQty": "101620398868976097226", - "swapFee": "60464386493212440", + "expectedQty": "16189586966194822469", + "swapFee": "9848118224172766", "reserves": [ - "11013119256303191265252755", - "62951673967079003306283805", - "41208176503207928673860148" + "1106007054669947959815134022", + "286711678418875880197196152", + "428586482926618259615513913" ], - "mAssetSupply": "114865157376060659186831599", + "mAssetSupply": "1818084634888454713793102117", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 0, - "inputQty": "895062273097936205250560", + "inputIndex": 1, + "inputQty": "13065702054574988852199424", "outputIndex": 2, - "expectedQty": "928254884563009471680356", - "swapFee": "555500153308933432989", + "expectedQty": "13167393256630992270911445", + "swapFee": "7938092779750041836503", "reserves": [ - "11908181529401127470503315", - "62951673967079003306283805", - "40279921618644919202179792" + "1106007054669947959815134022", + "299777380473450869049395576", + "415419089669987267344602468" ], - "mAssetSupply": "114865712876213968120264588", + "mAssetSupply": "1818092572981234463834938620", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "521958740471996544450560", - "90619062089447959953408", - "36224390749148296511488" + "19365747123804119760896", + "129720839143076225089536", + "79037205857309617553408" ], - "expectedQty": "665018305651704070929907", - "swapFee": "399250533711249192073", + "expectedQty": "229861476034393194637180", "reserves": [ - "11386222788929130926052755", - "62861054904989555346330397", - "40243697227895770905668304" + "1106026420417071763934894918", + "299907101312593945274485112", + "415498126875844576962155876" ], - "mAssetSupply": "114200694570562264049334681" + "mAssetSupply": "1818322434457268857029575800" }, { "type": "redeemMasset", - "inputQty": "658786544311400569136742", + "inputQty": "5193924569732560799662080", "expectedQtys": [ - "65663699025366234611120", - "362516127271954015272739", - "232083112321486904367431" + "3158347664643858515389020", + "856408920759375876946295", + "1186488418773369380350389" ], - "redemptionFee": "197635963293420170741", + "redemptionFee": "1558177370919768239898", "reserves": [ - "11320559089903764691441635", - "62498538777717601331057658", - "40011614115574284001300873" + "1102868072752427905419505898", + "299050692391834569397538817", + "414311638457071207581805487" ], - "mAssetSupply": "113542105662214156900368680" + "mAssetSupply": "1813130068064907215998153618" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1904660698219835555840", - "expectedQty": "1898292559164621165984", + "inputIndex": 0, + "inputQty": "4264919126314554367148032", + "expectedQty": "4232077542714535228003215", "reserves": [ - "11320559089903764691441635", - "62498538777717601331057658", - "40013518776272503836856713" + "1107132991878742459786653930", + "299050692391834569397538817", + "414311638457071207581805487" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "19694051218179959554048", - "expectedQty": "19523153514829811732744", + "type": "redeemBassets", + "inputQtys": [ + "92931224400432537272320", + "88357516576836680679424", + "89436011503810074640384" + ], + "expectedQty": "271460874537243669321178", + "swapFee": "162974309307930960168", "reserves": [ - "11320559089903764691441635", - "62518232828935781290611706", - "40013518776272503836856713" - ] + "1107040060654342027249381610", + "298962334875257732716859393", + "414222202445567397507165103" + ], + "mAssetSupply": "1817090684733084507556835655" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "456722154668567486791680", - "expectedQty": "455169862558098421636438", + "type": "redeem", + "inputIndex": 0, + "inputQty": "170721838392730355499008", + "expectedQty": "171947393908617946148103", + "swapFee": "102433103035638213299", "reserves": [ - "11320559089903764691441635", - "62518232828935781290611706", - "40470240930941071323648393" - ] + "1106868113260433409303233507", + "298962334875257732716859393", + "414222202445567397507165103" + ], + "mAssetSupply": "1816920065327794812839549946" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4228195341327216410624", - "expectedQty": "4191625385868550020935", + "type": "mintMulti", + "inputQtys": [ + "18709330670863194783744", + "6846658486090298556416", + "17449485435755030380544" + ], + "expectedQty": "43020435160848084142936", "reserves": [ - "11320559089903764691441635", - "62522461024277108507022330", - "40470240930941071323648393" - ] + "1106886822591104272498017251", + "298969181533743823015415809", + "414239651931003152537545647" + ], + "mAssetSupply": "1816963085762955660923692882" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "363098947866098753601536", - "expectedQty": "364122714191493334079982", - "swapFee": "217859368719659252160", + "type": "redeemBassets", + "inputQtys": [ + "4732654169372772593041408", + "6466880409280452000481280", + "445486626431657477931008" + ], + "expectedQty": "11689052674347558601869422", + "swapFee": "7017642189922488654314", "reserves": [ - "11320559089903764691441635", - "62522461024277108507022330", - "40106118216749577989568411" + "1102154168421731499904975843", + "292502301124463371014934529", + "413794165304571495059614639" ], - "mAssetSupply": "113660007507734739210575405" + "mAssetSupply": "1805274033088608102321823460" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3522148835815070892032", - "2875719445554404524032", - "3632559275936314818560" + "1550367297139027456", + "4578502270507090432", + "1805673453565231360" ], - "expectedQty": "10114046889662439765985", - "swapFee": "6072071376623437922", + "expectedQty": "7987247645681495149", "reserves": [ - "11317036941067949620549603", - "62519585304831554102498298", - "40102485657473641674749851" + "1102154169972098797044003299", + "292502305702965641522024961", + "413794167110244948624845999" ], - "mAssetSupply": "113649893460845076770809420" + "mAssetSupply": "1805274041075855748003318609" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4107975326615967105024", - "outputIndex": 0, - "expectedQty": "3934849274571788336409", - "swapFee": "2443398944709644728", + "type": "mint", + "inputIndex": 0, + "inputQty": "1544994035504826187513856", + "expectedQty": "1532900477424153996620575", "reserves": [ - "11313102091793377832213194", - "62523693280158170069603322", - "40102485657473641674749851" - ], - "mAssetSupply": "113649895904244021480454148", - "hardLimitError": false, - "insufficientLiquidityError": false + "1103699164007603623231517155", + "292502305702965641522024961", + "413794167110244948624845999" + ] }, { "type": "redeemMasset", - "inputQty": "326251992700557860431462", + "inputQty": "1298341774150103798592307", "expectedQtys": [ - "32466504215287439550243", - "179431400420943774121781", - "115086694089532267993777" + "792862150438089387580935", + "210124293530909161696988", + "297256484260149991322984" ], - "redemptionFee": "97875597810167358129", + "redemptionFee": "389502532245031139577", "reserves": [ - "11280635587578090392662951", - "62344261879737226295481541", - "39987398963384109406756074" + "1102906301857165533843936220", + "292292181409434732360327973", + "413496910625984798633523015" ], - "mAssetSupply": "113323741787141273787380815" + "mAssetSupply": "1805508989281662043232486454" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "42860677941114901102592", - "outputIndex": 2, - "expectedQty": "42606117626496207934111", - "swapFee": "25493083588863198879", + "inputIndex": 0, + "inputQty": "187043954476923362476032", + "outputIndex": 1, + "expectedQty": "183179246102320934061741", + "swapFee": "111346906705002293785", "reserves": [ - "11280635587578090392662951", - "62387122557678341196584133", - "39944792845757613198821963" + "1103093345811642457206412252", + "292109002163332411426266232", + "413496910625984798633523015" ], - "mAssetSupply": "113323767280224862650579694", + "mAssetSupply": "1805509100628568748234780239", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "419069538963237830656", - "1574102124415955238912", - "751676731930976976896" + "9000171775570709839872", + "4236659783685027397632", + "19802904967608755290112" ], - "expectedQty": "2743038417843364617767", + "expectedQty": "33108753776570425748819", "reserves": [ - "11281054657117053630493607", - "62388696659802757151823045", - "39945544522489544175798859" + "1103102345983418027916252124", + "292113238823116096453663864", + "413516713530952407388813127" ], - "mAssetSupply": "113326510318642706015197461" + "mAssetSupply": "1805542209382345318660529058" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "564873132573462495232", - "expectedQty": "566434063331653630157", - "swapFee": "338923879544077497", + "type": "redeemBassets", + "inputQtys": [ + "2569483704489246982144", + "1110365995024419520512", + "748878567518603444224" + ], + "expectedQty": "4425732708744638767603", + "swapFee": "2657033845554115729", "reserves": [ - "11281054657117053630493607", - "62388696659802757151823045", - "39944978088426212522168702" + "1103099776499713538669269980", + "292112128457121072034143352", + "413515964652384888785368903" ], - "mAssetSupply": "113325945784434012096779726" + "mAssetSupply": "1805537783649636574021761455" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "217438759128061935616", - "expectedQty": "215549021682214382103", + "type": "redeemMasset", + "inputQty": "40323488490538674421760", + "expectedQtys": [ + "24628389001295133877405", + "6521849867893740937142", + "9232376121061962768103" + ], + "redemptionFee": "12097046547161602326", "reserves": [ - "11281054657117053630493607", - "62388914098561885213758661", - "39944978088426212522168702" - ] + "1103075148110712243535392575", + "292105606607253178293206210", + "413506732276263826822600800" + ], + "mAssetSupply": "1805497472258192582508942021" }, { - "type": "redeemMasset", - "inputQty": "19709292668800341114880", - "expectedQtys": [ - "1961373285321710001372", - "10847208273736189478747", - "6945007828321463429132" + "type": "redeemBassets", + "inputQtys": [ + "203372359745551955132416", + "118873229353474041315328", + "30526977265541750718464" ], - "redemptionFee": "5912787800640102334", + "expectedQty": "352797236382017825953523", + "swapFee": "211805425084261252323", "reserves": [ - "11279093283831731920492235", - "62378066890288149024279914", - "39938033080597891058739570" + "1102871775750966691580260159", + "291986733377899704251890882", + "413476205298998285071882336" ], - "mAssetSupply": "113306457953574694610149283" + "mAssetSupply": "1805144675021810564682988498" }, { - "type": "redeemMasset", - "inputQty": "4890589168724859", - "expectedQtys": [ - "486687731833477", - "2691585141379193", - "1723307915340102" + "type": "mintMulti", + "inputQtys": [ + "855829452435219584", + "2950376543441419264", + "364075771689143040" ], - "redemptionFee": "1467176750617", + "expectedQty": "4202052544304520488", "reserves": [ - "11279093283345044188658758", - "62378066887596563882900721", - "39938033078874583143399468" + "1102871776606796144015479743", + "291986736328276247693310146", + "413476205663074056761025376" ], - "mAssetSupply": "113306457948685572618175041" + "mAssetSupply": "1805144679223863108987508986" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "4255062101747696140288", - "outputIndex": 1, - "expectedQty": "4437036185166225811426", - "swapFee": "2640678839869020545", + "inputIndex": 1, + "inputQty": "6462673373188464836608", + "outputIndex": 0, + "expectedQty": "6591241066150747196243", + "swapFee": "3926086868714656754", "reserves": [ - "11283348345446791884799046", - "62373629851411397657089295", - "39938033078874583143399468" + "1102865185365729993268283500", + "291993199001649436158146754", + "413476205663074056761025376" ], - "mAssetSupply": "113306460589364412487195586", + "mAssetSupply": "1805144683149949977702165740", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "23365627047491412", - "expectedQty": "22576947115762768", - "swapFee": "14019376228494", - "reserves": [ - "11283348322869844769036278", - "62373629851411397657089295", - "39938033078874583143399468" - ], - "mAssetSupply": "113306460566012804815932668" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "77313548169622295937024", - "32732394385268516323328", - "64212174683544989204480" - ], - "expectedQty": "176425539715104489122475", - "swapFee": "105918875154155186585", + "inputIndex": 1, + "inputQty": "15308019977026648670208", + "expectedQty": "15109907422296895286139", + "swapFee": "9184811986215989202", "reserves": [ - "11206034774700222473099254", - "62340897457026129140765967", - "39873820904191038154194988" + "1102865185365729993268283500", + "291978089094227139262860615", + "413476205663074056761025376" ], - "mAssetSupply": "113130035026297700326810193" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "57882889304389464", - "expectedQty": "57687390830327252", - "reserves": [ - "11206034774700222473099254", - "62340897457026129140765967", - "39873820962073927458584452" - ] + "mAssetSupply": "1805129384314784937269484734" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "33441904175575261184", - "380840830365277618176", - "275532129672935636992" + "9370193735746147319808", + "7370867017931689033728", + "3871335615120799170560" ], - "expectedQty": "686714984388962081215", - "swapFee": "412276356447245596", + "expectedQty": "20648006327860263831106", "reserves": [ - "11206001332796046897838070", - "62340516616195763863147791", - "39873545429944254522947460" + "1102874555559465739415603308", + "291985459961245070951894343", + "413480076998689177560195936" ], - "mAssetSupply": "113129348369000702195056230" + "mAssetSupply": "1805150032321112797533315840" }, { - "type": "redeemBassets", - "inputQtys": [ - "47246298585138388992", - "33451561115971903488", - "39173810773154144256" + "type": "redeemMasset", + "inputQty": "59003255989758074237747", + "expectedQtys": [ + "36037817690809944112656", + "9540993326401276299766", + "13510983237891354267881" ], - "expectedQty": "121087538555620032420", - "swapFee": "72696140817862737", + "redemptionFee": "17700976796927422271", "reserves": [ - "11205954086497461759449078", - "62340483164634647891244303", - "39873506256133481368803204" + "1102838517741774929471490652", + "291975918967918669675594577", + "413466566015451286205928055" ], - "mAssetSupply": "113129227281462146575023810" + "mAssetSupply": "1805091046766099836386500364" }, { - "type": "redeemMasset", - "inputQty": "952343789206255330918", - "expectedQtys": [ - "94305595967962698708", - "524636846839801426342", - "335562214675491015826" - ], - "redemptionFee": "285703136761876599", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8790413628351637343961088", + "expectedQty": "8854170381958297737871593", + "swapFee": "5274248177010982406376", "reserves": [ - "11205859780901493796750370", - "62339958527787808089817961", - "39873170693918805877787378" + "1093984347359816631733619059", + "291975918967918669675594577", + "413466566015451286205928055" ], - "mAssetSupply": "113128275223376077081569491" + "mAssetSupply": "1796305907385925210024945652" }, { "type": "redeemMasset", - "inputQty": "306685288571317832908", + "inputQty": "22297869073545966387", "expectedQtys": [ - "30369430914680844022", - "168949915557609580796", - "108061811089414414628" + "13575750984141710145", + "3623262415811048176", + "5130895294837134174" ], - "redemptionFee": "92005586571395349", + "redemptionFee": "6689360722063789", "reserves": [ - "11205829411470579115906348", - "62339789577872250480237165", - "39873062632107716463372750" + "1093984333784065647591908914", + "291975915344656253864546401", + "413466560884555991368793881" ], - "mAssetSupply": "113127968630093092335131932" + "mAssetSupply": "1796305885094745497201043054" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "116856083484061760", - "10064956772889810", - "72213950140890992" + "1652503818353264558080", + "397231886973955735552", + "11798228166415166210048" ], - "expectedQty": "202861148778052904", + "expectedQty": "13890402386874360127222", + "swapFee": "8339244979112083326", "reserves": [ - "11205829528326662599968108", - "62339789587937207253126975", - "39873062704321666604263742" + "1093982681280247294327350834", + "291975518112769279908810849", + "413454762656389576202583833" ], - "mAssetSupply": "113127968832954241113184836" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2056146335332413997056", - "expectedQty": "2038164017411842630346", - "reserves": [ - "11205829528326662599968108", - "62341845734272539667124031", - "39873062704321666604263742" - ] + "mAssetSupply": "1796291994692358622840915832" }, { "type": "mint", "inputIndex": 2, - "inputQty": "17329318581520277504", - "expectedQty": "17270791674503768207", + "inputQty": "522697808648268807143424", + "expectedQty": "524923868428119233250427", "reserves": [ - "11205829528326662599968108", - "62341845734272539667124031", - "39873080033640248124541246" + "1093982681280247294327350834", + "291975518112769279908810849", + "413977460465037845009727257" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "10799265368294524190720", - "outputIndex": 1, - "expectedQty": "11265667090509129296758", - "swapFee": "6704370583213584835", + "inputQty": "366829939811527163904", + "expectedQty": "363988969424513078502", "reserves": [ - "11216628793694957124158828", - "62330580067182030537827273", - "39873080033640248124541246" - ], - "mAssetSupply": "113130030972133910673168224", - "hardLimitError": false, - "insufficientLiquidityError": false + "1093983048110187105854514738", + "291975518112769279908810849", + "413977460465037845009727257" + ] }, { "type": "redeemMasset", - "inputQty": "97385492320909193641984", + "inputQty": "26328292721869816909004", "expectedQtys": [ - "9652690861975238776921", - "53639808511297551665533", - "34313564472765209512984" - ], - "redemptionFee": "29215647696272758092", - "reserves": [ - "11206976102832981885381907", - "62276940258670732986161740", - "39838766469167482915028262" - ], - "mAssetSupply": "113032674695460697752284332" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "63303906644362858070016", - "outputIndex": 1, - "expectedQty": "63607026283241195991610", - "swapFee": "37853943134662139936", - "reserves": [ - "11206976102832981885381907", - "62213333232387491790170130", - "39902070375811845773098278" + "16025037933056518206313", + "4276957272202350132850", + "6064083459832965111888" ], - "mAssetSupply": "113032712549403832414424268", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "8657525667108540416", - "expectedQty": "8681786778078771150", - "swapFee": "5194515400265124", + "redemptionFee": "7898487816560945072", "reserves": [ - "11206976102832981885381907", - "62213333232387491790170130", - "39902061694025067694327128" + "1093967023072254049336308425", + "291971241155497077558677999", + "413971396381578012044615369" ], - "mAssetSupply": "113032703897072680706148976" + "mAssetSupply": "1796790962155522113331280829" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1795870393407443440762880", - "expectedQty": "1849483073523765923128774", + "inputQty": "31368390266464622086193152", + "expectedQty": "31120355697968598331083417", "reserves": [ - "13002846496240425326144787", - "62213333232387491790170130", - "39902061694025067694327128" + "1125335413338718671422501577", + "291971241155497077558677999", + "413971396381578012044615369" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3422613661250738978816", - "expectedQty": "3429461680355897946467", - "swapFee": "2053568196750443387", - "reserves": [ - "13002846496240425326144787", - "62213333232387491790170130", - "39898632232344711796380661" + "type": "redeemMasset", + "inputQty": "587154670249089457926963", + "expectedQtys": [ + "361367487199070062199820", + "93757747690286352480926", + "132934413606402416637140" ], - "mAssetSupply": "114878766410503392640742321" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "898800744847081524428800", - "outputIndex": 0, - "expectedQty": "871481999800274675404228", - "swapFee": "537825908394176812092", + "redemptionFee": "176146401074726837378", "reserves": [ - "12131364496440150650740559", - "62213333232387491790170130", - "40797432977191793320809461" + "1124974045851519601360301757", + "291877483407806791206197073", + "413838461967971609627978229" ], - "mAssetSupply": "114879304236411786817554413", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1827324339329642696931274661" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2145014205187050", - "outputIndex": 2, - "expectedQty": "2214966407865499", - "swapFee": "1325568490499", + "type": "mintMulti", + "inputQtys": [ + "66236366493390831878144", + "131554100734259374325760", + "75273266769101995376640" + ], + "expectedQty": "274589034242058613003978", "reserves": [ - "12131364498585164855927609", - "62213333232387491790170130", - "40797432974976826912943962" + "1125040282218012992192179901", + "292009037508541050580522833", + "413913735234740711623354869" ], - "mAssetSupply": "114879304236413112386044912", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1827598928363884755544278639" }, { "type": "mintMulti", "inputQtys": [ - "19122918510516747894784", - "25278159649977277612032", - "184781513682027053056" + "5498990564998562409611264", + "10491344378435391532826624", + "6607238912457529888866304" ], - "expectedQty": "44955581475617884967368", + "expectedQty": "22716190213919206361921700", "reserves": [ - "12150487417095681603822393", - "62238611392037469067782162", - "40797617756490508939997018" + "1130539272783011554601791165", + "302500381886976442113349457", + "420520974147198241512221173" ], - "mAssetSupply": "114924259817888730271012280" + "mAssetSupply": "1850315118577803961906200339" }, { "type": "redeemBassets", "inputQtys": [ - "21060334011061403648", - "358323780683694931968", - "322343545505195950080" + "3603348919523739697152", + "1994022560649540534272", + "2960017627166305419264" ], - "expectedQty": "698479577521592852951", - "swapFee": "419339350123029529", + "expectedQty": "8566915358480930223016", + "swapFee": "5143235156182267494", "reserves": [ - "12150466356761670542418745", - "62238253068256785372850194", - "40797295412945003744046938" + "1130535669434092030862094013", + "302498387864415792572815185", + "420518014129571075206801909" ], - "mAssetSupply": "114923561338311208678159329" + "mAssetSupply": "1850306551662445480975977323" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "951038140022319304671232", - "expectedQty": "958036318576692155549038", - "swapFee": "570622884013391582802", + "type": "swap", + "inputIndex": 0, + "inputQty": "177090861592456154054656", + "outputIndex": 1, + "expectedQty": "173486065043323934142785", + "swapFee": "105424306123101422339", "reserves": [ - "12150466356761670542418745", - "61280216749680093217301156", - "40797295412945003744046938" + "1130712760295684487016148669", + "302324901799372468638672400", + "420518014129571075206801909" ], - "mAssetSupply": "113973093821172902765070899" + "mAssetSupply": "1850306657086751604077399662", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1177872646561901324533760", - "expectedQty": "1209270369840924085434980", + "type": "redeemBassets", + "inputQtys": [ + "603728908258545701486592", + "698909341492721823514624", + "560073052690296508252160" + ], + "expectedQty": "1869066692121745526218785", + "swapFee": "1122113283242993111598", "reserves": [ - "13328339003323571866952505", - "61280216749680093217301156", - "40797295412945003744046938" - ] + "1130109031387425941314662077", + "301625992457879746815157776", + "419957941076880778698549749" + ], + "mAssetSupply": "1848437590394629858551180877" }, { "type": "redeemMasset", - "inputQty": "11964593504966171164672", + "inputQty": "12954565919993234666291", "expectedQtys": [ - "1384068810736467201474", - "6363586392666995304352", - "4236556717936017322753" + "7917865335761928721552", + "2113277501300046222288", + "2942344793093370301186" ], - "redemptionFee": "3589378051489851349", + "redemptionFee": "3886369775997970399", "reserves": [ - "13326954934512835399751031", - "61273853163287426221996804", - "40793058856227067726724185" + "1130101113522090179385940525", + "301623879180378446768935488", + "419954998732087685328248563" ], - "mAssetSupply": "115170403186886912169192556" + "mAssetSupply": "1848424639715079641314484985" }, { - "type": "mintMulti", - "inputQtys": [ - "24126212511083974656", - "8980830058291773440", - "2271947200117046528" + "type": "redeemMasset", + "inputQty": "23095627033267044352", + "expectedQtys": [ + "14116109009269431702", + "3767588145311307194", + "5245663834994423343" ], - "expectedQty": "35894886152971347963", + "redemptionFee": "6928688109980113", "reserves": [ - "13326979060725346483725687", - "61273862144117484513770244", - "40793061128174267843770713" + "1130101099405981170116508823", + "301623875412790301457628294", + "419954993486423850333825220" ], - "mAssetSupply": "115170439081773065140540519" + "mAssetSupply": "1848424616626381296157420746" }, { "type": "redeemMasset", - "inputQty": "3538943074734563760537", + "inputQty": "5452869933594507739136", "expectedQtys": [ - "409386919108066064195", - "1882250848503046424437", - "1253108115511763669339" + "3332808686471908473976", + "889526319858872448339", + "1238499503234267427318" ], - "redemptionFee": "1061682922420369128", + "redemptionFee": "1635860980078352321", "reserves": [ - "13326569673806238417661492", - "61271979893268981467345807", - "40791808020058756080101374" + "1130097766597294698208034847", + "301622985886470442585179955", + "419953754986920616066397902" ], - "mAssetSupply": "115166901200381252997149110" + "mAssetSupply": "1848419165392308681728033931" }, { "type": "mintMulti", "inputQtys": [ - "58882212607701213184", - "69208664358860611584", - "38347062907895767040" + "5008404614650264626921472", + "28736379770304723263946752", + "7548257029266393545048064" ], - "expectedQty": "167271148776501252523", + "expectedQty": "41609181951074539184000274", "reserves": [ - "13326628556018846118874676", - "61272049101933340327957391", - "40791846367121663975868414" + "1135106171211944962834956319", + "330359365656775165849126707", + "427502012016187009611445966" ], - "mAssetSupply": "115167068471530029498401633" + "mAssetSupply": "1890028347343383220912034205" }, { "type": "mint", "inputIndex": 0, - "inputQty": "224866356021734998016", - "expectedQty": "230327702537006496134", + "inputQty": "335006955800041808199680", + "expectedQty": "332583009233297942258575", "reserves": [ - "13326853422374867853872692", - "61272049101933340327957391", - "40791846367121663975868414" + "1135441178167745004643155999", + "330359365656775165849126707", + "427502012016187009611445966" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "6544971133580560302080", - "expectedQty": "6558945379288302065381", - "swapFee": "3926982680148336181", + "type": "swap", + "inputIndex": 1, + "inputQty": "392688343098331968", + "outputIndex": 0, + "expectedQty": "399304093450049834", + "swapFee": "237991373217662", "reserves": [ - "13326853422374867853872692", - "61272049101933340327957391", - "40785287421742375673803033" + "1135441177768440911193106165", + "330359366049463508947458675", + "427502012016187009611445966" ], - "mAssetSupply": "115160757755081666092931868" + "mAssetSupply": "1890360930352854510227510442", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "46768171125495908689510", - "expectedQtys": [ - "5410572071597082703961", - "24875852321137691482324", - "16558427564427658298659" + "type": "redeemBassets", + "inputQtys": [ + "7027310584499", + "13527957316323", + "10026673733387" ], - "redemptionFee": "14030451337648772606", + "expectedQty": "30713162385351", + "swapFee": "18438960807", "reserves": [ - "13321442850303270771168731", - "61247173249612202636475067", - "40768728994177948015504374" + "1135441177768433883882521666", + "330359366049449980990142352", + "427502012016176982937712579" ], - "mAssetSupply": "115114003614407507833014964" + "mAssetSupply": "1890360930352823797065125091" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2689834457116812762939392", - "expectedQty": "2694762914656473747662748", - "swapFee": "1613900674270087657763", + "type": "redeemBassets", + "inputQtys": [ + "21062840434631217512448", + "32480567574209425833984", + "10448180632560416587776" + ], + "expectedQty": "64214485964181228015593", + "swapFee": "38551822672112004011", "reserves": [ - "13321442850303270771168731", - "61247173249612202636475067", - "38073966079521474267841626" + "1135420114927999252665009218", + "330326885481875771564308368", + "427491563835544422521124803" ], - "mAssetSupply": "112425783057964965157733335" + "mAssetSupply": "1890296715866859615837109498" }, { - "type": "redeemMasset", - "inputQty": "3582496693180991904153", - "expectedQtys": [ - "424366248154347093080", - "1951082432591415183262", - "1212879589627528427106" + "type": "mintMulti", + "inputQtys": [ + "14024451922043492901060608", + "11634462909417490441306112", + "12791490840767048995307520" ], - "redemptionFee": "1074749007954297571", + "expectedQty": "38521931816751073952552620", "reserves": [ - "13321018484055116424075651", - "61245222167179611221291805", - "38072753199931846739414520" + "1149444566850042745566069826", + "341961348391293262005614480", + "440283054676311471516432323" ], - "mAssetSupply": "112422201636020792120126753" + "mAssetSupply": "1928818647683610689789662118" }, { - "type": "redeemBassets", - "inputQtys": [ - "553088334162644893696", - "9349730509181498163200", - "59593155747299901440" - ], - "expectedQty": "9907005242439476011832", - "swapFee": "5947771808548814896", + "type": "swap", + "inputIndex": 0, + "inputQty": "58486651128246839617257472", + "outputIndex": 1, + "expectedQty": "57274410101752730070182286", + "swapFee": "34836091796267481664889", "reserves": [ - "13320465395720953779181955", - "61235872436670429723128605", - "38072693606776099439513080" + "1207931217978289585183327298", + "284686938289540531935432194", + "440283054676311471516432323" ], - "mAssetSupply": "112412294630778352644114921" + "mAssetSupply": "1928853483775406957271327007", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1479231018586859238326272", - "expectedQty": "1468267523577547569858805", + "type": "redeemBassets", + "inputQtys": [ + "44925046371048", + "52723149571296", + "129381882010190" + ], + "expectedQty": "228070712368324", + "swapFee": "136924582170", "reserves": [ - "13320465395720953779181955", - "62715103455257288961454877", - "38072693606776099439513080" - ] + "1207931217978244660136956250", + "284686938289487808785860898", + "440283054676182089634422133" + ], + "mAssetSupply": "1928853483775178886558958683" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "2379609199902150564511744", - "outputIndex": 1, - "expectedQty": "2441889211222616896378648", - "swapFee": "1456900531118220884278", + "inputIndex": 1, + "inputQty": "6239723271350593702068224", + "outputIndex": 2, + "expectedQty": "6303893510461874749495836", + "swapFee": "3802498430149185646790", "reserves": [ - "15700074595623104343693699", - "60273214244034672065076229", - "38072693606776099439513080" + "1207931217978244660136956250", + "290926661560838402487929122", + "433979161165720214884926297" ], - "mAssetSupply": "113882019054887018434858004", + "mAssetSupply": "1928857286273609035744605473", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1226374596064158307424665", - "expectedQtys": [ - "169020505153805635080655", - "648876478689493497448740", - "409874861854308773226937" + "type": "mintMulti", + "inputQtys": [ + "186146455729077978398720", + "123707271741946739032064", + "38331028931579232649216" ], - "redemptionFee": "367912378819247492227", + "expectedQty": "348636012988091400127340", "reserves": [ - "15531054090469298708613044", - "59624337765345178567627489", - "37662818744921790666286143" + "1208117364433973738115354970", + "291050368832580349226961186", + "434017492194651794117575513" ], - "mAssetSupply": "112656012371201679374925566" + "mAssetSupply": "1929205922286597127144732813" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "13752870982499398844416", - "expectedQty": "13828106886063188221575", - "swapFee": "8251722589499639306", + "inputQty": "4011461906723150233600", + "expectedQty": "3948843533610464716532", + "swapFee": "2406877144033890140", "reserves": [ - "15531054090469298708613044", - "59610509658459115379405914", - "37662818744921790666286143" + "1208117364433973738115354970", + "291046419989046738762244654", + "434017492194651794117575513" ], - "mAssetSupply": "112642267751941769475720456" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1016277629693539647488", - "expectedQty": "1014796366435198047067", - "reserves": [ - "15531054090469298708613044", - "59610509658459115379405914", - "37663835022551484205933631" - ] + "mAssetSupply": "1929201913231567548028389353" }, { "type": "redeemMasset", - "inputQty": "277089964990363886157824", + "inputQty": "1142116919303403156275", "expectedQtys": [ - "38193206794877298437237", - "146591242891277859883073", - "92621056582836482230668" + "715009315291911930214", + "172252222839318115604", + "256867883083697482924" ], - "redemptionFee": "83126989497109165847", + "redemptionFee": "342635075791020946", "reserves": [ - "15492860883674421410175807", - "59463918415567837519522841", - "37571213965968647723702963" + "1208116649424658446203424756", + "291046247736823899444129050", + "434017235326768710420092589" ], - "mAssetSupply": "112366275710307337896775546" + "mAssetSupply": "1929200771457283320416254024" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "14352857847178391977984", - "25678699692429527744512", - "28283164609955942629376" + "65709834575707906244608", + "8054785578861589430272", + "55775577239637700116480" ], - "expectedQty": "68351998277626939179770", - "swapFee": "41035820458851474392", + "expectedQty": "129361236104222331966872", "reserves": [ - "15478508025827243018197823", - "59438239715875407991778329", - "37542930801358691781073587" + "1208182359259234154109669364", + "291054302522402761033559322", + "434073010904008348120209069" ], - "mAssetSupply": "112297923712029710957595776" + "mAssetSupply": "1929330132693387542748220896" }, { - "type": "redeemMasset", - "inputQty": "2109960782556116602060", - "expectedQtys": [ - "290737763569229706329", - "1116447454538294241222", - "705180868906001612743" - ], - "redemptionFee": "632988234766834980", + "type": "redeem", + "inputIndex": 0, + "inputQty": "397830046202734641152", + "expectedQty": "401084749021634519025", + "swapFee": "238698027721640784", "reserves": [ - "15478217288063673788491494", - "59437123268420869697537107", - "37542225620489785779460844" + "1208181958174485132475150339", + "291054302522402761033559322", + "434073010904008348120209069" ], - "mAssetSupply": "112295814384235389607828696" + "mAssetSupply": "1929329735102039367735220528" }, { "type": "mintMulti", "inputQtys": [ - "30494526045408905396224", - "13260787398703260368896", - "6072021575451089567744" + "171086391569805213696", + "322190873234365808640", + "47828128523290116096" ], - "expectedQty": "50233994943937952259318", + "expectedQty": "544760371770148716639", "reserves": [ - "15508711814109082693887718", - "59450384055819572957906003", - "37548297642065236869028588" + "1208182129260876702280364035", + "291054624713275995399367962", + "434073058732136871410325165" ], - "mAssetSupply": "112346048379179327560088014" + "mAssetSupply": "1929330279862411137883937167" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "48763438660645013159936", - "expectedQty": "47953891540938644641435", - "swapFee": "29258063196387007895", + "inputQty": "4003049589189491294208", + "expectedQty": "4035798971328319330196", + "swapFee": "2401829753513694776", "reserves": [ - "15460757922568144049246283", - "59450384055819572957906003", - "37548297642065236869028588" + "1208178093461905373961033839", + "291054624713275995399367962", + "434073058732136871410325165" ], - "mAssetSupply": "112297314198581878933935973" + "mAssetSupply": "1929326279214651701906337735" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "142223844655800287232", - "outputIndex": 1, - "expectedQty": "142794406454126218968", - "swapFee": "85209532604463769", + "type": "mintMulti", + "inputQtys": [ + "940624395777643", + "1135223018803125", + "572725215404000" + ], + "expectedQty": "2660468730180169", "reserves": [ - "15460757922568144049246283", - "59450241261413118831687035", - "37548439865909892669315820" + "1208178093462845998356811482", + "291054624714411218418171087", + "434073058732709596625729165" ], - "mAssetSupply": "112297314283791411538399742", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1929326279217312170636517904" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "49607324382372136", - "expectedQty": "49534788230122488", + "type": "redeemBassets", + "inputQtys": [ + "1348243921215542016", + "38202117161136119808", + "102445004931875094528" + ], + "expectedQty": "143063018836990551202", + "swapFee": "85889344909139814", "reserves": [ - "15460757922568144049246283", - "59450241261413118831687035", - "37548439915517217051687956" - ] + "1208178092114602077141269466", + "291054586512294057282051279", + "434072956287704664750634637" + ], + "mAssetSupply": "1929326136154293333645966702" + }, + { + "type": "mintMulti", + "inputQtys": [ + "2285254994043999891750912", + "1880412652907489184972800", + "6764521041676634620428288" + ], + "expectedQty": "10971041199988139057553144", + "reserves": [ + "1210463347108646077033020378", + "292934999165201546467024079", + "440837477329381299371062925" + ], + "mAssetSupply": "1940297177354281472703519846" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "85294205597120227966976", - "expectedQty": "85761235483187462122470", - "swapFee": "51176523358272136780", + "inputIndex": 0, + "inputQty": "31062348916485745568382976", + "expectedQty": "31308093409361454668787425", + "swapFee": "18637409349891447341029", "reserves": [ - "15460757922568144049246283", - "59364480025929931369564565", - "37548439915517217051687956" + "1179155253699284622364232953", + "292934999165201546467024079", + "440837477329381299371062925" ], - "mAssetSupply": "112212071304252437812692034" + "mAssetSupply": "1909253465847145618582477899" }, { - "type": "redeemMasset", - "inputQty": "840453526602668508918579", - "expectedQtys": [ - "115764285913544770076465", - "444498689731061616425803", - "281148463468436623262155" + "type": "mintMulti", + "inputQtys": [ + "8909972116245306146816", + "12548860858651612545024", + "4898731456145536319488" ], - "redemptionFee": "252136057980800552675", + "expectedQty": "26485165104237450592509", "reserves": [ - "15344993636654599279169818", - "58919981336198869753138762", - "37267291452048780428425801" + "1179164163671400867670379769", + "292947548026060198079569103", + "440842376060837444907382413" ], - "mAssetSupply": "111371869913707750104326130" + "mAssetSupply": "1909279951012249856033070408" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "1984192172856358656", - "outputIndex": 2, - "expectedQty": "2018267398020231184", - "swapFee": "1209908495330254", + "inputQty": "515873630528939778637824", + "expectedQty": "519869512573228282269899", + "swapFee": "309524178317363867182", "reserves": [ - "15344995620846772135528474", - "58919981336198869753138762", - "37267289433781382408194617" + "1178644294158827639388109870", + "292947548026060198079569103", + "440842376060837444907382413" ], - "mAssetSupply": "111371869914917658599656384", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1908764386905899233618299766" }, { "type": "redeemBassets", "inputQtys": [ - "807335953612491374723072", - "1157469178276388035100672", - "1137023537852150586540032" + "335571602842232291328", + "2675365923651468656640", + "4117031736184904613888" ], - "expectedQty": "3106580539716575392631156", - "swapFee": "1865067364248494332178", + "expectedQty": "7181180546443605892071", + "swapFee": "4311295104929121007", "reserves": [ - "14537659667234280760805402", - "57762512157922481718038090", - "36130265895929231821654585" + "1178643958587224797155818542", + "292944872660136546610912463", + "440838259029101260002768525" ], - "mAssetSupply": "108265289375201083207025228" + "mAssetSupply": "1908757205725352790012407695" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "4095909715314003618562048", - "outputIndex": 1, - "expectedQty": "4167534031033830639065003", - "swapFee": "2490490404516834247384", + "inputQty": "54091734142421125038080", + "expectedQty": "53643884743977497717749", + "reserves": [ + "1178698050321367218280856622", + "292944872660136546610912463", + "440838259029101260002768525" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "134553814978097", + "expectedQty": "132567569716220", + "swapFee": "80732288986", "reserves": [ - "18633569382548284379367450", - "53594978126888651078973087", - "36130265895929231821654585" + "1178698050321367218280856622", + "292944872660003979041196243", + "440838259029101260002768525" ], - "mAssetSupply": "108267779865605600041272612", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1908810849609962294427436333" }, { - "type": "redeemMasset", - "inputQty": "248742002710443417", - "expectedQtys": [ - "42797228189226848", - "123095927656314226", - "82983308368912135" + "type": "mintMulti", + "inputQtys": [ + "19839078723725534691328", + "4094222629763341615104", + "25437425603880775843840" + ], + "expectedQty": "49373685273104210771689", + "reserves": [ + "1178717889400090943815547950", + "292948966882633742382811347", + "440863696454705140778612365" ], - "redemptionFee": "74622600813133", + "mAssetSupply": "1908860223295235398638208022" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "33787299380977404477440", + "outputIndex": 0, + "expectedQty": "34193939750183080923786", + "swapFee": "20358724699637707543", "reserves": [ - "18633569339751056190140602", - "53594978003792723422658861", - "36130265812945923452742450" + "1178683695460340760734624164", + "292948966882633742382811347", + "440897483754086118183089805" ], - "mAssetSupply": "108267779616938219931642328" + "mAssetSupply": "1908860243653960098275915565", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "2157329441640688384", - "15533792321827868672", - "12479937784917139456" + "377406118842557865656320", + "403172537229403171586048", + "1297790383150814724096" ], - "expectedQty": "30113074641885305847", - "swapFee": "18078692000331382", + "expectedQty": "784558395186529719923985", + "swapFee": "471017647700538154847", "reserves": [ - "18633567182421614549452218", - "53594962470000401594790189", - "36130253333008138535602994" + "1178306289341498202868967844", + "292545794345404339211225299", + "440896185963702967368365709" ], - "mAssetSupply": "108267749503863578046336481" + "mAssetSupply": "1908075685258773568555991580" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "6574867791435811840", - "expectedQty": "6599537978481687150", - "swapFee": "3944920674861487", + "inputQty": "17220695648460897077166080", + "expectedQty": "16949729222703445658445824", + "swapFee": "10332417389076538246299", "reserves": [ - "18633567182421614549452218", - "53594955870462423113103039", - "36130253333008138535602994" + "1178306289341498202868967844", + "275596065122700893552779475", + "440896185963702967368365709" ], - "mAssetSupply": "108267742932940707285386128" + "mAssetSupply": "1890865322027701748017071799" }, { "type": "redeemMasset", - "inputQty": "59412067476732441631129", + "inputQty": "403755478684646408349286", "expectedQtys": [ - "10222127137484675402005", - "29401479999630886407800", - "19820576460955493734346" + "251527641902182636722399", + "58830228612777011717200", + "94116087627005721425599" ], - "redemptionFee": "17823620243019732489", + "redemptionFee": "121126643605393922504", "reserves": [ - "18623345055284129874050213", - "53565554390462792226695239", - "36110432756547183041868648" + "1178054761699596020232245445", + "275537234894088116541062275", + "440802069876075961646940110" ], - "mAssetSupply": "108208348689084217863487488" + "mAssetSupply": "1890461687675660707002645017" }, { - "type": "redeemMasset", - "inputQty": "66419178579351", - "expectedQtys": [ - "11427733735596", - "32869116217129", - "22158232551348" + "type": "redeemBassets", + "inputQtys": [ + "7509602590954278688391168", + "1353253842778293467611136", + "6778047573140177466425344" ], - "redemptionFee": "19925753573", + "expectedQty": "15625854341272310191242065", + "swapFee": "9381141289537108379773", "reserves": [ - "18623345055272702140314617", - "53565554390429923110478110", - "36110432756525024809317300" + "1170545159108641741543854277", + "274183981051309823073451139", + "434024022302935784180514766" ], - "mAssetSupply": "108208348689017818610661710" + "mAssetSupply": "1874835833334388396811402952" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "343873682961038656", - "expectedQty": "347044503395879203", + "inputIndex": 2, + "inputQty": "10878475270306846646206464", + "expectedQty": "10922668104954529665924107", "reserves": [ - "18623345399146385101353273", - "53565554390429923110478110", - "36110432756525024809317300" + "1170545159108641741543854277", + "274183981051309823073451139", + "444902497573242630826721230" ] }, { - "type": "redeemMasset", - "inputQty": "6809315967317735951564", - "expectedQtys": [ - "1171575027691011850451", - "3369752561810339916753", - "2271669259734577980375" - ], - "redemptionFee": "2042794790195320785", + "type": "mint", + "inputIndex": 1, + "inputQty": "9980590441443403700895744", + "expectedQty": "10138180805551114902294362", "reserves": [ - "18622173824118694089502822", - "53562184637868112770561357", - "36108161087265290231336925" - ], - "mAssetSupply": "108201541762889794465910134" + "1170545159108641741543854277", + "284164571492753226774346883", + "444902497573242630826721230" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "637859206440239912452096", - "1283887431225630175264768", - "197989374348275098845184" + "type": "redeemMasset", + "inputQty": "130097725703642336460", + "expectedQtys": [ + "80299511508332047638", + "19493717180649799485", + "30520354508298370625" ], - "expectedQty": "2119974639238424342553370", - "swapFee": "1272748432602616175237", + "redemptionFee": "39029317711092700", "reserves": [ - "17984314617678454177050726", - "52278297206642482595296589", - "35910171712917015132491741" + "1170545078809130233211806639", + "284164551999036046124547398", + "444902467052888122528350605" ], - "mAssetSupply": "106081567123651370123356764" + "mAssetSupply": "1895896552186197655448377661" }, { "type": "mintMulti", "inputQtys": [ - "504554538554856648474624", - "225176216847385322586112", - "399505794627382192111616" + "3246919112522209280", + "28022408343570837504", + "6556498263858968576" ], - "expectedQty": "1132594996838969844327683", + "expectedQty": "38250242923803360175", "reserves": [ - "18488869156233310825525350", - "52503473423489867917882701", - "36309677507544397324603357" + "1170545082056049345734015919", + "284164580021444389695384902", + "444902473609386386387319181" ], - "mAssetSupply": "107214162120490339967684447" + "mAssetSupply": "1895896590436440579251737836" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "540431656644768890880", - "expectedQty": "535214040396355689556", - "swapFee": "324258993986861334", + "type": "swap", + "inputIndex": 2, + "inputQty": "1448511145333609470099456", + "outputIndex": 1, + "expectedQty": "1431445990093368988847014", + "swapFee": "872519622959421139575", "reserves": [ - "18488333942192914469835794", - "52503473423489867917882701", - "36309677507544397324603357" + "1170545082056049345734015919", + "282733134031351020706537888", + "446350984754719995857418637" ], - "mAssetSupply": "107213622013092689185654901" + "mAssetSupply": "1895897462956063538672877411", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2442040127091141213421568", - "165129016636967760166912", - "1382747599647481335382016" - ], - "expectedQty": "4013222144457394862789630", - "swapFee": "2409378914022850628050", + "type": "mint", + "inputIndex": 0, + "inputQty": "1319999062196673100906496", + "expectedQty": "1308923663118745989334970", "reserves": [ - "16046293815101773256414226", - "52338344406852900157715789", - "34926929907896915989221341" - ], - "mAssetSupply": "103200399868635294322865271" + "1171865081118246018834922415", + "282733134031351020706537888", + "446350984754719995857418637" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "38447897530785226752", - "expectedQty": "37969228877240273778", - "swapFee": "23068738518471136", + "type": "redeemMasset", + "inputQty": "150186219159535930572", + "expectedQtys": [ + "92739086133900657656", + "22374941358283713426", + "35323334646697705733" + ], + "redemptionFee": "45055865747860779", "reserves": [ - "16046255845872896016140448", - "52338344406852900157715789", - "34926929907896915989221341" + "1171864988379159884934264759", + "282733111656409662422824462", + "446350949431385349159712904" ], - "mAssetSupply": "103200361443806502056109655" + "mAssetSupply": "1897206236478018990874142588" }, { "type": "mintMulti", "inputQtys": [ - "149332838161841504911360", - "463603504209199489875968", - "447769280245045233975296" + "209511955321125699584", + "24161141756107411456", + "361898728510561779712" ], - "expectedQty": "1059634386968598331884762", + "expectedQty": "595597631361125441607", "reserves": [ - "16195588684034737521051808", - "52801947911062099647591757", - "35374699188141961223196637" + "1171865197891115206059964343", + "282733135817551418530235918", + "446351311330113859721492616" ], - "mAssetSupply": "104259995830775100387994417" + "mAssetSupply": "1897206832075650351999584195" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "987859189377528889344", - "expectedQty": "992193820476331083225", - "swapFee": "592715513626517333", + "type": "swap", + "inputIndex": 0, + "inputQty": "74253972369740398139015168", + "outputIndex": 2, + "expectedQty": "73086464652653812431913218", + "swapFee": "44161008428520899671063", "reserves": [ - "16195588684034737521051808", - "52800955717241623316508532", - "35374699188141961223196637" + "1246119170260855604198979511", + "282733135817551418530235918", + "373264846677460047289579398" ], - "mAssetSupply": "104259008564301236485622406" + "mAssetSupply": "1897250993084078872899255258", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "687732491534384977726668", - "expectedQtys": [ - "106800277895436250460873", - "348190908880329129832017", - "233275108269779838846112" + "type": "redeemBassets", + "inputQtys": [ + "3331425385022715286519808", + "1963209031735747467542528", + "2973047998201754992771072" ], - "redemptionFee": "206319747460315493318", + "expectedQty": "8291946794493810617182323", + "swapFee": "4978154969678093226245", "reserves": [ - "16088788406139301270590935", - "52452764808361294186676515", - "35141424079872181384350525" + "1242787744875832888912459703", + "280769926785815671062693390", + "370291798679258292296808326" ], - "mAssetSupply": "103571482392514311823389056" + "mAssetSupply": "1888959046289585062282072935" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "11768493468116846", - "16053643834352740", - "67296882594665200" + "45457710745489662818648064", + "48192350577410910692835328", + "17713938846375663189884928" ], - "expectedQty": "95095715682134609", + "expectedQty": "111985247044814775614411077", + "swapFee": "67231487119160361585598", "reserves": [ - "16088788417907794738707781", - "52452764824414938021029255", - "35141424147169063979015725" + "1197330034130343226093811639", + "232577576208404760369858062", + "352577859832882629106923398" ], - "mAssetSupply": "103571482487610027505523665" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "13853571427737423314944", - "expectedQty": "14019948373857424779389", - "reserves": [ - "16102641989335532162022725", - "52452764824414938021029255", - "35141424147169063979015725" - ] + "mAssetSupply": "1776973799244770286667661858" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "3508569547044952735744", - "expectedQty": "3510888255855542428870", - "swapFee": "2105141728226971641", + "inputIndex": 1, + "inputQty": "3247227508120959315869696", + "expectedQty": "3169102442243105128557892", + "swapFee": "1948336504872575589521", "reserves": [ - "16102641989335532162022725", - "52452764824414938021029255", - "35137913258913208436586855" + "1197330034130343226093811639", + "229408473766161655241300170", + "352577859832882629106923398" ], - "mAssetSupply": "103581995971578568204538951" + "mAssetSupply": "1773728520073154199927381683" }, { "type": "mintMulti", "inputQtys": [ - "38756454854455690526720", - "43722092150373100814336", - "18298877658348067487744" + "827407400554355908149248", + "304757787733073491656704", + "341912877416217439109120" ], - "expectedQty": "101001845115745951350218", + "expectedQty": "1474635763250722401548923", "reserves": [ - "16141398444189987852549445", - "52496486916565311121843591", - "35156212136571556504074599" + "1198157441530897582001960887", + "229713231553894728732956874", + "352919772710298846546032518" ], - "mAssetSupply": "103682997816694314155889169" + "mAssetSupply": "1775203155836404922328930606" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "31968647609335652352", - "expectedQty": "31572009451512780497", - "swapFee": "19181188565601391", + "inputIndex": 1, + "inputQty": "345910599226747456", + "expectedQty": "337483070732205151", + "swapFee": "207546359536048", "reserves": [ - "16141366872180536339768948", - "52496486916565311121843591", - "35156212136571556504074599" + "1198157441530897582001960887", + "229713231216411658000751723", + "352919772710298846546032518" ], - "mAssetSupply": "103682965867227893385838208" + "mAssetSupply": "1775203155490701869461719198" }, { - "type": "mintMulti", - "inputQtys": [ - "426688784470345646080", - "299705744358545620992", - "289621702667495014400" - ], - "expectedQty": "1019270158346626634572", + "type": "mint", + "inputIndex": 2, + "inputQty": "61506066836739690856448", + "expectedQty": "62040970194037643967911", "reserves": [ - "16141793560965006685415028", - "52496786622309669667464583", - "35156501758274223999088999" - ], - "mAssetSupply": "103683985137386240012472780" + "1198157441530897582001960887", + "229713231216411658000751723", + "352981278777135586236888966" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "167417083269221122572288", - "outputIndex": 2, - "expectedQty": "166689332408040654286810", - "swapFee": "99951371123197855683", + "type": "redeemMasset", + "inputQty": "1040122216361485139968", + "expectedQtys": [ + "701786024458051107119", + "134547873019759078926", + "206748562212837535554" + ], + "redemptionFee": "312036664908445541", "reserves": [ - "16141793560965006685415028", - "52664203705578890790036871", - "34989812425866183344802189" + "1198156739744873123950853768", + "229713096668538638241672797", + "352981072028573373399353412" ], - "mAssetSupply": "103684085088757363210328463", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1775264156650716210528992682" }, { "type": "mint", "inputIndex": 2, - "inputQty": "7888757368548028841984", - "expectedQty": "7879252997068310465983", + "inputQty": "14799648935779108864", + "expectedQty": "14928324832348394802", "reserves": [ - "16141793560965006685415028", - "52664203705578890790036871", - "34997701183234731373644173" + "1198156739744873123950853768", + "229713096668538638241672797", + "352981086828222309178462276" ] }, { "type": "redeemBassets", "inputQtys": [ - "1519716758343159906304", - "5920069242301588701184", - "4806522107643547353088" + "2101088648960000219152384", + "1027873181464642174582784", + "2702009806062327890444288" ], - "expectedQty": "12229167159923031586552", - "swapFee": "7341905439217349361", + "expectedQty": "5854710475116274553567942", + "swapFee": "3514935246217495229278", "reserves": [ - "16140273844206663525508724", - "52658283636336589201335687", - "34992894661127087826291085" + "1196055651095913123731701384", + "228685223487073996067090013", + "350279077022159981288017988" ], - "mAssetSupply": "103679735174594508489207894" + "mAssetSupply": "1769409461103924768323819542" }, { - "type": "mintMulti", - "inputQtys": [ - "332758332254659029237760", - "103475740115650639560704", - "442273590058903675076608" - ], - "expectedQty": "881383223229895645651898", + "type": "redeem", + "inputIndex": 0, + "inputQty": "61952360337662290165760", + "expectedQty": "62664945678795073087998", + "swapFee": "37171416202597374099", "reserves": [ - "16473032176461322554746484", - "52761759376452239840896391", - "35435168251185991501367693" + "1195992986150234328658613386", + "228685223487073996067090013", + "350279077022159981288017988" ], - "mAssetSupply": "104561118397824404134859792" + "mAssetSupply": "1769347545915003308631027881" }, { "type": "redeemBassets", "inputQtys": [ - "10422980525843826688", - "68128877462945316864", - "60027702959267356672" + "855769753929073792", + "1969229292956745472", + "114925259201496640" ], - "expectedQty": "138295894068661534814", - "swapFee": "83027352852908666", + "expectedQty": "2978932873579959903", + "swapFee": "1788432783818266", "reserves": [ - "16473021753480796710919796", - "52761691247574776895579527", - "35435108223483032234011021" + "1195992985294464574729539594", + "228685221517844703110344541", + "350279076907234722086521348" ], - "mAssetSupply": "104560980101930335473324978" + "mAssetSupply": "1769347542936070435051067978" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "871597611333685", - "outputIndex": 1, - "expectedQty": "885487399280584", - "swapFee": "529023277263", + "type": "redeem", + "inputIndex": 2, + "inputQty": "814713252853833699164160", + "expectedQty": "807061775576577176757167", + "swapFee": "488827951712300219498", "reserves": [ - "16473021754352394322253481", - "52761691246689289496298943", - "35435108223483032234011021" + "1195992985294464574729539594", + "228685221517844703110344541", + "349472015131658144909764181" ], - "mAssetSupply": "104560980101930864496602241", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1768533318511168313652123316" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1062922061204739258843136", - "expectedQty": "1067399492562311231959522", - "swapFee": "637753236722843555305", + "type": "redeemMasset", + "inputQty": "140274207669191575810867", + "expectedQtys": [ + "94833745309795219191533", + "18133113086944925865665", + "27710647540074631313322" + ], + "redemptionFee": "42082262300757472743", "reserves": [ - "16473021754352394322253481", - "51694291754126978264339421", - "35435108223483032234011021" + "1195898151549154779510348061", + "228667088404757758184478876", + "349444304484118070278450859" ], - "mAssetSupply": "103498695793962848081314410" + "mAssetSupply": "1768393086385761422833785192" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "130030852027786625024", - "expectedQty": "129863667159319923527", - "reserves": [ - "16473021754352394322253481", - "51694291754126978264339421", - "35435238254335060020636045" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "197364658368656277766144", - "46064787070623028346880", - "34911851538807057809408" - ], - "expectedQty": "280279199617578863448955", + "inputQty": "1923972534954382508163072", + "expectedQty": "1905711927095951515483885", + "swapFee": "1154383520972629504897", "reserves": [ - "16670386412721050600019625", - "51740356541197601292686301", - "35470150105873867078445453" + "1195898151549154779510348061", + "228667088404757758184478876", + "347538592557022118762966974" ], - "mAssetSupply": "103779104857247586264686892" + "mAssetSupply": "1766470268234328012955127017" }, { - "type": "mintMulti", - "inputQtys": [ - "106055070768745119744", - "63287093553137139712", - "23786556125609652224" - ], - "expectedQty": "193971515255219279080", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1791594646918946030092288", + "expectedQty": "1812284182829353747270011", + "swapFee": "1074956788151367618055", "reserves": [ - "16670492467791819345139369", - "51740419828291154429826013", - "35470173892429992688097677" + "1194085867366325425763078050", + "228667088404757758184478876", + "347538592557022118762966974" ], - "mAssetSupply": "103779298828762841483965972" + "mAssetSupply": "1764679748544197218292652784" }, { "type": "mintMulti", "inputQtys": [ - "1649710268358554880", - "710094621438739712", - "312268040633891648" + "61624289272590880", + "22555547772564592", + "115121602788371232" ], - "expectedQty": "2686533182253243171", + "expectedQty": "200149858616514268", "reserves": [ - "16670494117502087703694249", - "51740420538385775868565725", - "35470174204698033321989325" + "1194085867427949715035668930", + "228667088427313305957043468", + "347538592672143721551338206" ], - "mAssetSupply": "103779301515296023737209143" + "mAssetSupply": "1764679748744347076909167052" }, { "type": "mintMulti", "inputQtys": [ - "4284191235639100833792", - "386150734620210340298752", - "224747523418759507214336" + "8944547939374885888", + "8294523262343900160", + "69371196318604566528" ], - "expectedQty": "613141005426120593582634", + "expectedQty": "87330377676387005270", "reserves": [ - "16674778308737726804528041", - "52126571273005986208864477", - "35694921728116792829203661" + "1194085876372497654410554818", + "228667096721836568300943628", + "347538662043340040155904734" ], - "mAssetSupply": "104392442520722144330791777" + "mAssetSupply": "1764679836074724753296172322" }, { "type": "redeemBassets", "inputQtys": [ - "405961402821564497920", - "276725690719029592064", - "3272965959231558647808" + "10674867223976710529613824", + "5759216535563441583161344", + "2413638172850202823622656" ], - "expectedQty": "3954751545126073675294", - "swapFee": "2374275492371066845", + "expectedQty": "18883615978534930194644867", + "swapFee": "11336971770183067957561", "reserves": [ - "16674372347334905240030121", - "52126294547315267179272413", - "35691648762157561270555853" + "1183411009148520943880940994", + "222907880186273126717782284", + "345125023870489837332282078" ], - "mAssetSupply": "104388487769177018257116483" + "mAssetSupply": "1745796220096189823101527455" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "694049030798263189504", - "expectedQty": "696907575764059398780", - "swapFee": "416429418478957913", - "reserves": [ - "16674372347334905240030121", - "52125597639739503119873633", - "35691648762157561270555853" + "type": "mintMulti", + "inputQtys": [ + "3912700615384376297914368", + "3304601209721233443127296", + "1397641947788898069381120" ], - "mAssetSupply": "104387794136575638472884892" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "12772708975117904", - "expectedQty": "12825314656347573", - "swapFee": "7663625385070", + "expectedQty": "8662697537696815348456790", "reserves": [ - "16674372347334905240030121", - "52125597626914188463526060", - "35691648762157561270555853" + "1187323709763905320178855362", + "226212481395994360160909580", + "346522665818278735401663198" ], - "mAssetSupply": "104387794123810593123152058" + "mAssetSupply": "1754458917633886638449984245" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5858677234776207785984", - "4695024831312248176640", - "6784267180133833506816" + "1683357890640797696", + "1874051388481539584", + "435143774880405568" ], - "expectedQty": "17372773969125773154865", - "swapFee": "10429922334876389726", + "expectedQty": "4022444641582088174", "reserves": [ - "16668513670100129032244137", - "52120902602082876215349420", - "35684864494977427437049037" + "1187323711447263210819653058", + "226212483270045748642449164", + "346522666253422510282068766" ], - "mAssetSupply": "104370421349841467349997193" + "mAssetSupply": "1754458921656331280032072419" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1725584118968062836736", - "expectedQty": "1717472297751431171856", + "inputIndex": 2, + "inputQty": "11000513927464892760064", + "expectedQty": "11098801026170447945037", "reserves": [ - "16668513670100129032244137", - "52122628186201844278186156", - "35684864494977427437049037" + "1187323711447263210819653058", + "226212483270045748642449164", + "346533666767349975174828830" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "5310505099844571136", - "expectedQty": "5332386532214463743", - "swapFee": "3186303059906742", + "inputIndex": 0, + "inputQty": "798878636560809856", + "expectedQty": "808117427006491583", + "swapFee": "479327181936485", "reserves": [ - "16668513670100129032244137", - "52122622853815312063722413", - "35684864494977427437049037" + "1187323710639145783813161475", + "226212483270045748642449164", + "346533666767349975174828830" ], - "mAssetSupply": "104372133514820421996504655" + "mAssetSupply": "1754470019658958141101144085" + }, + { + "type": "redeemMasset", + "inputQty": "173477392342434001715", + "expectedQtys": [ + "117364233491827568022", + "22360586643199529797", + "34254060467948619939" + ], + "redemptionFee": "52043217702730200", + "reserves": [ + "1187323593274912291985593453", + "226212460909459105442919367", + "346533632513289507226208891" + ], + "mAssetSupply": "1754469846233609016369872570" }, { "type": "mintMulti", "inputQtys": [ - "170586449355390976000", - "109744116760775163904", - "379731247255673569280" + "9099536666933215232", + "9578955439360014336", + "47440587388550856704" + ], + "expectedQty": "66669890011715135219", + "reserves": [ + "1187323602374448958918808685", + "226212470488414544802933703", + "346533679953876895777065595" ], - "expectedQty": "660972201133669179770", + "mAssetSupply": "1754469912903499028085007789" + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "1655485118164866340749312", + "outputIndex": 0, + "expectedQty": "1689405661490795915600275", + "swapFee": "1002103795714266305646", "reserves": [ - "16668684256549484423220137", - "52122732597932072838886317", - "35685244226224683110618317" + "1185634196712958163003208410", + "226212470488414544802933703", + "348189165072041762117814907" ], - "mAssetSupply": "104372794487021555665684425" + "mAssetSupply": "1754470915007294742351313435", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1230896948345065695084544", - "expectedQty": "1235860049412023523032932", - "swapFee": "738538169007039417050", + "inputQty": "17405576985157736886960128", + "expectedQty": "16942594654445547480419417", + "swapFee": "10443346191094642132176", "reserves": [ - "16668684256549484423220137", - "50886872548520049315853385", - "35685244226224683110618317" + "1185634196712958163003208410", + "209269875833968997322514286", + "348189165072041762117814907" ], - "mAssetSupply": "103142636076845497010016931" + "mAssetSupply": "1737075781368328100106485483" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "18178487287495882964992", + "inputIndex": 2, + "inputQty": "248561659750855877853184", "outputIndex": 0, - "expectedQty": "17891674386259637777949", - "swapFee": "10857712997639300305", + "expectedQty": "253822553443966036359328", + "swapFee": "150441426570462317957", "reserves": [ - "16650792582163224785442188", - "50905051035807545198818377", - "35685244226224683110618317" + "1185380374159514196966849082", + "209269875833968997322514286", + "348437726731792617995668091" ], - "mAssetSupply": "103142646934558494649317236", + "mAssetSupply": "1737075931809754670568803440", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2503910891237045248", - "638221330936292480", - "2278463840648830720" + "type": "redeemMasset", + "inputQty": "9190930721350116874125312", + "expectedQtys": [ + "6270008278412903942344124", + "1106922201940266236773342", + "1843043362911052658976513" ], - "expectedQty": "5441765715326129035", - "swapFee": "3267019640980265", + "redemptionFee": "2757279216405035062237", "reserves": [ - "16650790078252333548396940", - "50905050397586214262525897", - "35685241947760842461787597" + "1179110365881101293024504958", + "208162953632028731085740944", + "346594683368881565336691578" ], - "mAssetSupply": "103142641492792779323188201" + "mAssetSupply": "1727887758367620958729740365" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "139974186487393097351168", - "expectedQty": "138377285235771277982839", - "swapFee": "83984511892435858410", + "inputQty": "2492623328415450624", + "expectedQty": "2460837014939811581", "reserves": [ - "16512412793016562270414101", - "50905050397586214262525897", - "35685241947760842461787597" - ], - "mAssetSupply": "103002751290817278661695443" + "1179110368373724621439955582", + "208162953632028731085740944", + "346594683368881565336691578" + ] }, { "type": "mintMulti", "inputQtys": [ - "525863574312412812148736", - "241113595942457908920320", - "204438525078074524958720" + "5108064331247446116007936", + "3963768170475644832972800", + "13263252451076184339382272" ], - "expectedQty": "975696445998891690098450", + "expectedQty": "22494169193688116084329516", "reserves": [ - "17038276367328975082562837", - "51146163993528672171446217", - "35889680472838916986746317" + "1184218432704972067555963518", + "212126721802504375918713744", + "359857935819957749676073850" ], - "mAssetSupply": "103978447736816170351793893" + "mAssetSupply": "1750381930022146089753881462" }, { - "type": "redeemMasset", - "inputQty": "2920993816402854936576", - "expectedQtys": [ - "478500789193267871610", - "1436382372693511127303", - "1007921227470958068466" + "type": "mintMulti", + "inputQtys": [ + "478749722729811745439744", + "458867412434248886386688", + "252969764321330571771904" ], - "redemptionFee": "876298144920856480", + "expectedQty": "1199552531829027432907612", "reserves": [ - "17037797866539781814691227", - "51144727611155978660318914", - "35888672551611446028677851" + "1184697182427701879301403262", + "212585589214938624805100432", + "360110905584279080247845754" ], - "mAssetSupply": "103975527619297912417713797" + "mAssetSupply": "1751581482553975117186789074" }, { "type": "mint", "inputIndex": 1, - "inputQty": "81876235824393688711168", - "expectedQty": "81512013244233381110759", + "inputQty": "15024745860668374122496", + "expectedQty": "15445649370584962277237", "reserves": [ - "17037797866539781814691227", - "51226603846980372349030082", - "35888672551611446028677851" + "1184697182427701879301403262", + "212600613960799293179222928", + "360110905584279080247845754" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "1491440620802164020740096", - "expectedQty": "1473585727418995942149543", - "swapFee": "894864372481298412444", + "inputQty": "367206235063542966386688", + "expectedQty": "362678944524116079454927", "reserves": [ - "15564212139120785872541684", - "51226603846980372349030082", - "35888672551611446028677851" - ], - "mAssetSupply": "102566493876112463076496904" + "1185064388662765422267789950", + "212600613960799293179222928", + "360110905584279080247845754" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "7939433682951526678528", - "3662681970431635750912", - "5211071149422852177920" - ], - "expectedQty": "16887205526315982681896", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1398775288970952036057088", + "expectedQty": "1386937106655913357032267", + "swapFee": "839265173382571221634", "reserves": [ - "15572151572803737399220212", - "51230266528950803984780994", - "35893883622760868880855771" + "1185064388662765422267789950", + "212600613960799293179222928", + "358723968477623166890813487" ], - "mAssetSupply": "102583381081638779059178800" + "mAssetSupply": "1750561671124072248763685784" }, { - "type": "redeemMasset", - "inputQty": "16425400992444278374", - "expectedQtys": [ - "2492626949435003422", - "8200404573496520559", - "5745517003201666941" - ], - "redemptionFee": "4927620297733283", + "type": "swap", + "inputIndex": 2, + "inputQty": "357503709232148479213568", + "outputIndex": 1, + "expectedQty": "350300520518593705669694", + "swapFee": "216210988973743744275", "reserves": [ - "15572149080176787964216790", - "51230258328546230488260435", - "35893877877243865679188830" + "1185064388662765422267789950", + "212250313440280699473553234", + "359081472186855315370027055" ], - "mAssetSupply": "102583364661165406912633709" + "mAssetSupply": "1750561887335061222507430059", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1632125781980206596096", - "13462347309686852681728", - "11068994935619435102208" + "type": "redeemMasset", + "inputQty": "4854978681599757859684352", + "expectedQtys": [ + "3285651507776084274617985", + "588474828079116995072686", + "995571710526640794881710" ], - "expectedQty": "26099993540049122396239", + "redemptionFee": "1456493604479927357905", "reserves": [ - "15573781205958768170812886", - "51243720675855917340942163", - "35904946872179485114291038" + "1181778737154989337993171965", + "211661838612201582478480548", + "358085900476328674575145345" ], - "mAssetSupply": "102609464654705456035029948" + "mAssetSupply": "1745708365147065944575103612" }, { "type": "redeemBassets", "inputQtys": [ - "74140950756132321755136", - "3729264232774544543186944", - "1665737254955954452037632" - ], - "expectedQty": "5449855286733267340913625", - "swapFee": "3271876297818651595505", - "reserves": [ - "15499640255202635849057750", - "47514456443081372797755219", - "34239209617223530662253406" - ], - "mAssetSupply": "97159609367972188694116323" - }, - { - "type": "mintMulti", - "inputQtys": [ - "787583137135040659456", - "1726443326202256556032", - "505026321690303201280" - ], - "expectedQty": "3019293686911237353360", - "reserves": [ - "15500427838339770889717206", - "47516182886407575054311251", - "34239714643545220965454686" + "1598372162986963", + "905391843783042", + "223755351810247" ], - "mAssetSupply": "97162628661659099931469683" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "19806424795909898240", - "expectedQty": "19883699512715282255", - "swapFee": "11883854877545938", + "expectedQty": "2734990081279680", + "swapFee": "1641979236309", "reserves": [ - "15500427838339770889717206", - "47516163002708062339028996", - "34239714643545220965454686" + "1181778737153390965830185002", + "211661838611296190634697506", + "358085900476104919223335098" ], - "mAssetSupply": "97162608867118158899117381" + "mAssetSupply": "1745708365144330954493823932" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "175844745550882340864", - "expectedQty": "173804662828296086637", - "swapFee": "105506847330529404", + "inputQty": "3998288758646968942592", + "expectedQty": "4045938300125894206744", + "swapFee": "2398973255188181365", "reserves": [ - "15500254033676942593630569", - "47516163002708062339028996", - "34239714643545220965454686" + "1181774691215090839935978258", + "211661838611296190634697506", + "358085900476104919223335098" ], - "mAssetSupply": "97162433127879455347305921" + "mAssetSupply": "1745704369254545562713062705" }, { - "type": "mintMulti", - "inputQtys": [ - "244572800868597268480", - "116664063421101326336", - "98013925787696021504" + "type": "redeemMasset", + "inputQty": "431520411523676658624102", + "expectedQtys": [ + "292035078842574206872802", + "52304963193329871404551", + "88488647586818546339396" ], - "expectedQty": "461297751905650090719", + "redemptionFee": "129456123457102997587", "reserves": [ - "15500498606477811190899049", - "47516279666771483440355332", - "34239812657471008661476190" + "1181482656136248265729105456", + "211609533648102860763292955", + "357997411828518100676995702" ], - "mAssetSupply": "97162894425631360997396640" + "mAssetSupply": "1745272978299145343157436190" }, { - "type": "redeemBassets", - "inputQtys": [ - "78671531165811094847488", - "101213718578023710588928", - "91393309671513087016960" + "type": "redeemMasset", + "inputQty": "651987976222017794867200", + "expectedQtys": [ + "441238363135831209461748", + "79028027847797768678896", + "133698274097951063713802" ], - "expectedQty": "271559894945967100773402", - "swapFee": "163033757221913408509", + "redemptionFee": "195596392866605338460", "reserves": [ - "15421827075312000096051561", - "47415065948193459729766404", - "34148419347799495574459230" + "1181041417773112434519643708", + "211530505620255062994614059", + "357863713554420149613281900" ], - "mAssetSupply": "96891334530685393896623238" + "mAssetSupply": "1744621185919316191967907450" }, { - "type": "redeemBassets", - "inputQtys": [ - "132336791221411417948160", - "265174055058956676497408", - "54634170919480360697856" + "type": "redeemMasset", + "inputQty": "584694780239228620", + "expectedQtys": [ + "395697125063192852", + "70871361221963780", + "119898964157348118" ], - "expectedQty": "452353383985059015627149", - "swapFee": "271574975376261166075", + "redemptionFee": "175408434071768", "reserves": [ - "15289490284090588678103401", - "47149891893134503053268996", - "34093785176880015213761374" + "1181041417377415309456450856", + "211530505549383701772650279", + "357863713434521185455933782" ], - "mAssetSupply": "96438981146700334880996089" + "mAssetSupply": "1744621185334796820162750598" }, { - "type": "mintMulti", - "inputQtys": [ - "69425526955245437976576", - "108725756080921665077248", - "6691350866505370697728" - ], - "expectedQty": "185124687980807512756566", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2448308007007022812758016", + "expectedQty": "2379135180895409465266587", + "swapFee": "1468984804204213687654", "reserves": [ - "15358915811045834116079977", - "47258617649215424718346244", - "34100476527746520584459102" + "1181041417377415309456450856", + "209151370368488292307383692", + "357863713434521185455933782" ], - "mAssetSupply": "96624105834681142393752655" + "mAssetSupply": "1742174346312594001563680236" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "274690213340556010979328", - "expectedQty": "274249306072204156955635", + "inputQty": "14760511848159291023294464", + "expectedQty": "14627589591988606752516190", + "swapFee": "8856307108895574613976", "reserves": [ - "15358915811045834116079977", - "47258617649215424718346244", - "34375166741087076595438430" - ] + "1181041417377415309456450856", + "209151370368488292307383692", + "343236123842532578703417592" + ], + "mAssetSupply": "1727422690771543606114999748" }, { - "type": "mintMulti", - "inputQtys": [ - "776159334652888", - "82228287002247", - "840640798414296" - ], - "expectedQty": "1706058618197713", + "type": "redeem", + "inputIndex": 0, + "inputQty": "33379590800265838592", + "expectedQty": "33792376500438743677", + "swapFee": "20027754480159503", "reserves": [ - "15358915811821993450732865", - "47258617649297653005348491", - "34375166741927717393852726" + "1181041383585038809017707179", + "209151370368488292307383692", + "343236123842532578703417592" ], - "mAssetSupply": "96898355142459405168906003" + "mAssetSupply": "1727422657411980560329320659" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "9094897395285642706944", - "expectedQty": "9104301672397437777112", - "swapFee": "5456938437171385624", + "type": "redeemBassets", + "inputQtys": [ + "1173846488162486364143616", + "3004275159852629840887808", + "4560762125072334386626560" + ], + "expectedQty": "8853373328976330818379651", + "swapFee": "5315213125260955064066", "reserves": [ - "15358915811821993450732865", - "47258617649297653005348491", - "34366062440255319956075614" + "1179867537096876322653563563", + "206147095208635662466495884", + "338675361717460244316791032" ], - "mAssetSupply": "96889265702002556697584683" + "mAssetSupply": "1718569284083004229510941008" }, { "type": "redeemMasset", - "inputQty": "138662468246263893170585", + "inputQty": "8462527514591571109478", "expectedQtys": [ - "21974222315289843536380", - "67613585702424357861028", - "49168021064484158714876" + "5808125508965358313106", + "1014798835152693251656", + "1667194787382084663391" ], - "redemptionFee": "41598740473879167951", + "redemptionFee": "2538758254377471332", "reserves": [ - "15336941589506703607196485", - "47191004063595228647487463", - "34316894419190835797360738" + "1179861728971367357295250457", + "206146080409800509773244228", + "338673694522672862232127641" ], - "mAssetSupply": "96750644832496766683582049" + "mAssetSupply": "1718560824094247892317302862" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "6151021055201808832528384", - "outputIndex": 0, - "expectedQty": "6004417462677388624864328", - "swapFee": "3682433892927881234067", + "type": "mintMulti", + "inputQtys": [ + "338701302695805065363456", + "2439227068866041084903424", + "403324548042256013066240" + ], + "expectedQty": "3251973574190559778627905", "reserves": [ - "9332524126829314982332157", - "47191004063595228647487463", - "40467915474392644629889122" + "1180200430274063162360613913", + "208585307478666550858147652", + "339077019070715118245193881" ], - "mAssetSupply": "96754327266389694564816116", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1721812797668438452095930767" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "147896798474555204042752", - "29618801357605488820224", - "248765619559052223709184" + "24322992567959444", + "51207667653525552", + "99334401690153280" ], - "expectedQty": "429870903491869203931020", + "expectedQty": "176959476081526135", + "swapFee": "106239429306499", "reserves": [ - "9480420925303870186374909", - "47220622864952834136307687", - "40716681093951696853598306" + "1180200430249740169792654469", + "208585307427458883204622100", + "339077018971380716555040601" ], - "mAssetSupply": "97184198169881563768747136" + "mAssetSupply": "1721812797491478976014404632" }, { "type": "redeemBassets", "inputQtys": [ - "1993585582475768496128", - "2846493380600847663104", - "3868043344523160977408" + "58127689992154849280", + "84631132443763638272", + "98103066426626228224" + ], + "expectedQty": "243473942790955410781", + "swapFee": "146172068915922800", + "reserves": [ + "1180200372122050177637805189", + "208585222796326439440983828", + "339076920868314289928812377" + ], + "mAssetSupply": "1721812554017536185058993851" + }, + { + "type": "mintMulti", + "inputQtys": [ + "10496618155078686720", + "29930449545662226432", + "105870756712946876416" ], - "expectedQty": "8735426152199171198503", - "swapFee": "5244402332719134199", + "expectedQty": "148017098688163156947", "reserves": [ - "9478427339721394417878781", - "47217776371572233288644583", - "40712813050607173692620898" + "1180200382618668332716491909", + "208585252726775985103210260", + "339077026739071002875688793" ], - "mAssetSupply": "97175462743729364597548633" + "mAssetSupply": "1721812702034634873222150798" }, { - "type": "redeemBassets", - "inputQtys": [ - "12062922204982902784", - "33435186774969249792", - "44507285751757168640" - ], - "expectedQty": "89938961484460366526", - "swapFee": "53995774355289393", + "type": "swap", + "inputIndex": 0, + "inputQty": "1115209709901398528", + "outputIndex": 2, + "expectedQty": "1089949177437945898", + "swapFee": "660480600813466", "reserves": [ - "9478415276799189434975997", - "47217742936385458319394791", - "40712768543321421935452258" + "1180200383733878042617890437", + "208585252726775985103210260", + "339077025649121825437742895" ], - "mAssetSupply": "97175372804767880137182107" + "mAssetSupply": "1721812702035295353822964264", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3816733727546117980160", - "7255014589237515255808", - "2668682129287719419904" + "4232779630946193", + "337252268451249", + "1509725465396006" ], - "expectedQty": "13805790929996186173337", - "swapFee": "8288447626573655897", + "expectedQty": "6048931829080818", "reserves": [ - "9474598543071643316995837", - "47210487921796220804138983", - "40710099861192134216032354" + "1180200383738110822248836630", + "208585252727113237371661509", + "339077025650631550903138901" ], - "mAssetSupply": "97161567013837883951008770" + "mAssetSupply": "1721812702041344285652045082" }, { "type": "mintMulti", "inputQtys": [ - "176569208449913350782976", - "1658170726386462573461504", - "1233187781668506420903936" + "61538621019079498006528", + "37775852853564750692352", + "79424964480934961217536" ], - "expectedQty": "3055331494287811534138702", + "expectedQty": "179778430262164998210633", "reserves": [ - "9651167751521556667778813", - "48868658648182683377600487", - "41943287642860640636936290" + "1180261922359129901746843158", + "208623028579966802122353861", + "339156450615112485864356437" ], - "mAssetSupply": "100216898508125695485147472" + "mAssetSupply": "1721992480471606450650255715" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "35965487568330006528", - "expectedQty": "35703177606739233096", + "inputIndex": 0, + "inputQty": "26810724010472652800", + "expectedQty": "26464400578286841006", "reserves": [ - "9651167751521556667778813", - "48868694613670251707607015", - "41943287642860640636936290" + "1180261949169853912219495958", + "208623028579966802122353861", + "339156450615112485864356437" ] }, { "type": "mintMulti", "inputQtys": [ - "14573035510860", - "2903591337822", - "7784504083699" + "109402720252005990400", + "214935925605682642944", + "63763063825776582656" + ], + "expectedQty": "393494212329401714123", + "reserves": [ + "1180262058572574164225486358", + "208623243515892407804996805", + "339156514378176311640939093" + ], + "mAssetSupply": "1721992900430219358338810844" + }, + { + "type": "redeemMasset", + "inputQty": "19466981320156476184985", + "expectedQtys": [ + "13338758016684622561171", + "2357760246296391114548", + "3832984922470535433750" ], - "expectedQty": "25714793911006", + "redemptionFee": "5840094396046942855", "reserves": [ - "9651167751536129703289673", - "48868694613673155298944837", - "41943287642868425141019989" + "1180248719814557479602925187", + "208620885755646111413882257", + "339152681393253841105505343" ], - "mAssetSupply": "100216934211329017018291574" + "mAssetSupply": "1721973439288993597909568714" }, { "type": "mintMulti", "inputQtys": [ - "3569125877767157579776", - "16608429925376406323200", - "1208857396670653792256" + "723621615760642125332480", + "173692014387775026495488", + "990465077412234667229184" ], - "expectedQty": "21385428184894079304023", + "expectedQty": "1892680617339797946772496", "reserves": [ - "9654736877413896860869449", - "48885303043598531705268037", - "41944496500265095794812245" + "1180972341430318121728257667", + "208794577770033886440377745", + "340143146470666075772734527" ], - "mAssetSupply": "100238319639513911097595597" + "mAssetSupply": "1723866119906333395856341210" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "498464151139766894592", - "expectedQty": "495697914099491343710", + "type": "redeem", + "inputIndex": 0, + "inputQty": "10719035557357923449438208", + "expectedQty": "10851625998991783221416806", + "swapFee": "6431421334414754069662", "reserves": [ - "9654736877413896860869449", - "48885303043598531705268037", - "41944994964416235561706837" - ] + "1170120715431326338506840861", + "208794577770033886440377745", + "340143146470666075772734527" + ], + "mAssetSupply": "1713153515770309887160972664" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "693894700630758945456128", - "outputIndex": 0, - "expectedQty": "663899490155972300238939", - "swapFee": "413994763879772525796", + "inputQty": "314650219999231557500928", + "expectedQty": "311643367467823781366930", + "swapFee": "188790131999538934500", "reserves": [ - "8990837387257924560630510", - "48885303043598531705268037", - "42638889665046994507162965" + "1170120715431326338506840861", + "208794577770033886440377745", + "339831503103198251991367597" ], - "mAssetSupply": "100239229332191890361465103", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1712839054340442655142406236" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "235502751605074803294208", - "expectedQty": "236828167195946103972471", - "swapFee": "141301650963044881976", + "inputQty": "812114244133969505288192", + "expectedQty": "804318151845082429043541", + "swapFee": "487268546480381703172", "reserves": [ - "8990837387257924560630510", - "48885303043598531705268037", - "42402061497851048403190494" + "1170120715431326338506840861", + "208794577770033886440377745", + "339027184951353169562324056" ], - "mAssetSupply": "100003867882237778603052871" + "mAssetSupply": "1712027427364855166018821216" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "163404681711292317696", - "199184768687100624896", - "263341406407258701824" + "32834920759826118082560", + "8521617679563425316864", + "27387549330475721949184" ], - "expectedQty": "629491036144366829258", - "swapFee": "377921374511326893", + "expectedQty": "68816504865275668632795", "reserves": [ - "8990673982576213268312814", - "48885103858829844604643141", - "42401798156444641144488670" + "1170153550352086164624923421", + "208803099387713449865694609", + "339054572500683645284273240" ], - "mAssetSupply": "100003238391201634236223613" + "mAssetSupply": "1712096243869720441687454011" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 1, + "inputQty": "491025975870759226048512", + "expectedQty": "477182978628449546356243", + "swapFee": "294615585522455535629", + "reserves": [ + "1170153550352086164624923421", + "208325916409085000319338366", + "339054572500683645284273240" + ], + "mAssetSupply": "1711605512509435204916941128" + }, + { + "type": "redeemBassets", "inputQtys": [ - "646379786362988920832", - "301484555881731391488", - "774028029959625506816" + "2495912020167419756544", + "1982485266065024090112", + "418964242854897713152" ], - "expectedQty": "1741448310322530530555", + "expectedQty": "4925718468481839746707", + "swapFee": "2957205404331702869", "reserves": [ - "8991320362362576257233646", - "48885405343385726336034629", - "42402572184474600769995486" + "1170151054440065997205166877", + "208323933923818935295248254", + "339054153536440790386560088" ], - "mAssetSupply": "100004979839511956766754168" + "mAssetSupply": "1711600586790966723077194421" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 1, + "inputQty": "931213013890817851392", + "expectedQty": "904899912486630101399", + "swapFee": "558727808334490710", + "reserves": [ + "1170151054440065997205166877", + "208323029023906448665146855", + "339054153536440790386560088" + ], + "mAssetSupply": "1711599656136680640593833739" + }, + { + "type": "mintMulti", "inputQtys": [ - "425473368413678285619200", - "225813889207930800046080", - "861012017299461192548352" + "1566450837557859317710848", + "3810204440404044718014464", + "17751143421761550253293568" ], - "expectedQty": "1523320394094725680682117", - "swapFee": "914540961033455481698", + "expectedQty": "23364985023889422102807936", "reserves": [ - "8565846993948897971614446", - "48659591454177795535988549", - "41541560167175139577447134" + "1171717505277623856522877725", + "212133233464310493383161319", + "356805296958202340639853656" ], - "mAssetSupply": "98481659445417231086072051" + "mAssetSupply": "1734964641160570062696641675" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "282673351770426408960", + "inputIndex": 2, + "inputQty": "5514375221178048589070336", "outputIndex": 1, - "expectedQty": "297518599662544007629", - "swapFee": "177140829536556603", + "expectedQty": "5400542213371047066436846", + "swapFee": "3333924270883235274549", "reserves": [ - "8566129667300668398023406", - "48659293935578132991980920", - "41541560167175139577447134" + "1171717505277623856522877725", + "206732691250939446316724473", + "362319672179380389228923992" ], - "mAssetSupply": "98481659622558060622628654", + "mAssetSupply": "1734967975084840945931916224", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "257813261795760281", - "expectedQtys": [ - "22418380238561223", - "127346023928616992", - "108718234220270426" + "type": "mintMulti", + "inputQtys": [ + "4222986823343187683180544", + "195675329300052762951680", + "3547049379764648347172864" ], - "redemptionFee": "77343978538728", + "expectedQty": "7945314784768157687979751", "reserves": [ - "8566129644882288159462183", - "48659293808232109063363928", - "41541560058456905357176708" + "1175940492100967044206058269", + "206928366580239499079676153", + "365866721559145037576096856" ], - "mAssetSupply": "98481659364822142805407101" + "mAssetSupply": "1742913289869609103619895975" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "209126652459307570823168", - "expectedQty": "207391934464481647001651", + "type": "redeemBassets", + "inputQtys": [ + "21336734247784741339136", + "258975159386267977777152", + "259337147137041929076736" + ], + "expectedQty": "548851213407396526538429", + "swapFee": "329508433104300496220", "reserves": [ - "8566129644882288159462183", - "48868420460691416634187096", - "41541560058456905357176708" - ] + "1175919155366719259464719133", + "206669391420853231101899001", + "365607384412007995647020120" + ], + "mAssetSupply": "1742364438656201707093357546" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5415760206839350820864", - "expectedQty": "5657441402503422858534", + "inputIndex": 1, + "inputQty": "4586319793692354117894144", + "expectedQty": "4717572917068067696303681", "reserves": [ - "8571545405089127510283047", - "48868420460691416634187096", - "41541560058456905357176708" + "1175919155366719259464719133", + "211255711214545585219793145", + "365607384412007995647020120" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2461324607981439418368", - "outputIndex": 1, - "expectedQty": "2591051419945250465593", - "swapFee": "1542637720101702441", + "type": "mintMulti", + "inputQtys": [ + "6735383331233557643264", + "5965653130472536932352", + "5134228736247493296128" + ], + "expectedQty": "17957905124468308531201", "reserves": [ - "8574006729697108949701415", - "48865829409271471383721503", - "41541560058456905357176708" + "1175925890750050493022362397", + "211261676867676057756725497", + "365612518640744243140316248" ], - "mAssetSupply": "98694710283326847976969727", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1747099969478394243098192428" }, { "type": "mintMulti", "inputQtys": [ - "35813573618793042673664", - "40059828148826730921984", - "25483495283987882967040" + "830354787316641824768", + "678211189909391147008", + "514375169913462784000" ], - "expectedQty": "102454555234878755117204", + "expectedQty": "2035590202948824783876", "reserves": [ - "8609820303315901992375079", - "48905889237420298114643487", - "41567043553740893240143748" + "1175926721104837809664187165", + "211262355078865967147872505", + "365613033015914156603100248" ], - "mAssetSupply": "98797164838561726732086931" + "mAssetSupply": "1747102005068597191922976304" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "310246546222042578944", - "outputIndex": 0, - "expectedQty": "295046001886489695834", - "swapFee": "184975592316497177", + "type": "mintMulti", + "inputQtys": [ + "11968557051275934433280", + "41887724665896972582912", + "19135814831641135677440" + ], + "expectedQty": "74158251421246959689968", "reserves": [ - "8609525257314015502679245", - "48905889237420298114643487", - "41567353800287115282722692" + "1175938689661889085598620445", + "211304242803531864120455417", + "365632168830745797738777688" ], - "mAssetSupply": "98797165023537319048584108", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1747176163320018438882666272" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2333729818280440889344", - "outputIndex": 2, - "expectedQty": "2327675500559173504262", - "swapFee": "1388642970629655902", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1399839739749190598656", + "expectedQty": "1388829286331709215565", + "swapFee": "839903843849514359", "reserves": [ - "8609525257314015502679245", - "48908222967238578555532831", - "41565026124786556109218430" + "1175938689661889085598620445", + "211304242803531864120455417", + "365630780001459466029562123" ], - "mAssetSupply": "98797166412180289678240010", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1747174764320182533541581975" }, { "type": "mintMulti", "inputQtys": [ - "27074956598342764724224", - "3230454217531212169216", - "165514399630594391670784" + "1120922134427507", + "198732788553212", + "676031515963662" ], - "expectedQty": "195946497355924832975070", + "expectedQty": "1992577413025417", "reserves": [ - "8636600213912358267403469", - "48911453421456109767702047", - "41730540524417150500889214" + "1175938689663010007733047952", + "211304242803730596909008629", + "365630780002135497545525785" ], - "mAssetSupply": "98993112909536214511215080" + "mAssetSupply": "1747174764322175110954607392" }, { - "type": "mintMulti", - "inputQtys": [ - "1499010565606706432", - "1038030098056750208", - "1663765283068835072" - ], - "expectedQty": "4247921362973990644", + "type": "redeem", + "inputIndex": 2, + "inputQty": "32799532946816950272", + "expectedQty": "32541546391195557115", + "swapFee": "19679719768090170", "reserves": [ - "8636601712922923874109901", - "48911454459486207824452255", - "41730542188182433569724286" + "1175938689663010007733047952", + "211304242803730596909008629", + "365630747460589106349968670" ], - "mAssetSupply": "98993117157457577485205724" + "mAssetSupply": "1747174731542321883905747290" }, { "type": "mintMulti", "inputQtys": [ - "122195838824344964825088", - "256875363684826524680192", - "194182436147135070076928" + "724109360974320631808", + "607402231299680239616", + "2162491363436455526400" ], - "expectedQty": "575273099625420234018939", + "expectedQty": "3518026047632223593781", "reserves": [ - "8758797551747268838934989", - "49168329823171034349132447", - "41924724624329568639801214" + "1175939413772370982053679760", + "211304850205961896589248245", + "365632909951952542805495070" ], - "mAssetSupply": "99568390257082997719224663" + "mAssetSupply": "1747178249568369516129341071" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "4315600859336062747541504", - "expectedQty": "4441242610824519250950220", + "inputQty": "253676049536980448", + "outputIndex": 2, + "expectedQty": "248623523324262313", + "swapFee": "150356734908109", "reserves": [ - "13074398411083331586476493", - "49168329823171034349132447", - "41924724624329568639801214" - ] + "1175939414026047031590660208", + "211304850205961896589248245", + "365632909703329019481232757" + ], + "mAssetSupply": "1747178249568519872864249180", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "150899536093435393998848", - "expectedQty": "153805871516076571279132", + "inputQty": "3533580188182783197184", + "expectedQty": "3490656465862088594812", "reserves": [ - "13225297947176766980475341", - "49168329823171034349132447", - "41924724624329568639801214" + "1175942947606235214373857392", + "211304850205961896589248245", + "365632909703329019481232757" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1432735579685969559814144", - "expectedQty": "1436909780731342514519038", - "swapFee": "859641347811581735888", + "type": "redeemBassets", + "inputQtys": [ + "16311744139822851162112", + "61405258228644641243136", + "47403381426201286410240" + ], + "expectedQty": "126986799985568009503859", + "swapFee": "76237822684951776768", "reserves": [ - "13225297947176766980475341", - "49168329823171034349132447", - "40487814843598226125282176" + "1175926635862095391522695280", + "211243444947733251948005109", + "365585506321902818194822517" ], - "mAssetSupply": "102731562801085435563375759" + "mAssetSupply": "1747054753425000166943340133" }, { - "type": "redeemMasset", - "inputQty": "9856259029087137090764", - "expectedQtys": [ - "1268479259561701786177", - "4715886693599638743580", - "3883311634959592749146" - ], - "redemptionFee": "2956877708726141127", + "type": "mint", + "inputIndex": 0, + "inputQty": "54492745877510739197952", + "expectedQty": "53830578733547483872218", "reserves": [ - "13224029467917205278689164", - "49163613936477434710388867", - "40483931531963266532533030" - ], - "mAssetSupply": "102721709498934057152426122" + "1175981128607972902261893232", + "211243444947733251948005109", + "365585506321902818194822517" + ] }, { "type": "redeemBassets", "inputQtys": [ - "3107297182082073624576", - "21446833956941820067840", - "17556607354687702695936" + "2121701067304400565829632", + "924446130214387478167552", + "3251765274603420420931584" ], - "expectedQty": "41996540572727635412013", - "swapFee": "25213052174941546174", + "expectedQty": "6322077575980833953858114", + "swapFee": "3795523859904443038137", "reserves": [ - "13220922170735123205064588", - "49142167102520492890321027", - "40466374924608578829837094" + "1173859427540668501696063600", + "210318998817518864469837557", + "362333741047299397773890933" ], - "mAssetSupply": "102679712958361329517014109" + "mAssetSupply": "1740786506427752880473354237" }, { - "type": "redeemMasset", - "inputQty": "20004793727796700774", - "expectedQtys": [ - "2575021576830427704", - "9571355083029020280", - "7881582481260679603" - ], - "redemptionFee": "6001438118339010", + "type": "mint", + "inputIndex": 2, + "inputQty": "59093245492399153152", + "expectedQty": "59536251286723596538", "reserves": [ - "13220919595713546374636884", - "49142157531165409861300747", - "40466367043026097569157491" - ], - "mAssetSupply": "102679692959569039838652345" + "1173859427540668501696063600", + "210318998817518864469837557", + "362333800140544890173044085" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "89266983613110025191424", + "expectedQty": "91776143467181101558132", + "reserves": [ + "1173859427540668501696063600", + "210408265801131974495028981", + "362333800140544890173044085" + ] }, { "type": "redeemBassets", "inputQtys": [ - "94195892531317407744", - "147413061184040714240", - "34340248389140344832" + "3557981298022498005155840", + "6029770857396472366759936", + "6642723289011422083678208" ], - "expectedQty": "276800754878065247693", - "swapFee": "166180161023453220", + "expectedQty": "16411315795526748065769867", + "swapFee": "9852701097974833739705", "reserves": [ - "13220825399821015057229140", - "49142010118104225820586507", - "40466332702777708428812659" + "1170301446242646003690907760", + "204378494943735502128269045", + "355691076851533468089365877" ], - "mAssetSupply": "102679416158814161773404652" + "mAssetSupply": "1724467026311944600232739040" }, { "type": "mint", "inputIndex": 2, - "inputQty": "591998967764176200531968", - "expectedQty": "589971326838204858996732", + "inputQty": "3271953857164759003037696", + "expectedQty": "3297311148398835159157571", "reserves": [ - "13220825399821015057229140", - "49142010118104225820586507", - "41058331670541884629344627" + "1170301446242646003690907760", + "204378494943735502128269045", + "358963030708698227092403573" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "24196282772137107783680", - "expectedQty": "23737075641899208213903", - "swapFee": "14517769663282264670", + "type": "mint", + "inputIndex": 1, + "inputQty": "954549717862572347097088", + "expectedQty": "982717763430717570160779", + "reserves": [ + "1170301446242646003690907760", + "205333044661598074475366133", + "358963030708698227092403573" + ] + }, + { + "type": "redeemMasset", + "inputQty": "80225073234257117184", + "expectedQtys": [ + "54293282925103562362", + "9525926096628647603", + "16653214817850575514" + ], + "redemptionFee": "24067521970277135", "reserves": [ - "13197088324179115849015237", - "49142010118104225820586507", - "41058331670541884629344627" + "1170301391949363078587345398", + "205333035135671977846718530", + "358963014055483409241828059" ], - "mAssetSupply": "103245205720649892806882374" + "mAssetSupply": "1728746975022768440675217341" }, { "type": "redeemMasset", - "inputQty": "580708092908880579788", + "inputQty": "1228303565044379648", "expectedQtys": [ - "74205449467703170148", - "276318901486716148987", - "230865466773035809643" + "831269206575070644", + "145848779105157622", + "254972695013771851" ], - "redemptionFee": "174212427872664173", + "redemptionFee": "368491069513313", "reserves": [ - "13197014118729648145845089", - "49141733799202739104437520", - "41058100805075111593534984" + "1170301391118093872012274754", + "205333034989823198741560908", + "358963013800510714228056208" ], - "mAssetSupply": "103244625186769411798966759" + "mAssetSupply": "1728746973794833366700351006" }, { - "type": "mintMulti", - "inputQtys": [ - "794010236949616914333696", - "444916818181558978478080", - "25749585143238987087872" + "type": "redeemMasset", + "inputQty": "2846685121408348140339", + "expectedQtys": [ + "1926528384012853987276", + "338015423279524531984", + "590918237084875760869" ], - "expectedQty": "1276448334601974908093788", + "redemptionFee": "854005536422504442", "reserves": [ - "13991024355679265060178785", - "49586650617384298082915600", - "41083850390218350580622856" + "1170299464589709859158287478", + "205332696974399919217028924", + "358962422882273629352295339" ], - "mAssetSupply": "104521073521371386707060547" + "mAssetSupply": "1728744127963717494774715109" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5774141582310857752182784", - "outputIndex": 0, - "expectedQty": "5561014472956557595081891", - "swapFee": "3445783226288187214666", + "type": "mintMulti", + "inputQtys": [ + "2902924746255799681024", + "33455572539070495064064", + "25278127052247686709248" + ], + "expectedQty": "62775747912365423119682", "reserves": [ - "8430009882722707465096894", - "55360792199695155835098384", - "41083850390218350580622856" + "1170302367514456114957968502", + "205366152546938989712092988", + "358987701009325877039004587" ], - "mAssetSupply": "104524519304597674894275213", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1728806903711629860197834791" }, { "type": "redeemMasset", - "inputQty": "7404155097813792849920", + "inputQty": "123432916489942148422041", "expectedQtys": [ - "596973570725074489649", - "3920390397804230336114", - "2909364663598952364682" + "83531884293748938999177", + "14658281627539645096393", + "25623223481361996048446" ], - "redemptionFee": "2221246529344137854", + "redemptionFee": "37029874946982644526", "reserves": [ - "8429412909151982390607245", - "55356871809297351604762270", - "41080941025554751628258174" + "1170218835630162366018969325", + "205351494265311450066996595", + "358962077785844515042956141" ], - "mAssetSupply": "104517117370746390445563147" + "mAssetSupply": "1728683507825014865032057276" }, { - "type": "redeemBassets", - "inputQtys": [ - "161424192773310621155328", - "102684105626162437292032", - "305057607402221329186816" - ], - "expectedQty": "574990812944858356140990", - "swapFee": "345201608732154306268", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1960687240301463075815424", + "expectedQty": "1984268898229590095017007", + "swapFee": "1176412344180877845489", "reserves": [ - "8267988716378671769451917", - "55254187703671189167470238", - "40775883418152530299071358" + "1168234566731932775923952318", + "205351494265311450066996595", + "358962077785844515042956141" ], - "mAssetSupply": "103942126557801532089422157" + "mAssetSupply": "1726723996997057582834087341" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "305798635465035808768", - "outputIndex": 0, - "expectedQty": "286816828460775615576", - "swapFee": "181618676115401554", + "inputIndex": 0, + "inputQty": "33671346518486685843456", + "outputIndex": 1, + "expectedQty": "32286993331820718859815", + "swapFee": "19951035904145510643", "reserves": [ - "8267701899550210993836341", - "55254493502306654203279006", - "40775883418152530299071358" + "1168268238078451262609795774", + "205319207271979629348136780", + "358962077785844515042956141" ], - "mAssetSupply": "103942126739420208204823711", + "mAssetSupply": "1726724016948093486979597984", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1488912521625233408", - "expectedQty": "1479849533509210469", + "type": "redeemBassets", + "inputQtys": [ + "399149200421688551931904", + "370700840489579563712512", + "507177834205299945242624" + ], + "expectedQty": "1286773068113375905279270", + "swapFee": "772527357282394980155", "reserves": [ - "8267701899550210993836341", - "55254493502306654203279006", - "40775884907065051924304766" - ] + "1167869088878029574057863870", + "204948506431490049784424268", + "358454899951639215097713517" + ], + "mAssetSupply": "1725437243879980111074318714" }, { - "type": "redeemMasset", - "inputQty": "67222208840461690758758", - "expectedQtys": [ - "5345344195714919287179", - "35723867371874014841423", - "26362965472301018545694" + "type": "redeemBassets", + "inputQtys": [ + "279184712754172723200", + "65548324126377132032", + "108151761430857842688" ], - "redemptionFee": "20166662652138507227", + "expectedQty": "452147014071364301058", + "swapFee": "271451079090272744", "reserves": [ - "8262356555354496074549162", - "55218769634934780188437583", - "40749521941592750905759072" + "1167868809693316819885140670", + "204948440883165923407292236", + "358454791799877784239870829" ], - "mAssetSupply": "103874926177091932161782649" + "mAssetSupply": "1725436791732966039710017656" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "580646667342813134848", - "expectedQty": "586243060332135360669", - "swapFee": "348388000405687880", + "inputIndex": 2, + "inputQty": "301438575749013891448832", + "expectedQty": "298975749510428694297938", + "swapFee": "180863145449408334869", "reserves": [ - "8262356555354496074549162", - "55218183391874448053076914", - "40749521941592750905759072" + "1167868809693316819885140670", + "204948440883165923407292236", + "358155816050367355545572891" ], - "mAssetSupply": "103874345878812589754335681" + "mAssetSupply": "1725135534020362475226903693" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "12204111036226528608256", - "expectedQty": "12271465047689774378438", - "swapFee": "7322466621735917164", + "inputIndex": 1, + "inputQty": "3432732756611139803021312", + "expectedQty": "3331211367890883143920076", + "swapFee": "2059639653966683881812", "reserves": [ - "8262356555354496074549162", - "55218183391874448053076914", - "40737250476545061131380634" + "1167868809693316819885140670", + "201617229515275040263372160", + "358155816050367355545572891" ], - "mAssetSupply": "103862149090242984961644589" + "mAssetSupply": "1721704860903405302107764193" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "44571901979918025621504", + "expectedQty": "45925197479142840240519", + "reserves": [ + "1167868809693316819885140670", + "201661801417254958288993664", + "358155816050367355545572891" + ] }, { "type": "redeemMasset", - "inputQty": "29460489291870843699", + "inputQty": "620898841085685530624", "expectedQtys": [ - "2342913612283923486", - "15657933986227254702", - "11551650915701998263" + "421031230427491337152", + "72701587435345264067", + "129119625992963401328" ], - "redemptionFee": "8838146787561253", + "redemptionFee": "186269652325705659", "reserves": [ - "8262354212440883790625676", - "55218167733940461825822212", - "40737238924894145429382371" + "1167868388662086392393803518", + "201661728715667522943729597", + "358155686930741362582171563" ], - "mAssetSupply": "103862119638591839878362143" + "mAssetSupply": "1721750165388313011588179747" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "31946347512174656526221312", + "expectedQty": "32157391230065072385543948", + "reserves": [ + "1167868388662086392393803518", + "201661728715667522943729597", + "390102034442916019108392875" + ] }, { "type": "redeemMasset", - "inputQty": "448021760932964330373120", + "inputQty": "40636437335534580531", "expectedQtys": [ - "35629967713363722936735", - "238118759250117034567347", - "175672268497039744938634" + "27050327145129012044", + "4670916506833742394", + "9035596608407315194" ], - "redemptionFee": "134406528279889299111", + "redemptionFee": "12190931200660374", "reserves": [ - "8226724244727520067688941", - "54980048974690344791254865", - "40561566656397105684443737" + "1167868361611759247264791474", + "201661724044751016109987203", + "390102025407319410701077681" ], - "mAssetSupply": "103414232284187155437288134" + "mAssetSupply": "1753907515994131679639803538" }, { "type": "redeemBassets", "inputQtys": [ - "157167488100184162304", - "312939761937213030400", - "233634564193772437504" + "21921831011786259987169280", + "20412779366071782617382912", + "23642333108562279853457408" ], - "expectedQty": "707748129855216662299", - "swapFee": "424903820205253149", + "expectedQty": "66522983479404031252581614", + "swapFee": "39937752739285990345756", "reserves": [ - "8226567077239419883526637", - "54979736034928407578224465", - "40561333021832911912006233" + "1145946530599972987277622194", + "181248944678679233492604291", + "366459692298757130847620273" ], - "mAssetSupply": "103413524536057300220625835" + "mAssetSupply": "1687384532514727648387221924" }, { "type": "redeemMasset", - "inputQty": "26514056495781052940288", + "inputQty": "835797151814944563", "expectedQtys": [ - "2108565870191896628596", - "14091952799625327895596", - "10396346575225929306860" + "567441205192744209", + "89749492547907531", + "181460760951645269" ], - "redemptionFee": "7954216948734315882", + "redemptionFee": "250739145544483", "reserves": [ - "8224458511369227986898041", - "54965644082128782250328869", - "40550936675257685982699373" + "1145946530032531782084877985", + "181248944588929740944696760", + "366459692117296369895975004" ], - "mAssetSupply": "103387018433778467902001429" + "mAssetSupply": "1687384531679181235717821844" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1264738945589980245786624", - "expectedQty": "1324841977309684277462496", + "inputIndex": 2, + "inputQty": "4836225981681040883712", + "expectedQty": "4867911008086899464199", "reserves": [ - "9489197456959208232684665", - "54965644082128782250328869", - "40550936675257685982699373" + "1145946530032531782084877985", + "181248944588929740944696760", + "366464528343278050936858716" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "17028538959758875250655232", - "hardLimitError": true - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "96489519949977904742400", - "expectedQty": "100430813643852668866163", + "type": "redeemBassets", + "inputQtys": [ + "229969938349884612542464", + "167685125303425449328640", + "352771206641680967008256" + ], + "expectedQty": "755784821253600808511455", + "swapFee": "453743138635341690120", "reserves": [ - "9585686976909186137427065", - "54965644082128782250328869", - "40550936675257685982699373" - ] + "1145716560094181897472335521", + "181081259463626315495368120", + "366111757136636369969850460" + ], + "mAssetSupply": "1686633614768935721808774588" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5551493840098267404173312", - "expectedQty": "5593402677430583254101623", - "swapFee": "3330896304058960442503", + "inputQty": "20902850673139827163004928", + "expectedQty": "20065778888012626936951006", + "swapFee": "12541710403883896297802", "reserves": [ - "9585686976909186137427065", - "49372241404698198996227246", - "40550936675257685982699373" + "1145716560094181897472335521", + "161015480575613688558417114", + "366111757136636369969850460" ], - "mAssetSupply": "99264128280937796404599279" + "mAssetSupply": "1665743305806199778542067462" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "43638966037992660992", - "expectedQty": "43943095752692975950", - "swapFee": "26183379622795596", + "inputIndex": 2, + "inputQty": "16935041641821", + "expectedQty": "16815843838754", + "swapFee": "10161024985", "reserves": [ - "9585686976909186137427065", - "49372197461602446303251296", - "40550936675257685982699373" + "1145716560094181897472335521", + "161015480575613688558417114", + "366111757136619554126011706" ], - "mAssetSupply": "99264084668155138034733883" + "mAssetSupply": "1665743305806182853661450626" }, { "type": "mintMulti", "inputQtys": [ - "2641133832065257519972352", - "207685927643306463854592", - "1913573986284641290551296" + "182042295843964551168", + "144617794493306568704", + "196235370940677095424" ], - "expectedQty": "4827087296147514194818427", + "expectedQty": "528170956313339216147", "reserves": [ - "12226820808974443657399417", - "49579883389245752767105888", - "42464510661542327273250669" + "1145716742136477741436886689", + "161015625193408181864985818", + "366111953371990494803107130" ], - "mAssetSupply": "104091171964302652229552310" + "mAssetSupply": "1665743833977139167000666773" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "5582706261338347274240", - "expectedQty": "5455066715305764468697", - "swapFee": "3349623756803008364", + "inputQty": "35018577880083767482122240", + "expectedQty": "35510745448005717133224192", + "swapFee": "21011146728050260489273", "reserves": [ - "12221365742259137892930720", - "49579883389245752767105888", - "42464510661542327273250669" + "1110205996688472024303662497", + "161015625193408181864985818", + "366111953371990494803107130" ], - "mAssetSupply": "104085592607665070685286434" + "mAssetSupply": "1630746267243783449779033806" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1526787891390863951003648", - "877107745728826714357760", - "473669739680124597436416" + "380823397788063432704", + "5126981533294292631552", + "2295162665528120573952" ], - "expectedQty": "2909273836909884534029500", - "swapFee": "1746612269507635301598", + "expectedQty": "8033700370012650166491", "reserves": [ - "10694577850868273941927072", - "48702775643516926052748128", - "41990840921862202675814253" + "1110206377511869812367095201", + "161020752174941476157617370", + "366114248534656022923681082" ], - "mAssetSupply": "101176318770755186151256934" + "mAssetSupply": "1630754300944153462429200297" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "1434430208898945119158272", - "expectedQty": "1442723397914727520040295", - "swapFee": "860658125339367071494", + "inputQty": "25481713264325141274296320", + "outputIndex": 2, + "expectedQty": "26243277800129270234022694", + "swapFee": "15861822095941722771569", + "reserves": [ + "1110206377511869812367095201", + "186502465439266617431913690", + "339870970734526752689658388" + ], + "mAssetSupply": "1630770162766249404151971866", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemMasset", + "inputQty": "5951780282020153316605952", + "expectedQtys": [ + "4050676340628524774056490", + "680469090726016275028965", + "1240046290407909448811154" + ], + "redemptionFee": "1785534084606045994981", "reserves": [ - "10694577850868273941927072", - "47260052245602198532707833", - "41990840921862202675814253" + "1106155701171241287593038711", + "185821996348540601156884725", + "338630924444118843240847234" ], - "mAssetSupply": "99742749219981580399170156" + "mAssetSupply": "1624820168018313856881360895" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "410031195020458127785984", - "expectedQty": "407469493147065208480133", + "inputIndex": 2, + "inputQty": "25526082945790077042688", + "expectedQty": "25721729176390651601137", "reserves": [ - "10694577850868273941927072", - "47670083440622656660493817", - "41990840921862202675814253" + "1106155701171241287593038711", + "185821996348540601156884725", + "338656450527064633317889922" ] }, { - "type": "mintMulti", - "inputQtys": [ - "4771647807606484992", - "7454785503047359488", - "4860968400880413696" + "type": "redeemMasset", + "inputQty": "633420436924709155635", + "expectedQtys": [ + "431087916382788019874", + "72418030426605788156", + "131980247873533817194" ], - "expectedQty": "17151145128639247046", + "redemptionFee": "190026131077412746", "reserves": [ - "10694582622516081548412064", - "47670090895408159707853305", - "41990845782830603556227949" + "1106155270083324904805018837", + "185821923930510174551096569", + "338656318546816759784072728" ], - "mAssetSupply": "100150235864273774246897335" + "mAssetSupply": "1624845256517079453901219143" }, { - "type": "mintMulti", - "inputQtys": [ - "7409161800896845185024", - "9855400162962926731264", - "3832339482187822792704" - ], - "expectedQty": "21224945624840726175488", + "type": "mint", + "inputIndex": 0, + "inputQty": "14918902028254500706320384", + "expectedQty": "14723430128605273751931722", "reserves": [ - "10701991784316978393597088", - "47679946295571122634584569", - "41994678122312791379020653" - ], - "mAssetSupply": "100171460809898614973072823" + "1121074172111579405511339221", + "185821923930510174551096569", + "338656318546816759784072728" + ] }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "9178718360745184780615680", - "outputIndex": 2, - "expectedQty": "9138441575157101402445067", - "swapFee": "5467904497182454424069", + "inputQty": "19846436929761206945710080", + "expectedQty": "20436443524619187515061892", "reserves": [ - "10701991784316978393597088", - "56858664656316307415200249", - "32856236547155689976575586" - ], - "mAssetSupply": "100176928714395797427496892", - "hardLimitError": false, - "insufficientLiquidityError": false + "1121074172111579405511339221", + "205668360860271381496806649", + "338656318546816759784072728" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1233893860253260476055552", - "outputIndex": 1, - "expectedQty": "1240757094816902564130883", - "swapFee": "738637595153722998752", + "type": "redeemBassets", + "inputQtys": [ + "293100075860938850304", + "39438639889387749376", + "300121154128879157248" + ], + "expectedQty": "632567717363401859158", + "swapFee": "379768491512948884", "reserves": [ - "10701991784316978393597088", - "55617907561499404851069366", - "34090130407408950452631138" + "1121073879011503544572488917", + "205668321421631492109057273", + "338656018425662630904915480" ], - "mAssetSupply": "100177667351990951150495644", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1660004497602586551766353599" }, { "type": "mintMulti", "inputQtys": [ - "10317404750755401728", - "5934810634859160576", - "9258967177081280512" + "555859488230001407426560", + "4229307054829899217895424", + "3302626268411170807349248" ], - "expectedQty": "25743269815275722976", + "expectedQty": "8218111577971205429004304", "reserves": [ - "10702002101721729148998816", - "55617913496310039710229942", - "34090139666376127533911650" + "1121629738499733545979915477", + "209897628476461391326952697", + "341958644694073801712264728" ], - "mAssetSupply": "100177693095260766426218620" + "mAssetSupply": "1668222609180557757195357903" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "14030501198061070336", - "expectedQty": "13994206312851946435", - "reserves": [ - "10702002101721729148998816", - "55617913496310039710229942", - "34090153696877325594981986" - ] - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "7659959755938012856320", - "expectedQty": "7675209972662838663020", - "swapFee": "4595975853562807713", - "reserves": [ - "10702002101721729148998816", - "55617913496310039710229942", - "34082478486904662756318966" + "type": "redeemBassets", + "inputQtys": [ + "9393870342380854444032", + "103433069518477915586560", + "161263179095753927688192" ], - "mAssetSupply": "100170051725686994828116448" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "730021031210386230083584", - "expectedQty": "750228867656504454855898", + "expectedQty": "277896923132531834669588", + "swapFee": "166838256833619272365", "reserves": [ - "11432023132932115379082400", - "55617913496310039710229942", - "34082478486904662756318966" - ] + "1121620344629391165125471445", + "209794195406942913411366137", + "341797381514978047784576536" + ], + "mAssetSupply": "1667944712257425225360688315" }, { "type": "mintMulti", "inputQtys": [ - "241717459934952948760576", - "52177950993467563835392", - "199968747632271837626368" + "14112108191277754422919168", + "12674829105412259658596352", + "1634445259401660930719744" ], - "expectedQty": "499162811251326759029363", + "expectedQty": "28579433484520442662579221", "reserves": [ - "11673740592867068327842976", - "55670091447303507274065334", - "34282447234536934593945334" + "1135732452820668919548390613", + "222469024512355173069962489", + "343431826774379708715296280" ], - "mAssetSupply": "101419443404594826042001709" + "mAssetSupply": "1696524145741945668023267536" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "123738725906944498860032", - "outputIndex": 2, - "expectedQty": "126988289483467377349993", - "swapFee": "76075879470514800527", + "type": "redeemMasset", + "inputQty": "1830248240502006268035072", + "expectedQtys": [ + "1224886027690588179954832", + "239932564260507386481487", + "370390794975913863791597" + ], + "redemptionFee": "549074472150601880410", "reserves": [ - "11797479318774012826703008", - "55670091447303507274065334", - "34155458945053467216595341" + "1134507566792978331368435781", + "222229091948094665683481002", + "343061435979403794851504683" ], - "mAssetSupply": "101419519480474296556802236", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1694694446575915812357112874" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "2015570330961932189696", + "inputIndex": 0, + "inputQty": "1053378026773578624", "outputIndex": 2, - "expectedQty": "2003455089287116757998", - "swapFee": "1200247018432305379", + "expectedQty": "1032326795555894173", + "swapFee": "624760225839543", "reserves": [ - "11797479318774012826703008", - "55672107017634469206255030", - "34153455489964180099837343" + "1134507567846356358142014405", + "222229091948094665683481002", + "343061434947076999295610510" ], - "mAssetSupply": "101419520680721314989107615", + "mAssetSupply": "1694694446576540572582952417", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3969512452021469919051776", - "expectedQty": "3973235950255548303580401", - "swapFee": "2381707471212881951431", - "reserves": [ - "11797479318774012826703008", - "55672107017634469206255030", - "30180219539708631796256942" - ], - "mAssetSupply": "97452389936171057952007270" - }, { "type": "mintMulti", "inputQtys": [ - "54679267465739736", - "51149115822824848", - "12886159190186588" + "3734619677764457332736", + "3491903377735796916224", + "1285480374646870900736" ], - "expectedQty": "119549183938147596", + "expectedQty": "8560761379700989626993", "reserves": [ - "11797479373453280292442744", - "55672107068783585029079878", - "30180219552594790986443530" + "1134511302466034122599347141", + "222232583851472401480397226", + "343062720427451646166511246" ], - "mAssetSupply": "97452390055720241890154866" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "2260566560799039107891200", - "expectedQty": "2242209099606259091750463", - "reserves": [ - "11797479373453280292442744", - "57932673629582624136971078", - "30180219552594790986443530" - ] + "mAssetSupply": "1694703007337920273572579410" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1404862227118768391192576", - "expectedQty": "1366316919387824448113623", - "swapFee": "842917336271261034715", + "inputQty": "5308253043263562401710080", + "expectedQty": "5366557480515097837762327", + "swapFee": "3184951825958137441026", "reserves": [ - "10431162454065455844329121", - "57932673629582624136971078", - "30180219552594790986443530" + "1129144744985519024761584814", + "222232583851472401480397226", + "343062720427451646166511246" ], - "mAssetSupply": "98290579845544003851747468" + "mAssetSupply": "1689397939246482669308310356" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "10693048564059363328", - "expectedQty": "10592689517221794687", + "inputIndex": 2, + "inputQty": "58256252228428713951232", + "expectedQty": "58718908293555063494684", "reserves": [ - "10431162454065455844329121", - "57932684322631188196334406", - "30180219552594790986443530" + "1129144744985519024761584814", + "222232583851472401480397226", + "343120976679680074880462478" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1852477989107515015561216", - "2457329672350282127769600", - "604089288413415724810240" + "type": "redeemMasset", + "inputQty": "6501418493056775094272", + "expectedQtys": [ + "4343905585387607131904", + "854945627241006338973", + "1320012455162803984559" ], - "expectedQty": "4955841132783860778757177", - "swapFee": "2975289853582465946822", + "redemptionFee": "1950425547917032528", "reserves": [ - "8578684464957940828767905", - "55475354650280906068564806", - "29576130264181375261633290" + "1129140401079933637154452910", + "222231728905845160474058253", + "343119656667224912076477919" ], - "mAssetSupply": "93334749305449660294784978" + "mAssetSupply": "1689450158686708715513743296" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "63364788245535268012032", - "expectedQty": "62681889348236210528310", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5777175537355816928542720", + "expectedQty": "5840139614686846124357012", + "swapFee": "3466305322413490157125", "reserves": [ - "8578684464957940828767905", - "55538719438526441336576838", - "29576130264181375261633290" - ] + "1123300261465246791030095898", + "222231728905845160474058253", + "343119656667224912076477919" + ], + "mAssetSupply": "1683676449454675312075357701" }, { "type": "mintMulti", "inputQtys": [ - "296686487720016092332032", - "532481884344794658897920", - "93192691830811562868736" + "5735113985002919952384", + "6954937882969796247552", + "5856583154591756976128" ], - "expectedQty": "928872986218532671100939", + "expectedQty": "18686143182370450778963", "reserves": [ - "8875370952677956921099937", - "56071201322871235995474758", - "29669322956012186824502026" + "1123305996579231793950048282", + "222238683843728130270305805", + "343125513250379503833454047" ], - "mAssetSupply": "94326304181016429176414227" + "mAssetSupply": "1683695135597857682526136664" }, { "type": "redeemBassets", "inputQtys": [ - "4896213012339344384", - "6441650298731823104", - "1189627770829775104" + "127313983938120269824", + "515213143773768843264", + "618282962664115273728" ], - "expectedQty": "12656385940759692191", - "swapFee": "7598390598815104", + "expectedQty": "1275958198859537580498", + "swapFee": "766034540039746396", "reserves": [ - "8875366056464944581755553", - "56071194881220937263651654", - "29669321766384415994726922" + "1123305869265247855829778458", + "222238168630584356501462541", + "343124894967416839718180319" ], - "mAssetSupply": "94326291524630488416722036" + "mAssetSupply": "1683693859639658822988556166" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "195076028205947748352", - "expectedQty": "195345957481060300602", - "swapFee": "117045616923568649", + "inputQty": "142752560315313050787774464", + "expectedQty": "143351544078072210272659282", "reserves": [ - "8875366056464944581755553", - "56071194881220937263651654", - "29669126420426934934426320" - ], - "mAssetSupply": "94326096565647899392542333" + "1123305869265247855829778458", + "222238168630584356501462541", + "485877455282729890505954783" + ] }, { "type": "redeemBassets", "inputQtys": [ - "7176888287375646523392", - "6797482223359077908480", - "16687909695701039185920" + "2145494812257030242304", + "553596300540033957888", + "2035204734694951485440" ], - "expectedQty": "30849694622893000426304", - "swapFee": "18520929331334601016", + "expectedQty": "4730732583503828550754", + "swapFee": "2840143636284067570", "reserves": [ - "8868189168177568935232161", - "56064397398997578185743174", - "29652438510731233895240400" + "1123303723770435598799536154", + "222237615034283816467504653", + "485875420077995195554469343" ], - "mAssetSupply": "94295246871025006392116029" + "mAssetSupply": "1827040672985147529432664694" }, { - "type": "redeemMasset", - "inputQty": "4978778778071455334", - "expectedQtys": [ - "468098951638671226", - "2959306026183668288", - "1565175834341823945" - ], - "redemptionFee": "1493633633421436", + "type": "redeem", + "inputIndex": 1, + "inputQty": "113213754916577520648192", + "expectedQty": "110473192821389434267203", + "swapFee": "67928252949946512388", "reserves": [ - "8868188700078617296560935", - "56064394439691552002074886", - "29652436945555399553416455" + "1123303723770435598799536154", + "222127141841462427033237450", + "485875420077995195554469343" ], - "mAssetSupply": "94295241893739861954082131" + "mAssetSupply": "1826927527158483901858528890" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "11145053529719988813824", - "expectedQty": "11598602666172750193862", + "inputQty": "3288111379206030701363200", + "expectedQty": "3317046868507687615963911", + "swapFee": "1972866827523618420817", "reserves": [ - "8879333753608337285374759", - "56064394439691552002074886", - "29652436945555399553416455" - ] + "1119986676901927911183572243", + "222127141841462427033237450", + "485875420077995195554469343" + ], + "mAssetSupply": "1823641388646105394775586507" }, { - "type": "mintMulti", + "type": "redeemMasset", + "inputQty": "15677829538938332", + "expectedQtys": [ + "9625627399979447", + "1909052265427551", + "4175813742192225" + ], + "redemptionFee": "4703348861681", + "reserves": [ + "1119986676892302283783592796", + "222127141839553374767809899", + "485875420073819381812277118" + ], + "mAssetSupply": "1823641388630432268585509856" + }, + { + "type": "redeemBassets", "inputQtys": [ - "33865021859940", - "41920034878557", - "28660942353181" + "1172119358181585687937024", + "50100896103026189664256", + "623941017842838289776640" ], - "expectedQty": "105323438771283", + "expectedQty": "1837394732539689076270944", + "swapFee": "1103098698743059281331", "reserves": [ - "8879333753642202307234699", - "56064394439733472036953443", - "29652436945584060495769636" + "1118814557534120698095655772", + "222077040943450348578145643", + "485251479055976543522500478" ], - "mAssetSupply": "94306840496511358143047276" + "mAssetSupply": "1821803993897892579509238912" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "99381923451335323156480", - "outputIndex": 2, - "expectedQty": "103510820502243114380508", - "swapFee": "62026000322900524428", + "type": "redeem", + "inputIndex": 1, + "inputQty": "207246868481405976576", + "expectedQty": "202260883817578305585", + "swapFee": "124348121088843585", "reserves": [ - "8978715677093537630391179", - "56064394439733472036953443", - "29548926125081817381389128" + "1118814557534120698095655772", + "222076838682566530999840058", + "485251479055976543522500478" ], - "mAssetSupply": "94306902522511681043571704", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1821803786775372219192105921" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "404556978706201378816", - "930454284908150784000", - "705138986632121679872" + "58142857500971440", + "17675434052400458", + "25569568455427464" ], - "expectedQty": "2045159198435258915952", + "expectedQty": "101310338693684445", + "swapFee": "60822696834311", "reserves": [ - "8979120234072243831769995", - "56065324894018380187737443", - "29549631264068449503069000" + "1118814557475977840594684332", + "222076838664891096947439600", + "485251479030406975067073014" ], - "mAssetSupply": "94308947681710116302487656" + "mAssetSupply": "1821803786674061880498421476" }, { - "type": "redeemBassets", - "inputQtys": [ - "1025018287727209128919040", - "2261999769346693876678656", - "1433747154561934498463744" + "type": "redeemMasset", + "inputQty": "252873727707663406674739", + "expectedQtys": [ + "155249393040603708448397", + "30815915095778221715832", + "67334659786229537804097" ], - "expectedQty": "4737210015841695515410468", - "swapFee": "2844032428962394746093", + "redemptionFee": "75862118312299022002", "reserves": [ - "7954101946345034702850955", - "53803325124671686311058787", - "28115884109506515004605256" + "1118659308082937236886235935", + "222046022749795318725723768", + "485184144370620745529268917" ], - "mAssetSupply": "89571737665868420787077188" + "mAssetSupply": "1821550988808472529390768739" }, { "type": "mintMulti", "inputQtys": [ - "7293390606230810001408", - "13638315041730026536960", - "9945354332277743550464" + "11769014643833929728", + "18721299025587527680", + "3696964853987231232" ], - "expectedQty": "31039095659765350330033", + "expectedQty": "34533389773626160265", "reserves": [ - "7961395336951265512852363", - "53816963439713416337595747", - "28125829463838792748155720" + "1118659319851951880720165663", + "222046041471094344313251448", + "485184148067585599516500149" ], - "mAssetSupply": "89602776761528186137407221" + "mAssetSupply": "1821551023341862303016929004" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "42930860655520800", - "expectedQty": "43396202165273611", - "swapFee": "25758516393312", + "inputIndex": 2, + "inputQty": "764450529367891036340224", + "expectedQty": "762851686197831523739446", + "swapFee": "458670317620734621804", "reserves": [ - "7961395336951265512852363", - "53816963396317214172322136", - "28125829463838792748155720" + "1118659319851951880720165663", + "222046041471094344313251448", + "484421296381387767992760703" ], - "mAssetSupply": "89602776718623083998279733" + "mAssetSupply": "1820787031482812032715210584" }, { "type": "redeemBassets", "inputQtys": [ - "1238037468348470001664", - "1259157822375030161408", - "1336964693396387266560" + "824481444690004148224", + "4699545551039586369536", + "6678233041032956608512" ], - "expectedQty": "3874358814023833034864", - "swapFee": "2326010894951270583", + "expectedQty": "12317557606587896355563", + "swapFee": "7394971546880866333", "reserves": [ - "7960157299482917042850699", - "53815704238494839142160728", - "28124492499145396360889160" + "1118658495370507190716017439", + "222041341925543304726881912", + "484414618148346735036152191" ], - "mAssetSupply": "89598902359809060165244869" + "mAssetSupply": "1820774713925205444818855021" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "3669495625879850389078016", - "expectedQty": "3707376312341770361902035", - "swapFee": "2201697375527910233446", + "inputQty": "453034780486748623339520", + "expectedQty": "442118603081630697739342", + "swapFee": "271820868292049174003", "reserves": [ - "7960157299482917042850699", - "50108327926153068780258693", - "28124492499145396360889160" + "1118658495370507190716017439", + "221599223322461674029142570", + "484414618148346735036152191" ], - "mAssetSupply": "85931608431304737686400299" + "mAssetSupply": "1820321950965586988244689504" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "386536889442941", + "inputIndex": 2, + "inputQty": "21174129117190700073484288", "outputIndex": 0, - "expectedQty": "367098547601080", - "swapFee": "229531328851", + "expectedQty": "21379539255272030242861141", + "swapFee": "12719834550016464030267", "reserves": [ - "7960157299115818495249619", - "50108327926539605669701634", - "28124492499145396360889160" + "1097278956115235160473156298", + "221599223322461674029142570", + "505588747265537435109636479" ], - "mAssetSupply": "85931608431304967217729150", + "mAssetSupply": "1820334670800137004708719771", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "3434116192267108404428", - "expectedQtys": [ - "318019233449016843514", - "2001896625633281009334", - "1123612161120775847604" - ], - "redemptionFee": "1030234857680132521", + "type": "redeem", + "inputIndex": 0, + "inputQty": "39586845324784573729472512", + "expectedQty": "39908727206906996023801276", + "swapFee": "23752107194870744237683", "reserves": [ - "7959839279882369478406105", - "50106326029913972388692300", - "28123368886984275585041556" + "1057370228908328164449355022", + "221599223322461674029142570", + "505588747265537435109636479" ], - "mAssetSupply": "85928175345347557789457243" + "mAssetSupply": "1780771577582547301723484942" }, { "type": "redeemMasset", - "inputQty": "96768204647097385877504", + "inputQty": "46956179437825835820646", "expectedQtys": [ - "8961301406575663475987", - "56410421635654237475706", - "31661692692908596216798" - ], - "redemptionFee": "29030461394129215763", - "reserves": [ - "7950877978475793814930118", - "50049915608278318151216594", - "28091707194291366988824758" - ], - "mAssetSupply": "85831436171161854532795502" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "73318030377111945216", - "109900824506954645504", - "135699647287614439424" + "27872845572005069583450", + "5841474217521909328032", + "13327590176267001731203" ], - "expectedQty": "320464615899878098396", - "swapFee": "192394206063564998", + "redemptionFee": "14086853831347750746", "reserves": [ - "7950804660445416702984902", - "50049805707453811196571090", - "28091571494644079374385334" + "1057342356062756159379771572", + "221593381848244152119814538", + "505575419675361168107905276" ], - "mAssetSupply": "85831115706545954654697106" + "mAssetSupply": "1780724635489963307235415042" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "887419737176220150792192", - "expectedQty": "884895082655999333983035", + "inputIndex": 1, + "inputQty": "583490063240790284435456", + "expectedQty": "596406992990524475823123", "reserves": [ - "7950804660445416702984902", - "50049805707453811196571090", - "28978991231820299525177526" + "1057342356062756159379771572", + "222176871911484942404249994", + "505575419675361168107905276" ] }, { - "type": "mintMulti", - "inputQtys": [ - "14287423435072870547456", - "9422753934148139745280", - "18782363027992456724480" + "type": "redeemMasset", + "inputQty": "66614094929869104742", + "expectedQtys": [ + "39528401803845903738", + "8306010455441859158", + "18900773450041905119" ], - "expectedQty": "42940273372972459823147", + "redemptionFee": "19984228478960731", "reserves": [ - "7965092083880489573532358", - "50059228461387959336316370", - "28997773594848291981902006" + "1057342316534354355533867834", + "222176863605474486962390836", + "505575400774587718066000157" ], - "mAssetSupply": "86758951062574926448503288" + "mAssetSupply": "1781320975888843130321094154" }, { "type": "redeemMasset", - "inputQty": "1021892936984200793292", + "inputQty": "211818090839096793497", "expectedQtys": [ - "93788933613023078343", - "589447253771977337109", - "341448690607944855335" + "125691576427274317411", + "26411276457535269613", + "60100279854962400833" ], - "redemptionFee": "306567881095260237", + "redemptionFee": "63545427251729038", "reserves": [ - "7964998294946876550454015", - "50058639014134187358979261", - "28997432146157684037046671" + "1057342190842777928259550423", + "222176837194198029427121223", + "505575340674307863103599324" ], - "mAssetSupply": "86757929476205823342970233" + "mAssetSupply": "1781320764134297718476029695" }, { "type": "swap", "inputIndex": 0, - "inputQty": "79372234157772784", - "outputIndex": 2, - "expectedQty": "82904032782899242", - "swapFee": "49622058744625", + "inputQty": "561242456706965261254656", + "outputIndex": 1, + "expectedQty": "544128735285399455394303", + "swapFee": "333910079241650282730", "reserves": [ - "7964998374319110708226799", - "50058639014134187358979261", - "28997432063253651254147429" + "1057903433299484893520805079", + "221632708458912629971726920", + "505575340674307863103599324" ], - "mAssetSupply": "86757929476255445401714858", + "mAssetSupply": "1781321098044376960126312425", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "12090005019757395941785", - "expectedQtys": [ - "1109615937677794852934", - "6973744507925414156510", - "4039675999540417462568" + "type": "redeemBassets", + "inputQtys": [ + "6385254251025593836503040", + "6279683076483801606520832", + "1525985347136241329504256" ], - "redemptionFee": "3627001505927218782", + "expectedQty": "14279879627532698397651990", + "swapFee": "8573071619491313826887", "reserves": [ - "7963888758381432913373865", - "50051665269626261944822751", - "28993392387254110836684861" + "1051518179048459299684302039", + "215353025382428828365206088", + "504049355327171621774095068" ], - "mAssetSupply": "86745843098237193932991855" + "mAssetSupply": "1767041218416844261728660435" }, { - "type": "redeemMasset", - "inputQty": "349320307321445808498278", - "expectedQtys": [ - "32060481341814989602189", - "201494587529843221893739", - "116719625784476643630440" + "type": "mintMulti", + "inputQtys": [ + "2595511593325266995249152", + "2555860982631494204784640", + "4789817776972436581908480" ], - "redemptionFee": "104796092196433742549", + "expectedQty": "9979405506020740561011516", "reserves": [ - "7931828277039617923771676", - "49850170682096418722929012", - "28876672761469634193054421" + "1054113690641784566679551191", + "217908886365060322569990728", + "508839173104144058356003548" ], - "mAssetSupply": "86396627587007944558236126" + "mAssetSupply": "1777020623922865002289671951" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "143671379310663719452672", - "expectedQty": "142205173112513408737076", + "inputQty": "46575275013818686636032", + "expectedQty": "45504548192318730050750", + "swapFee": "27945165008291211981", "reserves": [ - "7931828277039617923771676", - "49993842061407082442381684", - "28876672761469634193054421" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "156644851242641108500480", - "40233928289361441325056", - "98589608432989917675520" - ], - "expectedQty": "301253617287841713083448", - "reserves": [ - "8088473128282259032272156", - "50034075989696443883706740", - "28975262369902624110729941" + "1054113690641784566679551191", + "217863381816868003839939978", + "508839173104144058356003548" ], - "mAssetSupply": "86840086377408299680056650" + "mAssetSupply": "1776974076593016191894247900" }, { "type": "mint", "inputIndex": 1, - "inputQty": "855413425501100", - "expectedQty": "846833815915699", + "inputQty": "2418250754817043988480", + "expectedQty": "2473678587247597432183", "reserves": [ - "8088473128282259032272156", - "50034075990551857309207840", - "28975262369902624110729941" + "1054113690641784566679551191", + "217865800067622820883928458", + "508839173104144058356003548" ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "3636200050456654848", - "expectedQty": "3625561638817897930", + "inputQty": "2854277256774922939662336", + "expectedQty": "2854939502768442672207152", "reserves": [ - "8088473128282259032272156", - "50034075990551857309207840", - "28975266006102674567384789" + "1054113690641784566679551191", + "217865800067622820883928458", + "511693450360918981295665884" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "143716869145248296599552", - "expectedQty": "145083033620548364796014", - "swapFee": "86230121487148977959", - "reserves": [ - "8088473128282259032272156", - "49888992956931308944411826", - "28975266006102674567384789" - ], - "mAssetSupply": "86696459364793011166248686" - }, - { - "type": "redeemMasset", - "inputQty": "7614301397184519392460", - "expectedQtys": [ - "710174282447105476902", - "4380292697185680019404", - "2544051073452474386606" - ], - "redemptionFee": "2284290419155355817", + "type": "swap", + "inputIndex": 0, + "inputQty": "5589292018427249664", + "outputIndex": 2, + "expectedQty": "5537420276519752661", + "swapFee": "3325109433448364", "reserves": [ - "8087762953999811926795254", - "49884612664234123264392422", - "28972721955029222092998183" + "1054113696231076585106800855", + "217865800067622820883928458", + "511693444823498704775913223" ], - "mAssetSupply": "86688847347686245802212043" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1334101548171912355512320", - "expectedQty": "1320537947118384670486299", - "reserves": [ - "8087762953999811926795254", - "51218714212406035619904742", - "28972721955029222092998183" - ] + "mAssetSupply": "1779831489777696991597335599", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "551621535914379116544", - "620414278529422196736", - "573580147625464168448" + "3174521177176303919431680", + "2548082771383210666360832", + "918736930521163640078336" ], - "expectedQty": "1760837712501260375705", - "swapFee": "1057136909646544151", + "expectedQty": "6673519596682207316880969", + "swapFee": "4006515667409770252279", "reserves": [ - "8087211332463897547678710", - "51218093798127506197708006", - "28972148374881596628829735" + "1050939175053900281187369175", + "215317717296239610217567626", + "510774707892977541135834887" ], - "mAssetSupply": "88007624457092129212322637" + "mAssetSupply": "1773157970181014784280454630" }, { - "type": "redeemBassets", - "inputQtys": [ - "34066151310634090758144", - "62425498191514883325952", - "132873478387220625752064" - ], - "expectedQty": "229787450556873312286429", - "swapFee": "137955243480212114640", + "type": "redeem", + "inputIndex": 0, + "inputQty": "30892776061066366943232", + "expectedQty": "31140583938715349879064", + "swapFee": "18535665636639820165", "reserves": [ - "8053145181153263456920566", - "51155668299935991314382054", - "28839274896494376003077671" + "1050908034469961565837490111", + "215317717296239610217567626", + "510774707892977541135834887" ], - "mAssetSupply": "87777837006535255900036208" + "mAssetSupply": "1773127095940619354553331563" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "4832826044558539713675264", - "expectedQty": "4877452064368324444186299", - "swapFee": "2899695626735123828205", + "inputIndex": 2, + "inputQty": "115192362731556753637376", + "expectedQty": "115105558260909742486852", + "swapFee": "69115417638934052182", "reserves": [ - "8053145181153263456920566", - "46278216235567666870195755", - "28839274896494376003077671" + "1050908034469961565837490111", + "215317717296239610217567626", + "510659602334716631393348035" ], - "mAssetSupply": "82947910657603451310189149" + "mAssetSupply": "1773011972693305436733746369" }, { - "type": "redeemMasset", - "inputQty": "316541188319785588359168", - "expectedQtys": [ - "30722743701523287326817", - "176551365259928051580919", - "110021815235160966689992" + "type": "mintMulti", + "inputQtys": [ + "740315245047874381152256", + "592917373071701049344000", + "322878561613988774281216" ], - "redemptionFee": "94962356495935676507", + "expectedQty": "1663676055924303358209290", "reserves": [ - "8022422437451740169593749", - "46101664870307738818614836", - "28729253081259215036387679" + "1051648349715009440218642367", + "215910634669311311266911626", + "510982480896330620167629251" ], - "mAssetSupply": "82631464431640161657506488" + "mAssetSupply": "1774675648749229740091955659" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1513162664846485713059840", - "expectedQty": "1499082233859394942913395", + "inputIndex": 2, + "inputQty": "449023232889294749696", + "expectedQty": "449096624011903637946", "reserves": [ - "8022422437451740169593749", - "47614827535154224531674676", - "28729253081259215036387679" + "1051648349715009440218642367", + "215910634669311311266911626", + "510982929919563509462378947" ] }, { - "type": "redeemMasset", - "inputQty": "6205328611628988497920", - "expectedQtys": [ - "591542964213929672516", - "3510936558163465053881", - "2118386018667255150793" + "type": "mintMulti", + "inputQtys": [ + "155526382578537353707520", + "238989395404421060362240", + "396589164668412208611328" + ], + "expectedQty": "795403947693567086572614", + "reserves": [ + "1051803876097587977572349887", + "216149624064715732327273866", + "511379519084231921670990275" + ], + "mAssetSupply": "1775471501793547319082166219" + }, + { + "type": "mintMulti", + "inputQtys": [ + "4448416554281076736", + "1201350882471174912", + "14481634610922092544" ], - "redemptionFee": "1861598583488696549", + "expectedQty": "20123715145942530733", "reserves": [ - "8021830894487526239921233", - "47611316598596061066620795", - "28727134695240547781236886" + "1051803880546004531853426623", + "216149625266066614798448778", + "511379533565866532593082819" ], - "mAssetSupply": "84124343198486511100618512" + "mAssetSupply": "1775471521917262465024696952" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "83552887403816534016", + "inputIndex": 1, + "inputQty": "464505719549761748992", "outputIndex": 2, - "expectedQty": "86969436513586966998", - "swapFee": "52048891571319365", + "expectedQty": "474945745326177315642", + "swapFee": "285184059652827562", "reserves": [ - "8021914447374930056455249", - "47611316598596061066620795", - "28727047725804034194269888" + "1051803880546004531853426623", + "216150089771786164560197770", + "511379058620121206415767177" ], - "mAssetSupply": "84124343250535402671937877", + "mAssetSupply": "1775471522202446524677524514", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "54293147324130432", - "outputIndex": 1, - "expectedQty": "56876065143198364", - "swapFee": "33821654513982", + "inputQty": "25520076165691845115904", + "expectedQty": "25724122418992641017475", + "swapFee": "15312045699415107069", "reserves": [ - "8021914501668077380585681", - "47611316541719995923422431", - "28727047725804034194269888" + "1051778156423585539212409148", + "216150089771786164560197770", + "511379058620121206415767177" ], - "mAssetSupply": "84124343250569224326451859", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1775446017438326532247515679" }, { "type": "redeemMasset", - "inputQty": "46904266937191819221401", + "inputQty": "513189352085907308544", "expectedQtys": [ - "4471347127280952891008", - "26538144155066242410090", - "16012212832401428503063" + "303923305427496049558", + "62459036015038243412", + "147768816905944346264" ], - "redemptionFee": "14071280081157545766", + "redemptionFee": "153956805625772192", "reserves": [ - "8017443154540796427694673", - "47584778397564929681012341", - "28711035512971632765766825" + "1051777852500280111716359590", + "216150027312750149521954358", + "511378910851304300471420913" ], - "mAssetSupply": "84077453054912113664776224" + "mAssetSupply": "1775445504402931251965979327" }, { "type": "redeemBassets", "inputQtys": [ - "410517944044768102187008", - "320413552827049097297920", - "1877189920947910937149440" + "63671773725312847708160", + "62553961199003058044928", + "12005806667483387527168" ], - "expectedQty": "2615630509467688301762269", - "swapFee": "1570320497979400621430", + "expectedQty": "139145294548146133835967", + "swapFee": "83537299108352691916", "reserves": [ - "7606925210496028325507665", - "47264364844737880583714421", - "26833845592023721828617385" + "1051714180726554798868651430", + "216087473351551146463909430", + "511366905044636817083893745" ], - "mAssetSupply": "81461822545444425363013955" + "mAssetSupply": "1775306359108383105832143360" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "62589535636384672382976", - "expectedQty": "60091257153280549704776", - "swapFee": "37553721381830803429", + "inputQty": "50027533469792", + "expectedQty": "50427607702994", + "swapFee": "30016520081", + "reserves": [ + "1051714180726504371260948436", + "216087473351551146463909430", + "511366905044636817083893745" + ], + "mAssetSupply": "1775306359108333108315193649" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "141175411109340788031488", + "199835108084635194621952", + "43972147993860405985280" + ], + "expectedQty": "388437614719674318463922", + "swapFee": "233202490326000191193", "reserves": [ - "7546833953342747775802889", - "47264364844737880583714421", - "26833845592023721828617385" + "1051573005315395030472916948", + "215887638243466511269287478", + "511322932896642956677908465" ], - "mAssetSupply": "81399270563529422521434408" + "mAssetSupply": "1774917921493613433996729727" }, { "type": "redeemMasset", - "inputQty": "540213714141982", + "inputQty": "740849847490411990771302", "expectedQtys": [ - "50070229140531", - "313580183768258", - "178031848298341" + "438794365571209942760315", + "90084358174729494699447", + "213361907169820810325524" ], - "redemptionFee": "162064114242", + "redemptionFee": "222254954247123597231", "reserves": [ - "7546833953292677546662358", - "47264364844424300399946163", - "26833845591845689980319044" + "1051134210949823820530156633", + "215797553885291781774588031", + "511109570989473135867582941" ], - "mAssetSupply": "81399270562989370871406668" + "mAssetSupply": "1774177293901077269129555656" }, { - "type": "redeemBassets", - "inputQtys": [ - "132259804622378896", - "5907892448039539712", - "5829217753704724480" + "type": "redeemMasset", + "inputQty": "19476386362742661552537", + "expectedQtys": [ + "11535574484639459372247", + "2368250153514992438777", + "5609124376832437789937" + ], + "redemptionFee": "5842915908822798465", + "reserves": [ + "1051122675375339181070784386", + "215795185635138266782149254", + "511103961865096303429793004" + ], + "mAssetSupply": "1774157823357630435290801584" + }, + { + "type": "redeemMasset", + "inputQty": "456995272377175384680038", + "expectedQtys": [ + "270671515005448061153075", + "55568784876501341828281", + "131612881088225878776747" ], - "expectedQty": "11798319699734030774", - "swapFee": "7083241764899358", + "redemptionFee": "137098581713152615404", + "reserves": [ + "1050852003860333733009631311", + "215739616850261765440320973", + "510972348984008077551016257" + ], + "mAssetSupply": "1773700965183834973058736950" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "39932106437879177192407040", + "outputIndex": 1, + "expectedQty": "38396235397609796004696520", + "swapFee": "23749352645536746424529", "reserves": [ - "7546833821032872924283462", - "47264358936531852360406451", - "26833839762627936275594564" + "1090784110298212910202038351", + "177343381452651969435624453", + "510972348984008077551016257" ], - "mAssetSupply": "81399258764669671137375894" + "mAssetSupply": "1773724714536480509805161479", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "53945392669023419760640", - "91467582191603313278976", - "140359943523598071758848" + "7331334675828873462022144", + "4494881450271831419256832", + "733206842629435519139840" ], - "expectedQty": "286683776728452570292616", - "swapFee": "172113534157566081824", + "expectedQty": "12648535127534552316236572", + "swapFee": "7593677282890465669143", "reserves": [ - "7492888428363849504522822", - "47172891354340249047127475", - "26693479819104338203835716" + "1083452775622384036740016207", + "172848500002380138016367621", + "510239142141378642031876417" ], - "mAssetSupply": "81112574987941218567083278" + "mAssetSupply": "1761076179408945957488924907" }, { "type": "redeemBassets", "inputQtys": [ - "49808909617630752", - "39138458205423848", - "39128176854602976" + "11182032283769805163462656", + "9990321111083329106477056", + "6093215397379939200139264" ], - "expectedQty": "129639224719627198", - "swapFee": "77830232971559", + "expectedQty": "27539429642571963019816300", + "swapFee": "16533577932302559347498", "reserves": [ - "7492888378554939886892070", - "47172891315201790841703627", - "26693479779976161349232740" + "1072270743338614231576553551", + "162858178891296808909890565", + "504145926743998702831737153" ], - "mAssetSupply": "81112574858301993847456080" + "mAssetSupply": "1733536749766373994469108607" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "261193250379855776710656", - "expectedQty": "263738368979186356545684", - "swapFee": "156715950227913466026", + "type": "mintMulti", + "inputQtys": [ + "247257704381342602493952", + "4471944428717396021215232", + "3065367079019167982026752" + ], + "expectedQty": "7964296127596786575467549", "reserves": [ - "7492888378554939886892070", - "46909152946222604485157943", - "26693479779976161349232740" + "1072518001042995574179047503", + "167330123320014204931105797", + "507211293823017870813763905" ], - "mAssetSupply": "80851538323872365984211450" + "mAssetSupply": "1741501045893970781044576156" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "2796497295512181470658560", - "outputIndex": 0, - "expectedQty": "2612206257080130064336795", - "swapFee": "1672257666004267108462", + "inputIndex": 1, + "inputQty": "30459128718539672780800", + "outputIndex": 2, + "expectedQty": "31682446091255665689540", + "swapFee": "19009651295775703138", "reserves": [ - "4880682121474809822555275", - "46909152946222604485157943", - "29489977075488342819891300" + "1072518001042995574179047503", + "167360582448732744603886597", + "507179611376926615148074365" ], - "mAssetSupply": "80853210581538370251319912", + "mAssetSupply": "1741501064903622076820279294", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "39348337427105192", - "33259729447297540", - "85736023043946704" + "68613068280280964399104", + "88529032658018090614784", + "59979659420144911777792" + ], + "expectedQty": "219877111945731559402928", + "swapFee": "132005470449708760898", + "reserves": [ + "1072449387974715293214648399", + "167272053416074726513271813", + "507119631717506470236296573" + ], + "mAssetSupply": "1741281187791676345260876366" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "80386886854474219520", + "381856417171742851072", + "22340182634033094656" + ], + "expectedQty": "499023062839282565478", + "swapFee": "299593593859885470", + "reserves": [ + "1072449307587828438740428879", + "167271671559657554770420741", + "507119609377323836203201917" ], - "expectedQty": "161203417003783498", + "mAssetSupply": "1741280688768613505978310888" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "19108841090296182223142912", + "expectedQty": "19310572041638274250246026", + "swapFee": "11465304654177709333885", "reserves": [ - "4880682160823147249660467", - "46909152979482333932455483", - "29489977161224365863838004" + "1053138735546190164490182853", + "167271671559657554770420741", + "507119609377323836203201917" ], - "mAssetSupply": "80853210742741787255103410" + "mAssetSupply": "1722183312982971501464501861" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "265462315492589659226112", - "expectedQty": "267194795858787874937810", - "swapFee": "159277389295553795535", + "inputQty": "35471068283148041191424", + "expectedQty": "35476708793130492572976", + "swapFee": "21282640969888824714", "reserves": [ - "4880682160823147249660467", - "46909152979482333932455483", - "29222782365365577988900194" + "1053138735546190164490182853", + "167271671559657554770420741", + "507084132668530705710628941" ], - "mAssetSupply": "80587907704638493149672833" + "mAssetSupply": "1722147863197329323312135151" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1296440309390302773248", - "2507024638017945468928", - "3954113439596765249536" + "21095530666518802432", + "14583793548093257728", + "1701958054739806464" ], - "expectedQty": "7822174028105605704387", + "expectedQty": "37718703858159564109", + "swapFee": "22644809200415988", "reserves": [ - "4881978601132537552433715", - "46911660004120351877924411", - "29226736478805174754149730" + "1053138714450659497971380421", + "167271656975864006677163013", + "507084130966572650970822477" ], - "mAssetSupply": "80595729878666598755377220" + "mAssetSupply": "1722147825478625465152571042" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "66927257234575164702720", - "outputIndex": 2, - "expectedQty": "66337224937080184117789", - "swapFee": "39547900899185196029", + "type": "mintMulti", + "inputQtys": [ + "25703751583888212", + "16454252230220864", + "93819614464859264" + ], + "expectedQty": "136267866805227994", "reserves": [ - "4881978601132537552433715", - "46978587261354927042627131", - "29160399253868094570031941" + "1053138714476363249555268633", + "167271656992318258907383877", + "507084131060392265435681741" ], - "mAssetSupply": "80595769426567497940573249", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1722147825614893331957799036" }, { - "type": "redeemMasset", - "inputQty": "8554891015437389555302", - "expectedQtys": [ - "518045372989037505217", - "4985077106782252614194", - "3094321205028410623451" - ], - "redemptionFee": "2566467304631216866", + "type": "redeem", + "inputIndex": 2, + "inputQty": "31721083787426952711766016", + "expectedQty": "31712186594227020566211621", + "swapFee": "19032650272456171627059", "reserves": [ - "4881460555759548514928498", - "46973602184248144790012937", - "29157304932663066159408490" + "1053138714476363249555268633", + "167271656992318258907383877", + "475371944466165244869470120" ], - "mAssetSupply": "80587217102019365182234813" + "mAssetSupply": "1690445774477738835417660079" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "69481376663250483019776", - "expectedQty": "68995744092200517376275", + "type": "redeem", + "inputIndex": 1, + "inputQty": "70153762691290636288", + "expectedQty": "67531053051698210532", + "swapFee": "42092257614774381", "reserves": [ - "4881460555759548514928498", - "46973602184248144790012937", - "29226786309326316642428266" - ] + "1053138714476363249555268633", + "167271589461265207209173345", + "475371944466165244869470120" + ], + "mAssetSupply": "1690445704366068401741798172" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "19904232531691523014656", - "outputIndex": 1, - "expectedQty": "22222779715614838027692", - "swapFee": "13140209668657404198", + "type": "mintMulti", + "inputQtys": [ + "18660687696144564748288", + "9833466559177946650640384", + "4513499164118761856827392" + ], + "expectedQty": "14721574315480089142098074", "reserves": [ - "4901364788291240037943154", - "46951379404532529951985245", - "29226786309326316642428266" + "1053157375164059394120016921", + "177105056020443153859813729", + "479885443630284006726297512" ], - "mAssetSupply": "80656225986321234357015286", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1705167278681548490883896246" }, { "type": "redeemMasset", - "inputQty": "84341597549397900", + "inputQty": "1600652940820247211094835", "expectedQtys": [ - "5123782010405637", - "49081968706218844", - "30553057848588298" + "988309914773295371200737", + "166199930750346989430943", + "450336818674710454482117" ], - "redemptionFee": "25302479264819", + "redemptionFee": "480195882246074163328", "reserves": [ - "4901364783167458027537517", - "46951379355450561245766401", - "29226786278773258793839968" + "1052169065249286098748816184", + "176938856089692806870382786", + "479435106811609296271815395" ], - "mAssetSupply": "80656225902004939286882205" + "mAssetSupply": "1703567105936610489746964739" }, { - "type": "redeemMasset", - "inputQty": "119224011437977122321203", - "expectedQtys": [ - "7242901044843491498618", - "69381531396786369752001", - "43189342201774222618503" + "type": "redeem", + "inputIndex": 2, + "inputQty": "2420492841699745655160832", + "expectedQty": "2418405372207908339611196", + "swapFee": "1452295705019847393096", + "reserves": [ + "1052169065249286098748816184", + "176938856089692806870382786", + "477016701439401387932204199" + ], + "mAssetSupply": "1701148065390615763939197003" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "261126947083127269359616", + "outputIndex": 2, + "expectedQty": "269776825504937512462432", + "swapFee": "162013066380239082394", + "reserves": [ + "1052169065249286098748816184", + "177199983036775934139742402", + "476746924613896450419741767" ], - "redemptionFee": "35767203431393136696", + "mAssetSupply": "1701148227403682144178279397", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "39460293561380995072", + "expectedQty": "39042418388171753183", "reserves": [ - "4894121882122614536038899", - "46881997824053774876014400", - "29183596936571484571221465" - ], - "mAssetSupply": "80537037657770393557697698" + "1052169104709579660129811256", + "177199983036775934139742402", + "476746924613896450419741767" + ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "3635968947755065077137408", + "inputQty": "6150124900026193562042368", "outputIndex": 0, - "hardLimitError": true + "expectedQty": "6212967776250416951124596", + "swapFee": "3690894842169398129614", + "reserves": [ + "1045956136933329243178686660", + "177199983036775934139742402", + "482897049513922643981784135" + ], + "mAssetSupply": "1701151957340942701748162194", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "15972622280563531776", - "expectedQty": "14514203327728251916", - "swapFee": "9583573368338119", + "type": "mintMulti", + "inputQtys": [ + "1240386296150754135638016", + "622826577807274321903616", + "1298539745776487196786688" + ], + "expectedQty": "3169909768877104383770524", "reserves": [ - "4894107367919286807786983", - "46881997824053774876014400", - "29183596936571484571221465" + "1047196523229479997314324676", + "177822809614583208461646018", + "484195589259699131178570823" ], - "mAssetSupply": "80537021694731686362504041" + "mAssetSupply": "1704321867109819806131932718" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "29335566928740727390208", - "expectedQty": "28892549333674902830150", + "inputIndex": 0, + "inputQty": "7052151457351548411052032", + "expectedQty": "6978349691874745107529811", "reserves": [ - "4894107367919286807786983", - "46911333390982515603404608", - "29183596936571484571221465" + "1054248674686831545725376708", + "177822809614583208461646018", + "484195589259699131178570823" ] }, { - "type": "mintMulti", - "inputQtys": [ - "25162440470943", - "139381424920457", - "20556315321323" - ], - "expectedQty": "185365220432890", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6774870281193952779436032", + "expectedQty": "6539633098612272935158774", + "swapFee": "4064922168716371667661", "reserves": [ - "4894107367944449248257926", - "46911333391121897028325065", - "29183596936592040886542788" + "1054248674686831545725376708", + "171283176515970935526487244", + "484195589259699131178570823" ], - "mAssetSupply": "80565914244250726485767081" + "mAssetSupply": "1704529411442669314831694158" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "80818956408609753268224", - "4595537083098745798656", - "35332890567622493470720" + "10385897201000414969856", + "25383220504148117028864", + "17855593792302347190272" ], - "expectedQty": "128632510690392402655801", - "swapFee": "77225841919387073837", + "expectedQty": "54442933796412652865953", "reserves": [ - "4813288411535839494989702", - "46906737854038798282526409", - "29148264046024418393072068" + "1054259060584032546140346564", + "171308559736475083643516108", + "484213444853491433525761095" ], - "mAssetSupply": "80437281733560334083111280" + "mAssetSupply": "1704583854376465727484560111" }, { - "type": "redeemBassets", - "inputQtys": [ - "1400673211931750563840", - "6534615481477664604160", - "5387811780041766862848" - ], - "expectedQty": "13328937821463297009874", - "swapFee": "8002163991272741851", + "type": "mint", + "inputIndex": 2, + "inputQty": "4081667425675240800256", + "expectedQty": "4081598305836413025075", "reserves": [ - "4811887738323907744425862", - "46900203238557320617922249", - "29142876234244376626209220" - ], - "mAssetSupply": "80423952795738870786101406" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "3704287819691231849480192", - "912238113806316413648896", - "2360067823430187744231424" - ], - "hardLimitError": true + "1054259060584032546140346564", + "171308559736475083643516108", + "484217526520917108766561351" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "39024100968559873622016", - "26915777307102301650944", - "295039871147658291707904" - ], - "expectedQty": "362524347537436800637482", - "swapFee": "217645195639845987975", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1431015198440508882944", + "expectedQty": "1430180863074952892537", + "swapFee": "858609119064305329", "reserves": [ - "4772863637355347870803846", - "46873287461250218316271305", - "28847836363096718334501316" + "1054259060584032546140346564", + "171308559736475083643516108", + "484216096340054033813668814" ], - "mAssetSupply": "80061428448201433985463924" + "mAssetSupply": "1704586505818182242453007571" }, { - "type": "redeemMasset", - "inputQty": "52483241704299121606656", - "expectedQtys": [ - "3127850853376028469120", - "30717963747954408050991", - "18905155571626943828720" + "type": "mintMulti", + "inputQtys": [ + "130572934893137242882048", + "164253094814477142982656", + "597131205871301052858368" ], - "redemptionFee": "15744972511289736481", + "expectedQty": "896546484734018094360828", "reserves": [ - "4769735786501971842334726", - "46842569497502263908220314", - "28828931207525091390672596" + "1054389633518925683383228612", + "171472812831289560786498764", + "484813227545925334866527182" ], - "mAssetSupply": "80008960951469646153593749" + "mAssetSupply": "1705483052302916260547368399" }, { - "type": "redeemMasset", - "inputQty": "13128324294458177119846", - "expectedQtys": [ - "782410518374183776815", - "7683888735773755455556", - "4728995487357078532443" - ], - "redemptionFee": "3938497288337453135", + "type": "redeem", + "inputIndex": 1, + "inputQty": "88147289015515275591680", + "expectedQty": "84978654519957568612219", + "swapFee": "52888373409309165355", "reserves": [ - "4768953375983597658557911", - "46834885608766490152764758", - "28824202212037734312140153" + "1054389633518925683383228612", + "171387834176769603217886545", + "484813227545925334866527182" ], - "mAssetSupply": "79995836565672476313927038" + "mAssetSupply": "1705394957902274154580942074" }, { "type": "mint", "inputIndex": 0, - "inputQty": "32641471910959648768", - "expectedQty": "36041396386212270718", + "inputQty": "4279249776515061901164544", + "expectedQty": "4232579923313580149038638", "reserves": [ - "4768986017455508618206679", - "46834885608766490152764758", - "28824202212037734312140153" + "1058668883295440745284393156", + "171387834176769603217886545", + "484813227545925334866527182" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "1868205829318980352868352", - "expectedQty": "2008943978580477283329757", + "inputQty": "11025606161064312703025152", + "expectedQty": "10904178640057415249286243", "reserves": [ - "6637191846774488971075031", - "46834885608766490152764758", - "28824202212037734312140153" + "1069694489456505057987418308", + "171387834176769603217886545", + "484813227545925334866527182" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "43350108138657963573248", - "expectedQty": "43814995135528123298301", - "swapFee": "26010064883194778143", + "type": "redeemMasset", + "inputQty": "3236433834314722128691", + "expectedQtys": [ + "2011562359649611014465", + "322295122139990343964", + "911692122941687226513" + ], + "redemptionFee": "970930150294416638", + "reserves": [ + "1069692477894145408376403843", + "171387511881647463227542581", + "484812315853802393179300669" + ], + "mAssetSupply": "1720528481002740985551554902" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "484588850862891335680", + "301522123314019631104", + "313814200307694567424" + ], + "expectedQty": "1105923296223103572317", + "swapFee": "663952349143348152", "reserves": [ - "6637191846774488971075031", - "46791070613630962029466457", - "28824202212037734312140153" + "1069691993305294545485068163", + "171387210359524149207911477", + "484812002039602085484733245" ], - "mAssetSupply": "81961492487575565040732408" + "mAssetSupply": "1720527375079444762447982585" }, { "type": "redeemMasset", - "inputQty": "42452806158973319249920", + "inputQty": "274515996749546470034636", "expectedQtys": [ - "3436771099892576416437", - "24228650147593589621958", - "14925315920758374554310" + "170621795235620677181032", + "27337208930216864279733", + "77330198465983855732449" ], - "redemptionFee": "12735841847691995774", + "redemptionFee": "82354799024863941010", "reserves": [ - "6633755075674596394658594", - "46766841963483368439844499", - "28809276896116975937585843" + "1069521371510058924807887131", + "171359873150593932343631744", + "484734671841136101629000796" ], - "mAssetSupply": "81919052417258439413478262" + "mAssetSupply": "1720252941437494240841888959" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "55636752925672576385024", - "expectedQty": "56232539804275192412331", - "swapFee": "33382051755403545831", + "type": "redeemMasset", + "inputQty": "441351226670437070431846", + "expectedQtys": [ + "274316030816436316964271", + "43951211725213142633465", + "124327100627102933318630" + ], + "redemptionFee": "132405368001131121129", "reserves": [ - "6633755075674596394658594", - "46710609423679093247432168", - "28809276896116975937585843" + "1069247055479242488490922860", + "171315921938868719200998279", + "484610344740508998695682166" ], - "mAssetSupply": "81863449046384522240639069" + "mAssetSupply": "1719811722616191804902578242" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "400752964316281", - "expectedQty": "396272475456585", + "inputIndex": 2, + "inputQty": "27996837168761573376", + "expectedQty": "28000076981924494487", "reserves": [ - "6633755075674596394658594", - "46710609424079846211748449", - "28809276896116975937585843" + "1069247055479242488490922860", + "171315921938868719200998279", + "484610372737346167457255542" ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "4894379150277905219584", - "expectedQty": "4913284272326907572453", - "swapFee": "2936627490166743131", + "inputIndex": 0, + "inputQty": "109814124820447068160", + "expectedQty": "110979057686887999151", + "swapFee": "65888474892268240", "reserves": [ - "6633755075674596394658594", - "46710609424079846211748449", - "28804363611844649030013390" + "1069246944500184801602923709", + "171315921938868719200998279", + "484610372737346167457255542" ], - "mAssetSupply": "81858557604258006977619201" + "mAssetSupply": "1719811640868032441272272809" }, { - "type": "mintMulti", - "inputQtys": [ - "18109390321303005691904", - "4531844553808872472576", - "6028504342426339508224" - ], - "expectedQty": "29572924352606658983013", + "type": "mint", + "inputIndex": 2, + "inputQty": "481346187023290204160", + "expectedQty": "481401884592657784682", "reserves": [ - "6651864465995899400350498", - "46715141268633655084221025", - "28810392116187075369521614" - ], - "mAssetSupply": "81888130528610613636602214" + "1069246944500184801602923709", + "171315921938868719200998279", + "484610854083533190747459702" + ] }, { "type": "redeemBassets", "inputQtys": [ - "135616407251462225920", - "24388695266072563712", - "106017775691347869696" + "71010791718509632", + "68074802306705344", + "34435873512032992" ], - "expectedQty": "272605725393060769556", - "swapFee": "163661632215165561", + "expectedQty": "175297278751219487", + "swapFee": "105241512158026", "reserves": [ - "6651728849588647938124578", - "46715116879938389011657313", - "28810286098411384021651918" + "1069246944429174009884414077", + "171315921870793916894292935", + "484610854049097317235426710" ], - "mAssetSupply": "81887857922885220575832658" + "mAssetSupply": "1719812122094619755178838004" }, { "type": "redeemBassets", "inputQtys": [ - "13313787396321309622272", - "15023921928177096589312", - "3584633776914502254592" + "4805643346696183771824128", + "694667208477318899040256", + "2948684789165802892820480" ], - "expectedQty": "32459058143959561716189", - "swapFee": "19487127162673341034", + "expectedQty": "8422167697151393646336056", + "swapFee": "5056334418942201508706", "reserves": [ - "6638415062192326628502306", - "46700092958010211915068001", - "28806701464634469519397326" + "1064441301082477826112589949", + "170621254662316597995252679", + "481662169259931514342606230" ], - "mAssetSupply": "81855398864741261014116469" + "mAssetSupply": "1711389954397468361532501948" }, { "type": "redeemMasset", - "inputQty": "545359200908769154931097", + "inputQty": "2297983462324229164236", "expectedQtys": [ - "44214977724051178228944", - "311044662092525037125276", - "191866228855773305162182" + "1428858852225413228680", + "229034414442706192173", + "646561960372318767204" ], - "redemptionFee": "163607760272630746479", + "redemptionFee": "689395038697268749", "reserves": [ - "6594200084468275450273362", - "46389048295917686877942725", - "28614835235778696214235144" + "1064439872223625600699361269", + "170621025627902155289060506", + "481661522697971142023839026" ], - "mAssetSupply": "81310203271592764489931851" + "mAssetSupply": "1711387657103401076000606461" }, { - "type": "redeemBassets", - "inputQtys": [ - "5657507457071070576640", - "33348262185260189483008", - "24142089355237710102528" - ], - "expectedQty": "62974748148866676423599", - "swapFee": "37807533409365625229", + "type": "mint", + "inputIndex": 2, + "inputQty": "7620043012638051053600768", + "expectedQty": "7620257957178640564494928", "reserves": [ - "6588542577011204379696722", - "46355700033732426688459717", - "28590693146423458504132616" - ], - "mAssetSupply": "81247228523443897813508252" + "1064439872223625600699361269", + "170621025627902155289060506", + "489281565710609193077439794" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "66982198287198652209299456", + "expectedQty": "66917816070976217543664663", + "reserves": [ + "1064439872223625600699361269", + "170621025627902155289060506", + "556263763997807845286739250" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "301034984672494228602880", + "inputQty": "12186350445242775552", "outputIndex": 0, - "expectedQty": "281406309965707149828809", - "swapFee": "178594894087123137186", + "expectedQty": "12794010513511677906", + "swapFee": "7600527046812302", "reserves": [ - "6307136267045497229867913", - "46656735018404920917062597", - "28590693146423458504132616" + "1064439859429615087187683363", + "170621037814252600531836058", + "556263763997807845286739250" ], - "mAssetSupply": "81247407118337984936645438", + "mAssetSupply": "1785925731139156461155578354", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "50008977095397323309056", - "75735122781435366211584", - "58419357889033362472960" - ], - "expectedQty": "185994163353296458785864", - "swapFee": "111663496109643661468", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1015538081770774855680", + "expectedQty": "976375044856243306863", + "swapFee": "609322849062464913", "reserves": [ - "6257127289950099906558857", - "46580999895623485550851013", - "28532273788534425141659656" + "1064439859429615087187683363", + "170620061439207744288529195", + "556263763997807845286739250" ], - "mAssetSupply": "81061412954984688477859574" + "mAssetSupply": "1785924716210397539443187587" }, { "type": "mintMulti", "inputQtys": [ - "1100344178892838071697408", - "1520505901598735203303424", - "695809904333002968662016" + "6980117386078041862569984", + "2388565061356980778565632", + "1961168818514168461131776" ], - "expectedQty": "3355064196369208087988612", + "expectedQty": "11347102572762812607877662", "reserves": [ - "7357471468842937978256265", - "48101505797222220754154437", - "29228083692867428110321672" + "1071419976815693129050253347", + "173008626500564725067094827", + "558224932816322013747871026" ], - "mAssetSupply": "84416477151353896565848186" + "mAssetSupply": "1797271818783160352051065249" }, { - "type": "redeemBassets", - "inputQtys": [ - "2106434447013559140352", - "1786704763231422382080", - "1574479657222194331648" - ], - "expectedQty": "5540991994172703065333", - "swapFee": "3326591151194338442", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2945009186386298865188864", + "expectedQty": "2974166066926699646721350", + "swapFee": "1767005511831779319113", "reserves": [ - "7355365034395924419115913", - "48099719092458989331772357", - "29226509213210205915990024" + "1068445810748766429403531997", + "173008626500564725067094827", + "558224932816322013747871026" ], - "mAssetSupply": "84410936159359723862782853" + "mAssetSupply": "1794328576602285884965195498" }, { "type": "redeemBassets", "inputQtys": [ - "1064274003821410476097536", - "585807461686842423771136", - "945500755772589834502144" + "450938556774419634585600", + "1151788275272314173521920", + "998369994175147866587136" ], - "expectedQty": "2641851006114246898558829", - "swapFee": "1586062241013156032754", + "expectedQty": "2639515880584986513578722", + "swapFee": "1584660324545719339751", "reserves": [ - "6291091030574513943018377", - "47513911630772146908001221", - "28281008457437616081487880" + "1067994872191992009768946397", + "171856838225292410893572907", + "557226562822146865881283890" ], - "mAssetSupply": "81769085153245476964224024" + "mAssetSupply": "1791689060721700898451616776" }, { - "type": "mintMulti", - "inputQtys": [ - "356972105049725728718848", - "481386246816312185585664", - "633991243482784285589504" - ], - "expectedQty": "1484819730757776992333653", + "type": "mint", + "inputIndex": 1, + "inputQty": "212810935637796336959488", + "expectedQty": "221133490080402333660386", "reserves": [ - "6648063135624239671737225", - "47995297877588459093586885", - "28914999700920400367077384" - ], - "mAssetSupply": "83253904884003253956557677" + "1067994872191992009768946397", + "172069649160930207230532395", + "557226562822146865881283890" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "43998052918855327744", - "61208511104260792320", - "9403700969392175104" - ], - "expectedQty": "116341827295916758355", - "swapFee": "69847004580298233", - "reserves": [ - "6648019137571320816409481", - "47995236669077354832794565", - "28914990297219430974902280" + "type": "redeemMasset", + "inputQty": "12159132850872703385", + "expectedQtys": [ + "7244780351999284017", + "1167240448315950726", + "3779965764873317758" ], - "mAssetSupply": "83253788542175958039799322" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "235159492907750574260224", - "expectedQty": "236029728815824945679786", - "swapFee": "141095695744650344556", + "redemptionFee": "3647739855261811", "reserves": [ - "6648019137571320816409481", - "47995236669077354832794565", - "28678960568403606029222494" + "1067994864947211657769662380", + "172069647993689758914581669", + "557226559042181101007966132" ], - "mAssetSupply": "83018770144963952115883654" + "mAssetSupply": "1791910182056296189767835588" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "558065091853427186597888", - "outputIndex": 2, - "expectedQty": "588738102461422171482747", - "swapFee": "352183226182366418437", + "inputIndex": 2, + "inputQty": "6206868153214029151600640", + "outputIndex": 1, + "expectedQty": "5950241354248104255004822", + "swapFee": "3717460655772398470495", "reserves": [ - "7206084229424748003007369", - "47995236669077354832794565", - "28090222465942183857739747" + "1067994864947211657769662380", + "166119406639441654659576847", + "563433427195395130159566772" ], - "mAssetSupply": "83019122328190134482302091", + "mAssetSupply": "1791913899516951962166306083", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "47601395778244152", - "9558111329956718", - "34087506151691492" + "335830855447882432512", + "64851229844316585984", + "183134548181598535680" ], - "expectedQty": "93278818623878757", + "expectedQty": "582563904788696948328", "reserves": [ - "7206084277026143781251521", - "47995236678635466162751283", - "28090222500029690009431239" + "1067995200778067105652094892", + "166119471490671498976162831", + "563433610329943311758102452" ], - "mAssetSupply": "83019122421468953106180848" + "mAssetSupply": "1791914482080856750863254411" }, { - "type": "redeemMasset", - "inputQty": "28914207119918662", - "expectedQtys": [ - "2509008765330727", - "16710943820728556", - "9780431613512925" - ], - "redemptionFee": "8674262135975", + "type": "swap", + "inputIndex": 2, + "inputQty": "21242031572381031901167616", + "outputIndex": 0, + "expectedQty": "21405434117081779979913336", + "swapFee": "12716394354815805958710", "reserves": [ - "7206084274517135015920794", - "47995236661924522342022727", - "28090222490249258395918314" + "1046589766660985325672181556", + "166119471490671498976162831", + "584675641902324343659270068" ], - "mAssetSupply": "83019122392563420248398161" + "mAssetSupply": "1791927198475211566669213121", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2170124803339976704000", - "expectedQty": "2070781573993989082011", - "swapFee": "1302074882003986022", + "inputIndex": 2, + "inputQty": "616448386038049328332800", + "expectedQty": "617689699034804409429045", + "swapFee": "369869031622829596999", "reserves": [ - "7204013492943141026838783", - "47995236661924522342022727", - "28090222490249258395918314" + "1046589766660985325672181556", + "166119471490671498976162831", + "584057952203289539249841023" ], - "mAssetSupply": "83016953569834962275680183" + "mAssetSupply": "1791311119958205140170477320" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "158322669891638377054208", - "expectedQty": "156616987034604971832416", + "type": "redeemBassets", + "inputQtys": [ + "60598218523624307949568", + "64279230509129561800704", + "45279837697174650486784" + ], + "expectedQty": "172076923318388803905889", + "swapFee": "103308138874357897081", "reserves": [ - "7204013492943141026838783", - "48153559331816160719076935", - "28090222490249258395918314" - ] + "1046529168442461701364231988", + "166055192260162369414362127", + "584012672365592364599354239" + ], + "mAssetSupply": "1791139043034886751366571431" }, { "type": "redeemBassets", "inputQtys": [ - "15718496011546777354240", - "31289916393746830721024", - "35456877674139765178368" + "385769012491602303647744", + "595372304696799204999168", + "668000219611307270209536" ], - "expectedQty": "82753554154866145407588", - "swapFee": "49681941657914435906", + "expectedQty": "1668161193273870529410881", + "swapFee": "1001497614533042142932", "reserves": [ - "7188294996931594249484543", - "48122269415422413888355911", - "28054765612575118630739946" + "1046143399429970099060584244", + "165459819955465570209362959", + "583344672145981057329144703" ], - "mAssetSupply": "83090817002714701102105011" + "mAssetSupply": "1789470881841612880837160550" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "3865097510293787876786176", + "expectedQty": "3854851582430904887238236", + "reserves": [ + "1046143399429970099060584244", + "165459819955465570209362959", + "587209769656274845205930879" + ] }, { "type": "redeemMasset", - "inputQty": "1251245574507957862", + "inputQty": "309885851887241318", "expectedQtys": [ - "108214413226718320", - "724444830123260172", - "422343546038921970" + "180718860481761438", + "28582802447697132", + "101439133959897796" ], - "redemptionFee": "375373672352387", + "redemptionFee": "92965755566172", "reserves": [ - "7188294888717181022766223", - "48122268690977583765095739", - "28054765190231572591817976" + "1046143399249251238578822806", + "165459819926882767761665827", + "587209769554835711246033083" ], - "mAssetSupply": "83090815751844500266499536" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "3801776422518731722194944", - "outputIndex": 0, - "hardLimitError": true + "mAssetSupply": "1793325733114250899592723640" }, { "type": "redeemBassets", "inputQtys": [ - "1167856182550679", - "5750890596729462", - "698852409327927" + "1354781245670143339528192", + "78998179083810475343872", + "986666416880923009089536" ], - "expectedQty": "7608717480424659", - "swapFee": "4567971271017", + "expectedQty": "2407077883340192322252945", + "swapFee": "1445113798283085244498", "reserves": [ - "7188294887549324840215544", - "48122268685226693168366277", - "28054765189532720182490049" + "1044788618003581095239294614", + "165380821747798957286321955", + "586223103137954788236943547" ], - "mAssetSupply": "83090815744235782786074877" + "mAssetSupply": "1790918655230910707270470695" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "37175876039836979691520", - "561164256558280733622272", - "220877888102312435515392" + "5550818167127824924672", + "5152329365434264453120", + "23864073155863407230976" ], - "expectedQty": "814146224049253901074686", + "expectedQty": "34661003248437719130226", + "swapFee": "20809087401503533598", "reserves": [ - "7225470763589161819907064", - "48683432941784973901988549", - "28275643077635032618005441" + "1044783067185413967414369942", + "165375669418433523021868835", + "586199239064798924829712571" ], - "mAssetSupply": "83904961968285036687149563" + "mAssetSupply": "1790883994227662269551340469" }, { "type": "redeemMasset", - "inputQty": "287670812036669269606", + "inputQty": "794838928247876505", "expectedQtys": [ - "24765322884977477078", - "166862613579181776664", - "96914852126557739731" + "463561640939896712", + "73375822306984264", + "260091773798217908" ], - "redemptionFee": "86301243611000780", + "redemptionFee": "238451678474362", "reserves": [ - "7225445998266276842429986", - "48683266079171394720211885", - "28275546162782906060265710" + "1044783066721852326474473230", + "165375669345057700714884571", + "586199238804707151031494663" ], - "mAssetSupply": "83904674383774243628880737" + "mAssetSupply": "1790883993433061792981938326" }, { "type": "mint", "inputIndex": 2, - "inputQty": "34653218863133851648", - "expectedQty": "34533439447989555336", - "reserves": [ - "7225445998266276842429986", - "48683266079171394720211885", - "28275580816001769194117358" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "146951723825822498291712", - "expectedQty": "153901282061011971238187", - "reserves": [ - "7372397722092099340721698", - "48683266079171394720211885", - "28275580816001769194117358" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "133544109305373380313088", - "9927027164306527485952", - "34288380541074965266432" - ], - "expectedQty": "183837545251107746494287", - "swapFee": "110368748399704470578", + "inputQty": "16909162509650416524853248", + "expectedQty": "16861047972785276334531759", "reserves": [ - "7238853612786725960408610", - "48673339052007088192725933", - "28241292435460694228850926" - ], - "mAssetSupply": "83874772654023595843179973" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "43422370365874320179200", - "expectedQty": "45495372271947813404932", - "reserves": [ - "7282275983152600280587810", - "48673339052007088192725933", - "28241292435460694228850926" + "1044783066721852326474473230", + "165375669345057700714884571", + "603108401314357567556347911" ] }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "16653054034890891651448832", - "expectedQty": "16550007032780591720718344", + "inputQty": "3861362489417821033857024", + "outputIndex": 1, + "expectedQty": "3687171093377961083765292", + "swapFee": "2309763772452293852267", "reserves": [ - "7282275983152600280587810", - "48673339052007088192725933", - "44894346470351585880299758" - ] + "1044783066721852326474473230", + "161688498251679739631119279", + "606969763803775388590204935" + ], + "mAssetSupply": "1807747351169619521610322352", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "23955446896261631207014", + "inputQty": "339344081294331923451084", "expectedQtys": [ - "1735815299033558111314", - "11601857273328087625720", - "10701090376639810021620" + "196064227345874710682545", + "30342500266488428849988", + "113904083587313201113657" ], - "redemptionFee": "7186634068878489362", + "redemptionFee": "101803224388299577035", "reserves": [ - "7280540167853566722476496", - "48661737194733760105100213", - "44883645379974946070278138" + "1044587002494506451763790685", + "161658155751413251202269291", + "606855859720188075389091278" ], - "mAssetSupply": "100446326798813942624585597" + "mAssetSupply": "1807408108891549577986448303" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "90282202771665264", - "32704062883485496", - "94920836515226720" + "11153472122402394955841536", + "4676302861232087515529216", + "20435448640484310224207872" ], - "expectedQty": "222687748497416349", - "swapFee": "133692864817340", + "expectedQty": "36287995815001294697109381", "reserves": [ - "7280540077571363950811232", - "48661737162029697221614717", - "44883645285054109555051418" + "1055740474616908846719632221", + "166334458612645338717798507", + "627291308360672385613299150" ], - "mAssetSupply": "100446326576126194127169248" + "mAssetSupply": "1843696104706550872683557684" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "634050143570438016466944", - "189734712178436380557312", - "392925342628053763751936" + "557897767044849755750400", + "470059134601193655894016", + "479888742303011291791360" ], - "expectedQty": "1250190588463178356815645", + "expectedQty": "1520952648764051527965532", + "swapFee": "913119460934991911926", "reserves": [ - "7914590221141801967278176", - "48851471874208133602172029", - "45276570627682163318803354" + "1055182576849863996963881821", + "165864399478044145061904491", + "626811419618369374321507790" ], - "mAssetSupply": "101696517164589372483984893" + "mAssetSupply": "1842175152057786821155592152" }, { "type": "redeemMasset", - "inputQty": "9504832443211220582", + "inputQty": "1429611809801835905443430", "expectedQtys": [ - "739497162235604440", - "4564421380339978511", - "4230401645494237426" + "818624071242702699618963", + "128679711884839023727093", + "486288276064301434512586" ], - "redemptionFee": "2851449732963366", + "redemptionFee": "428883542940550771633", "reserves": [ - "7914589481644639731673736", - "48851467309786753262193518", - "45276566397280517824565928" + "1054363952778621294264262858", + "165735719766159306038177398", + "626325131342305072886995204" ], - "mAssetSupply": "101696507662608379005727677" + "mAssetSupply": "1840745969131527925800920355" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "264517713662444300140544", - "outputIndex": 0, - "expectedQty": "247555001182871430481509", - "swapFee": "157295664075147366979", - "reserves": [ - "7667034480461768301192227", - "49115985023449197562334062", - "45276566397280517824565928" + "type": "redeemMasset", + "inputQty": "601321135086409126772736", + "expectedQtys": [ + "344328406042583661761439", + "54125063798898763180844", + "204541831661793325383883" ], - "mAssetSupply": "101696664958272454153094656", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "8812105365172465434624", - "expectedQty": "8879338594541586829077", - "swapFee": "5287263219103479260", + "redemptionFee": "180396340525922738031", "reserves": [ - "7667034480461768301192227", - "49115985023449197562334062", - "45267687058685976237736851" + "1054019624372578710602501419", + "165681594702360407274996554", + "626120589510643279561611321" ], - "mAssetSupply": "101687858140170500791139292" + "mAssetSupply": "1840144828392782042596885650" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "250606017912812704", - "expectedQty": "252796160796541003", - "swapFee": "150363610747687", + "type": "redeemBassets", + "inputQtys": [ + "487647224510856448", + "23383998431262820", + "333698990548688896" + ], + "expectedQty": "839635782058600315", + "swapFee": "504083919586912", "reserves": [ - "7667034480461768301192227", - "49115984770653036765793059", - "45267687058685976237736851" + "1054019623884931486091644971", + "165681594678976408843733734", + "626120589176944289012922425" ], - "mAssetSupply": "101687857889714846489074275" + "mAssetSupply": "1840144827553146260538285335" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2905683294416392895332352", - "expectedQty": "2930030664440142364917309", - "swapFee": "1743409976649835737199", + "inputIndex": 0, + "inputQty": "10021146980420254", + "expectedQty": "10118613609200943", + "swapFee": "6012688188252", "reserves": [ - "7667034480461768301192227", - "46185954106212894400875750", - "45267687058685976237736851" + "1054019623874812872482444028", + "165681594678976408843733734", + "626120589176944289012922425" ], - "mAssetSupply": "98783918005275103429479122" + "mAssetSupply": "1840144827543131126246053333" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "12160952208597436071936", - "outputIndex": 2, - "expectedQty": "12946356565527529173942", - "swapFee": "7708197126539633705", + "inputIndex": 2, + "inputQty": "15412929218127820450955264", + "outputIndex": 1, + "expectedQty": "14641979101381090701906124", + "swapFee": "9215297662595153271191", "reserves": [ - "7679195432670365737264163", - "46185954106212894400875750", - "45254740702120448708562909" + "1054019623874812872482444028", + "151039615577595318141827610", + "641533518395072109463877689" ], - "mAssetSupply": "98783925713472229969112827", + "mAssetSupply": "1840154042840793721399324524", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "477472016230160256", - "782284237481551744", - "1738098008233662464" - ], - "expectedQty": "3003692471467785927", - "swapFee": "1803297461357486", - "reserves": [ - "7679194955198349507103907", - "46185953323928656919324006", - "45254738964022440474900445" - ], - "mAssetSupply": "98783922709779758501326900" - }, { "type": "swap", - "inputIndex": 2, - "inputQty": "26304125225116677177344", - "outputIndex": 1, - "expectedQty": "26295198851234728422566", - "swapFee": "15651924290744056073", + "inputIndex": 1, + "inputQty": "5031764884008191655936", + "outputIndex": 0, + "expectedQty": "5354613922359262560577", + "swapFee": "3178942306162734149", "reserves": [ - "7679194955198349507103907", - "46159658125077422190901440", - "45281043089247557152077789" + "1054014269260890513219883451", + "151044647342479326333483546", + "641533518395072109463877689" ], - "mAssetSupply": "98783938361704049245382973", + "mAssetSupply": "1840154046019736027562058673", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "19005585028177964564480", - "6203288289543986348032", - "3988213379450914996224" + "29196661279294640", + "57740395643994960", + "26610746768225368" ], - "expectedQty": "30183761126960870636352", - "swapFee": "18121129353788795659", + "expectedQty": "116168185491280897", + "swapFee": "69742756948937", "reserves": [ - "7660189370170171542539427", - "46153454836787878204553408", - "45277054875868106237081565" + "1054014269231693851940588811", + "151044647284738930689488586", + "641533518368461362695652321" ], - "mAssetSupply": "98753754600577088374746621" + "mAssetSupply": "1840154045903567842070777776" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "3511099238274090038984704", - "outputIndex": 0, - "hardLimitError": true + "inputQty": "921191989400663097344", + "expectedQty": "969974234020745921039", + "reserves": [ + "1054014269231693851940588811", + "151045568476728331352585930", + "641533518368461362695652321" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "58121769379815415808", - "2895917786399592960", - "21196612369390166016" + "type": "redeemMasset", + "inputQty": "633398232363086472491827", + "expectedQtys": [ + "362692537327322923769027", + "51975672514192554334562", + "220755473953108592359666" ], - "expectedQty": "85301751118704534008", - "swapFee": "51211777737865439", + "redemptionFee": "190019469708925941747", "reserves": [ - "7660131248400791727123619", - "46153451940870091804960448", - "45277033679255736846915549" + "1053651576694366529016819784", + "150993592804214138798251368", + "641312762894508254103292655" ], - "mAssetSupply": "98753669298825969670212613" + "mAssetSupply": "1839521807664908485270148735" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "35744037777576202240", - "expectedQty": "36030626372898228068", - "swapFee": "21446422666545721", + "type": "redeemBassets", + "inputQtys": [ + "5308734598920964101111808", + "28398206981838300979920896", + "8008106634025382719782912" + ], + "expectedQty": "43443420242979607748296737", + "swapFee": "26081701166487657243324", "reserves": [ - "7660131248400791727123619", - "46153415910243718906732380", - "45277033679255736846915549" + "1048342842095445564915707976", + "122595385822375837818330472", + "633304656260482871383509743" ], - "mAssetSupply": "98753633576234614760556094" + "mAssetSupply": "1796078387421928877521851998" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "103625350561254516719616", - "expectedQty": "109410789994028670150805", + "inputIndex": 1, + "inputQty": "31664287142201643761664", + "expectedQty": "34155318263881500634314", "reserves": [ - "7763756598962046243843235", - "46153415910243718906732380", - "45277033679255736846915549" + "1048342842095445564915707976", + "122627050109518039462092136", + "633304656260482871383509743" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "8233814494375", - "636794811411069", - "786816548047450" + "type": "redeemMasset", + "inputQty": "68646415646835774534451", + "expectedQtys": [ + "40055056280363614742005", + "4685331168774766296631", + "24197287977305091230848" ], - "expectedQty": "1420502411403100", - "swapFee": "852813134722", + "redemptionFee": "20593924694050732360", "reserves": [ - "7763756598953812429348860", - "46153415909606924095321311", - "45277033678468920298868099" + "1048302787039165201300965971", + "122622364778349264695795505", + "633280458972505566292278895" ], - "mAssetSupply": "98863044364808141019303799" + "mAssetSupply": "1796043916918470617298684221" }, { "type": "redeemBassets", "inputQtys": [ - "312747944134589153280", - "264030685434233880576", - "156949740987225047040" + "3462554541643003330560", + "1164849694188332908544", + "1292661060049635377152" ], - "expectedQty": "747453293205071251135", - "swapFee": "448741220655436012", + "expectedQty": "5957339649905705959144", + "swapFee": "3576549719775288748", "reserves": [ - "7763443851009677840195580", - "46153151878921489861440735", - "45276876728727933073821059" + "1048299324484623558297635411", + "122621199928655076362886961", + "633279166311445516656901743" ], - "mAssetSupply": "98862296911514935948052664" + "mAssetSupply": "1796037959578820711592725077" }, { "type": "redeemMasset", - "inputQty": "166983717335483914649", + "inputQty": "8559277590033412915", "expectedQtys": [ - "13108938831481691800", - "77931760243513598974", - "76452128579540036907" + "4994322676975711697", + "584193679398519338", + "3017077686967370960" ], - "redemptionFee": "50095115200645174", + "redemptionFee": "2567783277010023", "reserves": [ - "7763430742070846358503780", - "46153073947161246347841761", - "45276800276599353533784152" + "1048299319490300881321923714", + "122621199344461396964367623", + "633279163294367829689530783" ], - "mAssetSupply": "98862129977892715664783189" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "307371318693340490235904", - "expectedQty": "290564531792904456771633", - "swapFee": "184422791216004294141", - "reserves": [ - "7472866210277941901732147", - "46153073947161246347841761", - "45276800276599353533784152" - ], - "mAssetSupply": "98554943081990591178841426" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "35547216742906360496128", - "expectedQty": "37648656654524511094372", - "reserves": [ - "7508413427020848262228275", - "46153073947161246347841761", - "45276800276599353533784152" - ] + "mAssetSupply": "1796037951022110904836322185" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "434908873436136634056704", - "expectedQty": "438455758579801795997631", - "swapFee": "260945324061681980434", + "inputQty": "5531603416941269094498304", + "expectedQty": "5109320763189464455953768", + "swapFee": "3318962050164761456698", "reserves": [ - "7508413427020848262228275", - "45714618188581444551844130", - "45276800276599353533784152" + "1048299319490300881321923714", + "117511878581271932508413855", + "633279163294367829689530783" ], - "mAssetSupply": "98157943810533040737859528" + "mAssetSupply": "1790509666567219800503280579" }, { "type": "mintMulti", "inputQtys": [ - "667472524454717685760", - "334224387360736542720", - "839882236370227429376" + "128617261174993906040832", + "536306850214428016640", + "83737044140570288586752" ], - "expectedQty": "1870454212064372627918", + "expectedQty": "210615116474085782528012", "reserves": [ - "7509080899545302979914035", - "45714952412968805288386850", - "45277640158835723761213528" + "1048427936751475875227964546", + "117512414888122146936430495", + "633362900338508399978117535" ], - "mAssetSupply": "98159814264745105110487446" + "mAssetSupply": "1790720281683693886285808591" }, { - "type": "redeemMasset", - "inputQty": "13543155090296108639846", - "expectedQtys": [ - "1035720564219466289478", - "6305420988245466770937", - "6245102914615679631944" + "type": "redeemBassets", + "inputQtys": [ + "18126674757414415237120", + "15952809692945465737216", + "21392346529149323575296" ], - "redemptionFee": "4062946527088832591", + "expectedQty": "56451974657262326508409", + "swapFee": "33891519706181104567", "reserves": [ - "7508045178981083513624557", - "45708646991980559821615913", - "45271395055921108081581584" + "1048409810076718460812727426", + "117496462078429201470693279", + "633341507991979250654542239" ], - "mAssetSupply": "98146275172601336090680191" + "mAssetSupply": "1790663829709036623959300182" }, { "type": "redeemBassets", "inputQtys": [ - "75667181133069717340160", - "62605043119987160514560", - "44821731239463426719744" + "1063293813445706121216", + "592098593787206172672", + "1750546223192348819456" ], - "expectedQty": "186616610505547663407484", - "swapFee": "112037188616498497142", + "expectedQty": "3431102602730242924480", + "swapFee": "2059897500138228691", "reserves": [ - "7432377997848013796284397", - "45646041948860572661101353", - "45226573324681644654861840" + "1048408746782905015106606210", + "117495869979835414264520607", + "633339757445756058305722783" ], - "mAssetSupply": "97959658562095788427272707" + "mAssetSupply": "1790660398606433893716375702" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6284798871523700787642368", - "expectedQty": "6487886116108433617162778", + "inputIndex": 1, + "inputQty": "45867048169490148401086464", + "expectedQty": "48704015630914834693336856", "reserves": [ - "13717176869371714583926765", - "45646041948860572661101353", - "45226573324681644654861840" + "1048408746782905015106606210", + "163362918149325562665607071", + "633339757445756058305722783" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "162437604361526770139136", - "424278985759184268558336", - "425591770732655913467904" - ], - "expectedQty": "1011577364808609568220145", - "swapFee": "607310805368386772995", + "type": "mint", + "inputIndex": 0, + "inputQty": "2207427508279882", + "expectedQty": "2184774239049108", "reserves": [ - "13554739265010187813787629", - "45221762963101388392543017", - "44800981553948988741393936" - ], - "mAssetSupply": "103435967313395612476215340" + "1048408746785112442614886092", + "163362918149325562665607071", + "633339757445756058305722783" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "10905640798915684990976", - "30893705013926066913280", - "22653428773966151942144" - ], - "expectedQty": "64418266608494742616775", - "swapFee": "38674164463775110636", + "type": "swap", + "inputIndex": 2, + "inputQty": "3168402160501598172741632", + "outputIndex": 1, + "expectedQty": "3017240401450273429992710", + "swapFee": "1894116955813319814964", "reserves": [ - "13543833624211272128796653", - "45190869258087462325629737", - "44778328125175022589451792" + "1048408746785112442614886092", + "160345677747875289235614361", + "636508159606257656478464415" ], - "mAssetSupply": "103371549046787117733598565" + "mAssetSupply": "1839366308356489315968576630", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3935710176147336081702912", - "5707704879323371016290304", - "268673912983827915997184" + "1213149067340254132830208", + "1281576403818097517002752", + "751249219765848546213888" ], - "expectedQty": "9974785294707200413105887", - "swapFee": "5988464255377546775929", + "expectedQty": "3289717360864298419404932", "reserves": [ - "9608123448063936047093741", - "39483164378764091309339433", - "44509654212191194673454608" + "1049621895852452696747716300", + "161627254151693386752617113", + "637259408826023505024678303" ], - "mAssetSupply": "93396763752079917320492678" + "mAssetSupply": "1842656025717353614387981562" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "842708580090810597376", - "expectedQty": "838287456314875486328", + "inputQty": "25339352980660277248", + "expectedQty": "24213349138357582503", + "swapFee": "15203611788396166", "reserves": [ - "9608123448063936047093741", - "39484007087344182119936809", - "44509654212191194673454608" - ] + "1049621895852452696747716300", + "161627229938344248395034610", + "637259408826023505024678303" + ], + "mAssetSupply": "1842656000393204245516100480" }, { "type": "mintMulti", "inputQtys": [ - "830723364136726298624", - "603197212069192400896", - "421610216809265627136" + "570766855531664129392640", + "929960247349536700235776", + "642993054363116768329728" ], - "expectedQty": "1875065930358418862678", + "expectedQty": "2177868806691244738848417", "reserves": [ - "9608954171428072773392365", - "39484610284556251312337705", - "44510075822408003939081744" + "1050192662707984360877108940", + "162557190185693785095270386", + "637902401880386621793008031" ], - "mAssetSupply": "93399477105466590614841684" + "mAssetSupply": "1844833869199895490254948897" }, { - "type": "redeemBassets", - "inputQtys": [ - "2373080873634176696320", - "1698837834336078921728", - "2904664644994845900800" + "type": "redeemMasset", + "inputQty": "1878450121348604755968", + "expectedQtys": [ + "1069008297857267201548", + "165469624151419435827", + "649331294197805112701" ], - "expectedQty": "7021386086993122160527", - "swapFee": "4215360868717103558", + "redemptionFee": "563535036404581426", "reserves": [ - "9606581090554438596696045", - "39482911446721915233415977", - "44507171157763009093180944" + "1050191593699686503609907392", + "162557024716069633675834559", + "637901752549092423987895330" ], - "mAssetSupply": "93392455719379597492681157" + "mAssetSupply": "1844831991313309178054774355" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "87892674918066197364736", - "expectedQty": "88418327346510729077507", - "swapFee": "52735604950839718418", + "type": "redeemBassets", + "inputQtys": [ + "39366769240457680", + "19160834808578420", + "36192452303361832" + ], + "expectedQty": "95049792767437664", + "swapFee": "57064114128939", "reserves": [ - "9606581090554438596696045", - "39482911446721915233415977", - "44418752830416498364103437" + "1050191593660319734369449712", + "162557024696908798867256139", + "637901752512899971684533498" ], - "mAssetSupply": "93304615780066482135034839" + "mAssetSupply": "1844831991218259385287336691" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "425441934886094784954368", - "outputIndex": 2, - "expectedQty": "425686952924338985592844", - "swapFee": "253912602415197637752", + "inputIndex": 0, + "inputQty": "13008439387135767027384320", + "outputIndex": 1, + "expectedQty": "12253243460582000924027240", + "swapFee": "7723927946165186374467", "reserves": [ - "9606581090554438596696045", - "39908353381608010018370345", - "43993065877492159378510593" + "1063200033047455501396834032", + "150303781236326797943228899", + "637901752512899971684533498" ], - "mAssetSupply": "93304869692668897332672591", + "mAssetSupply": "1844839715146205550473711158", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "74745228026604335136768", - "expectedQty": "75182721719298214110942", - "swapFee": "44847136815962601082", + "type": "redeemBassets", + "inputQtys": [ + "3192057401785308007104512", + "7982553963375804026978304", + "6067257636275769340592128" + ], + "expectedQty": "17631495034861554531506830", + "swapFee": "10585248169818824013312", "reserves": [ - "9606581090554438596696045", - "39908353381608010018370345", - "43917883155772861164399651" + "1060007975645670193389729520", + "142321227272950993916250595", + "631834494876624202343941370" ], - "mAssetSupply": "93230169311779108960136905" + "mAssetSupply": "1827208220111343995942204328" }, { - "type": "redeemMasset", - "inputQty": "1272220110562726091161", - "expectedQtys": [ - "131052203826837167205", - "544426535565535747626", - "599124217109105371765" - ], - "redemptionFee": "381666033168817827", + "type": "redeem", + "inputIndex": 2, + "inputQty": "6470595347377578523492352", + "expectedQty": "6494966762659148371348340", + "swapFee": "3882357208426547114095", "reserves": [ - "9606450038350611759528840", - "39907808955072444482622719", - "43917284031555752059027886" + "1060007975645670193389729520", + "142321227272950993916250595", + "625339528113965053972593030" ], - "mAssetSupply": "93228897473334579402863571" + "mAssetSupply": "1820741507121174843965826071" }, { "type": "redeemMasset", - "inputQty": "351834796725949440", + "inputQty": "6404466054273042392232755", "expectedQtys": [ - "36242726483476368", - "150562153421853943", - "165688897219945864" + "3727464022327317281083303", + "500465342206749573234009", + "2198974579756472441986907" ], - "redemptionFee": "105550439017784", + "redemptionFee": "1921339816281912717669", "reserves": [ - "9606450002107885276052472", - "39907808804510291060768776", - "43917283865866854839082022" + "1056280511623342876108646217", + "141820761930744244343016586", + "623140553534208581530606123" ], - "mAssetSupply": "93228897121605333115931915" + "mAssetSupply": "1814338962406718083486310985" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "827120218865975888445440", - "expectedQty": "821749139881504484335943", + "inputIndex": 0, + "inputQty": "51204889743527529343352832", + "expectedQty": "50573439103662229629303434", "reserves": [ - "9606450002107885276052472", - "39907808804510291060768776", - "44744404084732830727527462" + "1107485401366870405451999049", + "141820761930744244343016586", + "623140553534208581530606123" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "176640396473515596840960", - "149827802798073944473600", - "73382615534004588249088" - ], - "expectedQty": "404145196318859226998027", - "swapFee": "242632697409761393034", + "type": "mint", + "inputIndex": 0, + "inputQty": "150228345187782816", + "expectedQty": "148320183177611870", "reserves": [ - "9429809605634369679211512", - "39757981001712217116295176", - "44671021469198826139278374" - ], - "mAssetSupply": "93646501065167978373269831" + "1107485401517098750639781865", + "141820761930744244343016586", + "623140553534208581530606123" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "6404786817647334635077632", - "outputIndex": 2, - "expectedQty": "6398424276771402719708222", - "swapFee": "3819350067703063251237", + "type": "mintMulti", + "inputQtys": [ + "3928586220454110298112", + "10920472520217820397568", + "3685788125712474963968" + ], + "expectedQty": "19164745855545298415741", "reserves": [ - "9429809605634369679211512", - "46162767819359551751372808", - "38272597192427423419570152" + "1107489330103319204750079977", + "141831682403264462163414154", + "623144239322334294005570091" ], - "mAssetSupply": "93650320415235681436521068", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1864931566404556041591642030" }, { "type": "mint", "inputIndex": 1, - "inputQty": "118389117755310608", - "expectedQty": "117548981615277869", + "inputQty": "8267866562523244240306176", + "expectedQty": "8765083504241572029265669", "reserves": [ - "9429809605634369679211512", - "46162767937748669506683416", - "38272597192427423419570152" + "1107489330103319204750079977", + "150099548965787706403720330", + "623144239322334294005570091" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "209925273895105429504", - "889556861980902948864", - "583843363388554936320" - ], - "expectedQty": "1680866558175715912047", - "swapFee": "1009125410151520459", - "reserves": [ - "9429599680360474573782008", - "46161878380886688603734552", - "38272013349064034864633832" - ], - "mAssetSupply": "93648639666226487335886890" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "2458690746116140433408", - "5044970919603007913984", - "171799362672070426624" + "type": "redeemMasset", + "inputQty": "1060194385106195153367859", + "expectedQtys": [ + "626463052707541131186068", + "84905397369706538543624", + "352488129530394067401332" ], - "expectedQty": "7718217803982528695795", - "swapFee": "4633710908934878144", + "redemptionFee": "318058315531858546010", "reserves": [ - "9427140989614358433348600", - "46156833409967085595820568", - "38271841549701362794207208" + "1106862867050611663618893909", + "150014643568417999865176706", + "622791751192803899938168759" ], - "mAssetSupply": "93640921448422504807191095" + "mAssetSupply": "1872636773582006950326085850" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3730683205885076480", - "995428329321735782400", - "563427602668396675072" + "25085774347032228", + "16704091228462914", + "5139573037074959" ], - "expectedQty": "1552817520360068283409", - "swapFee": "932249862133320962", + "expectedQty": "47559217057481195", "reserves": [ - "9427137258931152548272120", - "46155837981637763860038168", - "38271278122098694397532136" + "1106862867075697437965926137", + "150014643585122091093639620", + "622791751197943472975243718" ], - "mAssetSupply": "93639368630902144738907686" + "mAssetSupply": "1872636773629566167383567045" }, { - "type": "redeemBassets", - "inputQtys": [ - "2555438198310701197426688", - "948402882175834225901568", - "2315433079355317103362048" - ], - "expectedQty": "5906371757740306213632916", - "swapFee": "3545950625019195245326", + "type": "redeem", + "inputIndex": 2, + "inputQty": "4596458413304247746560", + "expectedQty": "4610417716164857800303", + "swapFee": "2757875047982548647", "reserves": [ - "6871699060620451350845432", - "45207435099461929634136600", - "35955845042743377294170088" + "1106862867075697437965926137", + "150014643585122091093639620", + "622787140780227308117443415" ], - "mAssetSupply": "87732996873161838525274770" + "mAssetSupply": "1872632179929027911118369132" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "729764640594676416512", - "expectedQty": "724820186597264673163", + "inputIndex": 0, + "inputQty": "576528296477650497568768", + "expectedQty": "569595492937677880758670", "reserves": [ - "6871699060620451350845432", - "45207435099461929634136600", - "35956574807383971970586600" + "1107439395372175088463494905", + "150014643585122091093639620", + "622787140780227308117443415" ] }, { - "type": "redeemMasset", - "inputQty": "682912207792759193", - "expectedQtys": [ - "53472704178903949", - "351785458361190412", - "279799110962270762" - ], - "redemptionFee": "204873662337827", - "reserves": [ - "6871699007147747171941483", - "45207434747676471272946188", - "35956574527584861008315838" - ], - "mAssetSupply": "87733721010641101659526567" - }, - { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "607796218286027520", - "184460883150465248", - "548201560518673216" - ], - "expectedQty": "1369013509969870622", - "swapFee": "821901246729960", - "reserves": [ - "6871698399351528885913963", - "45207434563215588122480940", - "35956573979383300489642622" - ], - "mAssetSupply": "87733719641627591689655945" - }, - { - "type": "redeemMasset", - "inputQty": "3956248574167313966694", - "expectedQtys": [ - "309778170371208311520", - "2037964350631368028230", - "1620932854271002901275" + "1281511629017339396096", + "405344978757725192192", + "1806248017764025630720" ], - "redemptionFee": "1186874572250194190", + "expectedQty": "3494216375653762857144", "reserves": [ - "6871388621181157677602443", - "45205396598864956754452710", - "35954953046529029486741347" + "1107440676883804105802891001", + "150015048930100848818831812", + "622788947028245072143074135" ], - "mAssetSupply": "87729764579927996625883441" + "mAssetSupply": "1873205269638341242761984946" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3170131060686746112", - "expectedQty": "3189841817446968285", - "swapFee": "1902078636412047", - "reserves": [ - "6871388621181157677602443", - "45205396598864956754452710", - "35954949856687212039773062" + "type": "mintMulti", + "inputQtys": [ + "20565666444838681794576384", + "8549567645050036977401856", + "11512768079634748112109568" ], - "mAssetSupply": "87729761411699014575549376" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "56555552104627953664", - "outputIndex": 0, - "expectedQty": "53158027276289120020", - "swapFee": "33703415041856853", + "expectedQty": "40813720778608967431418400", "reserves": [ - "6871335463153881388482423", - "45205396598864956754452710", - "35955006412239316667726726" + "1128006343328642787597467385", + "158564616575150885796233668", + "634301715107879820255183703" ], - "mAssetSupply": "87729761445402429617406229", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1914018990416950210193403346" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "83781750703590041714688", - "expectedQty": "84301600879192038921752", - "swapFee": "50269050422154025028", + "inputIndex": 0, + "inputQty": "186574825707357488545792", + "expectedQty": "188651807715908794916568", + "swapFee": "111944895424414493127", "reserves": [ - "6871335463153881388482423", - "45205396598864956754452710", - "35870704811360124628804974" + "1127817691520926878802550817", + "158564616575150885796233668", + "634301715107879820255183703" ], - "mAssetSupply": "87646029963749261729716569" + "mAssetSupply": "1913832527536138277119350681" }, { - "type": "mintMulti", - "inputQtys": [ - "10464025145096148090880", - "16589095277809127915520", - "34022661644907603558400" + "type": "redeemMasset", + "inputQty": "2009460336052080423731", + "expectedQtys": [ + "1183815717068336588161", + "166437613706377184792", + "665795851008050504374" ], - "expectedQty": "61268542789315706640114", + "redemptionFee": "602838100815624127", "reserves": [ - "6881799488298977536573303", - "45221985694142765882368230", - "35904727473005032232363374" + "1127816507705209810465962656", + "158564450137537179419048876", + "634301049312028812204679329" ], - "mAssetSupply": "87707298506538577436356683" + "mAssetSupply": "1913830518678640325854551077" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1184993414889710261633024", - "expectedQty": "1192108649710434042716600", - "swapFee": "710996048933826156979", + "inputQty": "131450597625100189696", + "expectedQty": "131819066085167546908", + "swapFee": "78870358575060113", "reserves": [ - "6881799488298977536573303", - "45221985694142765882368230", - "34712618823294598189646774" + "1127816507705209810465962656", + "158564450137537179419048876", + "634300917492962727037132421" ], - "mAssetSupply": "86523016087697801000880638" + "mAssetSupply": "1913830387306913059329421494" }, { - "type": "redeemMasset", - "inputQty": "583201369398841", - "expectedQtys": [ - "46372295193359", - "304723680689079", - "233907397294174" + "type": "redeemBassets", + "inputQtys": [ + "3679162549312471615668224", + "8695174618198337403224064", + "13900744076324342020964352" ], - "redemptionFee": "174960410819", + "expectedQty": "26665903684978901887277360", + "swapFee": "16009147699607105395603", "reserves": [ - "6881799488252605241379944", - "45221985693838042201679151", - "34712618823060690792352600" + "1124137345155897338850294432", + "149869275519338842015824812", + "620400173416638385016168069" ], - "mAssetSupply": "86523016087114774591892616" + "mAssetSupply": "1887164483621934157442144134" }, { - "type": "redeemMasset", - "inputQty": "123736859462268490455449", - "expectedQtys": [ - "9838732339051695274361", - "64652713849277127820902", - "49627741402611117200883" - ], - "redemptionFee": "37121057838680547136", + "type": "mint", + "inputIndex": 1, + "inputQty": "105789636171506248581120", + "expectedQty": "111946411753719694262766", "reserves": [ - "6871960755913553546105583", - "45157332979988765073858249", - "34662991081658079675151717" - ], - "mAssetSupply": "86399316348710344781984303" + "1124137345155897338850294432", + "149975065155510348264405932", + "620400173416638385016168069" + ] }, { "type": "mintMulti", "inputQtys": [ - "1866145879820110659584", - "3529064035450083606528", - "1638782593780275216384" + "2165240322147315875840", + "2028800588511895879680", + "4165321434301907075072" ], - "expectedQty": "7090302686196673308803", + "expectedQty": "8436294755396864145127", "reserves": [ - "6873826901793373656765167", - "45160862044024215157464777", - "34664629864251859950368101" + "1124139510396219486166170272", + "149977093956098860160285612", + "620404338738072686923243141" ], - "mAssetSupply": "86406406651396541455293106" + "mAssetSupply": "1887284866328443274000552027" }, { "type": "mintMulti", "inputQtys": [ - "3436835691990344531968", - "10269994168718247067648", - "26298092344811622236160" + "65809236973062042157056", + "40272317077454910914560", + "36418577359419230650368" ], - "expectedQty": "39922803990269890413367", + "expectedQty": "143907283440470381625996", "reserves": [ - "6877263737485364001297135", - "45171132038192933404532425", - "34690927956596671572604261" + "1124205319633192548208327328", + "150017366273176315071200172", + "620440757315432106153893509" ], - "mAssetSupply": "86446329455386811345706473" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "31736494319624169455616", - "expectedQty": "33456329282965510709980", - "reserves": [ - "6909000231804988170752751", - "45171132038192933404532425", - "34690927956596671572604261" - ] + "mAssetSupply": "1887428773611883744382178023" }, { "type": "swap", "inputIndex": 1, - "inputQty": "41849412838538035200", - "outputIndex": 0, - "expectedQty": "39293622093411820178", - "swapFee": "24862937885973799", + "inputQty": "102477497638906905598361600", + "outputIndex": 2, + "expectedQty": "105950319538685848993126499", + "swapFee": "63614808729004660601936", "reserves": [ - "6908960938182894758932573", - "45171173887605771942567625", - "34690927956596671572604261" + "1124205319633192548208327328", + "252494863912083220669561772", + "514490437776746257160767010" ], - "mAssetSupply": "86479785809532714742390252", + "mAssetSupply": "1887492388420612749042779959", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "791830853719110975488", - "1401370520347836416000", - "3669208815680490569728" - ], - "expectedQty": "5868072762061166159082", - "swapFee": "3522957431695717125", + "type": "swap", + "inputIndex": 2, + "inputQty": "11312114195017346102329344", + "outputIndex": 1, + "expectedQty": "11095443270465237216496184", + "swapFee": "6794446711363239453566", "reserves": [ - "6908169107329175647957085", - "45169772517085424106151625", - "34687258747780991082034533" + "1124205319633192548208327328", + "241399420641617983453065588", + "525802551971763603263096354" ], - "mAssetSupply": "86473917736770653576231170" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "190761102519503808", - "expectedQty": "188886612126152007", - "reserves": [ - "6908169107329175647957085", - "45169772707846526625655433", - "34687258747780991082034533" - ] + "mAssetSupply": "1887499182867324112282233525", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "82668233570799243493376", - "55865830125539438886912", - "55472133317894682443776" + "type": "redeemMasset", + "inputQty": "292953911989848815907635", + "expectedQtys": [ + "174432681693831098805999", + "37455745464354889243162", + "81583984331100957078260" ], - "expectedQty": "197524604344020945208096", + "redemptionFee": "87886173596954644772", "reserves": [ - "6990837340899974891450461", - "45225638537972066064542345", - "34742730881098885764478309" + "1124030886951498717109521329", + "241361964896153628563822426", + "525720967987432502306018094" ], - "mAssetSupply": "86671442530001286647591273" + "mAssetSupply": "1887206316841507860420970662" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1946695097676633473024", - "expectedQty": "2049540637418220564477", + "inputQty": "144781717767192877989888", + "expectedQty": "143574594342634115013501", "reserves": [ - "6992784035997651524923485", - "45225638537972066064542345", - "34742730881098885764478309" + "1124175668669265909987511217", + "241361964896153628563822426", + "525720967987432502306018094" ] }, { - "type": "redeemMasset", - "inputQty": "12204600530941038192230", - "expectedQtys": [ - "984367082478123646159", - "6366367048039735474752", - "4890698820197541988576" - ], - "redemptionFee": "3661380159282311457", + "type": "redeem", + "inputIndex": 0, + "inputQty": "745961321789211331788800", + "expectedQty": "751779361061802287748769", + "swapFee": "447576793073526799073", "reserves": [ - "6991799668915173401277326", - "45219272170924026329067593", - "34737840182278688222489733" + "1123423889308204107699762448", + "241361964896153628563822426", + "525720967987432502306018094" ], - "mAssetSupply": "86661291131487923112274977" + "mAssetSupply": "1886604377690854356730994436" }, { - "type": "redeemBassets", - "inputQtys": [ - "842203521756237266944", - "1232976541864770404352", - "2764569258305567850496" - ], - "expectedQty": "4854938055393690363497", - "swapFee": "2914711660232353630", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1913192514011362230272", + "expectedQty": "1928106612573294320123", + "swapFee": "1147915508406817338", "reserves": [ - "6990957465393417164010382", - "45218039194382161558663241", - "34735075613020382654639237" + "1123421961201591534405442325", + "241361964896153628563822426", + "525720967987432502306018094" ], - "mAssetSupply": "86656436193432529421911480" + "mAssetSupply": "1886602465646255853775581502" }, { "type": "mintMulti", "inputQtys": [ - "324853837380529208426496", - "249699298234795481366528", - "542707986662363876032512" + "182970419209669707825152", + "1280510681205585634918400", + "767736035865256460812288" ], - "expectedQty": "1128101733862037637509842", + "expectedQty": "2256950439423592254791564", "reserves": [ - "7315811302773946372436878", - "45467738492616957040029769", - "35277783599682746530671749" + "1123604931620801204113267477", + "242642475577359214198740826", + "526488704023297758766830382" ], - "mAssetSupply": "87784537927294567059421322" + "mAssetSupply": "1888859416085679446030373066" }, { "type": "redeemBassets", "inputQtys": [ - "68414383606178754068480", - "981066626387157608038400", - "863355894987866599587840" + "13159573213839540640284672", + "29360992949913639312162816", + "31398512161588199989182464" ], - "expectedQty": "1901910444984930338592016", - "swapFee": "1141831365810444469837", + "expectedQty": "74510376999892015036884142", + "swapFee": "44733066039558944388763", "reserves": [ - "7247396919167767618368398", - "44486671866229799431991369", - "34414427704694879931083909" + "1110445358406961663472982805", + "213281482627445574886578010", + "495090191861709558777647918" ], - "mAssetSupply": "85882627482309636720829306" + "mAssetSupply": "1814349039085787430993488924" }, { "type": "redeemMasset", - "inputQty": "3280910039325262374502", + "inputQty": "11031512223317340979", "expectedQtys": [ - "276783845473004314633", - "1698981337542741423595", - "1314314331903869445555" + "6749647566875907259", + "1296394126354159064", + "3009318994027292390" ], - "redemptionFee": "984273011797578712", - "reserves": [ - "7247120135322294614053765", - "44484972884892256690567774", - "34413113390362976061638354" - ], - "mAssetSupply": "85879347556543323256033516" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "357208694417857158578176", - "expectedQty": "359106554938986257612249", - "swapFee": "214325216650714295146", + "redemptionFee": "3309453666995202", "reserves": [ - "7247120135322294614053765", - "44484972884892256690567774", - "34054006835423989804026105" + "1110445351657314096597075546", + "213281481331051448532418946", + "495090188852390564750355528" ], - "mAssetSupply": "85522353187342116811750486" + "mAssetSupply": "1814349028057584661343143147" }, { "type": "redeemBassets", "inputQtys": [ - "37018305041924452515840", - "62049496370730814668800", - "116494917753647315025920" + "410163684017844057538560", + "323448928283804888465408", + "232593149066556907454464" ], - "expectedQty": "216075075167521253962204", - "swapFee": "129722878827809438040", + "expectedQty": "970955314783808525913918", + "swapFee": "582922942635866635529", "reserves": [ - "7210101830280370161537925", - "44422923388521525875898974", - "33937511917670342489000185" + "1110035187973296252539536986", + "212958032402767643643953538", + "494857595703324007842901064" ], - "mAssetSupply": "85306278112174595557788282" + "mAssetSupply": "1813378072742800852817229229" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "423293439343848", - "expectedQty": "426989015079754", - "swapFee": "253976063606", + "type": "mint", + "inputIndex": 0, + "inputQty": "2581014702306426355712", + "expectedQty": "2556598114835223810193", "reserves": [ - "7210101830280370161537925", - "44422923388094536860819220", - "33937511917670342489000185" - ], - "mAssetSupply": "85306278111751556094508040" + "1110037768987998558965892698", + "212958032402767643643953538", + "494857595703324007842901064" + ] }, { - "type": "redeemMasset", - "inputQty": "41110345847030268978790", - "expectedQtys": [ - "3473611362026601865975", - "21401635517444844661357", - "16350077956048623156011" - ], - "redemptionFee": "12333103754109080693", + "type": "mint", + "inputIndex": 2, + "inputQty": "532155361588534906454016", + "expectedQty": "532683604663627981903787", "reserves": [ - "7206628218918343559671950", - "44401521752577092016157863", - "33921161839714293865844174" - ], - "mAssetSupply": "85265180099008279934609943" + "1110037768987998558965892698", + "212958032402767643643953538", + "495389751064912542749355080" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "1673227602616233651863552", - "490227088904861358489600", - "724751631377196105334784" - ], - "expectedQty": "2946334856204860303633233", + "type": "redeem", + "inputIndex": 0, + "inputQty": "441393501904835051520", + "expectedQty": "445339480608209928206", + "swapFee": "264836101142901030", "reserves": [ - "8879855821534577211535502", - "44891748841481953374647463", - "34645913471091489971178958" + "1110037323648517950755964492", + "212958032402767643643953538", + "495389751064912542749355080" ], - "mAssetSupply": "88211514955213140238243176" + "mAssetSupply": "1813912871816913512330792719" }, { - "type": "redeemMasset", - "inputQty": "430264674984911658024960", - "expectedQtys": [ - "43299812665285519313896", - "218900436461962419795199", - "168939855901478165361123" + "type": "redeemBassets", + "inputQtys": [ + "3705506895129649086464", + "3096372395298997665792", + "1635928764945303863296" ], - "redemptionFee": "129079402495473497407", + "expectedQty": "8484866643950245807462", + "swapFee": "5093976372193463562", "reserves": [ - "8836556008869291692221606", - "44672848405019990954852264", - "34476973615190011805817835" + "1110033618141622821106878028", + "212954936030372344646287746", + "495388115136147597445491784" ], - "mAssetSupply": "87781379359630724053715623" + "mAssetSupply": "1813904386950269562084985257" }, { "type": "redeemMasset", - "inputQty": "2690445919109542576128", + "inputQty": "265633909265761001327820", "expectedQtys": [ - "270753819814769450123", - "1368784890349265143159", - "1056381274853728452191" + "162508075261982822646516", + "31176440250316086444085", + "72524442307625470102508" ], - "redemptionFee": "807133775732862772", + "redemptionFee": "79690172779728300398", "reserves": [ - "8836285255049476922771483", - "44671479620129641689709105", - "34475917233915158077365644" + "1109871110066360838284231512", + "212923759590122028559843661", + "495315590693839971975389276" ], - "mAssetSupply": "87778689720845390244002267" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "134540444693164571230208", - "expectedQty": "133922502710605918728064", - "reserves": [ - "8836285255049476922771483", - "44671479620129641689709105", - "34610457678608322648595852" - ] + "mAssetSupply": "1813638832731176580811957835" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "151972555017418803511296", - "expectedQty": "153024393215556625831298", - "swapFee": "91183533010451282106", + "inputIndex": 0, + "inputQty": "63701902568250713047040", + "expectedQty": "64271367605254603248050", + "swapFee": "38221141540950427828", "reserves": [ - "8836285255049476922771483", - "44518455226914085063877807", - "34610457678608322648595852" + "1109806838698755583680983462", + "212923759590122028559843661", + "495315590693839971975389276" ], - "mAssetSupply": "87760730852071587810501141" + "mAssetSupply": "1813575169049749871049338623" }, { - "type": "mintMulti", - "inputQtys": [ - "2422813808289324954812416", - "2621759796239899444641792", - "2614271649522212124229632" + "type": "redeemMasset", + "inputQty": "126726840536828249689292", + "expectedQtys": [ + "77526492411034659001123", + "14873968745180226516444", + "34600688195449476839173" ], - "expectedQty": "7696120538202695799999931", + "redemptionFee": "38018052161048474906", "reserves": [ - "11259099063338801877583899", - "47140215023153984508519599", - "37224729328130534772825484" + "1109729312206344549021982339", + "212908885621376848333327217", + "495280990005644522498550103" ], - "mAssetSupply": "95456851390274283610501072" + "mAssetSupply": "1813448480227265203848124237" }, { "type": "redeemBassets", "inputQtys": [ - "11185711338977295859712", - "7421159649446415302656", - "13653899965552887070720" + "16429150552843381207203840", + "9856081890473389672366080", + "3988836612597724129263616" ], - "expectedQty": "32419807308031545664558", - "swapFee": "19463562522332326794", + "expectedQty": "30385228053840056130777917", + "swapFee": "18242082081552965457741", "reserves": [ - "11247913351999824581724187", - "47132793863504538093216943", - "37211075428164981885754764" + "1093300161653501167814778499", + "203052803730903458660961137", + "491292153393046798369286487" ], - "mAssetSupply": "95424431582966252064836514" + "mAssetSupply": "1783063252173425147717346320" }, { "type": "redeemMasset", - "inputQty": "9164686754268", + "inputQty": "1146286932292968365686784", "expectedQtys": [ - "1079940175905", - "4525336931658", - "3572728032831" + "702644573120745838753117", + "130498426326665815528263", + "315744730958737873569721" ], - "redemptionFee": "2749406026", + "redemptionFee": "343886079687890509706", "reserves": [ - "11247913351998744641548282", - "47132793863500012756285285", - "37211075428161409157721933" + "1092597517080380421976025382", + "202922305304576792845432874", + "490976408662088060495716766" ], - "mAssetSupply": "95424431582957090127488272" + "mAssetSupply": "1781917309127211867242169242" }, { - "type": "mintMulti", - "inputQtys": [ - "70227914385033397272576", - "50949959614172562980864", - "10918638713655540056064" - ], - "expectedQty": "133336355853488810811253", + "type": "swap", + "inputIndex": 2, + "inputQty": "186435577131719892926464", + "outputIndex": 0, + "expectedQty": "188296626085889839485542", + "swapFee": "111948438225658722459", "reserves": [ - "11318141266383778038820858", - "47183743823114185319266149", - "37221994066875064697777997" + "1092409220454294532136539840", + "202922305304576792845432874", + "491162844239219780388643230" ], - "mAssetSupply": "95557767938810578938299525" + "mAssetSupply": "1781917421075650092900891701", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "101607662601557744", - "80057488148777664", - "50848385242174184" + "type": "redeemMasset", + "inputQty": "5887705472837457490739", + "expectedQtys": [ + "3608390677746295731528", + "670282656954613445109", + "1622384171813486057147" ], - "expectedQty": "234130412354163207", + "redemptionFee": "1766311641851237247", "reserves": [ - "11318141367991440640378602", - "47183743903171673468043813", - "37221994117723449939952181" + "1092405612063616785840808312", + "202921635021919838231987765", + "491161221855047966902586083" ], - "mAssetSupply": "95557768172940991292462732" + "mAssetSupply": "1781911535136488897294638209" }, { - "type": "mintMulti", - "inputQtys": [ - "5680513399017389948928", - "3120770628587296391168", - "691455539030422978560" - ], - "expectedQty": "9599099383908760633390", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3214494863125107148062720", + "expectedQty": "3209938924001428607065826", + "swapFee": "1928696917875064288837", "reserves": [ - "11323821881390458030327530", - "47186864673800260764434981", - "37222685573262480362930741" + "1092405612063616785840808312", + "202921635021919838231987765", + "487951282931046538295520257" ], - "mAssetSupply": "95567367272324900053096122" + "mAssetSupply": "1778698968970281665210864326" }, { "type": "redeemMasset", - "inputQty": "14562994050097196", + "inputQty": "19616740867416906137", "expectedQtys": [ - "1725058278398193", - "7188393847042681", - "5670462019355336" + "12044201608224845519", + "2237290852303212808", + "5379854846691540298" ], - "redemptionFee": "4368898215029", + "redemptionFee": "5885022260225071", "reserves": [ - "11323821879665399751929337", - "47186864666611866917392300", - "37222685567592018343575405" + "1092405600019415177615962793", + "202921632784628985928774957", + "487951277551191691603979959" ], - "mAssetSupply": "95567367257766274901213955" + "mAssetSupply": "1778698949359425820054183260" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "339450894969471546425344", - "expectedQty": "338204817634274204025826", + "type": "redeem", + "inputIndex": 1, + "inputQty": "45767745222248041533145088", + "expectedQty": "44168724488811919718048847", + "swapFee": "27460647133348824919887", "reserves": [ - "11323821879665399751929337", - "47186864666611866917392300", - "37562136462561489890000749" - ] + "1092405600019415177615962793", + "158752908295817066210726110", + "487951277551191691603979959" + ], + "mAssetSupply": "1732958664784311127345958059" }, { "type": "redeemBassets", "inputQtys": [ - "24611525753400132108288", - "4304020088667092549632", - "22407505141211842215936" + "919294880090709120", + "522679036370565312", + "324355247440047232" ], - "expectedQty": "51772199270419466335099", - "swapFee": "31081968743497778468", + "expectedQty": "1778865892627193398", + "swapFee": "1067960311763374", "reserves": [ - "11299210353911999619821049", - "47182560646523199824842668", - "37539728957420278047784813" + "1092405599100120297525253673", + "158752907773138029840160798", + "487951277226836444163932727" ], - "mAssetSupply": "95853799876130129638904682" + "mAssetSupply": "1732958663005445234718764661" }, { - "type": "redeemMasset", - "inputQty": "4934304432129874853888", - "expectedQtys": [ - "581479478933384764123", - "2428106913682192195464", - "1931867922602553547938" - ], - "redemptionFee": "1480291329638962456", + "type": "redeem", + "inputIndex": 0, + "inputQty": "54026609039651119300608", + "expectedQty": "54662065168973924567192", + "swapFee": "32415965423790671580", "reserves": [ - "11298628874433066235056926", - "47180132539609517632647204", - "37537797089497675494236875" + "1092350937034951323600686481", + "158752907773138029840160798", + "487951277226836444163932727" ], - "mAssetSupply": "95848867051989329403013250" + "mAssetSupply": "1732904668812371007390135633" }, { - "type": "mintMulti", - "inputQtys": [ - "92543475468979601408", - "34581688746517168128", - "163004456876253839360" - ], - "expectedQty": "291418383265488212846", + "type": "redeem", + "inputIndex": 0, + "inputQty": "196552186398145413120", + "expectedQty": "198863932651892165682", + "swapFee": "117931311838887247", "reserves": [ - "11298721417908535214658334", - "47180167121298264149815332", - "37537960093954551748076235" + "1092350738171018671708520799", + "158752907773138029840160798", + "487951277226836444163932727" ], - "mAssetSupply": "95849158470372594891226096" + "mAssetSupply": "1732904472378115921083609760" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "143686342966478635008", + "expectedQty": "141930813607822307456", + "reserves": [ + "1092350881857361638187155807", + "158752907773138029840160798", + "487951277226836444163932727" + ] }, { "type": "redeemBassets", "inputQtys": [ - "101519989056394519117824", - "4138889071140351770624", - "246470215234845556080640" + "2133164118404671471616", + "1877004001945454641152", + "1455639985535837274112" ], - "expectedQty": "353510863284705363477969", - "swapFee": "212233858285794694903", + "expectedQty": "5525079213343370348904", + "swapFee": "3317037750656416058", "reserves": [ - "11197201428852140695540510", - "47176028232227123798044708", - "37291489878719706191995595" + "1092348748693243233515684191", + "158751030769136084385519646", + "487949821586850908326658615" ], - "mAssetSupply": "95495647607087889527748127" + "mAssetSupply": "1732899089229716185535568312" }, { - "type": "mintMulti", - "inputQtys": [ - "7365381176212740577951744", - "3845161180841929108094976", - "6712738927241069332529152" - ], - "expectedQty": "17998034999234560374838017", + "type": "redeem", + "inputIndex": 2, + "inputQty": "16885788151711787212865536", + "expectedQty": "16872058425322898286423036", + "swapFee": "10131472891027072327719", "reserves": [ - "18562582605064881273492254", - "51021189413069052906139684", - "44004228805960775524524747" + "1092348748693243233515684191", + "158751030769136084385519646", + "471077763161528010040235579" ], - "mAssetSupply": "113493682606322449902586144" + "mAssetSupply": "1716023432550895425395030495" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "31147405393428725366784", - "expectedQty": "31201117197053823940302", - "swapFee": "18688443236057235220", + "inputQty": "11079616559762538", + "expectedQty": "11067511312266723", + "swapFee": "6647769935857", "reserves": [ - "18562582605064881273492254", - "51021189413069052906139684", - "43973027688763721700584445" + "1092348748693243233515684191", + "158751030769136084385519646", + "471077763150460498727968856" ], - "mAssetSupply": "113462553889372257234454580" + "mAssetSupply": "1716023432539822456605203814" }, { - "type": "redeemMasset", - "inputQty": "964417973647094542709555", - "expectedQtys": [ - "157732371268432441460936", - "433543831819144309530616", - "373653282884711826051612" + "type": "swap", + "inputIndex": 0, + "inputQty": "183947288291897509937152", + "outputIndex": 2, + "expectedQty": "181466737122287884106146", + "swapFee": "108999693486216916928", + "reserves": [ + "1092532695981535131025621343", + "158751030769136084385519646", + "470896296413338210843862710" ], - "redemptionFee": "289325392094128362812", + "mAssetSupply": "1716023541539515942822120742", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "14965697036868365441826816", + "expectedQty": "14250848234649400818775216", + "swapFee": "8979418222121019265096", "reserves": [ - "18404850233796448832031318", - "50587645581249908596609068", - "43599374405879009874532833" + "1092532695981535131025621343", + "144500182534486683566744430", + "470896296413338210843862710" ], - "mAssetSupply": "112498425241117256820107837" + "mAssetSupply": "1701066823920869698399559022" }, { "type": "redeemBassets", "inputQtys": [ - "1088340201315024699916288", - "944023179474395532886016", - "724518458852426924425216" + "615878773356840265711616", + "460077075584922222067712", + "237985859605400471470080" ], - "expectedQty": "2763369060449786753335645", - "swapFee": "1659016846377698671204", + "expectedQty": "1330716646058397226271975", + "swapFee": "798909333234979323357", "reserves": [ - "17316510032481424132115030", - "49643622401775513063723052", - "42874855947026582950107617" + "1091916817208178290759909727", + "144040105458901761344676718", + "470658310553732810372392630" ], - "mAssetSupply": "109735056180667470066772192" + "mAssetSupply": "1699736107274811301173287047" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "257303837446311", - "outputIndex": 0, - "expectedQty": "253324879937408", - "swapFee": "153799105343", + "inputIndex": 2, + "inputQty": "859225760746187769511936", + "outputIndex": 1, + "expectedQty": "814024860557800933383149", + "swapFee": "515590695374632737344", "reserves": [ - "17316510032228099252177622", - "49643622402032816901169363", - "42874855947026582950107617" + "1091916817208178290759909727", + "143226080598343960411293569", + "471517536314478998141904566" ], - "mAssetSupply": "109735056180667623865877535", + "mAssetSupply": "1699736622865506675806024391", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "694154668824472695341056", - "663954301755763376259072", - "1090650976322718105862144" - ], - "expectedQty": "2451450652134200992664421", - "swapFee": "1471753443346528512706", + "type": "redeem", + "inputIndex": 0, + "inputQty": "42158373468829384217460736", + "expectedQty": "42699815282830283294959623", + "swapFee": "25295024081297630530476", "reserves": [ - "16622355363403626556836566", - "48979668100277053524910291", - "41784204970703864844245473" + "1049217001925348007464950104", + "143226080598343960411293569", + "471517536314478998141904566" ], - "mAssetSupply": "107283605528533422873213114" + "mAssetSupply": "1657603544420758589219094131" }, { - "type": "redeemMasset", - "inputQty": "25643863670665052894003", - "expectedQtys": [ - "3972028478169367105385", - "11704035456606192721748", - "9984629040400796012743" - ], - "redemptionFee": "7693159101199515868", + "type": "mint", + "inputIndex": 0, + "inputQty": "182710331456862552064", + "expectedQty": "180349620066293927938", + "reserves": [ + "1049217184635679464327502168", + "143226080598343960411293569", + "471517536314478998141904566" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "1322179624092618738106368", + "outputIndex": 2, + "expectedQty": "1304794974644116336257244", + "swapFee": "783049226530720412604", "reserves": [ - "16618383334925457189731181", - "48967964064820447332188543", - "41774220341663464048232730" + "1050539364259772083065608536", + "143226080598343960411293569", + "470212741339834881805647322" ], - "mAssetSupply": "107257969358021859019834979" + "mAssetSupply": "1657604507819605186233434673", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "17489334763911991263232", - "1093517148572747563008", - "27078902213697926594560" + "578167185794729216", + "164661756718429120", + "95792941581914992" ], - "expectedQty": "45795174869545903553461", - "swapFee": "27493601082376968313", + "expectedQty": "839611023735899466", + "swapFee": "504069055674944", "reserves": [ - "16600894000161545198467949", - "48966870547671874584625535", - "41747141439449766121638170" + "1050539363681604897270879320", + "143226080433682203692864449", + "470212741244041940223732330" ], - "mAssetSupply": "107212174183152313116281518" + "mAssetSupply": "1657604506979994162497535207" }, { "type": "redeemMasset", - "inputQty": "90621096141367810614886", + "inputQty": "12864867889798022758", "expectedQtys": [ - "14027696997252605852554", - "41376833256073413262770", - "35276187572088022192623" + "8150916310172262937", + "1111261353365874317", + "3648282810103693314" ], - "redemptionFee": "27186328842410343184", + "redemptionFee": "3859460366939406", "reserves": [ - "16586866303164292592615395", - "48925493714415801171362765", - "41711865251877678099445547" + "1050539355530688587098616383", + "143226079322420850326990132", + "470212737595759130120039016" ], - "mAssetSupply": "107121580273339787716009816" + "mAssetSupply": "1657604494118985733066451855" }, { - "type": "redeemMasset", - "inputQty": "1991817768331295640780", - "expectedQtys": [ - "308323528599877893636", - "909447305163487633558", - "775357396863330509603" - ], - "redemptionFee": "597545330499388692", - "reserves": [ - "16586557979635692714721759", - "48924584267110637683729207", - "41711089894480814768935944" - ], - "mAssetSupply": "107119589053116786919757728" + "type": "redeem", + "inputIndex": 1, + "inputQty": "161637542731099427995385856", + "hardLimitError": true }, { "type": "redeemMasset", - "inputQty": "57449064711160856576", + "inputQty": "2415005872979835416372838", "expectedQtys": [ - "8892830774045833360", - "26230761627103789894", - "22363269358720697260" + "1530098165628515429027183", + "208607093192329747219505", + "684859299618515008613660" ], - "redemptionFee": "17234719413348256", + "redemptionFee": "724501761893950624911", "reserves": [ - "16586549086804918668888399", - "48924558036349010579939313", - "41711067531211456048238684" + "1049009257365060071669589200", + "143017472229228520579770627", + "469527878296140615111425356" ], - "mAssetSupply": "107119531621286795172249408" + "mAssetSupply": "1655190212747767791600703928" }, { "type": "mintMulti", "inputQtys": [ - "19504529349961079324672", - "59143460920570750697472", - "18667050428881338105856" + "2332641552447099371520", + "11529991358098758959104", + "2552604237699541368832" ], - "expectedQty": "97265109000973306478112", + "expectedQty": "16980259557434094186424", "reserves": [ - "16606053616154879748213071", - "48983701497269581330636785", - "41729734581640337386344540" + "1049011590006612518768960720", + "143029002220586619338729731", + "469530430900378314652794188" ], - "mAssetSupply": "107216796730287768478727520" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "166745345926979481763840", - "expectedQty": "166320291978569240420716", - "reserves": [ - "16606053616154879748213071", - "48983701497269581330636785", - "41896479927567316868108380" - ] + "mAssetSupply": "1655207193007325225694890352" }, { "type": "redeemBassets", "inputQtys": [ - "22854657795028930265088", - "8998534700462763933696", - "2481528688683980423168" - ], - "expectedQty": "34564209484345458425895", - "swapFee": "20750976276373098914", - "reserves": [ - "16583198958359850817947983", - "48974702962569118566703089", - "41893998398878632887685212" - ], - "mAssetSupply": "107348552812781992260722341" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1482214768891750179143680", - "expectedQty": "1498308484333432179306222", - "reserves": [ - "18065413727251600997091663", - "48974702962569118566703089", - "41893998398878632887685212" - ] - }, - { - "type": "redeemMasset", - "inputQty": "2197570268907081564160", - "expectedQtys": [ - "364623339843930004319", - "988481084999380511905", - "845567660184405892549" + "271291395194972115304448", + "420764179237017439174656", + "318977163313655794630656" ], - "redemptionFee": "659271080672124469", + "expectedQty": "1029209194664070824446550", + "swapFee": "617896254551173198587", "reserves": [ - "18065049103911757067087344", - "48973714481484119186191184", - "41893152831218448481792663" + "1048740298611417546653656272", + "142608238041349601899555075", + "469211453737064658858163532" ], - "mAssetSupply": "108844664386117598030588872" + "mAssetSupply": "1654177983812661154870443802" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "525262047786600461500416", - "expectedQty": "523382435084525844230734", + "inputIndex": 2, + "inputQty": "1155485081035753469771776", + "expectedQty": "1155043369377778860915870", "reserves": [ - "18065049103911757067087344", - "49498976529270719647691600", - "41893152831218448481792663" + "1048740298611417546653656272", + "142608238041349601899555075", + "470366938818100412327935308" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "108325484289364148092928", - "expectedQty": "109406275747768467330216", + "inputQty": "10679517461560296", + "expectedQty": "10540923807387291", "reserves": [ - "18173374588201121215180272", - "49498976529270719647691600", - "41893152831218448481792663" + "1048740298622097064115216568", + "142608238041349601899555075", + "470366938818100412327935308" ] }, { "type": "redeemBassets", "inputQtys": [ - "336688356846184075100160", - "296662885039644866510848", - "212320167098296081317888" + "687203146129325312", + "49658728925295904", + "193741171667174656" ], - "expectedQty": "847518566916924271936855", - "swapFee": "508816430008159458837", + "expectedQty": "924189598847169182", + "swapFee": "554846667308686", "reserves": [ - "17836686231354937140080112", - "49202313644231074781180752", - "41680832664120152400474775" + "1048740297934893917985891256", + "142608237991690872974259171", + "470366938624359240660760652" ], - "mAssetSupply": "108629934530032968070212967" + "mAssetSupply": "1655333026268390258691577781" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "82712233090287241527296", - "expectedQty": "82846104374938743819776", - "swapFee": "49627339854172344916", + "type": "redeemMasset", + "inputQty": "3633282702374828", + "expectedQtys": [ + "2301184602932899", + "312916250251920", + "1032096467564417" + ], + "redemptionFee": "1089984810712", "reserves": [ - "17836686231354937140080112", - "49202313644231074781180752", - "41597986559745213656654999" + "1048740297932592733382958357", + "142608237991377956724007251", + "470366938623327144193196235" ], - "mAssetSupply": "108547271924282535001030587" + "mAssetSupply": "1655333026264758065974013665" }, { - "type": "redeemMasset", - "inputQty": "43808411881314216574976", - "expectedQtys": [ - "7196518752647779053925", - "19851522206626216451778", - "16783425265582878203221" + "type": "redeemBassets", + "inputQtys": [ + "110288767047930157727744", + "810373757395424721764352", + "1009820116016331430559744" ], - "redemptionFee": "13142523564394264972", + "expectedQty": "1971013287318007313856468", + "swapFee": "1183317963168705611680", "reserves": [ - "17829489712602289361026187", - "49182462122024448564728974", - "41581203134479630778451778" + "1048630009165544803225230613", + "141797864233982532002242899", + "469357118507310812762636491" ], - "mAssetSupply": "108503476654924785178720583" + "mAssetSupply": "1653362012977440058660157197" }, { - "type": "redeemMasset", - "inputQty": "54515390839293889740", - "expectedQtys": [ - "8955381298591189963", - "24703326264852597146", - "20885372207833674031" - ], - "redemptionFee": "16354617251788166", + "type": "redeem", + "inputIndex": 2, + "inputQty": "744327887161262642036736", + "expectedQty": "744164677576707312896031", + "swapFee": "446596732296757585222", "reserves": [ - "17829480757220990769836224", - "49182437418698183712131828", - "41581182249107422944777747" + "1048630009165544803225230613", + "141797864233982532002242899", + "468612953829734105449740460" ], - "mAssetSupply": "108503422155888563136619009" + "mAssetSupply": "1652618131687011092775705683" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "21301184074551243309056", - "expectedQty": "21517678897223147105335", + "inputQty": "15600331546388948", + "expectedQty": "15797352944455685", + "swapFee": "9360198927833", "reserves": [ - "17850781941295542013145280", - "49182437418698183712131828", - "41581182249107422944777747" - ] + "1048630009149747450280774928", + "141797864233982532002242899", + "468612953829734105449740460" + ], + "mAssetSupply": "1652618131671420121428244568" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "338320697138169118720", - "expectedQty": "341754770107663722434", + "inputIndex": 1, + "inputQty": "2115293009769382383976448", + "expectedQty": "2224798891486020204318630", "reserves": [ - "17851120261992680182264000", - "49182437418698183712131828", - "41581182249107422944777747" + "1048630009149747450280774928", + "143913157243751914386219347", + "468612953829734105449740460" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "13564718845147086848", - "20232401894215892992", - "4082787937240507904" - ], - "expectedQty": "37934951169520171637", - "reserves": [ - "17851133826711525329350848", - "49182457651100077928024820", - "41581186331895360185285651" + "1436860734526671462334464", + "362563035391095656677376", + "2216648252827773316366336" ], - "mAssetSupply": "108525319524507063467618415" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "132441220255022432", - "outputIndex": 1, - "expectedQty": "134193699064929358", - "swapFee": "80271309701389", + "expectedQty": "4015421834190317479123271", + "swapFee": "2410699520226326283243", "reserves": [ - "17851133959152745584373280", - "49182457516906378863095462", - "41581186331895360185285651" + "1047193148415220778818440464", + "143550594208360818729541971", + "466396305576906332133374124" ], - "mAssetSupply": "108525319524587334777319804", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1650827508728715824153439927" }, { - "type": "redeemMasset", - "inputQty": "40219013922087179282022", - "expectedQtys": [ - "6613568353180743426430", - "18221337944679594160469", - "15405184827002830109839" + "type": "mintMulti", + "inputQtys": [ + "48529964372193827618816000", + "24006839956198413568049152", + "691802810665628843638784" ], - "redemptionFee": "12065704176626153784", + "expectedQty": "73720192066218039624502004", "reserves": [ - "17844520390799564840946850", - "49164236178961699268934993", - "41565781147068357355175812" + "1095723112787414606437256464", + "167557434164559232297591123", + "467088108387571960977012908" ], - "mAssetSupply": "108485112576369424224191566" + "mAssetSupply": "1724547700794933863777941931" }, { "type": "redeemMasset", - "inputQty": "41906636375002500300", + "inputQty": "13020953640440364321996", "expectedQtys": [ - "6891079046713401069", - "18985920067383296952", - "16051598880209712397" - ], - "redemptionFee": "12571990912500750", - "reserves": [ - "17844513499720518127545781", - "49164217193041631885638041", - "41565765095469477145463415" - ], - "mAssetSupply": "108485070682305040134192016" - }, - { - "type": "mintMulti", - "inputQtys": [ - "345665696643993703546880", - "134759552780262375948288", - "526995230233680836296704" + "8270620545800518364891", + "1264739185867558110288", + "3525624732056599789117" ], - "expectedQty": "1009238655734160996322545", + "redemptionFee": "3906286092132109296", "reserves": [ - "18190179196364511831092661", - "49298976745821894261586329", - "42092760325703157981760119" + "1095714842166868805918891573", + "167556169425373364739480835", + "467084582762839904377223791" ], - "mAssetSupply": "109494309338039201130514561" + "mAssetSupply": "1724534683747579515545729231" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "2559616308846112704299008", - "outputIndex": 2, - "expectedQty": "2553354520487386685311004", - "swapFee": "1530066340594877912533", + "inputQty": "28557266941151100", + "expectedQty": "29716929170340425", "reserves": [ - "18190179196364511831092661", - "51858593054668006965885337", - "39539405805215771296449115" - ], - "mAssetSupply": "109495839404379796008427094", - "hardLimitError": false, - "insufficientLiquidityError": false + "1095714842166868805918891573", + "167556169453930631680631935", + "467084582762839904377223791" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2601328456322350592", - "50781418766052212736", - "17839210075370000384" - ], - "expectedQty": "71014469848027510105", - "swapFee": "42634262466296283", - "reserves": [ - "18190176595036055508742069", - "51858542273249240913672601", - "39539387966005695926448731" - ], - "mAssetSupply": "109495768389909947980916989" - }, - { - "type": "mintMulti", - "inputQtys": [ - "133479499604758974431232", - "219901191340438872653824", - "5332682100908439371776" + "122670101436299986599936", + "186455163489444316577792", + "311053142313738264641536" ], - "expectedQty": "359147162338702801589594", + "expectedQty": "626567359645640537586506", + "swapFee": "376166115456658317542", "reserves": [ - "18323656094640814483173301", - "52078443464589679786326425", - "39544720648106604365820507" + "1095592172065432505932291637", + "167369714290441187364054143", + "466773529620526166112582255" ], - "mAssetSupply": "109854915552248650782506583" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "32850460934383935160320", - "expectedQty": "33174202598012616495506", - "reserves": [ - "18356506555575198418333621", - "52078443464589679786326425", - "39544720648106604365820507" - ] + "mAssetSupply": "1723908116417650804178483150" }, { "type": "mint", "inputIndex": 2, - "inputQty": "2544341987045511", - "expectedQty": "2540237298620615", + "inputQty": "431611315537412992", + "expectedQty": "431986706012857723", "reserves": [ - "18356506555575198418333621", - "52078443464589679786326425", - "39544720650650946352866018" + "1095592172065432505932291637", + "167369714290441187364054143", + "466773530052137481649995247" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "14754537905043843072", - "expectedQty": "14769512246157284719", - "swapFee": "8852722743026305", + "type": "redeemMasset", + "inputQty": "437594562445321440539443", + "expectedQtys": [ + "278020240705293938246735", + "42472162032776621151148", + "118449631613655377794988" + ], + "redemptionFee": "131278368733596432161", "reserves": [ - "18356506555575198418333621", - "52078443464589679786326425", - "39544705881138700195581299" + "1095314151824727211994044902", + "167327242128408410742902995", + "466655080420523826272200259" ], - "mAssetSupply": "109888075011701718396805937" + "mAssetSupply": "1723470653565560922347233591" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "478493571861029524078592", - "outputIndex": 2, - "expectedQty": "477015977168153644032915", - "swapFee": "285938704824510090017", + "type": "mint", + "inputIndex": 0, + "inputQty": "33849971132952130088861696", + "expectedQty": "33438490483990653210129316", "reserves": [ - "18356506555575198418333621", - "52556937036450709310405017", - "39067689903970546551548384" - ], - "mAssetSupply": "109888360950406542906895954", - "hardLimitError": false, - "insufficientLiquidityError": false + "1129164122957679342082906598", + "167327242128408410742902995", + "466655080420523826272200259" + ] }, { - "type": "redeemMasset", - "inputQty": "13605393295400222326784", - "expectedQtys": [ - "2272056520012221429188", - "6505177393313542980081", - "4835560584438802570745" - ], - "redemptionFee": "4081617988620066698", + "type": "mint", + "inputIndex": 1, + "inputQty": "2396443247868866933555200", + "expectedQty": "2497892478661625619012254", "reserves": [ - "18354234499055186196904433", - "52550431859057395767424936", - "39062854343386107748977639" - ], - "mAssetSupply": "109874759638729131304635868" + "1129164122957679342082906598", + "169723685376277277676458195", + "466655080420523826272200259" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "8532314017180717940736", - "expectedQty": "8519468459979357364696", + "inputQty": "151995497743214572470272", + "expectedQty": "152194074144989320933619", "reserves": [ - "18354234499055186196904433", - "52550431859057395767424936", - "39071386657403288466918375" + "1129164122957679342082906598", + "169723685376277277676458195", + "466807075918267040844670531" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1505865206356533099626496", - "expectedQty": "1488891073110680507101525", - "swapFee": "903519123813919859775", + "inputQty": "6852332177841358500790272", + "expectedQty": "6932765747782270477369654", + "swapFee": "4111399306704815100474", "reserves": [ - "16865343425944505689802908", - "52550431859057395767424936", - "39071386657403288466918375" + "1122231357209897071605536944", + "169723685376277277676458195", + "466807075918267040844670531" ], - "mAssetSupply": "108378317419956391482233843" + "mAssetSupply": "1752711009823823536811618982" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "514394058618525586554880", - "outputIndex": 2, - "expectedQty": "512659453327845604800728", - "swapFee": "307238248261625420220", + "type": "redeem", + "inputIndex": 0, + "inputQty": "716010318854759829733376", + "expectedQty": "724373452330821537051132", + "swapFee": "429606191312855897840", "reserves": [ - "16865343425944505689802908", - "53064825917675921353979816", - "38558727204075442862117647" + "1121506983757566250068485812", + "169723685376277277676458195", + "466807075918267040844670531" ], - "mAssetSupply": "108378624658204653107654063", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1751995429111160089837783446" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "456895309585624776835072", - "expectedQty": "456092895932908581038001", + "inputIndex": 1, + "inputQty": "1249852275931163863810048", + "expectedQty": "1301010595824006165094431", "reserves": [ - "16865343425944505689802908", - "53064825917675921353979816", - "39015622513661067638952719" + "1121506983757566250068485812", + "170973537652208441540268243", + "466807075918267040844670531" ] }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "722456564424275840", - "expectedQty": "723323444682593144", - "swapFee": "433473938654565", - "reserves": [ - "16865343425944505689802908", - "53064825917675921353979816", - "39015621790337622956359575" - ], - "mAssetSupply": "108834716832114471203070789" - }, { "type": "redeemBassets", "inputQtys": [ - "53334048621787904737280", - "49132367661842955239424", - "43153062853883946074112" + "776701247956848256", + "312388998557732160", + "357142079070905600" ], - "expectedQty": "145955645787346701765061", - "swapFee": "87625963050238163957", + "expectedQty": "1450006777406292326", + "swapFee": "870526382273139", "reserves": [ - "16812009377322717785065628", - "53015693550014078398740392", - "38972468727483739010285463" + "1121506982980865002111637556", + "170973537339819442982536083", + "466807075561124961773764931" ], - "mAssetSupply": "108688761186327124501305728" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1733840233743565778321408", - "expectedQty": "1752592271868662564636121", - "reserves": [ - "18545849611066283563387036", - "53015693550014078398740392", - "38972468727483739010285463" - ] + "mAssetSupply": "1753296438256977318596585551" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "479138959979047419904", - "expectedQty": "477171175570577392413", + "type": "redeemMasset", + "inputQty": "1063403867732366343326924", + "expectedQtys": [ + "680008841013196045235291", + "103667225202074991663183", + "283041428404994616366159" + ], + "redemptionFee": "319021160319709902998", "reserves": [ - "18545849611066283563387036", - "53016172688974057446160296", - "38972468727483739010285463" - ] + "1120826974139851806066402265", + "170869870114617367990872900", + "466524034132719967157398772" + ], + "mAssetSupply": "1752233353410405271963161625" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2942993894465345566015488", + "inputQty": "19032077577623464574976", "outputIndex": 1, - "expectedQty": "2975402463671329902624190", - "swapFee": "1780423267769127792944", + "expectedQty": "18057617080236711132154", + "swapFee": "11281622127779610967", "reserves": [ - "21488843505531629129402524", - "50040770225302727543536106", - "38972468727483739010285463" + "1120846006217429429530977241", + "170851812497537131279740746", + "466524034132719967157398772" ], - "mAssetSupply": "110443611052639126771127206", + "mAssetSupply": "1752233364692027399742772592", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "100008412588303680798720", - "expectedQty": "99900842774855436001917", + "type": "redeemMasset", + "inputQty": "718983851384620884741324", + "expectedQtys": [ + "459772330295381422429023", + "70083611425157701689180", + "191368699288021136260041" + ], + "redemptionFee": "215695155415386265422", "reserves": [ - "21488843505531629129402524", - "50040770225302727543536106", - "39072477140072042691084183" - ] + "1120386233887134048108548218", + "170781728886111973578051566", + "466332665433431946021138731" + ], + "mAssetSupply": "1751514596535798194244296690" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2267940053886747484880896", + "inputQty": "1011658671039524503552", "outputIndex": 2, - "expectedQty": "2280959327462805834361750", - "swapFee": "1368616294722584683343", + "expectedQty": "997629652782432217567", + "swapFee": "599678917472583232", "reserves": [ - "23756783559418376614283420", - "50040770225302727543536106", - "36791517812609236856722433" + "1120387245545805087633051770", + "170781728886111973578051566", + "466331667803779163588921164" ], - "mAssetSupply": "110544880511708704791812466", + "mAssetSupply": "1751514597135477111716879922", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "90129880348174430731501568", + "expectedQty": "89796282116590325224247074", + "swapFee": "54077928208904658438900", + "reserves": [ + "1120387245545805087633051770", + "170781728886111973578051566", + "376535385687188838364674090" + ], + "mAssetSupply": "1661438794715511585643817254" + }, { "type": "mintMulti", "inputQtys": [ - "141397422460723533971456", - "111013221303825821859840", - "192630027367917115408384" + "38945062484762012155904", + "23495080746100927234048", + "1894085045566572068864" ], - "expectedQty": "445324778355065732335000", + "expectedQty": "64747730362027252026626", "reserves": [ - "23898180981879100148254876", - "50151783446606553365395946", - "36984147839977153972130817" + "1120426190608289849645207674", + "170805223966858074505285614", + "376537279772234404936742954" ], - "mAssetSupply": "110990205290063770524147466" + "mAssetSupply": "1661503542445873612895843880" }, { "type": "swap", "inputIndex": 2, - "inputQty": "5014444289231401517056", - "outputIndex": 0, - "expectedQty": "4985670283805453773525", - "swapFee": "3007496421686325632", + "inputQty": "6635972518036316880896", + "outputIndex": 1, + "expectedQty": "6414978121887827292589", + "swapFee": "4002901102891013109", "reserves": [ - "23893195311595294694481351", - "50151783446606553365395946", - "36989162284266385373647873" + "1120426190608289849645207674", + "170798808988736186677993025", + "376543915744752441253623850" ], - "mAssetSupply": "110990208297560192210473098", + "mAssetSupply": "1661503546448774715786856989", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "14102859330551732502528", - "20082574415280511909888", - "18635308082941581590528" + "type": "redeemMasset", + "inputQty": "6533870452928687164620", + "expectedQtys": [ + "4404759400767330558358", + "671465613566703256676", + "1480316478301866972054" ], - "expectedQty": "52823332525713223713076", - "swapFee": "31713027331827030446", + "redemptionFee": "1960161135878606149", "reserves": [ - "23879092452264742961978823", - "50131700872191272853486058", - "36970526976183443792057345" + "1120421785848889082314649316", + "170798137523122619974736349", + "376542435428274139386651796" ], - "mAssetSupply": "110937384965034478986760022" + "mAssetSupply": "1661497014538482922978298518" }, { "type": "mint", "inputIndex": 2, - "inputQty": "894747941868243188187136", - "expectedQty": "894331856370400248030199", + "inputQty": "228354583884048371810304", + "expectedQty": "229575585061761183885557", "reserves": [ - "23879092452264742961978823", - "50131700872191272853486058", - "37865274918051686980244481" + "1120421785848889082314649316", + "170798137523122619974736349", + "376770790012158187758462100" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "625497448733109387264", - "308798833784534728704", - "657255415661756022784" + "1665783939912269884817408", + "692744108921016429838336", + "1779566127480996483825664" ], - "expectedQty": "1593393228311261499402", - "swapFee": "956609902928514008", - "reserves": [ - "23878466954816009852591559", - "50131392073357488318757354", - "37864617662636025224221697" - ], - "mAssetSupply": "111830123428176567973290819" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "57175227199292596224", - "expectedQty": "57144402191253362129", - "reserves": [ - "23878466954816009852591559", - "50131392073357488318757354", - "37864674837863224516817921" - ] - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "4208738009589759688572928", - "outputIndex": 1, - "expectedQty": "4212393786630084591846533", - "swapFee": "2523058589761987668983", + "expectedQty": "4152482660174423164335188", "reserves": [ - "23878466954816009852591559", - "45918998286727403726910821", - "42073412847452984205390849" + "1122087569788801352199466724", + "171490881632043636404574685", + "378550356139639184242287764" ], - "mAssetSupply": "111832703631168521214321931", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1665879072783719107326519263" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "42134500739027509968896", - "outputIndex": 0, - "expectedQty": "41846230486264705683324", - "swapFee": "25245376137778189052", - "reserves": [ - "23836620724329745146908235", - "45918998286727403726910821", - "42115547348192011715359745" + "type": "mintMulti", + "inputQtys": [ + "4649360472750", + "9394378308608", + "483472591905" ], - "mAssetSupply": "111832728876544658992510983", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "989113068345860428922880", - "expectedQty": "990525980657601801431751", - "swapFee": "593467841007516257353", + "expectedQty": "14835767749217", "reserves": [ - "23836620724329745146908235", - "44928472306069801925479070", - "42115547348192011715359745" + "1122087569788806001559939474", + "171490881632053030782883293", + "378550356139639667714879669" ], - "mAssetSupply": "110844209276039806079845456" + "mAssetSupply": "1665879072783733943094268480" }, { - "type": "redeemBassets", - "inputQtys": [ - "3671642489945672646656", - "64058568085130243473408", - "6852903056359635812352" + "type": "redeemMasset", + "inputQty": "1708195816211383677511270", + "expectedQtys": [ + "1150245717023396275632082", + "175794347443811295093262", + "388049861303833578682345" ], - "expectedQty": "74464889007180203015239", - "swapFee": "44705756858423175714", + "redemptionFee": "512458744863415103253", "reserves": [ - "23832949081839799474261579", - "44864413737984671682005662", - "42108694445135652079547393" + "1120937324071782605284307392", + "171315087284609219487790031", + "378162306278335834136197324" ], - "mAssetSupply": "110769744387032625876830217" + "mAssetSupply": "1664171389426267422831860463" }, { "type": "mintMulti", "inputQtys": [ - "912332396822658929393664", - "866701977554499879829504", - "505251349882258436653056" + "15686063543155423182848", + "2447882447167553536000", + "20270690887077180997632" ], - "expectedQty": "2286104787176620263845507", + "expectedQty": "38398195704249161387039", "reserves": [ - "24745281478662458403655243", - "45731115715539171561835166", - "42613945795017910516200449" + "1120953010135325760707490240", + "171317535167056387041326031", + "378182576969222911317194956" ], - "mAssetSupply": "113055849174209246140675724" + "mAssetSupply": "1664209787621971671993247502" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "424979553798045433856", - "expectedQty": "422826713005212552567", - "swapFee": "254987732278827260", + "type": "swap", + "inputIndex": 2, + "inputQty": "1222483849388308400439296", + "outputIndex": 0, + "expectedQty": "1244701017267328490789985", + "swapFee": "737329340924240712596", "reserves": [ - "24744858651949453191102676", - "45731115715539171561835166", - "42613945795017910516200449" + "1119708309118058432216700255", + "171317535167056387041326031", + "379405060818611219717634252" ], - "mAssetSupply": "113055424449643180374069128" + "mAssetSupply": "1664210524951312596233960098", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "7304384230415478554624", - "expectedQty": "7313997825824127338438", - "swapFee": "4382630538249287132", + "type": "mintMulti", + "inputQtys": [ + "337524177086802821120", + "287877000608664420352", + "62924926426996170752" + ], + "expectedQty": "695421208925577633865", "reserves": [ - "24744858651949453191102676", - "45723801717713347434496728", - "42613945795017910516200449" + "1119708646642235519019521375", + "171317823044056995705746383", + "379405123743537646713805004" ], - "mAssetSupply": "113048124448043303144801636" + "mAssetSupply": "1664211220372521521811593963" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "472866321548923200", - "expectedQty": "473227240009372519", - "swapFee": "283719792929353", + "inputIndex": 1, + "inputQty": "5356938634143122747031552", + "expectedQty": "5146205508879074979654730", + "swapFee": "3214163180485873648218", "reserves": [ - "24744858651949453191102676", - "45723801717713347434496728", - "42613945321790670506827930" + "1119708646642235519019521375", + "166171617535177920726091653", + "379405123743537646713805004" ], - "mAssetSupply": "113048123975460701388807789" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "97608513761887376", - "expectedQty": "97475549774672852", - "reserves": [ - "24744858651949453191102676", - "45723801717713347434496728", - "42613945419399184268715306" - ] + "mAssetSupply": "1658857495901558884938210629" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1068207691045060227366912", - "expectedQty": "1072747035716650079951065", + "inputQty": "171502767141003781472256", + "expectedQty": "173771863497935473893345", + "swapFee": "102901660284602268883", "reserves": [ - "25813066342994513418469588", - "45723801717713347434496728", - "42613945419399184268715306" - ] + "1119534874778737583545628030", + "166171617535177920726091653", + "379405123743537646713805004" + ], + "mAssetSupply": "1658686096036078165759007256" }, { "type": "mintMulti", "inputQtys": [ - "67306099874714336886784", - "92909881590532154589184", - "32282659291420906487808" + "30735791274010819428352", + "33685571133821794910208", + "36044540778068278509568" ], - "expectedQty": "192563965283913560183061", + "expectedQty": "101631535727543503105806", "reserves": [ - "25880372442869227755356372", - "45816711599303879589085912", - "42646228078690605175203114" + "1119565610570011594365056382", + "166205303106311742521001861", + "379441168284315714992314572" ], - "mAssetSupply": "114313435073936814803614767" + "mAssetSupply": "1658787727571805709262113062" }, { - "type": "redeemMasset", - "inputQty": "270102186572630212162355", - "expectedQtys": [ - "61132342651213753554279", - "108224211951486296011380", - "100735174250038539704826" + "type": "redeemBassets", + "inputQtys": [ + "925181082646263034281984", + "367386876648295728414720", + "2242219365378823517372416" ], - "redemptionFee": "81030655971789063648", + "expectedQty": "3549049097496280867528019", + "swapFee": "2130707883227705143602", "reserves": [ - "25819240100218014001802093", - "45708487387352393293074532", - "42545492904440566635498288" + "1118640429487365331330774398", + "165837916229663446792587141", + "377198948918936891474942156" ], - "mAssetSupply": "114043413918020156380516060" + "mAssetSupply": "1655238678474309428394585043" }, { "type": "mintMulti", "inputQtys": [ - "70866754752872892596224", - "75808017779453824335872", - "150859079214873010241536" + "3033609136041473479802880", + "19030665255206439780089856", + "30156573534191839405408256" ], - "expectedQty": "297498463431650979704284", + "expectedQty": "53032773046488031228348703", "reserves": [ - "25890106854970886894398317", - "45784295405131847117410404", - "42696351983655439645739824" + "1121674038623406804810577278", + "184868581484869886572676997", + "407355522453128730880350412" ], - "mAssetSupply": "114340912381451807360220344" + "mAssetSupply": "1708271451520797459622933746" }, { - "type": "redeemMasset", - "inputQty": "20647078753339157617049", - "expectedQtys": [ - "4673696383159947690500", - "8265006283641773166515", - "7707569032370410336583" + "type": "redeemBassets", + "inputQtys": [ + "2744230075864820438007808", + "2790437461841669794037760", + "761546353726895119400960" ], - "redemptionFee": "6194123626001747285", + "expectedQty": "6361766890898709793351665", + "swapFee": "3819351745586577822704", "reserves": [ - "25885433158587726946707817", - "45776030398848205344243889", - "42688644414623069235403241" + "1118929808547541984372569470", + "182078144023028216778639237", + "406593976099401835760949452" ], - "mAssetSupply": "114320271496822094204350580" + "mAssetSupply": "1701909684629898749829582081" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1024620891988494208", - "1448719707575254016", - "2360527031173020672" + "321551366149271808", + "37668843650608432", + "796198511622080000" ], - "expectedQty": "4832506460161040219", - "swapFee": "2901244622870346", + "expectedQty": "1155876731174311714", "reserves": [ - "25885432133966834958213609", - "45776028950128497768989873", - "42688642054096038062382569" + "1118929808869093350521841278", + "182078144060697060429247669", + "406593976895600347383029452" ], - "mAssetSupply": "114320266664315634043310361" + "mAssetSupply": "1701909685785775481003893795" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "27261737461193211904", - "expectedQty": "27213437429527419764", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3510112565998848137232384", + "expectedQty": "3551005929599368746230671", + "swapFee": "2106067539599308882339", "reserves": [ - "25885432133966834958213609", - "45776056211865958962201777", - "42688642054096038062382569" - ] + "1115378802939493981775610607", + "182078144060697060429247669", + "406593976895600347383029452" + ], + "mAssetSupply": "1698401679287316232175543750" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1061300679939782656", - "expectedQty": "1065551766976119410", + "inputIndex": 2, + "inputQty": "278040376438950138478592", + "expectedQty": "279088799562278351805004", "reserves": [ - "25885433195267514897996265", - "45776056211865958962201777", - "42688642054096038062382569" + "1115378802939493981775610607", + "182078144060697060429247669", + "406872017272039297521508044" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "72908499893889789853696", - "expectedQty": "72779012740784283060301", + "inputIndex": 2, + "inputQty": "25270717982377246669668352", + "expectedQty": "25351514832127132239735002", "reserves": [ - "25885433195267514897996265", - "45848964711759848752055473", - "42688642054096038062382569" + "1115378802939493981775610607", + "182078144060697060429247669", + "432142735254416544191176396" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "46958707745431945740288", - "40558752078660403986432", - "16883415786010758348800" - ], - "expectedQty": "104496719888595755070010", - "swapFee": "62735673337159748891", - "reserves": [ - "25838474487522082952255977", - "45808405959681188348069041", - "42671758638310027304033769" - ], - "mAssetSupply": "114288577236157019074839826" - }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3141969643469961877782528", - "expectedQty": "3152774107565610385014061", + "inputIndex": 2, + "inputQty": "1428656420578856995389440", + "expectedQty": "1432412769246920776668116", "reserves": [ - "28980444130992044830038505", - "45808405959681188348069041", - "42671758638310027304033769" + "1115378802939493981775610607", + "182078144060697060429247669", + "433571391674995401186565836" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "2320946666272570872954880", - "487063325530314778869760", - "1041806937326275914629120" - ], - "expectedQty": "3855506334066164918759057", - "swapFee": "2314692616009304533975", + "type": "redeem", + "inputIndex": 2, + "inputQty": "21637244118208984", + "expectedQty": "21568174717999469", + "swapFee": "12982346470925", "reserves": [ - "26659497464719473957083625", - "45321342634150873569199281", - "41629951700983751389404649" + "1115378802939493981775610607", + "182078144060697060429247669", + "433571391653427226468566367" ], - "mAssetSupply": "113585845009656464541094830" + "mAssetSupply": "1725464695666628301772013813" }, { "type": "swap", "inputIndex": 2, - "inputQty": "254099435782038320316416", - "outputIndex": 1, - "expectedQty": "254103240143176416631799", - "swapFee": "152300972036456874906", + "inputQty": "2287729797123824961978368", + "outputIndex": 0, + "expectedQty": "2319217901770432065611717", + "swapFee": "1376144428977261177750", "reserves": [ - "26659497464719473957083625", - "45067239394007697152567482", - "41884051136765789709721065" + "1113059585037723549709998890", + "182078144060697060429247669", + "435859121450551051430544735" ], - "mAssetSupply": "113585997310628500997969736", + "mAssetSupply": "1725466071811057279033191563", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "11292016152434141184", - "1049240520215486529536", - "1716303601833165455360" + "129648110391723556864", + "27712753428720697344", + "124544319365986500608" ], - "expectedQty": "2773316177687321650215", - "swapFee": "1664988699832292365", + "expectedQty": "281670237837010408264", + "swapFee": "169103604865125320", "reserves": [ - "26659486172703321522942441", - "45066190153487481666037946", - "41882334833163956544265705" + "1113059455389613157986442026", + "182078116347943631708550325", + "435858996906231685444044127" ], - "mAssetSupply": "113583223994450813676319521" + "mAssetSupply": "1725465790140819442022783299" }, { - "type": "redeemMasset", - "inputQty": "6168840581931851776", - "expectedQtys": [ - "1447474168963516395", - "2446864343828290554", - "2273997233636044511" - ], - "redemptionFee": "1850652174579555", + "type": "mint", + "inputIndex": 0, + "inputQty": "58484413867491239147864064", + "expectedQty": "57779031229563948858214301", "reserves": [ - "26659484725229152559426046", - "45066187706623137837747392", - "41882332559166722908221194" - ], - "mAssetSupply": "113583217827460883919047300" + "1171543869257104397134306090", + "182078116347943631708550325", + "435858996906231685444044127" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "8197618000784347187118080", - "315157109575820498698240", - "7433874438215801258377216" - ], - "expectedQty": "15959886602339338504697936", + "type": "redeem", + "inputIndex": 1, + "inputQty": "895822245383712001753088", + "expectedQty": "862124932780878977790004", + "swapFee": "537493347230227201051", "reserves": [ - "34857102726013499746544126", - "45381344816198958336445632", - "49316206997382524166598410" + "1171543869257104397134306090", + "181215991415162752730760321", + "435858996906231685444044127" ], - "mAssetSupply": "129543104429800222423745236" + "mAssetSupply": "1782349536618346909106445563" }, { "type": "redeemBassets", "inputQtys": [ - "10479959297862258", - "115075270760466592", - "126990621216416688" - ], - "expectedQty": "252362586194864458", - "swapFee": "151508456790993", - "reserves": [ - "34857102715533540448681868", - "45381344701123687575979040", - "49316206870391902950181722" + "81821564172450140258304", + "122852186216004738613248", + "18696894406965300559872" ], - "mAssetSupply": "129543104177437636228880778" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "417174482906789445632", - "outputIndex": 0, - "expectedQty": "415904818590934500651", - "swapFee": "250179078274004338", + "expectedQty": "227155885711562966717344", + "swapFee": "136375356640922333430", "reserves": [ - "34856686810714949514181217", - "45381761875606594365424672", - "49316206870391902950181722" + "1171462047692931946994047786", + "181093139228946747992147073", + "435840300011824720143484255" ], - "mAssetSupply": "129543104427616714502885116", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1782122380732635346139728219" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "798210026646519364452352", - "outputIndex": 1, - "expectedQty": "797108753537998650420361", - "swapFee": "478355710959774795926", - "reserves": [ - "34856686810714949514181217", - "44584653122068595715004311", - "50114416897038422314634074" + "type": "redeemMasset", + "inputQty": "32880102934000985702", + "expectedQtys": [ + "21606954600825859073", + "3340160481977940592", + "8038827714574229238" ], - "mAssetSupply": "129543582783327674277681042", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "13625979728409287137951744", - "expectedQty": "13624346164424122883890670", - "swapFee": "8175587837045572282771", + "redemptionFee": "9864030880200295", "reserves": [ - "34856686810714949514181217", - "44584653122068595715004311", - "36490070732614299430743404" + "1171462026085977346168188713", + "181093135888786266014206481", + "435840291972997005569255017" ], - "mAssetSupply": "115925778642755432712012069" + "mAssetSupply": "1782122347862396443018942812" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1661875094787271950336", - "1091270562715855093760", - "582093342318121189376" + "1136078477021911842816", + "348501634352120463360", + "13976734482230282240" ], - "expectedQty": "3335661394482730007952", - "swapFee": "2002598395727074249", + "expectedQty": "1497828522008281532877", "reserves": [ - "34855024935620162242230881", - "44583561851505879859910551", - "36489488639271981309554028" + "1171463162164454368080031529", + "181093484390420618134669841", + "435840305949731487799537257" ], - "mAssetSupply": "115922442981360949982004117" + "mAssetSupply": "1782123845690918451300475689" }, { "type": "redeemBassets", "inputQtys": [ - "1745753169493960349974528", - "174924828367830063775744", - "1544425566273396531003392" - ], - "expectedQty": "3467315345567389293862476", - "swapFee": "2081638190254586328114", - "reserves": [ - "33109271766126201892256353", - "44408637023138049796134807", - "34945063072998584778550636" + "8158056088569508622499840", + "7307604042988938342694912", + "16213924756145869667958784" ], - "mAssetSupply": "112455127635793560688141641" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "15872147908106381164544", - "expectedQty": "15853939130511115743074", - "swapFee": "9523288744863828698", + "expectedQty": "31924054151432722928069158", + "swapFee": "19165932050089687569383", "reserves": [ - "33109271766126201892256353", - "44408637023138049796134807", - "34929209133868073662807562" + "1163305106075884859457531689", + "173785880347431679791974929", + "419626381193585618131578473" ], - "mAssetSupply": "112439265011174199170805795" + "mAssetSupply": "1750199791539485728372406531" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2418298409955877204262912", - "outputIndex": 2, - "expectedQty": "2416450807251591858968056", - "swapFee": "1452169579604592917594", + "inputQty": "1061413248764765202808832", + "outputIndex": 1, + "expectedQty": "1005013921437745371416710", + "swapFee": "628473263521264128253", "reserves": [ - "35527570176082079096519265", - "44408637023138049796134807", - "32512758326616481803839506" + "1164366519324649624660340521", + "172780866425993934420558219", + "419626381193585618131578473" ], - "mAssetSupply": "112440717180753803763723389", + "mAssetSupply": "1750200420012749249636534784", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "18034845129385", - "23046546837872", - "9381807568379" - ], - "expectedQty": "50449599310068", - "swapFee": "30287932345", - "reserves": [ - "35527570176064044251389880", - "44408637023115003249296935", - "32512758326607099996271127" - ], - "mAssetSupply": "112440717180703354164413321" - }, - { - "type": "redeemMasset", - "inputQty": "37725655550663696003891", - "expectedQtys": [ - "11916490914926932998623", - "14895336692256311274685", - "10905276868026756433292" + "269492528706572959875072", + "205835825050798205698048", + "871786028972520968814592" ], - "redemptionFee": "11317696665199108801", + "expectedQty": "1355500972807989017823885", + "swapFee": "813788856998992806378", "reserves": [ - "35515653685149117318391257", - "44393741686422746938022250", - "32501853049739073239837835" + "1164097026795943051700465449", + "172575030600943136214860171", + "418754595164613097162763881" ], - "mAssetSupply": "112403002842849355667518231" + "mAssetSupply": "1748844919039941260618710899" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1111613359773642522624", - "expectedQty": "1112050522089537013334", + "inputIndex": 2, + "inputQty": "1959463595818508544", + "expectedQty": "1966990224407527613", "reserves": [ - "35516765298508890960913881", - "44393741686422746938022250", - "32501853049739073239837835" + "1164097026795943051700465449", + "172575030600943136214860171", + "418754597124076692981272425" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "24224326559057500438528", - "71640534700778097475584", - "106212486687842856075264" - ], - "expectedQty": "202117337239398561073752", - "swapFee": "121343208268600296822", - "reserves": [ - "35492540971949833460475353", - "44322101151721968840546666", - "32395640563051230383762571" - ], - "mAssetSupply": "112201997556132046643457813" - }, - { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "19725973646637071859712", - "expectedQty": "19741709162862084839237", - "swapFee": "11835584187982243115", + "inputQty": "341526552474351378104320", + "outputIndex": 0, + "expectedQty": "360366999571878731882731", + "swapFee": "213488964539470135347", "reserves": [ - "35492540971949833460475353", - "44302359442559106755707429", - "32395640563051230383762571" + "1163736659796371172968582718", + "172916557153417487592964491", + "418754597124076692981272425" ], - "mAssetSupply": "112182283418069597553841216" + "mAssetSupply": "1748845134495896024496373859", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 2, - "inputQty": "200508678364337895636992", - "outputIndex": 1, - "expectedQty": "200906592562551598627373", - "swapFee": "120451350403395086175", + "inputIndex": 0, + "inputQty": "1893035649586123667144704", + "outputIndex": 2, + "expectedQty": "1859576927592864755695703", + "swapFee": "1120787333557423477688", "reserves": [ - "35492540971949833460475353", - "44101452849996555157080056", - "32596149241415568279399563" + "1165629695445957296635727422", + "172916557153417487592964491", + "416895020196483828225576722" ], - "mAssetSupply": "112182403869420000948927391", + "mAssetSupply": "1748846255283229581919851547", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "644774233151706507509760", - "980157866094605037993984", - "74502518588485228560384" - ], - "expectedQty": "1698478531242969135379422", - "swapFee": "1019698938108646669229", - "reserves": [ - "34847766738798126952965593", - "43121294983901950119086072", - "32521646722827083050839179" - ], - "mAssetSupply": "110483925338177031813547969" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "17676620822514979831808", - "expectedQty": "17653739741848415798923", - "reserves": [ - "34847766738798126952965593", - "43138971604724465098917880", - "32521646722827083050839179" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "86427976459415868932096", - "24812158357368261836800", - "32936975423773188554752" - ], - "expectedQty": "144215849861064874495272", + "type": "swap", + "inputIndex": 0, + "inputQty": "68080870923632265163440128", + "outputIndex": 2, + "expectedQty": "66613695126014527455249435", + "swapFee": "40283718890510035691404", "reserves": [ - "34934194715257542821897689", - "43163783763081833360754680", - "32554583698250856239393931" + "1233710566369589561799167550", + "172916557153417487592964491", + "350281325070469300770327287" ], - "mAssetSupply": "110645794927779945103842164" + "mAssetSupply": "1748886539002120091955542951", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "222813895155690227367936", - "expectedQty": "222584654480265929849509", - "swapFee": "133688337093414136420", + "inputQty": "299553981610509929021440", + "expectedQty": "304185229657102338750218", + "swapFee": "179732388966305957412", "reserves": [ - "34711610060777276892048180", - "43163783763081833360754680", - "32554583698250856239393931" + "1233406381139932459460417332", + "172916557153417487592964491", + "350281325070469300770327287" ], - "mAssetSupply": "110423114720961348290610648" + "mAssetSupply": "1748587164752898548332478923" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "53533694424423182893056", - "85373106836666104938496", - "57734836820381920133120" + "3261341921146775634182144", + "4127971201043418402783232", + "2389289396979025882120192" ], - "expectedQty": "196614333326170246762638", + "expectedQty": "9946497475703968618477462", + "swapFee": "5971481374246929328683", "reserves": [ - "34765143755201700074941236", - "43249156869918499465693176", - "32612318535071238159527051" + "1230145039218785683826235188", + "168788585952374069190181259", + "347892035673490274888207095" ], - "mAssetSupply": "110619729054287518537373286" + "mAssetSupply": "1738640667277194579714001461" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "6227879279940606099456", - "expectedQty": "6217660083359300122386", - "swapFee": "3736727567964363659", + "inputQty": "438888554975500224", + "expectedQty": "434293291123246562", + "swapFee": "263333132985300", "reserves": [ - "34765143755201700074941236", - "43249156869918499465693176", - "32606100874987878859404665" + "1230145039218785683826235188", + "168788585952374069190181259", + "347892035239196983764960533" ], - "mAssetSupply": "110613504911735145895637489" + "mAssetSupply": "1738640666838569357871486537" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "1877345020393520365568", - "outputIndex": 2, - "expectedQty": "1875105698497378510260", - "swapFee": "1126913647877040738", + "inputQty": "2385438845504038371328", + "expectedQty": "2346923864532759169176", "reserves": [ - "34767021100222093595306804", - "43249156869918499465693176", - "32604225769289381480894405" - ], - "mAssetSupply": "110613506038648793772678227", - "hardLimitError": false, - "insufficientLiquidityError": false + "1230147424657631187864606516", + "168788585952374069190181259", + "347892035239196983764960533" + ] }, { "type": "redeemBassets", "inputQtys": [ - "12787927802672224256", - "1547288090295555328", - "11769645747578574848" + "65286871719442250727424", + "282340741831570535481344", + "317766962839533712834560" ], - "expectedQty": "26120870530897978099", - "swapFee": "15681931477425242", + "expectedQty": "681264244423755870743068", + "swapFee": "409003949023667723079", "reserves": [ - "34767008312294290923082548", - "43249155322630409170137848", - "32604213999643633902319557" + "1230082137785911745613879092", + "168506245210542498654699915", + "347574268276357450052125973" ], - "mAssetSupply": "110613479917778262874700128" + "mAssetSupply": "1737961749518010134759912645" }, { - "type": "redeemMasset", - "inputQty": "288723646575699148", - "expectedQtys": [ - "90721727683519344", - "112855211943399582", - "85078088895123140" + "type": "redeemBassets", + "inputQtys": [ + "110812651349879314972672", + "236521364614309168021504", + "42624557107640639946752" ], - "redemptionFee": "86617093972709", + "expectedQty": "400144973810272940330882", + "swapFee": "240231122959939728035", "reserves": [ - "34767008221572563239563204", - "43249155209775197226738266", - "32604213914565545007196417" + "1229971325134561866298906420", + "168269723845928189486678411", + "347531643719249809412179221" ], - "mAssetSupply": "110613479629141233392973689" + "mAssetSupply": "1737561604544199861819581763" }, { "type": "redeemBassets", "inputQtys": [ - "498782406559390760960", - "389003948285190799360", - "609803602253140328448" - ], - "expectedQty": "1497941950048368064110", - "swapFee": "899304752880749288", - "reserves": [ - "34766509439166003848802244", - "43248766205826912035938906", - "32603604110963291866867969" + "4632065929746646984294400", + "3956903031492694920658944", + "987286209348256707641344" ], - "mAssetSupply": "110611981687191185024909579" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "263053620293274048", - "expectedQty": "263240023708776897", - "swapFee": "157832172175964", + "expectedQty": "9707980136011550499206544", + "swapFee": "5828285052638513407568", "reserves": [ - "34766509439166003848802244", - "43248765942586888327162009", - "32603604110963291866867969" + "1225339259204815219314612020", + "164312820814435494566019467", + "346544357509901552704537877" ], - "mAssetSupply": "110611981424295396903811495" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "1253353161648691075874816", - "expectedQty": "1251622688887203689932213", - "reserves": [ - "34766509439166003848802244", - "44502119104235579403036825", - "32603604110963291866867969" - ] + "mAssetSupply": "1727853624408188311320375219" }, { - "type": "redeemMasset", - "inputQty": "127096999262064135372", - "expectedQtys": [ - "39489103214995537983", - "50547173211856948428", - "37032394355594161774" + "type": "redeemBassets", + "inputQtys": [ + "2892954250980359369916416", + "946832345751452716630016", + "4463646116478710215344128" ], - "redemptionFee": "38129099778619240", + "expectedQty": "8349396002937032821445884", + "swapFee": "5012645188875545019879", "reserves": [ - "34766469950062788853264261", - "44502068557062367546088397", - "32603567078568936272706195" + "1222446304953834859944695604", + "163365988468684041849389451", + "342080711393422842489193749" ], - "mAssetSupply": "111863477054312438308227576" + "mAssetSupply": "1719504228405251278498929335" }, { - "type": "mintMulti", - "inputQtys": [ - "499253069286363136", - "432708576229267392", - "185520751994102080" - ], - "expectedQty": "1117335080016493881", + "type": "redeem", + "inputIndex": 2, + "inputQty": "5418291491694272577536", + "expectedQty": "5359569561443834806349", + "swapFee": "3250974895016563546", "reserves": [ - "34766470449315858139627397", - "44502068989770943775355789", - "32603567264089688266808275" + "1222446304953834859944695604", + "163365988468684041849389451", + "342075351823861398654387400" ], - "mAssetSupply": "111863478171647518324721457" + "mAssetSupply": "1719498813364734479242915345" }, { "type": "mintMulti", "inputQtys": [ - "616973880693970842943488", - "76182480940870588694528", - "3066281979445175371431936" + "4976265825561302007808", + "32962138456547661971456", + "1306713555947182882816" ], - "expectedQty": "3762414037254811503690725", + "expectedQty": "40866929956602829062876", "reserves": [ - "35383444330009828982570885", - "44578251470711814364050317", - "35669849243534863638240211" + "1222451281219660421246703412", + "163398950607140589511360907", + "342076658537417345837270216" ], - "mAssetSupply": "115625892208902329828412182" + "mAssetSupply": "1719539680294691082071978221" }, { - "type": "mintMulti", - "inputQtys": [ - "84632720321547832655872", - "162453361586903269244928", - "133962821567904273661952" - ], - "expectedQty": "380999502099696649844531", + "type": "redeem", + "inputIndex": 2, + "inputQty": "4192490797957008", + "expectedQty": "4147053799609043", + "swapFee": "2515494478774", "reserves": [ - "35468077050331376815226757", - "44740704832298717633295245", - "35803812065102767911902163" + "1222451281219660421246703412", + "163398950607140589511360907", + "342076658533270292037661173" ], - "mAssetSupply": "116006891711002026478256713" + "mAssetSupply": "1719539680290501106768499987" }, { - "type": "redeemBassets", - "inputQtys": [ - "221305412614603784847360", - "49973932866603992481792", - "92189691038174388682752" + "type": "redeemMasset", + "inputQty": "91931647702885121340211", + "expectedQtys": [ + "65336233422592732728691", + "8733167645931328365321", + "18282937531916462710088" ], - "expectedQty": "363626612024999278913631", - "swapFee": "218306951385831065987", + "redemptionFee": "27579494310865536402", "reserves": [ - "35246771637716773030379397", - "44690730899432113640813453", - "35711622374064593523219411" + "1222385944986237828513974721", + "163390217439494658182995586", + "342058375595738375574951085" ], - "mAssetSupply": "115643265098977027199343082" + "mAssetSupply": "1719447776222292532512696178" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2099259720287434", - "35536235337708972", - "102571823141457" + "15844420960046480422338560", + "22833544035143080522809344", + "778293805002742002876416" ], - "expectedQty": "37696796402111198", + "expectedQty": "40529495979403313743662780", + "swapFee": "24332296965821481134878", "reserves": [ - "35246771639816032750666831", - "44690730934968348978522425", - "35711622374167165346360868" + "1206541524026191348091636161", + "140556673404351577660186242", + "341280081790735633572074669" ], - "mAssetSupply": "115643265136673823601454280" + "mAssetSupply": "1678918280242889218769033398" }, { - "type": "mintMulti", - "inputQtys": [ - "1395313107909537538506752", - "600047767672060827926528", - "616500913525707751030784" - ], - "expectedQty": "2612483931420293638666177", + "type": "swap", + "inputIndex": 1, + "inputQty": "3258925435469598002511872", + "outputIndex": 0, + "expectedQty": "3536250590618729409117721", + "swapFee": "2084411426446850677387", "reserves": [ - "36642084747725570289173583", - "45290778702640409806448953", - "36328123287692873097391652" + "1203005273435572618682518440", + "143815598839821175662698114", + "341280081790735633572074669" ], - "mAssetSupply": "118255749068094117240120457" + "mAssetSupply": "1678920364654315665619710785", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "819697296471881368469504", - "expectedQty": "818731650037137822807890", + "inputIndex": 2, + "inputQty": "8546702757838266543636480", + "expectedQty": "8629090980152357276326651", "reserves": [ - "36642084747725570289173583", - "46110475999112291174918457", - "36328123287692873097391652" + "1203005273435572618682518440", + "143815598839821175662698114", + "349826784548573900115711149" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3707010329690601684992000", - "outputIndex": 2, - "expectedQty": "3694533738220908411979604", - "swapFee": "2221042229877169897822", + "type": "mint", + "inputIndex": 2, + "inputQty": "8075403590684300952993792", + "expectedQty": "8146986730008529171346741", "reserves": [ - "36642084747725570289173583", - "49817486328802892859910457", - "32633589549471964685412048" - ], - "mAssetSupply": "119076701760361132232826169", - "hardLimitError": false, - "insufficientLiquidityError": false + "1203005273435572618682518440", + "143815598839821175662698114", + "357902188139258201068704941" + ] }, { "type": "mintMulti", "inputQtys": [ - "257695129877904544", - "458893096625164736", - "70584616435475424" + "537336056182151446528", + "1463745967741488070656", + "1056890094482415681536" ], - "expectedQty": "786574654131163870", + "expectedQty": "3151128869665450712956", "reserves": [ - "36642085005420700167078127", - "49817486787695989485075193", - "32633589620056581120887472" + "1203005810771628800833964968", + "143817062585788917150768770", + "357903245029352683484386477" ], - "mAssetSupply": "119076702546935786363990039" + "mAssetSupply": "1695699593493346217518097133" }, { - "type": "redeemMasset", - "inputQty": "2421685890818472778137", - "expectedQtys": [ - "744973598397656090860", - "1012843903120339559129", - "663476510255610253899" - ], - "redemptionFee": "726505767245541833", + "type": "mint", + "inputIndex": 0, + "inputQty": "13109163552709842804146176", + "expectedQty": "12875560483424065850671453", "reserves": [ - "36641340031822302510987267", - "49816473943792869145516064", - "32632926143546325510633573" - ], - "mAssetSupply": "119074281587550735136753735" + "1216114974324338643638111144", + "143817062585788917150768770", + "357903245029352683484386477" + ] }, { "type": "redeemMasset", - "inputQty": "73037762746569993696051", + "inputQty": "42511392369755586507571", "expectedQtys": [ - "22468316447859724779782", - "30547253455075954977279", - "20010373817552997642534" + "30249316863639591888370", + "3577266943014525692483", + "8902389078329317793628" ], - "redemptionFee": "21911328823970998108", + "redemptionFee": "12753417710926675952", "reserves": [ - "36618871715374442786207485", - "49785926690337793190538785", - "32612915769728772512991039" + "1216084725007475004046222774", + "143813485318845902625076287", + "357894342640274354166592849" ], - "mAssetSupply": "119001265736132989114055792" + "mAssetSupply": "1708532655337818238708936967" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "199730582455320508891136", - "outputIndex": 1, - "expectedQty": "200328315127726255183897", - "swapFee": "120043963100641788897", + "type": "redeemBassets", + "inputQtys": [ + "20185435384184932461969408", + "3162041091967357533814784", + "12258143319381830151438336" + ], + "expectedQty": "35560719575424185335069422", + "swapFee": "21349241290028528318032", "reserves": [ - "36618871715374442786207485", - "49585598375210066935354888", - "32812646352184093021882175" + "1195899289623290071584253366", + "140651444226878545091261503", + "345636199320892524015154513" ], - "mAssetSupply": "119001385780096089755844689", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1672971935762394053373867545" }, { - "type": "redeemMasset", - "inputQty": "2813115174141994572185", - "expectedQtys": [ - "865386558957187940849", - "1171819565749757830122", - "775436865933633004553" - ], - "redemptionFee": "843934552242598371", + "type": "mint", + "inputIndex": 2, + "inputQty": "5369613708073996631670784", + "expectedQty": "5419006852063912571702658", "reserves": [ - "36618006328815485598266636", - "49584426555644317177524766", - "32811870915318159388877622" - ], - "mAssetSupply": "118998573508856500003870875" + "1195899289623290071584253366", + "140651444226878545091261503", + "351005813028966520646825297" + ] }, { "type": "mintMulti", "inputQtys": [ - "2211667335185934751629312", - "2115109171608236725370880", - "959966447139252984610816" + "8179248283516767232", + "2857391206226857472", + "7511247644695044096" ], - "expectedQty": "5285637201330317918778107", + "expectedQty": "18656289486564672927", "reserves": [ - "38829673664001420349895948", - "51699535727252553902895646", - "33771837362457412373488438" + "1195899297802538355101020598", + "140651447084269751318118975", + "351005820540214165341869393" ], - "mAssetSupply": "124284210710186817922648982" + "mAssetSupply": "1678390961270747452510243130" }, { "type": "mintMulti", "inputQtys": [ - "996483538287114846208", - "1551801336458044768256", - "3395042399749096865792" + "4898529669396190573101056", + "5509595840696841232449536", + "3269461573095356587048960" ], - "expectedQty": "5947102977967803972388", + "expectedQty": "13971539419231644675181241", "reserves": [ - "38830670147539707464742156", - "51701087528589011947663902", - "33775232404857161470354230" + "1200797827471934545674121654", + "146161042924966592550568511", + "354275282113309521928918353" ], - "mAssetSupply": "124290157813164785726621370" + "mAssetSupply": "1692362500689979097185424371" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "135780462086135709696", - "expectedQty": "135840972572082241840", + "inputIndex": 2, + "inputQty": "45542714827751649443840", + "expectedQty": "45941238534558586953622", "reserves": [ - "38830805928001793600451852", - "51701087528589011947663902", - "33775232404857161470354230" + "1200797827471934545674121654", + "146161042924966592550568511", + "354320824828137273578362193" ] }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3511381422426750976000", - "expectedQty": "3515796415812868802975", - "swapFee": "2106828853456050585", - "reserves": [ - "38830805928001793600451852", - "51697571732173199078860927", - "33775232404857161470354230" - ], - "mAssetSupply": "124286784379543784513937795" - }, { "type": "mintMulti", "inputQtys": [ - "33809091546573965361152", - "17902673065449176956928", - "40945251961478328614912" + "137581519712856794202112", + "118904452722231678599168", + "69287315095985858805760" ], - "expectedQty": "92713673565761326507527", + "expectedQty": "331311606042653901043233", "reserves": [ - "38864615019548367565813004", - "51715474405238648255817855", - "33816177656818639798969142" + "1200935408991647402468323766", + "146279947377688824229167679", + "354390112143233259437167953" ], - "mAssetSupply": "124379498053109545840445322" + "mAssetSupply": "1692739753534556309673421226" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "377187908766327464001536", - "outputIndex": 1, - "expectedQty": "378315190993363825220720", - "swapFee": "226716098729701593330", + "type": "redeemBassets", + "inputQtys": [ + "1191207046263236722688", + "973104991169431863296", + "238000359593944416256" + ], + "expectedQty": "2443583657779538845655", + "swapFee": "1467030412915472590", "reserves": [ - "38864615019548367565813004", - "51337159214245284430597135", - "34193365565584967262970678" + "1200934217784601139231601078", + "146278974272697654797304383", + "354389874142873665492751697" ], - "mAssetSupply": "124379724769208275542038652", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1692737309950898530134575571" }, { - "type": "mintMulti", - "inputQtys": [ - "828125809969666850816", - "562401665706681630720", - "59526380425560260608" - ], - "expectedQty": "1449528320369274675035", + "type": "redeem", + "inputIndex": 1, + "inputQty": "50000061520163453435641856", + "expectedQty": "45866350493898738915507324", + "swapFee": "30000036912098072061385", "reserves": [ - "38865443145358337232663820", - "51337721615910991112227855", - "34193425091965392823231286" + "1200934217784601139231601078", + "100412623778798915881797059", + "354389874142873665492751697" ], - "mAssetSupply": "124381174297528644816713687" + "mAssetSupply": "1642767248467647174770995100" }, { - "type": "redeemBassets", - "inputQtys": [ - "19438302545403487191040", - "13099033215284979695616", - "19757402010564717182976" + "type": "redeemMasset", + "inputQty": "38359314774809588531", + "expectedQtys": [ + "28033912669425288399", + "2343974119677881690", + "8272671921179169512" ], - "expectedQty": "52314009104288577500786", - "swapFee": "31407249812460622874", + "redemptionFee": "11507794432442876", "reserves": [ - "38846004842812933745472780", - "51324622582695706132532239", - "34173667689954828106048310" + "1200934189750688469806312679", + "100412621434824796203915369", + "354389865870201744313582185" ], - "mAssetSupply": "124328860288424356239212901" + "mAssetSupply": "1642767210119840194393849445" }, { "type": "mint", "inputIndex": 1, - "inputQty": "9808429519757859880960", - "expectedQty": "9790921211795527842508", + "inputQty": "11423192043494974685184", + "expectedQty": "12902606013668505300231", "reserves": [ - "38846004842812933745472780", - "51334431012215463992413199", - "34173667689954828106048310" + "1200934189750688469806312679", + "100424044626868291178600553", + "354389865870201744313582185" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "18669383199880743223296", - "outputIndex": 0, - "expectedQty": "18681564185864100651816", - "swapFee": "11220799770574304531", - "reserves": [ - "38827323278627069644820964", - "51334431012215463992413199", - "34192337073154708849271606" - ], - "mAssetSupply": "124338662430435922341359940", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "285252324375205773312", - "outputIndex": 1, - "expectedQty": "285722102381315668266", - "swapFee": "171229957793890712", + "inputQty": "28513408295471998069374976", + "expectedQty": "28733379599392645631063570", "reserves": [ - "38827608530951444850594276", - "51334145290113082676744933", - "34192337073154708849271606" - ], - "mAssetSupply": "124338662601665880135250652", - "hardLimitError": false, - "insufficientLiquidityError": false + "1200934189750688469806312679", + "100424044626868291178600553", + "382903274165673742382957161" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2051218806072002442428416", - "489334651068333250576384", - "2963848778269071843000320" + "2228595606420974645280768", + "4370001463468536612519936", + "19472844865699035817705472" ], - "expectedQty": "5510171526430826657298152", - "swapFee": "3308087768519607759034", + "expectedQty": "26747512975211216158318331", + "swapFee": "16058142670729167195308", "reserves": [ - "36776389724879442408165860", - "50844810639044749426168549", - "31228488294885637006271286" + "1198705594144267495161031911", + "96054043163399754566080617", + "363430429299974706565251689" ], - "mAssetSupply": "118828491075235053477952500" + "mAssetSupply": "1644765979350035292371894915" }, { "type": "mintMulti", "inputQtys": [ - "67347365994381557760", - "45298170976698474496", - "46595192445876420608" - ], - "expectedQty": "159280108373672669145", - "reserves": [ - "36776457072245436789723620", - "50844855937215726124643045", - "31228534890078082882691894" + "4440128238223039639060480", + "2977737003448680337899520", + "2413635689525319976353792" ], - "mAssetSupply": "118828650355343427150621645" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "790267238995437329317888", - "outputIndex": 0, - "expectedQty": "790927626542341974283608", - "swapFee": "475147385300747807106", + "expectedQty": "10149521483861261305415843", "reserves": [ - "35985529445703094815440012", - "50844855937215726124643045", - "32018802129073520212009782" + "1203145722382490534800092391", + "99031780166848434903980137", + "365844064989500026541605481" ], - "mAssetSupply": "118829125502728727898428751", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1654915500833896553677310758" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7553353603699160645632", - "6619067470713191399424", - "22833993930940853780480" - ], - "expectedQty": "37041537943558046638359", - "swapFee": "22238265725570170085", - "reserves": [ - "35977976092099395654794380", - "50838236869745012933243621", - "31995968135142579358229302" + "2991512738250306472640512", + "3845299350394128172056576", + "3198265628675162144505856" ], - "mAssetSupply": "118792083964785169851790392" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "138165853482431209799680", - "expectedQty": "137816872767618568241378", - "swapFee": "82899512089458725879", + "expectedQty": "10484367668679628141083947", "reserves": [ - "35977976092099395654794380", - "50838236869745012933243621", - "31858151262374960789987924" + "1206137235120740841272732903", + "102877079517242563076036713", + "369042330618175188686111337" ], - "mAssetSupply": "118654001010814828100716591" + "mAssetSupply": "1665399868502576181818394705" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1556888066542077980180480", - "expectedQty": "1554638362751375763287123", - "swapFee": "934132839925246788108", + "inputQty": "5175874599986571767709696", + "expectedQty": "5296835019846884273026734", + "swapFee": "3105524759991943060625", "reserves": [ - "34423337729348019891507257", - "50838236869745012933243621", - "31858151262374960789987924" + "1200840400100893956999706169", + "102877079517242563076036713", + "369042330618175188686111337" ], - "mAssetSupply": "117098047077112675367324219" + "mAssetSupply": "1660227099427349601993745634" }, { "type": "mintMulti", "inputQtys": [ - "2520396599972132864", - "995094850994506240", - "1594432080673775360" + "522688334582292348928", + "709426859665579835392", + "454779857089810137088" ], - "expectedQty": "5113086310141612202", + "expectedQty": "1765681317701560100948", "reserves": [ - "34423340249744619863640121", - "50838237864839863927749861", - "31858152856807041463763284" + "1200840922789228539292055097", + "102877788944102228655872105", + "369042785398032278496248425" ], - "mAssetSupply": "117098052190198985508936421" + "mAssetSupply": "1660228865108667303553846582" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1096552533661149852336128", + "expectedQty": "1230437058803110558259826", + "reserves": [ + "1200840922789228539292055097", + "103974341477763378508208233", + "369042785398032278496248425" + ] }, { "type": "mintMulti", "inputQtys": [ - "156808926251567657517056", - "280377902763305670279168", - "222717183128389931761664" + "1169231803497447969259520", + "3280387054207532550586368", + "1808929258159515958771712" ], - "expectedQty": "659835666222771325573156", + "expectedQty": "6630436849824591040604235", "reserves": [ - "34580149175996187521157177", - "51118615767603169598029029", - "32080870039935431395524948" + "1202010154592725987261314617", + "107254728531970911058794601", + "370851714656191794455020137" ], - "mAssetSupply": "117757887856421756834509577" + "mAssetSupply": "1668089739017295005152710643" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1359907745435860389068800", + "expectedQty": "1512939303220475007224626", + "reserves": [ + "1202010154592725987261314617", + "108614636277406771447863401", + "370851714656191794455020137" + ] }, { "type": "redeemMasset", - "inputQty": "116457855883172485529", + "inputQty": "60929580940320925286", "expectedQtys": [ - "34188129249198952076", - "50539106526356106636", - "31717183340359913690" + "43852351558571353203", + "3962534922225375851", + "13529602645255993320" ], - "redemptionFee": "34937356764951745", + "redemptionFee": "18278874282096277", "reserves": [ - "34580114987866938322205101", - "51118565228496643241922393", - "32080838322752091035611258" + "1202010110740374428689961414", + "108614632314871849222487550", + "370851701126589149199026817" ], - "mAssetSupply": "117757771433503230426975793" + "mAssetSupply": "1669602617409213414121106260" }, { - "type": "mintMulti", - "inputQtys": [ - "14937165991128063803392", - "23527392553205957132288", - "36999217991296172949504" - ], - "expectedQty": "75492428979253325074721", + "type": "swap", + "inputIndex": 2, + "inputQty": "2603445726622662201966592", + "outputIndex": 1, + "expectedQty": "2353729418063881061094937", + "swapFee": "1573543848967709352041", "reserves": [ - "34595052153858066386008493", - "51142092621049849199054681", - "32117837540743387208560762" + "1202010110740374428689961414", + "106260902896807968161392613", + "373455146853211811400993409" ], - "mAssetSupply": "117833263862482483752050514" + "mAssetSupply": "1669604190953062381830458301", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "133154860586361421824", - "outputIndex": 2, - "expectedQty": "132972521526972048659", - "swapFee": "79973555580089587", + "inputQty": "7648717422473868476416", + "outputIndex": 1, + "expectedQty": "6694738263293734429082", + "swapFee": "4485570494381961080", "reserves": [ - "34595185308718652747430317", - "51142092621049849199054681", - "32117704568221860236512103" + "1202017759457796902558437830", + "106254208158544674426963531", + "373455146853211811400993409" ], - "mAssetSupply": "117833263942456039332140101", + "mAssetSupply": "1669604195438632876212419381", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "18637137331898835533824", - "39601153122764261949440", - "12042637778260397654016" + "292948366845977591808", + "1236317159676389621760", + "753883530095266365440" ], - "expectedQty": "70233027683134199977992", + "expectedQty": "2425432777544233761317", + "swapFee": "1456133346534460933", "reserves": [ - "34613822446050551582964141", - "51181693774172613461004121", - "32129747206000120634166119" + "1202017466509430056580846022", + "106252971841384998037341771", + "373454392969681716134627969" ], - "mAssetSupply": "117903496970139173532118093" + "mAssetSupply": "1669601770005855331978658064" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "162186149065793632", - "expectedQty": "162450669786451917", - "swapFee": "97311689439476", + "inputQty": "130419151507652870144000", + "expectedQty": "116776693197280028739359", + "swapFee": "78251490904591722086", "reserves": [ - "34613822446050551582964141", - "51181693611721943674552204", - "32129747206000120634166119" + "1202017466509430056580846022", + "106136195148187718008602412", + "373454392969681716134627969" ], - "mAssetSupply": "117903496808050336155763937" + "mAssetSupply": "1669471429105838583700236150" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "582200251746776759926784", - "expectedQty": "580774761372405458762472", - "swapFee": "349320151048066055956", + "inputQty": "44972222304728891392", + "expectedQty": "44622483848322852219", + "swapFee": "26983333382837334", "reserves": [ - "34613822446050551582964141", - "51181693611721943674552204", - "31548972444627715175403647" + "1202017466509430056580846022", + "106136195148187718008602412", + "373454348347197867811775750" ], - "mAssetSupply": "117321645876454607461893109" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15271164202145070186496", - "expectedQty": "15296830792190648708592", - "swapFee": "9162698521287042111", - "reserves": [ - "34613822446050551582964141", - "51166396780929753025843612", - "31548972444627715175403647" - ], - "mAssetSupply": "117306383874950983678748724" + "mAssetSupply": "1669471384160599612354182092" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "40013081682001885396992", - "expectedQty": "39921924446581837719721", + "inputIndex": 0, + "inputQty": "15783647956015688485699584", + "expectedQty": "15423525953729986105878328", "reserves": [ - "34613822446050551582964141", - "51206409862611754911240604", - "31548972444627715175403647" + "1217801114465445745066545606", + "106136195148187718008602412", + "373454348347197867811775750" ] }, { "type": "redeemBassets", "inputQtys": [ - "1771519704933130043392", - "3582529970653333291008", - "2849371425926715277312" + "69027828347580727689216", + "181198449188797088268288", + "241509531719430741950464" ], - "expectedQty": "8202434519728524319250", - "swapFee": "4924415361053746839", + "expectedQty": "513660755741018804707359", + "swapFee": "308381482334011689838", "reserves": [ - "34612050926345618452920749", - "51202827332641101577949596", - "31546123073201788460126335" + "1217732086637098164338856390", + "105954996698998920920334124", + "373212838815478437069825286" ], - "mAssetSupply": "117338103364877836992149195" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "362585089977774625521664", - "outputIndex": 0, - "expectedQty": "362677084143031694532619", - "swapFee": "217960453438264691533", - "reserves": [ - "34249373842202586758388130", - "51202827332641101577949596", - "31908708163179563085647999" - ], - "mAssetSupply": "117338321325331275256840728", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1684381249358588579655353061" }, { "type": "redeemBassets", "inputQtys": [ - "11803318821448799223808", - "10788863080809216606208", - "13999044600308208500736" + "43973760824999059456", + "38666574690209800192", + "28667354285138452480" ], - "expectedQty": "36604465871373981839447", - "swapFee": "21975865041849498802", + "expectedQty": "115143055601914022955", + "swapFee": "69127309746996611", "reserves": [ - "34237570523381137959164322", - "51192038469560292361343388", - "31894709118579254877147263" + "1217732042663337339339796934", + "105954958032424230710533932", + "373212810148124151931372806" ], - "mAssetSupply": "117301716859459901275001281" + "mAssetSupply": "1684381134215532977741330106" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "6978229350290081972224", + "expectedQty": "7032123293231149910415", + "reserves": [ + "1217732042663337339339796934", + "105954958032424230710533932", + "373219788377474442013345030" + ] }, { "type": "mintMulti", "inputQtys": [ - "9918697980645534072832", - "16745181186993671897088", - "39828399917771501076480" + "346160454995121602560", + "6174174198301806559232", + "442565345939211812864" ], - "expectedQty": "66536452036628710182050", + "expectedQty": "7697290620675877248785", "reserves": [ - "34247489221361783493237154", - "51208783650747286033240476", - "31934537518497026378223743" + "1217732388823792334461399494", + "105961132206622532517093164", + "373220230942820381225157894" ], - "mAssetSupply": "117368253311496529985183331" + "mAssetSupply": "1684395863629446884768489306" }, { - "type": "redeemMasset", - "inputQty": "2140566519780219027456", - "expectedQtys": [ - "624419585683296211138", - "933667494976547660257", - "582248542583662577510" - ], - "redemptionFee": "642169955934065708", + "type": "mint", + "inputIndex": 0, + "inputQty": "31667504920507658240", + "expectedQty": "30937239304810667253", "reserves": [ - "34246864801776100197026016", - "51207849983252309485580219", - "31933955269954442715646233" - ], - "mAssetSupply": "117366113387146705700221583" + "1217732420491297254969057734", + "105961132206622532517093164", + "373220230942820381225157894" + ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "3967057544328721823956992", - "outputIndex": 0, - "expectedQty": "3962599676377437980788215", - "swapFee": "2383471374237244424356", + "inputQty": "7543259636417499758592", + "outputIndex": 1, + "expectedQty": "6784896326325422685921", + "swapFee": "4560906959790475988", "reserves": [ - "30284265125398662216237801", - "51207849983252309485580219", - "35901012814283164539603225" + "1217732420491297254969057734", + "105954347310296207094407243", + "373227774202456798724916486" ], - "mAssetSupply": "117368496858520942944645939", + "mAssetSupply": "1684395899127593149369632547", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "107567931109200025878528", - "outputIndex": 0, - "expectedQty": "106997309584586520582943", - "swapFee": "64391694842596739810", + "type": "redeemBassets", + "inputQtys": [ + "81931043262721343619072", + "79576699390469026611200", + "51382344800288213303296" + ], + "expectedQty": "220928035839973459453525", + "swapFee": "132636403345991670674", "reserves": [ - "30177267815814075695654858", - "51315417914361509511458747", - "35901012814283164539603225" + "1217650489448034533625438662", + "105874770610905738067796043", + "373176391857656510511613190" ], - "mAssetSupply": "117368561250215785541385749", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1684174971091753175910179022" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "137584363012917", - "expectedQty": "137169272847524", - "swapFee": "82550617807", + "type": "redeemMasset", + "inputQty": "350826846881828629485977", + "expectedQtys": [ + "253570046938643342848893", + "22047928191278566052058", + "77712246674851663901590" + ], + "redemptionFee": "105248054064548588845", "reserves": [ - "30177267815676906422807334", - "51315417914361509511458747", - "35901012814283164539603225" + "1217396919401095890282589769", + "105852722682714459501743985", + "373098679610981658847711600" ], - "mAssetSupply": "117368561250078283728990639" + "mAssetSupply": "1683824249492925411829281890" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3858443124939728879616", - "expectedQty": "3853868509732840186183", - "swapFee": "2315065874963837327", + "type": "mint", + "inputIndex": 0, + "inputQty": "147673731977193868754944", + "expectedQty": "144265677218117321610299", "reserves": [ - "30177267815676906422807334", - "51315417914361509511458747", - "35897158945773431699417042" - ], - "mAssetSupply": "117364705122019218963948350" + "1217544593133073084151344713", + "105852722682714459501743985", + "373098679610981658847711600" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "88375857524790712598528", - "2919456436885573425168384", - "2111053066805887056740352" + "137995911712570446184448", + "106533950271443827687424", + "75055967525692996845568" ], - "expectedQty": "5113169132088718616486110", + "expectedQty": "329762475802454200711024", + "swapFee": "197976271244219051857", "reserves": [ - "30265643673201697135405862", - "54234874351247082936627131", - "38008212012579318756157394" + "1217406597221360513705160265", + "105746188732443015674056561", + "373023623643455965850866032" ], - "mAssetSupply": "122477874254107937580434460" + "mAssetSupply": "1683638752694341074950181165" }, { - "type": "redeemBassets", - "inputQtys": [ - "5833973775255701815296", - "3088638917165726564352", - "2776759977055644286976" - ], - "expectedQty": "11709762668081739821682", - "swapFee": "7030075646236785964", + "type": "redeem", + "inputIndex": 1, + "inputQty": "591691019275866873004032", + "expectedQty": "527658156235005827502224", + "swapFee": "355014611565520123802", "reserves": [ - "30259809699426441433590566", - "54231785712329917210062779", - "38005435252602263111870418" + "1217406597221360513705160265", + "105218530576208009846554337", + "373023623643455965850866032" ], - "mAssetSupply": "122466164491439855840612778" + "mAssetSupply": "1683047416689676773597300935" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "102194210934514211880960", - "78252795619071055888384", - "70020301941399948886016" + "15518927347663092318208", + "5813393035696496705536", + "4218890998926223081472" ], - "expectedQty": "250598029970163467995057", + "expectedQty": "25928789005702861936327", + "swapFee": "15566613371444583912", "reserves": [ - "30362003910360955645471526", - "54310038507948988265951163", - "38075455554543663060756434" + "1217391078294012850612842057", + "105212717183172313349848801", + "373019404752457039627784560" ], - "mAssetSupply": "122716762521410019308607835" + "mAssetSupply": "1683021487900671070735364608" }, { "type": "redeemBassets", "inputQtys": [ - "182213814899303050641408", - "168460359767023763324928", - "148739335120596257210368" + "2671052449516664033116160", + "318101501054168837652480", + "1134106363060298562142208" ], - "expectedQty": "499585374014789035291528", - "swapFee": "299931183118744667975", + "expectedQty": "4108649496528436766920198", + "swapFee": "2466669699736904202673", "reserves": [ - "30179790095461652594830118", - "54141578148181964502626235", - "37926716219423066803546066" + "1214720025844496186579725897", + "104894615682118144512196321", + "371885298389396741065642352" ], - "mAssetSupply": "122217177147395230273316307" + "mAssetSupply": "1678912838404142633968444410" }, { - "type": "redeemMasset", - "inputQty": "45763946226847591484620", - "expectedQtys": [ - "11297364080940579674106", - "20267109821571870252175", - "14197312843132364579084" - ], - "redemptionFee": "13729183868054277445", + "type": "redeem", + "inputIndex": 2, + "inputQty": "96904952690831391719424", + "expectedQty": "96099895118929386103756", + "swapFee": "58142971614498835031", "reserves": [ - "30168492731380712015156012", - "54121311038360392632374060", - "37912518906579934438966982" + "1214720025844496186579725897", + "104894615682118144512196321", + "371789198494277811679538596" ], - "mAssetSupply": "122171426930352250736109132" + "mAssetSupply": "1678815991594423417075560017" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2400932055034783858688", - "outputIndex": 1, - "expectedQty": "2412434699785210945852", - "swapFee": "1444737911584569758", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1488345795148716796018688", + "expectedQty": "1475868312292208319855856", + "swapFee": "893007477089230077611", "reserves": [ - "30170893663435746799014700", - "54118898603660607421428208", - "37912518906579934438966982" + "1214720025844496186579725897", + "104894615682118144512196321", + "370313330181985603359682740" ], - "mAssetSupply": "122171428375090162320678890", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1677328538806751789509618940" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "155365876378325", - "160011565050502", - "102049907811312" + "292492753761130676224", + "289279028304715284480", + "345928947309689634816" ], - "expectedQty": "417523719689571", - "swapFee": "250664630592", + "expectedQty": "958777053125246632915", "reserves": [ - "30170893663280380922636375", - "54118898603500595856377706", - "37912518906477884531155670" + "1214720318337249947710402121", + "104894904961146449227480801", + "370313676110932913049317556" ], - "mAssetSupply": "122171428374672638600989319" + "mAssetSupply": "1677329497583804914756251855" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "70340949484178751488", - "expectedQty": "70370315210860858129", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3102548080861758", + "expectedQty": "2764791109384419", + "swapFee": "1861528848517", "reserves": [ - "30170893663280380922636375", - "54118898603500595856377706", - "37912589247427368709907158" - ] + "1214720318337249947710402121", + "104894904958381658118096382", + "370313676110932913049317556" + ], + "mAssetSupply": "1677329497580704228204238614" }, { "type": "swap", "inputIndex": 2, - "inputQty": "78204474119158180610048", - "outputIndex": 1, - "expectedQty": "78383330986296747994938", - "swapFee": "46941958642226077880", + "inputQty": "6641316350664334376960", + "outputIndex": 0, + "expectedQty": "6849348301131585914367", + "swapFee": "4016355151047284159", "reserves": [ - "30170893663280380922636375", - "54040515272514299108382768", - "37990793721546526890517206" + "1214713468988948816124487754", + "104894904958381658118096382", + "370320317427283577383694516" ], - "mAssetSupply": "122171545686946491687925328", + "mAssetSupply": "1677329501597059379251522773", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "25235664458068030128128", - "113339619503359312003072", - "88412863989274462126080" - ], - "expectedQty": "226816752233614520701670", + "type": "redeem", + "inputIndex": 2, + "inputQty": "7632020719364442112", + "expectedQty": "7567499949506752379", + "swapFee": "4579212431618665", "reserves": [ - "30196129327738448952764503", - "54153854892017658420385840", - "38079206585535801352643286" + "1214713468988948816124487754", + "104894904958381658118096382", + "370320309859783627876942137" ], - "mAssetSupply": "122398362439180106208626998" + "mAssetSupply": "1677329493969617872318699326" }, { - "type": "redeemBassets", - "inputQtys": [ - "2176878252135832354816", - "2432712201117710680064", - "671963833594428915712" - ], - "expectedQty": "5282150148739946416868", - "swapFee": "3171192804926924004", + "type": "mint", + "inputIndex": 0, + "inputQty": "110903227654771128139776", + "expectedQty": "108321465420307605412256", "reserves": [ - "30193952449486313120409687", - "54151422179816540709705776", - "38078534621702206923727574" - ], - "mAssetSupply": "122393080289031366262210130" + "1214824372216603587252627530", + "104894904958381658118096382", + "370320309859783627876942137" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "107450123413188704", - "937577728805380096", - "965748082866994688" - ], - "expectedQty": "2009152959581268315", - "swapFee": "1206215505051792", + "type": "mint", + "inputIndex": 1, + "inputQty": "190411319526415761408", + "expectedQty": "213548322177269320501", "reserves": [ - "30193952342036189707220983", - "54151421242238811904325680", - "38078533655954124056732886" - ], - "mAssetSupply": "122393078279878406680941815" + "1214824372216603587252627530", + "104895095369701184533857790", + "370320309859783627876942137" + ] }, { "type": "redeemMasset", - "inputQty": "10346770036807273676", + "inputQty": "371078843866793", "expectedQtys": [ - "2551746902768246307", - "4576437025205393010", - "3218087490429705241" + "268659930840727", + "23197681666638", + "81896800155822" + ], + "redemptionFee": "111323653160", + "reserves": [ + "1214824372216334927321786803", + "104895095369677986852191152", + "370320309859701731076786315" ], - "redemptionFee": "3104031011042182", + "mAssetSupply": "1677438028982989389673218450" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "229048155067192648400896", + "expectedQty": "256820655089466382168092", + "reserves": [ + "1214824372216334927321786803", + "105124143524745179500592048", + "370320309859701731076786315" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "16795938879160661760278528", + "expectedQty": "14722608537733433161564122", + "swapFee": "10077563327496397056167", "reserves": [ - "30193949790289286938974676", - "54151416665801786698932670", - "38078530437866633627027645" + "1214824372216334927321786803", + "90401534987011746339027926", + "370320309859701731076786315" ], - "mAssetSupply": "122393067936212400884710321" + "mAssetSupply": "1660908988322245690692164181" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1563415576250362424721408", + "inputQty": "362661115178157044924416", "outputIndex": 1, - "expectedQty": "1570193351662929402267678", - "swapFee": "940567756994033650563", + "expectedQty": "303382301794819475692753", + "swapFee": "211811905215940180941", "reserves": [ - "31757365366539649363696084", - "52581223314138857296664992", - "38078530437866633627027645" + "1215187033331513084366711219", + "90098152685216926863335173", + "370320309859701731076786315" ], - "mAssetSupply": "122394008503969394918360884", + "mAssetSupply": "1660909200134150906632345122", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "191081334717944602558464", - "173873486968488332361728", - "54893037748415084101632" + "262701803117478810746880", + "705260010125575315259392", + "451374213975808296353792" ], - "expectedQty": "419941948473175702168329", - "swapFee": "252116438947273785572", + "expectedQty": "1532086152609548844317238", + "swapFee": "919803573709955279758", "reserves": [ - "31566284031821704761137620", - "52407349827170368964303264", - "38023637400118218542926013" + "1214924331528395605555964339", + "89392892675091351548075781", + "369868935645725922780432523" ], - "mAssetSupply": "121974066555496219216192555" + "mAssetSupply": "1659377113981541357788027884" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "449917625109447", - "expectedQty": "450107854973097", + "type": "redeemMasset", + "inputQty": "42216464285980019", + "expectedQtys": [ + "30899801062226405", + "2273575833782466", + "9407068600044110" + ], + "redemptionFee": "12664939285794", "reserves": [ - "31566284031821704761137620", - "52407349827170368964303264", - "38023637400568136168035460" - ] + "1214924331497495804493737934", + "89392892672817775714293315", + "369868935636318854180388413" + ], + "mAssetSupply": "1659377113939337558441333659" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "79435281988979232079872", - "expectedQty": "79353543450167109335948", - "swapFee": "47661169193387539247", + "type": "redeemMasset", + "inputQty": "111414372959237037254246", + "expectedQtys": [ + "81548325236143179240353", + "6000242563664229567239", + "24826395748317275540879" + ], + "redemptionFee": "33424311887771111176", "reserves": [ - "31566284031821704761137620", - "52407349827170368964303264", - "37944283857117969058699512" + "1214842783172259661314497581", + "89386892430254111484726076", + "369844109240570536904847534" ], - "mAssetSupply": "121894678935126541226625027" + "mAssetSupply": "1659265732990690209175190589" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "140187662618075", - "expectedQty": "139775712308907", - "swapFee": "84112597570", + "type": "swap", + "inputIndex": 1, + "inputQty": "11309869261870665728", + "outputIndex": 2, + "expectedQty": "13072105969237418687", + "swapFee": "7911638688984633", "reserves": [ - "31566284031681929048828713", - "52407349827170368964303264", - "37944283857117969058699512" + "1214842783172259661314497581", + "89386903740123373355391804", + "369844096168464567667428847" ], - "mAssetSupply": "121894678934986437676604522" + "mAssetSupply": "1659265732998601847864175222", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "83100377566252023939072", - "expectedQty": "83136037965658970588008", + "type": "redeemBassets", + "inputQtys": [ + "93763056551993565773824", + "111440314851127482908672", + "16130951431517087203328" + ], + "expectedQty": "237452746222470666928440", + "swapFee": "142557182042708024972", "reserves": [ - "31566284031681929048828713", - "52407349827170368964303264", - "38027384234684221082638584" - ] + "1214749020115707667748723757", + "89275463425272245872483132", + "369827965217033050580225519" + ], + "mAssetSupply": "1659028280252379377197246782" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "70619315736094189813760", - "expectedQty": "70648714840408834751799", - "reserves": [ - "31566284031681929048828713", - "52407349827170368964303264", - "38098003550420315272452344" - ] + "type": "swap", + "inputIndex": 0, + "inputQty": "10369842116115464164737024", + "outputIndex": 1, + "hardLimitError": true }, { "type": "mint", "inputIndex": 1, - "inputQty": "1878037831696110657208320", - "expectedQty": "1873800050488754635729716", + "inputQty": "10736049177564301569818624", + "expectedQty": "12334703069797990587823222", "reserves": [ - "31566284031681929048828713", - "54285387658866479621511584", - "38098003550420315272452344" + "1214749020115707667748723757", + "100011512602836547442301756", + "369827965217033050580225519" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "866832181164712320", - "4456795404481521664", - "4599460760324767232" - ], - "expectedQty": "9917253726308299990", - "swapFee": "5953924590539303", + "type": "swap", + "inputIndex": 2, + "inputQty": "1936870676454915440640", + "outputIndex": 1, + "expectedQty": "1721637791313976970211", + "swapFee": "1171430004417295161", "reserves": [ - "31566283164849747884116393", - "54285383202071075139989920", - "38097998950959554947685112" + "1214749020115707667748723757", + "100009790965045233465331545", + "369829902087709505495666159" ], - "mAssetSupply": "123922253821027533809374055" + "mAssetSupply": "1671362984493607372202365165", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1479013641871319688544256", - "expectedQty": "1482470260288126410070404", + "inputIndex": 2, + "inputQty": "77223764509305099318722560", + "expectedQty": "77584090646526906303371299", "reserves": [ - "33045296806721067572660649", - "54285383202071075139989920", - "38097998950959554947685112" + "1214749020115707667748723757", + "100009790965045233465331545", + "447053666597014604814388719" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8991741604290801696768", - "74029335831016554496", - "20551039994451292323840" + "159328812160753", + "180263254860851", + "109668656203713" ], - "expectedQty": "29649745624982100890752", - "swapFee": "17800527691604223068", + "expectedQty": "470128274291266", "reserves": [ - "33036305065116776770963881", - "54285309172735244123435424", - "38077447910965103655361272" + "1214749020115866996560884510", + "100009790965225496720192396", + "447053666597124273470592432" ], - "mAssetSupply": "125375074335690678118553707" + "mAssetSupply": "1748947075140604406780027730" }, { "type": "redeemMasset", - "inputQty": "118888988141187743350784", + "inputQty": "6460918550947567432944844", "expectedQtys": [ - "31317824583998990759496", - "51461499305351091214158", - "36096737571936714305350" + "4486150594258301783999655", + "369342947177269790996505", + "1650999538883139349932339" + ], + "redemptionFee": "1938275565284270229883", + "reserves": [ + "1210262869521608694776884855", + "99640448018048226929195891", + "445402667058241134120660093" ], - "redemptionFee": "35666696442356323005", + "mAssetSupply": "1742488094865222123617312769" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "4637689511229137503649792", + "expectedQty": "4740460886502890649030242", + "swapFee": "2782613706737482502189", "reserves": [ - "33004987240532777780204385", - "54233847673429893032221266", - "38041351173393166941055922" + "1205522408635105804127854613", + "99640448018048226929195891", + "445402667058241134120660093" ], - "mAssetSupply": "125256221014245932731525928" + "mAssetSupply": "1737853187967699723596165166" }, { "type": "mintMulti", "inputQtys": [ - "346654137320589688832", - "1121875060883624427520", - "1102903311329197686784" + "19189840068581173231616", + "8795056019686233735168", + "11420078956174093844480" ], - "expectedQty": "2570426400229064191398", + "expectedQty": "40171829506704403245553", "reserves": [ - "33005333894670098369893217", - "54234969548490776656648786", - "38042454076704496138742706" + "1205541598475174385301086229", + "99649243074067913162931059", + "445414087137197308214504573" ], - "mAssetSupply": "125258791440646161795717326" + "mAssetSupply": "1737893359797206427999410719" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1356185366684218043662336", - "expectedQty": "1358297611427728394670949", - "swapFee": "813711220010530826197", + "inputQty": "1172738337417862144", + "expectedQty": "1034085227496321185", + "swapFee": "703643002450717", "reserves": [ - "33005333894670098369893217", - "52876671937063048261977837", - "38042454076704496138742706" + "1205541598475174385301086229", + "99649242039982685666609874", + "445414087137197308214504573" ], - "mAssetSupply": "123903419785181954282881187" + "mAssetSupply": "1737893358625171733583999292" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "8101402030395676958916608", - "expectedQty": "8070349448141062185904432", - "swapFee": "4860841218237406175349", + "type": "redeemMasset", + "inputQty": "111926136786810490060", + "expectedQtys": [ + "77617613128850143311", + "6415818688484520496", + "28677549029650398510" + ], + "redemptionFee": "33577841036043147", "reserves": [ - "24934984446529036183988785", - "52876671937063048261977837", - "38042454076704496138742706" + "1205541520857561256450942918", + "99649235624163997182089378", + "445414058459648278564106063" ], - "mAssetSupply": "115806878596004514730139928" + "mAssetSupply": "1737893246732612787809552379" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "637932153890703356723200", - "expectedQty": "639418393415492268209670", - "swapFee": "382759292334422014033", + "type": "redeemBassets", + "inputQtys": [ + "18866836063068983296", + "18195131628180918272", + "16431354216875687936" + ], + "expectedQty": "55529902175286016279", + "swapFee": "33337944071614578", "reserves": [ - "24934984446529036183988785", - "52237253543647555993768167", - "38042454076704496138742706" + "1205541501990725193381959622", + "99649217429032369001171106", + "445414042028294061688418127" ], - "mAssetSupply": "115169329201406145795430761" + "mAssetSupply": "1737893191202710612523536100" }, { - "type": "redeemMasset", - "inputQty": "28890111140001078889676", - "expectedQtys": [ - "6253039455786368623799", - "13099731751218844827933", - "9540048715357725714711" + "type": "redeemBassets", + "inputQtys": [ + "2274490350642480835198976", + "1044542062613261698727936", + "1654620938858478813839360" ], - "redemptionFee": "8667033342000323666", + "expectedQty": "5066299496091243987940114", + "swapFee": "3041604660451017002965", "reserves": [ - "24928731407073249815364986", - "52224153811896337148940234", - "38032914027989138413027995" + "1203267011640082712546760646", + "98604675366419107302443170", + "443759421089435582874578767" ], - "mAssetSupply": "115140447757299486716864751" + "mAssetSupply": "1732826891706619368535595986" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "751122622843126921822208", - "expectedQty": "752814277742090296783858", - "swapFee": "450673573705876153093", + "inputQty": "188529428233043264405504", + "expectedQty": "165879572329508586052855", + "swapFee": "113117656939825958643", "reserves": [ - "24928731407073249815364986", - "51471339534154246852156376", - "38032914027989138413027995" + "1203267011640082712546760646", + "98438795794089598716390315", + "443759421089435582874578767" ], - "mAssetSupply": "114389775808030065671195636" + "mAssetSupply": "1732638475396043265097149125" }, { - "type": "redeemMasset", - "inputQty": "584718659619354419", - "expectedQtys": [ - "127388321404573734", - "263023714950867949", - "194352010819744365" + "type": "redeemBassets", + "inputQtys": [ + "5990635033426198087598080", + "1074917606301940725055488", + "6560778686698121066446848" ], - "redemptionFee": "175415597885806", + "expectedQty": "13650616936494232420027095", + "swapFee": "8195287334297117722649", "reserves": [ - "24928731279684928410791252", - "51471339271130531901288427", - "38032913833637127593283630" + "1197276376606656514459162566", + "97363878187787657991334827", + "437198642402737461808131919" ], - "mAssetSupply": "114389775223486821649727023" + "mAssetSupply": "1718987858459549032677122030" }, { - "type": "mintMulti", - "inputQtys": [ - "31717403929628364", - "8353274844762554", - "12553480492693858" - ], - "expectedQty": "52741930037956985", + "type": "swap", + "inputIndex": 2, + "inputQty": "7406491917169138335744", + "outputIndex": 0, + "expectedQty": "7588743902923644630869", + "swapFee": "4452791448473565687", "reserves": [ - "24928731311402332340419616", - "51471339279483806746050981", - "38032913846190608085977488" + "1197268787862753590814531697", + "97363878187787657991334827", + "437206048894654630946467663" ], - "mAssetSupply": "114389775276228751687684008" + "mAssetSupply": "1718987862912340481150687717", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "56787657745644937805824", - "69447876661787620278272", - "68994892777719836180480" + "type": "redeemMasset", + "inputQty": "94664133734425331", + "expectedQtys": [ + "65913444516435116", + "5360190333109522", + "24069579812157518" ], - "expectedQty": "195272109148001150650686", + "redemptionFee": "28399240120327", "reserves": [ - "24985518969147977278225440", - "51540787156145594366329253", - "38101908738968327922157968" + "1197268787796840146298096581", + "97363878182427467658225305", + "437206048870585051134310145" ], - "mAssetSupply": "114585047385376752838334694" + "mAssetSupply": "1718987862817704746656382713" }, { "type": "redeemBassets", "inputQtys": [ - "19032952568475164672", - "79923028510258266112", - "12541270560758677504" + "287883378164167266533376", + "169454820720303113502720", + "150980399506842699431936" ], - "expectedQty": "111356303681282019356", - "swapFee": "66853894545496509", + "expectedQty": "625435691636242089275957", + "swapFee": "375486707005948822859", "reserves": [ - "24985499936195408803060768", - "51540707233117084108063141", - "38101896197697767163480464" + "1196980904418675979031563205", + "97194423361707164544722585", + "437055068471078208434878209" ], - "mAssetSupply": "114584936029073071556315338" + "mAssetSupply": "1718362427126068504567106756" }, { - "type": "redeemMasset", - "inputQty": "498757645143647065630310", - "expectedQtys": [ - "108722586318147374118368", - "224275640085679711133521", - "165797630978685108670375" - ], - "redemptionFee": "149627293543094119689", + "type": "mint", + "inputIndex": 1, + "inputQty": "1338937380002415872", + "expectedQty": "1523624597719011138", "reserves": [ - "24876777349877261428942400", - "51316431593031404396929620", - "37936098566719082054810089" + "1196980904418675979031563205", + "97194424700644544547138457", + "437055068471078208434878209" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "39829678062887225654247424", + "outputIndex": 0, + "expectedQty": "44448002010230807866226571", + "swapFee": "26253042321467031491655", + "reserves": [ + "1152532902408445171165336634", + "137024102763531770201385881", + "437055068471078208434878209" ], - "mAssetSupply": "114086328011222967584804717" + "mAssetSupply": "1718388681692014569317609549", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "95377492272114318075494", + "inputQty": "2004033252577212617247948", "expectedQtys": [ - "20791034959227165133181", - "42888261137199482854471", - "31705503507319667996000" + "1343713079257444060414192", + "159753425409475390452720", + "509553012007826468237590" ], - "redemptionFee": "28613247681634295422", + "redemptionFee": "601209975773163785174", "reserves": [ - "24855986314918034263809219", - "51273543331894204914075149", - "37904393063211762386814089" + "1151189189329187727104922442", + "136864349338122294810933161", + "436545515459070381966640619" ], - "mAssetSupply": "113990979132198534901024645" + "mAssetSupply": "1716385249649413129864146775" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "22470744403092546095415296", + "expectedQty": "22508303664553400379430470", + "reserves": [ + "1151189189329187727104922442", + "136864349338122294810933161", + "459016259862162928062055915" + ] }, { "type": "redeemBassets", "inputQtys": [ - "6501762774429996154880", - "9532674860447430606848", - "12061032729720593055744" + "1345302920052169728", + "4533029700888706940928", + "2809577895297099497472" ], - "expectedQty": "28094348178048758295577", - "swapFee": "16866728944195772440", + "expectedQty": "7646827869574149029955", + "swapFee": "4590851232483979805", "reserves": [ - "24849484552143604267654339", - "51264010657033757483468301", - "37892332030482041793758345" + "1151189187983884807052752714", + "136859816308421406103992233", + "459013450284267630962558443" ], - "mAssetSupply": "113962884784020486142729068" + "mAssetSupply": "1738885906486096956094547290" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "37276009148616691154944", - "expectedQty": "37358175324382808060096", - "swapFee": "22365605489170014692", + "inputIndex": 0, + "inputQty": "215328362738038737993728", + "expectedQty": "218570139049783284485332", + "swapFee": "129197017642823242796", "reserves": [ - "24849484552143604267654339", - "51226652481709374675408205", - "37892332030482041793758345" + "1150970617844835023768267382", + "136859816308421406103992233", + "459013450284267630962558443" ], - "mAssetSupply": "113925631140477358621588816" + "mAssetSupply": "1738670707320376560179796358" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2813946443458091696521216", - "expectedQty": "2805638386934023674348501", + "type": "mintMulti", + "inputQtys": [ + "59498220832038135529472", + "105778215778999957716992", + "323522205630845656498176" + ], + "expectedQty": "495240129605719012661312", "reserves": [ - "24849484552143604267654339", - "54040598925167466371929421", - "37892332030482041793758345" - ] + "1151030116065667061903796854", + "136965594524200406061709225", + "459336972489898476619056619" + ], + "mAssetSupply": "1739165947449982279192457670" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "147351150279362560000", - "94733993932273876992", - "90050450048141541376" + "101555725574459759788032", + "780831006102806186688512", + "1088086949187533850804224" ], - "expectedQty": "332557675489782942989", - "swapFee": "199654397932629343", + "expectedQty": "2021404797891176189586943", "reserves": [ - "24849337200993324905094339", - "54040504191173534098052429", - "37892241980031993652216969" + "1151131671791241521663584886", + "137746425530303212248397737", + "460425059439086010469860843" ], - "mAssetSupply": "116730936969735892512994328" + "mAssetSupply": "1741187352247873455382044613" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "7663158956628465982373888", - "expectedQty": "7657226081355001620167767", + "inputQty": "108598864319430741286977536", + "expectedQty": "108100037237428414560077613", + "swapFee": "65159318591658444772186", "reserves": [ - "24849337200993324905094339", - "54040504191173534098052429", - "45555400936660459634590857" - ] + "1151131671791241521663584886", + "137746425530303212248397737", + "352325022201657595909783230" + ], + "mAssetSupply": "1632653647247034372539839263" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "90810555540129001611722752", + "expectedQty": "92272566857627159501538588", + "swapFee": "54486333324077400967033", + "reserves": [ + "1058859104933614362162046298", + "137746425530303212248397737", + "352325022201657595909783230" + ], + "mAssetSupply": "1541897578040229448329083544" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "236642701575366213632", - "expectedQty": "236812788921168111338", - "swapFee": "141985620945219728", + "inputQty": "214570267901623401447424", + "expectedQty": "213288927558974149762492", + "swapFee": "128742160740974040868", + "reserves": [ + "1058859104933614362162046298", + "137746425530303212248397737", + "352111733274098621760020738" + ], + "mAssetSupply": "1541683136514488565901676988" + }, + { + "type": "redeemMasset", + "inputQty": "517240209281607584972", + "expectedQtys": [ + "355144443573500919581", + "46200554371457446092", + "118099306136835667050" + ], + "redemptionFee": "155172062784482275", "reserves": [ - "24849337200993324905094339", - "54040504191173534098052429", - "45555164123871538466479519" + "1058858749789170788661126717", + "137746379329748840790951645", + "352111615174792484924353688" ], - "mAssetSupply": "124387926550374939712168191" + "mAssetSupply": "1541682619429451347078574291" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "2487945037802315448320", - "outputIndex": 0, - "expectedQty": "2468430970480118468016", - "swapFee": "1490799628349721633", + "inputIndex": 1, + "inputQty": "6030901979246560603537408", + "outputIndex": 2, + "expectedQty": "6304037477194872945729408", + "swapFee": "3806194986704705718683", "reserves": [ - "24846868770022844786626323", - "54040504191173534098052429", - "45557652068909340781927839" + "1058858749789170788661126717", + "143777281308995401394489053", + "345807577697597611978624280" ], - "mAssetSupply": "124387928041174568061889824", + "mAssetSupply": "1541686425624438051784292974", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3587309670884770316288", - "2075052264822016311296", - "1757561373111525572608" + "4055757434528714037657600", + "1050657871140700121202688", + "1503431946222915710615552" ], - "expectedQty": "7433448604909123593227", + "expectedQty": "6609923829307437922388717", + "swapFee": "3968335298763720986024", "reserves": [ - "24850456079693729556942611", - "54042579243438356114363725", - "45559409630282452307500447" + "1054802992354642074623469117", + "142726623437854701273286365", + "344304145751374696268008728" ], - "mAssetSupply": "124395361489779477185483051" + "mAssetSupply": "1535076501795130613861904257" }, { - "type": "redeemBassets", - "inputQtys": [ - "20671223518893707264", - "4940813842533518336", - "18209309227005220864" + "type": "redeemMasset", + "inputQty": "2516287785852786337382", + "expectedQtys": [ + "1728507749727271413738", + "233886400107776624633", + "564211884596536942186" ], - "expectedQty": "43907503362078144916", - "swapFee": "26360318208171790", + "redemptionFee": "754886335755835901", "reserves": [ - "24850435408470210663235347", - "54042574302624513580845389", - "45559391420973225302279583" + "1054801263846892347352055379", + "142726389551454593496661732", + "344303581539490099731066542" ], - "mAssetSupply": "124395317582276115107338135" + "mAssetSupply": "1535073986262231096831402776" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "24573408863677835116544", - "24285577644439530110976", - "26030144459465088303104" + "34377748238864", + "26925315898545", + "55048577488528" ], - "expectedQty": "74936263692698725947190", - "swapFee": "44988751466499135049", + "expectedQty": "117503990214197", "reserves": [ - "24825861999606532828118803", - "54018288724980074050734413", - "45533361276513760213976479" + "1054801263846926725100294243", + "142726389551481518812560277", + "344303581539545148308555070" ], - "mAssetSupply": "124320381318583416381390945" + "mAssetSupply": "1535073986262348600821616973" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "485026512088364608", - "6114223243621638144", - "3403212273645373440" + "142966453655041638400", + "842152240702938152960", + "425564681081078022144" ], - "expectedQty": "9984403494606447184", - "swapFee": "5994238639947837", + "expectedQty": "1453134865004670768778", "reserves": [ - "24825861514580020739754195", - "54018282610756830429096269", - "45533357873301486568603039" + "1054801406813380380141932643", + "142727231703722221750713237", + "344304007104226229386577214" ], - "mAssetSupply": "124320371334179921774943761" + "mAssetSupply": "1535075439397213605492385751" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "449904017818940927377408", - "expectedQty": "448681311537574452696890", + "type": "redeemMasset", + "inputQty": "147198039185443677798", + "expectedQtys": [ + "101114326644613329497", + "13681976374273935160", + "33005329358216756087" + ], + "redemptionFee": "44159411755633103", "reserves": [ - "24825861514580020739754195", - "54468186628575771356473677", - "45533357873301486568603039" - ] + "1054801305699053735528603146", + "142727218021745847476778077", + "344303974098896871169821127" + ], + "mAssetSupply": "1535075292243333831804341056" + }, + { + "type": "redeemMasset", + "inputQty": "2839733495926269949037772", + "expectedQtys": [ + "1950689981195982311506873", + "263951658700761544744593", + "636736330465163965728762" + ], + "redemptionFee": "851920048777880984711", + "reserves": [ + "1052850615717857753217096273", + "142463266363045085932033484", + "343667237768431707204092365" + ], + "mAssetSupply": "1532236410667456339736287995" }, { "type": "mintMulti", "inputQtys": [ - "326041836938294410084352", - "5191859054738166687727616", - "2370825945758721151860736" + "3375841669008950684549120", + "16130000451326918298435584", + "17254729598289001249243136" ], - "expectedQty": "7872507955445982768500825", + "expectedQty": "37532858310079258085746002", "reserves": [ - "25151903351518315149838547", - "59660045683313938044201293", - "47904183819060207720463775" + "1056226457386866703901645393", + "158593266814372004230469068", + "360921967366720708453335501" ], - "mAssetSupply": "132641560601163478996141476" + "mAssetSupply": "1569769268977535597822033997" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "553994421957049712640", - "expectedQty": "555396713009315821207", - "swapFee": "332396653174229827", + "inputQty": "147282391204145731207168", + "expectedQty": "153262953304602465108572", + "reserves": [ + "1056226457386866703901645393", + "158740549205576149961676236", + "360921967366720708453335501" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "516927218955201216512", + "outputIndex": 2, + "expectedQty": "507156647778941300808", + "swapFee": "305987429732462435", "reserves": [ - "25151903351518315149838547", - "59659490286600928728380086", - "47904183819060207720463775" + "1056226974314085659102861905", + "158740549205576149961676236", + "360921460210072929512034693" ], - "mAssetSupply": "132641006939138175120658663" + "mAssetSupply": "1569922532236827630019605004", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "265757239149908361216", + "expectedQty": "276538465485149238314", + "reserves": [ + "1056226974314085659102861905", + "158740814962815299870037452", + "360921460210072929512034693" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "3243906939247236019650560", + "inputQty": "753838110745982882807808", "outputIndex": 1, - "expectedQty": "3269785657905134347911758", - "swapFee": "1958108356024516920513", + "expectedQty": "714111567054620687376082", + "swapFee": "446220285959978420384", "reserves": [ - "28395810290765551169489107", - "56389704628695794380468328", - "47904183819060207720463775" + "1056980812424831641985669713", + "158026703395760679182661370", + "360921460210072929512034693" ], - "mAssetSupply": "132642965047494199637579176", + "mAssetSupply": "1569923254995579075147263702", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "40087658714073505792", - "198418399475376652288", - "473195809893139873792" + "316882955158390571008", + "318111489892513677312", + "275801432455893221376" ], - "expectedQty": "710923850145243808821", - "swapFee": "426810396324941250", + "expectedQty": "920927427823474327795", + "swapFee": "552888189607849306", "reserves": [ - "28395770203106837095983315", - "56389506210296319003816040", - "47903710623250314580589983" + "1056980495541876483595098705", + "158026385284270786668984058", + "360921184408640473618813317" ], - "mAssetSupply": "132642254123644054393770355" + "mAssetSupply": "1569922334068151251672935907" }, { "type": "redeemMasset", - "inputQty": "16718434611202223400550", + "inputQty": "15737760050408085625241", "expectedQtys": [ - "3577973027243328003213", - "7105288245287158716453", - "6036046329749009105616" + "10592571813461791606573", + "1583667666154300907275", + "3616985915041176724120" ], - "redemptionFee": "5015530383360667020", + "redemptionFee": "4721328015122425687", "reserves": [ - "28392192230079593767980102", - "56382400922051031845099587", - "47897674576920565571484367" + "1056969902970063021803492132", + "158024801616604632368076783", + "360917567422725432442089197" ], - "mAssetSupply": "132625540704563235531036825" + "mAssetSupply": "1569906601029428858709736353" }, { "type": "swap", "inputIndex": 1, - "inputQty": "125176460525461238185984", - "outputIndex": 0, - "expectedQty": "124200491995027561465568", - "swapFee": "74928395465252807613", + "inputQty": "5457959314503448622268416", + "outputIndex": 2, + "expectedQty": "5641452793575958681070445", + "swapFee": "3404494186703428013807", "reserves": [ - "28267991738084566206514534", - "56507577382576493083285571", - "47897674576920565571484367" + "1056969902970063021803492132", + "163482760931108080990345199", + "355276114629149473761018752" ], - "mAssetSupply": "132625615632958700783844438", + "mAssetSupply": "1569910005523615562137750160", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "494913503799120970645504", - "expectedQty": "492152021370212234625245", - "swapFee": "296948102279472582387", + "type": "redeemBassets", + "inputQtys": [ + "2039977113080052878147584", + "1859714819253391128002560", + "1332635443466984260370432" + ], + "expectedQty": "5284171829906513468886417", + "swapFee": "3172406541869029499031", "reserves": [ - "27775839716714353971889289", - "56507577382576493083285571", - "47897674576920565571484367" + "1054929925856982968925344548", + "161623046111854689862342639", + "353943479185682489500648320" ], - "mAssetSupply": "132130999077261859285781321" + "mAssetSupply": "1564625833693709048668863743" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "361250095794390720", - "expectedQty": "359195239108471804", - "swapFee": "216750057476634", + "inputIndex": 1, + "inputQty": "70275486529652260864", + "expectedQty": "67599468315030432621", + "swapFee": "42165291917791356", "reserves": [ - "27775839357519114863417485", - "56507577382576493083285571", - "47897674576920565571484367" + "1054929925856982968925344548", + "161622978512386374831910018", + "353943479185682489500648320" ], - "mAssetSupply": "132130998716228513548867235" + "mAssetSupply": "1564625763460387810934394235" }, { - "type": "redeemMasset", - "inputQty": "203251264774715", - "expectedQtys": [ - "42713525910539", - "86897027290702", - "73656768307239" + "type": "mintMulti", + "inputQtys": [ + "13794504810339153934811136", + "16597731517767418405453824", + "13009465178573018979368960" + ], + "expectedQty": "43886759559891246368483983", + "reserves": [ + "1068724430667322122860155684", + "178220710030153793237363842", + "366952944364255508480017280" ], - "redemptionFee": "60975379432", + "mAssetSupply": "1608512523020279057302878218" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "78402296103157391949824", + "outputIndex": 2, + "expectedQty": "80523738682861752215179", + "swapFee": "48585962461857400723", "reserves": [ - "27775839357476401337506946", - "56507577382489596055994869", - "47897674576846908803177128" + "1068724430667322122860155684", + "178299112326256950629313666", + "366872420625572646727802101" ], - "mAssetSupply": "132130998716025323259471952" + "mAssetSupply": "1608512571606241519160278941", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "2406801406977606451", + "inputQty": "70105801727442511462", "expectedQtys": [ - "505792543886062540", - "1028991813542973573", - "872207185484359132" + "46565570717256080661", + "7768700411076106601", + "15985059531374086330" ], - "redemptionFee": "722040422093281", + "redemptionFee": "21031740518232753", "reserves": [ - "27775838851683857451444406", - "56507576353497782513021296", - "47897673704639723318817996" + "1068724384101751405604075023", + "178299104557556539553207065", + "366872404640513115353715771" ], - "mAssetSupply": "132130996309945956703958782" + "mAssetSupply": "1608512501521471532236000232" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "18356112565853201891328", - "expectedQty": "18311233560842317033576", + "inputIndex": 0, + "inputQty": "3047072102847349784576", + "expectedQty": "3009785568163910080406", "reserves": [ - "27775838851683857451444406", - "56525932466063635714912624", - "47897673704639723318817996" + "1068727431173854252953859599", + "178299104557556539553207065", + "366872404640513115353715771" ] }, + { + "type": "redeemMasset", + "inputQty": "55610288928590908306227", + "expectedQtys": [ + "36937419094479275152213", + "6162383931681350304645", + "12679865201477707451528" + ], + "redemptionFee": "16683086678577272491", + "reserves": [ + "1068690493754759773678707386", + "178292942173624858202902420", + "366859724775311637646264243" + ], + "mAssetSupply": "1608459917701197783815046902" + }, { "type": "mintMulti", "inputQtys": [ - "1621275912847872", - "6340869875109646", - "5429075710732882" + "129897954914829336576", + "4203404060312712192", + "156858400365145587712" ], - "expectedQty": "13377882662732244", + "expectedQty": "290296064143372118596", "reserves": [ - "27775838853305133364292278", - "56525932472404505590022270", - "47897673710068799029550878" + "1068690623652714688508043962", + "178292946377028918515614612", + "366859881633712002791851955" ], - "mAssetSupply": "132149307556884681683724602" + "mAssetSupply": "1608460207997261927187165498" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1600679267826390676799488", - "expectedQty": "1603511805808079686315058", - "swapFee": "960407560695834406079", + "inputIndex": 0, + "inputQty": "148059602896626", + "expectedQty": "149803897045909", + "swapFee": "88835761737", "reserves": [ - "27775838853305133364292278", - "54922420666596425903707212", - "47897673710068799029550878" + "1068690623652564884610998053", + "178292946377028918515614612", + "366859881633712002791851955" ], - "mAssetSupply": "130549588696618986841331193" + "mAssetSupply": "1608460207997113956420030609" }, { - "type": "redeemMasset", - "inputQty": "212372309854854316032", - "expectedQtys": [ - "45170953570907060098", - "89318566651946274741", - "77894446563385137760" + "type": "mintMulti", + "inputQtys": [ + "1498936275464736749912064", + "512311303976532865712128", + "2063201739440838900973568" ], - "redemptionFee": "63711692956456294", + "expectedQty": "4083206762026343747018787", "reserves": [ - "27775793682351562457232180", - "54922331348029773957432471", - "47897595815622235644413118" + "1070189559928029621360910117", + "178805257681005451381326740", + "368923083373152841692825523" ], - "mAssetSupply": "130549376388020824943471455" + "mAssetSupply": "1612543414759140300167049396" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "1118732315441502464", + "inputIndex": 1, + "inputQty": "12951366310819252500692992", "outputIndex": 2, - "expectedQty": "1124918538057964814", - "swapFee": "674543939453691", + "expectedQty": "13266000619512516489004022", + "swapFee": "8007594441213955514829", "reserves": [ - "27775794801083877898734644", - "54922331348029773957432471", - "47897594690703697586448304" + "1070189559928029621360910117", + "191756623991824703882019732", + "355657082753640325203821501" ], - "mAssetSupply": "130549376388695368882925146", + "mAssetSupply": "1612551422353581514122564225", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "458856667074968086904832", - "1056772983980757060943872", - "100824867782310162857984" + "9630685608006389858304", + "204986204805330580275200", + "226767692467650963701760" ], - "expectedQty": "1616143885717969963310004", + "expectedQty": "448373374404475669104466", "reserves": [ - "28234651468158845985639476", - "55979104332010531018376343", - "47998419558486007749306288" + "1070199190613637627750768421", + "191961610196630034462294932", + "355883850446107976167523261" ], - "mAssetSupply": "132165520274413338846235150" + "mAssetSupply": "1612999795727985989791668691" }, { - "type": "mintMulti", - "inputQtys": [ - "882279318533132414615552", - "21833926821240360665088", - "119920408054368898646016" - ], - "expectedQty": "1027989726377499714760697", + "type": "redeem", + "inputIndex": 1, + "inputQty": "17575706582203045888", + "expectedQty": "17083574784183507329", + "swapFee": "10545423949321827", "reserves": [ - "29116930786691978400255028", - "56000938258831771379041431", - "48118339966540376647952304" + "1070199190613637627750768421", + "191961593113055250278787603", + "355883850446107976167523261" ], - "mAssetSupply": "133193510000790838560995847" + "mAssetSupply": "1612999778162824831537944630" }, { "type": "mintMulti", "inputQtys": [ - "95381362665589858893824", - "268830161223363019669504", - "207848047579699167100928" + "1306928474562086425329664", + "1580972926546521012305920", + "1443117927952537656229888" ], - "expectedQty": "571677709380572740543910", + "expectedQty": "4368373622228598716340346", "reserves": [ - "29212312149357568259148852", - "56269768420055134398710935", - "48326188014120075815053232" + "1071506119088199714176098085", + "193542566039601771291093523", + "357326968374060513823753149" ], - "mAssetSupply": "133765187710171411301539757" + "mAssetSupply": "1617368151785053430254284976" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "732068497965768576", - "2767312144490686464", - "2859414171201776128" + "227243476352795343323136", + "550647118119146000220160", + "259944314454503873052672" ], - "expectedQty": "6352987021260977881", + "expectedQty": "1052033963624280282778528", + "swapFee": "631599337777234510373", "reserves": [ - "29212312881426066224917428", - "56269771187367278889397399", - "48326190873534247016829360" + "1071278875611846918832774949", + "192991918921482625290873363", + "357067024059606009950700477" ], - "mAssetSupply": "133765194063158432562517638" + "mAssetSupply": "1616316117821429149971506448" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "678308253305778045190144", - "7881466994460285992960", - "844970792704619206148096" + "2596161546759052191596544", + "9363601423971962580893696", + "14075414711427491552034816" ], - "expectedQty": "1533274155220873405198392", + "expectedQty": "26364754311981421668952858", + "swapFee": "15828349596947021214100", "reserves": [ - "29890621134731844270107572", - "56277652654361739175390359", - "49171161666238866222977456" + "1068682714065087866641178405", + "183628317497510662709979667", + "342991609348178518398665661" ], - "mAssetSupply": "135298468218379305967716030" + "mAssetSupply": "1589951363509447728302553590" }, { "type": "redeemMasset", - "inputQty": "376000512489742768537", + "inputQty": "23590904479611944855142", "expectedQtys": [ - "83042456774171065460", - "156351201831375884564", - "136607869364741139690" + "15851823550968772912123", + "2723767915043235635788", + "5087611504605094219427" ], - "redemptionFee": "112800153746922830", + "redemptionFee": "7077271343883583456", "reserves": [ - "29890538092275070099042112", - "56277496303159907799505795", - "49171025058369501481837766" + "1068666862241536897868266282", + "183625593729595619474343879", + "342986521736673913304446234" ], - "mAssetSupply": "135298092330666969971870323" - }, - { - "type": "redeemMasset", - "inputQty": "4570166291865208566579", - "expectedQtys": [ - "1009354573029587110774", - "1900398985019630166781", - "1660425076658099511856" - ], - "redemptionFee": "1371049887559562569", - "reserves": [ - "29889528737702040511931338", - "56275595904174888169339014", - "49169364633292843382325910" - ], - "mAssetSupply": "135293523535424992322866313" + "mAssetSupply": "1589927779682239460241281904" }, { "type": "redeemBassets", "inputQtys": [ - "9532854877607564410880", - "114433924253605624283136", - "106622003003834977222656" - ], - "expectedQty": "230275661942524626623524", - "swapFee": "138248346173218707198", - "reserves": [ - "29879995882824432947520458", - "56161161979921282545055878", - "49062742630289008405103254" + "36315254431411139732570112", + "17267762121290533006475264", + "73372453106924002761244672" ], - "mAssetSupply": "135063247873482467696242789" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1832095085114312483667968", - "expectedQty": "1822429879817735999765373", - "swapFee": "1099257051068587490200", + "expectedQty": "127699880776813173496958043", + "swapFee": "76665928022901645085225", "reserves": [ - "28057566003006696947755085", - "56161161979921282545055878", - "49062742630289008405103254" + "1032351607810125758135696170", + "166357831608305086467868615", + "269614068629749910543201562" ], - "mAssetSupply": "133232252045419223800065021" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "3803885437713411676831744", - "expectedQty": "3794340392303037239564837", - "reserves": [ - "28057566003006696947755085", - "59965047417634694221887622", - "49062742630289008405103254" - ] + "mAssetSupply": "1462227898905426286744323861" }, { "type": "mintMulti", "inputQtys": [ - "433953684561876307935232", - "205910272347015129071616", - "421819957816654609514496" + "45310151955251657179136", + "255641975593064271446016", + "262077619201732151083008" ], - "expectedQty": "1063062950384396930929465", + "expectedQty": "574570298202621939254688", "reserves": [ - "28491519687568573255690317", - "60170957689981709350959238", - "49484562588105663014617750" + "1032396917962081009792875306", + "166613473583898150739314631", + "269876146248951642694284570" ], - "mAssetSupply": "138089655388106657970559323" + "mAssetSupply": "1462802469203628908683578549" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1091632091017015094935552", - "expectedQty": "1092077214728839200230935", - "swapFee": "654979254610209056961", + "inputQty": "1656502238047847579648", + "expectedQty": "1635356536578729466968", + "swapFee": "993901342828708547", "reserves": [ - "28491519687568573255690317", - "60170957689981709350959238", - "48392485373376823814386815" + "1032396917962081009792875306", + "166613473583898150739314631", + "269874510892415063964817602" ], - "mAssetSupply": "136998678276344253084680732" + "mAssetSupply": "1462800813695292203664707448" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "398487220400171522195456", - "outputIndex": 2, - "expectedQty": "397525980795609773159231", - "swapFee": "238444651852202104021", + "type": "redeemMasset", + "inputQty": "501441842956712017920", + "expectedQtys": [ + "353795063727369323165", + "57097249593512135595", + "92484070921143060487" + ], + "redemptionFee": "150432552887013605", "reserves": [ - "28491519687568573255690317", - "60569444910381880873154694", - "47994959392581214041227584" + "1032396564167017282423552141", + "166613416486648557227179036", + "269874418408344142821757115" ], - "mAssetSupply": "136998916720996105286784753", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1462800312403881799839703133" }, { "type": "mint", "inputIndex": 0, - "inputQty": "275226896829250929688576", - "expectedQty": "276670371889381513449579", + "inputQty": "25782805313037586971754496", + "expectedQty": "25394991228865315575170951", "reserves": [ - "28766746584397824185378893", - "60569444910381880873154694", - "47994959392581214041227584" + "1058179369480054869395306637", + "166613416486648557227179036", + "269874418408344142821757115" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "28033882813038520696832", - "26049065174904715870208", - "29949858822117878923264" + "4916376182305077558509568", + "4014306738075415691132928", + "1439071847126683032223744" ], - "expectedQty": "84082302846867029898784", - "swapFee": "50479669509826113607", + "expectedQty": "10459578028446339307068820", "reserves": [ - "28738712701584785664682061", - "60543395845206976157284486", - "47965009533759096162304320" + "1063095745662359946953816205", + "170627723224723972918311964", + "271313490255470825853980859" ], - "mAssetSupply": "137191504790038619770335548" + "mAssetSupply": "1498654881661193454721942904" }, { "type": "redeemBassets", "inputQtys": [ - "857418125829317184192512", - "327438011505401887981568", - "413069354202536219770880" + "87708842590006807625728", + "19546679829465564971008", + "72105072998282908663808" ], - "expectedQty": "1601239607158448643409270", - "swapFee": "961320556629046614013", + "expectedQty": "179683141416598951409255", + "swapFee": "107874609615728808130", "reserves": [ - "27881294575755468480489549", - "60215957833701574269302918", - "47551940179556559942533440" + "1063008036819769940146190477", + "170608176544894507353340956", + "271241385182472542945317051" ], - "mAssetSupply": "135590265182880171126926278" + "mAssetSupply": "1498475198519776855770533649" }, { "type": "redeemMasset", - "inputQty": "5017510741629432600985", + "inputQty": "160788803200855336550", "expectedQtys": [ - "1031436338200614378680", - "2227619914867344537012", - "1759129186769747291459" + "114028256366818012136", + "18301040273917492624", + "29095906273116699389" ], - "redemptionFee": "1505253222488829780", + "redemptionFee": "48236640960256600", "reserves": [ - "27880263139417267866110869", - "60213730213786706924765906", - "47550181050369790195241981" + "1063007922791513573328178341", + "170608158243854233435848332", + "271241356086566269828617662" ], - "mAssetSupply": "135585249177391764183155073" + "mAssetSupply": "1498475037779210295875453699" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "191763075852048990732288", - "expectedQty": "191818840038828032381030", - "swapFee": "115057845511229394439", + "type": "redeemMasset", + "inputQty": "138772332780799438251622", + "expectedQtys": [ + "98414608629080236030319", + "15795117573916869922819", + "25111865425405576124696" + ], + "redemptionFee": "41631699834239831475", + "reserves": [ + "1062909508182884493092148022", + "170592363126280316565925513", + "271216244221140864252492966" + ], + "mAssetSupply": "1498336307078129330677033552" + }, + { + "type": "redeemMasset", + "inputQty": "1096085344124207104", + "expectedQtys": [ + "777322165048879213", + "124756833978108241", + "198344634732657442" + ], + "redemptionFee": "328825603237262", "reserves": [ - "27880263139417267866110869", - "60213730213786706924765906", - "47358362210330962162860951" + "1062909507405562328043268809", + "170592363001523482587817272", + "271216244022796229519835524" ], - "mAssetSupply": "135393601159385226421817224" + "mAssetSupply": "1498336305982372812156063710" }, { "type": "mintMulti", "inputQtys": [ - "4001961228905896960", - "3396915823653457920", - "3370403253717046272" + "1838338525431156770340864", + "1309162457075218638700544", + "3060883057135696830529536" ], - "expectedQty": "10778645963627755638", + "expectedQty": "6266835877689591960137987", "reserves": [ - "27880267141378496772007829", - "60213733610702530578223826", - "47358365580734215879907223" + "1064747845930993484813609673", + "171901525458598701226517816", + "274277127079931926350365060" ], - "mAssetSupply": "135393611938031190049572862" + "mAssetSupply": "1504603141860062404116201697" }, { "type": "redeemBassets", "inputQtys": [ - "291675106737497445498880", - "84770940225358978351104", - "258989268174999610458112" + "5275815265160697212829696", + "182052358385380911742976", + "1143652644477524489797632" ], - "expectedQty": "636577115521805699550753", - "swapFee": "382175574657878146618", + "expectedQty": "6544036817379007781090646", + "swapFee": "3928779358042230006658", "reserves": [ - "27588592034640999326508949", - "60128962670477171599872722", - "47099376312559216269449111" + "1059472030665832787600779977", + "171719473100213320314774840", + "273133474435454401860567428" ], - "mAssetSupply": "134757034822509384350022109" + "mAssetSupply": "1498059105042683396335111051" }, { - "type": "redeemBassets", - "inputQtys": [ - "1351142522416798367744", - "19057299661170818416640", - "21246965993103305998336" + "type": "redeemMasset", + "inputQty": "1143272080500301710648934", + "expectedQtys": [ + "808313509939172378382224", + "131011641656369991179503", + "208384432068540940228459" ], - "expectedQty": "41589676206916757986991", - "swapFee": "24968786996347863510", + "redemptionFee": "342981624150090513194", "reserves": [ - "27587240892118582528141205", - "60109905370816000781456082", - "47078129346566112963450775" + "1058663717155893615222397753", + "171588461458556950323595337", + "272925090003385860920338969" ], - "mAssetSupply": "134715445146302467592035118" + "mAssetSupply": "1496916175943807244714975311" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "102045925571859601948672", - "expectedQty": "102611516310076085270037", + "inputIndex": 2, + "inputQty": "978897067496610463744", + "expectedQty": "991418506802100790494", "reserves": [ - "27689286817690442130089877", - "60109905370816000781456082", - "47078129346566112963450775" + "1058663717155893615222397753", + "171588461458556950323595337", + "272926068900453357530802713" ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "88916625639950354743296", - "expectedQty": "89116593614020887899288", - "swapFee": "53349975383970212845", + "inputQty": "315060487860144384", + "outputIndex": 0, + "expectedQty": "330736009301391939", + "swapFee": "195612132942581", "reserves": [ - "27689286817690442130089877", - "60020788777201979893556794", - "47078129346566112963450775" + "1058663716825157605921005814", + "171588461773617438183739721", + "272926068900453357530802713" ], - "mAssetSupply": "134729193386947977292774704" + "mAssetSupply": "1496917167362509658948708386", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5797945616080576708608", - "expectedQty": "5762727496475218316961", - "swapFee": "3478767369648346025", - "reserves": [ - "27683524090193966911772916", - "60020788777201979893556794", - "47078129346566112963450775" + "type": "redeemBassets", + "inputQtys": [ + "6117445799120650907942912", + "9336967550155523312582656", + "3945481337699962164609024" ], - "mAssetSupply": "134723398920099266364412121" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "66959910500131351298048", - "expectedQty": "66552026461817893921436", - "swapFee": "40175946300078810778", + "expectedQty": "19700408618188773045922727", + "swapFee": "11827341575858779095010", "reserves": [ - "27616972063732149017851480", - "60020788777201979893556794", - "47078129346566112963450775" + "1052546271026036955013062902", + "162251494223461914871157065", + "268980587562753395366193689" ], - "mAssetSupply": "134656479185545435091924851" + "mAssetSupply": "1477216758744320885902785659" }, { "type": "redeemBassets", "inputQtys": [ - "94152059943720566784", - "158031291594364977152", - "158426337398791110656" + "36784172232696246829056", + "153246996543684810375168", + "78539301393992169553920" ], - "expectedQty": "410541649580607359576", - "swapFee": "246472873472447884", + "expectedQty": "274959640897253138512411", + "swapFee": "165074829436013491202", "reserves": [ - "27616877911672205297284696", - "60020630745910385528579642", - "47077970920228714172340119" + "1052509486853804258766233846", + "162098247226918230060781897", + "268902048261359403196639769" ], - "mAssetSupply": "134656068643895854484565275" + "mAssetSupply": "1476941799103423632764273248" }, { - "type": "mintMulti", - "inputQtys": [ - "1128282332327217463296", - "16267265875378452824064", - "3612635107994684096512" - ], - "expectedQty": "20964917436308343564338", + "type": "swap", + "inputIndex": 0, + "inputQty": "3815186225400728174723072", + "outputIndex": 2, + "expectedQty": "3702958146448286154984717", + "swapFee": "2253361826988747298594", "reserves": [ - "27618006194004532514747992", - "60036898011785763981403706", - "47081583555336708856436631" + "1056324673079204986940956918", + "162098247226918230060781897", + "265199090114911117041655052" ], - "mAssetSupply": "134677033561332162828129613" + "mAssetSupply": "1476944052465250621511571842", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "242113069340560253045964", - "expectedQtys": [ - "49634849148783932656079", - "107897809684133180327957", - "84614627176175668006639" - ], - "redemptionFee": "72633920802168075913", + "type": "mint", + "inputIndex": 1, + "inputQty": "17634261408625541341249536", + "expectedQty": "18253059400652413980590798", + "reserves": [ + "1056324673079204986940956918", + "179732508635543771402031433", + "265199090114911117041655052" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "4658178895389118464", + "outputIndex": 2, + "expectedQty": "4526097608197822678", + "swapFee": "2754328857688581", "reserves": [ - "27568371344855748582091913", - "59929000202101630801075749", - "46996968928160533188429992" + "1056324677737383882330075382", + "179732508635543771402031433", + "265199085588813508843832374" ], - "mAssetSupply": "134434993125912404743159562" + "mAssetSupply": "1495197111868657364349851221", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "39075676855217246175232", - "expectedQty": "39086591927766151612622", - "swapFee": "23445406113130347705", + "inputIndex": 1, + "inputQty": "834801060674646310912", + "expectedQty": "808818818025921351090", + "swapFee": "500880636404787786", "reserves": [ - "27568371344855748582091913", - "59929000202101630801075749", - "46957882336232767036817370" + "1056324677737383882330075382", + "179731699816725745480680343", + "265199085588813508843832374" ], - "mAssetSupply": "134395940894463300627332035" + "mAssetSupply": "1495196277568477326108328095" }, { - "type": "redeemBassets", - "inputQtys": [ - "381956902641400086528", - "222517174770471829504", - "49403132382059364352" - ], - "expectedQty": "655315090452111327600", - "swapFee": "393425109336868917", + "type": "swap", + "inputIndex": 2, + "inputQty": "344969245945424248832", + "outputIndex": 1, + "expectedQty": "338788384837322108733", + "swapFee": "209802952325490348", "reserves": [ - "27567989387953107182005385", - "59928777684926860329246245", - "46957832933100384977453018" + "1056324677737383882330075382", + "179731361028340908158571610", + "265199430558059454268081206" ], - "mAssetSupply": "134395285579372848516004435" + "mAssetSupply": "1495196277778280278433818443", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "15433153743492270050508", - "expectedQtys": [ - "3164793902435349866786", - "6879799158677142894640", - "5390740008163077200346" - ], - "redemptionFee": "4629946123047681015", + "type": "swap", + "inputIndex": 1, + "inputQty": "39491582975141967036416", + "outputIndex": 2, + "expectedQty": "40163458466301897355950", + "swapFee": "24441279523013801224", "reserves": [ - "27564824594050671832138599", - "59921897885768183186351605", - "46952442193092221900252672" + "1056324677737383882330075382", + "179770852611316050125608026", + "265159267099593152370725256" ], - "mAssetSupply": "134379857055575479293634942" + "mAssetSupply": "1495196302219559801447619667", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "85816457268944298416537", - "expectedQtys": [ - "17597919725764488162026", - "38255304154440316947582", - "29975351587071867683712" - ], - "redemptionFee": "25744937180683289524", + "type": "mint", + "inputIndex": 2, + "inputQty": "204533019381760425721856", + "expectedQty": "207319247056748598226861", "reserves": [ - "27547226674324907343976573", - "59883642581613742869404023", - "46922466841505150032568960" - ], - "mAssetSupply": "134294066343243715678507929" + "1056324677737383882330075382", + "179770852611316050125608026", + "265363800118974912796447112" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "7687267437623014400", - "45944935256077795328", - "42805768735328985088" - ], - "expectedQty": "96312047481437625294", - "swapFee": "57821921641847683", + "type": "mint", + "inputIndex": 0, + "inputQty": "26485028677658314618699776", + "expectedQty": "26093655806738829054423717", "reserves": [ - "27547218987057469720962173", - "59883596636678486791608695", - "46922424035736414703583872" - ], - "mAssetSupply": "134293970031196234240882635" + "1082809706415042196948775158", + "179770852611316050125608026", + "265363800118974912796447112" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "10168228363047182", - "expectedQty": "10106152244810748", - "swapFee": "6100937017828", + "inputQty": "1667833542859528375107584", + "outputIndex": 2, + "expectedQty": "1617865470870172926249242", + "swapFee": "985627559997732332548", "reserves": [ - "27547218976951317476151425", - "59883596636678486791608695", - "46922424035736414703583872" + "1084477539957901725323882742", + "179770852611316050125608026", + "263745934648104739870197870" ], - "mAssetSupply": "134293970021034106814853281" + "mAssetSupply": "1521498262900915376832602793", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "100769935880898633269248", - "expectedQty": "100680941551227018274780", + "inputQty": "81913739902802249648177152", + "outputIndex": 0, + "expectedQty": "83719622092916711916772383", + "swapFee": "49652452456268393180040", "reserves": [ - "27547218976951317476151425", - "59883596636678486791608695", - "47023193971617313336853120" - ] + "1000757917864985013407110359", + "179770852611316050125608026", + "345659674550906989518375022" + ], + "mAssetSupply": "1521547915353371645225782833", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "1049213576686715032043520", - "1554629131913039691382784", - "74079151774131646627840" + "8641840838872109877821440", + "2828608449009936454647808", + "1766476708941800853733376" ], - "expectedQty": "2679101415014592652207009", + "expectedQty": "13226429641976144566578638", "reserves": [ - "28596432553638032508194945", - "61438225768591526482991479", - "47097273123391444983480960" + "1009399758703857123284931799", + "182599461060325986580255834", + "347426151259848790372108398" ], - "mAssetSupply": "137073752377599926485335070" + "mAssetSupply": "1534774344995347789792361471" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "8534035262662765268959232", - "outputIndex": 2, - "expectedQty": "8554700848326195010440481", - "swapFee": "5139574064965801133116", + "type": "redeem", + "inputIndex": 2, + "inputQty": "559257688700371795968", + "expectedQty": "556086787267584516868", + "swapFee": "335554613220223077", "reserves": [ - "37130467816300797777154177", - "61438225768591526482991479", - "38542572275065249973040479" + "1009399758703857123284931799", + "182599461060325986580255834", + "347425595173061522787591530" ], - "mAssetSupply": "137078891951664892286468186", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1534773786073213702640788580" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1889257321828280904450048", - "expectedQty": "1892354771435748184865922", + "type": "mintMulti", + "inputQtys": [ + "37457494208737072644096", + "215537155510652496773120", + "285061078344919504912384" + ], + "expectedQty": "545064931936860232698483", "reserves": [ - "39019725138129078681604225", - "61438225768591526482991479", - "38542572275065249973040479" - ] + "1009437216198065860357575895", + "182814998215836639077028954", + "347710656251406442292503914" + ], + "mAssetSupply": "1535318851005150562873487063" }, { "type": "redeemMasset", - "inputQty": "10661566913856384204", + "inputQty": "436566264995095773603430", "expectedQtys": [ - "2992609024555580221", - "4711990877355164403", - "2956013893271531064" + "286946277682740364146788", + "51967653263457770633977", + "98841490011387523420101" ], - "redemptionFee": "3198470074156915", + "redemptionFee": "130969879498528732081", "reserves": [ - "39019722145520054126024004", - "61438221056600649127827076", - "38542569319051356701509415" + "1009150269920383119993429107", + "182763030562573181306394977", + "347611814761395054769083813" ], - "mAssetSupply": "138971236064732196689106819" + "mAssetSupply": "1534882415710034965628615714" }, { - "type": "redeemBassets", - "inputQtys": [ - "100547006780567510319104", - "166925073649904641900544", - "119124896604153159090176" - ], - "expectedQty": "386532342875076007788901", - "swapFee": "232058640909591359489", + "type": "redeem", + "inputIndex": 0, + "inputQty": "95576005283449365594112", + "expectedQty": "96617569419775202687037", + "swapFee": "57345603170069619356", "reserves": [ - "38919175138739486615704900", - "61271295982950744485926532", - "38423444422447203542419239" + "1009053652350963344790742070", + "182763030562573181306394977", + "347611814761395054769083813" ], - "mAssetSupply": "138584703721857120681317918" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "3668445736182903329521664", - "expectedQty": "3673041295162949198858187", - "reserves": [ - "38919175138739486615704900", - "61271295982950744485926532", - "42091890158630106871940903" - ] + "mAssetSupply": "1534786897050354686332640958" }, { - "type": "redeemMasset", - "inputQty": "29778452619737603191603", - "expectedQtys": [ - "8144408073428582744553", - "12821917111399975371588", - "8808345213169365949491" - ], - "redemptionFee": "8933535785921280957", + "type": "redeem", + "inputIndex": 1, + "inputQty": "16580298350940378454032384", + "expectedQty": "16080140466192058198907528", + "swapFee": "9948179010564227072419", "reserves": [ - "38911030730666058032960347", - "61258474065839344510554944", - "42083081813416937505991412" + "1009053652350963344790742070", + "166682890096381123107487449", + "347611814761395054769083813" ], - "mAssetSupply": "142227975497936118198265459" + "mAssetSupply": "1518216546878424872105680993" }, { "type": "redeemBassets", "inputQtys": [ - "84023165002594", - "239265847850129", - "44129794711692" + "14250066446281863942111232", + "6375765755309248154173440", + "7869186357057288360951808" ], - "expectedQty": "367091228302017", - "swapFee": "220386969162", + "expectedQty": "28575498160609165279838495", + "swapFee": "17155592251716529085354", "reserves": [ - "38911030730582034867957753", - "61258474065600078662704815", - "42083081813372807711279720" + "994803585904681480848630838", + "160307124341071874953314009", + "339742628404337766408132005" ], - "mAssetSupply": "142227975497569026969963442" + "mAssetSupply": "1489641048717815706825842498" }, { - "type": "redeemBassets", - "inputQtys": [ - "663302648579687710720", - "19974773386795765760", - "243992843800937234432" - ], - "expectedQty": "928613549299992533054", - "swapFee": "557502631158690734", + "type": "swap", + "inputIndex": 1, + "inputQty": "3971327891828576039731200", + "outputIndex": 0, + "expectedQty": "4156561077181351094718637", + "swapFee": "2464629493197972369476", "reserves": [ - "38910367427933455180247033", - "61258454090826691866939055", - "42082837820529006774045288" + "990647024827500129753912201", + "164278452232900450993045209", + "339742628404337766408132005" ], - "mAssetSupply": "142227046884019726977430388" + "mAssetSupply": "1489643513347308904798211974", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "8584667920987446470246", - "expectedQtys": [ - "2347882351447593938683", - "3696383579599967707540", - "2539311724584734539722" - ], - "redemptionFee": "2575400376296233941", + "type": "swap", + "inputIndex": 0, + "inputQty": "1021385188356693354872832", + "outputIndex": 1, + "expectedQty": "975525902377019922109378", + "swapFee": "605283023643926823139", "reserves": [ - "38908019545582007586308350", - "61254757707247091899231515", - "42080298508804422039505566" + "991668410015856823108785033", + "163302926330523431070935831", + "339742628404337766408132005" ], - "mAssetSupply": "142218464791499115827194083" + "mAssetSupply": "1489644118630332548725035113", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "59782048404718273691648", - "66100465937470256578560", - "85905704105603690921984" + "467683303855817162752", + "15505193968873568256", + "770117497567522193408" ], - "expectedQty": "211830625374178129300028", + "expectedQty": "1251918793301620159799", "reserves": [ - "38967801593986725859999998", - "61320858173184562155810075", - "42166204212910025730427550" + "991668877699160678925947785", + "163302941835717399944504087", + "339743398521835333930325413" ], - "mAssetSupply": "142430295416873293956494111" + "mAssetSupply": "1489645370549125850345194912" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "46165708844475555840", - "outputIndex": 0, - "expectedQty": "46100672856021640460", - "swapFee": "27725290438670684", + "inputIndex": 0, + "inputQty": "522884456295009741701120", + "outputIndex": 2, + "expectedQty": "513489922744610096988579", + "swapFee": "309842141034478639828", "reserves": [ - "38967755493313869838359538", - "61320858173184562155810075", - "42166250378618870205983390" + "992191762155455688667648905", + "163302941835717399944504087", + "339229908599090723833336834" ], - "mAssetSupply": "142430295444598584395164795", + "mAssetSupply": "1489645680391266884823834740", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "455163481025817", - "119933999400677", - "526526272456769" + "597447192805154357248", + "571313381525413822464", + "437903470226125291520" ], - "expectedQty": "1102651396932684", + "expectedQty": "1620746779506371016370", "reserves": [ - "38967755493769033319385355", - "61320858173304496155210752", - "42166250379145396478440159" + "992192359602648493822006153", + "163303513149098925358326551", + "339230346502560949958628354" ], - "mAssetSupply": "142430295445701235792097479" + "mAssetSupply": "1489647301138046391194851110" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "18623630698928943398912", - "9894603787910355353600", - "12452647853860149264384" + "41240287587785908224", + "179484227720846376960", + "239561575669758787584" ], - "expectedQty": "40993699855073834688389", + "expectedQty": "467046512136928081213", + "swapFee": "280396144969138331", "reserves": [ - "38986379124467962262784267", - "61330752777092406510564352", - "42178703026999256627704543" + "992192318362360906036097929", + "163303333664871204511949591", + "339230106940985280199840770" ], - "mAssetSupply": "142471289145556309626785868" + "mAssetSupply": "1489646834091534254266769897" }, { "type": "mintMulti", "inputQtys": [ - "9124143315302983680", - "382152732803883991040", - "9028551031475765510144" + "111511565979466988519424", + "60500426332157056647168", + "83689284803439110389760" ], - "expectedQty": "9427446946147853402860", + "expectedQty": "256783330434455100525186", "reserves": [ - "38986388248611277565767947", - "61331134929825210394555392", - "42187731578030732393214687" + "992303829928340373024617353", + "163363834091203361568596759", + "339313796225788719310230530" ], - "mAssetSupply": "142480716592502457480188728" + "mAssetSupply": "1489903617421968709367295083" }, { - "type": "redeemMasset", - "inputQty": "307655472259455936102", - "expectedQtys": [ - "84157194477792813433", - "132391239140160843455", - "91067710821243391790" + "type": "redeemBassets", + "inputQtys": [ + "11604514931792922624", + "5086306850679107584", + "8004338711389574144" ], - "redemptionFee": "92296641677836780", + "expectedQty": "24763357994713823562", + "swapFee": "14866934957802975", "reserves": [ - "38986304091416799772954514", - "61331002538586070233711937", - "42187640510319911149822897" + "992303818323825441231694729", + "163363829004896510889489175", + "339313788221450007920656386" ], - "mAssetSupply": "142480409029326839702089406" + "mAssetSupply": "1489903592658610714653471521" }, { - "type": "redeemBassets", - "inputQtys": [ - "325477950299489088", - "807136830014787712", - "4666810736670580736" + "type": "redeemMasset", + "inputQty": "649247544442854646271180", + "expectedQtys": [ + "432281353851579066334591", + "71166850180928042814616", + "147816647527007298995451" ], - "expectedQty": "5802609266014339585", - "swapFee": "3483655753060440", + "redemptionFee": "194774263332856393881", "reserves": [ - "38986303765938849473465426", - "61331001731449240218924225", - "42187635843509174479242161" + "991871536969973862165360138", + "163292662154715582846674559", + "339165971573923000621660935" ], - "mAssetSupply": "142480403226717573687749821" + "mAssetSupply": "1489254539888431192863594222" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "48820660323147852021760", - "expectedQty": "48745726922031976082969", - "swapFee": "29292396193888711213", + "inputQty": "2926754632966164849885184", + "expectedQty": "2909936762631594375011134", + "swapFee": "1756052779779698909931", "reserves": [ - "38986303765938849473465426", - "61331001731449240218924225", - "42138890116587142503159192" + "991871536969973862165360138", + "163292662154715582846674559", + "336256034811291406246649801" ], - "mAssetSupply": "142431611858790619724439274" + "mAssetSupply": "1486329541308244807712618969" }, { "type": "redeemMasset", - "inputQty": "11671140168094073854361", + "inputQty": "275758139455505015662182", "expectedQtys": [ - "3193659789193247619611", - "5024081155182422544990", - "3451911720960662186877" + "183966332512072012067769", + "30286535164125021186471", + "62366735210748898316052" ], - "redemptionFee": "3501342050428222156", + "redemptionFee": "82727441836651504698", "reserves": [ - "38983110106149656225845815", - "61325977650294057796379235", - "42135438204866181840972315" + "991687570637461790153292369", + "163262375619551457825488088", + "336193668076080657348333749" ], - "mAssetSupply": "142419944219964576078807069" + "mAssetSupply": "1486053865896231139348461485" }, { - "type": "mintMulti", - "inputQtys": [ - "20587186074406696779776", - "6249491074423928651776", - "14279340243756148326400" - ], - "expectedQty": "41151778474836727989789", + "type": "mint", + "inputIndex": 0, + "inputQty": "943867127569534336", + "expectedQty": "932102945397697377", "reserves": [ - "39003697292224062922625591", - "61332227141368481725031011", - "42149717545109937989298715" - ], - "mAssetSupply": "142461095998439412806796858" + "991687571581328917722826705", + "163262375619551457825488088", + "336193668076080657348333749" + ] }, { "type": "redeemMasset", - "inputQty": "13562250629596101738496", + "inputQty": "1650353659962172439632281", "expectedQtys": [ - "3712025525820656981127", - "5837056702559808185202", - "4011435794441250599873" + "1100999270118153542971652", + "181258454321710158680373", + "373251610464247339508076" ], - "redemptionFee": "4068675188878830521", + "redemptionFee": "495106097988651731889", "reserves": [ - "38999985266698242265644464", - "61326390084665921916845809", - "42145706109315496738698842" + "990586572311210764179855053", + "163081117165229747666807715", + "335820416465616410008825673" ], - "mAssetSupply": "142447537816485005583888883" + "mAssetSupply": "1484404008274469900958258470" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "3444244485049902287552512", - "outputIndex": 0, - "expectedQty": "3426188228400080387526521", - "swapFee": "2061798496402203722020", + "inputQty": "47702413607386185728", + "expectedQty": "46120287888390206830", + "swapFee": "28621448164431711", "reserves": [ - "35573797038298161878117943", - "64770634569715824204398321", - "42145706109315496738698842" + "990586572311210764179855053", + "163081071044941859276600885", + "335820416465616410008825673" ], - "mAssetSupply": "142449599614981407787610903", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1484403960600677741736504453" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "3445604221654081401257984", + "expectedQty": "3486888605287423056433434", + "swapFee": "2067362532992448840754", + "reserves": [ + "987099683705923341123421619", + "163081071044941859276600885", + "335820416465616410008825673" + ], + "mAssetSupply": "1480960423741556652784087223" }, { "type": "redeemMasset", - "inputQty": "36735575011122279874560", + "inputQty": "7993329718986285252608", "expectedQtys": [ - "9171186482061443349925", - "16698345907826578748815", - "10865472969628769980843" + "5326169455270886956666", + "879949040274642891993", + "1812011972205620702000" ], - "redemptionFee": "11020672503336683962", + "redemptionFee": "2397998915695885575", "reserves": [ - "35564625851816100434768018", - "64753936223807997625649506", - "42134840636345867968717999" + "987094357536468070236464953", + "163080191095901584633708892", + "335818604453644204388123673" ], - "mAssetSupply": "142412875060642788844420305" + "mAssetSupply": "1480952432809836582194720190" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "115740214654932468367360", - "outputIndex": 2, - "expectedQty": "115254339910622174149563", - "swapFee": "69255521441589029086", + "type": "mintMulti", + "inputQtys": [ + "37004182311072190955520", + "27423075084307007537152", + "1305672858800572596224" + ], + "expectedQty": "66198067323103984420063", "reserves": [ - "35564625851816100434768018", - "64869676438462930094016866", - "42019586296435245794568436" + "987131361718779142427420473", + "163107614170985891641246044", + "335819910126503004960719897" ], - "mAssetSupply": "142412944316164230433449391", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1481018630877159686179140253" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1202103044776539193344", - "expectedQty": "1203181220937000682402", + "type": "redeem", + "inputIndex": 1, + "inputQty": "23200505927976425095168", + "expectedQty": "22436138825728206594035", + "swapFee": "13920303556785855057", "reserves": [ - "35564625851816100434768018", - "64869676438462930094016866", - "42020788399480022333761780" - ] + "987131361718779142427420473", + "163085178032160163434652009", + "335819910126503004960719897" + ], + "mAssetSupply": "1480995444291535266539900142" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1486434272574526782963712", - "expectedQty": "1482283948867576254351538", + "type": "mintMulti", + "inputQtys": [ + "2523983164634836762624", + "806972817316574003200", + "2120674916617979166720" + ], + "expectedQty": "5458348384214837972077", "reserves": [ - "35564625851816100434768018", - "66356110711037456876980578", - "42020788399480022333761780" - ] + "987133885701943777264183097", + "163085985004977480008655209", + "335822030801419622939886617" + ], + "mAssetSupply": "1481000902639919481377872219" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "216995542471775969345536", - "370492168721365632811008", - "19869063667707151384576" + "2820080133044387331440640", + "4067747516786236297576448", + "91342577808038019727360" ], - "expectedQty": "606950236503139994162387", - "swapFee": "364388775166984187009", + "expectedQty": "7078040202350861512984559", "reserves": [ - "35347630309344324465422482", - "65985618542316091244169570", - "42000919335812315182377204" + "989953965834988164595623737", + "167153732521763716306231657", + "335913373379227660959613977" ], - "mAssetSupply": "143289481209749603694320944" + "mAssetSupply": "1488078942842270342890856778" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "372040776974948237312", - "expectedQty": "370982574188830281477", + "type": "mintMulti", + "inputQtys": [ + "207139168640952013160448", + "193858992065613997801472", + "23207403723196781821952" + ], + "expectedQty": "427999588248911404372297", "reserves": [ - "35347630309344324465422482", - "65985990583093066192406882", - "42000919335812315182377204" - ] + "990161105003629116608784185", + "167347591513829330304033129", + "335936580782950857741435929" + ], + "mAssetSupply": "1488506942430519254295229075" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "458748993160561098752", - "58169468353883496448", - "81109397288007630848" + "41912631946535023673344", + "86596573731075427139584", + "125972341245372568436736" ], - "expectedQty": "599277138579004798725", + "expectedQty": "257403567931246797886770", + "swapFee": "154534861675753530850", "reserves": [ - "35348089058337485026521234", - "65986048752561420075903330", - "42001000445209603190008052" + "990119192371682581585110841", + "167260994940098254876893545", + "335810608441705485172999193" ], - "mAssetSupply": "143290451469462371529401146" + "mAssetSupply": "1488249538862588007497342305" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "205035621442655497486336", - "expectedQty": "204311320577071292031318", - "swapFee": "123021372865593298491", + "inputIndex": 1, + "inputQty": "745025698860087040", + "expectedQty": "721523470622730390", + "swapFee": "447015419316052", "reserves": [ - "35143777737760413734489916", - "65986048752561420075903330", - "42001000445209603190008052" + "990119192371682581585110841", + "167260994218574784254163155", + "335810608441705485172999193" ], - "mAssetSupply": "143085538869392581625213301" + "mAssetSupply": "1488249538118009324056571317" }, { - "type": "redeemMasset", - "inputQty": "3008618674980471072358", - "expectedQtys": [ - "738736468958404102183", - "1387053521101933626293", - "882878072845215487321" - ], - "redemptionFee": "902585602494141321", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5090367732536368246554624", + "expectedQty": "4925049944116375950854184", + "swapFee": "3054220639521820947932", "reserves": [ - "35143039001291455330387733", - "65984661699040318142277037", - "42000117567136757974520731" + "990119192371682581585110841", + "162335944274458408303308971", + "335810608441705485172999193" ], - "mAssetSupply": "143082531153303203648282264" + "mAssetSupply": "1483162224606112477630964625" }, { "type": "mintMulti", "inputQtys": [ - "9506225485867279974400", - "39725064226110957420544", - "2822336606874920550400" + "27252444607669138882560", + "7356687293213541662720", + "151568087462581337325568" ], - "expectedQty": "51970757172135424977294", + "expectedQty": "186881829190524101159747", "reserves": [ - "35152545226777322610362133", - "66024386763266429099697581", - "42002939903743632895071131" + "990146444816290250723993401", + "162343300961751621844971691", + "335962176529168066510324761" ], - "mAssetSupply": "143134501910475339073259558" + "mAssetSupply": "1483349106435303001732124372" }, { "type": "mint", "inputIndex": 0, - "inputQty": "766278642743756062720", - "expectedQty": "768555548128994708854", + "inputQty": "3356669798500356096", + "expectedQty": "3314703532832351479", "reserves": [ - "35153311505420066366424853", - "66024386763266429099697581", - "42002939903743632895071131" + "990146448172960049224349497", + "162343300961751621844971691", + "335962176529168066510324761" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "30316133626677188100096", - "outputIndex": 0, - "expectedQty": "30236179391165325818382", - "swapFee": "18206657227369403625", + "type": "redeemBassets", + "inputQtys": [ + "387572081124", + "47149709857334", + "120435385655138" + ], + "expectedQty": "170200983813883", + "swapFee": "102181899427", "reserves": [ - "35123075326028901040606471", - "66024386763266429099697581", - "42033256037370310083171227" + "990146448172959661652268373", + "162343300961704472135114357", + "335962176529047631124669623" ], - "mAssetSupply": "143135288672680695437372037", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1483349109749836333580661968" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "400262344120965185667072", - "expectedQty": "399108544349565498577858", + "type": "redeemBassets", + "inputQtys": [ + "208880912526910160896", + "310334955961963249664", + "283395929908986511360" + ], + "expectedQty": "812028146414366677177", + "swapFee": "487509393484710832", "reserves": [ - "35123075326028901040606471", - "66424649107387394285364653", - "42033256037370310083171227" - ] + "990146239292047134742107477", + "162342990626748510171864693", + "335961893133117722138158263" + ], + "mAssetSupply": "1483348297721689919213984791" }, { "type": "mintMulti", "inputQtys": [ - "10100682015497576448", - "160795249726194122752", - "373899864482400567296" + "23042193235656270938112", + "65745775264611516284928", + "5718058126535595917312" ], - "expectedQty": "544716326118216378063", + "expectedQty": "96480435187062492817907", "reserves": [ - "35123085426710916538182919", - "66424809902637120479487405", - "42033629937234792483738523" + "990169281485282791013045589", + "162408736402013121688149621", + "335967611191244257734075575" ], - "mAssetSupply": "143534941933356379152327958" + "mAssetSupply": "1483444778156876981706802698" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "633912809819035546943488", - "expectedQty": "634482885307333949704101", + "inputIndex": 0, + "inputQty": "489788264048599364534272", + "expectedQty": "483664618931613046322407", "reserves": [ - "35123085426710916538182919", - "66424809902637120479487405", - "42667542747053828030682011" + "990659069749331390377579861", + "162408736402013121688149621", + "335967611191244257734075575" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "5253410646576809608478720", - "outputIndex": 0, - "expectedQty": "5229625563846862646420225", - "swapFee": "3153443624359507809405", + "type": "mintMulti", + "inputQtys": [ + "739432511853883507605504", + "268077608166733213859840", + "987292784232004723933184" + ], + "expectedQty": "1999829511100357199743387", "reserves": [ - "29893459862864053891762694", - "66424809902637120479487405", - "47920953393630637639160731" + "991398502261185273885185365", + "162676814010179854902009461", + "336954903975476262458008759" ], - "mAssetSupply": "144172578262288072609841464", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1485928272286908951952868492" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "10959187232382980096", - "expectedQty": "10925013885816749150", - "reserves": [ - "29893459862864053891762694", - "66424820861824352862467501", - "47920953393630637639160731" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "6353419198086566117376", - "7039887147515104985088", - "2947690713582262550528" - ], - "expectedQty": "16352019269265274152350", - "swapFee": "9817101822652756145", + "inputQty": "6832756177876394274979840", + "expectedQty": "6595302558141287816735296", + "swapFee": "4099653706725836564987", "reserves": [ - "29887106443665967325645318", - "66417780974676837757482413", - "47918005702917055376610203" + "991398502261185273885185365", + "156081511452038567085274165", + "336954903975476262458008759" ], - "mAssetSupply": "144156237168032693152438264" + "mAssetSupply": "1479099615762739283514453639" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1396660033521996267520", + "inputIndex": 0, + "inputQty": "9039211532448065536", "outputIndex": 2, - "expectedQty": "1392068530726875886795", - "swapFee": "835382658988870503", + "expectedQty": "8871207149943761136", + "swapFee": "5353338742337006", "reserves": [ - "29887106443665967325645318", - "66419177634710359753749933", - "47916613634386328500723408" + "991398511300396806333250901", + "156081511452038567085274165", + "336954895104269112514247623" ], - "mAssetSupply": "144156238003415352141308767", + "mAssetSupply": "1479099615768092622256790645", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3129307962161767250919424", - "expectedQty": "3136768803653923837844808", - "swapFee": "1877584777297060350551", + "type": "redeemMasset", + "inputQty": "91952922789523623824588", + "expectedQtys": [ + "61614945467144273544086", + "9700391625495233435227", + "20941586304688402621466" + ], + "redemptionFee": "27585876836857087147", "reserves": [ - "29887106443665967325645318", - "63282408831056435915905125", - "47916613634386328500723408" + "991336896354929662059706815", + "156071811060413071851838938", + "336933953517964424111626157" ], - "mAssetSupply": "141028807626030881950739894" + "mAssetSupply": "1479007690431179935490053204" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "198308675547106410496", - "outputIndex": 1, - "expectedQty": "199750092597204382929", - "swapFee": "119582075318502381", + "inputQty": "15399813070917558337536", + "expectedQty": "15592358314219402047411", + "swapFee": "9239887842550535002", "reserves": [ - "29887304752341514432055814", - "63282209080963838711522196", - "47916613634386328500723408" + "991321303996615442657659404", + "156071811060413071851838938", + "336933953517964424111626157" ], - "mAssetSupply": "141028807745612957269242275", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1478992299857996860482250670" }, { "type": "redeemMasset", - "inputQty": "144162707015332639277056", + "inputQty": "890470725640635013293670", "expectedQtys": [ - "30542285912476714918248", - "64669040548813770162288", - "48966707627406616238444" + "596675032194111185954712", + "93939424597883100965525", + "202800118137385427627526" ], - "redemptionFee": "43248812104599791783", + "redemptionFee": "267141217692190503988", "reserves": [ - "29856762466429037717137566", - "63217540040415024941359908", - "47867646926758921884484964" + "990724628964421331471704692", + "155977871635815188750873413", + "336731153399827038683998631" ], - "mAssetSupply": "140884688287409729229757002" + "mAssetSupply": "1478102096273573917659460988" }, { - "type": "redeemBassets", - "inputQtys": [ - "65124873058247491190784", - "32767496978468813406208", - "71581353046607742894080" - ], - "expectedQty": "169666312990095144041330", - "swapFee": "101860904336659081873", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6893693098438464355958784", + "expectedQty": "6633708887985722339720389", + "swapFee": "4136215859063078613575", "reserves": [ - "29791637593370790225946782", - "63184772543436556127953700", - "47796065573712314141590884" + "990724628964421331471704692", + "149344162747829466411153024", + "336731153399827038683998631" ], - "mAssetSupply": "140715021974419634085715672" + "mAssetSupply": "1471212539390994516382115779" }, { "type": "redeemBassets", "inputQtys": [ - "154929877033983020105728", - "371124853841004194693120", - "381251170337208703909888" + "12999141256820442789838848", + "9406464095618368895188992", + "33913230175947732832747520" ], - "expectedQty": "906810107689725851297869", - "swapFee": "544412712241180218910", + "expectedQty": "56742107328522409914422937", + "swapFee": "34065703819405089002054", "reserves": [ - "29636707716336807205841054", - "62813647689595551933260580", - "47414814403375105437680996" + "977725487707600888681865844", + "139937698652211097515964032", + "302817923223879305851251111" ], - "mAssetSupply": "139808211866729908234417803" + "mAssetSupply": "1414470432062472106467692842" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "16866228261350415532032", - "outputIndex": 1, - "expectedQty": "16988834792256997454070", - "swapFee": "10170430027611124698", + "inputIndex": 1, + "inputQty": "660807750723917571948544", + "outputIndex": 0, + "expectedQty": "700011655557991420796177", + "swapFee": "414071920322373702057", "reserves": [ - "29653573944598157621373086", - "62796658854803294935806510", - "47414814403375105437680996" + "977025476052042897261069667", + "140598506402935015087912576", + "302817923223879305851251111" ], - "mAssetSupply": "139808222037159935845542501", + "mAssetSupply": "1414470846134392428841394899", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "393168704283437120356352", - "417631884635571146981376", - "1333318796111851441618944" - ], - "expectedQty": "2144203078314724465590084", - "swapFee": "1287294223522948448423", + "type": "redeem", + "inputIndex": 2, + "inputQty": "7359824188980658524127232", + "expectedQty": "7299800189999103742088774", + "swapFee": "4415894513388395114476", "reserves": [ - "29260405240314720501016734", - "62379026970167723788825134", - "46081495607263253996062052" + "977025476052042897261069667", + "140598506402935015087912576", + "295518123033880202109162337" ], - "mAssetSupply": "137664018958845211379952417" + "mAssetSupply": "1407115437839925158712382143" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "12943369300322929344512", - "expectedQty": "13007754965803468043421", - "reserves": [ - "29273348609615043430361246", - "62379026970167723788825134", - "46081495607263253996062052" - ] - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2088402165959365369004032", - "expectedQty": "2087778430579696725543227", - "swapFee": "1253041299575619221402", + "type": "mintMulti", + "inputQtys": [ + "75670549646042416021504", + "66250473466143753371648", + "268371627402846598594560" + ], + "expectedQty": "414214363015175771058596", "reserves": [ - "29273348609615043430361246", - "62379026970167723788825134", - "43993717176683557270518825" + "977101146601688939677091171", + "140664756876401158841284224", + "295786494661283048707756897" ], - "mAssetSupply": "135589877589151225098213208" + "mAssetSupply": "1407529652202940334483440739" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "170967365346449980129280", - "148109333343915525275648", - "91374350508597908078592" + "69845297549476506894336", + "432119270625197806321664", + "80731255207597558464512" ], - "expectedQty": "410798964504553532117783", + "expectedQty": "601383003333186528712009", + "swapFee": "361046429857826613195", "reserves": [ - "29444315974961493410490526", - "62527136303511639314100782", - "44085091527192155178597417" + "977031301304139463170196835", + "140232637605775961034962560", + "295705763406075451149292385" ], - "mAssetSupply": "136000676553655778630330991" + "mAssetSupply": "1406928269199607147954728730" }, { - "type": "redeemMasset", - "inputQty": "134563122540262640844", - "expectedQtys": [ - "29124343814280005130", - "61847652259077602839", - "43606017671246846762" + "type": "redeemBassets", + "inputQtys": [ + "1486815629957245698048", + "1774741133695748931584", + "212033598574983151616" ], - "redemptionFee": "40368936762078792", + "expectedQty": "3531693059460075901543", + "swapFee": "2120288008481134221", "reserves": [ - "29444286850617679130485396", - "62527074455859380236497943", - "44085047921174483931750655" + "977029814488509505924498787", + "140230862864642265286030976", + "295705551372476876166140769" ], - "mAssetSupply": "136000542030902175129768939" + "mAssetSupply": "1406924737506547687878827187" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "88189823309618905088", - "expectedQty": "87724228215224983749", - "swapFee": "52913893985771343", + "inputIndex": 2, + "inputQty": "6982033281124465173856256", + "expectedQty": "6920639534245081831344873", + "swapFee": "4189219968674679104313", "reserves": [ - "29444199126389463905501647", - "62527074455859380236497943", - "44085047921174483931750655" + "977029814488509505924498787", + "140230862864642265286030976", + "288784911838231794334795896" ], - "mAssetSupply": "136000453893992759496635194" + "mAssetSupply": "1399946893445391897384075244" }, { - "type": "redeemBassets", - "inputQtys": [ - "23399154083801881116672", - "36588566612473524224", - "5299189163682836774912" - ], - "expectedQty": "28844265793282200659137", - "swapFee": "17316949645756774460", + "type": "swap", + "inputIndex": 2, + "inputQty": "5198519435083746799255552", + "outputIndex": 1, + "expectedQty": "5008515420907450310813045", + "swapFee": "3145151791430943120249", "reserves": [ - "29420799972305662024384975", - "62527037867292767762973719", - "44079748732010801094975743" + "977029814488509505924498787", + "135222347443734814975217931", + "293983431273315541134051448" ], - "mAssetSupply": "135971609628199477295976057" + "mAssetSupply": "1399950038597183328327195493", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "551854927227533918208", - "expectedQty": "550191532239345164921", + "inputIndex": 0, + "inputQty": "312334601864732785770496", + "expectedQty": "307500941802460044922781", "reserves": [ - "29420799972305662024384975", - "62527589722219995296891927", - "44079748732010801094975743" + "977342149090374238710269283", + "135222347443734814975217931", + "293983431273315541134051448" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8497958757501412311040", - "2315279768188068560896", - "10799422514610168659968" + "299580300844365905920", + "777627852257789476864", + "708205867106255896576" ], - "expectedQty": "21644212488039758461099", + "expectedQty": "1823634432322419144277", + "swapFee": "1094837561930609852", "reserves": [ - "29429297931063163436696015", - "62529905001988183365452823", - "44090548154525411263635711" + "977341849510073394344363363", + "135221569815882557185741067", + "293982723067448434878154872" ], - "mAssetSupply": "135993804032219756399602077" + "mAssetSupply": "1400255715904553465952973997" }, { "type": "mintMulti", "inputQtys": [ - "4895974816624629776384", - "5907603494426465271808", - "7388503057935155331072" + "6490043423126808808128512", + "6464797165416696145510400", + "1064468090632016624615424" ], - "expectedQty": "18196308398538419042240", + "expectedQty": "14225440527962544870205871", "reserves": [ - "29434193905879788066472399", - "62535812605482609830724631", - "44097936657583346418966783" + "983831892933200203152491875", + "141686366981299253331251467", + "295047191158080451502770296" ], - "mAssetSupply": "136012000340618294818644317" + "mAssetSupply": "1414481156432516010823179868" }, { - "type": "redeemMasset", - "inputQty": "173634017964183795636633", - "expectedQtys": [ - "37564656849495386591966", - "79809773246755628156899", - "56278893303818114181719" + "type": "mintMulti", + "inputQtys": [ + "5485718449629996997672960", + "9557204426169604481482752", + "29684275013417289375547392" ], - "redemptionFee": "52090205389255138690", + "expectedQty": "45252592392755684030150953", "reserves": [ - "29396629249030292679880433", - "62456002832235854202567732", - "44041657764279528304785064" + "989317611382830200150164835", + "151243571407468857812734219", + "324731466171497740878317688" ], - "mAssetSupply": "135838418412859500278146374" + "mAssetSupply": "1459733748825271694853330821" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "3659886629619778977792", - "expectedQty": "3668741846481299169755", - "swapFee": "2195931977771867386", + "inputIndex": 2, + "inputQty": "88870371976531505315840", + "expectedQty": "88295813201449389243592", + "swapFee": "53322223185918903189", "reserves": [ - "29396629249030292679880433", - "62452334090389372903397977", - "44041657764279528304785064" + "989317611382830200150164835", + "151243571407468857812734219", + "324643170358296291489074096" ], - "mAssetSupply": "135834760722161858271035968" + "mAssetSupply": "1459644931775518349266918170" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "31880312007344904994816", - "expectedQty": "31784238456315660825611", + "inputIndex": 0, + "inputQty": "10413241338485122640379904", + "expectedQty": "10271282908458996111981859", "reserves": [ - "29396629249030292679880433", - "62484214402396717808392793", - "44041657764279528304785064" + "999730852721315322790544739", + "151243571407468857812734219", + "324643170358296291489074096" ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "1892983725973451046912", - "expectedQty": "1892719426243500769537", + "inputQty": "193377249041784663703552", + "expectedQty": "194564069727475541192897", "reserves": [ - "29396629249030292679880433", - "62484214402396717808392793", - "44043550748005501755831976" + "999730852721315322790544739", + "151243571407468857812734219", + "324836547607338076152777648" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1173878992437957632", - "expectedQty": "1176722441776105768", - "swapFee": "704327395462774", + "type": "mintMulti", + "inputQtys": [ + "1328327445938181452595200", + "644382046487881082470400", + "226394518825132426788864" + ], + "expectedQty": "2207908326178588947098500", "reserves": [ - "29396629249030292679880433", - "62484213225674276032287025", - "44043550748005501755831976" + "1001059180167253504243139939", + "151887953453956738895204619", + "325062942126163208579566512" ], - "mAssetSupply": "135868436506869752390136258" + "mAssetSupply": "1472318687079883409867191426" }, { "type": "redeemMasset", - "inputQty": "3081703620939897792102", + "inputQty": "2061865929304540854406348", "expectedQtys": [ - "666560414021877752760", - "1416812202674924989702", - "998675296166908441849" + "1401483673315218423540012", + "212643259415908735546917", + "455088385597255442874364" ], - "redemptionFee": "924511086281969337", + "redemptionFee": "618559778791362256321", "reserves": [ - "29395962688616270802127673", - "62482796413471601107297323", - "44042552072709334847390127" + "999657696493938285819599927", + "151675310194540830159657702", + "324607853740565953136692148" ], - "mAssetSupply": "135865355727759898774313493" + "mAssetSupply": "1470257439710357660375041399" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "312190255022577956159488", - "expectedQty": "310519028503550891551897", - "swapFee": "187314153013546773695", + "type": "swap", + "inputIndex": 1, + "inputQty": "506185163181513003499520", + "outputIndex": 0, + "expectedQty": "533155647697507174097051", + "swapFee": "315714948236020840829", + "reserves": [ + "999124540846240778645502876", + "152181495357722343163157222", + "324607853740565953136692148" + ], + "mAssetSupply": "1470257755425305896395882228", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "3780108945279275124129792", + "outputIndex": 2, + "expectedQty": "3898252562710621395275434", + "swapFee": "2355113165221189492915", "reserves": [ - "29085443660112719910575776", - "62482796413471601107297323", - "44042552072709334847390127" + "999124540846240778645502876", + "155961604303001618287287014", + "320709601177855331741416714" ], - "mAssetSupply": "135553352786890334364927700" + "mAssetSupply": "1470260110538471117585375143", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "6818202824720329728", - "17732769563790778368", - "2413236769973015040" + "1574639112461697536", + "1976511816655085824", + "1100606112571602048" ], - "expectedQty": "26942695159959367673", - "swapFee": "16175322289349230", + "expectedQty": "4711619701832405726", + "swapFee": "2828669022512951", "reserves": [ - "29085436841909895190246048", - "62482778680702037316518955", - "44042549659472564874375087" + "999124539271601666183805340", + "155961602326489801632201190", + "320709600077249219169814666" ], - "mAssetSupply": "135553325844195174405560027" + "mAssetSupply": "1470260105826851415752969417" }, { - "type": "redeemMasset", - "inputQty": "891959610092167577", - "expectedQtys": [ - "191328776574680295", - "411021971818533927", - "289719119206571110" - ], - "redemptionFee": "267587883027650", + "type": "redeem", + "inputIndex": 2, + "inputQty": "275463694219849546858496", + "expectedQty": "273531190762353589198407", + "swapFee": "165278216531909728115", "reserves": [ - "29085436650581118615565753", - "62482778269680065497985028", - "44042549369753445667803977" + "999124539271601666183805340", + "155961602326489801632201190", + "320436068886486865580616259" ], - "mAssetSupply": "135553324952503152196420100" + "mAssetSupply": "1469984807410848098115839036" }, { "type": "redeemBassets", "inputQtys": [ - "90925108247429168234496", - "83177348587994866515968", - "30828558073379283795968" + "8554018032521818459340800", + "5865795304305557413822464", + "7550739050668456509702144" ], - "expectedQty": "205113034489471579493459", - "swapFee": "123141705717113215625", + "expectedQty": "22129733551496356803375866", + "swapFee": "13285811617868535203147", "reserves": [ - "28994511542333689447331257", - "62399600921092070631469060", - "44011720811680066384008009" + "990570521239079847724464540", + "150095807022184244218378726", + "312885329835818409070914115" ], - "mAssetSupply": "135348211918013680616926641" + "mAssetSupply": "1447855073859351741312463170" }, { - "type": "redeemBassets", - "inputQtys": [ - "169615456087656529920", - "207717020265883041792", - "240366557831555874816" - ], - "expectedQty": "617845989774679987194", - "swapFee": "370930151955981581", + "type": "swap", + "inputIndex": 1, + "inputQty": "27197642635354395782414336", + "outputIndex": 2, + "expectedQty": "27866827378157767612711974", + "swapFee": "16865280445571510657078", "reserves": [ - "28994341926877601790801337", - "62399393204071804748427268", - "44011480445122234828133193" + "990570521239079847724464540", + "177293449657538640000793062", + "285018502457660641458202141" ], - "mAssetSupply": "135347594072023905936939447" + "mAssetSupply": "1447871939139797312823120248", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "13238421955163594738892", - "expectedQtys": [ - "2835101603182392660201", - "6101487668063923713928", - "4303495457254331931617" - ], - "redemptionFee": "3971526586549078421", + "type": "mint", + "inputIndex": 1, + "inputQty": "15743755625729802371072", + "expectedQty": "16186839328282875208886", "reserves": [ - "28991506825274419398141136", - "62393291716403740824713340", - "44007176949664980496201576" - ], - "mAssetSupply": "135334359621595328891278976" + "990570521239079847724464540", + "177309193413164369803164134", + "285018502457660641458202141" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "491686289617530519552", + "expectedQty": "505522714166942873936", + "reserves": [ + "990570521239079847724464540", + "177309685099453987333683686", + "285018502457660641458202141" + ] }, { "type": "mintMulti", "inputQtys": [ - "1062329070870623551488", - "855533047362492694528", - "387903725455076753408" + "129418772334113080737792", + "74335474650294788292608", + "74429074156948302069760" ], - "expectedQty": "2308252046709777547446", + "expectedQty": "279314390567137390533763", "reserves": [ - "28992569154345290021692624", - "62394147249451103317407868", - "44007564853390435572954984" + "990699940011413960805202332", + "177384020574104282121976294", + "285092931531817589760271901" ], - "mAssetSupply": "135336667873642038668826422" + "mAssetSupply": "1448167945892406900031736833" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "10115797354134194176", - "outputIndex": 1, - "expectedQty": "10190100132907554385", - "swapFee": "6099029286305470", + "inputQty": "2140991500402998378496", + "expectedQty": "2113652911696259396131", "reserves": [ - "28992579270142644155886800", - "62394137059350970409853483", - "44007564853390435572954984" + "990702081002914363803580828", + "177384020574104282121976294", + "285092931531817589760271901" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "1505621005624205580959744", + "7392868638646917608243200", + "8360535476541743349891072" ], - "mAssetSupply": "135336667879741067955131892", - "hardLimitError": false, - "insufficientLiquidityError": false + "expectedQty": "17514515412044717504041166", + "reserves": [ + "992207702008538569384540572", + "184776889212751199730219494", + "293453467008359333110162973" + ], + "mAssetSupply": "1465684574957363313795174130" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "9941990907426967126016", - "expectedQty": "9937833389548025509467", - "swapFee": "5965194544456180275", + "inputQty": "148859463796842504308916224", + "expectedQty": "149465605551281329899367057", "reserves": [ - "28992579270142644155886800", - "62394137059350970409853483", - "43997627020000887547445517" - ], - "mAssetSupply": "135326731854028185444186151" + "992207702008538569384540572", + "184776889212751199730219494", + "442312930805201837419079197" + ] }, { "type": "mintMulti", "inputQtys": [ - "318017859850340266934272", - "1137070094370876552118272", - "715019307847087820898304" + "3431241449754834944", + "6506100821902031872", + "7003704301055441920" ], - "expectedQty": "2168041283029641509946768", + "expectedQty": "17093601968829556227", "reserves": [ - "29310597129992984422821072", - "63531207153721846961971755", - "44712646327847975368343821" + "992207705439780019139375516", + "184776895718852021632251366", + "442312937808906138474521117" ], - "mAssetSupply": "137494773137057826954132919" + "mAssetSupply": "1615150197602246612524097414" }, { - "type": "redeemMasset", - "inputQty": "17377597202992539369472", - "expectedQtys": [ - "3703376752157838071162", - "8027130752954180311664", - "5649416632613221480989" + "type": "redeemBassets", + "inputQtys": [ + "8615521759719875149824", + "18157192397752381734912", + "5073558304961053327360" ], - "redemptionFee": "5213279160897761810", + "expectedQty": "32268395293721214062476", + "swapFee": "19372660772696346245", "reserves": [ - "29306893753240826584749910", - "63523180022968892781660091", - "44706996911215362146862832" + "992199089918020299264225692", + "184758738526454269250516454", + "442307864250601177421193757" ], - "mAssetSupply": "137477400753133995312525257" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "21985567876935277608960", - "expectedQty": "21917668140400238015666", - "reserves": [ - "29306893753240826584749910", - "63545165590845828059269051", - "44706996911215362146862832" - ] + "mAssetSupply": "1615117929206952891310034938" }, { - "type": "redeemMasset", - "inputQty": "338730271340979", - "expectedQtys": [ - "72176022743389", - "156496875975133", - "110102873850139" + "type": "mintMulti", + "inputQtys": [ + "10070165283507447355408384", + "6995599479853275645214720", + "3973090589124507897692160" ], - "redemptionFee": "101619081402", + "expectedQty": "21133786367608831281584099", "reserves": [ - "29306893753168650562006521", - "63545165590689331183293918", - "44706996911105259273012693" + "1002269255201527746619634076", + "191754338006307544895731174", + "446280954839725685318885917" ], - "mAssetSupply": "137499318420935766898281346" + "mAssetSupply": "1636251715574561722591619037" }, { - "type": "redeemMasset", - "inputQty": "3930058311455336929689", - "expectedQtys": [ - "837409591258263743221", - "1815727439145079399379", - "1277449201031935524298" - ], - "redemptionFee": "1179017493436601078", + "type": "redeem", + "inputIndex": 2, + "inputQty": "24527762005722", + "expectedQty": "24488396750471", + "swapFee": "14716657203", "reserves": [ - "29306056343577392298263300", - "63543349863250186103894539", - "44705719461904227337488395" + "1002269255201527746619634076", + "191754338006307544895731174", + "446280954839701196922135446" ], - "mAssetSupply": "137495389541641804997952735" + "mAssetSupply": "1636251715574537209546270518" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "16914933394001856512", - "expectedQty": "16821520381826051754", - "swapFee": "10148960036401113", + "type": "swap", + "inputIndex": 2, + "inputQty": "41511523745216192", + "outputIndex": 1, + "expectedQty": "40471222478519318", + "swapFee": "24931984100568", "reserves": [ - "29306039522057010472211546", - "63543349863250186103894539", - "44705719461904227337488395" + "1002269255201527746619634076", + "191754337965836322417211856", + "446280954881212720667351638" ], - "mAssetSupply": "137495372636857371032497336" + "mAssetSupply": "1636251715574562141530371086", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "666541697435656", - "598856189546043", - "1167563859161707" + "type": "redeemMasset", + "inputQty": "2862597147014274", + "expectedQtys": [ + "1752928571591873", + "335370616231674", + "780527420858861" ], - "expectedQty": "2434189303133901", + "redemptionFee": "858779144104", "reserves": [ - "29306039522723552169647202", - "63543349863849042293440582", - "44705719463071791196650102" + "1002269255199774818048042203", + "191754337965500951800980182", + "446280954880432193246492777" ], - "mAssetSupply": "137495372639291560335631237" + "mAssetSupply": "1636251715571700403162500916" }, { "type": "redeemMasset", - "inputQty": "15649249410464901339545", + "inputQty": "752846609867836542156", "expectedQtys": [ - "3334511756045143185916", - "7230115382025615440718", - "5086724427450546714874" + "461010147320191938435", + "88200546047021286566", + "205274229143759732592" + ], + "redemptionFee": "225853982960350962", + "reserves": [ + "1002268794189627497856103768", + "191754249764954904779693616", + "446280749606203049486760185" + ], + "mAssetSupply": "1636250962950944518286309722" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "15371920866658994176", + "6279586197114186752", + "3050868539302424064" ], - "redemptionFee": "4694774823139470401", + "expectedQty": "24723606808389239114", + "swapFee": "14843069926989737", "reserves": [ - "29302705010967507026461286", - "63536119748467016677999864", - "44700632738644340649935228" + "1002268778817706631197109592", + "191754243485368707665506864", + "446280746555334510184336121" ], - "mAssetSupply": "137479728084655918573762093" + "mAssetSupply": "1636250938227337709897070608" }, { "type": "mintMulti", "inputQtys": [ - "223434535059546202701824", - "181289345463089539055616", - "168275447144523837210624" + "17693545956274244243423232", + "9005727976461415519092736", + "7956027141948025222463488" ], - "expectedQty": "573509629626226821770900", + "expectedQty": "34726455595632897368577343", "reserves": [ - "29526139546027053229163110", - "63717409093930106217055480", - "44868908185788864487145852" + "1019962324773980875440532824", + "200759971461830123184599600", + "454236773697282535406799609" ], - "mAssetSupply": "138053237714282145395532993" + "mAssetSupply": "1670977393822970607265647951" }, { "type": "redeemBassets", "inputQtys": [ - "393689947628672909312", - "332152568958380998656", - "402576045222530842624" + "6660183641590823351484416", + "3949921224552150550446080", + "6360246981086663350943744" ], - "expectedQty": "1129253091550670963659", - "swapFee": "677958630108467658", + "expectedQty": "17014044545099459305799990", + "swapFee": "10214555460335877109745", "reserves": [ - "29525745856079424556253798", - "63717076941361147836056824", - "44868505609743641956303228" + "1013302141132390052089048408", + "196810050237277972634153520", + "447876526716195872055855865" ], - "mAssetSupply": "138052108461190594724569334" + "mAssetSupply": "1653963349277871147959847961" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "596948961410481127424", - "outputIndex": 2, - "expectedQty": "599619526599202579756", - "swapFee": "359922652880184323", + "inputIndex": 1, + "inputQty": "1951439090743743386484736", + "outputIndex": 0, + "expectedQty": "2017815668367676654932732", + "swapFee": "1200156151918914556805", "reserves": [ - "29526342805040835037381222", - "63717076941361147836056824", - "44867905990217042753723472" + "1011284325464022375434115676", + "198761489328021716020638256", + "447876526716195872055855865" ], - "mAssetSupply": "138052108821113247604753657", + "mAssetSupply": "1653964549434023066874404766", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "287160967605689920", - "6742703129772660736", - "7331739856682651648" + "325093701141617115136", + "603024368210711281664", + "721734502426447183872" ], - "expectedQty": "14340981878497873790", - "swapFee": "8609754980086776", + "expectedQty": "1662561453355569437092", "reserves": [ - "29526342517879867431691302", - "63717070198658018063396088", - "44867898658477186071071824" + "1011284650557723517051230812", + "198762092352389926731919920", + "447877248450698298503039737" ], - "mAssetSupply": "138052094480131369106879867" + "mAssetSupply": "1653966211995476422443841858" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "441256664938464640237568", - "453714972197851498545152", - "947937685193171153190912" + "233193357404376956928", + "311859679963554643968", + "316508184100231708672" ], - "expectedQty": "1843529765250757177723364", - "swapFee": "1106781928307438769895", + "expectedQty": "867463415437819562243", "reserves": [ - "29085085852941402791453734", - "63263355226460166564850936", - "43919960973284014917880912" + "1011284883751080921428187740", + "198762404212069890286563888", + "447877564958882398734748409" ], - "mAssetSupply": "136208564714880611929156503" + "mAssetSupply": "1653967079458891860263404101" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "248444105881545965830144", - "366456351641082265600", - "15723614746953107111936" + "543186132090040929484800", + "143210263617925059444736", + "119840666800174621786112" ], - "expectedQty": "265742304624189884289628", + "expectedQty": "804870174418299670974488", + "swapFee": "483212031870101863702", "reserves": [ - "29333529958822948757283878", - "63263721682811807647116536", - "43935684588030968024992848" + "1010741697618990880498702940", + "198619193948451965227119152", + "447757724292082224112962297" ], - "mAssetSupply": "136474307019504801813446131" + "mAssetSupply": "1653162209284473560592429613" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "688493140051493870632960", - "outputIndex": 0, - "expectedQty": "682475108306675865889726", - "swapFee": "411801346535320800763", + "inputIndex": 0, + "inputQty": "22549745557871350465429504", + "outputIndex": 2, + "expectedQty": "22284682913172953749557293", + "swapFee": "13402300002221140956773", "reserves": [ - "28651054850516272891394152", - "63952214822863301517749496", - "43935684588030968024992848" + "1033291443176862230964132444", + "198619193948451965227119152", + "425473041378909270363405004" ], - "mAssetSupply": "136474718820851337134246894", + "mAssetSupply": "1653175611584475781733386386", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "21398957082150550110208", - "17172613547293828710400", - "11123280039975604715520" + "112847666839067443200", + "304567730195815858176", + "265926228817361240064" ], - "expectedQty": "49748969675618886065800", + "expectedQty": "690512545337343568433", + "swapFee": "414556260958981529", "reserves": [ - "28672453807598423441504360", - "63969387436410595346459896", - "43946807868070943629708368" + "1033291330329195391896689244", + "198618889380721769411260976", + "425472775452680453002164940" ], - "mAssetSupply": "136524467790526956020312694" + "mAssetSupply": "1653174921071930444389817953" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "7061213022852446420992", - "expectedQty": "7020472622922377205554", - "swapFee": "4236727813711467852", + "type": "redeemBassets", + "inputQtys": [ + "27691903211629854064640", + "21726114048307466600448", + "21000369697650852757504" + ], + "expectedQty": "70741458387568111942534", + "swapFee": "42470357246889000565", "reserves": [ - "28665433334975501064298806", - "63969387436410595346459896", - "43946807868070943629708368" + "1033263638425983762042624604", + "198597163266673461944660528", + "425451775082982802149407436" ], - "mAssetSupply": "136517410814231917285359554" + "mAssetSupply": "1653104179613542876277875419" }, { - "type": "redeemMasset", - "inputQty": "46405635653643973899059", - "expectedQtys": [ - "9741164705428907361862", - "21738249404489695932823", - "14934122527231767454259" - ], - "redemptionFee": "13921690696093192169", + "type": "mint", + "inputIndex": 2, + "inputQty": "278636719104221882875904", + "expectedQty": "279228562861444099144482", "reserves": [ - "28655692170270072156936944", - "63947649187006105650527073", - "43931873745543711862254109" - ], - "mAssetSupply": "136471019100268969404652664" + "1033263638425983762042624604", + "198597163266673461944660528", + "425730411802087024032283340" + ] }, { - "type": "redeemMasset", - "inputQty": "623830050271923302", - "expectedQtys": [ - "130950286151669614", - "292226860548596896", - "200759116338028110" - ], - "redemptionFee": "187149015081576", + "type": "mint", + "inputIndex": 0, + "inputQty": "75655088430787753672704", + "expectedQty": "74912549948764728946962", "reserves": [ - "28655692039319786005267330", - "63947648894779245101930177", - "43931873544784595524225999" - ], - "mAssetSupply": "136471018476626068147810938" + "1033339293514414549796297308", + "198597163266673461944660528", + "425730411802087024032283340" + ] }, { "type": "redeemMasset", - "inputQty": "1389441382920893549772", + "inputQty": "89445409679978531284582", "expectedQtys": [ - "291662363179126707066", - "650869724968021238431", - "447145859865354282035" + "55882707808015245153959", + "10740080548555466381717", + "23023384823399404086670" ], - "redemptionFee": "416832414876268064", + "redemptionFee": "26833622903993559385", "reserves": [ - "28655400376956606878560264", - "63946998025054277080691746", - "43931426398924730169943964" + "1033283410806606534551143349", + "198586423186124906478278811", + "425707388417263624628196670" ], - "mAssetSupply": "136469629452075562130529230" + "mAssetSupply": "1653368902150296010568241666" }, { - "type": "redeemMasset", - "inputQty": "194649386887759535066316", - "expectedQtys": [ - "40859514383907130697613", - "91181531273020285007152", - "62641482067578952782055" - ], - "redemptionFee": "58394816066327860519", + "type": "swap", + "inputIndex": 2, + "inputQty": "27989843090584333803585536", + "outputIndex": 0, + "expectedQty": "28283278695505197924420170", + "swapFee": "16821686846169082393139", "reserves": [ - "28614540862572699747862651", - "63855816493781256795684594", - "43868784916857151217161909" + "1005000132111101336626723179", + "198586423186124906478278811", + "453697231507847958431782206" ], - "mAssetSupply": "136275038460003868923323433" + "mAssetSupply": "1653385723837142179650634805", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "65470029883160346624", - "expectedQty": "65461946912066655860", + "inputQty": "692263213548377374457856", + "expectedQty": "691195238938767121970965", + "swapFee": "415357928129026424674", "reserves": [ - "28614540862572699747862651", - "63855816493781256795684594", - "43868850386887034377508533" - ] + "1005000132111101336626723179", + "198586423186124906478278811", + "453006036268909191309811241" + ], + "mAssetSupply": "1652693875981521931302601623" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "877310548827046718472192", - "1107890282908237772619776", - "833170367625228730761216" + "6164362647118237663232", + "14208932612604407316480", + "22344855877845243658240" ], - "expectedQty": "2819262115631743814547791", - "swapFee": "1692572813066886420581", - "reserves": [ - "27737230313745653029390459", - "62747926210873019023064818", - "43035680019261805646747317" - ], - "mAssetSupply": "133455841806319037175431502" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "28901607458992365240320", - "expectedQty": "28729741290437374783658", - "swapFee": "17340964475395419144", + "expectedQty": "43031735604894964406511", "reserves": [ - "27708500572455215654606801", - "62747926210873019023064818", - "43035680019261805646747317" + "1005006296473748454864386411", + "198600632118737510885595291", + "453028381124787036553469481" ], - "mAssetSupply": "133426957539824520205610326" + "mAssetSupply": "1652736907717126826267008134" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "449656111066114490368", - "expectedQty": "450877581307255105771", - "swapFee": "269793666639668694", + "inputQty": "15006838678387436151635968", + "expectedQty": "14610175435975698111328048", + "swapFee": "9004103207032461690981", "reserves": [ - "27708500572455215654606801", - "62747475333291711767959047", - "43035680019261805646747317" + "1005006296473748454864386411", + "183990456682761812774267243", + "453028381124787036553469481" ], - "mAssetSupply": "133426508153507120730788652" + "mAssetSupply": "1637739073141946422577063147" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "84726049433658", - "expectedQty": "84688664244149", - "swapFee": "50835629660", + "type": "redeemMasset", + "inputQty": "297994345922968682496", + "expectedQtys": [ + "182810774327798329623", + "33467887686989737761", + "82405920675796022823" + ], + "redemptionFee": "89398303776890604", "reserves": [ - "27708500572455215654606801", - "62747475333291711767959047", - "43035680019177116982503168" + "1005006113662974127066056788", + "183990423214874125784529482", + "453028298718866360757446658" ], - "mAssetSupply": "133426508153422445516984654" + "mAssetSupply": "1637738775236998803385271255" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "178293720500164829904896", - "expectedQty": "178212571446128696079658", - "swapFee": "106976232300098897942", + "type": "redeemBassets", + "inputQtys": [ + "47120858009187512", + "262839673351715584", + "292576033999615680" + ], + "expectedQty": "609813159731802561", + "swapFee": "366107560375306", "reserves": [ - "27708500572455215654606801", - "62747475333291711767959047", - "42857467447730988286423510" + "1005006113615853269056869276", + "183990422952034452432813898", + "453028298426290326757830978" ], - "mAssetSupply": "133248321409154580785977700" + "mAssetSupply": "1637738774627185643653468694" }, { - "type": "redeemMasset", - "inputQty": "3232167762363483684864", - "expectedQtys": [ - "671915816951377051460", - "1521591579448979367202", - "1039269886773868964396" + "type": "redeemBassets", + "inputQtys": [ + "14453623374440424275968", + "822895971544071536640", + "6928351456580081811456" ], - "redemptionFee": "969650328709045105", + "expectedQty": "22091226497919072776584", + "swapFee": "13262693514860359881", "reserves": [ - "27707828656638264277555341", - "62745953741712262788591845", - "42856428177844214417459114" + "1004991659992478828632593308", + "183989600056062908361277258", + "453021370074833746676019522" ], - "mAssetSupply": "133245090211042546011337941" + "mAssetSupply": "1637716683400687724580692110" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "684153612616661324529664", - "outputIndex": 0, - "expectedQty": "677640924976531132532268", - "swapFee": "409116726403232333260", + "type": "mint", + "inputIndex": 2, + "inputQty": "607712973604629222785024", + "expectedQty": "608125806590856912393269", "reserves": [ - "27030187731661733145023073", - "63430107354328924113121509", - "42856428177844214417459114" - ], - "mAssetSupply": "133245499327768949243671201", - "hardLimitError": false, - "insufficientLiquidityError": false + "1004991659992478828632593308", + "183989600056062908361277258", + "453629083048438375898804546" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "103100009992371967098880", - "expectedQty": "103694821488218869488658", + "inputIndex": 1, + "inputQty": "13449980530008281579520", + "expectedQty": "13835845143731630430779", "reserves": [ - "27133287741654105112121953", - "63430107354328924113121509", - "42856428177844214417459114" + "1004991659992478828632593308", + "184003050036592916642856778", + "453629083048438375898804546" ] }, { - "type": "redeemMasset", - "inputQty": "199015390061354701081804", - "expectedQtys": [ - "40482598304695280514438", - "94637095986969990528831", - "63941369111501763732062" + "type": "mintMulti", + "inputQtys": [ + "138246045555424042680320", + "37335238539013454299136", + "47779421979134706843648" ], - "redemptionFee": "59704617018406410324", + "expectedQty": "223106335901597700606224", "reserves": [ - "27092805143349409831607515", - "63335470258341954122592678", - "42792486808732712653727052" + "1005129906038034252675273628", + "184040385275131930097155914", + "453676862470417510605648194" ], - "mAssetSupply": "133150238463812831818488379" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "15863936020617152", - "expectedQty": "15809006448510052", - "reserves": [ - "27092805143349409831607515", - "63335470274205890143209830", - "42792486808732712653727052" - ] + "mAssetSupply": "1638561751388323910824122382" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "50539006518303039422464", - "expectedQty": "50219636451791446073374", - "swapFee": "30323403910981823653", + "inputQty": "17557044034075345626857472", + "expectedQty": "17718365787376250800745515", + "swapFee": "10534226420445207376114", "reserves": [ - "27042585506897618385534141", - "63335470274205890143209830", - "42792486808732712653727052" + "987411540250658001874528113", + "184040385275131930097155914", + "453676862470417510605648194" ], - "mAssetSupply": "133099729796507446209399620" + "mAssetSupply": "1621015241580669010404641024" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "10044824270300256403456", - "expectedQty": "10102742762271546165789", + "inputIndex": 2, + "inputQty": "78890887370453475655680", + "expectedQty": "78930179677903154595963", "reserves": [ - "27052630331167918641937597", - "63335470274205890143209830", - "42792486808732712653727052" + "987411540250658001874528113", + "184040385275131930097155914", + "453755753357787964081303874" ] }, + { + "type": "redeemMasset", + "inputQty": "4886590515161656301977", + "expectedQtys": [ + "2975538638296319421264", + "554600847843120122584", + "1367380997109480793619" + ], + "redemptionFee": "1465977154548496890", + "reserves": [ + "987408564712019705555106849", + "184039830674284086977033330", + "453754385976790854600510255" + ], + "mAssetSupply": "1621089286635808906451431900" + }, { "type": "mint", "inputIndex": 2, - "inputQty": "1238299303840654819328", - "expectedQty": "1238096269685318368416", + "inputQty": "2200622559898402981675008", + "expectedQty": "2201646631171993325988175", "reserves": [ - "27052630331167918641937597", - "63335470274205890143209830", - "42793725108036553308546380" + "987408564712019705555106849", + "184039830674284086977033330", + "455955008536689257582185263" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1441807326231065264128", - "expectedQty": "1450116730466461920636", + "type": "swap", + "inputIndex": 1, + "inputQty": "1515230825661792646070272", + "outputIndex": 0, + "expectedQty": "1571055556109730807907432", + "swapFee": "934261352162278010473", "reserves": [ - "27054072138494149707201725", - "63335470274205890143209830", - "42793725108036553308546380" - ] + "985837509155909974747199417", + "185555061499945879623103602", + "455955008536689257582185263" + ], + "mAssetSupply": "1623291867528333062055430548", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "3870852539436967133184", - "4133948579912342831104", - "2996085291638061531136" + "66177133667487007637504", + "681049756392673224163328", + "118178058422518175236096" + ], + "expectedQty": "883510839720414822371271", + "swapFee": "530424758687461370244", + "reserves": [ + "985771332022242487739561913", + "184874011743553206398940274", + "455836830478266739406949167" + ], + "mAssetSupply": "1622408356688612647233059277" + }, + { + "type": "mintMulti", + "inputQtys": [ + "18756489773256027095957504", + "2879382792804856626151424", + "9868065780193722139410432" ], - "expectedQty": "11008367374298595333089", - "swapFee": "6608985816068798478", + "expectedQty": "31409282333977689579236528", "reserves": [ - "27050201285954712740068541", - "63331336325625977800378726", - "42790729022744915247015244" + "1004527821795498514835519417", + "187753394536358063025091698", + "465704896258460461546359599" ], - "mAssetSupply": "133101512384895570940521372" + "mAssetSupply": "1653817639022590336812295805" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1747364873681024896204800", - "expectedQty": "1741154792851371014125644", + "inputQty": "321378284843551104", + "expectedQty": "330294438698073204", "reserves": [ - "27050201285954712740068541", - "65078701199307002696583526", - "42790729022744915247015244" + "1004527821795498514835519417", + "187753394857736347868642802", + "465704896258460461546359599" ] }, { - "type": "redeemMasset", - "inputQty": "736555738948046766787788", - "expectedQtys": [ - "147712917724441018366430", - "355374983507352311126202", - "233667149781524632492278" - ], - "redemptionFee": "220966721684414030036", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1498222023931206173720576", + "expectedQty": "1456591281181373570048934", + "swapFee": "898933214358723704232", "reserves": [ - "26902488368230271721702111", - "64723326215799650385457324", - "42557061872963390614522966" + "1004527821795498514835519417", + "186296803576554974298593868", + "465704896258460461546359599" ], - "mAssetSupply": "134106332405520579601889264" + "mAssetSupply": "1652320316262167928060352665" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "41406231149195061886976", - "expectedQty": "41654704002666397107592", + "inputQty": "4292207129096415608832", + "expectedQty": "4331151168163101169627", + "swapFee": "2575324277457849365", "reserves": [ - "26943894599379466783589087", - "64723326215799650385457324", - "42557061872963390614522966" - ] + "1004523490644330351734349790", + "186296803576554974298593868", + "465704896258460461546359599" + ], + "mAssetSupply": "1652316026630363109102593198" }, { - "type": "mintMulti", - "inputQtys": [ - "34738152705682573361152", - "115815795400825261522944", - "365405905232394958405632" - ], - "expectedQty": "515718261335684244660841", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1606840606889537425113088", + "expectedQty": "1621402318639490730233259", + "swapFee": "964104364133722455067", "reserves": [ - "26978632752085149356950239", - "64839142011200475646980268", - "42922467778195785572928598" + "1002902088325690861004116531", + "186296803576554974298593868", + "465704896258460461546359599" ], - "mAssetSupply": "134663705370858930243657697" + "mAssetSupply": "1650710150127837705399935177" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "121474913369227337400320", - "expectedQty": "121460655204899945478210", + "inputQty": "12898290735649602404352", + "outputIndex": 0, + "expectedQty": "13019577468142862772427", + "swapFee": "7741674441844140141", "reserves": [ - "26978632752085149356950239", - "64839142011200475646980268", - "43043942691565012910328918" - ] + "1002889068748222718141344104", + "186296803576554974298593868", + "465717794549196111148763951" + ], + "mAssetSupply": "1650710157869512147244075318", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "151165437575758708998144", - "expectedQtys": [ - "30248234834156102736723", - "72697145627159486304232", - "48260536354340840063441" + "type": "mintMulti", + "inputQtys": [ + "130617239257756966322176", + "176301722282253130661888", + "47507376882210048049152" ], - "redemptionFee": "45349631272727612699", + "expectedQty": "358145475968905837737033", "reserves": [ - "26948384517250993254213516", - "64766444865573316160676036", - "42995682155210672070265477" + "1003019685987480475107666280", + "186473105298837227429255756", + "465765301926078321196813103" ], - "mAssetSupply": "134634045938119344207750462" + "mAssetSupply": "1651068303345481053081812351" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "663305995516151168", - "398281041249602688", - "522819391231594560" + "241266640747010528", + "206092498404830112", + "115260077236468176" ], - "expectedQty": "1586911746293134595", + "expectedQty": "566137054692150476", + "swapFee": "339886164513998", "reserves": [ - "26948385180556988770364684", - "64766445263854357410278724", - "42995682678030063301860037" + "1003019685746213834360655752", + "186473105092744729024425644", + "465765301810818243960344927" ], - "mAssetSupply": "134634047525031090500885057" + "mAssetSupply": "1651068302779343998389661875" }, { "type": "redeemBassets", "inputQtys": [ - "263616997854449632", - "95212638986252681216", - "1366168850651912704" + "126802575645242451558400", + "203533291058393574801408", + "169368265330595161178112" ], - "expectedQty": "96499950733213039410", - "swapFee": "57934731278695040", + "expectedQty": "504267917733279703791787", + "swapFee": "302742396077614390909", "reserves": [ - "26948384916939990915915052", - "64766350051215371157597508", - "42995681311861212649947333" + "1002892883170568591909097352", + "186269571801686335449624236", + "465595933545487648799166815" ], - "mAssetSupply": "134633951025080357287845647" + "mAssetSupply": "1650564034861610718685870088" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "578122104882274893824", - "431987076761598361600", - "326974803470413266944" + "19713931666845299900416", + "20675144242751277629440", + "14526421402726330007552" ], - "expectedQty": "1338977401264398229821", + "expectedQty": "55313300568517884293194", + "swapFee": "33207905084161227312", "reserves": [ - "26948963039044873190808876", - "64766782038292132755959108", - "42996008286664683063214277" + "1002873169238901746609196936", + "186248896657443584171994796", + "465581407124084922469159263" ], - "mAssetSupply": "134635290002481621686075468" + "mAssetSupply": "1650508721561042200801576894" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "250665306472514781708288", - "outputIndex": 1, - "expectedQty": "251379255983479279569840", - "swapFee": "150377031838664959721", + "inputIndex": 1, + "inputQty": "4466094965489157143527424", + "outputIndex": 0, + "expectedQty": "4629127538521416316553403", + "swapFee": "2753214327773435888302", "reserves": [ - "26948963039044873190808876", - "64515402782308653476389268", - "43246673593137197844922565" + "998244041700380330292643533", + "190714991622932741315522220", + "465581407124084922469159263" ], - "mAssetSupply": "134635440379513460351035189", + "mAssetSupply": "1650511474775369974237465196", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "548164686797875428982784", - "expectedQty": "548041437552743193208429", - "reserves": [ - "26948963039044873190808876", - "64515402782308653476389268", - "43794838279935073273905349" - ] - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "1649215302092849479155712", - "expectedQty": "1653950880065776023017048", - "swapFee": "989529181255709687493", + "inputQty": "1012760249352940439994368", + "expectedQty": "985804667048224473088954", + "swapFee": "607656149611764263996", "reserves": [ - "26948963039044873190808876", - "62861451902242877453372220", - "43794838279935073273905349" + "998244041700380330292643533", + "189729186955884516842433266", + "465581407124084922469159263" ], - "mAssetSupply": "133535256044154609774775399" + "mAssetSupply": "1649499322182166645561734824" }, { - "type": "redeemMasset", - "inputQty": "141375429062551302202982", - "expectedQtys": [ - "28522641502351023925866", - "66532231846071882670827", - "46352227731442230152149" - ], - "redemptionFee": "42412628718765390660", + "type": "mint", + "inputIndex": 0, + "inputQty": "1305167089928301734526976", + "expectedQty": "1292959101355514989237027", "reserves": [ - "26920440397542522166883010", - "62794919670396805570701393", - "43748486052203631043753200" - ], - "mAssetSupply": "133393923027720777237963077" + "999549208790308632027170509", + "189729186955884516842433266", + "465581407124084922469159263" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "45629370297374866407424", - "outputIndex": 0, - "expectedQty": "45318673860258812428278", - "swapFee": "27367718205213652420", + "type": "redeemBassets", + "inputQtys": [ + "135772865916064101302272", + "1869206685995996477915136", + "1522859515867964385525760" + ], + "expectedQty": "3577967428900638257695693", + "swapFee": "2148069298919734795494", "reserves": [ - "26875121723682263354454732", - "62794919670396805570701393", - "43794115422501005910160624" + "999413435924392567925868237", + "187859980269888520364518130", + "464058547608216958083633503" ], - "mAssetSupply": "133393950395438982451615497", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1647214313854621522293276158" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "68472487246763537727488", - "expectedQty": "68456422898617819460243", - "swapFee": "41083492348058122636", + "type": "redeemMasset", + "inputQty": "22011032762205256181350", + "expectedQtys": [ + "13350735395865739157620", + "2509540894590874807218", + "6199159081323148121431" + ], + "redemptionFee": "6603309828661576854", "reserves": [ - "26875121723682263354454732", - "62794919670396805570701393", - "43725658999602388090700381" + "999400085188996702186710617", + "187857470728993929489710912", + "464052348449135634935512072" ], - "mAssetSupply": "133325518991684566972010645" + "mAssetSupply": "1647192309425169145698671662" }, { - "type": "mintMulti", - "inputQtys": [ - "2832966510879461867520", - "5149280760864952025088", - "1905214532026793459712" - ], - "expectedQty": "9886018389646088511727", + "type": "mint", + "inputIndex": 0, + "inputQty": "221766496001684275200", + "expectedQty": "219668448624920797151", "reserves": [ - "26877954690193142816322252", - "62800068951157670522726481", - "43727564214134414884160093" - ], - "mAssetSupply": "133335405010074213060522372" + "999400306955492703870985817", + "187857470728993929489710912", + "464052348449135634935512072" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "46596826087187365756928", - "519632038196460751159296", - "99973147444614143148032" + "1778150589775460171776", + "18877887199700578205696", + "7603972966788581294080" ], - "expectedQty": "664672150006656093655648", + "expectedQty": "28764233275273936486383", + "swapFee": "17268901305947930650", "reserves": [ - "26924551516280330182079180", - "63319700989354131273885777", - "43827537361579029027308125" + "999398528804902928410814041", + "187838592841794228911505216", + "464044744476168846354217992" ], - "mAssetSupply": "134000077160080869154178020" + "mAssetSupply": "1647163764860342496682982430" }, { - "type": "redeemMasset", - "inputQty": "14183298064808147314278", - "expectedQtys": [ - "2848986238110839865569", - "6700091424396931960557", - "4637553599283777045057" - ], - "redemptionFee": "4254989419442444194", + "type": "mint", + "inputIndex": 1, + "inputQty": "21361569926431557812224", + "expectedQty": "21947772247402636793178", "reserves": [ - "26921702530042219342213611", - "63313000897929734341925220", - "43822899807979745250263068" - ], - "mAssetSupply": "133985898117005480449307936" + "999398528804902928410814041", + "187859954411720660469317440", + "464044744476168846354217992" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2873897917706963779584", - "2476373372049769889792", - "4887307578164497088512" + "58478854210173599744", + "39867967403603566592", + "457601490512734781440" ], - "expectedQty": "10244529776868708490397", - "swapFee": "6150408110987817784", + "expectedQty": "556669163509201143289", + "swapFee": "334202019317110952", "reserves": [ - "26918828632124512378434027", - "63310524524557684572035428", - "43818012500401580753174556" + "999398470326048718237214297", + "187859914543753256865750848", + "464044286874678333619436552" ], - "mAssetSupply": "133975653587228611740817539" + "mAssetSupply": "1647185155963426390118632319" }, { "type": "mintMulti", "inputQtys": [ - "403052236579585080164352", - "179144401449856534577152", - "202704536835238752419840" + "2424675571001208602624", + "2741309430358376185856", + "5504956017677133938688" ], - "expectedQty": "786591829669050171883179", + "expectedQty": "10725386923560806512862", "reserves": [ - "27321880868704097458598379", - "63489668926007541106612580", - "44020717037236819505594396" + "999400895001619719445816921", + "187862655853183615241936704", + "464049791830696010753375240" ], - "mAssetSupply": "134762245416897661912700718" + "mAssetSupply": "1647195881350349950925145181" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1215792142982420671496192", - "56072352781885121757184", - "1527645640087654987988992" + "41394108296317305356288", + "9309861088379677966336", + "33585031247898278363136" ], - "expectedQty": "2805573480964083582485588", + "expectedQty": "84166064424942147585370", + "swapFee": "50529956628942654143", "reserves": [ - "28537673011686518130094571", - "63545741278789426228369764", - "45548362677324474493583388" + "999359500893323402140460633", + "187853345992095235563970368", + "464016206799448112475012104" ], - "mAssetSupply": "137567818897861745495186306" + "mAssetSupply": "1647111715285925008777559811" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "18346967440636493824", - "outputIndex": 0, - "expectedQty": "18180486507571361362", - "swapFee": "10973603744466454", + "type": "mintMulti", + "inputQtys": [ + "36956980671059099648", + "37100384174533582848", + "15407192627538335744" + ], + "expectedQty": "90138964751827312967", "reserves": [ - "28537654831200010558733209", - "63545759625756866864863588", - "45548362677324474493583388" + "999359537850304073199560281", + "187853383092479410097553216", + "464016222206640740013347848" ], - "mAssetSupply": "137567818908835349239652760", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1647111805424889760604872778" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "523739555344982933504", - "15269334232766044160", - "916829136956769697792" + "196456404641565", + "205817612103133", + "68559026439708" ], - "expectedQty": "1458247358262648615428", + "expectedQty": "474648747625227", + "swapFee": "284960224709", "reserves": [ - "28538178570755355541666713", - "63545774895091099630907748", - "45549279506461431263281180" + "999359537850107616794918716", + "187853383092273592485450083", + "464016222206572180986908140" ], - "mAssetSupply": "137569277156193611888268188" + "mAssetSupply": "1647111805424415111857247551" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "106873147638575464972288", - "expectedQty": "107145014459506051130520", - "swapFee": "64123888583145278983", + "inputQty": "23566175934023084269371392", + "expectedQty": "24139335569723372900234999", "reserves": [ - "28538178570755355541666713", - "63438629880631593579777228", - "45549279506461431263281180" - ], - "mAssetSupply": "137462468132443619568574883" + "999359537850107616794918716", + "211419559026296676754821475", + "464016222206572180986908140" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "52852062462091968118784", - "6480139608194842361856", - "42759264383019035656192" - ], - "expectedQty": "102338322200905023096185", - "swapFee": "61439857234883944224", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3178324679345148079898624", + "expectedQty": "3203527764188840085482766", + "swapFee": "1906994807607088847939", "reserves": [ - "28485326508293263573547929", - "63432149741023398737415372", - "45506520242078412227624988" + "996156010085918776709435950", + "211419559026296676754821475", + "464016222206572180986908140" ], - "mAssetSupply": "137360129810242714545478698" + "mAssetSupply": "1668074723309600943766431865" }, { - "type": "mintMulti", - "inputQtys": [ - "10856568078468124", - "50815186491851128", - "62668121858489368" + "type": "redeemMasset", + "inputQty": "2029394714317103615180", + "expectedQtys": [ + "1211568783544251938687", + "257137772952711966904", + "564356952316261286690" ], - "expectedQty": "124213736562453301", + "redemptionFee": "608818414295131084", "reserves": [ - "28485326519149831652016053", - "63432149791838585229266500", - "45506520304746534086114356" + "996154798517135232457497263", + "211419301888523724042854571", + "464015657849619864725621450" ], - "mAssetSupply": "137360129934456451107931999" + "mAssetSupply": "1668072694523705040957947769" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "311875674451560013758464", - "1236318305541474123513856", - "2364144821181048602755072" + "113317030093070598144", + "169324324081826267136", + "8003803780814301184" ], - "expectedQty": "3909406131717223223490128", - "swapFee": "2347051910176439797972", + "expectedQty": "293322484633336029438", "reserves": [ - "28173450844698271638257589", - "62195831486297111105752644", - "43142375483565485483359284" + "996154911834165325528095407", + "211419471212847805869121707", + "464015665853423645539922634" ], - "mAssetSupply": "133450723802739227884441871" + "mAssetSupply": "1668072987846189674293977207" }, { "type": "redeemMasset", - "inputQty": "81931535165953199308", + "inputQty": "717686455953903001", "expectedQtys": [ - "17291787744936124265", - "38173425137348762073", - "26479141791554284409" + "428465909703203406", + "90935691814631487", + "199582305949139852" ], - "redemptionFee": "24579460549785959", + "redemptionFee": "215305936786170", "reserves": [ - "28173433552910526702133324", - "62195793312871973756990571", - "43142349004423693929074875" + "996154911405699415824892001", + "211419471121912114054490220", + "464015665653841339590782782" ], - "mAssetSupply": "133450641895783522481028522" + "mAssetSupply": "1668072987128718524276860376" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2484480559280601195085824", - "expectedQty": "2482880904591918800339899", - "swapFee": "1490688335568360717051", + "type": "mint", + "inputIndex": 0, + "inputQty": "21405870294109875968409600", + "expectedQty": "21222400908343866316772277", "reserves": [ - "28173433552910526702133324", - "62195793312871973756990571", - "40659468099831775128734976" - ], - "mAssetSupply": "130967652024838489646659749" + "1017560781699809291793301601", + "211419471121912114054490220", + "464015665653841339590782782" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "777018121682174311661568", - "314348560246984537014272", - "301828118615261630693376" + "type": "redeemMasset", + "inputQty": "1644802507531854364960358", + "expectedQtys": [ + "990462906130671025528861", + "205789322412972667324957", + "451658822705340139594907" ], - "expectedQty": "1396061990627869423261664", - "swapFee": "838140078423775919508", + "redemptionFee": "493440752259556309488", "reserves": [ - "27396415431228352390471756", - "61881444752624989219976299", - "40357639981216513498041600" + "1016570318793678620767772740", + "211213681799499141387165263", + "463564006831135999451187875" ], - "mAssetSupply": "129571590034210620223398085" + "mAssetSupply": "1687651078970282795784981783" }, { - "type": "mintMulti", - "inputQtys": [ - "333191817410173013590016", - "325318327516784609984512", - "368193704973489129127936" + "type": "redeemMasset", + "inputQty": "74242407555557590512435", + "expectedQtys": [ + "44707100341158218225620", + "9288832352336421218973", + "20386787008046789981793" ], - "expectedQty": "1027357893239491658586807", + "redemptionFee": "22272722266667277153", "reserves": [ - "27729607248638525404061772", - "62206763080141773829960811", - "40725833686190002627169536" + "1016525611693337462549547120", + "211204392967146804965946290", + "463543620044127952661206082" ], - "mAssetSupply": "130598947927450111881984892" + "mAssetSupply": "1687576858835449504861746501" }, { "type": "mint", "inputIndex": 0, - "inputQty": "918627050927750784", - "expectedQty": "923258062234393414", + "inputQty": "2072743630837704334245888", + "expectedQty": "2054687602463541632096212", "reserves": [ - "27729608167265576331812556", - "62206763080141773829960811", - "40725833686190002627169536" + "1018598355324175166883793008", + "211204392967146804965946290", + "463543620044127952661206082" ] }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "937274793139474037473280", - "expectedQty": "936460058299618201310009", - "swapFee": "562364875883684422483", + "inputIndex": 1, + "inputQty": "235546584583843509960704", + "expectedQty": "230264307082503737644187", + "swapFee": "141327950750306105976", "reserves": [ - "27729608167265576331812556", - "62206763080141773829960811", - "39789373627890384425859527" + "1018598355324175166883793008", + "210974128660064301228302103", + "463543620044127952661206082" ], - "mAssetSupply": "129662236422444583763327509" + "mAssetSupply": "1689396141181279953289987985" }, { "type": "swap", "inputIndex": 2, - "inputQty": "1788937657413587299205120", + "inputQty": "6862926056449647979790336", "outputIndex": 1, - "expectedQty": "1794041962638980669844576", - "swapFee": "1073573541079017337640", + "expectedQty": "6709179956189419765858153", + "swapFee": "4121454009998857657060", "reserves": [ - "27729608167265576331812556", - "60412721117502793160116235", - "41578311285303971725064647" + "1018598355324175166883793008", + "204264948703874881462443950", + "470406546100577600640996418" ], - "mAssetSupply": "129663309995985662780665149", + "mAssetSupply": "1689400262635289952147645045", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "117233093638759616", - "expectedQty": "117534057467942353", - "swapFee": "70339856183255", + "type": "redeemMasset", + "inputQty": "7884128506933341795123", + "expectedQtys": [ + "4752190040330791729389", + "952981957751444819028", + "2194644524606681749351" + ], + "redemptionFee": "2365238552080002538", "reserves": [ - "27729608167265576331812556", - "60412720999968735692173882", - "41578311285303971725064647" + "1018593603134134836092063619", + "204263995721917130017624922", + "470404351456052993959247067" ], - "mAssetSupply": "129663309878822908998088788" + "mAssetSupply": "1689392380872021570885852460" }, { "type": "redeemBassets", "inputQtys": [ - "10294116062764231294976", - "16825466809823134744576", - "22455567695888269705216" + "4922584609624914913132544", + "2877605187368436782596096", + "1478365556580600516706304" ], - "expectedQty": "49571151342127060423775", - "swapFee": "29760547133556370076", + "expectedQty": "9305149257860760882060357", + "swapFee": "5586441419568197447704", "reserves": [ - "27719314051202812100517580", - "60395895533158912557429306", - "41555855717608083455359431" + "1013671018524509921178931075", + "201386390534548693235028826", + "468925985899472393442540763" ], - "mAssetSupply": "129613738727480781937665013" + "mAssetSupply": "1680087231614160810003792103" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1212963073150546944", - "2139412695809908992", - "1711509714515294464" - ], - "expectedQty": "5062974092089380629", - "swapFee": "3039608220185739", - "reserves": [ - "27719312838239738949970636", - "60395893393746216747520314", - "41555854006098368940064967" + "10787159617602376521744384", + "31656315012758428236906496", + "35108259193316137471311872" ], - "mAssetSupply": "129613733664506689848284384" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "92722876035065274433536", - "expectedQty": "92671969274554893621430", - "swapFee": "55633725621039164660", + "expectedQty": "78161115936756665889076087", "reserves": [ - "27719312838239738949970636", - "60395893393746216747520314", - "41463182036823814046443537" + "1024458178142112297700675459", + "233042705547307121471935322", + "504034245092788530913852635" ], - "mAssetSupply": "129521066422197245613015508" + "mAssetSupply": "1758248347550917475892868190" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "3758368339486642274304", + "inputIndex": 0, + "inputQty": "3654577665030589029285888", "outputIndex": 2, - "expectedQty": "3744383930372538831133", - "swapFee": "2247882360351902571", + "expectedQty": "3622473564853027442991558", + "swapFee": "2175791255726529068072", "reserves": [ - "27719312838239738949970636", - "60399651762085703389794618", - "41459437652893441507612404" + "1028112755807142886729961347", + "233042705547307121471935322", + "500411771527935503470861077" ], - "mAssetSupply": "129521068670079605964918079", + "mAssetSupply": "1758250523342173202421936262", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "285882233357976341577728", - "250484962002965956132864", - "128076509796107900944384" + "17431948994722897330176", + "76628999088923515813888", + "14474309424600420712448" ], - "expectedQty": "665052014736542431777593", - "swapFee": "399270771304708284036", + "expectedQty": "109863128081190176728092", "reserves": [ - "27433430604881762608392908", - "60149166800082737433661754", - "41331361143097333606668020" + "1028130187756137609627291523", + "233119334546396044987749210", + "500426245837360103891573525" ], - "mAssetSupply": "128856016655343063533140486" + "mAssetSupply": "1758360386470254392598664354" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "143533970612189879336960", - "194021014151704799608832", - "359736057264145554210816" + "8746213150703228928", + "39576975038876311552", + "8945952527710841856" ], - "expectedQty": "697365820818739245539378", - "swapFee": "418670694908188460399", + "expectedQty": "57957461865973245593", "reserves": [ - "27289896634269572729055948", - "59955145785931032634052922", - "40971625085833188052457204" + "1028130196502350760330520451", + "233119374123371083864060762", + "500426254783312631602415381" ], - "mAssetSupply": "128158650834524324287601108" + "mAssetSupply": "1758360444427716258571909947" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9969342317371453440", - "expectedQty": "9995408065814144210", - "swapFee": "5981605390422872", + "type": "redeemMasset", + "inputQty": "5377714675903790422425", + "expectedQtys": [ + "3143457967752196737662", + "712751124826864863025", + "1530028884690381930187" + ], + "redemptionFee": "1613314402771137126", "reserves": [ - "27289896634269572729055948", - "59955135790522966819908712", - "40971625085833188052457204" + "1028127053044383008133782789", + "233118661372246256999197737", + "500424724754427941220485194" ], - "mAssetSupply": "128158640871163612306570540" + "mAssetSupply": "1758355068326354757552624648" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1348442466061932298240", + "expectedQty": "1337956300614807048044", + "reserves": [ + "1028128401486849070066081029", + "233118661372246256999197737", + "500424724754427941220485194" + ] }, { "type": "redeemBassets", "inputQtys": [ - "202805503733499166720", - "9551390835110557696", - "339870786573721468928" + "20511182507597278358798336", + "6494984194517812438368256", + "7620132194147449440305152" ], - "expectedQty": "553193092389500444255", - "swapFee": "332115124508405309", + "expectedQty": "34594432563062335540104630", + "swapFee": "20769121010443667524577", "reserves": [ - "27289693828765839229889228", - "59955126239132131709351016", - "40971285215046614330988276" + "1007617218979251791707282693", + "226623677177728444560829481", + "492804592560280491780180042" ], - "mAssetSupply": "128158087678071222806126285" + "mAssetSupply": "1723761973719593036819568062" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "38644767679041106870272", - "expectedQty": "38429997563600963491391", - "swapFee": "23186860607424664122", + "type": "mintMulti", + "inputQtys": [ + "48122294917212930048000", + "98167072905290147954688", + "167641813615495385972736" + ], + "expectedQty": "315524756585270707667257", "reserves": [ - "27251263831202238266397837", - "59955126239132131709351016", - "40971285215046614330988276" + "1007665341274169004637330693", + "226721844250633734708784169", + "492972234373895987166152778" ], - "mAssetSupply": "128119466097252789123920135" + "mAssetSupply": "1724077498476178307527235319" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "98371157260008010285056", - "outputIndex": 2, - "expectedQty": "98803244962130182066618", - "swapFee": "59316122603731935512", + "type": "redeemMasset", + "inputQty": "99850853357817574", + "expectedQtys": [ + "58341959361430907", + "13126775410270050", + "28542180509838782" + ], + "redemptionFee": "29955256007345", "reserves": [ - "27349634988462246276682893", - "59955126239132131709351016", - "40872481970084484148921658" + "1007665341215827045275899786", + "226721844237506959298514119", + "492972234345353806656313996" ], - "mAssetSupply": "128119525413375392855855647", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1724077498376357409425425090" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "5207445909223621263360", - "expectedQty": "5207361601728018336415", + "inputIndex": 1, + "inputQty": "27045296929595825292574720", + "expectedQty": "27510508580353603536714029", "reserves": [ - "27349634988462246276682893", - "59955126239132131709351016", - "40877689415993707770185018" + "1007665341215827045275899786", + "253767141167102784591088839", + "492972234345353806656313996" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "5977042824188153475104768", - "outputIndex": 0, - "expectedQty": "5926356009595868798120496", - "swapFee": "3584544927429180494667", + "type": "mint", + "inputIndex": 0, + "inputQty": "8204525522172257375354880", + "expectedQty": "8146444275479401310176664", "reserves": [ - "21423278978866377478562397", - "59955126239132131709351016", - "46854732240181861245289786" - ], - "mAssetSupply": "128128317319904550054686729", - "hardLimitError": false, - "insufficientLiquidityError": false + "1015869866737999302651254666", + "253767141167102784591088839", + "492972234345353806656313996" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "4971691044139648000", - "outputIndex": 2, - "expectedQty": "4958136274724175862", - "swapFee": "2971452217903120", + "type": "redeemBassets", + "inputQtys": [ + "704297914183360577536", + "11510886905154971369472", + "2730800164559003320320" + ], + "expectedQty": "15121676855907064777100", + "swapFee": "9078453185455512173", "reserves": [ - "21423278978866377478562397", - "59955131210823175848999016", - "46854727282045586521113924" + "1015869162440085119290677130", + "253755630280197629619719367", + "492969503545189247652993676" ], - "mAssetSupply": "128128317322876002272589849", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1759719329555334507207538683" }, { - "type": "redeemBassets", - "inputQtys": [ - "436931135158299721728", - "7175844376859757248512", - "14156851683317184987136" + "type": "mint", + "inputIndex": 0, + "inputQty": "86205732649537208320", + "expectedQty": "85591886559173288263", + "reserves": [ + "1015869248645817768827885450", + "253755630280197629619719367", + "492969503545189247652993676" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1616897249933387418828", + "expectedQtys": [ + "933139347917925504026", + "233090393951596307993", + "452823275923340128342" ], - "expectedQty": "21721295039737628929568", - "swapFee": "13040601384673381386", + "redemptionFee": "485069174980016225", "reserves": [ - "21422842047731219178840669", - "59947955366446316091750504", - "46840570430362269336126788" + "1015868315506469850902381424", + "253755397189803678023411374", + "492969050721913324312865334" ], - "mAssetSupply": "128106596027836264643660281" + "mAssetSupply": "1759717798735040307973424343" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "266073682911937477738496", - "297864201685569340702720", - "219875446731561787981824" + "7029597551995728691200", + "3693252389121261305856", + "4031064431914318299136" ], - "expectedQty": "784890031965778720365719", - "swapFee": "471216749229004635000", + "expectedQty": "14764573674877538321708", "reserves": [ - "21156768364819281701102173", - "59650091164760746751047784", - "46620694983630707548144964" + "1015875345104021846631072624", + "253759090442192799284717230", + "492973081786345238631164470" ], - "mAssetSupply": "127321705995870485923294562" + "mAssetSupply": "1759732563308715185511746051" }, { "type": "redeemMasset", - "inputQty": "29436500700748970563993", + "inputQty": "1707707054925581312", "expectedQtys": [ - "4889931277301142210698", - "13786833671888132391997", - "10775369406088384209525" + "985545806602612160", + "246182967898475481", + "478255088937855986" ], - "redemptionFee": "8830950210224691169", + "redemptionFee": "512312116477674", "reserves": [ - "21151878433541980558891475", - "59636304331088858618655787", - "46609919614224619163935439" + "1015875344118476040028460464", + "253759090196009831386241749", + "492973081308090149693308484" ], - "mAssetSupply": "127292278326119947177421738" + "mAssetSupply": "1759732561601520442702642413" }, { - "type": "redeemBassets", + "type": "swap", + "inputIndex": 1, + "inputQty": "1582157598180579202826240", + "outputIndex": 0, + "expectedQty": "1616981889374052372672146", + "swapFee": "963906382428504060093", + "reserves": [ + "1014258362229101987655788318", + "255341247794190410589067989", + "492973081308090149693308484" + ], + "mAssetSupply": "1759733525507902871206702506", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "171161389023029473837056", + "expectedQty": "171310837806458535642865", + "reserves": [ + "1014258362229101987655788318", + "255341247794190410589067989", + "493144242697113179167145540" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "11447517628109703610368", - "5731721040300348538880", - "4106671045179643265024" + "59245837105870011367424", + "239325290524375204757504", + "167274800029126728089600" ], - "expectedQty": "21370077753109765142567", - "swapFee": "12829744498564998084", + "expectedQty": "469220556053757899363590", "reserves": [ - "21140430915913870855281107", - "59630572610048558270116907", - "46605812943179439520670415" + "1014317608066207857667155742", + "255580573084714785793825493", + "493311517497142305895235140" ], - "mAssetSupply": "127270908248366837412279171" + "mAssetSupply": "1760374056901763087641708961" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "208042657940876328960", - "64999367046118449152", - "506383420192994689024" + "620556045207566783873024", + "1264856007542510777794560", + "308579107401926082297856" ], - "expectedQty": "780339246001281167126", - "swapFee": "468484638383798979", + "expectedQty": "2209063090426694819234055", "reserves": [ - "21140222873255929978952147", - "59630507610681512151667755", - "46605306559759246525981391" + "1014938164111415424451028766", + "256845429092257296571620053", + "493620096604544231977532996" ], - "mAssetSupply": "127270127909120836131112045" + "mAssetSupply": "1762583119992189782460943016" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "495332979900266481451008", - "expectedQty": "494432394117929403641567", + "inputIndex": 0, + "inputQty": "5555877774350613554921472", + "expectedQty": "5516678856674742412704601", + "reserves": [ + "1020494041885766038005950238", + "256845429092257296571620053", + "493620096604544231977532996" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "182228071112030096982016", + "expectedQty": "180937167871977343436016", + "reserves": [ + "1020676269956878068102932254", + "256845429092257296571620053", + "493620096604544231977532996" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "15800713484548182016", + "expectedQty": "16041395229730784696", "reserves": [ - "21140222873255929978952147", - "59630507610681512151667755", - "47100639539659513007432399" + "1020676269956878068102932254", + "256845444892970781119802069", + "493620096604544231977532996" ] }, { "type": "redeemBassets", "inputQtys": [ - "2664917575004943872", - "2795120061234571264", - "191558670326326240" + "795000719230637522812928", + "1176110575803969864466432", + "730811108369146771931136" ], - "expectedQty": "5667142401052936487", - "swapFee": "3402326836733802", + "expectedQty": "2714939878817816059279621", + "swapFee": "1629941892426145322761", "reserves": [ - "21140220208338354974008275", - "59630504815561450917096491", - "47100639348100842681106159" + "1019881269237647430580119326", + "255669334317166811255335637", + "492889285496175085205601860" ], - "mAssetSupply": "127764554636096364481817125" + "mAssetSupply": "1765565812179313915888588708" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "2627267049295820651233280", - "expectedQty": "2621925748853106632973857", + "inputQty": "1750052032026897989763072", + "expectedQty": "1747355572731112573742704", + "swapFee": "1050031219216138793857", "reserves": [ - "21140220208338354974008275", - "59630504815561450917096491", - "49727906397396663332339439" - ] + "1019881269237647430580119326", + "255669334317166811255335637", + "491141929923443972631859156" + ], + "mAssetSupply": "1763816810178506234037619493" }, { - "type": "redeemMasset", - "inputQty": "170563803740338514821120", - "expectedQtys": [ - "27646076748824157043693", - "77981662274828224155220", - "65031560848099193751315" - ], - "redemptionFee": "51169141122101554446", + "type": "mint", + "inputIndex": 0, + "inputQty": "780642226734825962733568", + "expectedQty": "775076756961271348385405", "reserves": [ - "21112574131589530816964582", - "59552523153286622692941271", - "49662874836548564138588124" - ], - "mAssetSupply": "130215967750350254701524308" + "1020661911464382256542852894", + "255669334317166811255335637", + "491141929923443972631859156" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3151895366236060160", - "5727762669611490304", - "7209205532249245696" + "31227030856874541973504", + "36328104906337432895488", + "15986235197786746257408" ], - "expectedQty": "16084534566055472818", - "swapFee": "9656514648422337", + "expectedQty": "83891621056646328718704", "reserves": [ - "21112570979694164580904422", - "59552517425523953081450967", - "49662867627343031889342428" + "1020693138495239131084826398", + "255705662422073148688231125", + "491157916158641759378116564" ], - "mAssetSupply": "130215951665815688646051490" + "mAssetSupply": "1764675778556524151714723602" }, { "type": "redeemMasset", - "inputQty": "95249235421159207259340", + "inputQty": "39026221970785286", "expectedQtys": [ - "15438607413299766122180", - "43547890869881925300317", - "36316065772124633873512" + "22566098164757616", + "5653294669941380", + "10858814792047705" ], - "redemptionFee": "28574770626347762177", + "redemptionFee": "11707866591235", "reserves": [ - "21097132372280864814782242", - "59508969534654071156150650", - "49626551561570907255468916" + "1020693138472673032920068782", + "255705662416419854018289745", + "491157916147782944586068859" ], - "mAssetSupply": "130120731005165155786554327" + "mAssetSupply": "1764675778517509637610529551" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "61081466447188553891840", + "expectedQty": "61140545148440462272769", + "reserves": [ + "1020693138472673032920068782", + "255705662416419854018289745", + "491218997614230133139960699" + ] }, { "type": "mintMulti", "inputQtys": [ - "81752156220671033344", - "3781067182550033408", - "1047147771184666240" + "424297268948613256445952", + "567020562057286140297216", + "308533176826921593339904" ], - "expectedQty": "87425416045842958130", + "expectedQty": "1305811501976281128581314", "reserves": [ - "21097214124437085485815586", - "59508973315721253706184058", - "49626552608718678440135156" + "1021117435741621646176514734", + "256272682978477140158586961", + "491527530791057054733300603" ], - "mAssetSupply": "130120818430581201629512457" + "mAssetSupply": "1766042730564634359201383634" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "72152720630855770112", - "expectedQty": "72269089593733371833", - "swapFee": "43291632378513462", + "type": "swap", + "inputIndex": 1, + "inputQty": "1553399137785334841999360", + "outputIndex": 0, + "expectedQty": "1587276557136357155066044", + "swapFee": "946198319632206218483", "reserves": [ - "21097214124437085485815586", - "59508973315721253706184058", - "49626480339629084706763323" + "1019530159184485289021448690", + "257826082116262475000586321", + "491527530791057054733300603" ], - "mAssetSupply": "130120746321152203152255807" + "mAssetSupply": "1766043676762953991407602117", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "38532598776533354545152", - "expectedQty": "38107076516391742422692", - "swapFee": "23119559265920012727", + "inputIndex": 1, + "inputQty": "54151208932124219408384", + "expectedQty": "53315907182347689503624", + "swapFee": "32490725359274531645", "reserves": [ - "21059107047920693743392894", - "59508973315721253706184058", - "49626480339629084706763323" + "1019530159184485289021448690", + "257772766209080127311082697", + "491527530791057054733300603" ], - "mAssetSupply": "130082236841934935717723382" + "mAssetSupply": "1765989558044747226462725378" }, { - "type": "redeemBassets", - "inputQtys": [ - "46229259756169810935808", - "9765544477512093925376", - "73919379830518723903488" - ], - "expectedQty": "130203225663160584544068", - "swapFee": "78168836699916300506", + "type": "redeem", + "inputIndex": 2, + "inputQty": "11720911896830491492352", + "expectedQty": "11702439359107819621196", + "swapFee": "7032547138098294895", "reserves": [ - "21012877788164523932457086", - "59499207771243741612258682", - "49552560959798565982859835" + "1019530159184485289021448690", + "257772766209080127311082697", + "491515828351697946913679407" ], - "mAssetSupply": "129952033616271775133179314" + "mAssetSupply": "1765977844165397534069527921" }, { - "type": "redeemMasset", - "inputQty": "256328547273452", - "expectedQtys": [ - "41435169789210", - "117326136913700", - "97712402725530" - ], - "redemptionFee": "76898564182", + "type": "swap", + "inputIndex": 2, + "inputQty": "909678094606595916824576", + "outputIndex": 0, + "expectedQty": "916477158193349893426565", + "swapFee": "546334989876290490930", "reserves": [ - "21012877788123088762667876", - "59499207771126415475344982", - "49552560959700853580134305" + "1018613682026291939128022125", + "257772766209080127311082697", + "492425506446304542830503983" ], - "mAssetSupply": "129952033616015523484470044" + "mAssetSupply": "1765978390500387410360018851", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 1, - "inputQty": "5691414046192360751104", - "outputIndex": 0, - "expectedQty": "5606878987003164218879", - "swapFee": "3401887211568030989", + "inputIndex": 0, + "inputQty": "4945878553610412120604672", + "outputIndex": 2, + "expectedQty": "4902830994341249040634617", + "swapFee": "2946533519099729020242", "reserves": [ - "21007270909136085598448997", - "59504899185172607836096086", - "49552560959700853580134305" + "1023559560579902351248626797", + "257772766209080127311082697", + "487522675451963293789869366" ], - "mAssetSupply": "129952037017902735052501033", + "mAssetSupply": "1765981337033906510089039093", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mintMulti", + "inputQtys": [ + "43360105559374218395648", + "13908095508478643142656", + "21868636471237468487680" + ], + "expectedQty": "79061596687847088554481", + "reserves": [ + "1023602920685461725467022445", + "257786674304588605954225353", + "487544544088434531258357046" + ], + "mAssetSupply": "1766060398630594357177593574" + }, { "type": "mint", - "inputIndex": 1, - "inputQty": "32355710635576798478336", - "expectedQty": "32232794391690544372601", + "inputIndex": 0, + "inputQty": "1045644154991889912692736", + "expectedQty": "1038176796904348827373161", "reserves": [ - "21007270909136085598448997", - "59537254895808184634574422", - "49552560959700853580134305" + "1024648564840453615379715181", + "257786674304588605954225353", + "487544544088434531258357046" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "18413616337934467727360", - "76125053895652021370880", - "121538632752647219707904" + "type": "redeemMasset", + "inputQty": "920889923388361825425817", + "expectedQtys": [ + "533815982272636831524745", + "134300336215400261631777", + "253998374305786585660962" ], - "expectedQty": "215714739787515373109905", - "swapFee": "129506547801189937828", + "redemptionFee": "276266977016508547627", "reserves": [ - "20988857292798151130721637", - "59461129841912532613203542", - "49431022326948206360426401" + "1024114748858180978548190436", + "257652373968373205692593576", + "487290545714128744672696084" ], - "mAssetSupply": "129768555072506910223763729" + "mAssetSupply": "1766177961771087360688088545" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "323364794647538231672832", - "expectedQty": "322129722684362175556072", + "inputIndex": 0, + "inputQty": "150800862778391592960", + "expectedQty": "149723143599766960726", "reserves": [ - "20988857292798151130721637", - "59784494636560070844876374", - "49431022326948206360426401" + "1024114899659043756939783396", + "257652373968373205692593576", + "487290545714128744672696084" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "169720965216621494272", - "41254404518928302080", - "102038572551351304192" - ], - "expectedQty": "314444192914253961654", - "reserves": [ - "20989027013763367752215909", - "59784535890964589773178454", - "49431124365520757711730593" + "1308887196634233438208", + "1245876026953478701056", + "1438556803781296128000" ], - "mAssetSupply": "130090999239384186653281455" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "730390888499081522446336", - "outputIndex": 1, - "expectedQty": "731070190402155904841660", - "swapFee": "437252472526271367777", + "expectedQty": "4004416991733644646028", + "swapFee": "2404092650630565126", "reserves": [ - "20989027013763367752215909", - "59053465700562433868336794", - "50161515254019839234176929" + "1024113590771847122706345188", + "257651128092346252213892520", + "487289107157324963376568084" ], - "mAssetSupply": "130091436491856712924649232", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1766174107077239226810403243" }, { "type": "redeemMasset", - "inputQty": "14765985270599637375385", + "inputQty": "8062425442744714954329292", "expectedQtys": [ - "2381637830939958194694", - "6700833148118238302534", - "5691858050776069822853" + "4673583643641003452636162", + "1175801306484472728496449", + "2223763478442363736406376" ], - "redemptionFee": "4429795581179891212", + "redemptionFee": "2418727632823414486298", "reserves": [ - "20986645375932427794021215", - "59046764867414315630034260", - "50155823395969063164354076" + "1019440007128206119253709026", + "256475326785861779485396071", + "485065343678882599640161708" ], - "mAssetSupply": "130076674936381694467165059" + "mAssetSupply": "1758114100362127335270560249" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "432369070412131520", - "135136396674076213248", - "128188453490711085056" + "754917055981426550243328", + "526559758243562564616192", + "1226070862292005632868352" ], - "expectedQty": "262961145253909869798", + "expectedQty": "2511491699682133394838400", + "swapFee": "1507799699629057471385", "reserves": [ - "20986645808301498206152735", - "59046900003810989706247508", - "50155951584422553875439132" + "1018685090072224692703465698", + "255948767027618216920779879", + "483839272816590594007293356" ], - "mAssetSupply": "130076937897526948377034857" + "mAssetSupply": "1755602608662445201875721849" }, { - "type": "mintMulti", - "inputQtys": [ - "136474820182293159608320", - "359598857947511150084096", - "751083549592512708476928" - ], - "expectedQty": "1245518564497068597671634", + "type": "swap", + "inputIndex": 2, + "inputQty": "3633359059491093210988544", + "outputIndex": 1, + "expectedQty": "3579813745952760969292316", + "swapFee": "2182369959756295162367", "reserves": [ - "21123120628483791365761055", - "59406498861758500856331604", - "50907035134015066583916060" + "1018685090072224692703465698", + "252368953281665455951487563", + "487472631876081687218281900" ], - "mAssetSupply": "131322456462024016974706491" + "mAssetSupply": "1755604791032404958170884216", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "647245628859471233024", - "296747822047157551104", - "123772170825697263616" + "4738920191949493248", + "12914949009183453184", + "10602887415894069248" ], - "expectedQty": "1073321624903521809693", + "expectedQty": "28435485434515244662", + "swapFee": "17071534181217877", "reserves": [ - "21123767874112650836994079", - "59406795609580548013882708", - "50907158906185892281179676" + "1018685085333304500753972450", + "252368940366716446768034379", + "487472621273194271324212652" ], - "mAssetSupply": "131323529783648920496516184" + "mAssetSupply": "1755604762596919523655639554" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1153971887818836275101696", - "expectedQty": "1157493142659670851015752", - "swapFee": "692383132691301765061", + "type": "mint", + "inputIndex": 0, + "inputQty": "9953496670455616642220032", + "expectedQty": "9881060923875819785469888", "reserves": [ - "21123767874112650836994079", - "58249302466920877162866956", - "50907158906185892281179676" - ], - "mAssetSupply": "130170250278962775523179549" + "1028638582003760117396192482", + "252368940366716446768034379", + "487472621273194271324212652" + ] }, { "type": "redeemBassets", "inputQtys": [ - "10560522824449896448", - "7668853464321425408", - "6877172291384982528" + "474107017270751177736192", + "997037682312543572328448", + "117745181512894987108352" ], - "expectedQty": "25173237285011357322", - "swapFee": "15113010177113082", + "expectedQty": "1601486313012766590134878", + "swapFee": "961468669009065393316", "reserves": [ - "21123757313589826387097631", - "58249294798067412841441548", - "50907152029013600896197148" + "1028164474986489366218456290", + "251371902684403903195705931", + "487354876091681376337104300" ], - "mAssetSupply": "130170225105725490511822227" + "mAssetSupply": "1763884337207782576850974564" }, { - "type": "redeemMasset", - "inputQty": "5262180599178434759884", - "expectedQtys": [ - "853679700709552074121", - "2354043355618634048774", - "2057323498984971212745" + "type": "redeemBassets", + "inputQtys": [ + "5687069576694752870400", + "60667692384452209541120", + "16930271803625762193408" ], - "redemptionFee": "1578654179753530427", + "expectedQty": "84235542421942787896579", + "swapFee": "50571668454238215667", "reserves": [ - "21122903633889116835023510", - "58246940754711794207392774", - "50905094705514615924984403" + "1028158787916912671465585890", + "251311234992019450986164811", + "487337945819877750574910892" ], - "mAssetSupply": "130164964503780491830592770" + "mAssetSupply": "1763800101665360634063077985" }, { - "type": "redeemMasset", - "inputQty": "23828356760243994624", - "expectedQtys": [ - "3865656847783106210", - "10659646481065346095", - "9316031135970721940" + "type": "mintMulti", + "inputQtys": [ + "623602879842061253607424", + "102653725061115103150080", + "127987871702526722048000" ], - "redemptionFee": "7148507028073198", + "expectedQty": "851443311006658005896012", "reserves": [ - "21122899768232269051917300", - "58246930095065313142046679", - "50905085389483479954262463" + "1028782390796754732719193314", + "251413888717080566089314891", + "487465933691580277296958892" ], - "mAssetSupply": "130164940682572238614671344" + "mAssetSupply": "1764651544976367292068973997" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1355613714014511038464", - "expectedQty": "1352331222240051892919", + "type": "swap", + "inputIndex": 0, + "inputQty": "1259716296558009162661888", + "outputIndex": 1, + "expectedQty": "1229784997153930921099416", + "swapFee": "750265682132500659133", "reserves": [ - "21122899768232269051917300", - "58246930095065313142046679", - "50906441003197494465300927" - ] + "1030042107093312741881855202", + "250184103719926635168215475", + "487465933691580277296958892" + ], + "mAssetSupply": "1764652295242049424569633130", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "17657427613605020303360", - "expectedQty": "17710135369888500248767", - "swapFee": "10594456568163012182", + "type": "redeemBassets", + "inputQtys": [ + "2126445594552814062796800", + "979526111956568549359616", + "709235754075382941220864" + ], + "expectedQty": "3816171428936850730929518", + "swapFee": "2291077503864429096015", "reserves": [ - "21122899768232269051917300", - "58229219959695424641797912", - "50906441003197494465300927" + "1027915661498759927819058402", + "249204577607970066618855859", + "486756697937504894355738028" ], - "mAssetSupply": "130148646180637441809273085" + "mAssetSupply": "1760836123813112573838703612" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3706635654554910195712", - "expectedQty": "3693389762523741879696", + "type": "redeem", + "inputIndex": 2, + "inputQty": "31915985586324703805440", + "expectedQty": "31863722805198868311109", + "swapFee": "19149591351794822283", "reserves": [ - "21122899768232269051917300", - "58232926595349979551993624", - "50906441003197494465300927" - ] + "1027915661498759927819058402", + "249204577607970066618855859", + "486724834214699695487426919" + ], + "mAssetSupply": "1760804226977117600929720455" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "4760992645704861089792", - "expectedQty": "4743976676394685055121", + "inputIndex": 0, + "inputQty": "456102994603678848", + "expectedQty": "452722508765281330", "reserves": [ - "21122899768232269051917300", - "58237687587995684413083416", - "50906441003197494465300927" + "1027915661954862922422737250", + "249204577607970066618855859", + "486724834214699695487426919" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1682073826260469415936", - "expectedQty": "1676061420747414188248", + "type": "redeemBassets", + "inputQtys": [ + "3495095732983314507628544", + "3506943601140364990218240", + "2558959716521945136627712" + ], + "expectedQty": "9595527201620863449479893", + "swapFee": "5760772784643304052119", "reserves": [ - "21122899768232269051917300", - "58239369661821944882499352", - "50906441003197494465300927" - ] + "1024420566221879607915108706", + "245697634006829701628637619", + "484165874498177750350799207" + ], + "mAssetSupply": "1751208700228219246245521892" }, { "type": "mintMulti", "inputQtys": [ - "122752721482129774477312", - "86997919811008645300224", - "82711017204999641890816" + "1011622155488078824734720", + "805540656305506380414976", + "1163876124386928046899200" ], - "expectedQty": "293233401467911191790100", + "expectedQty": "2988083472796943585434818", "reserves": [ - "21245652489714398826394612", - "58326367581632953527799576", - "50989152020402494107191743" + "1025432188377367686739843426", + "246503174663135208009052595", + "485329750622564678397698407" ], - "mAssetSupply": "130451993009965018842186250" + "mAssetSupply": "1754196783701016189830956710" }, { "type": "mint", "inputIndex": 0, - "inputQty": "852652292465368", - "expectedQty": "861513466787530", + "inputQty": "3348388030834265062113280", + "expectedQty": "3323313247166314621089556", "reserves": [ - "21245652490567051118859980", - "58326367581632953527799576", - "50989152020402494107191743" + "1028780576408201951801956706", + "246503174663135208009052595", + "485329750622564678397698407" ] }, { - "type": "redeemMasset", - "inputQty": "81288423158096425543270", - "expectedQtys": [ - "13234811077994152566630", - "36333949082114145822210", - "31763288715974825160788" + "type": "mintMulti", + "inputQtys": [ + "38929909063959994368", + "36371894553503604736", + "9080944715439811584" ], - "redemptionFee": "24386526947428927662", + "expectedQty": "84708272231370735716", "reserves": [ - "21232417679489056966293350", - "58290033632550839381977366", - "50957388731686519282030955" + "1028780615338111015761951074", + "246503211035029761512657331", + "485329759703509393837509991" ], - "mAssetSupply": "130370728974195383312358172" + "mAssetSupply": "1757520181656454735822781982" }, { - "type": "redeemBassets", - "inputQtys": [ - "906129764634314928029696", - "436395894385746229854208", - "811809859847942676938752" + "type": "redeemMasset", + "inputQty": "15456610334907573862", + "expectedQtys": [ + "9044954828386462952", + "2167236022552090275", + "4266979458926902848" ], - "expectedQty": "2160499546828375037952790", - "swapFee": "1297077974881954195288", + "redemptionFee": "4636983100472272", "reserves": [ - "20326287914854742038263654", - "57853637738165093152123158", - "50145578871838576605092203" + "1028780606293156187375488122", + "246503208867793738960567056", + "485329755436529934910607143" ], - "mAssetSupply": "128210229427367008274405382" + "mAssetSupply": "1757520166204481384015680392" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "28166102638474186752", - "expectedQty": "28254785227242325326", - "swapFee": "16899661583084512", + "inputIndex": 0, + "inputQty": "7302969658567249887232", + "expectedQty": "7353785349666988653522", + "swapFee": "4381781795140349932", "reserves": [ - "20326287914854742038263654", - "57853609483379865909797832", - "50145578871838576605092203" + "1028773252507806520386834600", + "246503208867793738960567056", + "485329755436529934910607143" ], - "mAssetSupply": "128210201278164031383303142" + "mAssetSupply": "1757512867616604611906143092" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "1079755343885419751145472", - "outputIndex": 1, - "expectedQty": "1080257411266677998379817", - "swapFee": "646188802783347018308", + "inputQty": "161893977432308557283328", + "expectedQty": "162062548419140328295794", "reserves": [ - "20326287914854742038263654", - "56773352072113187911418015", - "51225334215723996356237675" - ], - "mAssetSupply": "128210847466966814730321450", - "hardLimitError": false, - "insufficientLiquidityError": false + "1028773252507806520386834600", + "246503208867793738960567056", + "485491649413962243467890471" + ] }, { "type": "redeemMasset", - "inputQty": "19383457235778943320064", + "inputQty": "92001322580277028454", "expectedQtys": [ - "3072092121857554313283", - "8580660097051989954948", - "7742138965208616998394" + "53832539619307236738", + "12898754633554374058", + "25404284557564955167" ], - "redemptionFee": "5815037170733682996", + "redemptionFee": "27600396774083108", "reserves": [ - "20323215822732884483950371", - "56764771412016135921463067", - "51217592076758787739239281" + "1028773198675266901079597862", + "246503195969039105406192998", + "485491624009677685902935304" ], - "mAssetSupply": "128191469824768206520684382" + "mAssetSupply": "1757674838191301568731493540" }, { - "type": "redeemMasset", - "inputQty": "22336095005563595574476", - "expectedQtys": [ - "3540056898260352267296", - "9887732451795501741457", - "8921481311082850587578" - ], - "redemptionFee": "6700828501669078672", + "type": "redeem", + "inputIndex": 0, + "inputQty": "72391482394163367366361088", + "expectedQty": "72867466506896483217571150", + "swapFee": "43434889436498020419816", "reserves": [ - "20319675765834624131683075", - "56754883679564340419721610", - "51208670595447704888651703" + "955905732168370417862026712", + "246503195969039105406192998", + "485491624009677685902935304" ], - "mAssetSupply": "128169140430591144594188578" + "mAssetSupply": "1685326790686574699385552268" }, { - "type": "redeemMasset", - "inputQty": "818254614397324556343705", - "expectedQtys": [ - "129685510896559833669064", - "362224583240381530691283", - "326827193752296500558206" + "type": "mintMulti", + "inputQtys": [ + "1249565208785933723238400", + "774866186024615795490816", + "342149060796200744124416" ], - "redemptionFee": "245476384319197366903", + "expectedQty": "2369744259100545953652204", "reserves": [ - "20189990254938064298014011", - "56392659096323958889030327", - "50881843401695408388093497" + "957155297377156351585265112", + "247278062155063721201683814", + "485833773070473886647059720" ], - "mAssetSupply": "127351131292578139235211776" + "mAssetSupply": "1687696534945675245339204472" }, { - "type": "redeemMasset", - "inputQty": "26481632802089965977", - "expectedQtys": [ - "4197084891288531995", - "11722877251754877216", - "10577291691853765789" - ], - "redemptionFee": "7944489840626989", - "reserves": [ - "20189986057853173009482016", - "56392647373446707134153111", - "50881832824403716534327708" + "type": "mintMulti", + "inputQtys": [ + "4521794487008157327425536", + "3457901750512875749769216", + "641452333599641969885184" ], - "mAssetSupply": "127351104818889826985872788" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "2996425469841951344820224", - "outputIndex": 0, - "expectedQty": "2945245095226184226562237", - "swapFee": "1792695049470492670832", + "expectedQty": "8641454839450189695262051", "reserves": [ - "17244740962626988782919779", - "56392647373446707134153111", - "53878258294245667879147932" + "961677091864164508912690648", + "250735963905576596951453030", + "486475225404073528616944904" ], - "mAssetSupply": "127352897513939297478543620", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1696337989785125435034466523" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "132240682745586490802176", - "16524350736521737797632", - "2968937018574457274368" + "28253195709869723648", + "311091950111183667200", + "219983611968445284352" ], - "expectedQty": "153822882457600302614104", - "swapFee": "92349138957934942533", + "expectedQty": "563748549857182953023", "reserves": [ - "17112500279881402292117603", - "56376123022710185396355479", - "53875289357227093421873564" + "961677120117360218782414296", + "250736274997526708135120230", + "486475445387685497062229256" ], - "mAssetSupply": "127199074631481697175929516" + "mAssetSupply": "1696338553533675292217419546" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "52864381854818025472", - "expectedQty": "52638757252302135269", + "inputIndex": 0, + "inputQty": "17082775997572523753472", + "expectedQty": "16968335205023982189988", "reserves": [ - "17112500279881402292117603", - "56376175887092040214380951", - "53875289357227093421873564" + "961694202893357791306167768", + "250736274997526708135120230", + "486475445387685497062229256" ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "100956996395367439269888", - "outputIndex": 0, - "expectedQty": "98859766532495234071119", - "swapFee": "60340757814280599225", + "inputIndex": 0, + "inputQty": "28918453682693912657920", + "outputIndex": 2, + "expectedQty": "28691015579717545214874", + "swapFee": "17234830032013451350", "reserves": [ - "17013640513348907058046484", - "56376175887092040214380951", - "53976246353622460861143452" + "961723121347040485218825688", + "250736274997526708135120230", + "486446754372105779517014382" ], - "mAssetSupply": "127199187610996763758664010", + "mAssetSupply": "1696355539103710348213060884", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1642810794804797", - "expectedQty": "1648907605881012", - "swapFee": "985686476882", - "reserves": [ - "17013640513348907058046484", - "56376175885443132608499939", - "53976246353622460861143452" - ], - "mAssetSupply": "127199187609354938650336095" - }, { "type": "redeemBassets", "inputQtys": [ - "89649198166048759611392", - "829762610956653428736", - "16172007902302898749440" + "4500487600537893076992", + "5114033185912043601920", + "4603436917786213875712" ], - "expectedQty": "108095316085548083483328", - "swapFee": "64896127327725485381", + "expectedQty": "14264148587469639603358", + "swapFee": "8563627328879111228", "reserves": [ - "16923991315182858298435092", - "56375346122832175955071203", - "53960074345720157962394012" + "961718620859439947325748696", + "250731160964340796091518310", + "486442150935187993303138670" ], - "mAssetSupply": "127091092293269390566852767" + "mAssetSupply": "1696341274955122878573457526" }, { "type": "redeemMasset", - "inputQty": "5092938961810978609561", + "inputQty": "276217944275533378355", "expectedQtys": [ - "677993991138127813095", - "2258459320132272736462", - "2161700835602776116965" + "156551191180674168298", + "40814705116142095819", + "79184385658810215160" ], - "redemptionFee": "1527881688543293582", + "redemptionFee": "82865383282660013", "reserves": [ - "16923313321191720170621997", - "56373087663512043682334741", - "53957912644884555186277047" + "961718464308248766651580398", + "250731120149635679949422491", + "486442071750802334492923510" ], - "mAssetSupply": "127086000882189268131536788" + "mAssetSupply": "1696340998820043986322739184" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "715757466473636697210880", - "expectedQty": "712629011026129587188889", + "type": "redeemMasset", + "inputQty": "647352490146244172185", + "expectedQtys": [ + "366897971498468341676", + "95654542143587957971", + "185578852856127876593" + ], + "redemptionFee": "194205747043873251", "reserves": [ - "16923313321191720170621997", - "57088845129985680379545621", - "53957912644884555186277047" - ] + "961718097410277268183238722", + "250731024495093536361464520", + "486441886171949478365046917" + ], + "mAssetSupply": "1696340351661759587122440250" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "5007824288415959453007872", - "expectedQty": "4986681150667059412119913", + "inputIndex": 0, + "inputQty": "21667903491381963784192", + "expectedQty": "21522728644477256916563", "reserves": [ - "16923313321191720170621997", - "57088845129985680379545621", - "58965736933300514639284919" + "961739765313768650147022914", + "250731024495093536361464520", + "486441886171949478365046917" ] }, { - "type": "redeemMasset", - "inputQty": "6918150114383484", - "expectedQtys": [ - "881444624123170", - "2973451751567680", - "3071208979049904" + "type": "mintMulti", + "inputQtys": [ + "1115683574111167716524032", + "839246770873283796533248", + "214232912700542862491648" ], - "redemptionFee": "2075445034315", + "expectedQty": "2173884261574628726867040", "reserves": [ - "16923313320310275546498827", - "57088845127012228627977941", - "58965736930229305660235015" + "962855448887879817863546946", + "251570271265966820157997768", + "486656119084650021227538565" ], - "mAssetSupply": "132785311036966382461496421" + "mAssetSupply": "1698535758651978693106223853" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "35347768217932023201792", - "expectedQty": "35476913355861901740948", - "swapFee": "21208660930759213921", + "type": "mintMulti", + "inputQtys": [ + "1777054737997005468991488", + "1400064759540910923972608", + "755182013125175059415040" + ], + "expectedQty": "3940883125875605022673361", "reserves": [ - "16923313320310275546498827", - "57053368213656366726236993", - "58965736930229305660235015" + "964632503625876823332538434", + "252970336025507731081970376", + "487411301097775196286953605" ], - "mAssetSupply": "132749984477409381197508550" + "mAssetSupply": "1702476641777854298128897214" }, { - "type": "redeemMasset", - "inputQty": "99325452037410232729", - "expectedQtys": [ - "12658468303420807235", - "42675346101949036289", - "44105778684801449532" - ], - "redemptionFee": "29797635611223069", + "type": "swap", + "inputIndex": 0, + "inputQty": "7920394804272618396450816", + "outputIndex": 1, + "expectedQty": "7747087011826734834623403", + "swapFee": "4720365868405790219552", "reserves": [ - "16923300661841972125691592", - "57053325538310264777200704", - "58965692824450620858785483" + "972552898430149441728989250", + "245223249013680996247346973", + "487411301097775196286953605" ], - "mAssetSupply": "132749885181754979398498890" + "mAssetSupply": "1702481362143722703919116766", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "29807056542208742129664", - "15585071898277198168064", - "25780661259260884156416" - ], - "expectedQty": "71549390130372025512528", - "swapFee": "42955407322616785378", - "reserves": [ - "16893493605299763383561928", - "57037740466411987579032640", - "58939912163191359974629067" - ], - "mAssetSupply": "132678335791624607372986362" - }, - { - "type": "redeemMasset", - "inputQty": "7626899062499038986240", - "expectedQtys": [ - "970816496008258392262", - "3277781412984882274239", - "3387093299834273008840" + "5434938159148342869753856", + "3660711141876631286579200", + "6387852395634284377931776" ], - "redemptionFee": "2288069718749711695", + "expectedQty": "15506068715089887622363135", + "swapFee": "9309226765113000373642", "reserves": [ - "16892522788803755125169666", - "57034462684999002696758401", - "58936525069891525701620227" + "967117960271001098859235394", + "241562537871804364960767773", + "481023448702140911909021829" ], - "mAssetSupply": "132670711180631827083711817" + "mAssetSupply": "1686975293428632816296753631" }, { "type": "mint", "inputIndex": 2, - "inputQty": "5443640482386527911936", - "expectedQty": "5418829549169260672368", + "inputQty": "12916217736300650949509120", + "expectedQty": "12922202347999808484195550", "reserves": [ - "16892522788803755125169666", - "57034462684999002696758401", - "58941968710373912229532163" + "967117960271001098859235394", + "241562537871804364960767773", + "493939666438441562858530949" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "4169577257084939164188672", - "expectedQty": "4232209499909516249387919", + "inputQty": "4631378044339259531329536", + "expectedQty": "4599126071821442063867989", "reserves": [ - "21062100045888694289358338", - "57034462684999002696758401", - "58941968710373912229532163" + "971749338315340358390564930", + "241562537871804364960767773", + "493939666438441562858530949" ] }, { - "type": "mintMulti", - "inputQtys": [ - "6458088425412374822912", - "27597070507645872373760", - "8600528086584300404736" - ], - "expectedQty": "42616459189522879683275", - "reserves": [ - "21068558134314106664181250", - "57062059755506648569132161", - "58950569238460496529936899" + "type": "redeemMasset", + "inputQty": "1916840350838321210982", + "expectedQtys": [ + "1092480625782119922470", + "271574553369098831238", + "555307314975674733637" ], - "mAssetSupply": "136950955969280035473455379" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "56983732187364458496", - "expectedQty": "56804244732866734148", - "reserves": [ - "21068558134314106664181250", - "57062116739238835933590657", - "58950569238460496529936899" - ] - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "2770295491844697455853568", - "outputIndex": 2, - "expectedQty": "2768266023009579613217631", - "swapFee": "1656678010192782174822", + "redemptionFee": "575052105251496363", "reserves": [ - "21068558134314106664181250", - "59832412231083533389444225", - "56182303215450916916719268" + "971748245834714576270642460", + "241562266297250995861936535", + "493939111131126587183797312" ], - "mAssetSupply": "136952669451534961122364349", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1704494705583155333775102551" }, { "type": "mintMulti", "inputQtys": [ - "772187345101391828877312", - "15326112205954965569536", - "473071684161179574337536" + "141585605912132560355328", + "128232565317105493213184", + "58757767659705589563392" ], - "expectedQty": "1268063110143387980338909", + "expectedQty": "329654987766156959091048", "reserves": [ - "21840745479415498493058562", - "59847738343289488355013761", - "56655374899612096491056804" + "971889831440626708830997788", + "241690498862568101355149719", + "493997868898786292773360704" ], - "mAssetSupply": "138220732561678349102703258" + "mAssetSupply": "1704824360570921490734193599" }, { "type": "redeemBassets", "inputQtys": [ - "632439330450830655488", - "783497793125032394752", - "89175769430717251584" + "4116084337806692319232", + "7167040339195846459392", + "9254264596885409890304" ], - "expectedQty": "1509277610113889523088", - "swapFee": "906110232207658308", + "expectedQty": "20626345925912628611916", + "swapFee": "12383237498046405010", "reserves": [ - "21840113040085047662403074", - "59846954845496363322619009", - "56655285723842665773805220" + "971885715356288902138678556", + "241683331822228905508690327", + "493988614634189407363470400" ], - "mAssetSupply": "138219223284068235213180170" + "mAssetSupply": "1704803734224995578105581683" }, { - "type": "mintMulti", - "inputQtys": [ - "286428987940171153408", - "975881145259318050816", - "1427344641207568433152" + "type": "redeemMasset", + "inputQty": "272358252523337147219968", + "expectedQtys": [ + "155221201975254569995641", + "38599576750727385922984", + "78895599877707928607885" ], - "expectedQty": "2685400987855242459736", + "redemptionFee": "81707475757001144165", "reserves": [ - "21840399469072987833556482", - "59847930726641622640669825", - "56656713068483873342238372" + "971730494154313647568682915", + "241644732245478178122767343", + "493909719034311699434862515" ], - "mAssetSupply": "138221908685056090455639906" + "mAssetSupply": "1704531457679947997959505880" }, { "type": "mintMulti", "inputQtys": [ - "220582437810161408", - "661250539882156160", - "757005988019615360" + "2741339007813288984576", + "5287276840197645402112", + "2363685137953309327360" ], - "expectedQty": "1636865049848795138", + "expectedQty": "10458377220202953999411", "reserves": [ - "21840399689655425643717890", - "59847931387892162522825985", - "56656713825489861361853732" + "971733235493321460857667491", + "241650019522318375768169455", + "493912082719449652744189875" ], - "mAssetSupply": "138221910321921140304435044" + "mAssetSupply": "1704541916057168200913505291" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "6523676743153072247668736", + "expectedQty": "6477887937977168329035073", + "reserves": [ + "978256912236474533105336227", + "241650019522318375768169455", + "493912082719449652744189875" + ] }, { "type": "mintMulti", "inputQtys": [ - "453599503209025344", - "245566220242326720", - "795207647059562496" + "15916114267456162234368", + "7858111901087166365696", + "8728948015441923538944" ], - "expectedQty": "1496301689337711166", + "expectedQty": "32521265038561629335883", "reserves": [ - "21840400143254928852743234", - "59847931633458382765152705", - "56656714620697508421416228" + "978272828350741989267570595", + "241657877634219462934535151", + "493920811667465094667728819" ], - "mAssetSupply": "138221911818222829642146210" + "mAssetSupply": "1711052325260183930871876247" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5479801489608514994176", - "41220510918834969903104", - "260139486731352691179520" + "2543868557787826487296", + "1102086240199780597760", + "2593180420109003915264" ], - "expectedQty": "306007395662353453275294", - "swapFee": "183714666197130350175", + "expectedQty": "6240031411469423170846", "reserves": [ - "21834920341765320337749058", - "59806711122539547795249601", - "56396575133966155730236708" + "978275372219299777094057891", + "241658979720459662715132911", + "493923404847885203671644083" ], - "mAssetSupply": "137915904422560476188870916" + "mAssetSupply": "1711058565291595400295047093" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2346416565534603870208", - "expectedQty": "2352984150076840741673", - "swapFee": "1407849939320762322", - "reserves": [ - "21834920341765320337749058", - "59804358138389470954507928", - "56396575133966155730236708" - ], - "mAssetSupply": "137913559413844880905763030" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "2799386633038547386368", - "884156887841779482624", - "5201504664182109241344" - ], - "expectedQty": "8898215052739580031633", - "swapFee": "5342134312231086670", + "inputQty": "55433425999637892648927232", + "expectedQty": "54260906251196804102283519", + "swapFee": "33260055599782735589356", "reserves": [ - "21832120955132281790362690", - "59803473981501629175025304", - "56391373629301973620995364" + "978275372219299777094057891", + "187398073469262858612849392", + "493923404847885203671644083" ], - "mAssetSupply": "137904661198792141325731397" + "mAssetSupply": "1655658399347557290381709217" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "2994216394573886259200", - "expectedQty": "2959461396103599776787", - "swapFee": "1796529836744331755", + "inputQty": "661678113860154163200", + "expectedQty": "655748535324637766851", "reserves": [ - "21829161493736178190585903", - "59803473981501629175025304", - "56391373629301973620995364" - ], - "mAssetSupply": "137901668778927404183803952" + "978276033897413637248221091", + "187398073469262858612849392", + "493923404847885203671644083" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1859887899539072545193984", - "expectedQty": "1836343387009526928102472", - "swapFee": "1115932739723443527116", + "type": "redeemBassets", + "inputQtys": [ + "179009347517626145832960", + "182870522621595477868544", + "309667477202944745537536" + ], + "expectedQty": "674753292238305932793869", + "swapFee": "405095032362401000276", "reserves": [ - "19992818106726651262483431", - "59803473981501629175025304", - "56391373629301973620995364" + "978097024549896011102388131", + "187215202946641263134980848", + "493613737370682258926106547" ], - "mAssetSupply": "136042896812128055082137084" + "mAssetSupply": "1654984301803854309086682199" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "5740910685881659031552", - "9572234961448706506752", - "25902874757713610407936" + "30420551062418624878739456", + "6674732837093730041200640", + "82265730577898154229760" ], - "expectedQty": "41171510387706615491354", - "swapFee": "24717736874748818585", + "expectedQty": "37083525173311344256220141", "reserves": [ - "19987077196040769603451879", - "59793901746540180468518552", - "56365470754544260010587428" + "1008517575612314635981127587", + "193889935783734993176181488", + "493696003101260157080336307" ], - "mAssetSupply": "136001725301740348466645730" + "mAssetSupply": "1692067826977165653342902340" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "39861574334957372833792", - "outputIndex": 1, - "expectedQty": "40523382961821926986018", - "swapFee": "24236385158832659055", + "inputQty": "3736749400236491020435456", + "expectedQty": "3702846691386009599442918", "reserves": [ - "20026938770375726976285671", - "59753378363578358541532534", - "56365470754544260010587428" - ], - "mAssetSupply": "136001749538125507299304785", - "hardLimitError": false, - "insufficientLiquidityError": false + "1012254325012551127001563043", + "193889935783734993176181488", + "493696003101260157080336307" + ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "70160903657820572876800", - "expectedQty": "69931126567734004854767", + "inputIndex": 1, + "inputQty": "9900491366414352908288", + "expectedQty": "10166495818183672207321", "reserves": [ - "20026938770375726976285671", - "59753378363578358541532534", - "56435631658202080583464228" + "1012254325012551127001563043", + "193899836275101407529089776", + "493696003101260157080336307" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "87631866114460251848704", - "outputIndex": 0, - "expectedQty": "86092179575412476346276", - "swapFee": "52379755548738704880", + "type": "redeem", + "inputIndex": 2, + "inputQty": "15360531609921970503680", + "expectedQty": "15353547196302998211800", + "swapFee": "9216318965953182302", "reserves": [ - "19940846590800314499939395", - "59841010229692818793381238", - "56435631658202080583464228" + "1012254325012551127001563043", + "193899836275101407529089776", + "493680649554063854082124507" ], - "mAssetSupply": "136071733044448790042864432", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1695765488849078890597231201" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "22495575606791776501760", - "7928138790956858081280", - "24903628827255585636352" + "620120516872423914602496", + "545606575848090027163648", + "186538796938791743389696" ], - "expectedQty": "55517930812731397577600", + "expectedQty": "1361283665506053453482132", + "swapFee": "817260555637014280657", "reserves": [ - "19963342166407106276441155", - "59848938368483775651462518", - "56460535287029336169100580" + "1011634204495678703086960547", + "193354229699253317501926128", + "493494110757125062338734811" ], - "mAssetSupply": "136127250975261521440442032" + "mAssetSupply": "1694404205183572837143749069" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2139776078442987784241152", - "expectedQty": "2106699660169951438627462", - "swapFee": "1283865647065792670544", + "type": "redeemBassets", + "inputQtys": [ + "27427362378895271699415040", + "21042647064412080727654400", + "2564381965223162296664064" + ], + "expectedQty": "51396889945213913896395844", + "swapFee": "30856647955901889471520", "reserves": [ - "17856642506237154837813693", - "59848938368483775651462518", - "56460535287029336169100580" + "984206842116783431387545507", + "172311582634841236774271728", + "490929728791901900042070747" ], - "mAssetSupply": "133988758762465599448871424" + "mAssetSupply": "1643007315238358923247353225" }, { "type": "mintMulti", "inputQtys": [ - "540893943267651968", - "517235734940535296", - "216349024982921216" + "16439197835450608779264", + "50033758235323986345984", + "134711553341949621567488" ], - "expectedQty": "1280529122779793753", + "expectedQty": "202542397146911545307957", "reserves": [ - "17856643047131098105465661", - "59848938885719510591997814", - "56460535503378361152021796" + "984223281314618881996324771", + "172361616393076560760617712", + "491064440345243849663638235" ], - "mAssetSupply": "133988760042994722228665177" + "mAssetSupply": "1643209857635505834792661182" }, { "type": "redeemBassets", "inputQtys": [ - "31779982603861402583040", - "43420118749848568594432", - "12083263412520873885696" + "190857872304592814080", + "2018410771308454608896", + "8027302905739875450880" ], - "expectedQty": "87584672381493990237916", - "swapFee": "52582352840600754595", + "expectedQty": "10293915788630390863074", + "swapFee": "6180057507682844224", "reserves": [ - "17824863064527236702882621", - "59805518766969662023403382", - "56448452239965840278136100" + "984223090456746577403510691", + "172359597982305252306008816", + "491056413042338109788187355" ], - "mAssetSupply": "133901175370613228238427261" + "mAssetSupply": "1643199563719717204401798108" }, { - "type": "redeemMasset", - "inputQty": "14547149786127340", - "expectedQtys": [ - "1935928955914915", - "6495378678947529", - "6130773224586817" - ], - "redemptionFee": "4364144935838", + "type": "redeem", + "inputIndex": 1, + "inputQty": "27792632814494745100288", + "expectedQty": "26902107201566861576445", + "swapFee": "16675579688696847060", "reserves": [ - "17824863062591307746967706", - "59805518760474283344455853", - "56448452233835067053549283" + "984223090456746577403510691", + "172332695875103685444432371", + "491056413042338109788187355" ], - "mAssetSupply": "133901175356070442597235759" + "mAssetSupply": "1643171787762482398353544880" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2874525543565749125120", - "expectedQty": "2923274760328455346335", + "type": "mintMulti", + "inputQtys": [ + "2631017848677806374912", + "7361304608084097761280", + "4803525951729750245376" + ], + "expectedQty": "15005397319719164844216", "reserves": [ - "17827737588134873496092826", - "59805518760474283344455853", - "56448452233835067053549283" - ] + "984225721474595255209885603", + "172340057179711769542193651", + "491061216568289839538432731" + ], + "mAssetSupply": "1643186793159802117518389096" }, { "type": "redeemMasset", - "inputQty": "67894286773045820810854", + "inputQty": "94560069208398899", "expectedQtys": [ - "9036604706185855484673", - "30314493334615474576818", - "28612848186226192670664" + "56622005599684704", + "9914635911017999", + "28250502245216304" ], - "redemptionFee": "20368286031913746243", + "redemptionFee": "28368020762519", "reserves": [ - "17818700983428687640608153", - "59775204267139667869879035", - "56419839385648840860878619" + "984225721417973249610200899", + "172340057169797133631175652", + "491061216540039337293216427" ], - "mAssetSupply": "133836224712343757145517483" + "mAssetSupply": "1643186793065270416330752716" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "446776926990054925008896", - "expectedQty": "438875723618226033485782", - "swapFee": "268066156194032955005", + "type": "swap", + "inputIndex": 2, + "inputQty": "18242843411510160405823488", + "outputIndex": 1, + "expectedQty": "17568684483434423693581066", + "swapFee": "10934629087875838802138", "reserves": [ - "17379825259810461607122371", - "59775204267139667869879035", - "56419839385648840860878619" + "984225721417973249610200899", + "154771372686362709937594586", + "509304059951549497699039915" ], - "mAssetSupply": "133389715851509896253463592" + "mAssetSupply": "1643197727694358292169554854", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "26485211758243996", - "expectedQtys": [ - "3449818127912676", - "11865112577242938", - "11199087549897245" + "type": "redeemBassets", + "inputQtys": [ + "659699329211143695630336", + "1177491966485979451097088", + "799238444608376939741184" ], - "redemptionFee": "7945563527473", + "expectedQty": "2676380213344018089359750", + "swapFee": "1606792203328407898354", "reserves": [ - "17379825256360643479209695", - "59775204255274555292636097", - "56419839374449753310981374" + "983566022088762105914570563", + "153593880719876730486497498", + "508504821506941120759298731" ], - "mAssetSupply": "133389715825032630058747069" + "mAssetSupply": "1640521347481014274080195104" }, { - "type": "mintMulti", - "inputQtys": [ - "3147942266031683665920", - "543131349648490627072", - "3702563016583256473600" - ], - "expectedQty": "7432587562213256351804", + "type": "swap", + "inputIndex": 0, + "inputQty": "3089365477389233029120", + "outputIndex": 2, + "expectedQty": "3059596338971508722294", + "swapFee": "1833625091563992062", "reserves": [ - "17382973198626675162875615", - "59775747386624203783263169", - "56423541937466336567454974" + "983569111454239495147599683", + "153593880719876730486497498", + "508501761910602149250576437" ], - "mAssetSupply": "133397148412594843315098873" + "mAssetSupply": "1640521349314639365644187166", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "715348327970812047497625", - "expectedQtys": [ - "93189026125999929440571", - "320454022523223035277274", - "302483059925986114643667" - ], - "redemptionFee": "214604498391243614249", + "type": "mint", + "inputIndex": 2, + "inputQty": "7135676646329040", + "expectedQty": "7123110533667213", "reserves": [ - "17289784172500675233435044", - "59455293364100980747985895", - "56121058877540350452811307" - ], - "mAssetSupply": "132682014689122422511215497" + "983569111454239495147599683", + "153593880719876730486497498", + "508501761917737825896905477" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "183941508495446278144", - "51372110992388923392", - "182661939519047565312" + "72082986565278252400640", + "136656081069027119595520", + "162087100882063342960640" ], - "expectedQty": "420296353987110598242", + "expectedQty": "375427055375066878084276", + "swapFee": "225391468105903669051", "reserves": [ - "17289968114009170679713188", - "59455344736211973136909287", - "56121241539479869500376619" + "983497028467674216895199043", + "153457224638807703366901978", + "508339674816855762553944837" ], - "mAssetSupply": "132682434985476409621813739" + "mAssetSupply": "1640145922266387409299770103" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "203271268400090908196864", - "expectedQty": "199548366029875833913152", - "swapFee": "121962761040054544918", + "type": "redeemBassets", + "inputQtys": [ + "404687094188227297280", + "2419315811943087341568", + "3435235752604119072768" + ], + "expectedQty": "6349173455022533681483", + "swapFee": "3811791147702141493", "reserves": [ - "17090419747979294845800036", - "59455344736211973136909287", - "56121241539479869500376619" + "983496623780580028667901763", + "153454805322995760279560410", + "508336239581103158434872069" ], - "mAssetSupply": "132479285679837358768161793" + "mAssetSupply": "1640139573092932386766088620" }, { - "type": "redeemMasset", - "inputQty": "138639594635598146777907", - "expectedQtys": [ - "17879761588364077919042", - "62201362208389166177108", - "58713269396881657462865" + "type": "mintMulti", + "inputQtys": [ + "363867231875808165888", + "2237313475294097833984", + "3754646928258201812992" ], - "redemptionFee": "41591878390679444033", + "expectedQty": "6438090700681334965591", "reserves": [ - "17072539986390930767880994", - "59393143374003583970732179", - "56062528270082987842913754" + "983496987647811904476067651", + "153457042636471054377394394", + "508339994228031416636685061" ], - "mAssetSupply": "132340687677080151300827919" + "mAssetSupply": "1640146011183633068101054211" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5746117350452307647528960", - "expectedQty": "5590631614140816913578855", - "swapFee": "3447670410271384588517", + "type": "swap", + "inputIndex": 1, + "inputQty": "365699074788226", + "outputIndex": 2, + "expectedQty": "381311974730120", + "swapFee": "228521173480", "reserves": [ - "11481908372250113854302139", - "59393143374003583970732179", - "56062528270082987842913754" + "983496987647811904476067651", + "153457042636836753452182620", + "508339994227650104661954941" ], - "mAssetSupply": "126598017997038115037887476" + "mAssetSupply": "1640146011183633296622227691", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1535774664695837641146368", - "392215091978939538604032", - "823772925782346828873728" + "1023499758558865891786752", + "780660874750267653881856", + "413514447072023623499776" ], - "expectedQty": "2799285665336560103674884", + "expectedQty": "2238386157600728278629234", + "swapFee": "1343837997358852278544", "reserves": [ - "13017683036945951495448507", - "59785358465982523509336211", - "56886301195865334671787482" + "982473487889253038584280899", + "152676381762086485798300764", + "507926479780578081038455165" ], - "mAssetSupply": "129397303662374675141562360" + "mAssetSupply": "1637907625026032568343598457" }, { - "type": "mintMulti", - "inputQtys": [ - "8307112499758147567616", - "34343283820057321275392", - "44428692034700294750208" + "type": "redeemMasset", + "inputQty": "115654935547471476241203", + "expectedQtys": [ + "69353007343591762043134", + "10777457464310298093396", + "35854635587070351804157" ], - "expectedQty": "86869713046183432158889", + "redemptionFee": "34696480664241442872", "reserves": [ - "13025990149445709643016123", - "59819701749802580830611603", - "56930729887900034966537690" + "982404134881909446822237765", + "152665604304622175500207368", + "507890625144991010686651008" ], - "mAssetSupply": "129484173375420858573721249" + "mAssetSupply": "1637792004786965761108800126" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "221605365048346214400", - "expectedQty": "222766522202676265359", - "swapFee": "132963219029007728", + "inputQty": "193883261584470173548544", + "outputIndex": 1, + "expectedQty": "185645986358194918138398", + "swapFee": "116122020406574056438", "reserves": [ - "13025990149445709643016123", - "59819701749802580830611603", - "56930507121377832290272331" + "982404134881909446822237765", + "152479958318263980582068970", + "508084508406575480860199552" ], - "mAssetSupply": "129483951903019029256514577" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "275184511297189088067584", - "expectedQty": "273579929750241227577453", - "reserves": [ - "13025990149445709643016123", - "59819701749802580830611603", - "57205691632675021378339915" - ] + "mAssetSupply": "1637792120908986167682856564", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1228208913357830625427456", - "1786931915329055255166976", - "447553437043024109502464" + "type": "redeemMasset", + "inputQty": "293137847067863140846796", + "expectedQtys": [ + "175781428805599408107530", + "27283216739132083675855", + "90911487106509593079996" ], - "expectedQty": "3486156801437892665689772", + "redemptionFee": "87941354120358942254", "reserves": [ - "14254199062803540268443579", - "61606633665131636085778579", - "57653245069718045487842379" + "982228353453103847414130235", + "152452675101524848498393115", + "507993596919468971267119556" ], - "mAssetSupply": "133243688634207163149781802" + "mAssetSupply": "1637499071003272424900952022" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1826562381923504569188352", - "expectedQty": "1768906189982326656594999", - "swapFee": "1095937429154102741513", + "inputIndex": 1, + "inputQty": "7362401049330709", + "expectedQty": "7061883263541824", + "swapFee": "4417440629598", "reserves": [ - "12485292872821213611848580", - "61606633665131636085778579", - "57653245069718045487842379" + "982228353453103847414130235", + "152452675094462965234851291", + "507993596919468971267119556" ], - "mAssetSupply": "131418222189712812683334963" + "mAssetSupply": "1637499070995914441292250911" }, { "type": "mintMulti", "inputQtys": [ - "69701857239550500864", - "38681253784456142848", - "199575338893040615424" + "4333680111262241881325568", + "495374792155180363153408", + "4967648192984711507738624" ], - "expectedQty": "309001616239461023904", + "expectedQty": "9761423259983730210389965", "reserves": [ - "12485362574678453162349444", - "61606672346385420541921427", - "57653444645056938528457803" + "986562033564366089295455803", + "152948049886618145598004699", + "512961245112453682774858180" ], - "mAssetSupply": "131418531191329052144358867" + "mAssetSupply": "1647260494255898171502640876" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "568066040086135807410176", - "expectedQty": "587890611888994819700441", + "type": "swap", + "inputIndex": 2, + "inputQty": "3293688664929669029560320", + "outputIndex": 1, + "expectedQty": "3149653214944896284805591", + "swapFee": "1972440434652968097031", "reserves": [ - "13053428614764588969759620", - "61606672346385420541921427", - "57653444645056938528457803" - ] + "986562033564366089295455803", + "149798396671673249313199108", + "516254933777383351804418500" + ], + "mAssetSupply": "1647262466696332824470737907", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "6538578135144854370385920", - "expectedQty": "6683953274625372952766157", + "type": "redeemMasset", + "inputQty": "65414967093168714547", + "expectedQtys": [ + "39165927402865865431", + "5946907472114554049", + "20495014575661893589" + ], + "redemptionFee": "19624490127950614", "reserves": [ - "19592006749909443340145540", - "61606672346385420541921427", - "57653444645056938528457803" - ] + "986561994398438686429590372", + "149798390724765777198645059", + "516254913282368776142524911" + ], + "mAssetSupply": "1647262401300990221429973974" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "5465289451185182343168", - "expectedQty": "5481003402894094502491", - "swapFee": "3279173670711109405", + "type": "redeemBassets", + "inputQtys": [ + "3618757234807992832", + "22029337884878520320", + "5147025449068956672" + ], + "expectedQty": "31714116469411037461", + "swapFee": "19039893817937384", "reserves": [ - "19592006749909443340145540", - "61606672346385420541921427", - "57647963641654044433955312" + "986561990779681451621597540", + "149798368695427892320124739", + "516254908135343327073568239" ], - "mAssetSupply": "138684913067565905445591702" + "mAssetSupply": "1647262369586873752018936513" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "747403908158299176960", - "expectedQty": "749552580890564432330", - "swapFee": "448442344894979506", + "type": "redeemMasset", + "inputQty": "8888144873666138931", + "expectedQtys": [ + "5321602345187129625", + "808025605694369795", + "2784724483127726405" + ], + "redemptionFee": "2666443462099841", "reserves": [ - "19592006749909443340145540", - "61606672346385420541921427", - "57647214089073153869522982" + "986561985458079106434467915", + "149798367887402286625754944", + "516254905350618843945841834" ], - "mAssetSupply": "138684166112100092041394248" + "mAssetSupply": "1647262360701395321814897423" }, { - "type": "mintMulti", - "inputQtys": [ - "43540063426087210713088", - "60934047571573873836032", - "28382115380930281472000" + "type": "redeemMasset", + "inputQty": "28418770852996107259084", + "expectedQtys": [ + "17015181431922329766909", + "2583564383566351095230", + "8903820549686004172490" ], - "expectedQty": "133150673616615872256781", + "redemptionFee": "8525631255898832177", "reserves": [ - "19635546813335530550858628", - "61667606393956994415757459", - "57675596204454084150994982" + "986544970276647184104701006", + "149795784323018720274659714", + "516246001530069157941669344" ], - "mAssetSupply": "138817316785716707913651029" + "mAssetSupply": "1647233950456173581606470516" }, { - "type": "redeemBassets", - "inputQtys": [ - "1330859037402128518742016", - "601848148180417086750720", - "227575027377965268729856" - ], - "expectedQty": "2177770916121778546518567", - "swapFee": "1307447017883797406354", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3240904825801855532531712", + "expectedQty": "3275012803798524333107723", + "swapFee": "1944542895481113319519", "reserves": [ - "18304687775933402032116612", - "61065758245776577329006739", - "57448021177076118882265126" + "983269957472848659771593283", + "149795784323018720274659714", + "516246001530069157941669344" ], - "mAssetSupply": "136639545869594929367132462" + "mAssetSupply": "1643994990173267207187258323" }, { "type": "redeemMasset", - "inputQty": "6178854539713878949888", + "inputQty": "1017403209681730513613619", "expectedQtys": [ - "827491571651823498230", - "2760571547761963241594", - "2597026177884746106721" + "608324175007295679542661", + "92674851118277357694241", + "319388302871306066590960" ], - "redemptionFee": "1853656361914163684", + "redemptionFee": "305220962904519154084", "reserves": [ - "18303860284361750208618382", - "61062997674228815365765145", - "57445424150898234136158405" + "982661633297841364092050622", + "149703109471900442916965473", + "515926613227197851875078384" ], - "mAssetSupply": "136633368868711577402346258" + "mAssetSupply": "1642977892184548381192798788" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "650970401099038890917888", - "expectedQty": "648102514556687113508089", + "type": "redeem", + "inputIndex": 0, + "inputQty": "30468532972580437583986688", + "expectedQty": "30781429375116893092304233", + "swapFee": "18281119783548262550392", "reserves": [ - "18303860284361750208618382", - "61713968075327854256683033", - "57445424150898234136158405" - ] + "951880203922724470999746389", + "149703109471900442916965473", + "515926613227197851875078384" + ], + "mAssetSupply": "1612527640331751491871362492" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "1226318470761892890542080", + "inputIndex": 1, + "inputQty": "20023035356129598036246528", "outputIndex": 0, - "expectedQty": "1198707086926255324902869", - "swapFee": "732956165391045418178", + "expectedQty": "20938848179105371565800501", + "swapFee": "12455278546164969475452", "reserves": [ - "17105153197435494883715513", - "61713968075327854256683033", - "58671742621660127026700485" + "930941355743619099433945888", + "169726144828030040953212001", + "515926613227197851875078384" ], - "mAssetSupply": "137282204339433655561272525", + "mAssetSupply": "1612540095610297656840837944", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "16817351430680", - "20646373641957", - "9710800358696" - ], - "expectedQty": "47366930045659", + "type": "mint", + "inputIndex": 2, + "inputQty": "17225409992286797320683520", + "expectedQty": "17191058611621496255992408", "reserves": [ - "17105153197452312235146193", - "61713968075348500630324990", - "58671742621669837827059181" - ], - "mAssetSupply": "137282204339481022491318184" + "930941355743619099433945888", + "169726144828030040953212001", + "533152023219484649195761904" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "947649526747999185666048", - "expectedQty": "951107211023830498775576", - "swapFee": "568589716048799511399", + "inputQty": "210180792216982491496448", + "expectedQty": "209724556602245673991795", "reserves": [ - "17105153197452312235146193", - "61713968075348500630324990", - "57720635410646007328283605" - ], - "mAssetSupply": "136335123402449072105163535" + "930941355743619099433945888", + "169726144828030040953212001", + "533362204011701631687258352" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "37066905179409837195264", - "expectedQty": "37223839566487058116610", - "swapFee": "22240143107645902317", + "inputIndex": 0, + "inputQty": "8983823431747413", + "expectedQty": "9059494399555790", + "swapFee": "5390294059048", "reserves": [ - "17105153197452312235146193", - "61676744235782013572208380", - "57720635410646007328283605" + "930941355734559605034390098", + "169726144828030040953212001", + "533362204011701631687258352" ], - "mAssetSupply": "136298078737412769913870588" + "mAssetSupply": "1629940878769542965633133782" }, { "type": "mintMulti", "inputQtys": [ - "190977139080000557809664", - "101832211482964412858368", - "15762353015190917742592" + "39036958917126935732551680", + "18408470730418861037846528", + "15437269246276240737828864" + ], + "expectedQty": "73061361331647919368137048", + "reserves": [ + "969978314651686540766941778", + "188134615558448901991058529", + "548799473257977872425087216" + ], + "mAssetSupply": "1703002240101190885001270830" + }, + { + "type": "redeemMasset", + "inputQty": "364737939895079613235", + "expectedQtys": [ + "207681321570236644262", + "40281359904749635905", + "117503039152163394884" + ], + "redemptionFee": "109421381968523883", + "reserves": [ + "969978106970364970530297516", + "188134575277088997241422624", + "548799355754938720261692332" + ], + "mAssetSupply": "1703001875472672371890181478" + }, + { + "type": "redeemMasset", + "inputQty": "3022338485674066776267161", + "expectedQtys": [ + "1720915710380820436060824", + "333784591563010674862119", + "973668814150257586953155" ], - "expectedQty": "311700422269889017044544", + "redemptionFee": "906701545702220032880", "reserves": [ - "17296130336532312792955857", - "61778576447264977985066748", - "57736397763661198246026197" + "968257191259984150094236692", + "187800790685525986566560505", + "547825686940788462674739177" ], - "mAssetSupply": "136609779159682658930915132" + "mAssetSupply": "1699980443688544007333947197" }, { "type": "redeemBassets", "inputQtys": [ - "155592417539699156975616", - "149921185025289617408000", - "26528709045152026460160" + "15404325212605760143360", + "2873236390574767472640", + "9703712157707685330944" ], - "expectedQty": "334207934354176829969665", - "swapFee": "200645147701126774046", + "expectedQty": "27914256066894726541865", + "swapFee": "16758608805420087977", "reserves": [ - "17140537918992613635980241", - "61628655262239688367658748", - "57709869054616046219566037" + "968241786934771544334093332", + "187797917449135411799087865", + "547815983228630754989408233" ], - "mAssetSupply": "136275571225328482100945467" + "mAssetSupply": "1699952529432477112607405332" }, { "type": "redeemBassets", "inputQtys": [ - "267104419600912592404480", - "266623459659431888814080", - "43233388866515326992384" + "599794814491892514816", + "4620594333780288208896", + "835981443580880879616" ], - "expectedQty": "580736976220254690006283", - "swapFee": "348651376558087666603", + "expectedQty": "6178857245271813696404", + "swapFee": "3709540071205811704", "reserves": [ - "16873433499391701043575761", - "61362031802580256478844668", - "57666635665749530892573653" + "968241187139957052441578516", + "187793296854801631510878969", + "547815147247187174108528617" ], - "mAssetSupply": "135694834249108227410939184" + "mAssetSupply": "1699946350575231840793708928" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "234399052257603223552", - "727390502283907956736", - "161084599295676973056" + "262244584868572915826688", + "1981259143623237315854336", + "10212417224261776141451264" ], - "expectedQty": "1123322274959799354904", + "expectedQty": "12492279001661936550767796", + "swapFee": "7499867321389995928017", "reserves": [ - "16873667898443958646799313", - "61362759193082540386801404", - "57666796750348826569546709" + "967978942555088479525751828", + "185812037711178394195024633", + "537602730022925397967077353" ], - "mAssetSupply": "135695957571383187210294088" + "mAssetSupply": "1687454071573569904242941132" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "233490316320239639330816", - "outputIndex": 2, - "expectedQty": "238921674814426552284581", - "swapFee": "142842424475926405568", + "type": "redeemBassets", + "inputQtys": [ + "170078843107297034240", + "3373505194183688192000", + "3470308758507404918784" + ], + "expectedQty": "7102216028748389753614", + "swapFee": "4263887950019045279", "reserves": [ - "17107158214764198286130129", - "61362759193082540386801404", - "57427875075534400017262128" + "967978772476245372228717588", + "185808664205984210506832633", + "537599259714166890562158569" ], - "mAssetSupply": "135696100413807663136699656", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1687446969357541155853187518" }, { "type": "mintMulti", "inputQtys": [ - "130358645870626111488", - "554345361315130507264", - "511931416724779433984" + "1350515890657926400", + "1065214516986705408", + "138070743318451152" ], - "expectedQty": "1194375756918737470208", + "expectedQty": "2572057067024068892", "reserves": [ - "17107288573410068912241617", - "61363313538443855517308668", - "57428387006951124796696112" + "967978773826761262886643988", + "185808665271198727493538041", + "537599259852237633880609721" ], - "mAssetSupply": "135697294789564581874169864" + "mAssetSupply": "1687446971929598222877256410" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "839086644678750720", - "expectedQty": "855255648599270118", + "type": "redeem", + "inputIndex": 2, + "inputQty": "20624829210357892382720", + "expectedQty": "20645412717435884240726", + "swapFee": "12374897526214735429", "reserves": [ - "17107289412496713590992337", - "61363313538443855517308668", - "57428387006951124796696112" - ] + "967978773826761262886643988", + "185808665271198727493538041", + "537578614439520197996368995" + ], + "mAssetSupply": "1687426359475285391199609119" }, { - "type": "mintMulti", - "inputQtys": [ - "1028088448268909312", - "407130734423440832", - "1127594329826278912" + "type": "redeemMasset", + "inputQty": "10922128367664393040691", + "expectedQtys": [ + "6263512863263169787351", + "1202314551207505397712", + "3478516944380580630186" ], - "expectedQty": "2576005469941488553", + "redemptionFee": "3276638510299317912", "reserves": [ - "17107290440585161859901649", - "61363313945574589940749500", - "57428388134545454622975024" + "967972510313897999716856637", + "185807462956647519988140329", + "537575135922575817415738809" ], - "mAssetSupply": "135697298220825700414928535" + "mAssetSupply": "1687415440623556237105886340" }, { "type": "mint", "inputIndex": 1, - "inputQty": "523630569558222438400", - "expectedQty": "521127131739205347887", + "inputQty": "22355644888451297077886976", + "expectedQty": "22918839370185157859872668", "reserves": [ - "17107290440585161859901649", - "61363837576144148163187900", - "57428388134545454622975024" + "967972510313897999716856637", + "208163107845098817066027305", + "537575135922575817415738809" ] }, { - "type": "redeemMasset", - "inputQty": "81022015334881625846579", - "expectedQtys": [ - "10211301367472545311118", - "36627930105640425003605", - "34278869603968061768672" - ], - "redemptionFee": "24306604600464487753", + "type": "swap", + "inputIndex": 1, + "inputQty": "306143140467526841925632", + "outputIndex": 2, + "expectedQty": "313157304732665585704573", + "swapFee": "187803300968738434124", "reserves": [ - "17097079139217689314590531", - "61327209646038507738184295", - "57394109264941486561206352" + "967972510313897999716856637", + "208469250985566343907952937", + "537261978617843151830034236" ], - "mAssetSupply": "135616821639227158458917596" + "mAssetSupply": "1710334467797042363704193132", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "41875009530437771264", - "32120152391105306624", - "29584073985942294528" + "3244126321407009562296320", + "5096251269327945908355072", + "6987032941837688491737088" ], - "expectedQty": "104110008656411910845", - "swapFee": "62503507298226082", + "expectedQty": "15410855994461903455100304", + "swapFee": "9252064835578489166560", "reserves": [ - "17097037264208158876819267", - "61327177525886116632877671", - "57394079680867500618911824" + "964728383992490990154560317", + "203372999716238397999597865", + "530274945676005463338297148" ], - "mAssetSupply": "135616717529218502047006751" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1207192072390255103180800", - "expectedQty": "1228898635600455958822652", - "reserves": [ - "18304229336598413980000067", - "61327177525886116632877671", - "57394079680867500618911824" - ] + "mAssetSupply": "1694923611802580460249092828" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "32279850861951", - "expectedQty": "32382971123866", - "swapFee": "19367910517", + "type": "mintMulti", + "inputQtys": [ + "13341995670685635403841536", + "17615620204679256732598272", + "11424165819223880832647168" + ], + "expectedQty": "42651512897401327093831772", "reserves": [ - "18304229336598413980000067", - "61327177525886116632877671", - "57394079680835117647787958" + "978070379663176625558401853", + "220988619920917654732196137", + "541699111495229344170944316" ], - "mAssetSupply": "136845616164786697522877969" + "mAssetSupply": "1737575124699981787342924600" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "18984074306144190464", - "expectedQty": "19044720248455899124", - "swapFee": "11390444583686514", + "inputIndex": 1, + "inputQty": "781329949152868330110976", + "expectedQty": "765296283920225034387693", + "swapFee": "468797969491720998066", "reserves": [ - "18304229336598413980000067", - "61327177525886116632877671", - "57394060636114869191888834" + "978070379663176625558401853", + "220223323636997429697808444", + "541699111495229344170944316" ], - "mAssetSupply": "136845597192102835962374019" + "mAssetSupply": "1736794263548798410733811690" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1692046793219740270592", - "expectedQty": "1684601874350381333769", + "type": "redeemBassets", + "inputQtys": [ + "1232862969189456777576448", + "1253749180115925726134272", + "855784831825971955892224" + ], + "expectedQty": "3358225969611991223185019", + "swapFee": "2016145268928551865030", "reserves": [ - "18304229336598413980000067", - "61328869572679336373148263", - "57394060636114869191888834" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "13010407396645226992893952", - "hardLimitError": true + "976837516693987168780825405", + "218969574456881503971674172", + "540843326663403372215052092" + ], + "mAssetSupply": "1733436037579186419510626671" }, { "type": "redeemBassets", "inputQtys": [ - "754160357153498464256000", - "2226548203580648595652608", - "3822435463239691208228864" + "737292472934984203632640", + "940607236376389717327872", + "1110325218530883648094208" + ], + "expectedQty": "2801193482491822536020789", + "swapFee": "1681725124569835422866", + "reserves": [ + "976100224221052184577192765", + "218028967220505114254346300", + "539733001444872488566957884" ], - "expectedQty": "6791702633027594401604482", - "swapFee": "4077468060652948410008", + "mAssetSupply": "1730634844096694596974605882" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "18564080182817689851396096", + "outputIndex": 0, + "expectedQty": "19035728445237791967285646", + "swapFee": "11350780162916233532753", "reserves": [ - "17550068979444915515744067", - "59102321369098687777495655", - "53571625172875177983659970" + "957064495775814392609907119", + "236593047403322804105742396", + "539733001444872488566957884" ], - "mAssetSupply": "130055579160949591942103306" + "mAssetSupply": "1730646194876857513208138635", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "35703512626696715606425", + "inputQty": "335686234653560737785446", "expectedQtys": [ - "4816487948579091787034", - "16220199415781210179023", - "14702340334568339709418" + "185582122934937944541647", + "45877200755590521232531", + "104658355490441536986982" ], - "redemptionFee": "10711053788009014681", + "redemptionFee": "100705870396068221335", "reserves": [ - "17545252491496336423957033", - "59086101169682906567316632", - "53556922832540609643950552" + "956878913652879454665365472", + "236547170202567213584509865", + "539628343089382047029970902" ], - "mAssetSupply": "130019886359376683235511562" + "mAssetSupply": "1730310609348074348538574524" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1855564912493902367293440", - "expectedQty": "1820970596806265197637375", - "swapFee": "1113338947496341420376", + "type": "swap", + "inputIndex": 1, + "inputQty": "6742892063366431190810624", + "outputIndex": 0, + "expectedQty": "6894700210033837517476303", + "swapFee": "4112507437097914896354", "reserves": [ - "15724281894690071226319658", - "59086101169682906567316632", - "53556922832540609643950552" + "949984213442845617147889169", + "243290062265933644775320489", + "539628343089382047029970902" ], - "mAssetSupply": "128165434785830277209638498" + "mAssetSupply": "1730314721855511446453470878", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "59675188336074301440", - "expectedQty": "59888287464565272919", - "swapFee": "35805113001644580", + "inputQty": "29271448224360726528", + "outputIndex": 1, + "expectedQty": "28780027618727051373", + "swapFee": "17552251495412093", "reserves": [ - "15724281894690071226319658", - "59086101169682906567316632", - "53556862944253145078677633" + "949984213442845617147889169", + "243290033485906026048269116", + "539628372360830271390697430" ], - "mAssetSupply": "128165375146447054136981638" + "mAssetSupply": "1730314721873063697948882971", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "80211697314643259791769", - "expectedQtys": [ - "9838015587160796841470", - "36967664926447031758464", - "33508255319622791603336" + "type": "redeemBassets", + "inputQtys": [ + "7131322905615611077853184", + "6706152760334021554077696", + "15989981708222371289104384" ], - "redemptionFee": "24063509194392977937", + "expectedQty": "29880115695699992318535382", + "swapFee": "17938832717050225526437", "reserves": [ - "15714443879102910429478188", - "59049133504756459535558168", - "53523354688933522287074297" + "942852890537230006070035985", + "236583880725572004494191420", + "523638390652607900101593046" ], - "mAssetSupply": "128085187512641605270167806" + "mAssetSupply": "1700434606177363705630347589" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3106982108032388825088", - "47788785250541215154176", - "24519306898670413152256" + "9501930172491658952704", + "18206279861051221606400", + "11421934091445779562496" ], - "expectedQty": "75132556149869692424590", - "swapFee": "45106597648510922007", + "expectedQty": "39359190402911124117659", "reserves": [ - "15711336896994878040653100", - "59001344719505918320403992", - "53498835382034851873922041" + "942862392467402497728988689", + "236602087005433055715797820", + "523649812586699345881155542" ], - "mAssetSupply": "128010054956491735577743216" + "mAssetSupply": "1700473965367766616754465248" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "25652407627313932402688", - "outputIndex": 0, - "expectedQty": "24991843746837348547555", - "swapFee": "15312729129238128009", + "type": "redeemBassets", + "inputQtys": [ + "411941658903911038189568", + "728114826211826142806016", + "176464483636847184969728" + ], + "expectedQty": "1325630208821555465846233", + "swapFee": "795855638676138962885", "reserves": [ - "15686345053248040692105545", - "59026997127133232252806680", - "53498835382034851873922041" + "942450450808498586690799121", + "235873972179221229572991804", + "523473348103062498696185814" ], - "mAssetSupply": "128010070269220864815871225", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1699148335158945061288619015" }, { "type": "redeemBassets", "inputQtys": [ - "529351198044550751846400", - "497503999030108581003264", - "895303109920684872040448" + "1480714566628294780780544", + "1990309902742746162003968", + "50120569778694350962688" ], - "expectedQty": "1926952950527342769468154", - "swapFee": "1156865889850315851191", + "expectedQty": "3544191207113938532769766", + "swapFee": "2127791399107827816351", "reserves": [ - "15156993855203489940259145", - "58529493128103123671803416", - "52603532272114167001881593" + "940969736241870291910018577", + "233883662276478483410987836", + "523423227533283804345223126" ], - "mAssetSupply": "126083117318693522046403071" + "mAssetSupply": "1695604143951831122755849249" }, { "type": "swap", "inputIndex": 2, - "inputQty": "736882048936119296", + "inputQty": "1492309460828000222183424", "outputIndex": 0, - "expectedQty": "717853206151604172", - "swapFee": "440253300277585", + "expectedQty": "1500630884854798829919831", + "swapFee": "894902875411114582218", "reserves": [ - "15156993137350283788654973", - "58529493128103123671803416", - "52603533008996215938000889" + "939469105357015493080098746", + "233883662276478483410987836", + "524915536994111804567406550" ], - "mAssetSupply": "126083117319133775346680656", + "mAssetSupply": "1695605038854706533870431467", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "582119430220180828979", - "expectedQtys": [ - "69958083544023275092", - "270146666488560969363", - "242795013734332350184" + "type": "mintMulti", + "inputQtys": [ + "3497526418790410616832", + "4155063141230771699712", + "2305660328305458937856" ], - "redemptionFee": "174635829066054248", + "expectedQty": "10002872859939933086929", "reserves": [ - "15156923179266739765379881", - "58529222981436635110834053", - "52603290213982481605650705" + "939472602883434283490715578", + "233887817339619714182687548", + "524917842654440110026344406" ], - "mAssetSupply": "126082535374339384231905925" + "mAssetSupply": "1695615041727566473803518396" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "25232445816759832805376", - "expectedQty": "25351613495272747875310", - "swapFee": "15139467490055899683", + "inputQty": "3332820581394384343269376", + "outputIndex": 0, + "expectedQty": "3407882711868624499966075", + "swapFee": "2032531283286655937025", "reserves": [ - "15156923179266739765379881", - "58503871367941362362958743", - "52603290213982481605650705" + "936064720171565658990749503", + "237220637921014098525956924", + "524917842654440110026344406" ], - "mAssetSupply": "126057318067990114455000232" + "mAssetSupply": "1695617074258849760459455421", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1087800067383604033880064", + "expectedQty": "1080674399668581650417316", + "reserves": [ + "937152520238949263024629567", + "237220637921014098525956924", + "524917842654440110026344406" + ] }, { "type": "mintMulti", "inputQtys": [ - "41403494407690810032128", - "19156577385514016964608", - "77968844226063511846912" + "11090433442873985879506944", + "3475791152945812973027328", + "19796466802865693232463872" ], - "expectedQty": "138986599911252125508772", + "expectedQty": "34334241858161042867152881", "reserves": [ - "15198326673674430575412009", - "58523027945326876379923351", - "52681259058208545117497617" + "948242953681823248904136511", + "240696429073959911498984252", + "544714309457305803258808278" ], - "mAssetSupply": "126196304667901366580509004" + "mAssetSupply": "1731031990516679384977025618" }, { "type": "mintMulti", "inputQtys": [ - "246902817992354650128384", - "558520883406629173723136", - "584573760278083812720640" + "830145721418995308953600", + "423326739570987234230272", + "476844383104928397131776" ], - "expectedQty": "1389854326886885037543091", + "expectedQty": "1731472118932946128768310", "reserves": [ - "15445229491666785225540393", - "59081548828733505553646487", - "53265832818486628930218257" + "949073099403242244213090111", + "241119755813530898733214524", + "545191153840410731655940054" ], - "mAssetSupply": "127586158994788251618052095" + "mAssetSupply": "1732763462635612331105793928" }, { "type": "mint", "inputIndex": 2, - "inputQty": "954913351567954528960512", - "expectedQty": "950823101826768351543512", + "inputQty": "12955217870681008248979456", + "expectedQty": "12944302371106453252180635", "reserves": [ - "15445229491666785225540393", - "59081548828733505553646487", - "54220746170054583459178769" + "949073099403242244213090111", + "241119755813530898733214524", + "558146371711091739904919510" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "199306773837035040", - "outputIndex": 0, - "expectedQty": "193972550670350869", - "swapFee": "118962108238213", + "type": "mintMulti", + "inputQtys": [ + "992326547981034527391744", + "600564329122645636284416", + "768914289208662410919936" + ], + "expectedQty": "2364594243479184185383377", "reserves": [ - "15445229297694234555189524", - "59081549028040279390681527", - "54220746170054583459178769" + "950065425951223278740481855", + "241720320142653544369498940", + "558915286000300402315839446" ], - "mAssetSupply": "128536982096733982077833820", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1748072359250197968543357940" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "126829435727073168", - "expectedQty": "127307428973529116", - "swapFee": "76097661436243", + "inputIndex": 0, + "inputQty": "29926414919699784456470528", + "expectedQty": "30096084250806585509114840", + "swapFee": "17955848951819870673882", "reserves": [ - "15445229297694234555189524", - "59081549028040279390681527", - "54220746042747154485649653" + "919969341700416693231367015", + "241720320142653544369498940", + "558915286000300402315839446" ], - "mAssetSupply": "128536981969980644012196895" + "mAssetSupply": "1718163900179450003957561294" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "331832372672012891455488", - "expectedQty": "338829340589483339980251", + "type": "mintMulti", + "inputQtys": [ + "2454000272933680714874880", + "1105813181657571949281280", + "1733021719457279164547072" + ], + "expectedQty": "5293241831204524618427769", "reserves": [ - "15777061670366247446645012", - "59081549028040279390681527", - "54220746042747154485649653" - ] + "922423341973350373946241895", + "242826133324311116318780220", + "560648307719757681480386518" + ], + "mAssetSupply": "1723457142010654528575989063" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "33829309304245890056192", - "expectedQty": "33123931372026749067474", - "swapFee": "20297585582547534033", + "type": "mint", + "inputIndex": 2, + "inputQty": "4042559767592940077056", + "expectedQty": "4038151887547323054273", "reserves": [ - "15743937738994220697577538", - "59081549028040279390681527", - "54220746042747154485649653" - ], - "mAssetSupply": "128842002298851464009654987" + "922423341973350373946241895", + "242826133324311116318780220", + "560652350279525274420463574" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10659616399227377664", - "expectedQty": "10707667216768718338", - "swapFee": "6395769839536426", + "type": "mint", + "inputIndex": 0, + "inputQty": "986696585482631284523008", + "expectedQty": "980695910095454785569486", "reserves": [ - "15743937738994220697577538", - "59081538320373062621963189", - "54220746042747154485649653" - ], - "mAssetSupply": "128841991645630834621813749" + "923410038558833005230764903", + "242826133324311116318780220", + "560652350279525274420463574" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "96911851136577355776", - "expectedQty": "96500536342056778154", + "inputQty": "10574146449855903566921728", + "expectedQty": "10561829146824389998289937", "reserves": [ - "15743937738994220697577538", - "59081538320373062621963189", - "54220842954598291063005429" + "923410038558833005230764903", + "242826133324311116318780220", + "571226496729381177987385302" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "245012838360720686972928", - "outputIndex": 2, - "expectedQty": "244648629231577234717567", - "swapFee": "146257773138438913201", + "type": "redeem", + "inputIndex": 2, + "inputQty": "37874392229176565938782208", + "expectedQty": "37887811781095750949848096", + "swapFee": "22724635337505939563269", "reserves": [ - "15743937738994220697577538", - "59326551158733783308936117", - "53976194325366713828287862" + "923410038558833005230764903", + "242826133324311116318780220", + "533338684948285427037537206" ], - "mAssetSupply": "128842234403940315117505104", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1697152037625622860683683820" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "9271685325962592256", - "37183459580376121344", - "27906680236275204096" - ], - "expectedQty": "74246210158999435738", - "swapFee": "44574470777866381", - "reserves": [ - "15743928467308894734985282", - "59326513975274202932814773", - "53976166418686477553083766" - ], - "mAssetSupply": "128842160157730156118069366" - }, - { - "type": "redeemMasset", - "inputQty": "194851248990309633228", - "expectedQtys": [ - "23802797196795285641", - "89694067365619154936", - "81605029227122374233" + "6643152601608149270528", + "41307073708449282916352", + "38540674965723970273280" ], - "redemptionFee": "58455374697092889", + "expectedQty": "87049508094131952990059", "reserves": [ - "15743904664511697939699641", - "59326424281206837313659837", - "53976084813657250430709533" + "923416681711434613380035431", + "242867440398019565601696572", + "533377225623251151007810486" ], - "mAssetSupply": "128841965364936540505529027" + "mAssetSupply": "1697239087133716992636673879" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "226999603219182615789568", - "expectedQty": "222190169637797307995206", - "swapFee": "136199761931509569473", + "type": "swap", + "inputIndex": 2, + "inputQty": "203895523178298738737152", + "outputIndex": 1, + "expectedQty": "200601299517915156089879", + "swapFee": "122257287268585154883", "reserves": [ - "15521714494873900631704435", - "59326424281206837313659837", - "53976084813657250430709533" + "923416681711434613380035431", + "242666839098501650445606693", + "533581121146429449746547638" ], - "mAssetSupply": "128615101961479289399308932" + "mAssetSupply": "1697239209391004261221828762", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "34851878424949551104", - "10039479766242492416", - "94013842284343263232" + "18670786033351307296768", + "14727190922310455394304", + "29074179179413290090496" ], - "expectedQty": "139194061788475196140", - "swapFee": "83566577019296695", + "expectedQty": "62559957572184121252066", + "swapFee": "37558509649099932710", "reserves": [ - "15521679642995475682153331", - "59326414241727071071167421", - "53975990799814966087446301" + "923398010925401262072738663", + "242652111907579339990212389", + "533552046967250036456457142" ], - "mAssetSupply": "128614962767417500924112792" + "mAssetSupply": "1697176649433432077100576696" }, { - "type": "redeemMasset", - "inputQty": "68392643574877134625177", - "expectedQtys": [ - "8251374568407635508865", - "31538111658548034892838", - "28693809435191133242878" + "type": "mintMulti", + "inputQtys": [ + "240315942220970721280", + "122220248453251432448", + "48975133720494833664" ], - "redemptionFee": "20517793072463140387", + "expectedQty": "411834880192950586781", "reserves": [ - "15513428268427068046644466", - "59294876130068523036274583", - "53947296990379774954203423" + "923398251241343483043459943", + "242652234127827793241644837", + "533552095942383756951290806" ], - "mAssetSupply": "128546590641635696252628002" + "mAssetSupply": "1697177061268312270051163477" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "22393150127350585753600", - "expectedQty": "22870241999129745799508", + "type": "redeemBassets", + "inputQtys": [ + "271658070992770531328", + "304035063563551440896", + "75260235553437925376" + ], + "expectedQty": "653820923397124647809", + "swapFee": "392528070880803270", "reserves": [ - "15535821418554418632398066", - "59294876130068523036274583", - "53947296990379774954203423" - ] + "923397979583272490272928615", + "242651930092764229690203941", + "533552020682148203513365430" + ], + "mAssetSupply": "1697176407447388872926515668" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "5396324451446665773056", + "inputIndex": 1, + "inputQty": "218201173601086882185216", "outputIndex": 0, - "expectedQty": "5258132599465075050146", - "swapFee": "3223960893267144799", + "expectedQty": "222759795194485536371174", + "swapFee": "132903795433453358167", "reserves": [ - "15530563285954953557347920", - "59294876130068523036274583", - "53952693314831221619976479" + "923175219788078004736557441", + "242870131266365316572389157", + "533552020682148203513365430" ], - "mAssetSupply": "128569464107595719265572309", + "mAssetSupply": "1697176540351184306379873835", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "58259950260851868434432", - "expectedQty": "58010650763037416243565", + "type": "redeemMasset", + "inputQty": "1097895882721932083200", + "expectedQtys": [ + "597018744758710296709", + "157064463820112106840", + "345048860523198400613" + ], + "redemptionFee": "329368764816579624", "reserves": [ - "15530563285954953557347920", - "59294876130068523036274583", - "54010953265092073488410911" - ] + "923174622769333246026260732", + "242869974201901496460282317", + "533551675633287680314964817" + ], + "mAssetSupply": "1697175442784670349264370259" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "137347956486909361913856", - "expectedQty": "137854649317337015788472", - "swapFee": "82408773892145617148", + "type": "redeemBassets", + "inputQtys": [ + "4165292418238745088", + "60033956602078674944", + "16333336331073474560" + ], + "expectedQty": "81404102751753133316", + "swapFee": "48871784721885010", "reserves": [ - "15530563285954953557347920", - "59294876130068523036274583", - "53873098615774736472622439" + "923174618604040827787515644", + "242869914167944894381607373", + "533551659299951349241490257" ], - "mAssetSupply": "128490209210645739465519166" + "mAssetSupply": "1697175361380567597511236943" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7775033493989448", - "8078923479865090", - "13013902911013528" + "77631025372617471164416", + "54948628071785504440320", + "456372657567976680062976" ], - "expectedQty": "28935606620518987", - "swapFee": "17371787044538", + "expectedQty": "588999557175253840149208", "reserves": [ - "15530563278179920063358472", - "59294876121989599556409493", - "53873098602760833561608911" + "923252249629413445258680060", + "242924862796016679886047693", + "534008031957519325921553233" ], - "mAssetSupply": "128490209181710132845000179" + "mAssetSupply": "1697764360937742851351386151" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1189794031881950238605312", - "expectedQty": "1162354444106110823873845", - "swapFee": "713876419129170143163", + "inputIndex": 1, + "inputQty": "170265620865126781419520", + "expectedQty": "167625549719493461575643", + "swapFee": "102159372519076068851", "reserves": [ - "14368208834073809239484627", - "59294876121989599556409493", - "53873098602760833561608911" + "923252249629413445258680060", + "242757237246297186424472050", + "534008031957519325921553233" ], - "mAssetSupply": "127301129026247311776538030" + "mAssetSupply": "1697594197476250243646035482" }, { - "type": "mintMulti", - "inputQtys": [ - "596617681040962368831488", - "165006351367611994865664", - "475321999013080358453248" + "type": "mint", + "inputIndex": 1, + "inputQty": "2139595409633814742302720", + "expectedQty": "2171717083827442544616625", + "reserves": [ + "923252249629413445258680060", + "244896832655931001166774770", + "534008031957519325921553233" + ] + }, + { + "type": "redeemMasset", + "inputQty": "2322248963131752369356", + "expectedQtys": [ + "1260984441785253167231", + "334481823299721369591", + "729351940769255817452" ], - "expectedQty": "1248144157837018669947282", + "redemptionFee": "696674688939525710", "reserves": [ - "14964826515114771608316115", - "59459882473357211551275157", - "54348420601773913920062159" + "923250988644971660005512829", + "244896498174107701445405179", + "534007302605578556665735781" ], - "mAssetSupply": "128549273184084330446485312" + "mAssetSupply": "1699763593007789243377808461" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "789572437721158204260352", - "outputIndex": 1, - "expectedQty": "789705164291984648892652", - "swapFee": "471565100400389818989", + "inputQty": "7415031251549415", + "expectedQty": "7410344655122042", + "reserves": [ + "923250988644971660005512829", + "244896498174107701445405179", + "534007302612993587917285196" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "2358647004839377159323648", + "4566535682086289037852672", + "3261608580566124549111808" + ], + "expectedQty": "10239024482600107706451089", + "swapFee": "6147102951330863141755", "reserves": [ - "14964826515114771608316115", - "58670177309065226902382505", - "55137993039495072124322511" + "920892341640132282846189181", + "240329962492021412407552507", + "530745694032427463368173388" ], - "mAssetSupply": "128549744749184730836304301", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1689524568532599480326479414" }, { "type": "redeemMasset", - "inputQty": "637157930747268012441", + "inputQty": "791116611883306634025369", "expectedQtys": [ - "74151041121020367492", - "290712005637219125897", - "273209955696621528581" + "431076696263387177685469", + "112500279956339963008381", + "248446088640538488638222" ], - "redemptionFee": "191147379224180403", + "redemptionFee": "237334983564991990207", "reserves": [ - "14964752364073650587948623", - "58669886597059589683256608", - "55137719829539375502793930" + "920461264943868895668503712", + "240217462212065072444544126", + "530497247943786924879535166" ], - "mAssetSupply": "128549107782401362792472263" + "mAssetSupply": "1688733689255699738684444252" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "131970105663951709667328", - "326521725547474910707712", - "8082855988179273515008" + "3618199667244986525548544", + "1877277998905525266284544", + "1096270270623620899274752" ], - "expectedQty": "467842579085615341297412", + "expectedQty": "6597215530572161555475968", + "swapFee": "3960705741788369955258", "reserves": [ - "15096722469737602297615951", - "58996408322607064593964320", - "55145802685527554776308938" + "916843065276623909142955168", + "238340184213159547178259582", + "529400977673163303980260414" ], - "mAssetSupply": "129016950361486978133769675" + "mAssetSupply": "1682136473725127577128968284" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "9118701821190536192", - "expectedQty": "9070393222609884081", - "reserves": [ - "15096722469737602297615951", - "58996417441308885784500512", - "55145802685527554776308938" - ] - }, - { - "type": "redeemMasset", - "inputQty": "380273334557883970355", - "expectedQtys": [ - "44483754348543126242", - "173837874158714950806", - "162491715995549796116" - ], - "redemptionFee": "114082000367365191", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8028608355960380754755584", + "expectedQty": "8074325066892289286907894", + "swapFee": "4817165013576228452853", "reserves": [ - "15096677985983253754489709", - "58996243603434727069549706", - "55145640193811559226512822" + "908768740209731619856047274", + "238340184213159547178259582", + "529400977673163303980260414" ], - "mAssetSupply": "129016579272627643227048592" + "mAssetSupply": "1674112682534180772602665553" }, { - "type": "redeemMasset", - "inputQty": "70495035090549150528307", - "expectedQtys": [ - "8246394208538916141672", - "32226048805480222787438", - "30122699069466855170316" + "type": "redeemBassets", + "inputQtys": [ + "218647080592948991098880", + "51461639759581786669056", + "164089948182698927325184" ], - "redemptionFee": "21148510527164745158", + "expectedQty": "433504850150229371843788", + "swapFee": "260259065529455296284", "reserves": [ - "15088431591774714838348037", - "58964017554629246846762268", - "55115517494742092371342506" + "908550093129138670864948394", + "238288722573399965391590526", + "529236887724980605052935230" ], - "mAssetSupply": "128946105386047621241265443" + "mAssetSupply": "1673679177684030543230821765" }, { "type": "redeemBassets", "inputQtys": [ - "222722705670676064239616", - "10987395375325182427136", - "124680044188658766446592" + "23205012460825999310848", + "23869105678468530569216", + "12807721397238362013696" ], - "expectedQty": "362917248140151375097440", - "swapFee": "217881077530609190572", + "expectedQty": "60093108674835084736997", + "swapFee": "36077511711928207766", "reserves": [ - "14865708886104038774108421", - "58953030159253921664335132", - "54990837450553433604895914" + "908526888116677844865637546", + "238264853467721496861021310", + "529224080003583366690921534" ], - "mAssetSupply": "128583188137907469866168003" + "mAssetSupply": "1673619084575355708146084768" }, { "type": "mintMulti", "inputQtys": [ - "1159638585156181032960", - "212950600982392209408", - "1453678377467404615680" + "4588087618645103992635392", + "4167116980211329578041344", + "627487527154268686516224" ], - "expectedQty": "2845569743026423340782", + "expectedQty": "9416718018933663339923994", "reserves": [ - "14866868524689194955141381", - "58953243109854904056544540", - "54992291128930901009511594" + "913114975735322948858272938", + "242431970447932826439062654", + "529851567530737635377437758" ], - "mAssetSupply": "128586033707650496289508785" + "mAssetSupply": "1683035802594289371486008762" }, { "type": "mintMulti", "inputQtys": [ - "15312752184044151635968", - "30609320122996236484608", - "12019238149280495566848" + "210592791585451591860224", + "195920460021019705344000", + "268650125178210233614336" ], - "expectedQty": "58079747811738789619601", + "expectedQty": "676603607907200622238344", "reserves": [ - "14882181276873239106777349", - "58983852429977900293029148", - "55004310367080181505078442" + "913325568526908400450133162", + "242627890907953846144406654", + "530120217655915845611052094" ], - "mAssetSupply": "128644113455462235079128386" + "mAssetSupply": "1683712406202196572108247106" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "524933050221188370923520", - "expectedQty": "527067604497985483087181", - "swapFee": "314959830132713022554", + "inputIndex": 1, + "inputQty": "2773095347554854371328", + "expectedQty": "2730855328911926916262", + "swapFee": "1663857208532912622", + "reserves": [ + "913325568526908400450133162", + "242625160052624934217490392", + "530120217655915845611052094" + ], + "mAssetSupply": "1683709634770706225786788400" + }, + { + "type": "redeemMasset", + "inputQty": "6734926685033946152960", + "expectedQtys": [ + "3652254083709650943945", + "970222188175606689537", + "2119872471011223279629" + ], + "redemptionFee": "2020478005510183845", "reserves": [ - "14882181276873239106777349", - "58983852429977900293029148", - "54477242762582196021991261" + "913321916272824690799189217", + "242624189830436758610800855", + "530118097783444834387772465" ], - "mAssetSupply": "128119495365071179421227420" + "mAssetSupply": "1683702901864499197350819285" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "632238992779091445284864", + "inputIndex": 2, + "inputQty": "2079893434125385203712", "outputIndex": 1, - "expectedQty": "649278994272089655764434", - "swapFee": "387810534915705043763", + "expectedQty": "2046865549268707852407", + "swapFee": "1247115912738452707", "reserves": [ - "15514420269652330552062213", - "58334573435705810637264714", - "54477242762582196021991261" + "913321916272824690799189217", + "242622142964887489902948448", + "530120177676878959772976177" ], - "mAssetSupply": "128119883175606095126271183", + "mAssetSupply": "1683702903111615110089271992", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "22544210566606911176704", - "outputIndex": 0, - "expectedQty": "21951417953350317305031", - "swapFee": "13458023350814555447", + "inputQty": "23961134251742597120", + "expectedQty": "23596145302585220078", + "swapFee": "14376680551045558", "reserves": [ - "15492468851698980234757182", - "58357117646272417548441418", - "54477242762582196021991261" + "913321916272824690799189217", + "242622119368742187317728370", + "530120177676878959772976177" ], - "mAssetSupply": "128119896633629445940826630", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1683702879164857538897720430" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "26569927389123653632", - "expectedQty": "27133762396957496249", + "inputIndex": 2, + "inputQty": "14336008979001812975616", + "expectedQty": "14326584889563986150780", "reserves": [ - "15492495421626369358410814", - "58357117646272417548441418", - "54477242762582196021991261" + "913321916272824690799189217", + "242622119368742187317728370", + "530134513685857961585951793" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "19887892825858138701824", - "297262695188304001761280", - "194521962783423984566272" + "830395496664627", + "438841268320194", + "90707887613824" ], - "expectedQty": "509727237927670274222144", + "expectedQty": "1361297957616199", + "swapFee": "817269136051", "reserves": [ - "15512383314452227497112638", - "58654380341460721550202698", - "54671764725365620006557533" + "913321916271994295302524590", + "242622119368303346049408176", + "530134513685767253698337969" ], - "mAssetSupply": "128629651005319513172545023" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "894731437212097629388800", - "expectedQty": "890731129241315613446531", - "reserves": [ - "15512383314452227497112638", - "58654380341460721550202698", - "55566496162577717635946333" - ] + "mAssetSupply": "1683717205748385804926255011" }, { "type": "redeemBassets", "inputQtys": [ - "45669875739342912", - "64741054713564880", - "67085567122351448" + "22975314127609426725568512", + "2702611904231479990812672", + "20952418659221036410601472" ], - "expectedQty": "177854506082672211", - "swapFee": "106776769711430", + "expectedQty": "46517061313361426590882867", + "swapFee": "27926992983807140238672", "reserves": [ - "15512383268782351757769726", - "58654380276719666836637818", - "55566496095492150513594885" + "890346602144384868576956078", + "239919507464071866058595504", + "509182095026546217287736497" ], - "mAssetSupply": "129520381956706322703319343" + "mAssetSupply": "1637200144435024378335372144" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "6344811710515721011200", - "expectedQty": "6206364670260314512335", - "swapFee": "3806887026309432606", + "inputIndex": 2, + "inputQty": "783688516377728512", + "expectedQty": "783588683022199343", + "swapFee": "470213109826637", "reserves": [ - "15506176904112091443257391", - "58654380276719666836637818", - "55566496095492150513594885" + "890346602144384868576956078", + "239919507464071866058595504", + "509182094242957534265537154" ], - "mAssetSupply": "129514040951882833291740749" + "mAssetSupply": "1637200143651806075067470269" }, { - "type": "redeemMasset", - "inputQty": "804381448896658656355942", - "expectedQtys": [ - "96276350340243348133762", - "364179365386563039409965", - "345006991623490770479507" + "type": "redeemBassets", + "inputQtys": [ + "2870585964876751727230976", + "9441671861929951262408704", + "6520425259208989537730560" ], - "redemptionFee": "241314434668997596906", + "expectedQty": "18951526372872029084509549", + "swapFee": "11377742469204740294882", "reserves": [ - "15409900553771848095123629", - "58290200911333103797227853", - "55221489103868659743115378" + "887476016179508116849725102", + "230477835602141914796186800", + "502661668983748544727806594" ], - "mAssetSupply": "128709900817420843632981713" + "mAssetSupply": "1618248617278934045982960720" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "40088844126605", - "expectedQty": "39906976805221", + "type": "redeemBassets", + "inputQtys": [ + "27467288370745907871744", + "18219133314856040529920", + "5369727036401069850624" + ], + "expectedQty": "51158656465825991830903", + "swapFee": "30713622052727231437", "reserves": [ - "15409900553771848095123629", - "58290200911333103797227853", - "55221489103908748587241983" - ] + "887448548891137370941853358", + "230459616468827058755656880", + "502656299256712143657955970" + ], + "mAssetSupply": "1618197458622468219991129817" }, { - "type": "redeemMasset", - "inputQty": "82247338280966225920", - "expectedQtys": [ - "9844177244204034108", - "37237039095036478761", - "35276679724886429873" - ], - "redemptionFee": "24674201484289867", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3989892499123955302400", + "expectedQty": "3989594463950008546904", + "swapFee": "2393935499474373181", "reserves": [ - "15409890709594603891089521", - "58290163674294008760749092", - "55221453827229023700812110" + "887448548891137370941853358", + "230459616468827058755656880", + "502652309662248193649409066" ], - "mAssetSupply": "128709818594796671127850881" + "mAssetSupply": "1618193471123904595510200598" }, { "type": "mintMulti", "inputQtys": [ - "288347896632578880", - "257104002377289920", - "284602367976514688" + "136713203586636496896", + "3011217652047288832", + "47266697137987018752" ], - "expectedQty": "833717194263445025", + "expectedQty": "186142836298129130409", "reserves": [ - "15409890997942500523668401", - "58290163931398011138039012", - "55221454111831391677326798" + "887448685604340957578350254", + "230459619480044710802945712", + "502652356928945331636427818" ], - "mAssetSupply": "128709819428513865391295906" + "mAssetSupply": "1618193657266740893639331007" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "85478136551588132552704", - "188210711420469432549376", - "86934888671343265447936" + "3313957429854922604544", + "371974976127533580288", + "264595191821925482496" + ], + "expectedQty": "3935024121839921695702", + "reserves": [ + "887451999561770812500954798", + "230459991455020838336526000", + "502652621524137153561910314" ], - "expectedQty": "361133624625256979715471", - "swapFee": "216810260931713215758", + "mAssetSupply": "1618197592290862733561026709" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "19042713044239574368256", + "expectedQty": "18743126717919605153143", + "swapFee": "11425627826543744620", "reserves": [ - "15324412861390912391115697", - "58101953219977541705489636", - "55134519223160048411878862" + "887451999561770812500954798", + "230441248328302918731372857", + "502652621524137153561910314" ], - "mAssetSupply": "128348685803888608411580435" + "mAssetSupply": "1618178561003446320530403073" }, { "type": "swap", "inputIndex": 2, - "inputQty": "416357282947742144", + "inputQty": "7896841202647851740430336", "outputIndex": 0, - "expectedQty": "405356021345937639", - "swapFee": "248674429662884", + "expectedQty": "7937209290276580221369997", + "swapFee": "4735280612167667908864", "reserves": [ - "15324412456034891045178058", - "58101953219977541705489636", - "55134519639517331359621006" + "879514790271494232279584801", + "230441248328302918731372857", + "510549462726785005302340650" ], - "mAssetSupply": "128348685804137282841243319", + "mAssetSupply": "1618183296284058488198311937", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2150372980299950165327872", - "2627487673527229231398912", - "1866279154892939141840896" - ], - "expectedQty": "6673202278391595476605158", - "swapFee": "4006325162132236627939", - "reserves": [ - "13174039475734940879850186", - "55474465546450312474090724", - "53268240484624392217780110" + "type": "redeemMasset", + "inputQty": "4297728765307409674115481", + "expectedQtys": [ + "2335200250513327440485787", + "611844697527763652109037", + "1355560186646783168750092" ], - "mAssetSupply": "121675483525745687364638161" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "1583602262968403492864", - "outputIndex": 0, - "expectedQty": "1532474446242803146444", - "swapFee": "945121402020360785", + "redemptionFee": "1289318629592222902234", "reserves": [ - "13172507001288698076703742", - "55474465546450312474090724", - "53269824086887360621272974" + "877179590020980904839099014", + "229829403630775155079263820", + "509193902540138222133590558" ], - "mAssetSupply": "121675484470867089384998946", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1613886856837380670747098690" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "215939800473259888082944", - "expectedQty": "214698742699844002578146", + "inputIndex": 0, + "inputQty": "7298590515606800302080", + "expectedQty": "7253084851753748528430", "reserves": [ - "13172507001288698076703742", - "55690405346923572362173668", - "53269824086887360621272974" + "877186888611496511639401094", + "229829403630775155079263820", + "509193902540138222133590558" ] }, { "type": "redeemMasset", - "inputQty": "218977812517434608844", + "inputQty": "4716367643515256018724454", "expectedQtys": [ - "23657536205600495295", - "100018757300377053874", - "95671445980496762689" + "2562680347228448390367192", + "671441061815367929376134", + "1487597710259560237976191" ], - "redemptionFee": "65693343755230382", + "redemptionFee": "1414910293054576805617", "reserves": [ - "13172483343752492476208447", - "55690305328166271985119794", - "53269728415441380124510285" + "874624208264268063249033902", + "229157962568959787149887686", + "507706304829878661895614367" ], - "mAssetSupply": "121889964301447759708198630" + "mAssetSupply": "1609179157189010223053708283" }, { "type": "redeemBassets", "inputQtys": [ - "309175829443290633076736", - "89879698624398382596096", - "338752654618662925238272" + "26370633542920712679849984", + "37545352136083129451413504", + "10292279952556374750134272" ], - "expectedQty": "744104949518844798378837", - "swapFee": "446731008316296657021", + "expectedQty": "74691841666559669682586352", + "swapFee": "44842010206059437472035", "reserves": [ - "12863307514309201843131711", - "55600425629541873602523698", - "52930975760822717199272013" + "848253574721347350569183918", + "191612610432876657698474182", + "497414024877322287145480095" ], - "mAssetSupply": "121145859351928914909819793" + "mAssetSupply": "1534487315522450553371121931" }, { - "type": "redeemBassets", - "inputQtys": [ - "569241992818666700800", - "6115202086877249142784", - "2456096296643929833472" - ], - "expectedQty": "9107265173261120257575", - "swapFee": "5467639687769333754", + "type": "redeem", + "inputIndex": 1, + "inputQty": "218448477003387066384384", + "expectedQty": "213846925777506435754460", + "swapFee": "131069086202032239830", "reserves": [ - "12862738272316383176430911", - "55594310427454996353380914", - "52928519664526073269438541" + "848253574721347350569183918", + "191398763507099151262719722", + "497414024877322287145480095" ], - "mAssetSupply": "121136752086755653789562218" + "mAssetSupply": "1534268998114533368336977377" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "760128040678022797328384", - "outputIndex": 0, - "expectedQty": "732684507874932174238619", - "swapFee": "453348065825438003481", + "inputQty": "1555986312907668072693760", + "expectedQty": "1522919008175808109626213", + "swapFee": "933591787744600843616", "reserves": [ - "12130053764441451002192292", - "56354438468133019150709298", - "52928519664526073269438541" + "848253574721347350569183918", + "189875844498923343153093509", + "497414024877322287145480095" ], - "mAssetSupply": "121137205434821479227565699", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1532713945393413444865127233" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7604144130214233899008", - "4548993110277144182784", - "8967208220662961274880" + "3322668905645357173571584", + "1817341569825784184438784", + "4454121461094111130943488" ], - "expectedQty": "21286005171581083697741", + "expectedQty": "9602390807425595146737592", + "swapFee": "5764893420507661685053", "reserves": [ - "12137657908571665236091300", - "56358987461243296294892082", - "52937486872746736230713421" + "844930905815701993395612334", + "188058502929097558968654725", + "492959903416228176014536607" ], - "mAssetSupply": "121158491439993060311263440" + "mAssetSupply": "1523111554585987849718389641" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "29032342119217692147712", - "expectedQty": "29183193947737135375493", - "swapFee": "17419405271530615288", + "inputIndex": 0, + "inputQty": "24597732161925937102848", + "expectedQty": "24763860731268707602896", + "swapFee": "14758639297155562261", "reserves": [ - "12137657908571665236091300", - "56358987461243296294892082", - "52908303678798999095337928" + "844906141954970724688009438", + "188058502929097558968654725", + "492959903416228176014536607" ], - "mAssetSupply": "121129476517279114149731016" + "mAssetSupply": "1523086971612465220936849054" }, { "type": "mintMulti", "inputQtys": [ - "708064955523925671936", - "342274600599836295168", - "88325109212055912448" + "173407698054752489177088", + "294244631568670877810688", + "174819764262044778364928" ], - "expectedQty": "1158900140665673344804", + "expectedQty": "647264254961037194883564", "reserves": [ - "12138365973527189161763236", - "56359329735843896131187250", - "52908392003908211151250376" + "845079549653025477177186526", + "188352747560666229846465413", + "493134723180490220792901535" ], - "mAssetSupply": "121130635417419779823075820" + "mAssetSupply": "1523734235867426258131732618" }, { "type": "redeemMasset", - "inputQty": "53923487178087492222976", + "inputQty": "6371127894788530767921152", "expectedQtys": [ - "5401991467930039891279", - "25081845368253969583100", - "23546059066792059993786" + "3532436649674645292920329", + "787315405778535787486258", + "2061305554140015609801445" ], - "redemptionFee": "16177046153426247666", + "redemptionFee": "1911338368436559230376", "reserves": [ - "12132963982059259121871957", - "56334247890475642161604150", - "52884845944841419091256590" + "841547113003350831884266197", + "187565432154887694058979155", + "491073417626350205183100090" ], - "mAssetSupply": "121076728107287845757100510" + "mAssetSupply": "1517365019311006163923041842" }, { - "type": "mintMulti", - "inputQtys": [ - "37742401631325423403008", - "38609540693815772315648", - "68730751442810499497984" - ], - "expectedQty": "145658904384653897174581", - "reserves": [ - "12170706383690584545274965", - "56372857431169457933919798", - "52953576696284229590754574" - ], - "mAssetSupply": "121222387011672499654275091" - }, - { - "type": "mintMulti", - "inputQtys": [ - "2687049211682901458944", - "1200451051217028644864", - "890308930453859467264" - ], - "expectedQty": "4851681923100909169668", + "type": "mint", + "inputIndex": 0, + "inputQty": "95511626829751408660578304", + "expectedQty": "94759468375750981373731145", "reserves": [ - "12173393432902267446733909", - "56374057882220674962564662", - "52954467005214683450221838" - ], - "mAssetSupply": "121227238693595600563444759" + "937058739833102240544844501", + "187565432154887694058979155", + "491073417626350205183100090" + ] }, { "type": "redeemMasset", - "inputQty": "49075322378386843631616", + "inputQty": "1656650522303310985376563", "expectedQtys": [ - "4926565923900898008669", - "22814551594456375909553", - "21430644963885606826977" + "962650929857783251658558", + "192688067458011013911029", + "504485217426863768796664" ], - "redemptionFee": "14722596713516053089", + "redemptionFee": "496995156690993295612", "reserves": [ - "12168466866978366548725240", - "56351243330626218586655109", - "52933036360250797843394861" + "936096088903244457293185943", + "187372744087429683045068126", + "490568932408923341414303426" ], - "mAssetSupply": "121178178093813927235866232" + "mAssetSupply": "1610468334159610525304692036" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "73825747059613716447232", + "inputIndex": 0, + "inputQty": "14796420848541941236760576", "outputIndex": 1, - "expectedQty": "73831463545521529986579", - "swapFee": "44040454715894589943", + "expectedQty": "14260369153708464117896901", + "swapFee": "8801917420702666787228", "reserves": [ - "12168466866978366548725240", - "56277411867080697056668530", - "53006862107310411559842093" + "950892509751786398529946519", + "173112374933721218927171225", + "490568932408923341414303426" ], - "mAssetSupply": "121178222134268643130456175", + "mAssetSupply": "1610477136077031227971479264", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeemMasset", + "inputQty": "118883509151680515643801", + "expectedQtys": [ + "70172697408862724108572", + "12775116198070136204220", + "36202351894754249296297" + ], + "redemptionFee": "35665052745504154693", + "reserves": [ + "950822337054377535805837947", + "173099599817523148790967005", + "490532730057028587165007129" + ], + "mAssetSupply": "1610358288232932292959990156" + }, + { + "type": "redeem", "inputIndex": 0, - "inputQty": "31103500096503541760", - "expectedQty": "32107075734999348396", + "inputQty": "7630812479472860659712", + "expectedQty": "7698002282530194164593", + "swapFee": "4578487487683716395", "reserves": [ - "12168497970478463052267000", - "56277411867080697056668530", - "53006862107310411559842093" - ] + "950814639052095005611673354", + "173099599817523148790967005", + "490532730057028587165007129" + ], + "mAssetSupply": "1610350661998940307783046839" }, { "type": "mint", "inputIndex": 2, - "inputQty": "37233291627016042315776", - "expectedQty": "37018505570434088523293", + "inputQty": "6407771774406948005347328", + "expectedQty": "6400756632746831394967452", "reserves": [ - "12168497970478463052267000", - "56277411867080697056668530", - "53044095398937427602157869" + "950814639052095005611673354", + "173099599817523148790967005", + "496940501831435535170354457" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1754935347003159", - "expectedQty": "1743663852015530", + "inputIndex": 2, + "inputQty": "1562030808400168067530752", + "expectedQty": "1560176223367887464329725", "reserves": [ - "12168497970478463052267000", - "56277411868835632403671689", - "53044095398937427602157869" + "950814639052095005611673354", + "173099599817523148790967005", + "498502532639835703237885209" ] }, { - "type": "redeemMasset", - "inputQty": "8655781910378636849971", - "expectedQtys": [ - "868671610947055151801", - "4017471190498144853432", - "3786654681063522993554" + "type": "mintMulti", + "inputQtys": [ + "34906353829521047683072", + "57297862872404443791360", + "7265984653044633042944" ], - "redemptionFee": "2596734573113591054", + "expectedQty": "100893148458841823994944", "reserves": [ - "12167629298867515997115199", - "56273394397645134258818257", - "53040308744256364079164315" + "950849545405924526659356426", + "173156897680395553234758365", + "498509798624488747870928153" ], - "mAssetSupply": "121206619563482670547084477" + "mAssetSupply": "1618412488003513868466338960" }, { - "type": "redeemMasset", - "inputQty": "69724053265121489715", - "expectedQtys": [ - "6997323442143185958", - "32361533386315462979", - "30502260270966718926" + "type": "mintMulti", + "inputQtys": [ + "64975889937176398397440", + "53688139074562038956032", + "12562308024217584533504" ], - "redemptionFee": "20917215979536446", + "expectedQty": "132253084781799980518457", "reserves": [ - "12167622301544073853929241", - "56273362036111747943355278", - "53040278241996093112445389" + "950914521295861703057753866", + "173210585819470115273714397", + "498522360932512965455461657" ], - "mAssetSupply": "121206549860346621405131208" + "mAssetSupply": "1618544741088295668446857417" }, { "type": "redeemBassets", "inputQtys": [ - "4224118994545090756608", - "5015333027795867533312", - "7123844693902951972864" + "179886644929664976420864", + "137464716461455479668736", + "40031178090480572301312" ], - "expectedQty": "16426372898527098755207", - "swapFee": "9861740783586411099", + "expectedQty": "359878073326958637220879", + "swapFee": "216056477882904925287", "reserves": [ - "12163398182549528763172633", - "56268346703083952075821966", - "53033154397302190160472525" + "950734634650932038081333002", + "173073121103008659794045661", + "498482329754422484883160345" ], - "mAssetSupply": "121190123487448094306376001" + "mAssetSupply": "1618184863014968709809636538" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "120142530715292401664", + "expectedQty": "119029527815186051759", + "reserves": [ + "950734754793462753373734666", + "173073121103008659794045661", + "498482329754422484883160345" + ] }, { "type": "mintMulti", "inputQtys": [ - "804947315840703660032", - "4551568012259133751296", - "2685462820261263835136" + "7036937020999125323218944", + "9652518528010734360592384", + "553445072867627211161600" ], - "expectedQty": "8023233248748027148955", + "expectedQty": "17460235462615321382469069", "reserves": [ - "12164203129865369466832665", - "56272898271096211209573262", - "53035839860122451424307661" + "957771691814461878696953610", + "182725639631019394154638045", + "499035774827290112094321945" ], - "mAssetSupply": "121198146720696842333524956" + "mAssetSupply": "1635645217507111846378157366" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "73400401503520393527296", + "expectedQty": "73332124228112185569144", + "reserves": [ + "957771691814461878696953610", + "182725639631019394154638045", + "499109175228793632487849241" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "367087010270422040576", - "expectedQty": "364728508336559956650", + "inputQty": "13899364769572128510967808", + "expectedQty": "14258202092486247940599082", "reserves": [ - "12164203129865369466832665", - "56273265358106481631613838", - "53035839860122451424307661" + "957771691814461878696953610", + "196625004400591522665605853", + "499109175228793632487849241" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "442516305700203456", + "1146305961152798592", + "422739884725378304" + ], + "expectedQty": "2035105206216300550", + "swapFee": "1221796201450650", + "reserves": [ + "957771691371945572996750154", + "196625003254285561512807261", + "499109174806053747762470937" + ], + "mAssetSupply": "1649976749688721000288025042" + }, { "type": "swap", - "inputIndex": 0, - "inputQty": "2110226685798841581568", + "inputIndex": 1, + "inputQty": "37554854225192220098560000", "outputIndex": 2, - "expectedQty": "2189711303924478067110", - "swapFee": "1307028092703406702", + "expectedQty": "38266887479264060049941920", + "swapFee": "22984377322189275962163", "reserves": [ - "12166313356551168308414233", - "56273265358106481631613838", - "53033650148818526946240551" + "957771691371945572996750154", + "234179857479477781611367261", + "460842287326789687712529017" ], - "mAssetSupply": "121198512756233271596888308", + "mAssetSupply": "1649999734066043189563987205", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "1080121867322978629320704", + "expectedQty": "1072237084960646175143641", + "reserves": [ + "958851813239268551626070858", + "234179857479477781611367261", + "460842287326789687712529017" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "821988190084206853881856", - "874845799715668473413632", - "537686365188165426216960" + "16153632973590136509956096", + "25698529743447222680289280", + "6824321491427570334302208" ], - "expectedQty": "2251244475541224641297947", + "expectedQty": "49019354443187731525168178", + "swapFee": "29429270228049468596258", "reserves": [ - "12988301546635375162296089", - "57148111157822150105027470", - "53571336514006692372457511" + "942698180265678415116114762", + "208481327736030558931077981", + "454017965835362117378226809" ], - "mAssetSupply": "123449757231774496238186255" + "mAssetSupply": "1602052616707816104213962668" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "7287932814551768", - "expectedQty": "7323000833693452", - "swapFee": "4372759688731", + "inputIndex": 1, + "inputQty": "2115111157801193031335936", + "expectedQty": "2072131956418162799681567", + "swapFee": "1269066694680715818801", "reserves": [ - "12988301546635375162296089", - "57148111157822150105027470", - "53571336506683691538764059" + "942698180265678415116114762", + "206409195779612396131396414", + "454017965835362117378226809" ], - "mAssetSupply": "123449757224490936183323218" + "mAssetSupply": "1599938774616709591898445533" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1721641058746798702592", - "outputIndex": 1, - "expectedQty": "1721802871789355811435", - "swapFee": "1027420964160854472", + "type": "mint", + "inputIndex": 1, + "inputQty": "4273844046126995472384", + "expectedQty": "4360763282615368627862", "reserves": [ - "12988301546635375162296089", - "57146389354950360749216035", - "53573058147742438337466651" + "942698180265678415116114762", + "206413469623658523126868798", + "454017965835362117378226809" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "5593550421212794978304", + "4790080716226376499200", + "6406289779397200183296" ], - "mAssetSupply": "123449758251911900344177690", - "hardLimitError": false, - "insufficientLiquidityError": false + "expectedQty": "16845376339575007181360", + "swapFee": "10113293780013012116", + "reserves": [ + "942692586715257202321136458", + "206408679542942296750369598", + "454011559545582720178043513" + ], + "mAssetSupply": "1599926290003652632259892035" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "31435776878949055856640", - "5358232735764144193536", - "17642696287709592289280" + "42831533378410859462656", + "109686725090579849412608", + "107045304805645315211264" ], - "expectedQty": "55221640226015072638222", + "expectedQty": "261502943094069121734594", + "swapFee": "156995963434502174345", + "reserves": [ + "942649755181878791461673802", + "206298992817851716900956990", + "453904514240777074862832249" + ], + "mAssetSupply": "1599664787060558563138157441" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "18975624110056685568", + "expectedQty": "18585891989703586601", + "swapFee": "11385374466034011", "reserves": [ - "13019737323514324218152729", - "57151747587686124893409571", - "53590700844030147929755931" + "942649755181878791461673802", + "206298974231959727197370389", + "453904514240777074862832249" ], - "mAssetSupply": "123504979892137915416815912" + "mAssetSupply": "1599664768096319827547505884" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "23763735899672453448728576", + "expectedQty": "24195728405817266729239418", + "reserves": [ + "942649755181878791461673802", + "230062710131632180646098965", + "453904514240777074862832249" + ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "356567642618069637922816", - "outputIndex": 1, - "expectedQty": "368553178422991588399862", - "swapFee": "219971310017648782101", + "inputIndex": 1, + "inputQty": "4641314390206306980986880", + "outputIndex": 2, + "expectedQty": "4707500487107271104458636", + "swapFee": "2829015658627083797577", "reserves": [ - "13376304966132393856075545", - "56783194409263133305009709", - "53590700844030147929755931" + "942649755181878791461673802", + "234704024521838487627085845", + "449197013753669803758373613" ], - "mAssetSupply": "123505199863447933065598013", + "mAssetSupply": "1623863325517795721360542879", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "3391479481175470512275456", + "expectedQty": "3385728009089407819908677", + "swapFee": "2034887688705282307365", + "reserves": [ + "942649755181878791461673802", + "234704024521838487627085845", + "445811285744580395938464936" + ], + "mAssetSupply": "1620473880924308956130574788" + }, + { + "type": "redeemMasset", + "inputQty": "827942225992974073856", + "expectedQtys": [ + "481479774503362930541", + "119880411765452433887", + "227708240681545147593" + ], + "redemptionFee": "248382667797892222", + "reserves": [ + "942649273702104288098743261", + "234703904641426722174651958", + "445811058036339714393317343" + ], + "mAssetSupply": "1620473053230465630954393154" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "2519387037717047118135296", + "expectedQty": "2536196466032954772343811", + "swapFee": "1511632222630228270881", + "reserves": [ + "940113077236071333326399450", + "234703904641426722174651958", + "445811058036339714393317343" + ], + "mAssetSupply": "1617955177824971214064528739" + }, { "type": "redeemBassets", "inputQtys": [ - "1861426549330816008192", - "14707579954979911237632", - "5550778689410115305472" + "136434239173699351609344", + "107641189236602168147968", + "106583893918253263618048" ], - "expectedQty": "22056040258567238469990", - "swapFee": "13241569096598302063", + "expectedQty": "351449273832544203238771", + "swapFee": "210996161996724556677", "reserves": [ - "13374443539583063040067353", - "56768486829308153393772077", - "53585150065340737814450459" + "939976642996897633974790106", + "234596263452190120006503990", + "445704474142421461129699295" ], - "mAssetSupply": "123483143823189365827128023" + "mAssetSupply": "1617603728551138669861289968" }, { "type": "mintMulti", "inputQtys": [ - "610863807661551780888576", - "541405247338529576452096", - "289256019266836396769280" + "28406303179670568883453952", + "28476862717394502675333120", + "4118193296835245080838144" ], - "expectedQty": "1453006692432508712928389", + "expectedQty": "61206959716165725441957013", "reserves": [ - "13985307347244614820955929", - "57309892076646682970224173", - "53874406084607574211219739" + "968382946176568202858244058", + "263073126169584622681837110", + "449822667439256706210537439" ], - "mAssetSupply": "124936150515621874540056412" + "mAssetSupply": "1678810688267304395303246981" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "281821550906556098281472", - "expectedQty": "280240257144048713123463", + "inputIndex": 2, + "inputQty": "4886404504270830592", + "expectedQty": "4894306023844117303", "reserves": [ - "13985307347244614820955929", - "57591713627553239068505645", - "53874406084607574211219739" + "968382946176568202858244058", + "263073126169584622681837110", + "449822672325661210481368031" ] }, { "type": "redeemBassets", "inputQtys": [ - "4679726369703092224", - "23197978821084749824", - "1683043488516710656" + "85852384984460032", + "125357134587635216", + "2353874729919035" ], - "expectedQty": "29540797995659842693", - "swapFee": "17735119869317496", + "expectedQty": "214581130095595919", + "swapFee": "128825973641542", "reserves": [ - "13985302667518245117863705", - "57591690429574417983755821", - "53874404401564085694509083" + "968382946090715817873784026", + "263073126044227488094201894", + "449822672323307335751448996" ], - "mAssetSupply": "125216361231967927593337182" + "mAssetSupply": "1678810692947029289051768365" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "127615984265453387776", - "outputIndex": 1, - "expectedQty": "127627581210702833182", - "swapFee": "76191005604176773", + "type": "mint", + "inputIndex": 0, + "inputQty": "2050087395301157502976", + "expectedQty": "2036241975399904728225", "reserves": [ - "13985302667518245117863705", - "57591562801993207280922639", - "53874532017548351147896859" - ], - "mAssetSupply": "125216361308158933197513955", - "hardLimitError": false, - "insufficientLiquidityError": false + "968384996178111119031287002", + "263073126044227488094201894", + "449822672323307335751448996" + ] }, { "type": "redeemMasset", - "inputQty": "30414345191563554560409", + "inputQty": "16758123155197516812019302", "expectedQtys": [ - "3395931748448002479814", - "13984467924048994127487", - "13081893045911241237743" + "9663642794111498237238041", + "2625241746676236333600455", + "4488840330220888959381571" ], - "redemptionFee": "9124303557469066368", + "redemptionFee": "5027436946559255043605", "reserves": [ - "13981906735769797115383891", - "57577578334069158286795152", - "53861450124502439906659116" + "958721353383999620794048961", + "260447884297551251760601439", + "445333831993086446792067425" ], - "mAssetSupply": "125185956087270927112019914" + "mAssetSupply": "1662059633470753731399520893" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "419519678151606216425472", - "expectedQty": "408564369888859991722517", - "swapFee": "251711806890963729855", - "reserves": [ - "13573342365880937123661374", - "57577578334069158286795152", - "53861450124502439906659116" + "type": "redeemMasset", + "inputQty": "1718591278215301011865", + "expectedQtys": [ + "991032949689073760304", + "269225707870823070920", + "460342830123316753721" ], - "mAssetSupply": "124766688120926211859324297" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1501562609081355708923904", - "expectedQty": "1538042583135908532763367", + "redemptionFee": "515577383464590303", "reserves": [ - "15074904974962292832585278", - "57577578334069158286795152", - "53861450124502439906659116" - ] + "958720362351049931720288657", + "260447615071843380937530519", + "445333371650256323475313704" + ], + "mAssetSupply": "1662057915395052899563099331" }, { "type": "mintMulti", "inputQtys": [ - "5340005267605650669568", - "14787496068475233763328", - "11721801945432633376768" + "1081932147909255990607872", + "3313265510238690146779136", + "770664733422620537520128" ], - "expectedQty": "31837162857484579749621", + "expectedQty": "5201456722524382007341373", "reserves": [ - "15080244980229898483254846", - "57592365830137633520558480", - "53873171926447872540035884" + "959802294498959187710896529", + "263760880582082071084309655", + "446104036383678944012833832" ], - "mAssetSupply": "126336567866919604971837285" + "mAssetSupply": "1667259372117577281570440704" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "930968068857598801084416", - "outputIndex": 2, - "expectedQty": "929635531463897183290767", - "swapFee": "555665543782091628797", + "type": "redeem", + "inputIndex": 2, + "inputQty": "6247685142015349096448", + "expectedQty": "6233676822707593465060", + "swapFee": "3748611085209209457", "reserves": [ - "15080244980229898483254846", - "58523333898995232321642896", - "52943536394983975356745117" + "959802294498959187710896529", + "263760880582082071084309655", + "446097802706856236419368772" ], - "mAssetSupply": "126337123532463387063466082", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1667253128181046351430553713" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1058756957551039360", - "expectedQty": "1035459251069709394", - "swapFee": "635254174530623", + "inputIndex": 2, + "inputQty": "244997046677973999026176", + "expectedQty": "244446957479768204689829", + "swapFee": "146998228006784399415", "reserves": [ - "15080243944770647413545452", - "58523333898995232321642896", - "52943536394983975356745117" + "959802294498959187710896529", + "263760880582082071084309655", + "445853355749376468214678943" ], - "mAssetSupply": "126337122474341683686957345" + "mAssetSupply": "1667008278132596384215926952" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "373563736061764603740160", - "outputIndex": 0, - "expectedQty": "363509202304204972292494", - "swapFee": "223163246464014024597", + "inputQty": "303570484092688425549824", + "expectedQty": "302886805609703300830275", + "swapFee": "182142290455613055329", "reserves": [ - "14716734742466442441252958", - "58523333898995232321642896", - "53317100131045739960485277" + "959802294498959187710896529", + "263760880582082071084309655", + "445550468943766764913848668" ], - "mAssetSupply": "126337345637588147700981942", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1666704889790794151403432457" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "14475185494832687603515392", - "hardLimitError": true + "inputQty": "13317540903637698889121792", + "expectedQty": "13398226597364211106058141", + "swapFee": "7990524542182619333473", + "reserves": [ + "946404067901594976604838388", + "263760880582082071084309655", + "445550468943766764913848668" + ], + "mAssetSupply": "1653395339411698635133644138" }, { "type": "mint", "inputIndex": 2, - "inputQty": "7228224053166865383424", - "expectedQty": "7195555161750545663656", + "inputQty": "260507406464705858895872", + "expectedQty": "260909706092614246101096", "reserves": [ - "14716734742466442441252958", - "58523333898995232321642896", - "53324328355098906825868701" + "946404067901594976604838388", + "263760880582082071084309655", + "445810976350231470772744540" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "41318720929358225408", - "41698074311819255808", - "46408188192940105728" + "11487888384619351900160", + "9610427802973068328960", + "9012053490910788321280" ], - "expectedQty": "129943741628719636076", + "expectedQty": "30165289732161484894527", + "swapFee": "18110039863214819828", "reserves": [ - "14716776061187371799478366", - "58523375597069544140898704", - "53324374763287099765974429" + "946392580013210357252938228", + "263751270154279098015980695", + "445801964296740559984423260" ], - "mAssetSupply": "126344671136491526966281674" + "mAssetSupply": "1653626083828059087894850707" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "639263876776777712926720", - "expectedQty": "635746693681140255135862", + "type": "swap", + "inputIndex": 2, + "inputQty": "476788300993736952774656", + "outputIndex": 0, + "expectedQty": "480376495722829612672936", + "swapFee": "286512179568885736972", "reserves": [ - "14716776061187371799478366", - "59162639473846321853825424", - "53324374763287099765974429" - ] + "945912203517487527640265292", + "263751270154279098015980695", + "446278752597734296937197916" + ], + "mAssetSupply": "1653626370340238656780587679", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "32166612043847000129536", - "48137386206952767356928", - "38232113792197003837440" + "3514798775081376415744", + "14163608373041991516160", + "5843224643350736928768" ], - "expectedQty": "118849676650542143433734", + "expectedQty": "23678839854328763163323", + "swapFee": "14215833412644844804", "reserves": [ - "14748942673231218799607902", - "59210776860053274621182352", - "53362606877079296769811869" + "945908688718712446263849548", + "263737106545906056024464535", + "446272909373090946200269148" ], - "mAssetSupply": "127099267506823209364851270" + "mAssetSupply": "1653602691500384328017424356" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "114361030444952208", - "104088048383076928", - "120195064435864096" + "25797816968375517184", + "11265060081500131328", + "25208627724855877632" ], - "expectedQty": "340198462926816121", - "swapFee": "204241622729727", + "expectedQty": "62277474656145409225", "reserves": [ - "14748942558870188354655694", - "59210776755965226238105424", - "53362606756884232333947773" + "945908714516529414639366732", + "263737117810966137524595863", + "446272934581718671056146780" ], - "mAssetSupply": "127099267166624746438035149" + "mAssetSupply": "1653602753777858984162833581" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "241992599670296812716032", - "expectedQty": "240902094215833005942114", + "type": "redeemMasset", + "inputQty": "140080559722538976097075", + "expectedQtys": [ + "80106102173947425157475", + "22335086020669573601777", + "37793483394793067982872" + ], + "redemptionFee": "42024167916761692829", "reserves": [ - "14748942558870188354655694", - "59210776755965226238105424", - "53604599356554529146663805" - ] + "945828608414355467214209257", + "263714782724945467950994086", + "446235141098323877988163908" + ], + "mAssetSupply": "1653462715242304361948429335" }, { "type": "redeemMasset", - "inputQty": "758314483603512012", + "inputQty": "542691798645375762432", "expectedQtys": [ - "87804041129367298", - "352496150610868622", - "319121213459164531" + "310342311291143247380", + "86529265941432972262", + "146417272469638031135" ], - "redemptionFee": "227494345081053", + "redemptionFee": "162807539593612728", + "reserves": [ + "945828298072044176070961877", + "263714696195679526518021824", + "446234994681051408350132773" + ], + "mAssetSupply": "1653462172713313256166279631" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "177730980076566723166208", + "expectedQty": "178793502732967019350663", + "swapFee": "106638588045940033899", "reserves": [ - "14748942471066147225288396", - "59210776403469075627236802", - "53604599037433315687499274" + "945649504569311209051611214", + "263714696195679526518021824", + "446234994681051408350132773" ], - "mAssetSupply": "127340168502753590185546304" + "mAssetSupply": "1653284548371824735383147322" }, { "type": "redeemMasset", - "inputQty": "138617005146198530169241", + "inputQty": "31266748845935860121", "expectedQtys": [ - "16050244963341968331175", - "64434956445840001108928", - "58334144797185381673182" + "17878661824484616622", + "4985849248212321005", + "8436618985790900400" ], - "redemptionFee": "41585101543859559050", + "redemptionFee": "9380024653780758", "reserves": [ - "14732892226102805256957221", - "59146341447023235626127874", - "53546264892636130305826092" + "945649486690649384566994592", + "263714691209830278305700819", + "446234986244432422559232373" ], - "mAssetSupply": "127201593082708935514936113" + "mAssetSupply": "1653284517114455914101067959" }, { "type": "swap", "inputIndex": 1, - "inputQty": "261674722866348785664", - "outputIndex": 2, - "expectedQty": "261253622789927313023", - "swapFee": "156136640214137881", + "inputQty": "1176488417476964515840", + "outputIndex": 0, + "expectedQty": "1197828970858720801916", + "swapFee": "714427027471325147", "reserves": [ - "14732892226102805256957221", - "59146603121746101974913538", - "53546003639013340378513069" + "945648288861678525846192676", + "263715867698247755270216659", + "446234986244432422559232373" ], - "mAssetSupply": "127201593238845575729073994", + "mAssetSupply": "1653284517828882941572393106", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "25075843156692011319296", - "2375999212973019103232", - "6949705148724758446080" + "1431812759384", + "5505726227151", + "10752005492327" ], - "expectedQty": "34943978069637379299358", + "expectedQty": "17763130069358", "reserves": [ - "14757968069259497268276517", - "59148979120959074994016770", - "53552953344162065136959149" + "945648288861679957658952060", + "263715867698253260996443810", + "446234986244443174564724700" ], - "mAssetSupply": "127236537216915213108373352" + "mAssetSupply": "1653284517828900704702462464" }, { "type": "mint", "inputIndex": 2, - "inputQty": "261033352956761473024", - "expectedQty": "259854685198392076740", + "inputQty": "329074620739438247936", + "expectedQty": "329576110732382745908", "reserves": [ - "14757968069259497268276517", - "59148979120959074994016770", - "53553214377515021898432173" + "945648288861679957658952060", + "263715867698253260996443810", + "446235315319063914002972636" ] }, { - "type": "mintMulti", - "inputQtys": [ - "11139884869341061120", - "2348542240556226048", - "1383235399949215232" - ], - "expectedQty": "15112791632569021808", + "type": "mint", + "inputIndex": 1, + "inputQty": "3058538580729120407158784", + "expectedQty": "3095052150392701183885380", "reserves": [ - "14757979209144366609337637", - "59148981469501315550242818", - "53553215760750421847647405" - ], - "mAssetSupply": "127236812184392044069471900" + "945648288861679957658952060", + "266774406278982381403602594", + "446235315319063914002972636" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "88448885647332282990592", - "expectedQty": "86365544570031593792870", - "swapFee": "53069331388399369794", + "type": "mint", + "inputIndex": 2, + "inputQty": "28372220246042974147837952", + "expectedQty": "28407119710198971670715440", "reserves": [ - "14671613664574335015544767", - "59148981469501315550242818", - "53553215760750421847647405" - ], - "mAssetSupply": "127148416368076100185851102" + "945648288861679957658952060", + "266774406278982381403602594", + "474607535565106888150810588" + ] }, { - "type": "redeemMasset", - "inputQty": "71878270920644964961484", - "expectedQtys": [ - "8291521678939768923719", - "33427479304867978599936", - "30265086009547936089306" + "type": "redeemBassets", + "inputQtys": [ + "1497041932560891736227840", + "1295129712393849090867200", + "239139163352348428861440" ], - "redemptionFee": "21563481276193489488", + "expectedQty": "3037920809417037197123052", + "swapFee": "1823846793726458193189", "reserves": [ - "14663322142895395246621048", - "59115553990196447571642882", - "53522950674740873911558099" + "944151246929119065922724220", + "265479276566588532312735394", + "474368396401754539721949148" ], - "mAssetSupply": "127076559660636731414379106" + "mAssetSupply": "1681749098456186072742686140" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "223203797257133456621568", - "expectedQty": "217840677201742847019641", - "swapFee": "133922278354280073972", + "type": "mintMulti", + "inputQtys": [ + "793562924777712618831872", + "123769634159518963204096", + "527279996433099307089920" + ], + "expectedQty": "1441621477222136251128560", "reserves": [ - "14445481465693652399601407", - "59115553990196447571642882", - "53522950674740873911558099" + "944944809853896778541556092", + "265603046200748051275939490", + "474895676398187639029039068" ], - "mAssetSupply": "126853489785657952237831510" + "mAssetSupply": "1683190719933408208993814700" }, { "type": "mint", "inputIndex": 2, - "inputQty": "2345481872351258017267712", - "expectedQty": "2334187929707652536423241", + "inputQty": "25558107490609721769984", + "expectedQty": "25580847344477547018537", "reserves": [ - "14445481465693652399601407", - "59115553990196447571642882", - "55868432547092131928825811" + "944944809853896778541556092", + "265603046200748051275939490", + "474921234505678248750809052" ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "9113197051465311453184", - "expectedQty": "9158747964056408663444", - "swapFee": "5467918230879186871", + "inputQty": "3343560500497346310701056", + "expectedQty": "3383906095723588631736635", "reserves": [ - "14445481465693652399601407", - "59106395242232391162979438", - "55868432547092131928825811" - ], - "mAssetSupply": "129178569986232370341988438" + "944944809853896778541556092", + "268946606701245397586640546", + "474921234505678248750809052" + ] }, { "type": "redeemBassets", "inputQtys": [ - "8840154937041475584", - "1510437592871235328", - "2016520704802446336" - ], - "expectedQty": "12572779842667626497", - "swapFee": "7548196823694792", - "reserves": [ - "14445472625538715358125823", - "59106393731794798291744110", - "55868430530571427126379475" + "33655801567875469312", + "6534739301370444800", + "21872924494643499008" ], - "mAssetSupply": "129178557413452527674361941" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1561313787307981281427456", - "expectedQty": "1568939340367045632900271", - "swapFee": "936788272384788768856", + "expectedQty": "61953038671769655895", + "swapFee": "37194139686873917", "reserves": [ - "14445472625538715358125823", - "57537454391427752658843839", - "55868430530571427126379475" + "944944776198095210666086780", + "268946600166506096216195746", + "474921212632753754107310044" ], - "mAssetSupply": "127618180414416931181703341" + "mAssetSupply": "1686600144923437603402913977" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1950176618747029253783552", + "inputQty": "31913343403544605559357440", "outputIndex": 1, - "expectedQty": "2000216902404127948755968", - "swapFee": "1195506406688698490436", + "expectedQty": "31242422087617481915696064", + "swapFee": "19026390502261095812467", "reserves": [ - "16395649244285744611909375", - "55537237489023624710087871", - "55868430530571427126379475" + "976858119601639816225444220", + "237704178078888614300499682", + "474921212632753754107310044" ], - "mAssetSupply": "127619375920823619880193777", + "mAssetSupply": "1686619171313939864498726444", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1515507424914011324416", - "expectedQty": "1521163728194012040003", - "swapFee": "909304454948406794", - "reserves": [ - "16395649244285744611909375", - "55535716325295430698047868", - "55868430530571427126379475" - ], - "mAssetSupply": "127617861322703160817276155" - }, { "type": "redeemBassets", "inputQtys": [ - "462738249001115213365248", - "234384639923881292857344", - "287744257007772292349952" + "6559863669871053824", + "260464216997553373184", + "375872839415017308160" ], - "expectedQty": "991297167449617718960301", - "swapFee": "595135381698789905319", + "expectedQty": "647401898417470914301", + "swapFee": "388674343656676554", "reserves": [ - "15932910995284629398544127", - "55301331685371549405190524", - "55580686273563654834029523" + "976858113041776146354390396", + "237703917614671616747126498", + "474920836759914339090001884" ], - "mAssetSupply": "126626564155253543098315854" + "mAssetSupply": "1686618523912041447027812143" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "127211011587692315017216", - "outputIndex": 1, - "expectedQty": "130146258644384196052962", - "swapFee": "77790844157969019711", + "type": "redeem", + "inputIndex": 2, + "inputQty": "36548446430769741486358528", + "expectedQty": "36482581904827398112678847", + "swapFee": "21929067858461844891815", "reserves": [ - "16060122006872321713561343", - "55171185426727165209137562", - "55580686273563654834029523" + "976858113041776146354390396", + "237703917614671616747126498", + "438438254855086940977323037" ], - "mAssetSupply": "126626641946097701067335565", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1650092006549130167386345430" }, { - "type": "redeemMasset", - "inputQty": "480460959669095", - "expectedQtys": [ - "60918829045617", - "209273877982789", - "210827185739217" - ], - "redemptionFee": "144138287900", - "reserves": [ - "16060122006811402884515726", - "55171185426517891331154773", - "55580686273352827648290306" + "type": "redeemBassets", + "inputQtys": [ + "7971641073844642130165760", + "18108436217955660286918656", + "693000453744203841667072" ], - "mAssetSupply": "126626641945617384245954370" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "58168269537122697216", - "outputIndex": 0, - "expectedQty": "56799760240181760059", - "swapFee": "34747708755138168", + "expectedQty": "27022200524719474968102809", + "swapFee": "16223054147320077027077", "reserves": [ - "16060065207051162702755667", - "55171243594787428453851989", - "55580686273352827648290306" + "968886471967931504224224636", + "219595481396715956460207842", + "437745254401342737135655965" ], - "mAssetSupply": "126626641980365093001092538", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1623069806024410692418242621" }, { "type": "mint", "inputIndex": 0, - "inputQty": "12380512724648065024", - "expectedQty": "12615556660551822458", + "inputQty": "8896729288259137873903616", + "expectedQty": "8824442686294888640820036", "reserves": [ - "16060077587563887350820691", - "55171243594787428453851989", - "55580686273352827648290306" + "977783201256190642098128252", + "219595481396715956460207842", + "437745254401342737135655965" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1815728392216041876357120", - "outputIndex": 2, - "expectedQty": "1814196180031437874135225", - "swapFee": "1084518399610399689128", - "reserves": [ - "16060077587563887350820691", - "56986971987003470330209109", - "53766490093321389774155081" + "type": "mintMulti", + "inputQtys": [ + "15150997574684002304", + "12261113724591912960", + "123818455350356864" ], - "mAssetSupply": "126627739114321363952604124", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "22688788223394456", - "expectedQty": "22252412716698913", - "swapFee": "13613272934036", + "expectedQty": "27642656582063379032", "reserves": [ - "16060077565311474634121778", - "56986971987003470330209109", - "53766490093321389774155081" + "977783216407188216782130556", + "219595493657829681052120802", + "437745254525161192486012829" ], - "mAssetSupply": "126627739091646189002143704" + "mAssetSupply": "1631894276353362163122441689" }, { "type": "redeemMasset", - "inputQty": "14266807441220956900556", + "inputQty": "1069558359012", "expectedQtys": [ - "1808902993516750841419", - "6418642985971565936854", - "6055908789056432449117" + "640655763485", + "143881707402", + "286816152643" ], - "redemptionFee": "4280042232366287070", + "redemptionFee": "320867507", "reserves": [ - "16058268662317957883280359", - "56980553344017498764272255", - "53760434184532333341705964" + "977783216407187576126367071", + "219595493657829537170413400", + "437745254525160905669860186" ], - "mAssetSupply": "126613476564247200411530218" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7712088192520874520215552", - "expectedQty": "7809939787251598997955426", - "reserves": [ - "23770356854838832403495911", - "56980553344017498764272255", - "53760434184532333341705964" - ] + "mAssetSupply": "1631894276353361093884950184" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "112440510143362127364096", - "outputIndex": 2, - "expectedQty": "113571631916734881211372", - "swapFee": "68025816421595268334", - "reserves": [ - "23882797364982194530860007", - "56980553344017498764272255", - "53646862552615598460494592" - ], - "mAssetSupply": "134423484377315221004753978", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "1322206670278624590954496", - "outputIndex": 1, - "expectedQty": "1321809875066623328922442", - "swapFee": "791430861400342825083", - "reserves": [ - "23882797364982194530860007", - "55658743468950875435349813", - "54969069222894223051449088" - ], - "mAssetSupply": "134424275808176621347579061", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemBassets", - "inputQtys": [ - "908994729696296304640", - "7532150701144329420800", - "18982128270224157310976" - ], - "expectedQty": "27363432147428427328489", - "swapFee": "16427916038079904339", + "inputQty": "369382051370954792108032", + "expectedQty": "372203388388155558556894", + "swapFee": "221629230822572875264", "reserves": [ - "23881888370252498234555367", - "55651211318249731105929013", - "54950087094623998894138112" + "977411013018799420567810177", + "219595493657829537170413400", + "437745254525160905669860186" ], - "mAssetSupply": "134396912376029192920250572" + "mAssetSupply": "1631525115931220961665717416" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "314844573690901219508224", - "expectedQty": "315474891333204890857614", - "swapFee": "188906744214540731704", + "inputIndex": 0, + "inputQty": "3817920874133799936", + "expectedQty": "3847073565350309042", + "swapFee": "2290752524480279", "reserves": [ - "23881888370252498234555367", - "55335736426916526215071399", - "54950087094623998894138112" + "977411009171725855217501135", + "219595493657829537170413400", + "437745254525160905669860186" ], - "mAssetSupply": "134082256709082506241474052" + "mAssetSupply": "1631525112115590840056397759" }, { "type": "redeemMasset", - "inputQty": "145046442311899750", + "inputQty": "3618857118146347854620262", "expectedQtys": [ - "25827009731984514", - "59842696736020000", - "59425637209409913" - ], - "redemptionFee": "43513932693569", - "reserves": [ - "23881888344425488502570853", - "55335736367073829479051399", - "54950087035198361684728199" + "2167327752665821948160659", + "486934772883600860976933", + "970663753351950579591614" ], - "mAssetSupply": "134082256564079577862267871" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "832695184015885696", - "expectedQty": "825425554029460493", - "swapFee": "499617110409531", + "redemptionFee": "1085657135443904356386", "reserves": [ - "23881887518999934473110360", - "55335736367073829479051399", - "54950087035198361684728199" + "975243681419060033269340476", + "219108558884945936309436467", + "436774590771808955090268572" ], - "mAssetSupply": "134082255731884010956791706" + "mAssetSupply": "1627907340654579936106133883" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "3580258364810023273496576", - "outputIndex": 2, - "expectedQty": "3575982720916506702302107", - "swapFee": "2142198909397512318206", + "inputIndex": 2, + "inputQty": "48871756950065872896", + "outputIndex": 1, + "expectedQty": "48011790665281271897", + "swapFee": "29365760405848533", "reserves": [ - "23881887518999934473110360", - "58915994731883852752547975", - "51374104314281854982426092" + "975243681419060033269340476", + "219108510873155271028164570", + "436774639643565905156141468" ], - "mAssetSupply": "134084397930793408469109912", + "mAssetSupply": "1627907340683945696511982416", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "409263899655567191310336", - "expectedQty": "405617915932915233028867", - "swapFee": "245558339793340314786", + "inputIndex": 1, + "inputQty": "3576315777019265050214400", + "expectedQty": "3507177885584185777792350", + "swapFee": "2145789466211559030128", "reserves": [ - "23476269603067019240081493", - "58915994731883852752547975", - "51374104314281854982426092" + "975243681419060033269340476", + "215601332987571085250372220", + "436774639643565905156141468" ], - "mAssetSupply": "133675379589477634618114362" + "mAssetSupply": "1624333170696392643020798144" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "37318455670580862976", - "outputIndex": 2, - "expectedQty": "37691341452500694426", - "swapFee": "22582341424836584", + "inputQty": "692075108145162402922496", + "expectedQty": "697441334826911717984752", + "swapFee": "415245064887097441753", "reserves": [ - "23476306921522689820944469", - "58915994731883852752547975", - "51374066622940402481731666" + "974546240084233121551355724", + "215601332987571085250372220", + "436774639643565905156141468" ], - "mAssetSupply": "133675379612059976042950946", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1623641510833312367715317401" }, { - "type": "redeemMasset", - "inputQty": "359421229943844735916441", - "expectedQtys": [ - "63103256320054428406391", - "158363541989163284760028", - "138091178699783806809100" + "type": "mintMulti", + "inputQtys": [ + "2315202826159371233263616", + "4865411476628148139851776", + "4274016443915274626793472" ], - "redemptionFee": "107826368983153420774", + "expectedQty": "11534138472948358404256704", "reserves": [ - "23413203665202635392538078", - "58757631189894689467787947", - "51235975444240618674922566" + "976861442910392492784619340", + "220466744464199233390223996", + "441048656087481179782934940" ], - "mAssetSupply": "133316066208485114460455279" + "mAssetSupply": "1635175649306260726119574105" }, { "type": "mint", "inputIndex": 0, - "inputQty": "10908974544607", - "expectedQty": "11002160468785", + "inputQty": "5062964962722643443712", + "expectedQty": "5021922572196937603318", "reserves": [ - "23413203665213544367082685", - "58757631189894689467787947", - "51235975444240618674922566" + "976866505875355215428063052", + "220466744464199233390223996", + "441048656087481179782934940" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "14708283774614835822592", - "19528397075474727043072", - "20836858478767120580608" - ], - "expectedQty": "55094785347137101109146", - "reserves": [ - "23427911948988159202905277", - "58777159586970164194831019", - "51256812302719385795503174" - ], - "mAssetSupply": "133371160993843253722033210" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1904682801334415872", - "366032776595403968", - "1709960189674456832" - ], - "expectedQty": "3992297192844016041", - "swapFee": "2396816405549739", - "reserves": [ - "23427910044305357868489405", - "58777159220937387599427051", - "51256810592759196121046342" - ], - "mAssetSupply": "133371157001546060878017169" - }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "317955984321448016609280", - "expectedQty": "318771169470419568316137", - "swapFee": "190773590592868809965", + "inputIndex": 2, + "inputQty": "335057712135655791788032", + "expectedQty": "334396849272279292756335", + "swapFee": "201034627281393475072", "reserves": [ - "23427910044305357868489405", - "58458388051466968031110914", - "51256810592759196121046342" + "976866505875355215428063052", + "220466744464199233390223996", + "440714259238208900490178605" ], - "mAssetSupply": "133053391790815205730217854" + "mAssetSupply": "1634845814551324548658864463" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "11170571981735224", - "expectedQty": "11135509296396261", + "inputIndex": 0, + "inputQty": "23892852092847605409644544", + "expectedQty": "23695722917020087688292869", "reserves": [ - "23427910044305357868489405", - "58458388062637540012846138", - "51256810592759196121046342" + "1000759357968202820837707596", + "220466744464199233390223996", + "440714259238208900490178605" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "362331946628582723289088", - "602818674897384957280256", - "202567944495022685028352" + "11209207274617870", + "13307287979482070", + "10945964606936984" ], - "expectedQty": "1168503593054117902751239", - "swapFee": "701523069674275306834", + "expectedQty": "35644976277809573", "reserves": [ - "23065578097676775145200317", - "57855569387740155055565882", - "51054242648264173436017990" + "1000759357979412028112325466", + "220466744477506521369706066", + "440714259249154865097115589" ], - "mAssetSupply": "131884888208896597123862876" + "mAssetSupply": "1658541537503989612624966905" }, { "type": "redeemBassets", "inputQtys": [ - "11560504241567955943424", - "14007092974247343030272", - "8055778671801657196544" + "226850646316120256", + "1270541852702366208", + "2031574325870564864" ], - "expectedQty": "33662143888215019974564", - "swapFee": "20209411980117082234", + "expectedQty": "3555057399897436350", + "swapFee": "2134315028955835", "reserves": [ - "23054017593435207189256893", - "57841562294765907712535610", - "51046186869592371778821446" + "1000759357752561381796205210", + "220466743206964668667339858", + "440714257217580539226550725" ], - "mAssetSupply": "131851226065008382103888312" + "mAssetSupply": "1658541533948932212727530555" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1782471522902709188427776", - "expectedQty": "1786854235448429406881835", - "swapFee": "1069482913741625513056", - "reserves": [ - "23054017593435207189256893", - "56054708059317478305653775", - "51046186869592371778821446" - ], - "mAssetSupply": "130069824025019414540973592" - }, - { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "651155231317035712512", - "226548217048727846912", - "589775773433155158016" + "2046582815686157733462016", + "30646092987721133213089792", + "14180689804750754477506560" ], - "expectedQty": "1470942186534573706149", + "expectedQty": "47568989982141189840710244", + "swapFee": "28558529106748763162323", "reserves": [ - "23054668748666524224969405", - "56054934607534527033500687", - "51046776645365804933979462" + "998712774936875224062743194", + "189820650219243535454250066", + "426533567412829784749044165" ], - "mAssetSupply": "130071294967205949114679741" + "mAssetSupply": "1610972543966791022886820311" }, { - "type": "redeemBassets", - "inputQtys": [ - "923203711354310198558720", - "931833772369195072225280", - "3764729252867708893003776" + "type": "redeemMasset", + "inputQty": "6656752385837224130982707", + "expectedQtys": [ + "4125575707123886779860164", + "784128813516448288701067", + "1761964568944742785411712" ], - "expectedQty": "5616867837803523338733800", - "swapFee": "3372143989075559338843", + "redemptionFee": "1997025715751167239294", "reserves": [ - "22131465037312214026410685", - "55123100835165331961275407", - "47282047392498096040975686" + "994587199229751337282883030", + "189036521405727087165548999", + "424771602843885041963632453" ], - "mAssetSupply": "124454427129402425775945941" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "3984650052004107226447872", - "expectedQty": "3976052517516622791637225", - "reserves": [ - "22131465037312214026410685", - "55123100835165331961275407", - "51266697444502203267423558" - ] + "mAssetSupply": "1604317788606669549923076898" }, { - "type": "redeemMasset", - "inputQty": "9843594935539465191424", - "expectedQtys": [ - "1695764290555872045062", - "4223660106702824557764", - "3928173515605494987891" - ], - "redemptionFee": "2953078480661839557", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3439619495132336498933760", + "expectedQty": "3471280842216773207367631", + "swapFee": "2063771697079401899360", "reserves": [ - "22129769273021658154365623", - "55118877175058629136717643", - "51262769270986597772435667" + "991115918387534564075515399", + "189036521405727087165548999", + "424771602843885041963632453" ], - "mAssetSupply": "128420639005061989764231299" + "mAssetSupply": "1600880232883234292826042498" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "4738486239443786447978496", - "expectedQty": "4725770434982737615127840", + "inputIndex": 1, + "inputQty": "4746469658790973749067776", + "expectedQty": "4866777121012349283015572", "reserves": [ - "22129769273021658154365623", - "55118877175058629136717643", - "56001255510430384220414163" + "991115918387534564075515399", + "193782991064518060914616775", + "424771602843885041963632453" ] }, { - "type": "redeemMasset", - "inputQty": "12831905064127193048678", - "expectedQtys": [ - "2132103370018123317007", - "5310454995110355272799", - "5395468164441976600757" - ], - "redemptionFee": "3849571519238157914", + "type": "mint", + "inputIndex": 0, + "inputQty": "99591191956745", + "expectedQty": "98647432577427", "reserves": [ - "22127637169651640031048616", - "55113566720063518781444844", - "55995860042265942243813406" - ], - "mAssetSupply": "133133581384552119424468375" + "991115918387634155267472144", + "193782991064518060914616775", + "424771602843885041963632453" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "283924347300859525201920", - "outputIndex": 2, - "expectedQty": "283779814093483170177793", - "swapFee": "169871022461410833285", + "inputIndex": 2, + "inputQty": "398304673845508964352", + "outputIndex": 1, + "expectedQty": "389088765878537604125", + "swapFee": "239365527594749598", "reserves": [ - "22127637169651640031048616", - "55397491067364378306646764", - "55712080228172459073635613" + "991115918387634155267472144", + "193782601975752182377012650", + "424772001148558887472596805" ], - "mAssetSupply": "133133751255574580835301660", + "mAssetSupply": "1605747010243710817136385095", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "444976702140057321472", - "571787304112159850496", - "986652851537610014720" - ], - "expectedQty": "2003279756731414859039", - "swapFee": "1202689467719480603", - "reserves": [ - "22127192192949499973727144", - "55396919280060266146796268", - "55711093575320921463620893" - ], - "mAssetSupply": "133131747975817849420442621" - }, { "type": "swap", "inputIndex": 0, - "inputQty": "93131936091876009967616", + "inputQty": "1714034269696027181187072", "outputIndex": 2, - "expectedQty": "94259735278765267119591", - "swapFee": "56426225283604707469", + "expectedQty": "1693960822539879185559299", + "swapFee": "1018663108991425353973", "reserves": [ - "22220324129041375983694760", - "55396919280060266146796268", - "55616833840042156196501302" + "992829952657330182448659216", + "193782601975752182377012650", + "423078040326019008287037506" ], - "mAssetSupply": "133131804402043133025150090", + "mAssetSupply": "1605748028906819808561739068", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "657927919954625560576", - "expectedQtys": [ - "109778319982140918851", - "273685509510776382266", - "274771985603304253514" - ], - "redemptionFee": "197378375986387668", + "type": "redeem", + "inputIndex": 1, + "inputQty": "295582074718034426068992", + "expectedQty": "288256866214358883473039", + "swapFee": "177349244830820655641", "reserves": [ - "22220214350721393842775909", - "55396645594550755370414002", - "55616559068056552892247788" + "992829952657330182448659216", + "193494345109537823493539611", + "423078040326019008287037506" ], - "mAssetSupply": "133131146671501554385977182" + "mAssetSupply": "1605452624181346604956325717" }, { - "type": "redeemMasset", - "inputQty": "5110150518182945587", - "expectedQtys": [ - "852652276530047919", - "2125725487287590735", - "2134164187331825952" - ], - "redemptionFee": "1533045155454883", + "type": "redeem", + "inputIndex": 2, + "inputQty": "318496800133803671552", + "expectedQty": "317774376454714498581", + "swapFee": "191098080080282202", "reserves": [ - "22220213498069117312727990", - "55396643468825268082823267", - "55616556933892365560421836" + "992829952657330182448659216", + "193494345109537823493539611", + "423077722551642553572538925" ], - "mAssetSupply": "133131141562884081358486478" + "mAssetSupply": "1605452305875644551232936367" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "208811521520908959744", - "874513477941430190080", - "1112757580938130620416" + "152327573702229", + "1323051931145479", + "1375843318433404" ], - "expectedQty": "2192409637424229361443", - "swapFee": "1316235523768798896", + "expectedQty": "2884929154093885", "reserves": [ - "22220004686547596403768246", - "55395768955347326652633187", - "55615444176311427429801420" + "992829952657482510022361445", + "193494345110860875424685090", + "423077722553018396890972329" ], - "mAssetSupply": "133128949153246657129125035" + "mAssetSupply": "1605452305878529480387030252" }, { - "type": "redeemMasset", - "inputQty": "862826190393815911628", - "expectedQtys": [ - "143967563144855763070", - "358919540186467077247", - "360342856999026363220" + "type": "redeemBassets", + "inputQtys": [ + "16059234946225911808", + "10052224341590716416", + "28697660237609242624" ], - "redemptionFee": "258847857118144773", + "expectedQty": "54953689556450962550", + "swapFee": "32992008939234118", "reserves": [ - "22219860718984451548005176", - "55395410035807140185555940", - "55615083833454428403438200" + "992829936598247563796449637", + "193494335058636533833968674", + "423077693855358159281729705" ], - "mAssetSupply": "133128086585904120431358180" + "mAssetSupply": "1605452250924839923936067702" }, { - "type": "redeemMasset", - "inputQty": "3016693064283538227", - "expectedQtys": [ - "503352765662642190", - "1254887832069813634", - "1259864164504467700" + "type": "mintMulti", + "inputQtys": [ + "1235453311149951015714816", + "18951273678974943756288", + "638700766456815101673472" ], - "redemptionFee": "905007919285061", + "expectedQty": "1882861929675613264440360", "reserves": [ - "22219860215631685885362986", - "55395408780919308115742306", - "55615082573590263898970500" + "994065389909397514812164453", + "193513286332315508777724962", + "423716394621814974383403177" ], - "mAssetSupply": "133128083570116064067105014" + "mAssetSupply": "1607335112854515537200508062" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "561060062076788146176", - "expectedQty": "562327042388445292652", - "swapFee": "336636037246072887", + "inputQty": "11929247923201999177252864", + "expectedQty": "12208495084733781917518626", "reserves": [ - "22219860215631685885362986", - "55394846453876919670449654", - "55615082573590263898970500" - ], - "mAssetSupply": "133127522846690024525031725" + "994065389909397514812164453", + "205442534255517507954977826", + "423716394621814974383403177" + ] }, { "type": "redeemMasset", - "inputQty": "427014055561656780", + "inputQty": "50612832528928701467852", "expectedQtys": [ - "71250076348419222", - "177628796979157088", - "178335004857693432" - ], - "redemptionFee": "128104216668497", - "reserves": [ - "22219860144381609536943764", - "55394846276248122691292566", - "55615082395255259041277068" + "31056509448830207125797", + "6418418819389363997298", + "13237712877616667847064" ], - "mAssetSupply": "133127522419804073180043442" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3841158758762412507136", - "expectedQty": "3849960686297800301559", - "swapFee": "2304695255257447504", + "redemptionFee": "15183849758678610440", "reserves": [ - "22219860144381609536943764", - "55394846276248122691292566", - "55611232434568961240975509" + "994034333399948684605038656", + "205436115836698118590980528", + "423703156908937357715556113" ], - "mAssetSupply": "133123683565740566024983810" + "mAssetSupply": "1619493010290570149095169276" }, { "type": "redeemMasset", - "inputQty": "26646100933911292936192", + "inputQty": "185784162994481", "expectedQtys": [ - "4446203699445003704261", - "11084532883791301656033", - "11127831848383483174337" + "113998907494126", + "23560044133603", + "48591578144209" ], - "redemptionFee": "7993830280173387880", + "redemptionFee": "55735248898", "reserves": [ - "22215413940682164533239503", - "55383761743364331389636533", - "55600104602720577757801172" + "994034333399834685697544530", + "205436115836674558546846925", + "423703156908888766137411904" ], - "mAssetSupply": "133097045458636934905435498" + "mAssetSupply": "1619493010290384420667423693" }, { "type": "mintMulti", "inputQtys": [ - "7879307443344741376", - "21939881083883208704", - "980113498893281024" + "18727828137777161043968", + "1271131032638397087744", + "19624339670984592195584" ], - "expectedQty": "30810550578337739811", + "expectedQty": "39518261947711091499746", "reserves": [ - "22215421819989607877980879", - "55383783683245415272845237", - "55600105582834076651082196" + "994053061227972462858588498", + "205437386967707196943934669", + "423722781248559750729607488" ], - "mAssetSupply": "133097076269187513243175309" + "mAssetSupply": "1619532528552332131758923439" }, { - "type": "redeemBassets", - "inputQtys": [ - "2786538604216792941330432", - "1093966291906962974048256", - "3089496401589311031476224" - ], - "expectedQty": "6987264645359124741233174", - "swapFee": "4194875712643060681148", + "type": "mint", + "inputIndex": 1, + "inputQty": "4611162096126664162410496", + "expectedQty": "4710332037667640887226766", "reserves": [ - "19428883215772814936650447", - "54289817391338452298796981", - "52510609181244765619605972" - ], - "mAssetSupply": "126109811623828388501942135" + "994053061227972462858588498", + "210048549063833861106345165", + "423722781248559750729607488" + ] }, { - "type": "redeemMasset", - "inputQty": "11116155019091960555110", - "expectedQtys": [ - "1712076820597408509828", - "4784028856312185255192", - "4627244696271268565965" - ], - "redemptionFee": "3334846505727588166", + "type": "mint", + "inputIndex": 1, + "inputQty": "3783033142692234771038208", + "expectedQty": "3861077689903330168707513", "reserves": [ - "19427171138952217528140619", - "54285033362482140113541789", - "52505981936548494351040007" - ], - "mAssetSupply": "126098698803655802268975191" + "994053061227972462858588498", + "213831582206526095877383373", + "423722781248559750729607488" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "90961582730991590440960", - "140509727108607844024320", - "120211381997801654190080" - ], - "expectedQty": "351906019643264826504440", - "reserves": [ - "19518132721683209118581579", - "54425543089590747957566109", - "52626193318546296005230087" + "44344155446731", + "80940833115312", + "99538134204190" ], - "mAssetSupply": "126450604823299067095479631" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "65100823082456588484608", - "outputIndex": 1, - "expectedQty": "66055118422796003591070", - "swapFee": "39522022883924254105", + "expectedQty": "226271389717223", + "swapFee": "135844340434", "reserves": [ - "19583233544765665707066187", - "54359487971167951953975039", - "52626193318546296005230087" + "994053061227928118703141767", + "213831582206445155044268061", + "423722781248460212595403298" ], - "mAssetSupply": "126450644345321951019733736", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1628103938279676831425140495" }, { - "type": "redeemBassets", - "inputQtys": [ - "7826933838946", - "11103477639920", - "17657365057979" + "type": "redeemMasset", + "inputQty": "5164903118505804", + "expectedQtys": [ + "3152530608698710", + "678143485801030", + "1343790477178994" ], - "expectedQty": "36587100235776", - "swapFee": "21965439405", + "redemptionFee": "1549470935551", "reserves": [ - "19583233544757838773227241", - "54359487971156848476335119", - "52626193318528638640172108" + "994053061224775588094443057", + "213831582205767011558467031", + "423722781247116422118224304" ], - "mAssetSupply": "126450644345285363919497960" + "mAssetSupply": "1628103938274513477777570242" }, { "type": "redeemMasset", - "inputQty": "155311347214853341184", + "inputQty": "43447563928344480186368", "expectedQtys": [ - "24045634175192057587", - "66746299007146628389", - "64618041227875482495" + "26519330956419770152117", + "5704595376893429440838", + "11304069277571550252918" ], - "redemptionFee": "46593404164456002", + "redemptionFee": "13034269178503344055", "reserves": [ - "19583209499123663581169654", - "54359421224857841329706730", - "52626128700487410764689613" + "994026541893819168324290940", + "213825877610390118129026193", + "423711477177838850567971386" ], - "mAssetSupply": "126450489080531553230612778" + "mAssetSupply": "1628060503744854311800727929" }, { - "type": "redeemBassets", - "inputQtys": [ - "64545994986430160", - "24835732981114816", - "29807716287968924" - ], - "expectedQty": "119771249616958062", - "swapFee": "71905893306158", + "type": "mint", + "inputIndex": 0, + "inputQty": "40786330933837342703616", + "expectedQty": "40430699050962471811353", "reserves": [ - "19583209434577668594739494", - "54359421200022108348591914", - "52626128670679694476720689" - ], - "mAssetSupply": "126450488960760303613654716" + "994067328224753005666994556", + "213825877610390118129026193", + "423711477177838850567971386" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "38497632310692749312", - "expectedQty": "38594761002252628815", - "swapFee": "23098579386415649", + "type": "swap", + "inputIndex": 1, + "inputQty": "26918225800314560335314944", + "outputIndex": 0, + "expectedQty": "27595424365361376947393010", + "swapFee": "16439779379718803042387", "reserves": [ - "19583209434577668594739494", - "54359421200022108348591914", - "52626090075918692224091874" + "966471903859391628719601546", + "240744103410704678464341137", + "423711477177838850567971386" ], - "mAssetSupply": "126450450486226572307321053" + "mAssetSupply": "1628117374223284993075581669", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "328084410458146662", - "expectedQtys": [ - "50794743821057253", - "140996953708758573", - "136501055796823844" + "type": "redeemBassets", + "inputQtys": [ + "15791224874050713555042304", + "8156503162346077247504384", + "8085461732185004478300160" ], - "redemptionFee": "98425323137443", + "expectedQty": "32054144627137407232303685", + "swapFee": "19244033196200164438045", "reserves": [ - "19583209383782924773682241", - "54359421059025154639833341", - "52626089939417636427268030" + "950680678985340915164559242", + "232587600248358601216836753", + "415626015445653846089671226" ], - "mAssetSupply": "126450450158240587172311834" + "mAssetSupply": "1596063229596147585843277984" }, { - "type": "redeemMasset", - "inputQty": "1003189152026410247782", - "expectedQtys": [ - "155315931988623576611", - "431128727609691500469", - "417381545878097232933" + "type": "mintMulti", + "inputQtys": [ + "406648729939662864384", + "496792997638522404864", + "263948221456135290880" ], - "redemptionFee": "300956745607923074", + "expectedQty": "1172537031810910618115", "reserves": [ - "19583054067850936150105630", - "54358989930297544948332872", - "52625672557871758330035097" + "950681085634070854827423626", + "232588097041356239739241617", + "415626279393875302224962106" ], - "mAssetSupply": "126449447270045306369987126" + "mAssetSupply": "1596064402133179396753896099" }, { - "type": "redeemMasset", - "inputQty": "52507338729378714275020", - "expectedQtys": [ - "8129300675273956936786", - "22565457462175748685748", - "21845924235269259798741" - ], - "redemptionFee": "15752201618813614282", + "type": "swap", + "inputIndex": 0, + "inputQty": "1247964967332380409856", + "outputIndex": 2, + "expectedQty": "1235157817980535089107", + "swapFee": "743036828642347942", "reserves": [ - "19574924767175662193168844", - "54336424472835369199647124", - "52603826633636489070236356" + "950682333599038187207833482", + "232588097041356239739241617", + "415625044236057321689872999" ], - "mAssetSupply": "126396955683517546469326388" + "mAssetSupply": "1596064402876216225396244041", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "499115201799350386688", + "inputQty": "30593673648028778915430", "expectedQtys": [ - "77274103872202964388", - "214498832496090797656", - "207659217683393560672" + "18217397459125773631951", + "4456956501992990003354", + "7964391844908737845123" ], - "redemptionFee": "149734560539805116", + "redemptionFee": "9178102094408633674", "reserves": [ - "19574847493071789990204456", - "54336209974002873108849468", - "52603618974418805676675684" + "950664116201579061434201531", + "232583640084854246749238263", + "415617079844212412952027876" ], - "mAssetSupply": "126396456718050307658744816" + "mAssetSupply": "1596033818380670291025962285" }, { - "type": "mintMulti", - "inputQtys": [ - "377635418581039503638528", - "58285683129517093158912", - "91177933688885248786432" - ], - "expectedQty": "530981767296875523628569", + "type": "redeem", + "inputIndex": 1, + "inputQty": "6055680302848408576", + "expectedQty": "5959290077779571344", + "swapFee": "3633408181709045", "reserves": [ - "19952482911652829493842984", - "54394495657132390202008380", - "52694796908107690925462116" + "950664116201579061434201531", + "232583634125564168969666919", + "415617079844212412952027876" ], - "mAssetSupply": "126927438485347183182373385" + "mAssetSupply": "1596033812328623396359262754" }, { - "type": "redeemBassets", - "inputQtys": [ - "1340435881721937369497600", - "1884468270349013913436160", - "276165714919988075167744" - ], - "expectedQty": "3509835585510592857307750", - "swapFee": "2107165650696773778651", + "type": "redeem", + "inputIndex": 2, + "inputQty": "72668916218084355500670976", + "expectedQty": "72386606245442705787335826", + "swapFee": "43601349730850613300402", "reserves": [ - "18612047029930892124345384", - "52510027386783376288572220", - "52418631193187702850294372" + "950664116201579061434201531", + "232583634125564168969666919", + "343230473598769707164692050" ], - "mAssetSupply": "123417602899836590325065635" + "mAssetSupply": "1523408497460269891471892180" }, { - "type": "redeemBassets", - "inputQtys": [ - "6826174823263649136640", - "4081622507682869018624", - "5149389894823875444736" - ], - "expectedQty": "16111534551141786043676", - "swapFee": "9672724365304254178", + "type": "swap", + "inputIndex": 0, + "inputQty": "6820232119651827164643328", + "outputIndex": 1, + "expectedQty": "6654589074564705652787841", + "swapFee": "4056876413757616243044", "reserves": [ - "18605220855107628475208744", - "52505945764275693419553596", - "52413481803292878974849636" + "957484348321230888598844859", + "225929045050999463316879078", + "343230473598769707164692050" ], - "mAssetSupply": "123401491365285448539021959" + "mAssetSupply": "1523412554336683649088135224", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "107711261044915459588096", - "56500920504206432927744", - "113185882598328206622720" + "542613252507899535556608", + "1000782519404005110579200", + "640778482133514365960192" ], - "expectedQty": "278178887589339390471961", - "swapFee": "167007537075849143769", + "expectedQty": "2198482279507610747059282", + "swapFee": "1319881296482455921788", "reserves": [ - "18497509594062713015620648", - "52449444843771486986625852", - "52300295920694550768226916" + "956941735068722989063288251", + "224928262531595458206299878", + "342589695116636192798731858" ], - "mAssetSupply": "123123312477696109148549998" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "335897710001171267584", - "expectedQty": "334744357398065758772", - "reserves": [ - "18497509594062713015620648", - "52449780741481488157893436", - "52300295920694550768226916" - ] + "mAssetSupply": "1521214072057176038341075942" }, { "type": "redeemMasset", - "inputQty": "65010066381218", + "inputQty": "21906586290238373888", "expectedQtys": [ - "9763872305788", - "27685508636841", - "27606603382359" + "13776521057068895061", + "3238158428604756670", + "4932060099113772487" ], - "redemptionFee": "19503019914", + "redemptionFee": "6571975887071512", "reserves": [ - "18497509594052949143314860", - "52449780741453802649256595", - "52300295920666944164844557" + "956941721292201931994393190", + "224928259293437029601543208", + "342589690184576093684959371" ], - "mAssetSupply": "123123647221988516650947466" + "mAssetSupply": "1521214050157161723989773566" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "5924590334062629448843264", - "expectedQty": "5939104946808264455253776", - "swapFee": "3554754200437577669305", + "inputIndex": 0, + "inputQty": "470019286405034744479744", + "expectedQty": "473958710528004069375820", + "swapFee": "282011571843020846687", "reserves": [ - "18497509594052949143314860", - "46510675794645538194002819", - "52300295920666944164844557" + "956467762581673927925017370", + "224928259293437029601543208", + "342589690184576093684959371" ], - "mAssetSupply": "117202611642126324779773507" + "mAssetSupply": "1520744312882328532266140509" }, { "type": "mintMulti", "inputQtys": [ - "57347058630808152571904", - "114352927406821289754624", - "58520746227653050105856" + "1622335770151253134278656", + "1088684926218883659988992", + "497098272130796454150144" ], - "expectedQty": "230349272180015953645396", + "expectedQty": "3213532368195355541793636", "reserves": [ - "18554856652683757295886764", - "46625028722052359483757443", - "52358816666894597214950413" + "958090098351825181059296026", + "226016944219655913261532200", + "343086788456706890139109515" ], - "mAssetSupply": "117432960914306340733418903" + "mAssetSupply": "1523957845250523887807934145" }, { - "type": "redeemMasset", - "inputQty": "2268097636707995956019", - "expectedQtys": [ - "358260584829767722862", - "900244629766576925031", - "1010953661954758010815" - ], - "redemptionFee": "680429291012398786", + "type": "redeem", + "inputIndex": 0, + "inputQty": "22976222715379816857600", + "expectedQty": "23168203883170909720257", + "swapFee": "13785733629227890114", "reserves": [ - "18554498392098927528163902", - "46624128477422592906832412", - "52357805713232642456939598" + "958066930147942010149575769", + "226016944219655913261532200", + "343086788456706890139109515" ], - "mAssetSupply": "117430693497098923749861670" + "mAssetSupply": "1523934882813542137218966659" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "275360724897735", - "289224752148948", - "271722719328835" + "1488744913668197513691136", + "789804484471059120128000", + "769633745532243444498432" ], - "expectedQty": "837642130437032", - "swapFee": "502887010468", + "expectedQty": "3051285699764242924784975", "reserves": [ - "18554498391823566803266167", - "46624128477133368154683464", - "52357805712960919737610763" + "959555675061610207663266905", + "226806748704126972381660200", + "343856422202239133583607947" ], - "mAssetSupply": "117430693496261281619424638" + "mAssetSupply": "1526986168513306380143751634" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "1614061943323627685412864", - "expectedQty": "1630623499918601030485467", + "inputIndex": 1, + "inputQty": "9113162242035003949056", + "expectedQty": "9257928916330511791846", "reserves": [ - "20168560335147194488679031", - "46624128477133368154683464", - "52357805712960919737610763" + "959555675061610207663266905", + "226815861866369007385609256", + "343856422202239133583607947" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "2891094339464178", - "4311099757110480", - "16088927745462954" - ], - "expectedQty": "23255699188839943", - "swapFee": "13961796591258", - "reserves": [ - "20168560332256100149214853", - "46624128472822268397572984", - "52357805696871991992147809" - ], - "mAssetSupply": "119061316972924183461070162" - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "713896984855432003584", - "expectedQty": "715111357639652890625", - "swapFee": "428338190913259202", + "inputQty": "222487323308375343104", + "expectedQty": "218877019451319140423", + "swapFee": "133492393985025205", "reserves": [ - "20168560332256100149214853", - "46623413361464628744682359", - "52357805696871991992147809" + "959555675061610207663266905", + "226815642989349556066468833", + "343856422202239133583607947" ], - "mAssetSupply": "119060603504277518942325780" + "mAssetSupply": "1526995204088391796265225581" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "57374911549452984320", + "inputIndex": 2, + "inputQty": "986985301172982334357504", "outputIndex": 0, - "expectedQty": "56676917659592235383", - "swapFee": "34345869530646987", + "expectedQty": "999997338950776967461758", + "swapFee": "595050972569926531561", "reserves": [ - "20168503655338440556979470", - "46623470736376178197666679", - "52357805696871991992147809" + "958555677722659430695805147", + "226815642989349556066468833", + "344843407503412115917965451" ], - "mAssetSupply": "119060603538623388472972767", + "mAssetSupply": "1526995799139364366191757142", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "4156804190048735985664", + "inputQty": "287930511411079680", "expectedQtys": [ - "703938725778297616222", - "1627293087399629011106", - "1827437853429849940484" + "180691150185375654", + "42755554386939802", + "65004207250300216" ], - "redemptionFee": "1247041257014620795", + "redemptionFee": "86379153423323", "reserves": [ - "20167799716612662259363248", - "46621843443288778568655573", - "52355978259018562142207325" + "958555677541968280510429493", + "226815642946594001679529031", + "344843407438407908667665235" ], - "mAssetSupply": "119056447981474596751607898" + "mAssetSupply": "1526995798851520233934100785" }, { - "type": "redeemMasset", - "inputQty": "27221495190268352921", - "expectedQtys": [ - "4609855014073418682", - "10656588313169156098", - "11967268233789897817" + "type": "redeemBassets", + "inputQtys": [ + "2555589654168546410758144", + "1465194886226653168533504", + "1135987161656342830120960" ], - "redemptionFee": "8166448557080505", + "expectedQty": "5162931664915358371501584", + "swapFee": "3099618770211341827997", "reserves": [ - "20167795106757648185944566", - "46621832786700465399499475", - "52355966291750328352309508" + "956000087887799734099671349", + "225350448060367348510995527", + "343707420276751565837544275" ], - "mAssetSupply": "119056420768145855040335482" + "mAssetSupply": "1521832867186604875562599201" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "6887583018242077097984", + "expectedQty": "6997720604543208651509", + "reserves": [ + "956000087887799734099671349", + "225357335643385590588093511", + "343707420276751565837544275" + ] + }, + { + "type": "swap", "inputIndex": 0, - "inputQty": "984759731900653056", - "expectedQty": "975019332506852957", - "swapFee": "590855839140391", + "inputQty": "11641065891588521066496", + "outputIndex": 1, + "expectedQty": "11349443765693729240875", + "swapFee": "6922716481406332920", "reserves": [ - "20167794131738315679091609", - "46621832786700465399499475", - "52355966291750328352309508" + "956011728953691322620737845", + "225345986199619896858852636", + "343707420276751565837544275" ], - "mAssetSupply": "119056419783976978978822817" + "mAssetSupply": "1521839871829925900177583630", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "35538168214740285784064", - "36247864364734835851264", - "39629930853479649116160" + "type": "redeemMasset", + "inputQty": "2691870087791200252932915", + "expectedQtys": [ + "1690511194086047690215020", + "398478282928336811277227", + "607776268711899500949035" ], - "expectedQty": "111536703106609673361495", - "swapFee": "66962199183475889550", + "redemptionFee": "807561026337360075879", "reserves": [ - "20132255963523575393307545", - "46585584922335730563648211", - "52316336360896848703193348" + "954321217759605274930522825", + "224947507916691560047575409", + "343099644008039666336595240" ], - "mAssetSupply": "118944883080870369305461322" + "mAssetSupply": "1519148809303161037284726594" }, { - "type": "mintMulti", - "inputQtys": [ - "300311027626476352", - "235805584285233664", - "281890546426168640" - ], - "expectedQty": "819365056214909606", + "type": "redeem", + "inputIndex": 0, + "inputQty": "4054720892918830832025600", + "expectedQty": "4088424137114856851717543", + "swapFee": "2432832535751298499215", "reserves": [ - "20132256263834603019783897", - "46585585158141314848881875", - "52316336642787395129361988" + "950232793622490418078805282", + "224947507916691560047575409", + "343099644008039666336595240" ], - "mAssetSupply": "118944883900235425520370928" + "mAssetSupply": "1515096521242777957751200209" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "107522630035071523880960", - "94588289775420785557504", - "91218974800122824622080" + "8617228323690610019008512", + "9990425728374976125337600", + "11255476968470556736225280" ], - "expectedQty": "293826979996864425868982", - "swapFee": "176402029215648044347", + "expectedQty": "29993230428416000020524803", "reserves": [ - "20024733633799531495902937", - "46490996868365894063324371", - "52225117667987272304739908" + "958850021946181028097813794", + "234937933645066536172913009", + "354355120976510223072820520" ], - "mAssetSupply": "118651056920238561094501946" + "mAssetSupply": "1545089751671193957771725012" }, { "type": "mint", "inputIndex": 2, - "inputQty": "9668516117482540367872", - "expectedQty": "9636673874521444437770", + "inputQty": "642564572410528390971392", + "expectedQty": "645394516838924940573736", "reserves": [ - "20024733633799531495902937", - "46490996868365894063324371", - "52234786184104754845107780" + "958850021946181028097813794", + "234937933645066536172913009", + "354997685548920751463791912" ] }, { - "type": "redeemMasset", - "inputQty": "318833702407033361688166", - "expectedQtys": [ - "53789038331614383417590", - "124880862754977308698180", - "140309427714838570762108" - ], - "redemptionFee": "95650110722110008506", + "type": "redeem", + "inputIndex": 1, + "inputQty": "265102173459605597716480", + "expectedQty": "261076354029857633186965", + "swapFee": "159061304075763358629", "reserves": [ - "19970944595467917112485347", - "46366116005610916754626191", - "52094476756389916274345672" + "958850021946181028097813794", + "234676857291036678539726044", + "354997685548920751463791912" ], - "mAssetSupply": "118341955541816771287260056" + "mAssetSupply": "1545470203075877352877940897" }, { - "type": "redeemMasset", - "inputQty": "272971701953445597544448", - "expectedQtys": [ - "46051860982611111554463", - "106917623169340396143895", - "120126896856524217422149" + "type": "redeemBassets", + "inputQtys": [ + "4669140525992154593492992", + "3635632747272481181532160", + "6258955145609107266863104" ], - "redemptionFee": "81891510586033679263", + "expectedQty": "14606495937752326237966677", + "swapFee": "8769159058086247491274", "reserves": [ - "19924892734485306000930884", - "46259198382441576358482296", - "51974349859533392056923523" + "954180881420188873504320802", + "231041224543764197358193884", + "348738730403311644196928808" ], - "mAssetSupply": "118069065731373911723394871" + "mAssetSupply": "1530863707138125026639974220" }, { "type": "mintMulti", "inputQtys": [ - "1515332869605347072", - "4043509709493129216", - "11173898199051636736" + "2473539393134073378504704", + "1930465873766363768553472", + "3759258667875585667104768" ], - "expectedQty": "16700942027435290441", + "expectedQty": "8188167598896983554634973", "reserves": [ - "19924894249818175606277956", - "46259202425951285851611512", - "51974361033431591108560259" + "956654420813322946882825506", + "232971690417530561126747356", + "352497989071187229864033576" ], - "mAssetSupply": "118069082432315939158685312" + "mAssetSupply": "1539051874737022010194609193" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "790146745090511495757824", - "expectedQty": "792243846476262742710786", - "swapFee": "474088047054306897454", + "inputIndex": 0, + "inputQty": "174680519571282411388928", + "expectedQty": "176071963729220351496432", + "swapFee": "104808311742769446833", "reserves": [ - "19924894249818175606277956", - "46259202425951285851611512", - "51182117186955328365849473" + "956478348849593726531329074", + "232971690417530561126747356", + "352497989071187229864033576" ], - "mAssetSupply": "117279409775272481969824942" + "mAssetSupply": "1538877299025762470552667098" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 0, + "inputQty": "43090393106775588864", + "expectedQty": "42724261435194824290", + "reserves": [ + "956478391939986833306917938", + "232971690417530561126747356", + "352497989071187229864033576" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "478612945638390876864512", - "471675360647408535994368", - "436842661080257169195008" + "353425674492630", + "847560683966533", + "1208553148418544" ], - "expectedQty": "1389038856833597308982931", + "expectedQty": "2424602890905619", + "swapFee": "1455635115612", "reserves": [ - "20403507195456566483142468", - "46730877786598694387605880", - "51618959848035585535044481" + "956478391939633407632425308", + "232971690416683000442780823", + "352497989069978676715615032" ], - "mAssetSupply": "118668448632106079278807873" + "mAssetSupply": "1538877341747599302856585769" }, { "type": "redeemBassets", "inputQtys": [ - "51305214286736520", - "207761479877529600", - "59823410547601112" + "201145662065416576", + "143952707299253520", + "54629961413106360" ], - "expectedQty": "318688139192709224", - "swapFee": "191327680123699", + "expectedQty": "400417299867614221", + "swapFee": "240394616690582", "reserves": [ - "20403507144151352196405948", - "46730877578837214510076280", - "51618959788212174987443369" + "956478391738487745567008732", + "232971690272730293143527303", + "352497989015348715302508672" ], - "mAssetSupply": "118668448313417940086098649" + "mAssetSupply": "1538877341347182002988971548" }, { "type": "mint", "inputIndex": 2, - "inputQty": "16096359791373762691072", - "expectedQty": "16045973185430364898026", + "inputQty": "9339825806974634629791744", + "expectedQty": "9379421404656286631262720", "reserves": [ - "20403507144151352196405948", - "46730877578837214510076280", - "51635056148003548750134441" + "956478391738487745567008732", + "232971690272730293143527303", + "361837814822323349932300416" ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "603637774345623889248256", - "outputIndex": 2, - "expectedQty": "603717347242579621295158", - "swapFee": "361335903392919044895", + "inputIndex": 0, + "inputQty": "8768651986565167104", + "outputIndex": 1, + "expectedQty": "8561138788967647024", + "swapFee": "5217187818113484", "reserves": [ - "20403507144151352196405948", - "47334515353182838399324536", - "51031338800760969128839283" + "956478400507139732132175836", + "232971681711591504175880279", + "361837814822323349932300416" ], - "mAssetSupply": "118684855622506763370041570", + "mAssetSupply": "1548256762757055477438347752", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "127644119330554285916160", - "44131793073211021721600", - "89995339537043345637376" - ], - "expectedQty": "262548234398062745404323", - "swapFee": "157623514747686258997", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3693498898352212367376384", + "expectedQty": "3676161812565524335395004", + "swapFee": "2216099339011327420425", "reserves": [ - "20275863024820797910489788", - "47290383560109627377602936", - "50941343461223925783201907" + "956478400507139732132175836", + "232971681711591504175880279", + "358161653009757825596905412" ], - "mAssetSupply": "118422307388108700624637247" + "mAssetSupply": "1544565479958042276398391793" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "23061803210530780872704", - "expectedQty": "22991473620509893983685", + "type": "redeemBassets", + "inputQtys": [ + "22370966255149363757056", + "16991954404248591007744", + "10604216535466815520768" + ], + "expectedQty": "50078682068114298629503", + "swapFee": "30065248389902520690", "reserves": [ - "20275863024820797910489788", - "47290383560109627377602936", - "50964405264434456564074611" - ] + "956456029540884582768418780", + "232954689757187255584872535", + "358151048793222358781384644" + ], + "mAssetSupply": "1544515401275974162099762290" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "802848032557459285475328", - "expectedQty": "800359161756815988342378", + "type": "mintMulti", + "inputQtys": [ + "83037244852452164894720", + "157314457695245328973824", + "115899294128005762252800" + ], + "expectedQty": "358400939075110303546626", "reserves": [ - "20275863024820797910489788", - "47290383560109627377602936", - "51767253296991915849549939" - ] + "956539066785737034933313500", + "233112004214882500913846359", + "358266948087350364543637444" + ], + "mAssetSupply": "1544873802215049272403308916" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "74947215062380871680", - "expectedQty": "75081774909767411729", - "swapFee": "44968329037428523", + "inputIndex": 0, + "inputQty": "75188142384156078243840", + "expectedQty": "75780323820931592841917", + "swapFee": "45112885430493646946", "reserves": [ - "20275863024820797910489788", - "47290308478334717610191207", - "51767253296991915849549939" + "956463286461916103340471583", + "233112004214882500913846359", + "358266948087350364543637444" ], - "mAssetSupply": "119245583121239293163520153" + "mAssetSupply": "1544798659185550546818712022" }, { "type": "redeemMasset", - "inputQty": "647650902757621524070", + "inputQty": "29770661705225011", "expectedQtys": [ - "110089960099991082556", - "256767771962306023162", - "281075821185783592993" + "18426998497171706", + "4491081479175376", + "6902287424343040" ], - "redemptionFee": "194295270827286457", + "redemptionFee": "8931198511567", "reserves": [ - "20275752934860697919407232", - "47290051710562755304168045", - "51766972221170730065956946" + "956463286443489104843299877", + "233112004210391419434670983", + "358266948080448077119294404" ], - "mAssetSupply": "119244935664631806369282540" + "mAssetSupply": "1544798659155788816311998578" }, { - "type": "redeemMasset", - "inputQty": "14521074913079832294195", - "expectedQtys": [ - "2468342977649200349410", - "5757027491282019696524", - "6302041791828821486069" - ], - "redemptionFee": "4356322473923949688", + "type": "redeem", + "inputIndex": 1, + "inputQty": "242656556792282784", + "expectedQty": "238925475485395297", + "swapFee": "145593934075369", "reserves": [ - "20273284591883048719057822", - "47284294683071473284471521", - "51760670179378901244470877" + "956463286443489104843299877", + "233112003971465943949275686", + "358266948080448077119294404" ], - "mAssetSupply": "119230418946041200460938033" + "mAssetSupply": "1544798658913277853453791163" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "230197213335842291712", - "expectedQty": "232334393816277843866", + "inputIndex": 2, + "inputQty": "4317877073665966735360", + "expectedQty": "4335970992768532470167", "reserves": [ - "20273514789096384561349534", - "47284294683071473284471521", - "51760670179378901244470877" + "956463286443489104843299877", + "233112003971465943949275686", + "358271265957521743086029764" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "959722320112318545920", - "outputIndex": 1, - "expectedQty": "958417707025353733501", - "swapFee": "574020121102848576", + "type": "redeemBassets", + "inputQtys": [ + "1800989564110155313840128", + "996908860429931191992320", + "134316488583870427430912" + ], + "expectedQty": "2932624648289153522106573", + "swapFee": "1760631167674096571206", "reserves": [ - "20273514789096384561349534", - "47283336265364447930738020", - "51761629901699013563016797" + "954662296879378949529459749", + "232115095111036012757283366", + "358136949468937872658598852" ], - "mAssetSupply": "119230651854455137841630475", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1541870370235981468464154757" }, { - "type": "redeemBassets", - "inputQtys": [ - "20569341905227814535168", - "12581594252156696788992", - "5917022737795019440128" - ], - "expectedQty": "39210353539174584273592", - "swapFee": "23540336325299930522", + "type": "redeem", + "inputIndex": 1, + "inputQty": "31304961150159986688", + "expectedQty": "30821060312249993495", + "swapFee": "18782976690095992", "reserves": [ - "20252945447191156746814366", - "47270754671112291233949028", - "51755712878961218543576669" + "954662296879378949529459749", + "232115064289975700507289871", + "358136949468937872658598852" ], - "mAssetSupply": "119191441500915963257356883" + "mAssetSupply": "1541870338949803294994264061" }, { "type": "mintMulti", "inputQtys": [ - "119311791032958205952", - "173128069258397876224", - "114572671988323237888" + "2531952480623791177728", + "13415429714898766004224", + "4571871824880421830656" ], - "expectedQty": "407346559316185969142", + "expectedQty": "20719400814293161474377", "reserves": [ - "20253064758982189705020318", - "47270927799181549631825252", - "51755827451633206866814557" + "954664828831859573320637477", + "232128479719690599273294095", + "358141521340762753080429508" ], - "mAssetSupply": "119191848847475279443326025" + "mAssetSupply": "1541891058350617588155738438" }, { "type": "redeemBassets", "inputQtys": [ - "100095418567984548937728", - "18797773273533050257408", - "84113429525221160779776" + "8571598219141341731880960", + "14652870165228993172733952", + "15518774827352196774887424" ], - "expectedQty": "203630596866689897224544", - "swapFee": "122251709145501239078", + "expectedQty": "38970589994021478298142691", + "swapFee": "23396391831511794055318", "reserves": [ - "20152969340414205156082590", - "47252130025908016581567844", - "51671714022107985706034781" + "946093230612718231588756517", + "217475609554461606100560143", + "342622746513410556305542084" ], - "mAssetSupply": "118988218250608589546101481" + "mAssetSupply": "1502920468356596109857595747" }, { - "type": "redeemBassets", - "inputQtys": [ - "1672280775860288000", - "1934660387120848640", - "978063478228388224" - ], - "expectedQty": "4592922739801579350", - "swapFee": "2757408088734188", + "type": "mint", + "inputIndex": 1, + "inputQty": "75592098835286081536", + "expectedQty": "76870386742810902847", + "reserves": [ + "946093230612718231588756517", + "217475685146560441386641679", + "342622746513410556305542084" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "170232157575281737728", + "expectedQty": "167300902265127500431", + "swapFee": "102139294545169042", "reserves": [ - "20152967668133429295794590", - "47252128091247629460719204", - "51671713044044507477646557" + "946093230612718231588756517", + "217475517845658176259141248", + "342622746513410556305542084" ], - "mAssetSupply": "118988213657685849744522131" + "mAssetSupply": "1502920375096964571931929908" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "54629171752314515488768", - "381481817325972439957504", - "101526363255630983069696" + "5750086042011690332061696", + "12231929758545629356752896", + "737146850349650255282176" ], - "expectedQty": "536902596779371645451505", + "expectedQty": "18888313553939130848357706", + "swapFee": "11339792007568019320606", "reserves": [ - "20207596839885743811283358", - "47633609908573601900676708", - "51773239407300138460716253" + "940343144570706541256694821", + "205243588087112546902388352", + "341885599663060906050259908" ], - "mAssetSupply": "119525116254465221389973636" + "mAssetSupply": "1484032061543025441083572202" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "1314951423118010774192128", + "inputIndex": 0, + "inputQty": "1424352790629229887750144", "outputIndex": 2, - "expectedQty": "1314790540682100178225021", - "swapFee": "786970550196437745596", + "expectedQty": "1403795973930033744647355", + "swapFee": "846571073388489899096", "reserves": [ - "20207596839885743811283358", - "48948561331691612674868836", - "50458448866618038282491232" + "941767497361335771144444965", + "205243588087112546902388352", + "340481803689130872305612553" ], - "mAssetSupply": "119525903225015417827719232", + "mAssetSupply": "1484032908114098829573471298", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "358813680656695312148070", + "inputQty": "8042980336079907638476", "expectedQtys": [ - "60644486049524013728008", - "146898236754451531169613", - "151429520423346894335466" + "5102545257450237448522", + "1112020429617941485384", + "1844748111959425598963" ], - "redemptionFee": "107644104197008593644", + "redemptionFee": "2412894100823972291", "reserves": [ - "20146952353836219797555350", - "48801663094937161143699223", - "50307019346194691388155766" + "941762394816078320906996443", + "205242476066682928960902968", + "340479958941018912880013590" ], - "mAssetSupply": "119167197188462919524164806" + "mAssetSupply": "1484024867546656850489805113" }, { - "type": "redeemMasset", - "inputQty": "45302147448204001961574", - "expectedQtys": [ - "7656690915206952153140", - "18546688546411665072429", - "19118787359707306240299" - ], - "redemptionFee": "13590644234461200588", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3564176892826799124250624", + "expectedQty": "3545652696369996242580381", + "swapFee": "2138506135696079474550", "reserves": [ - "20139295662921012845402210", - "48783116406390749478626794", - "50287900558834984081915467" + "941762394816078320906996443", + "205242476066682928960902968", + "336934306244648916637433209" ], - "mAssetSupply": "119121908631658949983403820" + "mAssetSupply": "1480462829159965747445029039" }, { "type": "redeemMasset", - "inputQty": "2885128466534874113638", + "inputQty": "363508676329287782812876", "expectedQtys": [ - "487626705647445247357", - "1181170917921463374330", - "1217605803790775766857" + "231168316539237368793449", + "50379541523258315088683", + "82705082287876445130112" ], - "redemptionFee": "865538539960462234", + "redemptionFee": "109052602898786334843", "reserves": [ - "20138808036215365400154853", - "48781935235472828015252464", - "50286682953031193306148610" + "941531226499539083538202994", + "205192096525159670645814285", + "336851601162361040192303097" ], - "mAssetSupply": "119119024368730955069752416" + "mAssetSupply": "1480099429536239358448551006" }, { - "type": "mintMulti", - "inputQtys": [ - "227982650142850453340160", - "1046684168708874903224320", - "797532165725665462583296" - ], - "expectedQty": "2069192039738503417084593", + "type": "redeem", + "inputIndex": 0, + "inputQty": "539762328291122868125696", + "expectedQty": "544609853190637393909962", + "swapFee": "323857396974673720875", "reserves": [ - "20366790686358215853495013", - "49828619404181702918476784", - "51084215118756858768731906" + "940986616646348446144293032", + "205192096525159670645814285", + "336851601162361040192303097" ], - "mAssetSupply": "121188216408469458486837009" + "mAssetSupply": "1479559991065345210254146185" }, { - "type": "redeemBassets", - "inputQtys": [ - "71479695325365387264", - "47055795292503883776", - "29614356669640839168" - ], - "expectedQty": "148617610849906336949", - "swapFee": "89224100970526117", + "type": "redeem", + "inputIndex": 1, + "inputQty": "85904885550584768233472", + "expectedQty": "84260793026269905971538", + "swapFee": "51542931330350860940", "reserves": [ - "20366719206662890488107749", - "49828572348386410414593008", - "51084185504400189127892738" + "940986616646348446144293032", + "205107835732133400739842747", + "336851601162361040192303097" ], - "mAssetSupply": "121188067790858608580500060" + "mAssetSupply": "1479474137722725955836773653" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "1496523209032629028388864", - "outputIndex": 2, - "expectedQty": "1512738607060325431162179", - "swapFee": "905862898992222959890", - "reserves": [ - "21863242415695519516496613", - "49828572348386410414593008", - "49571446897339863696730559" - ], - "mAssetSupply": "121188973653757600803459950", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mintMulti", - "inputQtys": [ - "2600020677604789248", - "786489118616226560", - "8623601521063417856" - ], - "expectedQty": "12007446836069260431", + "inputQty": "4864928391901111692296192", + "expectedQty": "4818564580276756876171458", "reserves": [ - "21863245015716197121285861", - "49828573134875529030819568", - "49571455520941384760148415" - ], - "mAssetSupply": "121188985661204436872720381" + "945851545038249557836589224", + "205107835732133400739842747", + "336851601162361040192303097" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "230583328859900690300928", - "outputIndex": 0, - "expectedQty": "228025625859597765449322", - "swapFee": "138000612719154385419", + "inputQty": "431522896726613104263168", + "expectedQty": "423163699884670553134490", + "swapFee": "258913738035967862557", "reserves": [ - "21635219389856599355836539", - "50059156463735429721120496", - "49571455520941384760148415" + "945851545038249557836589224", + "204684672032248730186708257", + "336851601162361040192303097" ], - "mAssetSupply": "121189123661817156027105800", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1483861438320014135576544500" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "72196825043035391787008", - "outputIndex": 1, - "expectedQty": "72158459903009209479063", - "swapFee": "43209623764810361630", + "type": "redeemBassets", + "inputQtys": [ + "861332984714150674432", + "162607180808642297856", + "705168138927440134144" + ], + "expectedQty": "1727345295173295921154", + "swapFee": "1037029394740822045", "reserves": [ - "21635219389856599355836539", - "49986998003832420511641433", - "49643652345984420151935423" + "945850683705264843685914792", + "204684509425067921544410401", + "336850895994222112752168953" ], - "mAssetSupply": "121189166871440920837467430", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1483859710974718962280623346" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1187823425386025472", - "outputIndex": 2, - "expectedQty": "1187043401218357004", - "swapFee": "710863739130090", + "type": "redeemMasset", + "inputQty": "820333729343006469364121", + "expectedQtys": [ + "522745134909292120732832", + "113123385473590083023558", + "186168039104241778242253" + ], + "redemptionFee": "246100118802901940809", "reserves": [ - "21635219389856599355836539", - "49986999191655845897666905", - "49643651158941018933578419" + "945327938570355551565181960", + "204571386039594331461386843", + "336664727955117870973926700" ], - "mAssetSupply": "121189166872151784576597520", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1483039623345494758713200034" }, { "type": "redeemBassets", "inputQtys": [ - "112630324422726228377600", - "675885368210564765974528", - "21753561453638715441152" + "551018360477340925952", + "1007716350276252860416", + "740588355360546095104" ], - "expectedQty": "809415173437254655155751", - "swapFee": "485940668463430851604", + "expectedQty": "2316915837420823040520", + "swapFee": "1390984092908238767", "reserves": [ - "21522589065433873127458939", - "49311113823445281131692377", - "49621897597487380218137267" + "945327387551995074224256008", + "204570378323244055208526427", + "336663987366762510427831596" ], - "mAssetSupply": "120379751698714529921441769" + "mAssetSupply": "1483037306429657337890159514" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "825460546582277914624", - "425473361759704973312", - "161381667775001559040" + "3551156549604497948672", + "882332144770435514368", + "3093866687662505066496" ], - "expectedQty": "1417537669341240682002", + "expectedQty": "7525044367652703363096", + "swapFee": "4517737262949391652", "reserves": [ - "21523414525980455405373563", - "49311539296807040836665689", - "49622058979155155219696307" + "945323836395445469726307336", + "204569495991099284773012059", + "336660893500074847922765100" ], - "mAssetSupply": "120381169236383871162123771" + "mAssetSupply": "1483029781385289685186796418" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "843340219290128896", - "expectedQty": "841225987085874388", + "type": "redeem", + "inputIndex": 2, + "inputQty": "4529180570276962024554496", + "expectedQty": "4504385666953720523936610", + "swapFee": "2717508342166177214732", "reserves": [ - "21523414525980455405373563", - "49311540140147260126794585", - "49622058979155155219696307" - ] + "945323836395445469726307336", + "204569495991099284773012059", + "332156507833121127398828490" + ], + "mAssetSupply": "1478503318323354889339456654" }, { "type": "redeemMasset", - "inputQty": "1381547462730951373619", + "inputQty": "16413571113701707841168998", "expectedQtys": [ - "246938105211069695184", - "565751232108134883841", - "569313814320376036502" + "10491342819399266150198379", + "2270342321016593787399054", + "3686321722997379508714473" ], - "redemptionFee": "414464238819285412", + "redemptionFee": "4924071334110512352350", "reserves": [ - "21523167587875244335678379", - "49310974388915151991910744", - "49621489665340834843659805" + "934832493576046203576108957", + "202299153670082690985613005", + "328470186110123747890114017" ], - "mAssetSupply": "120379788944611366115909952" + "mAssetSupply": "1462094671280987292010640006" }, { - "type": "redeemBassets", - "inputQtys": [ - "2165575409450248568832", - "157880791261456214523904", - "202139324483201423900672" - ], - "expectedQty": "361292788106802713568549", - "swapFee": "216905816353893964519", + "type": "swap", + "inputIndex": 0, + "inputQty": "33713699127748476928", + "outputIndex": 1, + "expectedQty": "32741320126438395611", + "swapFee": "20032836681540387", "reserves": [ - "21521002012465794087109547", - "49153093597653695777386840", - "49419350340857633419759133" + "934832527289745331324585885", + "202299120928762564547217394", + "328470186110123747890114017" ], - "mAssetSupply": "120018496156504563402341403" + "mAssetSupply": "1462094671301020128692180393", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "180900328141652819968", - "84463854444258443264", - "75264625978278068224" + "type": "redeemMasset", + "inputQty": "56765864323222103654", + "expectedQtys": [ + "36284009153070479694", + "7851912445449470073", + "12749037813097532310" ], - "expectedQty": "341683866534257901336", - "swapFee": "205133399960531059", + "redemptionFee": "17029759296966631", "reserves": [ - "21520821112137652434289579", - "49153009133799251518943576", - "49419275076231655141690909" + "934832491005736178254106191", + "202299113076850119097747321", + "328470173361085934792581707" ], - "mAssetSupply": "120018154472638029144440067" + "mAssetSupply": "1462094614552185564767043370" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "919368878732693864448", - "2302612129573121556480", - "4335855200662074687488" + "24987348578146531147776", + "16689502591869438132224", + "33119234137657421332480" ], - "expectedQty": "7548475068307760133691", - "swapFee": "4531804123458731319", + "expectedQty": "75040538817603025101774", "reserves": [ - "21519901743258919740425131", - "49150706521669678397387096", - "49414939221030993067003421" + "934857478354314324785253967", + "202315802579441988535879545", + "328503292595223592213914187" ], - "mAssetSupply": "120010605997569721384306376" + "mAssetSupply": "1462169655091003167792145144" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5172532377532161536819200", - "expectedQty": "5205179411061411038770646", + "inputIndex": 1, + "inputQty": "339113393760568415879168", + "expectedQty": "345592159116977565188623", "reserves": [ - "26692434120791081277244331", - "49150706521669678397387096", - "49414939221030993067003421" + "934857478354314324785253967", + "202654915973202556951758713", + "328503292595223592213914187" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1205693475822501049139200", - "1016355797013840118415360", - "1302695316896792002428928" - ], - "expectedQty": "3526647004861465662227675", - "swapFee": "2117258558051710423590", + "type": "mint", + "inputIndex": 2, + "inputQty": "193560162259376548085760", + "expectedQty": "194531854297731102142357", "reserves": [ - "25486740644968580228105131", - "48134350724655838278971736", - "48112243904134201064574493" - ], - "mAssetSupply": "121689138403769666760849347" + "934857478354314324785253967", + "202654915973202556951758713", + "328696852757482968761999947" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "773236103136497329242112", - "expectedQty": "774151881044043249052268", - "swapFee": "463941661881898397545", + "inputQty": "1142441497403460608", + "expectedQty": "1120387153527048875", + "swapFee": "685464898442076", "reserves": [ - "25486740644968580228105131", - "47360198843611795029919468", - "48112243904134201064574493" + "934857478354314324785253967", + "202654914852815403424709838", + "328696852757482968761999947" ], - "mAssetSupply": "120916366242295051330004780" + "mAssetSupply": "1462709777962661843954457592" }, { "type": "redeemBassets", "inputQtys": [ - "112541131477442166784", - "263465573664033275904", - "69927413686133063680" - ], - "expectedQty": "445915844936892884627", - "swapFee": "267710133041960907", - "reserves": [ - "25486628103837102785938347", - "47359935378038130996643564", - "48112173976720514931510813" - ], - "mAssetSupply": "120915920326450114437120153" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "13884068710634571694080", - "outputIndex": 0, - "expectedQty": "13780119299918567347985", - "swapFee": "8314935388304725535", - "reserves": [ - "25472847984537184218590362", - "47359935378038130996643564", - "48126058045431149503204893" - ], - "mAssetSupply": "120915928641385502741845688", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeemMasset", - "inputQty": "317146355721883083813683", - "expectedQtys": [ - "66791839690811608125127", - "124181529032690659775447", - "126190363789411765930346" + "348749170777224447524864", + "1922081891981745725636608", + "7883191871384842141696" ], - "redemptionFee": "95143906716564925144", + "expectedQty": "2312398691312849426967692", + "swapFee": "1388272178094566396018", "reserves": [ - "25406056144846372610465235", - "47235753849005440336868117", - "47999867681641737737274547" + "934508729183537100337729103", + "200732832960833657699073230", + "328688969565611583919858251" ], - "mAssetSupply": "120598877429570336222957149" + "mAssetSupply": "1460397379271348994527489900" }, { "type": "mintMulti", "inputQtys": [ - "12521388655591626375168", - "80891146846975113035776", - "552384564925813751808" + "5395270387961391763947520", + "5420727856207408396238848", + "7659314056189619166248960" ], - "expectedQty": "93886480808156848342805", + "expectedQty": "18564071622149868975110958", "reserves": [ - "25418577533501964236840403", - "47316644995852415449903893", - "48000420066206663551026355" + "939903999571498492101676623", + "206153560817041066095312078", + "336348283621801203086107211" ], - "mAssetSupply": "120692763910378493071299954" + "mAssetSupply": "1478961450893498863502600858" }, { - "type": "mintMulti", - "inputQtys": [ - "41648336747596003409920", - "195103507031807114608640", - "38123160768145977769984" - ], - "expectedQty": "274673667961851310973693", + "type": "swap", + "inputIndex": 1, + "inputQty": "1851469756533334605824", + "outputIndex": 2, + "expectedQty": "1876022327385061060836", + "swapFee": "1131608002249194442", "reserves": [ - "25460225870249560240250323", - "47511748502884222564512533", - "48038543226974809528796339" + "939903999571498492101676623", + "206155412286797599429917902", + "336346407599473818025046375" ], - "mAssetSupply": "120967437578340344382273647" + "mAssetSupply": "1478961452025106865751795300", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "70916666447209233907712", - "expectedQty": "71275871529344664462315", + "inputIndex": 1, + "inputQty": "599182925846720746094592", + "expectedQty": "610327420253726934539924", "reserves": [ - "25531142536696769474158035", - "47511748502884222564512533", - "48038543226974809528796339" + "939903999571498492101676623", + "206754595212644320176012494", + "336346407599473818025046375" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "36503415886692583735296", - "expectedQty": "36548648529451830387381", - "swapFee": "21902049532015550241", + "type": "mintMulti", + "inputQtys": [ + "1578186262013188904058880", + "2401792519723769795706880", + "3409392276193889725972480" + ], + "expectedQty": "7434602499016076221433276", "reserves": [ - "25531142536696769474158035", - "47511748502884222564512533", - "48001994578445357698408958" + "941482185833511681005735503", + "209156387732368089971719374", + "339755799875667707751018855" ], - "mAssetSupply": "121002231936032528478550907" + "mAssetSupply": "1487006381944376668907768500" }, { - "type": "redeemMasset", - "inputQty": "92042628145675593318", - "expectedQtys": [ - "19414918510294527947", - "36129864699131889723", - "36502667741272697367" + "type": "redeemBassets", + "inputQtys": [ + "56299994709272920064", + "42726061819016470528", + "25677844211242508288" ], - "redemptionFee": "27612788443702677", + "expectedQty": "125075435477573459828", + "swapFee": "75090315475829573", "reserves": [ - "25531123121778259179630088", - "47511712373019523432622810", - "48001958075777616425711591" + "941482129533516971732815439", + "209156345006306270955248846", + "339755774197823496508510567" ], - "mAssetSupply": "121002139921017171246660266" + "mAssetSupply": "1487006256868941191334308672" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "10715327314313166716928", - "expectedQty": "10727708835550634898933", - "swapFee": "6429196388587900030", + "inputQty": "84834359107266963532939264", + "expectedQty": "82267141935921645133456650", + "swapFee": "50900615464360178119763", "reserves": [ - "25531123121778259179630088", - "47500984664183972797723877", - "48001958075777616425711591" + "941482129533516971732815439", + "126889203070384625821792196", + "339755774197823496508510567" ], - "mAssetSupply": "120991431022899246667843368" + "mAssetSupply": "1402222798377138587979489171" }, { - "type": "redeemBassets", - "inputQtys": [ - "64796769135830147072", - "178894259433222537216", - "128118161298328616960" - ], - "expectedQty": "371587179505568730237", - "swapFee": "223086159398980626", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3375541460436456952561664", + "expectedQty": "3422696048018666072065318", + "swapFee": "2025324876261874171536", "reserves": [ - "25531058325009123349483016", - "47500805769924539575186661", - "48001829957616318097094631" + "938059433485498305660750121", + "126889203070384625821792196", + "339755774197823496508510567" ], - "mAssetSupply": "120991059435719741099113131" + "mAssetSupply": "1398849282241578392901099043" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "3976657987263177779314688", - "expectedQty": "3949946236428801817531534", - "swapFee": "2385994792357906667588", + "inputIndex": 1, + "inputQty": "4346220507149670092374016", + "expectedQty": "4128437591371111585098770", + "swapFee": "2607732304289802055424", "reserves": [ - "21581112088580321531951482", - "47500805769924539575186661", - "48001829957616318097094631" + "938059433485498305660750121", + "122760765479013514236693426", + "339755774197823496508510567" ], - "mAssetSupply": "117016787443248921226466031" + "mAssetSupply": "1394505669466733012610780451" }, { - "type": "redeemMasset", - "inputQty": "336140960058003931581644", - "expectedQtys": [ - "61975034576735079999162", - "136409285486803097309532", - "137848089531216047648239" - ], - "redemptionFee": "100842288017401179474", + "type": "swap", + "inputIndex": 0, + "inputQty": "20818301565140143005761536", + "outputIndex": 2, + "expectedQty": "20400142549325027540135681", + "swapFee": "12303724974770844003292", "reserves": [ - "21519137054003586451952320", - "47364396484437736477877129", - "47863981868085102049446392" + "958877735050638448666511657", + "122760765479013514236693426", + "319355631648498468968374886" ], - "mAssetSupply": "116680747325478934696063861" + "mAssetSupply": "1394517973191707783454783743", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "523292743627101278568448", - "expectedQty": "527094250045883577501724", + "inputQty": "35228235653472329924608", + "expectedQty": "34675370584355768482904", "reserves": [ - "22042429797630687730520768", - "47364396484437736477877129", - "47863981868085102049446392" + "958912963286291920996436265", + "122760765479013514236693426", + "319355631648498468968374886" ] }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "169557066262847244206080", - "outputIndex": 1, - "expectedQty": "169436057235990039805246", - "swapFee": "101495119913337349318", + "inputQty": "143928413750242570141696", + "expectedQty": "144698459161650550400171", "reserves": [ - "22042429797630687730520768", - "47194960427201746438071883", - "48033538934347949293652472" - ], - "mAssetSupply": "117207943070644731610914903", - "hardLimitError": false, - "insufficientLiquidityError": false + "958912963286291920996436265", + "122760765479013514236693426", + "319499560062248711538516582" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "302100451385292162596864", - "expectedQty": "299766580705141110946883", - "swapFee": "181260270831175297558", + "inputQty": "1376420066072430743912448", + "expectedQty": "1397499565515346513890992", + "swapFee": "825852039643458446347", "reserves": [ - "21742663216925546619573885", - "47194960427201746438071883", - "48033538934347949293652472" + "957515463720776574482545273", + "122760765479013514236693426", + "319499560062248711538516582" ], - "mAssetSupply": "116906023879530270623615597" + "mAssetSupply": "1393321752807421002488200717" }, { - "type": "mint", + "type": "redeemBassets", + "inputQtys": [ + "80493971915339982700544", + "107828348942986122362880", + "94990308506593736523776" + ], + "expectedQty": "288571618486414827077306", + "swapFee": "173246919243394933206", + "reserves": [ + "957434969748861234499844729", + "122652937130070528114330546", + "319404569753742117801992806" + ], + "mAssetSupply": "1393033181188934587661123411" + }, + { + "type": "redeem", "inputIndex": 1, - "inputQty": "21198284021855277056", - "expectedQty": "21150014748489109563", + "inputQty": "7300483797985975875928064", + "expectedQty": "6888681334888900651532459", + "swapFee": "4380290278791585525556", "reserves": [ - "21742663216925546619573885", - "47194981625485768293348939", - "48033538934347949293652472" - ] + "957434969748861234499844729", + "115764255795181627462798087", + "319404569753742117801992806" + ], + "mAssetSupply": "1385737077681227403370720903" }, { "type": "redeemBassets", "inputQtys": [ - "3159683743159422550016", - "3020128293120085852160", - "2727226727117654327296" + "58996087104444110555054080", + "13686983255296674321399808", + "6501919769667946512646144" ], - "expectedQty": "8916605426714048008914", - "swapFee": "5353175161125103867", + "expectedQty": "79137871844561887281999077", + "swapFee": "47511229844643918720431", "reserves": [ - "21739503533182387197023869", - "47191961497192648207496779", - "48030811707620831639325176" + "898438882644417123944790649", + "102077272539884953141398279", + "312902649984074171289346662" ], - "mAssetSupply": "116897128424118305064716246" + "mAssetSupply": "1306599205836665516088721826" }, { "type": "swap", "inputIndex": 0, - "inputQty": "4265291738351536701440", - "outputIndex": 2, - "expectedQty": "4304229337023992020913", - "swapFee": "2577836898972216544", - "reserves": [ - "21743768824920738733725309", - "47191961497192648207496779", - "48026507478283807647304263" - ], - "mAssetSupply": "116897131001955204036932790", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "2867067195518196725579776", - "outputIndex": 2, - "expectedQty": "2864351631178465829703484", - "swapFee": "1716019119871197809604", + "inputQty": "3775092671421009625088", + "outputIndex": 1, + "expectedQty": "3462282501476246782850", + "swapFee": "2226364827757921020", "reserves": [ - "21743768824920738733725309", - "50059028692710844933076555", - "45162155847105341817600779" + "898442657737088544954415737", + "102073810257383476894615429", + "312902649984074171289346662" ], - "mAssetSupply": "116898847021075075234742394", + "mAssetSupply": "1306599208063030343846642846", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "423258989821094631833", - "expectedQtys": [ - "78704665516438611099", - "181195778020877300704", - "163470849905002845981" + "type": "mintMulti", + "inputQtys": [ + "3186813921350994886656", + "4074856315413833711616", + "4293644473669853380608" ], - "redemptionFee": "126977696946328389", + "expectedQty": "11807969425075963046027", "reserves": [ - "21743690120255222295114210", - "50058847496932824055775851", - "45161992376255436814754798" + "898445844551009895949302393", + "102077885113698890728327045", + "312906943628547841142727270" ], - "mAssetSupply": "116898423889062951086438950" + "mAssetSupply": "1306611016032455419809688873" }, { "type": "mint", "inputIndex": 2, - "inputQty": "515832782922109761355776", - "expectedQty": "514824212972322854208482", + "inputQty": "1252168516095277403209728", + "expectedQty": "1257195297023740781997526", "reserves": [ - "21743690120255222295114210", - "50058847496932824055775851", - "45677825159177546576110574" + "898445844551009895949302393", + "102077885113698890728327045", + "314159112144643118545936998" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "223861510401899314020352", - "outputIndex": 0, - "expectedQty": "221448579426725109470038", - "swapFee": "133947794840788684940", + "type": "mintMulti", + "inputQtys": [ + "13691498107228068830511104", + "1373606383071690187866112", + "3277679997272934544572416" + ], + "expectedQty": "18219904913514428613686150", "reserves": [ - "21522241540828497185644172", - "50282709007334723369796203", - "45677825159177546576110574" + "912137342658237964779813497", + "103451491496770580916193157", + "317436792141916053090509414" ], - "mAssetSupply": "117413382049830114729332372", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1326088116242993589205372549" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "605031845621513033089024", - "638537864329675759681536", - "1178060599308997460230144" + "1327223419973682944", + "733842675917302016", + "167558473788503328" ], - "expectedQty": "2422032161950297897039356", + "expectedQty": "2258931604922727762", + "swapFee": "1356172666553568", "reserves": [ - "22127273386450010218733196", - "50921246871664399129477739", - "46855885758486544036340718" + "912137341331014544806130553", + "103451490762927904998891141", + "317436791974357579302006086" ], - "mAssetSupply": "119835414211780412626371728" + "mAssetSupply": "1326088113984061984282644787" }, { "type": "mintMulti", "inputQtys": [ - "29935060416286263607296", - "48411939944665773506560", - "17942068333347854090240" + "2411872917618235015168", + "750001266091941429248", + "2903491170938828881920" ], - "expectedQty": "96343837390227246696347", + "expectedQty": "6089423634130375104306", "reserves": [ - "22157208446866296482340492", - "50969658811609064902984299", - "46873827826819891890430958" + "912139753203932163041145721", + "103452240764193996940320389", + "317439695465528518130888006" ], - "mAssetSupply": "119931758049170639873068075" + "mAssetSupply": "1326094203407696114657749093" }, { - "type": "mintMulti", - "inputQtys": [ - "976254680668417", - "4010418090427358", - "1524083464065792" + "type": "redeemMasset", + "inputQty": "500637800253880445331046", + "expectedQtys": [ + "344255063405862806717236", + "39044409125532081212801", + "119806446442194381953791" ], - "expectedQty": "6504027912647676", + "redemptionFee": "150191340076164133599", "reserves": [ - "22157208447842551163008909", - "50969658815619482993411657", - "46873827828343975354496750" + "911795498140526300234428485", + "103413196355068464859107588", + "317319889019086323748934215" ], - "mAssetSupply": "119931758055674667785715751" + "mAssetSupply": "1325593715798782310376551646" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "195260518808311417536512", - "expectedQty": "195672377107158648701638", - "swapFee": "117156311284986850521", + "inputIndex": 2, + "inputQty": "452588982962466783232", + "expectedQty": "450479555141801300352", + "swapFee": "271553389777480069", "reserves": [ - "22157208447842551163008909", - "50773986438512324344710019", - "46873827828343975354496750" + "911795498140526300234428485", + "103413196355068464859107588", + "317319438539531181947633863" ], - "mAssetSupply": "119736614693177641355029760" + "mAssetSupply": "1325593263481352737687248483" }, { "type": "swap", "inputIndex": 0, - "inputQty": "15691530483041530", + "inputQty": "1255205162317443665756160", "outputIndex": 1, - "expectedQty": "15840826711952521", - "swapFee": "9484599793574", + "expectedQty": "1149826816724990673859666", + "swapFee": "740221578302763922830", "reserves": [ - "22157208463534081646050439", - "50773986422671497632757498", - "46873827828343975354496750" + "913050703302843743900184645", + "102263369538343474185247922", + "317319438539531181947633863" ], - "mAssetSupply": "119736614693187125954823334", + "mAssetSupply": "1325594003702931040451171313", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "357686520914928795648", - "185156831386570162176", - "309496902956396707840" - ], - "expectedQty": "853857176249195968118", - "swapFee": "512621878876843687", + "type": "swap", + "inputIndex": 2, + "inputQty": "20741700837115223577985024", + "outputIndex": 1, + "expectedQty": "19078460638998891376900882", + "swapFee": "12486199262286371572201", "reserves": [ - "22156850777013166717254791", - "50773801265840111062595322", - "46873518331441018957788910" + "913050703302843743900184645", + "83184908899344582808347040", + "338061139376646405525618887" ], - "mAssetSupply": "119735760836010876758855216" + "mAssetSupply": "1325606489902193326822743514", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1079502669520470357835776", - "619203552250675947634688", - "1083139338047452002385920" + "type": "mint", + "inputIndex": 0, + "inputQty": "230938794256278822584320", + "expectedQty": "226249083459858480706993", + "reserves": [ + "913281642097100022722768965", + "83184908899344582808347040", + "338061139376646405525618887" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "121000209046901299871744", + "expectedQty": "118542407510637835131847", + "reserves": [ + "913402642306146924022640709", + "83184908899344582808347040", + "338061139376646405525618887" + ] + }, + { + "type": "redeemMasset", + "inputQty": "8403000332072950084875059", + "expectedQtys": [ + "5786803947835030769735767", + "527012663335039171274947", + "2141764699755150607217239" ], - "expectedQty": "2785772157471755558318962", + "redemptionFee": "2520900099621885025462", "reserves": [ - "23236353446533637075090567", - "51393004818090787010230010", - "47956657669488470960174830" + "907615838358311893252904942", + "82657896236009543637072093", + "335919374676891254918401648" ], - "mAssetSupply": "122521532993482632317174178" + "mAssetSupply": "1317550801961190494938732757" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1599490767581034491936768", - "expectedQty": "1609733406811688077683961", + "inputQty": "1799492047983647452561408", + "expectedQty": "1762888554297747219843054", "reserves": [ - "24835844214114671567027335", - "51393004818090787010230010", - "47956657669488470960174830" + "909415330406295540705466350", + "82657896236009543637072093", + "335919374676891254918401648" ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "3467502603818691121381376", - "outputIndex": 1, - "expectedQty": "3465405189221915229320871", - "swapFee": "2076452705671861702499", + "inputQty": "245958033715770008010752", + "outputIndex": 0, + "expectedQty": "251425294436069759716726", + "swapFee": "147872814871819636885", "reserves": [ - "24835844214114671567027335", - "47927599628868871780909139", - "51424160273307162081556206" + "909163905111859470945749624", + "82657896236009543637072093", + "336165332710607024926412400" ], - "mAssetSupply": "124133342852999992256560638", + "mAssetSupply": "1319313838388303113978212696", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "43047599917764452352", - "17976164480526043136", - "17290061283498319872" + "343573413195733598208", + "695392747152030957568", + "65583105444127825920" ], - "expectedQty": "78497996598941861504", - "swapFee": "47127074203887449", + "expectedQty": "1174736343350500012421", "reserves": [ - "24835801166514753802574983", - "47927581652704391254866003", - "51424142983245878583236334" + "909164248685272666679347832", + "82658591628756695668029661", + "336165398293712469054238320" ], - "mAssetSupply": "124133264355003393314699134" + "mAssetSupply": "1319315013124646464478225117" }, { - "type": "redeemBassets", - "inputQtys": [ - "65099784434996582809600", - "24644222218918237831168", - "86859011963560413626368" + "type": "redeemMasset", + "inputQty": "12653660232178935319756", + "expectedQtys": [ + "8717254110691808988565", + "792547604793917991333", + "3223223091301570372712" ], - "expectedQty": "176746947034985650234266", - "swapFee": "106111835322184700961", + "redemptionFee": "3796098069653680595", "reserves": [ - "24770701382079757219765383", - "47902937430485473017034835", - "51337283971282318169609966" + "909155531431161974870359267", + "82657799081151901750038328", + "336162175070621167483865608" ], - "mAssetSupply": "123956517407968407664464868" + "mAssetSupply": "1319302363260512355196585956" }, { - "type": "mintMulti", - "inputQtys": [ - "2556320381380189487104", - "32179875266842289242112", - "57365079109385964224512" + "type": "redeemMasset", + "inputQty": "2870652736981686556400025", + "expectedQtys": [ + "1977626150272661464287130", + "179800066474376008402032", + "731231439691827378683680" ], - "expectedQty": "91928231809829764656141", + "redemptionFee": "861195821094505966920", "reserves": [ - "24773257702461137409252487", - "47935117305752315306276947", - "51394649050391704133834478" + "907177905280889313406072137", + "82477999014677525741636296", + "335430943630929340105181928" ], - "mAssetSupply": "124048445639778237429121009" + "mAssetSupply": "1316432571719351763146152851" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "95549213175288269111296", - "expectedQty": "95328610607565827879472", + "type": "redeemBassets", + "inputQtys": [ + "38451498635178696704", + "26285081765113999360", + "21962583650928082944" + ], + "expectedQty": "88872859438361515472", + "swapFee": "53355729100477195", "reserves": [ - "24773257702461137409252487", - "47935117305752315306276947", - "51490198263566992402945774" - ] + "907177866829390678227375433", + "82477972729595760627636936", + "335430921668345689177098984" + ], + "mAssetSupply": "1316432482846492324784637379" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "497553685626870848", - "expectedQty": "498123991026106690", - "swapFee": "298532211376122", + "type": "redeemMasset", + "inputQty": "8698927335481265461657", + "expectedQtys": [ + "5992792645578115579864", + "544847274684524322886", + "2215847667777806670137" + ], + "redemptionFee": "2609678200644379638", "reserves": [ - "24773257702461137409252487", - "47935116807628324280170257", - "51490198263566992402945774" + "907171874036745100111795569", + "82477427882321076103314050", + "335428705820677911370428847" ], - "mAssetSupply": "124143773753130649841505755" + "mAssetSupply": "1316423786528835044163555360" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "97022594226226383028224", - "74617472070391439556608", - "85652403938836090978304" + "195257372646885296177152", + "290232696587233337016320", + "378945642801051360821248" + ], + "expectedQty": "893280105591846663605003", + "reserves": [ + "907367131409391985407972721", + "82767660578908309440330370", + "335807651463478962731250095" + ], + "mAssetSupply": "1317317066634426890827160363" + }, + { + "type": "redeemMasset", + "inputQty": "939740596267567925113651", + "expectedQtys": [ + "647098518478456201439500", + "59026637272332776791386", + "239484797535281079630720" ], - "expectedQty": "257544527093799012422422", - "swapFee": "154619487949048836755", + "redemptionFee": "281922178880270377534", "reserves": [ - "24676235108234911026224263", - "47860499335557932840613649", - "51404545859628156311967470" + "906720032890913529206533221", + "82708633941635976663538984", + "335568166665943681651619375" ], - "mAssetSupply": "123886229226036850829083333" + "mAssetSupply": "1316377607960338203172424246" }, { "type": "mint", "inputIndex": 0, - "inputQty": "3179932227108330496", - "expectedQty": "3199028209975487735", + "inputQty": "85905175059246530560", + "expectedQty": "84162585992449128196", "reserves": [ - "24676238288167138134554759", - "47860499335557932840613649", - "51404545859628156311967470" + "906720118796088588453063781", + "82708633941635976663538984", + "335568166665943681651619375" ] }, { "type": "redeemBassets", "inputQtys": [ - "5460052223524556767232", - "7846333538480315957248", - "784771070061722075136" + "121039265286464280199168", + "275033036789720641699840", + "430542137812780002050048" ], - "expectedQty": "14108376991171933387250", - "swapFee": "8470108259658955405", + "expectedQty": "855389168586022655639753", + "swapFee": "513541626127289967364", "reserves": [ - "24670778235943613577787527", - "47852653002019452524656401", - "51403761088558094589892334" + "906599079530802124172864613", + "82433600904846256021839144", + "335137624528130901649569327" ], - "mAssetSupply": "123872124048073888871183818" + "mAssetSupply": "1315522302954338172965912689" }, { - "type": "redeemBassets", - "inputQtys": [ - "1160007521596944678912", - "1026480258664547745792", - "651100843071398739968" + "type": "redeemMasset", + "inputQty": "7718817158778200889753", + "expectedQtys": [ + "5317867400457396360741", + "483533426022305352822", + "1965827550880859647173" ], - "expectedQty": "2841245699800306619430", - "swapFee": "1705770882409629749", + "redemptionFee": "2315645147633460266", "reserves": [ - "24669618228422016633108615", - "47851626521760787976910609", - "51403109987715023191152366" + "906593761663401666776503872", + "82433117371420233716486322", + "335135658700580020789922154" ], - "mAssetSupply": "123869282802374088564564388" + "mAssetSupply": "1315514586452824542398483202" }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 2, + "inputQty": "228813062037499675672576", + "expectedQty": "228215066720707212202483", + "swapFee": "137287837222499805403", + "reserves": [ + "906593761663401666776503872", + "82433117371420233716486322", + "334907443633859313577719671" + ], + "mAssetSupply": "1315285910678624265222616029" + }, + { + "type": "redeemBassets", "inputQtys": [ - "136894719189234", - "94111033234881", - "164258764706077" + "386873816622515479379968", + "2208672218258023724875776", + "8733465260558583609688064" ], - "expectedQty": "395540393154457", + "expectedQty": "11592159641606677318937908", + "swapFee": "6959471467844713219294", "reserves": [ - "24669618228558911352297849", - "47851626521854899010145490", - "51403109987879281955858443" + "906206887846779151297123904", + "80224445153162209991610546", + "326173978373300729968031607" ], - "mAssetSupply": "123869282802769628957718845" + "mAssetSupply": "1303693751037017587903678121" }, { "type": "redeemMasset", - "inputQty": "7721485799903926943744", + "inputQty": "4089674457047441080320", "expectedQtys": [ - "1537338044590329914086", - "2981972613682902021584", - "3203290616923512005091" + "2841909253405341362698", + "251587795334247634000", + "1022897596333262780677" ], - "redemptionFee": "2316445739971178083", + "redemptionFee": "1226902337114232324", "reserves": [ - "24668080890514321022383763", - "47848644549241216108123906", - "51399906697262358443853352" + "906204045937525745955761206", + "80224193565366875743976546", + "326172955475704396705250930" ], - "mAssetSupply": "123861563633415465001953184" + "mAssetSupply": "1303689662589462877576830125" }, { - "type": "redeemBassets", - "inputQtys": [ - "2599719974779819101519872", - "1376048710060270516436992", - "1896720548098636555223040" + "type": "redeemMasset", + "inputQty": "85907574371199885298892", + "expectedQtys": [ + "59697057334822582215471", + "5284845399202486044697", + "21486955075285594318016" ], - "expectedQty": "5882305916763012709916656", - "swapFee": "3531502451528724860866", + "redemptionFee": "25772272311359965589", "reserves": [ - "22068360915734501920863891", - "46472595839180945591686914", - "49503186149163721888630312" + "906144348880190923373545735", + "80218908719967673257931849", + "326151468520629111110932914" ], - "mAssetSupply": "117979257716652452292036528" + "mAssetSupply": "1303603780787363989051496822" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "7178357864003008462848", - "expectedQty": "7122878908463741666606", - "swapFee": "4307014718401805077", + "type": "mint", + "inputIndex": 2, + "inputQty": "220069206904794937032704", + "expectedQty": "220651116412262477841335", "reserves": [ - "22061238036826038179197285", - "46472595839180945591686914", - "49503186149163721888630312" - ], - "mAssetSupply": "117972083665803167685378757" + "906144348880190923373545735", + "80218908719967673257931849", + "326371537727533906047965618" + ] }, { - "type": "redeemMasset", - "inputQty": "62219304159020757863628", - "expectedQtys": [ - "11631761061042827778451", - "24502619924839732124857", - "26100494998794691582834" - ], - "redemptionFee": "18665791247706227359", + "type": "mint", + "inputIndex": 2, + "inputQty": "4362186663709728061784064", + "expectedQty": "4372880640402896479107058", + "reserves": [ + "906144348880190923373545735", + "80218908719967673257931849", + "330733724391243634109749682" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "57531744310888432744267776", + "expectedQty": "61465640427385104081205258", + "reserves": [ + "906144348880190923373545735", + "137750653030856106002199625", + "330733724391243634109749682" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "2321049199908934", + "expectedQty": "2230607434407463", + "swapFee": "1392629519945", "reserves": [ - "22049606275764995351418834", - "46448093219256105859562057", - "49477085654164927197047478" + "906144348880190923373545735", + "137750653028625498567792162", + "330733724391243634109749682" ], - "mAssetSupply": "117909883027435394633742488" + "mAssetSupply": "1369662952969244595519261484" }, { "type": "redeemMasset", - "inputQty": "6216090961340420915", + "inputQty": "1183503328198754611442483", "expectedQtys": [ - "1162084433011726367", - "2447962353527437944", - "2607599895907804287" + "782749597591294943728981", + "118992375066228073648040", + "285695860705903007456257" ], - "redemptionFee": "1864827288402126", + "redemptionFee": "355050998459626383432", "reserves": [ - "22049605113680562339692467", - "46448090771293752332124113", - "49477083046565031289243191" + "905361599282599628429816754", + "137631660653559270494144122", + "330448028530537731102293425" ], - "mAssetSupply": "117909876813209260581723699" + "mAssetSupply": "1368479804692044300534202433" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3864796479306391040", - "238591520894182976", - "6816407969241250816" + "3462839404247949372293120", + "2013068836084650065526784", + "2794680833408531756482560" ], - "expectedQty": "10929517009240751638", - "swapFee": "6561647193860767", + "expectedQty": "8315801009888228836849569", "reserves": [ - "22049601248884083033301427", - "46448090532702231437941137", - "49477076230157062047992375" + "908824438686847577802109874", + "139644729489643920559670906", + "333242709363946262858775985" ], - "mAssetSupply": "117909865883692251340972061" + "mAssetSupply": "1376795605701932529371052002" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "489742613093236408320", - "expectedQty": "490461339274041196822", - "swapFee": "293845567855941844", + "inputQty": "196977816155280216424448", + "outputIndex": 0, + "expectedQty": "207174034503828138615340", + "swapFee": "122800241418034421602", "reserves": [ - "22049601248884083033301427", - "46447600071362957396744315", - "49477076230157062047992375" + "908617264652343749663494534", + "139841707305799200776095354", + "333242709363946262858775985" ], - "mAssetSupply": "117909376434924725960505585" + "mAssetSupply": "1376795728502173947405473604", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "103944668708480080", - "outputIndex": 2, - "expectedQty": "104899137324179711", - "swapFee": "62815012566004", + "type": "redeemMasset", + "inputQty": "537842486373513915111833", + "expectedQtys": [ + "354843024842455061790888", + "54612493455656942646520", + "130141540995968567635070" + ], + "redemptionFee": "161352745912054174533", "reserves": [ - "22049601352828751741781507", - "46447600071362957396744315", - "49477076125257924723812664" + "908262421627501294601703646", + "139787094812343543833448834", + "333112567822950294291140915" ], - "mAssetSupply": "117909376434987540973071589", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1376258047368546345544536304" }, { "type": "swap", "inputIndex": 0, - "inputQty": "202162309345458025136128", + "inputQty": "297703713293565241065472", "outputIndex": 2, - "expectedQty": "203994242647074123363117", - "swapFee": "122160190598336115869", + "expectedQty": "292710168841672675808426", + "swapFee": "176354727334732363146", "reserves": [ - "22251763662174209766917635", - "46447600071362957396744315", - "49273081882610850600449547" + "908560125340794859842769118", + "139787094812343543833448834", + "332819857654108621615332489" ], - "mAssetSupply": "117909498595178139309187458", + "mAssetSupply": "1376258223723273680276899450", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mintMulti", - "inputQtys": [ - "8189490184680249491456", - "8473808918858435657728", - "3854828567101241294848" - ], - "expectedQty": "20548493380268771353580", - "reserves": [ - "22259953152358890016409091", - "46456073880281815832402043", - "49276936711177951841744395" - ], - "mAssetSupply": "117930047088558408080541038" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "13200102832401844224", - "12806010767319048192", - "7055864970368954368" - ], - "expectedQty": "33110523909757431548", - "swapFee": "19878241290628836", - "reserves": [ - "22259939952256057614564867", - "46456061074271048513353851", - "49276929655312981472790027" - ], - "mAssetSupply": "117930013978034498323109490" - }, { "type": "mint", "inputIndex": 1, - "inputQty": "1034075790982158614528", - "expectedQty": "1031965981968420035443", + "inputQty": "67592644781352681472000", + "expectedQty": "70226344078090023079361", "reserves": [ - "22259939952256057614564867", - "46457095150062030671968379", - "49276929655312981472790027" + "908560125340794859842769118", + "139854687457124896514920834", + "332819857654108621615332489" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "34760883894446186299392", - "outputIndex": 2, - "expectedQty": "35070829471258148729918", - "swapFee": "21002314928275171577", + "type": "mint", + "inputIndex": 2, + "inputQty": "28902893946398332", + "expectedQty": "29005670708897222", "reserves": [ - "22294700836150503800864259", - "46457095150062030671968379", - "49241858825841723324060109" - ], - "mAssetSupply": "117931066946331395018316510", - "hardLimitError": false, - "insufficientLiquidityError": false + "908560125340794859842769118", + "139854687457124896514920834", + "332819857683011515561730821" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1464576061916681216", - "outputIndex": 0, - "expectedQty": "1449920401830266443", - "swapFee": "876543183102898", + "type": "redeemMasset", + "inputQty": "171524217642387463628390", + "expectedQtys": [ + "113194864677714188549063", + "17424088928969037214099", + "41465058504910178174006" + ], + "redemptionFee": "51457265292716239088", "reserves": [ - "22294699386230101970597816", - "46457095150062030671968379", - "49241860290417785240741325" + "908446930476117145654220055", + "139837263368195927477706735", + "332778392624506605383556815" ], - "mAssetSupply": "117931066947207938201419408", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1376156977335980346261486731" }, { - "type": "mintMulti", - "inputQtys": [ - "46210952797815216013312", - "44960259757076069220352", - "38795863530184831401984" + "type": "redeemMasset", + "inputQty": "136984426607577245784473", + "expectedQtys": [ + "90400841618339000324393", + "13915404272944018395097", + "33115249505974680204282" ], - "expectedQty": "130100198126977690568401", + "redemptionFee": "41095327982273173735", "reserves": [ - "22340910339027917186611128", - "46502055409819106741188731", - "49280656153947970072143309" + "908356529634498806653895662", + "139823347963922983459311638", + "332745277375000630703352533" ], - "mAssetSupply": "118061167145334915891987809" + "mAssetSupply": "1376020034004700751288875993" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "48704894095213953024", - "6199219315659154432", - "24082139194825216000" + "684469183684657408", + "1118210320332003584", + "682244568225064448" ], - "expectedQty": "79252051047750749800", + "expectedQty": "2522208081622105344", + "swapFee": "1514233389006667", "reserves": [ - "22340959043922012400564152", - "46502061609038422400343163", - "49280680236087164897359309" + "908356528950029622969238254", + "139823346845712663127308054", + "332745276692756062478288085" ], - "mAssetSupply": "118061246397385963642737609" + "mAssetSupply": "1376020031482492669666770649" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "1193911826569856548864", - "expectedQty": "1202212293760513444043", - "reserves": [ - "22342152955748582257113016", - "46502061609038422400343163", - "49280680236087164897359309" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "99472194877358174371840", - "expectedQty": "99269388510309342289043", + "inputQty": "11176755364022364160", + "outputIndex": 1, + "expectedQty": "10614821268569765600", + "swapFee": "6620903540985662", "reserves": [ - "22342152955748582257113016", - "46601533803915780574715003", - "49280680236087164897359309" - ] + "908356540126784986991602414", + "139823336230891394557542454", + "332745276692756062478288085" + ], + "mAssetSupply": "1376020031489113573207756311", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "454413397276825472", - "188250497890290912", - "523183306477004800" + "1764639839364335370502144", + "1180743178852066100510720", + "753134740624921486950400" ], - "expectedQty": "1167322501973978270", - "swapFee": "700813989578133", + "expectedQty": "3725007128230498494469887", + "swapFee": "2236346084589052528198", "reserves": [ - "22342152501335184980287544", - "46601533615665282684424091", - "49280679712903858420354509" + "906591900287420651621100270", + "138642593052039328457031734", + "331992141952131140991337685" ], - "mAssetSupply": "118161716830867531524492425" + "mAssetSupply": "1372295024360883074713286424" }, { - "type": "redeemBassets", - "inputQtys": [ - "216603227498726555648", - "973186514920687665152", - "1014212104647641137152" - ], - "expectedQty": "2200989007497704302243", - "swapFee": "1321386236240366801", + "type": "redeem", + "inputIndex": 0, + "inputQty": "557545777743875145728", + "expectedQty": "564420959560577060369", + "swapFee": "334527466646325087", "reserves": [ - "22341935898107686253731896", - "46600560429150361996758939", - "49279665500799210779217357" + "906591335866461091044039901", + "138642593052039328457031734", + "331992141952131140991337685" ], - "mAssetSupply": "118159515841860033820190182" + "mAssetSupply": "1372294467149632797484465783" }, { - "type": "redeemMasset", - "inputQty": "540762571749955", - "expectedQtys": [ - "102218243899067", - "213205671769187", - "225463043596497" - ], - "redemptionFee": "162228771524", + "type": "swap", + "inputIndex": 0, + "inputQty": "65701254987887882019012608", + "outputIndex": 2, + "expectedQty": "64294090535463635629249884", + "swapFee": "38891509868994319281853", "reserves": [ - "22341935898005468009832829", - "46600560428937156324989752", - "49279665500573747735620860" + "972292590854348973063052509", + "138642593052039328457031734", + "267698051416667505362087801" ], - "mAssetSupply": "118159515841319433477211751" + "mAssetSupply": "1372333358659501791803747636", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "20592591965882743049420", - "expectedQtys": [ - "3892537498057304531427", - "8119011249885328702720", - "8585779975755315569495" + "type": "redeemBassets", + "inputQtys": [ + "7868637897938114862645248", + "7337724934590303347671040", + "5139532631001175630544896" ], - "redemptionFee": "6177777589764822914", + "expectedQty": "20621153841101057224770934", + "swapFee": "12380120376886766394699", "reserves": [ - "22338043360507410705301402", - "46592441417687270996287032", - "49271079720597992420051365" + "964423952956410858200407261", + "131304868117449025109360694", + "262558518785666329731542905" ], - "mAssetSupply": "118138929427131140498985245" + "mAssetSupply": "1351712204818400734578976702" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "177499680948221240147968", - "outputIndex": 2, - "expectedQty": "177468101549857903905055", - "swapFee": "106280813434866352467", + "inputIndex": 0, + "inputQty": "14667215367291132706816", + "outputIndex": 1, + "expectedQty": "13734791121406783640029", + "swapFee": "8654085718724486494", "reserves": [ - "22338043360507410705301402", - "46769941098635492236435000", - "49093611619048134516146310" + "964438620171778149333114077", + "131291133326327618325720665", + "262558518785666329731542905" ], - "mAssetSupply": "118139035707944575365337712", + "mAssetSupply": "1351712213472486453303463196", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "8403544170992940032", - "3871882643656889856", - "9756704032525842432" - ], - "expectedQty": "22058572738004716495", + "type": "redeem", + "inputIndex": 1, + "inputQty": "92765016122383386279936", + "expectedQty": "88332436701705328152309", + "swapFee": "55659009673430031767", "reserves": [ - "22338051764051581698241434", - "46769944970518135893324856", - "49093621375752167041988742" + "964438620171778149333114077", + "131202800889625912997568356", + "262558518785666329731542905" ], - "mAssetSupply": "118139057766517313370054207" + "mAssetSupply": "1351619504115373743347215027" }, { "type": "mintMulti", "inputQtys": [ - "27184438294174559633408", - "116726916513891455336448", - "74235969094193801854976" + "938180912944930488320", + "2685097122626773975040", + "2475145146092622446592" ], - "expectedQty": "217911098768729036219064", + "expectedQty": "6243783966988492412548", "reserves": [ - "22365236202345756257874842", - "46886671887032027348661304", - "49167857344846360843843718" + "964439558352691094263602397", + "131205485986748539771543396", + "262560993930812422353989497" ], - "mAssetSupply": "118356968865286042406273271" + "mAssetSupply": "1351625747899340731839627575" }, { "type": "mint", "inputIndex": 1, - "inputQty": "22240896071582160519168", - "expectedQty": "22194548123530907279230", + "inputQty": "44226094041870299561984", + "expectedQty": "46418178614479664826378", "reserves": [ - "22365236202345756257874842", - "46908912783103609509180472", - "49167857344846360843843718" + "964439558352691094263602397", + "131249712080790410071105380", + "262560993930812422353989497" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4981301910483171316596736", - "expectedQty": "4969401398286517086631296", + "type": "mintMulti", + "inputQtys": [ + "2818908904307234963456", + "1316988398157912080384", + "2330883566756166369280" + ], + "expectedQty": "6511375757579171915881", "reserves": [ - "22365236202345756257874842", - "51890214693586780825777208", - "49167857344846360843843718" - ] + "964442377261595401498565853", + "131251029069188567983185764", + "262563324814379178520358777" + ], + "mAssetSupply": "1351678677453712790676369834" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3810557539956641490796544", - "expectedQty": "3772203292735178258370266", - "swapFee": "2286334523973984894477", + "inputQty": "931667456716593024", + "expectedQty": "946848727895587783", + "swapFee": "559000474029955", "reserves": [ - "18593032909610577999504576", - "51890214693586780825777208", - "49167857344846360843843718" + "964442376314746673602978070", + "131251029069188567983185764", + "262563324814379178520358777" ], - "mAssetSupply": "119540293606263422894281730" + "mAssetSupply": "1351678676522604334433806765" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "12729850618559518998528", - "expectedQty": "12760456288168089194325", - "swapFee": "7637910371135711399", + "inputIndex": 0, + "inputQty": "91433093904882263392256", + "expectedQty": "92922862752131352246073", + "swapFee": "54859856342929358035", "reserves": [ - "18593032909610577999504576", - "51890214693586780825777208", - "49155096888558192754649393" + "964349453451994542250731997", + "131251029069188567983185764", + "262563324814379178520358777" ], - "mAssetSupply": "119527571393555234510994601" + "mAssetSupply": "1351587298288555795099772544" }, { - "type": "redeemMasset", - "inputQty": "1507104129453758668", - "expectedQtys": [ - "234366262608185378", - "654079178087519016", - "619602858873007418" - ], - "redemptionFee": "452131238836127", + "type": "swap", + "inputIndex": 1, + "inputQty": "7981122961724471511089152", + "outputIndex": 0, + "expectedQty": "8481756996215135964821465", + "swapFee": "5012110435963217273890", "reserves": [ - "18593032675244315391319198", - "51890214039507602738258192", - "49155096268955333881641975" + "955867696455779406285910532", + "139232152030913039494274916", + "262563324814379178520358777" ], - "mAssetSupply": "119527569886903236296072060" + "mAssetSupply": "1351592310398991758317046434", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1713094356075732229160960", - "expectedQty": "1707767390055125660492945", + "type": "redeemBassets", + "inputQtys": [ + "127497383362910417321984", + "374758074651500615827456", + "173297876381418557276160" + ], + "expectedQty": "691647287552576423841659", + "swapFee": "415237515040570196422", "reserves": [ - "18593032675244315391319198", - "51890214039507602738258192", - "50868190625031066110802935" - ] + "955740199072416495868588548", + "138857393956261538878447460", + "262390026937997759963082617" + ], + "mAssetSupply": "1350900663111439181893204775" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "302868567692887218716672", - "expectedQty": "303712105591893214563678", - "swapFee": "181721140615732331230", + "inputIndex": 0, + "inputQty": "3461108532023382245376", + "expectedQty": "3514023223318567750629", + "swapFee": "2076665119214029347", "reserves": [ - "18593032675244315391319198", - "51586501933915709523694514", - "50868190625031066110802935" + "955736685049193177300837919", + "138857393956261538878447460", + "262390026937997759963082617" ], - "mAssetSupply": "120932650430406090470179563" + "mAssetSupply": "1350897204079572277724988746" }, { - "type": "redeemMasset", - "inputQty": "159171689121378651340", - "expectedQtys": [ - "24464828654236633834", - "67877841809263155887", - "66932683297512606891" + "type": "mintMulti", + "inputQtys": [ + "23854036025333891072", + "2192250668452092051456", + "294044508764280455168" ], - "redemptionFee": "47751506736413595", + "expectedQty": "2608023187121771588612", "reserves": [ - "18593008210415661154685364", - "51586434056073900260538627", - "50868123692347768598196044" + "955736708903229202634728991", + "138859586206929990970498916", + "262390320982506524243537785" ], - "mAssetSupply": "120932491306468475827941818" + "mAssetSupply": "1350899812102759399496577358" }, { - "type": "redeemMasset", - "inputQty": "11817737534531465484697", - "expectedQtys": [ - "1816396656082360295876", - "5039605493541115080033", - "4969431989182065420605" - ], - "redemptionFee": "3545321260359439645", + "type": "redeem", + "inputIndex": 2, + "inputQty": "44411359510744400920576", + "expectedQty": "43907915399217696432552", + "swapFee": "26646815706446640552", "reserves": [ - "18591191813759578794389488", - "51581394450580359145458594", - "50863154260358586532775439" + "955736708903229202634728991", + "138859586206929990970498916", + "262346413067107306547105233" ], - "mAssetSupply": "120920677114255204721896766" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "447994275074782527488", - "expectedQty": "446490677059289959866", - "reserves": [ - "18591191813759578794389488", - "51581842444855433927986082", - "50863154260358586532775439" - ] + "mAssetSupply": "1350855427390064361542297334" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1757730576367407576645632", - "expectedQty": "1776864155389513953658365", + "inputQty": "150952333599701353889792", + "expectedQty": "148589597676418979686665", "reserves": [ - "20348922390126986371035120", - "51581842444855433927986082", - "50863154260358586532775439" + "955887661236828903988618783", + "138859586206929990970498916", + "262346413067107306547105233" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5577324536153845760", - "expectedQty": "5519394468169164247", - "swapFee": "3346394721692307", + "type": "redeemBassets", + "inputQtys": [ + "9744775787377446912", + "1906969963237888512", + "6991844265438088192" + ], + "expectedQty": "18649739050256510492", + "swapFee": "11196561366974090", "reserves": [ - "20348916870732518201870873", - "51581842444855433927986082", - "50863154260358586532775439" + "955887651492053116611171871", + "138859584299960027732610404", + "262346406075263041109017041" ], - "mAssetSupply": "122697982186343636533361544" + "mAssetSupply": "1351003998338001730265473507" }, { "type": "mint", "inputIndex": 0, - "inputQty": "46227393125144422514688", - "expectedQty": "46683447698427568653583", + "inputQty": "4252938321128170501177344", + "expectedQty": "4186149279301838124635061", "reserves": [ - "20395144263857662624385561", - "51581842444855433927986082", - "50863154260358586532775439" + "960140589813181287112349215", + "138859584299960027732610404", + "262346406075263041109017041" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "415158628245344637419520", - "1725009262303145204121600", - "282306934244163488579584" + "type": "redeemMasset", + "inputQty": "60238270150696963460300", + "expectedQtys": [ + "42665493968507158027151", + "6170463804235288005601", + "11657812537892562643976" ], - "expectedQty": "2420758245407605078587210", - "swapFee": "1453326943410609412800", + "redemptionFee": "18071481045209089038", "reserves": [ - "19979985635612317986966041", - "49856833182552288723864482", - "50580847326114423044195855" + "960097924319212779954322064", + "138853413836155792444604803", + "262334748262725148546373065" ], - "mAssetSupply": "120323907388634459023427917" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1000177191507646524424192", - "expectedQty": "997159639427891786482119", - "reserves": [ - "19979985635612317986966041", - "49856833182552288723864482", - "51581024517622069568620047" - ] + "mAssetSupply": "1355129927418633916635737306" }, { - "type": "mintMulti", - "inputQtys": [ - "13349778011960687722496", - "3503569311997126246400", - "13602983559995798323200" + "type": "redeemMasset", + "inputQty": "1708177300868748801998848", + "expectedQtys": [ + "1209865889990421756560652", + "174975911158448065948125", + "330580720614879299294475" ], - "expectedQty": "30539050589386009023977", + "redemptionFee": "512453190260624640599", "reserves": [ - "19993335413624278674688537", - "49860336751864285850110882", - "51594627501182065366943247" + "958888058429222358197761412", + "138678437924997344378656678", + "262004167542110269247078590" ], - "mAssetSupply": "121351606078651736818934013" + "mAssetSupply": "1353422262570955428458379057" }, { "type": "redeemMasset", - "inputQty": "236560975932610194282905", + "inputQty": "197956910296718219673", "expectedQtys": [ - "38963011677399547876391", - "97167823322671839417127", - "100547609102268550027104" + "140208696915763332044", + "20277573488222400975", + "38310272606539219059" ], - "redemptionFee": "70968292779783058284", + "redemptionFee": "59387073089015465", "reserves": [ - "19954372401946879126812146", - "49763168928541614010693755", - "51494079892079796816916143" + "958887918220525442434429368", + "138678417647423856156255703", + "262004129231837662707859531" ], - "mAssetSupply": "121115116071011906407709392" + "mAssetSupply": "1353422064673432204829174849" }, { "type": "redeemMasset", - "inputQty": "119504313359205993650585", + "inputQty": "1022238732807596503203840", "expectedQtys": [ - "19683077221666504582569", - "49086600023549431332979", - "50793977909101330187946" + "724030095483614852282100", + "104712288123427153116568", + "197832166930276998307786" ], - "redemptionFee": "35851294007761798095", + "redemptionFee": "306671619842278950961", "reserves": [ - "19934689324725212622229577", - "49714082328518064579360776", - "51443285914170695486728197" + "958163888125041827582147268", + "138573705359300429003139135", + "261806297064907385709551745" ], - "mAssetSupply": "120995647608946708175856902" + "mAssetSupply": "1352400132612244450604921970" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "579773250899055191523328", - "expectedQty": "585429554041594885605855", + "type": "redeemBassets", + "inputQtys": [ + "2642702020794168377344", + "2741693315177050013696", + "3550731366927151661056" + ], + "expectedQty": "9052651778264251377532", + "swapFee": "5434851978145438089", "reserves": [ - "20514462575624267813752905", - "49714082328518064579360776", - "51443285914170695486728197" - ] + "958161245423021033413769924", + "138570963665985251953125439", + "261802746333540458557890689" + ], + "mAssetSupply": "1352391079960466186353544438" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "42251421754352377856", - "outputIndex": 1, - "expectedQty": "42213941716487201843", - "swapFee": "25275903187094066", + "type": "redeem", + "inputIndex": 1, + "inputQty": "236228898731094855122944", + "expectedQty": "226168643460942612806329", + "swapFee": "141737339238656913073", "reserves": [ - "20514462575624267813752905", - "49714040114576348092158933", - "51443328165592449839106053" + "958161245423021033413769924", + "138344795022524309340319110", + "261802746333540458557890689" ], - "mAssetSupply": "121581077188264206248556823", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1352154992799074330155334567" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2126778169771532288", - "expectedQty": "2121099622830246586", + "inputQty": "2093826222432854606872576", + "expectedQty": "2184405555582133822928471", "reserves": [ - "20514462575624267813752905", - "49714042241354517863691221", - "51443328165592449839106053" + "958161245423021033413769924", + "140438621244957163947191686", + "261802746333540458557890689" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "865256514567291264", - "outputIndex": 1, - "expectedQty": "864488964167457835", - "swapFee": "517619026567507", + "type": "mintMulti", + "inputQtys": [ + "44265939144375869440", + "82726199953518297088", + "15472539128707829760" + ], + "expectedQty": "145469650524428737355", "reserves": [ - "20514462575624267813752905", - "49714041376865553696233386", - "51443329030848964406397317" + "958161289688960177789639364", + "140438703971157117465488774", + "261802761806079587265720449" ], - "mAssetSupply": "121581079309881448105370916", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1354339543824306988407000393" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "66091585980316984016896", - "expectedQty": "66228486862722824845965", - "swapFee": "39654951588190190410", + "inputQty": "706076818445713029464064", + "expectedQty": "676682419344129934555865", + "swapFee": "423646091067427817678", "reserves": [ - "20514462575624267813752905", - "49647812890002830871387421", - "51443329030848964406397317" + "958161289688960177789639364", + "139762021551812987530932909", + "261802761806079587265720449" ], - "mAssetSupply": "121515027378852719311544430" + "mAssetSupply": "1353633890651952342805354007" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "160858105878109984", - "outputIndex": 1, - "expectedQty": "160713620110350663", - "swapFee": "96229247310606", + "type": "redeem", + "inputIndex": 0, + "inputQty": "25595378775237545422749696", + "expectedQty": "25978452375547637311534786", + "swapFee": "15357227265142527253649", "reserves": [ - "20514462575624267813752905", - "49647812729289210761036758", - "51443329191707070284507301" + "932182837313412540478104578", + "139762021551812987530932909", + "261802761806079587265720449" ], - "mAssetSupply": "121515027378948948558855036", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1328053869103979939909857960" }, { - "type": "mintMulti", - "inputQtys": [ - "735589687455183", - "759433180888272", - "386492731003488" - ], - "expectedQty": "1885299810639324", + "type": "redeem", + "inputIndex": 2, + "inputQty": "2892684006782027857657856", + "expectedQty": "2861561211263020854299928", + "swapFee": "1735610404069216714594", "reserves": [ - "20514462576359857501208088", - "49647812730048643941925030", - "51443329192093563015510789" + "932182837313412540478104578", + "139762021551812987530932909", + "258941200594816566411420521" ], - "mAssetSupply": "121515027380834248369494360" + "mAssetSupply": "1325162920707601981268914698" }, { - "type": "redeemBassets", - "inputQtys": [ - "1496690573254569375039488", - "1597321009761287592214528", - "1895827907410095864020992" - ], - "expectedQty": "4994450363780199853098654", - "swapFee": "2998469299848028729096", + "type": "swap", + "inputIndex": 1, + "inputQty": "1322766458999482368", + "outputIndex": 2, + "expectedQty": "1361478435426096809", + "swapFee": "825912286978163", "reserves": [ - "19017772003105288126168600", - "48050491720287356349710502", - "49547501284683467151489797" + "932182837313412540478104578", + "139762022874579446530415277", + "258941199233338130985323712" ], - "mAssetSupply": "116520577017054048516395706" + "mAssetSupply": "1325162920708427893555892861", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "782895365559289643008", - "823183834146397356032", - "846545549748811202560" + "type": "redeemMasset", + "inputQty": "982192163155192483676160", + "expectedQtys": [ + "690713563087362635830064", + "103558573425592574776456", + "191866006531549584824863" ], - "expectedQty": "2455710823872015852164", + "redemptionFee": "294657648946557745102", "reserves": [ - "19018554898470847415811608", - "48051314904121502747066534", - "49548347830233215962692357" + "931492123750325177842274514", + "139658464301153853955638821", + "258749333226806581400498849" ], - "mAssetSupply": "116523032727877920532247870" + "mAssetSupply": "1324181023202921647629961803" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3174580479718124408537088", - "expectedQty": "3133660519639538800047267", - "swapFee": "1904748287830874645122", - "reserves": [ - "15884894378831308615764341", - "48051314904121502747066534", - "49548347830233215962692357" - ], - "mAssetSupply": "113350356996447626998355904" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "36753709864295178240", - "19124485806576140288", - "40038492017645461504" - ], - "expectedQty": "96239543917426297055", - "swapFee": "57778393386487670", + "inputQty": "20302473957457480747319296", + "expectedQty": "20597034804014210531166693", + "swapFee": "12181484374474488448391", "reserves": [ - "15884857625121444320586101", - "48051295779635696170926246", - "49548307791741198317230853" + "910895088946310967311107821", + "139658464301153853955638821", + "258749333226806581400498849" ], - "mAssetSupply": "113350260756903709572058849" + "mAssetSupply": "1303890730729838641371090898" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "730095248620499968", - "expectedQty": "732349012281679816", - "swapFee": "438057149172299", + "inputIndex": 2, + "inputQty": "6477673663721127658127360", + "expectedQty": "6408963185696684613591414", + "swapFee": "3886604198232676594876", "reserves": [ - "15884857625121444320586101", - "48051295047286683889246430", - "49548307791741198317230853" + "910895088946310967311107821", + "139658464301153853955638821", + "252340370041109896786907435" ], - "mAssetSupply": "113350260027246518100731180" + "mAssetSupply": "1297416943670315746389558414" }, { "type": "mintMulti", "inputQtys": [ - "21931207949929832", - "63367362607859912", - "35328773329904468" - ], - "expectedQty": "120583799433011941", - "reserves": [ - "15884857647052652270515933", - "48051295110654046497106342", - "49548307827069971647135321" - ], - "mAssetSupply": "113350260147830317533743121" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "313243541748787466731520", - "expectedQty": "308335109849097718643030", - "swapFee": "187946125049272480038", - "reserves": [ - "15576522537203554551872903", - "48051295110654046497106342", - "49548307827069971647135321" - ], - "mAssetSupply": "113037204552206579339491639" - }, - { - "type": "redeemMasset", - "inputQty": "36570270074786093465", - "expectedQtys": [ - "5037870026746042591", - "15541092615897341652", - "16025267146873459661" + "9037414163245002915840", + "10415435648056447467520", + "7792252383181404110848" ], - "redemptionFee": "10971081022435828", + "expectedQty": "27596857155747034757936", "reserves": [ - "15576517499333527805830312", - "48051279569561430599764690", - "49548291801802824773675660" + "910904126360474212314023661", + "139668879736801910403106341", + "252348162293493078191018283" ], - "mAssetSupply": "113037167992907585575834002" + "mAssetSupply": "1297444540527471493424316350" }, { "type": "mintMulti", "inputQtys": [ - "83164918175885688832", - "184467613336889950208", - "184941379088751624192" + "442072304494406233227264", + "67561501865647647227904", + "313426091818028252528640" ], - "expectedQty": "452426981352877427925", + "expectedQty": "822396631389210932448353", "reserves": [ - "15576600664251703691519144", - "48051464037174767489714898", - "49548476743181913525299852" + "911346198664968618547250925", + "139736441238667558050334245", + "252661588385311106443546923" ], - "mAssetSupply": "113037620419888938453261927" + "mAssetSupply": "1298266937158860704356764703" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1101579025178682506346496", - "expectedQty": "1104997176718436906147102", - "swapFee": "660947415107209503807", + "type": "redeemBassets", + "inputQtys": [ + "537765514802667748065280", + "665232559429812985266176", + "750080045039797051326464" + ], + "expectedQty": "1978887792018091061138145", + "swapFee": "1188045502512362053915", "reserves": [ - "15576600664251703691519144", - "46946466860456330583567796", - "49548476743181913525299852" + "910808433150165950799185645", + "139071208679237745065068069", + "251911508340271309392220459" ], - "mAssetSupply": "111936702342125363156419238" + "mAssetSupply": "1296288049366842613295626558" }, { "type": "redeemBassets", "inputQtys": [ - "69760908340966146048", - "94980302412697468928", - "178404986418712641536" + "5130516064402715302690816", + "4976055282961049412698112", + "2423047250330248061911040" ], - "expectedQty": "343136715391274888961", - "swapFee": "206005632614333533", + "expectedQty": "12678748109735693906279292", + "swapFee": "7611815955414665142853", "reserves": [ - "15576530903343362725373096", - "46946371880153917886098868", - "49548298338195494812658316" + "905677917085763235496494829", + "134095153396276695652369957", + "249488461089941061330309419" ], - "mAssetSupply": "111936359205409971881530277" + "mAssetSupply": "1283609301257106919389347266" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "285286241178597326848", - "expectedQty": "286289168156625426857", - "swapFee": "171171744707158396", + "type": "swap", + "inputIndex": 1, + "inputQty": "46183300591310184118222848", + "outputIndex": 2, + "expectedQty": "46927050264004896305045233", + "swapFee": "28561124029771150636051", "reserves": [ - "15576530903343362725373096", - "46946371880153917886098868", - "49548012049027338187231459" + "905677917085763235496494829", + "180278453987586879770592805", + "202561410825936165025264186" ], - "mAssetSupply": "111936074090340537991361825" + "mAssetSupply": "1283637862381136690539983317", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "17307729059407682181529", - "expectedQtys": [ - "2407744781455106127622", - "7256743019617379031416", - "7658891969129906814772" - ], - "redemptionFee": "5192318717822304654", + "type": "mint", + "inputIndex": 0, + "inputQty": "40010327810038216500707328", + "expectedQty": "39436475203887656696461217", "reserves": [ - "15574123158561907619245474", - "46939115137134300507067452", - "49540353157058208280416687" - ], - "mAssetSupply": "111918771553599848131484950" + "945688244895801451997202157", + "180278453987586879770592805", + "202561410825936165025264186" + ] }, { - "type": "redeemMasset", - "inputQty": "141029383851333146325811", - "expectedQtys": [ - "19619140202296254691245", - "59130460923631176455807", - "62407310149288838254329" - ], - "redemptionFee": "42308815155399943897", + "type": "mint", + "inputIndex": 0, + "inputQty": "200167711392605952", + "expectedQty": "197205055217188764", "reserves": [ - "15554504018359611364554229", - "46879984676210669330611645", - "49477945846908919442162358" - ], - "mAssetSupply": "111777784478563670385103036" + "945688245095969163389808109", + "180278453987586879770592805", + "202561410825936165025264186" + ] }, { "type": "mintMulti", "inputQtys": [ - "65893529165263183872", - "38530249350161530880", - "31377840574780825600" + "9608984202385065984", + "9076211446794100736", + "21265451494199099392" ], - "expectedQty": "136539791856550948780", + "expectedQty": "40457184871305381451", "reserves": [ - "15554569911888776627738101", - "46880023206460019492142525", - "49477977224749494222987958" + "945688254704953365774874093", + "180278463063798326564693541", + "202561432091387659224363578" ], - "mAssetSupply": "111777921018355526936051816" + "mAssetSupply": "1323074378239414273759014749" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "33387227898048539525120", - "expectedQty": "33895784289370053971332", + "inputQty": "3424941049883454341120", + "expectedQty": "3474308731066418922164", + "swapFee": "2054964629930072604", "reserves": [ - "15587957139786825167263221", - "46880023206460019492142525", - "49477977224749494222987958" - ] + "945684780396222299355951929", + "180278463063798326564693541", + "202561432091387659224363578" + ], + "mAssetSupply": "1323070955353329020234746233" }, { "type": "swap", "inputIndex": 0, - "inputQty": "21658629585280916520960", + "inputQty": "994739511727155291619328", "outputIndex": 2, - "expectedQty": "22064198423740708566826", - "swapFee": "13192404600032494653", + "expectedQty": "960290945790999667783919", + "swapFee": "588003097687022599803", "reserves": [ - "15609615769372106083784181", - "46880023206460019492142525", - "49455913026325753514421132" + "946679519907949454647571257", + "180278463063798326564693541", + "201601141145596659556579659" ], - "mAssetSupply": "111811829995049497022517801", + "mAssetSupply": "1323071543356426707257346036", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "3634336333818", - "expectedQtys": [ - "507223382104", - "1523333070797", - "1607034781695" - ], - "redemptionFee": "1090300900", - "reserves": [ - "15609615769371598860402077", - "46880023206458496159071728", - "49455913026324146479639437" - ], - "mAssetSupply": "111811829995045863776484883" - }, { "type": "redeemBassets", "inputQtys": [ - "262672009052247392", - "156152111705032256", - "380836262830182016" - ], - "expectedQty": "801524696252429373", - "swapFee": "481203539875382", - "reserves": [ - "15609615506699589808154685", - "46880023050306384454039472", - "49455912645487883649457421" - ], - "mAssetSupply": "111811829193521167524055510" - }, - { - "type": "mintMulti", - "inputQtys": [ - "1224496213740531744768", - "15738189259332468604928", - "11678955182415711043584" + "10763136001595648029753344", + "2989265745525326068318208", + "31538773057722548851048448" ], - "expectedQty": "28555993441222786352612", + "expectedQty": "45955076188800844147657655", + "swapFee": "27589599472964285059630", "reserves": [ - "15610840002913330339899453", - "46895761239565716922644400", - "49467591600670299360501005" + "935916383906353806617817913", + "177289197318273000496375333", + "170062368087874110705531211" ], - "mAssetSupply": "111840385186962390310408122" + "mAssetSupply": "1277116467167625863109688381" }, { - "type": "redeemMasset", - "inputQty": "121140104390056337630822", - "expectedQtys": [ - "16903835361195653414732", - "50779985380903308326362", - "53564832127966441924827" - ], - "redemptionFee": "36342031317016901289", + "type": "mint", + "inputIndex": 0, + "inputQty": "12794844602564116561788928", + "expectedQty": "12578043434962393748161470", "reserves": [ - "15593936167552134686484721", - "46844981254184813614318038", - "49414026768542332918576178" - ], - "mAssetSupply": "111719281424603650989678589" + "948711228508917923179606841", + "177289197318273000496375333", + "170062368087874110705531211" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "255466605743422021042176", - "112857327024502682419200", - "115575907285395295961088" - ], - "expectedQty": "486942507418442781869527", - "swapFee": "292340908996463547250", + "type": "redeem", + "inputIndex": 1, + "inputQty": "439625635029506326528", + "expectedQty": "427695724723497671019", + "swapFee": "263775381017703795", "reserves": [ - "15338469561808712665442545", - "46732123927160310931898838", - "49298450861256937622615090" + "948711228508917923179606841", + "177288769622548276998704314", + "170062368087874110705531211" ], - "mAssetSupply": "111232338917185208207809062" + "mAssetSupply": "1289694071240728608369227118" }, { "type": "swap", "inputIndex": 0, - "inputQty": "309925670293091270000640", + "inputQty": "4505453292665472097976320", "outputIndex": 2, - "expectedQty": "315745441857973587970759", - "swapFee": "188797497402848032760", + "expectedQty": "4293256033058232622598130", + "swapFee": "2656841641619054509724", "reserves": [ - "15648395232101803935443185", - "46732123927160310931898838", - "48982705419398964034644331" + "953216681801583395277583161", + "177288769622548276998704314", + "165769112054815878082933081" ], - "mAssetSupply": "111232527714682611055841822", + "mAssetSupply": "1289696728082370227423736842", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "608793100401739", - "8399141751056380", - "2102514212977701" - ], - "expectedQty": "11081027516023258", - "swapFee": "6652608074458", + "type": "swap", + "inputIndex": 2, + "inputQty": "12342341677174774300672", + "outputIndex": 1, + "expectedQty": "12381348042100544618842", + "swapFee": "7639753288340817234", "reserves": [ - "15648395231493010835041446", - "46732123918761169180842458", - "48982705417296449821666630" + "953216681801583395277583161", + "177276388274506176454085472", + "165781454396493052857233753" ], - "mAssetSupply": "111232527703601583539818564" + "mAssetSupply": "1289696735722123515764554076", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "482871305563246121975808", - "expectedQty": "481126059784688213034690", - "reserves": [ - "15648395231493010835041446", - "47214995224324415302818266", - "48982705417296449821666630" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1409549461331287981686784", - "expectedQty": "1403790107635424969395594", + "inputQty": "5437977287764330151936", + "expectedQty": "5287811148978635465624", + "swapFee": "3262786372658598091", "reserves": [ - "15648395231493010835041446", - "47214995224324415302818266", - "50392254878627737803353414" - ] + "953216681801583395277583161", + "177271100463357197818619848", + "165781454396493052857233753" + ], + "mAssetSupply": "1289691301007622124093000231" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "18528976345451427004416", - "expectedQty": "18235126570956598628368", - "swapFee": "11117385807270856202", + "type": "redeemMasset", + "inputQty": "32188920791256076", + "expectedQtys": [ + "23783839852660684", + "4423115482994694", + "4136435751895598" + ], + "redemptionFee": "9656676237376", "reserves": [ - "15630160104922054236413078", - "47214995224324415302818266", - "50392254878627737803353414" + "953216681777799555424922477", + "177271100458934082335625154", + "165781454392356617105338155" ], - "mAssetSupply": "113098926012062052566100634" + "mAssetSupply": "1289691300975442859977981531" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "5065540752425021865984", - "expectedQty": "5044298237038839570398", + "type": "redeemMasset", + "inputQty": "5373644170043103641", + "expectedQtys": [ + "3970493238785644838", + "738398434752069367", + "690539891258786175" + ], + "redemptionFee": "1612093251012931", "reserves": [ - "15630160104922054236413078", - "47214995224324415302818266", - "50397320419380162825219398" - ] + "953216677807306316639277639", + "177271099720535647583555787", + "165781453701816725846551980" + ], + "mAssetSupply": "1289691295603410783185890821" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7565630264540702703616", - "1960841741935667314688", - "2750675778239468666880" + "72919268542428695494656", + "563312686675773314039808", + "883845741882598708215808" ], - "expectedQty": "12376063894487366350078", - "swapFee": "7430096394529137292", + "expectedQty": "1562185754599460176988525", "reserves": [ - "15622594474657513533709462", - "47213034382582479635503578", - "50394569743601923356552518" + "953289597075848745334772295", + "177834412407211420897595595", + "166665299443699324554767788" ], - "mAssetSupply": "113091594246404604039320954" + "mAssetSupply": "1291253481358010243362879346" }, { "type": "redeemMasset", - "inputQty": "15759142183812179558", + "inputQty": "1597708551016256707441459", "expectedQtys": [ - "2176331756926392628", - "6577091035317581298", - "7020300161253923823" + "1179181345214521522808261", + "219974100515737402325214", + "206158351671350047078592" ], - "redemptionFee": "4727742655143653", + "redemptionFee": "479312565304877012232", "reserves": [ - "15622592298325756607316834", - "47213027805491444317922280", - "50394562723301762102628695" + "952110415730634223811964034", + "177614438306695683495270381", + "166459141092027974507689196" ], - "mAssetSupply": "113091578491990162882285049" + "mAssetSupply": "1289656252119559291532450119" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "24335079934574", - "outputIndex": 0, - "expectedQty": "23862166196035", - "swapFee": "14548504414", + "type": "redeemMasset", + "inputQty": "719203556113884223897", + "expectedQtys": [ + "530804830606936193042", + "99020660084244365746", + "92801543529513871591" + ], + "redemptionFee": "215761066834165267", "reserves": [ - "15622592298301894441120799", - "47213027805515779397856854", - "50394562723301762102628695" + "952109884925803616875770992", + "177614339286035599250904635", + "166459048290484444993817605" ], - "mAssetSupply": "113091578491990177430789463", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1289655533131764244482391489" }, { "type": "mintMulti", "inputQtys": [ - "28945775452493560414208", - "4478171512475387691008", - "8087594051826978127872" + "289738916921048268800", + "657431475509280112640", + "235848356988570304512" ], - "expectedQty": "41910537719940201428883", + "expectedQty": "1203447729200341546764", "reserves": [ - "15651538073754388001535007", - "47217505977028254785547862", - "50402650317353589080756567" + "952110174664720537924039792", + "177614996717511108531017275", + "166459284138841433564122117" ], - "mAssetSupply": "113133489029710117632218346" + "mAssetSupply": "1289656736579493444823938253" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1209603591079046718423040", - "outputIndex": 0, - "expectedQty": "1184065626097734412772608", - "swapFee": "723091427536477437257", + "type": "mintMulti", + "inputQtys": [ + "12539599072909125228691456", + "5871963989032970997465088", + "854526384143154699829248" + ], + "expectedQty": "19233379560000389673330116", "reserves": [ - "14467472447656653588762399", - "48427109568107301503970902", - "50402650317353589080756567" + "964649773737629663152731248", + "183486960706544079528482363", + "167313810522984588263951365" ], - "mAssetSupply": "113134212121137654109655603", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1308890116139493834497268369" }, { "type": "mint", "inputIndex": 2, - "inputQty": "775985046310788792320", - "expectedQty": "772443868909749175164", + "inputQty": "184324213649823405965312", + "expectedQty": "190152991610868254008221", "reserves": [ - "14467472447656653588762399", - "48427109568107301503970902", - "50403426302399899869548887" + "964649773737629663152731248", + "183486960706544079528482363", + "167498134736634411669916677" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3052035281802418605522944", - "expectedQty": "3098801015607124103720531", + "type": "mintMulti", + "inputQtys": [ + "1603961855725203357696", + "80083348315117098893312", + "104912839052845868122112" + ], + "expectedQty": "191999007436988235607536", "reserves": [ - "17519507729459072194285343", - "48427109568107301503970902", - "50403426302399899869548887" - ] + "964651377699485388356088944", + "183567044054859196627375675", + "167603047575687257538038789" + ], + "mAssetSupply": "1309272268138541690986884126" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "35742906323680081477632", - "expectedQty": "35276889231453438556238", - "swapFee": "21445743794208048886", + "type": "swap", + "inputIndex": 2, + "inputQty": "3900513541499464450048", + "outputIndex": 1, + "expectedQty": "3917688358621080190992", + "swapFee": "2414117412360124027", "reserves": [ - "17484230840227618755729105", - "48427109568107301503970902", - "50403426302399899869548887" + "964651377699485388356088944", + "183563126366500575547184683", + "167606948089228757002488837" ], - "mAssetSupply": "116198064120033802089122552" + "mAssetSupply": "1309272270552659103347008153", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "48953428480752359833", - "expectedQtys": [ - "7363773885087726445", - "20395880609596666076", - "21228239189715723495" + "type": "redeemBassets", + "inputQtys": [ + "11170763481147734016", + "10588834389717698560", + "2359649164668468224" ], - "redemptionFee": "14686028544225707", + "expectedQty": "24280044710864895912", + "swapFee": "14576772890253089", "reserves": [ - "17484223476453733668002660", - "48427089172226691907304826", - "50403405074160710153825392" + "964651366528721907208354928", + "183563115777666185829486123", + "167606945729579592334020613" ], - "mAssetSupply": "116198015181291349880988426" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "259610065187321264734208", - "expectedQty": "258765372647646310222720", - "reserves": [ - "17484223476453733668002660", - "48686699237414013172039034", - "50403405074160710153825392" - ] + "mAssetSupply": "1309272246272614392482112241" }, { - "type": "redeemBassets", - "inputQtys": [ - "3745646347530229760", - "14389835332151726080", - "15639135134745098240" - ], - "expectedQty": "33719166129487477169", - "swapFee": "20243645865211613", + "type": "redeem", + "inputIndex": 0, + "inputQty": "828960625355187421184", + "expectedQty": "843041569562094561795", + "swapFee": "497376375213112452", "reserves": [ - "17484219730807386137772900", - "48686684847578681020312954", - "50403389435025575408727152" + "964650523487152345113793133", + "183563115777666185829486123", + "167606945729579592334020613" ], - "mAssetSupply": "116456746834772866703733977" + "mAssetSupply": "1309271417809365412507803509" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "915718652948016", - "expectedQty": "918453958486397", - "swapFee": "549431191768", + "inputQty": "646396946202761887744", + "expectedQty": "626258357707202207536", + "swapFee": "387838167721657132", "reserves": [ - "17484219730807386137772900", - "48686684847578681020312954", - "50403389434107121450240755" + "964650523487152345113793133", + "183563115777666185829486123", + "167606319471221885131813077" ], - "mAssetSupply": "116456746833857697481977729" + "mAssetSupply": "1309270771800257377467572897" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "106592841559025534369792", - "202324416301378972942336", - "378582523527842100150272" + "2799309674837085003972608", + "621308673966539368562688", + "648758862176251843444736" ], - "expectedQty": "686836086542214212543155", + "expectedQty": "4057840494051552896766569", + "swapFee": "2436165996028548867380", "reserves": [ - "17590812572366411672142692", - "48889009263880059993255290", - "50781971957634963550391027" + "961851213812315260109820525", + "182941807103699646460923435", + "166957560609045633288368341" ], - "mAssetSupply": "117143582920399911694520884" + "mAssetSupply": "1305212931306205824570806328" }, { "type": "mintMulti", "inputQtys": [ - "29811386362497018626048", - "28966799634926917386240", - "9293439195537628725248" + "500246355187267455156224", + "31935944033087743066112", + "358062679189979213594624" ], - "expectedQty": "68321888819485865575235", + "expectedQty": "893731830974665783705595", "reserves": [ - "17620623958728908690768740", - "48917976063514986910641530", - "50791265396830501179116275" + "962351460167502527564976749", + "182973743047732734203989547", + "167315623288235612501962965" ], - "mAssetSupply": "117211904809219397560096119" + "mAssetSupply": "1306106663137180490354511923" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "400730469906950717440", - "expectedQty": "405802337428254648412", + "inputQty": "20621173416539750699892736", + "outputIndex": 2, + "expectedQty": "19508669679609329413161845", + "swapFee": "12155310491480068748429", "reserves": [ - "17621024689198815641486180", - "48917976063514986910641530", - "50791265396830501179116275" - ] + "982972633584042278264869485", + "182973743047732734203989547", + "147806953608626283088801120" + ], + "mAssetSupply": "1306118818447671970423260352", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "401574793583385915686912", - "849344444954795669716992", - "476996629659525475991552" - ], - "expectedQty": "1728557001081508457775015", - "swapFee": "1037756854761762131944", + "type": "swap", + "inputIndex": 1, + "inputQty": "19972430467393348698112", + "outputIndex": 0, + "expectedQty": "20948936477823907373244", + "swapFee": "12329999647088589911", "reserves": [ - "17219449895615429725799268", - "48068631618560191240924538", - "50314268767170975703124723" + "982951684647564454357496241", + "182993715478200127552687659", + "147806953608626283088801120" ], - "mAssetSupply": "115483753610475317356969516" + "mAssetSupply": "1306118830777671617511850263", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "407257136726948561551360", - "expectedQty": "405754250477364821003226", + "type": "redeemMasset", + "inputQty": "325478590710966778435993", + "expectedQtys": [ + "244873393293711271513276", + "45587481826878854835091", + "36821738899127854826604" + ], + "redemptionFee": "97643577213290033530", "reserves": [ - "17219449895615429725799268", - "48068631618560191240924538", - "50721525903897924264676083" - ] + "982706811254270743085982965", + "182948127996373248697852568", + "147770131869727155233974516" + ], + "mAssetSupply": "1305793449830537864023447800" }, { "type": "swap", "inputIndex": 2, - "inputQty": "21293786256454958710784", + "inputQty": "1233046053016487277363200", "outputIndex": 1, - "expectedQty": "21270786495058355084808", - "swapFee": "12728754944634606426", + "expectedQty": "1248686984172801260545539", + "swapFee": "771447487555998331782", "reserves": [ - "17219449895615429725799268", - "48047360832065132885839730", - "50742819690154379223386867" + "982706811254270743085982965", + "181699441012200447437307029", + "149003177922743642511337716" ], - "mAssetSupply": "115889520589707626812579168", + "mAssetSupply": "1305794221278025420021779582", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "3527871607634889015296", - "2499754778628682416128", - "3766570495458774876160" + "type": "redeemMasset", + "inputQty": "1383370474319586710572236", + "expectedQtys": [ + "1040776357545440716857535", + "192436319987803281355141", + "157807988105012128055481" + ], + "redemptionFee": "415011142295876013171", + "reserves": [ + "981666034896725302369125430", + "181507004692212644155951888", + "148845369934638630383282235" + ], + "mAssetSupply": "1304411265814848129187220517" + }, + { + "type": "redeemMasset", + "inputQty": "24167467016518831308", + "expectedQtys": [ + "18182351553312978024", + "3361860399957541239", + "2756903821694554143" ], - "expectedQty": "9818051155862230607768", - "swapFee": "5894367313905681773", + "redemptionFee": "7250240104955649", "reserves": [ - "17215922024007794836783972", - "48044861077286504203423602", - "50739053119658920448510707" + "981666016714373749056147406", + "181507001330352244198410649", + "148845367177734808688728092" ], - "mAssetSupply": "115879702538551764581971400" + "mAssetSupply": "1304411241654631352773344858" + }, + { + "type": "redeemMasset", + "inputQty": "945976535143039180", + "expectedQtys": [ + "711703792184723061", + "131591823446482149", + "107912274099169463" + ], + "redemptionFee": "283792960542911", + "reserves": [ + "981666016002669956871424345", + "181507001198760420751928500", + "148845367069822534589558629" + ], + "mAssetSupply": "1304411240708938610590848589" }, { "type": "mint", "inputIndex": 1, - "inputQty": "13618196788195217155031040", - "expectedQty": "13561687547103172984925466", + "inputQty": "13867164273020024871976960", + "expectedQty": "14240699522001824759299107", "reserves": [ - "17215922024007794836783972", - "61663057865481721358454642", - "50739053119658920448510707" + "981666016002669956871424345", + "195374165471780445623905460", + "148845367069822534589558629" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "78794685028479876988928", - "outputIndex": 1, - "expectedQty": "80491230695634994253410", - "swapFee": "48082316733232998631", + "inputIndex": 2, + "inputQty": "66672969665798352", + "outputIndex": 0, + "expectedQty": "70725908517065213", + "swapFee": "41670727439452", "reserves": [ - "17294716709036274713772900", - "61582566634786086364201232", - "50739053119658920448510707" + "981666015931944048354359132", + "195374165471780445623905460", + "148845367136495504255356981" ], - "mAssetSupply": "129441438167971670799895497", + "mAssetSupply": "1318651940230982106077587148", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "23475176828998297190", - "expectedQtys": [ - "3135585788729284976", - "11165110364173729140", - "9199147726568818416" - ], - "redemptionFee": "7042553048699489", + "type": "redeem", + "inputIndex": 0, + "inputQty": "84897314808656151183360", + "expectedQty": "86455399136565379273380", + "swapFee": "50938388885193690710", "reserves": [ - "17294713573450485984487924", - "61582555469675722190472092", - "50739043920511193879692291" + "981579560532807482975085752", + "195374165471780445623905460", + "148845367136495504255356981" ], - "mAssetSupply": "129441414699837394850297796" + "mAssetSupply": "1318567093854562335120094498" }, { "type": "mintMulti", "inputQtys": [ - "738355492153837486080", - "13401166831948916588544", - "13922923229490096111616" + "3218455004243781746688", + "3577533854204374286336", + "2726160622478349041664" ], - "expectedQty": "27964040936252623137573", + "expectedQty": "9664341641904462738892", "reserves": [ - "17295451928942639821974004", - "61595956636507671107060636", - "50752966843740683975803907" + "981582778987811726756832440", + "195377743005634649998191796", + "148848093297117982604398645" ], - "mAssetSupply": "129469378740773647473435369" + "mAssetSupply": "1318576758196204239582833390" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "35139891390497030144", - "outputIndex": 2, - "expectedQty": "35054363511064632424", - "swapFee": "20978691392318774", + "inputIndex": 2, + "inputQty": "33209047759568225959936", + "outputIndex": 0, + "expectedQty": "35226867500310860951682", + "swapFee": "20755323102182105962", "reserves": [ - "17295451928942639821974004", - "61595991776399061604090780", - "50752931789377172911171483" + "981547552120311415895880758", + "195377743005634649998191796", + "148881302344877550830358581" ], - "mAssetSupply": "129469378761752338865754143", + "mAssetSupply": "1318576778951527341764939352", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "16996159581202438144", - "14251729235335157760", - "12498084540630904832" + "21490017788145008902144", + "10689163735377987502080", + "12809041461531675459584" ], - "expectedQty": "43923210499489727173", - "swapFee": "26369748148582986", + "expectedQty": "45386108070000580913050", "reserves": [ - "17295434932783058619535860", - "61595977524669826268933020", - "50752919291292632280266651" + "981569042138099560904782902", + "195388432169370027985693876", + "148894111386339082505818165" ], - "mAssetSupply": "129469334838541839376026970" + "mAssetSupply": "1318622165059597342345852402" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "534150924339222", - "outputIndex": 1, - "expectedQty": "545596513703626", - "swapFee": "325919403987", + "type": "redeemMasset", + "inputQty": "4299134068146161529651", + "expectedQtys": [ + "3199271976464951094443", + "636838274975813056811", + "485297251206447766757" + ], + "redemptionFee": "1289740220443848458", "reserves": [ - "17295434933317209543875082", - "61595977524124229755229394", - "50752919291292632280266651" + "981565842866123095953688459", + "195387795331095052172637065", + "148893626089087876058051408" ], - "mAssetSupply": "129469334838542165295430957", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1318617867215269416628171209" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "38160768466220434241617920", + "12557691208634887932215296", + "31058290358958868693778432" + ], + "hardLimitError": true }, { "type": "redeemMasset", - "inputQty": "27624025244501220419174", + "inputQty": "347874987970893550767308", "expectedQtys": [ - "3689106775352281645112", - "13138388187102431401004", - "10825569819336395643470" + "258876946540138428299435", + "51531332527656280599991", + "39269018539482100831518" ], - "redemptionFee": "8287207573350366125", + "redemptionFee": "104362496391268065230", "reserves": [ - "17291745826541857262229970", - "61582839135937127323828390", - "50742093721473295884623181" + "981306965919582957525389024", + "195336263998567395892037074", + "148854357070548393957219890" ], - "mAssetSupply": "129441719100505237425377908" + "mAssetSupply": "1318270096589794914345469131" }, { - "type": "mintMulti", - "inputQtys": [ - "9202036925891080192", - "11968736026601422848", - "517313326670196288" + "type": "redeemMasset", + "inputQty": "69582221358815066351206", + "expectedQtys": [ + "51780764992386289196514", + "10307336574465354771503", + "7854619144927649503153" ], - "expectedQty": "21782581551634630022", + "redemptionFee": "20874666407644519905", "reserves": [ - "17291755028578783153310162", - "61582851104673153925251238", - "50742094238786622554819469" + "981255185154590571236192510", + "195325956661992930537265571", + "148846502451403466307716737" ], - "mAssetSupply": "129441740883086789060007930" + "mAssetSupply": "1318200535243102506923637830" }, { "type": "mintMulti", "inputQtys": [ - "49536447084828639100928", - "56641787841723964063744", - "64680788959035886927872" + "4287898193144650206806016", + "9658265687648024272044032", + "1496603816881910460710912" ], - "expectedQty": "171209865440390723708823", + "expectedQty": "15652762300425687433162877", "reserves": [ - "17341291475663611792411090", - "61639492892514877889314982", - "50806775027745658441747341" + "985543083347735221442998526", + "204984222349640954809309603", + "150343106268285376768427649" ], - "mAssetSupply": "129612950748527179783716753" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "8261733433588149630533632", - "outputIndex": 2, - "expectedQty": "8228806875897230982888431", - "swapFee": "4929808424806356488792", - "reserves": [ - "17341291475663611792411090", - "69901226326103027519848614", - "42577968151848427458858910" - ], - "mAssetSupply": "129617880556951986140205545", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1333853297543528194356800707" }, { "type": "redeemBassets", "inputQtys": [ - "453489309016559871590400", - "267461719807902785470464", - "467594038130598389743616" + "13776953386453803466752", + "39479279622079559761920", + "21587614798397397008384" ], - "expectedQty": "1194314338362690296085349", - "swapFee": "717018814306197896389", + "expectedQty": "76355664811361776396263", + "swapFee": "45840903428874390472", "reserves": [ - "16887802166647051920820690", - "69633764606295124734378150", - "42110374113717829069115294" + "985529306394348767639531774", + "204944743070018875249547683", + "150321518653486979371419265" ], - "mAssetSupply": "128423566218589295844120196" + "mAssetSupply": "1333776941878716832580404444" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "370487663255338950328320", - "outputIndex": 2, - "expectedQty": "377388827238852798884168", - "swapFee": "226285309628353259326", + "inputIndex": 1, + "inputQty": "12037386548729178112", + "outputIndex": 0, + "expectedQty": "12523365391895606897", + "swapFee": "7383399051140839", "reserves": [ - "17258289829902390871149010", - "69633764606295124734378150", - "41732985286478976270231126" + "985529293870983375743924877", + "204944755107405423978725795", + "150321518653486979371419265" ], - "mAssetSupply": "128423792503898924197379522", + "mAssetSupply": "1333776941886100231631545283", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "1388677784795042623258624", - "expectedQty": "1386793087783206843405054", - "reserves": [ - "17258289829902390871149010", - "69633764606295124734378150", - "43121663071274018893489750" - ] - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "638458541127129235456", - "expectedQty": "634369975876708474244", + "inputQty": "6808702631170035154944", + "expectedQty": "7086196871198827843454", "reserves": [ - "17258289829902390871149010", - "69634403064836251863613606", - "43121663071274018893489750" + "985529293870983375743924877", + "204944755107405423978725795", + "150328327356118149406574209" ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "288223033109713944576", + "inputQty": "165536881078900367556608", "outputIndex": 0, - "expectedQty": "282585286151799014589", - "swapFee": "172674750027484439", + "expectedQty": "175319809473672771926617", + "swapFee": "103365248325638993189", "reserves": [ - "17258007244616239072134421", - "69634403064836251863613606", - "43121951294307128607434326" + "985353974061509702971998260", + "204944755107405423978725795", + "150493864237197049774130817" ], - "mAssetSupply": "129811220134332757776743259", + "mAssetSupply": "1333784131448219756098381926", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "173555713901387558420480", - "159829539614869696806912", - "230406427181161461579776" - ], - "expectedQty": "565530887346723214822151", - "swapFee": "339522245755487221226", + "type": "redeem", + "inputIndex": 1, + "inputQty": "483375178522088416739328", + "expectedQty": "472533297776285602145471", + "swapFee": "290025107113253050043", "reserves": [ - "17084451530714851513713941", - "69474573525221382166806694", - "42891544867125967145854550" + "985353974061509702971998260", + "204472221809629138376580324", + "150493864237197049774130817" ], - "mAssetSupply": "129245689246986034561921108" + "mAssetSupply": "1333301046294804780934692641" }, { "type": "mint", "inputIndex": 0, - "inputQty": "46150292236391686144", - "expectedQty": "46984094082958080696", + "inputQty": "810188257189215472713728", + "expectedQty": "795611878259738738113811", "reserves": [ - "17084497681007087905400085", - "69474573525221382166806694", - "42891544867125967145854550" + "986164162318698918444711988", + "204472221809629138376580324", + "150493864237197049774130817" ] }, { - "type": "redeemMasset", - "inputQty": "64948322772170346541875", - "expectedQtys": [ - "8582693861267642013829", - "34901757537301843706550", - "21547311820622849079430" - ], - "redemptionFee": "19484496831651103962", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5439877108804365255180288", + "expectedQty": "5535858119519254712610095", + "swapFee": "3263926265282619153108", "reserves": [ - "17075914987145820263386256", - "69439671767684080323100144", - "42869997555305344296775120" + "980628304199179663732101893", + "204472221809629138376580324", + "150493864237197049774130817" ], - "mAssetSupply": "129180807392804778824563891" + "mAssetSupply": "1328660044990525437036779272" }, { - "type": "redeemMasset", - "inputQty": "26416738864651262361", - "expectedQtys": [ - "3490879714995545677", - "14195757110071820765", - "8764040167708647402" - ], - "redemptionFee": "7925021659395378", + "type": "mint", + "inputIndex": 1, + "inputQty": "18866966471705964", + "expectedQty": "19284078745438914", "reserves": [ - "17075911496266105267840579", - "69439657571926970251279379", - "42869988791265176588127718" - ], - "mAssetSupply": "129180780983990935832696908" + "980628304199179663732101893", + "204472221828496104848286288", + "150493864237197049774130817" + ] }, { - "type": "redeemMasset", - "inputQty": "74199751201621735060275", - "expectedQtys": [ - "9805237794664369369724", - "39873265624601811746356", - "24616573729892362639922" - ], - "redemptionFee": "22259925360486520518", + "type": "mint", + "inputIndex": 0, + "inputQty": "16597479584604870656", + "expectedQty": "16301163125671870196", "reserves": [ - "17066106258471440898470855", - "69399784306302368439533023", - "42845372217535284225487796" - ], - "mAssetSupply": "129106603492714674584157151" + "980628320796659248336972549", + "204472221828496104848286288", + "150493864237197049774130817" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1937503570412206292992", - "20674345038489411649536", - "3271140876052063059968" - ], - "expectedQty": "25779471517218564569556", - "swapFee": "15476969091786210468", + "type": "redeem", + "inputIndex": 2, + "inputQty": "30033758689083259334164480", + "hardLimitError": true + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "194125279591061530869760", + "outputIndex": 1, + "expectedQty": "186416700756124978651519", + "swapFee": "114395420732066383526", "reserves": [ - "17064168754901028692177863", - "69379109961263879027883487", - "42842101076659232162427828" + "980822446076250309867842309", + "204285805127739979869634769", + "150493864237197049774130817" ], - "mAssetSupply": "129080824021197456019587595" + "mAssetSupply": "1328660175706393373520471908", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "158565099143546077184", - "1259491540740988993536", - "860308019293198090240" + "309620542011223796875264", + "216854647836168689811456", + "326013228992953478807552" ], - "expectedQty": "2271795571637200381514", - "swapFee": "1363895680390554561", + "expectedQty": "864856225699697400343719", "reserves": [ - "17064010189801885146100679", - "69377850469723138038889951", - "42841240768639938964337588" + "981132066618261533664717573", + "204502659775576148559446225", + "150819877466190003252938369" ], - "mAssetSupply": "129078552225625818819206081" + "mAssetSupply": "1329525031932093070920815627" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "24456894542201938247680", - "outputIndex": 0, - "expectedQty": "23852590568295741620013", - "swapFee": "14579305445313586397", + "type": "redeem", + "inputIndex": 2, + "inputQty": "12902019094824664304713728", + "expectedQty": "12353139362732971344863651", + "swapFee": "7741211456894798582828", "reserves": [ - "17040157599233589404480666", - "69402307364265339977137631", - "42841240768639938964337588" + "981132066618261533664717573", + "204502659775576148559446225", + "138466738103457031908074718" ], - "mAssetSupply": "129078566804931264132792478", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1316630754048725301414684727" }, { "type": "redeemMasset", - "inputQty": "598496317929003627315", + "inputQty": "156236851005779523665920", "expectedQtys": [ - "78986095762938939214", - "321699917604596493502", - "198581634368634776898" + "116390261538890012570880", + "24259851315142947710842", + "16426106546335956119701" + ], + "redemptionFee": "46871055301733857099", + "reserves": [ + "981015676356722643652146693", + "204478399924261005611735383", + "138450311996910695951955017" ], - "redemptionFee": "179548895378701088", + "mAssetSupply": "1316474564068774823624875906" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "10018159052389440242581504", + "expectedQty": "9777051257220198605122190", + "swapFee": "6010895431433664145548", "reserves": [ - "17040078613137826465541452", - "69401985664347735380644129", - "42841042187005570329560690" + "981015676356722643652146693", + "194701348667040807006613193", + "138450311996910695951955017" ], - "mAssetSupply": "129077968488162230507866251" + "mAssetSupply": "1306462415911816817046439950" }, { "type": "redeemMasset", - "inputQty": "2368907774202746608025", + "inputQty": "12245906725023832473", "expectedQtys": [ - "312634799415665935518", - "1273320174150700075518", - "786005800499427330298" + "9192627582882333242", + "1824452994296704829", + "1297351497631594847" ], - "redemptionFee": "710672332260823982", + "redemptionFee": "3673772017507149", "reserves": [ - "17039765978338410799605934", - "69400712344173584680568611", - "42840256181205070902230392" + "981015667164095060769813451", + "194701346842587812709908364", + "138450310699559198320360170" ], - "mAssetSupply": "129075600291060360022082208" + "mAssetSupply": "1306462403669583864040114626" }, { "type": "redeemBassets", "inputQtys": [ - "21469580729009947279360", - "14380045093897796321280", - "27324597502269122936832" + "61603921193653753610240", + "36262038026966374809600", + "37623040126253126385664" ], - "expectedQty": "63429272260371639297080", - "swapFee": "38080411603184894514", + "expectedQty": "137017914782654813460821", + "swapFee": "82260104932552419528", "reserves": [ - "17018296397609400852326574", - "69386332299079686884247331", - "42812931583702801779293560" + "980954063242901407016203211", + "194665084804560846335098764", + "138412687659432945193974506" ], - "mAssetSupply": "129012171018799988382785128" + "mAssetSupply": "1306325385754801209226653805" }, { "type": "mintMulti", "inputQtys": [ - "68435910809986069954560", - "29753162320000076218368", - "48875507272492121063424" + "37346356433548669353984", + "107049500775754850369536", + "100685119773805780140032" ], - "expectedQty": "148036842325542866333850", + "expectedQty": "251941174738293227023937", "reserves": [ - "17086732308419386922281134", - "69416085461399686960465699", - "42861807090975293900356984" + "980991409599334955685557195", + "194772134305336601185468300", + "138513372779206750974114538" ], - "mAssetSupply": "129160207861125531249118978" + "mAssetSupply": "1306577326929539502453677742" }, { - "type": "mintMulti", - "inputQtys": [ - "4449893491278416445440", - "3402690336161201127424", - "3619166325062331531264" + "type": "redeemMasset", + "inputQty": "11545724064848614", + "expectedQtys": [ + "8666045258103466", + "1720610511356915", + "1223622496192320" ], - "expectedQty": "11524575841601983383885", + "redemptionFee": "3463717219454", "reserves": [ - "17091182201910665338726574", - "69419488151735848161593123", - "42865426257300356231888248" + "980991409590668910427453729", + "194772134303615990674111385", + "138513372777983128477922218" ], - "mAssetSupply": "129171732436967133232502863" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "27598682031896716", - "expectedQty": "27557240774592970", - "reserves": [ - "17091182201910665338726574", - "69419488151735848161593123", - "42865426284899038263784964" - ] + "mAssetSupply": "1306577326917997242106048582" }, { "type": "mintMulti", "inputQtys": [ - "5752217509665400946688", - "5823992426860644401152", - "1370878324208541106176" + "4606990422025487515648", + "8193881422451344146432", + "6838608295162405715968" ], - "expectedQty": "13011100015917242179809", + "expectedQty": "20087685693354618311257", "reserves": [ - "17096934419420330739673262", - "69425312144162708805994275", - "42866797163223246804891140" + "980996016581090935914969377", + "194780328185038442018257817", + "138520211386278290883638186" ], - "mAssetSupply": "129184743564540291249275642" + "mAssetSupply": "1306597414603690596724359839" }, { - "type": "redeemBassets", - "inputQtys": [ - "18466982103520812990464", - "33365715618389133623296", - "20882533682306506293248" - ], - "expectedQty": "72801396713363244320825", - "swapFee": "43707062265377172896", + "type": "redeem", + "inputIndex": 2, + "inputQty": "779069971324709665505280", + "expectedQty": "742511851579941982751161", + "swapFee": "467441982794825799303", "reserves": [ - "17078467437316809926682798", - "69391946428544319672370979", - "42845914629540940298597892" + "980996016581090935914969377", + "194780328185038442018257817", + "137777699534698348900887025" ], - "mAssetSupply": "129111942167826928004954817" + "mAssetSupply": "1305818812074348681884653862" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "49981106620754970017792", - "12838606723340583305216", - "90819246620990498668544" + "24160348672179216318464", + "371486639619337351069696", + "105472104548751552544768" ], - "expectedQty": "154319032291008050705754", + "expectedQty": "515291734110548974601378", + "swapFee": "309360656860445652152", "reserves": [ - "17128448543937564896700590", - "69404785035267660255676195", - "42936733876161930797266436" + "980971856232418756698650913", + "194408841545419104667188121", + "137672227430149597348342257" ], - "mAssetSupply": "129266261200117936055660571" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "18943369699387462647808", - "expectedQty": "19054576300639278511808", - "swapFee": "11366021819632477588", - "reserves": [ - "17128448543937564896700590", - "69385730458967020977164387", - "42936733876161930797266436" - ], - "mAssetSupply": "129247329196440368225490351" + "mAssetSupply": "1305303520340238132910052484" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "81276418473285697536", - "expectedQty": "81350389612014561330", - "swapFee": "48765851083971418", + "inputQty": "1485576949837596284944384", + "expectedQty": "1414662754216939506505464", + "swapFee": "891346169902557770966", "reserves": [ - "17128448543937564896700590", - "69385730458967020977164387", - "42936652525772318782705106" + "980971856232418756698650913", + "194408841545419104667188121", + "136257564675932657841836793" ], - "mAssetSupply": "129247247968787746023764233" + "mAssetSupply": "1303818834736570439182879066" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "114899428167444987904", - "115238554865321328640", - "2991090983403059712" + "44340396359914672", + "10797505881042650", + "37293382637722792" ], - "expectedQty": "234445813024183067972", - "swapFee": "140751938977896578", + "expectedQty": "93687075641103196", "reserves": [ - "17128333644509397451712686", - "69385615220412155655835747", - "42936649534681335379645394" + "980971856276759153058565585", + "194408841556216610548230771", + "136257564713226040479559585" ], - "mAssetSupply": "129247013522974721840696261" + "mAssetSupply": "1303818834830257514823982262" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "10330769467112833024", - "outputIndex": 1, - "expectedQty": "10375724908295539246", - "swapFee": "6189109608597778", + "inputIndex": 1, + "inputQty": "960020165159400467595264", + "outputIndex": 0, + "expectedQty": "1003967163415147405526499", + "swapFee": "590728973896952751995", "reserves": [ - "17128333644509397451712686", - "69385604844687247360296501", - "42936659865450802492478418" + "979967889113344005653039086", + "195368861721376011015826035", + "136257564713226040479559585" ], - "mAssetSupply": "129247013529163831449294039", + "mAssetSupply": "1303819425559231411776734257", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "50896876537342181376", - "5107353725099101184", - "47737678531163676672" + "4686915945951956953989120", + "5837318295043207017267200", + "10015465785085460610023424" ], - "expectedQty": "104550619906621402210", + "hardLimitError": true + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "6972682451970055817134080", + "outputIndex": 2, + "hardLimitError": true + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "23148817401716991160483840", + "outputIndex": 0, + "expectedQty": "24538740923580895030323399", + "swapFee": "14477662988829515039657", "reserves": [ - "17128384541385934793894062", - "69385609952040972459397685", - "42936707603129333656155090" + "955429148189763110622715687", + "195368861721376011015826035", + "159406382114943031640043425" ], - "mAssetSupply": "129247118079783738070696249" + "mAssetSupply": "1303833903222220241291773914", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 2, - "inputQty": "440437149395083526144", - "expectedQty": "440837991331538057483", - "swapFee": "264262289637050115", + "inputQty": "6851087509446136145379328", + "expectedQty": "6612761525690791694681611", + "swapFee": "4110652505667681687227", "reserves": [ - "17128384541385934793894062", - "69385609952040972459397685", - "42936266765138002118097607" + "955429148189763110622715687", + "195368861721376011015826035", + "152793620589252239945361814" ], - "mAssetSupply": "129246677906896632624220220" + "mAssetSupply": "1296986926365279772828081813" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "787256050665379007037440", - "expectedQty": "782151861101956852827124", - "reserves": [ - "17128384541385934793894062", - "70172866002706351466435125", - "42936266765138002118097607" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "202786153110651520", - "159107028838247936", - "167014838791721536" - ], - "expectedQty": "531325099672161066", + "inputQty": "3964424643510556164096", + "outputIndex": 2, + "expectedQty": "3907971809409948892595", + "swapFee": "2433094726814325823", "reserves": [ - "17128384744172087904545582", - "70172866161813380304683061", - "42936266932152840909819143" + "955429148189763110622715687", + "195372826146019521571990131", + "152789712617442829996469219" ], - "mAssetSupply": "130028830299323689149208410" + "mAssetSupply": "1296986928798374499642407636", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "102481595619718012600320", - "60078093402332461006848", - "68666956411602219302912" + "type": "redeemMasset", + "inputQty": "79722936157344067118694", + "expectedQtys": [ + "58710511577361043076321", + "12005535515721378908304", + "9388830358089923227521" ], - "expectedQty": "232611872687158465913412", - "swapFee": "139650914160791554480", + "redemptionFee": "23916880847203220135", "reserves": [ - "17025903148552369891945262", - "70112788068411047843676213", - "42867599975741238690516231" + "955370437678185749579639366", + "195360820610503800193081827", + "152780323787084740073241698" ], - "mAssetSupply": "129796218426636530683294998" + "mAssetSupply": "1296907229779098002778509077" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "2272431247105180915728384", - "outputIndex": 2, - "expectedQty": "2309551362727342105824662", - "swapFee": "1385546222259303188452", + "inputQty": "115178372174904", + "expectedQty": "113160858811268", "reserves": [ - "19298334395657550807673646", - "70112788068411047843676213", - "40558048613013896584691569" - ], - "mAssetSupply": "129797603972858789986483450", - "hardLimitError": false, - "insufficientLiquidityError": false + "955370437678300927951814270", + "195360820610503800193081827", + "152780323787084740073241698" + ] }, { "type": "redeemBassets", "inputQtys": [ - "625690445714284783599616", - "729118521868249286574080", - "88315955279071413272576" + "18278432365079783387693056", + "2516650948157983669878784", + "527952794038399039176704" ], - "expectedQty": "1447536126136764035306582", - "swapFee": "869043101542984211710", + "expectedQty": "21081810193210785090983572", + "swapFee": "12656680124000871577536", "reserves": [ - "18672643949943266024074030", - "69383669546542798557102133", - "40469732657734825171418993" + "937092005313221144564121214", + "192844169662345816523203043", + "152252370993046341034064994" ], - "mAssetSupply": "128350067846722025951176868" + "mAssetSupply": "1275825419586000378546336773" }, { - "type": "redeemMasset", - "inputQty": "339256572924160481689", - "expectedQtys": [ - "49340969233421272601", - "183340801312084054212", - "106938034019341173037" + "type": "redeemBassets", + "inputQtys": [ + "18669241288718135853056", + "19539040625121527070720", + "13202808123401309257728" ], - "redemptionFee": "101776971877248144", + "expectedQty": "52000685603913119852240", + "swapFee": "31219142848056705934", "reserves": [ - "18672594608974032602801429", - "69383486205741486473047921", - "40469625719700805830245956" + "937073336071932426428268158", + "192824630621720694996132323", + "152239168184922939724807266" ], - "mAssetSupply": "128349728691926073667943323" + "mAssetSupply": "1275773418900396465426484533" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3488444342359631727689728", - "expectedQty": "3425068925824761728897469", - "swapFee": "2093066605415779036613", + "type": "swap", + "inputIndex": 1, + "inputQty": "8380153624509928915861504", + "outputIndex": 0, + "expectedQty": "8698561572444135402822239", + "swapFee": "5135517124535898629971", "reserves": [ - "15247525683149270873903960", - "69383486205741486473047921", - "40469625719700805830245956" + "928374774499488291025445919", + "201204784246230623911993827", + "152239168184922939724807266" ], - "mAssetSupply": "124863377416171857719290208" + "mAssetSupply": "1275778554417521001325114504", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "574371777898068889", - "expectedQtys": [ - "70117606073279489", - "319068421648342494", - "186104508568432040" + "type": "redeemBassets", + "inputQtys": [ + "1381620538242649030656", + "1658539929291094491136", + "1894820899830639362048" ], - "redemptionFee": "172311533369420", + "expectedQty": "5010879182900273260054", + "swapFee": "3008332509245711382", "reserves": [ - "15247525613031664800624471", - "69383485886673064824705427", - "40469625533596297261813916" + "928373392878950048376415263", + "201203125706301332817502691", + "152237273364023109085445218" ], - "mAssetSupply": "124863376841972391354590739" + "mAssetSupply": "1275773543538338101051854450" }, { - "type": "redeemMasset", - "inputQty": "36190307352061634150", - "expectedQtys": [ - "4418005571006833931", - "20104024414374928466", - "11726166959914950294" - ], - "redemptionFee": "10857092205618490", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1642731136115780091904", + "expectedQty": "1609835731334484641233", + "swapFee": "985638681669468055", "reserves": [ - "15247521195026093793790540", - "69383465782648650449776961", - "40469613807429337346863622" + "928373392878950048376415263", + "201201515870569998332861458", + "152237273364023109085445218" ], - "mAssetSupply": "124863340662522131498575079" + "mAssetSupply": "1275771901792840666941230601" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "4375471409660633708232704", - "expectedQty": "4243039436638453889781774", - "swapFee": "2625282845796380224939", + "inputIndex": 1, + "inputQty": "2101348914170356660436992", + "expectedQty": "2058774269219080817643854", + "swapFee": "1260809348502213996262", "reserves": [ - "11004481758387639904008766", - "69383465782648650449776961", - "40469613807429337346863622" + "928373392878950048376415263", + "199142741601350917515217604", + "152237273364023109085445218" ], - "mAssetSupply": "120490494535707294170567314" + "mAssetSupply": "1273671813688018812494789871" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "11993361244930344747008", - "expectedQty": "11498337648745285172592", - "swapFee": "7196016746958206848", + "type": "swap", + "inputIndex": 2, + "inputQty": "16032456089442874090848256", + "outputIndex": 1, + "expectedQty": "16169699712743586944899013", + "swapFee": "9920479144869110702557", "reserves": [ - "10992983420738894618836174", - "69383465782648650449776961", - "40469613807429337346863622" + "928373392878950048376415263", + "182973041888607330570318591", + "168269729453465983176293474" ], - "mAssetSupply": "120478508370479110784027154" + "mAssetSupply": "1273681734167163681605492428", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "182038221847320094310", + "inputQty": "185545146105839668428", "expectedQtys": [ - "16604976595578102223", - "104804199310211974721", - "61129628271492490263" + "135201358117970287769", + "26646825460605994725", + "24505544995965241082" ], - "redemptionFee": "54611466554196028", + "redemptionFee": "55663543831751900", "reserves": [ - "10992966815762299040733951", - "69383360978449340237802240", - "40469552677801065854373359" + "928373257677591930406127494", + "182973015241781869964323866", + "168269704947920987211052392" ], - "mAssetSupply": "120478326386868730018128872" + "mAssetSupply": "1273681548677681119597575900" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "35003232222103896064", - "outputIndex": 1, - "expectedQty": "35232648451589450834", - "swapFee": "20936398652935115", - "reserves": [ - "10992966815762299040733951", - "69383325745800888648351406", - "40469587681033287958269423" + "type": "redeemBassets", + "inputQtys": [ + "80367775806448874815488", + "156702773888309545402368", + "164599943804863572344832" ], - "mAssetSupply": "120478326407805128671063987", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "55565905420766037409792", - "outputIndex": 0, - "expectedQty": "53091618677533978386896", - "swapFee": "33235241143553691790", + "expectedQty": "408849957137055993167210", + "swapFee": "245457248631412443366", "reserves": [ - "10939875197084765062347055", - "69383325745800888648351406", - "40525153586454053995679215" + "928292889901785481531312006", + "182816312467893560418921498", + "168105105004116123638707560" ], - "mAssetSupply": "120478359643046272224755777", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1273272698720544063604408690" }, { "type": "redeemMasset", - "inputQty": "8085452935330127885107", + "inputQty": "122682711552940814683340", "expectedQtys": [ - "733968408373086337950", - "4655004581665364321068", - "2718877678316725287860" + "89416291825165385883093", + "17609481795944056572283", + "16192448837929213175547" ], - "redemptionFee": "2425635880599038365", + "redemptionFee": "36804813465882244405", "reserves": [ - "10939141228676391976009105", - "69378670741219223284030338", - "40522434708775737270391355" + "928203473609960316145428913", + "182798702986097616362349215", + "168088912555278194425532013" ], - "mAssetSupply": "120470276615746822695909035" + "mAssetSupply": "1273150052813804588671969755" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "557121895136603945304064", - "expectedQty": "579876398745016595538938", - "reserves": [ - "11496263123812995921313169", - "69378670741219223284030338", - "40522434708775737270391355" - ] - }, - { - "type": "swap", "inputIndex": 1, - "inputQty": "704737749030002768216064", - "outputIndex": 0, - "expectedQty": "669353873097940431821417", - "swapFee": "418687272351204376187", + "inputQty": "5922004279468599669686272", + "expectedQty": "6060199170885193549769499", "reserves": [ - "10826909250715055489491752", - "70083408490249226052246402", - "40522434708775737270391355" - ], - "mAssetSupply": "121050571701764190495824160", - "hardLimitError": false, - "insufficientLiquidityError": false + "928203473609960316145428913", + "188720707265566216032035487", + "168088912555278194425532013" + ] }, { "type": "redeemBassets", "inputQtys": [ - "364753621647073428373504", - "401261611438463625723904", - "11156525199045116821504" + "2155670745981369188352", + "148347512381765877760", + "2189225892108456165376" ], - "expectedQty": "789574832237040837356126", - "swapFee": "474029316932383932773", + "expectedQty": "4524386960340938405910", + "swapFee": "2716261933364581792", "reserves": [ - "10462155629067982061118248", - "69682146878810762426522498", - "40511278183576692153569851" + "928201317939214334776240561", + "188720558918053834266157727", + "168086723329386085969366637" ], - "mAssetSupply": "120260996869527149658468034" + "mAssetSupply": "1279205727597729441283333344" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "48926681520481517568", - "156715659911889027072", - "61875585602010726400" + "812717916144663275765760", + "1089273445460529792417792", + "354958303200761662668800" ], - "expectedQty": "267927992575033267746", - "swapFee": "160853307529537683", + "expectedQty": "2278440409443468170068766", "reserves": [ - "10462106702386461579600680", - "69681990163150850537495426", - "40511216307991090142843451" + "929014035855358998052006321", + "189809832363514364058575519", + "168441681632586847632035437" ], - "mAssetSupply": "120260728941534574625200288" + "mAssetSupply": "1281484168007172909453402110" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "908620672885316663640064", - "outputIndex": 0, - "expectedQty": "860204244428082178944386", - "swapFee": "543248703237640710106", + "type": "redeem", + "inputIndex": 1, + "inputQty": "31203668411139769585631232", + "expectedQty": "30363060250870187649758530", + "swapFee": "18722201046683861751378", "reserves": [ - "9601902457958379400656294", - "69681990163150850537495426", - "41419836980876406806483515" + "929014035855358998052006321", + "159446772112644176408816989", + "168441681632586847632035437" ], - "mAssetSupply": "120261272190237812265910394", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1250299221797079823729522256" }, { "type": "redeemMasset", - "inputQty": "3576194968984019353", + "inputQty": "1776595010226527742512332", "expectedQtys": [ - "285444957924150125", - "2071503312732137599", - "1231327195417617925" + "1319673344792874202034974", + "226495668471343610134636", + "239273023682519494660700" ], - "redemptionFee": "1072858490695205", + "redemptionFee": "532978503067958322753", "reserves": [ - "9601902172513421476506169", - "69681988091647537805357827", - "41419835749549211388865590" + "927694362510566123849971347", + "159220276444172832798682353", + "168202408608904328137374737" ], - "mAssetSupply": "120261268615115701772586246" + "mAssetSupply": "1248523159765356363945332677" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "48142929950999714988032", - "expectedQty": "45528736878487333230978", - "swapFee": "28885757970599828992", + "type": "mintMulti", + "inputQtys": [ + "35114384487878796247040", + "24064278947043647422464", + "23304730570156041830400" + ], + "expectedQty": "83324339359782740585240", "reserves": [ - "9556373435634934143275191", - "69681988091647537805357827", - "41419835749549211388865590" + "927729476895054002646218387", + "159244340723119876446104817", + "168225713339474484179205137" ], - "mAssetSupply": "120213154570922672657427206" + "mAssetSupply": "1248606484104716146685917917" }, { "type": "redeemBassets", "inputQtys": [ - "550746398232782307328", - "539751912890582106112", - "603471303476507443200" + "8284071407087566232485888", + "21155492539141726907924480", + "6700345733420018179244032" ], - "expectedQty": "1716523543749527529342", - "swapFee": "1030532445717146805", - "reserves": [ - "9555822689236701360967863", - "69681448339734647223251715", - "41419232278245734881422390" - ], - "mAssetSupply": "120211438047378923129897864" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "15040225976700096217088", - "expectedQty": "15897035832018940349178", - "reserves": [ - "9570862915213401457184951", - "69681448339734647223251715", - "41419232278245734881422390" - ] + "hardLimitError": true }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "71863270195718373376", - "expectedQty": "71559513226145036882", + "inputQty": "1163401136380833442037760", + "expectedQty": "1129160437891129555261319", + "swapFee": "698040681828500065222", "reserves": [ - "9570862915213401457184951", - "69681448339734647223251715", - "41419304141515930599795766" - ] + "927729476895054002646218387", + "159244340723119876446104817", + "167096552901583354623943818" + ], + "mAssetSupply": "1247443781009017141743945379" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3345367154928152215552", - "9317656884578332180480", - "4722190810423893688320" + "2166316861656585662889984", + "1806782162108827662548992", + "545196440001776835362816" ], - "expectedQty": "17446781892166992295471", - "swapFee": "10474353747548724612", + "expectedQty": "4554085164986942306016535", "reserves": [ - "9567517548058473304969399", - "69672130682850068891071235", - "41414581950705506706107446" + "929895793756710588309108371", + "161051122885228704108653809", + "167641749341585131459306634" ], - "mAssetSupply": "120209959860832001222988453" + "mAssetSupply": "1251997866174004084049961914" }, { - "type": "redeemBassets", - "inputQtys": [ - "57882864856172847104", - "5870481697899564032", - "72929777543043072000" - ], - "expectedQty": "139599993423613923635", - "swapFee": "83810282223502455", + "type": "mint", + "inputIndex": 2, + "inputQty": "10514742262433875075530752", + "expectedQty": "10807606549879165023744399", "reserves": [ - "9567459665193617132122295", - "69672124812368370991507203", - "41414509020927963663035446" - ], - "mAssetSupply": "120209820260838577609064818" + "929895793756710588309108371", + "161051122885228704108653809", + "178156491604019006534837386" + ] }, { - "type": "redeemMasset", - "inputQty": "822276053774410019818700", - "expectedQtys": [ - "65425044586061501977228", - "476438054799219888846550", - "283204339921220362086462" + "type": "mintMulti", + "inputQtys": [ + "39209707298581225472", + "95924152569637371904", + "92466824526374436864" ], - "redemptionFee": "246682816132323005945", + "expectedQty": "232371911616076095102", "reserves": [ - "9502034620607555630145067", - "69195686757569151102660653", - "41131304681006743300948984" + "929895832966417886890333843", + "161051218809381273746025713", + "178156584070843532909274250" ], - "mAssetSupply": "119387790889880299912252063" + "mAssetSupply": "1262805705095794865149801415" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1024831578740014312325120", - "expectedQty": "1020343371670940728027614", + "inputIndex": 1, + "inputQty": "8058985961848460804096", + "expectedQty": "8314495772500157059957", "reserves": [ - "9502034620607555630145067", - "69195686757569151102660653", - "42156136259746757613274104" + "929895832966417886890333843", + "161059277795343122206829809", + "178156584070843532909274250" ] }, { "type": "mintMulti", "inputQtys": [ - "2526407421089633280", - "5471325153632223232", - "99231312177356944" + "48944243445231297495040", + "3816234576123128184832", + "22621731358234730561536" ], - "expectedQty": "8178669969847730730", + "expectedQty": "75247579904768892003859", "reserves": [ - "9502037147014976719778347", - "69195692228894304734883885", - "42156136358978069790631048" + "929944777209863118187828883", + "161063094029919245335014641", + "178179205802201767639835786" ], - "mAssetSupply": "120408142440221210488010407" + "mAssetSupply": "1262889267171472134198865231" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1601870245048941044301824", - "outputIndex": 1, - "expectedQty": "1611530246168885828848974", - "swapFee": "956552617046960970574", + "type": "mint", + "inputIndex": 0, + "inputQty": "5509996293030481896669184", + "expectedQty": "5414540086721853709530519", "reserves": [ - "9502037147014976719778347", - "67584161982725418906034911", - "43758006604027010834932872" - ], - "mAssetSupply": "120409098992838257448980981", - "hardLimitError": false, - "insufficientLiquidityError": false + "935454773502893600084498067", + "161063094029919245335014641", + "178179205802201767639835786" + ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "42565025756353650491392", - "expectedQty": "42090379809766100388292", + "inputQty": "6170947746658073855393792", + "expectedQty": "6361475954355211021021547", "reserves": [ - "9502037147014976719778347", - "67626727008481772556526303", - "43758006604027010834932872" + "935454773502893600084498067", + "167234041776577319190408433", + "178179205802201767639835786" ] }, { - "type": "redeemMasset", - "inputQty": "893834747719398297", - "expectedQtys": [ - "70490819103175325", - "501688564919182803", - "324618571798470949" + "type": "redeem", + "inputIndex": 1, + "inputQty": "252869988941604939890688", + "expectedQty": "245431893963805805941211", + "swapFee": "151721993364962963934", + "reserves": [ + "935454773502893600084498067", + "166988609882613513384467222", + "178179205802201767639835786" + ], + "mAssetSupply": "1274412564945600958952490543" + }, + { + "type": "mintMulti", + "inputQtys": [ + "691662977355876736", + "1041174591642468352", + "871426473561862784" + ], + "expectedQty": "2646316595508625861", + "reserves": [ + "935454774194556577440374803", + "166988610923788105026935574", + "178179206673628241201698570" ], - "redemptionFee": "268150424315819", + "mAssetSupply": "1274412567591917554461116404" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "48493910171221868544", + "expectedQty": "47065305554347683129", + "swapFee": "29096346102733121", "reserves": [ - "9502037076524157616603022", - "67626726506793207637343500", - "43758006279408439036461923" + "935454774194556577440374803", + "166988563858482550679252445", + "178179206673628241201698570" ], - "mAssetSupply": "120451188479081426254286795" + "mAssetSupply": "1274412519127103729341980981" }, { "type": "redeemMasset", - "inputQty": "116396128708590226846515", + "inputQty": "74175531132349212262", "expectedQtys": [ - "9179390792360310709158", - "65330428161305891320377", - "42272181922508128576701" + "54430600240232613189", + "9716437410774518729", + "10367578890090698403" ], - "redemptionFee": "34918838612577068053", + "redemptionFee": "22252659339704763", "reserves": [ - "9492857685731797305893864", - "67561396078631901746023123", - "43715734097485930907885222" + "935454719763956337207761614", + "166988554142045139904733716", + "178179196306049351111000167" ], - "mAssetSupply": "120334827269211448604508333" + "mAssetSupply": "1274412444973825256332473482" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "145216397843192544", - "45863893104739632", - "91257986243000512" + "2733602170740157634838528", + "2427365240999197926227968", + "3862316203383099093942272" ], - "expectedQty": "289633844920444985", - "swapFee": "173884637734907", + "expectedQty": "9147500498420044430208188", "reserves": [ - "9492857540515399462701320", - "67561396032768008641283491", - "43715734006227944664884710" + "938188321934696494842600142", + "169415919383044337830961684", + "182041512509432450204942439" ], - "mAssetSupply": "120334826979577603684063348" + "mAssetSupply": "1283559945472245300762681670" }, { "type": "redeemBassets", "inputQtys": [ - "602509954906342686720", - "897901685566324211712", - "139779492714971807744" + "243542155242394288128", + "37638546332792864768", + "304481613389967851520" ], - "expectedQty": "1663782416445256617528", - "swapFee": "998868771129831869", + "expectedQty": "590338979360280626710", + "swapFee": "354416037238511482", "reserves": [ - "9492255030560493120014600", - "67560498131082442317071779", - "43715594226735229693076966" + "938188078392541252448312014", + "169415881744498005038096916", + "182041208027819060237090919" ], - "mAssetSupply": "120333163197161158427445820" + "mAssetSupply": "1283559355133265940482054960" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "154104334523211811127296", - "outputIndex": 0, - "expectedQty": "143941293954581250552021", - "swapFee": "91429610160557171077", - "reserves": [ - "9348313736605911869462579", - "67714602465605654128199075", - "43715594226735229693076966" + "type": "redeemMasset", + "inputQty": "4779769102503688273920", + "expectedQtys": [ + "3492613781195727396795", + "630688299032817392106", + "677688884080509803266" ], - "mAssetSupply": "120333254626771318984616897", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "265293075660095147212800", - "expectedQty": "250012690955280780259903", - "swapFee": "159175845396057088327", + "redemptionFee": "1433930730751106482", "reserves": [ - "9098301045650631089202676", - "67714602465605654128199075", - "43715594226735229693076966" + "938184585778760056720915219", + "169415251056198972220704810", + "182040530338934979727287653" ], - "mAssetSupply": "120068120726956619894492424" + "mAssetSupply": "1283554576798094167544887522" }, { "type": "redeemBassets", "inputQtys": [ - "827231689901897425092608", - "1997609935103402478403584", - "762720732284733093838848" + "20328063110163193659392", + "9286343374660111958016", + "13003780320908625838080" ], - "expectedQty": "3614139568692497985417657", - "swapFee": "2169785612583048620422", + "expectedQty": "42875324323208254121537", + "swapFee": "25740638977311339276", "reserves": [ - "8271069355748733664110068", - "65716992530502251649795491", - "42952873494450496599238118" + "938164257715649893527255827", + "169405964712824312108746794", + "182027526558614071101449573" ], - "mAssetSupply": "116453981158264121909074767" + "mAssetSupply": "1283511701473770959290765985" }, { "type": "mintMulti", "inputQtys": [ - "134489274084818017058816", - "134513071579171823550464", - "44336383981884918464512" + "310574324170779388805120", + "331865521963745870348288", + "891144654139304542470144" ], - "expectedQty": "320848710801150930815895", + "expectedQty": "1560210604650227929012968", "reserves": [ - "8405558629833551681168884", - "65851505602081423473345955", - "42997209878432381517702630" + "938474832039820672916060947", + "169737830234788057979095082", + "182918671212753375643919717" ], - "mAssetSupply": "116774829869065272839890662" + "mAssetSupply": "1285071912078421187219778953" }, { "type": "mint", "inputIndex": 2, - "inputQty": "574524706761979592704", - "expectedQty": "571126295034757554675", + "inputQty": "6209805372896744448", + "expectedQty": "6363642480699694292", "reserves": [ - "8405558629833551681168884", - "65851505602081423473345955", - "42997784403139143497295334" + "938474832039820672916060947", + "169737830234788057979095082", + "182918677422558748540664165" ] }, { - "type": "redeemMasset", - "inputQty": "766008600784521186508", - "expectedQtys": [ - "55121185891242163376", - "431834841842318221532", - "281966847341343047538" - ], - "redemptionFee": "229802580235356355", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3388445412492836931108864", + "expectedQty": "3443018590302138622415654", + "swapFee": "2033067247495702158665", "reserves": [ - "8405503508647660439005508", - "65851073767239581155124423", - "42997502436291802154247796" + "935031813449518534293645293", + "169737830234788057979095082", + "182918677422558748540664165" ], - "mAssetSupply": "116774635216562103311615184" + "mAssetSupply": "1281685506096818326690523046" }, { - "type": "mintMulti", - "inputQtys": [ - "43454664572621", - "163885259338148", - "33272146176004" - ], - "expectedQty": "241413639707959", + "type": "swap", + "inputIndex": 1, + "inputQty": "61338839424413204480000", + "outputIndex": 0, + "expectedQty": "64099170186342963687052", + "swapFee": "37851829557851206019", "reserves": [ - "8405503508691115103578129", - "65851073767403466414462571", - "42997502436325074300423800" + "934967714279332191329958241", + "169799169074212471183575082", + "182918677422558748540664165" ], - "mAssetSupply": "116774635216803516951323143" + "mAssetSupply": "1281685543948647884541729065", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "197684418145542242304", - "166315583793770168320", - "290498302913318518784" - ], - "expectedQty": "664415105522328221172", + "type": "mint", + "inputIndex": 2, + "inputQty": "2871940655263626297344", + "expectedQty": "2942423276142364524086", "reserves": [ - "8405701193109260645820433", - "65851240082987260184630891", - "42997792934627987618942584" - ], - "mAssetSupply": "116775299631909039279544315" + "934967714279332191329958241", + "169799169074212471183575082", + "182921549363214012166961509" + ] }, { "type": "mintMulti", "inputQtys": [ - "1973566293709030558793728", - "6898379142922043941453824", - "10577638678826557303160832" + "4400151824004071748009984", + "3047245436725749226668032", + "10624998821388563804848128" ], - "expectedQty": "19432040674023212261713229", + "expectedQty": "18332603328441246779462343", "reserves": [ - "10379267486818291204614161", - "72749619225909304126084715", - "53575431613454544922103416" + "939367866103336263077968225", + "172846414510938220410243114", + "193546548184602575971809637" ], - "mAssetSupply": "136207340305932251541257544" + "mAssetSupply": "1300021089700365273685715494" }, { "type": "redeemMasset", - "inputQty": "110642322883149442318336", + "inputQty": "1256575158153598010916864", "expectedQtys": [ - "8428633479731440819632", - "59077374874860294147502", - "43506699982606467325913" + "907702358342288762623291", + "167019869152441516098803", + "187022214167209983384714" ], - "redemptionFee": "33192696864944832695", + "redemptionFee": "376972547446079403275", "reserves": [ - "10370838853338559763794529", - "72690541851034443831937213", - "53531924913471938454777503" + "938460163744993974315344934", + "172679394641785778894144311", + "193359525970435365988424923" ], - "mAssetSupply": "136096731175745967043771903" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "6904302498790411075584", - "expectedQty": "6830755297775169604273", - "reserves": [ - "10370838853338559763794529", - "72697446153533234243012797", - "53531924913471938454777503" - ] + "mAssetSupply": "1298764891514759121754201905" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2635479481388613909872640", - "outputIndex": 0, - "expectedQty": "2409060642773435113311802", - "swapFee": "1564062915912955507196", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5999487145839584853622784", + "expectedQty": "6090646226411486084444345", + "swapFee": "3599692287503750912173", "reserves": [ - "7961778210565124650482727", - "75332925634921848152885437", - "53531924913471938454777503" + "932369517518582488230900589", + "172679394641785778894144311", + "193359525970435365988424923" ], - "mAssetSupply": "136105125993959655168883372", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1292769004061207040651491294" }, { "type": "mintMulti", "inputQtys": [ - "132937294360720064512", - "180658386975830245376", - "152068909404841738240" + "836999121405716463616", + "1210688345854894931968", + "35391306518189613056" ], - "expectedQty": "475732407261865369786", + "expectedQty": "2103536456167923726738", "reserves": [ - "7961911147859485370547239", - "75333106293308823983130813", - "53532076982381343296515743" + "932370354517703893947364205", + "172680605330131633789076279", + "193359561361741884178037979" ], - "mAssetSupply": "136105601726366917034253158" + "mAssetSupply": "1292771107597663208575218032" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "31013802466865993220096", - "outputIndex": 1, - "expectedQty": "31176497743686748733553", - "swapFee": "18445590847382302273", + "type": "redeemMasset", + "inputQty": "13049275128201284157440", + "expectedQtys": [ + "9408554367291948166044", + "1742520936614118654868", + "1951192395481862499732" + ], + "redemptionFee": "3914782538460385247", "reserves": [ - "7961911147859485370547239", - "75301929795565137234397260", - "53563090784848209289735839" + "932360945963336601999198161", + "172678862809195019670421411", + "193357610169346402315538247" ], - "mAssetSupply": "136105620171957764416555431", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1292758062237317545751445839" }, { - "type": "redeemBassets", - "inputQtys": [ - "505770633700381940514816", - "3841947642820809868705792", - "4081850317675324946513920" + "type": "redeemMasset", + "inputQty": "135259760459142240665600", + "expectedQtys": [ + "97522567152903678492624", + "18061766815851774843313", + "20224710831041782340066" ], - "expectedQty": "8391668605434632320004831", - "swapFee": "5038023977647367812690", + "redemptionFee": "40577928137742672199", "reserves": [ - "7456140514159103430032423", - "71459982152744327365691468", - "49481240467172884343221919" + "932263423396183698320705537", + "172660801042379167895578098", + "193337385458515360533198181" ], - "mAssetSupply": "127713951566523132096550600" + "mAssetSupply": "1292622843054786541253452438" }, { - "type": "redeemMasset", - "inputQty": "116180484292015449702", - "expectedQtys": [ - "6780763791718391649", - "64987141620790482815", - "44999232926467511575" - ], - "redemptionFee": "34854145287604634", + "type": "redeem", + "inputIndex": 1, + "inputQty": "295667344644148815724544", + "expectedQty": "287714455542061748947229", + "swapFee": "177400406786489289434", "reserves": [ - "7456133733395311711640774", - "71459917165602706575208653", - "49481195467939957875710344" + "932263423396183698320705537", + "172373086586837106146630869", + "193337385458515360533198181" ], - "mAssetSupply": "127713835420892985368705532" + "mAssetSupply": "1292327353110549178927017328" }, { "type": "mint", "inputIndex": 0, - "inputQty": "52859354708778646765568", - "expectedQty": "58441690986934050880879", + "inputQty": "2803237006050273026637824", + "expectedQty": "2759682175863898770933210", "reserves": [ - "7508993088104090358406342", - "71459917165602706575208653", - "49481195467939957875710344" + "935066660402233971347343361", + "172373086586837106146630869", + "193337385458515360533198181" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "297396975656376526176256", - "expectedQty": "327428814914962131977797", + "type": "swap", + "inputIndex": 2, + "inputQty": "410797524135419968487424", + "outputIndex": 0, + "expectedQty": "426007049702762581345382", + "swapFee": "251782464767032246306", "reserves": [ - "7806390063760466884582598", - "71459917165602706575208653", - "49481195467939957875710344" - ] + "934640653352531208765997979", + "172373086586837106146630869", + "193748182982650780501685605" + ], + "mAssetSupply": "1295087287068877844730196844", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "796374392268009984", - "expectedQtys": [ - "48516458762544515", - "444121046478903238", - "307524010436813826" + "type": "mintMulti", + "inputQtys": [ + "175671482510446100480", + "176766293195555602432", + "176153221067810406400" ], - "redemptionFee": "238912317680402", + "expectedQty": "534451318738209383453", "reserves": [ - "7806390015244008122038083", - "71459916721481660096305415", - "49481195160415947438896518" + "934640829024013719212098459", + "172373263353130301702233301", + "193748359135871848312092005" ], - "mAssetSupply": "128099705130659401601234626" + "mAssetSupply": "1295087821520196582939580297" }, { - "type": "redeemMasset", - "inputQty": "26333508408080629760", - "expectedQtys": [ - "1604281336966696124", - "14685637088795126955", - "10168817823814665756" - ], - "redemptionFee": "7900052522424188", + "type": "redeem", + "inputIndex": 1, + "inputQty": "33667373612480922065567744", + "expectedQty": "32538467525009595136147463", + "swapFee": "20200424167488553239340", "reserves": [ - "7806388410962671155341959", - "71459902035844571301178460", - "49481184991598123624230762" + "934640829024013719212098459", + "139834795828120706566085838", + "193748359135871848312092005" ], - "mAssetSupply": "128099678805051046043029054" + "mAssetSupply": "1261440648331883149427251893" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "318401033589469937664", - "outputIndex": 1, - "expectedQty": "320167587020295201006", - "swapFee": "189503057244723688", + "type": "mintMulti", + "inputQtys": [ + "119922885218681648", + "108931680777492816", + "84028382298343248" + ], + "expectedQty": "317211778609995503", "reserves": [ - "7806388410962671155341959", - "71459581868257551005977454", - "49481503392631713094168426" + "934640829143936604430780107", + "139834795937052387343578654", + "193748359219900230610435253" ], - "mAssetSupply": "128099678994554103287752742", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1261440648649094928037247396" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "22698728725335896064", - "expectedQty": "24905646556341969517", + "type": "mintMulti", + "inputQtys": [ + "4226361802147343368192", + "3602060052908192301056", + "9289971389387919851520" + ], + "expectedQty": "17403773778182050327232", "reserves": [ - "7806411109691396491238023", - "71459581868257551005977454", - "49481503392631713094168426" - ] + "934645055505738751774148299", + "139838397997105295535879710", + "193757649191289618530286773" + ], + "mAssetSupply": "1261458052422873110087574628" }, { "type": "redeemMasset", - "inputQty": "93674260054830226813747", + "inputQty": "179884286389097003063705", "expectedQtys": [ - "5706807933126591061201", - "52239896538039579706277", - "36173016272936733638391" + "133240673462166661077065", + "19935014062555435007522", + "27621608347057849215638" ], - "redemptionFee": "28102278016449068044", + "redemptionFee": "53965285916729100919", "reserves": [ - "7800704301758269900176822", - "71407341971719511426271177", - "49445330376358776360530035" + "934511814832276585113071234", + "139818462983042740100872188", + "193730027582942560681071135" ], - "mAssetSupply": "128006057742423845851976556" + "mAssetSupply": "1261278222101769929813611842" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1736046127950467170304", - "outputIndex": 0, - "expectedQty": "1558915525952155376789", - "swapFee": "1026926611306073732", + "type": "redeemBassets", + "inputQtys": [ + "183614917930905719799808", + "34201942607030952919040", + "109479001979505627627520" + ], + "expectedQty": "327862096410252666590925", + "swapFee": "196835359061588553086", "reserves": [ - "7799145386232317744800033", - "71409078017847461893441481", - "49445330376358776360530035" + "934328199914345679393271426", + "139784261040435709147953148", + "193620548580963055053443615" ], - "mAssetSupply": "128006058769350457158050288", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1260950360005359677147020917" }, { - "type": "redeemMasset", - "inputQty": "3010821807907762549555", - "expectedQtys": [ - "183388135581193763078", - "1679104188054043261825", - "1162651354970714630426" + "type": "redeemBassets", + "inputQtys": [ + "9779791006265900678512640", + "1661279099851684316184576", + "956640958594552350900224" ], - "redemptionFee": "903246542372328764", + "expectedQty": "12311111617032392294319479", + "swapFee": "7391101631198154269153", "reserves": [ - "7798961998096736551036955", - "71407398913659407850179656", - "49444167725003805645899609" + "924548408908079778714758786", + "138122981940584024831768572", + "192663907622368502702543391" ], - "mAssetSupply": "128003048850789091767829497" + "mAssetSupply": "1248639248388327284852701438" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "4573962988066000695459840", - "expectedQty": "4506923495623321313629401", + "type": "redeemBassets", + "inputQtys": [ + "194232613573607693484032", + "93019677715364828938240", + "358439431063461456510976" + ], + "expectedQty": "654117317574558531806872", + "swapFee": "392706014153227055317", "reserves": [ - "7798961998096736551036955", - "75981361901725408545639496", - "49444167725003805645899609" - ] + "924354176294506171021274754", + "138029962262868660002830332", + "192305468191305041246032415" + ], + "mAssetSupply": "1247985131070752726320894566" }, { "type": "redeemMasset", - "inputQty": "1694237482041263469363", + "inputQty": "466759757152240271360", "expectedQtys": [ - "99685552084617043268", - "971186166974913895558", - "631990405676326168396" - ], - "redemptionFee": "508271244612379040", - "reserves": [ - "7798862312544651933993687", - "75980390715558433631743938", - "49443535734598129319731213" + "345614610873256189972", + "51609191497970105970", + "71902720041978198320" ], - "mAssetSupply": "132508278617201616430368575" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "209332288079636685914112", - "outputIndex": 2, - "expectedQty": "207626616660717638713605", - "swapFee": "123687210624816082218", + "redemptionFee": "140027927145672081", "reserves": [ - "7798862312544651933993687", - "76189723003638070317658050", - "49235909117937411681017608" + "924353830679895297765084782", + "138029910653677162032724362", + "192305396288584999267834095" ], - "mAssetSupply": "132508402304412241246450793", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1247984664451023501226295287" }, { "type": "redeemMasset", - "inputQty": "6764457183507058052300", + "inputQty": "154951506306668511939788", "expectedQtys": [ - "398006788664306861141", - "3888262898695384290793", - "2512703172548250779699" + "114734622545741256160808", + "17132843693873696676249", + "23869741569038629170002" ], - "redemptionFee": "2029337155052117415", + "redemptionFee": "46485451892000553581", "reserves": [ - "7798464305755987627132546", - "76185834740739374933367257", - "49233396414764863430237909" + "924239096057349556508923974", + "138012777809983288336048113", + "192281526547015960638664093" ], - "mAssetSupply": "132501639876565889240515908" + "mAssetSupply": "1247829759430168724714909080" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2852274236631219557105664", - "outputIndex": 2, - "expectedQty": "2826024795353384384423558", - "swapFee": "1684659395567312610323", + "type": "mintMulti", + "inputQtys": [ + "34627975517701203296256", + "513909878530264958763008", + "496249852192438578315264" + ], + "expectedQty": "1077033585021483617244258", "reserves": [ - "7798464305755987627132546", - "79038108977370594490472921", - "46407371619411479045814351" + "924273724032867257712220230", + "138526687688513553294811121", + "192777776399208399216979357" ], - "mAssetSupply": "132503324535961456553126231", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1248906793015190208332153338" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "6925834081767740407808", - "expectedQty": "6245643401546010208429", - "swapFee": "4155500449060644244", + "inputQty": "7894472440492220416", + "expectedQty": "7750880966708750364", "reserves": [ - "7792218662354441616924117", - "79038108977370594490472921", - "46407371619411479045814351" - ], - "mAssetSupply": "132496402857380137873362667" + "924273731927339698204440646", + "138526687688513553294811121", + "192777776399208399216979357" + ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "826337914941289200091136", - "outputIndex": 1, - "expectedQty": "833619868419308228866597", - "swapFee": "492459859782082698916", + "inputQty": "467007666848838914670592", + "outputIndex": 0, + "expectedQty": "485898233014887209707311", + "swapFee": "286418806011976869342", "reserves": [ - "7792218662354441616924117", - "78204489108951286261606324", - "47233709534352768245905487" + "923787833694324810994733335", + "138526687688513553294811121", + "193244784066057238131649949" ], - "mAssetSupply": "132496895317239919956061583", + "mAssetSupply": "1248907087184877187017773044", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "61654402904452595712", - "141301378745508298752", - "122017936512129744896" - ], - "expectedQty": "328513237022417100985", + "type": "redeem", + "inputIndex": 2, + "inputQty": "2736672418417709416448", + "expectedQty": "2675937994013524279974", + "swapFee": "1642003451050625649", "reserves": [ - "7792280316757346069519829", - "78204630410330031769905076", - "47233831552289280375650383" + "923787833694324810994733335", + "138526687688513553294811121", + "193242108128063224607369975" ], - "mAssetSupply": "132497223830476942373162568" + "mAssetSupply": "1248904352154462220358982245" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "870818972151925425831936", - "outputIndex": 1, - "expectedQty": "877945233654543949194230", - "swapFee": "518790317293785745080", + "type": "mint", + "inputIndex": 0, + "inputQty": "829845522668432392192", + "expectedQty": "814787950927679783918", "reserves": [ - "7792280316757346069519829", - "77326685176675487820710846", - "48104650524441205801482319" - ], - "mAssetSupply": "132497742620794236158907648", - "hardLimitError": false, - "insufficientLiquidityError": false + "923788663539847479427125527", + "138526687688513553294811121", + "193242108128063224607369975" + ] }, { "type": "swap", - "inputIndex": 1, - "inputQty": "235394590958488754585600", - "outputIndex": 0, - "expectedQty": "208576147727643298829367", - "swapFee": "139025559835331459918", + "inputIndex": 0, + "inputQty": "2201137656849510996901888", + "outputIndex": 2, + "expectedQty": "2112270079952270954833161", + "swapFee": "1296676554307096643252", "reserves": [ - "7583704169029702770690462", - "77562079767633976575296446", - "48104650524441205801482319" + "925989801196696990424027415", + "138526687688513553294811121", + "191129838048110953652536814" ], - "mAssetSupply": "132497881646354071490367566", + "mAssetSupply": "1248906463618967455135409415", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "57426138850336339656704", - "expectedQty": "56993567524575803864953", - "reserves": [ - "7583704169029702770690462", - "77562079767633976575296446", - "48162076663291542141139023" - ] - }, { "type": "redeem", "inputIndex": 1, - "inputQty": "302074584186758037504", - "expectedQty": "306833384131442266958", - "swapFee": "181244750512054822", + "inputQty": "2236514638642851193290752", + "expectedQty": "2142612213344871747581525", + "swapFee": "1341908783185710715974", "reserves": [ - "7583704169029702770690462", - "77561772934249845133029488", - "48162076663291542141139023" + "925989801196696990424027415", + "136384075475168681547229596", + "191129838048110953652536814" ], - "mAssetSupply": "132554573320539211048249837" + "mAssetSupply": "1246671290889107789652834637" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "16682516558165072412672", - "outputIndex": 1, - "expectedQty": "18859892892242122019229", - "swapFee": "11140848725061727769", + "inputQty": "8244225325727952666624", + "expectedQty": "8395220660705319021823", + "swapFee": "4946535195436771599", "reserves": [ - "7600386685587867843103134", - "77542913041357603011010259", - "48162076663291542141139023" + "925981405976036285105005592", + "136384075475168681547229596", + "191129838048110953652536814" ], - "mAssetSupply": "132554584461387936109977606", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1246663051610317257136939612" }, { - "type": "redeemBassets", - "inputQtys": [ - "11163548936400046915584", - "28896307141641544663040", - "19192332857591101128704" + "type": "mint", + "inputIndex": 1, + "inputQty": "1469589435857506816", + "expectedQty": "1534109632065904199", + "reserves": [ + "925981405976036285105005592", + "136384076944758117404736412", + "191129838048110953652536814" + ] + }, + { + "type": "redeemMasset", + "inputQty": "1374510726951827456", + "expectedQtys": [ + "1020636282474273323", + "150325412997748173", + "210667348303516859" ], - "expectedQty": "59903351766512111394029", - "swapFee": "35963589213435328033", + "redemptionFee": "412353218085548", "reserves": [ - "7589223136651467796187550", - "77514016734215961466347219", - "48142884330433951040010319" + "925981404955400002630732269", + "136384076794432704406988239", + "191129837837443605349019955" ], - "mAssetSupply": "132494681109621423998583577" + "mAssetSupply": "1246663051770328515469101903" }, { "type": "mintMulti", "inputQtys": [ - "6802384864576254509056", - "23023822473824483409920", - "21073887626357794406400" + "795179073875121930240", + "297408394097885249536", + "1155182469280229883904" ], - "expectedQty": "51139480572765087568343", + "expectedQty": "2272529511207357771100", "reserves": [ - "7596025521516044050696606", - "77537040556689785949757139", - "48163958218060308834416719" + "925982200134473877752662509", + "136384374202826802292237775", + "191130993019912885578903859" ], - "mAssetSupply": "132545820590194189086151920" + "mAssetSupply": "1246665324299839722826873003" }, { - "type": "mintMulti", - "inputQtys": [ - "21314293125401049825280", - "20392989423291055734784", - "49009412494897402871808" - ], - "expectedQty": "92420894637069890628392", + "type": "swap", + "inputIndex": 0, + "inputQty": "71411282645780267008000", + "outputIndex": 1, + "expectedQty": "67094979842847005633682", + "swapFee": "42050851155754940596", "reserves": [ - "7617339814641445100521886", - "77557433546113077005491923", - "48212967630555206237288527" + "926053611417119658019670509", + "136317279222983955286604093", + "191130993019912885578903859" ], - "mAssetSupply": "132638241484831258976780312" + "mAssetSupply": "1246665366350690878581813599", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "2487283662800515760128", - "2276332719210726686720", - "219310876471825465344" + "1279935295442565235474432", + "564630886776894495129600", + "1249039897593551756722176" ], - "expectedQty": "5224323280149680979027", - "swapFee": "3136475853601969769", + "expectedQty": "3123477174321244021659621", + "swapFee": "1875211431451617383425", "reserves": [ - "7614852530978644584761758", - "77555157213393866278805203", - "48212748319678734411823183" + "924773676121677092784196077", + "135752648336207060791474493", + "189881953122319333822181683" ], - "mAssetSupply": "132633017161551109295801285" + "mAssetSupply": "1243541889176369634560153978" }, { - "type": "mintMulti", - "inputQtys": [ - "11204425768873219850240", - "10395788190435787145216", - "5122439001427352223744" - ], - "expectedQty": "27775547846075948043335", + "type": "mint", + "inputIndex": 0, + "inputQty": "31730403427385501286400", + "expectedQty": "31137312487965079926287", "reserves": [ - "7626056956747517804611998", - "77565553001584302065950419", - "48217870758680161764046927" - ], - "mAssetSupply": "132660792709397185243844620" + "924805406525104478285482477", + "135752648336207060791474493", + "189881953122319333822181683" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "71560355978042656423936", - "expectedQty": "72057480172441741739192", - "swapFee": "42936213586825593854", + "inputQty": "381757555746253567950848", + "expectedQty": "372847528273671102890941", + "swapFee": "229054533447752140770", "reserves": [ - "7626056956747517804611998", - "77565553001584302065950419", - "48145813278507720022307735" + "924805406525104478285482477", + "135752648336207060791474493", + "189509105594045662719290742" ], - "mAssetSupply": "132589275289632729413014538" + "mAssetSupply": "1243191497987644793824270187" }, { "type": "redeemMasset", - "inputQty": "1365588165348353024", + "inputQty": "2702100369550387893292236", "expectedQtys": [ - "78520143425826572", - "798637930601754638", - "495723567949041884" + "2009479118597776110516879", + "294972445231428361846713", + "411778075461584454597977" ], - "redemptionFee": "409676449604505", + "redemptionFee": "810630110865116367987", "reserves": [ - "7626056878227374378785426", - "77565552202946371464195781", - "48145812782784152073265851" + "922795927406506702174965598", + "135457675890975632429627780", + "189097327518584078264692765" ], - "mAssetSupply": "132589273924454240514266019" + "mAssetSupply": "1240490208248205271047345938" }, { - "type": "redeemBassets", - "inputQtys": [ - "3349764358623167488", - "2321370556047465984", - "4462975293789523456" - ], - "expectedQty": "10438820744755352130", - "swapFee": "6267052678460287", + "type": "redeem", + "inputIndex": 0, + "inputQty": "52761351718128616210432", + "expectedQty": "53735422747424125641309", + "swapFee": "31656811030877169726", "reserves": [ - "7626053528463015755617938", - "77565549881575815416729797", - "48145808319808858283742395" + "922742191983759278049324289", + "135457675890975632429627780", + "189097327518584078264692765" ], - "mAssetSupply": "132589263485633495758913889" + "mAssetSupply": "1240437478553298173308305232" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "5497285485803967488", - "expectedQty": "5535411340050633945", - "swapFee": "3298371291482380", + "type": "mintMulti", + "inputQtys": [ + "3962033236081107271680", + "47201502653178486784", + "6982505404807371554816" + ], + "expectedQty": "11082599471165779488078", "reserves": [ - "7626053528463015755617938", - "77565549881575815416729797", - "48145802784397518233108450" + "922746154016995359156595969", + "135457723092478285608114564", + "189104310023988885636247581" ], - "mAssetSupply": "132589257991646381246428781" + "mAssetSupply": "1240448561152769339087793310" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "28739868744088559812608", - "outputIndex": 0, - "expectedQty": "25405488535919283172946", - "swapFee": "16967696048810124135", + "type": "redeemBassets", + "inputQtys": [ + "2053740739255052619743232", + "1516624424818566676611072", + "4198218148699723159044096" + ], + "expectedQty": "7898134483913636493200142", + "swapFee": "4741725725783652087172", "reserves": [ - "7600648039927096472444992", - "77594289750319903976542405", - "48145802784397518233108450" + "920692413277740306536852737", + "133941098667659718931503492", + "184906091875289162477203485" ], - "mAssetSupply": "132589274959342430056552916", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1232550426668855702594593168" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "15587312436881820", - "expectedQty": "15336756218446905", + "inputIndex": 0, + "inputQty": "292939493738594208579584", + "expectedQty": "287339321627736285867022", "reserves": [ - "7600648039927096472444992", - "77594289765907216413424225", - "48145802784397518233108450" + "920985352771478900745432321", + "133941098667659718931503492", + "184906091875289162477203485" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "2723037029836185105596416", - "expectedQty": "2764904089353763302180224", - "swapFee": "1633822217901711063357", + "inputQty": "10228174469335684743168", + "expectedQty": "9778501384150237607928", + "swapFee": "6136904681601410845", "reserves": [ - "7600648039927096472444992", - "74829385676553453111244001", - "48145802784397518233108450" + "920985352771478900745432321", + "133931320166275568693895564", + "184906091875289162477203485" ], - "mAssetSupply": "129867871767060902880466762" + "mAssetSupply": "1232827543952918784797127867" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "199613973526942670913536", - "outputIndex": 1, - "expectedQty": "201037112977931290405222", - "swapFee": "118841412828831940720", + "type": "redeem", + "inputIndex": 1, + "inputQty": "185722245467972764172288", + "expectedQty": "177545940128507959054196", + "swapFee": "111433347280783658503", "reserves": [ - "7600648039927096472444992", - "74628348563575521820838779", - "48345416757924460904021986" + "920985352771478900745432321", + "133753774226147060734841368", + "184906091875289162477203485" ], - "mAssetSupply": "129867990608473731712407482", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1232641933140798092816614082" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "173525137028609877213184", - "expectedQty": "191703422167453096874566", + "inputIndex": 2, + "inputQty": "1517085853845103405170688", + "expectedQty": "1554004404008772870071283", "reserves": [ - "7774173176955706349658176", - "74628348563575521820838779", - "48345416757924460904021986" + "920985352771478900745432321", + "133753774226147060734841368", + "186423177729134265882374173" ] }, { "type": "mintMulti", "inputQtys": [ - "391316572231448", - "216113369960625", - "163249450245651" + "225774523936687261745152", + "407321379382116283842560", + "11002089969807188295680" ], - "expectedQty": "806304475375823", + "expectedQty": "658509255163886071816671", "reserves": [ - "7774173177347022921889624", - "74628348563791635190799404", - "48345416758087710354267637" + "921211127295415588007177473", + "134161095605529177018683928", + "186434179819104073070669853" ], - "mAssetSupply": "130059694031447489284657871" + "mAssetSupply": "1234854446799970751758502036" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "192065195913974315483136", - "240322943138764907610112", - "21962473823272762867712" + "13487554121043013632", + "12700284315402362880", + "5326756058963182592" ], - "expectedQty": "469883741182071086494109", + "expectedQty": "31960007362515010153", + "swapFee": "19187516927665605", "reserves": [ - "7966238373260997237372760", - "74868671506930400098409516", - "48367379231910983117135349" + "921211113807861466964163841", + "134161082905244861616321048", + "186434174492348014107487261" ], - "mAssetSupply": "130529577772629560371151980" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "38609722439438765654016", - "expectedQty": "42382192515772401154637", - "reserves": [ - "8004848095700436003026776", - "74868671506930400098409516", - "48367379231910983117135349" - ] + "mAssetSupply": "1234854414839963389243491883" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1361169354065248768", - "outputIndex": 0, - "expectedQty": "1221654499951994639", - "swapFee": "804757338352189", + "type": "mintMulti", + "inputQtys": [ + "436820611759595651072", + "1539476866959333130240", + "1796079745812589445120" + ], + "expectedQty": "3876841523406958472088", "reserves": [ - "8004846874045936051032137", - "74868672868099754163658284", - "48367379231910983117135349" + "921211550628473226559814913", + "134162622382111820949451288", + "186435970572093826696932381" ], - "mAssetSupply": "130571959965950090110658806", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1234858291681486796201963971" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "2588143206602793524658176", - "expectedQty": "2604555175030101649677607", - "swapFee": "1552885923961676114794", + "inputIndex": 0, + "inputQty": "9868800615626449151328256", + "expectedQty": "10052293509977869886817921", + "swapFee": "5921280369375869490796", "reserves": [ - "8004846874045936051032137", - "74868672868099754163658284", - "45762824056880881467457742" + "911159257118495356672996992", + "134162622382111820949451288", + "186435970572093826696932381" ], - "mAssetSupply": "127985369645271258262115424" + "mAssetSupply": "1224995412346229722920126511" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "45047472404701675520", - "expectedQty": "44380298206745865041", + "type": "mintMulti", + "inputQtys": [ + "12412335606133292007424", + "1205147757826771330793472", + "1703132104434979346317312" + ], + "expectedQty": "3012334140507527445035090", "reserves": [ - "8004846874045936051032137", - "74868717915572158865333804", - "45762824056880881467457742" - ] + "911171669454101489965004416", + "135367770139938592280244760", + "188139102676528806043249693" + ], + "mAssetSupply": "1228007746486737250365161601" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "30371299905168527360", - "expectedQty": "30809378526442635943", - "swapFee": "18222779943101116", + "inputQty": "577665472359294023237632", + "expectedQty": "553356642582717680167428", + "swapFee": "346599283415576413942", "reserves": [ - "8004846874045936051032137", - "74868687106193632422697861", - "45762824056880881467457742" + "911171669454101489965004416", + "134814413497355874600077332", + "188139102676528806043249693" ], - "mAssetSupply": "127985383672492339782554221" + "mAssetSupply": "1227430427613661371918337911" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3157225434508730", - "3196361349169827", - "3782002046777876" + "2814833113723620032512", + "1459859583843185721344", + "193908913394844303360" ], - "expectedQty": "10361557309710981", + "expectedQty": "4484438686333708413322", + "swapFee": "2692278578947593604", "reserves": [ - "8004846877203161485540867", - "74868687109389993771867688", - "45762824060662883514235618" + "911168854620987766344971904", + "134812953637772031414355988", + "188138908767615411198946333" ], - "mAssetSupply": "127985383682853897092265202" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "215230907912719347744768", - "expectedQty": "235018107013814950029961", - "reserves": [ - "8220077785115880833285635", - "74868687109389993771867688", - "45762824060662883514235618" - ] + "mAssetSupply": "1227425943174975038209924589" }, { "type": "redeemMasset", - "inputQty": "127094707382503", + "inputQty": "349479728743151387751219", "expectedQtys": [ - "8145466303856", - "74189123753530", - "45347446958526" + "259355373258168444050157", + "38373199142440436569106", + "53551914840313791776839" ], - "redemptionFee": "38128412214", + "redemptionFee": "104843918622945416325", "reserves": [ - "8220077785107735366981779", - "74868687109315804648114158", - "45762824060617536067277092" + "910909499247729597900921747", + "134774580438629590977786882", + "188085356852775097407169494" ], - "mAssetSupply": "128220401789740655463324874" + "mAssetSupply": "1227076568290150509767589695" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "2476009684077718274048", - "expectedQty": "2460477329758116789550", + "type": "swap", + "inputIndex": 0, + "inputQty": "11174648570182889373696", + "outputIndex": 1, + "expectedQty": "10504424751138786706364", + "swapFee": "6580726931074230040", "reserves": [ - "8220077785107735366981779", - "74868687109315804648114158", - "45765300070301613785551140" - ] + "910920673896299780790295443", + "134764076013878452191080518", + "188085356852775097407169494" + ], + "mAssetSupply": "1227076574870877440841819735", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 1, - "inputQty": "19619205219256161533952", + "inputIndex": 2, + "inputQty": "22184065358179364", "outputIndex": 0, - "expectedQty": "17731979534266398395614", - "swapFee": "11601614340571142024", + "expectedQty": "23105310672014757", + "swapFee": "13614819252763", "reserves": [ - "8202345805573468968586165", - "74888306314535060809648110", - "45765300070301613785551140" + "910920673873194470118280686", + "134764076013878452191080518", + "188085356874959162765348858" ], - "mAssetSupply": "128222873868684754151256448", + "mAssetSupply": "1227076574870891055661072498", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "5081983641673170967068672", + "expectedQty": "5294687512506145730044002", + "reserves": [ + "910920673873194470118280686", + "139846059655551623158149190", + "188085356874959162765348858" + ] + }, { "type": "mintMulti", "inputQtys": [ - "183336053538938400", - "433574628511679872", - "217983406708530304" + "2885317702974309568348160", + "3495389850674362740375552", + "1050893217701741010616320" + ], + "expectedQty": "7541465027906294643427925", + "reserves": [ + "913805991576168779686628846", + "143341449506225985898524742", + "189136250092660903775965178" + ], + "mAssetSupply": "1239912727411303496034544425" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "10997442351876911104", + "73193440053321932800", + "5923363830395850752" ], - "expectedQty": "843750081967445356", + "expectedQty": "92868972623840260397", + "swapFee": "55754836476189870", "reserves": [ - "8202345988909522507524565", - "74888306748109689321327982", - "45765300288285020494081444" + "913805980578726427809717742", + "143341376312785932576591942", + "189136244169297073380114426" ], - "mAssetSupply": "128222874712434836118701804" + "mAssetSupply": "1239912634542330872194284028" }, { "type": "redeemBassets", "inputQtys": [ - "193725503140341565358080", - "215989297842454983081984", - "233736246278303380406272" + "5913758197950979", + "9113309908287434", + "8837409158867364" ], - "expectedQty": "656591831114276386112587", - "swapFee": "394191613636747880395", + "expectedQty": "24308455937339883", + "swapFee": "14593829860320", "reserves": [ - "8008620485769180942166485", - "74672317450267234338245998", - "45531564042006717113675172" + "913805980572812669611766763", + "143341376303672622668304508", + "189136244160459664221247062" ], - "mAssetSupply": "127566282881320559732589217" + "mAssetSupply": "1239912634518022416256944145" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "229193079142327854825472", - "expectedQty": "208970803832169962390577", - "swapFee": "137515847485396712895", + "inputQty": "97489989934232369102848", + "expectedQty": "99180490329250867636896", + "swapFee": "58493993960539421461", "reserves": [ - "7799649681937010979775908", - "74672317450267234338245998", - "45531564042006717113675172" + "913706800082483418744129867", + "143341376303672622668304508", + "189136244160459664221247062" ], - "mAssetSupply": "127337227318025717274476640" + "mAssetSupply": "1239815203022082144427262758" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "23019647367472083894272", - "expectedQty": "22866109068670188166126", + "inputQty": "1289664607083728480501760", + "expectedQty": "1260488655186494277359050", + "swapFee": "773798764250237088301", "reserves": [ - "7799649681937010979775908", - "74672317450267234338245998", - "45554583689374189197569444" - ] + "913706800082483418744129867", + "143341376303672622668304508", + "187875755505273169943888012" + ], + "mAssetSupply": "1238526312213762666183849299" }, { - "type": "mint", + "type": "redeem", + "inputIndex": 1, + "inputQty": "49909206667893864923136", + "expectedQty": "48028511308447294593843", + "swapFee": "29945524000736318953", + "reserves": [ + "913706800082483418744129867", + "143293347792364175373710665", + "187875755505273169943888012" + ], + "mAssetSupply": "1238476432952618773055245116" + }, + { + "type": "redeemMasset", + "inputQty": "516760054039773537160396", + "expectedQtys": [ + "381134039110597388241452", + "59771879137654631224437", + "78368515524034311498496" + ], + "redemptionFee": "155028016211932061148", + "reserves": [ + "913325666043372821355888415", + "143233575913226520742486228", + "187797386989749135632389516" + ], + "mAssetSupply": "1237959827926595211450145868" + }, + { + "type": "swap", "inputIndex": 2, - "inputQty": "40767607052086280192000", - "expectedQty": "40495274427952846715577", + "inputQty": "80692843582297645896433664", + "outputIndex": 0, + "expectedQty": "82911789171557847216350493", + "swapFee": "49120704226333839456077", "reserves": [ - "7799649681937010979775908", - "74672317450267234338245998", - "45595351296426275477761444" - ] + "830413876871814974139537922", + "143233575913226520742486228", + "268490230572046781528823180" + ], + "mAssetSupply": "1238008948630821545289601945", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "363976055205363512770560", - "expectedQty": "358443677880118994310656", + "inputQty": "967226945379917281361920", + "expectedQty": "996523247963982889248854", "reserves": [ - "7799649681937010979775908", - "75036293505472597851016558", - "45595351296426275477761444" + "830413876871814974139537922", + "144200802858606438023848148", + "268490230572046781528823180" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "35753310957875541049344", - "6016357394652825911296", - "33079445246731983257600" + "4033433104472322261123072", + "9623473625616472749375488", + "259637329912208023355392" ], - "expectedQty": "78076416424710384525390", + "expectedQty": "14176825130438781064484731", + "swapFee": "8511201799342874363308", "reserves": [ - "7835402992894886520825252", - "75042309862867250676927854", - "45628430741673007461019044" + "826380443767342651878414850", + "134577329232989965274472660", + "268230593242134573505467788" ], - "mAssetSupply": "127837108795827169688194389" + "mAssetSupply": "1224828646748346747114366068" }, { - "type": "mintMulti", - "inputQtys": [ - "84169986004527196667904", - "116034543050945814593536", - "28960591932075813109760" - ], - "expectedQty": "235440916315345536384782", + "type": "mint", + "inputIndex": 0, + "inputQty": "211132412309020288", + "expectedQty": "208411450768986492", "reserves": [ - "7919572978899413717493156", - "75158344405918196491521390", - "45657391333605083274128804" - ], - "mAssetSupply": "128072549712142515224579171" + "826380443978475064187435138", + "134577329232989965274472660", + "268230593242134573505467788" + ] }, { "type": "redeemMasset", - "inputQty": "467796751859273465384140", + "inputQty": "726515609038955337691955", "expectedQtys": [ - "28918289663251569929675", - "274440399745241185512314", - "166717785336591594675712" + "490026241269508182826308", + "79801528805114004017555", + "159055106346825891960372" ], - "redemptionFee": "140339025557782039615", + "redemptionFee": "217954682711686601307", "reserves": [ - "7890654689236162147563481", - "74883904006172955306009076", - "45490673548268491679453092" + "825890417737205556004608830", + "134497527704184851270455105", + "268071538135787747613507416" ], - "mAssetSupply": "127604893299308799541234646" + "mAssetSupply": "1224102349302401954232261912" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "400215542636271701590016", - "1171960292675850428481536", - "1011086009009121831944192" + "2767781118175867830272", + "1082075545152030638080", + "3880299008706603909120" ], - "expectedQty": "2598634390017779873877113", - "swapFee": "1560116704033087776992", + "expectedQty": "7755793735968276115040", "reserves": [ - "7490439146599890445973465", - "73711943713497104877527540", - "44479587539259369847508900" + "825893185518323731872439102", + "134498609779730003301093185", + "268075418434796454217416536" ], - "mAssetSupply": "125006258909291019667357533" + "mAssetSupply": "1224110105096137922508376952" }, { "type": "redeemMasset", - "inputQty": "46404481432396358", + "inputQty": "87961404364940766923980", "expectedQtys": [ - "2779746153092603", - "27354937135772862", - "16506637319058433" + "59328756566866576439469", + "9661824819629221757320", + "19257431252320300699250" ], - "redemptionFee": "13921344429718", + "redemptionFee": "26388421309482230077", "reserves": [ - "7490439143820144292880862", - "73711943686142167741754678", - "44479587522752732528450467" + "825833856761756865295999633", + "134488947954910374079335865", + "268056161003544133916717286" ], - "mAssetSupply": "125006258862900459579390893" + "mAssetSupply": "1224022170080194291223683049" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5222285995073373995008", - "expectedQty": "4729311077319137120605", - "swapFee": "3133371597044024397", + "type": "redeemBassets", + "inputQtys": [ + "2987690458336026773422080", + "7190082531568040437350400", + "3775462549007585222066176" + ], + "expectedQty": "14197677395304361186676949", + "swapFee": "8523720669584367332405", "reserves": [ - "7485709832742825155760257", - "73711943686142167741754678", - "44479587522752732528450467" + "822846166303420838522577553", + "127298865423342333641985465", + "264280698454536548694651110" ], - "mAssetSupply": "125001039710276983249420282" + "mAssetSupply": "1209824492684889930037006100" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "118727268696314769047552", - "expectedQty": "119461190433445194143567", - "swapFee": "71236361217788861428", + "type": "redeemBassets", + "inputQtys": [ + "133126214553528860672", + "99028320529171644416", + "36831514543217393664" + ], + "expectedQty": "271191926224447094855", + "swapFee": "162812843440732696", "reserves": [ - "7485709832742825155760257", - "73711943686142167741754678", - "44360126332319287334306900" + "822846033177206284993716881", + "127298766395021804470341049", + "264280661623022005477257446" ], - "mAssetSupply": "124882383677941886269234158" + "mAssetSupply": "1209824221492963705589911245" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1386687618020535668047872", - "expectedQty": "1377048669432969694068260", + "type": "redeemMasset", + "inputQty": "460918997971791199495782", + "expectedQtys": [ + "313393948270010875671721", + "48483752004484703713728", + "100655477036993655537661" + ], + "redemptionFee": "138275699391537359848", "reserves": [ - "7485709832742825155760257", - "73711943686142167741754678", - "45746813950339823002354772" - ] + "822532639228936274118045160", + "127250282643017319766627321", + "264180006145985011821719785" + ], + "mAssetSupply": "1209363440770691305927775311" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "854414401744485195186176", - "724503797670714978336768", - "4593652770966885648826368" + "7766397458393165987840", + "28135849051890523308032", + "28887064438812016902144" ], - "expectedQty": "6226340696124470574470316", - "swapFee": "3738047246022295722115", + "expectedQty": "65941543718690739419377", "reserves": [ - "6631295430998339960574081", - "72987439888471452763417910", - "41153161179372937353528404" + "822540405626394667284033000", + "127278418492069210289935353", + "264208893210423823838621929" ], - "mAssetSupply": "120033091651250385388832102" + "mAssetSupply": "1209429382314409996667194688" }, { - "type": "redeemBassets", - "inputQtys": [ - "1416970449795919", - "159205126327226", - "1520349945754344" + "type": "redeemMasset", + "inputQty": "3246538024713712025", + "expectedQtys": [ + "2207328199691783155", + "341557983568924363", + "709017741382076514" ], - "expectedQty": "3260156689152932", - "swapFee": "1957268374516", + "redemptionFee": "973961407414113", "reserves": [ - "6631295429581369510778162", - "72987439888312247637090684", - "41153161177852587407774060" + "822540403419066467592249845", + "127278418150511226721010990", + "264208892501406082456545415" ], - "mAssetSupply": "120033091647990228699679170" + "mAssetSupply": "1209429379068845933360896776" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "506013217316238029488128", - "expectedQty": "564719466816778661570342", + "inputIndex": 2, + "inputQty": "19786774525727363488022528", + "expectedQty": "19897141370739749672772139", "reserves": [ - "7137308646897607540266290", - "72987439888312247637090684", - "41153161177852587407774060" + "822540403419066467592249845", + "127278418150511226721010990", + "283995667027133445944567943" ] }, { "type": "redeemBassets", "inputQtys": [ - "6236126737228938", - "19085891598210996", - "39442894983101832" + "4869558007230225408", + "4095533771876990976", + "4574943167391053312" ], - "expectedQty": "64885804030601244", - "swapFee": "38954855331559", + "expectedQty": "13655220000989111574", + "swapFee": "8198050831092122", "reserves": [ - "7137308640661480803037352", - "72987439869226356038879688", - "41153161138409692424672228" + "822540398549508460362024437", + "127278414054977454844020014", + "283995662452190278553514631" ], - "mAssetSupply": "120597811049921203330648268" + "mAssetSupply": "1229326506784365682044557341" }, { - "type": "mintMulti", - "inputQtys": [ - "49265921313793099431936", - "91822933604776670134272", - "82699252363015070154752" + "type": "redeem", + "inputIndex": 0, + "inputQty": "27713220841081573497372672", + "expectedQty": "28053405761462339737196094", + "swapFee": "16627932504648944098423", + "reserves": [ + "794486992788046120624828343", + "127278414054977454844020014", + "283995662452190278553514631" + ], + "mAssetSupply": "1201629913875788757491283092" + }, + { + "type": "redeemMasset", + "inputQty": "332692289659337403111833", + "expectedQtys": [ + "219901650062874715150748", + "35228686589136121765816", + "78605584925663589075467" ], - "expectedQty": "227074069011583675473143", + "redemptionFee": "99807686897801220933", "reserves": [ - "7186574561975273902469288", - "73079262802831132709013960", - "41235860390772707494826980" + "794267091137983245909677595", + "127243185368388318722254198", + "283917056867264614964439164" ], - "mAssetSupply": "120824885118932787006121411" + "mAssetSupply": "1201297321393816317889392192" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1219307908057428798734336", - "outputIndex": 0, - "expectedQty": "1062421764156473621564055", - "swapFee": "719477519569235436036", + "type": "mintMulti", + "inputQtys": [ + "37192209440774039797760", + "28005145688603023638528", + "36538664086917622005760" + ], + "expectedQty": "102427747394468532235503", "reserves": [ - "6124152797818800280905233", - "74298570710888561507748296", - "41235860390772707494826980" + "794304283347424019949475355", + "127271190514076921745892726", + "283953595531351532586444924" ], - "mAssetSupply": "120825604596452356241557447", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1201399749141210786421627695" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "2020243991375020055068672", - "outputIndex": 1, - "expectedQty": "2042093487319244494568139", - "swapFee": "1202760146827989293956", + "inputIndex": 0, + "inputQty": "1889567312153647", + "outputIndex": 2, + "expectedQty": "1857346239618493", + "swapFee": "1119673374755", "reserves": [ - "6124152797818800280905233", - "72256477223569317013180157", - "43256104382147727549895652" + "794304283349313587261629002", + "127271190514076921745892726", + "283953595529494186346826431" ], - "mAssetSupply": "120826807356599184230851403", + "mAssetSupply": "1201399749141211906095002450", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "69858355775483338752", - "123702727849252814848", - "97288337254870351872" + "1252543074395066", + "3884786425400187", + "1093144338730563" ], - "expectedQty": "297981676150605132877", - "swapFee": "178896343496460956", + "expectedQty": "6358492144358870", + "swapFee": "3817385718046", "reserves": [ - "6124082939463024797566481", - "72256353520841467760365309", - "43256007093810472679543780" + "794304283348061044187233936", + "127271190510192135320492539", + "283953595528401042008095868" ], - "mAssetSupply": "120826509374923033625718526" + "mAssetSupply": "1201399749134853413950643580" }, { - "type": "redeemMasset", - "inputQty": "18286954928905935388672", - "expectedQtys": [ - "926594933722962022570", - "10932636243423830567527", - "6544783508389858036998" - ], - "redemptionFee": "5486086478671780616", + "type": "swap", + "inputIndex": 1, + "inputQty": "770279381266607969927168", + "outputIndex": 2, + "expectedQty": "793899764782505914084237", + "swapFee": "478609507310391832045", "reserves": [ - "6123156344529301835543911", - "72245420884598043929797782", - "43249462310302082821506782" + "794304283348061044187233936", + "128041469891458743290419707", + "283159695763618536094011631" ], - "mAssetSupply": "120808227906080606362110470" + "mAssetSupply": "1201400227744360724342475625", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "220271088829562387169280", - "expectedQty": "251506800217857130395112", + "type": "mintMulti", + "inputQtys": [ + "9980936071785", + "79025457729219", + "55402103803221" + ], + "expectedQty": "147310510871267", "reserves": [ - "6343427433358864222713191", - "72245420884598043929797782", - "43249462310302082821506782" - ] + "794304283348071025123305721", + "128041469891537768748148926", + "283159695763673938197814852" + ], + "mAssetSupply": "1201400227744508034853346892" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "46166458598126168047616", - "expectedQty": "45334514927946659597297", + "type": "redeem", + "inputIndex": 2, + "inputQty": "342329521397386459480064", + "expectedQty": "340692540823064296044505", + "swapFee": "205397712838431875688", "reserves": [ - "6343427433358864222713191", - "72291587343196170097845398", - "43249462310302082821506782" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "458190118224453347311616", - "298278506418306340093952", - "385516974361593709068288" + "794304283348071025123305721", + "128041469891537768748148926", + "282819003222850873901770347" ], - "hardLimitError": true + "mAssetSupply": "1201058103620823486825742516" }, { "type": "redeemMasset", - "inputQty": "336488779859567900098560", + "inputQty": "5477209093845253324", "expectedQtys": [ - "17619838899010142935916", - "200800929169985654417587", - "120131989587973686653083" + "3621194894509577535", + "583734881930074093", + "1289358186794628064" ], - "redemptionFee": "100946633957870370029", + "redemptionFee": "1643162728153575", "reserves": [ - "6325807594459854079777275", - "72090786414026184443427811", - "43129330320714109134853699" + "794304279726876130613728186", + "128041469307802886818074833", + "282819001933492687107142283" ], - "mAssetSupply": "120768681388000800122374348" + "mAssetSupply": "1201058098145257555708642767" }, { "type": "mintMulti", "inputQtys": [ - "4743398203720428683264", - "9764414988972963397632", - "6189270312378244792320" + "610853309168403703922688", + "251138966257133454098432", + "730913212353587003260928" ], - "expectedQty": "21121758013604662148311", + "expectedQty": "1597291674580966716718405", "reserves": [ - "6330550992663574508460539", - "72100550829015157406825443", - "43135519591026487379646019" + "794915133036044534317650874", + "128292608274060020272173265", + "283549915145846274110403211" ], - "mAssetSupply": "120789803146014404784522659" + "mAssetSupply": "1202655389819838522425361172" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "502677210475161291063296", - "expectedQty": "511553292988425309838735", - "swapFee": "301606326285096774637", + "inputIndex": 0, + "inputQty": "57451220325092016128", + "expectedQty": "58134293371265197777", + "swapFee": "34470732195055209", "reserves": [ - "6330550992663574508460539", - "71588997536026732096986708", - "43135519591026487379646019" + "794915074901751163052453097", + "128292608274060020272173265", + "283549915145846274110403211" ], - "mAssetSupply": "120287427541865528590234000" + "mAssetSupply": "1202655332403088929528400253" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2141793063089480", - "expectedQty": "1884931583439556", - "swapFee": "1285075837853", + "type": "redeemBassets", + "inputQtys": [ + "2616829978650049249280", + "79685652706307375104", + "519789979515272036352" + ], + "expectedQty": "3188989182655934546963", + "swapFee": "1914542234934521441", "reserves": [ - "6330550990778642925020983", - "71588997536026732096986708", - "43135519591026487379646019" + "794912458071772513003203817", + "128292528588407313964798161", + "283549395355866758838366859" ], - "mAssetSupply": "120287427539725020602982373" + "mAssetSupply": "1202652143413906273593853290" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "28085987104810996", - "expectedQty": "24717683996869320", - "swapFee": "16851592262886", + "inputQty": "3801167703462977527087104", + "expectedQty": "3754092941237584175329667", "reserves": [ - "6330550966060958928151663", - "71588997536026732096986708", - "43135519591026487379646019" - ], - "mAssetSupply": "120287427511655885090434263" + "798713625775235490530290921", + "128292528588407313964798161", + "283549395355866758838366859" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "8566659116581807718400", - "2981057933414703300608", - "1075374937460411990016" - ], - "expectedQty": "13721287775330467626461", + "type": "redeem", + "inputIndex": 1, + "inputQty": "798243713593955", + "expectedQty": "770350669280792", + "swapFee": "478946228156", "reserves": [ - "6339117625177540735870063", - "71591978593960146800287316", - "43136594965963947791636035" + "798713625775235490530290921", + "128292528587636963295517369", + "283549395355866758838366859" ], - "mAssetSupply": "120301148799431215558060724" + "mAssetSupply": "1206406236354346093001817158" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "93705076480682917625856", - "expectedQty": "92031841731793376654522", + "inputIndex": 2, + "inputQty": "2874679573866522607616", + "expectedQty": "2886944922705405424610", "reserves": [ - "6339117625177540735870063", - "71685683670440829717913172", - "43136594965963947791636035" + "798713625775235490530290921", + "128292528587636963295517369", + "283552270035440625360974475" ] }, { - "type": "redeemMasset", - "inputQty": "33086508065547446806118", - "expectedQtys": [ - "1741596521807242277643", - "19694781628273911088788", - "11851261989041657241842" - ], - "redemptionFee": "9925952419664234041", + "type": "swap", + "inputIndex": 2, + "inputQty": "252700084465619416645632", + "outputIndex": 0, + "expectedQty": "256812586676122635383638", + "swapFee": "152265586750397605103", "reserves": [ - "6337376028655733493592420", - "71665988888812555806824384", - "43124743703974906134394193" + "798456813188559367894907283", + "128292528587636963295517369", + "283804970119906244777620107" ], - "mAssetSupply": "120360104059049881152143169" + "mAssetSupply": "1206409275564855548804846871", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "35388597741294807154688", - "expectedQty": "31129200550772647158677", - "swapFee": "21233158644776884292", + "type": "redeemBassets", + "inputQtys": [ + "2082203288717637888", + "12582428865876221952", + "2005731844276136704" + ], + "expectedQty": "17100561141726585716", + "swapFee": "10266496582985742", "reserves": [ - "6306246828104960846433743", - "71665988888812555806824384", - "43124743703974906134394193" + "798456811106356079177269395", + "128292516005208097419295417", + "283804968114174400501483403" ], - "mAssetSupply": "120324736694467231121872773" + "mAssetSupply": "1206409258464294407078261155" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "18576670056088499912704", - "expectedQty": "16326433871160124205609", - "swapFee": "11146002033653099947", + "type": "redeemBassets", + "inputQtys": [ + "284663562378363478736896", + "182513553929762441789440", + "925011771340992565739520" + ], + "expectedQty": "1399099058979697704367799", + "swapFee": "839963413435880150711", "reserves": [ - "6289920394233800722228134", - "71665988888812555806824384", - "43124743703974906134394193" + "798172147543977715698532499", + "128110002451278334977505977", + "282879956342833407935743883" ], - "mAssetSupply": "120306171170413176275060016" + "mAssetSupply": "1205010159405314709373893356" }, { "type": "redeemMasset", - "inputQty": "19275015431686590352588", + "inputQty": "2193913820585242657606860", "expectedQtys": [ - "1007445752699217726314", - "11478618423408274091945", - "6907216174093432860422" + "1452764157851716994382488", + "233174786161350331596512", + "514873718425364968086685" ], - "redemptionFee": "5782504629505977105", + "redemptionFee": "658174146175572797282", "reserves": [ - "6288912948481101504501820", - "71654510270389147532732439", - "43117836487800812701533771" + "796719383386125998704150011", + "127876827665116984645909465", + "282365082624408042967657198" ], - "mAssetSupply": "120286901937486119190684533" + "mAssetSupply": "1202816903758875642289083778" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "24480211569282557935616", + "expectedQty": "24585442175769157224054", + "reserves": [ + "796719383386125998704150011", + "127876827665116984645909465", + "282389562835977325525592814" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2615555508327552659750912", + "expectedQty": "2582931518146792093289661", + "reserves": [ + "799334938894453551363900923", + "127876827665116984645909465", + "282389562835977325525592814" + ] }, { "type": "redeemBassets", "inputQtys": [ - "596569852699659326193664", - "231140886041742115078144", - "113088738541417449652224" + "9642703970963914242392064", + "1543417126736944548544512", + "13448691219052344683528192" ], - "hardLimitError": true - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "24980403389458909495296", - "outputIndex": 0, - "expectedQty": "21542646054999990977151", - "swapFee": "14718393744189794383", + "expectedQty": "24632021656644837873421804", + "swapFee": "14788085845494199243599", "reserves": [ - "6267370302426101513524669", - "71679490673778606442227735", - "43117836487800812701533771" + "789692234923489637121508859", + "126333410538380040097364953", + "268940871616924980842064622" ], - "mAssetSupply": "120286916655879863380478916", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1180792399062553365666175689" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "31343070061649169743872", - "259004346756240699817984", - "262981938884409108201472" + "811592830195973488640", + "1798016185070611070976", + "1033421771077934120960" ], - "expectedQty": "550854067011827009185631", - "swapFee": "330710866727132485002", + "expectedQty": "3702221155849904044034", "reserves": [ - "6236027232364452343780797", - "71420486327022365742409751", - "42854854548916403593332299" + "789693046516319833094997499", + "126335208554565110708435929", + "268941905038696058776185582" ], - "mAssetSupply": "119736062588868036371293285" + "mAssetSupply": "1180796101283709215570219723" }, { "type": "mintMulti", "inputQtys": [ - "1467423276193608105984", - "1481566698056027471872", - "1617012900393584164864" + "475513480802759142801408", + "280528975523460929290240", + "162673793645811515523072" ], - "expectedQty": "4729546061496858393183", + "expectedQty": "923499006598171704649860", "reserves": [ - "6237494655640645951886781", - "71421967893720421769881623", - "42856471561816797177497163" + "790168559997122592237798907", + "126615737530088571637726169", + "269104578832341870291708654" ], - "mAssetSupply": "119740792134929533229686468" + "mAssetSupply": "1181719600290307387274869583" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1560475511696289169408", - "outputIndex": 1, - "expectedQty": "1808396243003698623543", - "swapFee": "1066045516612436994", + "type": "mintMulti", + "inputQtys": [ + "16500658782319097856", + "2441960973971996160", + "10999867408994633728" + ], + "expectedQty": "29875828168880672821", "reserves": [ - "6239055131152342241056189", - "71420159497477418071258080", - "42856471561816797177497163" + "790168576497781374556896763", + "126615739972049545609722329", + "269104589832209279286342382" ], - "mAssetSupply": "119740793200975049842123462", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1181719630166135556155542404" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2381150672494444624740352", - "outputIndex": 2, - "expectedQty": "2353164109421370148852965", - "swapFee": "1402328581292564086833", + "type": "mintMulti", + "inputQtys": [ + "70311841807225143296", + "250291200580514349056", + "1150546567462602932224" + ], + "expectedQty": "1485069537873011509516", "reserves": [ - "6239055131152342241056189", - "73801310169971862695998432", - "40503307452395427028644198" + "790168646809623181782040059", + "126615990263250126124071385", + "269105740378776741889274606" ], - "mAssetSupply": "119742195529556342406210295", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1181721115235673429167051920" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "65537679043468107710464", - "expectedQty": "65950180230116601195330", - "swapFee": "39322607426080864626", + "type": "redeemBassets", + "inputQtys": [ + "2066131985539104505856", + "12822942686185378545664", + "7036238709366418571264" + ], + "expectedQty": "22391761475180712923904", + "swapFee": "13443122758763685965", "reserves": [ - "6239055131152342241056189", - "73801310169971862695998432", - "40437357272165310427448868" + "790166580677637642677534203", + "126603167320563940745525721", + "269098704140067375470703342" ], - "mAssetSupply": "119676697173120300379364457" + "mAssetSupply": "1181698723474198248454128016" }, { "type": "redeemBassets", "inputQtys": [ - "375379401669597340893184", - "682690425096145807081472", - "274889050066328517345280" + "80710469318607", + "77826096132549", + "37736285188117" ], - "hardLimitError": true + "expectedQty": "198210782467612", + "swapFee": "118997868201", + "reserves": [ + "790166580677556932208215596", + "126603167320486114649393172", + "269098704140029639185515225" + ], + "mAssetSupply": "1181698723474000037671660404" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "621152770731663071117312", - "expectedQty": "624964567209456798699975", - "swapFee": "372691662438997842670", + "inputQty": "15342605360916809503473664", + "expectedQty": "15412315542609898907093077", "reserves": [ - "6239055131152342241056189", - "73801310169971862695998432", - "39812392704955853628748893" - ], - "mAssetSupply": "119055917094051076306089815" + "790166580677556932208215596", + "126603167320486114649393172", + "284441309500946448688988889" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "195278190098762400", - "expectedQty": "196448473053458211", - "swapFee": "117166914059257", + "inputQty": "9901629947838828544", + "outputIndex": 1, + "expectedQty": "9591471736796094306", + "swapFee": "5964647577512846", "reserves": [ - "6239055131152342241056189", - "73801310169971862695998432", - "39812392508507380575290682" + "790166580677556932208215596", + "126603157729014377853298866", + "284441319402576396527817433" ], - "mAssetSupply": "119055916898890053121386672" + "mAssetSupply": "1197111039022574584156266327", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1939999520053162294640640", - "814541898100308568965120", - "2107396479200017751474176" + "type": "mint", + "inputIndex": 1, + "inputQty": "47623867494647246385840128", + "expectedQty": "48853071252886347233100496", + "reserves": [ + "790166580677556932208215596", + "174227025223661624239138994", + "284441319402576396527817433" + ] + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "816206279170157933756416", + "outputIndex": 1, + "expectedQty": "804532646868716657790389", + "swapFee": "491978793417452629419", + "reserves": [ + "790166580677556932208215596", + "173422492576792907581348605", + "285257525681746554461573849" ], - "expectedQty": "5049526300921444220316149", + "mAssetSupply": "1245964602254254348841996242", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "8216258360215706009600", + "expectedQty": "8060891196481842544843", + "swapFee": "4929755016129423605", "reserves": [ - "8179054651205504535696829", - "74615852068072171264963552", - "41919788987707398326764858" + "790166580677556932208215596", + "173414431685596425738803762", + "285257525681746554461573849" ], - "mAssetSupply": "124105443199811497341702821" + "mAssetSupply": "1245956390925649149265410247" }, { "type": "swap", "inputIndex": 0, - "inputQty": "73991510320586", - "outputIndex": 1, - "expectedQty": "81529783680187", - "swapFee": "48224217598", + "inputQty": "15490491351957427563003904", + "outputIndex": 2, + "expectedQty": "15251665363577526574814460", + "swapFee": "9205757697784930643821", "reserves": [ - "8179054651279496046017415", - "74615852067990641481283365", - "41919788987707398326764858" + "805657072029514359771219500", + "173414431685596425738803762", + "270005860318169027886759389" ], - "mAssetSupply": "124105443199811545565920419", + "mAssetSupply": "1245965596683346934196054068", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "583969777813030830080", - "3567571881605665390592", - "11687533911863367565312" + "type": "redeemMasset", + "inputQty": "571557786419301397299", + "expectedQtys": [ + "369465601663339210303", + "79525978935958201698", + "123821761265971144182" ], - "expectedQty": "15777500331623775489345", - "swapFee": "9472183509079713121", + "redemptionFee": "171467335925790419", "reserves": [ - "8178470681501683015187335", - "74612284496109035815892773", - "41908101453795534959199546" + "805656702563912696432009197", + "173414352159617489780602064", + "270005736496407761915615207" ], - "mAssetSupply": "124089665699479921790431074" + "mAssetSupply": "1245965025297027850820447188" }, { "type": "mintMulti", "inputQtys": [ - "657098575031091020693504", - "550349390530544601661440", - "169040585064337018716160" + "45935608052340538474496", + "49059367317218831368192", + "53280783141561197133824" ], - "expectedQty": "1420691702234306811998514", + "expectedQty": "149075226283222200128376", "reserves": [ - "8835569256532774035880839", - "75162633886639580417554213", - "42077142038859871977915706" + "805702638171965036970483693", + "173463411526934708611970256", + "270059017279549323112749031" ], - "mAssetSupply": "125510357401714228602429588" + "mAssetSupply": "1246114100523311073020575564" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "184787831139658851418112", - "expectedQty": "171545971613802553575329", - "swapFee": "110872698683795310850", + "type": "redeemBassets", + "inputQtys": [ + "583556704639678513414144", + "742383372392916311867392", + "157588430221567410044928" + ], + "expectedQty": "1492948732869307371805288", + "swapFee": "896307023935945990677", "reserves": [ - "8664023284918971482305510", - "75162633886639580417554213", - "42077142038859871977915706" + "805119081467325358457069549", + "172721028154541792300102864", + "269901428849327755702704103" ], - "mAssetSupply": "125325680443273253546322326" + "mAssetSupply": "1244621151790441765648770276" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4766167415471094104064", - "expectedQty": "4831352569783511334306", - "swapFee": "2859700449282656462", + "type": "mint", + "inputIndex": 0, + "inputQty": "51821091777456964502552576", + "expectedQty": "51278168063179218021489783", "reserves": [ - "8664023284918971482305510", - "75157802534069796906219907", - "42077142038859871977915706" - ], - "mAssetSupply": "125320917135558231734874724" + "856940173244782322959622125", + "172721028154541792300102864", + "269901428849327755702704103" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "194814241407681045725184", - "expectedQty": "195599986221892717700661", - "swapFee": "116888544844608627435", + "inputQty": "78975699408989339648", + "outputIndex": 0, + "expectedQty": "80371081227636190091", + "swapFee": "47723239162028334", "reserves": [ - "8664023284918971482305510", - "75157802534069796906219907", - "41881542052637979260215045" + "856940092873701095323432034", + "172721028154541792300102864", + "269901507825027164692043751" ], - "mAssetSupply": "125126219782695395297776975" + "mAssetSupply": "1295899319901344222832288393", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "10442070562805548306137088", - "hardLimitError": true + "inputQty": "289072230399284367851520", + "expectedQty": "285906086234425100542523", + "reserves": [ + "857229165104100379691283554", + "172721028154541792300102864", + "269901507825027164692043751" + ] }, { "type": "redeemMasset", - "inputQty": "3494382516365015859", + "inputQty": "48530290344670329", "expectedQtys": [ - "241886384143281969", - "2098291809391294760", - "1169269107008425181" + "32085769044815166", + "6464883888868443", + "10102313124016889" ], - "redemptionFee": "1048314754909504", + "redemptionFee": "14559087103401", "reserves": [ - "8664023043032587339023541", - "75157800435777987514925147", - "41881540883368872251789864" + "857229165072014610646468388", + "172721028148076908411234421", + "269901507814924851568026862" ], - "mAssetSupply": "125126216289361193687670620" + "mAssetSupply": "1296185225939062916675263988" }, { - "type": "redeemMasset", - "inputQty": "1717284360916081783603", - "expectedQtys": [ - "118872991912716893204", - "1031187539438106183235", - "574627288731012243261" - ], - "redemptionFee": "515185308274824535", + "type": "swap", + "inputIndex": 0, + "inputQty": "15701973992362536337408", + "outputIndex": 1, + "expectedQty": "15186582677109737258277", + "swapFee": "9317969774239727902", "reserves": [ - "8663904170040674622130337", - "75156769248238549408741912", - "41880966256080141239546603" + "857244867046006973182805796", + "172705841565399798673976144", + "269901507814924851568026862" ], - "mAssetSupply": "125124499520185585880711552" + "mAssetSupply": "1296185235257032690914991890", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "165592561742706693373952", - "expectedQty": "167857026116858718572043", - "swapFee": "99355537045624016024", + "inputIndex": 0, + "inputQty": "387004144980596352", + "expectedQty": "391056566261663354", + "swapFee": "232202486988357", "reserves": [ - "8663904170040674622130337", - "74988912222121690690169869", - "41880966256080141239546603" + "857244866654950406921142442", + "172705841565399798673976144", + "269901507814924851568026862" ], - "mAssetSupply": "124959006313979924811353624" + "mAssetSupply": "1296185234870260748421383895" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "524947859804984115200", - "720623365438470488064", - "574415417738353180672" + "55706508146516609204224", + "81044987744937530359808", + "187784070585175815225344" ], - "expectedQty": "1847945577848898702467", + "expectedQty": "327050022054459714320095", + "swapFee": "196347821925831327388", "reserves": [ - "8664429117900479606245537", - "74989632845487129160657933", - "41881540671497879592727275" + "857189160146803890311938218", + "172624796577654861143616336", + "269713723744339675752801518" ], - "mAssetSupply": "124960854259557773710056091" + "mAssetSupply": "1295858184848206288707063800" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "1267045738179005440", + "expectedQty": "1276105646857365083", + "reserves": [ + "857189160146803890311938218", + "172624796577654861143616336", + "269713725011385413931806958" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "32413275772501524", + "expectedQty": "32057881937160827", + "reserves": [ + "857189160179217166084439742", + "172624796577654861143616336", + "269713725011385413931806958" + ] }, { "type": "redeemMasset", - "inputQty": "1827650109439271731", + "inputQty": "671488064853457017765888", "expectedQtys": [ - "126686027043554080", - "1096452925562347849", - "612366483923728656" + "444045204052561839446212", + "89423917825594563476965", + "139718386118435346000437" ], - "redemptionFee": "548295032831781", + "redemptionFee": "201446419456037105329", "reserves": [ - "8664428991214452562691457", - "74989631749034203598310084", - "41881540059131395668998619" + "856745114975164604244993530", + "172535372659829266580139371", + "269574006625266978585806521" ], - "mAssetSupply": "124960852432455959303616141" + "mAssetSupply": "1295186899537935816520929151" }, { - "type": "redeemBassets", + "type": "redeem", + "inputIndex": 1, + "inputQty": "7678874448938705476386816", + "expectedQty": "7501152680657909527753746", + "swapFee": "4607324669363223285832", + "reserves": [ + "856745114975164604244993530", + "165034219979171357052385625", + "269574006625266978585806521" + ], + "mAssetSupply": "1287512632413666474267828167" + }, + { + "type": "mintMulti", "inputQtys": [ - "414934687401838016", - "833549131502468224", - "879875446379500288" + "176532591669525404975104", + "293547555817370526154752", + "78867495254936134877184" ], - "expectedQty": "2144788357449535169", - "swapFee": "1287645601830819", + "expectedQty": "554589221583136903073224", "reserves": [ - "8664428576279765160853441", - "74989630915485072095841860", - "41881539179255949289498331" + "856921647566834129649968634", + "165327767534988727578540377", + "269652874120521914720683705" ], - "mAssetSupply": "124960850287667601854080972" + "mAssetSupply": "1288067221635249611170901391" }, { "type": "redeemMasset", - "inputQty": "1596295217862264832", + "inputQty": "3114987706555379482624", "expectedQtys": [ - "110649347969574156", - "957657356423169213", - "534849466568816754" + "2071708341545105081981", + "399699221117590698950", + "651917372169696660488" ], - "redemptionFee": "478888565358679", + "redemptionFee": "934496311966613844", "reserves": [ - "8664428465630417191279285", - "74989629957827715672672647", - "41881538644406482720681577" + "856919575858492584544886653", + "165327367835767609987841427", + "269652222203149745024023217" ], - "mAssetSupply": "124960848691851272557174819" + "mAssetSupply": "1288064107582039367758032611" }, { - "type": "mintMulti", - "inputQtys": [ - "492025353659462320128", - "207841312766570725376", - "312980180779067572224" + "type": "redeemMasset", + "inputQty": "44806834950655869085286", + "expectedQtys": [ + "29800019284236045569627", + "5749382892533477644440", + "9377357745200969989239" ], - "expectedQty": "1046660318494151034657", + "redemptionFee": "13442050485196760725", "reserves": [ - "8664920490984076653599413", - "74989837799140482243398023", - "41881851624587261788253801" + "856889775839208348499317026", + "165321618452875076510196987", + "269642844845404544054033978" ], - "mAssetSupply": "124961895352169766708209476" + "mAssetSupply": "1288019314189139197085708050" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "191667274778156984172544", - "expectedQty": "177498966112812496984248", - "swapFee": "115000364866894190503", - "reserves": [ - "8487421524871264156615165", - "74989837799140482243398023", - "41881851624587261788253801" + "type": "redeemMasset", + "inputQty": "3227232785615965489882726", + "expectedQtys": [ + "2146360021902570296001866", + "414101933070637375114829", + "675408481565141123126950" ], - "mAssetSupply": "124770343077756476618227435" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "1825894279036363520", - "outputIndex": 2, - "expectedQty": "1981643494067299147", - "swapFee": "1184053211223693", + "redemptionFee": "968169835684789646964", "reserves": [ - "8487423350765543192978685", - "74989837799140482243398023", - "41881849642943767720954654" + "854743415817305778203315160", + "164907516519804439135082158", + "268967436363839402930907028" ], - "mAssetSupply": "124770343078940529829451128", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1284793049573358916385472288" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1300973116002238201856", - "expectedQty": "1282310174137120601314", + "inputIndex": 0, + "inputQty": "11493562059211105823096832", + "expectedQty": "11361704322130790645111998", "reserves": [ - "8487423350765543192978685", - "74991138772256484481599879", - "41881849642943767720954654" + "866236977876516884026411992", + "164907516519804439135082158", + "268967436363839402930907028" ] }, { "type": "mintMulti", "inputQtys": [ - "87443580406612956807168", - "229115723542055446642688", - "305651071127729727340544" + "730549317642791390543872", + "220814211232224300236800", + "578506599460657835278336" ], - "expectedQty": "624507253298131278709965", + "expectedQty": "1531154334014115320568271", "reserves": [ - "8574866931172156149785853", - "75220254495798539928242567", - "42187500714071497448295198" + "866967527194159675416955864", + "165128330731036663435318958", + "269545942963300060766185364" ], - "mAssetSupply": "125396132642412798228762407" + "mAssetSupply": "1297685908229503822351152557" }, { - "type": "redeemBassets", - "inputQtys": [ - "240234654987394987589632", - "705809689811504074850304", - "70151906739695915106304" + "type": "redeemMasset", + "inputQty": "739769531879233764406067", + "expectedQtys": [ + "494082389916036984830583", + "94106177833999478468006", + "153613485527530654239748" ], - "expectedQty": "1025298013657485045444812", - "swapFee": "615548137076737069508", + "redemptionFee": "221930859563770129321", "reserves": [ - "8334632276184761162196221", - "74514444805987035853392263", - "42117348807331801533188894" + "866473444804243638432125281", + "165034224553202663956850952", + "269392329477772530111945616" ], - "mAssetSupply": "124370834628755313183317595" + "mAssetSupply": "1296946360628484152356875811" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2286144270194307072", - "expectedQty": "2318299424287900196", - "swapFee": "1371686562116584", + "type": "mintMulti", + "inputQtys": [ + "4432855904329102440529920", + "4623796033818816659062784", + "984662338510721243938816" + ], + "expectedQty": "10109524290526545045448204", "reserves": [ - "8334632276184761162196221", - "74514442487687611565492067", - "42117348807331801533188894" + "870906300708572740872655201", + "169658020587021480615913736", + "270376991816283251355884432" ], - "mAssetSupply": "124370832343982729551127107" + "mAssetSupply": "1307055884919010697402324015" }, { - "type": "redeemBassets", - "inputQtys": [ - "13986359312870157582336", - "310748663812670558830592", - "50538003350567298007040" - ], - "expectedQty": "371693337625891031513622", - "swapFee": "223149892511041243654", + "type": "redeem", + "inputIndex": 2, + "inputQty": "522110565760925240918016", + "expectedQty": "517940225092539791726613", + "swapFee": "313266339456555144550", "reserves": [ - "8320645916871891004613885", - "74203693823874941006661475", - "42066810803981234235181854" + "870906300708572740872655201", + "169658020587021480615913736", + "269859051591190711564157819" ], - "mAssetSupply": "123999139006356838519613485" + "mAssetSupply": "1306534087619589228716550549" }, { "type": "redeemBassets", "inputQtys": [ - "1007031930531668673167360", - "2383060955760899102081024", - "2979724014108789214019584" + "7637181671698604228608", + "7612238315110422020096", + "450757895252037468160" ], - "expectedQty": "6409241127500756057498486", - "swapFee": "3847853388533573778766", + "expectedQty": "15796292222047459008280", + "swapFee": "9483465412475960981", "reserves": [ - "7313613986340222331446525", - "71820632868114041904580451", - "39087086789872445021162270" + "870898663526901042268426593", + "169650408348706370193893640", + "269858600833295459526689659" ], - "mAssetSupply": "117589897878856082462114999" + "mAssetSupply": "1306518291327367181257542269" }, { "type": "mintMulti", "inputQtys": [ - "207651981706810392576", - "82541141920028016640", - "152219698114695790592" - ], - "expectedQty": "460711636301898000523", - "reserves": [ - "7313821638321929141839101", - "71820715409255961932597091", - "39087239009570559716952862" + "21042512636258712180228096", + "22173737855953252925833216", + "28518425808297842907807744" ], - "mAssetSupply": "117590358590492384360115522" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "582555158616630534078464", - "outputIndex": 1, - "expectedQty": "644804859615961021742823", - "swapFee": "381394709288286424751", + "expectedQty": "72172661925559733270480603", "reserves": [ - "7896376796938559675917565", - "71175910549640000910854268", - "39087239009570559716952862" + "891941176163159754448654689", + "191824146204659623119726856", + "298377026641593302434497403" ], - "mAssetSupply": "117590739985201672646540273", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1378690953252926914528022872" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "6404393514816957841408", - "expectedQty": "6430408014969723722391", - "swapFee": "3842636108890174704", + "inputIndex": 1, + "inputQty": "3298672407862899072040960", + "expectedQty": "3233287175327662298167743", + "swapFee": "1979203444717739443224", "reserves": [ - "7896376796938559675917565", - "71175910549640000910854268", - "39080808601555589993230471" + "891941176163159754448654689", + "188590859029331960821559113", + "298377026641593302434497403" ], - "mAssetSupply": "117584339434322964578873569" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "2032906104301600144097280", - "expectedQty": "2022705555344451080208290", - "reserves": [ - "7896376796938559675917565", - "71175910549640000910854268", - "41113714705857190137327751" - ] + "mAssetSupply": "1375394260048508733195425136" }, { - "type": "redeemMasset", - "inputQty": "915517746466354627818291", - "expectedQtys": [ - "60423734313305878660424", - "544644008151493927421613", - "314605576443986032640284" + "type": "redeemBassets", + "inputQtys": [ + "2302204501575528857206784", + "11012134103260299635195904", + "721726424415862507175936" ], - "redemptionFee": "274655323939906388345", + "expectedQty": "14250166614080651763622559", + "swapFee": "8555233108313379085624", "reserves": [ - "7835953062625253797257141", - "70631266541488506983432655", - "40799109129413204104687467" + "889638971661584225591447905", + "177578724926071661186363209", + "297655300217177439927321467" ], - "mAssetSupply": "118691801898525000937651913" + "mAssetSupply": "1361144093434428081431802577" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "7036095815589058396028928", - "expectedQty": "7128814391568564721218227", - "swapFee": "4221657489353435037617", + "inputIndex": 0, + "inputQty": "5484871319783593629188096", + "expectedQty": "5540291620536945428502313", + "swapFee": "3290922791870156177512", "reserves": [ - "7835953062625253797257141", - "63502452149919942262214428", - "40799109129413204104687467" + "884098680041047280162945592", + "177578724926071661186363209", + "297655300217177439927321467" ], - "mAssetSupply": "111659927740425295976660602" + "mAssetSupply": "1355662513037436357958791993" }, { - "type": "redeemMasset", - "inputQty": "93989468960015889360486", - "expectedQtys": [ - "6593915408428580120069", - "53436996668797049097904", - "34332246784600572683159" - ], - "redemptionFee": "28196840688004766808", - "reserves": [ - "7829359147216825217137072", - "63449015153251145213116524", - "40764776882628603532004308" + "type": "redeemBassets", + "inputQtys": [ + "17636780290521939658670080", + "10316456180087507321356288", + "24452034268689561737494528" ], - "mAssetSupply": "111565966468305968092066924" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "235720840011131", - "expectedQty": "236997044562894", - "swapFee": "141432504006", + "expectedQty": "52606697692335779561829946", + "swapFee": "31582968396439331335899", "reserves": [ - "7829359147216825217137072", - "63449015153251145213116524", - "40764776882391606487441414" + "866461899750525340504275512", + "167262268745984153865006921", + "273203265948487878189826939" ], - "mAssetSupply": "111565966468070388684559799" + "mAssetSupply": "1303055815345100578396962047" }, { - "type": "redeemMasset", - "inputQty": "5596673541271909197414", - "expectedQtys": [ - "392639646847187331758", - "3181946112592149951000", - "2044339427780162633666" + "type": "redeemBassets", + "inputQtys": [ + "402592881272294792495104", + "280388187633129592193024", + "180928917384172006277120" ], - "redemptionFee": "1679002062381572759", + "expectedQty": "867379273263466826214111", + "swapFee": "520740007962857810414", "reserves": [ - "7828966507569978029805314", - "63445833207138553063165524", - "40762732542963826324807748" + "866059306869253045711780408", + "166981880558351024272813897", + "273022337031103706183549819" ], - "mAssetSupply": "111560371473531179156935144" + "mAssetSupply": "1302188436071837111570747936" }, { "type": "redeemBassets", "inputQtys": [ - "8207964442744635145584640", - "3087927508727877093818368", - "3885676140051337161211904" + "123071346374500859904", + "125014549056456589312", + "207705685020039970816" ], - "insufficientLiquidityError": true - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "5024048685109563308900352", - "outputIndex": 2, - "expectedQty": "4977308205615465145410685", - "swapFee": "2974229122828061941816", + "expectedQty": "458879211283049214281", + "swapFee": "275492822463307513", "reserves": [ - "7828966507569978029805314", - "68469881892248116372065876", - "35785424337348361179397063" + "866059183797906671210920504", + "166981755543801967816224585", + "273022129325418686143579003" ], - "mAssetSupply": "111563345702654007218876960", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1302187977192625828521533655" }, { "type": "redeemMasset", - "inputQty": "28167977746855673856", + "inputQty": "54417854877458157377945", "expectedQtys": [ - "1976097033763976790", - "17282374420508011430", - "9032542266804076216" + "36181369417866402839686", + "6975999673463382134251", + "11406050192847509012164" ], - "redemptionFee": "8450393324056702", + "redemptionFee": "16325356463237447213", "reserves": [ - "7828964531472944265828524", - "68469864609873695864054446", - "35785415304806094375320847" + "866023002428488804808080818", + "166974779544128504434090334", + "273010723275225838634566839" ], - "mAssetSupply": "111563317543126653687259806" + "mAssetSupply": "1302133575663104833601602923" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "52912275821346636693504", - "expectedQty": "53075997989156294669771", - "swapFee": "31747365492807982016", - "reserves": [ - "7828964531472944265828524", - "68469864609873695864054446", - "35732339306816938080651076" - ], - "mAssetSupply": "111510437014670799858548318" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "321012319758803533824", - "241382516527208529920", - "237181649192498135040" - ], - "expectedQty": "819921853981250371248", - "swapFee": "492248461465629600", + "inputQty": "866501942247962246643712", + "expectedQty": "872590371959897056983681", "reserves": [ - "7828643519153185462294700", - "68469623227357168655524526", - "35732102125167745582516036" - ], - "mAssetSupply": "111509617092816818608177070" + "866023002428488804808080818", + "166974779544128504434090334", + "273877225217473800881210551" + ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3551079044631327408128", - "expectedQty": "3824360848142756810259", + "inputIndex": 1, + "inputQty": "2170546790168109179207680", + "expectedQty": "2222254594075993291605097", "reserves": [ - "7832194598197816789702828", - "68469623227357168655524526", - "35732102125167745582516036" + "866023002428488804808080818", + "169145326334296613613298014", + "273877225217473800881210551" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "754734121068428663980032", - "152878768643836074786816", - "249994088501199327199232" - ], - "expectedQty": "1218208517075344649434937", - "swapFee": "731363928602368210587", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3024689474088432304128", + "expectedQty": "2953466453542344049866", + "swapFee": "1814813684453059382", "reserves": [ - "7077460477129388125722796", - "68316744458713332580737710", - "35482108036666546255316804" + "866023002428488804808080818", + "169142372867843071269248148", + "273877225217473800881210551" ], - "mAssetSupply": "110295232936589616715552392" + "mAssetSupply": "1305225397754480319970946955" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5370661158170128285696", - "expectedQty": "4909364597352435173532", - "swapFee": "3222396694902076971", + "type": "redeemMasset", + "inputQty": "214560715482919175245004", + "expectedQtys": [ + "142319304382825748351390", + "27796288067070956509493", + "45008061067601901163294" + ], + "redemptionFee": "64368214644875752573", "reserves": [ - "7072551112532035690549264", - "68316744458713332580737710", - "35482108036666546255316804" + "865880683124105979059729428", + "169114576579776000312738655", + "273832217156406198980047257" ], - "mAssetSupply": "110289865497828141489343667" + "mAssetSupply": "1305010901407212045671454524" }, { "type": "mintMulti", "inputQtys": [ - "52353365604502178103296", - "71299297937308354871296", - "68392946211551447089152" + "1779435299388813916241920", + "1768695838033645108461568", + "753188668173123823075328" ], - "expectedQty": "195478881619392397425438", + "expectedQty": "4327915960494883425952594", "reserves": [ - "7124904478136537868652560", - "68388043756650640935609006", - "35550500982878097702405956" + "867660118423494792975971348", + "170883272417809645421200223", + "274585405824579322803122585" ], - "mAssetSupply": "110485344379447533886769105" + "mAssetSupply": "1309338817367706929097407118" }, { "type": "mintMulti", "inputQtys": [ - "194575000915530682990592", - "578981849771076724195328", - "118088736778533390516224" + "11800004893205994668032", + "2305620587161375735808", + "26170897562295517315072" ], - "expectedQty": "899658987605590183594342", + "expectedQty": "40381529080720983262606", "reserves": [ - "7319479479052068551643152", - "68967025606421717659804334", - "35668589719656631092922180" + "867671918428387998970639380", + "170885578038396806796936031", + "274611576722141618320437657" ], - "mAssetSupply": "111385003367053124070363447" + "mAssetSupply": "1309379198896787650080669724" }, { "type": "mint", "inputIndex": 2, - "inputQty": "825349300667134902272", - "expectedQty": "822020837422500654807", + "inputQty": "5324593433472445968285696", + "expectedQty": "5360703215701901236511123", "reserves": [ - "7319479479052068551643152", - "68967025606421717659804334", - "35669415068957298227824452" + "867671918428387998970639380", + "170885578038396806796936031", + "279936170155614064288723353" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "9223984252291015245824", - "expectedQty": "9364563573085444078394", - "swapFee": "5534390551374609147", + "inputIndex": 0, + "inputQty": "2257178460580847202336768", + "expectedQty": "2280869243787962666213954", + "swapFee": "1354307076348508321402", "reserves": [ - "7319479479052068551643152", - "68957661042848632215725940", - "35669415068957298227824452" + "865391049184600036304425426", + "170885578038396806796936031", + "279936170155614064288723353" ], - "mAssetSupply": "111376606938028806930381577" + "mAssetSupply": "1312484077958985052623165481" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "153668586713198374972030976", + "hardLimitError": true }, { "type": "redeemBassets", "inputQtys": [ - "1012160955267369373007872", - "305094740382439505395712", - "934651057614228788609024" + "488576078105369444352", + "498375481256214659072", + "258919068480295927808" ], - "expectedQty": "2345736781407247127766965", - "swapFee": "1408287041068989670462", + "expectedQty": "1253668421597398252523", + "swapFee": "752652644545166051", "reserves": [ - "6307318523784699178635280", - "68652566302466192710330228", - "34734764011343069439215428" + "865390560608521930934981074", + "170885079662915550582276959", + "279935911236545583992795545" ], - "mAssetSupply": "109030870156621559802614612" + "mAssetSupply": "1312482824290563455224912958" }, { - "type": "redeemMasset", - "inputQty": "1088497931909205830769049", - "expectedQtys": [ - "62949543631288136381120", - "685179875022991154205030", - "346666738711414903541835" + "type": "redeemBassets", + "inputQtys": [ + "61736958496271450112", + "64782322394513588224", + "36905978621155680256" ], - "redemptionFee": "326549379572761749230", + "expectedQty": "164479473047883883159", + "swapFee": "98746931987923083", "reserves": [ - "6244368980153411042254160", - "67967386427443201556125198", - "34388097272631654535673593" + "865390498871563434663530962", + "170885014880593156068688735", + "279935874330566962837115289" ], - "mAssetSupply": "107942698774091926733594793" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "4516338804677950924914688", - "expectedQty": "4825241670977171262979471", - "reserves": [ - "10760707784831361967168848", - "67967386427443201556125198", - "34388097272631654535673593" - ] + "mAssetSupply": "1312482659811090407341029799" }, { "type": "mintMulti", "inputQtys": [ - "1543973530914639052800", - "913046176357664555008", - "3245612841781552480256" + "638667581160171765760", + "595089785254042927104", + "533746268145347723264" ], - "expectedQty": "5749914161921652292704", + "expectedQty": "1777672635102560212932", "reserves": [ - "10762251758362276606221648", - "67968299473619559220680206", - "34391342885473436088153849" + "865391137539144594835296722", + "170885609970378410111615839", + "279936408076835108184838553" ], - "mAssetSupply": "112773690359231019648866968" + "mAssetSupply": "1312484437483725509901242731" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "963175938820024809029632", - "outputIndex": 0, - "expectedQty": "920430310453767304785733", - "swapFee": "576983028582109737126", + "type": "redeemBassets", + "inputQtys": [ + "9274597467117463554490368", + "7489157201224030077583360", + "3339615706639094933094400" + ], + "expectedQty": "20200515837763830667394278", + "swapFee": "12127586054290872924191", "reserves": [ - "9841821447908509301435915", - "67968299473619559220680206", - "35354518824293460897183481" + "856116540072027131280806354", + "163396452769154380034032479", + "276596792370196013251744153" ], - "mAssetSupply": "112774267342259601758604094", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1292283921645961679233848453" }, { "type": "redeemBassets", "inputQtys": [ - "191735790964698576322560", - "59542376665982533894144", - "118683320377319610122240" + "589224482009961717563392", + "2847500886562831645802496", + "251097706292138655875072" ], - "expectedQty": "378417217841041635813992", - "swapFee": "227186642690239124963", + "expectedQty": "3754372581796406176533097", + "swapFee": "2253975934638626882049", "reserves": [ - "9650085656943810725113355", - "67908757096953576686786062", - "35235835503916141287061241" + "855527315590017169563242962", + "160548951882591548388229983", + "276345694663903874595869081" ], - "mAssetSupply": "112395850124418560122790102" + "mAssetSupply": "1288529549064165273057315356" }, { - "type": "redeemBassets", - "inputQtys": [ - "106295127067063140352", - "86188905704279703552", - "64313648246088335360" - ], - "expectedQty": "260951567328965893517", - "swapFee": "156664939360996133", + "type": "redeem", + "inputIndex": 2, + "inputQty": "2249209130542746409369600", + "expectedQty": "2233169697008627932249115", + "swapFee": "1349525478325647845621", "reserves": [ - "9649979361816743661973003", - "67908670908047872407082510", - "35235771190267895198725881" + "855527315590017169563242962", + "160548951882591548388229983", + "274112524966895246663619966" ], - "mAssetSupply": "112395589172851231156896585" + "mAssetSupply": "1286281689459100852295791377" }, { - "type": "redeemBassets", - "inputQtys": [ - "67125796705293509328896", - "81655166913748785954816", - "74224408854341747736576" + "type": "redeemMasset", + "inputQty": "744378666983259", + "expectedQtys": [ + "494950085256641", + "92882735564497", + "158582917377349" ], - "expectedQty": "225245548071976889708438", - "swapFee": "135228465922739777691", + "redemptionFee": "223313600094", "reserves": [ - "9582853565111450152644107", - "67827015741134123621127694", - "35161546781413553450989305" + "855527315589522219477986321", + "160548951882498665652665486", + "274112524966736663746242617" ], - "mAssetSupply": "112170343624779254267188147" + "mAssetSupply": "1286281689458356696942408212" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "368058967386345897984", - "expectedQty": "367206840565348921212", + "type": "redeemMasset", + "inputQty": "6156845888658180197580", + "expectedQtys": [ + "4093791953836183169644", + "768244327722614524901", + "1311658469234608382666" + ], + "redemptionFee": "1847053766597454059", "reserves": [ - "9582853565111450152644107", - "67827015741134123621127694", - "35161914840380939796887289" - ] + "855523221797568383294816677", + "160548183638170943038140585", + "274111213308267429137859951" + ], + "mAssetSupply": "1286275534459521805359664691" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5702270977791060955103232", - "outputIndex": 2, - "expectedQty": "5628781361482812959525150", - "swapFee": "3378540444538367721815", + "type": "redeemMasset", + "inputQty": "4971691095931077199606579", + "expectedQtys": [ + "3305762296726478013778012", + "620362041329329604605634", + "1059172318152258907193285" + ], + "redemptionFee": "1491507328779323159881", "reserves": [ - "9582853565111450152644107", - "73529286718925184576230926", - "29533133478898126837362139" + "852217459500841905281038665", + "159927821596841613433534951", + "273052040990115170230666666" ], - "mAssetSupply": "112174089372064357983831174", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1281305334870919507483217993" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1180104049381158682624", - "expectedQty": "1117730778768879649204", - "swapFee": "708062429628695209", + "type": "redeemMasset", + "inputQty": "706804503326878355528089", + "expectedQtys": [ + "469966382297310444556267", + "88194273546777852893327", + "150578093011827781637548" + ], + "redemptionFee": "212041350998063506658", "reserves": [ - "9581735834332681272994903", - "73529286718925184576230926", - "29533133478898126837362139" + "851747493118544594836482398", + "159839627323294835580641624", + "272901462897103342449029118" ], - "mAssetSupply": "112172909976077406453843759" + "mAssetSupply": "1280598742408943627191196562" }, { "type": "mintMulti", "inputQtys": [ - "3201069152183421239296", - "4521995149633731428352", - "10523377952963814227968" + "1830902618272998621184", + "882848870520675631104", + "1796105140876700024832" ], - "expectedQty": "18373147430643607692833", + "expectedQty": "4523356461159308860431", "reserves": [ - "9584936903484864694234199", - "73533808714074818307659278", - "29543656856851090651590107" + "851749324021162867835103582", + "159840510172165356256272728", + "272903259002244219149053950" ], - "mAssetSupply": "112191283123508050061536592" + "mAssetSupply": "1280603265765404786500056993" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "15413522389002576", - "expectedQty": "15195724484570248", + "type": "swap", + "inputIndex": 0, + "inputQty": "29497222602485120496566272", + "outputIndex": 1, + "expectedQty": "28187494577283810908597311", + "swapFee": "17489636248272496849152", "reserves": [ - "9584936903484864694234199", - "73533808729488340696661854", - "29543656856851090651590107" - ] + "881246546623647988331669854", + "131653015594881545347675417", + "272903259002244219149053950" + ], + "mAssetSupply": "1280620755401653058996906145", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2159097772509818257408", - "6441459963957291778048", - "10514340024652958531584" + "121736525130036926218240", + "74509194943602217713664", + "80225973949329013997568" ], - "expectedQty": "19156922704103718291785", + "expectedQty": "278367603261467687394431", "reserves": [ - "9587096001257374512491607", - "73540250189452297988439902", - "29554171196875743610121691" + "881368283148778025257888094", + "131727524789825147565389081", + "272983484976193548163051518" ], - "mAssetSupply": "112210440061407878264398625" + "mAssetSupply": "1280899123004914526684300576" }, { - "type": "mintMulti", - "inputQtys": [ - "126410002848337453121536", - "165513990549444963074048", - "98225519307147144331264" + "type": "redeemMasset", + "inputQty": "470777807667800780", + "expectedQtys": [ + "323838264895663507", + "48400213489117112", + "100301428823868054" ], - "expectedQty": "394850345604927924784374", + "redemptionFee": "141233342300340", "reserves": [ - "9713506004105711965613143", - "73705764180001742951513950", - "29652396716182890754452955" + "881368282824939760362224587", + "131727524741424934076271969", + "272983484875892119339183464" ], - "mAssetSupply": "112605290407012806189182999" + "mAssetSupply": "1280899122534277952358800136" }, { "type": "redeemMasset", - "inputQty": "559142920627355955", + "inputQty": "22748295526908684", "expectedQtys": [ - "48218060853150479", - "365877060348456790", - "147195159883395877" + "15648079482043408", + "2338730377861889", + "4846631484096196" ], - "redemptionFee": "167742876188206", + "redemptionFee": "6824488658072", "reserves": [ - "9713505955887651112462664", - "73705763814124682603057160", - "29652396568987730871057078" + "881368282809291680880181179", + "131727524739086203698410080", + "272983484871045487855087268" ], - "mAssetSupply": "112605289848037628438015250" + "mAssetSupply": "1280899122511536481320549524" }, { "type": "mint", "inputIndex": 2, - "inputQty": "2945843066285913538560", - "expectedQty": "2949797239243957954621", + "inputQty": "28435664852582855149092864", + "expectedQty": "28608435662031407635900087", "reserves": [ - "9713505955887651112462664", - "73705763814124682603057160", - "29655342412054016784595638" + "881368282809291680880181179", + "131727524739086203698410080", + "301419149723628343004180132" ] }, + { + "type": "redeemMasset", + "inputQty": "467226748337387417", + "expectedQtys": [ + "314374128384425530", + "46985722747012719", + "107512811977650783" + ], + "redemptionFee": "140168024501216", + "reserves": [ + "881368282494917552495755649", + "131727524692100480951397361", + "301419149616115531026529349" + ], + "mAssetSupply": "1309507557706481308643563410" + }, { "type": "swap", - "inputIndex": 0, - "inputQty": "253630242751170871296", - "outputIndex": 1, - "expectedQty": "270946172999472133084", - "swapFee": "160391296919429225", + "inputIndex": 2, + "inputQty": "9945767573379332408606720", + "outputIndex": 0, + "expectedQty": "10118580674993741010134908", + "swapFee": "5994788459660233857914", "reserves": [ - "9713759586130402283333960", - "73705492867951683130924076", - "29655342412054016784595638" + "871249701819923811485620741", + "131727524692100480951397361", + "311364917189494863435136069" ], - "mAssetSupply": "112608239805668169315399096", + "mAssetSupply": "1309513552494940968877421324", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "791220568194025", - "expectedQty": "833921853695958", + "type": "mintMulti", + "inputQtys": [ + "33245473421187400859648", + "27265414645197337264128", + "2983099425373390635008" + ], + "expectedQty": "64169148574349197828760", "reserves": [ - "9713759586921622851527985", - "73705492867951683130924076", - "29655342412054016784595638" - ] + "871282947293344998886480389", + "131754790106745678288661489", + "311367900288920236825771077" + ], + "mAssetSupply": "1309577721643515318075250084" }, { "type": "mintMulti", "inputQtys": [ - "5302520740722197397504", - "42221707755956140507136", - "198395999021216808566784" + "101683777151717095768064", + "27417675998005655764992", + "77026646950589774168064" ], - "expectedQty": "245872011121180978638891", + "expectedQty": "206212553194528278814753", "reserves": [ - "9719062107662345048925489", - "73747714575707639271431212", - "29853738411075233593162422" + "871384631070496715982248453", + "131782207782743683944426481", + "311444926935870826599939141" ], - "mAssetSupply": "112854111817623272147733945" + "mAssetSupply": "1309783934196709846354064837" }, { "type": "mintMulti", "inputQtys": [ - "1552177612745803342807040", - "1643880672047032078172160", - "1618463984358242012626944" + "845426175743779917529088", + "195687709684701119643648", + "2653882533220511003967488" ], - "expectedQty": "4869077964261384362523733", + "expectedQty": "3702300122534346551751312", "reserves": [ - "11271239720408148391732529", - "75391595247754671349603372", - "31472202395433475605789366" + "872230057246240495899777541", + "131977895492428385064070129", + "314098809469091337603906629" ], - "mAssetSupply": "117723189781884656510257678" + "mAssetSupply": "1313486234319244192905816149" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "237368842034075533312", - "outputIndex": 0, - "expectedQty": "224813956906788628891", - "swapFee": "140676175307588977", + "type": "redeemBassets", + "inputQtys": [ + "64951941795149330251776", + "70467042735818918592512", + "316674821486418142953472" + ], + "expectedQty": "455310411961521762545243", + "swapFee": "273350257331311844633", "reserves": [ - "11271014906451241603103638", - "75391832616596705425136684", - "31472202395433475605789366" + "872165105304445346569525765", + "131907428449692566145477617", + "313782134647604919460953157" ], - "mAssetSupply": "117723189922560831817846655", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1313030923907282671143270906" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "8354254821081311232", - "expectedQty": "8363647095027929352", + "type": "redeem", + "inputIndex": 1, + "inputQty": "188377173033339483848704", + "expectedQty": "180967539676101813222544", + "swapFee": "113026303820003690309", "reserves": [ - "11271014906451241603103638", - "75391832616596705425136684", - "31472210749688296687100598" - ] + "872165105304445346569525765", + "131726460910016464332255073", + "313782134647604919460953157" + ], + "mAssetSupply": "1312842659760553151663112511" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "2199690892562686357274624", - "expectedQty": "2277425027437538058750744", + "type": "redeemBassets", + "inputQtys": [ + "354559873098668727861248", + "114710534791292885401600", + "486039978444192189775872" + ], + "expectedQty": "957210344180998477033217", + "swapFee": "574671009114067526735", "reserves": [ - "13470705799013927960378262", - "75391832616596705425136684", - "31472210749688296687100598" - ] + "871810545431346677841664517", + "131611750375225171446853473", + "313296094669160727271177285" + ], + "mAssetSupply": "1311885449416372153186079294" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "272809616043864355766272", - "422684691317740426756096", - "1659717548998369931689984" + "2252645453481140327284736", + "378600789612578998321152", + "6094230238327674444447744" ], - "expectedQty": "2361164487225134270007528", + "expectedQty": "8736071516776063070033640", + "swapFee": "5244789783935999441685", "reserves": [ - "13743515415057792316144534", - "75814517307914445851892780", - "33131928298686666618790582" + "869557899977865537514379781", + "131233149585612592448532321", + "307201864430833052826729541" ], - "mAssetSupply": "122361787800870599174534279" + "mAssetSupply": "1303149377899596090116045654" }, { "type": "mintMulti", "inputQtys": [ - "86780880408986536378368", - "100624707177156018438144", - "240811323514002622906368" + "4683524981987257184419840", + "9238748667652303340175360", + "5743425756875786670833664" ], - "expectedQty": "429966762629909849819593", + "expectedQty": "19980063028025772089643601", "reserves": [ - "13830296295466778852522902", - "75915142015091601870330924", - "33372739622200669241696950" + "874241424959852794698799621", + "140471898253264895788707681", + "312945290187708839497563205" ], - "mAssetSupply": "122791754563500509024353872" + "mAssetSupply": "1323129440927621862205689255" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "1712159287863575838720", - "expectedQty": "1713897725645897316546", + "inputQty": "104626109056403153879040", + "expectedQty": "104135908199214491533874", + "swapFee": "62775665433841892327", "reserves": [ - "13830296295466778852522902", - "75915142015091601870330924", - "33374451781488532817535670" - ] + "874241424959852794698799621", + "140471898253264895788707681", + "312841154279509625006029331" + ], + "mAssetSupply": "1323024877594230892893702542" }, { "type": "redeemMasset", - "inputQty": "5956848279926326532505", + "inputQty": "58813663578338087875379", "expectedQtys": [ - "670721840808003851181", - "3681623495966090587318", - "1618546215974792974988" + "38851813538826289427798", + "6242655452561575019636", + "13902848625477632269838" ], - "redemptionFee": "1787054483977897959", + "redemptionFee": "17644099073501426362", "reserves": [ - "13829625573625970848671721", - "75911460391595635779743606", - "33372833235272558024560682" + "874202573146313968409371823", + "140465655597812334213688045", + "312827251430884147373759493" ], - "mAssetSupply": "122787513400000712573035872" + "mAssetSupply": "1322966081574751628307253525" }, { - "type": "mint", + "type": "mintMulti", + "inputQtys": [ + "2224716659131648512", + "1953661546010044160", + "1379359649420400384" + ], + "expectedQty": "5605425020811562496", + "reserves": [ + "874202575371030627541020335", + "140465657551473880223732205", + "312827252810243796794159877" + ], + "mAssetSupply": "1322966087180176649118816021" + }, + { + "type": "swap", "inputIndex": 2, - "inputQty": "15017250349308826353664", - "expectedQty": "15032445521414983944858", + "inputQty": "46463062414915972297129984", + "outputIndex": 0, + "expectedQty": "47088837934526404437617670", + "swapFee": "27955639582622608752405", "reserves": [ - "13829625573625970848671721", - "75911460391595635779743606", - "33387850485621866850914346" - ] + "827113737436504223103402665", + "140465657551473880223732205", + "359290315225159769091289861" + ], + "mAssetSupply": "1322994042819759271727568426", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "24667693675251941507072", - "21387527360586421633024", - "25314921257567256576000" + "33228091295348207648768", + "52557051739560273248256", + "32106036602592391331840" ], - "expectedQty": "71892425228739271967870", - "swapFee": "43161351948412610747", + "expectedQty": "119302768835016439593063", + "swapFee": "71624636082659459431", "reserves": [ - "13804957879950718907164649", - "75890072864235049358110582", - "33362535564364299594338346" + "827080509345208874895753897", + "140413100499734319950483949", + "359258209188557176699958021" ], - "mAssetSupply": "122730653420293388285012860" + "mAssetSupply": "1322874740050924255287975363" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3326469736934194987139072", - "expectedQty": "3357017947546116788649792", - "swapFee": "1995881842160516992283", + "type": "redeemBassets", + "inputQtys": [ + "3892977508533164773998592", + "18298363117766479297118208", + "9529820635422667357290496" + ], + "expectedQty": "32375821411779483922918428", + "swapFee": "19437155140151781422604", "reserves": [ - "13804957879950718907164649", - "72533054916688932569460790", - "33362535564364299594338346" + "823187531836675710121755305", + "122114737381967840653365741", + "349728388553134509342667525" ], - "mAssetSupply": "119406179565201353814866071" + "mAssetSupply": "1290498918639144771365056935" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3792254472675170189312", - "expectedQty": "3794377309574631693511", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1151691578746778370965504", + "expectedQty": "1103004264130139571869731", + "swapFee": "691014947248067022579", "reserves": [ - "13804957879950718907164649", - "72533054916688932569460790", - "33366327818836974764527658" - ] + "823187531836675710121755305", + "121011733117837701081496010", + "349728388553134509342667525" + ], + "mAssetSupply": "1289347918075345241061114010" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "106898990427074776268800", - "101147076534895604924416", - "52618089391409565007872" + "14133981432108875251712", + "26129744344254932582400", + "15658287599778543960064" ], - "expectedQty": "262579872548560819958627", + "expectedQty": "56907231021676655827880", + "swapFee": "34164837515515302678", "reserves": [ - "13911856870377793683433449", - "72634201993223828174385206", - "33418945908228384329535530" + "823173397855243601246503593", + "120985603373493446148913610", + "349712730265534730798707461" ], - "mAssetSupply": "119672553815059489266518209" + "mAssetSupply": "1289291010844323564405286130" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "953548119633084958113792", - "outputIndex": 2, - "expectedQty": "975452147650851881021144", - "swapFee": "586207617598935177835", + "type": "redeem", + "inputIndex": 2, + "inputQty": "202629846668561136746496", + "expectedQty": "202350099715449175277533", + "swapFee": "121577908001136682047", "reserves": [ - "14865404990010878641547241", - "72634201993223828174385206", - "32443493760577532448514386" + "823173397855243601246503593", + "120985603373493446148913610", + "349510380165819281623429928" ], - "mAssetSupply": "119673140022677088201696044", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1289088502575563004405221681" }, { "type": "redeemMasset", - "inputQty": "6379932018814355046", + "inputQty": "26018378930656287444172", "expectedQtys": [ - "792256484357864247", - "3871062884190441024", - "1729086313108422755" + "16609574949305108863394", + "2441186088198051463899", + "7052243026863648021644" ], - "redemptionFee": "1913979605644306", + "redemptionFee": "7805513679196886233", "reserves": [ - "14865404197754394283682994", - "72634198122160943983944182", - "32443492031491219340091631" + "823156788280294296137640199", + "120983162187405248097449711", + "349503327922792417975408284" ], - "mAssetSupply": "119673133644659048992985304" + "mAssetSupply": "1289062492002146027314663742" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "7128481754786555756544", - "expectedQty": "7188237051879325270292", - "swapFee": "4277089052871933453", + "type": "swap", + "inputIndex": 0, + "inputQty": "24187318231729375805440", + "outputIndex": 1, + "expectedQty": "22869451707922633467349", + "swapFee": "14333098440211582737", "reserves": [ - "14865404197754394283682994", - "72627009885109064658673890", - "32443492031491219340091631" + "823180975598526025513445639", + "120960292735697325463982362", + "349503327922792417975408284" ], - "mAssetSupply": "119666009439993315309162213" + "mAssetSupply": "1289062506335244467526246479", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "103472127767914576923852", + "inputQty": "201301183383162788511744", "expectedQtys": [ - "12849877447798352454153", - "62779872246236656158885", - "28044639152580982403057" + "128510131604160925373243", + "18883603483474537204904", + "54562386642613135123728" ], - "redemptionFee": "31041638330374373077", + "redemptionFee": "60390355014948836553", "reserves": [ - "14852554320306595931228841", - "72564230012862828002515005", - "32415447392338638357688574" + "823052465466921864588072396", + "120941409132213850926777458", + "349448765536149804840284556" ], - "mAssetSupply": "119562568353863731106611438" + "mAssetSupply": "1288861265542216319686571288" }, { "type": "redeemBassets", "inputQtys": [ - "267799028944139915886592", - "86240548838220222169088", - "60841010535044011261952" + "1342643684239574931865600", + "2389593910500207135555584", + "10943953887328241123852288" ], - "expectedQty": "420381100870979150096722", - "swapFee": "252380088575732929815", + "expectedQty": "14776888887888214593453283", + "swapFee": "8871456206456802837774", "reserves": [ - "14584755291362456015342249", - "72477989464024607780345917", - "32354606381803594346426622" + "821709821782682289656206796", + "118551815221713643791221874", + "338504811648821563716432268" ], - "mAssetSupply": "119142187252992751956514716" + "mAssetSupply": "1274084376654328105093118005" }, { "type": "redeemBassets", "inputQtys": [ - "369198340516371912196096", - "404011703889002011557888", - "336942214877634055110656" + "57776433187378568364032", + "10835258552746004971520", + "61866407064228476223488" ], - "expectedQty": "1115719435272352775534953", - "swapFee": "669833561300191780389", + "expectedQty": "130308747988836720585404", + "swapFee": "78232188106165731790", "reserves": [ - "14215556950846084103146153", - "72073977760135605768788029", - "32017664166925960291315966" + "821652045349494911087842764", + "118540979963160897786250354", + "338442945241757335240208780" ], - "mAssetSupply": "118026467817720399180979763" + "mAssetSupply": "1273954067906339268372532601" }, { - "type": "redeemMasset", - "inputQty": "255927332833898633625", - "expectedQtys": [ - "30815614476601395394", - "156237558621949854207", - "69405933149215242070" + "type": "redeemBassets", + "inputQtys": [ + "1803531401772380608004096", + "8220969268045818932232192", + "1262811858363514961788928" ], - "redemptionFee": "76778199850169590", + "expectedQty": "11663915369119959623103493", + "swapFee": "7002550751923129651653", "reserves": [ - "14215526135231607501750759", - "72073821522576983818933822", - "32017594760992811076073896" + "819848513947722530479838668", + "110320010695115078854018162", + "337180133383393820278419852" ], - "mAssetSupply": "118026211967165765132515728" + "mAssetSupply": "1262290152537219308749429108" }, { "type": "mintMulti", "inputQtys": [ - "884862822458819739648", - "840640506174734860288", - "121144043694772830208" + "7017723647784773484544", + "76561734826548877328384", + "41900301001863595032576" ], - "expectedQty": "1860719963857330402049", + "expectedQty": "129405989917170910403619", "reserves": [ - "14216410998054066321490407", - "72074662163083158553794110", - "32017715905036505848904104" + "819855531671370315253323212", + "110396572429941627731346546", + "337222033684395683873452428" ], - "mAssetSupply": "118028072687129622462917777" + "mAssetSupply": "1262419558527136479659832727" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "584363769626605192740864", + "expectedQty": "592046771400220900312481", + "swapFee": "350618261775963115644", + "reserves": [ + "819263484899970094353010731", + "110396572429941627731346546", + "337222033684395683873452428" + ], + "mAssetSupply": "1261835545375771650430207507" }, { "type": "redeemMasset", - "inputQty": "122077133234102101606", + "inputQty": "2597857422496617201664", "expectedQtys": [ - "14699706691893948056", - "74524884927686005047", - "33106177980704612947" + "1686187422844109844677", + "227215438485208115132", + "694061876777002580971" ], - "redemptionFee": "36623139970230630", + "redemptionFee": "779357226748985160", "reserves": [ - "14216396298347374427542351", - "72074587638198230867789063", - "32017682798858525144291157" + "819261798712547250243166054", + "110396345214503142523231414", + "337221339622518906870871457" ], - "mAssetSupply": "118027950646619528331046801" + "mAssetSupply": "1261832948297706380561991003" }, { "type": "redeemMasset", - "inputQty": "13008765353496447392153", + "inputQty": "12130676505879277836697", "expectedQtys": [ - "1566427962830399943818", - "7941509726981114314782", - "3527855624494382017647" + "7873640014911482593592", + "1060980851965582208838", + "3240916929980681773641" + ], + "redemptionFee": "3639202951763783351", + "reserves": [ + "819253925072532338760572462", + "110395284233651176941022576", + "337218098705588926189097816" ], - "redemptionFee": "3902629606048934217", + "mAssetSupply": "1261820821260403453047937657" + }, + { + "type": "mintMulti", + "inputQtys": [ + "2213372461563062779904", + "1215402835456696516608", + "2840200597611362648064" + ], + "expectedQty": "6304850582876917808113", "reserves": [ - "14214829870384544027598533", - "72066646128471249753474281", - "32014154943234030762273510" + "819256138444993901823352366", + "110396499636486633637539184", + "337220938906186537551745880" ], - "mAssetSupply": "118014945783895637932588865" + "mAssetSupply": "1261827126110986329965745770" }, { "type": "mintMulti", "inputQtys": [ - "28731873893087166464", - "70311168681640919040", - "39543918487697088512" + "316947612325173669134336", + "43060473192664858099712", + "267418299907598798815232" ], - "expectedQty": "138687082232626286976", + "expectedQty": "625629246976817854148696", "reserves": [ - "14214858602258437114764997", - "72066716439639931394393321", - "32014194487152518459362022" + "819573086057319075492486702", + "110439560109679298495638896", + "337488357206094136350561112" ], - "mAssetSupply": "118015084470977870558875841" + "mAssetSupply": "1262452755357963147819894466" }, { "type": "redeemMasset", - "inputQty": "33538242908412", + "inputQty": "8002598505420987", "expectedQtys": [ - "4038452884505", - "20474212725288", - "9095258678917" + "5193657118202699", + "699858520555047", + "2138672973201292" ], - "redemptionFee": "10061472872", + "redemptionFee": "2400779551626", "reserves": [ - "14214858602254398661880492", - "72066716439619457181668033", - "32014194487143423200683105" + "819573086052125418374284003", + "110439560108979439975083849", + "337488357203955463377359820" ], - "mAssetSupply": "118015084470944342377440301" + "mAssetSupply": "1262452755349962950094025105" }, { "type": "redeemMasset", - "inputQty": "223746229993465446400", + "inputQty": "7427930635042697720627", "expectedQtys": [ - "26942037791963608606", - "136591172109937241141", - "60677890782191739078" + "4820699775213321364697", + "649601568978504164650", + "1985094527136225805249" ], - "redemptionFee": "67123868998039633", + "redemptionFee": "2228379190512809316", "reserves": [ - "14214831660216606698271886", - "72066579848447347244426892", - "32014133809252641008944027" + "819568265352350205052919306", + "110438910507410461470919199", + "337486372109428327151554571" ], - "mAssetSupply": "118014860791838217910033534" + "mAssetSupply": "1262445329647707097909113794" }, { - "type": "mintMulti", - "inputQtys": [ - "260667241442053", - "144386949007766", - "132219006948195" - ], - "expectedQty": "542482421701198", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1876053134455177728", + "expectedQty": "1900701106358361758", + "swapFee": "1125631880673106", "reserves": [ - "14214831660477273939713939", - "72066579848591734193434658", - "32014133809384860015892222" + "819568263451649098694557548", + "110438910507410461470919199", + "337486372109428327151554571" ], - "mAssetSupply": "118014860792380700331734732" + "mAssetSupply": "1262445327772779595334609172" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "180976866396834594816", - "expectedQty": "181183196594965160706", + "type": "swap", + "inputIndex": 0, + "inputQty": "3495668907353569755136", + "outputIndex": 2, + "expectedQty": "3442766855554764869147", + "swapFee": "2068960393470043470", "reserves": [ - "14214831660477273939713939", - "72066579848591734193434658", - "32014314786251256850487038" - ] + "819571759120556452264312684", + "110438910507410461470919199", + "337482929342572772386685424" + ], + "mAssetSupply": "1262445329841739988804652642", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "19364847394956563709952", - "28756282961198871216128", - "24904485010308895604736" + "63924872488594591186944", + "813746994614196055834624", + "1192707300239488940244992" ], - "expectedQty": "73263558940256571781196", - "swapFee": "43984526079801824163", + "expectedQty": "2113224343561412591808362", + "swapFee": "1268695823631026170787", "reserves": [ - "14195466813082317376003987", - "72037823565630535322218530", - "31989410301240947954882302" + "819507834248067857673125740", + "109625163512796265415084575", + "336290222042333283446440432" ], - "mAssetSupply": "117941778416637038725114242" + "mAssetSupply": "1260332105498178576212844280" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "372689591284754538299392", - "expectedQty": "363299961266230250917845", - "swapFee": "223613754770852722979", - "reserves": [ - "13832166851816087125086142", - "72037823565630535322218530", - "31989410301240947954882302" + "type": "mintMulti", + "inputQtys": [ + "19908946202414871717347328", + "32546704772775137798782976", + "8188551628539519754567680" ], - "mAssetSupply": "117569312439107055039537829" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "321249689254227345408", - "expectedQty": "320718482132614977656", - "swapFee": "192749813552536407", + "expectedQty": "61761888482610181196610747", "reserves": [ - "13832166851816087125086142", - "72037823565630535322218530", - "31989089582758815339904646" + "839416780450482729390473068", + "142171868285571403213867551", + "344478773670872803201008112" ], - "mAssetSupply": "117568991382167614364728828" + "mAssetSupply": "1322093993980788757409455027" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1449280051391167090130944", - "expectedQty": "1462061735566391893534700", - "swapFee": "869568030834700254078", + "type": "redeemMasset", + "inputQty": "24252981911978425660211", + "expectedQtys": [ + "15393952757926678039725", + "2607270994415586688898", + "6317350440804953940823" + ], + "redemptionFee": "7275894573593527698", "reserves": [ - "13832166851816087125086142", - "70575761830064143428683830", - "31989089582758815339904646" + "839401386497724802712433343", + "142169261014576987627178653", + "344472456320431998247067289" ], - "mAssetSupply": "116120580898807281974851962" + "mAssetSupply": "1322069748274771352577322514" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "133340518932742265634816", - "expectedQty": "136641770752961031748412", + "type": "swap", + "inputIndex": 2, + "inputQty": "6498229514146230009069568", + "outputIndex": 0, + "expectedQty": "6576548890795413124301869", + "swapFee": "3905396229407834465817", "reserves": [ - "13965507370748829390720958", - "70575761830064143428683830", - "31989089582758815339904646" - ] + "832824837606929389588131474", + "142169261014576987627178653", + "350970685834578228256136857" + ], + "mAssetSupply": "1322073653671000760411788331", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "145746276806899632439296", - "expectedQty": "149281609588533840589027", + "type": "redeemMasset", + "inputQty": "17665209401575250434457", + "expectedQtys": [ + "11124653685349035066273", + "1899059348462452075511", + "4688173499770070838415" + ], + "redemptionFee": "5299562820472575130", "reserves": [ - "14111253647555729023160254", - "70575761830064143428683830", - "31989089582758815339904646" - ] + "832813712953244040553065201", + "142167361955228525175103142", + "350965997661078458185298442" + ], + "mAssetSupply": "1322055993761162005633929004" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3036203408934738258296832", - "expectedQty": "3007939158792817055096656", + "type": "mintMulti", + "inputQtys": [ + "47947904995079364608", + "16841871831872100352", + "11111842600870176768" + ], + "expectedQty": "75945570919066011297", "reserves": [ - "14111253647555729023160254", - "73611965238998881686980662", - "31989089582758815339904646" - ] + "832813760901149035632429809", + "142167378797100357047203494", + "350966008772921059055475210" + ], + "mAssetSupply": "1322056069706732924699940301" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3348678386068885602304", - "1932721261549351862272", - "688472115688817426432" + "29703446660482343108608", + "26708138252877317537792", + "10318477581474804531200" ], - "expectedQty": "6038793636949315240089", - "swapFee": "3625451453041413992", + "expectedQty": "67290037703570905972376", "reserves": [ - "14107904969169660137557950", - "73610032517737332335118390", - "31988401110643126522478214" + "832843464347809517975538417", + "142194086935353234364741286", + "350976327250502533860006410" ], - "mAssetSupply": "119408404644304644587045968" + "mAssetSupply": "1322123359744436495605912677" }, { - "type": "redeemMasset", - "inputQty": "70925015979940347117568", - "expectedQtys": [ - "8377159106563227352028", - "43709037988839808606690", - "18994452135453615413075" + "type": "mintMulti", + "inputQtys": [ + "4087515461572764960292864", + "197612628299702262038528", + "6464958101656905810182144" ], - "redemptionFee": "21277504793982104135", + "expectedQty": "10720890948081237679960523", "reserves": [ - "14099527810063096910205922", - "73566323479748492526511700", - "31969406658507672907065139" + "836930979809382282935831281", + "142391699563652936626779814", + "357441285352159439670188554" ], - "mAssetSupply": "119337500905829498222032535" + "mAssetSupply": "1332844250692517733285873200" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "29362932977327056879616", - "96152293713413419302912", - "27234764779079549845504" + "22781637166096626552406016", + "6938607283727667153600512", + "11475456961848422652968960" ], - "expectedQty": "152623524352922142975112", + "expectedQty": "41193707867251136337652120", + "swapFee": "24731063358365701223325", "reserves": [ - "14128890743040423967085538", - "73662475773461905945814612", - "31996641423286752456910643" + "814149342643285656383425265", + "135453092279925269473179302", + "345965828390311017017219594" ], - "mAssetSupply": "119490124430182420365007647" + "mAssetSupply": "1291650542825266596948221080" }, { "type": "mint", "inputIndex": 1, - "inputQty": "20068695254957639598080", - "expectedQty": "19876401165606709904924", + "inputQty": "20059635782532952051679232", + "expectedQty": "20656825928517093562919877", "reserves": [ - "14128890743040423967085538", - "73682544468716863585412692", - "31996641423286752456910643" + "814149342643285656383425265", + "155512728062458221524858534", + "345965828390311017017219594" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "208782262473646734835712", - "outputIndex": 1, - "expectedQty": "210941852659348862018634", - "swapFee": "125433617053582025579", + "type": "redeemBassets", + "inputQtys": [ + "20544933841334718955520", + "18446971940611146383360", + "14073597358024360460288" + ], + "expectedQty": "53366126516704518843100", + "swapFee": "32038899249572454778", "reserves": [ - "14128890743040423967085538", - "73471602616057514723394058", - "32205423685760399191746355" + "814128797709444321664469745", + "155494281090517610378475174", + "345951754792952992656759306" ], - "mAssetSupply": "119510126264965080656938150", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1312254002627266985992297857" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "335404300978489351208960", - "198845542641281716453376", - "407298974399666336038912" + "3290166480638235037925376", + "2560335885923552487014400", + "6621980299421705410969600" ], - "expectedQty": "948629373594806771466011", + "expectedQty": "12518668138509617335739880", + "swapFee": "7515710309291345208569", "reserves": [ - "14464295044018913318294498", - "73670448158698796439847434", - "32612722660160065527785267" + "810838631228806086626544369", + "152933945204594057891460774", + "339329774493531287245789706" ], - "mAssetSupply": "120458755638559887428404161" + "mAssetSupply": "1299735334488757368656557977" }, { "type": "redeemMasset", - "inputQty": "5487594695823018393", + "inputQty": "438233117151050857657139", "expectedQtys": [ - "658734818279559807", - "3355109193549075318", - "1485252884413862211" + "273309288854070813480864", + "51549428203945813659549", + "114377850020898800766189" ], - "redemptionFee": "1646278408746905", + "redemptionFee": "131469935145315257297", "reserves": [ - "14464294385284095038734691", - "73670444803589602890772116", - "32612721174907181113923056" + "810565321939952015813063505", + "152882395776390112077801225", + "339215396643510388445023517" ], - "mAssetSupply": "120458750152611470014132673" + "mAssetSupply": "1299297232841541463114158135" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "19040881356561184", - "expectedQty": "18570214921434617", - "swapFee": "11424528813936", + "inputQty": "439520220696203886592", + "expectedQty": "443650938828854112893", + "swapFee": "263712132417722331", "reserves": [ - "14464294366713880117300074", - "73670444803589602890772116", - "32612721174907181113923056" + "810564878289013186958950612", + "152882395776390112077801225", + "339215396643510388445023517" ], - "mAssetSupply": "120458750133582013186385425" + "mAssetSupply": "1299296793585032899327993874" }, { "type": "swap", "inputIndex": 1, - "inputQty": "2411668534743384283152384", + "inputQty": "9477164456641529756254208", "outputIndex": 0, - "expectedQty": "2314959605243899008475456", - "swapFee": "1433246227365849401645", + "expectedQty": "9798013390625572875874721", + "swapFee": "5827611059871466336746", "reserves": [ - "12149334761469981108824618", - "76082113338332987173924500", - "32612721174907181113923056" + "800766864898387614083075891", + "162359560233031641834055433", + "339215396643510388445023517" ], - "mAssetSupply": "120460183379809379035787070", + "mAssetSupply": "1299302621196092770794330620", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "37826049474429513524838", - "expectedQtys": [ - "3813903121157328732409", - "23883596527897908993304", - "10237742355480450615142" + "type": "redeemBassets", + "inputQtys": [ + "89184527128961742798848", + "94525220618775008641024", + "299586714752039589511168" ], - "redemptionFee": "11347814842328854057", + "expectedQty": "485198164021652525040996", + "swapFee": "291293674617762172327", "reserves": [ - "12145520858348823780092209", - "76058229741805089264931196", - "32602483432551700663307914" + "800677680371258652340277043", + "162265035012412866825414409", + "338915809928758348855512349" ], - "mAssetSupply": "120422368678149791851116289" + "mAssetSupply": "1298817423032071118269289624" }, { "type": "redeemMasset", - "inputQty": "495688870599855806873", + "inputQty": "194637689365441075268812", "expectedQtys": [ - "49979031830477815641", - "312980952366686541240", - "134159792423233180386" + "119951656218278026541865", + "24309357152344669299428", + "50773880321808693033344" ], - "redemptionFee": "148706661179956742", + "redemptionFee": "58391306809632322580", "reserves": [ - "12145470879316993302276568", - "76057916760852722578389956", - "32602349272759277430127528" + "800557728715040374313735178", + "162240725655260522156114981", + "338865036048436540162479005" ], - "mAssetSupply": "120421873137985853175266158" + "mAssetSupply": "1298622843734012486826343392" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1036356657602903146496", - "612484803677854760960", - "568524244291802824704" + "7452535169613492224", + "3529895871306010624", + "2619018561210048512" ], - "expectedQty": "2249548425236409518673", - "swapFee": "1350539378769107175", + "expectedQty": "13618324995433471344", "reserves": [ - "12144434522659390399130072", - "76057304276049044723628996", - "32601780748514985627302824" + "800557736167575543927227402", + "162240729185156393462125605", + "338865038667455101372527517" ], - "mAssetSupply": "120419623589560616765747485" + "mAssetSupply": "1298622857352337482259814736" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1169628689361957896060928", - "expectedQty": "1167509442454650917027122", - "swapFee": "701777213617174737636", + "type": "mint", + "inputIndex": 1, + "inputQty": "124296367242698618826653696", + "expectedQty": "125844532828538550962817627", "reserves": [ - "12144434522659390399130072", - "76057304276049044723628996", - "31434271306060334710275702" - ], - "mAssetSupply": "119250696677412276044424193" + "800557736167575543927227402", + "286537096427855012288779301", + "338865038667455101372527517" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "50757019222713065472", - "59014063972284645376", - "17168047787153235968" + "361690929111351531929600", + "2598133191868729834602496", + "266082521397931701960704" ], - "expectedQty": "128156996877764884011", - "swapFee": "76940362344065369", + "expectedQty": "3241291331335705086848509", "reserves": [ - "12144383765640167686064600", - "76057245261985072438983620", - "31434254138012547557039734" + "800919427096686895459157002", + "289135229619723742123381797", + "339131121188853033074488221" ], - "mAssetSupply": "119250568520415398279540182" + "mAssetSupply": "1427708681512211738309480872" }, { - "type": "mintMulti", - "inputQtys": [ - "191783191419751989248", - "2931566212773728768", - "471312313406448926720" - ], - "expectedQty": "673791038288539907808", + "type": "swap", + "inputIndex": 1, + "inputQty": "19873491675019607015424", + "outputIndex": 0, + "expectedQty": "20098851274123204768709", + "swapFee": "11998911843543997832", "reserves": [ - "12144575548831587438053848", - "76057248193551285212712388", - "31434725450325954005966454" + "800899328245412772254388293", + "289155103111398761730397221", + "339131121188853033074488221" ], - "mAssetSupply": "119251242311453686819447990" + "mAssetSupply": "1427708693511123581853478704", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "1859267934467804889088", - "1487984500697223135232", - "724262782833750573056" + "8595451036034179006464", + "53568469922141446340608", + "22764146963101836640256" ], - "expectedQty": "4124069417305751971855", + "expectedQty": "85296330009861890299493", "reserves": [ - "12146434816766055242942936", - "76058736178051982435847620", - "31435449713108787756539510" + "800907923696448806433394757", + "289208671581320903176737829", + "339153885335816134911128477" ], - "mAssetSupply": "119255366380870992571419845" + "mAssetSupply": "1427793989841133443743778197" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1037411301840602136576", - "6834834808608963690496", - "6604467153370804649984" + "108360485512943109144576", + "3232783459176909992099840", + "574043076603421707468800" ], - "expectedQty": "14445782776208956794622", + "expectedQty": "3937156041529015463682096", + "swapFee": "2363711852028626454081", "reserves": [ - "12147472228067895845079512", - "76065571012860591399538116", - "31442054180262158561189494" + "800799563210935863324250181", + "285975888122143993184637989", + "338579842259212713203659677" ], - "mAssetSupply": "119269812163647201528214467" + "mAssetSupply": "1423856833799604428280096101" }, { "type": "mintMulti", "inputQtys": [ - "33728303432634011222016", - "1992650958048557294157824", - "1003579659364094057644032" + "816747676424532787200", + "4019884623842114011136", + "82584343405166559232" ], - "expectedQty": "3009355366874097623498973", + "expectedQty": "4940796691984340673597", "reserves": [ - "12181200531500529856301528", - "78058221970909148693695940", - "32445633839626252618833526" + "800800379958612287857037381", + "285979908006767835298649125", + "338579924843556118370218909" ], - "mAssetSupply": "122279167530521299151713440" + "mAssetSupply": "1423861774596296412620769698" }, { "type": "redeemMasset", - "inputQty": "207821759086220401442816", + "inputQty": "1806992906778005051801", "expectedQtys": [ - "20696567680263977570502", - "132625455910049068912692", - "55127017649398157223595" + "1015973965983177651137", + "362822182157501721868", + "429555726563681523565" ], - "redemptionFee": "62346527725866120432", + "redemptionFee": "542097872033401515", "reserves": [ - "12160503963820265878731026", - "77925596514999099624783248", - "32390506821976854461609931" + "800799363984646304679386244", + "285979545184585677796927257", + "338579495287829554688695344" ], - "mAssetSupply": "122071408117962804616391056" + "mAssetSupply": "1423859968145487506649119412" }, { "type": "redeemMasset", - "inputQty": "12755245662393222142361", + "inputQty": "2309486261468275513753", "expectedQtys": [ - "1270270284934849568353", - "8140005544451879885064", - "3383469834173794662409" + "1298498686766481049617", + "463716731762264233579", + "549007716252049786450" + ], + "redemptionFee": "692845878440482654", + "reserves": [ + "800798065485959538198336627", + "285979081467853915532693678", + "338578946280113302638908894" ], - "redemptionFee": "3826573698717966642", + "mAssetSupply": "1423857659352071916814088313" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "15952198963883656871936", + "outputIndex": 0, + "expectedQty": "16136744564508964227367", + "swapFee": "9633013757577788096", "reserves": [ - "12159233693535331029162673", - "77917456509454647744898184", - "32387123352142680666947522" + "800781928741395029234109260", + "285995033666817799189565614", + "338578946280113302638908894" ], - "mAssetSupply": "122058656698874110112215337" + "mAssetSupply": "1423857668985085674391876409", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "38815799460048057139", + "inputQty": "93575841689392605508403", "expectedQtys": [ - "3865590514298100060", - "24771049588537744104", - "10296319650637813595" + "52611552734853042481740", + "18789938003867001985628", + "22244712883474359355589" ], - "redemptionFee": "11644739838014417", + "redemptionFee": "28072752506817781652", "reserves": [ - "12159229827944816731062613", - "77917431738405059207154080", - "32387113055823030029133927" + "800729317188660176191627520", + "285976243728813932187579986", + "338556701567229828279553305" ], - "mAssetSupply": "122058617894719389902172615" + "mAssetSupply": "1423764121216148788604149658" }, { - "type": "redeemBassets", - "inputQtys": [ - "156522628908803", - "31200228997604", - "29570399527982" - ], - "expectedQty": "223030874868473", - "swapFee": "133898864239", + "type": "swap", + "inputIndex": 1, + "inputQty": "1968296900907888279552", + "outputIndex": 0, + "expectedQty": "1991065667515567113166", + "swapFee": "1188589519030203273", "reserves": [ - "12159229827788294102153810", - "77917431738373858978156476", - "32387113055793459629605945" + "800727326122992660624514354", + "285978212025714840075859538", + "338556701567229828279553305" ], - "mAssetSupply": "122058617894496359027304142" + "mAssetSupply": "1423764122404738307634352931", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "3536615394955459297280", - "expectedQty": "3494866356766938945341", + "inputQty": "1213196397128683989499904", + "expectedQty": "1220973164005589068055306", "reserves": [ - "12159229827788294102153810", - "77920968353768814437453756", - "32387113055793459629605945" + "800727326122992660624514354", + "287191408422843524065359442", + "338556701567229828279553305" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4362770462965138555142144", - "expectedQty": "4486678689203434236896146", + "type": "redeem", + "inputIndex": 2, + "inputQty": "40488078190401023901696", + "expectedQty": "40321312665062863035709", + "swapFee": "24292846914240614341", "reserves": [ - "16522000290753432657295954", - "77920968353768814437453756", - "32387113055793459629605945" - ] + "800727326122992660624514354", + "287191408422843524065359442", + "338516380254564765416517596" + ], + "mAssetSupply": "1424944631783400409919120882" }, { - "type": "redeemMasset", - "inputQty": "14615216362984515934617", - "expectedQtys": [ - "1907565962897601501910", - "8996452270422537447027", - "3739290244191784143105" + "type": "redeem", + "inputIndex": 2, + "inputQty": "3896459074689565720576", + "expectedQty": "3880406919210051864246", + "swapFee": "2337875444813739432", + "reserves": [ + "800727326122992660624514354", + "287191408422843524065359442", + "338512499847645555364653350" + ], + "mAssetSupply": "1424940737662201165167139738" + }, + { + "type": "mintMulti", + "inputQtys": [ + "3084096406911616341245952", + "3061607965837319083130880", + "278441584536119094018048" ], - "redemptionFee": "4384564908895354780", + "expectedQty": "6427100284670516723040131", "reserves": [ - "16520092724790535055794044", - "77911971901498391900006729", - "32383373765549267845462840" + "803811422529904276965760306", + "290253016388680843148490322", + "338790941432181674458671398" ], - "mAssetSupply": "126534180618258484582565792" + "mAssetSupply": "1431367837946871681890179869" }, { "type": "redeemMasset", - "inputQty": "145276377709722045985587", + "inputQty": "58266730212625", "expectedQtys": [ - "18961352774358184508639", - "89425429335108344069462", - "37168833384999128443253" + "32710957601608", + "11811792973712", + "13787034882033" ], - "redemptionFee": "43582913312916613795", + "redemptionFee": "17480019063", "reserves": [ - "16501131372016176871285405", - "77822546472163283555937267", - "32346204932164268717019587" + "803811422529871566008158698", + "290253016388669031355516610", + "338790941432167887423789365" ], - "mAssetSupply": "126388947823462075453194000" + "mAssetSupply": "1431367837946813432639986307" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "971842549408136020623360", - "expectedQty": "968844200930561837374761", - "swapFee": "583105529644881612374", + "inputQty": "165079005564225712029696", + "expectedQty": "165671386144677443632586", "reserves": [ - "16501131372016176871285405", - "77822546472163283555937267", - "31377360731233706879644826" - ], - "mAssetSupply": "125417688379583584314183014" + "803811422529871566008158698", + "290253016388669031355516610", + "338956020437732113135819061" + ] }, { - "type": "redeemMasset", - "inputQty": "6025901365102839542579", - "expectedQtys": [ - "792586445242896328764", - "3737991903556704208298", - "1507125192957841349012" - ], - "redemptionFee": "1807770409530851862", + "type": "redeem", + "inputIndex": 1, + "inputQty": "18680949314397650416566272", + "expectedQty": "18543571508373447316260160", + "swapFee": "11208569588638590249939", "reserves": [ - "16500338785570933974956641", - "77818808480259726851728969", - "31375853606040749038295814" + "803811422529871566008158698", + "271709444880295584039256450", + "338956020437732113135819061" ], - "mAssetSupply": "125411664285988891005492297" + "mAssetSupply": "1412863768588149098257302560" }, { "type": "swap", "inputIndex": 0, - "inputQty": "2282005754671577956352", + "inputQty": "2897590587933154344960", "outputIndex": 2, - "expectedQty": "2321206085162002959674", - "swapFee": "1397345801263769891", + "expectedQty": "2868930729015598761689", + "swapFee": "1728237092727220751", "reserves": [ - "16502620791325605552912993", - "77818808480259726851728969", - "31373532399955587035336140" + "803814320120459499162503658", + "271709444880295584039256450", + "338953151507003097537057372" ], - "mAssetSupply": "125411665683334692269262188", + "mAssetSupply": "1412863770316386190984523311", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "13322906383627356", - "6536795895823014", - "3936789971567817" + "192663053764520770011136", + "401736960050248558837760", + "734233939803468040503296" ], - "expectedQty": "24021536018050896", + "expectedQty": "1332940205565641846273655", "reserves": [ - "16502620804648511936540349", - "77818808486796522747551983", - "31373532403892377006903957" + "804006983174224019932514794", + "272111181840345832598094210", + "339687385446806565577560668" ], - "mAssetSupply": "125411665707356228287313084" + "mAssetSupply": "1414196710521951832830796966" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "211433842892836779851776", - "69229720507224583831552", - "98840482260159421218816" + "7241797598211530031104", + "2391543661830132465664", + "6604123060021896413184" ], - "expectedQty": "383538045403724332069166", - "swapFee": "230260983832534119713", + "expectedQty": "16234492448337866903419", "reserves": [ - "16291186961755675156688573", - "77749578766289298163720431", - "31274691921632217585685141" + "804014224971822231462545898", + "272113573384007662730559874", + "339693989569866587473973852" ], - "mAssetSupply": "125028127661952503955243918" + "mAssetSupply": "1414212945014400170697700385" }, { - "type": "mint", + "type": "redeem", + "inputIndex": 0, + "inputQty": "152359625045089558986752", + "expectedQty": "153174965680348041314627", + "swapFee": "91415775027053735392", + "reserves": [ + "803861050006141883421231271", + "272113573384007662730559874", + "339693989569866587473973852" + ], + "mAssetSupply": "1414060676805130108192449025" + }, + { + "type": "redeemMasset", + "inputQty": "44434048101492046010777", + "expectedQtys": [ + "25252158912584505910859", + "8548063371538757702043", + "10671006644994871513575" + ], + "redemptionFee": "13330214430447613803", + "reserves": [ + "803835797847229298915320412", + "272105025320636123972857831", + "339683318563221592602460277" + ], + "mAssetSupply": "1414016256087243046594052051" + }, + { + "type": "redeem", "inputIndex": 2, - "inputQty": "112344487429961383936", - "expectedQty": "112649911556556054896", + "inputQty": "68780625227968479232", + "expectedQty": "68508381524761056989", + "swapFee": "41268375136781087", "reserves": [ - "16291186961755675156688573", - "77749578766289298163720431", - "31274804266119647547069077" - ] + "803835797847229298915320412", + "272105025320636123972857831", + "339683250054840067841403288" + ], + "mAssetSupply": "1414016187347886193762353906" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6741613453745162551296", - "4609213094357058977792", - "2140331065840392470528" + "11216300197462517647147008", + "20129206080532241153261568", + "3736929751945664234782720" ], - "expectedQty": "13596588899500083656415", - "swapFee": "8162851050330248342", + "expectedQty": "35168474442837542815499300", "reserves": [ - "16284445348301929994137277", - "77744969553194941104742639", - "31272663935053807154598549" + "815052098044691816562467420", + "292234231401168365126119399", + "343420179806785732076186008" ], - "mAssetSupply": "125014643722964560427642399" + "mAssetSupply": "1449184661790723736577853206" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8168724859338440572928", - "297495223152605790208", - "2084781343172417814528" + "1488219941531904550895616", + "479757114601493250441216", + "952637158872377896992768" ], - "expectedQty": "10726006667638078718359", + "expectedQty": "2918658530309561748861671", + "swapFee": "1752246466065376275082", "reserves": [ - "16292614073161268434710205", - "77745267048418093710532847", - "31274748716396979572413077" + "813563878103159912011571804", + "291754474286566871875678183", + "342467542647913354179193240" ], - "mAssetSupply": "125025369729632198506360758" + "mAssetSupply": "1446266003260414174828991535" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "851669361915672960", - "outputIndex": 2, - "expectedQty": "841041065392598844", - "swapFee": "506300088378215", + "inputIndex": 0, + "inputQty": "4095976084997166319271936", + "outputIndex": 1, + "expectedQty": "4043802558957923085074547", + "swapFee": "2443623011603361111608", "reserves": [ - "16292614073161268434710205", - "77745267900087455626205807", - "31274747875355914179814233" + "817659854188157078330843740", + "287710671727608948790603636", + "342467542647913354179193240" ], - "mAssetSupply": "125025369730138498594738973", + "mAssetSupply": "1446268446883425778190103143", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "23143996241408845414400", - "expectedQtys": [ - "3015092671399133636596", - "14387451051679726208428", - "5787669350995979602391" + "type": "redeemBassets", + "inputQtys": [ + "618762141632691108315136", + "34312550969009544101888", + "2573349834747513143296" ], - "redemptionFee": "6943198872422653624", + "expectedQty": "652318241040466515828934", + "swapFee": "391625920176385740941", "reserves": [ - "16289598980489869301073609", - "77730880449035775899997379", - "31268960206004918200211842" + "817041092046524387222528604", + "287676359176639939246501748", + "342464969298078606666049944" ], - "mAssetSupply": "125002232677095962171978197" + "mAssetSupply": "1445616128642385311674274209" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "260121678834317622509568", - "expectedQty": "254518130319207734528428", - "swapFee": "156073007300590573505", + "type": "redeemBassets", + "inputQtys": [ + "22399362986281348", + "3045053296739210752", + "311589425833147008" + ], + "expectedQty": "3400285830254635363", + "swapFee": "2041396335954353", "reserves": [ - "16035080850170661566545181", - "77730880449035775899997379", - "31268960206004918200211842" + "817041092024125024236247256", + "287676356131586642507290996", + "342464968986489180832902936" ], - "mAssetSupply": "124742267071268945140042134" + "mAssetSupply": "1445616125242099481419638846" }, { "type": "redeemBassets", "inputQtys": [ - "6755678911194924", - "113720423885191520", - "43904215682552848" + "957623244383428", + "9089559326038580", + "7920591903907093" ], - "expectedQty": "163583812389166673", - "swapFee": "98209212961276", + "expectedQty": "18051125973416592", + "swapFee": "10837177890784", "reserves": [ - "16035080843414982655350257", - "77730880335315352014805859", - "31268960162100702517658994" + "817041092023167400991863828", + "287676356122497083181252416", + "342464968978568588928995843" ], - "mAssetSupply": "124742266907685132750875461" + "mAssetSupply": "1445616125224048355446222254" }, { - "type": "redeemMasset", - "inputQty": "17313586193368489551462", - "expectedQtys": [ - "2224919217471013986461", - "10785410509483335567024", - "4338669137646637885414" - ], - "redemptionFee": "5194075858010546865", + "type": "mint", + "inputIndex": 0, + "inputQty": "135287418300409799770112", + "expectedQty": "134507738985087584345017", "reserves": [ - "16032855924197511641363796", - "77720094924805868679238835", - "31264621492963055879773580" - ], - "mAssetSupply": "124724958515567622271870864" + "817176379441467810791633940", + "287676356122497083181252416", + "342464968978568588928995843" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "15409550509465537609728", - "expectedQty": "15265765588242623328918", + "inputIndex": 0, + "inputQty": "2433646504657193418096640", + "expectedQty": "2419587675012588909776409", "reserves": [ - "16032855924197511641363796", - "77735504475315334216848563", - "31264621492963055879773580" + "819610025946125004209730580", + "287676356122497083181252416", + "342464968978568588928995843" ] }, { "type": "redeemBassets", "inputQtys": [ - "719510382839311106048", - "19798284429993724346368", - "18618566455315411238912" + "328468503961634340864", + "9693432169861367808", + "129711469863323320320" ], - "expectedQty": "39017172363235765437056", - "swapFee": "23424358032761115931", + "expectedQty": "466505632639379285184", + "swapFee": "280071422437089825", "reserves": [ - "16032136413814672330257748", - "77715706190885340492502195", - "31246002926507740468534668" + "819609697477621042575389716", + "287676346429064913319884608", + "342464839267098725605675523" ], - "mAssetSupply": "124701207108792629129762726" + "mAssetSupply": "1448169754132413392561058496" }, { - "type": "redeemMasset", - "inputQty": "148672301482290246267699", - "expectedQtys": [ - "19108231693824164994344", - "92627063656032118224697", - "37241191567653014688698" - ], - "redemptionFee": "44601690444687073880", + "type": "mint", + "inputIndex": 0, + "inputQty": "16901426334488034440904704", + "expectedQty": "16802039594805839659865849", + "reserves": [ + "836511123812109077016294420", + "287676346429064913319884608", + "342464839267098725605675523" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "10057255113914610352128", + "outputIndex": 2, + "expectedQty": "10082824137978861365962", + "swapFee": "6076442851860072130", "reserves": [ - "16013028182120848165263404", - "77623079127229308374277498", - "31208761734940087453845970" + "836511123812109077016294420", + "287686403684178827930236736", + "342454756442960746744309561" ], - "mAssetSupply": "124552579409000783570568907" + "mAssetSupply": "1464971799803662084080996475", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "207208011011304882176", - "35069640304681656320", - "147972218374140887040" + "2872104735099754381312", + "22436098694635143036928", + "57274988032222308597760" ], - "expectedQty": "394827207588399529781", + "expectedQty": "82941195729309101407536", "reserves": [ - "16013235390131859470145580", - "77623114196869613055933818", - "31208909707158461594733010" + "836513995916844176770675732", + "287708839782873463073273664", + "342512031430992969052907321" ], - "mAssetSupply": "124552974236208371970098688" + "mAssetSupply": "1465054740999391393182404011" }, { - "type": "redeemMasset", - "inputQty": "3641237583087899823308", - "expectedQtys": [ - "467997673186652064318", - "2268588198736122023647", - "912101569095975779629" - ], - "redemptionFee": "1092371274926369946", + "type": "redeem", + "inputIndex": 2, + "inputQty": "4321466568521314304", + "expectedQty": "4302450948693464483", + "swapFee": "2592879941112788", "reserves": [ - "16012767392458672818081262", - "77620845608670876933910171", - "31207997605589365618953381" + "836513995916844176770675732", + "287708839782873463073273664", + "342512027128542020359442838" ], - "mAssetSupply": "124549334090996558996645326" + "mAssetSupply": "1465054736680517704602202495" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "17980919239973941248", - "8551620095829322752", - "263446251329261273088" + "4648726552809338880", + "337959865400523520", + "5855182006833730560" + ], + "expectedQty": "10838822177775995728", + "reserves": [ + "836514000565570729580014612", + "287708840120833328473797184", + "342512032983724027193173398" ], - "expectedQty": "290997182965241775745", - "swapFee": "174703131658139949", + "mAssetSupply": "1465054747519339882378198223" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "16223305179945368970854400", + "expectedQty": "16309511443810209068641233", + "swapFee": "9733983107967221382512", "reserves": [ - "16012749411539432844140014", - "77620837057050781104587419", - "31207734159338036357680293" + "820204489121760520511373379", + "287708840120833328473797184", + "342512032983724027193173398" ], - "mAssetSupply": "124549043093813593754869581" + "mAssetSupply": "1448841176322502480628726335" }, { "type": "redeemBassets", "inputQtys": [ - "21194008789649994022912", - "8627997321996748718080", - "20227580150469189697536" + "656201303958655248367616", + "636308148248094816862208", + "327622624421840695590912" ], - "expectedQty": "50484940975656092330513", - "swapFee": "30309150075438918749", + "expectedQty": "1621785512814725640630566", + "swapFee": "973655500989429041803", "reserves": [ - "15991555402749782850117102", - "77612209059728784355869339", - "31187506579187567167982757" + "819548287817801865263005763", + "287072531972585233656934976", + "342184410359302186497582486" ], - "mAssetSupply": "124498558152837937662539068" + "mAssetSupply": "1447219390809687754988095769" }, { "type": "redeemMasset", - "inputQty": "1137753922854813", + "inputQty": "14588482907690880938803", "expectedQtys": [ - "146098049852365", - "709061257819283", - "284927499309644" + "8258857969221636648731", + "2892924436141954428252", + "3448304982692617567941" ], - "redemptionFee": "341326176856", + "redemptionFee": "4376544872307264281", "reserves": [ - "15991555402603684800264737", - "77612209059019723098050056", - "31187506578902639668673113" + "819540028959832643626357032", + "287069639048149091702506724", + "342180962054319493880014545" ], - "mAssetSupply": "124498558151700525065861111" + "mAssetSupply": "1447204806703324936414421247" }, { - "type": "redeemBassets", - "inputQtys": [ - "90550359952187077951488", - "67668980963667378962432", - "96982911531100187656192" - ], - "expectedQty": "256813788996093604226217", - "swapFee": "154180781866776228272", + "type": "mint", + "inputIndex": 1, + "inputQty": "137280516676505766461440", + "expectedQty": "138203280265619523589744", "reserves": [ - "15901005042651497722313249", - "77544540078056055719087624", - "31090523667371539481016921" - ], - "mAssetSupply": "124241744362704431461634894" + "819540028959832643626357032", + "287206919564825597468968164", + "342180962054319493880014545" + ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3104506949971565084672", - "expectedQty": "3112916576185881735418", + "type": "mintMulti", + "inputQtys": [ + "33227607206086569885696", + "24750526926029181681664", + "16893084404312711364608" + ], + "expectedQty": "74905932423138507756062", "reserves": [ - "15901005042651497722313249", - "77544540078056055719087624", - "31093628174321511046101593" - ] + "819573256567038730196242728", + "287231670091751626650649828", + "342197855138723806591379153" + ], + "mAssetSupply": "1447417915916013694445767053" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "6488804428778861232128", - "expectedQty": "6467386713953630844433", - "swapFee": "3893282657267316739", + "type": "redeemMasset", + "inputQty": "75283006196172505848217", + "expectedQtys": [ + "42614802464810038539552", + "14934993039998320246715", + "17793033000736491756244" + ], + "redemptionFee": "22584901858851751754", "reserves": [ - "15901005042651497722313249", - "77544540078056055719087624", - "31087160787607557415257160" + "819530641764573920157703176", + "287216735098711628330403113", + "342180062105723070099622909" ], - "mAssetSupply": "124238372368134495749454923" + "mAssetSupply": "1447342655494719380791670590" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "554899816089027237380096", - "expectedQty": "542194296503966797864215", - "swapFee": "332939889653416342428", + "inputQty": "8446531459863721017344", + "expectedQty": "8397541694033350264440", "reserves": [ - "15358810746147530924449034", - "77544540078056055719087624", - "31087160787607557415257160" - ], - "mAssetSupply": "123683805491935121928417255" + "819539088296033783878720520", + "287216735098711628330403113", + "342180062105723070099622909" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "223530832425787424768", - "expectedQty": "221364876485927776921", + "inputIndex": 2, + "inputQty": "146461693633514811949056", + "expectedQty": "146991735768432057986099", "reserves": [ - "15358810746147530924449034", - "77544763608888481506512392", - "31087160787607557415257160" + "819539088296033783878720520", + "287216735098711628330403113", + "342326523799356584911571965" ] }, { "type": "mintMulti", "inputQtys": [ - "535203233092210442371072", - "794159002474862239285248", - "1137786903470586315407360" + "3242101419084273942528000", + "5361326028858742141878272", + "8717025075022001287987200" + ], + "expectedQty": "17368018328220338349027059", + "reserves": [ + "822781189715118057821248520", + "292578061127570370472281385", + "351043548874378586199559165" + ], + "mAssetSupply": "1464866063100402184548948188" + }, + { + "type": "redeemMasset", + "inputQty": "6924970356273916242873548", + "expectedQtys": [ + "3888427871567141371852219", + "1382711104384178815401769", + "1659016439169689231191060" ], - "expectedQty": "2474766689013819137023206", + "redemptionFee": "2077491106882174872862", "reserves": [ - "15894013979239741366820106", - "78338922611363343745797640", - "32224947691078143730664520" + "818892761843550916449396301", + "291195350023186191656879616", + "349384532435208896968368105" ], - "mAssetSupply": "126158793545825426993217382" + "mAssetSupply": "1457943170235235150480947502" }, { "type": "mintMulti", "inputQtys": [ - "8980652915584992256", - "7259453183113610240", - "9122359147312846848" + "751023353498150992084992", + "208323252743164087238656", + "349365963441884482240512" ], - "expectedQty": "25518882023446208344", + "expectedQty": "1307023385851534835251327", "reserves": [ - "15894022959892656951812362", - "78338929870816526859407880", - "32224956813437291043511368" + "819643785197049067441481293", + "291403673275929355744118272", + "349733898398650781450608617" ], - "mAssetSupply": "126158819064707450439425726" + "mAssetSupply": "1459250193621086685316198829" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "11362854139654121193472", - "expectedQty": "11619993912888878348847", + "type": "swap", + "inputIndex": 2, + "inputQty": "6883176937160321076822016", + "outputIndex": 1, + "expectedQty": "6854833886156088776927305", + "swapFee": "4143442709721272096529", "reserves": [ - "15905385814032311073005834", - "78338929870816526859407880", - "32224956813437291043511368" - ] + "819643785197049067441481293", + "284548839389773266967190967", + "356617075335811102527430633" + ], + "mAssetSupply": "1459254337063796406588295358", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "2961003715836764231827456", - "expectedQty": "2950302429826548960538532", - "swapFee": "1776602229502058539096", + "inputQty": "14541887768010118588792832", + "expectedQty": "14583469478374159485052884", "reserves": [ - "15905385814032311073005834", - "78338929870816526859407880", - "29274654383610742082972836" - ], - "mAssetSupply": "123211211945013077144486213" + "819643785197049067441481293", + "284548839389773266967190967", + "371158963103821221116223465" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "10398107233621666430976", - "expectedQty": "10495201705865378627783", - "swapFee": "6238864340172999858", + "inputQty": "3794631805283047019905024", + "outputIndex": 2, + "expectedQty": "3808732513423457607208225", + "swapFee": "2292856394332711109177", "reserves": [ - "15905385814032311073005834", - "78328434669110661480780097", - "29274654383610742082972836" + "819643785197049067441481293", + "288343471195056313987095991", + "367350230590397763509015240" ], - "mAssetSupply": "123200820076643795651055095" + "mAssetSupply": "1473840099398564898784457419", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "18711574728608692830208", - "23284035311063699292160", - "8777252918377118171136" + "154137439918363168", + "816090584225007872", + "1969470748551147264" ], - "expectedQty": "50990887079742380115205", + "expectedQty": "2949980830051742799", + "swapFee": "1771051128708270", "reserves": [ - "15924097388760919765836042", - "78351718704421725180072257", - "29283431636529119201143972" + "819643785042911627523118125", + "288343470378965729762088119", + "367350228620927014957867976" ], - "mAssetSupply": "123251810963723538031170300" + "mAssetSupply": "1473840096448584068732714620" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "599237833016603372945408", - "expectedQty": "601418920339014734473411", + "inputIndex": 0, + "inputQty": "10657223247702594670297088", + "expectedQty": "10597949086730659174589053", "reserves": [ - "15924097388760919765836042", - "78351718704421725180072257", - "29882669469545722574089380" + "830301008290614222193415213", + "288343470378965729762088119", + "367350228620927014957867976" ] }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "701505180222830084620288", + "expectedQty": "705041639953345380383793", + "swapFee": "420903108133698050772", + "reserves": [ + "829595966650660876813031420", + "288343470378965729762088119", + "367350228620927014957867976" + ], + "mAssetSupply": "1483736961258200031520734157" + }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1277810148310590135730176", - "expectedQty": "1265235185727421458706010", + "inputIndex": 0, + "inputQty": "3153744801810483475644416", + "expectedQty": "3136003312381573420234165", "reserves": [ - "15924097388760919765836042", - "79629528852732315315802433", - "29882669469545722574089380" + "832749711452471360288675836", + "288343470378965729762088119", + "367350228620927014957867976" ] }, { "type": "redeemMasset", - "inputQty": "45376584180511868033433", + "inputQty": "211611098219095103897", "expectedQtys": [ - "5773443359564495145332", - "28870495033805468146172", - "10834265541278126462856" + "118481013143362467966", + "41024603231847326405", + "52265436621454015623" ], - "redemptionFee": "13612975254153560410", + "redemptionFee": "63483329465728531", "reserves": [ - "15918323945401355270690710", - "79600658357698509847656261", - "29871835204004444447626524" + "832749592971458216926207870", + "288343429354362497914761714", + "367350176355490393503852353" ], - "mAssetSupply": "125073102098584716509876698" + "mAssetSupply": "1486872753022966715311592956" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "106145226997218272083968", - "expectedQty": "107147085855116806713960", - "swapFee": "63687136198330963250", + "inputIndex": 2, + "inputQty": "10835109993303509041152", + "expectedQty": "10797042818302000323800", + "swapFee": "6501065995982105424", "reserves": [ - "15918323945401355270690710", - "79493511271843393040942301", - "29871835204004444447626524" + "832749592971458216926207870", + "288343429354362497914761714", + "367339379312672091503528553" ], - "mAssetSupply": "124967020558723696568755980" + "mAssetSupply": "1486861924414039407784657228" }, { - "type": "mintMulti", - "inputQtys": [ - "409776481040679888224256", - "11834792894780256813056", - "560502861619598362411008" + "type": "redeemMasset", + "inputQty": "17465410474164866357657", + "expectedQtys": [ + "9778951179431999693501", + "3386007441330509687510", + "4313654292839255513396" ], - "expectedQty": "993113737907812014572484", + "redemptionFee": "5239623142249459907", "reserves": [ - "16328100426442035158914966", - "79505346064738173297755357", - "30432338065624042810037532" + "832739814020278784926514369", + "288340043346921167405074204", + "367335065658379252248015157" ], - "mAssetSupply": "125960134296631508583328464" + "mAssetSupply": "1486844464243188385167759478" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "10006081196423439712256", - "expectedQty": "10097212100457610823624", - "swapFee": "6003648717854063827", + "type": "redeemMasset", + "inputQty": "685051702573156242397593", + "expectedQtys": [ + "383563109768251361571212", + "132810515163100204035160", + "169195921389464938610397" + ], + "redemptionFee": "205515510771946872719", "reserves": [ - "16328100426442035158914966", - "79495248852637715686931733", - "30432338065624042810037532" + "832356250910510533564943157", + "288207232831758067201039044", + "367165869736989787309404760" ], - "mAssetSupply": "125950134219083802997680035" + "mAssetSupply": "1486159618056126000872234604" }, { - "type": "redeemBassets", - "inputQtys": [ - "6140675974375821312", - "6298888547050004480", - "4117447886178476544" + "type": "swap", + "inputIndex": 0, + "inputQty": "31526709972962858026139648", + "outputIndex": 1, + "expectedQty": "31052641485563832966314053", + "swapFee": "18806227545497924577432", + "reserves": [ + "863882960883473391591082805", + "257154591346194234234724991", + "367165869736989787309404760" ], - "expectedQty": "16643899400280813568", - "swapFee": "9992335041193204", + "mAssetSupply": "1486178424283671498796812036", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "11066802891096351309824", + "expectedQty": "11027796015457629684645", + "swapFee": "6640081734657810785", "reserves": [ - "16328094285766060783093654", - "79495242553749168636927253", - "30432333948176156631560988" + "863882960883473391591082805", + "257154591346194234234724991", + "367154841940974329679720115" ], - "mAssetSupply": "125950117575184402716866467" + "mAssetSupply": "1486167364120862137103312997" }, { - "type": "redeemBassets", - "inputQtys": [ - "197720455921585979392", - "52844647983020605440", - "171463712178123898880" + "type": "mint", + "inputIndex": 1, + "inputQty": "1108510800010210445361152", + "expectedQty": "1119548944233315239369680", + "reserves": [ + "863882960883473391591082805", + "258263102146204444680086143", + "367154841940974329679720115" + ] + }, + { + "type": "redeemMasset", + "inputQty": "23928481385627845761433", + "expectedQtys": [ + "13894565833345788361501", + "4153865555381154794609", + "5905264200561834676768" ], - "expectedQty": "426402747540551669525", - "swapFee": "255995245671734042", + "redemptionFee": "7178544415688353728", "reserves": [ - "16327896565310139197114262", - "79495189709101185616321813", - "30432162484463978507662108" + "863869066317640045802721304", + "258258948280649063525291534", + "367148936676773767845043347" ], - "mAssetSupply": "125949691172436862165196942" + "mAssetSupply": "1487262991762254240185274972" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "274913916409831799914496", - "expectedQty": "273787701583678991785698", - "swapFee": "164948349845899079948", + "inputQty": "2734844686262500442767360", + "expectedQty": "2725045327355589503063327", + "swapFee": "1640906811757500265660", "reserves": [ - "16327896565310139197114262", - "79495189709101185616321813", - "30158374782880299515876410" + "863869066317640045802721304", + "258258948280649063525291534", + "364423891349418178341980020" ], - "mAssetSupply": "125674942204376876264362394" + "mAssetSupply": "1484529787982803497242773272" }, { - "type": "redeemMasset", - "inputQty": "5100647521482741016166", - "expectedQtys": [ - "662485765523049833020", - "3225426581996089519463", - "1223641632285658577674" + "type": "swap", + "inputIndex": 2, + "inputQty": "6644542943957598703976448", + "outputIndex": 0, + "expectedQty": "6703338411357406334079469", + "swapFee": "3998397004750880356653", + "reserves": [ + "857165727906282639468641835", + "258258948280649063525291534", + "371068434293375777045956468" + ], + "mAssetSupply": "1484533786379808248123129925", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "3770900413374162249187328", + "expectedQty": "3746580377091315722350584", + "reserves": [ + "860936628319656801717829163", + "258258948280649063525291534", + "371068434293375777045956468" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "915950108112948668923904", + "239442614588849510154240", + "418570407013472750534656" + ], + "expectedQty": "1571569638952638952797972", + "reserves": [ + "861852578427769750386753067", + "258498390895237913035445774", + "371487004700389249796491124" ], - "redemptionFee": "1530194256444822304", + "mAssetSupply": "1489851936395852202798278481" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "1664419716086751563874304", + "1386107273591227536113664", + "540232821808319745228800" + ], + "expectedQty": "3595241176322344837289752", + "swapFee": "2158439769655200022387", + "reserves": [ + "860188158711682998822878763", + "257112283621646685499332110", + "370946771878580930051262324" + ], + "mAssetSupply": "1486256695219529857960988729" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "78062871374995168753090560", + "expectedQty": "78193133348654286135279616", "reserves": [ - "16327234079544616147281242", - "79491964282519189526802350", - "30157151141248013857298736" - ], - "mAssetSupply": "125669843087049649968168532" + "860188158711682998822878763", + "257112283621646685499332110", + "449009643253576098804352884" + ] }, { "type": "redeemBassets", "inputQtys": [ - "2111618347160107745280", - "3319146394735743598592", - "2089976802952732475392" + "595385916249363963707392", + "219350082499102661148672", + "248705544757069503004672" ], - "expectedQty": "7541912900979962265233", - "swapFee": "4527864459263535480", + "expectedQty": "1062560587137569065713618", + "swapFee": "637919103744788312415", "reserves": [ - "16325122461197456039535962", - "79488645136124453783203758", - "30155061164445061124823344" + "859592772795433634859171371", + "256892933539147582838183438", + "448760937708819029301348212" ], - "mAssetSupply": "125662301174148670005903299" + "mAssetSupply": "1563387267981046575030554727" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "144656672514281816064", + "expectedQty": "144760893649732913887", + "reserves": [ + "859592772795433634859171371", + "256892933539147582838183438", + "448761082365491543583164276" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "2663119955400378690830336", + "expectedQty": "2647639470728700695867343", + "reserves": [ + "862255892750834013550001707", + "256892933539147582838183438", + "448761082365491543583164276" + ] }, { "type": "redeemMasset", - "inputQty": "5485967321398802", + "inputQty": "700074753770322687059558", "expectedQtys": [ - "712482739667347", - "3469149330649333", - "1316067346162150" + "385344177243906154754227", + "114806053454275497485931", + "200552378379843642610550" ], - "redemptionFee": "1645790196419", + "redemptionFee": "210022426131096806117", "reserves": [ - "16325122460484973299868615", - "79488645132655304452554425", - "30155061163128993778661194" + "861870548573590107395247480", + "256778127485693307340697507", + "448560529987111699940553726" ], - "mAssetSupply": "125662301168664348474700916" + "mAssetSupply": "1565335187481324733869082516" }, { - "type": "redeemMasset", - "inputQty": "45680126751539124502528", - "expectedQtys": [ - "5932645958231794370571", - "28886643295511281298696", - "10958527396207671927161" + "type": "mintMulti", + "inputQtys": [ + "522860433975905926250496", + "1130131922197598672257024", + "272814418919874619244544" ], - "redemptionFee": "13704038025461737350", + "expectedQty": "1935310703682807410850530", "reserves": [ - "16319189814526741505498044", - "79459758489359793171255729", - "30144102635732786106734033" + "862393409007566013321497976", + "257908259407890906012954531", + "448833344406031574559798270" ], - "mAssetSupply": "125616634745950834811935738" + "mAssetSupply": "1567270498185007541279933046" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "618235736419298569093120", - "expectedQty": "604241272765954941760657", - "swapFee": "370941441851579141455", + "type": "swap", + "inputIndex": 1, + "inputQty": "13781616311740957810753536", + "outputIndex": 0, + "expectedQty": "13991229480589959781899298", + "swapFee": "8353887127497481742378", "reserves": [ - "15714948541760786563737387", - "79459758489359793171255729", - "30144102635732786106734033" + "848402179526976053539598678", + "271689875719631863823708067", + "448833344406031574559798270" ], - "mAssetSupply": "124998769950973387821984073" + "mAssetSupply": "1567278852072135038761675424", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "482323848960382441881", - "expectedQtys": [ - "60619960992482888588", - "306513727823979019293", - "116280006967606516159" - ], - "redemptionFee": "144697154688114732", + "type": "mint", + "inputIndex": 0, + "inputQty": "33852401444707442695864320", + "expectedQty": "33664203271502344151723333", "reserves": [ - "15714887921799794080848799", - "79459451975631969192236436", - "30143986355725818500217874" - ], - "mAssetSupply": "124998287771821582127656924" + "882254580971683496235462998", + "271689875719631863823708067", + "448833344406031574559798270" + ] }, { - "type": "redeemMasset", - "inputQty": "268793998074134643553075", - "expectedQtys": [ - "33782865419963833065957", - "170816870333073233765557", - "64801622470628589802495" + "type": "mintMulti", + "inputQtys": [ + "1135370044585958495485952", + "1522384152886549447442432", + "353379914651852884410368" ], - "redemptionFee": "80638199422240393065", + "expectedQty": "3020288091855620409833933", "reserves": [ - "15681105056379830247782842", - "79288635105298895958470879", - "30079184733255189910415379" + "883389951016269454730948950", + "273212259872518413271150499", + "449186724320683427444208638" ], - "mAssetSupply": "124729574411946869724496914" + "mAssetSupply": "1603963343435493003323232690" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1220615735206114230272", - "expectedQty": "1249236658702119575753", + "inputQty": "90213805174478103117824", + "expectedQty": "89699331295477757479572", "reserves": [ - "15682325672115036362013114", - "79288635105298895958470879", - "30079184733255189910415379" + "883480164821443932834066774", + "273212259872518413271150499", + "449186724320683427444208638" ] }, { "type": "redeemBassets", "inputQtys": [ - "142631178063026996641792", - "25068276456688357212160", - "95291235037653688647680" + "12859634514653539620356096", + "2047580372571071730155520", + "4161663740519452799664128" ], - "expectedQty": "266447495641385395085877", - "swapFee": "159964476070473521164", + "expectedQty": "19020635371674865241982363", + "swapFee": "11419232762662516655182", "reserves": [ - "15539694494052009365371322", - "79263566828842207601258719", - "29983893498217536221767699" + "870620530306790393213710678", + "271164679499947341540994979", + "445025060580163974644544510" ], - "mAssetSupply": "124464376152964186448986790" + "mAssetSupply": "1585032407395113615838729899" }, { - "type": "mintMulti", + "type": "swap", + "inputIndex": 0, + "inputQty": "41716593092897028440064", + "outputIndex": 2, + "expectedQty": "41412345363418184044610", + "swapFee": "24888573417207510241", + "reserves": [ + "870662246899883290242150742", + "271164679499947341540994979", + "444983648234800556460499900" + ], + "mAssetSupply": "1585032432283687033046240140", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", "inputQtys": [ - "10384956784148937179136", - "2957399549362579177472", - "11487988336236578209792" + "423354862538858692608", + "260177703404123324416", + "410201246530188083200" ], - "expectedQty": "25088680994935870941164", + "expectedQty": "1094337596278456796070", + "swapFee": "656996755820566417", "reserves": [ - "15550079450836158302550458", - "79266524228391570180436191", - "29995381486553772799977491" + "870661823545020751383458134", + "271164419322243937417670563", + "444983238033554026272416700" ], - "mAssetSupply": "124489464833959122319927954" + "mAssetSupply": "1585031337946090754589444070" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "29320343100093", + "inputIndex": 2, + "inputQty": "8522712971975381615640576", "outputIndex": 1, - "expectedQty": "30306623208056", - "swapFee": "18011548997", + "expectedQty": "8438881025557423071065326", + "swapFee": "5118565658806812358123", "reserves": [ - "15550079450865478645650551", - "79266524228361263557228135", - "29995381486553772799977491" + "870661823545020751383458134", + "262725538296686514346605237", + "453505951005529407888057276" ], - "mAssetSupply": "124489464833959140331476951", + "mAssetSupply": "1585036456511749561401802193", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "11690969582641650597888", - "expectedQty": "11969428349857006711217", + "inputIndex": 1, + "inputQty": "8735490095649724039168", + "expectedQty": "8828676481965993016918", "reserves": [ - "15561770420448120296248439", - "79266524228361263557228135", - "29995381486553772799977491" + "870661823545020751383458134", + "262734273786782164070644405", + "453505951005529407888057276" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "923363957952673277280256", - "696083636790445285048320", - "158335348663101301981184" - ], - "expectedQty": "1792362538021795052362857", - "reserves": [ - "16485134378400793573528695", - "79962607865151708842276455", - "30153716835216874101958675" - ], - "mAssetSupply": "126293796800330792390551025" - }, { "type": "redeemMasset", - "inputQty": "418301247801079365632", + "inputQty": "143956720613975995187", "expectedQtys": [ - "54584498444275693943", - "264766955757082390072", - "99843014433510177808" + "79051381538402582211", + "23854850136609989745", + "41175885967877680896" ], - "redemptionFee": "125490374340323809", + "redemptionFee": "43187016184192798", "reserves": [ - "16485079793902349297834752", - "79962343098195951759886383", - "30153616992202440591780867" + "870661744493639212980875923", + "262734249931932027460654660", + "453505909829643440010376380" ], - "mAssetSupply": "126293378624573365651509202" + "mAssetSupply": "1585045141274697929603016722" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "461966671167638011904", - "expectedQty": "466196691882354699324", - "swapFee": "277180002700582807", + "inputIndex": 2, + "inputQty": "1408503023707550384128", + "expectedQty": "1406569606867502489626", + "swapFee": "845101814224530230", "reserves": [ - "16485079793902349297834752", - "79961876901504069405187059", - "30153616992202440591780867" + "870661744493639212980875923", + "262734249931932027460654660", + "453504503260036572507886754" ], - "mAssetSupply": "126292916935082200714080105" + "mAssetSupply": "1585043733616776036277162824" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "12168235018452687912960", - "outputIndex": 0, - "expectedQty": "11948952048220711858454", - "swapFee": "7327878089353370421", + "type": "mint", + "inputIndex": 1, + "inputQty": "6587005055874416771072", + "expectedQty": "6657267726647041529784", "reserves": [ - "16473130841854128585976298", - "79961876901504069405187059", - "30165785227220893279693827" - ], - "mAssetSupply": "126292924262960290067450526", - "hardLimitError": false, - "insufficientLiquidityError": false + "870661744493639212980875923", + "262740836936987901877425732", + "453504503260036572507886754" + ] }, { - "type": "redeemMasset", - "inputQty": "4236541786806993715", - "expectedQtys": [ - "552431348359907025", - "2681545353956216600", - "1011618590745882247" - ], - "redemptionFee": "1270962536042098", + "type": "mint", + "inputIndex": 1, + "inputQty": "8690350844115607879680", + "expectedQty": "8783043691686646009703", "reserves": [ - "16473130289422780226069273", - "79961874219958715448970459", - "30165784215602302533811580" - ], - "mAssetSupply": "126292920027689465796498909" + "870661744493639212980875923", + "262749527287832017485305412", + "453504503260036572507886754" + ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "129405090466147168419840", - "expectedQty": "129877306713493855454933", + "inputIndex": 1, + "inputQty": "21008308242188158894080", + "expectedQty": "21232358818680938571290", "reserves": [ - "16473130289422780226069273", - "79961874219958715448970459", - "30295189306068449702231420" + "870661744493639212980875923", + "262770535596074205644199492", + "453504503260036572507886754" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "2128382489944294686720", - "expectedQty": "2174201120461182840589", + "inputQty": "926567719260319465340928", + "expectedQty": "921232165982434066448266", "reserves": [ - "16475258671912724520755993", - "79961874219958715448970459", - "30295189306068449702231420" + "871588312212899532446216851", + "262770535596074205644199492", + "453504503260036572507886754" ] }, { "type": "mint", "inputIndex": 1, - "inputQty": "1147263101806339200", - "expectedQty": "1136194403954461324", + "inputQty": "3287307462348883623936000", + "expectedQty": "3321948412508813834590601", "reserves": [ - "16475258671912724520755993", - "79961875367221817255309659", - "30295189306068449702231420" + "871588312212899532446216851", + "266057843058423089268135492", + "453504503260036572507886754" ] }, { "type": "redeemMasset", - "inputQty": "1667849241591646822", + "inputQty": "7025504487757861355520", "expectedQtys": [ - "217283054337703523", - "1054572851106781909", - "399546459041863612" + "3851645218908700862943", + "1175739055710079878561", + "2004086593704134148238" ], - "redemptionFee": "500354772477494", + "redemptionFee": "2107651346327358406", "reserves": [ - "16475258454629670183052470", - "79961874312648966148527750", - "30295188906521990660367808" + "871584460567680623745353908", + "266056667319367379188256931", + "453502499173442868373738516" ], - "mAssetSupply": "126424971004368937970086427" + "mAssetSupply": "1589316563468667887270315354" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "84364763927719490617344", + "expectedQty": "84433978181260871782819", + "reserves": [ + "871584460567680623745353908", + "266056667319367379188256931", + "453586863937370587864355860" + ] + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1977893772200934637568", + "expectedQty": "1998454704087578596170", + "reserves": [ + "871584460567680623745353908", + "266058645213139580122894499", + "453586863937370587864355860" + ] }, { "type": "redeemMasset", - "inputQty": "12806399727980620283904", + "inputQty": "5006856091866691993", "expectedQtys": [ - "1668384395048611249927", - "8097423398209181551612", - "3067874203969640562097" + "2744797139447484611", + "837872910022574860", + "1428437498547592181" ], - "redemptionFee": "3841919918394186085", + "redemptionFee": "1502056827560007", "reserves": [ - "16473590070234621571802543", - "79953776889250756966976138", - "30292121032318021019805711" + "871584457822883484297869297", + "266058644375266670100319639", + "453586862508933089316763679" ], - "mAssetSupply": "126412168446560875743988608" + "mAssetSupply": "1589402990896199200681562357" }, { - "type": "redeemMasset", - "inputQty": "104643882926875882605772", - "expectedQtys": [ - "13632732463522999996154", - "66165811163943807461867", - "25068268666731985754887" + "type": "mintMulti", + "inputQtys": [ + "166362958269860278173696", + "93859844382873717047296", + "229397698336555475664896" ], - "redemptionFee": "31393164878062764781", + "expectedQty": "489836400475235689399785", "reserves": [ - "16459957337771098571806389", - "79887611078086813159514271", - "30267052763651289034050824" + "871750820781153344576042993", + "266152504219649543817366935", + "453816260207269644792428575" ], - "mAssetSupply": "126307555956798877924147617" + "mAssetSupply": "1589892827296674436370962142" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "45135272067360336", - "expectedQty": "44699810756445415", + "type": "mintMulti", + "inputQtys": [ + "46402758601076906131456", + "17957761329743156740096", + "43407567561170628902912" + ], + "expectedQty": "107725974513451937092873", "reserves": [ - "16459957337771098571806389", - "79887611123222085226874607", - "30267052763651289034050824" - ] + "871797223539754421482174449", + "266170461980979286974107031", + "453859667774830815421331487" + ], + "mAssetSupply": "1590000553271187888308055015" }, { "type": "redeemBassets", "inputQtys": [ - "141019207770045138599936", - "18873685511965742465024", - "67873625560434176163840" + "19051068588504417042432", + "4020494682986375544832", + "54053853324261971722240" ], - "expectedQty": "230890873378043768235282", - "swapFee": "138617694643612428398", + "expectedQty": "77102899769930281380963", + "swapFee": "46289513570100228965", "reserves": [ - "16318938130001053433206453", - "79868737437710119484409583", - "30199179138090854857886984" + "871778172471165917065132017", + "266166441486296300598562199", + "453805613921506553449609247" ], - "mAssetSupply": "126076665128120644912357750" + "mAssetSupply": "1589923450371417958026674052" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "38149743829361899864064", - "outputIndex": 1, - "expectedQty": "38640316149608184735032", - "swapFee": "22972644002031862480", + "type": "mintMulti", + "inputQtys": [ + "939585344566401433600", + "365500670526134026240", + "1864005178262333423616" + ], + "expectedQty": "3169063761390106975457", "reserves": [ - "16318938130001053433206453", - "79830097121560511299674551", - "30237328881920216757751048" + "871779112056510483466565617", + "266166806986966826732588439", + "453807477926684815783032863" ], - "mAssetSupply": "126076688100764646944220230", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1589926619435179348133649509" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "5924641143286982823116800", - "outputIndex": 0, - "expectedQty": "5642004891393775708145508", - "swapFee": "3518405590338090527205", + "type": "redeemBassets", + "inputQtys": [ + "132097291337806878081024", + "145175049945817162973184", + "115242220700629727182848" + ], + "expectedQty": "393365792371144355580073", + "swapFee": "236161172125962190662", "reserves": [ - "10676933238607277725060945", - "85754738264847494122791351", - "30237328881920216757751048" + "871647014765172676588484593", + "266021631937021009569615255", + "453692235705984186055850015" ], - "mAssetSupply": "126080206506354985034747435", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1589533253642808203778069436" }, { - "type": "mintMulti", - "inputQtys": [ - "4062391331468504203264", - "2166441041271350362112", - "3165813216771406561280" + "type": "redeem", + "inputIndex": 2, + "inputQty": "343800262970920642019328", + "expectedQty": "343312146347405666352851", + "swapFee": "206280157782552385211", + "reserves": [ + "871647014765172676588484593", + "266021631937021009569615255", + "453348923559636780389497164" ], - "expectedQty": "9614169165800943770344", + "mAssetSupply": "1589189659659995065688435319" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "19996102018440814919680", + "expectedQty": "20012584728840580313783", + "reserves": [ + "871647014765172676588484593", + "266021631937021009569615255", + "453368919661655221204416844" + ] + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "28722123916579470569373696", + "expectedQty": "28865321692216354724178492", + "swapFee": "17233274349947682341624", "reserves": [ - "10680995629938746229264209", - "85756904705888765473153463", - "30240494695136988164312328" + "842781693072956321864306101", + "266021631937021009569615255", + "453368919661655221204416844" ], - "mAssetSupply": "126089820675520785978517779" + "mAssetSupply": "1560504781602494383381717030" }, { - "type": "redeemMasset", - "inputQty": "6094078998786050569011", - "expectedQtys": [ - "516071032194131344126", - "4143495219236933585365", - "1461122525660091297103" + "type": "redeemBassets", + "inputQtys": [ + "4272209619705071665152", + "14774599368438192275456", + "22690752318473911664640" ], - "redemptionFee": "1828223699635815170", + "expectedQty": "41873833433004388093026", + "swapFee": "25139383690016642841", "reserves": [ - "10680479558906552097920083", - "85752761210669528539568098", - "30239033572611328073015225" + "842777420863336616792640949", + "266006857337652571377339799", + "453346228909336747292752204" ], - "mAssetSupply": "126083728424745699563763938" + "mAssetSupply": "1560462907769061378993624004" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "8430256234126372765696", - "expectedQty": "8298438604813632531975", + "inputIndex": 2, + "inputQty": "50088097144086844145664", + "expectedQty": "50119326384561164102486", "reserves": [ - "10680479558906552097920083", - "85761191466903654912333794", - "30239033572611328073015225" + "842777420863336616792640949", + "266006857337652571377339799", + "453396317006480834136897868" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "132181896477704355840", - "expectedQty": "124707158243555600123", - "swapFee": "79309137886622613", + "inputIndex": 1, + "inputQty": "474533381098570323591168", + "expectedQty": "469621889095627117545859", + "swapFee": "284720028659142194154", "reserves": [ - "10680354851748308542319960", - "85761191466903654912333794", - "30239033572611328073015225" + "842777420863336616792640949", + "265537235448556944259793940", + "453396317006480834136897868" ], - "mAssetSupply": "126091894760763173378562686" + "mAssetSupply": "1560038778434376028976329476" }, { "type": "mint", "inputIndex": 1, - "inputQty": "592202777031522419474432", - "expectedQty": "582898079202669756927538", + "inputQty": "1521891988889775636480", + "expectedQty": "1536915148842117394182", "reserves": [ - "10680354851748308542319960", - "86353394243935177331808226", - "30239033572611328073015225" + "842777420863336616792640949", + "265538757340545834035430420", + "453396317006480834136897868" ] }, + { + "type": "redeemBassets", + "inputQtys": [ + "2533785388132999888896", + "2256452328858281050112", + "2350379284937090269184" + ], + "expectedQty": "7150592597138906274161", + "swapFee": "4292931317073587917", + "reserves": [ + "842774887077948483792752053", + "265536500888216975754380308", + "453393966627195897046628684" + ], + "mAssetSupply": "1560033164756927732187449497" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "991246265063808434176000", + "expectedQty": "996051683540994698359167", + "swapFee": "594747759038285060505", + "reserves": [ + "841778835394407489094392886", + "265536500888216975754380308", + "453393966627195897046628684" + ], + "mAssetSupply": "1559042513239622962038334002" + }, { "type": "mint", "inputIndex": 0, - "inputQty": "927038873196484567760896", - "expectedQty": "978304542275025567260528", + "inputQty": "74130692965272485888", + "expectedQty": "73729147390505234684", "reserves": [ - "11607393724944793110080856", - "86353394243935177331808226", - "30239033572611328073015225" + "841778909525100454366878774", + "265536500888216975754380308", + "453393966627195897046628684" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "3069446829285738886987776", - "outputIndex": 0, - "expectedQty": "2880514130718401853715447", - "swapFee": "1847522727194957624914", + "type": "redeem", + "inputIndex": 1, + "inputQty": "222133364428618543923200", + "expectedQty": "219832264274168096969450", + "swapFee": "133280018657171126353", "reserves": [ - "8726879594226391256365409", - "86353394243935177331808226", - "33308480401897066960003001" + "841778909525100454366878774", + "265316668623942807657410858", + "453393966627195897046628684" ], - "mAssetSupply": "127654944904968063660375666", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1558820586884360391170771839" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "23963772338484948", - "expectedQty": "21960735640405481", - "swapFee": "14378263403090", + "inputQty": "38218826689961338014269440", + "expectedQty": "38396881379742603028534682", + "swapFee": "22931296013976802808561", "reserves": [ - "8726879572265655615959928", - "86353394243935177331808226", - "33308480401897066960003001" + "803382028145357851338344092", + "265316668623942807657410858", + "453393966627195897046628684" ], - "mAssetSupply": "127654944881018669585293808" + "mAssetSupply": "1520624691490413029959310960" }, { "type": "redeemBassets", "inputQtys": [ - "305524442318798592", - "1707264107173334272", - "1268839686259720704" + "526551826753007321088", + "389277337903285403648", + "424226780168599175168" ], - "expectedQty": "3279961819723699475", - "swapFee": "1969158586986411", + "expectedQty": "1341109011394722135377", + "swapFee": "805148495934393917", "reserves": [ - "8726879266741213297161336", - "86353392536671070158473954", - "33308479133057380700282297" + "803381501593531098331023004", + "265316279346604904372007210", + "453393542400415728447453516" ], - "mAssetSupply": "127654941601056849861594333" + "mAssetSupply": "1520623350381401635237175583" }, { - "type": "mintMulti", - "inputQtys": [ - "401266012402654193385472", - "55384637534531559096320", - "316747089437803543527424" + "type": "redeemMasset", + "inputQty": "28150116050027", + "expectedQtys": [ + "14867914471969", + "4910120212528", + "8390803618432" ], - "expectedQty": "807632465483435772822356", + "redemptionFee": "8445034815", "reserves": [ - "9128145279143867490546808", - "86408777174205601717570274", - "33625226222495184243809721" + "803381501593516230416551035", + "265316279346599994251794682", + "453393542400407337643835084" ], - "mAssetSupply": "128462574066540285634416689" + "mAssetSupply": "1520623350381373493566160371" }, { "type": "redeemMasset", - "inputQty": "69545980205108564066304", + "inputQty": "2060985447472363894472704", "expectedQtys": [ - "4940235455820012680918", - "46765218084927187048946", - "18198279027601067931390" + "1088540995942569323936568", + "359490038526990828886527", + "614325145923240509869817" ], - "redemptionFee": "20863794061532569219", + "redemptionFee": "618295634241709168341", "reserves": [ - "9123205043688047477865890", - "86362011956120674530521328", - "33607027943467583175878331" + "802292960597573661092614467", + "264956789308073003422908155", + "452779217254484097133965267" ], - "mAssetSupply": "128393048950129238602919604" + "mAssetSupply": "1518562983229535371380856008" }, { - "type": "redeemBassets", - "inputQtys": [ - "37221524521853", - "1285742849078123", - "819055613416323" + "type": "redeem", + "inputIndex": 2, + "inputQty": "132837593064558690304", + "expectedQty": "132710792737814596070", + "swapFee": "79702555838735214", + "reserves": [ + "802292960597573661092614467", + "264956789308073003422908155", + "452779084543691359319369197" ], - "expectedQty": "2123817879341336", - "swapFee": "1275055761061", + "mAssetSupply": "1518562850471644862660900918" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "3722925475773303176036352", + "expectedQty": "3686441240565926251089430", + "swapFee": "2233755285463981905621", "reserves": [ - "9123205043650825953344037", - "86362011954834931681443205", - "33607027942648527562462008" + "802292960597573661092614467", + "261270348067507077171818725", + "452779084543691359319369197" ], - "mAssetSupply": "128393048948005420723578268" + "mAssetSupply": "1514842158751157023466770187" }, { "type": "mintMulti", "inputQtys": [ - "197270353239355603025920", - "328945483174941338632192", - "240875189675033578438656" + "454657128495347392315392", + "1666900495162225937350656", + "620828656564926450499584" ], - "expectedQty": "777848818514418458199643", + "expectedQty": "2755895244605645260665438", "reserves": [ - "9320475396890181556369957", - "86690957438009873020075397", - "33847903132323561140900664" + "802747617726069008484929859", + "262937248562669303109169381", + "453399913200256285769868781" ], - "mAssetSupply": "129170897766519839181777911" + "mAssetSupply": "1517598053995762668727435625" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "54016692404312155881472", - "expectedQty": "54921156381384751419391", - "swapFee": "32410015442587293528", + "inputIndex": 2, + "inputQty": "7221831567264042100719616", + "expectedQty": "7214692910613404967191803", + "swapFee": "4333098940358425260431", "reserves": [ - "9320475396890181556369957", - "86636036281628488268656006", - "33847903132323561140900664" + "802747617726069008484929859", + "262937248562669303109169381", + "446185220289642880802676978" ], - "mAssetSupply": "129116913484130969613189967" + "mAssetSupply": "1510380555527438985051976440" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "1065814169597048795430912", - "expectedQty": "977707195460325814595701", - "swapFee": "639488501758229277258", + "inputQty": "4596765732462108160", + "expectedQty": "4617710956352898306", + "swapFee": "2758059439477264", + "reserves": [ + "802747613108358052132031553", + "262937248562669303109169381", + "446185220289642880802676978" + ], + "mAssetSupply": "1510380550933431312029345544" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "28368135709248008", + "18339637810149908", + "62274916489589216" + ], + "expectedQty": "109034846353773254", + "swapFee": "65460183922617", + "reserves": [ + "802747613079989916422783545", + "262937248544329665299019473", + "446185220227367964313087762" + ], + "mAssetSupply": "1510380550824396465675572290" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "87463870239929677119488", + "103657037752735956467712", + "206659671266550712631296" + ], + "expectedQty": "398383248594034010076444", + "swapFee": "239173453228357420498", "reserves": [ - "8342768201429855741774256", - "86636036281628488268656006", - "33847903132323561140900664" + "802660149209749986745664057", + "262833591506576929342551761", + "445978560556101413600456466" ], - "mAssetSupply": "128051738803035679047036313" + "mAssetSupply": "1509982167575802431665495846" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "93775630020467023151104", - "expectedQty": "95521132711899881285269", - "swapFee": "56265378012280213890", + "inputQty": "8010102136846349250854912", + "expectedQty": "7929538235580677417961126", + "swapFee": "4806061282107809550512", "reserves": [ - "8342768201429855741774256", - "86540515148916588387370737", - "33847903132323561140900664" + "802660149209749986745664057", + "254904053270996251924590635", + "445978560556101413600456466" ], - "mAssetSupply": "127958019438393224304099099" + "mAssetSupply": "1501976871500238190224191446" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "11514431139330539854495744", + "expectedQty": "11568032025141501926207299", + "swapFee": "6908658683598323912697", + "reserves": [ + "791092117184608484819456758", + "254904053270996251924590635", + "445978560556101413600456466" + ], + "mAssetSupply": "1490469349019591248693608399" }, { "type": "mintMulti", "inputQtys": [ - "495746200962250045390848", - "200873918265675623694336", - "209192361181110993944576" + "596902854654060", + "1237513434749961", + "484826481343974" ], - "expectedQty": "949058154349615074144778", + "expectedQty": "2328239984177734", "reserves": [ - "8838514402392105787165104", - "86741389067182264011065073", - "34057095493504672134845240" + "791092117185205387674110818", + "254904053272233765359340596", + "445978560556586240081800440" ], - "mAssetSupply": "128907077592742839378243877" + "mAssetSupply": "1490469349021919488677786133" }, { "type": "mint", "inputIndex": 0, - "inputQty": "215512003915789795328", - "expectedQty": "234766711730445804222", + "inputQty": "2516743529235388416", + "expectedQty": "2503724623997139770", "reserves": [ - "8838729914396021576960432", - "86741389067182264011065073", - "34057095493504672134845240" + "791092119701948916909499234", + "254904053272233765359340596", + "445978560556586240081800440" ] }, + { + "type": "mintMulti", + "inputQtys": [ + "26391276692695572", + "22460117201544968", + "68006923696681312" + ], + "expectedQty": "116957828834341779", + "reserves": [ + "791092119728340193602194806", + "254904053294693882560885564", + "445978560624593163778481752" + ], + "mAssetSupply": "1490469351642601941509267682" + }, { "type": "mint", "inputIndex": 2, - "inputQty": "1552942225886132043776", - "expectedQty": "1554392691647264802869", + "inputQty": "3058294793108917248", + "expectedQty": "3059157243195703682", "reserves": [ - "8838729914396021576960432", - "86741389067182264011065073", - "34058648435730558266889016" + "791092119728340193602194806", + "254904053294693882560885564", + "445978563682887956887399000" ] }, { - "type": "mintMulti", - "inputQtys": [ - "15916647331527466680320", - "14347351859815075807232", - "16193746578417827971072" - ], - "expectedQty": "47636251154406577944195", + "type": "redeem", + "inputIndex": 2, + "inputQty": "290519517876186148503552", + "expectedQty": "290262546917395786474704", + "swapFee": "174311710725711689102", "reserves": [ - "8854646561727549043640752", - "86755736419042079086872305", - "34074842182308976094860088" + "791092119728340193602194806", + "254904053294693882560885564", + "445688301135970561100924296" ], - "mAssetSupply": "128956503003300623666795163" + "mAssetSupply": "1490179009495593724268156914" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "1085369804174807", - "outputIndex": 2, - "expectedQty": "1180223762343303", - "swapFee": "709220200874", + "inputIndex": 2, + "inputQty": "3004431603087952635232256", + "outputIndex": 0, + "expectedQty": "3018924663780126788094872", + "swapFee": "1803125804988397980770", "reserves": [ - "8854646562812918847815559", - "86755736419042079086872305", - "34074842181128752332516785" + "788073195064560066814099934", + "254904053294693882560885564", + "448692732739058513736156552" ], - "mAssetSupply": "128956503003301332886996037", + "mAssetSupply": "1490180812621398712666137684", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "346603043245761750892544", - "225254653650335422218240", - "376074508478029058015232" + "1352682395178498376335360", + "1408095706309816769052672", + "2061525948425409442873344" ], - "expectedQty": "974144562317892551682354", + "expectedQty": "4829330605505140474525399", "reserves": [ - "9201249606058680598708103", - "86980991072692414509090545", - "34450916689606781390532017" + "789425877459738565190435294", + "256312149001003699329938236", + "450754258687483923179029896" ], - "mAssetSupply": "129930647565619225438678391" + "mAssetSupply": "1495010143226903853140663083" }, { - "type": "redeemMasset", - "inputQty": "278720590260309657", - "expectedQtys": [ - "19732129378651099", - "186531204218123819", - "73880176545241756" - ], - "redemptionFee": "83616177078092", + "type": "swap", + "inputIndex": 2, + "inputQty": "2120392206575880659533824", + "outputIndex": 0, + "expectedQty": "2130311378704148395964615", + "swapFee": "1272464502622358160526", "reserves": [ - "9201249586326551220057004", - "86980990886161210290966726", - "34450916615726604845290261" + "787295566081034416794470679", + "256312149001003699329938236", + "452874650894059803838563720" ], - "mAssetSupply": "129930647286982251355446826" + "mAssetSupply": "1495011415691406475498823609", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "162839298593041785290752", - "expectedQty": "162590023955439082823099", - "swapFee": "97703579155825071174", + "inputIndex": 0, + "inputQty": "892206785761049604784128", + "expectedQty": "896205603163538263573118", + "swapFee": "535324071456629762870", "reserves": [ - "9201249586326551220057004", - "86980990886161210290966726", - "34288326591771165762467162" + "786399360477870878530897561", + "256312149001003699329938236", + "452874650894059803838563720" ], - "mAssetSupply": "129767905691968365395227248" + "mAssetSupply": "1494119744229716882523802351" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "9993185265649903992832", - "expectedQty": "9820765815875792450687", + "type": "mintMulti", + "inputQtys": [ + "2466641465075657741434880", + "6225969124887337654812672", + "4314500551958456667471872" + ], + "expectedQty": "13053578814289706059362344", "reserves": [ - "9201249586326551220057004", - "86990984071426860194959558", - "34288326591771165762467162" - ] + "788866001942946536272332441", + "262538118125891036984750908", + "457189151446018260506035592" + ], + "mAssetSupply": "1507173323044006588583164695" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "323394826138240221184", - "expectedQty": "350260057661664452179", + "inputIndex": 2, + "inputQty": "1289517558721580630016", + "expectedQty": "1289722961457314467608", "reserves": [ - "9201572981152689460278188", - "86990984071426860194959558", - "34288326591771165762467162" + "788866001942946536272332441", + "262538118125891036984750908", + "457190440963576982086665608" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "8756511848406011871232", - "5685682686519226138624", - "19124709770255566635008" + "type": "redeemMasset", + "inputQty": "8143208396902094602240", + "expectedQtys": [ + "4260935014813711307056", + "1418058146111882438168", + "2469441899564479274886" ], - "expectedQty": "34215683263873940902294", - "swapFee": "20541734999323958916", + "redemptionFee": "2442962519070628380", "reserves": [ - "9192816469304283448406956", - "86985298388740340968820934", - "34269201882000910195832154" + "788861741007931722561025385", + "262536700067744925102312740", + "457187971521677417607390722" ], - "mAssetSupply": "129743861034578028911227820" + "mAssetSupply": "1507166472001533662873658443" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "15374375619199082954752", - "22547290373684996341760", - "20781081288264088813568" + "5744901184296770569502720", + "14799015102562612373618688", + "934908943111630601846784" ], - "expectedQty": "59614712432828350191980", - "swapFee": "35790301640681418966", + "expectedQty": "21579388045332732378429126", "reserves": [ - "9177442093685084365452204", - "86962751098366655972479174", - "34248420800712646107018586" + "794606642192228493130528105", + "277335715170307537475931428", + "458122880464789048209237506" ], - "mAssetSupply": "129684246322145200561035840" + "mAssetSupply": "1528745860046866395252087569" }, { "type": "swap", "inputIndex": 1, - "inputQty": "50798443262956336578560", - "outputIndex": 0, - "expectedQty": "46026191274325173864170", - "swapFee": "29951664924687456810", + "inputQty": "15693107981665909017149440", + "outputIndex": 2, + "expectedQty": "15793502282077026353446591", + "swapFee": "9488246152116554222995", "reserves": [ - "9131415902410759191588034", - "87013549541629612309057734", - "34248420800712646107018586" + "794606642192228493130528105", + "293028823151973446493080868", + "442329378182712021855790915" ], - "mAssetSupply": "129684276273810125248492650", + "mAssetSupply": "1528755348293018511806310564", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "179950707689965056", - "expectedQtys": [ - "12667008211201385", - "120704319933408338", - "47509064545923761" - ], - "redemptionFee": "53985212306989", - "reserves": [ - "9131415889743750980386649", - "87013549420925292375649396", - "34248420753203581561094825" - ], - "mAssetSupply": "129684276093913402770834583" - }, - { - "type": "redeemMasset", - "inputQty": "58265084989964509039820", + "inputQty": "5095708261803865250201", "expectedQtys": [ - "4101369310899265072491", - "39082077252470236109294", - "15382655167609111326312" + "2647819947732968021708", + "976442332601105318501", + "1473947597252994099340" ], - "redemptionFee": "17479525496989352711", + "redemptionFee": "1528712478541159575", "reserves": [ - "9127314520432851715314158", - "86974467343672822139540102", - "34233038098035972449768513" + "794603994372280760162506397", + "293027846709640845387762367", + "442327904235114768861691575" ], - "mAssetSupply": "129626028488448935251147474" + "mAssetSupply": "1528750254113469186482219938" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "579701089905952423936", - "outputIndex": 1, - "expectedQty": "590189209272347653318", - "swapFee": "348164270216724553", + "type": "redeem", + "inputIndex": 0, + "inputQty": "69841973750338242478080", + "expectedQty": "70121130643222843282301", + "swapFee": "41905184250202945486", "reserves": [ - "9127314520432851715314158", - "86973877154463549791886784", - "34233617799125878402192449" + "794533873241637537319224096", + "293027846709640845387762367", + "442327904235114768861691575" ], - "mAssetSupply": "129626028836613205467872027", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1528680454044903098442687344" }, { "type": "redeemMasset", - "inputQty": "7597159851817977040076", + "inputQty": "1520393091030116185250201", "expectedQtys": [ - "534775812785981089017", - "5095860972283068074167", - "2005771877604144281617" - ], - "redemptionFee": "2279147955545393112", - "reserves": [ - "9126779744620065734225141", - "86968781293491266723812617", - "34231612027248274257910832" - ], - "mAssetSupply": "129618433955909343036225063" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1279789964228964638523392", - "312070044409571731046400", - "534243380797788223700992" + "789989436397327708623204", + "291351836928505840729005", + "439797953917111052854502" ], - "expectedQty": "2245347855195008817613118", - "swapFee": "1348017523631184000968", + "redemptionFee": "456117927309034855575", "reserves": [ - "7846989780391101095701749", - "86656711249081694992766217", - "33697368646450486034209840" + "793743883805240209610600892", + "292736494872712339547033362", + "441888106281197657808837073" ], - "mAssetSupply": "127373086100714334218611945" + "mAssetSupply": "1527160517071800291292292718" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1957259677416618983424", - "expectedQty": "1758381619789477139414", - "swapFee": "1174355806449971390", + "inputIndex": 1, + "inputQty": "495820622532772540448768", + "expectedQty": "492052456367382816650133", + "swapFee": "297492373519663524269", "reserves": [ - "7845231398771311618562335", - "86656711249081694992766217", - "33697368646450486034209840" + "793743883805240209610600892", + "292244442416344956730383229", + "441888106281197657808837073" ], - "mAssetSupply": "127371130015392724049599911" + "mAssetSupply": "1526664993941641038415368219" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "8372848326264217386614784", - "expectedQty": "8831750305108134971706163", + "inputIndex": 1, + "inputQty": "89715392190483005440", + "expectedQty": "90349453103259249006", "reserves": [ - "16218079725035529005177119", - "86656711249081694992766217", - "33697368646450486034209840" + "793743883805240209610600892", + "292244532131737147213388669", + "441888106281197657808837073" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4929567380389572378624", - "expectedQty": "4799793577243802758275", - "swapFee": "2957740428233743427", + "type": "redeemMasset", + "inputQty": "2101674798564008", + "expectedQtys": [ + "1092375188777602", + "402196076681782", + "608140249476166" + ], + "redemptionFee": "630502439569", "reserves": [ - "16213279931458285202418844", - "86656711249081694992766217", - "33697368646450486034209840" + "793743883804147834421823290", + "292244532131334951136706887", + "441888106280589517559360907" ], - "mAssetSupply": "136197953710860897682670877" + "mAssetSupply": "1526665084288993097378492786" }, { - "type": "redeemBassets", - "inputQtys": [ - "264969249485867876352", - "261979143078200803328", - "61553872373373378560" + "type": "redeemMasset", + "inputQty": "221014537474131", + "expectedQtys": [ + "114875430423801", + "42295401706519", + "63952727629037" ], - "expectedQty": "592974071882802693551", - "swapFee": "355998041954854528", + "redemptionFee": "66304361242", "reserves": [ - "16213014962208799334542492", - "86656449269938616791962889", - "33697307092578112660831280" + "793743883804032958991399489", + "292244532131292655735000368", + "441888106280525564831731870" ], - "mAssetSupply": "136197360736789014879977326" + "mAssetSupply": "1526665084288772149145379897" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4909206454350509384925184", - "expectedQty": "4918443881826951449627193", + "type": "redeemMasset", + "inputQty": "296680666398843955", + "expectedQtys": [ + "154203970654992822", + "56775577332173939", + "85847465365157745" + ], + "redemptionFee": "89004199919653", "reserves": [ - "16213014962208799334542492", - "86656449269938616791962889", - "38606513546928622045756464" - ] + "793743883649828988336406667", + "292244532074517078402826429", + "441888106194678099466574125" + ], + "mAssetSupply": "1526665083992180486946455595" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "383776018684646132809728", - "expectedQty": "387284336224903310457268", - "swapFee": "230265611210787679685", + "inputIndex": 0, + "inputQty": "4198937347033603927703552", + "expectedQty": "4215668175638657101602432", + "swapFee": "2519362408220162356622", "reserves": [ - "16213014962208799334542492", - "86269164933713713481505621", - "38606513546928622045756464" + "789528215474190331234804235", + "292244532074517078402826429", + "441888106194678099466574125" ], - "mAssetSupply": "140732258865542530984474476" + "mAssetSupply": "1522468666007555103181108665" }, { "type": "mint", "inputIndex": 2, - "inputQty": "1990411640745292294258688", - "expectedQty": "1991494292739881708407495", + "inputQty": "16437321545706671267905536", + "expectedQty": "16447879860143870782752185", "reserves": [ - "16213014962208799334542492", - "86269164933713713481505621", - "40596925187673914340015152" + "789528215474190331234804235", + "292244532074517078402826429", + "458325427740384770734479661" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "116738322671690285056", - "expectedQty": "113537606067022294871", - "swapFee": "70042993603014171", + "type": "redeemMasset", + "inputQty": "96858124540745351168", + "expectedQtys": [ + "49677340049040626551", + "18388109142646766123", + "28837966371228933599" + ], + "redemptionFee": "29057437362223605", "reserves": [ - "16212901424602732312247621", - "86269164933713713481505621", - "40596925187673914340015152" + "789528165796850282194177684", + "292244513686407935756060306", + "458325398902418399505546062" ], - "mAssetSupply": "142723636490002734605611086" + "mAssetSupply": "1538916449038631870580733287" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "297672263270942834688", - "outputIndex": 1, - "expectedQty": "308599197603130611555", - "swapFee": "183528090753144432", + "type": "redeemMasset", + "inputQty": "337081137212416956825", + "expectedQtys": [ + "172884766836201840945", + "63993441648583419019", + "100360548435129572362" + ], + "redemptionFee": "101124341163725087", "reserves": [ - "16213199096866003255082309", - "86268856334516110350894066", - "40596925187673914340015152" + "789527992912083445992336739", + "292244449692966287172641287", + "458325298541869964375973700" ], - "mAssetSupply": "142723636673530825358755518", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1538916112058618999327501549" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1747699755136283047886848", - "expectedQty": "1694409684726357256439893", - "swapFee": "1048619853081769828732", + "inputIndex": 1, + "inputQty": "35967728594094479376384", + "expectedQty": "35689714186592859944134", + "swapFee": "21580637156456687625", "reserves": [ - "14518789412139645998642416", - "86268856334516110350894066", - "40596925187673914340015152" + "789527992912083445992336739", + "292208759978779694312697153", + "458325298541869964375973700" ], - "mAssetSupply": "140976985538247624080697402" + "mAssetSupply": "1538880165910662061304812790" }, { "type": "redeemMasset", - "inputQty": "118817489297807276769280", + "inputQty": "12164340541717756", "expectedQtys": [ - "12232979540440374807675", - "72686855946469814128938", - "34205424510831583013396" + "6239086291106952", + "2309121000004841", + "3621823561255921" ], - "redemptionFee": "35645246789342183030", + "redemptionFee": "3649302162515", "reserves": [ - "14506556432599205623834741", - "86196169478569640536765128", - "40562719763163082757001756" + "789527992905844359701229787", + "292208759976470573312692312", + "458325298538248140814717779" ], - "mAssetSupply": "140858203694196606146111152" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "290159767062734635008", - "expectedQty": "290099439595764826755", - "reserves": [ - "14506556432599205623834741", - "86196169478569640536765128", - "40563009922930145491636764" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "628377237363357515776", - "expectedQty": "628246495744053731424", - "reserves": [ - "14506556432599205623834741", - "86196169478569640536765128", - "40563638300167508849152540" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1047909654837500800", - "expectedQty": "1084022412885688855", - "reserves": [ - "14506557480508860461335541", - "86196169478569640536765128", - "40563638300167508849152540" - ] + "mAssetSupply": "1538880165898501370065257549" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "194419664339462659244032", - "206066926017133085196288", - "257771155889963378147328" + "34419718709390090436608", + "3252574237809743757312", + "26768970117454032273408" ], - "expectedQty": "662698300490561695470514", + "expectedQty": "64324927941759984678716", + "swapFee": "38618127641640975392", "reserves": [ - "14700977144848323120579573", - "86402236404586773621961416", - "40821409456057472227299868" + "789493573187134969610793179", + "292205507402232763568935000", + "458298529568130686782444371" ], - "mAssetSupply": "141521821424644920545828700" + "mAssetSupply": "1538815840970559610080578833" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3991780959541847392256", - "expectedQty": "3990246689864550988024", - "swapFee": "2395068575725108435", + "type": "mintMulti", + "inputQtys": [ + "573220213064877708673024", + "2675561230916032799965184", + "752531959159198901600256" + ], + "expectedQty": "4018200757665121571705296", "reserves": [ - "14700977144848323120579573", - "86402236404586773621961416", - "40817419209367607676311844" + "790066793400199847319466203", + "294881068633148796368900184", + "459051061527289885684044627" ], - "mAssetSupply": "141517832038753954423544879" + "mAssetSupply": "1542834041728224731652284129" }, { "type": "swap", "inputIndex": 2, - "inputQty": "355152409664581468160", + "inputQty": "48690245617622200900124672", "outputIndex": 0, - "expectedQty": "343275207083811438492", - "swapFee": "213045601846047223", + "expectedQty": "48858562989040671634042713", + "swapFee": "29217582775654019388958", "reserves": [ - "14700633869641239309141081", - "86402236404586773621961416", - "40817774361777272257780004" + "741208230411159175685423490", + "294881068633148796368900184", + "507741307144912086584169299" ], - "mAssetSupply": "141517832251799556269592102", + "mAssetSupply": "1542863259311000385671673087", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "269830186781402038272", - "81989177579725733888", - "520912764160433520640" + "68060041391436184", + "11192123717435320", + "15444159091518844" ], - "expectedQty": "880883742292790799086", + "expectedQty": "94513199889113997", + "swapFee": "56741965112535", "reserves": [ - "14700903699828020711179353", - "86402318393764353347695304", - "40818295274541432691300644" + "741208230343099134293987306", + "294881068621956672651464864", + "507741307129467927492650455" ], - "mAssetSupply": "141518713135541849060391188" + "mAssetSupply": "1542863259216487185782559090" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "29231953479379024084992", - "15957895267833631211520", - "20349555844062979817472" + "30432232199879651229696", + "53201466716518220824576", + "5849175617886184538112" ], - "expectedQty": "66358917038920748245280", - "swapFee": "39839253775617819638", + "expectedQty": "89733928173994661345323", "reserves": [ - "14671671746348641687094361", - "86386360498496519716483784", - "40797945718697369711483172" + "741238662575299013945217002", + "294934270088673190872289440", + "507747156305085813677188567" ], - "mAssetSupply": "141452354218502928312145908" + "mAssetSupply": "1542952993144661180443904413" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "9306687441382176768", - "expectedQty": "9398114977445841325", - "swapFee": "5584012464829306", + "inputQty": "2493631088721504176701440", + "expectedQty": "2510659899774865899206029", "reserves": [ - "14671671746348641687094361", - "86386351100381542270642459", - "40797945718697369711483172" - ], - "mAssetSupply": "141452344917399499394798446" + "741238662575299013945217002", + "297427901177394695048990880", + "507747156305085813677188567" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "411550995069235758104576", - "expectedQty": "415579878036337639882799", - "swapFee": "246930597041541454862", + "inputQty": "1175155845497195931369472", + "expectedQty": "1166525978243246294857089", + "swapFee": "705093507298317558821", "reserves": [ - "14671671746348641687094361", - "85970771222345204630759660", - "40797945718697369711483172" + "741238662575299013945217002", + "296261375199151448754133791", + "507747156305085813677188567" ], - "mAssetSupply": "141041040852927305178148732" + "mAssetSupply": "1544289202292446148729299791" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "17162536288493737345024", - "26140177337919912017920", - "5928379401973981511680" + "53705986993786242203648", + "71644392314567315685376", + "2221110014747843493888" ], - "expectedQty": "49537769151304104868977", + "expectedQty": "127861016940651212109316", + "swapFee": "76762667765049757119", "reserves": [ - "14688834282637135424439385", - "85996911399683124542777580", - "40803874098099343692994852" + "741184956588305227703013354", + "296189730806836881438448415", + "507744935195071065833694679" ], - "mAssetSupply": "141090578622078609283017709" + "mAssetSupply": "1544161341275505497517190475" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1573523926396994060288", - "outputIndex": 2, - "expectedQty": "1556863898721418234149", - "swapFee": "934439402578354436", + "type": "redeem", + "inputIndex": 2, + "inputQty": "195877529547990085140480", + "expectedQty": "195852849884911451030928", + "swapFee": "117526517728794051084", "reserves": [ - "14688834282637135424439385", - "85998484923609521536837868", - "40802317234200622274760703" + "741184956588305227703013354", + "296189730806836881438448415", + "507549082345186154382663751" ], - "mAssetSupply": "141090579556518011861372145", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1543965581272475236226101079" }, { "type": "redeemBassets", "inputQtys": [ - "343086702284790144", - "263426729931753440", - "573434149809014208" + "35618769575308167217152", + "25949115137971537838080", + "11473817372385897086976" ], - "expectedQty": "1188609180699327681", - "swapFee": "713593664618367", + "expectedQty": "73081729016456690489529", + "swapFee": "43875362627450484584", "reserves": [ - "14688833939550433139649241", - "85998484660182791605084428", - "40802316660766472465746495" + "741149337818729919535796202", + "296163781691698909900610335", + "507537608527813768485576775" ], - "mAssetSupply": "141090578367908831162044464" + "mAssetSupply": "1543892499543458779535611550" }, { - "type": "redeemBassets", - "inputQtys": [ - "1234605002852426579968", - "484104213024072204288", - "1851698306212479893504" - ], - "expectedQty": "3606387140520800350308", - "swapFee": "2165131363130358425", + "type": "mint", + "inputIndex": 0, + "inputQty": "47035293188647691434852352", + "expectedQty": "46851841748908752351322396", "reserves": [ - "14687599334547580713069273", - "85998000555969767532880140", - "40800464962460259985852991" - ], - "mAssetSupply": "141086971980768310361694156" + "788184631007377610970648554", + "296163781691698909900610335", + "507537608527813768485576775" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "2751602565258014713970688", - "1091108738296716233539584", - "3418822555722114568028160" + "type": "redeemMasset", + "inputQty": "199023839838893427916", + "expectedQtys": [ + "98583076761508101234", + "37043017176286443326", + "63480835647480896538" ], - "expectedQty": "7329600132210428073039526", + "redemptionFee": "59707151951668028", "reserves": [ - "17439201899805595427039961", - "87089109294266483766419724", - "44219287518182374553881151" + "788184532424300849462547320", + "296163744648681733614167009", + "507537545046978121004680237" ], - "mAssetSupply": "148416572112978738434733682" + "mAssetSupply": "1590744142328234844945174058" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "12853911850406785024", - "outputIndex": 2, - "expectedQty": "12741661894669139522", - "swapFee": "7646236100027042", + "type": "redeemMasset", + "inputQty": "806131533138802769920", + "expectedQtys": [ + "399303555170200877223", + "150040036673894098218", + "257124490246297045430" + ], + "redemptionFee": "241839459941640830", "reserves": [ - "17439201899805595427039961", - "87089122148178334173204748", - "44219274776520479884741629" + "788184133120745679261670097", + "296163594608645059720068791", + "507537287922487874707634807" ], - "mAssetSupply": "148416572120624974534760724", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1590743336438541166084044968" }, { - "type": "mintMulti", - "inputQtys": [ - "1704913727059107535388672", - "377013229915603220824064", - "802167554070161225940992" - ], - "expectedQty": "2919668094863296820698068", + "type": "mint", + "inputIndex": 1, + "inputQty": "11483668589226955374592", + "expectedQty": "11569640385192141820712", "reserves": [ - "19144115626864702962428633", - "87466135378093937394028812", - "45021442330590641110682621" - ], - "mAssetSupply": "151336240215488271355458792" + "788184133120745679261670097", + "296175078277234286675443383", + "507537287922487874707634807" + ] }, { "type": "redeemMasset", - "inputQty": "991478870999053631488", + "inputQty": "404912825961890358860185", "expectedQtys": [ - "125384982639556544189", - "572862182807840881977", - "294869341319027889131" + "200565228333797111996680", + "75366173594810982913748", + "129150445641482546276021" ], - "redemptionFee": "297443661299716089", + "redemptionFee": "121473847788567107658", "reserves": [ - "19143990241882063405884444", - "87465562515911129553146835", - "45021147461249322082793490" + "787983567892411882149673417", + "296099712103639475692529635", + "507408137476846392161358786" ], - "mAssetSupply": "151335249034060933601543393" + "mAssetSupply": "1590350114726812256434113153" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "90500637757275606351872", - "outputIndex": 1, - "expectedQty": "91136380853854723439585", - "swapFee": "54286830248205265423", + "type": "redeemBassets", + "inputQtys": [ + "5519993837187709343367168", + "5598040317220611529113600", + "11884779661613800263516160" + ], + "expectedQty": "23019687122824395604161441", + "swapFee": "13820104336296415211623", "reserves": [ - "19143990241882063405884444", - "87374426135057274829707250", - "45111648099006597689145362" + "782463574055224172806306249", + "290501671786418864163416035", + "495523357815232591897842626" ], - "mAssetSupply": "151335303320891181806808816", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1567330427603987860829951712" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "3206543417690603424579584", - "expectedQty": "3180844421578327172001674", + "type": "redeemMasset", + "inputQty": "16026205393960855142", + "expectedQtys": [ + "7998415492820293652", + "2969535131539169277", + "5065285891409386014" + ], + "redemptionFee": "4807861618188256", "reserves": [ - "19143990241882063405884444", - "90580969552747878254286834", - "45111648099006597689145362" - ] + "782463566056808679986012597", + "290501668816883732624246758", + "495523352749946700488456612" + ], + "mAssetSupply": "1567330411582590328487284826" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1234278921119332040704", - "expectedQty": "1224137644774981863507", + "type": "redeemMasset", + "inputQty": "6559691975251502039040", + "expectedQtys": [ + "3273834362733908811593", + "1215461507808033607942", + "2073274015741343407901" + ], + "redemptionFee": "1967907592575450611", "reserves": [ - "19143990241882063405884444", - "90582203831668997586327538", - "45111648099006597689145362" - ] + "782460292222445946077201004", + "290500453355375924590638816", + "495521279475930959145048711" + ], + "mAssetSupply": "1567323853858522669560696397" }, { - "type": "mintMulti", - "inputQtys": [ - "2599008521633190964625408", - "1572110493123164399206400", - "921732702151414644736000" + "type": "redeemMasset", + "inputQty": "5067194583133965", + "expectedQtys": [ + "2528953464813727", + "938912984269595", + "1601551246850144" ], - "expectedQty": "5132195688923505756887065", + "redemptionFee": "1520158374940", "reserves": [ - "21742998763515254370509852", - "92154314324792161985533938", - "46033380801158012333881362" + "782460292219916992612387277", + "290500453354437011606369221", + "495521279474329407898198567" ], - "mAssetSupply": "159649567569037789717561062" + "mAssetSupply": "1567323853853456995135937372" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "3266220625172738890268672", - "expectedQty": "3241439971824853013409376", - "reserves": [ - "21742998763515254370509852", - "95420534949964900875802610", - "46033380801158012333881362" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "1780991984833436057600", - "1471966063879345143808", - "1385316371383609458688" - ], - "expectedQty": "4661061699381593471937", - "swapFee": "2798316009234496781", + "inputQty": "10863644613948640461848576", + "expectedQty": "10771686446296357044567659", + "swapFee": "6518186768369184277109", "reserves": [ - "21741217771530420934452252", - "95419062983901021530658802", - "46031995484786628724422674" + "782460292219916992612387277", + "279728766908140654561801562", + "495521279474329407898198567" ], - "mAssetSupply": "162886346479163261137498501" + "mAssetSupply": "1556466727426276723858365905" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2704168807480234229104640", - "expectedQty": "2704982341331368759550830", + "inputIndex": 0, + "inputQty": "7956253531560039138983936", + "expectedQty": "7921246547031985581894151", "reserves": [ - "21741217771530420934452252", - "95419062983901021530658802", - "48736164292266862953527314" + "790416545751477031751371213", + "279728766908140654561801562", + "495521279474329407898198567" ] }, { "type": "redeemMasset", - "inputQty": "1079327205361228080742", + "inputQty": "6402357867339756", "expectedQtys": [ - "141667128461661526704", - "621756554553849584260", - "317567880515057209910" + "3233859832379885", + "1144464432238513", + "2027344152136919" ], - "redemptionFee": "323798161608368424", + "redemptionFee": "1920707360201", "reserves": [ - "21741076104401959272925548", - "95418441227346467681074542", - "48735846724386347896317404" + "790416545748243171918991328", + "279728766906996190129563049", + "495521279472302063746061648" ], - "mAssetSupply": "165590249817087430277337013" + "mAssetSupply": "1564387973966908272280280501" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3787082764027548401664", - "4884455822274599059456", - "15297801169092126703616" + "157080170865282744320", + "129118613509100060672", + "368661638672118775808" ], - "expectedQty": "24004945361686764083447", + "expectedQty": "655156870069729236462", + "swapFee": "393330120113905885", "reserves": [ - "21744863187165986821327212", - "95423325683168742280133998", - "48751144525555440023021020" + "790416388668072306636247008", + "279728637788382681029502377", + "495520910810663391627285840" ], - "mAssetSupply": "165614254762449117041420460" + "mAssetSupply": "1564387318810038202551044039" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "135352417642701905723392", - "outputIndex": 0, - "expectedQty": "131698682971169121196667", - "swapFee": "80596487011549227202", + "type": "redeemMasset", + "inputQty": "10381750757962140876", + "expectedQtys": [ + "5243870281828808849", + "1855807536008655550", + "3287441170853523708" + ], + "redemptionFee": "3114525227388642", "reserves": [ - "21613164504194817700130545", - "95558678100811444185857390", - "48751144525555440023021020" + "790416383424202024807438159", + "279728635932575145020846827", + "495520907523222220773762132" ], - "mAssetSupply": "165614335358936128590647662", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1564387308431401969816291805" }, { - "type": "mintMulti", - "inputQtys": [ - "635518009112082432", - "4505533591474152448", - "2481979377171830272" - ], - "expectedQty": "7601007060302796603", + "type": "redeem", + "inputIndex": 1, + "inputQty": "784343213475715481600", + "expectedQty": "777338650489299373569", + "swapFee": "470605928085429288", "reserves": [ - "21613165139712826812212977", - "95558682606345035660009838", - "48751147007534817194851292" + "790416383424202024807438159", + "279727858593924655721473258", + "495520907523222220773762132" ], - "mAssetSupply": "165614342959943188893444265" + "mAssetSupply": "1564386524558794422186239493" }, { "type": "redeemMasset", - "inputQty": "203921631466614842982", + "inputQty": "185889947077392227264102", "expectedQtys": [ - "26604396697358266755", - "117626506043988515783", - "60009482463840543918" + "93893918312387694062380", + "33228998354935779777690", + "58863151863713047236840" ], - "redemptionFee": "61176489439984452", + "redemptionFee": "55766984123217668179", "reserves": [ - "21613138535316129453946222", - "95558564979838991671494055", - "48751086998052353354307374" + "790322489505889637113375779", + "279694629595569719941695568", + "495462044371358507726525292" ], - "mAssetSupply": "165614139099488211718585735" + "mAssetSupply": "1564200690378701153176643570" }, { - "type": "mintMulti", - "inputQtys": [ - "427650032598380990955520", - "108053025219540380811264", - "169972413516343626694656" + "type": "redeemMasset", + "inputQty": "171736755635996069566873", + "expectedQtys": [ + "86745072331465603845697", + "30699026279966906349984", + "54381460033308374106990" ], - "expectedQty": "713032950665533425095053", + "redemptionFee": "51521026690798820870", "reserves": [ - "22040788567914510444901742", - "95666618005058532052305319", - "48921059411568696981002030" + "790235744433558171509530082", + "279663930569289753035345584", + "495407662911325199352418302" ], - "mAssetSupply": "166327172050153745143680788" + "mAssetSupply": "1564029005144091847905897567" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "53186236117653480", - "62157369293529784", - "241564957585598848" + "2749180562259781999394816", + "973148765226111890096128", + "1733237144598499257483264" ], - "expectedQty": "357446862867612539", + "expectedQty": "5451118610358463214488690", + "swapFee": "3272634747063315918244", "reserves": [ - "22040788621100746562555222", - "95666618067215901345835103", - "48921059653133654566600878" + "787486563871298389510135266", + "278690781804063641145249456", + "493674425766726700094935038" ], - "mAssetSupply": "166327172407600608011293327" + "mAssetSupply": "1558577886533733384691408877" }, { - "type": "redeemBassets", - "inputQtys": [ - "20800145431656992768", - "11229947696610136064", - "39834909483186601984" + "type": "redeemMasset", + "inputQty": "7873821300600904", + "expectedQtys": [ + "3977130931703691", + "1407503035029272", + "2493258830037375" ], - "expectedQty": "72172116449924528254", - "swapFee": "43329267430412964", + "redemptionFee": "2362146390180", "reserves": [ - "22040767820955314905562454", - "95666606837268204735699039", - "48921019818224171379998894" + "787486563867321258578431575", + "278690781802656138110220184", + "493674425764233441264897663" ], - "mAssetSupply": "166327100235484158086765073" + "mAssetSupply": "1558577886525861925537198153" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "811024948313032964964352", - "expectedQty": "816612830792941578500317", - "swapFee": "486614968987819778978", - "reserves": [ - "22040767820955314905562454", - "94849994006475263157198722", - "48921019818224171379998894" - ], - "mAssetSupply": "165516561902140112941579699" - }, - { - "type": "redeemMasset", - "inputQty": "1801503488201251513958", - "expectedQtys": [ - "239822575456347878142", - "1032049791977987690692", - "532302915309646385493" - ], - "redemptionFee": "540451046460375454", + "inputIndex": 2, + "inputQty": "302791162935711769821184", + "expectedQty": "302684358761357206932269", + "swapFee": "181674697761427061892", "reserves": [ - "22040527998379858557684312", - "94848961956683285169508030", - "48920487515308861733613401" + "787486563867321258578431575", + "278690781802656138110220184", + "493371741405472084057965394" ], - "mAssetSupply": "165514760939102958150441195" + "mAssetSupply": "1558275277037623975194438861" }, { "type": "swap", "inputIndex": 1, - "inputQty": "22978170277065901735936", - "outputIndex": 2, - "expectedQty": "22795257923820080564112", - "swapFee": "13684948987826833758", + "inputQty": "93719590032397752598528", + "outputIndex": 0, + "expectedQty": "94870797114511742300577", + "swapFee": "56704022939704533124", "reserves": [ - "22040527998379858557684312", - "94871940126960351071243966", - "48897692257385041653049289" + "787391693070206746836130998", + "278784501392688535862818712", + "493371741405472084057965394" ], - "mAssetSupply": "165514774624051945977274953", + "mAssetSupply": "1558275333741646914898971985", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "8162743404027300864", - "expectedQty": "8009638370601442537", - "swapFee": "4897646042416380", + "inputQty": "11363101404775002494992384", + "expectedQty": "11312121939239744906952786", "reserves": [ - "22040519988741487956241775", - "94871940126960351071243966", - "48897692257385041653049289" - ], - "mAssetSupply": "165514766466206187992390469" + "798754794474981749331123382", + "278784501392688535862818712", + "493371741405472084057965394" + ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5229107176121178259456", - "expectedQty": "5264917022657308223772", - "swapFee": "3137464305672706955", + "inputQty": "7245288288028310714187776", + "expectedQty": "7177540831087735863305037", + "swapFee": "4347172972816986428512", "reserves": [ - "22040519988741487956241775", - "94866675209937693763020194", - "48897692257385041653049289" + "798754794474981749331123382", + "271606960561600799999513675", + "493371741405472084057965394" ], - "mAssetSupply": "165509540496494372486837968" + "mAssetSupply": "1562346514565831166078165507" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "5600568237869139968", - "expectedQty": "5559139563424904316", - "reserves": [ - "22040519988741487956241775", - "94866680810505931632160162", - "48897692257385041653049289" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "6989242152156293180162048", - "expectedQty": "6984299384069525303122523", + "inputQty": "1567928375726956255117312", + "expectedQty": "1552779019951188483162980", + "swapFee": "940757025436173753070", "reserves": [ - "22040519988741487956241775", - "94866680810505931632160162", - "55886934409541334833211337" - ] + "798754794474981749331123382", + "270054181541649611516350695", + "493371741405472084057965394" + ], + "mAssetSupply": "1560779526947129645996801265" }, { "type": "redeemMasset", - "inputQty": "21702348571672133632", + "inputQty": "1606697666749407606446489", "expectedQtys": [ - "2772200636859707974", - "11932090218106866928", - "7029316696766086408" + "822007487411089843712152", + "277915776868445051757847", + "507734373950037922147578" ], - "redemptionFee": "6510704571501640", + "redemptionFee": "482009300024822281933", "reserves": [ - "22040517216540851096533801", - "94866668878415713525293234", - "55886927380224638067124929" + "797932786987570659487411230", + "269776265764781166464592848", + "492864007031522046135817816" ], - "mAssetSupply": "172493823743865594114232815" + "mAssetSupply": "1559173311289680263212636709" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2087081361067607131684864", - "expectedQty": "2041280384601800121923241", - "swapFee": "1252248816640564279010", + "inputIndex": 1, + "inputQty": "4361765192295749328568320", + "expectedQty": "4318665326897888925678264", + "swapFee": "2617059115377449597140", "reserves": [ - "19999236831939050974610560", - "94866668878415713525293234", - "55886927380224638067124929" + "797932786987570659487411230", + "265457600437883277538914584", + "492864007031522046135817816" ], - "mAssetSupply": "170407994631614627546826961" + "mAssetSupply": "1554814163156499891333665529" }, { - "type": "redeemMasset", - "inputQty": "170081489049766513868", - "expectedQtys": [ - "19954929565318590043", - "94656496719012198237", - "55763112806056516254" + "type": "mintMulti", + "inputQtys": [ + "3025659001004163772448768", + "2280711489427936198524928", + "2304988684534803819659264" ], - "redemptionFee": "51024446714929954", + "expectedQty": "7617845373653919496791050", "reserves": [ - "19999216877009485656020517", - "94866574221918994513094997", - "55886871617111832010608675" + "800958445988574823259859998", + "267738311927311213737439512", + "495168995716056849955477080" ], - "mAssetSupply": "170407824601150024495243047" + "mAssetSupply": "1562432008530153810830456579" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "573834235728505740460032", - "expectedQty": "587266028897764890880437", + "inputQty": "7413602466678297178669056", + "expectedQty": "7444170603975509161667152", + "swapFee": "4448161480006978307201", "reserves": [ - "20573051112737991396480549", - "94866574221918994513094997", - "55886871617111832010608675" - ] + "793514275384599314098192846", + "267738311927311213737439512", + "495168995716056849955477080" + ], + "mAssetSupply": "1555022854224955520630094724" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "611837746597915656192", - "expectedQty": "597871691176203260293", - "swapFee": "367102647958749393", + "inputQty": "2057633295304315165999104", + "expectedQty": "2048005836231069039767568", "reserves": [ - "20572453241046815193220256", - "94866574221918994513094997", - "55886871617111832010608675" - ], - "mAssetSupply": "170994479159403839429216685" + "795571908679903629264191950", + "267738311927311213737439512", + "495168995716056849955477080" + ] }, { "type": "redeemBassets", "inputQtys": [ - "22340106724945189404672", - "7685302561692116320256", - "24437171696670303322112" + "89654989110756184686592", + "80773296741771143806976", + "8157447172542903091200" ], - "expectedQty": "54873935913817030859654", - "swapFee": "32944128025105281684", + "expectedQty": "178917905762468970843502", + "swapFee": "107415192573025197624", "reserves": [ - "20550113134321870003815584", - "94858888919357302396774741", - "55862434445415161707286563" + "795482253690792873079505358", + "267657538630569442593632536", + "495160838268884307052385880" ], - "mAssetSupply": "170939605223490022398357031" + "mAssetSupply": "1556891942155424120699018790" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "441589875258955328", - "outputIndex": 2, - "expectedQty": "452119771157462963", - "swapFee": "270991806122186", + "type": "redeemMasset", + "inputQty": "34331935543558999218585", + "expectedQtys": [ + "17536382318429293227491", + "5900502375832887986725", + "10915805762742175043025" + ], + "redemptionFee": "10299580663067699765", "reserves": [ - "20550113575911745262770912", - "94858888919357302396774741", - "55862433993295390549823600" + "795464717308474443786277867", + "267651638128193609705645811", + "495149922463121564877342855" ], - "mAssetSupply": "170939605223761014204479217", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1556857620519461224767499970" + }, + { + "type": "mintMulti", + "inputQtys": [ + "853824742010434486272", + "520006308069836587008", + "1161869863302691553280" + ], + "expectedQty": "2536133455330775575906", + "reserves": [ + "795465571133216454220764139", + "267652158134501679542232819", + "495151084332984867568896135" + ], + "mAssetSupply": "1556860156652916555543075876" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "794981483131987", - "expectedQty": "776802396492239", - "swapFee": "476988889879", + "inputIndex": 2, + "inputQty": "13790574534116904960", + "expectedQty": "13787392118961943635", + "swapFee": "8274344720470142", "reserves": [ - "20550113575134942866278673", - "94858888919357302396774741", - "55862433993295390549823600" + "795465571133216454220764139", + "267652158134501679542232819", + "495151070545592748606952500" ], - "mAssetSupply": "170939605222966509710237109" + "mAssetSupply": "1556860142870616366146641058" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1241864690862543951888384", - "outputIndex": 1, - "expectedQty": "1276683808667768008081648", - "swapFee": "761115107530924664658", + "type": "redeemMasset", + "inputQty": "764673396805131366", + "expectedQtys": [ + "390586708572710896", + "131421621854995678", + "243127338138772428" + ], + "redemptionFee": "229402019041539", "reserves": [ - "21791978265997486818167057", - "93582205110689534388693093", - "55862433993295390549823600" + "795465570742629745648053243", + "267652158003080057687237141", + "495151070302465410468180072" ], - "mAssetSupply": "170940366338074040634901767", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1556860142106172371360551231" + }, + { + "type": "redeemMasset", + "inputQty": "4421715424484734924960563", + "expectedQtys": [ + "2258563304425775601100658", + "759944068794541572944017", + "1405881132590373023309367" + ], + "redemptionFee": "1326514627345420477488", + "reserves": [ + "793207007438203970046952585", + "266892213934285516114293124", + "493745189169875037444870705" + ], + "mAssetSupply": "1552439753196314981856068156" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "65615668250556902670336", - "expectedQty": "64298320463419238756089", - "swapFee": "39369400950334141602", + "inputIndex": 2, + "inputQty": "358796008996707074310144", + "expectedQty": "358712211502553298330099", + "swapFee": "215277605398024244586", + "reserves": [ + "793207007438203970046952585", + "266892213934285516114293124", + "493386476958372484146540606" + ], + "mAssetSupply": "1552081172464923672806002598" + }, + { + "type": "mintMulti", + "inputQtys": [ + "9994057300313131450368", + "3719527092158816321536", + "2553357420859566325760" + ], + "expectedQty": "16253914385813725909972", + "reserves": [ + "793217001495504283178402953", + "266895933461377674930614660", + "493389030315793343712866366" + ], + "mAssetSupply": "1552097426379309486531912570" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "37671397899461481258287104", + "expectedQty": "37647153446378304265380854", "reserves": [ - "21727679945534067579410968", - "93582205110689534388693093", - "55862433993295390549823600" - ], - "mAssetSupply": "170874790039224434066373033" + "793217001495504283178402953", + "266895933461377674930614660", + "531060428215254824971153470" + ] }, { "type": "redeemMasset", - "inputQty": "29447584958981694344396", + "inputQty": "11077340014313307583283", "expectedQtys": [ - "3743300885405629738094", - "16122584285445430369148", - "9624124579900067699716" + "5525477816904220333042", + "1859172908526148730547", + "3699318862312203901329" ], - "redemptionFee": "8834275487694508303", + "redemptionFee": "3323202004293992274", "reserves": [ - "21723936644648661949672874", - "93566082526404088958323945", - "55852809868715490482123884" + "793211476017687378958069911", + "266894074288469148781884113", + "531056728896392512767252141" ], - "mAssetSupply": "170845351288540940066536940" + "mAssetSupply": "1589733505808875481783702415" }, { "type": "swap", "inputIndex": 0, - "inputQty": "169509279970166946398208", + "inputQty": "4721724766710722239397888", "outputIndex": 1, - "expectedQty": "173954641287648432934595", - "swapFee": "103717110030036099675", + "expectedQty": "4650424088019077377908016", + "swapFee": "2820208093741136106564", "reserves": [ - "21893445924618828896071082", - "93392127885116440525389350", - "55852809868715490482123884" + "797933200784398101197467799", + "262243650200450071403976097", + "531056728896392512767252141" ], - "mAssetSupply": "170845455005650970102636615", + "mAssetSupply": "1589736326016969222919808979", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "44839183743914866638848", - "expectedQty": "45122131369254183102897", - "swapFee": "26903510246348919983", - "reserves": [ - "21893445924618828896071082", - "93347005753747186342286453", - "55852809868715490482123884" - ], - "mAssetSupply": "170800642725417301584917750" - }, - { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "535605891280800690733056", - "2227034999810395236990976", - "677139000590403914170368" + "4129455102911161827328", + "758836969894772211712", + "173867590156755271680" ], - "expectedQty": "3433960160455148123840457", + "expectedQty": "5050691568019636296650", + "swapFee": "3032234281380610144", "reserves": [ - "22429051815899629586804138", - "95574040753557581579277429", - "56529948869305894396294252" + "797929071329295190035640471", + "262242891363480176631764385", + "531056555028802356011980461" ], - "mAssetSupply": "174234602885872449708758207" + "mAssetSupply": "1589731275325401203283512329" }, { "type": "mintMulti", "inputQtys": [ - "47664298057420070912", - "1104881666797260898304", - "72025500111564742656" + "470844443727834906624000", + "6142092430195660723060736", + "1311686661209593466585088" ], - "expectedQty": "1217784491002631152133", + "expectedQty": "7983179957069020464532157", "reserves": [ - "22429099480197687006875050", - "95575145635224378840175733", - "56530020894806005961036908" + "798399915773023024942264471", + "268384983793675837354825121", + "532368241690011949478565549" ], - "mAssetSupply": "174235820670363452339910340" + "mAssetSupply": "1597714455282470223748044486" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "442497635317412817534976", - "expectedQty": "445291739016247682741170", - "swapFee": "265498581190447690520", + "inputQty": "3704024428709568724336640", + "expectedQty": "3665179208499401374648597", + "swapFee": "2222414657225741234601", "reserves": [ - "22429099480197687006875050", - "95129853896208131157434563", - "56530020894806005961036908" + "798399915773023024942264471", + "264719804585176435980176524", + "532368241690011949478565549" ], - "mAssetSupply": "173793588533627229970065884" + "mAssetSupply": "1594012653268417880764942447" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "158579834599945248178176", - "expectedQty": "159576240494791862979247", - "swapFee": "95147900759967148906", + "type": "redeemBassets", + "inputQtys": [ + "9335073078387075666935808", + "7187811652630960874192896", + "3349718428545929644605440" + ], + "expectedQty": "19900488474077815324447258", + "swapFee": "11947461561383519306252", + "reserves": [ + "789064842694635949275328663", + "257531992932545475105983628", + "529018523261466019833960109" + ], + "mAssetSupply": "1574112164794340065440495189" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "727427310138746157924352", + "62445207856344469602304", + "36412233387785368633344" + ], + "expectedQty": "823523895013496707781187", + "swapFee": "494410983598256978856", "reserves": [ - "22429099480197687006875050", - "94970277655713339294455316", - "56530020894806005961036908" + "788337415384497203117404311", + "257469547724689130636381324", + "528982111028078234465326765" ], - "mAssetSupply": "173635103846928044689036614" + "mAssetSupply": "1573288640899326568732714002" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "4716939385584363757371392", - "expectedQty": "4791382354888112638230686", + "inputIndex": 1, + "inputQty": "51266605117624392", + "expectedQty": "51806210979506248", "reserves": [ - "27146038865782050764246442", - "94970277655713339294455316", - "56530020894806005961036908" + "788337415384497203117404311", + "257469547775955735754005716", + "528982111028078234465326765" ] }, { "type": "mintMulti", "inputQtys": [ - "172935781744880081960960", - "1098506220163770047528960", - "7819100540197655281664" + "64784764797928878374912", + "76305758718831238316032", + "54682056513312755023872" ], - "expectedQty": "1275252755081741242618118", + "expectedQty": "196217970538976578272195", "reserves": [ - "27318974647526930846207402", - "96068783875877109341984276", - "56537839995346203616318572" + "788402200149295131995779223", + "257545853534674566992321748", + "529036793084591547220350637" ], - "mAssetSupply": "179701738956897898569885418" + "mAssetSupply": "1573484858921671756290492445" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "39565104314407381368832", - "expectedQty": "39561854419956236455844", - "swapFee": "23739062588644428821", + "type": "redeemMasset", + "inputQty": "2799542645950979686", + "expectedQtys": [ + "1402303567965205110", + "458087850665469973", + "940979340731049508" + ], + "redemptionFee": "839862793785293", "reserves": [ - "27318974647526930846207402", - "96068783875877109341984276", - "56498278140926247379862728" + "788402198746991564030574113", + "257545853076586716326851775", + "529036792143612206489301129" ], - "mAssetSupply": "179662197591646079832945407" + "mAssetSupply": "1573484856122968973133298052" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "5733311847247459123200", - "expectedQty": "5732821437290032420687", - "swapFee": "3439987108348475473", + "inputIndex": 0, + "inputQty": "8723181642805589410054144", + "expectedQty": "8758262025657929280511094", + "swapFee": "5233908985683353646032", "reserves": [ - "27318974647526930846207402", - "96068783875877109341984276", - "56492545319488957347442041" + "779643936721333634750063019", + "257545853076586716326851775", + "529036792143612206489301129" ], - "mAssetSupply": "179656467719785940722297680" + "mAssetSupply": "1564766908389149067076889940" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "407918507559033847676928", - "expectedQty": "402371948006329317371194", - "swapFee": "244751104535420308606", + "type": "mint", + "inputIndex": 2, + "inputQty": "779695440918075539456", + "expectedQty": "778856044473055436300", "reserves": [ - "26916602699520601528836208", - "96068783875877109341984276", - "56492545319488957347442041" - ], - "mAssetSupply": "179248793963331442294929358" + "779643936721333634750063019", + "257545853076586716326851775", + "529037571839053124564840585" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1073851564924047065088", - "440920252860991602688", - "596619152433594236928" - ], - "expectedQty": "2122867390924955682442", - "swapFee": "1274485125630351620", + "type": "mint", + "inputIndex": 1, + "inputQty": "110808005495915855743025152", + "expectedQty": "111576839972832931757224491", "reserves": [ - "26915528847955677481771120", - "96068342955624248350381588", - "56491948700336523753205113" - ], - "mAssetSupply": "179246671095940517339246916" + "779643936721333634750063019", + "368353858572502572069876927", + "529037571839053124564840585" + ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "26567065442365853696", + "inputQty": "24720240071463934401445888", "outputIndex": 0, - "expectedQty": "26048432434508465200", - "swapFee": "15847772794968411", + "expectedQty": "24876337476632825320725579", + "swapFee": "14893215187559029170562", "reserves": [ - "26915502799523242973305920", - "96068369522689690716235284", - "56491948700336523753205113" + "754767599244700809429337440", + "393074098643966506471322815", + "529037571839053124564840585" ], - "mAssetSupply": "179246671111788290134215327", + "mAssetSupply": "1676359420433214030918721293", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemMasset", - "inputQty": "140144831520152", - "expectedQtys": [ - "21037696048401", - "75088961664121", - "44155238517805" - ], - "redemptionFee": "42043449456", - "reserves": [ - "26915502799502205277257519", - "96068369522614601754571163", - "56491948700292368514687308" - ], - "mAssetSupply": "179246671111648187346144631" - }, { "type": "mintMulti", "inputQtys": [ - "1038632313647749882970112", - "1009103725059759033810944", - "3667779392051913351495680" + "16929849195949946044416", + "18700922868007769735168", + "4626218879280523247616" ], - "expectedQty": "5720823020578459491203974", + "expectedQty": "40279015291875811746949", "reserves": [ - "27954135113149955160227631", - "97077473247674360788382107", - "60159728092344281866182988" + "754784529093896759375381856", + "393092799566834514241057983", + "529042198057932405088088201" ], - "mAssetSupply": "184967494132226646837348605" + "mAssetSupply": "1676399699448505906730468242" }, { "type": "redeemMasset", - "inputQty": "8077639066149516738560", + "inputQty": "3213676876780851363944857", "expectedQtys": [ - "1220407260666441957471", - "4238158423398421512601", - "2626422483344102499956" + "1446496261495563156913890", + "753337201647272941410943", + "1013875526281481162729381" ], - "redemptionFee": "2423291719844855021", + "redemptionFee": "964103063034255409183", "reserves": [ - "27952914705889288718270160", - "97073235089250962366869506", - "60157101669860937763683032" + "753338032832401196218467966", + "392339462365187241299647040", + "528028322531650923925358820" ], - "mAssetSupply": "184959418916452217165465066" + "mAssetSupply": "1673186986674788089621932568" }, { - "type": "mint", + "type": "swap", + "inputIndex": 1, + "inputQty": "1934269757067611904", + "outputIndex": 0, + "expectedQty": "1945224774782764783", + "swapFee": "1164694455626128", + "reserves": [ + "753338030887176421435703183", + "392339464299456998367258944", + "528028322531650923925358820" + ], + "mAssetSupply": "1673186986675952784077558696", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", "inputIndex": 2, - "inputQty": "212346241722409698721792", - "expectedQty": "212151943837703588891977", + "inputQty": "2178979572171064853135360", + "outputIndex": 0, + "expectedQty": "2183932615685493959929460", + "swapFee": "1307643471425541072123", "reserves": [ - "27952914705889288718270160", - "97073235089250962366869506", - "60369447911583347462404824" - ] + "751154098271490927475773723", + "392339464299456998367258944", + "530207302103821988778494180" + ], + "mAssetSupply": "1673188294319424209618630819", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "7293331204050131968", - "20087352350885867520", - "1122635393254505472" + "type": "redeemMasset", + "inputQty": "154046712232785101822361", + "expectedQtys": [ + "69136334365877444599158", + "36110982355224655353424", + "48800358549372884990337" ], - "expectedQty": "28487250021236865773", - "swapFee": "17102611579689933", + "redemptionFee": "46214013669835530546", "reserves": [ - "27952907412558084668138192", - "97073215001898611481001986", - "60369446788947954207899352" + "751084961937125050031174565", + "392303353317101773711905520", + "530158501745272615893503843" ], - "mAssetSupply": "185171542373039899517491270" + "mAssetSupply": "1673034293821205094352339004" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "629321368234027519049728", - "expectedQty": "625847322057063245126800", + "inputIndex": 0, + "inputQty": "22841102326843842018410496", + "expectedQty": "22778328023888266382976774", "reserves": [ - "27952907412558084668138192", - "97702536370132639000051714", - "60369446788947954207899352" + "773926064263968892049585061", + "392303353317101773711905520", + "530158501745272615893503843" ] }, - { - "type": "mintMulti", - "inputQtys": [ - "109085342017406839554048", - "65624147769868721061888", - "178179494367392555859968" - ], - "expectedQty": "353800222533840606450245", - "reserves": [ - "28061992754575491507692240", - "97768160517902507721113602", - "60547626283315346763759320" - ], - "mAssetSupply": "186151189917630803369068315" - }, { "type": "mint", "inputIndex": 0, - "inputQty": "2219732978346889926672384", - "expectedQty": "2246610611526781546336724", + "inputQty": "837315693786686635900928", + "expectedQty": "834941074837531152016113", "reserves": [ - "30281725732922381434364624", - "97768160517902507721113602", - "60547626283315346763759320" + "774763379957755578685485989", + "392303353317101773711905520", + "530158501745272615893503843" ] }, { - "type": "mintMulti", - "inputQtys": [ - "717077350047111184384", - "1320802083836183552", - "780177189270356492288" + "type": "redeemMasset", + "inputQty": "612099696716318600960409", + "expectedQtys": [ + "279427602132155896784958", + "141488857322836826112880", + "191207951646779412057081" ], - "expectedQty": "1506086400223208474717", + "redemptionFee": "183629909014895580288", "reserves": [ - "30282442810272428545549008", - "97768161838704591557297154", - "60548406460504617120251608" + "774483952355623422788701031", + "392161864459778936885792640", + "529967293793625836481446762" ], - "mAssetSupply": "188399306615557808123879756" + "mAssetSupply": "1696035646853123588181951770" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "20238087426275064938496", - "expectedQty": "20238547987142720540185", - "swapFee": "12142852455765038963", + "inputQty": "21862246551651147055104", + "outputIndex": 1, + "expectedQty": "21773517355373175856840", + "swapFee": "13121035667576484234", "reserves": [ - "30282442810272428545549008", - "97768161838704591557297154", - "60528167912517474399711423" + "774483952355623422788701031", + "392140090942423563709935800", + "529989156040177487628501866" ], - "mAssetSupply": "188379080670983988823980223" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1561680557486313457057792", - "expectedQty": "1560553640499068860083142", - "reserves": [ - "30282442810272428545549008", - "97768161838704591557297154", - "62089848470003787856769215" - ] + "mAssetSupply": "1696035659974159255758436004", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "138137144308974588264448", - "306751727583460144971776", - "73979018387442079105024" + "29114442854826550231040", + "512206171375664430579712", + "306676162540340894498816" ], - "expectedQty": "518824088029576541541430", + "expectedQty": "849926341020484782580634", + "swapFee": "510261961789364488241", "reserves": [ - "30420579954581403133813456", - "98074913566288051702268930", - "62163827488391229935874239" + "774454837912768596238469991", + "391627884771047899279356088", + "529682479877637146734003050" ], - "mAssetSupply": "190458458399512634225604795" + "mAssetSupply": "1695185733633138770975855370" }, { - "type": "redeemMasset", - "inputQty": "514699962041697736589312", - "expectedQtys": [ - "82184714913901458010401", - "264960721448606642808625", - "167942769260747463170681" - ], - "redemptionFee": "154409988612509320976", + "type": "redeem", + "inputIndex": 0, + "inputQty": "726233218102106861338624", + "expectedQty": "727866028779489038322028", + "swapFee": "435739930861264116803", "reserves": [ - "30338395239667501675803055", - "97809952844839445059460305", - "61995884719130482472703558" + "773726971883989107200147963", + "391627884771047899279356088", + "529682479877637146734003050" ], - "mAssetSupply": "189943912847459548998336459" + "mAssetSupply": "1694459936154967525378633549" }, { - "type": "redeemBassets", - "inputQtys": [ - "140441551218084027564032", - "197125096518341493784576", - "153679925569854027857920" - ], - "expectedQty": "491718252202903478223604", - "swapFee": "295208076167442552465", + "type": "redeem", + "inputIndex": 0, + "inputQty": "26295745311732900944674816", + "expectedQty": "26352212339787385279524353", + "swapFee": "15777447187039740566804", "reserves": [ - "30197953688449417648239023", - "97612827748321103565675729", - "61842204793560628444845638" + "747374759544201721920623610", + "391627884771047899279356088", + "529682479877637146734003050" ], - "mAssetSupply": "189452194595256645520112855" + "mAssetSupply": "1668179968290421664174525537" }, { "type": "redeemMasset", - "inputQty": "9966147608635474391859", + "inputQty": "1121983638685", "expectedQtys": [ - "1588089160969669176507", - "5133390007747503338262", - "3252238086605364769419" + "502518136791", + "263321864241", + "356146698132" ], - "redemptionFee": "2989844282590642317", + "redemptionFee": "336595091", "reserves": [ - "30196365599288447979062516", - "97607694358313356062337467", - "61838952555474023080076219" + "747374759544201219402486819", + "391627884771047635957491847", + "529682479877636790587304918" ], - "mAssetSupply": "189442231437492292636363313" + "mAssetSupply": "1668179968290420542527481943" }, { - "type": "redeemMasset", - "inputQty": "2166818578309266276352", - "expectedQtys": [ - "345278961654050403195", - "1116090717827264144314", - "707094675282090638380" + "type": "redeemBassets", + "inputQtys": [ + "55770167013640939503616", + "5259902593616180150272", + "28501305906705266114560" ], - "redemptionFee": "650045573492779882", + "expectedQty": "89407046488790445269550", + "swapFee": "53676433753526382991", "reserves": [ - "30196020320326793928659321", - "97606578267595528798193153", - "61838245460798740989437839" + "747318989377187578462983203", + "391622624868454019777341575", + "529653978571730085321190358" ], - "mAssetSupply": "189440065268959556862866843" + "mAssetSupply": "1668090561243931752082212393" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "246030338037583085305856", - "259003978088997621596160", - "389917096542800101507072" + "7493626896642439380992", + "25548224145887445647360", + "14820928007381169733632" ], - "expectedQty": "896111731266502413549471", - "reserves": [ - "30442050658364377013965177", - "97865582245684526419789313", - "62228162557341541090944911" - ], - "mAssetSupply": "190336177000226059276416314" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "33712972039560", - "expectedQty": "33720193138511", - "swapFee": "20227783223", + "expectedQty": "47935810827788312460905", + "swapFee": "28778753748922340881", "reserves": [ - "30442050658364377013965177", - "97865582245684526419789313", - "62228162557307820897806400" + "747311495750290936023602211", + "391597076644308132331694215", + "529639157643722704151456726" ], - "mAssetSupply": "190336177000192366532159977" + "mAssetSupply": "1668042625433103963769751488" }, { "type": "mint", "inputIndex": 1, - "inputQty": "5778151802565911", - "expectedQty": "5749126277896281", + "inputQty": "178951778644898315501568", + "expectedQty": "179585504754290109239594", "reserves": [ - "30442050658364377013965177", - "97865582251462678222355224", - "62228162557307820897806400" + "747311495750290936023602211", + "391776028422953030647195783", + "529639157643722704151456726" ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "196623013121176077598720", - "outputIndex": 1, - "expectedQty": "197330828790039289584169", - "swapFee": "117876340120817037022", + "inputQty": "257982406853794216280064", + "outputIndex": 0, + "expectedQty": "258550266791106813090447", + "swapFee": "154813550652954248449", "reserves": [ - "30442050658364377013965177", - "97668251422672638932771055", - "62424785570428996975405120" + "747052945483499829210511764", + "391776028422953030647195783", + "529897140050576498367736790" ], - "mAssetSupply": "190336294882281613627093280", + "mAssetSupply": "1668222365751408906833239531", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "19849171717447898628096", - "30777332255547413495808", - "49167428063882626727936" + "670976157225805057884160", + "41189730994887642316800", + "678048893413097622994944" ], - "expectedQty": "99821726641706954354052", - "swapFee": "59928993381052804295", + "expectedQty": "1388695739262706041693321", + "swapFee": "833717674162120897554", "reserves": [ - "30422201486646929115337081", - "97637474090417091519275247", - "62375618142365114348677184" + "746381969326274024152627604", + "391734838691958143004878983", + "529219091157163400744741846" ], - "mAssetSupply": "190236473155639906672739228" + "mAssetSupply": "1666833670012146200791546210" }, { "type": "redeemMasset", - "inputQty": "3013605192590535475", + "inputQty": "43134003997002644324352", "expectedQtys": [ - "481784584725236821", - "1546246741180772556", - "987818429145889852" + "19308935915076166871279", + "10134198315151412453711", + "13690922257155341277216" ], - "redemptionFee": "904081557777160", + "redemptionFee": "12940201199100793297", "reserves": [ - "30422201004862344390100260", - "97637472544170350338502691", - "62375617154546685202787332" + "746362660390358947985756325", + "391724704493642991592425272", + "529205400234906245403464630" ], - "mAssetSupply": "190236470142938795639980913" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "189988366693800738816", - "expectedQty": "192125872291069627940", - "reserves": [ - "30422390993229038190839076", - "97637472544170350338502691", - "62375617154546685202787332" - ] + "mAssetSupply": "1666790548948350397248015155" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "41372696255796246216704", - "17748321118593346437120", - "36997089997793951481856" + "506863680653672251916288", + "503157532582756309008384", + "19682410544977126883328" ], - "expectedQty": "96463127449689626403215", + "expectedQty": "1030147904121298499492320", + "swapFee": "618459818363797378122", "reserves": [ - "30463763689484834437055780", - "97655220865288943684939811", - "62412614244544479154269188" + "745855796709705275733840037", + "391221546961060235283416888", + "529185717824361268276581302" ], - "mAssetSupply": "190333125396260776336012068" + "mAssetSupply": "1665760401044229098748522835" }, { "type": "mint", "inputIndex": 2, - "inputQty": "4700912155914775035904", - "expectedQty": "4696949080872928738320", + "inputQty": "2966083074345508232232960", + "expectedQty": "2966480319383706249602769", "reserves": [ - "30463763689484834437055780", - "97655220865288943684939811", - "62417315156700393929305092" + "745855796709705275733840037", + "391221546961060235283416888", + "532151800898706776508814262" ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "98376272496743636008960", - "expectedQty": "98292714039804001655903", + "inputIndex": 0, + "inputQty": "4127673661187249143808", + "expectedQty": "4116842437703800411263", "reserves": [ - "30463763689484834437055780", - "97655220865288943684939811", - "62515691429197137565314052" + "745859924383366462982983845", + "391221546961060235283416888", + "532151800898706776508814262" ] }, { - "type": "mintMulti", - "inputQtys": [ - "12025029346403066839040", - "5802276817757090611200", - "5774375839882219094016" + "type": "redeemMasset", + "inputQty": "38940294940525324979404", + "expectedQtys": [ + "17399624187114826562029", + "9126523182823990594645", + "12414182668131490366859" ], - "expectedQty": "23702879118572823862561", + "redemptionFee": "11682088482157597493", "reserves": [ - "30475788718831237503894820", - "97661023142106700775551011", - "62521465805037019784408068" + "745842524759179348156421816", + "391212420437877411292822243", + "532139386716038645018447403" ], - "mAssetSupply": "190459817938500026090268852" + "mAssetSupply": "1668692069593198465631154956" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "4916450231357623582588928", - "expectedQty": "4916146007594788687494824", - "swapFee": "2949870138814574149553", + "inputIndex": 1, + "inputQty": "123984259021980181725184", + "expectedQty": "123469989185306747238880", + "swapFee": "74390555413188109035", "reserves": [ - "30475788718831237503894820", - "97661023142106700775551011", - "57605319797442231096913244" + "745842524759179348156421816", + "391088950448692104545583363", + "532139386716038645018447403" ], - "mAssetSupply": "185546317577281217081829477" + "mAssetSupply": "1668568159724731898637538807" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "82897403458503098368", - "expectedQty": "82864706908748610019", - "swapFee": "49738442075101859", + "type": "swap", + "inputIndex": 1, + "inputQty": "2258868142985586671616", + "outputIndex": 0, + "expectedQty": "2271521930648000812679", + "swapFee": "1360151545049066410", "reserves": [ - "30475788718831237503894820", - "97661023142106700775551011", - "57605236932735322348303225" + "745840253237248700155609137", + "391091209316835090132254979", + "532139386716038645018447403" ], - "mAssetSupply": "185546234729616200653832968" + "mAssetSupply": "1668568161084883443686605217", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "101632452893787570176", - "594330911022600552448", - "183072533076222607360" + "type": "redeemMasset", + "inputQty": "938069082062628854326886", + "expectedQtys": [ + "419185624613825248586632", + "219805530938949219249043", + "299079032318230818111375" ], - "expectedQty": "876985963522167429457", + "redemptionFee": "281420724618788656298", "reserves": [ - "30475890351284131291464996", - "97661617473017723376103459", - "57605420005268398570910585" + "745421067612634874907022505", + "390871403785896140913005936", + "531840307683720414200336028" ], - "mAssetSupply": "185547111715579722821262425" + "mAssetSupply": "1667630373423545433620934629" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "41059984123974446481408", - "expectedQty": "40846124641861394108912", + "inputIndex": 0, + "inputQty": "10295075531514422621110272", + "expectedQty": "10267654306616255141669159", "reserves": [ - "30475890351284131291464996", - "97702677457141697822584867", - "57605420005268398570910585" + "755716143144149297528132777", + "390871403785896140913005936", + "531840307683720414200336028" ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "2937882320974612", - "outputIndex": 0, - "expectedQty": "2904571028151636", - "swapFee": "1762370392779", + "inputQty": "2405904143305061978603520", + "expectedQty": "2404036248166934416637863", + "swapFee": "1443542485983037187162", "reserves": [ - "30475890348379560263313360", - "97702677457141697822584867", - "57605420008206280891885197" + "755716143144149297528132777", + "390871403785896140913005936", + "529436271435553479783698165" ], - "mAssetSupply": "185587957840223346585764116", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1675493567129342609821187430" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "1061840851984352463028224", - "expectedQty": "1061545183728550739081868", + "inputIndex": 0, + "inputQty": "4817448460813984277200896", + "expectedQty": "4804292525960286651680654", "reserves": [ - "30475890348379560263313360", - "97702677457141697822584867", - "58667260860190633354913421" + "760533591604963281805333673", + "390871403785896140913005936", + "529436271435553479783698165" ] }, { - "type": "redeemMasset", - "inputQty": "80289610119764838", - "expectedQtys": [ - "13105651208746891", - "42015416064196471", - "25228882550009189" - ], - "redemptionFee": "24086883035929", + "type": "mint", + "inputIndex": 2, + "inputQty": "5343499914664677293948928", + "expectedQty": "5344464884520579054994732", "reserves": [ - "30475890335273909054566469", - "97702677415126281758388396", - "58667260834961750804904232" - ], - "mAssetSupply": "186649502943686374088117075" + "760533591604963281805333673", + "390871403785896140913005936", + "534779771350218157077647093" + ] }, { "type": "redeemMasset", - "inputQty": "37416624163013781094", + "inputQty": "2816747289553154285869465", "expectedQtys": [ - "6107505379061690994", - "19580055620916441478", - "11757182716648063670" + "1270487951275324322878336", + "652959204550160220441286", + "893361271068136531317841" ], - "redemptionFee": "11224987248904134", + "redemptionFee": "845024186865946285760", "reserves": [ - "30475884227768529992875475", - "97702657835070660841946918", - "58667249077779034156840562" + "759263103653687957482455337", + "390218444581345980692564650", + "533886410079150020546329252" ], - "mAssetSupply": "186649465538287198323240115" + "mAssetSupply": "1682826422274457187188279111" }, { - "type": "mintMulti", - "inputQtys": [ - "5039624580308877180928", - "27727533246656291012608", - "8922591266571515068416" - ], - "expectedQty": "41597846668719115412011", + "type": "redeem", + "inputIndex": 2, + "inputQty": "14758709021477700892622848", + "expectedQty": "14746328170076840290056830", + "swapFee": "8855225412886620535573", "reserves": [ - "30480923852348838870056403", - "97730385368317317132959526", - "58676171669045605671908978" + "759263103653687957482455337", + "390218444581345980692564650", + "519140081909073180256272422" ], - "mAssetSupply": "186691063384955917438652126" + "mAssetSupply": "1668076568478392372916191836" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2800268362403533312", - "expectedQty": "2785816406278650860", + "type": "redeem", + "inputIndex": 0, + "inputQty": "168587623573830340968448", + "expectedQty": "168958244368755745855894", + "swapFee": "101152574144298204581", "reserves": [ - "30480923852348838870056403", - "97730388168585679536492838", - "58676171669045605671908978" - ] + "759094145409319201736599443", + "390218444581345980692564650", + "519140081909073180256272422" + ], + "mAssetSupply": "1667908082007392686873427969" }, { - "type": "redeemMasset", - "inputQty": "81590747141239027951206", - "expectedQtys": [ - "13317269611546028346959", - "42698900295366563849021", - "25635915816568152059818" + "type": "mintMulti", + "inputQtys": [ + "10407628842044597588721664", + "8279409300785153580204032", + "657494199192216129241088" ], - "redemptionFee": "24477224142371708385", + "expectedQty": "19344936085070968549189717", "reserves": [ - "30467606582737292841709444", - "97687689268290312972643817", - "58650535753229037519849160" + "769501774251363799325321107", + "398497853882131134272768682", + "519797576108265396385513510" ], - "mAssetSupply": "186609499900855227061060165" + "mAssetSupply": "1687253018092463655422617686" }, { "type": "mintMulti", "inputQtys": [ - "1183469610172524789760", - "25586345232553444638720", - "70463572685360176562176" + "7623035510337555094568960", + "10588314521806636564086784", + "11644586589720052389380096" ], - "expectedQty": "97089042709175915965993", + "expectedQty": "29875927130998112068311976", "reserves": [ - "30468790052347465366499204", - "97713275613522866417282537", - "58720999325914397696411336" + "777124809761701354419890067", + "409086168403937770836855466", + "531442162697985448774893606" ], - "mAssetSupply": "186706588943564402977026158" + "mAssetSupply": "1717128945223461767490929662" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "31666215985364642824192", - "436092585185985068793856", - "840386561613326685569024" + "187559221790409", + "119428111077922", + "487483566284433" ], - "expectedQty": "1305900520396836596359426", + "expectedQty": "794558675372042", + "swapFee": "477021418074", "reserves": [ - "30500456268332830009323396", - "98149368198708851486076393", - "59561385887527724381980360" + "777124809761513795198099658", + "409086168403818342725777544", + "531442162697497965208609173" ], - "mAssetSupply": "188012489463961239573385584" + "mAssetSupply": "1717128945222667208815557620" }, { "type": "redeemMasset", - "inputQty": "26475154290507461427", + "inputQty": "3124951784933248362086", "expectedQtys": [ - "4293661749019257954", - "13816848647039548643", - "8384676021039468767" + "1413841997635724035441", + "744260379125837677383", + "966865604466628848035" ], - "redemptionFee": "7942546287152238", + "redemptionFee": "937485535479974508", "reserves": [ - "30500451974671080990065442", - "98149354381860204446527750", - "59561377502851703342511593" + "777123395919516159474064217", + "409085424143439216888100161", + "531441195831893498579761138" ], - "mAssetSupply": "188012462996749495353076395" + "mAssetSupply": "1717125821208367811047170042" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1828334099421866254925824", - "expectedQty": "1827289431872562722706002", - "reserves": [ - "30500451974671080990065442", - "98149354381860204446527750", - "61389711602273569597437417" - ] - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "4950864577049646858240", - "expectedQty": "4951308141498671007873", - "swapFee": "2970518746229788114", + "type": "redeemBassets", + "inputQtys": [ + "846083474512966144", + "963400951238893824", + "288791443419776896" + ], + "expectedQty": "2099325989150894629", + "swapFee": "1260351804573280", "reserves": [ - "30500451974671080990065442", - "98149354381860204446527750", - "61384760294132070926429544" + "777123395073432684961098073", + "409085423180038265649206337", + "531441195543102055159984242" ], - "mAssetSupply": "189834804534563754658712271" + "mAssetSupply": "1717125819109041821896275413" }, { "type": "swap", "inputIndex": 0, - "inputQty": "1568146660928370690228224", + "inputQty": "2816706779824647045120", "outputIndex": 2, - "expectedQty": "1584416255288378564573845", - "swapFee": "950832490373263966443", + "expectedQty": "2806238801630546380895", + "swapFee": "1685433622062672308", "reserves": [ - "32068598635599451680293666", - "98149354381860204446527750", - "59800344038843692361855699" + "777126211780212509608143193", + "409085423180038265649206337", + "531438389304300424613603347" ], - "mAssetSupply": "189835755367054127922678714", + "mAssetSupply": "1717125820794475443958947721", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "816309931409262116864", - "64352640666869456896", - "131524764608444104704" - ], - "expectedQty": "1019862339411966186758", - "swapFee": "612284774511886844", - "reserves": [ - "32067782325668042418176802", - "98149290029219537577070854", - "59800212514079083917750995" - ], - "mAssetSupply": "189834735504714715956491956" - }, - { - "type": "redeemMasset", - "inputQty": "6370610819012205772", - "expectedQtys": [ - "1075830896144132159", - "3292776456310371820", - "2006216568556896910" - ], - "redemptionFee": "1911183245703661", + "type": "mint", + "inputIndex": 0, + "inputQty": "2411266476585160909258752", + "expectedQty": "2404695896095153164138451", "reserves": [ - "32067781249837146274044643", - "98149286736443081266699034", - "59800210507862515360854085" - ], - "mAssetSupply": "189834729136015080189989845" + "779537478256797670517401945", + "409085423180038265649206337", + "531438389304300424613603347" + ] }, { "type": "redeemBassets", "inputQtys": [ - "970270741682956140544", - "1044615054226796969984", - "1517788439139422830592" + "10192999754627827712", + "50902115124467064832", + "6749368832959556608" ], - "expectedQty": "3536649348055620141061", - "swapFee": "2123263566973556218", + "expectedQty": "67991117674919772145", + "swapFee": "40819162102213191", "reserves": [ - "32066810979095463317904099", - "98148242121388854469729050", - "59798692719423375938023493" + "779537468063797915889574233", + "409085372277923141182141505", + "531438382554931591654046739" ], - "mAssetSupply": "189831192486667024569848784" + "mAssetSupply": "1719530448699452922203314027" }, { "type": "mintMulti", "inputQtys": [ - "280494638161437508239360", - "75521854381155168550912", - "1126869062677609570107392" + "2327436002045170286592", + "495984162022282428416", + "20684201536946069045248" ], - "expectedQty": "1484863861332849860561482", + "expectedQty": "23511505064521465372029", "reserves": [ - "32347305617256900826143459", - "98223763975770009638279962", - "60925561782100985508130885" + "779539795499799961059860825", + "409085868262085163464569921", + "531459066756468537723091987" ], - "mAssetSupply": "191316056347999874430410266" + "mAssetSupply": "1719553960204517443668686056" }, { "type": "redeemMasset", - "inputQty": "1021763975234029250150", + "inputQty": "1736584287738586044825", "expectedQtys": [ - "172705818909543966511", - "524427468381265448407", - "325288268661495509346" + "787024118395670122860", + "413013481384450299242", + "536561578885426612122" ], - "redemptionFee": "306529192570208775", + "redemptionFee": "520975286321575813", "reserves": [ - "32347132911437991282176948", - "98223239548301628372831555", - "60925236493832324012621539" + "779539008475681565389737965", + "409085455248603779014270679", + "531458530194889652296479865" ], - "mAssetSupply": "191315034890553832971368891" + "mAssetSupply": "1719552224141204991404217044" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1745997077768297024323584", - "outputIndex": 0, - "expectedQty": "1725763777489412748943405", - "swapFee": "1047047171931162125344", + "type": "mint", + "inputIndex": 0, + "inputQty": "9717022680575702768549888", + "expectedQty": "9690119431690944209200506", "reserves": [ - "30621369133948578533233543", - "98223239548301628372831555", - "62671233571600621036945123" - ], - "mAssetSupply": "191316081937725764133494235", - "hardLimitError": false, - "insufficientLiquidityError": false + "789256031156257268158287853", + "409085455248603779014270679", + "531458530194889652296479865" + ] }, { - "type": "redeemMasset", - "inputQty": "4507449122266057113", - "expectedQtys": [ - "721229782404219770", - "2313466957554168360", - "1476105132795576993" - ], - "redemptionFee": "1352234736679817", + "type": "redeem", + "inputIndex": 0, + "inputQty": "14816116113053912", + "expectedQty": "14848858261815621", + "swapFee": "8889669667832", "reserves": [ - "30621368412718796129013773", - "98223237234834670818663195", - "62671232095495488241368130" + "789256031141408409896472232", + "409085455248603779014270679", + "531458530194889652296479865" ], - "mAssetSupply": "191316077431628876604116939" + "mAssetSupply": "1729242343558088709170031470" }, { - "type": "redeemMasset", - "inputQty": "2197567910862569603072", - "expectedQtys": [ - "351629354692104589935", - "1127910845104778101124", - "719662315624828639476" + "type": "redeemBassets", + "inputQtys": [ + "8034778467294293000192", + "31618126743734883188736", + "3187446306084645502976" ], - "redemptionFee": "659270373258770880", + "expectedQty": "42928339400254384421207", + "swapFee": "25772467120424885584", "reserves": [ - "30621016783364104024423838", - "98222109323989566040562071", - "62670512433179863412728654" + "789247996362941115603472040", + "409053837121860044131081943", + "531455342748583567650976889" ], - "mAssetSupply": "191313880522988387293284747" + "mAssetSupply": "1729199415218688454785610263" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "854977902892641410875392", - "expectedQty": "855131465068048715337049", - "swapFee": "512986741735584846525", + "inputQty": "9983111949428868513792", + "expectedQty": "9972538119391434481465", + "swapFee": "5989867169657321108", "reserves": [ - "30621016783364104024423838", - "98222109323989566040562071", - "61815380968111814697391605" + "789247996362941115603472040", + "409053837121860044131081943", + "531445370210464176216495424" ], - "mAssetSupply": "190459415606837481467255880" + "mAssetSupply": "1729189438096606195574417579" }, { "type": "mintMulti", "inputQtys": [ - "4109922850682", - "32948306178056", - "41216997733985" + "2025202827809085372497920", + "192190450436302522286080", + "1182833821097957001265152" ], - "expectedQty": "78125016494288", + "expectedQty": "3395747092907407762817937", "reserves": [ - "30621016783368213947274520", - "98222109324022514346740127", - "61815380968153031695125590" + "791273199190750200975969960", + "409246027572296346653368023", + "532628204031562133217760576" ], - "mAssetSupply": "190459415606915606483750168" + "mAssetSupply": "1732585185189513603337235516" }, { "type": "redeemMasset", - "inputQty": "138498398325738946795929", + "inputQty": "555007464816358502", "expectedQtys": [ - "22260330252290473414119", - "71403788028910035532531", - "44937462552505048352577" + "253396362414519704", + "131056447792582299", + "170568205215352610" + ], + "redemptionFee": "166502239444907", + "reserves": [ + "791273198937353838561450256", + "409246027441239898860785724", + "532628203860993928002407966" + ], + "mAssetSupply": "1732585184634672640760321921" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "122971246763161", + "62640868218475", + "73842824806078" ], - "redemptionFee": "41549519497721684038", + "expectedQty": "259360161767811", + "swapFee": "155709522774", "reserves": [ - "30598756453115923473860401", - "98150705535993604311207596", - "61770443505600526646773013" + "791273198937230867314687095", + "409246027441177257992567249", + "532628203860920085177601888" ], - "mAssetSupply": "190320958758109365258638277" + "mAssetSupply": "1732585184634413280598554110" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "26199913140391451295744", - "expectedQty": "26491130497171031384492", + "inputIndex": 1, + "inputQty": "571545190965851472265216", + "expectedQty": "573523887012370167422642", "reserves": [ - "30624956366256314925156145", - "98150705535993604311207596", - "61770443505600526646773013" + "791273198937230867314687095", + "409817572632143109464832465", + "532628203860920085177601888" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "485756033918996467154944", - "expectedQty": "487911330276095612445704", - "swapFee": "291453620351397880292", + "inputQty": "8155297928023334197395456", + "expectedQty": "8121518475477960776531666", + "swapFee": "4893178756814000518437", "reserves": [ - "30624956366256314925156145", - "97662794205717508698761892", - "61770443505600526646773013" + "791273198937230867314687095", + "401696054156665148688300799", + "532628203860920085177601888" ], - "mAssetSupply": "189861985308307891220748117" + "mAssetSupply": "1725008303772159130569099733" }, { - "type": "redeemMasset", - "inputQty": "129134746182470310297", - "expectedQtys": [ - "20823334049707620823", - "66405481975290949552", - "42000601213360992121" + "type": "mintMulti", + "inputQtys": [ + "569778015779983858860032", + "954364198781137178329088", + "511398085047112557395968" ], - "redemptionFee": "38740423854741093", + "expectedQty": "2037596432034905740032059", "reserves": [ - "30624935542922265217535322", - "97662727800235533407812340", - "61770401504999313285780892" + "791842976953010851173547127", + "402650418355446285866629887", + "533139601945967197734997856" ], - "mAssetSupply": "189861856212302132605178913" + "mAssetSupply": "1727045900204194036309131792" }, { - "type": "redeemBassets", - "inputQtys": [ - "423945584826073284083712", - "111267899970545759813632", - "242374891724989704175616" - ], - "expectedQty": "781578744626188386209372", - "swapFee": "469228784046140716155", + "type": "mint", + "inputIndex": 2, + "inputQty": "6222778621552369860608", + "expectedQty": "6225283043712302116446", "reserves": [ - "30200989958096191933451610", - "97551459900264987647998708", - "61528026613274323581605276" - ], - "mAssetSupply": "189080277467675944218969541" + "791842976953010851173547127", + "402650418355446285866629887", + "533145824724588750104858464" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "42750648160730952499200", - "outputIndex": 2, - "expectedQty": "42540885649199993698053", - "swapFee": "25520335174608796911", + "inputQty": "16486711371838369792", + "expectedQty": "16416993689945405218", + "swapFee": "9892026823103021", "reserves": [ - "30200989958096191933451610", - "97594210548425718600497908", - "61485485727625123587907223" + "791842976953010851173547127", + "402650401938452595921224669", + "533145824724588750104858464" ], - "mAssetSupply": "189080302988011118827766452", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1727052109010418403595981467" }, { - "type": "redeemBassets", - "inputQtys": [ - "408982895398795790516224", - "677338807464028855599104", - "219653006576757843689472" - ], - "expectedQty": "1307020882960874391462028", - "swapFee": "784683339780392870599", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5637690398304662192128", + "expectedQty": "5613849778974992983490", + "swapFee": "3382614238982797315", "reserves": [ - "29792007062697396142935386", - "96916871740961689744898804", - "61265832721048365744217751" + "791842976953010851173547127", + "402644788088673620928241179", + "533145824724588750104858464" ], - "mAssetSupply": "187773282105050244436304424" + "mAssetSupply": "1727046474702634337916586654" }, { - "type": "mintMulti", - "inputQtys": [ - "749666413343038111744", - "525657855671598120960", - "679693999955742818304" - ], - "expectedQty": "1960406011089448736344", + "type": "mint", + "inputIndex": 2, + "inputQty": "14235632005193880702025728", + "expectedQty": "14240100693779853405110101", "reserves": [ - "29792756729110739181047130", - "96917397398817361343019764", - "61266512415048321487036055" - ], - "mAssetSupply": "187775242511061333885040768" + "791842976953010851173547127", + "402644788088673620928241179", + "547381456729782630806884192" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "203327013891749472", - "27329619473630696", - "204571180771271776" - ], - "expectedQty": "437260303324571481", - "swapFee": "262513690208868", + "type": "mint", + "inputIndex": 2, + "inputQty": "10013285862636203727126528", + "expectedQty": "10014962252399460537736979", "reserves": [ - "29792756525783725289297658", - "96917397371487741869389068", - "61266512210477140715764279" - ], - "mAssetSupply": "187775242073801030560469287" + "791842976953010851173547127", + "402644788088673620928241179", + "557394742592418834534010720" + ] }, { "type": "redeemBassets", "inputQtys": [ - "8419271097098", - "6456643680760", - "5417652376622" + "129717025361595301888", + "158557356338433556480", + "211710542795601608704" ], - "expectedQty": "20353053516391", - "swapFee": "12219163607", + "expectedQty": "500257248042050242725", + "swapFee": "300334549554963123", "reserves": [ - "29792756525775306018200560", - "96917397371481285225708308", - "61266512210471723063387657" + "791842847235985489578245239", + "402644629531317282494684699", + "557394530881876038932402016" ], - "mAssetSupply": "187775242073780677506952896" + "mAssetSupply": "1751301037391565609809191009" }, { - "type": "redeemBassets", - "inputQtys": [ - "3454221821930946166784", - "93221708014683294793728", - "11059989632795342274560" + "type": "redeemMasset", + "inputQty": "52287457986843610238156", + "expectedQtys": [ + "23634445300050186629265", + "12017892824610995071472", + "16636774072859429999520" ], - "expectedQty": "107291524631179861183014", - "swapFee": "64413562916457791384", + "redemptionFee": "15686237396053083071", "reserves": [ - "29789302303953375072033776", - "96824175663466601930914580", - "61255452220838927721113097" + "791819212790685439391615974", + "402632611638492671499613227", + "557377894107803179502402496" ], - "mAssetSupply": "187667950549149497645769882" + "mAssetSupply": "1751248765619816162252035924" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "10783757096427842437120", - "expectedQty": "10832452895628545199794", - "swapFee": "6470254257856705462", + "inputQty": "4246731381815155672219648", + "expectedQty": "4227763390368384989999525", + "swapFee": "2548038829089093403331", "reserves": [ - "29789302303953375072033776", - "96813343210570973385714786", - "61255452220838927721113097" + "791819212790685439391615974", + "398404848248124286509613702", + "557377894107803179502402496" ], - "mAssetSupply": "187657173262307327660038224" + "mAssetSupply": "1747004582276830095673219607" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "152019890593991938277376", - "outputIndex": 1, - "expectedQty": "152578308189361225226750", - "swapFee": "91136631160105786071", + "inputQty": "303805035551090408423424", + "expectedQty": "303599027589119285565830", + "swapFee": "182283021330654245054", "reserves": [ - "29789302303953375072033776", - "96660764902381612160488036", - "61407472111432919659390473" + "791819212790685439391615974", + "398404848248124286509613702", + "557074295080214060216836666" ], - "mAssetSupply": "187657264398938487765824295", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1746700959524300335919041237" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "407642196680444603269120", - "outputIndex": 2, - "expectedQty": "405647976980092387863399", - "swapFee": "243340383606672356846", + "type": "redeemMasset", + "inputQty": "2260961550193380732121907", + "expectedQtys": [ + "1024637733910161211765742", + "515547784511376068206034", + "720870792360376530074660" + ], + "redemptionFee": "678288465058014219636", "reserves": [ - "29789302303953375072033776", - "97068407099062056763757156", - "61001824134452827271527074" + "790794575056775278179850232", + "397889300463612910441407668", + "556353424287853683686762006" ], - "mAssetSupply": "187657507739322094438181141", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1744440676262572013201138966" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "5237794713877257125888", - "expectedQty": "5261608405521409330748", - "swapFee": "3142676828326354275", + "type": "mintMulti", + "inputQtys": [ + "8222521514851460760731648", + "15053371980190319061762048", + "15193475939588085171355648" + ], + "expectedQty": "38505607972384635787436104", "reserves": [ - "29789302303953375072033776", - "97063145490656535354426408", - "61001824134452827271527074" + "799017096571626738940581880", + "412942672443803229503169716", + "571546900227441768858117654" ], - "mAssetSupply": "187652273087285045507409528" + "mAssetSupply": "1782946284234956648988575070" }, { - "type": "redeemMasset", - "inputQty": "8708861399522799203123", - "expectedQtys": [ - "1382093973151569109335", - "4503307497066389374189", - "2830219137971897669731" + "type": "mintMulti", + "inputQtys": [ + "72417698852909032144896", + "925058595569478871810048", + "81433802568324960223232" ], - "redemptionFee": "2612658419856839760", + "expectedQty": "1082156986996099605337468", "reserves": [ - "29787920209980223502924441", - "97058642183159468965052219", - "60998993915314855373857343" + "799089514270479647972726776", + "413867731039372708374979764", + "571628334030010093818340886" ], - "mAssetSupply": "187643566838543942565046165" + "mAssetSupply": "1784028441221952748593912538" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "1145820687736451891200000", - "expectedQty": "1145934025421766363522942", - "swapFee": "687492412641871134720", + "inputIndex": 0, + "inputQty": "126403163658219314741248", + "expectedQty": "126663965147943724633004", + "swapFee": "75841898194931588844", "reserves": [ - "29787920209980223502924441", - "97058642183159468965052219", - "59853059889893089010334401" + "798962850305331704248093772", + "413867731039372708374979764", + "571628334030010093818340886" ], - "mAssetSupply": "186498433643220132544980885" + "mAssetSupply": "1783902113900192724210760134" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "17704856718112516096", - "expectedQty": "17905865913797798658", + "inputIndex": 2, + "inputQty": "4997172511085300591624192", + "expectedQty": "4997335394112779937051336", "reserves": [ - "29787937914836941615440537", - "97058642183159468965052219", - "59853059889893089010334401" + "798962850305331704248093772", + "413867731039372708374979764", + "576625506541095394409965078" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "595915505854606756282368", - "expectedQty": "598639973832067896191585", - "swapFee": "357549303512764053769", - "reserves": [ - "29787937914836941615440537", - "96460002209327401068860634", - "59853059889893089010334401" - ], - "mAssetSupply": "185902893592534952350550944" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "9943798874059602657280", - "outputIndex": 0, - "expectedQty": "9820842450419392032622", - "swapFee": "5962396748636529929", - "reserves": [ - "29778117072386522223407915", - "96460002209327401068860634", - "59863003688767148612991681" + "type": "redeemBassets", + "inputQtys": [ + "51799411111278536816590848", + "5452783253767332237934592", + "13177973446961113243582464" ], - "mAssetSupply": "185902899554931700987080873", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "274750637658343276544", - "outputIndex": 1, - "expectedQty": "275820265748315058518", - "swapFee": "164742796426103204", + "expectedQty": "70319354503130837582157002", + "swapFee": "42216942867599061986486", "reserves": [ - "29778117072386522223407915", - "96459726389061652753802116", - "59863278439404806956268225" + "747163439194053167431502924", + "408414947785605376137045172", + "563447533094134281166382614" ], - "mAssetSupply": "185902899719674497413184077", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1718580094791174666565654468" }, { - "type": "mintMulti", - "inputQtys": [ - "28732414847423447302144", - "15807430823324537585664", - "18859425619252544012288" + "type": "redeemMasset", + "inputQty": "342376637046912398131", + "expectedQtys": [ + "148805728065324094672", + "81340280412481469904", + "112216706533612168477" ], - "expectedQty": "63629200842387352525932", + "redemptionFee": "102712991114073719", "reserves": [ - "29806849487233945670710059", - "96475533819884977291387780", - "59882137865024059500280513" + "747163290388325102107408252", + "408414866445324963655575268", + "563447420877427747554214137" ], - "mAssetSupply": "185966528920516884765710009" + "mAssetSupply": "1718579752517250610767330056" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "187926248464638875271168", - "expectedQty": "185712111562816487650561", - "swapFee": "112755749078783325162", + "inputQty": "1589715468561605791318016", + "expectedQty": "1585949940194361210629026", "reserves": [ - "29621137375671129183059498", - "96475533819884977291387780", - "59882137865024059500280513" - ], - "mAssetSupply": "185778715427801324673764003" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "15379765187066767360", - "9671517259124656128", - "15479124736063729664" - ], - "expectedQty": "40645332722727725888", - "swapFee": "24401840738079483", - "reserves": [ - "29621121995905942116292138", - "96475524148367718166731652", - "59882122385899323436550849" - ], - "mAssetSupply": "185778674782468601946038115" + "748753005856886707898726268", + "408414866445324963655575268", + "563447420877427747554214137" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "17773895828106131800064", - "outputIndex": 1, - "expectedQty": "17843167013789693601147", - "swapFee": "10657139617460006934", + "type": "mint", + "inputIndex": 0, + "inputQty": "191978031074561504", + "expectedQty": "191522183927987583", "reserves": [ - "29621121995905942116292138", - "96457680981353928473130505", - "59899896281727429568350913" - ], - "mAssetSupply": "185778685439608219406045049", - "hardLimitError": false, - "insufficientLiquidityError": false + "748753006048864738973287772", + "408414866445324963655575268", + "563447420877427747554214137" + ] }, { "type": "redeemBassets", "inputQtys": [ - "215557517962764943360", - "249973287207252754432", - "249992260650545938432" + "9609141282059721648373760", + "2151529508086218483564544", + "1107274270701445061804032" ], - "expectedQty": "716521493715260484938", - "swapFee": "430170998828453362", + "expectedQty": "12852491933042335341420448", + "swapFee": "7716124834726236947020", "reserves": [ - "29620906438387979351348778", - "96457431008066721220376073", - "59899646289466779022412481" + "739143864766805017324914012", + "406263336937238745172010724", + "562340146606726302492410105" ], - "mAssetSupply": "185777968918114504145560111" + "mAssetSupply": "1707313210715924820564526217" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2722715711926011166720", - "3210644586189951598592", - "1928034111535253815296" + "54161543760567120", + "56447577002591072", + "11345594319266832" ], - "expectedQty": "7874565125898093248678", - "swapFee": "4727575620911402790", + "expectedQty": "122016835273836465", "reserves": [ - "29618183722676053340182058", - "96454220363480531268777481", - "59897718255355243768597185" + "739143864820966561085481132", + "406263336993686322174601796", + "562340146618071896811676937" ], - "mAssetSupply": "185770094352988606052311433" + "mAssetSupply": "1707313210837941655838362682" }, { "type": "redeemMasset", - "inputQty": "109915046649040985495961", + "inputQty": "23778108102433308", "expectedQtys": [ - "17519006014714800886922", - "57052183973007226928204", - "35429197691817498882032" + "10291122903877516", + "5656417013424203", + "7829479263868095" ], - "redemptionFee": "32974513994712295648", + "redemptionFee": "7133432430729", "reserves": [ - "29600664716661338539295136", - "96397168179507524041849277", - "59862289057663426269715153" + "739143864810675438181603616", + "406263336988029905161177593", + "562340146610242417547808842" ], - "mAssetSupply": "185660212280853559779111120" + "mAssetSupply": "1707313210814170681168360103" }, { "type": "mintMulti", "inputQtys": [ - "161742990695848956919808", - "181347903492192684998656", - "113001994554265063915520" - ], - "expectedQty": "456920124777063730685593", - "reserves": [ - "29762407707357187496214944", - "96578516082999716726847933", - "59975291052217691333630673" - ], - "mAssetSupply": "186117132405630623509796713" - }, - { - "type": "redeemMasset", - "inputQty": "1255309297002281435136", - "expectedQtys": [ - "200679100872279611550", - "651200331696429788784", - "404395625557441323631" + "2596198350935372288", + "4884000847695393792", + "9016336768542578688" ], - "redemptionFee": "376592789100684430", + "expectedQty": "16505617109868198107", "reserves": [ - "29762207028256315216603394", - "96577864882668020297059149", - "59974886656592133892307042" + "739143867406873789116975904", + "406263341872030752856571385", + "562340155626579186090387530" ], - "mAssetSupply": "186115877472926410329046007" + "mAssetSupply": "1707313227319787791036558210" }, { "type": "swap", "inputIndex": 1, - "inputQty": "13832176573333162323607552", - "outputIndex": 2, - "expectedQty": "13727590013948736689420743", - "swapFee": "8252035868985638706610", + "inputQty": "1140334921997682196086784", + "outputIndex": 0, + "expectedQty": "1146114784326177729436843", + "swapFee": "686490704118438365197", "reserves": [ - "29762207028256315216603394", - "110410041456001182620666701", - "46247296642643397202886299" + "737997752622547611387539061", + "407403676794028435052658169", + "562340155626579186090387530" ], - "mAssetSupply": "186124129508795395967752617", + "mAssetSupply": "1707313913810491909474923407", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 2, - "inputQty": "17104516108827544780800", - "expectedQty": "17045748819778617849458", - "swapFee": "10262709665296526868", - "reserves": [ - "29762207028256315216603394", - "110410041456001182620666701", - "46230250893823618585036841" - ], - "mAssetSupply": "186107035255396233719498685" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "24003399741176809521152", - "16136621928491822088192", - "709234723251687784448" - ], - "expectedQty": "41033359844583748814788", - "swapFee": "24634796784821141974", - "reserves": [ - "29738203628515138407082242", - "110393904834072690798578509", - "46229541659100366897252393" - ], - "mAssetSupply": "186066001895551649970683897" - }, - { - "type": "redeemMasset", - "inputQty": "18712016542048888422", - "expectedQtys": [ - "2989771446867558120", - "11098603960887765239", - "4647750932797477254" - ], - "redemptionFee": "5613604962614666", + "inputQty": "1140419709220221878272", + "expectedQty": "1139894927187386500067", + "swapFee": "684251825532133126", "reserves": [ - "29738200638743691539524122", - "110393893735468729910813270", - "46229537011349434099775139" + "737997752622547611387539061", + "407403676794028435052658169", + "562339015731651998703887463" ], - "mAssetSupply": "186065983189148712884410141" + "mAssetSupply": "1707312774075034514785178261" }, { "type": "mint", "inputIndex": 0, - "inputQty": "11420301360139659264", - "expectedQty": "11562480841019734343", + "inputQty": "506215700948196440145920", + "expectedQty": "505046392673196789189777", "reserves": [ - "29738212059045051679183386", - "110393893735468729910813270", - "46229537011349434099775139" + "738503968323495807827684981", + "407403676794028435052658169", + "562339015731651998703887463" ] }, { - "type": "mintMulti", - "inputQtys": [ - "867978315450144915456", - "2377159486723296067584", - "4341471617353931292672" + "type": "redeemMasset", + "inputQty": "412862527777708880324198", + "expectedQtys": [ + "178478723724694990779163", + "98459712328986468943637", + "135903873416184669588397" ], - "expectedQty": "7592592680596110720405", + "redemptionFee": "123858758333312664097", "reserves": [ - "29739080037360501824098842", - "110396270894955453206880854", - "46233878482966788031067811" + "738325489599771112836905818", + "407305217081699448583714532", + "562203111858235814034299066" ], - "mAssetSupply": "186073587344310150014864889" + "mAssetSupply": "1707405081798688336006707937" }, { "type": "redeemMasset", - "inputQty": "87575179608153182647091", + "inputQty": "5325988545254243329638", "expectedQtys": [ - "13992442405340705009318", - "51942207368939039586531", - "21753358914792161144042" + "2302402311117772032777", + "1270145059799546394398", + "1753180355132637867431" ], - "redemptionFee": "26272553882445954794", + "redemptionFee": "1597796563576272998", "reserves": [ - "29725087594955161119089524", - "110344328687586514167294323", - "46212125124051995869923769" + "738323187197459995064873041", + "407303946936639649037320134", + "562201358677880681396431635" ], - "mAssetSupply": "185986038437255879278172592" + "mAssetSupply": "1707399757407939645339651297" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "61403053983308226560", - "13414162987280181248", - "21377026784434257920" + "1813598805130858075258880", + "2666911045044540656320512", + "5567061903077756819734528" ], - "expectedQty": "96922598312677339420", + "expectedQty": "10051565019182878896207816", + "swapFee": "6034559747358142223058", "reserves": [ - "29725148998009144427316084", - "110344342101749501447475571", - "46212146501078780304181689" + "736509588392329136989614161", + "404637035891595108380999622", + "556634296774802924576697107" ], - "mAssetSupply": "185986135359854191955512012" + "mAssetSupply": "1697348192388756766443443481" }, { - "type": "redeemBassets", - "inputQtys": [ - "2019231136739810082816", - "24053064124879373074432", - "21623943737758655184896" - ], - "expectedQty": "47609171788723259479076", - "swapFee": "28582652664832855400", + "type": "mint", + "inputIndex": 1, + "inputQty": "109629967181383437647872", + "expectedQty": "109995675797075965639994", + "reserves": [ + "736509588392329136989614161", + "404746665858776491818647494", + "556634296774802924576697107" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "106141710580758551199744", + "outputIndex": 1, + "expectedQty": "105477696093031117166816", + "swapFee": "63535901639731075643", "reserves": [ - "29723129766872404617233268", - "110320289037624622074401139", - "46190522557341021648996793" + "736615730102909895540813905", + "404641188162683460701480678", + "556634296774802924576697107" ], - "mAssetSupply": "185938526188065468696032936" + "mAssetSupply": "1697458251600455482140159118", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "328880381493978547093504", - "expectedQty": "331069063838732628725666", - "swapFee": "197328228896387128256", + "inputIndex": 0, + "inputQty": "336954248648220082176", + "expectedQty": "337542869144064730764", + "swapFee": "202172549188932049", "reserves": [ - "29723129766872404617233268", - "109989219973785889445675473", - "46190522557341021648996793" + "736615392560040751476083141", + "404641188162683460701480678", + "556634296774802924576697107" ], - "mAssetSupply": "185609843134800386536067688" + "mAssetSupply": "1697457914848379383109008991" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "20521179966214603014144", - "expectedQty": "20774941396973379408305", + "inputQty": "1705701836194574153809920", + "expectedQty": "1708670688712033659329907", + "swapFee": "1023421101716744492285", "reserves": [ - "29743650946838619220247412", - "109989219973785889445675473", - "46190522557341021648996793" - ] + "734906721871328717816753234", + "404641188162683460701480678", + "556634296774802924576697107" + ], + "mAssetSupply": "1695753236433286525699691356" }, { "type": "redeemMasset", - "inputQty": "308293965159014439321", + "inputQty": "557990120642763878", "expectedQtys": [ - "49383217312335130856", - "182614486758459429541", - "76689866260750191852" + "241749601524153916", + "133107839522137435", + "183106393553366864" ], - "redemptionFee": "92488189547704331", + "redemptionFee": "167397036192829", "reserves": [ - "29743601563621306885116556", - "109989037359299130986245932", - "46190445867474760898804941" + "734906721629579116292599318", + "404641188029575621179343243", + "556634296591696531023330243" ], - "mAssetSupply": "185630309874720390448741003" + "mAssetSupply": "1695753235875463802093120307" }, { - "type": "mintMulti", - "inputQtys": [ - "164652253379801776128", - "84720396586393878528", - "153937521800161296384" - ], - "expectedQty": "405169652524457943899", - "reserves": [ - "29743766215874686686892684", - "109989122079695717380124460", - "46190599804996561060101325" + "type": "redeemMasset", + "inputQty": "163393072444177192583168", + "expectedQtys": [ + "70790160423782578797168", + "38977211354343282466851", + "53618003473598378636792" ], - "mAssetSupply": "185630715044372914906684902" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "1381960210844312070520832", - "outputIndex": 2, - "expectedQty": "1392980712637132600075707", - "swapFee": "838918707762291165498", + "redemptionFee": "49017921733253157774", "reserves": [ - "31125726426718998757413516", - "109989122079695717380124460", - "44797619092359428460025618" + "734835931469155333713802150", + "404602210818221277896876392", + "556580678588222932644693451" ], - "mAssetSupply": "185631553963080677197850400", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1695589891820941358153694913" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1218773568508270215168", - "expectedQty": "1210189662746610669835", + "inputQty": "731209282337286784", + "expectedQty": "733640439766696308", "reserves": [ - "31125726426718998757413516", - "109990340853264225650339628", - "44797619092359428460025618" + "734835931469155333713802150", + "404602211549430560234163176", + "556580678588222932644693451" ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "3289773845099635560939520", - "expectedQty": "3247236435353748826696070", - "swapFee": "1973864307059781336563", + "inputQty": "580277485320856338432", + "expectedQty": "581283804300157770888", + "swapFee": "348166491192513803", "reserves": [ - "27878489991365249930717446", - "109990340853264225650339628", - "44797619092359428460025618" + "734835350185351033556031262", + "404602211549430560234163176", + "556580678588222932644693451" ], - "mAssetSupply": "182344964171950848028917278" + "mAssetSupply": "1695589312625262968256566592" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "3821186666813355049615360", - "outputIndex": 0, - "expectedQty": "3723327733770653259039202", - "swapFee": "2274521705753093367081", + "type": "redeem", + "inputIndex": 0, + "inputQty": "435585893039750026100736", + "expectedQty": "436340580730629688404816", + "swapFee": "261351535823850015660", "reserves": [ - "24155162257594596671678244", - "113811527520077580699954988", - "44797619092359428460025618" + "734399009604620403867626446", + "404602211549430560234163176", + "556580678588222932644693451" ], - "mAssetSupply": "182347238693656601122284359", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1695153988083759042080481516" }, { - "type": "mintMulti", - "inputQtys": [ - "21559226133164261900288", - "48320339436667691597824", - "50060458194242424012800" - ], - "expectedQty": "120088904504037441170629", + "type": "mint", + "inputIndex": 1, + "inputQty": "15464044573369981258956800", + "expectedQty": "15512627929168816422500722", "reserves": [ - "24176721483727760933578532", - "113859847859514248391552812", - "44847679550553670884038418" - ], - "mAssetSupply": "182467327598160638563454988" + "734399009604620403867626446", + "420066256122800541493119976", + "556580678588222932644693451" + ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "41180329423982376779776", - "expectedQty": "40801415227860377902270", + "inputIndex": 2, + "inputQty": "76691515532011136", + "expectedQty": "76691424912241128", "reserves": [ - "24176721483727760933578532", - "113901028188938230768332588", - "44847679550553670884038418" + "734399009604620403867626446", + "420066256122800541493119976", + "556580678664914448176704587" ] }, { - "type": "redeemMasset", - "inputQty": "246876089875663", - "expectedQtys": [ - "32693688230938", - "154026041425797", - "60646603969596" - ], - "redemptionFee": "74062826962", + "type": "swap", + "inputIndex": 0, + "inputQty": "1635102743323496033550336", + "outputIndex": 1, + "expectedQty": "1625623624213359900530791", + "swapFee": "978884708522847712941", "reserves": [ - "24176721483695067245347594", - "113901028188784204726906791", - "44847679550493024280068822" + "736034112347943899901176782", + "418440632498587181592589185", + "556580678664914448176704587" ], - "mAssetSupply": "182508129013141696914308557" + "mAssetSupply": "1710667594974327806262936307", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "186524548958583552737280", - "770044190160172521357312", - "574710764963798336929792" + "410615223710638080000", + "3739110818134030811136", + "793908561292806979584" + ], + "expectedQty": "4953984617599960618742", + "reserves": [ + "736034522963167610539256782", + "418444371609405315623400321", + "556581472573475740983684171" + ], + "mAssetSupply": "1710672548958945406223555049" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "7942069726548842", + "24462027549837480", + "19028075675158132" ], - "expectedQty": "1529751782289901847342577", + "expectedQty": "51488050234989914", + "swapFee": "30911376967174", "reserves": [ - "24363246032653650798084874", - "114671072378944377248264103", - "45422390315456822616998614" + "736034522955225540812707940", + "418444371584943288073562841", + "556581472554447665308526039" ], - "mAssetSupply": "184037880795431598761651134" + "mAssetSupply": "1710672548907457355988565135" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "6379903351077893832704", - "expectedQty": "6321422514456577617243", + "inputIndex": 0, + "inputQty": "521841346886183104", + "expectedQty": "520674224862272629", "reserves": [ - "24363246032653650798084874", - "114677452282295455142096807", - "45422390315456822616998614" + "736034523477066887698891044", + "418444371584943288073562841", + "556581472554447665308526039" ] }, { - "type": "mintMulti", - "inputQtys": [ - "11107456975591264223232", - "15249000347759038955520", - "54798615940206696595456" + "type": "swap", + "inputIndex": 1, + "inputQty": "1062331446198474802987008", + "outputIndex": 2, + "expectedQty": "1064874280284266972557839", + "swapFee": "639313054253176981791", + "reserves": [ + "736034523477066887698891044", + "419506703031141762876549849", + "555516598274163398335968200" ], - "expectedQty": "81405016871833602655163", + "mAssetSupply": "1710673188741185834027819555", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "1897449785239715184640", + "expectedQty": "1890669716191488638846", + "swapFee": "1138469871143829110", "reserves": [ - "24374353489629242062308106", - "114692701282643214181052327", - "45477188931397029313594070" + "736034523477066887698891044", + "419504812361425571387911003", + "555516598274163398335968200" ], - "mAssetSupply": "184125607234817888941923540" + "mAssetSupply": "1710671292429870465456464025" }, { "type": "mintMulti", "inputQtys": [ - "1111118290765519912960", - "848239227703824089088", - "349757808134607863808" + "19904682981909780758528", + "22091472337092550328320", + "32218762382767007203328" ], - "expectedQty": "2325025158392855417663", + "expectedQty": "74236814092303023826690", "reserves": [ - "24375464607920007582221066", - "114693549521870918005141415", - "45477538689205163921457878" + "736054428160048797479649572", + "419526903833762663938239323", + "555548817036546165343171528" ], - "mAssetSupply": "184127932259976281797341203" + "mAssetSupply": "1710745529243962768480290715" }, { - "type": "redeemMasset", - "inputQty": "161196184541370567884", - "expectedQtys": [ - "21333282101416352089", - "100379208623077271263", - "39801709536221941482" - ], - "redemptionFee": "48358855362411170", + "type": "redeem", + "inputIndex": 0, + "inputQty": "127955271077456924114944", + "expectedQty": "128164672451346891919246", + "swapFee": "76773162646474154468", "reserves": [ - "24375443274637906165868977", - "114693449142662294927870152", - "45477498887495627699516396" + "735926263487597450587730326", + "419526903833762663938239323", + "555548817036546165343171528" ], - "mAssetSupply": "184127771112150595789184489" + "mAssetSupply": "1710617650746047958030330239" }, { "type": "swap", "inputIndex": 1, - "inputQty": "4037954318360453316608", - "outputIndex": 2, - "expectedQty": "3986716924418492539166", - "swapFee": "2400583013599394437", + "inputQty": "358664425948820004667392", + "outputIndex": 0, + "expectedQty": "360320019592542592398483", + "swapFee": "215839727439574422262", "reserves": [ - "24375443274637906165868977", - "114697487096980655381186760", - "45473512170571209206977230" + "735565943468004907995331843", + "419885568259711483942906715", + "555548817036546165343171528" ], - "mAssetSupply": "184127773512733609388578926", + "mAssetSupply": "1710617866585775397604752501", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "644655247260126994759680", - "expectedQty": "646503987565795557085884", - "reserves": [ - "24375443274637906165868977", - "114697487096980655381186760", - "46118167417831336201736910" - ] - }, { "type": "redeemBassets", "inputQtys": [ - "314656140231012650057728", - "593915195371041180352512", - "661226527583299272966144" + "1088075157461874071568384", + "1895709323179022813757440", + "5429797257395003767914496" ], - "expectedQty": "1572711082982030569756499", - "swapFee": "944193165688631520766", + "expectedQty": "8416962225260347197164094", + "swapFee": "5053209260712635899838", "reserves": [ - "24060787134406893515811249", - "114103571901609614200834248", - "45456940890248036928770766" + "734477868310543033923763459", + "417989858936532461129149275", + "550119019779151161575257032" ], - "mAssetSupply": "183201566417317374375908311" + "mAssetSupply": "1702200904360515050407588407" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1277427933521779481378816", - "outputIndex": 1, - "expectedQty": "1313183516943233288819989", - "swapFee": "781509797866661519565", + "type": "redeemMasset", + "inputQty": "33644695255557629542", + "expectedQtys": [ + "14512899507197249142", + "8259261550966970049", + "10870064838600492360" + ], + "redemptionFee": "10093408576667288", "reserves": [ - "25338215067928672997190065", - "112790388384666380912014259", - "45456940890248036928770766" + "734477853797643526726514317", + "417989850677270910162179226", + "550119008909086322974764672" ], - "mAssetSupply": "183202347927115241037427876", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1702200870725913203426626153" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "23835376006798159904768", - "expectedQty": "23903859206995557790998", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2774918506990469208080384", + "expectedQty": "2779496236447918863427106", + "swapFee": "1664951104194281524848", "reserves": [ - "25338215067928672997190065", - "112790388384666380912014259", - "45480776266254835088675534" - ] + "731698357561195607863087211", + "417989850677270910162179226", + "550119008909086322974764672" + ], + "mAssetSupply": "1699427617170026928500070617" }, { - "type": "mintMulti", - "inputQtys": [ - "104090332146269280", - "149085916056317280", - "626338115716945664" + "type": "redeemMasset", + "inputQty": "3708664456883537652901478", + "expectedQtys": [ + "1596307825841515995696924", + "911906474660426688042033", + "1200165710351903156100237" ], - "expectedQty": "881917955352832320", + "redemptionFee": "1112599337065061295870", "reserves": [ - "25338215172019005143459345", - "112790388533752296968331539", - "45480776892592950805621198" + "730102049735354091867390287", + "417077944202610483474137193", + "548918843198734419818664435" ], - "mAssetSupply": "183226252668240191948051194" + "mAssetSupply": "1695720065312480455908465009" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "180182686104813618331648", - "outputIndex": 1, - "expectedQty": "184915145491662283275874", - "swapFee": "110063153050739266495", + "inputIndex": 1, + "inputQty": "935321051757552205824", + "outputIndex": 2, + "expectedQty": "937474142031646603423", + "swapFee": "562846908628405826", "reserves": [ - "25518397858123818761790993", - "112605473388260634685055665", - "45480776892592950805621198" + "730102049735354091867390287", + "417078879523662241026343017", + "548917905724592388172061012" ], - "mAssetSupply": "183226362731393242687317689", + "mAssetSupply": "1695720065875327364536870835", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", + "inputQtys": [ + "5095785442639883534336", + "64585687912997577555968", + "58703886214501482102784" + ], + "expectedQty": "128566895718453997642627", + "reserves": [ + "730107145520796731750924623", + "417143465211575238603898985", + "548976609610806889654163796" + ], + "mAssetSupply": "1695848632771045818534513462" + }, + { + "type": "mintMulti", "inputQtys": [ - "99478804469519417344", - "45795140925041836032", - "93270752241084727296" + "1015787160296269056", + "221473152533692000", + "350223414925685120" ], - "expectedQty": "240198560138921369000", - "swapFee": "144205659479040245", + "expectedQty": "1585881315158118162", "reserves": [ - "25518298379319349242373649", - "112605427593119709643219633", - "45480683621840709720893902" + "730107146536583892047193679", + "417143465433048391137590985", + "548976609961030304579848916" ], - "mAssetSupply": "183226122532833103765948689" + "mAssetSupply": "1695848634356927133692631624" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "325570357757222420742144", - "expectedQty": "326487682905749684256043", + "inputIndex": 0, + "inputQty": "40251524587434509447725056", + "expectedQty": "40155655151229722889790253", "reserves": [ - "25518298379319349242373649", - "112605427593119709643219633", - "45806253979597932141636046" + "770358671124018401494918735", + "417143465433048391137590985", + "548976609961030304579848916" ] }, { - "type": "redeemMasset", - "inputQty": "22743312418993202790", - "expectedQtys": [ - "3160927652133523915", - "13948328551086773255", - "5673977656837178777" - ], - "redemptionFee": "6822993725697960", + "type": "mint", + "inputIndex": 0, + "inputQty": "3203131445396441600", + "expectedQty": "3195036777766403311", "reserves": [ - "25518295218391697108849734", - "112605413644791158556446378", - "45806248305620275304457269" - ], - "mAssetSupply": "183552587479249428182699902" + "770358674327149846891360335", + "417143465433048391137590985", + "548976609961030304579848916" + ] }, { - "type": "redeemMasset", - "inputQty": "169919157236889183846", - "expectedQtys": [ - "23615828373740624940", - "104210336146313325260", - "42391252596326601199" - ], - "redemptionFee": "50975747171066755", + "type": "swap", + "inputIndex": 2, + "inputQty": "8763689824894885", + "outputIndex": 1, + "expectedQty": "8732060005551247", + "swapFee": "5259369018646", "reserves": [ - "25518271602563323368224794", - "112605309434455012243121118", - "45806205914367678977856070" + "770358674327149846891360335", + "417143465424316331132039738", + "548976609969793994404743801" ], - "mAssetSupply": "183552417611067938464582811" + "mAssetSupply": "1736004292703198893717843834", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "12332038205066927144960", - "expectedQtys": [ - "1713940337776387495412", - "7563160432390633830519", - "3076583918373210624545" + "type": "mintMulti", + "inputQtys": [ + "5129326983239905277116416", + "2312027792014866984730624", + "129465781455072809451520" ], - "redemptionFee": "3699611461520078143", + "expectedQty": "7565315519008205230341616", "reserves": [ - "25516557662225546980729382", - "112597746274022621609290599", - "45803129330449305767231525" + "775488001310389752168476751", + "419455493216331198116770362", + "549106075751249067214195321" ], - "mAssetSupply": "183540089272474333057515994" + "mAssetSupply": "1743569608222207098948185450" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "163248321318990414610432", - "expectedQty": "161853307956854569257296", + "type": "mintMulti", + "inputQtys": [ + "27149497406459106870427648", + "15825005612327153830985728", + "9207080793709989660196864" + ], + "expectedQty": "52165210893154447534756768", "reserves": [ - "25516557662225546980729382", - "112760994595341612023901031", - "45803129330449305767231525" - ] + "802637498716848859038904399", + "435280498828658351947756090", + "558313156544959056874392185" + ], + "mAssetSupply": "1795734819115361546482942218" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "23075096880935900020736", - "outputIndex": 0, - "expectedQty": "22459975338540560831236", - "swapFee": "13726607551102064755", + "inputIndex": 2, + "inputQty": "15837869481631664128", + "outputIndex": 1, + "expectedQty": "15784964968931409192", + "swapFee": "9506340354717266", "reserves": [ - "25494097686887006419898146", - "112784069692222547923921767", - "45803129330449305767231525" + "802637498716848859038904399", + "435280483043693383016346898", + "558313172382828538506056313" ], - "mAssetSupply": "183701956307038738728838045", + "mAssetSupply": "1795734819124867886837659484", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "272182241916442204176384", - "98744227217318820708352", - "1703943694762721669021696" + "412381359854849753088", + "95456792112525049856", + "552823174370090876928" ], - "expectedQty": "2083246310653101468570784", + "expectedQty": "1060106206050201149321", "reserves": [ - "25766279928803448624074530", - "112882813919439866744630119", - "47507073025212027436253221" + "802637911098208713888657487", + "435280578500485495541396754", + "558313725206002908596933241" ], - "mAssetSupply": "185785202617691840197408829" + "mAssetSupply": "1795735879231073937038808805" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3532054159218546493620224", - "expectedQty": "3519908563585671705110750", - "swapFee": "2119232495531127896172", + "type": "redeemMasset", + "inputQty": "611236061947845941395456", + "expectedQtys": [ + "273121488104887496666197", + "148117199174588325488760", + "189982896832029622334701" + ], + "redemptionFee": "183370818584353782418", "reserves": [ - "25766279928803448624074530", - "112882813919439866744630119", - "43987164461626355731142471" + "802364789610103826391991290", + "435132461301310907215907994", + "558123742309170878974598540" ], - "mAssetSupply": "182255267690968824831684777" + "mAssetSupply": "1795124826539944675451195767" }, { "type": "redeemMasset", - "inputQty": "103531501911944660307148", + "inputQty": "94613872233874954649", "expectedQtys": [ - "14632341808284803964551", - "64104710579652479879382", - "24979749787638219198925" + "42276762103225723216", + "22927216881944468997", + "29407652209206246055" ], - "redemptionFee": "31059450573583398092", + "redemptionFee": "28384161670162486", "reserves": [ - "25751647586995163820109979", - "112818709208860214264750737", - "43962184711838717511943546" + "802364747333341723166268074", + "435132438374094025271438997", + "558123712901518669768352485" ], - "mAssetSupply": "182151767248507453754775721" + "mAssetSupply": "1795124731954456603246403604" }, { "type": "redeemBassets", "inputQtys": [ - "130711596173301504", - "29676802699976204", - "133377154532941872" + "35413241753398325248", + "60494610572902006784", + "143459710582633709568" ], - "expectedQty": "296244346239532872", - "swapFee": "177853319735561", + "expectedQty": "239520208030251657954", + "swapFee": "143798403860467275", "reserves": [ - "25751647456283567646808475", - "112818709179183411564774533", - "43962184578461562979001674" + "802364711920099969767942826", + "435132377879483452369432213", + "558123569441808087134642917" ], - "mAssetSupply": "182151766952263107515242849" + "mAssetSupply": "1795124492434248572994745650" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "465513364835106356723712", - "expectedQty": "469300108421968163712525", - "swapFee": "279308018901063814034", - "reserves": [ - "25751647456283567646808475", - "112349409070761443401062008", - "43962184578461562979001674" + "type": "redeemMasset", + "inputQty": "40266435959582572", + "expectedQtys": [ + "17992442816472810", + "9757525861097528", + "12515513529597265" ], - "mAssetSupply": "181686532895446902222333171" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "713187224613034114678784", - "expectedQty": "718941186736324933043309", - "swapFee": "427912334767820468807", + "redemptionFee": "12079930787874", "reserves": [ - "25751647456283567646808475", - "111630467884025118468018699", - "43962184578461562979001674" + "802364711902107526951470016", + "435132377869725926508334685", + "558123569429292573605045652" ], - "mAssetSupply": "180973773583168635928123194" + "mAssetSupply": "1795124492393994216965950952" }, { "type": "mint", "inputIndex": 2, - "inputQty": "53802960990072970674176", - "expectedQty": "53979266855377056489716", + "inputQty": "252558640866746080", + "expectedQty": "252654815193557545", "reserves": [ - "25751647456283567646808475", - "111630467884025118468018699", - "44015987539451635949675850" + "802364711902107526951470016", + "435132377869725926508334685", + "558123569681851214471791732" ] }, { - "type": "mintMulti", - "inputQtys": [ - "990681731939963481620480", - "1007443267718702975418368", - "543549657109242421706752" + "type": "redeemMasset", + "inputQty": "115394826597603226419", + "expectedQtys": [ + "51562418403902756107", + "27962941784435412690", + "35866733162769589232" ], - "expectedQty": "2551398814480294880040041", + "redemptionFee": "34618447979280967", "reserves": [ - "26742329188223531128428955", - "112637911151743821443437067", - "44559537196560878371382602" + "802364660339689123048713909", + "435132349906784142072921995", + "558123533815118051702202500" ], - "mAssetSupply": "183579151664504307864652951" + "mAssetSupply": "1795124377286440882535563045" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1665911343932909553713152", - "expectedQty": "1691044607677739000067401", + "type": "swap", + "inputIndex": 2, + "inputQty": "3893298436243660800", + "outputIndex": 1, + "expectedQty": "3880293306132230630", + "swapFee": "2336868602482536", "reserves": [ - "28408240532156440682142107", - "112637911151743821443437067", - "44559537196560878371382602" - ] + "802364660339689123048713909", + "435132346026490835940691365", + "558123537708416487945863300" + ], + "mAssetSupply": "1795124377288777751138045581", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 0, - "inputQty": "518755818704565567488", + "inputQty": "851336089789132290654208", "outputIndex": 1, - "expectedQty": "529959216605383115410", - "swapFee": "315651046773304021", + "expectedQty": "845964368450391555682371", + "swapFee": "509481532138458573539", "reserves": [ - "28408759287975145247709595", - "112637381192527216060321657", - "44559537196560878371382602" + "803215996429478255339368117", + "434286381658040444385008994", + "558123537708416487945863300" ], - "mAssetSupply": "185270196587833093638024373", + "mAssetSupply": "1795124886770309889596619120", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "4788461689641669492736", - "111350930675944180940800", - "20632367201426081841152" - ], - "expectedQty": "136029899068432838494181", + "type": "redeem", + "inputIndex": 1, + "inputQty": "342072123727751115964416", + "expectedQty": "340790044045488410105999", + "swapFee": "205243274236650669578", "reserves": [ - "28413547749664786917202331", - "112748732123203160241262457", - "44580169563762304453223754" + "803215996429478255339368117", + "433945591613994955974902995", + "558123537708416487945863300" ], - "mAssetSupply": "185406226486901526476518554" + "mAssetSupply": "1794783019889856375131324282" }, { - "type": "mintMulti", - "inputQtys": [ - "750552091645583294464", - "1346319088518844645376", - "2681751253103060451328" - ], - "expectedQty": "4787850271219500560684", + "type": "redeem", + "inputIndex": 0, + "inputQty": "608557294140355903488", + "expectedQty": "609774999140642552133", + "swapFee": "365134376484213542", "reserves": [ - "28414298301756432500496795", - "112750078442291679085907833", - "44582851315015407513675082" + "803215386654479114696815984", + "433945591613994955974902995", + "558123537708416487945863300" ], - "mAssetSupply": "185411014337172745977079238" + "mAssetSupply": "1794782411697696611259634336" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "833458642385284448124928", - "298363829058560640155648", - "566942886345813809692672" + "56012947763700483227648", + "33402156188116390510592", + "39030941777616223338496" ], - "expectedQty": "1710479628650606292049175", - "swapFee": "1026903919542089028646", + "expectedQty": "128421007662698774734236", "reserves": [ - "27580839659371148052371867", - "112451714613233118445752185", - "44015908428669593703982410" + "803271399602242815180043632", + "433978993770183072365413587", + "558162568650194104169201796" ], - "mAssetSupply": "183700534708522139685030063" + "mAssetSupply": "1794910832705359310034368572" }, { - "type": "mintMulti", - "inputQtys": [ - "695388355704720588800", - "2367540598707311869952", - "3849082714888692826112" + "type": "redeemMasset", + "inputQty": "8328170552990237301145", + "expectedQtys": [ + "3725964632895836572099", + "2013006292777400557246", + "2589030296891838868591" ], - "expectedQty": "6916724306713330049938", + "redemptionFee": "2498451165897071190", "reserves": [ - "27581535047726852772960667", - "112454082153831825757622137", - "44019757511384482396808522" + "803267673637609919343471533", + "433976980763890294964856341", + "558159979619897212330333205" ], - "mAssetSupply": "183707451432828853015080001" + "mAssetSupply": "1794902507033257485694138617" }, { "type": "mintMulti", "inputQtys": [ - "175069750329460383547392", - "161589724571454138220544", - "11386639757422115160064" + "227935421951008032", + "685105920817145600", + "144543110776069216" ], - "expectedQty": "349378518461899958753832", + "expectedQty": "1059214530930258290", "reserves": [ - "27756604798056313156508059", - "112615671878403279895842681", - "44031144151141904511968586" + "803267673865545341294479565", + "433976981448996215782001941", + "558159979764440323106402421" ], - "mAssetSupply": "184056829951290752973833833" + "mAssetSupply": "1794902508092472016624396907" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "286256913009541382144", - "expectedQty": "283932735338324206947", + "inputQty": "158480371954962122407936", + "expectedQty": "157885535107408323774324", + "swapFee": "95088223172977273444", "reserves": [ - "27756604798056313156508059", - "112615958135316289437224825", - "44031144151141904511968586" - ] + "803267673865545341294479565", + "433819095913888807458227617", + "558159979764440323106402421" + ], + "mAssetSupply": "1794744122808740227479262415" }, { "type": "mintMulti", "inputQtys": [ - "19105052611834873380864", - "108030114511677663739904", - "13826905328905623699456" + "783270682436727581179904", + "969348261204347196538880", + "70268289729595162230784" ], - "expectedQty": "140416911929341940536018", + "expectedQty": "1823943069411539000981740", "reserves": [ - "27775709850668148029888923", - "112723988249827967100964729", - "44044971056470810135668042" + "804050944547982068875659469", + "434788444175093154654766497", + "558230248054169918268633205" ], - "mAssetSupply": "184197530795955433238576798" + "mAssetSupply": "1796568065878151766480244155" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "83754635520230316572672", - "outputIndex": 0, - "expectedQty": "82771380025453014491340", - "swapFee": "50431468828287100508", + "inputIndex": 0, + "inputQty": "102986504650146552217600", + "outputIndex": 2, + "expectedQty": "102618002562686268836538", + "swapFee": "61631525843973894481", "reserves": [ - "27692938470642695015397583", - "112723988249827967100964729", - "44128725691991040452240714" + "804153931052632215427877069", + "434788444175093154654766497", + "558127630051607231999796667" ], - "mAssetSupply": "184197581227424261525677306", + "mAssetSupply": "1796568127509677610454138636", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "241656156417890744218419", - "expectedQtys": [ - "36320571504960514355118", - "147842731817443991051771", - "57876867729939803855576" - ], - "redemptionFee": "72496846925367223265", + "type": "mint", + "inputIndex": 0, + "inputQty": "1350547643645146886569984", + "expectedQty": "1347034999839455455779325", "reserves": [ - "27656617899137734501042465", - "112576145518010523109912958", - "44070848824261100648385138" - ], - "mAssetSupply": "183955997567853296148682152" + "805504478696277362314447053", + "434788444175093154654766497", + "558127630051607231999796667" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "354784570134107200", - "390348188668940288", - "719915704383562112" + "390806403981258432", + "3919820362863988224", + "4474452825836645376" ], - "expectedQty": "1469708993122683723", + "expectedQty": "8798207976243707513", + "swapFee": "5282094042171527", "reserves": [ - "27656618253922304635149665", - "112576145908358711778853246", - "44070849544176805031947250" + "805504478305470958333188621", + "434788440255272791790778273", + "558127625577154406163151291" ], - "mAssetSupply": "183955999037562289271365875" + "mAssetSupply": "1797915153711309089666210448" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "47777066136318200774656", - "53660941192909872431104", - "19494001717914053378048" + "51745239010227471521939456", + "33561241566734673455874048", + "3078728201445010218942464" ], - "expectedQty": "121276273120975789603139", + "expectedQty": "88365940600393470579735102", + "swapFee": "53051395197354495044867", "reserves": [ - "27704395320058622835924321", - "112629806849551621651284350", - "44090343545894719085325298" + "753759239295243486811249165", + "401227198688538118334904225", + "555048897375709395944208827" ], - "mAssetSupply": "184077275310683265060969014" + "mAssetSupply": "1709549213110915619086475346" }, { - "type": "redeemMasset", - "inputQty": "3606057036760599", - "expectedQtys": [ - "542563759897147", - "2205745722828973", - "863466691586574" - ], - "redemptionFee": "1081817111028", + "type": "redeem", + "inputIndex": 0, + "inputQty": "701872142164534310731776", + "expectedQty": "703208669520472495787704", + "swapFee": "421123285298720586439", "reserves": [ - "27704395319516059076027174", - "112629806847345875928455377", - "44090343545031252393738724" + "753056030625723014315461461", + "401227198688538118334904225", + "555048897375709395944208827" ], - "mAssetSupply": "184077275307078289841319443" + "mAssetSupply": "1708847762092036383496330009" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "127514798427339197775872", - "57747371324231282327552", - "165414600918198776758272" + "19956837413508482072576", + "22766559969549307871232", + "11261334432494848573440" ], - "expectedQty": "352680140402024735746529", + "expectedQty": "54014962968794480327405", + "swapFee": "32428434842181997394", "reserves": [ - "27831910117943398273803046", - "112687554218670107210782929", - "44255758145949451170496996" + "753036073788309505833388885", + "401204432128568569027032993", + "555037636041276901095635387" ], - "mAssetSupply": "184429955447480314577065972" + "mAssetSupply": "1708793747129067589016002604" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "83636281812230892158976", - "expectedQty": "84266909157130387863778", - "swapFee": "50181769087338535295", + "inputQty": "31799422680782020608", + "outputIndex": 2, + "expectedQty": "31894114893511394939", + "swapFee": "19147150521452154", "reserves": [ - "27831910117943398273803046", - "112603287309512976822919151", - "44255758145949451170496996" + "753036073788309505833388885", + "401204463927991249809053601", + "555037604147162007584240448" ], - "mAssetSupply": "184346369347437171023442291" + "mAssetSupply": "1708793747148214739537454758", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "938679636253355060232192", - "614654428635673663635456", - "370204503401553790500864" + "type": "redeemMasset", + "inputQty": "2051284105112895828787200", + "expectedQtys": [ + "903694506160911551851914", + "481472644564013924018923", + "666082875760754719289860" ], - "expectedQty": "1934061994129738767225390", - "swapFee": "1161133876803925615704", + "redemptionFee": "615385231533868748636", "reserves": [ - "26893230481690043213570854", - "111988632880877303159283695", - "43885553642547897379996132" + "752132379282148594281536971", + "400722991283427235885034678", + "554371521271401252864950588" ], - "mAssetSupply": "182412307353307432256216901" + "mAssetSupply": "1706743078428333377577416194" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "495762359884756090880", - "expectedQty": "491651918024704383866", + "inputIndex": 0, + "inputQty": "93230843686772860256256", + "expectedQty": "92998016612350323005038", "reserves": [ - "26893230481690043213570854", - "111989128643237187915374575", - "43885553642547897379996132" + "752225610125835367141793227", + "400722991283427235885034678", + "554371521271401252864950588" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "9886349733818288128", - "outputIndex": 0, - "expectedQty": "9647297231925919333", - "swapFee": "5882628133963941", + "type": "redeemBassets", + "inputQtys": [ + "1522295994582372026679296", + "470835657546798957854720", + "1395430535187365151899648" + ], + "expectedQty": "3386370313593507559055356", + "swapFee": "2033042013364123009238", "reserves": [ - "26893220834392811287651521", - "111989138529586921733662703", - "43885553642547897379996132" + "750703314131252995115113931", + "400252155625880436927179958", + "552976090736213887713050940" ], - "mAssetSupply": "182412799011108085094564708", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1703449706131352220341365876" }, { - "type": "mintMulti", - "inputQtys": [ - "6615453917171200032768", - "9742285497256462254080", - "15240392024013758529536" + "type": "redeemMasset", + "inputQty": "27917210785706464090521", + "expectedQtys": [ + "12299309642029210073740", + "6557617509161096175367", + "9059803036135802294412" ], - "expectedQty": "31673766934935318137237", + "redemptionFee": "8375163235711939227", "reserves": [ - "26899836288309982487684289", - "111998880815084178195916783", - "43900794034571911138525668" + "750691014821610965905040191", + "400245598008371275831004591", + "552967030933177751910756528" ], - "mAssetSupply": "182444472778043020412701945" + "mAssetSupply": "1703421797295729749589214582" }, { - "type": "redeemMasset", - "inputQty": "37756992477208569446", - "expectedQtys": [ - "5565267085598143660", - "23171281726160172142", - "9082569925468349124" + "type": "redeemBassets", + "inputQtys": [ + "1247414329802689792", + "723522071678585600", + "1321992110034622976" ], - "redemptionFee": "11327097743162570", + "expectedQty": "3292319432988285069", + "swapFee": "1976577606356785", "reserves": [ - "26899830723042896889540629", - "111998857643802452035744641", - "43900784952001985670176544" + "750691013574196636102350399", + "400245597284849204152418991", + "552967029611185641876133552" ], - "mAssetSupply": "182444435032377640947295069" + "mAssetSupply": "1703421794003410316600929513" }, { - "type": "redeemMasset", - "inputQty": "628820151147481", - "expectedQtys": [ - "92686198246704", - "385903853070929", - "151264775572050" + "type": "mintMulti", + "inputQtys": [ + "2724784343984861121347584", + "2494788981877015020830720", + "1480676392440938505437184" ], - "redemptionFee": "188646045344", + "expectedQty": "6702176467874320549278746", "reserves": [ - "26899830722950210691293925", - "111998857643416548182673712", - "43900784951850720894604494" + "753415797918181497223697983", + "402740386266726219173249711", + "554447706003626580381570736" ], - "mAssetSupply": "182444435031749009442192932" + "mAssetSupply": "1710123970471284637150208259" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "1256117406771843933667328", + "expectedQty": "1252983581386258093514281", + "reserves": [ + "754671915324953341157365311", + "402740386266726219173249711", + "554447706003626580381570736" + ] }, { "type": "redeemMasset", - "inputQty": "62348185575367459943219", + "inputQty": "190374701380049992626995", "expectedQtys": [ - "9189934956784739885283", - "38262776728146943414294", - "14998063088742551303200" + "83925016664284232698609", + "44787665927996492348235", + "61658625451554467107761" ], - "redemptionFee": "18704455672610237982", + "redemptionFee": "57112410414014997788", "reserves": [ - "26890640787993425951408642", - "111960594866688401239259418", - "43885786888761978343301294" + "754587990308289056924666702", + "402695598600798222680901476", + "554386047378175025914462975" ], - "mAssetSupply": "182382105550629314592487695" + "mAssetSupply": "1711186636463701259266093333" }, { - "type": "mintMulti", - "inputQtys": [ - "75529798466903809720320", - "520315696097986110029824", - "287137993886322640551936" + "type": "mint", + "inputIndex": 0, + "inputQty": "305211794526003658752", + "expectedQty": "304448934075429421177", + "reserves": [ + "754588295520083582928325454", + "402695598600798222680901476", + "554386047378175025914462975" + ] + }, + { + "type": "redeemMasset", + "inputQty": "142256485272665404211", + "expectedQtys": [ + "62712537513709757989", + "33467339718611128625", + "46074072444124922265" ], - "expectedQty": "880844032930976892185766", + "redemptionFee": "42676945581799621", "reserves": [ - "26966170586460329761128962", - "112480910562786387349289242", - "44172924882648300983853230" + "754588232807546069218567465", + "402695565133458504069772851", + "554386001304102581789540710" ], - "mAssetSupply": "183262949583560291484673461" + "mAssetSupply": "1711186798698827007611909920" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "26253332467173948391424", - "outputIndex": 2, - "expectedQty": "26558919243997860775825", - "swapFee": "15999649735430003858", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1082557726282855544258560", + "expectedQty": "1078112125141487163433940", + "swapFee": "649534635769713326555", "reserves": [ - "26992423918927503709520386", - "112480910562786387349289242", - "44146365963404303123077405" + "754588232807546069218567465", + "401617453008317016906338911", + "554386001304102581789540710" ], - "mAssetSupply": "183262965583210026914677319", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1710104890507179921780977915" }, { "type": "mint", "inputIndex": 0, - "inputQty": "63248173768443117568", - "expectedQty": "64241348784143452456", + "inputQty": "3557120529772722159353856", + "expectedQty": "3548153380472286768808681", "reserves": [ - "26992487167101272152637954", - "112480910562786387349289242", - "44146365963404303123077405" + "758145353337318791377921321", + "401617453008317016906338911", + "554386001304102581789540710" ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1398699172133949541449728", - "expectedQty": "1387001746878454023254684", + "type": "mintMulti", + "inputQtys": [ + "456133616526922368", + "367332739933090368", + "1143817439781133056" + ], + "expectedQty": "1967425355540169206", "reserves": [ - "26992487167101272152637954", - "113879609734920336890738970", - "44146365963404303123077405" - ] + "758145353793452407904843689", + "401617453375649756839429279", + "554386002447920021570673766" + ], + "mAssetSupply": "1713653045855077564089955802" }, { "type": "redeemBassets", "inputQtys": [ - "13533326109765917474816", - "10704834896708654596096", - "3317640670196840529920" + "1397308886217377185792", + "5590248925704532000768", + "1871217801495992860672" ], - "expectedQty": "27695017524148293720968", - "swapFee": "16626986706512883962", + "expectedQty": "8875132103393077850379", + "swapFee": "5328276227772510216", "reserves": [ - "26978953840991506235163138", - "113868904900023628236142874", - "44143048322734106282547485" + "758143956484566190527657897", + "401611863126724052307428511", + "554384131230118525577813094" ], - "mAssetSupply": "184622336553913116787663491" + "mAssetSupply": "1713644170722974171012105423" }, { "type": "redeemBassets", "inputQtys": [ - "344671043852056626462720", - "279544481492419177611264", - "604826070931089175609344" + "311253019624658551439360", + "424559456134668398624768", + "596500073841446564659200" + ], + "expectedQty": "1333031405812877982870970", + "swapFee": "800299022901467670324", + "reserves": [ + "757832703464941531976218537", + "401187303670589383908803743", + "553787631156277079013153894" + ], + "mAssetSupply": "1712311139317161293029234453" + }, + { + "type": "mintMulti", + "inputQtys": [ + "44059384879477889695744", + "586410763300052119060480", + "242352853133605155635200" ], - "expectedQty": "1234479273072583491702083", - "swapFee": "741132243189463773285", + "expectedQty": "874797358153152695247440", "reserves": [ - "26634282797139449608700418", - "113589360418531209058531610", - "43538222251803017106938141" + "757876762849821009865914281", + "401773714433889436027864223", + "554029984009410684168789094" ], - "mAssetSupply": "183387857280840533295961408" + "mAssetSupply": "1713185936675314445724481893" }, { "type": "redeemMasset", - "inputQty": "564326454942063705613926", + "inputQty": "1715150596847", "expectedQtys": [ - "81935202714682040446663", - "349435625618686201306687", - "133936892283110165700999" + "758518262660", + "402113793156", + "554498939052" ], - "redemptionFee": "169297936482619111684", + "redemptionFee": "514545179", "reserves": [ - "26552347594424767568253755", - "113239924792912522857224923", - "43404285359519906941237142" + "757876762849820251347651621", + "401773714433889033914071067", + "554029984009410129669850042" ], - "mAssetSupply": "182823700123834952209459166" + "mAssetSupply": "1713185936675312731088430225" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "98821890662621496999936", - "outputIndex": 2, - "expectedQty": "100000044701961521714757", - "swapFee": "60262070686006113165", + "type": "mint", + "inputIndex": 1, + "inputQty": "812522681433866431889408", + "expectedQty": "815401896474892297292497", "reserves": [ - "26651169485087389065253691", - "113239924792912522857224923", - "43304285314817945419522385" - ], - "mAssetSupply": "182823760385905638215572331", - "hardLimitError": false, - "insufficientLiquidityError": false + "757876762849820251347651621", + "402586237115322900345960475", + "554029984009410129669850042" + ] }, { "type": "swap", "inputIndex": 0, - "inputQty": "398187772448919219339264", - "outputIndex": 1, - "expectedQty": "407756034310649472090801", - "swapFee": "242737525770029158715", + "inputQty": "865926632387896803328", + "outputIndex": 2, + "expectedQty": "863220906661801926418", + "swapFee": "518243652287620231", "reserves": [ - "27049357257536308284592955", - "112832168758601873385134122", - "43304285314817945419522385" + "757877628776452639244454949", + "402586237115322900345960475", + "554029120788503467867923624" ], - "mAssetSupply": "182824003123431408244731046", + "mAssetSupply": "1714001339090031275673342953", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "10319533648393713745920", - "expectedQty": "10358437578818527369909", - "reserves": [ - "27049357257536308284592955", - "112832168758601873385134122", - "43314604848466339133268305" - ] - }, { "type": "redeem", "inputIndex": 0, - "inputQty": "67482571255700856", - "expectedQty": "66403011402926081", - "swapFee": "40489542753420", + "inputQty": "3936076719726692508106752", + "expectedQty": "3943619324746378130518303", + "swapFee": "2361646031836015504864", "reserves": [ - "27049357191133296881666874", - "112832168758601873385134122", - "43314604848466339133268305" + "753934009451706261113936646", + "402586237115322900345960475", + "554029120788503467867923624" ], - "mAssetSupply": "182834361493568145059153519" + "mAssetSupply": "1710067624016336419180741065" }, { "type": "redeemBassets", "inputQtys": [ - "8210611269679799336960", - "25948765460399625601024", - "7345676942977157562368" + "5143691508689459478528", + "4921229720200731951104", + "29196603634716436856832" ], - "expectedQty": "41443140896457976683877", - "swapFee": "24880813025690200130", + "expectedQty": "39265436219369667248122", + "swapFee": "23573405775086852460", "reserves": [ - "27041146579863617082329914", - "112806219993141473759533098", - "43307259171523361975705937" + "753928865760197571654458118", + "402581315885602699614009371", + "553999924184868751431066792" ], - "mAssetSupply": "182792918352671687082469642" + "mAssetSupply": "1710028358580117049513492943" }, { "type": "mintMulti", "inputQtys": [ - "5303591781305014026240", - "3632177270885967200256", - "156590032959152291840" + "1818167119947803874295808", + "84285690955322313670656", + "789802098665151948390400" ], - "expectedQty": "9145414721604352985590", + "expectedQty": "2687989095550058870165685", "reserves": [ - "27046450171644922096356154", - "112809852170412359726733354", - "43307415761556321127997777" + "755747032880145375528753926", + "402665601576558021927680027", + "554789726283533903379457192" ], - "mAssetSupply": "182802063767393291435455232" + "mAssetSupply": "1712716347675667108383658628" }, { "type": "mintMulti", "inputQtys": [ - "79777187135875167813632", - "1005954184797061583470592", - "330783248515352833818624" + "9094954955392590807040", + "1141977439234287730688", + "15250675346546226102272" + ], + "expectedQty": "25468574925554569670550", + "reserves": [ + "755756127835100768119560966", + "402666743553997256215410715", + "554804976958880449605559464" + ], + "mAssetSupply": "1712741816250592662953329178" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "339147749735933280256", + "497608896187599552512", + "448197379228264038400" + ], + "expectedQty": "1285848241523101657166", + "swapFee": "771972128190775459", + "reserves": [ + "755755788687351032186280710", + "402666245945101068615858203", + "554804528761501221341521064" + ], + "mAssetSupply": "1712740530402351139851672012" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "2197596946084562848448512", + "expectedQty": "2196288338975810904129120", + "swapFee": "1318558167650737709069", + "reserves": [ + "755755788687351032186280710", + "402666245945101068615858203", + "552608240422525410437391944" ], - "expectedQty": "1410539798966262469330775", + "mAssetSupply": "1710544252014434227740932569" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "42703166690712017174528", + "expectedQty": "42528498716218565927980", + "swapFee": "25621900014427210304", "reserves": [ - "27126227358780797264169786", - "113815806355209421310203946", - "43638199010071673961816401" + "755755788687351032186280710", + "402623717446384850049930223", + "552608240422525410437391944" ], - "mAssetSupply": "184212603566359553904786007" + "mAssetSupply": "1710501574469643530150968345" }, { "type": "mint", "inputIndex": 1, - "inputQty": "10178984708168830020485120", - "expectedQty": "10087337612652249615620235", + "inputQty": "4149918068697848493375488", + "expectedQty": "4164251096184424785739542", "reserves": [ - "27126227358780797264169786", - "123994791063378251330689066", - "43638199010071673961816401" + "755755788687351032186280710", + "406773635515082698543305711", + "552608240422525410437391944" ] }, { - "type": "redeemMasset", - "inputQty": "43182923968950285107", - "expectedQtys": [ - "6026962177902634045", - "27549423150949678639", - "9695626725636612071" + "type": "redeem", + "inputIndex": 0, + "inputQty": "6044514356040591663431680", + "expectedQty": "6055796722939836396480500", + "swapFee": "3626708613624354998059", + "reserves": [ + "749699991964411195789800210", + "406773635515082698543305711", + "552608240422525410437391944" + ], + "mAssetSupply": "1708624937918400987628274266" + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "2226998666603483136", + "outputIndex": 1, + "expectedQty": "2212804775937726559", + "swapFee": "1332939091651222", + "reserves": [ + "749699994191409862393283346", + "406773633302277922605579152", + "552608240422525410437391944" + ], + "mAssetSupply": "1708624937919733926719925488", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeemBassets", + "inputQtys": [ + "403598949421271643848704", + "293335210449127484686336", + "374905729848019959939072" ], - "redemptionFee": "12954877190685085", + "expectedQty": "1071844480536075449672911", + "swapFee": "643492783992040494100", "reserves": [ - "27126221331818619361535741", - "123994763513955100381010427", - "43638189314444948325204330" + "749296395241988590749434642", + "406480298091828795120892816", + "552233334692677390477452872" ], - "mAssetSupply": "194299898009042711760806220" + "mAssetSupply": "1707553093439197851270252577" }, { "type": "redeemBassets", "inputQtys": [ - "1220799315207533568", - "3436338868057548288", - "3285358490931534336" + "14594775990693487706112", + "76612785171149627588608", + "173478968344377366151168" ], - "expectedQty": "7948954077646013134", - "swapFee": "4772235788060444", + "expectedQty": "264910487914237774362188", + "swapFee": "159041717779210190731", "reserves": [ - "27126220111019304154002173", - "123994760077616232323462139", - "43638186029086457393669994" + "749281800465997897261728530", + "406403685306657645493304208", + "552059855724333013111301704" ], - "mAssetSupply": "194299890060088634114793086" + "mAssetSupply": "1707288182951283613495890389" }, { "type": "mint", "inputIndex": 2, - "inputQty": "725571740468032703561728", - "expectedQty": "729102899831194126378474", + "inputQty": "19751225525235462650724352", + "expectedQty": "19749346368359374896150127", "reserves": [ - "27126220111019304154002173", - "123994760077616232323462139", - "44363757769554490097231722" + "749281800465997897261728530", + "406403685306657645493304208", + "571811081249568475762026056" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "408367890791516545744896", - "outputIndex": 1, - "expectedQty": "419571359212546855439275", - "swapFee": "249544588476053349671", + "type": "redeem", + "inputIndex": 2, + "inputQty": "30233637767874252636160", + "expectedQty": "30221601414360570687515", + "swapFee": "18140182660724551581", "reserves": [ - "27534588001810820699747069", - "123575188718403685468022864", - "44363757769554490097231722" + "749281800465997897261728530", + "406403685306657645493304208", + "571780859648154115191338541" ], - "mAssetSupply": "195029242504508304294521231", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1727007313822057774863955937" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1108954191845570088271872", - "expectedQty": "1118628932931362540134581", - "swapFee": "665372515107342052963", + "type": "redeemMasset", + "inputQty": "1213374478746091767044505", + "expectedQtys": [ + "526278411779666719173367", + "285448660185757596075980", + "401605807740820091744777" + ], + "redemptionFee": "364012343623827530113", "reserves": [ - "27534588001810820699747069", - "122456559785472322927888283", - "44363757769554490097231722" + "748755522054218230542555163", + "406118236646471887897228228", + "571379253840413295099593764" ], - "mAssetSupply": "193920953685177841548302322" + "mAssetSupply": "1725794303355655306924441545" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "4886288498240724924366848", - "outputIndex": 0, - "expectedQty": "4726808620831010323851235", - "swapFee": "2904073051840557290781", + "inputIndex": 2, + "inputQty": "1057885948079347131744256", + "outputIndex": 1, + "expectedQty": "1053318935130795468659651", + "swapFee": "634599910376990989503", "reserves": [ - "22807779380979810375895834", - "127342848283713047852255131", - "44363757769554490097231722" + "748755522054218230542555163", + "405064917711341092428568577", + "572437139788492642231338020" ], - "mAssetSupply": "193923857758229682105593103", + "mAssetSupply": "1725794937955565683915431048", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "590585228273132320587776", - "outputIndex": 2, - "expectedQty": "580537074413864109520684", - "swapFee": "350293827777531880623", + "type": "mint", + "inputIndex": 0, + "inputQty": "85655902507128045057343488", + "expectedQty": "85427188768137031002496585", "reserves": [ - "22807779380979810375895834", - "127933433511986180172842907", - "43783220695140625987711038" - ], - "mAssetSupply": "193924208052057459637473726", - "hardLimitError": false, - "insufficientLiquidityError": false + "834411424561346275599898651", + "405064917711341092428568577", + "572437139788492642231338020" + ] }, { - "type": "redeemMasset", - "inputQty": "90984975667220742930432", - "expectedQtys": [ - "10697698463047436984579", - "60005547764762795145638", - "20535962090560666473232" - ], - "redemptionFee": "27295492700166222879", + "type": "mint", + "inputIndex": 2, + "inputQty": "1022040067549618503680", + "expectedQty": "1022178329344768948296", "reserves": [ - "22797081682516762938911255", - "127873427964221417377697269", - "43762684733050065321237806" - ], - "mAssetSupply": "193833250371882939060766173" + "834411424561346275599898651", + "405064917711341092428568577", + "572438161828560191849841700" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "525711701206476586483712", - "expectedQty": "510438298702517012065357", - "swapFee": "315427020723885951890", + "inputQty": "68322660610003217063870464", + "expectedQty": "68468692549734952476023643", + "swapFee": "40993596366001930238322", "reserves": [ - "22286643383814245926845898", - "127873427964221417377697269", - "43762684733050065321237806" + "765942732011611323123875008", + "405064917711341092428568577", + "572438161828560191849841700" ], - "mAssetSupply": "193307854097697186360234351" + "mAssetSupply": "1742941481888394844553243787" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "151777229129623078436864", - "expectedQty": "150902853541596273422356", - "swapFee": "91066337477773847062", + "inputQty": "1757367354273402191872", + "expectedQty": "1757102649742395583151", "reserves": [ - "22286643383814245926845898", - "127873427964221417377697269", - "43611781879508469047815450" - ], - "mAssetSupply": "193156167934905041055644549" + "765942732011611323123875008", + "405064917711341092428568577", + "572439919195914465252033572" + ] }, { - "type": "redeemMasset", - "inputQty": "77891005525317479353548", - "expectedQtys": [ - "8984482881309880727125", - "51550007093187269871282", - "17581351348962299308953" + "type": "mintMulti", + "inputQtys": [ + "852903337289096757248", + "637627566404591288320", + "344284778707743408128" ], - "redemptionFee": "23367301657595243806", + "expectedQty": "1834983328532324573704", "reserves": [ - "22277658900932936046118773", - "127821877957128230107825987", - "43594200528159506748506497" + "765943584914948612220632256", + "405065555338907497019856897", + "572440263480693172995441700" ], - "mAssetSupply": "193078300296681381171534807" + "mAssetSupply": "1742945073974373119273400642" }, { "type": "redeemBassets", "inputQtys": [ - "920904330622682398720", - "2030756571742988140544", - "697735475517271441408" + "194593418320000128647168", + "315432306965143426695168", + "562631193396245824536576" ], - "expectedQty": "3656646568843570151036", - "swapFee": "2195305124380770552", + "expectedQty": "1073247152917505028580164", + "swapFee": "644334892686114685959", "reserves": [ - "22276737996602313363720053", - "127819847200556487119685443", - "43593502792683989477065089" + "765748991496628612091985088", + "404750123031942353593161729", + "571877632287296927170905124" ], - "mAssetSupply": "193074643650112537601383771" + "mAssetSupply": "1741871826821455614244820478" }, { "type": "redeemMasset", - "inputQty": "1305194283195706218905", + "inputQty": "27096469037140242595840", "expectedQtys": [ - "150546689563047356962", - "863809362907319678297", - "294605858941152558204" + "11908378556193529450311", + "6294383328288713656401", + "8893430365199192464287" ], - "redemptionFee": "391558284958711865", + "redemptionFee": "8128940711142072778", "reserves": [ - "22276587449912750316363091", - "127818983391193579800007146", - "43593208186825048324506885" + "765737083118072418562534777", + "404743828648614064879505328", + "571868738856931727978440837" ], - "mAssetSupply": "193073338847387626853876731" + "mAssetSupply": "1741844738481359185144297416" }, { "type": "redeemMasset", - "inputQty": "118534309486152", + "inputQty": "122614774784359855344844", "expectedQtys": [ - "13672254102345", - "78448892764985", - "26755328696859" + "53886842330386280170510", + "28482840075830191688708", + "40243839881669461344386" ], - "redemptionFee": "35560292845", + "redemptionFee": "36784432435307956603", "reserves": [ - "22276587449899078062260746", - "127818983391115130907242161", - "43593208186798292995810026" + "765683196275742032282364267", + "404715345808538234687816620", + "571828495017050058517096451" ], - "mAssetSupply": "193073338847269128104683424" + "mAssetSupply": "1741722160491007260596909175" }, { - "type": "redeemMasset", - "inputQty": "31385977825031880704", - "expectedQtys": [ - "3620192887060989797", - "20772004488774520126", - "7084380520892173634" + "type": "redeem", + "inputIndex": 1, + "inputQty": "22220780372410192887808", + "expectedQty": "22126146758145849929188", + "swapFee": "13332468223446115732", + "reserves": [ + "765683196275742032282364267", + "404693219661780088837887432", + "571828495017050058517096451" ], - "redemptionFee": "9415793347509564", + "mAssetSupply": "1741699953043103073850137099" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "14667731715497904656351232", + "expectedQty": "14664417934062483827937960", + "reserves": [ + "765683196275742032282364267", + "404693219661780088837887432", + "586496226732547963173447683" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "15977668473803793275813888", + "56512789653706437604409344", + "48083324539945888593739776" + ], + "expectedQty": "120713215284234987792724130", "reserves": [ - "22276583829706191001270949", - "127818962619110642132722035", - "43593201102417772103636392" + "781660864749545825558178155", + "461206009315486526442296776", + "634579551272493851767187459" ], - "mAssetSupply": "193073307470707096420312284" + "mAssetSupply": "1877077586261400545470799189" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "218877360810857798303744", - "expectedQty": "217597415715542363797886", - "swapFee": "131326416486514678982", + "inputQty": "5854204644286017075937280", + "expectedQty": "5852398714879618457378280", + "swapFee": "3512522786571610245562", + "reserves": [ + "781660864749545825558178155", + "461206009315486526442296776", + "628727152557614233309809179" + ], + "mAssetSupply": "1871226894139901100005107471" + }, + { + "type": "redeemMasset", + "inputQty": "2805728339222109093888", + "expectedQtys": [ + "1171675176507363517108", + "691327475559525767677", + "942434284059943728865" + ], + "redemptionFee": "841718501766632728", "reserves": [ - "22276583829706191001270949", - "127818962619110642132722035", - "43375603686702229739838506" + "781659693074369318194661047", + "461205317988010966916529099", + "628726210123330173366080314" ], - "mAssetSupply": "192854561436312725136687522" + "mAssetSupply": "1871224089253280379662646311" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "753456227398547", + "inputIndex": 1, + "inputQty": "120180317870893400064", "outputIndex": 2, - "expectedQty": "771460376992351", - "swapFee": "465623155035", + "expectedQty": "120490965400115347508", + "swapFee": "72318846975907588", "reserves": [ - "22276583830459647228669496", - "127818962619110642132722035", - "43375603685930769362846155" + "781659693074369318194661047", + "461205438168328837809929163", + "628726089632364773250732806" ], - "mAssetSupply": "192854561436313190759842557", + "mAssetSupply": "1871224089325599226638553899", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemMasset", + "inputQty": "52990991285242159117107", + "expectedQtys": [ + "22129095036424913456091", + "13056908348953218497673", + "17799484241834474426562" + ], + "redemptionFee": "15897297385572647735", + "reserves": [ + "781637563979332893281204956", + "461192381259979884591431490", + "628708290148122938776306244" + ], + "mAssetSupply": "1871171114231611370052084527" + }, + { + "type": "mintMulti", + "inputQtys": [ + "16721848523093326730100736", + "54359956527368020875542528", + "24017964908467822245445632" + ], + "expectedQty": "95203763816007760582170185", + "reserves": [ + "798359412502426220011305692", + "515552337787347905466974018", + "652726255056590761021751876" + ], + "mAssetSupply": "1966374878047619130634254712" + }, { "type": "mint", "inputIndex": 2, - "inputQty": "19723012014795", - "expectedQty": "19828153763514", + "inputQty": "467621037111492718100480", + "expectedQty": "467574988668937684401211", "reserves": [ - "22276583830459647228669496", - "127818962619110642132722035", - "43375603685950492374860950" + "798359412502426220011305692", + "515552337787347905466974018", + "653193876093702253739852356" ] }, { - "type": "redeemMasset", - "inputQty": "3622324971999934283776", - "expectedQtys": [ - "418288358809626135347", - "2400062078889838503769", - "814465548948518228568" + "type": "mint", + "inputIndex": 2, + "inputQty": "181456673102305700085760", + "expectedQty": "181438281912233845921008", + "reserves": [ + "798359412502426220011305692", + "515552337787347905466974018", + "653375332766804559439938116" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "12163285071099953414144", + "12849063811326979080192", + "3540123435136248709120" ], - "redemptionFee": "1086697491599980285", + "expectedQty": "28560208610426161931824", + "swapFee": "17146413014064135640", "reserves": [ - "22276165542100837602534149", - "127816562557031752294218266", - "43374789220401543856632382" + "798347249217355120057891548", + "515539488723536578487893826", + "653371792643369423191228996" ], - "mAssetSupply": "192850940198058510579302580" + "mAssetSupply": "1966995331109589876002645107" }, { "type": "redeemMasset", - "inputQty": "43543286715932981644492", + "inputQty": "16332913512439909607014", "expectedQtys": [ - "5028165633501568866519", - "28850694524914176224185", - "9790537070045001143367" + "6627074587938004005439", + "4279489467957234091192", + "5423634399375900788000" ], - "redemptionFee": "13062986014779894493", + "redemptionFee": "4899874053731972882", "reserves": [ - "22271137376467336033667630", - "127787711862506838117994081", - "43364998683331498855489015" + "798340622142767182053886109", + "515535209234068621253802634", + "653366369008970047290440996" ], - "mAssetSupply": "192807409974328592377552581" + "mAssetSupply": "1966979003095951489825010975" }, { "type": "mintMulti", "inputQtys": [ - "812537892715553095680", - "701436778879565430784", - "650041790297936887808" + "19754340590709312061440", + "206884942239941963808768", + "144466514531810726117376" ], - "expectedQty": "2183517645085879648948", + "expectedQty": "371517030370902039509651", "reserves": [ - "22271949914360051586763310", - "127788413299285717683424865", - "43365648725121796792376823" + "798360376483357891365947549", + "515742094176308563217611402", + "653510835523501858016558372" ], - "mAssetSupply": "192809593491973678257201529" + "mAssetSupply": "1967350520126322391864520626" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1730076614238324129792", - "expectedQty": "1678723626752210384545", - "swapFee": "1038045968542994477", + "type": "mintMulti", + "inputQtys": [ + "60613657109537259520", + "37643150093381541888", + "44932654313763897344" + ], + "expectedQty": "143166632018366176817", "reserves": [ - "22270271190733299376378765", - "127788413299285717683424865", - "43365648725121796792376823" + "798360437097015000903207069", + "515742131819458656599153290", + "653510880456156171780455716" ], - "mAssetSupply": "192807864453405408476066214" + "mAssetSupply": "1967350663292954410230697443" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "36178243452276998519390208", + "expectedQty": "36248881927092325395933641", + "reserves": [ + "798360437097015000903207069", + "551920375271735655118543498", + "653510880456156171780455716" + ] }, { "type": "mintMulti", "inputQtys": [ - "216655364463731576668160", - "7475248839847687749632", - "223767376326692500930560" + "48084384413166474362880", + "56084231634170503233536", + "55649555432301817495552" ], - "expectedQty": "455424143295062405568232", + "expectedQty": "159846946293840805291888", "reserves": [ - "22486926555197030953046925", - "127795888548125565371174497", - "43589416101448489293307383" + "798408521481428167377569949", + "551976459503369825621777034", + "653566530011588473597951268" ], - "mAssetSupply": "193263288596700470881634446" + "mAssetSupply": "2003759392166340576431922972" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "9110901515576248631296", - "expectedQty": "8845268792154323594617", - "swapFee": "5466540909345749178", + "inputQty": "4341814982858522077691904", + "outputIndex": 1, + "expectedQty": "4325105771059705099985071", + "swapFee": "2601166347634999087164", + "reserves": [ + "802750336464286689455261853", + "547651353732310120521791963", + "653566530011588473597951268" + ], + "mAssetSupply": "2003761993332688211431010136", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "4599064955593174", + "expectedQty": "4599461078914548", + "reserves": [ + "802750336464286689455261853", + "547651353732310120521791963", + "653566530016187538553544442" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "307652614394001229873152", + "expectedQty": "306921248684753991561342", + "swapFee": "184591568636400737923", "reserves": [ - "22478081286404876629452308", - "127795888548125565371174497", - "43589416101448489293307383" + "802750336464286689455261853", + "547344432483625366530230621", + "653566530016187538553544442" ], - "mAssetSupply": "193254183161725803978752328" + "mAssetSupply": "2003454525314462307680789455" }, { "type": "mintMulti", "inputQtys": [ - "268370611838840274944", - "121405315861867200512", - "224051244932214521856" + "1978862662322850103296", + "249146323006876647424", + "697894353861179736064" ], - "expectedQty": "621473628273708550356", + "expectedQty": "2923354310701317927149", "reserves": [ - "22478349657016715469727252", - "127796009953441427238375009", - "43589640152693421507829239" + "802752315326949012305365149", + "547344681629948373406878045", + "653567227910541399733280506" ], - "mAssetSupply": "193254804635354077687302684" + "mAssetSupply": "2003457448668773008998716604" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "15371629922654967824384", - "expectedQty": "15823610981168588159373", + "type": "swap", + "inputIndex": 1, + "inputQty": "2557720413475858190172160", + "outputIndex": 0, + "expectedQty": "2564603206734128528657486", + "swapFee": "1537342875221282742522", "reserves": [ - "22493721286939370437551636", - "127796009953441427238375009", - "43589640152693421507829239" - ] + "800187712120214883776707663", + "549902402043424231597050205", + "653567227910541399733280506" + ], + "mAssetSupply": "2003458986011648230281459126", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "364223913738560503545856", - "expectedQty": "362076843374829219462634", - "swapFee": "218534348243136302127", + "inputQty": "16566193675794552832", + "outputIndex": 0, + "expectedQty": "16582815022175152865", + "swapFee": "9940595120854474", "reserves": [ - "22493721286939370437551636", - "127796009953441427238375009", - "43227563309318592288366605" + "800187695537399861601554798", + "549902402043424231597050205", + "653567244476735075527833338" ], - "mAssetSupply": "192906622866944928908218328" + "mAssetSupply": "2003458986021588825402313600", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "104894298189231070117888", - "expectedQty": "103658228063323979953610", + "inputQty": "935667031002829444612096", + "expectedQty": "937285942393560953568539", "reserves": [ - "22493721286939370437551636", - "127900904251630658308492897", - "43227563309318592288366605" + "800187695537399861601554798", + "550838069074427061041662301", + "653567244476735075527833338" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "43787934673104388751360", - "expectedQty": "45072980374807446082005", + "type": "redeem", + "inputIndex": 1, + "inputQty": "17267240832370693111808", + "expectedQty": "17227179142870254892814", + "swapFee": "10360344499422415867", "reserves": [ - "22537509221612474826302996", - "127900904251630658308492897", - "43227563309318592288366605" - ] + "800187695537399861601554798", + "550820841895284190786769487", + "653567244476735075527833338" + ], + "mAssetSupply": "2004379015083494515085186198" }, { "type": "redeemMasset", - "inputQty": "145709621997411724007833", + "inputQty": "3486559671767257212518", "expectedQtys": [ - "17005209648718660234848", - "96504971763869980424782", - "32616460383887445544242" - ], - "redemptionFee": "43712886599223517202", - "reserves": [ - "22520504011963756166068148", - "127804399279866788328068115", - "43194946848934704842822363" - ], - "mAssetSupply": "192909688166272247833763312" - }, - { - "type": "mintMulti", - "inputQtys": [ - "631518422111023831973888", - "69023749480050551947264", - "182467563471804007710720" + "1391485920313410308689", + "957849577526581142404", + "1136520373581405104633" ], - "expectedQty": "901184062919635343136859", + "redemptionFee": "1045967901530177163", "reserves": [ - "23152022434074779998042036", - "127873423029346838880015379", - "43377414412406508850533083" + "800186304051479548191246109", + "550819884045706664205627083", + "653566107956361494122728705" ], - "mAssetSupply": "193810872229191883176900171" + "mAssetSupply": "2004375529569790649358150843" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "28955287208675711647744", - "7890764683106651734016", - "15985552312614107742208" - ], - "expectedQty": "53628495790017114768835", - "reserves": [ - "23180977721283455709689780", - "127881313794029945531749395", - "43393399964719122958275291" + "106485135054936047878144", + "28324193926504096202752", + "98100684957334206676992" ], - "mAssetSupply": "193864500724981900291669006" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1154153367516068608", - "expectedQty": "1122441834050709992", - "swapFee": "692492020509641", + "expectedQty": "232807334121449641738231", + "swapFee": "139768261429727621615", "reserves": [ - "23180976598841621658979788", - "127881313794029945531749395", - "43393399964719122958275291" + "800079818916424612143367965", + "550791559851780160109424331", + "653468007271404159916051713" ], - "mAssetSupply": "193864499571521024796110039" + "mAssetSupply": "2004142722235669199716412612" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "10708035109592379392", + "inputIndex": 1, + "inputQty": "23109642079977565105160192", "outputIndex": 0, - "expectedQty": "10469971419758435569", - "swapFee": "6459463242647726", + "expectedQty": "23162807994278123062688984", + "swapFee": "13887615426588567640014", "reserves": [ - "23180966128870201900544219", - "127881313794029945531749395", - "43393410672754232550654683" + "776917010922146489080678981", + "573901201931757725214584523", + "653468007271404159916051713" ], - "mAssetSupply": "193864499577980488038757765", + "mAssetSupply": "2004156609851095788284052626", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "24835346585765629919232", - "9900680764337265049600", - "30952960155955824164864" + "7499358731158460301312", + "12372034774900664172544", + "10577961027213035831296" ], - "expectedQty": "66427942036149338354791", + "expectedQty": "30457674176602074902682", + "swapFee": "18285575851472128218", "reserves": [ - "23205801475455967530463451", - "127891214474794282796798995", - "43424363632910188374819547" + "776909511563415330620377669", + "573888829896982824550411979", + "653457429310376946880220417" ], - "mAssetSupply": "193930927520016637377112556" + "mAssetSupply": "2004126152176919186209149944" }, { "type": "mintMulti", "inputQtys": [ - "8969001094346624204800", - "157060866527355696316416", - "93829988459986081021952" + "63825875795387810316288", + "705526526789719831871488", + "1220892907205863986429952" ], - "expectedQty": "258813100888429495618329", + "expectedQty": "1991246315464073488010068", "reserves": [ - "23214770476550314154668251", - "128048275341321638493115411", - "43518193621370174455841499" + "776973337439210718430693957", + "574594356423772544382283467", + "654678322217582810866650369" ], - "mAssetSupply": "194189740620905066872730885" + "mAssetSupply": "2006117398492383259697160012" }, { - "type": "mintMulti", - "inputQtys": [ - "632656568443337048064", - "12291743216637807951872", - "1875764668519292076032" - ], - "expectedQty": "14686949950114459296540", - "reserves": [ - "23215403133118757491716315", - "128060567084538276301067283", - "43520069386038693747917531" + "type": "redeemMasset", + "inputQty": "463474963071876605988044", + "expectedQtys": [ + "179450941824915586494529", + "132709185063373573488650", + "151205499408134411010166" ], - "mAssetSupply": "194204427570855181332027425" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3045360977369794871296", - "expectedQty": "3078789657777918146462", - "swapFee": "1827216586421876922", + "redemptionFee": "139042488921562981796", "reserves": [ - "23215403133118757491716315", - "128057488294880498382920821", - "43520069386038693747917531" + "776793886497385802844199428", + "574461647238709170808794817", + "654527116718174676455640203" ], - "mAssetSupply": "194201384037094397959033051" + "mAssetSupply": "2005654062571800304654153764" }, { - "type": "mint", + "type": "swap", "inputIndex": 2, - "inputQty": "2156926180048198881509376", - "expectedQty": "2167435793646701015833013", + "inputQty": "47517548986264586649862144", + "outputIndex": 0, + "expectedQty": "47528257852474404764709152", + "swapFee": "28508152998887553294738", "reserves": [ - "23215403133118757491716315", - "128057488294880498382920821", - "45676995566086892629426907" - ] + "729265628644911398079490276", + "574461647238709170808794817", + "702044665704439263105502347" + ], + "mAssetSupply": "2005682570724799192207448502", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "651410670522364985344", - "635415304556305842176", - "658962295691690901504" + "1784065460444445", + "1093309670838198", + "3485244010238383" ], - "expectedQty": "1959713874409784781211", - "swapFee": "1176534245192986660", + "expectedQty": "6361199197981809", + "swapFee": "3819010925344", "reserves": [ - "23214751722448235126730971", - "128056852879575942077078645", - "45676336603791200938525403" + "729265628643127332619045831", + "574461647237615861137956619", + "702044665700954019095263964" ], - "mAssetSupply": "196366860116866689190084853" + "mAssetSupply": "2005682570718437993009466693" }, { "type": "swap", "inputIndex": 2, - "inputQty": "469333323521261748355072", + "inputQty": "373631485909590746333184", "outputIndex": 1, - "expectedQty": "476339255412573165323837", - "swapFee": "282813141809827485996", + "expectedQty": "372743135506038778127942", + "swapFee": "224078900816118205796", "reserves": [ - "23214751722448235126730971", - "127580513624163368911754808", - "46145669927312462686880475" + "729265628643127332619045831", + "574088904102109822359828677", + "702418297186863609841597148" ], - "mAssetSupply": "196367142930008499017570849", + "mAssetSupply": "2005682794797338809127672489", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "720259434786536", - "expectedQty": "723248709687458", + "type": "redeemMasset", + "inputQty": "1540362865711185638981632", + "expectedQtys": [ + "559907427239404528886415", + "440767573127732637254904", + "539294882655493786865039" + ], + "redemptionFee": "462108859713355691694", "reserves": [ - "23214751722448235126730971", - "127580513624163368911754808", - "46145669928032722121667011" - ] + "728705721215887928090159416", + "573648136528982089722573773", + "701879002304208116054732109" + ], + "mAssetSupply": "2004142894040487336844382551" }, { - "type": "mintMulti", - "inputQtys": [ - "4305244908179972", - "109019175968229536", - "78439527953269008" - ], - "expectedQty": "191006247773485575", + "type": "redeem", + "inputIndex": 0, + "inputQty": "199456576509070802944", + "expectedQty": "199485208705903639982", + "swapFee": "119673945905442481", "reserves": [ - "23214751726753480034910943", - "127580513733182544879984344", - "46145670006472250074936019" + "728705521730679222186519434", + "573648136528982089722573773", + "701879002304208116054732109" ], - "mAssetSupply": "196367143121737995500743882" + "mAssetSupply": "2004142694703584773679022088" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "134237437144554771841024", - "expectedQty": "134790945195197275365619", + "type": "redeemBassets", + "inputQtys": [ + "1836572166194413847969792", + "172302576805249089011712", + "2174565365968678577766400" + ], + "expectedQty": "4181340923027442093785516", + "swapFee": "2510310740260621629248", "reserves": [ - "23214751726753480034910943", - "127580513733182544879984344", - "46279907443616804846777043" - ] + "726868949564484808338549642", + "573475833952176840633562061", + "699704436938239437476965709" + ], + "mAssetSupply": "1999961353780557331585236572" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3445799027543663651586048", - "expectedQty": "3427187186025931071569545", - "swapFee": "2067479416526198190951", + "type": "mintMulti", + "inputQtys": [ + "45898410935086", + "13597784610650", + "13382222478271" + ], + "expectedQty": "72856566652631", "reserves": [ - "23214751726753480034910943", - "127580513733182544879984344", - "42852720257590873775207498" + "726868949564530706749484728", + "573475833952190438418172711", + "699704436938252819699443980" ], - "mAssetSupply": "193058202518806055322714404" + "mAssetSupply": "1999961353780630188151889203" }, { "type": "redeemMasset", - "inputQty": "181473564531150657945", + "inputQty": "1165560888974624504466636", "expectedQtys": [ - "21815182320604655000", - "119888948217281025823", - "40269218312417774378" + "423486111076963958362997", + "334116694436499756514622", + "407659607801104584528133" ], - "redemptionFee": "54442069359345197", + "redemptionFee": "349668266692387351339", "reserves": [ - "23214729911571159430255943", - "127580393844234327598958521", - "42852679988372561357433120" + "726445463453453742791121731", + "573141717257753938661658089", + "699296777330451715114915847" ], - "mAssetSupply": "193058021099683593531401656" + "mAssetSupply": "1998796142559922256034773906" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "123951529033258156032", - "expectedQty": "124646761458716243563", - "reserves": [ - "23214729911571159430255943", - "127580393844234327598958521", - "42852803939901594615589152" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "745460937576685240320", - "expectedQty": "753673870027740620191", - "swapFee": "447276562546011144", + "type": "redeemMasset", + "inputQty": "555238566173956598923264", + "expectedQtys": [ + "201736196995949083716321", + "159163263033736672803176", + "194196921210737918581338" + ], + "redemptionFee": "166571569852186979676", "reserves": [ - "23214729911571159430255943", - "127579640170364299858338330", - "42852803939901594615589152" + "726243727256457793707405410", + "572982553994720201988854913", + "699102580409240977196334509" ], - "mAssetSupply": "193057400732784038108416043" + "mAssetSupply": "1998241070565318151622830318" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "115537929999755207770112", - "149945078232321999503360", - "37892226147708265562112" + "169254048226612864", + "403641542248779264", + "236621264525640448" ], - "expectedQty": "305039026420373269596957", - "swapFee": "183133295829721794835", + "expectedQty": "809820571674076341", "reserves": [ - "23099191981571404222485831", - "127429695092131977858834970", - "42814911713753886350027040" + "726243727425711841934018274", + "572982554398361744237634177", + "699102580645862241721974957" ], - "mAssetSupply": "192752361706363664838819086" + "mAssetSupply": "1998241071375138723296906659" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1672707271523796019838976", - "expectedQty": "1623382619179335471584780", - "swapFee": "1003624362914277611903", + "type": "redeemMasset", + "inputQty": "54154918521050532256153", + "expectedQtys": [ + "19676240043019608222444", + "15523910025037633081234", + "18940900515921556394004" + ], + "redemptionFee": "16246475556315159676", "reserves": [ - "21475809362392068750901051", - "127429695092131977858834970", - "42814911713753886350027040" + "726224051185668822325795830", + "572967030488336706604552943", + "699083639745346320165580953" ], - "mAssetSupply": "191080658059202783096592013" + "mAssetSupply": "1998186932703093229079810182" }, { "type": "redeemMasset", - "inputQty": "181049751604051353", + "inputQty": "1073365932659835784291942", "expectedQtys": [ - "20342317914603137", - "120703966289834852", - "40555144202948761" + "389988690257286226935530", + "307688324857785368224717", + "375414051076203550620576" ], - "redemptionFee": "54314925481215", + "redemptionFee": "322009779797950735287", "reserves": [ - "21475809342049750836297914", - "127429694971428011569000118", - "42814911673198742147078279" + "725834062495411536098860300", + "572659342163478921236328226", + "698708225694270116614960377" ], - "mAssetSupply": "191080657878207346418021875" + "mAssetSupply": "1997113888780213191246253527" }, { - "type": "mintMulti", + "type": "mint", + "inputIndex": 2, + "inputQty": "516771957322660110663680", + "expectedQty": "516543532588216568430916", + "reserves": [ + "725834062495411536098860300", + "572659342163478921236328226", + "699224997651592776725624057" + ] + }, + { + "type": "redeemBassets", "inputQtys": [ - "4506472648480592", - "1605596161804983", - "5963031605151298" + "104715947722610403442688", + "119169698165620287209472", + "143179522452168569257984" ], - "expectedQty": "12232734892102795", + "expectedQty": "367082049980712561902207", + "swapFee": "220381458863745784612", "reserves": [ - "21475809346556223484778506", - "127429694973033607730805101", - "42814911679161773752229577" + "725729346547688925695417612", + "572540172465313300949118754", + "699081818129140608156366073" ], - "mAssetSupply": "191080657890440081310124670" + "mAssetSupply": "1997263350262820695252782236" }, { "type": "mint", "inputIndex": 1, - "inputQty": "116410333307274746920960", - "expectedQty": "114980662131820463511925", + "inputQty": "224818978672122757120", + "expectedQty": "225116400663361612526", "reserves": [ - "21475809346556223484778506", - "127546105306340882477726061", - "42814911679161773752229577" + "725729346547688925695417612", + "572540397284291973071875874", + "699081818129140608156366073" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1762565012828305611554816", - "expectedQty": "1701988089411260948053219", - "swapFee": "1057539007696983366932", + "inputIndex": 2, + "inputQty": "839075138470664734769152", + "expectedQty": "838941361427480429323129", + "swapFee": "503445083082398840861", "reserves": [ - "19773821257144962536725287", - "127546105306340882477726061", - "42814911679161773752229577" + "725729346547688925695417612", + "572540397284291973071875874", + "698242876767713127727042944" ], - "mAssetSupply": "189434131078751293145448711" + "mAssetSupply": "1996425003685833776278466471" }, { "type": "redeemMasset", - "inputQty": "219176781004261070523596", + "inputQty": "48833465584410956293734", "expectedQtys": [ - "22871603326573219525309", - "147527576409232752011876", - "49522328722083488508414" + "17746345111438231392182", + "14000397708568250357742", + "17074215231434109180504" ], - "redemptionFee": "65753034301278321157", + "redemptionFee": "14650039675323286888", "reserves": [ - "19750949653818389317199978", - "127398577729931649725714185", - "42765389350439690263721163" + "725711600202577487464025430", + "572526396886583404821518132", + "698225802552481693617862440" ], - "mAssetSupply": "189215020050781333353246272" + "mAssetSupply": "1996376184870289040645459625" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "426521861881482170073088", - "374529180289610064855040", - "457942348016166333579264" + "4670554315601026828206080", + "5195203896497115957821440", + "3513049983833517290684416" ], - "expectedQty": "1272465632146446232336569", + "expectedQty": "13380689951471876085525283", + "swapFee": "8033233911229863569456", "reserves": [ - "20177471515699871487273066", - "127773106910221259790569225", - "43223331698455856597300427" + "721041045886976460635819350", + "567331192990086288863696692", + "694712752568648176327178024" ], - "mAssetSupply": "190487485682927779585582841" + "mAssetSupply": "1982995494918817164559934342" }, { "type": "redeemMasset", - "inputQty": "121392951680805888", + "inputQty": "303004272160328227225", "expectedQtys": [ - "12854744736221937", - "81402205038767399", - "27536894065263557" + "110142950052670106962", + "86662932171858314087", + "106121159736467723522" ], - "redemptionFee": "36417885504241", + "redemptionFee": "90901281648098468", "reserves": [ - "20177471502845126751051129", - "127773106828819054751801826", - "43223331670918962532036870" + "721040935744026407965712388", + "567331106327154117005382605", + "694712646447488439859454502" ], - "mAssetSupply": "190487485561571245790281194" + "mAssetSupply": "1982995192005446285879805585" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 1, + "inputQty": "53945163851964", + "expectedQty": "54017539189046", + "reserves": [ + "721040935744026407965712388", + "567331106327208062169234569", + "694712646447488439859454502" + ] + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "24047582173631668224", + "expectedQty": "24029690629557908773", + "reserves": [ + "721040959791608581597380612", + "567331106327208062169234569", + "694712646447488439859454502" + ] + }, + { + "type": "redeemMasset", + "inputQty": "2138151882232612406689792", + "expectedQtys": [ + "777224556245365375140239", + "611537612907310670855803", + "748844737626618917921808" + ], + "redemptionFee": "641445564669783722006", + "reserves": [ + "720263735235363216222240373", + "566719568714300751498378766", + "693963801709861820941532694" + ], + "mAssetSupply": "1980857705598522990353935618" + }, + { + "type": "mintMulti", "inputQtys": [ - "11641309384455762214912", - "17900392511974722764800", - "37976960834748893102080" + "25228769388251458830336", + "109521027956206343290880", + "30870708158466197815296" ], - "expectedQty": "67913810965707694857590", - "swapFee": "40772750229562354327", + "expectedQty": "165734666442509348528402", "reserves": [ - "20165830193460670988836217", - "127755206436307080029037026", - "43185354710084213638934790" + "720288964004751467681070709", + "566829089742256957841669646", + "693994672418020287139347990" ], - "mAssetSupply": "190419571750605538095423604" + "mAssetSupply": "1981023440264965499702464020" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "9557144779344758964224", - "expectedQty": "9907649251287046098890", + "inputIndex": 2, + "inputQty": "11591126251915771379712", + "expectedQty": "11585887886720320480078", "reserves": [ - "20175387338240015747800441", - "127755206436307080029037026", - "43185354710084213638934790" + "720288964004751467681070709", + "566829089742256957841669646", + "694006263544272202910727702" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "171848447361338539245568", - "expectedQty": "178093750909941850234891", + "inputIndex": 1, + "inputQty": "11884388033592500995227648", + "expectedQty": "11899489010882359991336913", "reserves": [ - "20347235785601354287046009", - "127755206436307080029037026", - "43185354710084213638934790" + "720288964004751467681070709", + "578713477775849458836897294", + "694006263544272202910727702" ] }, { "type": "swap", "inputIndex": 1, - "inputQty": "3175283095428183483219968", - "outputIndex": 0, - "expectedQty": "2998668649293939275087475", - "swapFee": "1880259148724377034264", + "inputQty": "56840082076431840742211584", + "outputIndex": 2, + "expectedQty": "56851589003881169056385523", + "swapFee": "34134653330943494556609", "reserves": [ - "17348567136307415011958534", - "130930489531735263512256994", - "43185354710084213638934790" + "720288964004751467681070709", + "635553559852281299579108878", + "637154674540391033854342179" ], - "mAssetSupply": "190609453409915491368791649", + "mAssetSupply": "1992968649817065523508837620", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "134148381025119233900544", + "inputQty": "518222033330578128896", "expectedQtys": [ - "12206026344241474228971", - "92119481218951676658657", - "30384156405258989255248" + "187237080052873078095", + "165210351276692701390", + "165626556513775100505" ], - "redemptionFee": "40244514307535770170", + "redemptionFee": "155466609999173438", "reserves": [ - "17336361109963173537729563", - "130838370050516311835598337", - "43154970553678954649679542" + "720288776767671414807992614", + "635553394641930022886407488", + "637154508913834520079241674" ], - "mAssetSupply": "190475345273404679670661275" + "mAssetSupply": "1992968131750498802929882162" }, { - "type": "redeemBassets", - "inputQtys": [ - "25264264535197318381568", - "12876775401380330340352", - "21504369991293524246528" - ], - "expectedQty": "60888987856083342314303", - "swapFee": "36555325909195522702", + "type": "redeem", + "inputIndex": 0, + "inputQty": "7681499783529101824884736", + "expectedQty": "7681744805443664733859472", + "swapFee": "4608899870117461094930", "reserves": [ - "17311096845427976219347995", - "130825493275114931505257985", - "43133466183687661125433014" + "712607031962227750074133142", + "635553394641930022886407488", + "637154508913834520079241674" ], - "mAssetSupply": "190414456285548596328346972" + "mAssetSupply": "1985291240866839818566092356" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "116095410191791783936", - "1305667563185233985536", - "926531223371983224832" + "7085326106378107619377152", + "7366877012874160689381376", + "4550439364516413337239552" ], - "expectedQty": "2339590666325060479177", + "expectedQty": "19002230169773925083533619", + "swapFee": "11408183011671357864839", "reserves": [ - "17311212940838168011131931", - "130826798942678116739243521", - "43134392714911033108657846" + "705521705855849642454755990", + "628186517629055862197026112", + "632604069549318106742002122" ], - "mAssetSupply": "190416795876214921388826149" + "mAssetSupply": "1966289010697065893482558737" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "304141588557947859894272", + "expectedQty": "304247058602977704158222", + "reserves": [ + "705521705855849642454755990", + "628490659217613810056920384", + "632604069549318106742002122" + ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "393151738108923393081344", + "inputQty": "9761395328347693301891072", "outputIndex": 0, - "expectedQty": "375031599915312785381415", - "swapFee": "237195529413321795808", + "expectedQty": "9763042314003617600460962", + "swapFee": "5858273040167894876105", + "reserves": [ + "695758663541846024854295028", + "628490659217613810056920384", + "642365464877665800043893194" + ], + "mAssetSupply": "1966599116028709039081593064", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "770242472069022482432", + "outputIndex": 1, + "expectedQty": "769636637094611429966", + "swapFee": "462220343481379031", "reserves": [ - "16936181340922855225750516", - "130826798942678116739243521", - "43527544453019956501739190" + "695758663541846024854295028", + "628489889580976715445490418", + "642366235120137869066375626" ], - "mAssetSupply": "190417033071744334710621957", + "mAssetSupply": "1966599116490929382562972095", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "17888376562760759296", - "85660053063892402176", - "28674467739660984320" + "77613959743038865408", + "75050838364904833024", + "22634788003734736896" + ], + "expectedQty": "175291620238205372602", + "swapFee": "105238115011930381", + "reserves": [ + "695758585927886281815429620", + "628489814530138350540657394", + "642366212485349865331638730" + ], + "mAssetSupply": "1966598941199309144357599493" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "79982032398064233218048", + "92530196006524013248512", + "20998005810237255188480" ], - "expectedQty": "132023597112775957148", - "swapFee": "79261715296843680", + "expectedQty": "193506964094369600221541", + "swapFee": "116173882786293536254", "reserves": [ - "16936163452546292464991220", - "130826713282625052846841345", - "43527515778552216840754870" + "695678603895488217582211572", + "628397284334131826527408882", + "642345214479539628076450250" ], - "mAssetSupply": "190416901048147221934664809" + "mAssetSupply": "1966405434235214774757377952" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "8800029899277893655068672", + "expectedQty": "8802749014608089101825552", + "reserves": [ + "695678603895488217582211572", + "637197314233409720182477554", + "642345214479539628076450250" + ] }, { "type": "redeemMasset", - "inputQty": "19054704387360875033395", + "inputQty": "332761672654237563512422", "expectedQtys": [ - "1694265436481960608606", - "13087685360639453094311", - "4354419802699564332394" + "117165233149501530297640", + "107315894820317652429220", + "108182897095780473655285" ], - "redemptionFee": "5716411316208262510", + "redemptionFee": "99828501796271269053", "reserves": [ - "16934469187109810504382614", - "130813625597264413393747034", - "43523161358749517276422476" + "695561438662338716051913932", + "637089998338589402530048334", + "642237031582443847602794965" ], - "mAssetSupply": "190397852060171177267893924" + "mAssetSupply": "1974875521405670422566960135" }, { - "type": "redeemBassets", - "inputQtys": [ - "134066363601089950908416", - "81908983894598360236032", - "4402288488743993081856" + "type": "swap", + "inputIndex": 0, + "inputQty": "82534963347063892034453504", + "outputIndex": 1, + "expectedQty": "82338742052448772559577992", + "swapFee": "49484001883266709453325", + "reserves": [ + "778096402009402608086367436", + "554751256286140629970470342", + "642237031582443847602794965" ], - "expectedQty": "226506618427798236202050", - "swapFee": "135985562394115410967", + "mAssetSupply": "1974925005407553689276413460", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "3545153559210784414760960", + "expectedQty": "3537615380582644659705762", + "swapFee": "2127092135526470648856", "reserves": [ - "16800402823508720553474198", - "130731716613369815033511002", - "43518759070260773283340620" + "778096402009402608086367436", + "551213640905557985310764580", + "642237031582443847602794965" ], - "mAssetSupply": "190171345441743379031691874" + "mAssetSupply": "1971381978940478431332301356" }, { "type": "redeemBassets", "inputQtys": [ - "13020263511468898304", - "150908404071741620224", - "138280051403618156544" + "66607812233849393381376", + "194033509049847192223744", + "154591477748049924587520" ], - "expectedQty": "301312859690451588808", - "swapFee": "180896253566410799", + "expectedQty": "415458110356662403569961", + "swapFee": "249424520926553374166", "reserves": [ - "16800389803245209084575894", - "130731565704965743291890778", - "43518620790209369665184076" + "778029794197168758692986060", + "551019607396508138118540836", + "642082440104695797678207445" ], - "mAssetSupply": "190171044128883688580103066" + "mAssetSupply": "1970966520830121768928731395" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "12938741257495505797120", - "expectedQty": "13136481616358614544190", - "swapFee": "7763244754497303478", + "inputQty": "11451072649981840559439872", + "expectedQty": "11425594634731357519486227", + "swapFee": "6870643589989104335663", "reserves": [ - "16800389803245209084575894", - "130718429223349384677346588", - "43518620790209369665184076" + "778029794197168758692986060", + "539594012761776780599054609", + "642082440104695797678207445" ], - "mAssetSupply": "190158113150870947571609424" + "mAssetSupply": "1959522318823729917473627186" }, { - "type": "redeemMasset", - "inputQty": "1042376893864357478", - "expectedQtys": [ - "92065934749181302", - "716335425328506404", - "238481520308050132" + "type": "redeemBassets", + "inputQtys": [ + "462346994578544263168", + "34817852324229475729408", + "6000751746089674080256" ], - "redemptionFee": "312713068159307", + "expectedQty": "41339961105009201458500", + "swapFee": "24818867983795798354", "reserves": [ - "16800389711179274335394592", - "130718428507013959348840184", - "43518620551727849357133944" + "778029331850174180148722892", + "539559194909452551123325201", + "642076439352949708004127189" ], - "mAssetSupply": "190158112108806766775411253" + "mAssetSupply": "1959480978862624908272168686" }, { "type": "redeemMasset", - "inputQty": "155693823655335231383142", + "inputQty": "545536893832034787944038", "expectedQtys": [ - "13751357588484595409049", - "106994890279752394108074", - "35620609000883584949283" + "216545287488602376164819", + "150173002733637347832424", + "178706150857712724805522" ], - "redemptionFee": "46708147096600569414", + "redemptionFee": "163661068149610436383", "reserves": [ - "16786638353590789739985543", - "130611433616734206954732110", - "43482999942726965772184661" + "777812786562685577772558073", + "539409021906718913775492777", + "641897733202091995279321667" ], - "mAssetSupply": "190002464993298528144597525" + "mAssetSupply": "1958935605629861023094661031" }, { - "type": "redeemBassets", - "inputQtys": [ - "8041074765684402028544", - "1910583356775594459136", - "5216112066740075102208" + "type": "redeemMasset", + "inputQty": "6532665908784400793", + "expectedQtys": [ + "2593074883254836928", + "1798283611007009943", + "2139960821344011786" ], - "expectedQty": "15612071363106713617754", - "swapFee": "9372866537786700190", + "redemptionFee": "1959799772635320", "reserves": [ - "16778597278825105337956999", - "130609523033377431360272974", - "43477783830660225697082453" + "777812783969610694517721145", + "539409020108435302768482834", + "641897731062131173935309881" ], - "mAssetSupply": "189986852921935421430979771" + "mAssetSupply": "1958935599099154914082895558" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1104600685690955520", - "outputIndex": 1, - "expectedQty": "1127513161601211972", - "swapFee": "666320396723622", + "type": "redeemBassets", + "inputQtys": [ + "22540228363647205376", + "49768138433685504000", + "29962594616550346752" + ], + "expectedQty": "102324454871084289630", + "swapFee": "61431531841755627", "reserves": [ - "16778597278825105337956999", - "130609521905864269759061002", - "43477784935260911388037973" + "777812761429382330870515769", + "539408970340296869082978834", + "641897701099536557384963129" ], - "mAssetSupply": "189986852922601741827703393", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1958935496774700042998605928" }, { "type": "mint", "inputIndex": 1, - "inputQty": "24337066901646350483456", - "expectedQty": "23956144316970431764393", + "inputQty": "17615447406123080377958400", + "expectedQty": "17643433431174333131557578", "reserves": [ - "16778597278825105337956999", - "130633858972765916109544458", - "43477784935260911388037973" + "777812761429382330870515769", + "557024417746419949460937234", + "641897701099536557384963129" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "10062148034432126156800", - "24694825815336609120256", - "38060780319966842847232" - ], - "expectedQty": "73194980314521613037480", - "swapFee": "43943354201233708047", + "type": "redeem", + "inputIndex": 2, + "inputQty": "71312839388676097048576", + "expectedQty": "71259603659198296341756", + "swapFee": "42787703633205658229", "reserves": [ - "16768535130790673211800199", - "130609164146950579500424202", - "43439724154940944545190741" + "777812761429382330870515769", + "557024417746419949460937234", + "641826441495877359088621373" ], - "mAssetSupply": "189937614086604190646430306" + "mAssetSupply": "1976507660154189333238773159" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3270957770554330841088", - "expectedQty": "3321018559037013503414", - "swapFee": "1962574662332598504", + "type": "mint", + "inputIndex": 0, + "inputQty": "14353089125915809546240", + "expectedQty": "14333311409377564623350", "reserves": [ - "16768535130790673211800199", - "130605843128391542486920788", - "43439724154940944545190741" - ], - "mAssetSupply": "189934345091408298648187722" + "777827114518508246680062009", + "557024417746419949460937234", + "641826441495877359088621373" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "455361609261295633170432", - "expectedQty": "452588339368342170281291", - "swapFee": "273216965556777379902", + "inputQty": "55943650423894704128000", + "expectedQty": "55901852653357873943524", + "swapFee": "33566190254336822476", "reserves": [ - "16768535130790673211800199", - "130605843128391542486920788", - "42987135815572602374909450" + "777827114518508246680062009", + "557024417746419949460937234", + "641770539643224001214677849" ], - "mAssetSupply": "189479256699112559792397192" + "mAssetSupply": "1976466083381365070436090985" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "697795561898187", - "667799631906555", - "634763698350781" + "168622743924505097273344", + "138637566937515746656256", + "1683943073448389823692800" ], - "expectedQty": "2032192717236449", - "swapFee": "1220047658937", + "expectedQty": "1991413133909286347998896", "reserves": [ - "16768535130092877649902012", - "130605843127723742855014233", - "42987135814937838676558669" + "777995737262432751777335353", + "557163055313357465207593490", + "643454482716672391038370649" ], - "mAssetSupply": "189479256697080367075160743" + "mAssetSupply": "1978457496515274356784089881" }, { - "type": "mintMulti", - "inputQtys": [ - "28167475004376608669696", - "29691865062842057097216", - "18700437889153891303424" - ], - "expectedQty": "77760585176991946721630", + "type": "mint", + "inputIndex": 0, + "inputQty": "3068853267706934961635328", + "expectedQty": "3064611185053530063507132", "reserves": [ - "16796702605097254258571708", - "130635534992786584912111449", - "43005836252826992567862093" - ], - "mAssetSupply": "189557017282257359021882373" + "781064590530139686738970681", + "557163055313357465207593490", + "643454482716672391038370649" + ] }, { - "type": "redeemMasset", - "inputQty": "564065327996150568137523", - "expectedQtys": [ - "49966998683172815241525", - "388615894346981501710129", - "127934191247848786433192" - ], - "redemptionFee": "169219598398845170441", + "type": "redeem", + "inputIndex": 1, + "inputQty": "696378346932816000", + "expectedQty": "694920283470433414", + "swapFee": "417827008159689", "reserves": [ - "16746735606414081443330183", - "130246919098439603410401320", - "42877902061579143781428901" + "781064590530139686738970681", + "557163054618437181737160076", + "643454482716672391038370649" ], - "mAssetSupply": "188993121173859607298915291" + "mAssetSupply": "1981522107004367366922940702" }, { - "type": "redeemBassets", - "inputQtys": [ - "15709747364549098", - "13539761573193562", - "12687451170366474" + "type": "redeemMasset", + "inputQty": "128805632827034830687436", + "expectedQtys": [ + "50756606172016429094115", + "36206616046530967892207", + "41814167694763044912307" ], - "expectedQty": "42665844962505645", - "swapFee": "25614875903045", + "redemptionFee": "38641689848110449206", "reserves": [ - "16746735590704334078781085", - "130246919084899841837207758", - "42877902048891692611062427" + "781013833923967670309876566", + "557126848002390650769267869", + "643412668548977627993458342" ], - "mAssetSupply": "188993121131193762336409646" + "mAssetSupply": "1981393340013230180202702472" }, { "type": "redeemBassets", "inputQtys": [ - "12593977955725506248704", - "16040471986942683119616", - "20595746431442150752256" + "185307006083926720512", + "171198873660481830912", + "162932192875700912128" ], - "expectedQty": "49792317060689788255284", - "swapFee": "29893326232153164852", + "expectedQty": "519459998192545604377", + "swapFee": "311863116785598721", "reserves": [ - "16734141612748608572532381", - "130230878612912899154088142", - "42857306302460250460310171" + "781013648616961586383156054", + "557126676803516990287436957", + "643412505616784752292546214" ], - "mAssetSupply": "188943328814133072548154362" + "mAssetSupply": "1981392820553231987657098095" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "180806865884852449705984", - "74939344448645383585792", - "988917896634756010868736" + "913190811444635320188928", + "350054163814642146607104", + "322306257543213403340800" ], - "expectedQty": "1258753923405868579929872", + "expectedQty": "1584851318601897553451087", + "swapFee": "951481680169240076116", "reserves": [ - "16914948478633461022238365", - "130305817957361544537673934", - "43846224199095006471178907" + "780100457805516951062967126", + "556776622639702348140829853", + "643090199359241538889205414" ], - "mAssetSupply": "190202082737538941128084234" + "mAssetSupply": "1979807969234630090103647008" }, { "type": "mint", "inputIndex": 1, - "inputQty": "33472082983494430490624", - "expectedQty": "32955803301010649192158", + "inputQty": "54683869483842410526015488", + "expectedQty": "54747985502356483395253076", "reserves": [ - "16914948478633461022238365", - "130339290040345038968164558", - "43846224199095006471178907" + "780100457805516951062967126", + "611460492123544758666845341", + "643090199359241538889205414" ] }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "95611963163429415419904", - "expectedQty": "100786826119654741427535", + "type": "redeem", + "inputIndex": 1, + "inputQty": "260688921664574996873216", + "expectedQty": "260305567758730135975189", + "swapFee": "156413352998744998123", "reserves": [ - "17010560441796890437658269", - "130339290040345038968164558", - "43846224199095006471178907" - ] + "780100457805516951062967126", + "611200186555786028530870152", + "643090199359241538889205414" + ], + "mAssetSupply": "2034295422228674997247024991" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "510488963383155440484352", - "expectedQty": "502631560054495187903105", + "type": "mintMulti", + "inputQtys": [ + "13917910752004608000", + "11971286675939227648", + "4972174411657416704" + ], + "expectedQty": "30857929484517218091", "reserves": [ - "17010560441796890437658269", - "130849779003728194408648910", - "43846224199095006471178907" - ] + "780100471723427703067575126", + "611200198527072704470097800", + "643090204331415950546622118" + ], + "mAssetSupply": "2034295453086604481764243082" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "22612019434752250478592", - "expectedQty": "22952657536341336875340", - "swapFee": "13567211660851350287", + "inputIndex": 2, + "inputQty": "43217168354175073793343488", + "expectedQty": "43164514613905319260074278", + "swapFee": "25930301012505044276006", "reserves": [ - "17010560441796890437658269", - "130826826346191853071773570", - "43846224199095006471178907" + "780100471723427703067575126", + "611200198527072704470097800", + "599925689717510631286547840" ], - "mAssetSupply": "190815858474791010307478727" + "mAssetSupply": "1991104215033441913015175600" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "282638809159600770646016", - "expectedQty": "278271088666803924836919", + "inputIndex": 0, + "inputQty": "193104496184635613511680", + "expectedQty": "192849304334160747973231", "reserves": [ - "17010560441796890437658269", - "131109465155351453842419586", - "43846224199095006471178907" + "780293576219612338681086806", + "611200198527072704470097800", + "599925689717510631286547840" ] }, { - "type": "mintMulti", - "inputQtys": [ - "48599103748670104797184", - "103393346674960449536", - "84472621287903042994176" - ], - "expectedQty": "136254935438498318035510", + "type": "redeem", + "inputIndex": 0, + "inputQty": "377878431341215878217728", + "expectedQty": "378151211637807501396068", + "swapFee": "226727058804729526930", "reserves": [ - "17059159545545560542455453", - "131109568548698128802869122", - "43930696820382909514173083" + "779915425007974531179690738", + "611200198527072704470097800", + "599925689717510631286547840" ], - "mAssetSupply": "191230384498896312550351156" + "mAssetSupply": "1990919412633493662614458033" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "37658857792932799315968", - "outputIndex": 1, - "expectedQty": "38424703365820785308684", - "swapFee": "22713115474431003240", + "type": "mintMulti", + "inputQtys": [ + "1171613214197818840842240", + "396527689136190517149696", + "910033469532405751611392" + ], + "expectedQty": "2477650942403242767949718", "reserves": [ - "17059159545545560542455453", - "131071143845332308017560438", - "43968355678175842313489051" + "781087038222172350020532978", + "611596726216208894987247496", + "600835723187043037038159232" ], - "mAssetSupply": "191230407212011786981354396", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1993397063575896905382407751" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "132215884134188924928", - "expectedQty": "132902890737864939210", + "inputIndex": 1, + "inputQty": "250423513902513754472448", + "expectedQty": "250590764735148543432319", "reserves": [ - "17059159545545560542455453", - "131071143845332308017560438", - "43968487894059976502413979" + "781087038222172350020532978", + "611847149730111408741719944", + "600835723187043037038159232" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "825176237936812752896", - "expectedQty": "820418002707453739822", - "swapFee": "495105742762087651", - "reserves": [ - "17059159545545560542455453", - "131071143845332308017560438", - "43967667476057269048674157" + "type": "redeemBassets", + "inputQtys": [ + "68294365031533467664384", + "70670406178059315052544", + "330214943990013264658432" ], - "mAssetSupply": "191229715433770330795628361" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "23546271189538726477824", - "expectedQty": "23410338034306586376148", - "swapFee": "14127762713723235886", + "expectedQty": "469412639688510121223930", + "swapFee": "281816673817396510640", "reserves": [ - "17059159545545560542455453", - "131071143845332308017560438", - "43944257138022962462298009" + "781018743857140816552868594", + "611776479323933349426667400", + "600505508243053023773500800" ], - "mAssetSupply": "191206183290343505792386423" + "mAssetSupply": "1993178241700943543804616140" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "36786099786775152033792", - "12133945836838085197824", - "29344649927296597098496" + "15161714165428149813248", + "7537538768199390068736", + "37840291121850925187072" ], - "expectedQty": "80224904876674198189258", - "swapFee": "48163841230742964692", + "expectedQty": "60556204337462262327051", "reserves": [ - "17022373445758785390421661", - "131059009899495469932362614", - "43914912488095665865199513" + "781033905571306244702681842", + "611784016862701548816736136", + "600543348534174874698687872" ], - "mAssetSupply": "191125958385466831594197165" + "mAssetSupply": "1993238797905281006066943191" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "214602824772625427857408", - "expectedQty": "217834953799720591012386", - "swapFee": "128761694863575256714", + "inputQty": "1538605417060762313031680", + "expectedQty": "1536647525556603420139091", + "swapFee": "923163250236457387819", "reserves": [ - "17022373445758785390421661", - "130841174945695749341350228", - "43914912488095665865199513" + "781033905571306244702681842", + "610247369337144945396597045", + "600543348534174874698687872" ], - "mAssetSupply": "190911484322389069741596471" + "mAssetSupply": "1991701115651470480211299330" }, { - "type": "redeemMasset", - "inputQty": "2131987122160345088", - "expectedQtys": [ - "190038821705471747", - "1460718906001603086", - "490268777801719657" + "type": "redeemBassets", + "inputQtys": [ + "915863104197393792", + "1040766448233988352", + "473267201353096128" ], - "redemptionFee": "639596136648103", + "expectedQty": "2429781814376836199", + "swapFee": "1458744335227238", "reserves": [ - "17022373255719963684949914", - "130841173484976843339747142", - "43914911997826888063479856" + "781033904655443140505288050", + "610247368296378497162608693", + "600543348060907673345591744" ], - "mAssetSupply": "190911482191041543717899486" + "mAssetSupply": "1991701113221688665834463131" }, { "type": "redeemBassets", "inputQtys": [ - "144410083111010685681664", - "50737507932495000109056", - "219456929328401095852032" + "99942394536465217649377280", + "11472288013500904577695744", + "38061577427478721054375936" ], - "expectedQty": "422850441021671391931238", - "swapFee": "253862582162300215287", + "expectedQty": "149401759499951258712685116", + "swapFee": "89694872623544882156905", "reserves": [ - "16877963172608952999268250", - "130790435977044348339638086", - "43695455068498486967627824" + "681091510118977922855910770", + "598775080282877592584912949", + "562481770633428952291215808" ], - "mAssetSupply": "190488631750019872325968248" + "mAssetSupply": "1842299353721737407121778015" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "23575818618205274112", - "outputIndex": 2, - "expectedQty": "23073103474960719324", - "swapFee": "13925405137240026", + "type": "redeem", + "inputIndex": 2, + "inputQty": "9958258808391958563651584", + "expectedQty": "9944385117891772920278953", + "swapFee": "5974955285035175138190", "reserves": [ - "16877963172608952999268250", - "130790459552862966544912198", - "43695431995395012006908500" + "681091510118977922855910770", + "598775080282877592584912949", + "552537385515537179370936855" ], - "mAssetSupply": "190488631763945277463208274", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1832347069868630483733264621" }, { - "type": "redeemMasset", - "inputQty": "54426490374305343078", - "expectedQtys": [ - "4820931880070614517", - "37358293155347446764", - "12480931435015993992" + "type": "redeemBassets", + "inputQtys": [ + "13647713551263903776768", + "127739879459014871875584", + "97369643412195890954240" ], - "redemptionFee": "16327947112291602", + "expectedQty": "238845335497179341725502", + "swapFee": "143393237240651996233", "reserves": [ - "16877958351677072928653733", - "130790422194569811197465434", - "43695419514463576990914508" + "681077862405426658952134002", + "598647340403418577713037365", + "552440015872124983479982615" ], - "mAssetSupply": "190488577353782850270156798" + "mAssetSupply": "1832108224533133304391539119" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1033106158596256660717568", - "expectedQty": "1048711813016990538331831", - "swapFee": "619863695157753996430", - "reserves": [ - "16877958351677072928653733", - "129741710381552820659133603", - "43695419514463576990914508" + "type": "redeemBassets", + "inputQtys": [ + "435826949564535996416", + "388963405141527465295872", + "251122108934449184899072" ], - "mAssetSupply": "189456091058881751363435660" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "467691885288760541184", - "expectedQty": "470076293780093527344", + "expectedQty": "640788537550159261504758", + "swapFee": "384703944897033777169", "reserves": [ - "16877958351677072928653733", - "129741710381552820659133603", - "43695887206348865751455692" - ] + "681077426578477094416137586", + "598258376998277050247741493", + "552188893763190534295083543" + ], + "mAssetSupply": "1831467435995583145130034361" }, { "type": "mint", "inputIndex": 2, - "inputQty": "259743071861471853936640", - "expectedQty": "261048524273525776828283", - "reserves": [ - "16877958351677072928653733", - "129741710381552820659133603", - "43955630278210337605392332" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7434474892927306", - "expectedQty": "7837367435609102", + "inputQty": "6688606802096586489856", + "expectedQty": "6694300377672456337266", "reserves": [ - "16877958359111547821581039", - "129741710381552820659133603", - "43955630278210337605392332" + "681077426578477094416137586", + "598258376998277050247741493", + "552195582369992630881573399" ] }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1832712473787664695296", - "expectedQty": "1737446636766292871162", - "swapFee": "1099627484272598817", - "reserves": [ - "16876220912474781528709877", - "129741710381552820659133603", - "43955630278210337605392332" - ], - "mAssetSupply": "189715778054440121277303910" - }, { "type": "redeemMasset", - "inputQty": "125511323526187686297", + "inputQty": "3973185700419232791841996", "expectedQtys": [ - "11161545958452371011", - "85808195487739818573", - "29071247053914055270" + "1477080802443619057753963", + "1297467702026989350147928", + "1197569412937970117872509" ], - "redemptionFee": "37653397057856305", + "redemptionFee": "1191955710125769837552", "reserves": [ - "16876209750928823076338866", - "129741624573357332919315030", - "43955601206963283691337062" + "679600345776033475358383623", + "596960909296250060897593565", + "550998012957054660763700890" ], - "mAssetSupply": "189715652580769992147473918" + "mAssetSupply": "1827502136551251710564367183" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "72768936271122565955584", - "96347598706346693754880", - "96849447738903703322624" + "3418804562067498261807104", + "585349620275986617597952", + "3292543277920998670729216" ], - "expectedQty": "268899685313652068863732", + "expectedQty": "7296551049100823320502389", + "swapFee": "4380558964839397630879", "reserves": [ - "16948978687199945642294450", - "129837972172063679613069910", - "44052450654702187394659686" + "676181541213965977096576519", + "596375559675974074279995613", + "547705469679133662092971674" ], - "mAssetSupply": "189984552266083644216337650" + "mAssetSupply": "1820205585502150887243864794" }, { - "type": "redeemBassets", - "inputQtys": [ - "4262336333431598219264", - "3449458867651572400128", - "3547045005622617571328" - ], - "expectedQty": "11453059119461454470313", - "swapFee": "6875961048305856195", + "type": "mint", + "inputIndex": 1, + "inputQty": "740678688421247057920", + "expectedQty": "740763210257551656759", "reserves": [ - "16944716350866514044075186", - "129834522713196028040669782", - "44048903609696564777088358" - ], - "mAssetSupply": "189973099206964182761867337" + "676181541213965977096576519", + "596376300354662495527053533", + "547705469679133662092971674" + ] }, { - "type": "redeemMasset", - "inputQty": "3785824307042748622438", - "expectedQtys": [ - "337576606314548617594", - "2586593758929967356805", - "877552570638199271919" + "type": "mintMulti", + "inputQtys": [ + "4097967449733067776", + "2740622533028801024", + "11171074659266920448" ], - "redemptionFee": "1135747292112824586", + "expectedQty": "18016047458280144909", "reserves": [ - "16944378774260199495457592", - "129831936119437098073312977", - "44048026057125926577816439" + "676181545311933426829644295", + "596376303095285028555854557", + "547705480850208321359892122" ], - "mAssetSupply": "189969314518404432126069485" + "mAssetSupply": "1820206344281408603075666462" }, { - "type": "mintMulti", - "inputQtys": [ - "18884726722042949271552", - "65395469436160437125120", - "104245128312598424453120" - ], - "expectedQty": "189053985845805097951822", + "type": "redeem", + "inputIndex": 2, + "inputQty": "922702475882492084617216", + "expectedQty": "921342777235002858795925", + "swapFee": "553621485529495250770", "reserves": [ - "16963263500982242444729144", - "129897331588873258510438097", - "44152271185438525002269559" + "676181545311933426829644295", + "596376303095285028555854557", + "546784138072973318501096197" ], - "mAssetSupply": "190158368504250237224021307" + "mAssetSupply": "1819284195427011640486300016" }, { "type": "redeemMasset", - "inputQty": "2685482823499478220", + "inputQty": "2638855500469505936588", "expectedQtys": [ - "239489257058580806", - "1833905099352494124", - "623346717631155091" + "980501062466841202772", + "864778997399611685977", + "792867584212527472037" ], - "redemptionFee": "805644847049843", + "redemptionFee": "791656650140851780", "reserves": [ - "16963263261492985386148338", - "129897329754968159157943973", - "44152270562091807371114468" + "676180564810870959988441523", + "596375438316287628944168580", + "546783345205389105973624160" ], - "mAssetSupply": "190158365819573058571592930" + "mAssetSupply": "1819281557363167821121215208" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "7792960695966155243782144", - "outputIndex": 1, - "expectedQty": "7919295282712398311681512", - "swapFee": "4689974440590344602935", + "inputQty": "58153636087760259081306112", + "expectedQty": "58046680390117651166903507", + "swapFee": "34892181652656155448783", "reserves": [ - "16963263261492985386148338", - "121978034472255760846262461", - "51945231258057962614896612" + "676180564810870959988441523", + "596375438316287628944168580", + "488736664815271454806720653" ], - "mAssetSupply": "190163055794013648916195865", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1160334597488766265327616", - "expectedQty": "1213648253193246407484856", - "reserves": [ - "18123597858981751651475954", - "121978034472255760846262461", - "51945231258057962614896612" - ] + "mAssetSupply": "1761162813457060218195357879" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1391535306798910647828480", - "outputIndex": 2, - "expectedQty": "1372011962174108969450430", - "swapFee": "824643321840064499014", - "reserves": [ - "18123597858981751651475954", - "123369569779054671494090941", - "50573219295883853645446182" + "type": "redeemMasset", + "inputQty": "8623876433713414379929", + "expectedQtys": [ + "3310056403628628491542", + "2919392306281089078420", + "2392476227873208121204" ], - "mAssetSupply": "191377528690528735388179735", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "4249550672657297642094592", - "expectedQty": "4399492325903801791651035", + "redemptionFee": "2587162930114024313", "reserves": [ - "22373148531639049293570546", - "123369569779054671494090941", - "50573219295883853645446182" - ] + "676177254754467331359949981", + "596372518923981347855090160", + "488734272339043581598599449" + ], + "mAssetSupply": "1761154192167789434895002263" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "81440591644605523427328", - "expectedQty": "80595891979108620339746", + "type": "redeemMasset", + "inputQty": "1341837020691351718802227", + "expectedQtys": [ + "515030132574945641395233", + "454244527342174890174391", + "372258716640947765076267" + ], + "redemptionFee": "402551106207405515640", "reserves": [ - "22373148531639049293570546", - "123451010370699277017518269", - "50573219295883853645446182" - ] + "675662224621892385718554748", + "595918274396639172964915769", + "488362013622402633833523182" + ], + "mAssetSupply": "1759812757698204290581715676" }, { - "type": "mintMulti", - "inputQtys": [ - "141115791485888469401600", - "70397520975608774918144", - "48135017565717406941184" - ], - "expectedQty": "263021198019530632675579", + "type": "redeem", + "inputIndex": 2, + "inputQty": "14613203447098518664118272", + "expectedQty": "14579031295750243042467874", + "swapFee": "8767922068259111198470", "reserves": [ - "22514264323124937762972146", - "123521407891674885792436413", - "50621354313449571052387366" + "675662224621892385718554748", + "595918274396639172964915769", + "473782982326652390791055308" ], - "mAssetSupply": "196120638106431176432846095" + "mAssetSupply": "1745208322173174031028795874" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "512634988014290971131904", - "expectedQty": "526764687156031636956991", + "inputQty": "21304931385825598373888", + "expectedQty": "21319293920036251577806", + "swapFee": "12782958831495359024", "reserves": [ - "23026899311139228734104050", - "123521407891674885792436413", - "50621354313449571052387366" - ] + "675640905327972349466976942", + "595918274396639172964915769", + "473782982326652390791055308" + ], + "mAssetSupply": "1745187030024747036925781010" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "744679201255462144", - "expectedQty": "724712173048588417", - "swapFee": "446807520753277", + "inputQty": "3045280102765457634754560", + "expectedQty": "3047297352366609501122750", + "swapFee": "1827168061659274580852", "reserves": [ - "23026898586427055685515633", - "123521407891674885792436413", - "50621354313449571052387366" + "672593607975605739965854192", + "595918274396639172964915769", + "473782982326652390791055308" ], - "mAssetSupply": "196647402049354814335094219" + "mAssetSupply": "1742143577090043238565607302" }, { "type": "redeemMasset", - "inputQty": "407968850033505415987", + "inputQty": "4907995022937392", "expectedQtys": [ - "47757758104451739511", - "256183241380542936041", - "104988623854298555830" + "1894273123052180", + "1678326938197916", + "1334348645212569" ], - "redemptionFee": "122390655010051624", + "redemptionFee": "1472398506881", "reserves": [ - "23026850828668951233776122", - "123521151708433505249500372", - "50621249324825716753831536" + "672593607973711466842802012", + "595918274394960846026717853", + "473782982325318042145842739" ], - "mAssetSupply": "196646994202895435839729856" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "21049802760821440845447168", - "outputIndex": 0, - "hardLimitError": true + "mAssetSupply": "1742143577085136715941176791" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "194229400929649834328064", - "expectedQty": "188979544759704870628888", - "swapFee": "116537640557789900596", + "inputQty": "624536486166714908672", + "expectedQty": "623755848056663598267", "reserves": [ - "22837871283909246363147234", - "123521151708433505249500372", - "50621249324825716753831536" - ], - "mAssetSupply": "196452881339606343795302388" + "672594232510197633557710684", + "595918274394960846026717853", + "473782982325318042145842739" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "301062567254430646272", - "2629467456953400688640", - "2279497146003404881920" + "610298264827583417810944", + "2581817089473713916608512", + "1854780413938683562950656" ], - "expectedQty": "5196237897091145824160", + "expectedQty": "5048774392247800265422102", + "swapFee": "3031083285319872082502", "reserves": [ - "22838172346476500793793506", - "123523781175890458650189012", - "50623528821971720158713456" + "671983934245370050139899740", + "593336457305487132110109341", + "471928201911379358582892083" ], - "mAssetSupply": "196458077577503434941126548" + "mAssetSupply": "1737095426448736972339352956" }, { - "type": "mintMulti", - "inputQtys": [ - "78551295158253678231552", - "273531420485628115025920", - "196389764378115870556160" - ], - "expectedQty": "548245194076121694537462", + "type": "redeem", + "inputIndex": 2, + "inputQty": "2289119234114988059656192", + "expectedQty": "2283486768589644960727958", + "swapFee": "1373471540468992835793", "reserves": [ - "22916723641634754472025058", - "123797312596376086765214932", - "50819918586349836029269616" + "671983934245370050139899740", + "593336457305487132110109341", + "469644715142789713622164125" ], - "mAssetSupply": "197006322771579556635664010" + "mAssetSupply": "1734807680686162453272532557" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "1859792831051344640", - "expectedQty": "1854846805395750866", - "swapFee": "1115875698630806", + "inputQty": "115007419009750137831424", + "expectedQty": "115223903168821965515675", "reserves": [ - "22916723641634754472025058", - "123797312596376086765214932", - "50819916731503030633518750" - ], - "mAssetSupply": "197006320912902601282950176" + "671983934245370050139899740", + "593336457305487132110109341", + "469759722561799463759995549" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "27458130664459001856", - "expectedQty": "27723607995798872290", - "swapFee": "16474878398675401", + "inputIndex": 0, + "inputQty": "21229071889799194693599232", + "expectedQty": "21241757023344475644481076", + "swapFee": "12737443133879516816159", "reserves": [ - "22916723641634754472025058", - "123797284872768090966342642", - "50819916731503030633518750" + "650742177222025574495418664", + "593336457305487132110109341", + "469759722561799463759995549" ], - "mAssetSupply": "197006293471246815222623721" + "mAssetSupply": "1713706570142665960061265159" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "156552528000716009111552", - "expectedQty": "160802393612501218318387", + "inputIndex": 1, + "inputQty": "18582550753764013504462848", + "expectedQty": "18573690818920430207321372", "reserves": [ - "23073276169635470481136610", - "123797284872768090966342642", - "50819916731503030633518750" + "650742177222025574495418664", + "611919008059251145614572189", + "469759722561799463759995549" ] }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "22152343471861971025920", + "outputIndex": 0, + "expectedQty": "22149655173969866228653", + "swapFee": "13283964223986433472", + "reserves": [ + "650720027566851604629190011", + "611941160402723007585598109", + "469759722561799463759995549" + ], + "mAssetSupply": "1732280274245550614255020003", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "mint", "inputIndex": 0, - "inputQty": "12740277298652956852224", - "expectedQty": "13083536017956053682680", + "inputQty": "8877069997696909312", + "expectedQty": "8867853407856145692", "reserves": [ - "23086016446934123437988834", - "123797284872768090966342642", - "50819916731503030633518750" + "650720036443921602326099323", + "611941160402723007585598109", + "469759722561799463759995549" ] }, { - "type": "redeemMasset", - "inputQty": "348792617842739939115008", - "expectedQtys": [ - "40824673488542643356019", - "218919697355151000061741", - "89868536308439748963013" + "type": "redeemBassets", + "inputQtys": [ + "79341127909905285120", + "64093498811022057472", + "58641857270998417408" ], - "redemptionFee": "104637785352821981734", + "expectedQty": "202067778430393275097", + "swapFee": "121313455131314753", "reserves": [ - "23045191773445580794632815", - "123578365175412939966280901", - "50730048195194590884555737" + "650719957102793692420814203", + "611941096309224196563540637", + "469759663919942192761578141" ], - "mAssetSupply": "196831491420819885377491514" + "mAssetSupply": "1732280081045625591717890598" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "2873627974777717800304640", - "expectedQty": "2844122530852077792466276", + "type": "mintMulti", + "inputQtys": [ + "5146482931616062464", + "16135113301464342528", + "25391680925090078720" + ], + "expectedQty": "46706339267379474392", "reserves": [ - "23045191773445580794632815", - "126451993150190657766585541", - "50730048195194590884555737" - ] + "650719962249276624036876667", + "611941112444337498027883165", + "469759689311623117851656861" + ], + "mAssetSupply": "1732280127751964859097364990" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "68231492077568347078656", - "expectedQty": "67519374903776044354056", + "type": "redeem", + "inputIndex": 2, + "inputQty": "53332187168727558520832", + "expectedQty": "53200763740442155003555", + "swapFee": "31999312301236535112", "reserves": [ - "23045191773445580794632815", - "126520224642268226113664197", - "50730048195194590884555737" - ] + "650719962249276624036876667", + "611941112444337498027883165", + "469706488547882675696653306" + ], + "mAssetSupply": "1732226827564108432775379270" }, { "type": "redeemBassets", "inputQtys": [ - "19851246512940494848", - "28114974061146607616", - "7654957283426799616" + "1270618813115318927360", + "3495833937993643589632", + "3282266998718399512576" ], - "expectedQty": "55903796411270091232", - "swapFee": "33562415295939618", + "expectedQty": "8051576541541440012203", + "swapFee": "4833846232664462684", "reserves": [ - "23045171922199067854137967", - "126520196527294164967056581", - "50730040540237307457756121" + "650718691630463508717949307", + "611937616610399504384293533", + "469703206280883957297140730" ], - "mAssetSupply": "199743077422779327944220614" + "mAssetSupply": "1732218775987566891335367067" }, { "type": "redeemMasset", - "inputQty": "11160644665867", + "inputQty": "470561631901899948241715", "expectedQtys": [ - "1287262711240", - "7067195322228", - "2833690707435" + "176716355180567812909351", + "166184538105576262889591", + "127557790637004566289398" ], - "redemptionFee": "3348193399", + "redemptionFee": "141168489570569984472", "reserves": [ - "23045171922197780591426727", - "126520196527287097771734353", - "50730040540234473767048686" + "650541975275282940905039956", + "611771432072293928121403942", + "469575648490246952730851332" ], - "mAssetSupply": "199743077422768170647748146" + "mAssetSupply": "1731748355524154561957109824" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2294197207657377590935552", - "expectedQty": "2223521554616948164020480", - "swapFee": "1376518324594426554561", + "type": "redeemMasset", + "inputQty": "46381957649431102541004", + "expectedQtys": [ + "17418442019632554699155", + "16380349960215244815482", + "12573018372254282658129" + ], + "redemptionFee": "13914587294829330762", "reserves": [ - "20821650367580832427406247", - "126520196527287097771734353", - "50730040540234473767048686" + "650524556833263308350340801", + "611755051722333712876588460", + "469563075471874698448193203" ], - "mAssetSupply": "197450256733435387483367155" + "mAssetSupply": "1731701987481092425683899582" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "382718168689832825454592", - "533621193921388288671744", - "500538751384883646431232" + "131403994494740720", + "24793868832878436", + "188064888499547392" ], - "expectedQty": "1425194863559199623631771", - "swapFee": "855630296313307758834", + "expectedQty": "344463932122124038", "reserves": [ - "20438932198890999601951655", - "125986575333365709483062609", - "50229501788849590120617454" + "650524556964667302845081521", + "611755051747127581709466896", + "469563075659939586947740595" ], - "mAssetSupply": "196025061869876187859735384" + "mAssetSupply": "1731701987825556357806023620" }, { "type": "redeemBassets", "inputQtys": [ - "747514818472566562226176", - "357672899337682732187648", - "1937106698810594860990464" + "656551754016746968711168", + "106723543767220129628160", + "1926138623295279761195008" ], - "expectedQty": "3070107675458910301375914", - "swapFee": "1843170507579894117295", + "expectedQty": "2692295098186861268880661", + "swapFee": "1616346867032336163026", "reserves": [ - "19691417380418433039725479", - "125628902434028026750874961", - "48292395090038995259626990" + "649868005210650555876370353", + "611648328203360361579838736", + "467636937036644307186545587" ], - "mAssetSupply": "192954954194417277558359470" + "mAssetSupply": "1729009692727369496537142959" }, { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "14896322500870474301440", - "expectedQty": "15071218766316761674490", - "swapFee": "8937793500522284580", + "inputQty": "2779028927516705292288000", + "expectedQty": "2777401085206533498923751", "reserves": [ - "19691417380418433039725479", - "125613831215261709989200471", - "48292395090038995259626990" - ], - "mAssetSupply": "192940066809709907606342610" + "649868005210650555876370353", + "614427357130877066872126736", + "467636937036644307186545587" + ] }, { "type": "redeemBassets", "inputQtys": [ - "3449242533760689242112", - "6054220201331240468480", - "5284392636693539192832" + "1756736134474979075948544", + "1695708347527188730347520", + "1639933981682325642018816" ], - "expectedQty": "14858669552384577637180", - "swapFee": "8920554063869068023", + "expectedQty": "5092684786605498358999796", + "swapFee": "3057445339166799094856", "reserves": [ - "19687968137884672350483367", - "125607776995060378748731991", - "48287110697402301720434158" + "648111269076175576800421809", + "612731648783349878141779216", + "465997003054961981544526771" ], - "mAssetSupply": "192925208140157523028705430" + "mAssetSupply": "1726694409025970531677066914" }, { - "type": "swap", + "type": "redeem", "inputIndex": 0, - "inputQty": "248752765486679818240", - "outputIndex": 1, - "expectedQty": "261192626980141019267", - "swapFee": "154896854467689879", - "reserves": [ - "19688216890650159030301607", - "125607515802433398607712724", - "48287110697402301720434158" - ], - "mAssetSupply": "192925208295054377496395309", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mintMulti", - "inputQtys": [ - "80523627497467733344256", - "138799863796589924450304", - "44845462385618092032" - ], - "expectedQty": "220713343382701384766370", + "inputQty": "342152562791382", + "expectedQty": "342302025695252", + "swapFee": "205291537674", "reserves": [ - "19768740518147626763645863", - "125746315666229988532163028", - "48287155542864687338526190" + "648111269075833274774726557", + "612731648783349878141779216", + "465997003054961981544526771" ], - "mAssetSupply": "193145921638437078881161679" + "mAssetSupply": "1726694409025628584405813206" }, { "type": "redeemMasset", - "inputQty": "28192523515523447652352", + "inputQty": "70793556989874312472166", "expectedQtys": [ - "2884676404239956628974", - "18349040971502018681849", - "7046114955805916560311" + "26564247380846203967602", + "25114136835738603552860", + "19099898826842565595344" ], - "redemptionFee": "8457757054657034295", + "redemptionFee": "21238067096962293741", "reserves": [ - "19765855841743386807016889", - "125727966625258486513481179", - "48280109427908881421965879" + "648084704828452428570758955", + "612706534646514139538226356", + "465977903156135138978931427" ], - "mAssetSupply": "193117737572678610090543622" + "mAssetSupply": "1726623636706705807055634781" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "5374039156667631796224", - "expectedQty": "5575988224400555008909", + "inputIndex": 2, + "inputQty": "621144776309266299486208", + "expectedQty": "622332978037716475578156", "reserves": [ - "19771229880900054438813113", - "125727966625258486513481179", - "48280109427908881421965879" + "648084704828452428570758955", + "612706534646514139538226356", + "466599047932444405278417635" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "172927718080573698211840", - "expectedQty": "172349836472689822110144", - "swapFee": "103756630848344218927", + "type": "mint", + "inputIndex": 0, + "inputQty": "1044269932490070163456", + "expectedQty": "1043191504152548118009", "reserves": [ - "19771229880900054438813113", - "125727966625258486513481179", - "48107759591436191599855735" - ], - "mAssetSupply": "192950489599453285291559618" + "648085749098384918640922411", + "612706534646514139538226356", + "466599047932444405278417635" + ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "601739688607594984767488", - "outputIndex": 0, - "expectedQty": "571715999122323028773504", - "swapFee": "356627860396305016511", + "type": "mint", + "inputIndex": 2, + "inputQty": "4220921967732926135140352", + "expectedQty": "4228833099449476459347880", "reserves": [ - "19199513881777731410039609", - "126329706313866081498248667", - "48107759591436191599855735" - ], - "mAssetSupply": "192950846227313681596576129", - "hardLimitError": false, - "insufficientLiquidityError": false + "648085749098384918640922411", + "612706534646514139538226356", + "470819969900177331413557987" + ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "615569945180152396775424", - "expectedQty": "623023415161539283298426", - "swapFee": "369341967108091438065", - "reserves": [ - "19199513881777731410039609", - "125706682898704542214950241", - "48107759591436191599855735" + "type": "redeemMasset", + "inputQty": "23458903472678896874291", + "expectedQtys": [ + "8777956707356863832245", + "8298765160203015252877", + "6376991499184189831191" ], - "mAssetSupply": "192335645624100637291238770" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1317335151737440305152", - "expectedQty": "1333227664737237105578", - "swapFee": "790401091042464183", + "redemptionFee": "7037671041803669062", "reserves": [ - "19199513881777731410039609", - "125705349671039804977844663", - "48107759591436191599855735" + "648076971141677561777090166", + "612698235881353936522973479", + "470813592908678147223726796" ], - "mAssetSupply": "192334329079349990893397801" + "mAssetSupply": "1731452394109895515445473597" }, { "type": "mint", "inputIndex": 1, - "inputQty": "525110721417530243547136", - "expectedQty": "518520963978170774042047", + "inputQty": "48941439179128699678097408", + "expectedQty": "48903350564525972299779285", "reserves": [ - "19199513881777731410039609", - "126230460392457335221391799", - "48107759591436191599855735" + "648076971141677561777090166", + "661639675060482636201070887", + "470813592908678147223726796" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "3828773534935542784", - "3667985176692135424", - "1298570140267583232" - ], - "expectedQty": "8906414860840395213", - "swapFee": "5347057150794713", - "reserves": [ - "19199510053004196474496825", - "126230456724472158529256375", - "48107758292866051332272503" - ], - "mAssetSupply": "192852841136913300827044635" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "144662979664033171374080", - "expectedQty": "138958731803955397000599", - "swapFee": "86797787798419902824", + "type": "mint", + "inputIndex": 2, + "inputQty": "15206803048832", + "expectedQty": "15239203714227", "reserves": [ - "19060551321200241077496226", - "126230456724472158529256375", - "48107758292866051332272503" - ], - "mAssetSupply": "192708264955037066075573379" + "648076971141677561777090166", + "661639675060482636201070887", + "470813592908693354026775628" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3767730539324791324672", - "2425885780836030611456", - "844635097885465378816" + "68379094278255714304", + "112492193283467640832", + "104037263888975593472" ], - "expectedQty": "7163299491820419206026", - "swapFee": "4300560031110918074", + "expectedQty": "284964197864909414363", "reserves": [ - "19056783590660916286171554", - "126228030838691322498644919", - "48106913657768165866893687" + "648077039520771840032804470", + "661639787552675919668711719", + "470813696945957243002369100" ], - "mAssetSupply": "192701101655545245656367353" + "mAssetSupply": "1780356029638634591858381472" }, { "type": "mint", "inputIndex": 0, - "inputQty": "1535011391239085564624896", - "expectedQty": "1592842061880202693695221", + "inputQty": "68600210423865024512", + "expectedQty": "68544091633663600390", "reserves": [ - "20591794981900001850796450", - "126228030838691322498644919", - "48106913657768165866893687" + "648077108120982263897828982", + "661639787552675919668711719", + "470813696945957243002369100" ] }, { "type": "redeemBassets", "inputQtys": [ - "142395575716171284480", - "366880022260726235136", - "647866109540431691776" + "246680685492650154917888", + "72082491871642880311296", + "427136727647583530385408" ], - "expectedQty": "1159676218310937062886", - "swapFee": "696223465065601598", + "expectedQty": "746538555568113734892959", + "swapFee": "448192048570010247084", "reserves": [ - "20591652586324285679511970", - "126227663958669061772409783", - "48106265791658625435201911" + "647830427435489613742911094", + "661567705060804276788400423", + "470386560218309659471983692" ], - "mAssetSupply": "194292784041207137412999688" + "mAssetSupply": "1779609559627158111787088903" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "24893216723573307080704", - "expectedQty": "25759320150718190590430", + "type": "redeemMasset", + "inputQty": "126995281872048640", + "expectedQtys": [ + "46216163466985330", + "47196179596879327", + "33557334202069621" + ], + "redemptionFee": "38098584561614", "reserves": [ - "20616545803047858986592674", - "126227663958669061772409783", - "48106265791658625435201911" - ] + "647830427389273450275925764", + "661567705013608097191521096", + "470386560184752325269914071" + ], + "mAssetSupply": "1779609559500200928499601877" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2234493118328200474132480", - "120925954407521193033728", - "458597294891167219974144" + "127451909778200336531456", + "12520898013699059482624", + "319162804226050737831936" ], - "expectedQty": "2884083676094829859137065", + "expectedQty": "459701279652902651758741", + "swapFee": "275986359607506094712", "reserves": [ - "22851038921376059460725154", - "126348589913076582965443511", - "48564863086549792655176055" + "647702975479495249939394308", + "661555184115594398132038472", + "470067397380526274532082135" ], - "mAssetSupply": "197202627037452685462727183" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "6518916471669208907776", - "expectedQty": "6703167384713496455947", - "reserves": [ - "22857557837847728669632930", - "126348589913076582965443511", - "48564863086549792655176055" - ] + "mAssetSupply": "1779149858220548025847843136" }, { - "type": "redeemMasset", - "inputQty": "61007194112337164", - "expectedQtys": [ - "7068920744567137", - "39074522948574646", - "15019153426843082" - ], - "redemptionFee": "18302158233701", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1069477093543429938348032", + "expectedQty": "1066543220872307266012257", + "swapFee": "641686256126057963008", "reserves": [ - "22857557830778807925065793", - "126348589874002060016868865", - "48564863071530639228332973" + "647702975479495249939394308", + "661555184115594398132038472", + "469000854159653967266069878" ], - "mAssetSupply": "197209330143848507005079667" + "mAssetSupply": "1778081022813260721967458112" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "2309911178741170023956480", - "outputIndex": 1, - "expectedQty": "2338894430356067282552484", - "swapFee": "1389649389844459603960", + "inputIndex": 0, + "inputQty": "178199651334921000058880", + "outputIndex": 2, + "expectedQty": "177561830035748434921966", + "swapFee": "106831381869814941472", "reserves": [ - "22857557830778807925065793", - "124009695443645992734316381", - "50874774250271809252289453" + "647881175130830170939453188", + "661555184115594398132038472", + "468823292329618218831147912" ], - "mAssetSupply": "197210719793238351464683627", + "mAssetSupply": "1778081129644642591782399584", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7498569197300446396416", - "14916951989473018642432", - "14400311648058785923072" + "2470495391366265856", + "4486710921152613888", + "3708813741064807936" ], - "expectedQty": "36899913842365337276365", + "expectedQty": "10667547455221945289", + "swapFee": "6404371095790641", "reserves": [ - "22865056399976108371462209", - "124024612395635465752958813", - "50889174561919868038212525" + "647881172660334779573187332", + "661555179628883476979424584", + "468823288620804477766339976" ], - "mAssetSupply": "197247619707080716801959992" + "mAssetSupply": "1778081118977095136560454295" }, { - "type": "mintMulti", - "inputQtys": [ - "11953080784808140800", - "24052091047745671168", - "9481633476971802624" - ], - "expectedQty": "45590230092714394049", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1824269366276830720", + "expectedQty": "1819241436912766168", + "swapFee": "1094561619766098", "reserves": [ - "22865068353056893179603009", - "124024636447726513498629981", - "50889184043553345010015149" + "647881172660334779573187332", + "661555179628883476979424584", + "468823286801563040853573808" ], - "mAssetSupply": "197247665297310809516354041" + "mAssetSupply": "1778081117153920331903389673" }, { - "type": "redeemMasset", - "inputQty": "278159588807231198042521", - "expectedQtys": [ - "32234754009120761942647", - "174847657799746161413577", - "71742638335454873616304" - ], - "redemptionFee": "83447876642169359412", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3433764862662420201472", + "expectedQty": "3434550649657455417628", + "swapFee": "2060258917597452120", "reserves": [ - "22832833599047772417660362", - "123849788789926767337216404", - "50817441405217890136398845" + "647877738109685122117769704", + "661555179628883476979424584", + "468823286801563040853573808" ], - "mAssetSupply": "196969589156380220487670932" + "mAssetSupply": "1778077685449316587080640321" }, { "type": "redeemBassets", "inputQtys": [ - "191214260330344218624", - "2559894310380626247680", - "3618287198983879655424" - ], - "expectedQty": "6355985028411342339939", - "swapFee": "3815880545374029821", - "reserves": [ - "22832642384787442073441738", - "123847228895616386710968724", - "50813823118018906256743421" + "246984555244929548288", + "2113039435456655392768", + "1626102364766971625472" ], - "mAssetSupply": "196963233171351809145330993" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "4429036386926118400", - "expectedQty": "4472039208317254361", - "swapFee": "2657421832155671", + "expectedQty": "3987344422624297848096", + "swapFee": "2393842959350188822", "reserves": [ - "22832642384787442073441738", - "123847224423577178393714363", - "50813823118018906256743421" + "647877491125129877188221416", + "661553066589448020324031816", + "468821660699198273881948336" ], - "mAssetSupply": "196963228744972844051368264" + "mAssetSupply": "1778073698104893962782792225" }, { - "type": "redeemMasset", - "inputQty": "253612299395363714682060", - "expectedQtys": [ - "29390774012404550049836", - "159419384044751773015112", - "65408881144787166943787" - ], - "redemptionFee": "76083689818609114404", + "type": "swap", + "inputIndex": 0, + "inputQty": "3351833225415814587351040", + "outputIndex": 2, + "expectedQty": "3339618694497372246942469", + "swapFee": "2009405872210281377135", "reserves": [ - "22803251610775037523391902", - "123687805039532426620699251", - "50748414236874119089799634" + "651229324350545691775572456", + "661553066589448020324031816", + "465482042004700901635005867" ], - "mAssetSupply": "196709692529267298945800608" + "mAssetSupply": "1778075707510766173064169360", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "4627586597759786418176", - "161500548438174629625856", - "674294475223789364838400" - ], - "expectedQty": "840233104180030226525875", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1262812087860475333705728", + "expectedQty": "1263308788188204766382546", + "swapFee": "757687252716285200223", "reserves": [ - "22807879197372797309810078", - "123849305587970601250325107", - "51422708712097908454638034" + "651229324350545691775572456", + "660289757801259815557649270", + "465482042004700901635005867" ], - "mAssetSupply": "197549925633447329172326483" + "mAssetSupply": "1776813653110158414015663855" }, { - "type": "redeemBassets", - "inputQtys": [ - "77874452660694080815104", - "151300975193540830167040", - "298455204338878939922432" - ], - "expectedQty": "528820798434770687051248", - "swapFee": "317482968842167712858", + "type": "mint", + "inputIndex": 0, + "inputQty": "79760152242702155195088896", + "expectedQty": "79665182440925120800741251", "reserves": [ - "22730004744712103228994974", - "123698004612777060420158067", - "51124253507759029514715602" - ], - "mAssetSupply": "197021104835012558485275235" + "730989476593247846970661352", + "660289757801259815557649270", + "465482042004700901635005867" + ] }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "7035777124156391745912832", - "expectedQty": "7009752869007740652433052", - "swapFee": "4221466274493835047547", + "inputQty": "4382559358426578157568", + "expectedQty": "4394476074122963866177", "reserves": [ - "22730004744712103228994974", - "123698004612777060420158067", - "44114500638751288862282550" - ], - "mAssetSupply": "189989549177130660574409950" + "730989476593247846970661352", + "660289757801259815557649270", + "465486424564059328213163435" + ] }, { "type": "redeemMasset", - "inputQty": "991835641395608576", + "inputQty": "22164187553182626611", "expectedQtys": [ - "118625817071832811", - "645568579160095557", - "230229546441480273" + "8724521213165510079", + "7880704419467999536", + "5555683516097303290" ], - "redemptionFee": "297550692418682", + "redemptionFee": "6649256265954787", "reserves": [ - "22730004626086286157162163", - "123698003967208481260062510", - "44114500408521742420802277" + "730989467868726633805151273", + "660289749920555396089649734", + "465486419008375812115860145" ], - "mAssetSupply": "189989548185592569871220056" + "mAssetSupply": "1856483207869619360863599459" }, { "type": "mintMulti", "inputQtys": [ - "24116002100695804149760", - "27785479014054363136000", - "13195791438577240375296" + "3348105323633772068864", + "2893395636572372074496", + "3429463709495531143168" ], - "expectedQty": "65501051594935634700211", + "expectedQty": "9673290204833715147602", "reserves": [ - "22754120628186981961311923", - "123725789446222535623198510", - "44127696199960319661177573" + "730992815974050267577220137", + "660292643316191968461724230", + "465489848472085307647003313" ], - "mAssetSupply": "190055049237187505505920267" + "mAssetSupply": "1856492881159824194578747061" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "1243160615908666194788352", - "expectedQty": "1274907852058787182687320", + "inputQty": "6177333932641954494939136", + "expectedQty": "6182687086778707533136815", + "swapFee": "3706400359585172696963", "reserves": [ - "23997281244095648156100275", - "123725789446222535623198510", - "44127696199960319661177573" - ] + "724810128887271560044083322", + "660292643316191968461724230", + "465489848472085307647003313" + ], + "mAssetSupply": "1850319253627541825256504888" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "271964305953238560", - "outputIndex": 1, - "expectedQty": "281326947203372763", - "swapFee": "167121637593365", + "type": "redeemBassets", + "inputQtys": [ + "86850477341845865103360", + "62115621932590010728448", + "103032632343976113864704" + ], + "expectedQty": "252104918322072037552815", + "swapFee": "151353763251193938895", "reserves": [ - "23997281516059954109338835", - "123725789164895588419825747", - "44127696199960319661177573" + "724723278409929714178979962", + "660230527694259378450995782", + "465386815839741331533138609" ], - "mAssetSupply": "191329957089413414326200952", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1850067148709219753218952073" }, { "type": "mintMulti", "inputQtys": [ - "643042238879134392516608", - "683037785086497369620480", - "520531587766341139955712" + "14992946822672343040", + "40229078988312289280", + "115044527393455980544" ], - "expectedQty": "1857059322774662119470339", + "expectedQty": "170524452784627691742", "reserves": [ - "24640323754939088501855443", - "124408826949982085789446227", - "44648227787726660801133285" + "724723293402876536851323002", + "660230567923338366763285062", + "465386930884268724989119153" ], - "mAssetSupply": "193187016412188076445671291" + "mAssetSupply": "1850067319233672537846643815" }, { - "type": "redeemBassets", - "inputQtys": [ - "232125315218077777920", - "36600084372492824576", - "380146737641576988672" + "type": "redeemMasset", + "inputQty": "30243719347559669222604", + "expectedQtys": [ + "11843759502235217767629", + "10789789887657495184066", + "7605566062318543600193" ], - "expectedQty": "655567260423211153547", - "swapFee": "393576502155219824", + "redemptionFee": "9073115804267900766", "reserves": [ - "24640091629623870424077523", - "124408790349897713296621651", - "44647847640989019224144613" + "724711449643374301633555373", + "660219778133450709268100996", + "465379325318206406445518960" ], - "mAssetSupply": "193186360844927653234517744" + "mAssetSupply": "1850037084587440782445321977" }, { "type": "redeemMasset", - "inputQty": "55404002879060275573555", + "inputQty": "466053798347200268756582", "expectedQtys": [ - "7064422942213866544836", - "35668548882515194099158", - "12800734832343917823754" + "182511583290857969364186", + "166269978329128379773718", + "117201290991682424441616" ], - "redemptionFee": "16621200863718082672", + "redemptionFee": "139816139504160080626", "reserves": [ - "24633027206681656557532687", - "124373121801015198102522493", - "44635046906156675306320859" + "724528938060083443664191187", + "660053508155121580888327278", + "465262124027214724021077344" ], - "mAssetSupply": "193130973463249456677026861" + "mAssetSupply": "1849571170605233086336646021" }, { - "type": "redeemBassets", - "inputQtys": [ - "537466897219950221459456", - "886986723752043782078464", - "546521941852230741131264" - ], - "expectedQty": "1976867797497741312766897", - "swapFee": "1186832778165544114128", + "type": "mint", + "inputIndex": 0, + "inputQty": "291811460754079", + "expectedQty": "291390292516702", "reserves": [ - "24095560309461706336073231", - "123486135077263154320444029", - "44088524964304444565189595" - ], - "mAssetSupply": "191154105665751715364259964" + "724528938060375255124945266", + "660053508155121580888327278", + "465262124027214724021077344" + ] }, { - "type": "redeemMasset", - "inputQty": "112812560514452689204019", - "expectedQtys": [ - "14216102560390927568687", - "72855394873524659610802", - "26011721021602161177868" + "type": "swap", + "inputIndex": 1, + "inputQty": "32535802296400437248", + "outputIndex": 2, + "expectedQty": "32405960015068033203", + "swapFee": "19507421819529209", + "reserves": [ + "724528938060375255124945266", + "660053540690923877288764526", + "465262091621254708953044141" ], - "redemptionFee": "33843768154335806761", + "mAssetSupply": "1849571170625031898448691932", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "4818113663218851250176", + "outputIndex": 2, + "expectedQty": "4798885317493794914027", + "swapFee": "2888786108216206198", "reserves": [ - "24081344206901315408504544", - "123413279682389629660833227", - "44062513243282842404011727" + "724528938060375255124945266", + "660058358804587096140014702", + "465257292735937215158130114" ], - "mAssetSupply": "191041326949005417010862706" + "mAssetSupply": "1849571173513818006664898130", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "278085790712579257008128", - "expectedQty": "275174068559605859923412", + "inputIndex": 2, + "inputQty": "22160796564575066521600", + "expectedQty": "22220222724201269570629", "reserves": [ - "24081344206901315408504544", - "123691365473102208917841355", - "44062513243282842404011727" + "724528938060375255124945266", + "660058358804587096140014702", + "465279453532501790224651714" ] }, { "type": "redeemMasset", - "inputQty": "156567397198455662182", + "inputQty": "8598392488057933450444", "expectedQtys": [ - "19701501216319734941", - "101194749195860717527", - "36048554881245329375" + "3367180735093235670749", + "3067559724741953070999", + "2162342910089253552311" ], - "redemptionFee": "46970219159536698", + "redemptionFee": "2579517746417380035", "reserves": [ - "24081324505400099088769603", - "123691264278353013057123828", - "44062477194727961158682352" + "724525570879640161889274517", + "660055291244862354186943703", + "465277291189591700971099403" ], - "mAssetSupply": "191316344497138043574660634" + "mAssetSupply": "1849584797923571896418398350" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "1101955015177994588127232", - "expectedQty": "1106738128331598116930417", + "type": "redeemMasset", + "inputQty": "5015648145338225655808", + "expectedQtys": [ + "1964157118024687268419", + "1789381011100054113711", + "1261346376271786683430" + ], + "redemptionFee": "1504694443601467696", "reserves": [ - "24081324505400099088769603", - "123691264278353013057123828", - "45164432209905955746809584" - ] + "724523606722522137202006098", + "660053501863851254132829992", + "465276029843215429184415973" + ], + "mAssetSupply": "1849579783780121001794210238" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "543521269508089522946048", + "inputIndex": 2, + "inputQty": "307585900536186601472", "outputIndex": 0, - "expectedQty": "524535699252317978427756", - "swapFee": "322728973720647500158", + "expectedQty": "308671071547038650321", + "swapFee": "185046393498161517", "reserves": [ - "23556788806147781110341847", - "124234785547861102580069876", - "45164432209905955746809584" + "724523298051450590163355777", + "660053501863851254132829992", + "465276337429115965371017445" ], - "mAssetSupply": "192423405354443362339091209", + "mAssetSupply": "1849579783965167395292371755", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "26165856452340512456704", - "expectedQty": "26042152206846094632273", - "swapFee": "15699513871404307474", + "inputQty": "5913145805042626183823360", + "outputIndex": 1, + "expectedQty": "5929031874335492473430059", + "swapFee": "3557208953479822052546", "reserves": [ - "23556788806147781110341847", - "124234785547861102580069876", - "45138390057699109652177311" + "724523298051450590163355777", + "654124469989515761659399933", + "471189483234158591554840805" ], - "mAssetSupply": "192397255197504893230941979" + "mAssetSupply": "1849583341174120875114424301", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "36732246149292240", - "expectedQty": "35800882160596935", - "swapFee": "22039347689575", + "inputIndex": 2, + "inputQty": "5421478725284273332420608", + "expectedQty": "5404249452394607747991232", + "swapFee": "3252887235170563999452", "reserves": [ - "23556788770346898949744912", - "124234785547861102580069876", - "45138390057699109652177311" + "724523298051450590163355777", + "654124469989515761659399933", + "465785233781763983806849573" ], - "mAssetSupply": "192397255160794686429339314" + "mAssetSupply": "1844165115336071772346003145" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1885271271359793", - "2659865781568191", - "2117888242043203" + "13882838314642817024", + "6307546158011492352", + "14587970221569087488" ], - "expectedQty": "6691476229082036", + "expectedQty": "34792300867423047088", + "swapFee": "20887913268414877", "reserves": [ - "23556788772232170221104705", - "124234785550520968361638067", - "45138390059816997894220514" + "724523284168612275520538753", + "654124463681969603647907581", + "465785219193793762237762085" ], - "mAssetSupply": "192397255167486162658421350" + "mAssetSupply": "1844165080543770904922956057" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "34783243995196", - "39474574606074", - "59718119271909" + "66207291223802", + "7232932587420932", + "5651497423006787" ], - "expectedQty": "134688460620653", + "expectedQty": "12960605135113801", + "swapFee": "7781031700088", "reserves": [ - "23556788772266953465099901", - "124234785550560442936244141", - "45138390059876716013492423" + "724523284168546068229314951", + "654124463674736671060486649", + "465785219188142264814755298" ], - "mAssetSupply": "192397255167620851119042003" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "6289098769085096787968", - "expectedQty": "6222351450297809201109", - "reserves": [ - "23556788772266953465099901", - "124241074649329528033032109", - "45138390059876716013492423" - ] + "mAssetSupply": "1844165080530810299787842256" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "102820006238722507931648", - "expectedQty": "105420071476023627391679", + "type": "redeemMasset", + "inputQty": "1490201024986689096908", + "expectedQtys": [ + "585284607374631591895", + "528415011996974613184", + "376270749457404059435" + ], + "redemptionFee": "447060307496006729", "reserves": [ - "23659608778505675973031549", - "124241074649329528033032109", - "45138390059876716013492423" - ] + "724522698883938693597723056", + "654123935259724674085873465", + "465784842917392807410695863" + ], + "mAssetSupply": "1844163590776845620594752077" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "42817550794643", - "expectedQty": "42995774189132", + "type": "redeemBassets", + "inputQtys": [ + "25775297265292856", + "901250608158818432", + "1000944825738809344" + ], + "expectedQty": "1929969141118324228", + "swapFee": "1158676690685405", "reserves": [ - "23659608778505675973031549", - "124241074649329528033032109", - "45138390059919533564287066" - ] + "724522698858163396332430200", + "654123934358474065927055033", + "465784841916447981671886519" + ], + "mAssetSupply": "1844163588846876479476427849" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "734394212717635699736576", - "expectedQty": "730803149119203368893280", - "swapFee": "440636527630581419841", + "inputIndex": 0, + "inputQty": "42754167734891288381620224", + "expectedQty": "42784298237785271242608325", + "swapFee": "25652500640934773028972", "reserves": [ - "23659608778505675973031549", - "124241074649329528033032109", - "44407586910800330195393786" + "681738400620378125089821875", + "654123934358474065927055033", + "465784841916447981671886519" ], - "mAssetSupply": "191774944014400163211507188" + "mAssetSupply": "1801435073612626125867836597" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "11632523008896446", - "outputIndex": 0, - "expectedQty": "11391360403937239", - "swapFee": "7010653163301", + "inputIndex": 1, + "inputQty": "32983584706337385788473344", + "outputIndex": 2, + "expectedQty": "32837395412622878484121447", + "swapFee": "19771250885187407861813", "reserves": [ - "23659608767114315569094310", - "124241074649329528033032109", - "44407586922432853204290232" + "681738400620378125089821875", + "687107519064811451715528377", + "432947446503825103187765072" ], - "mAssetSupply": "191774944014407173864670489", + "mAssetSupply": "1801454844863511313275698410", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "5466650315957078023208960", - "expectedQty": "5406488478333905303675761", + "inputQty": "65033574273529154507898880", + "outputIndex": 0, + "expectedQty": "64942319003205845901764501", + "swapFee": "38959939456249417232609", "reserves": [ - "23659608767114315569094310", - "129707724965286606056241069", - "44407586922432853204290232" - ] + "616796081617172279188057374", + "752141093338340606223427257", + "432947446503825103187765072" + ], + "mAssetSupply": "1801493804802967562692931019", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "975891376160242009112576", - "211568264272284510846976", - "423291921270578054430720" + "25953415952349592", + "50027697581909816", + "58537174186922696" ], - "expectedQty": "1638308415214514688347315", - "swapFee": "983575194245255966588", + "expectedQty": "134595145341248439", "reserves": [ - "22683717390954073559981734", - "129496156701014321545394093", - "43984295001162275149859512" + "616796081643125695140406966", + "752141093388368303805337073", + "432947446562362277374687768" ], - "mAssetSupply": "195543124077526564479998935" + "mAssetSupply": "1801493804937562708034179458" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "137964971556981507620864", - "165730027284334062338048", - "205711749916844795887616" + "39773483904625306725515264", + "44117661672894855741702144", + "19343802395483158572171264" ], - "expectedQty": "512658414357127420216308", - "swapFee": "307779716444142937892", + "expectedQty": "103190276246518960628916492", "reserves": [ - "22545752419397092052360870", - "129330426673729987483056045", - "43778583251245430353971896" + "656569565547751001865922230", + "796258755061263159547039217", + "452291248957845435946859032" ], - "mAssetSupply": "195030465663169437059782627" + "mAssetSupply": "1904684081184081668663095950" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "27608055425964269568", - "expectedQty": "27922949073556900504", - "swapFee": "16564833255578561", + "inputIndex": 2, + "inputQty": "31309219699813911625728", + "expectedQty": "31184973902045414406248", + "swapFee": "18785531819888346975", "reserves": [ - "22545752419397092052360870", - "129330398750780913926155541", - "43778583251245430353971896" + "656569565547751001865922230", + "796258755061263159547039217", + "452260063983943390532452784" ], - "mAssetSupply": "195030438071678844351091620" + "mAssetSupply": "1904652790749913674639817197" }, { "type": "mintMulti", "inputQtys": [ - "186480788404985976061952", - "121632651421857035059200", - "122436597774593854275584" + "2506073602138419270516736", + "1462936713043893622407168", + "1109669683056534355968" + ], + "expectedQty": "3965813053625213605426060", + "reserves": [ + "659075639149889421136438966", + "797721691774307053169446385", + "452261173653626447066808752" ], - "expectedQty": "435312487240093024716192", + "mAssetSupply": "1908618603803538888245243257" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "37105868542932144", + "expectedQty": "37103590833812769", + "swapFee": "22263521125759", "reserves": [ - "22732233207802078028422822", - "129452031402202770961214741", - "43901019849020024208247480" + "659075639112785830302626197", + "797721691774307053169446385", + "452261173653626447066808752" ], - "mAssetSupply": "195465750558918937375807812" + "mAssetSupply": "1908618603766455283223436872" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2203475889073234716393472", - "expectedQty": "2214170899848379758798466", + "inputIndex": 1, + "inputQty": "1674632838197189416058880", + "expectedQty": "1671209077440727470199037", "reserves": [ - "22732233207802078028422822", - "129452031402202770961214741", - "46104495738093258924640952" + "659075639112785830302626197", + "799396324612504242585505265", + "452261173653626447066808752" ] }, { - "type": "redeemMasset", - "inputQty": "18235840092921913147392", - "expectedQtys": [ - "2096404147995418276981", - "11938280463569572932511", - "4251832858788491570771" + "type": "mintMulti", + "inputQtys": [ + "27452170279779777984331776", + "16233938930583382771367936", + "62657553335370391312400384" ], - "redemptionFee": "5470752027876573944", + "expectedQty": "106486123397595741558197369", "reserves": [ - "22730136803654082610145841", - "129440093121739201388282230", - "46100243905234470433070181" + "686527809392565608286957973", + "815630263543087625356873201", + "514918726988996838379209136" ], - "mAssetSupply": "197661691089426423098032830" + "mAssetSupply": "2016775936241491752251833278" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "6675015015855353535397888", - "expectedQty": "6405066732648079389350072", - "swapFee": "4005009009513212121238", + "type": "mintMulti", + "inputQtys": [ + "1361808631409943462805504", + "1955263603769176714379264", + "734233952853882264616960" + ], + "expectedQty": "4049420598694894876841750", "reserves": [ - "16325070071006003220795769", - "129440093121739201388282230", - "46100243905234470433070181" + "687889618023975551749763477", + "817585527146856802071252465", + "515652960941850720643826096" ], - "mAssetSupply": "190990681082580582774756180" + "mAssetSupply": "2020825356840186647128675028" }, { - "type": "redeemBassets", - "inputQtys": [ - "1608121161123660562432", - "136935085967713009664", - "1437458709639214399488" - ], - "expectedQty": "3278863044994023649785", - "swapFee": "1968498926352225525", + "type": "swap", + "inputIndex": 0, + "inputQty": "14143609155594907287552", + "outputIndex": 2, + "expectedQty": "14094974203510282731401", + "swapFee": "8483371251522207085", "reserves": [ - "16323461949844879560233337", - "129439956186653233675272566", - "46098806446524831218670693" + "687903761633131146657051029", + "817585527146856802071252465", + "515638865967647210361094695" ], - "mAssetSupply": "190987402219535588751106395" + "mAssetSupply": "2020825365323557898650882113", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "711308309145766592512", - "expectedQty": "671976015043467183563", - "swapFee": "426784985487459955", + "inputIndex": 2, + "inputQty": "4722040397640319717343232", + "expectedQty": "4707170984585518649333511", + "swapFee": "2833224238584191830405", "reserves": [ - "16322789973829836093049774", - "129439956186653233675272566", - "46098806446524831218670693" + "687903761633131146657051029", + "817585527146856802071252465", + "510931694983061691711761184" ], - "mAssetSupply": "190986691338011428471973838" + "mAssetSupply": "2016106158150156163125369286" }, { - "type": "redeemMasset", - "inputQty": "141139202294488626102272", - "expectedQtys": [ - "12058926223209590133086", - "95627456120731768313060", - "34056806882152732935672" + "type": "redeemBassets", + "inputQtys": [ + "5418096942266529611776", + "13209730874349396688896", + "15437546386472967340032" ], - "redemptionFee": "42341760688346587830", + "expectedQty": "34080961261936233622000", + "swapFee": "20460853269123214101", "reserves": [ - "16310731047606626502916688", - "129344328730532501906959506", - "46064749639642678485735021" + "687898343536188880127439253", + "817572317415982452674563569", + "510916257436675218744421152" ], - "mAssetSupply": "190845594477477628192459396" + "mAssetSupply": "2016072077188894226891747286" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "358327061125055224217600", - "304917108185949754359808", - "188381221337510296158208" + "1179448501118234370506752", + "671319866398345156100096", + "589484273290076070346752" ], - "expectedQty": "868030361074708126953267", + "expectedQty": "2440217712859930803316185", + "swapFee": "1465009633496056115659", "reserves": [ - "16669058108731681727134288", - "129649245838718451661319314", - "46253130860980188781893229" + "686718895035070645756932501", + "816900997549584107518463473", + "510326773163385142674074400" ], - "mAssetSupply": "191713624838552336319412663" + "mAssetSupply": "2013631859476034296088431101" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "93418188332357582848", - "51296368747429289984", - "14763616991859445760" + "12589120481926204027305984", + "11723765941834520528420864", + "17659226768090141151985664" ], - "expectedQty": "163963067248508446663", - "swapFee": "98436902490599427", + "expectedQty": "41992719014698882293662955", "reserves": [ - "16668964690543349369551440", - "129649194542349704232029330", - "46253116097363196922447469" + "699308015516996849784238485", + "828624763491418628046884337", + "527985999931475283826060064" ], - "mAssetSupply": "191713460875485087810966000" + "mAssetSupply": "2055624578490733178382094056" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "15780983155492266541318144", - "expectedQty": "15522115077370192425170554", + "type": "redeem", + "inputIndex": 0, + "inputQty": "134766896500565121957888", + "expectedQty": "134728668270455330491915", + "swapFee": "80860137900339073174", + "reserves": [ + "699173286848726394453746570", + "828624763491418628046884337", + "527985999931475283826060064" + ], + "mAssetSupply": "2055489892454370513599209342" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "2883162497163750618955776", + "expectedQty": "2882309253796853039821577", + "swapFee": "1729897498298250371373", "reserves": [ - "16668964690543349369551440", - "145430177697841970773347474", - "46253116097363196922447469" - ] + "696290977594929541413924993", + "828624763491418628046884337", + "527985999931475283826060064" + ], + "mAssetSupply": "2052608459854705061230624939" }, { "type": "mintMulti", "inputQtys": [ - "43297856535420880", - "38814520454563232", - "32066853851961932" + "2273408380465557935226880", + "4133257359173910559457280", + "100608683163554240528384" ], - "expectedQty": "116711863230847056", + "expectedQty": "6499972805434916941326155", "reserves": [ - "16668964733841205904972320", - "145430177736656491227910706", - "46253116129430050774409401" + "698564385975395099349151873", + "832758020850592538606341617", + "528086608614638838066588448" ], - "mAssetSupply": "207235576069567143466983610" + "mAssetSupply": "2059108432660139978171951094" }, { - "type": "mint", + "type": "redeem", "inputIndex": 0, - "inputQty": "673828044908436914176", - "expectedQty": "720697676702120212209", + "inputQty": "333566526766226710986752", + "expectedQty": "333464790334161284297251", + "swapFee": "200139916059736026592", "reserves": [ - "16669638561886114341886496", - "145430177736656491227910706", - "46253116129430050774409401" - ] + "698230921185060938064854622", + "832758020850592538606341617", + "528086608614638838066588448" + ], + "mAssetSupply": "2058775066273289811196990934" }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "10994011191464914944", - "outputIndex": 2, - "expectedQty": "10722942220530527334", - "swapFee": "6479517167871273", + "inputQty": "11372268733806768996483072", + "expectedQty": "11384096624127948857055988", + "swapFee": "6823361240284061397889", "reserves": [ - "16669638561886114341886496", - "145430188730667682692825650", - "46253105406487830243882067" + "698230921185060938064854622", + "821373924226464589749285629", + "528086608614638838066588448" ], - "mAssetSupply": "207236296773723362755067092", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2047409620900723326261905751" }, { "type": "mintMulti", "inputQtys": [ - "129632644253107388416", - "53856334996977754112", - "55708724567966187520" - ], - "expectedQty": "247622320465794559813", - "reserves": [ - "16669768194530367449274912", - "145430242587002679670579762", - "46253161115212398210069587" + "4635523474375352564842496", + "5439480208075993437437952", + "1598444512533065148399616" ], - "mAssetSupply": "207236544396043828549626905" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1886966814041582241579008", - "expectedQty": "1898177734903155254557692", - "reserves": [ - "16669768194530367449274912", - "145430242587002679670579762", - "48140127929253980451648595" - ] - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "194874379901818770554880", - "expectedQty": "193701918057882209040451", - "swapFee": "116924627941091262332", + "expectedQty": "11666996674015362796192707", "reserves": [ - "16669768194530367449274912", - "145430242587002679670579762", - "47946426011196098242608144" + "702866444659436290629697118", + "826813404434540583186723581", + "529685053127171903214988064" ], - "mAssetSupply": "208939964675673106124892049" + "mAssetSupply": "2059076617574738689058098458" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "496229948269569966080", - "outputIndex": 2, - "expectedQty": "527555287786623070779", - "swapFee": "318466455011129418", + "inputIndex": 2, + "inputQty": "418304193518795581554688", + "outputIndex": 1, + "expectedQty": "419742081290523863214432", + "swapFee": "251590965387141234466", "reserves": [ - "16670264424478637019240992", - "145430242587002679670579762", - "47945898455908311619537365" + "702866444659436290629697118", + "826393662353250059323509149", + "530103357320690698796542752" ], - "mAssetSupply": "208939964994139561136021467", + "mAssetSupply": "2059076869165704076199332924", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "220189216922474", - "expectedQty": "221401173900910", + "type": "redeemBassets", + "inputQtys": [ + "217670785220323213312", + "67556186946648358912", + "52277146676895178752" + ], + "expectedQty": "337447579084515733058", + "swapFee": "202590101511616409", "reserves": [ - "16670264424478637019240992", - "145430242587002679670579762", - "47945898456128500836459839" - ] + "702866226988651070306483806", + "826393594797063112675150237", + "530103305043544021901364000" + ], + "mAssetSupply": "2059076531718124991683599866" }, { "type": "redeemMasset", - "inputQty": "24214540358072732876", + "inputQty": "414181103269800365260", "expectedQtys": [ - "1931376277678457992", - "16849194076196841174", - "5554895143365004333" + "141338396455619272143", + "166178343822597184431", + "106597739674705233017" ], - "redemptionFee": "7264362107421819", + "redemptionFee": "124254330980940109", "reserves": [ - "16670262493102359340783000", - "145430225737808603473738588", - "47945892901233357471455506" + "702866085650254614687211663", + "826393428618719290077965806", + "530103198445804347196130983" ], - "mAssetSupply": "208939940787084966344611320" + "mAssetSupply": "2059076117661276052864174715" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2281594143733344987250688", - "expectedQty": "2112112556038437790873505", - "swapFee": "1368956486240006992350", - "reserves": [ - "14558149937063921549909495", - "145430225737808603473738588", - "47945892901233357471455506" + "type": "redeemMasset", + "inputQty": "834839220904438582476", + "expectedQtys": [ + "284887059910189151945", + "334955404756058769299", + "214862467740917447777" ], - "mAssetSupply": "206659715599837861364352982" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "16745900237045430272", - "expectedQty": "16835922363556844241", + "redemptionFee": "250451766271331574", "reserves": [ - "14558149937063921549909495", - "145430225737808603473738588", - "47945909647133594516885778" - ] + "702865800763194704498059718", + "826393093663314534019196507", + "530102983583336606278683206" + ], + "mAssetSupply": "2059075283072506914696923813" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "298896129990788418371584", - "expectedQty": "273378118897140910500045", - "swapFee": "179337677994473051022", + "type": "mintMulti", + "inputQtys": [ + "5649533226223649633075200", + "610667087390285787824128", + "3610775341029291267719168" + ], + "expectedQty": "9876701059839523569180295", "reserves": [ - "14284771818166780639409450", - "145430225737808603473738588", - "47945909647133594516885778" + "708515333989418354131134918", + "827003760750704819807020635", + "533713758924365897546402374" ], - "mAssetSupply": "206361015643447430975876661" + "mAssetSupply": "2068951984132346438266104108" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "76034405327281537024", - "expectedQty": "83214355943398349410", + "type": "redeemBassets", + "inputQtys": [ + "16166893158494700673433600", + "12845513801448045039058944", + "10934931372185247461408768" + ], + "expectedQty": "39947517534699778691619123", + "swapFee": "23982900260976453086823", "reserves": [ - "14284847852572107920946474", - "145430225737808603473738588", - "47945909647133594516885778" - ] + "692348440830923653457701318", + "814158246949256774767961691", + "522778827552180650084993606" + ], + "mAssetSupply": "2029004466597646659574484985" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "497385467553494111092736", - "expectedQty": "542798946591730003828076", + "type": "redeemMasset", + "inputQty": "1258368154935743064991334", + "expectedQtys": [ + "429258720535258063447600", + "504781273110447009948074", + "324124902149917943109988" + ], + "redemptionFee": "377510446480722919497", "reserves": [ - "14782233320125602032039210", - "145430225737808603473738588", - "47945909647133594516885778" - ] + "691919182110388395394253718", + "813653465676146327758013617", + "522454702650030732141883618" + ], + "mAssetSupply": "2027746475953157397232413148" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "7345587902620", - "17014689699397", - "13157954783255" + "3997044554499328512", + "5623135506214068224", + "4398699292391513088" ], - "expectedQty": "37907951264259", + "expectedQty": "14019102450141331318", + "swapFee": "8416511376910945", "reserves": [ - "14782233320132947619941830", - "145430225737825618163437985", - "47945909647146752471669033" + "691919178113343840894925206", + "813653460053010821543945393", + "522454698251331439750370530" ], - "mAssetSupply": "206903897804433012329318406" + "mAssetSupply": "2027746461934054947091081830" }, { "type": "redeemBassets", "inputQtys": [ - "10413330915722528", - "16613421995496938", - "10891103928107362" + "594763118678316234571776", + "149561912168619016454144", + "1055326428822478677606400" ], - "expectedQty": "38573955905023520", - "swapFee": "23158268504116", + "expectedQty": "1801759307923835406863576", + "swapFee": "1081704607518812531637", "reserves": [ - "14782233309719616704219302", - "145430225721212196167941047", - "47945909636255648543561671" + "691324414994665524660353430", + "813503898140842202527491249", + "521399371822508961072764130" ], - "mAssetSupply": "206903897765859056424294886" + "mAssetSupply": "2025944702626131111684218254" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "22243760455590984286208", - "1769170735086597849481216", - "769312406197923714433024" + "6792693677099692032", + "13413064332054036480", + "18149576962141138944" ], - "expectedQty": "2532716104428254896013809", - "swapFee": "1520541987849662735249", + "expectedQty": "38375373205107674629", "reserves": [ - "14759989549264025719933094", - "143661054986125598318459831", - "47176597230057724829128647" + "691324421787359201760045462", + "813503911553906534581527729", + "521399389972085923213903074" ], - "mAssetSupply": "204371181661430801528281077" + "mAssetSupply": "2025944741001504316791892883" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "42144821121683048890368", + "inputIndex": 1, + "inputQty": "3891709676931432448", "outputIndex": 0, - "expectedQty": "38974115810027410480873", - "swapFee": "25426007801123583447", + "expectedQty": "3884422757445413127", + "swapFee": "2331261511611888", "reserves": [ - "14721015433453998309452221", - "143661054986125598318459831", - "47218742051179407878019015" + "691324417902936444314632335", + "813503915445616211512960177", + "521399389972085923213903074" ], - "mAssetSupply": "204371207087438602651864524", + "mAssetSupply": "2025944741003835578303504771", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 2, - "inputQty": "1021735042320763243724800", - "expectedQty": "1015228757630195039255222", - "swapFee": "613041025392457946234", + "inputQty": "1906544351681895517388800", + "expectedQty": "1900767214812339951539690", + "swapFee": "1143926611009137310433", "reserves": [ - "14721015433453998309452221", - "143661054986125598318459831", - "46203513293549212838763793" + "691324417902936444314632335", + "813503915445616211512960177", + "519498622757273583262363384" ], - "mAssetSupply": "203350085086143231866085958" + "mAssetSupply": "2024039340578764691923426404" }, { - "type": "redeemBassets", - "inputQtys": [ - "271309683578506649272320", - "236744902644891729788928", - "265657562740111230107648" - ], - "expectedQty": "794660334911341393106890", - "swapFee": "477082450417055068905", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1721961647645083041792", + "expectedQty": "1723725179134481296405", + "swapFee": "1033176988587049825", "reserves": [ - "14449705749875491660179901", - "143424310083480706588670903", - "45937855730809101608656145" + "691324417902936444314632335", + "813502191720437077031663772", + "519498622757273583262363384" ], - "mAssetSupply": "202555424751231890472979068" + "mAssetSupply": "2024037619650294035427434437" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "465379503410490310656", - "outputIndex": 0, - "expectedQty": "429452078725417525129", - "swapFee": "280971957099851223", + "type": "redeemBassets", + "inputQtys": [ + "74871905546412883968", + "42315733035127021568", + "47966970712212258816" + ], + "expectedQty": "165177403521196840858", + "swapFee": "99165941677724739", "reserves": [ - "14449276297796766242654772", - "143424310083480706588670903", - "45938321110312512098966801" + "691324343031030897901748367", + "813502149404704041904642204", + "519498574790302871050104568" ], - "mAssetSupply": "202555425032203847572830291", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2024037454472890514230593579" }, { - "type": "mintMulti", - "inputQtys": [ - "265946616063508594294784", - "132579077081539008266240", - "84992735651154171527168" + "type": "redeemMasset", + "inputQty": "734596975177506697196339", + "expectedQtys": [ + "250831533133862316939732", + "295161010023503719773379", + "188488406764607652535883" ], - "expectedQty": "504915540349661204383872", + "redemptionFee": "220379092553252009158", "reserves": [ - "14715222913860274836949556", - "143556889160562245596937143", - "46023313845963666270493969" + "691073511497897035584808635", + "813206988394680538184868825", + "519310086383538263397568685" ], - "mAssetSupply": "203060340572553508777214163" + "mAssetSupply": "2023303077876805560785406398" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "738165512006200696242176", - "expectedQty": "732980008085845585350371", - "swapFee": "442899307203720417745", + "inputIndex": 1, + "inputQty": "9915229907197037117440", + "expectedQty": "9925384132730875186685", + "swapFee": "5949137944318222270", "reserves": [ - "14715222913860274836949556", - "143556889160562245596937143", - "45290333837877820685143598" + "691073511497897035584808635", + "813197063010547807309682140", + "519310086383538263397568685" ], - "mAssetSupply": "202322617959854511801389732" + "mAssetSupply": "2023293168596036308066511228" }, { - "type": "redeemMasset", - "inputQty": "1574294650908655694643", - "expectedQtys": [ - "114466425576788243937", - "1116696910765450325246", - "352303370322600706490" + "type": "redeemBassets", + "inputQtys": [ + "5892161329182107762688", + "4551007150869339176960", + "837446301190852837376" ], - "redemptionFee": "472288395272596708", + "expectedQty": "11273223375219129723529", + "swapFee": "6767994822024692649", "reserves": [ - "14715108447434698048705619", - "143555772463651480146611897", - "45289981534507498084437108" + "691067619336567853477045947", + "813192512003396937970505180", + "519309248937237072544731309" ], - "mAssetSupply": "202321044137491998418291797" + "mAssetSupply": "2023281895372661088936787699" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "97502915131379875315712", - "expectedQty": "95586226407451561585310", + "type": "redeemMasset", + "inputQty": "37901820684139644741222", + "expectedQtys": [ + "12941777036753625525386", + "15228837068663207726951", + "9725219826276523158572" + ], + "redemptionFee": "11370546205241893422", "reserves": [ - "14715108447434698048705619", - "143653275378782860021927609", - "45289981534507498084437108" - ] + "691054677559531099851520561", + "813177283166328274762778229", + "519299523717410796021572737" + ], + "mAssetSupply": "2023244004922523154533939899" }, { - "type": "mintMulti", - "inputQtys": [ - "2340921719547943424", - "5601987319444964352", - "1049141173789568000" + "type": "redeemMasset", + "inputQty": "748050949698151014", + "expectedQtys": [ + "255425951270367824", + "300564612105269661", + "191942228519742648" ], - "expectedQty": "9092298111932511145", + "redemptionFee": "224415284909445", "reserves": [ - "14715110788356417596649043", - "143653280980770179466891961", - "45289982583648671874005108" + "691054677304105148581152737", + "813177282865763662657508568", + "519299523525468567501830089" ], - "mAssetSupply": "202416639456197561912388252" + "mAssetSupply": "2023244004174696620120698330" }, { "type": "redeemBassets", "inputQtys": [ - "110035510351834629799936", - "609291315437495274962944", - "687692681080793070567424" + "182457733722972848128", + "179633635739842969600", + "244654761702464225280" ], - "expectedQty": "1409328481630236722829043", - "swapFee": "846104751829239577443", + "expectedQty": "606990885949672447808", + "swapFee": "364413179477489962", "reserves": [ - "14605075278004582966849107", - "143043989665332684191929017", - "44602289902567878803437684" + "691054494846371425608304609", + "813177103232127922814538968", + "519299278870706865037604809" ], - "mAssetSupply": "201007310974567325189559209" + "mAssetSupply": "2023243397183810670448250522" }, { - "type": "redeemBassets", - "inputQtys": [ - "4666605286659602", - "7136412485070409", - "3120256466028914" - ], - "expectedQty": "15211834721922760", - "swapFee": "9132580381382", + "type": "mint", + "inputIndex": 2, + "inputQty": "603368922433180510715904", + "expectedQty": "604845826485598260006239", + "reserves": [ + "691054494846371425608304609", + "813177103232127922814538968", + "519902647793140045548320713" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "10554409638954828579209216", + "expectedQty": "10564824437846432864716082", + "swapFee": "6332645783372897147525", "reserves": [ - "14605075273337977680189505", - "143043989658196271706858608", - "44602289899447622337408770" + "691054494846371425608304609", + "802612278794281489949822886", + "519902647793140045548320713" ], - "mAssetSupply": "201007310959355490467636449" + "mAssetSupply": "2013300166017124813026195070" }, { "type": "redeemMasset", - "inputQty": "26921720366248047411", + "inputQty": "789482291455372057955532", "expectedQtys": [ - "1955529838367716435", - "19152711282934355870", - "5971972559232317409" + "270904270874318883974596", + "314636683218271468103608", + "203810045049109281184217" ], - "redemptionFee": "8076516109874414", + "redemptionFee": "236844687436611617386", "reserves": [ - "14605073317808139312473070", - "143043970505484988772502738", - "44602283927475063105091361" + "690783590575497106724330013", + "802297642111063218481719278", + "519698837748090936267136496" ], - "mAssetSupply": "201007284045711640329463452" + "mAssetSupply": "2012510920570356877579856924" }, { "type": "redeemMasset", - "inputQty": "8713736716838534276710", + "inputQty": "5332896694921627238", "expectedQtys": [ - "632945143239108503913", - "6199146312445398485884", - "1932944694967394817234" + "1829939070732753522", + "2125348403879522425", + "1376722350073970122" ], - "redemptionFee": "2614121015051560283", + "redemptionFee": "1599869008476488", "reserves": [ - "14604440372664900203969157", - "143037771359172543374016854", - "44600350982780095710274127" + "690783588745558035991576491", + "802297639985714814602196853", + "519698836371368586193166374" ], - "mAssetSupply": "200998572923115816846747025" + "mAssetSupply": "2012510915239060051666706174" }, { "type": "mintMulti", "inputQtys": [ - "65669629145635627204608", - "57029201989070246379520", - "31268014722668677824512" + "964688183291835520", + "10613034731918739456", + "7861718009434956800" ], - "expectedQty": "158777524819006920383505", + "expectedQty": "19441361495285493768", "reserves": [ - "14670110001810535831173765", - "143094800561161613620396374", - "44631618997502764388098639" + "690783589710246219283412011", + "802297650598749546520936309", + "519698844233086595628123174" ], - "mAssetSupply": "201157350447934823767130530" + "mAssetSupply": "2012510934680421546952199942" }, { - "type": "mintMulti", - "inputQtys": [ - "11323733866909794304000", - "4723699552134717505536", - "19884836397991296237568" + "type": "swap", + "inputIndex": 1, + "inputQty": "4927204953247772569501696", + "outputIndex": 2, + "expectedQty": "4904509368704099148225182", + "swapFee": "2951690145808099662396", + "reserves": [ + "690783589710246219283412011", + "807224855551997319090438005", + "514794334864382496479897992" + ], + "mAssetSupply": "2012513886370567355051862338", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "3668633943551752269725696", + "expectedQty": "3667137081656225745543755", + "reserves": [ + "694452223653797971553137707", + "807224855551997319090438005", + "514794334864382496479897992" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "13806588933024608256", + "outputIndex": 0, + "expectedQty": "13782090415192923008", + "swapFee": "8270719662530441", + "reserves": [ + "694452209871707556360214699", + "807224869358586252115046261", + "514794334864382496479897992" ], - "expectedQty": "36960896426768646860779", + "mAssetSupply": "2016181023460494300459936534", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "13000606159697243866660864", + "expectedQty": "13031908115125005041502807", + "reserves": [ + "694452209871707556360214699", + "807224869358586252115046261", + "527794941024079740346558856" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "173138622485487714304", + "outputIndex": 0, + "expectedQty": "172831236001420111467", + "swapFee": "103724567715641997", "reserves": [ - "14681433735677445625477765", - "143099524260713748337901910", - "44651503833900755684336207" + "694452037040471554940103232", + "807225042497208737602760565", + "527794941024079740346558856" ], - "mAssetSupply": "201194311344361592413991309" + "mAssetSupply": "2029212931679343873217081338", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "26599145524374756392960", - "210083551806253141327872", - "170018800337186950479872" + "320316528698328449286144", + "1086123546984978151636992", + "318298148116280805163008" ], - "expectedQty": "406062621743758995382727", - "swapFee": "243783843352266757284", + "expectedQty": "1723702939426509535322669", + "swapFee": "1034842669257460197311", "reserves": [ - "14654834590153070869084805", - "142889440708907495196574038", - "44481485033563568733856335" + "694131720511773226490817088", + "806138918950223759451123573", + "527476642875963459541395848" ], - "mAssetSupply": "200788248722617833418608582" + "mAssetSupply": "2027489228739917363681758669" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2295986012536320672399360", - "686011651658339183493120", - "2234984093387586090827776" + "2942086197214936888770560", + "1840501617361004498255872", + "2581553201800670588436480" ], - "expectedQty": "5454159609519209036266177", - "swapFee": "3274460441976711448628", + "expectedQty": "7366232221460542784607124", "reserves": [ - "12358848577616750196685445", - "142203429057249156013080918", - "42246500940175982643028559" + "697073806708988163379587648", + "807979420567584763949379445", + "530058196077764130129832328" ], - "mAssetSupply": "195334089113098624382342405" + "mAssetSupply": "2034855460961377906466365793" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "20195733379281988878336", - "10436949002954374905856", - "1216453160781728186368" + "62276739749602503163904", + "424166422915630000766976", + "2422872342552122683817984" + ], + "expectedQty": "2914161808088444198192324", + "reserves": [ + "697136083448737765882751552", + "808403586990500393950146421", + "532481068420316252813650312" + ], + "mAssetSupply": "2037769622769466350664558117" + }, + { + "type": "redeemMasset", + "inputQty": "1486787420997107587638886", + "expectedQtys": [ + "508488398329666561021043", + "589646490709849210425348", + "388389658848903818506968" ], - "expectedQty": "34043660227589190956401", - "swapFee": "20438459212080763031", + "redemptionFee": "446036226299132276291", "reserves": [ - "12338652844237468207807109", - "142192992108246201638175062", - "42245284487015200914842191" + "696627595050408099321730509", + "807813940499790544739721073", + "532092678761467348995143344" ], - "mAssetSupply": "195300045452871035191386004" + "mAssetSupply": "2036283281384695542209195522" }, { "type": "mint", "inputIndex": 2, - "inputQty": "235113962910419217547264", - "expectedQty": "237176345048480475195423", + "inputQty": "5841256682684421872025600", + "expectedQty": "5854178785260224664598771", "reserves": [ - "12338652844237468207807109", - "142192992108246201638175062", - "42480398449925620132389455" + "696627595050408099321730509", + "807813940499790544739721073", + "537933935444151770867168944" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "248818528717340409856", - "199832434000671768576", - "127631227758755151872" + "159285123687426174222336", + "218694631991629790052352", + "64006367593844602568704" ], - "expectedQty": "602671201647902700472", - "swapFee": "361819812876467500", + "expectedQty": "441753752353846328926077", "reserves": [ - "12338404025708750867397253", - "142192792275812200966406486", - "42480270818697861377237583" + "696786880174095525495952845", + "808032635131782174529773425", + "537997941811745615469737648" ], - "mAssetSupply": "195536619126717867763880955" + "mAssetSupply": "2042579213922309613202720370" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15549627328894867603456", - "expectedQty": "15912790103808409000434", - "swapFee": "9329776397336920562", + "type": "swap", + "inputIndex": 2, + "inputQty": "42313927145981167777349632", + "outputIndex": 0, + "expectedQty": "42364538764838946339840441", + "swapFee": "25436027567989978838434", "reserves": [ - "12338404025708750867397253", - "142176879485708392557406052", - "42480270818697861377237583" + "654422341409256579156112404", + "808032635131782174529773425", + "580311868957726783247087280" ], - "mAssetSupply": "195521078829165370233198061" + "mAssetSupply": "2042604649949877603181558804", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "4098658150672325983338496", - "outputIndex": 2, - "expectedQty": "3951562348820029947700424", - "swapFee": "2400479979760540121118", + "inputQty": "19868072853344436092928", + "expectedQty": "19884309062121731450877", + "swapFee": "11920843712006661655", "reserves": [ - "12338404025708750867397253", - "146275537636380718540744548", - "38528708469877831429537159" + "654422341409256579156112404", + "808012750822720052798322548", + "580311868957726783247087280" ], - "mAssetSupply": "195523479309145130773319179", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2042584793797867970752127531" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "4741969501530142720", - "expectedQty": "4620508957295730680", + "inputIndex": 0, + "inputQty": "111032723296682639360", + "expectedQty": "111062104112363526354", "reserves": [ - "12338404025708750867397253", - "146275542378350220070887268", - "38528708469877831429537159" + "654422452441979875838751764", + "808012750822720052798322548", + "580311868957726783247087280" ] }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "218329709316270595244032", + "outputIndex": 1, + "expectedQty": "218812000260674560350485", + "swapFee": "131180229491746185833", + "reserves": [ + "654422452441979875838751764", + "807793938822459378237972063", + "580530198667043053842331312" + ], + "mAssetSupply": "2042585036040201574861839718", + "hardLimitError": false, + "insufficientLiquidityError": false + }, { "type": "redeem", "inputIndex": 0, - "inputQty": "540302775639268931928064", - "expectedQty": "476383222641443751577243", - "swapFee": "324181665383561359156", + "inputQty": "343525909063523752738816", + "expectedQty": "343228348321165144147313", + "swapFee": "206115545438114251643", "reserves": [ - "11862020803067307115820010", - "146275542378350220070887268", - "38528708469877831429537159" + "654079224093658710694604451", + "807793938822459378237972063", + "580530198667043053842331312" ], - "mAssetSupply": "194983505335680202698480951" + "mAssetSupply": "2042241716246683489223352545" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "401713509969295966208", - "expectedQty": "457438314638082449949", + "inputIndex": 1, + "inputQty": "489178310778123058151424", + "expectedQty": "488485420859063483625159", "reserves": [ - "11862422516577276411786218", - "146275542378350220070887268", - "38528708469877831429537159" + "654079224093658710694604451", + "808283117133237501296123487", + "580530198667043053842331312" ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "18918776114720324714496", - "expectedQty": "16601441361750974634091", - "swapFee": "11351265668832194828", + "inputIndex": 1, + "inputQty": "162686010623435112448", + "expectedQty": "162819273421465297773", + "swapFee": "97611606374061067", "reserves": [ - "11845821075215525437152127", - "146275542378350220070887268", - "38528708469877831429537159" + "654079224093658710694604451", + "808282954313964079830825714", + "580530198667043053842331312" ], - "mAssetSupply": "194965055349145789288411232" + "mAssetSupply": "2042730039079143535645926323" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "116671692867448921391104", - "expectedQty": "119779193590945030866601", - "swapFee": "70003015720469352834", + "type": "swap", + "inputIndex": 2, + "inputQty": "4143551151141425774592", + "outputIndex": 1, + "expectedQty": "4152711990434599309597", + "swapFee": "2489587951525867463", "reserves": [ - "11845821075215525437152127", - "146155763184759275040020667", - "38528708469877831429537159" + "654079224093658710694604451", + "808278801601973645231516117", + "580534342218194195268105904" ], - "mAssetSupply": "194848453659294060836372962" + "mAssetSupply": "2042730041568731487171793786", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4908962755270225942282240", - "expectedQty": "4965186458905800650095054", + "type": "redeem", + "inputIndex": 0, + "inputQty": "6039015507827480942608384", + "expectedQty": "6033598557589679502426928", + "swapFee": "3623409304696488565565", "reserves": [ - "11845821075215525437152127", - "146155763184759275040020667", - "43437671225148057371819399" - ] + "648045625536069031192177523", + "808278801601973645231516117", + "580534342218194195268105904" + ], + "mAssetSupply": "2036694649470208702717750967" }, { - "type": "mintMulti", - "inputQtys": [ - "604149595463930", - "353811518799418", - "403897635900169" + "type": "redeemMasset", + "inputQty": "581303333724189779558", + "expectedQtys": [ + "184906495091297982101", + "230625737404190082705", + "165643538463672301890" ], - "expectedQty": "1439777433147868", + "redemptionFee": "174391000117256933", "reserves": [ - "11845821075819675032616057", - "146155763185113086558820085", - "43437671225551955007719568" + "648045440629573939894195422", + "808278570976236241041433412", + "580534176574655731595804014" ], - "mAssetSupply": "199813640119639638919615884" + "mAssetSupply": "2036694068341265978645228342" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "697199669845070868119552", - "expectedQty": "608633575833648509189847", - "swapFee": "418319801907042520871", + "inputIndex": 2, + "inputQty": "2929369350834864011608064", + "expectedQty": "2923582977727590009835028", + "swapFee": "1757621610500918406964", "reserves": [ - "11237187499986026523426210", - "146155763185113086558820085", - "43437671225551955007719568" + "648045440629573939894195422", + "808278570976236241041433412", + "577610593596928141585968986" ], - "mAssetSupply": "199116858769596475094017203" + "mAssetSupply": "2033766456612041615552027242" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "370947007322180", - "235037894529166", - "338989724414956" + "6058801386927337504768000", + "2180004291219094239182848", + "5454496145002316683018240" ], - "expectedQty": "998447288960625", - "swapFee": "599428030194", + "expectedQty": "13699531736176376238719325", "reserves": [ - "11237187499615079516104030", - "146155763184878048664290919", - "43437671225212965283304612" + "654104242016501277398963422", + "810458575267455335280616260", + "583065089741930458268987226" ], - "mAssetSupply": "199116858768598027805056578" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "240012337699769861275648", - "expectedQty": "242154828020420705107185", - "reserves": [ - "11237187499615079516104030", - "146155763184878048664290919", - "43677683562912735144580260" - ] + "mAssetSupply": "2047465988348217991790746567" }, { "type": "mint", "inputIndex": 0, - "inputQty": "8078223131387890761728", - "expectedQty": "9308628742729366018712", + "inputQty": "1106759126654668133892096", + "expectedQty": "1107074894706060213985827", "reserves": [ - "11245265722746467406865758", - "146155763184878048664290919", - "43677683562912735144580260" + "655211001143155945532855518", + "810458575267455335280616260", + "583065089741930458268987226" ] }, { "type": "redeemBassets", "inputQtys": [ - "2433843185937107910656", - "9521000395000860639232", - "8706353445093039407104" + "1333969648867976264286208", + "886151641494625097613312", + "978817578513324734152704" ], - "expectedQty": "20860433395609048960484", - "swapFee": "12523774301946597334", + "expectedQty": "3199406270356037167790995", + "swapFee": "1920796239957596858789", "reserves": [ - "11242831879560530298955102", - "146146242184483047803651687", - "43668977209467642105173156" + "653877031494287969268569310", + "809572423625960710183002948", + "582086272163417133534834522" ], - "mAssetSupply": "199347461791965568827221991" + "mAssetSupply": "2045373656972568014836941399" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "232626479906768679862272", - "781965904322548838957056", - "672974477185349308121088" + "9823025167619124625408", + "32679818115143660732416", + "8525753510179353133056" ], - "expectedQty": "1709048445586275551693344", - "swapFee": "1026044694168266290790", + "expectedQty": "50996728421344147856978", "reserves": [ - "11010205399653761619092830", - "145364276280160498964694631", - "42996002732282292797052068" + "653886854519455588393194718", + "809605103444075853843735364", + "582094797916927312887967578" ], - "mAssetSupply": "197638413346379293275528647" + "mAssetSupply": "2045424653700989358984798377" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "146770712730709478342656", + "expectedQty": "146812339150943998072904", + "reserves": [ + "654033625232186297871537374", + "809605103444075853843735364", + "582094797916927312887967578" + ] }, { "type": "redeemMasset", - "inputQty": "534059388197851972711219", + "inputQty": "1519720128689659047208550", "expectedQtys": [ - "29742899819285373683093", - "392686144332938407459583", - "116149132143911477528445" + "485756619693771389618892", + "601300947174094541653898", + "432327009604552309352620" + ], + "redemptionFee": "455916038606897714162", + "reserves": [ + "653547868612492526481918482", + "809003802496901759302081466", + "581662470907322760578614958" ], - "redemptionFee": "160217816459355591813", + "mAssetSupply": "2044052201827489250833376893" + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "1134275360842721567703040", + "expectedQty": "1132027459976345013654908", + "swapFee": "680565216505632940621", "reserves": [ - "10980462499834476245409737", - "144971590135827560557235048", - "42879853600138381319523623" + "653547868612492526481918482", + "809003802496901759302081466", + "580530443447346415564960050" ], - "mAssetSupply": "197104514175997900658409241" + "mAssetSupply": "2042918607031863034898614474" }, { "type": "redeemBassets", "inputQtys": [ - "351564440438391156244480", - "7362221064356540666871808", - "2851727583078051687170048" + "1271642072148267153489920", + "1705214953885299392905216", + "3755972705622091464966144" ], - "expectedQty": "10452505927374680764177448", - "swapFee": "6275268717655401699526", + "expectedQty": "6736018799899984767364426", + "swapFee": "4044037702561527777084", "reserves": [ - "10628898059396085089165257", - "137609369071471019890363240", - "40028126017060329632353575" + "652276226540344259328428562", + "807298587543016459909176250", + "576774470741724324099993906" ], - "mAssetSupply": "186652008248623219894231793" + "mAssetSupply": "2036182588231963050131250048" }, { - "type": "redeemBassets", - "inputQtys": [ - "6659110037819550072832", - "7038408404407339188224", - "3845502052127690194944" + "type": "redeem", + "inputIndex": 2, + "inputQty": "2126132174390124710199296", + "expectedQty": "2121811449231799950955654", + "swapFee": "1275679304634074826119", + "reserves": [ + "652276226540344259328428562", + "807298587543016459909176250", + "574652659292492524149038252" + ], + "mAssetSupply": "2034057731736877559495876871" + }, + { + "type": "redeemMasset", + "inputQty": "2345737685455818932302643", + "expectedQtys": [ + "751999258122676359913718", + "930722160664679041164134", + "662508237895205698456496" ], - "expectedQty": "18403745862843865713885", - "swapFee": "11048876843812606992", + "redemptionFee": "703721305636745679690", "reserves": [ - "10622238949358265539092425", - "137602330663066612551175016", - "40024280515008201942158631" + "651524227282221582968514844", + "806367865382351780868012116", + "573990151054597318450581756" ], - "mAssetSupply": "186633604502760376028517908" + "mAssetSupply": "2031712697772727377309253918" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "17606246755575353311232", - "outputIndex": 0, - "expectedQty": "14876467109388848270718", - "swapFee": "10285733268786652968", + "inputIndex": 0, + "inputQty": "8425266737087264063488", + "outputIndex": 2, + "expectedQty": "8410163871620263392627", + "swapFee": "5056439429926781019", "reserves": [ - "10607362482248876690821707", - "137619936909822187904486248", - "40024280515008201942158631" + "651532652548958670232578332", + "806367865382351780868012116", + "573981740890725698187189129" ], - "mAssetSupply": "186633614788493644815170876", + "mAssetSupply": "2031712702829166807236034937", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "973279192571090698240", - "expectedQty": "982952823224968939082", + "inputIndex": 1, + "inputQty": "9166357545097657929695232", + "expectedQty": "9152842479961364409665238", "reserves": [ - "10607362482248876690821707", - "137619936909822187904486248", - "40025253794200773032856871" + "651532652548958670232578332", + "815534222927449438797707348", + "573981740890725698187189129" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1588654100601764839424", - "10811034291073573715968", - "6295010649307998060544" + "263988932895325410033664", + "231506801597083650359296", + "65484143391124903428096" ], - "expectedQty": "18713638735527152728736", - "swapFee": "11234924195833791912", + "expectedQty": "560805242151439412542276", "reserves": [ - "10605773828148274925982283", - "137609125875531114330770280", - "40018958783551465034796327" + "651796641481853995642611996", + "815765729729046522448066644", + "574047225034116823090617225" ], - "mAssetSupply": "186615884102581342631381222" + "mAssetSupply": "2041426350551279611058242451" }, { "type": "redeemBassets", "inputQtys": [ - "13004871034514995937280", - "5482675591018800218112", - "4878689043779072032768" + "7012339195453102882816", + "7395323591646522638336", + "5194381842460373417984" ], - "expectedQty": "25247721092137697857746", - "swapFee": "15157727291657613282", + "expectedQty": "19600684914378456006894", + "swapFee": "11767471431485965183", "reserves": [ - "10592768957113759930045003", - "137603643199940095530552168", - "40014080094507685962763559" + "651789629142658542539729180", + "815758334405454875925428308", + "574042030652274362717199241" ], - "mAssetSupply": "186590636381489204933523476" + "mAssetSupply": "2041406749866365232602235557" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1140081897575476449247232", - "expectedQty": "1109829854758197567299936", + "inputIndex": 0, + "inputQty": "372561225595131185332224", + "expectedQty": "372667244866700863337997", "reserves": [ - "10592768957113759930045003", - "138743725097515571979799400", - "40014080094507685962763559" + "652162190368253673725061404", + "815758334405454875925428308", + "574042030652274362717199241" ] }, { - "type": "redeemMasset", - "inputQty": "2994911013166300056780", - "expectedQtys": [ - "168965393242793501057", - "2213102935217733955003", - "638265103844888656569" - ], - "redemptionFee": "898473303949890017", + "type": "swap", + "inputIndex": 2, + "inputQty": "515725352523572367589376", + "outputIndex": 0, + "expectedQty": "516035819584539596596753", + "swapFee": "309896544950192384543", "reserves": [ - "10592599991720517136543946", - "138741511994580354245844397", - "40013441829403841074106990" + "651646154548669134128464651", + "815758334405454875925428308", + "574557756004797935084788617" ], - "mAssetSupply": "187697472223707540150656649" + "mAssetSupply": "2041779727007776883657958097", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "749168158259433267", + "inputQty": "30039676870668727091", "expectedQtys": [ - "42266194858142726", - "553601173032098931", - "159660133548745831" + "9584465496363673551", + "11998241000739670079", + "8450642959613810785" ], - "redemptionFee": "224750447477829", + "redemptionFee": "9011903061200618", "reserves": [ - "10592599949454322278401220", - "138741511440979181213745466", - "40013441669743707525361159" + "651646144964203637764791100", + "815758322407213875185758229", + "574557747554154975470977832" ], - "mAssetSupply": "187697471474764132338701211" + "mAssetSupply": "2041779696977111916050431624" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "37466990137332350320640", - "expectedQty": "37852940296869164271888", + "type": "swap", + "inputIndex": 0, + "inputQty": "56304483253003306926080", + "outputIndex": 2, + "expectedQty": "56203510194897953293878", + "swapFee": "33792484256914312468", "reserves": [ - "10592599949454322278401220", - "138741511440979181213745466", - "40050908659881039875681799" - ] + "651702449447456641071717180", + "815758322407213875185758229", + "574501544043960077517683954" + ], + "mAssetSupply": "2041779730769596172964744092", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1053814698577302656", - "10884751550732838912", - "38592043119203680256" - ], - "expectedQty": "50800118124214544115", - "swapFee": "30498369896466606", + "type": "mint", + "inputIndex": 0, + "inputQty": "450191324092230663143424", + "expectedQty": "450320674660424428442860", "reserves": [ - "10592598895639623701098564", - "138741500556227630480906554", - "40050870067837920672001543" - ], - "mAssetSupply": "187735273614942877288428984" + "652152640771548871734860604", + "815758322407213875185758229", + "574501544043960077517683954" + ] }, { "type": "redeemMasset", - "inputQty": "9499573722863609446", + "inputQty": "49606332407989285683", "expectedQtys": [ - "535834234220369746", - "7018338600145978628", - "2026002070322288120" + "15836215604498749903", + "19809050622751740971", + "13950614852734484493" ], - "redemptionFee": "2849872116859082", + "redemptionFee": "14881899722396785", "reserves": [ - "10592598359805389480728818", - "138741493537889030334927926", - "40050868041835850349713423" + "652152624935333267236110701", + "815758302598163252434017258", + "574501530093345224783199461" ], - "mAssetSupply": "187735264118219026541678620" + "mAssetSupply": "2042230001852806089126298054" }, { "type": "redeemMasset", - "inputQty": "11066203577768661811", + "inputQty": "600435417652813278006476", "expectedQtys": [ - "624201768711882445", - "8175773565502169487", - "2360121834225710244" + "191681671854374103215307", + "239768896562529995396700", + "168858346283752129019984" ], - "redemptionFee": "3319861073330598", + "redemptionFee": "180130625295843983401", "reserves": [ - "10592597735603620768846373", - "138741485362115464832758439", - "40050865681714016124003179" + "651960943263478893132895394", + "815518533701600722438620558", + "574332671747061472654179477" ], - "mAssetSupply": "187735253055335309846347407" + "mAssetSupply": "2041629746565778571692274979" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1900744007768848203776", - "expectedQty": "1880270874002371563102", - "swapFee": "1140446404661308922", + "type": "swap", + "inputIndex": 1, + "inputQty": "18231359097356368992010240", + "outputIndex": 0, + "expectedQty": "18184063980335844424777996", + "swapFee": "10921787437350851263810", "reserves": [ - "10592597735603620768846373", - "138741485362115464832758439", - "40048985410840013752440077" + "633776879283143048708117398", + "833749892798957091430630798", + "574332671747061472654179477" ], - "mAssetSupply": "187733353451773945659452553" + "mAssetSupply": "2041640668353215922543538789", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "6299516831427280896", - "expectedQtys": [ - "355334989883897876", - "4654165628504811056", - "1343467030565025543" - ], - "redemptionFee": "1889855049428184", + "type": "redeem", + "inputIndex": 0, + "inputQty": "3721138405414316476989440", + "expectedQty": "3716879427047959014567302", + "swapFee": "2232683043248589886193", "reserves": [ - "10592597380268630884948497", - "138741480707949836327947383", - "40048984067372983187414534" + "630059999856095089693550096", + "833749892798957091430630798", + "574332671747061472654179477" ], - "mAssetSupply": "187733347154146969281599841" + "mAssetSupply": "2037921762630844854656435542" }, { "type": "redeemMasset", - "inputQty": "1151659248188237004", + "inputQty": "1054793113549194717770547", "expectedQtys": [ - "64961303899230410", - "850860952053836591", - "245608714412411199" + "326010343610365971907870", + "431405086973582048396312", + "297175493930235298433036" ], - "redemptionFee": "345497774456471", + "redemptionFee": "316437934064758415331", "reserves": [ - "10592597315307326985718087", - "138741479857088884274110792", - "40048983821764268775003335" + "629733989512484723721642226", + "833318487711983509382234486", + "574035496253131237355746441" ], - "mAssetSupply": "187733346002833218867819308" + "mAssetSupply": "2036867285955229724697080326" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1809171773460974481178624", - "expectedQty": "1787902223121539115166945", - "swapFee": "1085503064076584688707", + "type": "redeemBassets", + "inputQtys": [ + "14825984007115142", + "13928487149476232", + "11436429637741178" + ], + "expectedQty": "40192326713585938", + "swapFee": "24129873952523", "reserves": [ - "10592597315307326985718087", - "138741479857088884274110792", - "38261081598642729659836390" + "629733989497658739714527084", + "833318487698055022232758254", + "574035496241694807718005263" ], - "mAssetSupply": "185925259732436320971329391" + "mAssetSupply": "2036867285915037397983494388" }, { "type": "swap", "inputIndex": 2, - "inputQty": "1367141399468841921150976", - "outputIndex": 1, - "expectedQty": "1419876879664735123350942", - "swapFee": "829741337938686175635", + "inputQty": "4382440035546615357898752", + "outputIndex": 0, + "expectedQty": "4383429385278341318445862", + "swapFee": "2633235968423719253461", "reserves": [ - "10592597315307326985718087", - "137321602977424149150759850", - "39628222998111571580987366" + "625350560112380398396081222", + "833318487698055022232758254", + "578417936277241423075904015" ], - "mAssetSupply": "185926089473774259657505026", + "mAssetSupply": "2036869919151005821702747849", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 1, - "inputQty": "274763697309089926217728", - "expectedQty": "267489991076425099103874", + "inputQty": "8097252145746235577335808", + "expectedQty": "8083329218847435047612047", "reserves": [ - "10592597315307326985718087", - "137596366674733239076977578", - "39628222998111571580987366" + "625350560112380398396081222", + "841415739843801257810094062", + "578417936277241423075904015" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "568130485728319", - "expectedQty": "561966880633176", - "swapFee": "340878291436", + "type": "redeemMasset", + "inputQty": "3033524218584666473286860", + "expectedQtys": [ + "927379130010622197638187", + "1247798349542311683555213", + "857779230949965228557022" + ], + "redemptionFee": "910057265575399941986", "reserves": [ - "10592597315307326985718087", - "137596366674733239076977578", - "39628222997549604700354190" + "624423180982369776198443035", + "840167941494258946126538849", + "577560157046291457847346993" ], - "mAssetSupply": "186193579464282895149172017" + "mAssetSupply": "2041920634208534165677015022" }, { "type": "redeemMasset", - "inputQty": "182124405819066233651", + "inputQty": "866450389905108431483699", "expectedQtys": [ - "10357992722049265528", - "134548885620123140308", - "38750538057667591853" + "264882674700537310092547", + "356402417973216323388039", + "245003202728957500487175" ], - "redemptionFee": "54637321745719870", + "redemptionFee": "259935116971532529445", "reserves": [ - "10592586957314604936452559", - "137596232125847618953837270", - "39628184247011547032762337" + "624158298307669238888350488", + "839811539076285729803150810", + "577315153843562500346859818" ], - "mAssetSupply": "186193397394514397828658236" + "mAssetSupply": "2041054443753746028778060768" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "265550462100892155904", - "expectedQty": "272617989836521222965", - "swapFee": "159330277260535293", + "type": "mintMulti", + "inputQtys": [ + "349874815023529517383680", + "323308809045224202436608", + "496383718297584101490688" + ], + "expectedQty": "1169940668126504387500733", "reserves": [ - "10592586957314604936452559", - "137595959507857782432614305", - "39628184247011547032762337" + "624508173122692768405734168", + "840134847885330954005587418", + "577811537561860084448350506" ], - "mAssetSupply": "186193132003382574197037625" + "mAssetSupply": "2042224384421872533165561501" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "2128388850285427409551360", - "outputIndex": 2, - "expectedQty": "2371604881102675752013134", - "swapFee": "1439732235983282398976", + "type": "redeemMasset", + "inputQty": "361462005750356644148019", + "expectedQtys": [ + "110501205348815748361522", + "148654440954184618869122", + "102238648128139265332889" + ], + "redemptionFee": "108438601725106993244", "reserves": [ - "12720975807600032346003919", - "137595959507857782432614305", - "37256579365908871280749203" + "624397671917343952657372646", + "839986193444376769386718296", + "577709298913731945183017617" ], - "mAssetSupply": "186194571735618557479436601", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2041863030854723901628406726" }, { - "type": "mint", + "type": "redeem", "inputIndex": 2, - "inputQty": "36284414013794616", - "expectedQty": "36736671370174484", + "inputQty": "5731455014367452211445760", + "expectedQty": "5719695596000917162526427", + "swapFee": "3438873008620471326867", "reserves": [ - "12720975807600032346003919", - "137595959507857782432614305", - "37256579402193285294543819" - ] + "624397671917343952657372646", + "839986193444376769386718296", + "571989603317731028020491190" + ], + "mAssetSupply": "2036135014713365069888287833" + }, + { + "type": "mintMulti", + "inputQtys": [ + "102950945653714162024448", + "124619568480132419026944", + "57130786885700365058048" + ], + "expectedQty": "284631124154518527111490", + "reserves": [ + "624500622862997666819397094", + "840110813012856901805745240", + "572046734104616728385549238" + ], + "mAssetSupply": "2036419645837519588415399323" }, { "type": "redeemMasset", - "inputQty": "30220116725792627", + "inputQty": "1164537129514667973017", "expectedQtys": [ - "2064045376303421", - "22325669690414081", - "6045076385259344" + "357016780881216791800", + "480277596314185224364", + "327029751527481621533" ], - "redemptionFee": "9066035017737", + "redemptionFee": "349361138854400391", "reserves": [ - "12720975805535986969700498", - "137595959485532112742200224", - "37256579396148208909284475" + "624500265846216785602605294", + "840110332735260587620520876", + "572046407074865200903927705" ], - "mAssetSupply": "186194571742144178158836195" + "mAssetSupply": "2036418481649751212601826697" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "171377299392000675545088", - "expectedQty": "167382007042748263711312", + "type": "redeem", + "inputIndex": 0, + "inputQty": "622367031559856685318144", + "expectedQty": "621598483729980551083229", + "swapFee": "373420218935914011190", "reserves": [ - "12720975805535986969700498", - "137767336784924113417745312", - "37256579396148208909284475" - ] + "623878667362486805051522065", + "840110332735260587620520876", + "572046407074865200903927705" + ], + "mAssetSupply": "2035796488038410291830519743" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "59189284077529286574080", - "35610399390954711678976", - "51181622456219582070784" + "831410726166207135744", + "609411793845824126976", + "887877196971530125312" ], - "expectedQty": "152170636682066350712937", - "swapFee": "91357196327036032046", + "expectedQty": "2329471809271323829737", "reserves": [ - "12661786521458457683126418", - "137731726385533158706066336", - "37205397773691989327213691" + "623879498773212971258657809", + "840110942147054433444647852", + "572047294952062172434053017" ], - "mAssetSupply": "186209783112504860071834570" + "mAssetSupply": "2035798817510219563154349480" }, { - "type": "redeemMasset", - "inputQty": "5859906754038880586956", - "expectedQtys": [ - "398339056353291664269", - "4333031979756005043682", - "1170479617177610618256" + "type": "mintMulti", + "inputQtys": [ + "31574600177009031118848", + "560933403550244333944832", + "37764767554260248297472" ], - "redemptionFee": "1757972026211664176", + "expectedQty": "629354594557153339414645", "reserves": [ - "12661388182402104391462149", - "137727393353553402701022654", - "37204227294074811716595435" + "623911073373389980289776657", + "840671875550604677778592684", + "572085059719616432682350489" ], - "mAssetSupply": "186203924963722847402911790" + "mAssetSupply": "2036428172104776716493764125" + }, + { + "type": "mintMulti", + "inputQtys": [ + "165281655147269265031168", + "4376082871250902843392", + "156121693847513462734848" + ], + "expectedQty": "326110012852090429141224", + "reserves": [ + "624076355028537249554807825", + "840676251633475928681436076", + "572241181413463946145085337" + ], + "mAssetSupply": "2036754282117628806922905349" }, { "type": "redeemMasset", - "inputQty": "527670150267622195", + "inputQty": "2151327520614184140", "expectedQtys": [ - "35869449557116554", - "390178842742911893", - "105398802644019124" + "658984675535202111", + "887700298928171272", + "604250050852172781" ], - "redemptionFee": "158301045080286", + "redemptionFee": "645398256184255", "reserves": [ - "12661388146532654834345595", - "137727392963374559958110761", - "37204227188676009072576311" + "624076354369552574019605714", + "840676250745775629753264804", + "572241180809213895292912556" ], - "mAssetSupply": "186203924436210998180369881" + "mAssetSupply": "2036754279966946684564905464" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1679055873906485", - "expectedQty": "1514134888462752", - "swapFee": "1007433524343", + "type": "redeemMasset", + "inputQty": "12642857148757198973278617", + "expectedQtys": [ + "3872701407005252966176509", + "5216810533364929195482289", + "3551038603769779359347912" + ], + "redemptionFee": "3792857144627159691983", "reserves": [ - "12661388145018519945882843", - "137727392963374559958110761", - "37204227188676009072576311" + "620203652962547321053429205", + "835459440212410700557782515", + "568690142205444115933564644" ], - "mAssetSupply": "186203924434532949739987739" + "mAssetSupply": "2024115215675334112751318830" }, { - "type": "mintMulti", - "inputQtys": [ - "62527561151743684247552", - "61749574621747975553024", - "78574485977984990707712" + "type": "redeemMasset", + "inputQty": "578131192515308851", + "expectedQtys": [ + "177090467474573147", + "238553742978672012", + "162381505897749366" ], - "expectedQty": "209132034231608943021562", + "redemptionFee": "173439357754592", "reserves": [ - "12723915706170263630130395", - "137789142537996307933663785", - "37282801674653994063284023" + "620203652785456853578856058", + "835459439973856957579110503", + "568690142043062610035815278" ], - "mAssetSupply": "186413056468764558683009301" + "mAssetSupply": "2024115215097376359593764571" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "54420853605259", - "expectedQty": "55101019103770", + "inputIndex": 0, + "inputQty": "785296944183467174789120", + "expectedQty": "785796454425998032160756", "reserves": [ - "12723915706170263630130395", - "137789142537996307933663785", - "37282801674708414916889282" + "620988949729640320753645178", + "835459439973856957579110503", + "568690142043062610035815278" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "9223653704116725612544", - "6060970513969569595392", - "1707627863089975918592" + "type": "redeemMasset", + "inputQty": "84328349549118896472064", + "expectedQtys": [ + "25853739431368921687387", + "34782826129137041899394", + "23676374202746534802365" + ], + "redemptionFee": "25298504864735668941", + "reserves": [ + "620963095990208951831957791", + "835424657147727820537211109", + "568666465668859863501012913" ], - "expectedQty": "17862458131439016946410", - "swapFee": "10723909224398048997", + "mAssetSupply": "2024816708500758103465122204" + }, + { + "type": "redeemMasset", + "inputQty": "55463520320880176948838", + "expectedQtys": [ + "17004238906481169164587", + "22876980210638917896362", + "15572166047835526766433" + ], + "redemptionFee": "16639056096264053084", "reserves": [ - "12714692052466146904517851", - "137783081567482338364068393", - "37281094046845324940970690" + "620946091751302470662793204", + "835401780167517181619314747", + "568650893502812027974246480" ], - "mAssetSupply": "186395194010688220685166661" + "mAssetSupply": "2024761261619493319552226450" }, { "type": "swap", "inputIndex": 0, - "inputQty": "23416337453579751424", - "outputIndex": 2, - "expectedQty": "25596520847432268936", - "swapFee": "15559233084654334", + "inputQty": "7412229279098653229711360", + "outputIndex": 1, + "expectedQty": "7424941227928269543046111", + "swapFee": "4449982258623611685816", "reserves": [ - "12714715468803600484269275", - "137783081567482338364068393", - "37281068450324477508701754" + "628358321030401123892504564", + "827976838939588912076268636", + "568650893502812027974246480" ], - "mAssetSupply": "186395194026247453769820995", + "mAssetSupply": "2024765711601751943163912266", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3199485039720062875860992", - "3126617591229349441306624", - "3235418870857564111765504" + "5192780877209991190151168", + "14993712242852790815162368", + "36392257758461101378371584" ], - "expectedQty": "9812041672760521975392455", + "expectedQty": "56616102651770099083135919", + "swapFee": "33990055624436721482771", "reserves": [ - "15914200508523663360130267", - "140909699158711687805375017", - "40516487321182041620467258" + "623165540153191132702353396", + "812983126696736121261106268", + "532258635744350926595874896" ], - "mAssetSupply": "196207235699007975745213450" + "mAssetSupply": "1968149608949981844080776347" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "14339880516612903665664", - "outputIndex": 0, - "expectedQty": "13117664495767024267823", - "swapFee": "8441045564329663719", + "inputIndex": 0, + "inputQty": "156959384915541151973376", + "outputIndex": 2, + "expectedQty": "156621273311502806416201", + "swapFee": "94206321177951344507", "reserves": [ - "15901082844027896335862444", - "140924039039228300709040681", - "40516487321182041620467258" + "623322499538106673854326772", + "812983126696736121261106268", + "532102014471039423789458695" ], - "mAssetSupply": "196207244140053540074877169", + "mAssetSupply": "1968149703156303022032120854", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "959513594705472582057984", - "expectedQty": "968425382293750617751782", + "type": "mintMulti", + "inputQtys": [ + "301923083555745279508480", + "104306819888931300966400", + "445825152719407437316096" + ], + "expectedQty": "852804823634860728374679", "reserves": [ - "15901082844027896335862444", - "140924039039228300709040681", - "41476000915887514202525242" - ] + "623624422621662419133835252", + "813087433516625052562072668", + "532547839623758831226774791" + ], + "mAssetSupply": "1969002507979937882760495533" }, { - "type": "redeemBassets", - "inputQtys": [ - "188551479410463327911936", - "119646851815502057046016", - "353325796428990832967680" + "type": "redeemMasset", + "inputQty": "115913408137378175071027", + "expectedQtys": [ + "36701195656806517361575", + "47851366786012304180463", + "31341207543596713839744" ], - "expectedQty": "676154912237498066335294", - "swapFee": "405936509248047668402", + "redemptionFee": "34774022441213452521", "reserves": [ - "15712531364617433007950508", - "140804392187412798651994665", - "41122675119458523369557562" + "623587721426005612616473677", + "813039582149839040257892205", + "532516498416215234512935047" ], - "mAssetSupply": "196499514610109792626293657" + "mAssetSupply": "1968886629345822945798877027" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "104707872873455058944", - "92147040989020422144", - "196757176359032881152" + "22605185559839280988160", + "37106869592583493910528", + "86603928841491234947072" ], - "expectedQty": "401357561058435126830", - "swapFee": "240959112102322469", + "expectedQty": "146419494220599504443154", "reserves": [ - "15712426656744559552891564", - "140804300040371809631572521", - "41122478362282164336676410" + "623610326611565451897461837", + "813076689019431623751802733", + "532603102345056725747882119" ], - "mAssetSupply": "196499113252548734191166827" + "mAssetSupply": "1969033048840043545303320181" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2029694896357080039424", - "expectedQty": "2010049228596290608843", - "swapFee": "1217816937814248023", + "type": "swap", + "inputIndex": 0, + "inputQty": "6136248942273329152", + "outputIndex": 1, + "expectedQty": "6145598224418598590", + "swapFee": "3682944296189078", + "reserves": [ + "623610332747814394170790989", + "813076682873833399333204143", + "532603102345056725747882119" + ], + "mAssetSupply": "1969033048843726489599509259", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "5060407959589866176512", + "20199603751579627290624", + "39407562789938930909184" + ], + "expectedQty": "64707003363711208441075", "reserves": [ - "15712426656744559552891564", - "140804300040371809631572521", - "41120468313053568046067567" + "623615393155773984036967501", + "813096882477584978960494767", + "532642509907846664678791303" ], - "mAssetSupply": "196497084775469314925375426" + "mAssetSupply": "1969097755847090200807950334" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "72019876506965580447744", - "expectedQty": "72678087200518571030627", + "inputIndex": 0, + "inputQty": "2951162848292452826087424", + "expectedQty": "2952078928923892344983286", "reserves": [ - "15712426656744559552891564", - "140804300040371809631572521", - "41192488189560533626515311" + "626566556004066436863054925", + "813096882477584978960494767", + "532642509907846664678791303" ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "3897970247062121", - "expectedQty": "3970888979032726", - "swapFee": "2338782148237", + "inputIndex": 2, + "inputQty": "15920359127415995605450752", + "expectedQty": "15878860193691677197537234", + "swapFee": "9552215476449597363270", "reserves": [ - "15712426656744559552891564", - "140804300036400920652539795", - "41192488189560533626515311" + "626566556004066436863054925", + "813096882477584978960494767", + "516763649714154987481254069" ], - "mAssetSupply": "196569762858774202031492169" + "mAssetSupply": "1956139027864074547144846138" }, { "type": "redeemBassets", "inputQtys": [ - "367398515606676176896", - "1042550524026967949312", - "805985332945484513280" + "19801805727720313716736", + "37878836661556348977152", + "18024209895693106544640" ], - "expectedQty": "2230498690038525750269", - "swapFee": "1339102675628492545", + "expectedQty": "75676591497188530423293", + "swapFee": "45433214827209443920", "reserves": [ - "15712059258228952876714668", - "140803257485876893684590483", - "41191682204227588142002031" + "626546754198338716549338189", + "813059003640923422611517615", + "516745625504259294374709429" ], - "mAssetSupply": "196567532360084163505741900" + "mAssetSupply": "1956063351272577358614422845" }, { "type": "redeemMasset", - "inputQty": "10239206797322779033", + "inputQty": "1927389695887333025382", "expectedQtys": [ - "818195956975182198", - "7332244240585035948", - "2145031869253815840" + "617177085456212862756", + "800900144815350800636", + "509017973413694257152" ], - "redemptionFee": "3071762039196833", + "redemptionFee": "578216908766199907", "reserves": [ - "15712058440032995901532470", - "140803250153632653099554535", - "41191680059195718888186191" + "626546137021253260336475433", + "813058202740778607260716979", + "516745116486285880680452277" ], - "mAssetSupply": "196567522123949128222159700" + "mAssetSupply": "1956061424461098380047597370" }, { - "type": "redeemMasset", - "inputQty": "82102593227887017040281", - "expectedQtys": [ - "6560665407578200509031", - "58793252079806912755587", - "17199836130690116719741" - ], - "redemptionFee": "24630777968366105112", + "type": "mint", + "inputIndex": 2, + "inputQty": "2085394028182735104", + "expectedQty": "2089837813820609914", "reserves": [ - "15705497774625417701023439", - "140744456901552846186798948", - "41174480223065028771466450" - ], - "mAssetSupply": "196485444161499209571224531" + "626546137021253260336475433", + "813058202740778607260716979", + "516745118571679908863187381" + ] }, { "type": "swap", - "inputIndex": 2, - "inputQty": "121128655704917069004800", - "outputIndex": 1, - "expectedQty": "124507473585207965344558", - "swapFee": "73335736469623852616", + "inputIndex": 1, + "inputQty": "5405602072808267460902912", + "outputIndex": 2, + "expectedQty": "5380322560891175951876558", + "swapFee": "3237244622454536592300", "reserves": [ - "15705497774625417701023439", - "140619949427967638221454390", - "41295608878769945840471250" + "626546137021253260336475433", + "818463804813586874721619891", + "511364796010788732911310823" ], - "mAssetSupply": "196485517497235679195077147", + "mAssetSupply": "1956064663795558648404799584", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "131023112817401400184012", - "expectedQtys": [ - "10469809164663248967095", - "93741953065255981614205", - "27529031585221850880340" + "type": "mint", + "inputIndex": 2, + "inputQty": "152102536932573858234368", + "expectedQty": "152443723753006704294546", + "reserves": [ + "626546137021253260336475433", + "818463804813586874721619891", + "511516898547721306769545191" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "35739662037758914560", + "29299509021657206784", + "23691586739907166208" ], - "redemptionFee": "39306933845220420055", + "expectedQty": "88734377426320272162", "reserves": [ - "15695027965460754452056344", - "140526207474902382239840185", - "41268079847184723989590910" + "626546172760915298095389993", + "818463834113095896378826675", + "511516922239308046676711399" ], - "mAssetSupply": "196354533691352123015313190" + "mAssetSupply": "1956217196253689081429366292" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "87709214396574307713024", - "39214347028967213498368", - "95215479223134594269184" + "304140536911725632", + "255411678379353376", + "92603353469327344" ], - "expectedQty": "228717715986361969678884", - "swapFee": "137313017402258536929", + "expectedQty": "651930242242017393", "reserves": [ - "15607318751064180144343320", - "140486993127873415026341817", - "41172864367961589395321726" + "626546173065055835007115625", + "818463834368507574758180051", + "511516922331911400146038743" ], - "mAssetSupply": "196125815975365761045634306" + "mAssetSupply": "1956217196905619323671383685" }, { "type": "mintMulti", "inputQtys": [ - "7180409429646638055424", - "9119054794102968156160", - "5552864265265614946304" + "11444700959626355539968", + "24067323756350088937472", + "20469547962877723279360" ], - "expectedQty": "22261034329460202750743", + "expectedQty": "55983246593204845965469", "reserves": [ - "15614499160493826782398744", - "140496112182667517994497977", - "41178417232226855010268030" + "626557617766015461362655593", + "818487901692263924847117523", + "511537391879874277869318103" ], - "mAssetSupply": "196148077009695221248385049" + "mAssetSupply": "1956273180152212528517349154" }, { - "type": "redeemMasset", - "inputQty": "118436878196689", - "expectedQtys": [ - "9425418610255", - "84808014450158", - "24856629478293" + "type": "redeemBassets", + "inputQtys": [ + "3711494304129625333170176", + "4158478778539007746768896", + "3105264029844749800177664" ], - "redemptionFee": "35531063459", + "expectedQty": "10974905384411792623626885", + "swapFee": "6588896568588228511282", "reserves": [ - "15614499160484401363788489", - "140496112182582709980047819", - "41178417232201998380789737" + "622846123461885836029485417", + "814329422913724917100348627", + "508432127850029528069140439" ], - "mAssetSupply": "196148077009576819901251819" + "mAssetSupply": "1945298274767800735893722269" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "254767703098878528061440", - "expectedQty": "236816814313738097062789", - "swapFee": "152860621859327116836", + "type": "mintMulti", + "inputQtys": [ + "668972206186883579904", + "300750236888485330944", + "383685095036689317888" + ], + "expectedQty": "1353821708332522964778", "reserves": [ - "15377682346170663266725700", - "140496112182582709980047819", - "41178417232201998380789737" + "622846792434092022913065321", + "814329723663961805585679571", + "508432511535124564758458327" ], - "mAssetSupply": "195893462167099800700307215" + "mAssetSupply": "1945299628589509068416687047" }, { - "type": "redeemMasset", - "inputQty": "68551595046189110237593", - "expectedQtys": [ - "5379701761811695355252", - "49150916582988801979177", - "14405786174134281865250" + "type": "mint", + "inputIndex": 1, + "inputQty": "2289315617405086", + "expectedQty": "2284882209967037", + "reserves": [ + "622846792434092022913065321", + "814329723666251121203084657", + "508432511535124564758458327" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "90030153296164913152", + "9878913426592983154688", + "3514594736537121325056" ], - "redemptionFee": "20565478513856733071", + "expectedQty": "13472322175806688672629", + "swapFee": "8088246253235954776", "reserves": [ - "15372302644408851571370448", - "140446961265999721178068642", - "41164011446027864098924487" + "622846702403938726748152169", + "814319844752824528219929969", + "508428996940388027637133271" ], - "mAssetSupply": "195824931137532125446802693" + "mAssetSupply": "1945286156269618143937981455" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "255814742805672435384320", - "4067435727624745296855040", - "1944253196653929628172288" + "228711767721324960546816", + "1291453420722771197952", + "120837469700650822533120" ], - "expectedQty": "6226738959994573924660779", - "swapFee": "3738286347805427611363", + "expectedQty": "351155456878293033234500", "reserves": [ - "15116487901603179135986128", - "136379525538374975881213602", - "39219758249373934470752199" + "623075414171660051708698985", + "814321136206245250991127921", + "508549834410088678459666391" ], - "mAssetSupply": "189598192177537551522141914" + "mAssetSupply": "1945637311726496436971215955" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "337016232370974883840", - "expectedQty": "343421727830246822680", - "swapFee": "202209739422584930", + "inputIndex": 2, + "inputQty": "2916376710841177668059136", + "expectedQty": "2908027100438971637612772", + "swapFee": "1749826026504706600835", "reserves": [ - "15116487901603179135986128", - "136379182116647145634390922", - "39219758249373934470752199" + "623075414171660051708698985", + "814321136206245250991127921", + "505641807309649706822053619" ], - "mAssetSupply": "189597855363514919969843004" + "mAssetSupply": "1942722684841681764009757654" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "181990303426066", - "expectedQty": "180133296250621", - "swapFee": "109194182055", + "inputQty": "2532876226903090397184", + "expectedQty": "2525565604834423741387", + "swapFee": "1519725736141854238", "reserves": [ - "15116487901603179135986128", - "136379182116647145634390922", - "39219758249193801174501578" + "623075414171660051708698985", + "814321136206245250991127921", + "505639281744044872398312232" ], - "mAssetSupply": "189597855363333038860598993" + "mAssetSupply": "1942720153485180597061214708" }, { "type": "redeemBassets", "inputQtys": [ - "12310138864061896458240", - "6030717855719580762112", - "11540059284885429288960" + "108626238624576651132928", + "139727356852313545244672", + "56011251140131605708800" ], - "expectedQty": "30794464920450425955295", - "swapFee": "18487771615239399212", + "expectedQty": "304240493252898634465029", + "swapFee": "182653888284710006683", "reserves": [ - "15104177762739117239527888", - "136373151398791426053628810", - "39208218189908915745212618" + "622966787933035475057566057", + "814181408849392937445883249", + "505583270492904740792603432" ], - "mAssetSupply": "189567060898412588434643698" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "155792070548035569975296", - "expectedQty": "167296041179681627586161", - "reserves": [ - "15259969833287152809503184", - "136373151398791426053628810", - "39208218189908915745212618" - ] + "mAssetSupply": "1942415912991927698426749679" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "349606429769685864022016", - "outputIndex": 1, - "expectedQty": "381490599670730963925351", - "swapFee": "224754882267556235815", + "type": "mintMulti", + "inputQtys": [ + "7907897575040", + "10078031748596", + "9052946043567" + ], + "expectedQty": "27041412195609", "reserves": [ - "15609576263056838673525200", - "135991660799120695089703459", - "39208218189908915745212618" + "622966787933043382955141097", + "814181408849403015477631845", + "505583270492913793738646999" ], - "mAssetSupply": "189734581694474537618465674", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1942415912991954739838945288" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3802240122700173824", - "expectedQty": "3872122664114309501", - "swapFee": "2281344073620104", + "type": "mintMulti", + "inputQtys": [ + "26808475227032945426432", + "44473530359669533442048", + "18289567443274598187008" + ], + "expectedQty": "89531633403849497800648", "reserves": [ - "15609576263056838673525200", - "135991656926998030975393958", - "39208218189908915745212618" + "622993596408270415900567529", + "814225882379762685011073893", + "505601560060357068336834007" ], - "mAssetSupply": "189734577894515758991911954" + "mAssetSupply": "1942505444625358589336745936" }, { "type": "redeemBassets", "inputQtys": [ - "9134512898493272064", - "7187686380105228288", - "9892049580668119040" + "3185674346056434558435328", + "4908267857801139892256768", + "35236897442126847016960" ], - "expectedQty": "26809557481944042292", - "swapFee": "16095391724200945", + "expectedQty": "8120330983296325924319358", + "swapFee": "4875123664176301335392", "reserves": [ - "15609567128543940180253136", - "135991649739311650870165670", - "39208208297859335077093578" + "619807922062213981342132201", + "809317614521961545118817125", + "505566323162914941489817047" ], - "mAssetSupply": "189734551084958277047869662" + "mAssetSupply": "1934385113642062263412426578" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "39562132623804527017984", - "expectedQty": "40289097164665211038563", - "swapFee": "23737279574282716210", + "inputQty": "38873323622736515435593728", + "expectedQty": "38920242261001857623879733", + "swapFee": "23323994173641909261356", "reserves": [ - "15609567128543940180253136", - "135951360642146985659127107", - "39208208297859335077093578" + "619807922062213981342132201", + "770397372260959687494937392", + "505566323162914941489817047" ], - "mAssetSupply": "189695012689614046803567888" + "mAssetSupply": "1895535114013499389886094206" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "34814310772322057846784", - "2218074909463907504488448", - "233739836729629555556352" + "1321950803625328", + "1803748617707053", + "5864636893613211" ], - "expectedQty": "2449667363434416122907432", + "expectedQty": "8999289739957119", + "swapFee": "5402815533294", "reserves": [ - "15644381439316262238099920", - "138169435551610893163615555", - "39441948134588964632649930" + "619807922060892030538506873", + "770397372259155938877230339", + "505566323157050304596203836" ], - "mAssetSupply": "192144680053048462926475320" + "mAssetSupply": "1895535114004500100146137087" }, { - "type": "redeemMasset", - "inputQty": "7900921518984072396", - "expectedQtys": [ - "643098463210035061", - "5679774046069438239", - "1621352453579184285" + "type": "redeemBassets", + "inputQtys": [ + "135781603371730512", + "14235868868872076", + "80659929726361216" ], - "redemptionFee": "2370276455695221", + "expectedQty": "230823431522834505", + "swapFee": "138577205236842", "reserves": [ - "15644380796217799028064859", - "138169429871836847094177316", - "39441946513236511053465645" + "619807921925110427166776361", + "770397372244920070008358263", + "505566323076390374869842620" ], - "mAssetSupply": "192144672154497220398098145" + "mAssetSupply": "1895535113773676668623302582" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "245750143499327864832", - "expectedQty": "248189550206030840363", + "type": "redeemMasset", + "inputQty": "11710903553030973135257", + "expectedQtys": [ + "3828118608356938829286", + "4758203972869526912222", + "3122528416732903375645" + ], + "redemptionFee": "3513271065909291940", "reserves": [ - "15644380796217799028064859", - "138169429871836847094177316", - "39442192263380010381330477" - ] + "619804093806502070227947075", + "770392614040947200481446041", + "505563200547973641966466975" + ], + "mAssetSupply": "1895523406383394703559459265" }, { "type": "mintMulti", "inputQtys": [ - "457557798069166342144", - "61844213577227083776", - "511836196647960510464" + "493597812458939536637952", + "460960577411476424228864", + "35838498786070189047808" + ], + "expectedQty": "989718045218026332557968", + "reserves": [ + "620297691618961009764585027", + "770853574618358676905674905", + "505599039046759712155514783" ], - "expectedQty": "1067827131415925284849", + "mAssetSupply": "1896513124428612729892017233" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "10063099804212019744210944", + "expectedQty": "10073613960623254415621591", + "swapFee": "6037859882527211846526", "reserves": [ - "15644838354015868194407003", - "138169491716050424321261092", - "39442704099576658341840941" + "620297691618961009764585027", + "760779960657735422490053314", + "505599039046759712155514783" ], - "mAssetSupply": "192145988171178842354223357" + "mAssetSupply": "1886456062484283237359652815" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "320322235776509384065024", + "expectedQty": "319806454127248273319044", + "reserves": [ + "620297691618961009764585027", + "761100282893511931874118338", + "505599039046759712155514783" + ] }, { "type": "redeemBassets", "inputQtys": [ - "3790458355291685888", - "497496765272755798016", - "310990519634561400832" + "4355392484944156557312", + "1413720546119444070400", + "346270715842707914752" ], - "expectedQty": "806201863252592964668", - "swapFee": "484011524866475664", + "expectedQty": "6113808328627232893283", + "swapFee": "3670487289550069777", "reserves": [ - "15644834563557512902721115", - "138168994219285151565463076", - "39442393109057023780440109" + "620293336226476065608027715", + "761098869172965812430047938", + "505598692776043869447600031" ], - "mAssetSupply": "192145181969315589761258689" + "mAssetSupply": "1886769755130081858400078576" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "45692075679696396288", - "outputIndex": 0, - "expectedQty": "43043627554936462220", - "swapFee": "27687366532483977", + "type": "redeemMasset", + "inputQty": "66378988070534593799782", + "expectedQtys": [ + "21816171008943159401633", + "26768404744764622554879", + "17782276383302991778842" + ], + "redemptionFee": "19913696421160378139", "reserves": [ - "15644791519929957966258895", - "138168994219285151565463076", - "39442438801132703476836397" + "620271520055467122448626082", + "761072100768221047807493059", + "505580910499660566455821189" ], - "mAssetSupply": "192145181997002956293742666", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1886703396055707744966656933" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2064033243579897872384", - "expectedQty": "2042519171357575306379", - "swapFee": "1238419946147938723", + "type": "redeemMasset", + "inputQty": "1222786658460819364249", + "expectedQtys": [ + "401882035623815504887", + "493108574589842527563", + "327572488683627071674" + ], + "redemptionFee": "366835997538245809", "reserves": [ - "15644791519929957966258895", - "138168994219285151565463076", - "39440396281961345901530018" + "620271118173431498633121195", + "761071607659646457964965496", + "505580582927171882828749515" ], - "mAssetSupply": "192143119202179322543809005" + "mAssetSupply": "1886702173635885281685538493" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "12817470725231090860032", - "expectedQty": "12574404760349289873480", + "inputIndex": 2, + "inputQty": "13444807845824807567360", + "expectedQty": "13471477574037607464779", "reserves": [ - "15644791519929957966258895", - "138181811690010382656323108", - "39440396281961345901530018" + "620271118173431498633121195", + "761071607659646457964965496", + "505594027735017707636316875" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "68609388260773372887040", - "expectedQty": "67891955595271944295353", - "swapFee": "41165632956464023732", + "type": "redeemBassets", + "inputQtys": [ + "7604738480158278680576", + "32615859636448155140096", + "19546797654095050047488" + ], + "expectedQty": "59753645857226599816804", + "swapFee": "35873711741380788363", "reserves": [ - "15644791519929957966258895", - "138181811690010382656323108", - "39372504326366073957234665" + "620263513434951340354440619", + "761038991800010009809825400", + "505574480937363612586269387" ], - "mAssetSupply": "192087125384311854924819177" + "mAssetSupply": "1886655891467602092693186468" }, { "type": "redeemBassets", "inputQtys": [ - "16134569476967794", - "11800678227395736", - "14064050989212562" + "14110175429249109852160", + "11625435884477065723904", + "3225832636497757995008" ], - "expectedQty": "43068513830504428", - "swapFee": "25856622271665", + "expectedQty": "28949162454025533016960", + "swapFee": "17379925427671922963", "reserves": [ - "15644791503795388489291101", - "138181811678209704428927372", - "39372504312302022968022103" + "620249403259522091244588459", + "761027366364125532744101496", + "505571255104727114828274379" ], - "mAssetSupply": "192087125341243341094314749" + "mAssetSupply": "1886626942305148067160169508" }, { "type": "mintMulti", "inputQtys": [ - "40909662451401266036736", - "67147014564159663636480", - "96922204433912218779648" + "54187810983653436030976", + "41701662665038461140992", + "64965613977938010570752" ], - "expectedQty": "207587366733457844868454", + "expectedQty": "160916947246234979402104", "reserves": [ - "15685701166246789755327837", - "138248958692773864092563852", - "39469426516735935186801751" + "620303591070505744680619435", + "761069068026790571205242488", + "505636220718705052838845131" ], - "mAssetSupply": "192294712707976798939183203" + "mAssetSupply": "1886787859252394302139571612" }, { - "type": "redeemBassets", - "inputQtys": [ - "48199428019488060080128", - "738346956712148336640", - "31285077454499514155008" - ], - "expectedQty": "83958879126908496171589", - "swapFee": "50405570818636279470", + "type": "swap", + "inputIndex": 0, + "inputQty": "24004063332242573485932544", + "outputIndex": 1, + "expectedQty": "24021643389665689488575059", + "swapFee": "14400902141080349953828", "reserves": [ - "15637501738227301695247709", - "138248220345817151944227212", - "39438141439281435672646743" + "644307654402748318166551979", + "737047424637124881716667429", + "505636220718705052838845131" ], - "mAssetSupply": "192210753828849890443011614" + "mAssetSupply": "1886802260154535382489525440", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "16660073958937037111296", - "expectedQty": "16972287655049329955725", - "swapFee": "9996044375362222266", + "type": "mint", + "inputIndex": 0, + "inputQty": "247028303272553989799936", + "expectedQty": "246953053959091459900350", + "reserves": [ + "644554682706020872156351915", + "737047424637124881716667429", + "505636220718705052838845131" + ] + }, + { + "type": "redeemMasset", + "inputQty": "2136952626661845401", + "expectedQtys": [ + "729694592886600887", + "834404798985848163", + "572426244235877066" + ], + "redemptionFee": "641085787998553", "reserves": [ - "15637501738227301695247709", - "138231248058162102614271487", - "39438141439281435672646743" + "644554681976326279269751028", + "737047423802720082730819266", + "505636220146278808602968065" ], - "mAssetSupply": "192194103750935328768122584" + "mAssetSupply": "1887049211072182933075578942" }, { - "type": "redeemBassets", - "inputQtys": [ - "3367111446117867847680", - "44810993320240005120", - "581626554037149827072" + "type": "redeemMasset", + "inputQty": "1468403364392801969111040", + "expectedQtys": [ + "501408398953466479157239", + "573359839057491351179679", + "393341720548916952377425" ], - "expectedQty": "4239470744596803126054", - "swapFee": "2545209572501582825", + "redemptionFee": "440521009317840590733", "reserves": [ - "15634134626781183827400029", - "138231203247168782374266367", - "39437559812727398522819671" + "644053273577372812790593789", + "736474063963662591379639587", + "505242878425729891650590640" ], - "mAssetSupply": "192189864280190731964996530" + "mAssetSupply": "1885581248228799448947058635" }, { "type": "redeemMasset", - "inputQty": "562823271970737786506444", + "inputQty": "921229845300906242867", "expectedQtys": [ - "45770441961549121499818", - "404685223489229129086797", - "115457272538863711402565" + "314567776812117247455", + "359707835493212144691", + "246770159452412732076" ], - "redemptionFee": "168846981591221335951", + "redemptionFee": "276368953590271872", "reserves": [ - "15588364184819634705900211", - "137826518023679553245179570", - "39322102540188534811417106" + "644052959009596000673346334", + "736473704255827098167494896", + "505242631655570439237858564" ], - "mAssetSupply": "191627209855201585399826037" + "mAssetSupply": "1885580327275323101631087640" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "30232265462433860", - "outputIndex": 1, - "expectedQty": "33003663854870473", - "swapFee": "19437886256944", + "type": "redeem", + "inputIndex": 1, + "inputQty": "866975138827516950609920", + "expectedQty": "867626998599243627740998", + "swapFee": "520185083296510170365", "reserves": [ - "15588364215051900168334071", - "137826517990675889390309097", - "39322102540188534811417106" + "644052959009596000673346334", + "735606077257227854539753898", + "505242631655570439237858564" ], - "mAssetSupply": "191627209855221023286082981", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1884713872321578881190648085" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "30759005433323111579648", - "expectedQty": "32956613014016591903044", + "type": "redeemMasset", + "inputQty": "20569860131246868896153", + "expectedQtys": [ + "7027116982931670875691", + "8026032465080243166933", + "5512588720759298380089" + ], + "redemptionFee": "6170958039374060668", "reserves": [ - "15619123220485223279913719", - "137826517990675889390309097", - "39322102540188534811417106" - ] + "644045931892613069002470643", + "735598051224762774296586965", + "505237119066849679939478475" + ], + "mAssetSupply": "1884693308632405673695812600" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "17185020322041986809856", - "outputIndex": 2, - "expectedQty": "18216761778484513192781", - "swapFee": "11045446676186918156", + "type": "redeemBassets", + "inputQtys": [ + "34738525644635011809280", + "24648060225594165559296", + "8383887995899096334336" + ], + "expectedQty": "67743160749160974895180", + "swapFee": "40670298628673789210", "reserves": [ - "15636308240807265266723575", - "137826517990675889390309097", - "39303885778410050298224325" + "644011193366968433990661363", + "735573403164537180131027669", + "505228735178853780843144139" ], - "mAssetSupply": "191660177513681716064904181", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1884625565471656512720917420" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "159886547074208250200064", - "expectedQty": "162872935807638042254173", - "swapFee": "95931928244524950120", + "inputIndex": 2, + "inputQty": "16256023735028794267795456", + "expectedQty": "16212065652875596551318715", + "swapFee": "9753614241017276560677", "reserves": [ - "15636308240807265266723575", - "137663645054868251348054924", - "39303885778410050298224325" + "644011193366968433990661363", + "735573403164537180131027669", + "489016669525978184291825424" ], - "mAssetSupply": "191500386898535752339654237" + "mAssetSupply": "1868379295350868735729682641" }, { - "type": "mintMulti", - "inputQtys": [ - "6857147946755273261056", - "120126033917393642717184", - "46939014976515854041088" + "type": "redeemMasset", + "inputQty": "459515430258571156547174", + "expectedQtys": [ + "158342741981422696957697", + "180855101254911280642465", + "120234308230795639707183" ], - "expectedQty": "172602652736846531127433", + "redemptionFee": "137854629077571346964", "reserves": [ - "15643165388754020539984631", - "137783771088785644990772108", - "39350824793386566152265413" + "643852850624987011293703666", + "735392548063282268850385204", + "488896435217747388652118241" ], - "mAssetSupply": "191672989551272598870781670" + "mAssetSupply": "1867919917775239242144482431" }, { - "type": "redeemBassets", - "inputQtys": [ - "12167451859986406", - "13367460290820856", - "8725296513123029" + "type": "swap", + "inputIndex": 0, + "inputQty": "485992968442187498913792", + "outputIndex": 1, + "expectedQty": "486202998143865547414979", + "swapFee": "291478073873750364819", + "reserves": [ + "644338843593429198792617458", + "734906345065138403302970225", + "488896435217747388652118241" ], - "expectedQty": "34958203372726659", - "swapFee": "20987514532355", + "mAssetSupply": "1867920209253313115894847250", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "175229094049278496", + "expectedQty": "175375314633691743", + "swapFee": "105137456429567", "reserves": [ - "15643165376586568679998225", - "137783771075418184699951252", - "39350824784661269639142384" + "644338843593429198792617458", + "734906344889763088669278482", + "488896435217747388652118241" ], - "mAssetSupply": "191672989516314395498055011" + "mAssetSupply": "1867920209078189159301998321" }, { "type": "mint", "inputIndex": 2, - "inputQty": "391889616939093957017600", - "expectedQty": "395704624077011561217411", + "inputQty": "1448868213216243613696", + "expectedQty": "1452111796914336935728", "reserves": [ - "15643165376586568679998225", - "137783771075418184699951252", - "39742714401600363596159984" + "644338843593429198792617458", + "734906344889763088669278482", + "488897884085960604895731937" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1846909526579118564442112", - "2017269611586233433063424", - "1791264309386513165058048" + "15224557501971038820368384", + "14584699628578878108205056", + "16189499538719997626941440" ], - "expectedQty": "5754463015830680869407405", + "expectedQty": "46008176966951515887364067", + "swapFee": "27621479067611476418269", "reserves": [ - "17490074903165687244440337", - "139801040687004418133014676", - "41533978710986876761218032" + "629114286091458159972249074", + "720321645261184210561073426", + "472708384547240607268790497" ], - "mAssetSupply": "197823157156222087928679827" + "mAssetSupply": "1821913484223034557751569982" }, { "type": "mintMulti", "inputQtys": [ - "375439863456507691008", - "946462027499588419584", - "1542232718783893733376" + "61269029181296924950528", + "16909352172452346593280", + "70074595985276780150784" ], - "expectedQty": "2883112701174924050051", + "expectedQty": "148365407996733723440009", "reserves": [ - "17490450343029143752131345", - "139801987149031917721434260", - "41535520943705660654951408" + "629175555120639456897199602", + "720338554613356662907666706", + "472778459143225884048941281" ], - "mAssetSupply": "197826040268923262852729878" + "mAssetSupply": "1822061849631031291475009991" }, { "type": "swap", "inputIndex": 0, - "inputQty": "5276062355561548611584", + "inputQty": "944497059134355554697216", "outputIndex": 2, - "expectedQty": "5533807256716508885708", - "swapFee": "3350578399056296050", + "expectedQty": "941316129541587809285080", + "swapFee": "566454982500446658604", "reserves": [ - "17495726405384705300742929", - "139801987149031917721434260", - "41529987136448944146065700" + "630120052179773812451896818", + "720338554613356662907666706", + "471837143013684296239656201" ], - "mAssetSupply": "197826043619501661909025928", + "mAssetSupply": "1822062416086013791921668595", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "2418943931680689594826752", - "159594860161093146247168", - "937579599137949194649600" + "3030250922017613588463616", + "4078286072090520423759872", + "1258352789016333500022784" ], - "expectedQty": "3645400644196631609912634", + "expectedQty": "8362463347656192634535615", "reserves": [ - "19914670337065394895569681", - "139961582009193010867681428", - "42467566735586893340715300" + "633150303101791426040360434", + "724416840685447183331426578", + "473095495802700629739678985" ], - "mAssetSupply": "201471444263698293518938562" + "mAssetSupply": "1830424879433669984556204210" }, { - "type": "mintMulti", - "inputQtys": [ - "48489601179444944", - "18530103455510264", - "47548169908580616" + "type": "redeemMasset", + "inputQty": "16689280741856919316070", + "expectedQtys": [ + "5771148126318025168966", + "6603040182266025037915", + "4312252826533516663880" ], - "expectedQty": "116849977620022402", + "redemptionFee": "5006784222557075794", "reserves": [ - "19914670385554996075014625", - "139961582027723114323191692", - "42467566783135063249295916" + "633144531953665108015191468", + "724410237645264917306388663", + "473091183549874096223015105" ], - "mAssetSupply": "201471444380548271138960964" + "mAssetSupply": "1830408195159712350193963934" }, { "type": "redeemBassets", "inputQtys": [ - "673217714758667993088", - "670245750803905380352", - "747533724159701024768" + "2342952396944095838208", + "91734394117624740970496", + "80632001497766146605056" ], - "expectedQty": "2117159902851311704986", - "swapFee": "1271058576856901163", + "expectedQty": "174762994725255849970292", + "swapFee": "104920749284724344588", "reserves": [ - "19913997167840237407021537", - "139960911781972310417811340", - "42466819249410903548271148" + "633142189001268163919353260", + "724318503251147292565418167", + "473010551548376330076410049" ], - "mAssetSupply": "201469327220645419827255978" + "mAssetSupply": "1830233432164987094343993642" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "87095137076392373518336", - "expectedQty": "85784938033122768661717", + "type": "redeemBassets", + "inputQtys": [ + "7748931107970665794240512", + "656341399987400036319232", + "7636726610761670253871104" + ], + "expectedQty": "16056097277008942489260998", + "swapFee": "9639442031424220025571", "reserves": [ - "19913997167840237407021537", - "140048006919048702791329676", - "42466819249410903548271148" - ] + "625393257893297498125112748", + "723662161851159892529098935", + "465373824937614659822538945" + ], + "mAssetSupply": "1814177334887978151854732644" }, { "type": "redeemBassets", "inputQtys": [ - "363571061222742016", - "704927796759735040", - "534903454757550784" + "538595417061190986104832", + "677304827971752438005760", + "951110225804885531557888" ], - "expectedQty": "1613427381335369893", - "swapFee": "968637611368042", + "expectedQty": "2168064977589952302462427", + "swapFee": "1301619958529088834778", "reserves": [ - "19913996804269176184279521", - "140048006214120906031594636", - "42466818714507448790720364" + "624854662476236307139007916", + "722984857023188140091093175", + "464422714711809774290981057" ], - "mAssetSupply": "201555110545251161260547802" + "mAssetSupply": "1812009269910388199552270217" }, { "type": "redeemMasset", - "inputQty": "21258631605210727422361", + "inputQty": "2100133389077753469337", "expectedQtys": [ - "2099759799728475617232", - "14766858525230480184029", - "4477761025851088331064" + "723994340608498192571", + "837693909102165244232", + "538108199063286701814" ], - "redemptionFee": "6377589481563218226", + "redemptionFee": "630040016723326040", "reserves": [ - "19911897044469447708662289", - "140033239355595675551410607", - "42462340953481597702389300" + "624853938481895698640815345", + "722984019329279037925848943", + "464422176603610711004279243" ], - "mAssetSupply": "201533858291235432096343667" + "mAssetSupply": "1812007170407039138522126920" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "21997109530049189511168", - "expectedQty": "22989320790952265143768", + "inputIndex": 1, + "inputQty": "20135553622585653592064", + "expectedQty": "20104019441827628196633", "reserves": [ - "19933894153999496898173457", - "140033239355595675551410607", - "42462340953481597702389300" + "624853938481895698640815345", + "723004154882901623579441007", + "464422176603610711004279243" ] }, { - "type": "redeemMasset", - "inputQty": "458562578191382092552601", - "expectedQtys": [ - "45338055856445534920671", - "318494458664976220061531", - "96577215223053803427990" + "type": "redeemBassets", + "inputQtys": [ + "1421320915070258205687808", + "2312174892399448893161472", + "209765879914574899052544" ], - "redemptionFee": "137568773457414627765", + "expectedQty": "3939561818754517213039915", + "swapFee": "2365156184963688540948", "reserves": [ - "19888556098143051363252786", - "139714744896930699331349076", - "42365763738258543898961310" + "623432617566825440435127537", + "720691979990502174686279535", + "464212410723696136105226699" ], - "mAssetSupply": "201098422602608459683562599" + "mAssetSupply": "1808087712607726448937283638" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "9963247080229697536", - "expectedQty": "9879393046776122822", - "swapFee": "5977948248137818", + "inputIndex": 0, + "inputQty": "710088141447791487483904", + "expectedQty": "709961588568422533878357", + "swapFee": "426052884868674892490", + "reserves": [ + "622722655978257017901249180", + "720691979990502174686279535", + "464212410723696136105226699" + ], + "mAssetSupply": "1807378050519163526124692224" + }, + { + "type": "redeemMasset", + "inputQty": "205546604632081167495987", + "expectedQtys": [ + "70798761758104241555174", + "81937118077338027529176", + "52777369759178530248973" + ], + "redemptionFee": "61663981389624350248", "reserves": [ - "19888556098143051363252786", - "139714744896930699331349076", - "42365753858865497122838488" + "622651857216498913659694006", + "720610042872424836658750359", + "464159633353936957574977726" ], - "mAssetSupply": "201098412645339327702002881" + "mAssetSupply": "1807172565578512834581546485" }, { "type": "mintMulti", "inputQtys": [ - "15944683774333979459584", - "15336888732593493639168", - "17855959033776443490304" + "12751886618193173676032", + "605467674407042023424", + "4964307780609488453632" ], - "expectedQty": "49765598673422715276291", + "expectedQty": "18327518433862398869597", "reserves": [ - "19904500781917385342712370", - "139730081785663292824988244", - "42383609817899273566328792" + "622664609103117106833370038", + "720610648340099243700773783", + "464164597661717567063431358" ], - "mAssetSupply": "201148178244012750417279172" + "mAssetSupply": "1807190893096946696980416082" }, { - "type": "redeemMasset", - "inputQty": "33727668453508834918", - "expectedQtys": [ - "3336500530320671008", - "23422315238529017019", - "7104570879908454784" + "type": "mintMulti", + "inputQtys": [ + "9867169481140669928964096", + "3621834665620070727680000", + "9348418839574344999370752" ], - "redemptionFee": "10118300536052650", + "expectedQty": "22850161116129211114265062", "reserves": [ - "19904497445416855022041362", - "139730058363348054295971225", - "42383602713328393657874008" + "632531778584257776762334134", + "724232483005719314428453783", + "473513016501291912062802110" ], - "mAssetSupply": "201148144526462597444496904" + "mAssetSupply": "1830041054213075908094681144" }, { "type": "redeemMasset", - "inputQty": "155463752608234910357913", + "inputQty": "48296201136546863959244", "expectedQtys": [ - "15379209913012954515942", - "107962429326357523964617", - "32747690555136834240049" + "16687995752256004296969", + "19107322365836394473125", + "12492626419020124804562" ], - "redemptionFee": "46639125782470473107", + "redemptionFee": "14488860340964059187", "reserves": [ - "19889118235503842067525420", - "139622095934021696772006608", - "42350855022773256823633959" + "632515090588505520758037165", + "724213375683353478033980658", + "473500523874872891937997548" ], - "mAssetSupply": "200992727412980145004612098" + "mAssetSupply": "1829992772500799702194781087" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "846442091861552267264", - "594153557433285607424", - "957660947337615507456" + "302645915991513178832896", + "225934536135262561370112", + "246359233606692892573696" + ], + "expectedQty": "775053213135586640704236", + "reserves": [ + "632817736504497033936870061", + "724439310219488740595350770", + "473746883108479584830571244" + ], + "mAssetSupply": "1830767825713935288835485323" + }, + { + "type": "redeemMasset", + "inputQty": "400136646076802054435635", + "expectedQtys": [ + "138268544507608041009023", + "158287549842453607008738", + "103512098687771050008169" ], - "expectedQty": "2434956213045463304081", - "swapFee": "1461850838330276148", + "redemptionFee": "120040993823040616330", "reserves": [ - "19888271793411980515258156", - "139621501780464263486399184", - "42349897361825919208126503" + "632679467959989425895861038", + "724281022669646286988342032", + "473643371009791813780563075" ], - "mAssetSupply": "200990292456767099541308017" + "mAssetSupply": "1830367809108852309821666018" }, { "type": "swap", "inputIndex": 0, - "inputQty": "17334424739507048", - "outputIndex": 1, - "expectedQty": "18379694119743475", - "swapFee": "10868648267004", + "inputQty": "1578294378694518488694784", + "outputIndex": 2, + "expectedQty": "1572895799263896142994906", + "swapFee": "946557165083375583623", "reserves": [ - "19888271810746405254765204", - "139621501762084569366655709", - "42349897361825919208126503" + "634257762338683944384555822", + "724281022669646286988342032", + "472070475210527917637568169" ], - "mAssetSupply": "200990292456777968189575021", + "mAssetSupply": "1830368755666017393197249641", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 2, - "inputQty": "43290451235249797988352", - "expectedQty": "43630732041538858087230", + "inputQty": "1463850716361955523690496", + "expectedQty": "1467344834210500367720482", "reserves": [ - "19888271810746405254765204", - "139621501762084569366655709", - "42393187813061169006114855" + "634257762338683944384555822", + "724281022669646286988342032", + "473534325926889873161258665" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "11599274653420831637504", - "expectedQty": "12120893796270330694632", + "inputIndex": 1, + "inputQty": "28616193555835750275088384", + "expectedQty": "28570799508929329310343328", "reserves": [ - "19899871085399826086402708", - "139621501762084569366655709", - "42393187813061169006114855" + "634257762338683944384555822", + "752897216225482037263430416", + "473534325926889873161258665" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "45936892457474760638464", - "7987282541884234268672", - "14810892200077820952576" + "13311787553716250345472", + "12957953126902506979328", + "18096319788140803915776" ], - "expectedQty": "70791336919704434132158", + "expectedQty": "44385702656898949654724", + "swapFee": "26647410040163467873", "reserves": [ - "19945807977857300847041172", - "139629489044626453600924381", - "42407998705261246827067431" + "634244450551130228134210350", + "752884258272355134756451088", + "473516229607101732357342889" ], - "mAssetSupply": "201116835419535481812489041" + "mAssetSupply": "1860362514306500323925658727" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3699814150728468", - "1662512102176088", - "2615161770128343" - ], - "expectedQty": "8138614270421733", - "reserves": [ - "19945807981557114997769640", - "139629489046288965703100469", - "42407998707876408597195774" + "4787805547417835667456", + "2713383871000830017536", + "14708211042439815168" ], - "mAssetSupply": "201116835427674096082910774" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "718241399118683439104", - "expectedQty": "687070283625890591689", - "swapFee": "430944839471210063", + "expectedQty": "7509709799123232208446", + "swapFee": "4508530998072782994", "reserves": [ - "19945120911273489107177951", - "139629489046288965703100469", - "42407998707876408597195774" + "634239662745582810298542894", + "752881544888484133926433552", + "473516214898890689917527721" ], - "mAssetSupply": "201116117617219816870681733" + "mAssetSupply": "1860355004596701200693450281" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3167106887249284300800", - "232072781045273755648", - "1069725560468040450048" - ], - "expectedQty": "4615495799843025133597", - "reserves": [ - "19948288018160738391478751", - "139629721119070010976856117", - "42409068433436876637645822" - ], - "mAssetSupply": "201120733113019659895815330" - }, - { - "type": "redeemMasset", - "inputQty": "87687486637300505169100", - "expectedQtys": [ - "8694730013116585291378", - "60859494600831077971566", - "18484563677886816773850" + "280206254501390909440", + "8778292073828144128", + "165783343290291191808" ], - "redemptionFee": "26306245991190151550", + "expectedQty": "455078738515386870661", + "swapFee": "273211169811118793", "reserves": [ - "19939593288147621806187373", - "139568861624469179898884551", - "42390583869758989820871972" + "634239382539328308907633454", + "752881536110192060098289424", + "473516049115547399626335913" ], - "mAssetSupply": "201033071932628350580797780" + "mAssetSupply": "1860354549517962685306579620" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "165171589218646557196288", - "expectedQty": "163780088525381322847985", - "swapFee": "99102953531187934317", - "reserves": [ - "19939593288147621806187373", - "139568861624469179898884551", - "42226803781233608498023987" - ], - "mAssetSupply": "200867999446363235211535809" - }, - { - "type": "redeemMasset", - "inputQty": "2262779541788259516416", - "expectedQtys": [ - "224552284172641391508", - "1571772614628960891564", - "475542560239794236965" - ], - "redemptionFee": "678833862536477854", + "inputQty": "4229522947626016256", + "expectedQty": "4216248752219106648", + "swapFee": "2537713768575609", "reserves": [ - "19939368735863449164795865", - "139567289851854550937992987", - "42226328238673368703787022" + "634239382539328308907633454", + "752881536110192060098289424", + "473516044899298647407229265" ], - "mAssetSupply": "200865737345655309488497247" + "mAssetSupply": "1860354545290977451449138973" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "722554030011328888832", - "expectedQty": "716428512285051938422", - "swapFee": "433532418006797333", + "inputIndex": 0, + "inputQty": "74522391222362849673216", + "expectedQty": "74503312558354679864316", + "swapFee": "44713434733417709803", "reserves": [ - "19939368735863449164795865", - "139567289851854550937992987", - "42225611810161083651848600" + "634164879226769954227769138", + "752881536110192060098289424", + "473516044899298647407229265" ], - "mAssetSupply": "200865015225157716166405748" + "mAssetSupply": "1860280067613189822017175560" }, { "type": "redeemBassets", "inputQtys": [ - "64576584841863396065280", - "51198630623654203883520", - "29326175205235617693696" + "16450626726884769005568", + "9380909898340589633536", + "3133082688638861967360" ], - "expectedQty": "147461954847084522338424", - "swapFee": "88530291082900453675", + "expectedQty": "28951118017778758214269", + "swapFee": "17381099470349464607", "reserves": [ - "19874792151021585768730585", - "139516091221230896734109467", - "42196285634955848034154904" + "634148428600043069458763570", + "752872155200293719508655888", + "473512911816610008545261905" ], - "mAssetSupply": "200717553270310631644067324" + "mAssetSupply": "1860251116495172043258961291" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "820383850736323264512", - "1536294521696905330688", - "1126792245711154184192" + "9830238906895757737984", + "115584524497702247989248", + "89131867067786494738432" ], - "expectedQty": "3506223456184712545230", + "expectedQty": "214575246519890817753729", + "swapFee": "128822441376760546980", "reserves": [ - "19875612534872322091995097", - "139517627515752593639440155", - "42197412427201559188339096" + "634138598361136173701025586", + "752756570675796017260666640", + "473423779949542222050523473" ], - "mAssetSupply": "200721059493766816356612554" + "mAssetSupply": "1860036541248652152441207562" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5846321321486023917568", - "expectedQty": "5591210405315558839297", - "swapFee": "3507792792891614350", + "type": "mint", + "inputIndex": 1, + "inputQty": "338068469279751872", + "expectedQty": "337498279992729225", "reserves": [ - "19870021324467006533155800", - "139517627515752593639440155", - "42197412427201559188339096" - ], - "mAssetSupply": "200715216680238123224309336" + "634138598361136173701025586", + "752756571013864486540418512", + "473423779949542222050523473" + ] }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 1, + "inputQty": "2261982331324068949655552", + "expectedQty": "2258149548546048517840504", + "reserves": [ + "634138598361136173701025586", + "755018553345188555490074064", + "473423779949542222050523473" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "77849704861309459234816", - "23793296843164409135104", - "55006300123550516772864" + "3316665038678220865536", + "5127486059020990545920", + "5968136633871876751360" ], - "expectedQty": "160246450328322853409266", - "swapFee": "96205593553125587397", + "expectedQty": "14417725413428042165233", "reserves": [ - "19792171619605697073920984", - "139493834218909429230305051", - "42142406127078008671566232" + "634141915026174851921891122", + "755023680831247576480619984", + "473429748086176093927274833" ], - "mAssetSupply": "200554970229909800370900070" + "mAssetSupply": "1862309108860109908993942524" }, { - "type": "redeemMasset", - "inputQty": "378025335339768034099", - "expectedQtys": [ - "37295000579318060294", - "262852542307793921227", - "79410238104763513380" + "type": "mintMulti", + "inputQtys": [ + "15407691604131", + "17415947132660", + "15443820443435" ], - "redemptionFee": "113407600601930410", + "expectedQty": "48272175880038", "reserves": [ - "19792134324605117755860690", - "139493571366367121436383824", - "42142326716839903908052852" + "634141915026190259613495253", + "755023680831264992427752644", + "473429748086191537747718268" ], - "mAssetSupply": "200554592317982061204796381" + "mAssetSupply": "1862309108860158181169822562" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "29536908837207765155840", - "expectedQty": "29285036201022869842227", - "swapFee": "17722145302324659093", + "inputQty": "56683168402384714075209728", + "expectedQty": "56802088934671295282454781", "reserves": [ - "19792134324605117755860690", - "139493571366367121436383824", - "42113041680638881038210625" - ], - "mAssetSupply": "200525073131290155764299634" + "634141915026190259613495253", + "755023680831264992427752644", + "530112916488576251822927996" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "20208138929435544911872", - "13432109605735473610752", - "26640264326124312461312" + "4955892405568450978643968", + "7997159249954722235285504", + "925377868975030533095424" ], - "expectedQty": "61206362253633584304079", + "expectedQty": "13868942987740064681260003", + "swapFee": "8326361609609804691570", "reserves": [ - "19812342463534553300772562", - "139507003475972856909994576", - "42139681944965005350671937" + "629186022620621808634851285", + "747026521581310270192467140", + "529187538619601221289832572" ], - "mAssetSupply": "200586279493543789348603713" + "mAssetSupply": "1905242254807089411771017340" }, { "type": "mintMulti", "inputQtys": [ - "31056207912584156807168", - "46607770742393923436544", - "63107037505084851224576" + "14138725493372285353984", + "149735377330274838773760", + "84517200241007869820928" ], - "expectedQty": "141975314549501190133724", + "expectedQty": "248324964855813855779882", "reserves": [ - "19843398671447137457579730", - "139553611246715250833431120", - "42202788982470090201896513" + "629200161346115180920205269", + "747176256958640545031240900", + "529272055819842229159653500" ], - "mAssetSupply": "200728254808093290538737437" + "mAssetSupply": "1905490579771945225626797222" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "287306044252214488203264", - "expectedQty": "289565277965915737139815", + "type": "mintMulti", + "inputQtys": [ + "701313515161759596412928", + "60712947037065619439616", + "1633794049195917604552704" + ], + "expectedQty": "2398370412610493793548881", "reserves": [ - "19843398671447137457579730", - "139553611246715250833431120", - "42490095026722304690099777" - ] + "629901474861276940516618197", + "747236969905677610650680516", + "530905849869038146764206204" + ], + "mAssetSupply": "1907888950184555719420346103" }, { "type": "redeemBassets", "inputQtys": [ - "4102093644171334144", - "4391317534831944192", - "1450229200194794496" + "57542051997800789442560", + "43915373153662261002240", + "45316664868622382923776" ], - "expectedQty": "10074212466161532016", - "swapFee": "6048156373521031", + "expectedQty": "146787598239028759234558", + "swapFee": "88125434203939619312", "reserves": [ - "19843394569353493286245586", - "139553606855397716001486928", - "42490093576493104495305281" + "629843932809279139727175637", + "747193054532523948389678276", + "530860533204169524381282428" ], - "mAssetSupply": "201017810011846740114345236" + "mAssetSupply": "1907742162586316690661111545" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "679529108930236300394496", - "expectedQty": "673737360693824834166277", - "swapFee": "407717465358141780236", + "inputIndex": 0, + "inputQty": "154135692990383783936", + "expectedQty": "154043023391490805107", + "swapFee": "92481415794230270", "reserves": [ - "19843394569353493286245586", - "139553606855397716001486928", - "41816356215799279661139004" + "629843778766255748236370530", + "747193054532523948389678276", + "530860533204169524381282428" ], - "mAssetSupply": "200338688620381861955730976" + "mAssetSupply": "1907742008543105116071557879" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2499075189434189975912448", - "outputIndex": 2, - "expectedQty": "2435773418068309484237169", - "swapFee": "1476436341635409030878", + "type": "mintMulti", + "inputQtys": [ + "51092615128858591232", + "48605748054451544064", + "18076319590434195456" + ], + "expectedQty": "117738222833059844937", "reserves": [ - "19843394569353493286245586", - "142052682044831905977399376", - "39380582797730970176901835" + "629843829858870877094961762", + "747193103138272002841222340", + "530860551280489114815477884" ], - "mAssetSupply": "200340165056723497364761854", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1907742126281327949131402816" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2141208376209049934364672", - "expectedQty": "2231760764898357045421612", + "inputIndex": 2, + "inputQty": "1809079325302256640", + "expectedQty": "1811977732167191207", "reserves": [ - "21984602945562543220610258", - "142052682044831905977399376", - "39380582797730970176901835" + "629843829858870877094961762", + "747193103138272002841222340", + "530860553089568440117734524" ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "6552577027803498315513856", - "expectedQty": "6606456210099149387134060", + "inputQty": "23723247678918134687858688", + "expectedQty": "23757584407822831766723021", "reserves": [ - "21984602945562543220610258", - "142052682044831905977399376", - "45933159825534468492415691" + "629843829858870877094961762", + "747193103138272002841222340", + "554583800768486574805593212" ] }, { "type": "mintMulti", "inputQtys": [ - "182726950487079456", - "39450308403093448", - "127656632702999472" + "80562020821220781457408", + "168539072825565152018432", + "66092858311697403740160" ], - "expectedQty": "357060513858309886", + "expectedQty": "315082357003820933316573", "reserves": [ - "21984603128289493707689714", - "142052682084282214380492824", - "45933159953191101195415163" + "629924391879692097876419170", + "747361642211097567993240772", + "554649893626798272209333372" ], - "mAssetSupply": "209178382388781517655627412" + "mAssetSupply": "1931814794858132333998633617" }, { - "type": "redeemBassets", - "inputQtys": [ - "1159665716784919696375808", - "2022935248272726895362048", - "712203037450847515574272" + "type": "redeemMasset", + "inputQty": "5099111302662566864486", + "expectedQtys": [ + "1662214710554828097028", + "1972102575803986431710", + "1463583922576878709872" ], - "expectedQty": "3917461338708386633982386", - "swapFee": "2351887935986623954762", + "redemptionFee": "1529733390798770059", "reserves": [ - "20824937411504574011313906", - "140029746836009487485130776", - "45220956915740253679840891" + "629922729664981543048322142", + "747359670108521764006809062", + "554648430042875695330623500" ], - "mAssetSupply": "205260921050073131021645026" + "mAssetSupply": "1931809697276563062230539190" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "770162499512742707200", - "expectedQty": "759394321931677820987", + "type": "redeemMasset", + "inputQty": "2149013600233902522446643", + "expectedQtys": [ + "700538154094803865807803", + "831139978106795154188953", + "616825475658681208176645" + ], + "redemptionFee": "644704080070170756733", "reserves": [ - "20824937411504574011313906", - "140030516998509000227837976", - "45220956915740253679840891" - ] + "629222191510886739182514339", + "746528530130414968852620109", + "554031604567217014122446855" + ], + "mAssetSupply": "1929661328380409229878849280" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "49275085130490200457216", - "expectedQty": "49943643451195977555176", - "swapFee": "29565051078294120274", + "type": "redeemMasset", + "inputQty": "171392587214256544835174", + "expectedQtys": [ + "55870770971174704515022", + "66286798356892443304436", + "49194343917274006700684" + ], + "redemptionFee": "51417776164276963450", "reserves": [ - "20824937411504574011313906", - "139980573355057804250282800", - "45220956915740253679840891" + "629166320739915564477999317", + "746462243332058076409315673", + "553982410223299740115746171" ], - "mAssetSupply": "205212434924315650793129071" + "mAssetSupply": "1929489987210971137610977556" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "173710702628633312", - "expectedQty": "166726831048537039", - "swapFee": "104226421577179", + "inputQty": "2389879818275291398144", + "expectedQty": "2388145454981848066650", + "swapFee": "1433927890965174838", + "reserves": [ + "629163932594460582629932667", + "746462243332058076409315673", + "553982410223299740115746171" + ], + "mAssetSupply": "1929487598765080753284754250" + }, + { + "type": "mintMulti", + "inputQtys": [ + "23222120151436578363801600", + "23243981034353200436609024", + "31793247628078422528360448" + ], + "expectedQty": "78273881337717009278367708", "reserves": [ - "20824937244777742962776867", - "139980573355057804250282800", - "45220956915740253679840891" + "652386052745897160993734267", + "769706224366411276845924697", + "585775657851378162644106619" ], - "mAssetSupply": "205212434750709174586072938" + "mAssetSupply": "2007761480102797762563121958" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "103005079727528409563136", - "expectedQty": "107234175745091926332831", + "inputIndex": 2, + "inputQty": "2540818071987170649833472", + "expectedQty": "2543697130854835837654779", "reserves": [ - "20927942324505271372340003", - "139980573355057804250282800", - "45220956915740253679840891" + "652386052745897160993734267", + "769706224366411276845924697", + "588316475923365333293940091" ] }, { - "type": "redeemMasset", - "inputQty": "53356949418617241", - "expectedQtys": [ - "5436966514378215", - "36366197794025323", - "11748160649846969" - ], - "redemptionFee": "16007084825585", + "type": "redeem", + "inputIndex": 1, + "inputQty": "10828788881371683677536256", + "expectedQty": "10834253882842510607196840", + "swapFee": "6497273328823010206521", "reserves": [ - "20927942319068304857961788", - "139980573318691606456257477", - "45220956903992093029993922" + "652386052745897160993734267", + "758871970483568766238727857", + "588316475923365333293940091" ], - "mAssetSupply": "205319668873113324178614113" + "mAssetSupply": "1999482885625609737733447002" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "24964575443639940", - "expectedQty": "25984436543704949", + "type": "redeemMasset", + "inputQty": "568145509157797291150540", + "expectedQtys": [ + "185317420672493293262245", + "215565914689232845482620", + "167117753971534031844382" + ], + "redemptionFee": "170443652747339187345", "reserves": [ - "20927942344032880301601728", - "139980573318691606456257477", - "45220956903992093029993922" - ] + "652200735325224667700472022", + "758656404568879533393245237", + "588149358169393799262095709" + ], + "mAssetSupply": "1998914910560104687781483807" }, { - "type": "mintMulti", - "inputQtys": [ - "56318785339540930560", - "85649077803219304448", - "105560179389472997376" + "type": "redeemMasset", + "inputQty": "115244341449142272471859", + "expectedQtys": [ + "37590342192643292876883", + "43726037567504161303327", + "33898667138034355561808" ], - "expectedQty": "249297716771646429224", + "redemptionFee": "34573302434742681741", "reserves": [ - "20927998662818219842532288", - "139980658967769409675561925", - "45221062464171482502991298" + "652163144983032024407595139", + "758612678531312029231941910", + "588115459502255764906533901" ], - "mAssetSupply": "205319918196814532368748286" + "mAssetSupply": "1998799700791957980251693689" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "177672451855620050518016", - "outputIndex": 1, - "expectedQty": "181182227269384467256303", - "swapFee": "107265636108239739863", + "type": "redeem", + "inputIndex": 0, + "inputQty": "20371634128597639168", + "expectedQty": "20356638423586142485", + "swapFee": "12222980477158583", "reserves": [ - "20927998662818219842532288", - "139799476740500025208305622", - "45398734916027102553509314" + "652163124626393600821452654", + "758612678531312029231941910", + "588115459502255764906533901" ], - "mAssetSupply": "205320025462450640608488149", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "1998799680432546832131213104" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "2149806250796176113664", - "expectedQty": "2135416671973211012847", - "swapFee": "1289883750477705668", + "inputIndex": 0, + "inputQty": "16851099163649762987606016", + "expectedQty": "16837431372650535099968093", + "swapFee": "10110659498189857792563", "reserves": [ - "20927998662818219842532288", - "139799476740500025208305622", - "45396599499355129342496467" + "635325693253743065721484561", + "758612678531312029231941910", + "588115459502255764906533901" ], - "mAssetSupply": "205317876946083594910080153" + "mAssetSupply": "1981958691928395259001399651" }, { "type": "mint", "inputIndex": 0, - "inputQty": "901321165453359972352", - "expectedQty": "938052850563211085720", + "inputQty": "334427801674064085385216", + "expectedQty": "334523433700385416496804", "reserves": [ - "20928899983983673202504640", - "139799476740500025208305622", - "45396599499355129342496467" + "635660121055417129806869777", + "758612678531312029231941910", + "588115459502255764906533901" ] }, { - "type": "mintMulti", - "inputQtys": [ - "35265096200508189704192", - "23035990938192976019456", - "18670975667584901316608" - ], - "expectedQty": "78202432018462455971632", + "type": "redeem", + "inputIndex": 2, + "inputQty": "286190043514809102630912", + "expectedQty": "285734782066679167494028", + "swapFee": "171714026108885461578", "reserves": [ - "20964165080184181392208832", - "139822512731438218184325078", - "45415270475022714243813075" + "635660121055417129806869777", + "758612678531312029231941910", + "587829724720189085739039873" ], - "mAssetSupply": "205397017430952620577137505" + "mAssetSupply": "1982007197032606944200727121" }, { - "type": "redeem", + "type": "swap", "inputIndex": 1, - "inputQty": "357368108372997296881664", - "expectedQty": "362156525307077292156843", - "swapFee": "214420865023798378128", + "inputQty": "22068129406326323281920", + "outputIndex": 0, + "expectedQty": "22023661853522468612860", + "swapFee": "13225875106195744711", + "reserves": [ + "635638097393563607338256917", + "758634746660718355555223830", + "587829724720189085739039873" + ], + "mAssetSupply": "1982007210258482050396471832", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "5442545668796171658723328", + "6123770468485686938828800", + "53470056694110190829568" + ], + "expectedQty": "11614313834211913036719494", "reserves": [ - "20964165080184181392208832", - "139460356206131140892168235", - "45415270475022714243813075" + "641080643062359778996980245", + "764758517129204042494052630", + "587883194776883195929869441" ], - "mAssetSupply": "205039863743444647078633969" + "mAssetSupply": "1993621524092693963433191326" }, { "type": "swap", "inputIndex": 2, - "inputQty": "52865636509016513314816", + "inputQty": "24095784239406805663350784", "outputIndex": 0, - "expectedQty": "51083935328871985196254", - "swapFee": "31911499433272126214", + "expectedQty": "24091699430955350775324816", + "swapFee": "14470731291893362737103", "reserves": [ - "20913081144855309407012578", - "139460356206131140892168235", - "45468136111531730757127891" + "616988943631404428221655429", + "764758517129204042494052630", + "611978979016290001593220225" ], - "mAssetSupply": "205039895654944080350760183", + "mAssetSupply": "1993635994823985856795928429", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2159939889702496519585792", - "expectedQty": "2188531666699850788552104", - "swapFee": "1295963933821497911751", + "type": "redeemMasset", + "inputQty": "14567002598158157794508", + "expectedQtys": [ + "4506832372798986131805", + "5586223996309895242910", + "4470236788798595873806" + ], + "redemptionFee": "4370100779447447338", "reserves": [ - "20913081144855309407012578", - "137271824539431290103616131", - "45468136111531730757127891" + "616984436799031629235523624", + "764752930905207732598809720", + "611974508779501202997346419" ], - "mAssetSupply": "202881251729175405329086142" + "mAssetSupply": "1993621432191488478085581259" }, { - "type": "redeemBassets", - "inputQtys": [ - "116019729568114816319488", - "91897019553257923543040", - "36036877080817475518464" + "type": "redeemMasset", + "inputQty": "1073057106796393109913", + "expectedQtys": [ + "331989266438620342543", + "411501083974187059846", + "329293505850649533113" ], - "expectedQty": "247505767245632928513664", - "swapFee": "148592615916929915057", + "redemptionFee": "321917132038917932", "reserves": [ - "20797061415287194590693090", - "137179927519878032180073091", - "45432099234450913281609427" + "616984104809765190615181081", + "764752519404123758411749874", + "611974179485995352347813306" ], - "mAssetSupply": "202633745961929772400572478" + "mAssetSupply": "1993620359456298813731389278" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "115723573611480842502144", - "expectedQty": "117243333784214624345061", - "swapFee": "69434144166888505501", + "type": "redeemMasset", + "inputQty": "143153799010148810752", + "expectedQtys": [ + "44289837344415179045", + "54897305180307250656", + "43930202832006066508" + ], + "redemptionFee": "42946139703044643", "reserves": [ - "20797061415287194590693090", - "137062684186093817555728030", - "45432099234450913281609427" + "616984060519927846200002036", + "764752464506818578104499218", + "611974135555792520341746798" ], - "mAssetSupply": "202518091822462458446575835" + "mAssetSupply": "1993620216345445943285623169" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "8648813813357605814272", - "outputIndex": 1, - "expectedQty": "9109997190837103089187", - "swapFee": "5395220727581345794", + "type": "mint", + "inputIndex": 2, + "inputQty": "19542448037698997179121664", + "expectedQty": "19553784366968938569540200", + "reserves": [ + "616984060519927846200002036", + "764752464506818578104499218", + "631516583593491517520868462" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "84917560925526077472768", + "127307466636342528573440", + "91144283010878589108224" + ], + "expectedQty": "303336977104549614337744", + "swapFee": "182111453134610534923", "reserves": [ - "20805710229100552196507362", - "137053574188902980452638843", - "45432099234450913281609427" + "616899142959002320122529268", + "764625157040182235575925778", + "631425439310480638931760238" ], - "mAssetSupply": "202518097217683186027921629", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2012870663735310332240825625" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "8517089931875980410880", - "expectedQty": "8464033899058181497987", - "swapFee": "5110253959125588246", + "inputIndex": 0, + "inputQty": "1322944552944252747776", + "expectedQty": "1321232028207048769570", + "swapFee": "793766731766551648", "reserves": [ - "20805710229100552196507362", - "137053574188902980452638843", - "45423635200551855100111440" + "616897821726974113073759698", + "764625157040182235575925778", + "631425439310480638931760238" ], - "mAssetSupply": "202509585238005269173098995" + "mAssetSupply": "2012869341584524119754629497" }, { - "type": "mintMulti", - "inputQtys": [ - "266832858450813026304", - "85005433165819772928", - "244345768545535393792" + "type": "redeemMasset", + "inputQty": "32699895814361413635276", + "expectedQtys": [ + "10018753991430970586356", + "12417925747572624212201", + "10254690351593959606561" ], - "expectedQty": "607000533222938313698", + "redemptionFee": "9809968744308424090", "reserves": [ - "20805977061959003009533666", - "137053659194336146272411771", - "45423879546320400635505232" + "616887802972982682103173342", + "764612739114434662951713577", + "631415184620129044972153677" ], - "mAssetSupply": "202510192238538492111412693" + "mAssetSupply": "2012836651498678502649418311" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "601597884134167281664", - "expectedQty": "597848997495227477364", - "swapFee": "360958730480500368", + "inputIndex": 1, + "inputQty": "133910560016274439536640", + "expectedQty": "133972906464554586739250", + "swapFee": "80346336009764663721", "reserves": [ - "20805977061959003009533666", - "137053659194336146272411771", - "45423281697322905408027868" + "616887802972982682103173342", + "764478766207970108364974327", + "631415184620129044972153677" ], - "mAssetSupply": "202509591001613088424631397" + "mAssetSupply": "2012702821284998237974545392" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4172055625876657668096", - "99378673055811298656256", - "7197326368518803816448" + "1118591188229914230784", + "280289868462615789568", + "8113089445438836736" ], - "expectedQty": "109608949224589715307758", - "swapFee": "65804852446221562121", + "expectedQty": "1407476900219444666395", "reserves": [ - "20801805006333126351865570", - "136954280521280334973755515", - "45416084370954386604211420" + "616888921564170912017404126", + "764479046497838570980763895", + "631415192733218490410990413" ], - "mAssetSupply": "202399982052388498709323639" + "mAssetSupply": "2012704228761898457419211787" }, { "type": "mintMulti", "inputQtys": [ - "147732578305418592", - "625437572067871", - "62451818404587976" + "869164755308704555859968", + "1946923678379512579489792", + "32777368344816053649408" ], - "expectedQty": "217007670790484683", + "expectedQty": "2847403876771940523018047", "reserves": [ - "20801805154065704657284162", - "136954280521905772545823386", - "45416084433406205008799396" + "617758086319479616573264094", + "766425970176218083560253687", + "631447970101563306464639821" ], - "mAssetSupply": "202399982269396169499808322" + "mAssetSupply": "2015551632638670397942229834" }, { - "type": "redeemMasset", - "inputQty": "154953998806082", - "expectedQtys": [ - "15920732096957", - "104818422899935", - "34759354190747" + "type": "mintMulti", + "inputQtys": [ + "1885213006471251099648", + "334749068832776323072", + "2090359550928933879808" ], - "redemptionFee": "46486199641", + "expectedQty": "4312309585938599123538", "reserves": [ - "20801805154049783925187205", - "136954280521800954122923451", - "45416084433371445654608649" + "617759971532486087824363742", + "766426304925286916336576759", + "631450060461114235398519629" ], - "mAssetSupply": "202399982269241261987201881" + "mAssetSupply": "2015555944948256336541353372" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "132956216525049410093056", - "expectedQty": "132124885165145502798730", - "swapFee": "79773729915029646055", + "inputQty": "643474269674723665248256", + "expectedQty": "643791947958764332689872", "reserves": [ - "20801805154049783925187205", - "136954280521800954122923451", - "45283959548206300151809919" - ], - "mAssetSupply": "202267105826446127606754880" + "617759971532486087824363742", + "766426304925286916336576759", + "632093534730788959063767885" + ] }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "41168385661450930094080", - "expectedQty": "40610332924939117849523", + "type": "mintMulti", + "inputQtys": [ + "5093268073344912743989248", + "11209346316015018195288064", + "4884515133600129911619584" + ], + "expectedQty": "21180984661970516557689408", "reserves": [ - "20801805154049783925187205", - "136995448907462405053017531", - "45283959548206300151809919" - ] + "622853239605831000568352990", + "777635651241301934531864823", + "636978049864389088975387469" + ], + "mAssetSupply": "2037380721558185617431732652" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1744289237582166622208", - "expectedQty": "1767202616540663405767", - "swapFee": "1046573542549299973", + "inputIndex": 0, + "inputQty": "21029679261920113431937024", + "expectedQty": "20999787985543376172745401", + "swapFee": "12617807557152068059162", "reserves": [ - "20801805154049783925187205", - "136993681704845864389611764", - "45283959548206300151809919" + "601853451620287624395607589", + "777635651241301934531864823", + "636978049864389088975387469" ], - "mAssetSupply": "202305972916707027107282168" + "mAssetSupply": "2016363660103822656067854790" }, { "type": "redeemMasset", - "inputQty": "11662519917740664501043", + "inputQty": "834069299926920704", "expectedQtys": [ - "1198821186529372405924", - "7895032514351636459295", - "2609743227296785027606" + "248882134078720240", + "321572668388941568", + "263407073573733623" ], - "redemptionFee": "3498755975322199350", + "redemptionFee": "250220789978076", "reserves": [ - "20800606332863254552781281", - "136985786672331512753152469", - "45281349804979003366782313" + "601853451371405490316887349", + "777635650919729266142923255", + "636978049600982015401653846" ], - "mAssetSupply": "202294313895545261764980475" + "mAssetSupply": "2016363659270003576930912162" }, { - "type": "redeemBassets", - "inputQtys": [ - "49641732429554668011520", - "33605793612005457788928", - "43477577919417800458240" - ], - "expectedQty": "128490122891175741902188", - "swapFee": "77140357949475130219", + "type": "mint", + "inputIndex": 0, + "inputQty": "3054252780270679912087552", + "expectedQty": "3057048791963793475597656", "reserves": [ - "20750964600433699884769761", - "136952180878719507295363541", - "45237872227059585566324073" - ], - "mAssetSupply": "202165823772654086023078287" + "604907704151676170228974901", + "777635650919729266142923255", + "636978049600982015401653846" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2695646092055787799052288", - "expectedQty": "2676709762417303314266065", - "swapFee": "1617387655233472679431", + "type": "swap", + "inputIndex": 0, + "inputQty": "2080998039923422920704", + "outputIndex": 1, + "expectedQty": "2084078331659798702339", + "swapFee": "1249721701875891537", "reserves": [ - "20750964600433699884769761", - "136952180878719507295363541", - "42561162464642282252058008" + "604909785149716093651895605", + "777633566841397606344220916", + "636978049600982015401653846" ], - "mAssetSupply": "199471795068253531696705430" + "mAssetSupply": "2019420709311689072282401355", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "21336811968996732", - "expectedQty": "21170769767708428", - "swapFee": "12802087181398", + "inputQty": "11367569925553310924800", + "expectedQty": "11372435473829903244221", "reserves": [ - "20750964600433699884769761", - "136952180878719507295363541", - "42561162443471512484349580" - ], - "mAssetSupply": "199471795046929521814890096" + "604909785149716093651895605", + "777633566841397606344220916", + "636989417170907568712578646" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 1, - "inputQty": "4002303158247439", - "outputIndex": 2, - "expectedQty": "3915352727923468", - "swapFee": "2367636487439", + "inputQty": "87374309612512281100288", + "expectedQty": "87424989244748915423514", + "swapFee": "52424585767507368660", "reserves": [ - "20750964600433699884769761", - "136952180882721810453610980", - "42561162439556159756426112" + "604909785149716093651895605", + "777546141852152857428797402", + "636989417170907568712578646" ], - "mAssetSupply": "199471795046931889451377535", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2019344759862136157411913948" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2514494552453660513665024", - "outputIndex": 2, - "expectedQty": "2456261105188491687145559", - "swapFee": "1487217939196708193699", + "type": "redeemMasset", + "inputQty": "640992827802237279194316", + "expectedQtys": [ + "191956578491678499088773", + "246739432347591633820437", + "202136437626435123360173" + ], + "redemptionFee": "192297848340671183758", "reserves": [ - "20750964600433699884769761", - "139466675435175470967276004", - "40104901334367668069280553" + "604717828571224415152806832", + "777299402419805265794976965", + "636787280733281133589218473" ], - "mAssetSupply": "199473282264871086159571234", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2018703959332182260803903390" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1162751915929921", - "466023075460851", - "1150343651225088" + "13565127334444773933056", + "3661329126673880186880", + "14772618373715070025728" ], - "expectedQty": "2830894612629150", + "expectedQty": "32013270346849299680192", + "swapFee": "19219493904452251158", "reserves": [ - "20750964601596451800699682", - "139466675435641494042736855", - "40104901335518011720505641" + "604704263443889970378873776", + "777295741090678591914790085", + "636772508114907418519192745" ], - "mAssetSupply": "199473282267701980772200384" + "mAssetSupply": "2018671946061835411504223198" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3947817598975056805888", - "452283602977789690511360", - "322131940040223605391360" + "173992534277042944868352", + "123384533880780131139584", + "125655352345384158494720" ], - "expectedQty": "774780481558719129873421", + "expectedQty": "423097121975662080149242", + "swapFee": "254010679593153139973", "reserves": [ - "20754912419195426857505570", - "139918959038619283733248215", - "40427033275558235325897001" + "604530270909612927434005424", + "777172356556797811783650501", + "636646852762562034360698025" ], - "mAssetSupply": "200248062749260699902073805" + "mAssetSupply": "2018248848939859749424073956" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1161133780729637240832", - "146496767349291696128", - "537625075558896631808" + "1861764702829444757192704", + "243712487396509139075072", + "2919388294493827791585280" ], - "expectedQty": "1896199326100024004332", - "swapFee": "1138402637242359818", + "expectedQty": "5027473793814684476048768", "reserves": [ - "20753751285414697220264738", - "139918812541851934441552087", - "40426495650482676429265193" + "606392035612442372191198128", + "777416069044194320922725573", + "639566241057055862152283305" ], - "mAssetSupply": "200246166549934599878069473" + "mAssetSupply": "2023276322733674433900122724" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4046508551130233769558016", - "expectedQty": "4186311535696173497770489", + "type": "mintMulti", + "inputQtys": [ + "84213905525276", + "143976588849850", + "60778247623279" + ], + "expectedQty": "288901788956386", "reserves": [ - "24800259836544930989822754", - "139918812541851934441552087", - "40426495650482676429265193" - ] + "606392035612526586096723404", + "777416069044338297511575423", + "639566241057116640399906584" + ], + "mAssetSupply": "2023276322733963335689079110" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "619044182427147", - "expectedQty": "626722788576956", - "swapFee": "371426509456", + "type": "mintMulti", + "inputQtys": [ + "534874722965463265968128", + "590214586067470971305984", + "1270698025245797559304192" + ], + "expectedQty": "2396099046555456349953700", "reserves": [ - "24800259836544930989822754", - "139918812541225211652975131", - "40426495650482676429265193" + "606926910335492049362691532", + "778006283630405768482881407", + "640836939082362437959210776" ], - "mAssetSupply": "204432478085012100619922271" + "mAssetSupply": "2025672421780518792039032810" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1299419125428141072318464", - "expectedQty": "1315420994795943080117220", - "swapFee": "779651475256884643391", + "type": "redeemBassets", + "inputQtys": [ + "22311480177255314882560", + "16150189163893229617152", + "2174189422294145171456" + ], + "expectedQty": "40638067618254460055245", + "swapFee": "24397479058387708658", "reserves": [ - "24800259836544930989822754", - "138603391546429268572857911", - "40426495650482676429265193" + "606904598855314794047808972", + "777990133441241875253264255", + "640834764892940143814039320" ], - "mAssetSupply": "203133838611059216432247198" + "mAssetSupply": "2025631783712900537578977565" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "860540405341204173029376", - "expectedQty": "871010219740802933460450", - "swapFee": "516324243204722503817", + "type": "redeemBassets", + "inputQtys": [ + "7977403583972213996388352", + "5636459026111553874165760", + "4255236588162943853527040" + ], + "expectedQty": "17871526650724027231415949", + "swapFee": "10729353602595973923203", "reserves": [ - "24800259836544930989822754", - "137732381326688465639397461", - "40426495650482676429265193" + "598927195271342580051420620", + "772353674415130321379098495", + "636579528304777199960512280" ], - "mAssetSupply": "202273814529961216981721639" + "mAssetSupply": "2007760257062176510347561616" }, { - "type": "redeem", + "type": "swap", "inputIndex": 0, - "inputQty": "2434653166649773253459968", - "expectedQty": "2360381240285848692583114", - "swapFee": "1460791899989863952075", + "inputQty": "1093499420222786820374528", + "outputIndex": 2, + "expectedQty": "1093432919186728149599000", + "swapFee": "656711368607057765457", "reserves": [ - "22439878596259082297239640", - "137732381326688465639397461", - "40426495650482676429265193" + "600020694691565366871795148", + "772353674415130321379098495", + "635486095385590471810913280" ], - "mAssetSupply": "199840622155211433592213746" + "mAssetSupply": "2007760913773545117405327073", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "5494000747504758633267", + "inputQty": "10540483754701427520307", "expectedQtys": [ - "616730087404878783664", - "3785390514022277564565", - "1111068230117410163887" + "3149085625181550526456", + "4053539944829887074997", + "3335218511105206996176" ], - "redemptionFee": "1648200224251427589", + "redemptionFee": "3162145126410428256", "reserves": [ - "22439261866171677418455976", - "137728595936174443361832896", - "40425384582252559019101306" + "600017545605940185321268692", + "772349620875185491492023498", + "635482760167079366603917104" ], - "mAssetSupply": "199835129802664153085008068" + "mAssetSupply": "2007750376451935542388235022" }, { "type": "redeemBassets", "inputQtys": [ - "1203359519746274768191488", - "830785092008266541563904", - "300772977971568433954816" + "21398370313888084497793024", + "7307435754754480254484480", + "14597213680526915469836288" ], - "expectedQty": "2369273138182323418128903", - "swapFee": "1422417333309379678684", + "expectedQty": "43321012474493019522430146", + "swapFee": "26008212412143097572001", "reserves": [ - "21235902346425402650264488", - "136897810844166176820268992", - "40124611604280990585146490" + "578619175292052100823475668", + "765042185120431011237539018", + "620885546486552451134080816" ], - "mAssetSupply": "197465856664481829666879165" + "mAssetSupply": "1964429363977442522865804876" }, { - "type": "redeemBassets", - "inputQtys": [ - "48802959433463989534720", - "14732872479011063726080", - "28361672554431400378368" - ], - "expectedQty": "93788581622708902199938", - "swapFee": "56306933133505444586", + "type": "mint", + "inputIndex": 2, + "inputQty": "263221951401417926246400", + "expectedQty": "263327393853427379681798", "reserves": [ - "21187099386991938660729768", - "136883077971687165756542912", - "40096249931726559184768122" - ], - "mAssetSupply": "197372068082859120764679227" + "578619175292052100823475668", + "765042185120431011237539018", + "621148768437953869060327216" + ] }, { - "type": "redeemMasset", - "inputQty": "371727945066000769089536", - "expectedQtys": [ - "39891531980377030791426", - "257726439223319194543541", - "75494092288380548987244" - ], - "redemptionFee": "111518383519800230726", + "type": "redeem", + "inputIndex": 1, + "inputQty": "5886184466885775458304", + "expectedQty": "5890159252049331245229", + "swapFee": "3531710680131465274", "reserves": [ - "21147207855011561629938342", - "136625351532463846561999371", - "40020755839438178635780878" + "578619175292052100823475668", + "765036294961178961906293789", + "621148768437953869060327216" ], - "mAssetSupply": "197000451656176639795820417" + "mAssetSupply": "1964686808718539744601493644" }, { - "type": "redeemMasset", - "inputQty": "207588289626400532883046", - "expectedQtys": [ - "22277084637564769492295", - "143925124328148454017155", - "42159029750265409818785" - ], - "redemptionFee": "62276486887920159864", + "type": "mint", + "inputIndex": 1, + "inputQty": "88284189716396521019146240", + "expectedQty": "88146655210085724547874916", "reserves": [ - "21124930770373996860446047", - "136481426408135698107982216", - "39978596809687913225962093" - ], - "mAssetSupply": "196792925643037127183097235" + "578619175292052100823475668", + "853320484677575482925440029", + "621148768437953869060327216" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "786728706798182072320", - "8969009528888674484224", - "725392353035755978752" - ], - "expectedQty": "10389414452146427932956", - "swapFee": "6237391105951427616", + "type": "redeem", + "inputIndex": 2, + "inputQty": "8897194238889372283830272", + "expectedQty": "8884743805691334772939315", + "swapFee": "5338316543333623370298", "reserves": [ - "21124144041667198678373727", - "136472457398606809433497992", - "39977871417334877469983341" + "578619175292052100823475668", + "853320484677575482925440029", + "612264024632262534287387901" ], - "mAssetSupply": "196782536228584980755164279" + "mAssetSupply": "2043941608006279430488908586" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2805471402133625965117440", - "expectedQty": "2764833330733445797121360", + "inputQty": "6544411870288412118351872", + "expectedQty": "6532050696094097982640375", + "reserves": [ + "578619175292052100823475668", + "859864896547863895043791901", + "612264024632262534287387901" + ] + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "32820006555946549065547776", + "expectedQty": "32843121976533685835001516", "reserves": [ - "21124144041667198678373727", - "139277928800740435398615432", - "39977871417334877469983341" + "578619175292052100823475668", + "859864896547863895043791901", + "645084031188209083352935677" ] }, { "type": "swap", - "inputIndex": 0, - "inputQty": "915248757400965611520", - "outputIndex": 1, - "expectedQty": "965140069589358040819", - "swapFee": "570916008441425059", + "inputIndex": 1, + "inputQty": "54268847987470540734464", + "outputIndex": 2, + "expectedQty": "54110618082661059838034", + "swapFee": "32503415825257521965", "reserves": [ - "21125059290424599643985247", - "139276963660670846040574613", - "39977871417334877469983341" + "578619175292052100823475668", + "859919165395851365584526365", + "645029920570126422293097643" ], - "mAssetSupply": "199547370130234434993710698", + "mAssetSupply": "2083316813182323039564072442", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "1155613559041082", - "expectedQtys": [ - "122302194281727", - "806335169734534", - "231449357364363" - ], - "redemptionFee": "346684067712", + "type": "mint", + "inputIndex": 2, + "inputQty": "27920345194341031171063808", + "expectedQty": "27931764452014114313714291", "reserves": [ - "21125059290302297449703520", - "139276963659864510870840079", - "39977871417103428112618978" - ], - "mAssetSupply": "199547370129079168118737328" + "578619175292052100823475668", + "859919165395851365584526365", + "672950265764467453464161451" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "16681565500809595060224", - "expectedQty": "16515677240992356297186", - "swapFee": "10008939300485757036", + "type": "mintMulti", + "inputQtys": [ + "4709214713081450496", + "84585193793573306368", + "66728314723993853952" + ], + "expectedQty": "155908066306498603047", "reserves": [ - "21125059290302297449703520", - "139276963659864510870840079", - "39961355739862435756321792" + "578619180001266813904926164", + "859919249981045159157832733", + "672950332492782177458015403" ], - "mAssetSupply": "199530698572517659009434140" + "mAssetSupply": "2111248733542403460376389780" }, { "type": "redeemMasset", - "inputQty": "16971114747755888430284", + "inputQty": "1046788813159001", "expectedQtys": [ - "1796256180584793116369", - "11842670041733892159899", - "3397899681409524788442" + "286802008431843", + "426232963765958", + "333558778562066" ], - "redemptionFee": "5091334424326766529", + "redemptionFee": "314036643947", "reserves": [ - "21123263034121712656587151", - "139265120989822776978680180", - "39957957840181026231533350" + "578619180000980011896494321", + "859919249980618926194066775", + "672950332492448618679453337" ], - "mAssetSupply": "199513732549104327447770385" + "mAssetSupply": "2111248733541356985599874726" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "77181464644725533310976", - "expectedQty": "74184245603727218456031", - "swapFee": "46308878786835319986", + "type": "redeemMasset", + "inputQty": "5443188811082550470089113", + "expectedQtys": [ + "1491339479050292404282057", + "2216365393019364362594428", + "1734469635597474635600822" + ], + "redemptionFee": "1632956643324765141026", "reserves": [ - "21049078788517985438131120", - "139265120989822776978680180", - "39957957840181026231533350" + "577127840521929719492212264", + "857702884587599561831472347", + "671215862856851144043852515" ], - "mAssetSupply": "199436597393338388749779395" + "mAssetSupply": "2105807177686917759894926639" }, { - "type": "redeemMasset", - "inputQty": "18242908887865104531456", - "expectedQtys": [ - "1924828404625079778989", - "12735068520004948116648", - "3653946712553829795620" + "type": "mintMulti", + "inputQtys": [ + "30988210130276482809856", + "46107234059125140750336", + "1030183356523374837760" ], - "redemptionFee": "5472872666359531359", + "expectedQty": "78102844537964394919557", "reserves": [ - "21047153960113360358352131", - "139252385921302772030563532", - "39954303893468472401737730" + "577158828732059995975022120", + "857748991821658686972222683", + "671216893040207667418690275" ], - "mAssetSupply": "199418359957323190004779298" + "mAssetSupply": "2105885280531455724289846196" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "11141926687942379569152", - "expectedQty": "10707558966334321706971", - "swapFee": "6685156012765427741", + "inputQty": "1407488152134949273600", + "expectedQty": "1409946573597317981627", "reserves": [ - "21036446401147026036645160", - "139252385921302772030563532", - "39954303893468472401737730" - ], - "mAssetSupply": "199407224715791260390637887" + "577160236220212130924295720", + "857748991821658686972222683", + "671216893040207667418690275" + ] }, { "type": "redeem", "inputIndex": 2, - "inputQty": "462149015202161533911040", - "expectedQty": "457471663827574188356090", - "swapFee": "277289409121296920346", + "inputQty": "1821412630679840750567424", + "expectedQty": "1819793244847820980655723", + "swapFee": "1092847578407904450340", "reserves": [ - "21036446401147026036645160", - "139252385921302772030563532", - "39496832229640898213381640" + "577160236220212130924295720", + "857748991821658686972222683", + "669397099795359846438034552" ], - "mAssetSupply": "198945352989998220153647193" + "mAssetSupply": "2104066370694927888761710739" }, { - "type": "redeemBassets", - "inputQtys": [ - "543253161910972973056", - "1911243508084270170112", - "1234694668775030259712" + "type": "redeemMasset", + "inputQty": "1113837756370929103090483", + "expectedQtys": [ + "305441887513749403981430", + "453933681902266958569160", + "354255024560827736125690" ], - "expectedQty": "3694615398754470899335", - "swapFee": "2218100099312269901", + "redemptionFee": "334151326911278730927", "reserves": [ - "21035903147985115063672104", - "139250474677794687760393420", - "39495597534972123183121928" + "576854794332698381520314290", + "857295058139756420013653523", + "669042844770799018701908862" ], - "mAssetSupply": "198941658374599465682747858" + "mAssetSupply": "2102952867089883870937351183" }, { - "type": "redeem", + "type": "mint", + "inputIndex": 1, + "inputQty": "2356038774644981119320064", + "expectedQty": "2352061466411005287258559", + "reserves": [ + "576854794332698381520314290", + "859651096914401401132973587", + "669042844770799018701908862" + ] + }, + { + "type": "swap", "inputIndex": 1, - "inputQty": "586240031245827768320", - "expectedQty": "594720647899643223526", - "swapFee": "351744018747496660", + "inputQty": "29428190441051393097728", + "outputIndex": 0, + "expectedQty": "29309415439535276948641", + "swapFee": "17626980815348430650", "reserves": [ - "21035903147985115063672104", - "139249879957146788117169894", - "39495597534972123183121928" + "576825484917258846243365649", + "859680525104842452526071315", + "669042844770799018701908862" ], - "mAssetSupply": "198941072486312238602476198" + "mAssetSupply": "2105304946183275691573040392", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "468995690731966828642304", - "1146577657779113743613952", - "1352041629351274776363008" + "17683926580764819456", + "247153382013916938240", + "426211190181756600320" ], - "expectedQty": "2982010179496498433610971", + "expectedQty": "690790828517209626738", "reserves": [ - "21504898838717081892314408", - "140396457614925901860783846", - "40847639164323397959484936" + "576825502601185427008185105", + "859680772258224466443009555", + "669043270981989200458509182" ], - "mAssetSupply": "201923082665808737036087169" + "mAssetSupply": "2105305636974104208782667130" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "541191502531904235634688", - "expectedQty": "548779565325984890484653", - "swapFee": "324714901519142541380", + "type": "redeemMasset", + "inputQty": "400620645082073195872256", + "expectedQtys": [ + "109731753163606820838411", + "163540408452017898416426", + "127274697002997720958930" + ], + "redemptionFee": "120186193524621958761", "reserves": [ - "21504898838717081892314408", - "139847678049599916970299193", - "40847639164323397959484936" + "576715770848021820187346694", + "859517231849772448544593129", + "668915996284986202737550252" ], - "mAssetSupply": "201382215878178351942993861" + "mAssetSupply": "2104905136515215660208753635" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "8597279302632243986432", - "outputIndex": 0, - "expectedQty": "8154290890365855668037", - "swapFee": "5084195449235890514", + "inputIndex": 0, + "inputQty": "2086842205175031005184", + "outputIndex": 2, + "expectedQty": "2088598646480259813053", + "swapFee": "1254295340294427398", "reserves": [ - "21496744547826716036646371", - "139856275328902549214285625", - "40847639164323397959484936" + "576717857690226995218351878", + "859517231849772448544593129", + "668913907686339722477737199" ], - "mAssetSupply": "201382220962373801178884375", + "mAssetSupply": "2104905137769511000503181033", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "254119734324172364447744", - "expectedQty": "257668739507325886451270", - "swapFee": "152471840594503418668", - "reserves": [ - "21496744547826716036646371", - "139598606589395223327834355", - "40847639164323397959484936" - ], - "mAssetSupply": "201128253699890223317855299" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "294598735135797", - "35397601289758", - "559499332567296" + "type": "redeemMasset", + "inputQty": "10747903402559308352716", + "expectedQtys": [ + "2943908569297505600018", + "4387483603222392327859", + "3414531661715642312373" ], - "expectedQty": "905265758789323", - "swapFee": "543485546601", + "redemptionFee": "3224371020767792505", "reserves": [ - "21496744547532117301510574", - "139598606589359825726544597", - "40847639163763898626917640" + "576714913781657697712751860", + "859512844366169226152265270", + "668910493154678006835424826" ], - "mAssetSupply": "201128253698984957559065976" + "mAssetSupply": "2104894393090479461962620822" }, { "type": "redeemMasset", - "inputQty": "63916061679042985092710", + "inputQty": "236465561181351196806348", "expectedQtys": [ - "6829349079315882645952", - "44349395010802867771048", - "12976978272149772173651" + "64769189471851696427208", + "96529409834750774472846", + "75123409219217304889142" ], - "redemptionFee": "19174818503712895527", + "redemptionFee": "70939668354405359041", "reserves": [ - "21489915198452801418864622", - "139554257194349022858773549", - "40834662185491748854743989" + "576650144592185846016324652", + "859416314956334475377792424", + "668835369745458789530535684" ], - "mAssetSupply": "201064356812124418286868793" + "mAssetSupply": "2104657998468966465171173515" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1022407072639582", - "expectedQty": "983997468269710", - "swapFee": "613444243583", + "type": "mint", + "inputIndex": 1, + "inputQty": "255071618251086551318528", + "expectedQty": "254638948051154471189761", + "reserves": [ + "576650144592185846016324652", + "859671386574585561929110952", + "668835369745458789530535684" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "7758365009350552927076352", + "outputIndex": 0, + "expectedQty": "7726176228630531358440043", + "swapFee": "4647011382975980672885", "reserves": [ - "21489915197468803950594912", - "139554257194349022858773549", - "40834662185491748854743989" + "568923968363555314657884609", + "867429751583936114856187304", + "668835369745458789530535684" ], - "mAssetSupply": "201064356811102624658472794" + "mAssetSupply": "2104917284428400595623036161", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 1, - "inputQty": "149201702917633000603648", - "expectedQty": "147059575530032516172891", + "inputIndex": 0, + "inputQty": "124221606190455229251584", + "expectedQty": "124456092438600005586039", "reserves": [ - "21489915197468803950594912", - "139703458897266655859377197", - "40834662185491748854743989" + "569048189969745769887136193", + "867429751583936114856187304", + "668835369745458789530535684" ] }, { "type": "redeemBassets", "inputQtys": [ - "10580504765692888743936", - "228218602037175853776896", - "269131012947870968971264" + "25226574816256958464", + "41950679545786507264", + "99211280671209914368" ], - "expectedQty": "507468845413637564521911", - "swapFee": "304664105711609504415", + "expectedQty": "166390905980355840779", + "swapFee": "99894480276379332", "reserves": [ - "21479334692703111061850976", - "139475240295229480005600301", - "40565531172543877885772725" + "569048164743170953630177729", + "867429709633256569069680040", + "668835270534178118320621316" ], - "mAssetSupply": "200703947541219019610123774" + "mAssetSupply": "2105041574129933215272781421" }, { - "type": "mintMulti", - "inputQtys": [ - "111613634313113158287360", - "40849183802755056140288", - "187600402894326595584000" - ], - "expectedQty": "345426905658431618098274", + "type": "swap", + "inputIndex": 2, + "inputQty": "23434480463372768", + "outputIndex": 1, + "expectedQty": "23469131046825635", + "swapFee": "14064858766399", "reserves": [ - "21590948327016224220138336", - "139516089479032235061740589", - "40753131575438204481356725" + "569048164743170953630177729", + "867429709609787438022854405", + "668835270557612598783994084" ], - "mAssetSupply": "201049374446877451228222048" + "mAssetSupply": "2105041574129947280131547820", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3019837019902766481408", - "540703003975913308160", - "6222849067818741137408" + "837178237705165977157632", + "1048642590436003047014400", + "1310207384690985170632704" ], - "expectedQty": "9945938283010009547395", + "expectedQty": "3196131219026289584256865", + "swapFee": "1918830029433433810840", "reserves": [ - "21593968164036126986619744", - "139516630182036210975048749", - "40759354424506023222494133" + "568210986505465787653020097", + "866381067019351434975840005", + "667525063172921613613361380" ], - "mAssetSupply": "201059320385160461237769443" + "mAssetSupply": "2101845442910920990547290955" }, { - "type": "mintMulti", - "inputQtys": [ - "37194306331431890059264", - "8396861583460794368000", - "31739955618475885461504" - ], - "expectedQty": "78905173350930954657314", + "type": "redeem", + "inputIndex": 0, + "inputQty": "102458841589561339936768", + "expectedQty": "102204514538968327962164", + "swapFee": "61475304953736803962", "reserves": [ - "21631162470367558876679008", - "139525027043619671769416749", - "40791094380124499107955637" + "568108781990926819325057933", + "866381067019351434975840005", + "667525063172921613613361380" ], - "mAssetSupply": "201138225558511392192426757" + "mAssetSupply": "2101743045544636382944158149" }, { - "type": "redeemMasset", - "inputQty": "1809606042863456460", - "expectedQtys": [ - "194553467135259138", - "1254906101355529717", - "366880367653211721" - ], - "redemptionFee": "542881812859036", + "type": "mint", + "inputIndex": 2, + "inputQty": "34775908101449857368064", + "expectedQty": "34786331117944417308281", + "reserves": [ + "568108781990926819325057933", + "866381067019351434975840005", + "667559839081023063470729444" + ] + }, + { + "type": "swap", + "inputIndex": 0, + "inputQty": "26837255295717084107898880", + "outputIndex": 1, + "expectedQty": "26909577984825532877102804", + "swapFee": "16129958690509324882222", "reserves": [ - "21631162275814091741419870", - "139525025788713570413887032", - "40791094013244131454743916" + "594946037286643903432956813", + "839471489034525902098737201", + "667559839081023063470729444" ], - "mAssetSupply": "201138223749448231141829333" + "mAssetSupply": "2101793961834444836686348652", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "17918429026787747", - "expectedQtys": [ - "1926437252200126", - "12425879102857661", - "3632790603812048" + "type": "redeem", + "inputIndex": 0, + "inputQty": "77435258950417305829376", + "expectedQty": "77278509958708992719840", + "swapFee": "46461155370250383497", + "reserves": [ + "594868758776685194440236973", + "839471489034525902098737201", + "667559839081023063470729444" ], - "redemptionFee": "5375528708036", + "mAssetSupply": "2101716573036649789630902773" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "26132204780692673921024", + "expectedQty": "26093095819104150013711", "reserves": [ - "21631162273887654489219744", - "139525025776287691311029371", - "40791094009611340850931868" - ], - "mAssetSupply": "201138223731535177643749622" + "594868758776685194440236973", + "839497621239306594772658225", + "667559839081023063470729444" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7382435031000891260928", - "3188632502645569355776", - "7603269224839051739136" + "5952131193116909381877760", + "4086574290261253048762368", + "18181436378375880026619904" ], - "expectedQty": "18476206758380888540785", - "swapFee": "11092379482718164022", + "expectedQty": "28227796684051266900779923", "reserves": [ - "21623779838856653597958816", - "139521837143785045741673595", - "40783490740386501799192732" + "600820889969802103822114733", + "843584195529567847821420593", + "685741275459398943497349348" ], - "mAssetSupply": "201119747524776796755208837" + "mAssetSupply": "2129970462816520160681696407" }, { - "type": "redeemMasset", - "inputQty": "19019418235922271541657", - "expectedQtys": [ - "2044296177491414508087", - "13190291451131445461462", - "3855641097284541977048" - ], - "redemptionFee": "5705825470776681462", + "type": "mint", + "inputIndex": 2, + "inputQty": "118312624513266745344", + "expectedQty": "118338530295568453281", "reserves": [ - "21621735542679162183450729", - "139508646852333914296212133", - "40779635099289217257215684" - ], - "mAssetSupply": "201100733812366345260348642" + "600820889969802103822114733", + "843584195529567847821420593", + "685741393772023456764094692" + ] }, { "type": "redeemBassets", "inputQtys": [ - "90542488808725905408", - "33416010838095716352", - "117508192136510324736" + "206751688702886890438656", + "1081803811807003934720000", + "503695645898691489824768" ], - "expectedQty": "245467301052609918721", - "swapFee": "147368801912713579", + "expectedQty": "1791119500648427331341427", + "swapFee": "1075316890523370421057", "reserves": [ - "21621645000190353457545321", - "139508613436323076200495781", - "40779517591097080746890948" + "600614138281099216931676077", + "842502391717760843886700593", + "685237698126124765274269924" ], - "mAssetSupply": "201100488345065292650429921" + "mAssetSupply": "2128179461654402028918808261" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "612520010106753777664", - "expectedQty": "606754705719995019336", - "swapFee": "367512006064052266", + "type": "mintMulti", + "inputQtys": [ + "2058273005112665653116928", + "5796301025433270823682048", + "5078132275769339061207040" + ], + "expectedQty": "12928528205731027761682565", "reserves": [ - "21621645000190353457545321", - "139508613436323076200495781", - "40778910836391360751871612" + "602672411286211882584793005", + "848298692743194114710382641", + "690315830401894104335476964" ], - "mAssetSupply": "201099876192567191960704523" + "mAssetSupply": "2141107989860133056680490826" }, { "type": "mint", "inputIndex": 2, - "inputQty": "5249121222832353102004224", - "expectedQty": "5287239420793859694895098", + "inputQty": "3116778028921463773331456", + "expectedQty": "3117377147898628176098055", "reserves": [ - "21621645000190353457545321", - "139508613436323076200495781", - "46028032059223713853875836" + "602672411286211882584793005", + "848298692743194114710382641", + "693432608430815568108808420" ] }, { "type": "swap", "inputIndex": 2, - "inputQty": "31251584223240794112", + "inputQty": "999727975652384068075520", "outputIndex": 1, - "expectedQty": "31838307375430332046", - "swapFee": "18859620214614050", + "expectedQty": "1000719422630683785811831", + "swapFee": "599941640632646021225", "reserves": [ - "21621645000190353457545321", - "139508581598015700770163735", - "46028063310807937094669948" + "602672411286211882584793005", + "847297973320563430924570810", + "694432336406467952176883940" ], - "mAssetSupply": "206387115632220671870213671", + "mAssetSupply": "2144225966949672317502610106", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "3048075203025232048685056", - "expectedQty": "3149352774332807861597954", + "inputIndex": 2, + "inputQty": "161519011577297403904", + "expectedQty": "161545996887448942259", "reserves": [ - "24669720203215585506230377", - "139508581598015700770163735", - "46028063310807937094669948" + "602672411286211882584793005", + "847297973320563430924570810", + "694432497925479529474287844" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "190424447931540641415168", - "expectedQty": "191549363279228204065916", + "type": "redeemMasset", + "inputQty": "7694789414158212419026944", + "expectedQtys": [ + "2162106877522148483524904", + "3039709037812529343005635", + "2491299172854496194212977" + ], + "redemptionFee": "2308436824247463725708", "reserves": [ - "24669720203215585506230377", - "139508581598015700770163735", - "46218487758739477736085116" - ] + "600510304408689734101268101", + "844258264282750901581565175", + "691941198752625033280074867" + ], + "mAssetSupply": "2136533647518335239996251129" }, { - "type": "redeemBassets", - "inputQtys": [ - "89097160120341215838208", - "44881731170069733441536", - "2642337529985510146048" - ], - "expectedQty": "138698097927947353768755", - "swapFee": "83268820048797690875", + "type": "swap", + "inputIndex": 2, + "inputQty": "5047673942394658560671744", + "outputIndex": 0, + "expectedQty": "5037552109898593090367418", + "swapFee": "3029046050965881653742", "reserves": [ - "24580623043095244290392169", - "139463699866845631036722199", - "46215845421209492225939068" + "595472752298791141010900683", + "844258264282750901581565175", + "696988872695019691840746611" ], - "mAssetSupply": "209589319671904760582108786" + "mAssetSupply": "2136536676564386205877904871", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5719501725498001906991104", - "1890769609534997620850688", - "83047586600921178570752" + "94498265610360759255040", + "61853162451279353479168", + "12678495355815025704960" ], - "expectedQty": "7809180646545070019310143", + "expectedQty": "169093259841448036711620", + "swapFee": "101516866024483512134", "reserves": [ - "30300124768593246197383273", - "141354469476380628657572887", - "46298893007810413404509820" + "595378254033180780251645643", + "844196411120299622228086007", + "696976194199663876815041651" ], - "mAssetSupply": "217398500318449830601418929" + "mAssetSupply": "2136367583304544757841193251" }, { "type": "mint", "inputIndex": 2, - "inputQty": "172067310181396709376", - "expectedQty": "173162922818739547353", + "inputQty": "822820862525937427677184", + "expectedQty": "822900352857064849979525", "reserves": [ - "30300124768593246197383273", - "141354469476380628657572887", - "46299065075120594801219196" + "595378254033180780251645643", + "844196411120299622228086007", + "697799015062189814242718835" ] }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "13231258498775310663680", - "expectedQty": "13096846085219655488496", - "reserves": [ - "30300124768593246197383273", - "141367700734879403968236567", - "46299065075120594801219196" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "50244706372747863785472", - "48737221825181727588352", - "36656799824084761313280" - ], - "expectedQty": "136347986693468556666358", + "inputQty": "16309401146630748", + "outputIndex": 2, + "expectedQty": "16275041019297322", + "swapFee": "9771797637865", "reserves": [ - "30350369474965994061168745", - "141416437956704585695824919", - "46335721874944679562532476" + "595378254033180780251645643", + "844196411136609023374716755", + "697799015045914773223421513" ], - "mAssetSupply": "217548118314151337553121136" + "mAssetSupply": "2137190483657411594488810641", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "378347397951074336768", - "expectedQtys": [ - "52767812986250273498", - "245869697152654295966", - "80560294611791583863" - ], - "redemptionFee": "113504219385322301", + "type": "mint", + "inputIndex": 1, + "inputQty": "131855938883692904448", + "expectedQty": "131669411609381300814", "reserves": [ - "30350316707153007810895247", - "141416192087007433041528953", - "46335641314650067770948613" - ], - "mAssetSupply": "217547740080257605864106669" + "595378254033180780251645643", + "844196542992547907067621203", + "697799015045914773223421513" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "2743812874828049920", - "28832256436287700", - "688980669107332992" - ], - "expectedQty": "3518653518344866623", + "type": "swap", + "inputIndex": 0, + "inputQty": "118970616892228833902592", + "outputIndex": 2, + "expectedQty": "119076846985287118656639", + "swapFee": "71495739521086285683", "reserves": [ - "30350319450965882638945167", - "141416192115839689477816653", - "46335642003630736878281605" + "595497224650073009085548235", + "844196542992547907067621203", + "697679938198929486104764874" ], - "mAssetSupply": "217547743598911124208973292" + "mAssetSupply": "2137190686822562724956397138", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "703050576509776", - "expectedQty": "689329351082281", - "swapFee": "421830345905", + "inputQty": "62129454485431881039872", + "expectedQty": "61993775051872662179240", + "swapFee": "37277672691259128623", "reserves": [ - "30350319450276553287862886", - "141416192115839689477816653", - "46335642003630736878281605" + "595435230875021136423368995", + "844196542992547907067621203", + "697679938198929486104764874" ], - "mAssetSupply": "217547743598208495462809421" + "mAssetSupply": "2137128594645749984334485889" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3333708180711126597632", - "expectedQty": "3299885262345883992666", + "inputIndex": 2, + "inputQty": "12158266180659628656820224", + "expectedQty": "12158805963636209813262424", "reserves": [ - "30350319450276553287862886", - "141419525824020400604414285", - "46335642003630736878281605" + "595435230875021136423368995", + "844196542992547907067621203", + "709838204379589114761585098" ] }, { "type": "redeemMasset", - "inputQty": "405419710375089413921177", - "expectedQtys": [ - "56542713558350594180538", - "263464895429708177487560", - "86323405512942564304278" - ], - "redemptionFee": "121625913112526824176", - "reserves": [ - "30293776736718202693682348", - "141156060928590692426926725", - "46249318598117794313977327" - ], - "mAssetSupply": "217145745399008864459705086" - }, - { - "type": "redeemMasset", - "inputQty": "42045749185890825011", + "inputQty": "2765978418408395745368473", "expectedQtys": [ - "5863998941651242565", - "27323730516889822354", - "8952530338771958128" + "766052464362866985177068", + "1086094353563357003215599", + "913236700765581616878781" ], - "redemptionFee": "12613724755767247", + "redemptionFee": "829793525522518723610", "reserves": [ - "30293770872719261042439783", - "141156033604860175537104371", - "46249309645587455542019199" + "594669178410658269438191927", + "843110448638984550064405604", + "708924967678823533144706317" ], - "mAssetSupply": "217145703365873403324647322" + "mAssetSupply": "2146522251984503320921103450" }, { - "type": "redeemMasset", - "inputQty": "2276574090100238336", - "expectedQtys": [ - "317507199025441618", - "1479447938116568322", - "484736245749279632" + "type": "mintMulti", + "inputQtys": [ + "4680194899247771418624", + "15099651355761946132480", + "22516712376926491115520" ], - "redemptionFee": "682972227030071", + "expectedQty": "42283415274549243221182", "reserves": [ - "30293770555212062016998165", - "141156032125412237420536049", - "46249309160851209792739567" + "594673858605557517209610551", + "843125548290340312010538084", + "708947484391200459635821837" ], - "mAssetSupply": "217145701089982285451439057" + "mAssetSupply": "2146564535399777870164324632" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "84507104858388021248", - "314715907644127182848", - "2436193939363895181312" + "114095252132951488462848", + "91471169180674377646080", + "27129722132314359595008" ], - "expectedQty": "2849355391603819328386", - "swapFee": "1710639618733531716", + "expectedQty": "232758193481424135826989", "reserves": [ - "30293686048107203628976917", - "141155717409504593293353201", - "46246872966911845897558255" + "594787953857690468698073399", + "843217019459520986388184164", + "708974614113332773995416845" ], - "mAssetSupply": "217142851734590681632110671" + "mAssetSupply": "2146797293593259294300151621" }, { "type": "mint", "inputIndex": 1, - "inputQty": "2578585869538487957454848", - "expectedQty": "2552077000639264000143731", + "inputQty": "7394394538461022", + "expectedQty": "7384243637559493", "reserves": [ - "30293686048107203628976917", - "143734303279043081250808049", - "46246872966911845897558255" + "594787953857690468698073399", + "843217019466915380926645186", + "708974614113332773995416845" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "93244063395004010201088", - "expectedQty": "94168409854752546312445", - "swapFee": "55946438037002406120", + "type": "mintMulti", + "inputQtys": [ + "1902332462516633887309824", + "272494817255657450766336", + "1148787931536347533148160" + ], + "expectedQty": "3326351937416047495456616", "reserves": [ - "30293686048107203628976917", - "143640134869188328704495604", - "46246872966911845897558255" + "596690286320207102585383223", + "843489514284171038377411522", + "710123402044869121528565005" ], - "mAssetSupply": "219601740618272978624459434" + "mAssetSupply": "2150123645538059585433167730" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "289334961068681052815360", - "expectedQty": "286320030313902274296262", + "inputIndex": 0, + "inputQty": "7652198083433840917872640", + "expectedQty": "7664313445400137688567259", "reserves": [ - "30293686048107203628976917", - "143929469830257009757310964", - "46246872966911845897558255" + "604342484403640943503255863", + "843489514284171038377411522", + "710123402044869121528565005" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "3800073117305281024", - "expectedQty": "3723057367001846614", - "swapFee": "2280043870383168", - "reserves": [ - "30293682325049836627130303", - "143929469830257009757310964", - "46246872966911845897558255" + "type": "mintMulti", + "inputQtys": [ + "1514778246543853272170496", + "2442639046201458384961536", + "5096496855536485342904320" ], - "mAssetSupply": "219888056850793807463857840" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "18013841108953869582336", - "expectedQty": "17648539296616058066659", - "swapFee": "10808304665372321749", + "expectedQty": "9053124917132496009877317", "reserves": [ - "30276033785753220569063644", - "143929469830257009757310964", - "46246872966911845897558255" + "605857262650184796775426359", + "845932153330372496762373058", + "715219898900405606871469325" ], - "mAssetSupply": "219870053817989518966597253" + "mAssetSupply": "2166841083900592219131612306" }, { - "type": "redeemMasset", - "inputQty": "13730873591024535679795", - "expectedQtys": [ - "1890169537030137030153", - "8985691497083317838341", - "2887248411847568844075" - ], - "redemptionFee": "4119262077307360703", + "type": "swap", + "inputIndex": 1, + "inputQty": "302469483118109227220992", + "outputIndex": 2, + "expectedQty": "301886443705214769128201", + "swapFee": "181242260248455849277", "reserves": [ - "30274143616216190432033491", - "143920484138759926439472623", - "46243985718499998328714180" + "605857262650184796775426359", + "846234622813490605989594050", + "714918012456700392102341124" ], - "mAssetSupply": "219856327063660571738278161" + "mAssetSupply": "2166841265142852467587461583", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeem", "inputIndex": 0, - "inputQty": "573783151972293541888", - "expectedQty": "562140300985993334746", - "swapFee": "344269891183376125", + "inputQty": "2079375305313814839296", + "expectedQty": "2074901278424152817327", + "swapFee": "1247625183188288903", "reserves": [ - "30273581475915204438698745", - "143920484138759926439472623", - "46243985718499998328714180" + "605855187748906372622609032", + "846234622813490605989594050", + "714918012456700392102341124" ], - "mAssetSupply": "219855753624778490628112398" + "mAssetSupply": "2166839187015172336960911190" }, { - "type": "redeemBassets", - "inputQtys": [ - "97019009814484664320", - "12559687029004838912", - "110543973745326784512" - ], - "expectedQty": "222686990830351633761", - "swapFee": "133692409944177486", + "type": "mint", + "inputIndex": 2, + "inputQty": "12086946705435279753216", + "expectedQty": "12087070617223856642227", "reserves": [ - "30273484456905389954034425", - "143920471579072897434633711", - "46243875174526253001929668" - ], - "mAssetSupply": "219855530937787660276478637" + "605855187748906372622609032", + "846234622813490605989594050", + "714930099403405827382094340" + ] }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "86333189904747773034496", - "expectedQty": "85701800095724882175717", - "swapFee": "51799913942848663820", + "inputQty": "18688054454488022384640", + "outputIndex": 1, + "expectedQty": "18701737535447052609387", + "swapFee": "11212946242490333566", "reserves": [ - "30273484456905389954034425", - "143920471579072897434633711", - "46158173374430528119753951" + "605855187748906372622609032", + "846215921075955158936984663", + "714948787457860315404478980" ], - "mAssetSupply": "219769249547796855352107961" + "mAssetSupply": "2166851285298735803307886983", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "2654813997604558340096", - "3435625393498632486912", - "5462593320890668154880" + "type": "redeemMasset", + "inputQty": "2267178091016771584", + "expectedQtys": [ + "633716555827900995", + "885130720731304331", + "747827025901284945" ], - "expectedQty": "11607530960971724185892", - "swapFee": "6968699796460911058", + "redemptionFee": "680153427305031", "reserves": [ - "30270829642907785395694329", - "143917035953679398802146799", - "46152710781109637451599071" + "605855187115189816794708037", + "846215920190824438205680332", + "714948786710033289503194035" ], - "mAssetSupply": "219757642016835883627922069" + "mAssetSupply": "2166851283032237865718420430" }, { - "type": "redeemBassets", - "inputQtys": [ - "347662016526764319178752", - "1054727524995417692438528", - "1400715604265670778290176" - ], - "expectedQty": "2808846045838531859218499", - "swapFee": "1686319419154611882660", + "type": "mint", + "inputIndex": 1, + "inputQty": "25524574367680370277613568", + "expectedQty": "25488906268451217035979373", "reserves": [ - "29923167626381021076515577", - "142862308428683981109708271", - "44751995176843966673308895" - ], - "mAssetSupply": "216948795970997351768703570" + "605855187115189816794708037", + "871740494558504808483293900", + "714948786710033289503194035" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "22196550374822504300544", - "46031305753270677405696", - "55406474377932249759744" + "514067974391133503488", + "701231231769701515264", + "1415114368816552869888" ], - "expectedQty": "123998177749375181571393", - "swapFee": "74443572793301089596", + "expectedQty": "2630375043333563117619", "reserves": [ - "29900971076006198572215033", - "142816277122930710432302575", - "44696588702466034423549151" + "605855701183164207928211525", + "871741195789736578184809164", + "714950201824402106056063923" ], - "mAssetSupply": "216824797793247976587132177" + "mAssetSupply": "2192342819675732416317517422" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "6915966837017033048064", - "5811358346168283168768", - "9646486328182034137088" + "38751641272835889996759040", + "33717693791165173534294016", + "62798695165108531253739520" ], - "expectedQty": "22522557970178230040425", - "swapFee": "13521647770769399664", + "expectedQty": "135285444161645895685830605", "reserves": [ - "29894055109169181539166969", - "142810465764584542149133807", - "44686942216137852389412063" + "644607342456000097924970565", + "905458889580901751719103180", + "777748896989510637309803443" ], - "mAssetSupply": "216802275235277798357091752" + "mAssetSupply": "2327628263837378312003348027" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "495194693033840408002560", - "expectedQty": "491242046264481141192558", - "swapFee": "297116815820304244801", + "inputIndex": 0, + "inputQty": "15637288435175609335808", + "expectedQty": "15602138028345077343070", + "swapFee": "9382373061105365601", "reserves": [ - "29894055109169181539166969", - "142810465764584542149133807", - "44195700169873371248219505" + "644591740317971752847627495", + "905458889580901751719103180", + "777748896989510637309803443" ], - "mAssetSupply": "216307377659059778253333993" + "mAssetSupply": "2327612635931316197499377820" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "2520490396856703488", - "1396132133518319104", - "1527188866114779392" + "5197469808034088747008", + "102755712546900268810240", + "62499312305193135112192" ], - "expectedQty": "5491411018132569924", + "expectedQty": "170321649161311732167871", + "swapFee": "102254342102048268261", "reserves": [ - "29894057629659578395870457", - "142810467160716675667452911", - "44195701697062237362998897" + "644586542848163718758880487", + "905356133868354851450292940", + "777686397677205444174691251" ], - "mAssetSupply": "216307383150470796385903917" + "mAssetSupply": "2327442314282154885767209949" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "12498061624005874", - "expectedQty": "12396756260894621", - "swapFee": "7498836974403", + "type": "mintMulti", + "inputQtys": [ + "6213513256152970779688960", + "17218926978658041614827520", + "29536672645317441391427584" + ], + "expectedQty": "52952749119873416205254564", "reserves": [ - "29894057629659578395870457", - "142810467160716675667452911", - "44195701684665481102104276" + "650800056104316689538569447", + "922575060847012893065120460", + "807223070322522885566118835" ], - "mAssetSupply": "216307383137980233598872446" + "mAssetSupply": "2380395063402028301972464513" }, { "type": "mintMulti", "inputQtys": [ - "202621829096461408", - "163651078675898400", - "142941382035120432" + "9586200941888859537408", + "49198996435761841045504", + "181334411164099320741888" ], - "expectedQty": "512641720243089146", + "expectedQty": "240032156496249966266010", "reserves": [ - "29894057832281407492331865", - "142810467324367754343351311", - "44195701827606863137224708" + "650809642305258578398106855", + "922624259843448654906165964", + "807404404733686984886860723" ], - "mAssetSupply": "216307383650621953841961592" + "mAssetSupply": "2380635095558524551938730523" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3284390123603216896", - "9112409678202035200", - "14008465674530922496" + "7520138604697828196352", + "5361301074678550364160", + "2006725404476887007232" ], - "expectedQty": "26479974993357713551", - "swapFee": "15897523510120700", + "expectedQty": "14894269241523633374750", "reserves": [ - "29894054547891283889114969", - "142810458211958076141316111", - "44195687819141188606302212" + "650817162443863276226303207", + "922629621144523333456530124", + "807406411459091461773867955" ], - "mAssetSupply": "216307357170646960484248041" + "mAssetSupply": "2380649989827766075572105273" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1884343494105971883507712", - "expectedQty": "1903441434405991549327522", - "swapFee": "1130606096463583130104", + "type": "mint", + "inputIndex": 2, + "inputQty": "12357249948902860800", + "expectedQty": "12354398346787152593", "reserves": [ - "29894054547891283889114969", - "140907016777552084591988589", - "44195687819141188606302212" - ], - "mAssetSupply": "214424144282637452183870433" + "650817162443863276226303207", + "922629621144523333456530124", + "807406423816341410676728755" + ] }, { "type": "mintMulti", "inputQtys": [ - "2851669303748364108562432", - "171393424556855425761280", - "2813164621125551193587712" + "312703513893009096704", + "3281565437773985349632", + "5687576529531378335744" ], - "expectedQty": "5904459339801582466477192", + "expectedQty": "9276903241023323948682", "reserves": [ - "32745723851639647997677401", - "141078410202108940017749869", - "47008852440266739799889924" + "650817475147377169235399911", + "922632902709961107441879756", + "807412111392870942055064499" ], - "mAssetSupply": "220328603622439034650347625" + "mAssetSupply": "2380659279085405445683206548" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "508865744135671360", - "outputIndex": 2, - "expectedQty": "513699111222552227", - "swapFee": "310301513547289", + "type": "redeemMasset", + "inputQty": "11347239169703168232652", + "expectedQtys": [ + "3101143501178391854353", + "4396343275147046019054", + "3847316517510103590813" + ], + "redemptionFee": "3404171750910950469", "reserves": [ - "32745724360505392133348761", - "141078410202108940017749869", - "47008851926567628577337697" + "650814374003875990843545558", + "922628506366685960395860702", + "807408264076353431951473686" ], - "mAssetSupply": "220328603622749336163894914", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2380647935250407493425924365" }, { "type": "redeemBassets", "inputQtys": [ - "31298554934543405056", - "11060144954870583296", - "32166536213074640896" + "3377737357998372994154496", + "2939523632640644398186496", + "2448594009305393464868864" ], - "expectedQty": "75129708896075922083", - "swapFee": "45104888270607918", + "expectedQty": "8767571977465423781267233", + "swapFee": "5263701407323648457835", "reserves": [ - "32745693061950457589943705", - "141078399141963985147166573", - "47008819760031415502696801" + "647436636645877617849391062", + "919688982734045315997674206", + "804959670067048038486604822" ], - "mAssetSupply": "220328528493040440087972831" + "mAssetSupply": "2371880363272942069644657132" }, { - "type": "redeemMasset", - "inputQty": "49489926838375854899", - "expectedQtys": [ - "7353091269671153383", - "31679352246642248429", - "10555896359288813805" - ], - "redemptionFee": "14846978051512756", + "type": "redeem", + "inputIndex": 0, + "inputQty": "249610824947490881536", + "expectedQty": "249013243107585626771", + "swapFee": "149766494968494528", "reserves": [ - "32745685708859187918790322", - "141078367462611738504918144", - "47008809204135056213882996" + "647436387632634510263764291", + "919688982734045315997674206", + "804959670067048038486604822" ], - "mAssetSupply": "220328479017960579763630688" + "mAssetSupply": "2371880113811883617122270124" }, { "type": "mintMulti", "inputQtys": [ - "718063608578582463381504", - "191223092657711313059840", - "483068064494201954369536" + "66644131542108176384", + "34835619675377139712", + "118722861630824218624" ], - "expectedQty": "1404979992898670570333281", + "expectedQty": "220249658271465215364", "reserves": [ - "33463749317437770382171826", - "141269590555269449817977984", - "47491877268629258168252532" + "647436454276766052371940675", + "919689017569664991374813918", + "804959788789909669310823446" ], - "mAssetSupply": "221733459010859250333963969" + "mAssetSupply": "2371880334061541888587485488" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "191904098653204186660864", - "expectedQty": "190135843847885302269026", + "inputIndex": 0, + "inputQty": "1982272568033141889957888", + "expectedQty": "1985815058631893947514036", "reserves": [ - "33463749317437770382171826", - "141461494653922654004638848", - "47491877268629258168252532" + "649418726844799194261898563", + "919689017569664991374813918", + "804959788789909669310823446" ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "485337807580408433344512", - "expectedQty": "488221779657211495675498", + "inputQty": "7346174820913527128064", + "expectedQty": "7344494547168245990513", "reserves": [ - "33463749317437770382171826", - "141461494653922654004638848", - "47977215076209666601597044" + "649418726844799194261898563", + "919689017569664991374813918", + "804967134964730582837951510" ] }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "6697709785187804889743360", - "outputIndex": 2, - "expectedQty": "6575668200366697841767786", - "swapFee": "3980525243218424438065", - "reserves": [ - "33463749317437770382171826", - "148159204439110458894382208", - "41401546875842968759829258" - ], - "mAssetSupply": "222415797159607565556346558", - "hardLimitError": false, - "insufficientLiquidityError": false - }, { "type": "redeemMasset", - "inputQty": "12582096957283715619225", + "inputQty": "19756608417102507173478", "expectedQtys": [ - "1892481696894238667698", - "8378875300781651385634", - "2341389452281518718617" + "5403178571251271323519", + "7651833534414104734665", + "6697344863050731831485" ], - "redemptionFee": "3774629087185114685", + "redemptionFee": "5926982525130752152", "reserves": [ - "33461856835740876143504128", - "148150825563809677242996574", - "41399205486390687241110641" + "649413323666227942990575044", + "919681365736130577270079253", + "804960437619867532106120025" ], - "mAssetSupply": "222403218837279369025842018" + "mAssetSupply": "2373853742933286373404568711" }, { - "type": "redeemBassets", + "type": "mint", + "inputIndex": 0, + "inputQty": "63016189932393776", + "expectedQty": "63128098398399794", + "reserves": [ + "649413323729244132922968820", + "919681365736130577270079253", + "804960437619867532106120025" + ] + }, + { + "type": "mintMulti", "inputQtys": [ - "313471614358438530777088", - "511967834869085981638656", - "339103240536714729488384" + "133746730643915328716800", + "244194427347792537059328", + "177301675588271594274816" ], - "expectedQty": "1167835017230873313947740", - "swapFee": "701121683348533108233", + "expectedQty": "555128987778840701103894", "reserves": [ - "33148385221382437612727040", - "147638857728940591261357918", - "41060102245853972511622257" + "649547070459888048251685620", + "919925560163478369807138581", + "805137739295455803700394841" ], - "mAssetSupply": "221235383820048495711894278" + "mAssetSupply": "2374408871984193312504072399" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "12346377941787", - "13601503485225", - "8484144586600" + "8375350425723896124669952", + "10243514548283532608798720", + "9303598296542726269698048" ], - "expectedQty": "34584410023505", - "swapFee": "20763103876", + "expectedQty": "27922165503121773142261936", "reserves": [ - "33148385221370091234785253", - "147638857728926989757872693", - "41060102245845488367035657" + "657922420885611944376355572", + "930169074711761902415937301", + "814441337591998529970092889" ], - "mAssetSupply": "221235383820013911301870773" + "mAssetSupply": "2402331037487315085646334335" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "542216614866707584", - "expectedQty": "551579443380557753", + "type": "redeemBassets", + "inputQtys": [ + "284783520727273329131520", + "256278774644836109647872", + "84363948747519204261888" + ], + "expectedQty": "625585177271228392686818", + "swapFee": "375576452234077482101", "reserves": [ - "33148385763586706101492837", - "147638857728926989757872693", - "41060102245845488367035657" - ] + "657637637364884671047224052", + "929912795937117066306289429", + "814356973643251010765831001" + ], + "mAssetSupply": "2401705452310043857253647517" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "263653674964187055390720", - "outputIndex": 0, - "expectedQty": "261621252369002357775342", - "swapFee": "159803815219278659229", + "inputIndex": 1, + "inputQty": "110250819768311726735360", + "outputIndex": 2, + "expectedQty": "110069960768304369563205", + "swapFee": "66066639403503728681", "reserves": [ - "32886764511217703743717495", - "147638857728926989757872693", - "41323755920809675422426377" + "657637637364884671047224052", + "930023046756885378033024789", + "814246903682482706396267796" ], - "mAssetSupply": "221235544175408573961087755", + "mAssetSupply": "2401705518376683260757376198", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "401816036057483652890624", - "99598994957557687123968", - "159525532314853919686656" + "8256915336379434532864", + "307280442554124030967808", + "285090591789671486849024" ], - "expectedQty": "668439921329809408191882", + "expectedQty": "600188028494527909163163", "reserves": [ - "33288580547275187396608119", - "147738456723884547444996661", - "41483281453124529342113033" + "657645894280221050481756916", + "930330327199439502063992597", + "814531994274272377883116820" ], - "mAssetSupply": "221903984096738383369279637" + "mAssetSupply": "2402305706405177788666539361" }, { - "type": "mintMulti", - "inputQtys": [ - "1981156108126083", - "793894537529333", - "4043088361519915" - ], - "expectedQty": "6884044171423376", + "type": "redeem", + "inputIndex": 1, + "inputQty": "32195213430619518271488", + "expectedQty": "32216778110589548779839", + "swapFee": "19317128058371710962", "reserves": [ - "33288580549256343504734202", - "147738456724678441982525994", - "41483281457167617703632948" + "657645894280221050481756916", + "930298110421328912515212758", + "814531994274272377883116820" ], - "mAssetSupply": "221903984103622427540703013" + "mAssetSupply": "2402273530508875227519978835" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7231354359016216068096", - "110556251715920388423680", - "121899992936440443961344" + "206060828873831841792", + "127939413921949630464", + "188094985884998500352" ], - "expectedQty": "239844054347357124025201", - "swapFee": "143992828305397512922", + "expectedQty": "522254586075271903034", "reserves": [ - "33281349194897327288666106", - "147627900472962521594102314", - "41361381464231177259671604" + "657646100341049924313598708", + "930298238360742834464843222", + "814532182369258262881617172" ], - "mAssetSupply": "221664140049275070416677812" + "mAssetSupply": "2402274052763461302791881869" }, { - "type": "redeemMasset", - "inputQty": "24847220462352628029849", - "expectedQtys": [ - "3729520416970307444481", - "16543237646531137578590", - "4634971849897183557051" - ], - "redemptionFee": "7454166138705788408", + "type": "redeem", + "inputIndex": 1, + "inputQty": "114799920224433808", + "expectedQty": "114876804064007941", + "swapFee": "68879952134660", "reserves": [ - "33277619674480356981221625", - "147611357235315990456523724", - "41356746492381280076114553" + "657646100341049924313598708", + "930298238245866030400835281", + "814532182369258262881617172" ], - "mAssetSupply": "221639300282978856494436371" + "mAssetSupply": "2402274052648730262519582721" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "6227496259693149421568", - "expectedQty": "6291647997704575343196", - "swapFee": "3736497755815889652", + "inputQty": "9396680089415557120", + "expectedQty": "9402973236786359377", + "swapFee": "5638008053649334", + "reserves": [ + "657646100341049924313598708", + "930298228842892793614475904", + "814532182369258262881617172" + ], + "mAssetSupply": "2402274043257688181157674935" + }, + { + "type": "redeem", + "inputIndex": 0, + "inputQty": "17590331987292008448", + "expectedQty": "17548736877994618552", + "swapFee": "10554199192375205", "reserves": [ - "33277619674480356981221625", - "147605065587318285881180528", - "41356746492381280076114553" + "657646082792313046318980156", + "930298228842892793614475904", + "814532182369258262881617172" ], - "mAssetSupply": "221633076523216919160904455" + "mAssetSupply": "2402274025677910393058041692" }, { "type": "redeemMasset", - "inputQty": "222988583708110041907", + "inputQty": "280808313629119942230016", "expectedQtys": [ - "33471101145989371416", - "148463265349542261343", - "41597201315966739903" + "76850968604785142851719", + "108712454690421286789276", + "95184307810460314325869" + ], + "redemptionFee": "84242494088735982669", + "reserves": [ + "657569231823708261176128437", + "930189516388202372327686628", + "814436998061447802567291303" + ], + "mAssetSupply": "2401993301606775361851794345" + }, + { + "type": "mintMulti", + "inputQtys": [ + "2861041527539242173988864", + "4843930240670698062217216", + "2334565235173519217655808" ], - "redemptionFee": "66896575112433012", + "expectedQty": "10037910697737855823128639", "reserves": [ - "33277586203379210991850209", - "147604917124052936338919185", - "41356704895179964109374650" + "660430273351247503350117301", + "935033446628873070389903844", + "816771563296621321784947111" ], - "mAssetSupply": "221632853601529786163295560" + "mAssetSupply": "2412031212304513217674922984" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "114538898380548938399744", - "expectedQty": "115688878034261502438016", + "inputIndex": 1, + "inputQty": "84163609514211200", + "expectedQty": "84056147640809371", "reserves": [ - "33277586203379210991850209", - "147604917124052936338919185", - "41471243793560513047774394" + "660430273351247503350117301", + "935033446713036679904115044", + "816771563296621321784947111" ] }, { "type": "mintMulti", "inputQtys": [ - "174526754764256062734336", - "1469299547668994003566592", - "2828066001849014168846336" + "1477998580212386496512", + "164086001729870823424", + "1482010780406947250176" ], - "expectedQty": "4485572146957901139237413", + "expectedQty": "3126175965297304232613", "reserves": [ - "33452112958143467054584545", - "149074216671721930342485777", - "44299309795409527216620730" + "660431751349827715736613813", + "935033610799038409774938468", + "816773045307401728732197287" ], - "mAssetSupply": "226234114626521948804970989" + "mAssetSupply": "2412034338564534662619964968" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "19153117907316808", - "outputIndex": 1, - "expectedQty": "19678654207658948", - "swapFee": "11691261804556", - "reserves": [ - "33452112977296584961901353", - "149074216652043276134826829", - "44299309795409527216620730" + "type": "redeemMasset", + "inputQty": "13579898427612926784307", + "expectedQtys": [ + "3717155008749383580060", + "5262716189260899659801", + "4597101835535011868441" ], - "mAssetSupply": "226234114626533640066775545", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "483481795696451643244544", - "expectedQty": "479016282675592184150434", - "swapFee": "290089077417870985946", + "redemptionFee": "4073969528283878035", "reserves": [ - "33452112977296584961901353", - "149074216652043276134826829", - "43820293512733935032470296" + "660428034194818966353033753", + "935028348082849148875278667", + "816768448205566193720328846" ], - "mAssetSupply": "225750922919914606294516947" + "mAssetSupply": "2412020762740076577977058696" }, { "type": "redeemBassets", "inputQtys": [ - "4164024744102655950848", - "4570794008252706717696", - "73080941944410464256" + "9248978128614610", + "4956582973105564", + "2830599827668858" ], - "expectedQty": "8832809306891508974616", - "swapFee": "5302867304517615954", + "expectedQty": "17045560783583218", + "swapFee": "10233476556083", "reserves": [ - "33447948952552482305950505", - "149069645858035023428109133", - "43820220431791990622006040" + "660428034185569988224419143", + "935028348077892565902173103", + "816768448202735593892659988" ], - "mAssetSupply": "225742090110607714785542331" + "mAssetSupply": "2412020762723031017193475478" }, { "type": "swap", "inputIndex": 2, - "inputQty": "1218568211811155664961536", + "inputQty": "130740876722627986587648", "outputIndex": 0, - "expectedQty": "1206385235790381068863034", - "swapFee": "737367720434186344472", + "expectedQty": "130403451134080878159477", + "swapFee": "78427476893614837482", "reserves": [ - "32241563716762101237087471", - "149069645858035023428109133", - "45038788643603146286967576" + "660297630734435907346259666", + "935028348077892565902173103", + "816899189079458221879247636" ], - "mAssetSupply": "225742827478328148971886803", + "mAssetSupply": "2412020841150507910808312960", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "16939458739435401216", - "41914591935313641472", - "3270231098027941888" - ], - "expectedQty": "62025207739943097349", - "swapFee": "37237467124240402", + "type": "swap", + "inputIndex": 0, + "inputQty": "325619673348235657216", + "outputIndex": 2, + "expectedQty": "326071156161494748499", + "swapFee": "195717407005978318", "reserves": [ - "32241546777303361801686255", - "149069603943443088114467661", - "45038785373372048259025688" + "660297956354109255581916882", + "935028348077892565902173103", + "816898863008302060384499137" ], - "mAssetSupply": "225742765453120409028789454" + "mAssetSupply": "2412020841346225317814291278", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "343479944412947340591104", - "145865295414559114264576", - "104999343017280244023296" - ], - "expectedQty": "600183733395442848072765", - "swapFee": "360326435898804991838", - "reserves": [ - "31898066832890414461095151", - "148923738648028529000203085", - "44933786030354768015002392" - ], - "mAssetSupply": "225142581719724966180716689" - }, - { - "type": "redeemMasset", - "inputQty": "1312225689558201344", - "expectedQtys": [ - "185859579236021226", - "867729807840197456", - "261814441885611707" + "20459266718073165447168", + "21937284506273689108480", + "52819978269086525161472" ], - "redemptionFee": "393667706867460", + "expectedQty": "95213171693577612287410", "reserves": [ - "31898066647030835225073925", - "148923737780298721160005629", - "44933785768540326129390685" + "660318415620827328747364050", + "935050285362398839591281583", + "816951682986571146909660609" ], - "mAssetSupply": "225142580407892944329382805" + "mAssetSupply": "2412116054517918895426578688" }, { "type": "mintMulti", "inputQtys": [ - "3630919434897918189895680", - "3791698231539076492689408", - "440910644166808681054208" + "23705137662919331282944", + "103665346992864831209472", + "63375426921479610040320" ], - "expectedQty": "7891510633505291528482453", + "expectedQty": "190641621451463142986416", "reserves": [ - "35528986081928753414969605", - "152715436011837797652695037", - "45374696412707134810444893" + "660342120758490248078646994", + "935153950709391704422491055", + "817015058413492626519700929" ], - "mAssetSupply": "233034091041398235857865258" + "mAssetSupply": "2412306696139370358569565104" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "4725024764148281344", - "expectedQty": "4681806650952194022", - "swapFee": "2835014858488968", - "reserves": [ - "35528986081928753414969605", - "152715436011837797652695037", - "45374691730900483858250871" - ], - "mAssetSupply": "233034086319208486568072882" - }, - { - "type": "redeemMasset", - "inputQty": "1973288614519883012505", - "expectedQtys": [ - "300762485629605220564", - "1292777509130533909605", - "384109049388382432766" - ], - "redemptionFee": "591986584355964903", + "inputQty": "6918527940710157953007616", + "expectedQty": "6915724104566042149593392", + "swapFee": "4151116764426094771804", "reserves": [ - "35528685319443123809749041", - "152714143234328667118785432", - "45374307621851095475818105" + "660342120758490248078646994", + "935153950709391704422491055", + "810099334308926584370107537" ], - "mAssetSupply": "233032113622580551041025280" + "mAssetSupply": "2405392319315424626711329292" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5064891482465062912", - "81843433951028903936", - "47437500933420761088" + "4287702676552", + "2147536410080", + "3721770200773" ], - "expectedQty": "134007884205764634925", + "expectedQty": "10161046339293", + "swapFee": "6100287976", "reserves": [ - "35528690384334606274811953", - "152714225077762618147689368", - "45374355059352028896579193" + "660342120758485960375970442", + "935153950709389556886080975", + "810099334308922862599906764" ], - "mAssetSupply": "233032247630464756805660205" + "mAssetSupply": "2405392319315414465664989999" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "29670364878658317844480", - "expectedQty": "29184709906988165673204", - "swapFee": "17802218927194990706", - "reserves": [ - "35499505674427618109138749", - "152714225077762618147689368", - "45374355059352028896579193" - ], - "mAssetSupply": "233002595067805025682806431" - }, - { - "type": "redeemMasset", - "inputQty": "1089638418584034292531", - "expectedQtys": [ - "165963905787306768668", - "713954991250621428672", - "212129860547741997205" - ], - "redemptionFee": "326891525575210287", + "inputIndex": 2, + "inputQty": "1969885089828192330448896", + "expectedQty": "1969026288293766236360440", + "swapFee": "1181931053896915398269", "reserves": [ - "35499339710521830802370081", - "152713511122771367526260696", - "45374142929491481154581988" + "660342120758485960375970442", + "935153950709389556886080975", + "808130308020629096363546324" ], - "mAssetSupply": "233001505756277967223724187" + "mAssetSupply": "2403423616156640170249939372" }, { "type": "mint", "inputIndex": 0, - "inputQty": "109789758845225873178624", - "expectedQty": "111545328547229014082483", + "inputQty": "2454567232677018310017024", + "expectedQty": "2458783926311682069095754", "reserves": [ - "35609129469367056675548705", - "152713511122771367526260696", - "45374142929491481154581988" + "662796687991162978685987466", + "935153950709389556886080975", + "808130308020629096363546324" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "15599796462476290048", - "2248240502440044544", - "10856171859618107392" - ], - "expectedQty": "29023751945099407314", - "swapFee": "17424705990654036", + "type": "swap", + "inputIndex": 2, + "inputQty": "142499523213847022272512", + "outputIndex": 0, + "expectedQty": "142150573059958376414886", + "swapFee": "85487123285549862558", "reserves": [ - "35609113869570594199258657", - "152713508874530865086216152", - "45374132073319621536474596" + "662654537418103020309572580", + "935153950709389556886080975", + "808272807543842943385818836" ], - "mAssetSupply": "233113022061073251138399356" + "mAssetSupply": "2405882485570075137868897684", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "35214464500307", - "expectedQtys": [ - "5377561829882", - "23062251401123", - "6852240176357" - ], - "redemptionFee": "10564339350", - "reserves": [ - "35609113869565216637428775", - "152713508874507802834815029", - "45374132073312769296298239" + "type": "mintMulti", + "inputQtys": [ + "216369283938995788578816", + "968997312671057377755136", + "465232383367482498351104" ], - "mAssetSupply": "233113022061038047238238399" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "329359898178792489746432", - "expectedQty": "326318740827987012854769", - "swapFee": "197615938907275493847", + "expectedQty": "1649644719140339143171893", "reserves": [ - "35609113869565216637428775", - "152713508874507802834815029", - "45047813332484782283443470" + "662870906702042016098151396", + "936122948022060614263836111", + "808738039927210425884169940" ], - "mAssetSupply": "232783859778798162023985814" + "mAssetSupply": "2407532130289215477012069577" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "705445734850722688", - "expectedQty": "716680405857498511", + "inputIndex": 2, + "inputQty": "6206797343694463680118784", + "expectedQty": "6205746594913462536804512", "reserves": [ - "35609114575010951488151463", - "152713508874507802834815029", - "45047813332484782283443470" + "662870906702042016098151396", + "936122948022060614263836111", + "814944837270904889564288724" ] }, { "type": "redeemMasset", - "inputQty": "221249591613865390715699", + "inputQty": "1726863998788071370575052", "expectedQtys": [ - "33834555755158376890779", - "145103122957356452291991", - "42802882633749241326319" + "474096424974528657696384", + "669530882267801085059522", + "582862258692028385009681" ], - "redemptionFee": "66374877484159617214", + "redemptionFee": "518059199636421411172", "reserves": [ - "35575280019255793111260684", - "152568405751550446382523038", - "45005010449851033042117151" + "662396810277067487440455012", + "935453417139792813178776589", + "814361975012212861179279043" ], - "mAssetSupply": "232562677278742186650385840" + "mAssetSupply": "2412011530944540504599710209" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "63836832654056895807488", - "outputIndex": 1, - "expectedQty": "65018045550651968628785", - "swapFee": "38638528381409861054", + "inputQty": "5817712719938761852452864", + "expectedQty": "5815214356336793428099504", + "swapFee": "3490627631963257111471", "reserves": [ - "35575280019255793111260684", - "152503387705999794413894253", - "45068847282505089937924639" + "662396810277067487440455012", + "935453417139792813178776589", + "808546760655876067751179539" ], - "mAssetSupply": "232562715917270568060246894", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2406197308852233706004368816" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2126967263491468151488512", - "expectedQty": "2090117487579737806561817", - "swapFee": "1276180358094880890893", - "reserves": [ - "33485162531676055304698867", - "152503387705999794413894253", - "45068847282505089937924639" + "type": "redeemMasset", + "inputQty": "88836969106201842286592", + "expectedQtys": [ + "24448398789540807148283", + "34526642997731393252288", + "29842646187015656326629" ], - "mAssetSupply": "230437024834137194789649275" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "706150984504975061680128", - "outputIndex": 1, - "expectedQty": "719279397655993050342611", - "swapFee": "427296735061335826205", + "redemptionFee": "26651090731860552685", "reserves": [ - "33485162531676055304698867", - "151784108308343801363551642", - "45774998267010064999604767" + "662372361878277946633306729", + "935418890496795081785524301", + "808516918009689052094852910" ], - "mAssetSupply": "230437452130872256125475480", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2406108498534218236022634909" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "66209575138690336817152", + "inputIndex": 0, + "inputQty": "3223786175669955198976", "outputIndex": 2, - "expectedQty": "64942416563281327440317", - "swapFee": "39310308443038842788", - "reserves": [ - "33485162531676055304698867", - "151850317883482491700368794", - "45710055850446783672164450" - ], - "mAssetSupply": "230437491441180699164318268", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "110274409480489582592", - "outputIndex": 1, - "expectedQty": "112294545465916707996", - "swapFee": "66711282041121955", + "expectedQty": "3227852609659440825703", + "swapFee": "1937582739644920803", "reserves": [ - "33485162531676055304698867", - "151850205588937025783660798", - "45710166124856264161747042" + "662375585664453616588505705", + "935418890496795081785524301", + "808513690157079392654027207" ], - "mAssetSupply": "230437491507891981205440223", + "mAssetSupply": "2406108500471800975667555712", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "55080598151288842092544", - "22559630831724038979584", - "1308569753357267501056" - ], - "expectedQty": "79718873044353359877077", - "swapFee": "47860039850522329323", - "reserves": [ - "33430081933524766462606323", - "151827645958105301744681214", - "45708857555102906894245986" - ], - "mAssetSupply": "230357772634847627845563146" - }, - { - "type": "redeem", + "type": "mint", "inputIndex": 1, - "inputQty": "3083286945818539982848", - "expectedQty": "3114079331634916986910", - "swapFee": "1849972167491123989", + "inputQty": "71825839204442", + "expectedQty": "71732787621521", "reserves": [ - "33430081933524766462606323", - "151824531878773666827694304", - "45708857555102906894245986" - ], - "mAssetSupply": "230354691197873976796704287" + "662375585664453616588505705", + "935418890496866907624728743", + "808513690157079392654027207" + ] }, { "type": "redeemMasset", - "inputQty": "919412376359640494820556", + "inputQty": "57491101514176218634649", "expectedQtys": [ - "133389123109646309301009", - "605793943733445081011794", - "182382575063466273554216" + "15821928985276561028737", + "22344016864814027185424", + "19312677680378011657452" ], - "redemptionFee": "275823712907892148446", + "redemptionFee": "17247330454252865590", "reserves": [ - "33296692810415120153305314", - "151218737935040221746682510", - "45526474980039440620691770" + "662359763735468340027476968", + "935396546480002093597543319", + "808494377479399014642369755" ], - "mAssetSupply": "229435554645227244194032177" + "mAssetSupply": "2406051026617688986489408174" }, { - "type": "mintMulti", - "inputQtys": [ - "219021143284866239954944", - "702845554516888888803328", - "785714175109342599053312" - ], - "expectedQty": "1710581153509108659105457", + "type": "mint", + "inputIndex": 2, + "inputQty": "794616690752525583777792", + "expectedQty": "794494954257769476930057", "reserves": [ - "33515713953699986393260258", - "151921583489557110635485838", - "46312189155148783219745082" - ], - "mAssetSupply": "231146135798736352853137634" + "662359763735468340027476968", + "935396546480002093597543319", + "809288994170151540226147547" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "38054389902865080320", - "735925676014033305600", - "662179191829059993600" - ], - "expectedQty": "1434482032746217105310", + "type": "mint", + "inputIndex": 1, + "inputQty": "343649416772652411912192", + "expectedQty": "343204706098044044777964", + "reserves": [ + "662359763735468340027476968", + "935740195896774746009455511", + "809288994170151540226147547" + ] + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "21832134416157869611155456", + "expectedQty": "21846007956600607467157885", + "swapFee": "13099280649694721766693", "reserves": [ - "33515752008089889258340578", - "151922319415233124668791438", - "46312851334340612279738682" + "662359763735468340027476968", + "913894187940174138542297626", + "809288994170151540226147547" ], - "mAssetSupply": "231147570280769099070242944" + "mAssetSupply": "2385369691142536625121727432" }, { "type": "redeemMasset", - "inputQty": "68877717712788035993", + "inputQty": "1195033216604683663258419", "expectedQtys": [ - "9984080543827821096", - "45256471437093365435", - "13796236403252131281" + "331732418404124477536749", + "457709459012286954861805", + "405319601102952311442129" ], - "redemptionFee": "20663315313836410", + "redemptionFee": "358509964981405098977", "reserves": [ - "33515742024009345430519482", - "151922274158761687575426003", - "46312837538104209027607401" + "662028031317064215549940219", + "913436478481161851587435821", + "808883674569048587914705418" ], - "mAssetSupply": "231147501423714701596043361" + "mAssetSupply": "2384175016435896922863567990" }, { "type": "redeemMasset", - "inputQty": "1243525371715464775231078", + "inputQty": "549657262447694499020", "expectedQtys": [ - "180253612950295843525107", - "817064971592303287288166", - "249078665369937285222677" + "152580807321175855233", + "210524129991888339937", + "186427338807886940960" ], - "redemptionFee": "373057611514639432569", + "redemptionFee": "164897178734308349", "reserves": [ - "33335488411059049586994375", - "151105209187169384288137837", - "46063758872734271742384724" + "662027878736256894374084986", + "913436267957031859699095884", + "808883488141709780027764458" ], - "mAssetSupply": "229904349109610751460244852" + "mAssetSupply": "2384174466943531653903377319" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "17522668632852203044864", - "expectedQty": "17662207813006838848773", + "type": "redeem", + "inputIndex": 1, + "inputQty": "3232901942312746744807424", + "expectedQty": "3234729815955264206857220", + "swapFee": "1939741165387648046884", "reserves": [ - "33335488411059049586994375", - "151105209187169384288137837", - "46081281541367123945429588" - ] + "662027878736256894374084986", + "910201538141076595492238664", + "808883488141709780027764458" + ], + "mAssetSupply": "2380943504742384294806616779" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15102507165728956416", - "expectedQty": "15251744514638527834", - "swapFee": "9061504299437373", + "type": "redeemBassets", + "inputQtys": [ + "34208820592565043593216", + "55238477741906674581504", + "18473076759798162128896" + ], + "expectedQty": "107907509453141572406837", + "swapFee": "64783375697303325439", "reserves": [ - "33335488411059049586994375", - "151105193935424869649610003", - "46081281541367123945429588" + "661993669915664329330491770", + "910146299663334688817657160", + "808865015064949981865635562" ], - "mAssetSupply": "229921996223978096869574582" + "mAssetSupply": "2380835597232931153234209942" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "14098460530547", - "expectedQty": "13952131697912", + "inputQty": "4095367441857879998464", + "outputIndex": 2, + "expectedQty": "4089122521398340333785", + "swapFee": "2454381093340948916", "reserves": [ - "33335488411059049586994375", - "151105193935438968110140550", - "46081281541367123945429588" - ] + "661993669915664329330491770", + "910150395030776546697655624", + "808860925942428583525301777" + ], + "mAssetSupply": "2380835599687312246575158858", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "321150857007751413891072", - "980002670504463323627520", - "689862011345939418054656" + "12102308813649377874673664", + "11623040703188068714151936", + "12950017051091937483816960" ], - "expectedQty": "1992087609170041782686799", + "expectedQty": "36678435210399039148119833", "reserves": [ - "33656639268066801000885447", - "152085196605943431433768070", - "46771143552713063363484244" + "674095978729313707205165434", + "921773435733964615411807560", + "821810942993520521009118737" ], - "mAssetSupply": "231914083833162090783959293" + "mAssetSupply": "2417514034897711285723278691" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2027034272384259", - "expectedQty": "2046895041117614", - "swapFee": "1216220563430", + "type": "redeemMasset", + "inputQty": "2338109285934400605782016", + "expectedQtys": [ + "651759291451009415688077", + "891229765952327424254073", + "794579607078808333528078" + ], + "redemptionFee": "701432785780320181734", "reserves": [ - "33656639268066801000885447", - "152085196603896536392650456", - "46771143552713063363484244" + "673444219437862697789477357", + "920882205968012287987553487", + "821016363386441712675590659" ], - "mAssetSupply": "231914083831136272732138464" + "mAssetSupply": "2415176627044562665437678409" }, { "type": "swap", "inputIndex": 1, - "inputQty": "1671950049750961881088", + "inputQty": "5984360720126792016330752", "outputIndex": 2, - "expectedQty": "1640988698767678299526", - "swapFee": "992840251210631377", + "expectedQty": "5975056999609431834803639", + "swapFee": "3586488050186263553354", "reserves": [ - "33656639268066801000885447", - "152086868553946287354531544", - "46769502564014295685184718" + "673444219437862697789477357", + "926866566688139080003884239", + "815041306386832280840787020" ], - "mAssetSupply": "231914084823976523942769841", + "mAssetSupply": "2415180213532612851701231763", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "31145016561405290086", - "expectedQtys": [ - "4518579012673329293", - "20418453752246605757", - "6279049165774450499" + "type": "mintMulti", + "inputQtys": [ + "23296852034664453533335552", + "153066683087960740336762880", + "30272671875687579811577856" ], - "redemptionFee": "9343504968421587", + "expectedQty": "206449695785786644698931797", "reserves": [ - "33656634749487788327556154", - "152086848135492535107925787", - "46769496284965129910734219" + "696741071472527151322812909", + "1079933249776099820340647119", + "845313978262519860652364876" ], - "mAssetSupply": "231914053688303467505901342" + "mAssetSupply": "2621629909318399496400163560" }, { "type": "mint", "inputIndex": 2, - "inputQty": "7762308786838905410289664", - "expectedQty": "7809918965524306956056849", + "inputQty": "719259599626370077949952", + "expectedQty": "719370932748122041032175", "reserves": [ - "33656634749487788327556154", - "152086848135492535107925787", - "54531805071804035321023883" + "696741071472527151322812909", + "1079933249776099820340647119", + "846033237862146230730314828" ] }, { - "type": "redeemMasset", - "inputQty": "627452365129799801241", - "expectedQtys": [ - "88066284992862432328", - "397951958395671441275", - "142688463132868680109" - ], - "redemptionFee": "188235709538939940", - "reserves": [ - "33656546683202795465123826", - "152086450183534139436484512", - "54531662383340902452343774" + "type": "mintMulti", + "inputQtys": [ + "1665565489530489706381312", + "694280194063989483765760", + "2365859282923266112487424" ], - "mAssetSupply": "239723345389698354201096890" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "36296486381299311837184", - "expectedQty": "36617568627979345281195", - "swapFee": "21777891828779587102", + "expectedQty": "4728262730109178788615663", "reserves": [ - "33656546683202795465123826", - "152049832614906160091203317", - "54531662383340902452343774" + "698406636962057641029194221", + "1080627529970163809824412879", + "848399097145069496842802252" ], - "mAssetSupply": "239687070681208883668846808" + "mAssetSupply": "2627077542981256797229811398" }, { "type": "redeemMasset", - "inputQty": "10909765154272026624", + "inputQty": "2670865707630877", "expectedQtys": [ - "1531475451171461474", - "6918730795416808040", - "2481356837875963105" + "709834674094382", + "1098309852681800", + "862281462907483" ], - "redemptionFee": "3272929546281607", + "redemptionFee": "801259712289", "reserves": [ - "33656545151727344293662352", - "152049825696175364674395277", - "54531659901984064576380669" + "698406636961347806355099839", + "1080627529969065499971731079", + "848399097144207215379894769" ], - "mAssetSupply": "239687059774716658943101791" + "mAssetSupply": "2627077542978586732781892810" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "715411486637414285312", - "395349293444871290880", - "1806125181421494468608" + "7904062881868200168914944", + "158677497445794594160640", + "4706574301418220144295936" ], - "expectedQty": "2934772008761940782519", + "expectedQty": "12786300985352637282297673", + "swapFee": "7676386423065421622352", "reserves": [ - "33657260563213981707947664", - "152050221045468809545686157", - "54533466027165486070849277" + "690502574079479606186184895", + "1080468852471619705377570439", + "843692522842788995235598833" ], - "mAssetSupply": "239689994546725420883884310" + "mAssetSupply": "2614291241993234095499595137" }, { - "type": "redeemMasset", - "inputQty": "17605740523374913126", - "expectedQtys": [ - "2471455802837960628", - "11165062005561339987", - "4004397529875344888" - ], - "redemptionFee": "5281722157012473", + "type": "redeem", + "inputIndex": 1, + "inputQty": "31655026272675265773568", + "expectedQty": "31693756145601218575822", + "swapFee": "18993015763605159464", "reserves": [ - "33657258091758178869987036", - "152050209880406803984346170", - "54533462022767956195504389" + "690502574079479606186184895", + "1080437158715474104158994617", + "843692522842788995235598833" ], - "mAssetSupply": "239689976946266619665983657" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "507348519996923024769024", - "expectedQty": "516486969190352145988118", - "reserves": [ - "34164606611755101894756060", - "152050209880406803984346170", - "54533462022767956195504389" - ] + "mAssetSupply": "2614259605959977183838981033" }, { "type": "redeemBassets", "inputQtys": [ - "164009141374022909952", - "400173578070272573440", - "373674528393523429376" + "31179561902820261101568", + "37032518350000294461440", + "63427508012625474617344" ], - "expectedQty": "938833912594111788788", - "swapFee": "563638530674871996", + "expectedQty": "131647822005476014585300", + "swapFee": "79036114872208934111", "reserves": [ - "34164442602613727871846108", - "152049809706828733711772730", - "54533088348239562672075013" + "690471394517576785925083327", + "1080400126197124103864533177", + "843629095334776369760981489" ], - "mAssetSupply": "240205525081544377700182987" + "mAssetSupply": "2614127958137971707824395733" }, { - "type": "redeemMasset", - "inputQty": "12953610017676044376473", - "expectedQtys": [ - "1841839815864185775104", - "8197159742075955218559", - "2939934204989568392306" - ], - "redemptionFee": "3886083005302813312", + "type": "mint", + "inputIndex": 2, + "inputQty": "133060139930507443961856", + "expectedQty": "133079278752670029753495", "reserves": [ - "34162600762797863686071004", - "152041612547086657756554171", - "54530148414034573103682707" - ], - "mAssetSupply": "240192575357609706958619826" + "690471394517576785925083327", + "1080400126197124103864533177", + "843762155474706877204943345" + ] }, { "type": "mintMulti", "inputQtys": [ - "18012322708838689013760", - "3245550347011368681472", - "10399248056327325351936" + "132270341026795757764608", + "245493218062357091057664", + "93840113602458604797952" ], - "expectedQty": "31995450751964042895134", + "expectedQty": "471452387536924496360152", "reserves": [ - "34180613085506702375084764", - "152044858097433669125235643", - "54540547662090900429034643" + "690603664858603581682847935", + "1080645619415186460955590841", + "843855995588309335809741297" ], - "mAssetSupply": "240224570808361671001514960" + "mAssetSupply": "2614732489804261302350509380" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6378557722360066793799680", - "128515296928876558548992", - "441664774601298556223488" + "5374629410598056624128", + "32359127642192423682048", + "21453515693396743684096" ], - "expectedQty": "7043709460706115920959784", + "expectedQty": "59142896767639107087674", + "swapFee": "35507042285955037274", "reserves": [ - "40559170807866769168884444", - "152173373394362545683784635", - "54982212436692198985258131" + "690598290229192983626223807", + "1080613260287544268531908793", + "843834542072615939066057201" ], - "mAssetSupply": "247268280269067786922474744" + "mAssetSupply": "2614673346907493663243421706" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "917310684916642611200", - "expectedQty": "921878199002216219334", + "inputIndex": 0, + "inputQty": "4486602042363937518780416", + "expectedQty": "4496062038184485009109493", "reserves": [ - "40559170807866769168884444", - "152173373394362545683784635", - "54983129747377115627869331" + "695084892271556921145004223", + "1080613260287544268531908793", + "843834542072615939066057201" ] }, { "type": "redeemMasset", - "inputQty": "791202512729580236", + "inputQty": "262892647928250124520652", "expectedQtys": [ - "129740745808484064", - "486772450302366550", - "175880130639301546" - ], - "redemptionFee": "237360753818874", - "reserves": [ - "40559170678126023360400380", - "152173372907590095381418085", - "54983129571496984988567785" - ], - "mAssetSupply": "247269201356301637162932716" - }, - { - "type": "mintMulti", - "inputQtys": [ - "15394298972658288558080", - "13593341778411263098880", - "14996945507901440524288" + "69746495750867858732185", + "108431342710771201994415", + "84672394634797871809175" ], - "expectedQty": "44138439875175282665279", + "redemptionFee": "78867794378475037356", "reserves": [ - "40574564977098681648958460", - "152186966249368506644516965", - "54998126517004886429092073" + "695015145775806053286272038", + "1080504828944833497329914378", + "843749869677981141194248026" ], - "mAssetSupply": "247313339796176812445597995" + "mAssetSupply": "2618906595165544276603047903" }, { "type": "mint", "inputIndex": 1, - "inputQty": "40027181783946056", - "expectedQty": "39707720163951808", - "reserves": [ - "40574564977098681648958460", - "152186966289395688428463021", - "54998126517004886429092073" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "822552348297371133673472", - "expectedQty": "826546029417843942693123", + "inputQty": "71400724457000853504", + "expectedQty": "71271974074686854163", "reserves": [ - "40574564977098681648958460", - "152186966289395688428463021", - "55820678865302257562765545" + "695015145775806053286272038", + "1080504900345557954330767882", + "843749869677981141194248026" ] }, { "type": "redeemBassets", "inputQtys": [ - "273570697691820883968", - "315467843858157404160", - "162682191099954200576" + "29804231917804592300032", + "19072714806799831662592", + "28792099125114748010496" ], - "expectedQty": "753344677320471294232", - "swapFee": "452278173296260532", + "expectedQty": "77701426451004360233429", + "swapFee": "46648845177709241685", "reserves": [ - "40574291406400989828074492", - "152186650821551830271058861", - "55820516183111157608564969" + "694985341543888248693972006", + "1080485827630751154499105290", + "843721077578856026446237530" ], - "mAssetSupply": "248139132520625056080948694" + "mAssetSupply": "2618828965011067346929668637" }, { - "type": "redeemBassets", - "inputQtys": [ - "74038672768611532144640", - "173220409480635308048384", - "182540321621091268165632" - ], - "expectedQty": "430202458947520979817779", - "swapFee": "258276441233252539414", + "type": "swap", + "inputIndex": 1, + "inputQty": "3694208591232892718284800", + "outputIndex": 0, + "expectedQty": "3677509300276051621226322", + "swapFee": "2212508407842917581075", "reserves": [ - "40500252733632378295929852", - "152013430412071194963010477", - "55637975861490066340399337" + "691307832243612197072745684", + "1084180036221984047217390090", + "843721077578856026446237530" ], - "mAssetSupply": "247708930061677535101130915" + "mAssetSupply": "2618831177519475189847249712", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "89987919021077673541632", - "167641875131331606740992", - "241597011359096958353408" + "type": "redeemMasset", + "inputQty": "2001759583398993382604", + "expectedQtys": [ + "528257392276545368538", + "828467568252707122552", + "644722763814284381232" ], - "expectedQty": "500148202322234023876130", + "redemptionFee": "600527875019698014", "reserves": [ - "40590240652653455969471484", - "152181072287202526569751469", - "55879572872849163298752745" + "691307303986219920527377146", + "1084179207754415794510267538", + "843720432856092212161856298" ], - "mAssetSupply": "248209078263999769125007045" + "mAssetSupply": "2618829176360419665873565122" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "94746180541827174629376", - "outputIndex": 2, - "expectedQty": "93497940673380664907839", - "swapFee": "56398551931957517802", + "type": "redeem", + "inputIndex": 2, + "inputQty": "33774842209489625088", + "expectedQty": "33749246305203957834", + "swapFee": "20264905325693775", "reserves": [ - "40590240652653455969471484", - "152275818467744353744380845", - "55786074932175782633844906" + "691307303986219920527377146", + "1084179207754415794510267538", + "843720399106845906957898464" ], - "mAssetSupply": "248209134662551701082524847", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2618829142605842361709633809" }, { "type": "swap", "inputIndex": 1, - "inputQty": "96914229501428664107008", - "outputIndex": 0, - "expectedQty": "94923059446293947681019", - "swapFee": "57688190658086757742", + "inputQty": "10874591456454795853824", + "outputIndex": 2, + "expectedQty": "10846400407293917784935", + "swapFee": "6512776336340342004", "reserves": [ - "40495317593207162021790465", - "152372732697245782408487853", - "55786074932175782633844906" + "691307303986219920527377146", + "1084190082345872249306121362", + "843709552706438613040113529" ], - "mAssetSupply": "248209192350742359169282589", + "mAssetSupply": "2618829149118618698049975813", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "12033979257340978790400", - "490392041489676080513024", - "218946803774102920232960" + "250572787027075508731904", + "442154544790682067795968", + "1528106592660787606585344" ], - "expectedQty": "718665830631636017414703", + "expectedQty": "2220805069238211156116224", + "swapFee": "1333283011349736535591", "reserves": [ - "40507351572464503000580865", - "152863124738735458489000877", - "56005021735949885554077866" + "691056731199192845018645242", + "1083747927801081567238325394", + "842181446113777825433528185" ], - "mAssetSupply": "248927858181373995186697292" + "mAssetSupply": "2616608344049380486893859589" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "462455578268397952", - "expectedQty": "456516390775520476", - "swapFee": "277473346961038", + "type": "redeemMasset", + "inputQty": "193820330996307811368960", + "expectedQtys": [ + "51173368161671516205514", + "80252502001644817662468", + "62364288277928304897551" + ], + "redemptionFee": "58146099298892343410", "reserves": [ - "40507351115948112225060389", - "152863124738735458489000877", - "56005021735949885554077866" + "691005557831031173502439728", + "1083667675299079922420662926", + "842119081825499897128630634" ], - "mAssetSupply": "248927857719195890265260378" + "mAssetSupply": "2616414581864483477974834039" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "8037731880574947328", - "767989062124311040", - "4973531726456035328" + "230733417435492127866880", + "2821202026019489316864000", + "2222133404189752444321792" ], - "expectedQty": "13896401521789331641", - "swapFee": "8342846621046226", + "expectedQty": "5269728683114309658633435", "reserves": [ - "40507343078216231650113061", - "152863123970746396364689837", - "56005016762418159098042538" + "691236291248466665630306608", + "1086488877325099411737526926", + "844341215229689649572952426" ], - "mAssetSupply": "248927843822794368475928737" + "mAssetSupply": "2621684310547597787633467474" }, { - "type": "redeemMasset", - "inputQty": "3056147715259272213299", - "expectedQtys": [ - "497169312889783912576", - "1876174750932800593896", - "687380943459755418872" + "type": "mint", + "inputIndex": 0, + "inputQty": "42025092939164747300864", + "expectedQty": "42115549213811553872382", + "reserves": [ + "691278316341405830377607472", + "1086488877325099411737526926", + "844341215229689649572952426" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "187305234367146815913984", + "236413413922634773561344", + "198981785874325911371776" ], - "redemptionFee": "916844314577781663", + "expectedQty": "622699153134033808009922", + "swapFee": "373843798159315874330", "reserves": [ - "40506845908903341866200485", - "152861247795995463564095941", - "56004329381474699342623666" + "691091011107038683561693488", + "1086252463911176776963965582", + "844142233443815323661580650" ], - "mAssetSupply": "248924788591923423781497101" + "mAssetSupply": "2621103726943677565379329934" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "165528739287188013056", - "expectedQty": "163402890103370462871", - "swapFee": "99317243572312807", + "inputIndex": 1, + "inputQty": "25602448527510921216", + "expectedQty": "25634393860775736291", + "swapFee": "15361469116506552", "reserves": [ - "40506682506013238495737614", - "152861247795995463564095941", - "56004329381474699342623666" + "691091011107038683561693488", + "1086252438276782916188229291", + "844142233443815323661580650" ], - "mAssetSupply": "248924623162501380165796852" + "mAssetSupply": "2621103701356590506984915270" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "347107560060647505920", - "outputIndex": 2, - "expectedQty": "349544900213807562914", - "swapFee": "210847431483681414", + "inputQty": "50374959992512551321600", + "expectedQty": "50483380166438072455392", "reserves": [ - "40507029613573299143243534", - "152861247795995463564095941", - "56003979836574485535060752" - ], - "mAssetSupply": "248924623373348811649478266", - "hardLimitError": false, - "insufficientLiquidityError": false + "691141386067031196113015088", + "1086252438276782916188229291", + "844142233443815323661580650" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "11723821697220594", - "expectedQty": "11661518050109310", - "swapFee": "7034293018332", + "type": "redeemMasset", + "inputQty": "275102923834481715026329", + "expectedQtys": [ + "72516899880240794927392", + "113973292439392631628010", + "88570268054228541873576" + ], + "redemptionFee": "82530877150344514507", "reserves": [ - "40507029613573299143243534", - "152861247795995463564095941", - "56003979824912967484951442" + "691068869167150955318087696", + "1086138464984343523556601281", + "844053663175761095119707074" ], - "mAssetSupply": "248924623361632024245276004" + "mAssetSupply": "2620879164343799613686858840" }, { "type": "redeemBassets", "inputQtys": [ - "277420233011809551908864", - "102526780939378905579520", - "125291915775622435045376" + "369351133477027289497600", + "497470097111582890786816", + "356673129403697323835392" ], - "expectedQty": "508479624153288105222778", - "swapFee": "305270937054205386365", + "expectedQty": "1223428396080413059002681", + "swapFee": "734497736290021848510", "reserves": [ - "40229609380561489591334670", - "152758721015056084658516421", - "55878687909137345049906066" + "690699518033673928028590096", + "1085640994887231940665814465", + "843696990046357397795871682" ], - "mAssetSupply": "248416143737478736140053226" + "mAssetSupply": "2619655735947719200627856159" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "13015138229559802", - "expectedQty": "13112224452834410", - "swapFee": "7809082937735", + "type": "redeemBassets", + "inputQtys": [ + "8843507802588362842308608", + "17444030448069081200328704", + "18207879077268016068558848" + ], + "expectedQty": "44485325762539328706575397", + "swapFee": "26707219789397235565284", "reserves": [ - "40229609380561489591334670", - "152758721001943860205682011", - "55878687909137345049906066" + "681856010231085565186281488", + "1068196964439162859465485761", + "825489110969089381727312834" ], - "mAssetSupply": "248416143724471406993431159" + "mAssetSupply": "2575170410185179871921280762" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "96062549079535840", - "expectedQty": "94813031311165263", - "swapFee": "57637529447721", + "type": "redeemBassets", + "inputQtys": [ + "18461122842768726556672", + "363746664279757171982336", + "214600227564023390928896" + ], + "expectedQty": "596217933396569135976358", + "swapFee": "357945527354354094042", "reserves": [ - "40229609285748458280169407", - "152758721001943860205682011", - "55878687909137345049906066" + "681837549108242796459724816", + "1067833217774883102293503425", + "825274510741525358336383938" ], - "mAssetSupply": "248416143628466495443343040" + "mAssetSupply": "2574574192251783302785304404" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "198201726512961748992", - "expectedQty": "199143257461920326142", + "inputIndex": 0, + "inputQty": "3532529671499692308955136", + "expectedQty": "3539891317760889927272006", "reserves": [ - "40229609285748458280169407", - "152758721001943860205682011", - "55878886110863858011655058" + "685370078779742488768679952", + "1067833217774883102293503425", + "825274510741525358336383938" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "8229433832965337513984", - "outputIndex": 0, - "expectedQty": "8160938264937742306091", - "swapFee": "4961109974072517603", + "type": "redeemMasset", + "inputQty": "487340278808301063372", + "expectedQtys": [ + "129516472864338252657", + "201791698026586574109", + "155954639815017337105" + ], + "redemptionFee": "146202083642490319", "reserves": [ - "40221448347483520537863316", - "152758721001943860205682011", - "55887115544696823349169042" + "685369949263269624430427295", + "1067833015983185075706929316", + "825274354786885543319046833" ], - "mAssetSupply": "248416347732833931436186785", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2578113596375467468054003357" }, { - "type": "redeemBassets", - "inputQtys": [ - "5822494387424028786688", - "2993801166868682637312", - "5624668271793268588544" + "type": "redeemMasset", + "inputQty": "224250480550048894340300", + "expectedQtys": [ + "59597231220036188697217", + "92854802324419729030374", + "71762799922975951443137" ], - "expectedQty": "14516955730374063166012", - "swapFee": "8715402679832337301", + "redemptionFee": "67275144165014668302", "reserves": [ - "40215625853096096509076628", - "152755727200776991523044699", - "55881490876425030080580498" + "685310352032049588241730078", + "1067740161180860655977898942", + "825202591986962567367603696" ], - "mAssetSupply": "248401830777103557373020773" + "mAssetSupply": "2577889413170061584174331359" }, { - "type": "redeemBassets", - "inputQtys": [ - "348871786796080036839424", - "98908144637712506290176", - "154225290462007618699264" + "type": "redeemMasset", + "inputQty": "10011890889782191561113", + "expectedQtys": [ + "2660779030861225176350", + "4145597133990986463644", + "3203923224653925642651" ], - "expectedQty": "606371791976783760879248", - "swapFee": "364041500086121929685", + "redemptionFee": "3003567266934657468", "reserves": [ - "39866754066300016472237204", - "152656819056139279016754523", - "55727265585963022461881234" + "685307691253018727016553728", + "1067736015583726664991435298", + "825199388063737913441961045" ], - "mAssetSupply": "247795458985126773612141525" + "mAssetSupply": "2577879404282739068917427714" }, { "type": "redeemBassets", "inputQtys": [ - "314203223178870521856", - "965751385562059904", - "74153570135792467968" + "161048139193700992417792", + "85971198413646455635968", + "191015299742985619505152" ], - "expectedQty": "393690830319366825910", - "swapFee": "236356311978807379", + "expectedQty": "438251148700326254824130", + "swapFee": "263108554352807437356", "reserves": [ - "39866439863076837601715348", - "152656818090387893454694619", - "55727191432392886669413266" + "685146643113825026024135936", + "1067650044385313018535799330", + "825008372763994927822455893" ], - "mAssetSupply": "247795065294296454245315615" + "mAssetSupply": "2577441153134038742662603584" }, { "type": "redeemBassets", "inputQtys": [ - "145925413977594078953472", - "145981476206880556580864", - "148926531054629300469760" + "2032585774342839205888", + "1451645440769339424768", + "1916828174174147313664" ], - "expectedQty": "442238739580939354918022", - "swapFee": "265502545275729050381", - "reserves": [ - "39720514449099243522761876", - "152510836614181012898113755", - "55578264901338257368943506" - ], - "mAssetSupply": "247352826554715514890397593" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "294592037711672026071040", - "expectedQty": "293000312550203953264252", - "swapFee": "176755222627003215642", + "expectedQty": "5403011788257942398839", + "swapFee": "3243753324949735280", "reserves": [ - "39720514449099243522761876", - "152510836614181012898113755", - "55285264588788053415679254" + "685144610528050683184930048", + "1067648592739872249196374562", + "825006455935820753675142229" ], - "mAssetSupply": "247058411272226469867542195" + "mAssetSupply": "2577435750122250484720204745" }, { - "type": "mintMulti", - "inputQtys": [ - "142546411590641759813632", - "41465817755235366469632", - "138927513123185749917696" - ], - "expectedQty": "325105358237545888816152", + "type": "swap", + "inputIndex": 1, + "inputQty": "180524817472181370880", + "outputIndex": 0, + "expectedQty": "179714439443315706674", + "swapFee": "108116130822491290", "reserves": [ - "39863060860689885282575508", - "152552302431936248264583387", - "55424192101911239165596950" + "685144430813611239869223374", + "1067648773264689721377745442", + "825006455935820753675142229" ], - "mAssetSupply": "247383516630464015756358347" + "mAssetSupply": "2577435750230366615542696035", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "43672388726331814182912", - "expectedQty": "44229437595448438569858", + "type": "redeem", + "inputIndex": 2, + "inputQty": "1436925394735469271449600", + "expectedQty": "1435740937097093164241753", + "swapFee": "862155236841281562869", "reserves": [ - "39906733249416217096758420", - "152552302431936248264583387", - "55424192101911239165596950" - ] + "685144430813611239869223374", + "1067648773264689721377745442", + "823570714998723660510900476" + ], + "mAssetSupply": "2575999686990867987552809304" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "12431246165999223832576", - "expectedQty": "12589558996303002754664", + "type": "redeemMasset", + "inputQty": "10103727050890301164801228", + "expectedQtys": [ + "2686504816220127893206192", + "4186334212774745443099251", + "3229285086232902442647788" + ], + "redemptionFee": "3031118115267090349440", "reserves": [ - "39919164495582216320590996", - "152552302431936248264583387", - "55424192101911239165596950" - ] + "682457925997391111976017182", + "1063462439051914975934646191", + "820341429912490758068252688" + ], + "mAssetSupply": "2565898991058092953478357516" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1048948622667547311865856", - "933476215857469051633664", - "5217378334248552991031296" + "5181673904111114176692224", + "7577709589441182760435712", + "7374695817482724481957888" ], - "expectedQty": "7227666127231092231488004", + "expectedQty": "20132508914374264820189223", + "swapFee": "12086757403066398731352", "reserves": [ - "40968113118249763632456852", - "153485778647793717316217051", - "60641570436159792156628246" + "677276252093279997799324958", + "1055884729462473793174210479", + "812966734095008033586294800" ], - "mAssetSupply": "254668001754286859429170873" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1386860313401952", - "expectedQty": "1391870647843347", - "reserves": [ - "40968113118249763632456852", - "153485778647793717316217051", - "60641570437546652470030198" - ] + "mAssetSupply": "2545766482143718688658168293" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "12834349931782094192640", + "inputIndex": 1, + "inputQty": "24610988998992907468800", "outputIndex": 2, - "expectedQty": "12939718282641736872675", - "swapFee": "7796575548598923080", + "expectedQty": "24544949738700499305910", + "swapFee": "14739346928770442482", "reserves": [ - "40980947468181545726649492", - "153485778647793717316217051", - "60628630719264010733157523" + "677276252093279997799324958", + "1055909340451472786081679279", + "812942189145269333086988890" ], - "mAssetSupply": "254668009552254278675937300", + "mAssetSupply": "2545766496883065617428610775", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeem", + "inputIndex": 0, + "inputQty": "1405958758856636325953536", + "expectedQty": "1402221749701045129706049", + "swapFee": "843575255313981795572", + "reserves": [ + "675874030343578952669618909", + "1055909340451472786081679279", + "812942189145269333086988890" + ], + "mAssetSupply": "2544361381699464295084452811" + }, + { + "type": "redeemBassets", "inputQtys": [ - "278196693442137325568", - "163462174988904497152", - "100312130670450917376" + "2827878717714642501632", + "28588315911066352615424", + "2425988862552424054784" ], - "expectedQty": "544566918914248948629", + "expectedQty": "33795692892302912297919", + "swapFee": "20289589489075192494", "reserves": [ - "40981225664874987863975060", - "153485942109968706220714203", - "60628731031394681184074899" + "675871202464861238027117277", + "1055880752135561719729063855", + "812939763156406780662934106" ], - "mAssetSupply": "254668554119173192924885929" + "mAssetSupply": "2544327586006571992172154892" }, { - "type": "mintMulti", - "inputQtys": [ - "205672155798869147648", - "54556413198225178624", - "203734831222720987136" + "type": "redeemMasset", + "inputQty": "37453245459910965906636", + "expectedQtys": [ + "9946036867802408690178", + "15538210313508996133293", + "11963120822678562508086" ], - "expectedQty": "466850926534053809780", + "redemptionFee": "11235973637973289771", "reserves": [ - "40981431337030786733122708", - "153485996666381904445892827", - "60628934766225903905062035" + "675861256427993435618427099", + "1055865213925248210732930562", + "812927800035584102100426020" ], - "mAssetSupply": "254669020970099726978695709" + "mAssetSupply": "2544290143997085719179538027" }, { "type": "redeemMasset", - "inputQty": "726629971672791712687718", + "inputQty": "45900180498515596", "expectedQtys": [ - "116894480048065425649086", - "437799881302919303510064", - "172936561124015140055846" + "12189194337395253", + "19042586276731569", + "14661196869420824" ], - "redemptionFee": "217988991501837513806", + "redemptionFee": "13770054149554", "reserves": [ - "40864536856982721307473622", - "153048196785078985142382763", - "60455998205101888765006189" + "675861256415804241281031846", + "1055865213906205624456198993", + "812927800020922905231005196" ], - "mAssetSupply": "253942608987418437103521797" + "mAssetSupply": "2544290143951199308735171985" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "26111549877785186009088", - "expectedQty": "26436581385256687724249", + "type": "swap", + "inputIndex": 1, + "inputQty": "6991103522848655802368", + "outputIndex": 0, + "expectedQty": "6959559344920422277861", + "swapFee": "4186898088824769747", "reserves": [ - "40890648406860506493482710", - "153048196785078985142382763", - "60455998205101888765006189" - ] + "675854296856459320858753985", + "1055872205009728473112001361", + "812927800020922905231005196" + ], + "mAssetSupply": "2544290148138097397559941732", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mintMulti", + "inputQtys": [ + "93405191290650160529408", + "182682317355567995158528", + "99883341817552859824128" + ], + "expectedQty": "375849565289962937577458", + "reserves": [ + "675947702047749971019283393", + "1056054887327084041107159889", + "813027683362740458090829324" + ], + "mAssetSupply": "2544665997703387360497519190" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "385697321886427381760000", - "expectedQty": "387075399092731145705303", + "inputIndex": 1, + "inputQty": "2521406998764355800006656", + "expectedQty": "2516723746888058270234333", "reserves": [ - "40890648406860506493482710", - "153048196785078985142382763", - "60841695526988316146766189" + "675947702047749971019283393", + "1058576294325848396907166545", + "813027683362740458090829324" ] }, { "type": "mint", - "inputIndex": 1, - "inputQty": "939814003827016166539264", - "expectedQty": "932728638193070123188113", + "inputIndex": 0, + "inputQty": "13259706015256979456", + "expectedQty": "13287313873618543318", "reserves": [ - "40890648406860506493482710", - "153988010788906001308922027", - "60841695526988316146766189" + "675947715307455986276262849", + "1058576294325848396907166545", + "813027683362740458090829324" ] }, { "type": "redeemMasset", - "inputQty": "8684684168391641", + "inputQty": "176733926073003885461504", "expectedQtys": [ - "1390643699057216", - "5236954298284465", - "2069155756169631" - ], - "redemptionFee": "2605405250517", - "reserves": [ - "40890648405469862794425494", - "153988010783669047010637562", - "60841695524919160390596558" + "46885939139581701993159", + "73426305890819229436949", + "56394253013492028923612" ], - "mAssetSupply": "255288849597407416296998338" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "3583096285867682851454976", - "outputIndex": 0, - "expectedQty": "3502442938346542138044898", - "swapFee": "2133300845696173633628", + "redemptionFee": "53020177821901165638", "reserves": [ - "37388205467123320656380596", - "157571107069536729862092538", - "60841695524919160390596558" + "675900829368316404574269690", + "1058502868019957577677729596", + "812971289109726966061905712" ], - "mAssetSupply": "255290982898253112470631966", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2547006053831694110402000975" }, { - "type": "mintMulti", - "inputQtys": [ - "440516631189472518602752", - "238237798351900342484992", - "814394866368360417853440" + "type": "redeemMasset", + "inputQty": "8847563848289706049536", + "expectedQtys": [ + "2347180019942074795930", + "3675830351014347955806", + "2823180389300986556593" ], - "expectedQty": "1501056687411531475291584", + "redemptionFee": "2654269154486911814", "reserves": [ - "37828722098312793174983348", - "157809344867888630204577530", - "61656090391287520808449998" + "675898482188296462499473760", + "1058499192189606563329773790", + "812968465929337665075349119" ], - "mAssetSupply": "256792039585664643945923550" + "mAssetSupply": "2546997208922114975182863253" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "1285142105329767186169856", - "outputIndex": 1, - "expectedQty": "1299288878966925476499454", - "swapFee": "773667585476030733812", + "inputIndex": 0, + "inputQty": "491586777614064156672", + "outputIndex": 2, + "expectedQty": "492195825722281077894", + "swapFee": "295566181494448703", "reserves": [ - "37828722098312793174983348", - "156510055988921704728078076", - "62941232496617287994619854" + "675898973775074076563630432", + "1058499192189606563329773790", + "812967973733511942794271225" ], - "mAssetSupply": "256792813253250119976657362", + "mAssetSupply": "2546997209217681156677311956", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "182919319136896293011456", - "2200645770288439081566208", - "3377485997732556766707712" + "type": "redeemMasset", + "inputQty": "4281150860316712960", + "expectedQtys": [ + "1135752082865824083", + "1778657327331886182", + "1366077040055265556" ], - "expectedQty": "5755713322385181185502756", + "redemptionFee": "1284345258095013", "reserves": [ - "38011641417449689467994804", - "158710701759210143809644284", - "66318718494349844761327566" + "675898972639321993697806349", + "1058499190410949235997887608", + "812967972367434902739005669" ], - "mAssetSupply": "262548526575635301162160118" + "mAssetSupply": "2546997204937814641618694009" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "23729787874936308629504", - "expectedQty": "24110451425102308532303", + "inputIndex": 1, + "inputQty": "15239754573075055640576", + "expectedQty": "15211353276273859973114", "reserves": [ - "38035371205324625776624308", - "158710701759210143809644284", - "66318718494349844761327566" + "675898972639321993697806349", + "1058514430165522311053528184", + "812967972367434902739005669" ] }, { - "type": "mintMulti", - "inputQtys": [ - "322234221772255352848384", - "1468206070458768840196096", - "4560368222611983348793344" - ], - "expectedQty": "6354330166924091922040461", + "type": "mint", + "inputIndex": 1, + "inputQty": "284894106327052449742848", + "expectedQty": "284362958401424943150481", "reserves": [ - "38357605427096881129472692", - "160178907829668912649840380", - "70879086716961828110120910" - ], - "mAssetSupply": "268926967193984495392732882" + "675898972639321993697806349", + "1058799324271849363503271032", + "812967972367434902739005669" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "1043835682957278969856", - "expectedQty": "1045718537421849657148", + "inputQty": "6981983525132631590043648", + "expectedQty": "6983495428226611877358817", "reserves": [ - "38357605427096881129472692", - "160178907829668912649840380", - "70880130552644785389090766" + "675898972639321993697806349", + "1058799324271849363503271032", + "819949955892567534329049317" ] }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "37767194914564473880576", + "expectedQty": "37814276256687281209765", + "swapFee": "22660316948738684328", + "reserves": [ + "675898972639321993697806349", + "1058761509995592676222061267", + "819949955892567534329049317" + ], + "mAssetSupply": "2554242530143121336563980173" + }, { "type": "mintMulti", "inputQtys": [ - "39688103962708463845376", - "38297356729343608356864", - "23111384614517956673536" + "1522509279426013822976", + "287025716739114106880", + "1615418829471476613120" ], - "expectedQty": "101489917561516369855569", + "expectedQty": "3427949953991339689362", "reserves": [ - "38397293531059589593318068", - "160217205186398256258197244", - "70903241937259303345764302" + "675900495148601419711629325", + "1058761797021309415336168147", + "819951571311397005805662437" ], - "mAssetSupply": "269029502830083433612245599" + "mAssetSupply": "2554245958093075327903669535" }, { - "type": "redeemBassets", - "inputQtys": [ - "148756480846969513705472", - "83376890859646464557056", - "76978462129408660471808" + "type": "redeemMasset", + "inputQty": "1598130092557354529298841", + "expectedQtys": [ + "422767770023729827202706", + "662242988614182935598646", + "512870015363074093355214" ], - "expectedQty": "311040302672057809087445", - "swapFee": "186736223337237027669", + "redemptionFee": "479439027767206358789", "reserves": [ - "38248537050212620079612596", - "160133828295538609793640188", - "70826263475129894685292494" + "675477727378577689884426619", + "1058099554032695232400569501", + "819438701296033931712307223" ], - "mAssetSupply": "268718462527411375803158154" + "mAssetSupply": "2552648307439545740580729483" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "3317105007763480490541056", - "expectedQty": "3367030757008916571166265", + "type": "redeemBassets", + "inputQtys": [ + "79863808238002520064", + "177753963149927710720", + "226060303706177470464" + ], + "expectedQty": "483562125972129244604", + "swapFee": "290311462460753999", "reserves": [ - "41565642057976100570153652", - "160133828295538609793640188", - "70826263475129894685292494" - ] + "675477647514769451881906555", + "1058099376278732082472858781", + "819438475235730225534836759" + ], + "mAssetSupply": "2552647823877419768451484879" }, { "type": "mintMulti", "inputQtys": [ - "4812262614809173819392", - "5819539673992537309184", - "10492339846888615313408" + "4843230475098349432209408", + "6988501218589132623708160", + "3301420665876416315785216" ], - "expectedQty": "21169825809023374905961", + "expectedQty": "15131107958533547003172832", "reserves": [ - "41570454320590909743973044", - "160139647835212602330949372", - "70836755814976783300605902" + "680320877989867801314115963", + "1065087877497321215096566941", + "822739895901606641850621975" ], - "mAssetSupply": "272106663110229315749230380" + "mAssetSupply": "2567778931835953315454657711" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "7744324049048969932701696", - "outputIndex": 1, - "expectedQty": "7802258191762865313083032", - "swapFee": "4653279381057798967949", + "inputIndex": 1, + "inputQty": "2616825324624261425397760", + "outputIndex": 0, + "expectedQty": "2604866132044371110081186", + "swapFee": "1567182322423043834163", "reserves": [ - "41570454320590909743973044", - "152337389643449737017866340", - "78581079864025753233307598" + "677716011857823430204034777", + "1067704702821945476521964701", + "822739895901606641850621975" ], - "mAssetSupply": "272111316389610373548198329", + "mAssetSupply": "2567780499018275738498491874", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "660006227541225256255488", - "expectedQty": "650873418016923479966760", - "swapFee": "396003736524735153753", + "type": "redeemBassets", + "inputQtys": [ + "391521700562015485952", + "844847448296098422063104", + "501872060877255286456320" + ], + "expectedQty": "1345633956720395396520026", + "swapFee": "807865093088090091967", "reserves": [ - "40919580902573986264006284", - "152337389643449737017866340", - "78581079864025753233307598" + "677715620336122868188548825", + "1066859855373649378099901597", + "822238023840729386564165655" ], - "mAssetSupply": "271451706165805673027096594" + "mAssetSupply": "2566434865061555343101971848" }, { "type": "redeemMasset", - "inputQty": "287383201129030693683", + "inputQty": "12877012933645513", "expectedQtys": [ - "43308153905707019560", - "161229684438365711784", - "83168043898851582614" + "3399398457887639", + "5351332680425321", + "4124317909146727" ], - "redemptionFee": "86214960338709208", + "redemptionFee": "3863103880093", "reserves": [ - "40919537594420080556986724", - "152337228413765298652154556", - "78580996695981854381724984" + "677715620332723469730661186", + "1066859855368298045419476276", + "822238023836605068655018928" ], - "mAssetSupply": "271451418868819504335112119" + "mAssetSupply": "2566434865048682193272206428" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "821963212112184265932800", - "outputIndex": 2, - "expectedQty": "815689061588056438941305", - "swapFee": "489984444336811165710", + "type": "mint", + "inputIndex": 0, + "inputQty": "24265852236713424846848", + "expectedQty": "24317663950044749373347", "reserves": [ - "40919537594420080556986724", - "153159191625877482918087356", - "77765307634393797942783679" - ], - "mAssetSupply": "271451908853263841146277829", - "hardLimitError": false, - "insufficientLiquidityError": false + "677739886184960183155508034", + "1066859855368298045419476276", + "822238023836605068655018928" + ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "14485008730249431613440", - "expectedQty": "14467357155781933880444", - "swapFee": "8691005238149658968", + "type": "redeemBassets", + "inputQtys": [ + "633717002919236444618752", + "1833336493233994966499328", + "155007123573206604054528" + ], + "expectedQty": "2620022541614328458220862", + "swapFee": "1572957299348205998531", "reserves": [ - "40919537594420080556986724", - "153159191625877482918087356", - "77750840277238016008903235" + "677106169182040946710889282", + "1065026518875064050452976948", + "822083016713031862050964400" ], - "mAssetSupply": "271437432535538829864323357" + "mAssetSupply": "2563839160171017909563358913" }, { - "type": "redeemBassets", - "inputQtys": [ - "75601940804973280", - "28128469647121852", - "24247870360125536" - ], - "expectedQty": "128845505853224678", - "swapFee": "77353715741379", + "type": "redeem", + "inputIndex": 2, + "inputQty": "38309341753193443360768", + "expectedQty": "38278750584079575052614", + "swapFee": "22985605051916066016", "reserves": [ - "40919537518818139752013444", - "153159191597749013270965504", - "77750840252990145648777699" + "677106169182040946710889282", + "1065026518875064050452976948", + "822044737962447782475911786" ], - "mAssetSupply": "271437432406693324011098679" + "mAssetSupply": "2563800873814869768036064161" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "863916829631371500584960", - "993464890618381439336448", - "2486516299998612160512" + "67534072580817733812224", + "149787160553424947249152", + "106942912764932209508352" ], - "expectedQty": "1865387244252147173686081", - "swapFee": "1119904289124763162108", + "expectedQty": "324150355717115879449953", "reserves": [ - "40055620689186768251428484", - "152165726707130631831629056", - "77748353736690147036617187" + "677173703254621764444701506", + "1065176306035617475400226100", + "822151680875212714685420138" ], - "mAssetSupply": "269572045162441176837412598" + "mAssetSupply": "2564125024170586883915514114" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7970854863432404959232", - "5393671540907609948160", - "148435067782687096832" + "3123945731485360751378432", + "1073180734980967442153472", + "2749306682788190210752512" ], - "expectedQty": "13590501497814826542368", - "swapFee": "8159196416538819216", + "expectedQty": "6951618709420792606235879", "reserves": [ - "40047649834323335846469252", - "152160333035589724221680896", - "77748205301622364349520355" + "680297648986107125196079938", + "1066249486770598442842379572", + "824900987558000904896172650" ], - "mAssetSupply": "269558454660943362010870230" + "mAssetSupply": "2571076642880007676521749993" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "30399308942350680588288", - "155317989462597160665088", - "267860000314834041176064" + "168519654525742579712", + "84803791116357959680", + "84359721777285840896" ], - "expectedQty": "453115082356187286027557", + "expectedQty": "337899162853467308331", + "swapFee": "202861214440744831", "reserves": [ - "40078049143265686527057540", - "152315651025052321382345984", - "78016065301937198390696419" + "680297480466452599453500226", + "1066249401966807326484419892", + "824900903198279127610331754" ], - "mAssetSupply": "270011569743299549296897787" + "mAssetSupply": "2571076304980844823054441662" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "953918517659742962188288", - "expectedQty": "947594228669951448663152", + "inputIndex": 2, + "inputQty": "2868668039321150346493952", + "expectedQty": "2869197920955384888713944", "reserves": [ - "40078049143265686527057540", - "153269569542712064344534272", - "78016065301937198390696419" + "680297480466452599453500226", + "1066249401966807326484419892", + "827769571237600277956825706" ] }, { - "type": "redeemMasset", - "inputQty": "978388318128080263577", - "expectedQtys": [ - "144671731902232115538", - "553264805739169053217", - "281618480058313889071" - ], - "redemptionFee": "293516495438424079", + "type": "swap", + "inputIndex": 1, + "inputQty": "5073476055308126126080", + "outputIndex": 2, + "expectedQty": "5060220831647497224684", + "swapFee": "3038484776925857973", "reserves": [ - "40077904471533784294942002", - "153269016277906325175481055", - "78015783683457140076807348" + "680297480466452599453500226", + "1066254475442862634610545972", + "827764511016768630459601022" ], - "mAssetSupply": "270958185877167868103721441" + "mAssetSupply": "2573945505940284984869013579", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "1046976448907159330095104", - "1085187925768857070862336", - "241547690488072964669440" - ], - "expectedQty": "2381406328913015243492921", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2247936916451945009381376", + "expectedQty": "2250716983032070578407082", + "swapFee": "1348762149871167005628", "reserves": [ - "41124880920440943625037106", - "154354204203675182246343391", - "78257331373945213041476788" + "680297480466452599453500226", + "1064003758459830564032138890", + "827764511016768630459601022" ], - "mAssetSupply": "273339592206080883347214362" + "mAssetSupply": "2571698917785982911026637831" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "237835786286970810925056", - "expectedQty": "234443487493289009280202", - "swapFee": "142701471772182486555", + "inputIndex": 1, + "inputQty": "8973809965433428614578176", + "expectedQty": "8984660687819905859451368", + "swapFee": "5384285979260057168746", "reserves": [ - "40890437432947654615756904", - "154354204203675182246343391", - "78257331373945213041476788" + "680297480466452599453500226", + "1055019097772010658172687522", + "827764511016768630459601022" ], - "mAssetSupply": "273101899121265684718775861" + "mAssetSupply": "2562730492106528742469228401" }, { "type": "redeemBassets", "inputQtys": [ - "1710224506872228741120", - "1734956180121184894976", - "7462872356955976892416" + "6370913563163972633362432", + "3690009886687263088181248", + "536222459313316058628096" ], - "expectedQty": "10924979116217824472464", - "swapFee": "6558922823424749533", + "expectedQty": "10604042841096101734962183", + "swapFee": "6366245451928818331976", "reserves": [ - "40888727208440782387015784", - "154352469247495061061448415", - "78249868501588257064584372" + "673926566903288626820137794", + "1051329087885323395084506274", + "827228288557455314400972926" ], - "mAssetSupply": "273090974142149466894303397" + "mAssetSupply": "2552126449265432640734266218" }, { - "type": "redeemBassets", - "inputQtys": [ - "20765048866840523046912", - "22939540102542159511552", - "4607278537500325314560" - ], - "expectedQty": "48453086839388043380462", - "swapFee": "29089305687045053060", + "type": "swap", + "inputIndex": 2, + "inputQty": "10817448610597310386143232", + "outputIndex": 1, + "expectedQty": "10830509963511083805594701", + "swapFee": "6490915574729256105752", "reserves": [ - "40867962159573941863968872", - "154329529707392518901936863", - "78245261223050756739269812" + "673926566903288626820137794", + "1040498577921812311278911573", + "838045737168052624787116158" ], - "mAssetSupply": "273042521055310078850922935" + "mAssetSupply": "2552132940181007369990371970", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "518339741610139837267968", - "expectedQty": "521459418191734090780418", - "swapFee": "311003844966083902360", + "type": "redeemBassets", + "inputQtys": [ + "1570511268947491840", + "1602745759087743744", + "1096918085347762048" + ], + "expectedQty": "4270793407823873543", + "swapFee": "2564014453366343", "reserves": [ - "40867962159573941863968872", - "153808070289200784811156445", - "78245261223050756739269812" + "673926565332777357872645954", + "1040498576319066552191167829", + "838045736071134539439354110" ], - "mAssetSupply": "272524492317544905097557327" + "mAssetSupply": "2552132935910213962166498427" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "7538116693432296345174016", - "expectedQty": "7625289931896495157858304", + "inputQty": "4152627967563289948323840", + "outputIndex": 1, + "expectedQty": "4165920484518296027939983", + "swapFee": "2496845489288241601724", "reserves": [ - "48406078853006238209142888", - "153808070289200784811156445", - "78245261223050756739269812" - ] + "678079193300340647820969794", + "1036332655834548256163227846", + "838045736071134539439354110" + ], + "mAssetSupply": "2552135432755703250408100151", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "87882369863009404190720", - "expectedQty": "88723994775827124128661", + "inputIndex": 2, + "inputQty": "73541705359754542306033664", + "expectedQty": "73524107211719398866876996", "reserves": [ - "48493961222869247613333608", - "153808070289200784811156445", - "78245261223050756739269812" + "678079193300340647820969794", + "1036332655834548256163227846", + "911587441430889081745387774" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "5400654920604778496", - "expectedQty": "5391269679464015541", - "swapFee": "3240392952362867", + "type": "redeemMasset", + "inputQty": "335096327231951761886412", + "expectedQtys": [ + "86512998823904253091526", + "132220906822127679658267", + "116305239900592559887434" + ], + "redemptionFee": "100528898169585528565", "reserves": [ - "48493961222869247613333608", - "153808070289200784811156445", - "78245255831781077275254271" + "677992680301516743567878268", + "1036200434927726128483569579", + "911471136190988489185500340" ], - "mAssetSupply": "280238500846802699727128663" + "mAssetSupply": "2625324544169088867098619300" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "2186422043084570885095424", - "expectedQty": "2163353888610608282676616", - "swapFee": "1311853225850742531057", + "inputIndex": 2, + "inputQty": "57472014032512032440320", + "expectedQty": "57464710297905913871541", + "swapFee": "34483208419507219464", "reserves": [ - "46330607334258639330656992", - "153808070289200784811156445", - "78245255831781077275254271" + "677992680301516743567878268", + "1036200434927726128483569579", + "911413671480690583271628799" ], - "mAssetSupply": "278053390656943979584564296" + "mAssetSupply": "2625267106638264774573398444" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "93168777157822143004672", - "expectedQty": "92136081606498223638033", - "swapFee": "55901266294693285802", + "type": "swap", + "inputIndex": 1, + "inputQty": "17270688898482587648", + "outputIndex": 0, + "expectedQty": "17193906747685637152", + "swapFee": "10347155717555006", "reserves": [ - "46238471252652141107018959", - "153808070289200784811156445", - "78245255831781077275254271" + "677992663107609995882241116", + "1036200452198415026966157227", + "911413671480690583271628799" ], - "mAssetSupply": "277960277781052452134845426" + "mAssetSupply": "2625267106648611930290953450", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "20600386828755002982", - "expectedQtys": [ - "3425829915908799746", - "11395711714295148758", - "5797227523846347439" + "type": "redeemBassets", + "inputQtys": [ + "427673584112087311843328", + "440185501574266609467392", + "80357824301563320991744" ], - "redemptionFee": "6180116048626500", + "expectedQty": "948551328966866112230551", + "swapFee": "569472480868640851849", "reserves": [ - "46238467826822225198219213", - "153808058893489070516007687", - "78245250034553553428906832" + "677564989523497908570397788", + "1035760266696840760356689835", + "911333313656389019950637055" ], - "mAssetSupply": "277960257186845739428468944" + "mAssetSupply": "2624318555319645064178722899" }, { "type": "redeemBassets", "inputQtys": [ - "1662857445683308527616", - "2039393522441457500160", - "1339902841840861970432" + "13950543959613159673692160", + "15992415353890610125733888", + "2181744455064478455693312" ], - "expectedQty": "5049210758098599734973", - "swapFee": "3031345262016369662", + "expectedQty": "32134123617919141986561566", + "swapFee": "19292049400391720224071", "reserves": [ - "46236804969376541889691597", - "153806019499966629058507527", - "78243910131711712566936400" + "663614445563884748896705628", + "1019767851342950150230955947", + "909151569201324541494943743" ], - "mAssetSupply": "277955207976087640828733971" + "mAssetSupply": "2592184431701725922192161333" }, { "type": "redeemBassets", "inputQtys": [ - "82134940830281913860096", - "126873504287313807540224", - "10167071819195708604416" + "2319082190849518600192", + "4271848063839880871936", + "3556536842746540851200" ], - "expectedQty": "219316638773069720962472", - "swapFee": "131668984654634613345", + "expectedQty": "10145001214967539017983", + "swapFee": "6090655122053755664", "reserves": [ - "46154670028546259975831501", - "153679145995679315250967303", - "78233743059892516858331984" + "663612126481693899378105436", + "1019763579494886310350084011", + "909148012664481794954092543" ], - "mAssetSupply": "277735891337314571107771499" + "mAssetSupply": "2592174286700510954653143350" }, { - "type": "redeemMasset", - "inputQty": "73037706970614335746867", - "expectedQtys": [ - "12133901525164980707307", - "40401710657441754973958", - "20567377767984763451298" + "type": "redeemBassets", + "inputQtys": [ + "5366438920374428106752", + "3327691511398362251264", + "2153510440773703958528" ], - "redemptionFee": "21911312091184300724", + "expectedQty": "10854904775260728649067", + "swapFee": "6516852976942602751", "reserves": [ - "46142536127021094995124194", - "153638744285021873495993345", - "78213175682124532094880686" + "663606760042773524949998684", + "1019760251803374911987832747", + "909145859154041021250134015" ], - "mAssetSupply": "277662875541656047956325356" + "mAssetSupply": "2592163431795735693924494283" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "31168260989961656860672", - "expectedQty": "30985743223569461835038", + "inputQty": "32641928832484208", + "expectedQty": "32669912449363624", + "swapFee": "19585157299490", "reserves": [ - "46142536127021094995124194", - "153669912546011835152854017", - "78213175682124532094880686" - ] + "663606760042773524949998684", + "1019760251770704999538469123", + "909145859154041021250134015" + ], + "mAssetSupply": "2592163431763113350249309565" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "58298692402066212519936", - "69484166810299898265600", - "7851447673726672306176" + "50659847890000725147648", + "38396823343946432249856", + "20952161309535147917312" ], - "expectedQty": "135855753698531494166603", + "expectedQty": "110066893284557363235961", + "swapFee": "66079783841039041366", "reserves": [ - "46200834819423161207644130", - "153739396712822135051119617", - "78221027129798258767186862" + "663556100194883524224851036", + "1019721854947361053106219267", + "909124906992731486102216703" ], - "mAssetSupply": "277829717038578148912326997" + "mAssetSupply": "2592053364869828792886073604" }, { "type": "mintMulti", "inputQtys": [ - "2390327550105628329377792", - "6875058450702978697396224", - "4561535040134605053100032" + "7796831130673151475712", + "11031272355063161421824", + "840937470533942247424" ], - "expectedQty": "13816522145050772462345765", + "expectedQty": "19671862488560781628205", "reserves": [ - "48591162369528789537021922", - "160614455163525113748515841", - "82782562169932863820286894" + "663563897026014197376326748", + "1019732886219716116267641091", + "909125747930202020044464127" ], - "mAssetSupply": "291646239183628921374672762" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2241633106276520960", - "expectedQty": "2265279918563124386", - "reserves": [ - "48591164611161895813542882", - "160614455163525113748515841", - "82782562169932863820286894" - ] + "mAssetSupply": "2592073036732317353667701809" }, { "type": "redeemBassets", "inputQtys": [ - "1212057619155557120", - "1031315592779040256", - "2455553883160796672" + "237258545481167470592", + "111115669175969349632", + "188433179766286680064" ], - "expectedQty": "4707923366443959700", - "swapFee": "2826449889800255", + "expectedQty": "537128515019710263445", + "swapFee": "322470591366646145", "reserves": [ - "48591163399104276657985762", - "160614454132209520969475585", - "82782559714378980659490222" + "663563659767468716208856156", + "1019732775104046940298291459", + "909125559497022253757784063" ], - "mAssetSupply": "291646236740985473493837448" + "mAssetSupply": "2592072499603802333957438364" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "10526810593830330368", - "expectedQty": "10536097202444255707", + "type": "mintMulti", + "inputQtys": [ + "5929815169127967358976", + "5389535637980299919360", + "4251965257884827123712" + ], + "expectedQty": "15575795513530068436945", "reserves": [ - "48591163399104276657985762", - "160614454132209520969475585", - "82782570241189574489820590" - ] + "663569589582637844176215132", + "1019738164639684920598210819", + "909129811462280138584907775" + ], + "mAssetSupply": "2592088075399315864025875309" }, { "type": "redeemBassets", "inputQtys": [ - "539859892277449", - "487063410268115", - "337821337985178" + "899612566677053767680", + "881915221488559194112", + "419338168381283762176" ], - "expectedQty": "1367924792242971", - "swapFee": "821247623920", + "expectedQty": "2201579098187019458065", + "swapFee": "1321740503214140158", "reserves": [ - "48591163398564416765708313", - "160614454131722457559207470", - "82782570240851753151835412" + "663568689970071167122447452", + "1019737282724463432039016707", + "909129392124111757301145599" ], - "mAssetSupply": "291646247275714751145850184" + "mAssetSupply": "2592085873820217677006417244" }, { "type": "mintMulti", "inputQtys": [ - "1230162322445245775609856", - "1754959332195865183911936", - "1228059707654076345876480" + "2196803082882837595029504", + "1394973665125155045638144", + "1430717182270898721259520" ], - "expectedQty": "4217001369690017782673244", + "expectedQty": "5025101476974080691312505", "reserves": [ - "49821325721009662541318169", - "162369413463918322743119406", - "84010629948505829497711892" + "665765493052954004717476956", + "1021132256389588587084654851", + "910560109306382656022405119" ], - "mAssetSupply": "295863248645404768928523428" + "mAssetSupply": "2597110975297191757697729749" }, { "type": "redeemBassets", "inputQtys": [ - "381106694548756", - "678498385530112", - "387062066960892" + "336404619853773265698816", + "649888116039944530558976", + "298252505072628295270400" ], - "expectedQty": "1447057953628884", - "swapFee": "868756025792", + "expectedQty": "1284266393538798864009945", + "swapFee": "771022449593035139489", "reserves": [ - "49821325720628555846769413", - "162369413463239824357589294", - "84010629948118767430751000" + "665429088433100231451778140", + "1020482368273548642554095875", + "910261856801310027727134719" ], - "mAssetSupply": "295863248643957710974894544" + "mAssetSupply": "2595826708903652958833719804" }, { - "type": "redeemMasset", - "inputQty": "80657143560338349542604", - "expectedQtys": [ - "13578030747925584764367", - "44251269042679708740185", - "22895796129243654168742" + "type": "mintMulti", + "inputQtys": [ + "5309731330973390340096", + "3408777706932816314368", + "209062070305292976128" ], - "redemptionFee": "24197143068101504862", + "expectedQty": "8935616877546906278788", "reserves": [ - "49807747689880630262005046", - "162325162194197144648849109", - "83987734151989523776582258" + "665434398164431204842118236", + "1020485777051255575370410243", + "910262065863380333020110847" ], - "mAssetSupply": "295782615697540440726856802" + "mAssetSupply": "2595835644520530505739998592" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2053233734561899216896", - "expectedQty": "2050174456647285049141", - "swapFee": "1231940240737139530", + "type": "redeemBassets", + "inputQtys": [ + "598259544012684015960064", + "600616122797493583872000", + "97831927807505608998912" + ], + "expectedQty": "1297259973914605011901609", + "swapFee": "778823278315752458616", "reserves": [ - "49807747689880630262005046", - "162325162194197144648849109", - "83985683977532876491533117" + "664836138620418520826158172", + "1019885160928458081786538243", + "910164233935572827411111935" ], - "mAssetSupply": "295780563695746119564779436" + "mAssetSupply": "2594538384546615900728096983" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "528193709134009856", - "expectedQty": "525189684578216199", + "type": "redeem", + "inputIndex": 0, + "inputQty": "927738302782722408448", + "expectedQty": "924895273758122662696", + "swapFee": "556642981669633445", "reserves": [ - "49807747689880630262005046", - "162325162722390853782858965", - "83985683977532876491533117" - ] + "664835213725144762703495476", + "1019885160928458081786538243", + "910164233935572827411111935" + ], + "mAssetSupply": "2594537457364956099675321980" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "43134144288509100032", - "expectedQty": "43576073300109221675", + "inputIndex": 2, + "inputQty": "435684673065662480384", + "expectedQty": "435439069719992312193", "reserves": [ - "49807790824024918771105078", - "162325162722390853782858965", - "83985683977532876491533117" + "664835213725144762703495476", + "1019885160928458081786538243", + "910164669620245893073592319" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "4416598758416454804045824", - "expectedQty": "4364500883034184357989525", - "swapFee": "2649959255049872882427", + "type": "mintMulti", + "inputQtys": [ + "1371498725959273021440", + "230792944940833669120", + "1790459677811758333952" + ], + "expectedQty": "3394798078183608741720", "reserves": [ - "45443289940990734413115553", - "162325162722390853782858965", - "83985683977532876491533117" + "664836585223870721976516916", + "1019885391721403022620207363", + "910166460079923704831926271" ], - "mAssetSupply": "291366658997847699321053913" + "mAssetSupply": "2594541287602104003276375893" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "160236993342586386120704", - "expectedQty": "162234484350822790911673", + "type": "redeemBassets", + "inputQtys": [ + "6355854639489103167488", + "2255759535753791799296", + "6001174907057283792896" + ], + "expectedQty": "14621850100372024952661", + "swapFee": "8778377086475100031", "reserves": [ - "45603526934333320799236257", - "162325162722390853782858965", - "83985683977532876491533117" - ] + "664830229369231232873349428", + "1019883135961867268828408067", + "910160458905016647548133375" + ], + "mAssetSupply": "2594526665752003631251423232" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "8194762459458519219306496", - "outputIndex": 0, - "expectedQty": "8062156840948654086002876", - "swapFee": "4917635647701620386434", + "inputQty": "1812705530639955196379136", + "expectedQty": "1811673727122701144738740", "reserves": [ - "37541370093384666713233381", - "162325162722390853782858965", - "92180446436991395710839613" - ], - "mAssetSupply": "291533811117846223732352020", - "hardLimitError": false, - "insufficientLiquidityError": false + "664830229369231232873349428", + "1019883135961867268828408067", + "911973164435656602744512511" + ] }, { "type": "mintMulti", "inputQtys": [ - "926931485124465262592", - "1139671096302742798336", - "406649235901097508864" + "153316686950773873967104", + "90668702911358547525632", + "59837182981477278679040" ], - "expectedQty": "2482869787946119488051", + "expectedQty": "304037398255539259172426", "reserves": [ - "37542297024869791178495973", - "162326302393487156525657301", - "92180853086227296808348477" + "664983546056182006747316532", + "1019973804664778627375933699", + "912033001618638080023191551" ], - "mAssetSupply": "291536293987634169851840071" + "mAssetSupply": "2596642376877381871655334398" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "189353641677054717984768", - "232355147227821663846400", - "8647777315657666789376" + "1351442290906341048320", + "3911953047785350627328", + "14278489045137105092608" ], - "expectedQty": "432387051131203776166805", + "expectedQty": "19531388630850091473253", + "swapFee": "11725868699729892819", "reserves": [ - "37731650666546845896480741", - "162558657540714978189503701", - "92189500863542954475137853" + "664982194613891100406268212", + "1019969892711730842025306371", + "912018723129592942918098943" ], - "mAssetSupply": "291968681038765373628006876" + "mAssetSupply": "2596622845488751021563861145" }, { "type": "redeemMasset", - "inputQty": "618274014093659602944", + "inputQty": "489844967991017157427", "expectedQtys": [ - "79876719938856656926", - "344131574755845117249", - "195162279192545326530" + "125409225658797348199", + "192356480333334823830", + "171997931343736615153" ], - "redemptionFee": "185482204228097880", + "redemptionFee": "146953490397305147", "reserves": [ - "37731570789826907039823815", - "162558313409140222344386452", - "92189305701263761929811323" + "664982069204665441608920013", + "1019969700355250508690482541", + "912018551131661599181483790" ], - "mAssetSupply": "291968062950233484196501812" + "mAssetSupply": "2596622355790736520944008865" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "3649721590735344156803072", - "745352300441043451510784", - "1708279499698638969372672" + "692880649267946174021632", + "3469360421579154375311360", + "4165966873484621336543232" ], - "expectedQty": "6173831411440255904780248", - "swapFee": "3706522760520465822361", + "expectedQty": "8322498759075285605823929", "reserves": [ - "34081849199091562883020743", - "161812961108699178892875668", - "90481026201565122960438651" + "665674949853933387782941645", + "1023439060776829663065793901", + "916184518005146220518027022" ], - "mAssetSupply": "285794231538793228291721564" + "mAssetSupply": "2604944854549811806549832794" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "117823135900224653885440", - "expectedQty": "118682907247988223206932", - "swapFee": "70693881540134792331", + "type": "redeemBassets", + "inputQtys": [ + "6308649508959052365824", + "6292941829373742284800", + "1879801203609522667520" + ], + "expectedQty": "14486967281957429567045", + "swapFee": "8697398808459533460", "reserves": [ - "34081849199091562883020743", - "161694278201451190669668736", - "90481026201565122960438651" + "665668641204424428730575821", + "1023432767835000289323509101", + "916182638203942610995359502" ], - "mAssetSupply": "285676479096774543772628455" + "mAssetSupply": "2604930367582529849120265749" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "929011614206654632951808", - "expectedQty": "950228232166945436823029", + "type": "redeem", + "inputIndex": 1, + "inputQty": "129559551616099516416", + "expectedQty": "129669545069366833162", + "swapFee": "77735730969659709", "reserves": [ - "35010860813298217515972551", - "161694278201451190669668736", - "90481026201565122960438651" - ] + "665668641204424428730575821", + "1023432638165455219956675939", + "916182638203942610995359502" + ], + "mAssetSupply": "2604930238100713963990409042" }, { - "type": "redeemMasset", - "inputQty": "880824445544257132953", - "expectedQtys": [ - "107558611074929950328", - "496749053810911599136", - "277971271793984768725" + "type": "redeemBassets", + "inputQtys": [ + "883828364135837139468288", + "243258479830613119467520", + "965319507183793262821376" ], - "redemptionFee": "264247333663277139", + "expectedQty": "2093701964907247620439813", + "swapFee": "1256975364162846280031", "reserves": [ - "35010753254687142586022223", - "161693781452397379758069600", - "90480748230293328975669926" + "664784812840288591591107533", + "1023189379685624606837208419", + "915217318696758817732538126" ], - "mAssetSupply": "286625826768743278615595670" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "21371695000381771776", - "expectedQty": "21208551837075080952", - "reserves": [ - "35010753254687142586022223", - "161693802824092380139841376", - "90480748230293328975669926" - ] + "mAssetSupply": "2602836536135806716369969229" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "2482330974688715229626368", - "expectedQty": "2422930233837870718635849", - "swapFee": "1489398584813229137775", + "type": "swap", + "inputIndex": 2, + "inputQty": "587678960953403441152", + "outputIndex": 0, + "expectedQty": "585513349463623132781", + "swapFee": "352400776716336929", "reserves": [ - "32587823020849271867386374", - "161693802824092380139841376", - "90480748230293328975669926" + "664784227326939127967974752", + "1023189379685624606837208419", + "915217906375719771135979278" ], - "mAssetSupply": "284145006401191213690188029" + "mAssetSupply": "2602836536488207493086306158", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", - "inputIndex": 0, - "inputQty": "4216399825197393952899072", - "outputIndex": 1, - "expectedQty": "4340566939216759302393628", - "swapFee": "2587309932616517378649", + "inputIndex": 1, + "inputQty": "24815115085624803065856", + "outputIndex": 0, + "expectedQty": "24702218012538250104746", + "swapFee": "14867437481994405550", "reserves": [ - "36804222846046665820285446", - "157353235884875620837447748", - "90480748230293328975669926" + "664759525108926589717870006", + "1023214194800710231640274275", + "915217906375719771135979278" ], - "mAssetSupply": "284147593711123830207566678", + "mAssetSupply": "2602836551355644975080711708", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "286166914852001952038912", - "expectedQty": "288008423966369056561923", - "swapFee": "171700148911201171223", + "inputIndex": 2, + "inputQty": "3859364843476986691059712", + "expectedQty": "3859265713606140637094208", + "swapFee": "2315618906086192014635", "reserves": [ - "36804222846046665820285446", - "157065227460909251780885825", - "90480748230293328975669926" + "664759525108926589717870006", + "1023214194800710231640274275", + "911358640662113630498885070" ], - "mAssetSupply": "283861598496420739456698989" + "mAssetSupply": "2598979502131074074581666631" }, { "type": "redeemMasset", - "inputQty": "541350404860112578333900", + "inputQty": "135543741337378488320", "expectedQtys": [ - "70168010923248697879249", - "299448099807477394716021", - "172503415076156165710063" - ], - "redemptionFee": "162405121458033773500", - "reserves": [ - "36734054835123417122406197", - "156765779361101774386169804", - "90308244815217172809959863" - ], - "mAssetSupply": "283320410496682084912138589" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "26614372547576293490688", - "3689749062494391369728", - "10388730092202919723008" + "34658588823469369098", + "53347351510494205255", + "47515534872927865463" ], - "expectedQty": "41166851435503785693475", - "swapFee": "24714939825197389849", + "redemptionFee": "40663122401213546", "reserves": [ - "36707440462575840828915509", - "156762089612039279994800076", - "90297856085124969890236855" + "664759490450337766248500908", + "1023214141453358721146069020", + "911358593146578757571019607" ], - "mAssetSupply": "283279243645246581126445114" + "mAssetSupply": "2598979366627995859604391857" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "155873776002448188506112", - "expectedQty": "155948860478141490535950", - "swapFee": "93524265601468913103", - "reserves": [ - "36707440462575840828915509", - "156762089612039279994800076", - "90141907224646828399700905" - ], - "mAssetSupply": "283123463393509734406852105" - }, - { - "type": "mint", "inputIndex": 1, - "inputQty": "148420860829036072402944", - "expectedQty": "147382510347671313411053", - "reserves": [ - "36707440462575840828915509", - "156910510472868316067203020", - "90141907224646828399700905" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "139420739734923045240832", - "expectedQty": "139270804835459492541422", - "reserves": [ - "36707440462575840828915509", - "156910510472868316067203020", - "90281327964381751444941737" - ] - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "9760332574547203063808", - "expectedQty": "9570274869398349464160", - "swapFee": "5856199544728321838", + "inputQty": "1919860719769601519386624", + "expectedQty": "1921510517820586920459073", + "swapFee": "1151916431861760911631", "reserves": [ - "36697870187706442479451349", - "156910510472868316067203020", - "90281327964381751444941737" + "664759490450337766248500908", + "1021292630935538134225609947", + "911358593146578757571019607" ], - "mAssetSupply": "283400362232317862738062610" + "mAssetSupply": "2597060657824658119845916864" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "29997705867818392616960", - "expectedQty": "30012184808804015441089", - "swapFee": "17998623520691035570", + "inputQty": "6875423000898161344512", + "outputIndex": 1, + "expectedQty": "6877391113414255637290", + "swapFee": "4122912083173080817", "reserves": [ - "36697870187706442479451349", - "156910510472868316067203020", - "90251315779572947429500648" + "664759490450337766248500908", + "1021285753544424719969972657", + "911365468569579655732364119" ], - "mAssetSupply": "283370382525073565036481220" + "mAssetSupply": "2597060661947570203018997681", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "9086346491345632256", - "37938056774361767936", - "4955305553112695808" + "type": "redeemMasset", + "inputQty": "22369575421288746188", + "expectedQtys": [ + "5724135234958492486", + "8794124568066640510", + "7847618974239101488" ], - "expectedQty": "51883736186074332900", - "swapFee": "31148931070286771", + "redemptionFee": "6710872626386623", "reserves": [ - "36697861101359951133819093", - "156910472534811541705435084", - "90251310824267394316804840" + "664759484726202531290008422", + "1021285744750300151903332147", + "911365460721960681493262631" ], - "mAssetSupply": "283370330641337378962148320" + "mAssetSupply": "2597060639584705654356638116" }, { - "type": "redeemBassets", - "inputQtys": [ - "235135437242381925089280", - "3202252522204440167448576", - "291592041817779977846784" + "type": "redeemMasset", + "inputQty": "48512532728287475846348", + "expectedQtys": [ + "12413838559617556658120", + "19071674266958049951540", + "17019003050213951064375" ], - "expectedQty": "3710956330922217261557572", - "swapFee": "2227910544880258512041", + "redemptionFee": "14553759818486242753", "reserves": [ - "36462725664117569208729813", - "153708220012607101537986508", - "89959718782449614338958056" + "664747070887642913733350302", + "1021266673076033193853380607", + "911348441718910467542198256" ], - "mAssetSupply": "279659374310415161700590748" + "mAssetSupply": "2597012141605737185367034521" }, { - "type": "mintMulti", - "inputQtys": [ - "412093594008854790144", - "249735160319513296896", - "145277074841547587584" - ], - "expectedQty": "812999866966844626764", + "type": "redeem", + "inputIndex": 2, + "inputQty": "810611296373089", + "expectedQty": "810585092845820", + "swapFee": "486366777823", "reserves": [ - "36463137757711578063519957", - "153708469747767421051283404", - "89959864059524455886545640" + "664747070887642913733350302", + "1021266673076033193853380607", + "911348441718099882449352436" ], - "mAssetSupply": "279660187310282128545217512" + "mAssetSupply": "2597012141604927060437439255" }, { "type": "redeemMasset", - "inputQty": "4898116943418479974809", + "inputQty": "24163617175010949932148326", "expectedQtys": [ - "638443156191171845892", - "2691324076692372214440", - "1575132121715027238075" + "6183211342667626064968257", + "9499414068000436828931338", + "8476998649169334966977092" ], - "redemptionFee": "1469435083025543992", + "redemptionFee": "7249085152503284979644", "reserves": [ - "36462499314555386891674065", - "153705778423690728679068964", - "89958288927402740859307565" + "658563859544975287668382045", + "1011767259008032757024449269", + "902871443068930547482375344" ], - "mAssetSupply": "279655290662773793090786695" + "mAssetSupply": "2572855773515068613790270573" }, { - "type": "redeemMasset", - "inputQty": "286088490951260713779", - "expectedQtys": [ - "37290093565103196387", - "157194459147467743553", - "92000084309095571195" - ], - "redemptionFee": "85826547285378214", + "type": "swap", + "inputIndex": 0, + "inputQty": "612145007742706421596160", + "outputIndex": 1, + "expectedQty": "614185028186877286031196", + "swapFee": "368197997127905374296", "reserves": [ - "36462462024461821788477678", - "153705621229231581211325411", - "89958196927318431763736370" + "659176004552717994089978205", + "1011153073979845879738418073", + "902871443068930547482375344" ], - "mAssetSupply": "279655004660109389115451130" + "mAssetSupply": "2572856141713065741695644869", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "28946695914865045798912", + "inputQty": "707312816915184947", "expectedQtys": [ - "3773045869397813661819", - "15905079555327610459856", - "9308652912888528846413" + "181161999684036123", + "277896209212207244", + "248137060442553695" ], - "redemptionFee": "8684008774459513739", + "redemptionFee": "212193845074555", "reserves": [ - "36458688978592423974815859", - "153689716149676253600865555", - "89948888274405543234889957" + "659176004371555994405942082", + "1011153073701949670526210829", + "902871442820793487039821649" ], - "mAssetSupply": "279626066648203298529165957" + "mAssetSupply": "2572856141005965118625534477" }, { - "type": "redeem", + "type": "mint", "inputIndex": 2, - "inputQty": "299536647007178233741312", - "expectedQty": "299706655467573038374935", - "swapFee": "179721988204306940244", + "inputQty": "4488826402772387635396608", + "expectedQty": "4486221550256742321144699", "reserves": [ - "36458688978592423974815859", - "153689716149676253600865555", - "89649181618937970196515022" - ], - "mAssetSupply": "279326709723184324602364889" + "659176004371555994405942082", + "1011153073701949670526210829", + "907360269223565874675218257" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "2801744828980525006848", - "5392855892383011700736", - "6862384555024520839168" - ], - "expectedQty": "15064858945455049908477", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3991185311076963317710848", + "expectedQty": "3991112678663171701535142", + "swapFee": "2394711186646177990626", "reserves": [ - "36461490723421404499822707", - "153695109005568636612566291", - "89656044003492994717354190" + "659176004371555994405942082", + "1011153073701949670526210829", + "903369156544902702973683115" ], - "mAssetSupply": "279341774582129779652273366" + "mAssetSupply": "2573353571956331543806958954" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "457608152995144543502336", - "expectedQty": "457070399691815308824756", + "type": "redeemMasset", + "inputQty": "7462941863028393", + "expectedQtys": [ + "1911092371473112", + "2931549256538397", + "2619060603310335" + ], + "redemptionFee": "2238882558908", "reserves": [ - "36461490723421404499822707", - "153695109005568636612566291", - "90113652156488139260856526" - ] + "659176004369644902034468970", + "1011153073699018121269672432", + "903369156542283642370372780" + ], + "mAssetSupply": "2573353571948870840826489469" }, { "type": "swap", "inputIndex": 1, - "inputQty": "15514313686652842672128", - "outputIndex": 2, - "expectedQty": "15417316487840298294492", - "swapFee": "9244863241885182042", + "inputQty": "3006182130070910301896704", + "outputIndex": 0, + "expectedQty": "2992505763292872296149517", + "swapFee": "1801087122667296595225", "reserves": [ - "36461490723421404499822707", - "153710623319255289455238419", - "90098234840000298962562034" + "656183498606352029738319453", + "1014159255829089031571569136", + "903369156542283642370372780" ], - "mAssetSupply": "279798854226684836846280164", + "mAssetSupply": "2573355373035993508123084694", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "84661473001376814465024", - "18774245442928232103936", - "76398867937258547183616" - ], - "expectedQty": "181216855149441651626457", - "swapFee": "108795390323859306559", + "type": "mint", + "inputIndex": 2, + "inputQty": "37871562890627921215488", + "expectedQty": "37849785610738942521709", "reserves": [ - "36376829250420027685357683", - "153691849073812361223134483", - "90021835972063040415378418" - ], - "mAssetSupply": "279617637371535395194653707" + "656183498606352029738319453", + "1014159255829089031571569136", + "903407028105174270291588268" + ] }, { "type": "redeem", "inputIndex": 0, - "inputQty": "61319610874799554560", - "expectedQty": "60142101070088804179", - "swapFee": "36791766524879732", + "inputQty": "5537525079825994219520", + "expectedQty": "5520251924232065277448", + "swapFee": "3322515047895596531", "reserves": [ - "36376769108318957596553504", - "153691849073812361223134483", - "90021835972063040415378418" + "656177978354427797673042005", + "1014159255829089031571569136", + "903407028105174270291588268" ], - "mAssetSupply": "279617576088716286919978879" + "mAssetSupply": "2573387688619039468966983414" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "43872891732036300046336", - "expectedQty": "43571695006306998536401", + "type": "mintMulti", + "inputQtys": [ + "6350447416369428677263360", + "8784964701200502593945600", + "889747447254835961790464" + ], + "expectedQty": "16027575164752042124753382", "reserves": [ - "36376769108318957596553504", - "153735721965544397523180819", - "90021835972063040415378418" - ] + "662528425770797226350305365", + "1022944220530289534165514736", + "904296775552429106253378732" + ], + "mAssetSupply": "2589415263783791511091736796" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "93463888344848854417408", - "expectedQty": "91663954983387370739424", - "swapFee": "56078333006909312650", + "inputIndex": 2, + "inputQty": "123845467113042984566784", + "expectedQty": "123836749412182593805278", + "swapFee": "74307280267825790740", "reserves": [ - "36285105153335570225814080", - "153735721965544397523180819", - "90021835972063040415378418" + "662528425770797226350305365", + "1022944220530289534165514736", + "904172938803016923659573454" ], - "mAssetSupply": "279567739973710751973410522" + "mAssetSupply": "2589291492623958735932960752" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "1708413439609998095155200", - "expectedQty": "1696561047973652901976159", + "inputIndex": 0, + "inputQty": "55732038965611331584", + "expectedQty": "55870706907137659208", "reserves": [ - "36285105153335570225814080", - "155444135405154395618336019", - "90021835972063040415378418" + "662528481502836191961636949", + "1022944220530289534165514736", + "904172938803016923659573454" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "116743187010807954145280", - "50797966525115148533760", - "126141914393364335165440" - ], - "expectedQty": "295452200318514356692355", - "swapFee": "177377746839212141300", + "type": "redeem", + "inputIndex": 2, + "inputQty": "265827501076256101761024", + "expectedQty": "265808471473591128869357", + "swapFee": "159496500645753661056", "reserves": [ - "36168361966324762271668800", - "155393337438629280469802259", - "89895694057669676080212978" + "662528481502836191961636949", + "1022944220530289534165514736", + "903907130331543332530704097" ], - "mAssetSupply": "280968848821365890518694326" + "mAssetSupply": "2589025880490090032722519992" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1955926807322756435148800", - "161960943135440941088768", - "279813686624651438981120" + "40804283046101467136", + "25130498049270919168", + "3539327659301849600" ], - "expectedQty": "2436487578503236726758457", - "swapFee": "1462770209227478523168", + "expectedQty": "69536262972535091521", "reserves": [ - "34212435159002005836520000", - "155231376495493839528713491", - "89615880371045024641231858" + "662528522307119238063104085", + "1022944245660787583436433904", + "903907133870870991832553697" ], - "mAssetSupply": "278532361242862653791935869" + "mAssetSupply": "2589025950026353005257611513" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "54811443596327649280", - "expectedQty": "54405440886246276775", + "inputIndex": 0, + "inputQty": "1682034795932857116131328", + "expectedQty": "1686200216974213510955799", "reserves": [ - "34212435159002005836520000", - "155231431306937435856362771", - "89615880371045024641231858" + "664210557103052095179235413", + "1022944245660787583436433904", + "903907133870870991832553697" ] }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "20774166639426658304", - "expectedQty": "20620286897292376404", + "inputQty": "761478864717787037696", + "expectedQty": "762152463909115917971", + "swapFee": "456887318830672222", + "reserves": [ + "664210557103052095179235413", + "1022943483508323674320515933", + "903907133870870991832553697" + ], + "mAssetSupply": "2590711389221349819812201838" + }, + { + "type": "mint", + "inputIndex": 0, + "inputQty": "96473126700108921853444096", + "expectedQty": "96658889060726289168734327", "reserves": [ - "34212435159002005836520000", - "155231452081104075283021075", - "89615880371045024641231858" + "760683683803161017032679509", + "1022943483508323674320515933", + "903907133870870991832553697" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "17054582919810387017728", - "28317179726817210138624", - "132010536486454624256" + "62779768922394566656", + "10989478122346168320", + "29291080234368077824" ], - "expectedQty": "45665097674929302077599", + "expectedQty": "103134489213549609559", + "swapFee": "61917844234670568", "reserves": [ - "34229489741921816223537728", - "155259769260830892493159699", - "89616012381581511095856114" + "760683621023392094638112853", + "1022943472518845551974347613", + "903907104579790757464475873" ], - "mAssetSupply": "278578101366265366632666647" + "mAssetSupply": "2687370175147586895431326606" }, { "type": "redeemBassets", "inputQtys": [ - "37310846490084900864", - "30758899447319494656", - "31191903838671581184" + "9315526196637301997568", + "5790852585733762318336", + "7142378485234240847872" ], - "expectedQty": "99803189120533683048", - "swapFee": "59917864190834710", + "expectedQty": "22254762296436377751961", + "swapFee": "13360873902203148540", "reserves": [ - "34229452431075326138636864", - "155259738501931445173665043", - "89615981189677672424274930" + "760674305497195457336115285", + "1022937681666259818212029277", + "903899962201305523223628001" ], - "mAssetSupply": "278578001563076246098983599" + "mAssetSupply": "2687347920385290459053574645" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "104530921041349023105024", - "expectedQty": "104387799035445877171914", + "inputIndex": 1, + "inputQty": "789391634358556747104256", + "expectedQty": "788513737206715015961459", "reserves": [ - "34229452431075326138636864", - "155259738501931445173665043", - "89720512110719021447379954" + "760674305497195457336115285", + "1023727073300618374959133533", + "903899962201305523223628001" ] }, { - "type": "redeemMasset", - "inputQty": "15241682299314413083033", - "expectedQtys": [ - "1871513754765746276368", - "8488909857754603735473", - "4905517341767255857610" + "type": "mintMulti", + "inputQtys": [ + "236298321435851153735680", + "203422693216770538340352", + "77914172667226801307648" ], - "redemptionFee": "4572504689794323924", + "expectedQty": "517738756111112547128267", "reserves": [ - "34227580917320560392360496", - "155251249592073690569929570", - "89715606593377254191522344" + "760910603818631308489850965", + "1023930495993835145497473885", + "903977876373972750024935649" ], - "mAssetSupply": "278667152252317067357396404" + "mAssetSupply": "2688654172878608286616664371" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "13629468341648689152", - "1590847655125361664", - "13074275337620340736" + "3992158825742721674641408", + "5561578146366922636132352", + "4700064926639986088869888" ], - "expectedQty": "28561590611107113353", + "expectedQty": "14252731973788771419955933", + "swapFee": "8556773248222196169675", "reserves": [ - "34227594546788902041049648", - "155251251182921345695291234", - "89715619667652591811863080" + "756918444992888586815209557", + "1018368917847468222861341533", + "899277811447332763936065761" ], - "mAssetSupply": "278667180813907678464509757" + "mAssetSupply": "2674401440904819515196708438" }, { "type": "redeemMasset", - "inputQty": "21667828025309358194688", + "inputQty": "77062399756116505", "expectedQtys": [ - "2660575740941819399301", - "12067973753852267737136", - "6973765011298835259229" + "21803926633226085", + "29335315207588389", + "25904755728168289" ], - "redemptionFee": "6500348407592807458", + "redemptionFee": "23118719926834", "reserves": [ - "34224933971047960221650347", - "155239183209167493427554098", - "89708645902641292976603851" + "756918444971084660181983472", + "1018368917818132907653753144", + "899277811421428008207897472" ], - "mAssetSupply": "278645519486230776699122527" + "mAssetSupply": "2674401440827780234160518767" }, { - "type": "mintMulti", - "inputQtys": [ - "3558996069993356984320", - "3240477481020193505280", - "630350560401955356672" - ], - "expectedQty": "7482454194469592420896", + "type": "redeem", + "inputIndex": 1, + "inputQty": "4445096613628081078272", + "expectedQty": "4447379447664044084324", + "swapFee": "2667057968176848646", "reserves": [ - "34228492967117953578634667", - "155242423686648513621059378", - "89709276253201694931960523" + "756918444971084660181983472", + "1018364470438685243609668820", + "899277811421428008207897472" ], - "mAssetSupply": "278653001940425246291543423" + "mAssetSupply": "2674396998398224574256289141" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "23559196035749966249984", - "expectedQty": "23577432312867488668417", - "swapFee": "14135517621449979749", + "inputIndex": 0, + "inputQty": "63684370795439545384960", + "expectedQty": "63554599213556236262610", + "swapFee": "38210622477263727230", "reserves": [ - "34228492967117953578634667", - "155242423686648513621059378", - "89685698820888827443292106" + "756854890371871103945720862", + "1018364470438685243609668820", + "899277811421428008207897472" ], - "mAssetSupply": "278629456879907117775273188" + "mAssetSupply": "2674333352238051611974631411" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "510633434612459827625984", - "127360261574717788389376", - "484385979261992216559616" - ], - "expectedQty": "1131754033640357029857408", - "reserves": [ - "34739126401730413406260651", - "155369783948223231409448754", - "90170084800150819659851722" + "9594149598032312966053888", + "2132900764953875050397696", + "6961210501605791092441088" ], - "mAssetSupply": "279761210913547474805130596" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "277951149462651502592", - "expectedQty": "277574626342906215763", - "reserves": [ - "34739126401730413406260651", - "155369783948223231409448754", - "90170362751300282311354314" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "8192602985588225024", - "expectedQty": "8366324771385174665", - "reserves": [ - "34739134594333398994485675", - "155369783948223231409448754", - "90170362751300282311354314" - ] - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1188290989092287562121216", - "expectedQty": "1196249052159862298628773", - "swapFee": "712974593455372537272", + "expectedQty": "18699001389634895838151684", + "swapFee": "11226136515690351713919", "reserves": [ - "34739134594333398994485675", - "154173534896063369110819981", - "90170362751300282311354314" + "747260740773838790979666974", + "1016231569673731368559271124", + "892316600919822217115456384" ], - "mAssetSupply": "278573918839999756906937080" + "mAssetSupply": "2655634350848416716136479727" }, { - "type": "redeemMasset", - "inputQty": "1997283141312247863705", - "expectedQtys": [ - "248993419741197985006", - "1105041796108000119119", - "646297820683561502637" + "type": "redeemBassets", + "inputQtys": [ + "7038283606392202250420224", + "3044132315633735471988736", + "1812903437194481805295616" ], - "redemptionFee": "599184942393674359", + "expectedQty": "11902218728097256106808217", + "swapFee": "7145618608023167564623", "reserves": [ - "34738885600913657796500669", - "154172429854267261110700862", - "90169716453479598749851677" + "740222457167446588729246750", + "1013187437358097633087282388", + "890503697482627735310160768" ], - "mAssetSupply": "278571922156043387052747734" + "mAssetSupply": "2643732132120319460029671510" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "114444905629463412736", - "expectedQty": "112028241766219075749", - "swapFee": "68666943377678047", - "reserves": [ - "34738773572671891577424920", - "154172429854267261110700862", - "90169716453479598749851677" + "type": "mintMulti", + "inputQtys": [ + "236064624253007200256", + "2531079524131341336576", + "839711435626973102080" ], - "mAssetSupply": "278571807779804700967013045" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "41743921165218776875008", - "expectedQty": "42617762550212885732328", - "reserves": [ - "34780517493837110354299928", - "154172429854267261110700862", - "90169716453479598749851677" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "24247542596618193731584", - "expectedQty": "24213837316187488864204", + "expectedQty": "3604126335448461862491", "reserves": [ - "34780517493837110354299928", - "154172429854267261110700862", - "90193963996076216943583261" - ] + "740222693232070841736447006", + "1013189968437621764428618964", + "890504537194063362283262848" + ], + "mAssetSupply": "2643735736246654908491534001" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "6030173143516407922688", - "4228159048446157783040", - "1284100693474001551360" + "568810657393410433875968", + "80196848920412026830848", + "607568018525555800408064" ], - "expectedQty": "11636281605098298727201", + "expectedQty": "1257266679416521557085295", + "swapFee": "754812895387145221384", "reserves": [ - "34786547666980626762222616", - "154176658013315707268483902", - "90195248096769690945134621" + "739653882574677431302571038", + "1013109771588701352401788116", + "889896969175537806482854784" ], - "mAssetSupply": "278650275661276199640336778" + "mAssetSupply": "2642478469567238386934448706" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "77107016178620990226432", - "expectedQty": "78715253595596629486318", + "inputIndex": 1, + "inputQty": "805066335420017792778240", + "expectedQty": "804119607094805419702938", "reserves": [ - "34863654683159247752449048", - "154176658013315707268483902", - "90195248096769690945134621" + "739653882574677431302571038", + "1013914837924121370194566356", + "889896969175537806482854784" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "36918463817302063185920", - "498129608747939092496384", - "146678962710302714494976" - ], - "expectedQty": "678711218047965905022904", - "reserves": [ - "34900573146976549815634968", - "154674787622063646360980286", - "90341927059479993659629597" - ], - "mAssetSupply": "279407702132919762174846000" - }, - { - "type": "redeemMasset", - "inputQty": "140891701275201920355532", - "expectedQtys": [ - "17593380312332259148199", - "77971566595889303132581", - "45541369026030002768558" + "3598776828052749824", + "6004147774408786944", + "14855396748629731328" ], - "redemptionFee": "42267510382560576106", + "expectedQty": "24454564307803574311", + "swapFee": "14681547513190058", "reserves": [ - "34882979766664217556486769", - "154596816055467757057847705", - "90296385690453963656861039" + "739653878975900603249821214", + "1013914831919973595785779412", + "889896954320141057853123456" ], - "mAssetSupply": "279266852699154942815066574" + "mAssetSupply": "2643282564719768884550577333" }, { "type": "swap", "inputIndex": 2, - "inputQty": "17596844948706887204864", - "outputIndex": 1, - "expectedQty": "17689490399652643818477", - "swapFee": "10543575964761548470", + "inputQty": "97726368407574552772608", + "outputIndex": 0, + "expectedQty": "97501540380700789582323", + "swapFee": "58626864273593532384", "reserves": [ - "34882979766664217556486769", - "154579126565068104414029228", - "90313982535402670544065903" + "739556377435519902460238891", + "1013914831919973595785779412", + "889994680688548632405896064" ], - "mAssetSupply": "279266863242730907576615044", + "mAssetSupply": "2643282623346633158144109717", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "4399033584891563868160", - "expectedQty": "4490887120573611884556", + "type": "redeemBassets", + "inputQtys": [ + "147605045903299954343936", + "39375288319049956589568", + "68812300106925353205760" + ], + "expectedQty": "255964822099356109025346", + "swapFee": "153671095917163963793", "reserves": [ - "34887378800249109120354929", - "154579126565068104414029228", - "90313982535402670544065903" - ] + "739408772389616602505894955", + "1013875456631654545829189844", + "889925868388441707052690304" + ], + "mAssetSupply": "2643026658524533802035084371" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1595791177143984062464", - "outputIndex": 1, - "expectedQty": "1604188645995940099898", - "swapFee": "956155959718672897", + "type": "redeemBassets", + "inputQtys": [ + "763991729857670940721152", + "1406522654245857756446720", + "1480542615708345676333056" + ], + "expectedQty": "3650358964351134466722808", + "swapFee": "2191530296788753932393", "reserves": [ - "34887378800249109120354929", - "154577522376422108473929330", - "90315578326579814528128367" + "738644780659758931565173803", + "1012468933977408688072743124", + "888445325772733361376357248" ], - "mAssetSupply": "279271355086007440907172497", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2639376299560182667568361563" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "24598826465042787991552", - "expectedQty": "25112021051912140271138", + "inputIndex": 2, + "inputQty": "13225950154995607273472", + "expectedQty": "13223950863316792820797", "reserves": [ - "34911977626714151908346481", - "154577522376422108473929330", - "90315578326579814528128367" + "738644780659758931565173803", + "1012468933977408688072743124", + "888458551722888356983630720" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "2328115342691695591424", - "outputIndex": 2, - "expectedQty": "2313154465854886939131", - "swapFee": "1386817500799197258", + "type": "redeem", + "inputIndex": 2, + "inputQty": "3417715779232978589188096", + "expectedQty": "3416144892024437922467938", + "swapFee": "2050629467539787153512", "reserves": [ - "34911977626714151908346481", - "154579850491764800169520754", - "90313265172113959641189236" + "738644780659758931565173803", + "1012468933977408688072743124", + "885042406830863919061162782" ], - "mAssetSupply": "279296468493876853846640893", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2635973858361280545559147776" }, { - "type": "redeemBassets", - "inputQtys": [ - "90842798735792189472768", - "80458842818160118202368", - "74638874300258988326912" + "type": "redeemMasset", + "inputQty": "94560349497703032422", + "expectedQtys": [ + "26489471600703074570", + "36309424740310513495", + "31739621418868712348" ], - "expectedQty": "247155855877875987525288", - "swapFee": "148382543052557126791", + "redemptionFee": "28368104849310909", "reserves": [ - "34821134827978359718873713", - "154499391648946640051318386", - "90238626297813700652862324" + "738644754170287330862099233", + "1012468897667983947762229629", + "885042375091242500192450434" ], - "mAssetSupply": "279049312637998977859115605" + "mAssetSupply": "2635973763829299152705426263" }, { - "type": "mintMulti", - "inputQtys": [ - "11742643517206583836672", - "46478113368788304920576", - "38637159776794221477888" - ], - "expectedQty": "96715206101163544069550", + "type": "swap", + "inputIndex": 2, + "inputQty": "46046843737409913750552576", + "outputIndex": 1, + "expectedQty": "46050212331432664291490456", + "swapFee": "27620604539008182324859", "reserves": [ - "34832877471495566302710385", - "154545869762315428356238962", - "90277263457590494874340212" + "738644754170287330862099233", + "966418685336551283470739173", + "931089218828652413943003010" ], - "mAssetSupply": "279146027844100141403185155" + "mAssetSupply": "2636001384433838160887751122", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "85385485188625773415628", + "inputQty": "137334533612723259414937", "expectedQtys": [ - "10651521355113624795137", - "47258473936440876557786", - "27605821551395871289588" + "38471527742158719303695", + "50334891100972059912099", + "48494793350056532046640" ], - "redemptionFee": "25615645556587732024", + "redemptionFee": "41200360083816977824", "reserves": [ - "34822225950140452677915248", - "154498611288378987479681176", - "90249657636039099003050624" + "738606282642545172142795538", + "966368350445450311410827074", + "931040724035302357410956370" ], - "mAssetSupply": "279060667974557072217501551" + "mAssetSupply": "2635864091100585521445314009" }, { - "type": "mintMulti", - "inputQtys": [ - "18880239386807423205376", - "53886001315435383881728", - "63385737329831590232064" - ], - "expectedQty": "136071016167741323824093", + "type": "swap", + "inputIndex": 2, + "inputQty": "144862286363450400", + "outputIndex": 0, + "expectedQty": "144475642466663052", + "swapFee": "86871156960109", "reserves": [ - "34841106189527260101120624", - "154552497289694422863562904", - "90313043373368930593282688" + "738606282498069529676132486", + "966368350445450311410827074", + "931040724180164643774406770" ], - "mAssetSupply": "279196738990724813541325644" + "mAssetSupply": "2635864091100672392602274118", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "250136816556949781872640", - "920716430440075500716032", - "624465633067231648677888" + "8569746352365676938657792", + "21549235841279509575761920", + "26210252170123316371128320" ], - "expectedQty": "1793053738319530876340661", - "swapFee": "1076478129869640309990", + "expectedQty": "56310249730398919688652481", "reserves": [ - "34590969372970310319247984", - "153631780859254347362846872", - "89688577740301698944604800" + "747176028850435206614790278", + "987917586286729820986588994", + "957250976350287960145535090" ], - "mAssetSupply": "277403685252405282664984983" + "mAssetSupply": "2692174340831071312290926599" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "856253648127457662861312", - "684961538345832326103040", - "513799510311047383744512" + "92248299652557996032", + "177788325415572013056", + "1786415742571463573504" ], - "expectedQty": "2067619039198277784820417", - "swapFee": "1241316213246914819784", + "expectedQty": "2055398471979576257904", "reserves": [ - "33734715724842852656386672", - "152946819320908515036743832", - "89174778229990651560860288" + "747176121098734859172786310", + "987917764075055236558602050", + "957252762766030531609108594" ], - "mAssetSupply": "275336066213207004880164566" + "mAssetSupply": "2692176396229543291867184503" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "5013479344087742021632", - "expectedQty": "5047682460121302744176", - "swapFee": "3008087606452645212", + "inputQty": "193170797839129285492736", + "expectedQty": "193216527287008767847803", + "swapFee": "115902478703477571295", "reserves": [ - "33734715724842852656386672", - "152941771638448393733999656", - "89174778229990651560860288" + "747176121098734859172786310", + "987724547547768227790754247", + "957252762766030531609108594" ], - "mAssetSupply": "275331055741950523590788146" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "912844617166832332177408", - "expectedQty": "911470014014087481123891", - "reserves": [ - "33734715724842852656386672", - "152941771638448393733999656", - "90087622847157483893037696" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "2324548459657715077087232", - "expectedQty": "2372270501195688905438745", - "reserves": [ - "36059264184500567733473904", - "152941771638448393733999656", - "90087622847157483893037696" - ] + "mAssetSupply": "2691983341334182866059263062" }, { - "type": "mint", + "type": "redeem", "inputIndex": 1, - "inputQty": "1864131912910877491200", - "expectedQty": "1851318139107555119729", + "inputQty": "4615909952815850", + "expectedQty": "4617000321135272", + "swapFee": "2769545971689", "reserves": [ - "36059264184500567733473904", - "152943635770361304611490856", - "90087622847157483893037696" - ] + "747176121098734859172786310", + "987724547543151227469618975", + "957252762766030531609108594" + ], + "mAssetSupply": "2691983341329569725652418901" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "9613361390283959304192", - "11575957119237990907904", - "26956172044698642284544" + "4434685516476038774784000", + "6345078657978874896318464", + "3623633856564556667551744" ], - "expectedQty": "48216173489870322426155", - "swapFee": "28947072337324588208", + "expectedQty": "14403187618420920720220948", "reserves": [ - "36049650823110283774169712", - "152932059813242066620582952", - "90060666675112785250753152" + "751610806615210897947570310", + "994069626201130102365937439", + "960876396622595088276660338" ], - "mAssetSupply": "278568431401809537210044356" + "mAssetSupply": "2706386528947990646372639849" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2142071581731214327808", - "2545634575490388852736", - "2795833980270663958528" + "349304635691091724599296", + "332872079076906667868160", + "58998774260052833337344" ], - "expectedQty": "7503591571790581116496", - "swapFee": "4504857857789022083", + "expectedQty": "741429363718280517699110", "reserves": [ - "36047508751528552559841904", - "152929514178666576231730216", - "90057870841132514586794624" + "751960111250901989672169606", + "994402498280207009033805599", + "960935395396855141109997682" ], - "mAssetSupply": "278560927810237746628927860" + "mAssetSupply": "2707127958311708926890338959" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "16663720789246656512", - "25799973066826702848", - "15797824766360985600" + "6285673396491951013888", + "7490364792594364366848", + "13032516607127307943936" ], - "expectedQty": "58383807312911524074", - "swapFee": "35051315176853026", + "expectedQty": "26804941252408760139122", "reserves": [ - "36047492087807763313185392", - "152929488378693509405027368", - "90057855043307748225809024" + "751966396924298481623183494", + "994409988644999603398172447", + "960948427913462268417941618" ], - "mAssetSupply": "278560869426430433717403786" + "mAssetSupply": "2707154763252961335650478081" }, { - "type": "redeemBassets", - "inputQtys": [ - "97116062513422155776", - "748234709748775256064", - "1101021471885784907776" + "type": "redeemMasset", + "inputQty": "216722515713986", + "expectedQtys": [ + "60180954953334", + "79584065161112", + "76906088209895" ], - "expectedQty": "1941697397241390035053", - "swapFee": "1165717869066273785", + "redemptionFee": "65016754714", "reserves": [ - "36047394971745249891029616", - "152928740143983760629771304", - "90056754021835862440901248" + "751966396924238300668230160", + "994409988644920019333011335", + "960948427913385362329731723" ], - "mAssetSupply": "278558927729033192327368733" + "mAssetSupply": "2707154763252744678151518809" }, { "type": "redeemMasset", - "inputQty": "18956960912480940851", + "inputQty": "756728585774924038144", "expectedQtys": [ - "2452422036257329509", - "10404241765601811625", - "6126855165264200541" + "210133445444694550353", + "277883158015144031025", + "268532483470064998311" ], - "redemptionFee": "5687088273744282", + "redemptionFee": "227018575732477211", "reserves": [ - "36047392519323213633700107", - "152928729739741995027959679", - "90056747894980697176700707" + "751966186790792855973679807", + "994409710761762004188980310", + "960948159380901892264733412" ], - "mAssetSupply": "278558908777759368120172164" + "mAssetSupply": "2707154006751177478959957876" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "127287216759945648", - "85722428617665808", - "139858474401698256" + "63373618559782920192", + "181694160810644602880", + "86322629267024019456" ], - "expectedQty": "354543632525744939", + "expectedQty": "331290360488399987126", + "swapFee": "198893552424494689", "reserves": [ - "36047392646610430393645755", - "152928729825464423645625487", - "90056748034839171578398963" + "751966123417174296190759615", + "994409529067601193544377430", + "960948073058272625240713956" ], - "mAssetSupply": "278558909132303000645917103" + "mAssetSupply": "2707153675460816990559970750" }, { - "type": "redeemMasset", - "inputQty": "1763492964954180209868", - "expectedQtys": [ - "228139364625576728766", - "967866486139839852697", - "569957707574885464225" - ], - "redemptionFee": "529047889486254062", + "type": "redeem", + "inputIndex": 2, + "inputQty": "184630269284175342206976", + "expectedQty": "184625963884088640395071", + "swapFee": "110778161570505205324", "reserves": [ - "36047164507245804816916989", - "152927761958978283805772790", - "90056178077131596692934738" + "751966123417174296190759615", + "994409529067601193544377430", + "960763447094388536600318885" ], - "mAssetSupply": "278557146168385935951961297" + "mAssetSupply": "2706969155969694385722969098" }, { "type": "mint", "inputIndex": 1, - "inputQty": "7228050482155226077855744", - "expectedQty": "7176688762788672454223373", + "inputQty": "16682923863955618865872896", + "expectedQty": "16668107422792775871009588", "reserves": [ - "36047164507245804816916989", - "160155812441133509883628534", - "90056178077131596692934738" + "751966123417174296190759615", + "1011092452931556812410250326", + "960763447094388536600318885" ] }, { "type": "redeem", "inputIndex": 1, - "inputQty": "6083890042681546752", - "expectedQty": "6125176063021491032", - "swapFee": "3650334025608928", + "inputQty": "1071029423220877388939264", + "expectedQty": "1071381603017897271272835", + "swapFee": "642617653932526433363", "reserves": [ - "36047164507245804816916989", - "160155806315957446862137502", - "90056178077131596692934738" + "751966123417174296190759615", + "1010021071328538915138977491", + "960763447094388536600318885" ], - "mAssetSupply": "285733828850934899750246846" + "mAssetSupply": "2722566876586920216731472785" }, { "type": "redeemBassets", "inputQtys": [ - "23008001610953850355712", - "14990406532440648581120", - "38223067913057898332160" + "1217419323688819510738944", + "8773282581943663198208", + "1234850895940638451171328" ], - "expectedQty": "76546084129344860659881", - "swapFee": "45955223611773980784", + "expectedQty": "2462429253213025315371249", + "swapFee": "1478344558663012997020", "reserves": [ - "36024156505634850966561277", - "160140815909425006213556382", - "90017955009218538794602578" + "750748704093485476680020671", + "1010012298045956971475779283", + "959528596198447898149147557" ], - "mAssetSupply": "285657282766805554889586965" + "mAssetSupply": "2720104447333707191416101536" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "63419903932699697152", - "expectedQty": "63850595514565848945", - "swapFee": "38051942359619818", + "inputQty": "3934707696075015192576", + "expectedQty": "3936020367498901391005", + "swapFee": "2360824617645009115", "reserves": [ - "36024156505634850966561277", - "160140752058829491647707437", - "90017955009218538794602578" + "750748704093485476680020671", + "1010008362025589472574388278", + "959528596198447898149147557" ], - "mAssetSupply": "285657219384953564549509631" + "mAssetSupply": "2720100514986835734045918075" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "81814665758058452353024", - "expectedQty": "83496220629486775741419", + "inputIndex": 2, + "inputQty": "3844909247883455758336", + "expectedQty": "3842857859185601879891", "reserves": [ - "36105971171392909418914301", - "160140752058829491647707437", - "90017955009218538794602578" + "750748704093485476680020671", + "1010008362025589472574388278", + "959532441107695781604905893" ] }, { "type": "redeemBassets", "inputQtys": [ - "218234947609678560", - "430124482039386944", - "412529983761786048" + "356305425218901377024", + "758964452071609073664", + "375889583869220880384" ], - "expectedQty": "1061795372085617650", - "swapFee": "637459699070813", + "expectedQty": "1490853049696489439122", + "swapFee": "895048859133373687", "reserves": [ - "36105970953157961809235741", - "160140751628705009608320493", - "90017954596688555032816530" + "750748347788060257778643647", + "1010007603061137400965314614", + "959532065218111912384025509" ], - "mAssetSupply": "285740714543787679239633400" + "mAssetSupply": "2720102866991645223158358844" }, { - "type": "redeemMasset", - "inputQty": "29557765416658930132582", - "expectedQtys": [ - "3733775418500182507653", - "16560407770424594979405", - "9308898700794642130082" - ], - "redemptionFee": "8867329624997679039", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2833114647412832175390720", + "expectedQty": "2826596855981504194094023", + "swapFee": "1699868788447699305234", "reserves": [ - "36102237177739461626728088", - "160124191220934585013341088", - "90008645697987760390686448" + "747921750932078753584549624", + "1010007603061137400965314614", + "959532065218111912384025509" ], - "mAssetSupply": "285711165645700645307179857" + "mAssetSupply": "2717271452213020838682273358" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "281282962512432", - "expectedQty": "275465613704068", - "swapFee": "168769777507", + "inputIndex": 2, + "inputQty": "887501812786908461268992", + "expectedQty": "887449883724559382135882", + "swapFee": "532501087672145076761", "reserves": [ - "36102237177463996013024020", - "160124191220934585013341088", - "90008645697987760390686448" + "747921750932078753584549624", + "1010007603061137400965314614", + "958644615334387353001889627" ], - "mAssetSupply": "285711165645419531114444932" + "mAssetSupply": "2716384482901321602366081127" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "4754293844731224437817344", - "outputIndex": 1, - "expectedQty": "4779004079172437202199924", - "swapFee": "2848977742483162656414", + "inputIndex": 0, + "inputQty": "14766828388775041527971840", + "outputIndex": 2, + "expectedQty": "14788790042531100895536905", + "swapFee": "8874666669838827959118", "reserves": [ - "36102237177463996013024020", - "155345187141762147811141164", - "94762939542718984828503792" + "762688579320853795112521464", + "1010007603061137400965314614", + "943855825291856252106352722" ], - "mAssetSupply": "285714014623162014277101346", + "mAssetSupply": "2716393357567991441194040245", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemMasset", - "inputQty": "69028350994237580", + "inputQty": "362371511523471640861081", + "expectedQtys": [ + "101713435411122443252408", + "134696317585062157916894", + "125874204919551671357543" + ], + "redemptionFee": "108711453457041492258", + "reserves": [ + "762586865885442672669269056", + "1009872906743552338807397720", + "943729951086936700434995179" + ], + "mAssetSupply": "2716031094767921426594671422" + }, + { + "type": "redeemMasset", + "inputQty": "6208693565849694208", "expectedQtys": [ - "8719664240059169", - "37520053578033528", - "22887806402461272" + "1742707502978197431", + "2307819830588018292", + "2156666132237732198" + ], + "redemptionFee": "1862608069754908", + "reserves": [ + "762586864142735169691071625", + "1009872904435732508219379428", + "943729948930270568197262981" + ], + "mAssetSupply": "2716031088561090468814732122" + }, + { + "type": "mintMulti", + "inputQtys": [ + "1169903373028995197042688", + "4875467214376975550382080", + "9995629393206640837132288" ], - "redemptionFee": "20708505298271", + "expectedQty": "16034068810509875815833404", "reserves": [ - "36102237168744331772964851", - "155345187104242094233107636", - "94762939519831178426042520" + "763756767515764164888114313", + "1014748371650109483769761508", + "953725578323477209034395269" ], - "mAssetSupply": "285714014554154371788162037" + "mAssetSupply": "2732065157371600344630565526" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "493919863227484028796928", - "expectedQty": "483745012030413847042180", - "swapFee": "296351917936490417278", + "inputIndex": 2, + "inputQty": "1424909707500572662300672", + "expectedQty": "1424677388175175500802463", + "swapFee": "854945824500343597380", + "reserves": [ + "763756767515764164888114313", + "1014748371650109483769761508", + "952300900935302033533592806" + ], + "mAssetSupply": "2730641102609924272311862234" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "11194162761214559929761792", + "expectedQty": "11183438739368959704819224", + "reserves": [ + "763756767515764164888114313", + "1025942534411324043699523300", + "952300900935302033533592806" + ] + }, + { + "type": "mintMulti", + "inputQtys": [ + "1057762497254741361295360", + "3318363999763036723216384", + "3607593716074936539283456" + ], + "expectedQty": "7980667985095537053666295", "reserves": [ - "35618492156713917925922671", - "155345187104242094233107636", - "94762939519831178426042520" + "764814530013018906249409673", + "1029260898411087080422739684", + "955908494651376970072876262" ], - "mAssetSupply": "285220391042844824249782387" + "mAssetSupply": "2749805209334388769070347753" }, { "type": "redeemBassets", "inputQtys": [ - "359678926305691290304512", - "746149317894978486140928", - "1185809081870946882551808" + "374922036572884081573888", + "1721947191787231121506304", + "641470592539262348951552" ], - "expectedQty": "2291895160796075288150028", - "swapFee": "1375962674082094429547", + "expectedQty": "2736979065400497002691501", + "swapFee": "1643173343246245949184", "reserves": [ - "35258813230408226635618159", - "154599037786347115746966708", - "93577130437960231543490712" + "764439607976446022167835785", + "1027538951219299849301233380", + "955267024058837707723924710" ], - "mAssetSupply": "282928495882048748961632359" + "mAssetSupply": "2747068230268988272067656252" }, { "type": "redeemMasset", - "inputQty": "1922103241367630643", + "inputQty": "10799037108288528108748", "expectedQtys": [ - "239462439659769595", - "1049969053565418617", - "635534945677325013" + "3004197361805974104864", + "4038160469703203641624", + "3754136551211026579879" ], - "redemptionFee": "576630972410289", + "redemptionFee": "3239711132486558432", "reserves": [ - "35258812990945786975848564", - "154599036736378062181548091", - "93577129802425285866165699" + "764436603779084216193730921", + "1027534913058830146097591756", + "955263269922286496697344831" ], - "mAssetSupply": "282928493960522138566412005" + "mAssetSupply": "2747057434471591116026105936" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "1206954954114634352689152", - "outputIndex": 0, - "expectedQty": "1172138575259333701834742", - "swapFee": "719057598521244899798", + "type": "redeemBassets", + "inputQtys": [ + "3874602472129765450973184", + "11555276701760259757178880", + "6420960938530617526583296" + ], + "expectedQty": "21843122819101360724720106", + "swapFee": "13113741936622790108897", "reserves": [ - "34086674415686453274013822", - "155805991690492696534237243", - "93577129802425285866165699" + "760562001306954450742757737", + "1015979636357069886340412876", + "948842308983755879170761535" ], - "mAssetSupply": "282929213018120659811311803", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2725214311652489755301385830" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "14088188637231847424", + "inputIndex": 0, + "inputQty": "13115969115158334815600640", "outputIndex": 2, - "expectedQty": "14001135114879772344", - "swapFee": "8390827591718512", + "expectedQty": "13132446127393660426388232", + "swapFee": "7881544238417390028195", "reserves": [ - "34086674415686453274013822", - "155806005778681333766084667", - "93577115801290170986393355" + "773677970422112785558358377", + "1015979636357069886340412876", + "935709862856362218744373303" ], - "mAssetSupply": "282929213026511487403030315", + "mAssetSupply": "2725222193196728172691414025", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "1129135734700752371712", - "outputIndex": 1, - "expectedQty": "1162474438941374929039", - "swapFee": "692777586754277769", + "type": "redeemBassets", + "inputQtys": [ + "3613573480706031568814080", + "7850954259321640072511488", + "3037097945612924082978816" + ], + "expectedQty": "14498452746052940727608754", + "swapFee": "8704294224166264195082", "reserves": [ - "34087803551421154026385534", - "155804843304242392391155628", - "93577115801290170986393355" + "770064396941406753989544297", + "1008128682097748246267901388", + "932672764910749294661394487" ], - "mAssetSupply": "282929213719289074157308084", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2710723740450675231963805271" }, { - "type": "swap", + "type": "mint", "inputIndex": 1, - "inputQty": "202288066414153027289088", - "outputIndex": 2, - "expectedQty": "201033530762257910624355", - "swapFee": "120480609222047073037", + "inputQty": "6844294539594970431488", + "expectedQty": "6837962838042907032467", "reserves": [ - "34087803551421154026385534", - "156007131370656545418444716", - "93376082270527913075769000" - ], - "mAssetSupply": "282929334199898296204381121", - "hardLimitError": false, - "insufficientLiquidityError": false + "770064396941406753989544297", + "1008135526392287841238332876", + "932672764910749294661394487" + ] }, { "type": "redeemMasset", - "inputQty": "42768463066858338962636", + "inputQty": "103264479672645255063142", "expectedQtys": [ - "5151270745575579374017", - "23575440134139266629369", - "14110779540577802061262" + "29326574838481576885764", + "38393103329415481128687", + "35519234168736423808277" ], - "redemptionFee": "12830538920057501688", + "redemptionFee": "30979343901793576518", "reserves": [ - "34082652280675578447011517", - "155983555930522406151815347", - "93361971490987335273707738" + "770035070366568272412658533", + "1008097133288958425757204189", + "932637245676580558237586210" ], - "mAssetSupply": "282886578567370357922920173" + "mAssetSupply": "2710627344913184531409351114" }, { "type": "redeemMasset", - "inputQty": "1608710083074994492722380", + "inputQty": "221036454521394013877043", "expectedQtys": [ - "193761959042158619969223", - "886776038629968206989196", - "530768507895398246224835" + "62773202809943911615862", + "82180004827502550835735", + "76028520289464002719844" ], - "redemptionFee": "482613024922498347816", + "redemptionFee": "66310936356418204163", "reserves": [ - "33888890321633419827042294", - "155096779891892437944826151", - "92831202983091937027482903" + "769972297163758328501042671", + "1008014953284130923206368454", + "932561217156291094234866366" ], - "mAssetSupply": "281278351097320285928545609" + "mAssetSupply": "2710406374769599493813678234" }, { - "type": "redeemMasset", - "inputQty": "660804789214225891328", - "expectedQtys": [ - "79590991471780444682", - "364258208767493016199", - "218022113289021618614" - ], - "redemptionFee": "198241436764267767", + "type": "redeem", + "inputIndex": 1, + "inputQty": "22040046571288694620160", + "expectedQty": "22047217709957449330312", + "swapFee": "13224027942773216772", "reserves": [ - "33888810730641948046597612", - "155096415633683670451809952", - "92830984960978648005864289" + "769972297163758328501042671", + "1007992906066420965757038142", + "932561217156291094234866366" ], - "mAssetSupply": "281277690490772508466922048" + "mAssetSupply": "2710384347947056147892274846" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "161440084306176835584", - "178923329472273022976", - "157204277143023091712" + "882112827408803", + "2841433671076558", + "3654283596291363" ], - "expectedQty": "499623170697962978935", - "swapFee": "299953874743623961", + "expectedQty": "7375293466595513", "reserves": [ - "33888649290557641869762028", - "155096236710354198178786976", - "92830827756701504982772577" + "769972297164640441328451474", + "1007992906069262399428114700", + "932561217159945377831157729" ], - "mAssetSupply": "281277190867601810503943113" + "mAssetSupply": "2710384347954431441358870359" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "14609671384074", - "expectedQty": "14709223662204", - "swapFee": "8765802830", + "type": "mint", + "inputIndex": 2, + "inputQty": "1282117293178230050652160", + "expectedQty": "1281709049491795288198090", "reserves": [ - "33888649290557641869762028", - "155096236710339488955124772", - "92830827756701504982772577" - ], - "mAssetSupply": "281277190867587209598361869" + "769972297164640441328451474", + "1007992906069262399428114700", + "933843334453123607881809889" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "138044040417180614656", - "48309450058676674560", - "150240950377381101568" + "6989121548505133564821504", + "3588628780202840960270336", + "7203546988595735028563968" ], - "expectedQty": "339095308622627007020", + "expectedQty": "17785604801161632677011047", + "swapFee": "10677769542422433066046", "reserves": [ - "33888787334598059050376684", - "155096285019789547631799332", - "92830977997651882363874145" + "762983175616135307763629970", + "1004404277289059558467844364", + "926639787464527872853245921" ], - "mAssetSupply": "281277529962895832225368889" + "mAssetSupply": "2693880452202761603970057402" }, { "type": "redeemBassets", "inputQtys": [ - "197371657434592215040", - "195985952142494105600", - "381537434322114904064" + "21244259576405446656", + "13821349406979901440", + "91115294081161084928" ], - "expectedQty": "777245044481323014699", - "swapFee": "466627002890528125", + "expectedQty": "126169649986808560638", + "swapFee": "75747238335086188", "reserves": [ - "33888589962940624458161644", - "155096089033837405137693732", - "92830596460217560248970081" + "762983154371875731358183314", + "1004404263467710151487942924", + "926639696349233791692160993" ], - "mAssetSupply": "281276752717851350902354190" + "mAssetSupply": "2693880326033111617161496764" }, { "type": "redeemBassets", "inputQtys": [ - "317902872679257407488", - "443543110806412066816", - "164270990344847884288" + "126394167505193244033024", + "361186210105875689897984", + "184500633019045543673856" ], - "expectedQty": "929346593805698660917", - "swapFee": "557942721916569138", + "expectedQty": "671862574194206450215610", + "swapFee": "403359560252675475414", "reserves": [ - "33888272060067945200754156", - "155095645490726598725626916", - "92830432189227215401085793" + "762856760204370538114150290", + "1004043077257604275798044940", + "926455195716214746148487137" ], - "mAssetSupply": "281275823371257545203693273" + "mAssetSupply": "2693208463458917410711281154" }, { "type": "redeemMasset", - "inputQty": "13840162291717363675955", + "inputQty": "14737596046245119590", "expectedQtys": [ - "1666970426828355473151", - "7629183745474730401768", - "4566346283305497610904" + "4173201637786560694", + "5492609403234710689", + "5068165534854790158" ], - "redemptionFee": "4152048687515209102", + "redemptionFee": "4421278813873535", "reserves": [ - "33886605089641116845281005", - "155088016306981123995225148", - "92825865842943909903474889" + "762856756031168900327589596", + "1004043071764994872563334251", + "926455190648049211293696979" ], - "mAssetSupply": "281261987361014515355226420" + "mAssetSupply": "2693208448725742643280035099" }, { "type": "mintMulti", "inputQtys": [ - "32386904249949136879616", - "39882453502630733807616", - "18180979084385128022016" + "30214239870174868", + "150220407759996864", + "86445660514295136" ], - "expectedQty": "90856252658120925415381", + "expectedQty": "266754342773626953", "reserves": [ - "33918991993891065982160621", - "155127898760483754729032764", - "92844046822028295031496905" + "762856756061383140197764464", + "1004043071915215280323331115", + "926455190734494871807992115" ], - "mAssetSupply": "281352843613672636280641801" + "mAssetSupply": "2693208448992496986053662052" }, { - "type": "redeemBassets", - "inputQtys": [ - "195856404507144679849984", - "466569685767233300594688", - "847330267022251733811200" + "type": "redeemMasset", + "inputQty": "474687125102590112563", + "expectedQtys": [ + "134415754209879359523", + "176912907565346819891", + "163241882849910114292" ], - "expectedQty": "1509280574546977453257728", - "swapFee": "906112011935347680562", + "redemptionFee": "142406137530777033", "reserves": [ - "33723135589383921302310637", - "154661329074716521428438076", - "91996716555006043297685705" + "762856621645628930318404941", + "1004042895002307714976511224", + "926455027492612021897877823" ], - "mAssetSupply": "279843563039125658827384073" + "mAssetSupply": "2693207974447778020994326522" }, { "type": "redeemBassets", "inputQtys": [ - "216881266591669420032000", - "279434228716428584812544", - "305489174685156376576000" + "2489098323514971127808", + "689368385492592492544", + "1920907551488986578944" ], - "expectedQty": "804138204075570174089020", - "swapFee": "482772585996940268614", + "expectedQty": "5101690147562261012650", + "swapFee": "3062851799617126883", "reserves": [ - "33506254322792251882278637", - "154381894846000092843625532", - "91691227380320886921109705" + "762854132547305415347277133", + "1004042205633922222384018680", + "926453106585060532911298879" ], - "mAssetSupply": "279039424835050088653295053" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "5686194031050208107823104", - "expectedQty": "5642834281404031450858916", - "reserves": [ - "33506254322792251882278637", - "160068088877050300951448636", - "91691227380320886921109705" - ] + "mAssetSupply": "2693202872757630458733313872" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "1612420628009849454592", - "expectedQty": "1613903082400895490288", - "swapFee": "967452376805909672", + "inputIndex": 0, + "inputQty": "12416298790322544640", + "expectedQty": "12391060593745813642", + "swapFee": "7449779274193526", "reserves": [ - "33506254322792251882278637", - "160068088877050300951448636", - "91689613477238486025619417" + "762854120156244821601463491", + "1004042205633922222384018680", + "926453106585060532911298879" ], - "mAssetSupply": "284680647663278487060609049" + "mAssetSupply": "2693202860348781447684962758" }, { "type": "redeemBassets", "inputQtys": [ - "56196256672229548032", - "51137777197766893568", - "40700051428344586240" + "569862773008282647789568", + "8189279106710707359449088", + "6349888399408485843861504" ], - "expectedQty": "148925977270263204422", - "swapFee": "89409231901298701", + "expectedQty": "15100225132758376408258189", + "swapFee": "9065574424309611611922", "reserves": [ - "33506198126535579652730605", - "160068037739273103184555068", - "91689572777187057681033177" + "762284257383236538953673923", + "995852926527211515024569592", + "920103218185652047067437375" ], - "mAssetSupply": "284680498737301216797404627" + "mAssetSupply": "2678102635216023071276704569" }, { - "type": "redeemBassets", - "inputQtys": [ - "3250803392210978304", - "102534607658445520896", - "82492325845424898048" - ], - "expectedQty": "187429425302983882994", - "swapFee": "112525170283960706", + "type": "swap", + "inputIndex": 1, + "inputQty": "96450631052539511963648", + "outputIndex": 2, + "expectedQty": "96332797945739946029323", + "swapFee": "57816965543217414594", "reserves": [ - "33506194875732187441752301", - "160067935204665444739034172", - "91689490284861212256135129" + "762284257383236538953673923", + "995949377158264054536533240", + "920006885387706307121408052" ], - "mAssetSupply": "284680311307875913813521633" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "216138842344808635170816", - "expectedQty": "215808255633201765823987", - "reserves": [ - "33506194875732187441752301", - "160067935204665444739034172", - "91905629127206020891305945" - ] + "mAssetSupply": "2678102693032988614494119163", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "378282323559802365542400", - "382249357212529144627200", - "293170941041651700727808" + "type": "redeemMasset", + "inputQty": "59755097966565659561164", + "expectedQtys": [ + "17003345497401970964913", + "22215428422825873209717", + "20521471853473276366558" ], - "expectedQty": "1059449893937718748362144", - "swapFee": "636051567303013056851", + "redemptionFee": "17926529389969697868", "reserves": [ - "33127912552172385076209901", - "159685685847452915594406972", - "91612458186164369190578137" + "762267254037739136982709010", + "995927161729841228663323523", + "919986363915852833845041494" ], - "mAssetSupply": "283836669669571396830983476" + "mAssetSupply": "2678042955861551438804255867" }, { "type": "mintMulti", "inputQtys": [ - "53368015719202256", - "63227222602206640", - "57070875766240320" + "218915371941758513446912", + "2126322411880096861257728", + "1512774827228753068818432" ], - "expectedQty": "174387916533387905", + "expectedQty": "3855890750997217344777236", "reserves": [ - "33127912605540400795412157", - "159685685910680138196613612", - "91612458243235244956818457" + "762486169409680895496155922", + "998053484141721325524581251", + "921499138743081586913859926" ], - "mAssetSupply": "283836669843959313364371381" + "mAssetSupply": "2681898846612548656149033103" }, { - "type": "mint", + "type": "swap", "inputIndex": 1, - "inputQty": "16138371165317645729792", - "expectedQty": "16011193922465352090692", + "inputQty": "25679450648413933568", + "outputIndex": 0, + "expectedQty": "25604342826182866599", + "swapFee": "15393346623472783", "reserves": [ - "33127912605540400795412157", - "159701824281845455842343404", - "91612458243235244956818457" - ] + "762486143805338069313289323", + "998053509821171973938514819", + "921499138743081586913859926" + ], + "mAssetSupply": "2681898846627942002772505886", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "165208615647452843737088", - "46648576702815445975040", - "85444813458948344512512" + "26293870906975637504", + "26186128744463458304", + "23527426493638160384" ], - "expectedQty": "300838340078869246337250", + "expectedQty": "76012754117941570531", + "swapFee": "45635033490859457", "reserves": [ - "33293121221187853639149245", - "159748472858548271288318444", - "91697903056694193301330969" + "762486117511467162337651819", + "998053483635043229475056515", + "921499115215655093275699542" ], - "mAssetSupply": "284153519377960647962799323" + "mAssetSupply": "2681898770615187884830935355" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "178914315195321950404608", - "outputIndex": 1, - "expectedQty": "179935692293241145291590", - "swapFee": "107180291904720197699", + "inputQty": "349677150627145842688", + "expectedQty": "349573353698037465096", + "swapFee": "209806290376287505", "reserves": [ - "33293121221187853639149245", - "159568537166255030143026854", - "91876817371889515251735577" + "762486117511467162337651819", + "998053483635043229475056515", + "921498765642301395238234446" ], - "mAssetSupply": "284153626558252552682997022", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2681898421147843548061380172" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "994695685508262120128512", - "expectedQty": "993068140873751698327685", + "type": "redeemMasset", + "inputQty": "10960170163168888422", + "expectedQtys": [ + "3115133084766681791", + "4077542339243189353", + "3764778435301572012" + ], + "redemptionFee": "3288051048950666", "reserves": [ - "33293121221187853639149245", - "159568537166255030143026854", - "92871513057397777371864089" - ] + "762486114396334077570970028", + "998053479557500890231867162", + "921498761877522959936662434" + ], + "mAssetSupply": "2681898410190961435941442416" }, { "type": "mintMulti", "inputQtys": [ - "3467837521568310", - "1059595200710723", - "3441676997346567" + "590383098747037497163776", + "88972222624355758112768", + "619034481476598274981888" ], - "expectedQty": "8039799844940883", + "expectedQty": "1298944735604974421219797", "reserves": [ - "33293121224655691160717555", - "159568537167314625343737577", - "92871513060839454369210656" + "763076497495081115068133804", + "998142451780125245989979930", + "922117796358999558211644322" ], - "mAssetSupply": "285146694707166104226265590" + "mAssetSupply": "2683197354926566410362662213" }, { "type": "redeemMasset", - "inputQty": "61850697520930486432563", + "inputQty": "31449923952007991368089", "expectedQtys": [ - "7219389345111693017470", - "34601363725178456447370", - "20138562777925898064680" + "8941384114884378322122", + "11695780294682825871764", + "10804957882312048307826" ], - "redemptionFee": "18555209256279145929", + "redemptionFee": "9434977185602397410", "reserves": [ - "33285901835310579467700085", - "159533935803589446887290207", - "92851374498061528471145976" + "763067556110966230689811682", + "998130755999830563164108166", + "922106991401117246163336496" ], - "mAssetSupply": "285084862564854430018978956" + "mAssetSupply": "2683165914437591587973691534" }, { "type": "mintMulti", "inputQtys": [ - "198240868848257709637632", - "284500707408703098191872", - "69285748000665410469888" + "664958174500423335936", + "859026431960216109056", + "914703190758241337344" ], - "expectedQty": "554522186059181022419135", + "expectedQty": "2438542459063750900309", "reserves": [ - "33484142704158837177337717", - "159818436510998149985482079", - "92920660246062193881615864" + "763068221069140731113147618", + "998131615026262523380217222", + "922107906104308004404673840" ], - "mAssetSupply": "285639384750913611041398091" + "mAssetSupply": "2683168352980050651724591843" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "1251060437511603717406720", - "expectedQty": "1252305507265139211589423", - "swapFee": "750636262506962230444", + "type": "redeemMasset", + "inputQty": "287216625353737359065088", + "expectedQtys": [ + "81657242775319879845888", + "106811780859809380581699", + "98676353011140260463260" + ], + "redemptionFee": "86164987606121207719", "reserves": [ - "33484142704158837177337717", - "159818436510998149985482079", - "91668354738797054670026441" + "762986563826365411233301730", + "998024803245402713999635523", + "922009229751296864144210580" ], - "mAssetSupply": "284389074949664514286221815" + "mAssetSupply": "2682881222519684520486734474" }, { "type": "mintMulti", "inputQtys": [ - "1529302123673902907392", - "65727153374026987995136", - "50215342544123150204928" + "12512421799102697701376", + "3503495730347422777344", + "6569455814658795503616" ], - "expectedQty": "116918786857334510994298", + "expectedQty": "22597607634336313208274", "reserves": [ - "33485672006282511080245109", - "159884163664372176973477215", - "91718570081341177820231369" + "762999076248164513931003106", + "998028306741133061422412867", + "922015799207111522939714196" ], - "mAssetSupply": "284505993736521848797216113" + "mAssetSupply": "2682903820127318856799942748" }, { "type": "mintMulti", "inputQtys": [ - "6845056170373319491584", - "10368251586994201690112", - "9135614046038690627584" + "122230769048280794923008", + "16599243320704220748840960", + "44315080780606986405281792" ], - "expectedQty": "26418774592995788821624", + "expectedQty": "61003433640043306531779003", "reserves": [ - "33492517062452884399736693", - "159894531915959171175167327", - "91727705695387216510858953" + "763121307017212794725926114", + "1014627550061837282171253827", + "966330879987718509344995988" ], - "mAssetSupply": "284532412511114844586037737" + "mAssetSupply": "2743907253767362163331721751" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "355564670980715655987200", - "expectedQty": "352784914000811262097906", + "type": "redeemBassets", + "inputQtys": [ + "8890066527873895759872", + "2539768421288168652800", + "14650007745123756015616" + ], + "expectedQty": "26084394663415624364689", + "swapFee": "15660032817740018629", "reserves": [ - "33492517062452884399736693", - "160250096586939886831154527", - "91727705695387216510858953" - ] + "763112416950684920830166242", + "1014625010293415994002601027", + "966316229979973385588980372" + ], + "mAssetSupply": "2743881169372698747707357062" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "25292171476411571240960", - "expectedQty": "25253750575217292669237", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2060487332014895212265472", + "expectedQty": "2061084966516099016347748", + "swapFee": "1236292399208937127359", "reserves": [ - "33492517062452884399736693", - "160250096586939886831154527", - "91752997866863628082099913" - ] + "763112416950684920830166242", + "1012563925326899894986253279", + "966316229979973385588980372" + ], + "mAssetSupply": "2741821918333083061432218949" }, { "type": "redeemBassets", "inputQtys": [ - "33777703562059569954816", - "40796494509757773643776", - "39759193167784348483584" + "3682413582723928576", + "21649678162420330496", + "21794832157782319104" ], - "expectedQty": "114769793814178367146811", - "swapFee": "68903218219438683498", + "expectedQty": "47102371700607832118", + "swapFee": "28278390054397337", "reserves": [ - "33458739358890824829781877", - "160209300092430129057510751", - "91713238673695843733616329" + "763112413268271338106237666", + "1012563903677221732565922783", + "966316208185141227806661268" ], - "mAssetSupply": "284795681381876694773658069" + "mAssetSupply": "2741821871230711360824386831" }, { "type": "mintMulti", "inputQtys": [ - "27452439563323484143616", - "47258944848120344739840", - "14363624989852988080128" + "5069391021396259840", + "6203892302807792640", + "5173504736150905856" ], - "expectedQty": "89346599472745079770441", + "expectedQty": "16446763934271806534", "reserves": [ - "33486191798454148313925493", - "160256559037278249402250591", - "91727602298685696721696457" + "763112418337662359502497506", + "1012563909881114035373715423", + "966316213358645963957567124" ], - "mAssetSupply": "284885027981349439853428510" + "mAssetSupply": "2741821887677475295096193365" }, { - "type": "mint", + "type": "swap", "inputIndex": 0, - "inputQty": "55089616419833528320", - "expectedQty": "56420580260273186515", - "reserves": [ - "33486246888070568147453813", - "160256559037278249402250591", - "91727602298685696721696457" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "3826601104089904442245120", - "3773908142992007641432064", - "4468451143015229139451904" - ], - "expectedQty": "12131938277194388251071617", - "swapFee": "7283533086168333951013", + "inputQty": "838038043130939494629376", + "outputIndex": 1, + "expectedQty": "839616984074412799387091", + "swapFee": "503629373222524081229", "reserves": [ - "29659645783980663705208693", - "156482650894286241760818527", - "87259151155670467582244553" + "763950456380793298997126882", + "1011724292897039622574328332", + "966316213358645963957567124" ], - "mAssetSupply": "272753146124735311875543408" + "mAssetSupply": "2741822391306848517620274594", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "246115009583591421116416", - "outputIndex": 1, - "expectedQty": "247696565534203898921723", - "swapFee": "147416030197281711061", + "type": "redeemMasset", + "inputQty": "658612268284677483554406", + "expectedQtys": [ + "183453239125180178253307", + "242953056815872289490850", + "232048868979874857528969" + ], + "redemptionFee": "197583680485403245066", "reserves": [ - "29659645783980663705208693", - "156234954328752037861896804", - "87505266165254059003360969" + "763767003141668118818873575", + "1011481339840223750284837482", + "966084164489666089100038155" ], - "mAssetSupply": "272753293540765509157254469", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2741163976622244325539965254" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "3203364988715212514263040", - "317815176183894528491520", - "323728514056215840423936" + "1132114883993948064317440", + "11201862647077494983753728", + "11179897522669516295766016" ], - "expectedQty": "3925797144724702003797853", + "expectedQty": "23500321510620010728138583", + "swapFee": "14108658101232746084533", "reserves": [ - "32863010772695876219471733", - "156552769504935932390388324", - "87828994679310274843784905" + "762634888257674170754556135", + "1000279477193146255301083754", + "954904266966996572804272139" ], - "mAssetSupply": "276679090685490211161052322" + "mAssetSupply": "2717663655111624314811826671" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "3220479138916544806912", - "outputIndex": 0, - "expectedQty": "3139949619981015152251", - "swapFee": "1929777510273386386", + "type": "redeemBassets", + "inputQtys": [ + "5836876793005686652928", + "1505592216451190095872", + "12881598874317458767872" + ], + "expectedQty": "20225396075633971695435", + "swapFee": "12142523159275948586", "reserves": [ - "32859870823075895204319482", - "156552769504935932390388324", - "87832215158449191388591817" + "762629051380881165067903207", + "1000277971600929804110987882", + "954891385368122255345504267" ], - "mAssetSupply": "276679092615267721434438708", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2717643429715548680840131236" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "10336162303325570596864", - "expectedQty": "10581073741725004403918", + "inputIndex": 1, + "inputQty": "59278808326222454456320", + "expectedQty": "59228276068673345689946", "reserves": [ - "32870206985379220774916346", - "156552769504935932390388324", - "87832215158449191388591817" + "762629051380881165067903207", + "1000337250409256026565444202", + "954891385368122255345504267" ] }, { - "type": "redeemMasset", - "inputQty": "37245667702693153262796", - "expectedQtys": [ - "4423387069478423906397", - "21067512493218955741231", - "11819696936753216984156" - ], - "redemptionFee": "11173700310807945978", + "type": "redeem", + "inputIndex": 0, + "inputQty": "27474486006340862231969792", + "expectedQty": "27412578918979594466559238", + "swapFee": "16484691603804517339181", "reserves": [ - "32865783598309742351009949", - "156531701992442713434647093", - "87820395461512438171607661" + "735216472461901570601343969", + "1000337250409256026565444202", + "954891385368122255345504267" ], - "mAssetSupply": "276652439195007064093525808" + "mAssetSupply": "2690244656676880296471190571" }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "1238867179222207779831808", - "expectedQty": "1208392372011036766552214", - "swapFee": "743320307533324667899", + "inputIndex": 2, + "inputQty": "3000676591608999295582208", + "expectedQty": "3000622589332257672890719", + "swapFee": "1800405954965399577349", "reserves": [ - "31657391226298705584457735", - "156531701992442713434647093", - "87820395461512438171607661" + "735216472461901570601343969", + "1000337250409256026565444202", + "951890762778789997672613548" ], - "mAssetSupply": "275414315336092389638361899" + "mAssetSupply": "2687245780491226262575185712" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "250787330089087729664", - "220269068385267646464", - "9524027979647289344" + "281519264506636555780096", + "225387187158498725068800", + "139788512103874410053632" ], - "expectedQty": "485180381726900513893", + "expectedQty": "646899237154731183037369", + "swapFee": "388372565832338112690", "reserves": [ - "31657642013628794672187399", - "156531922261511098702293557", - "87820404985540417818897005" + "734934953197394934045563873", + "1000111863222097527840375402", + "951750974266686123262559916" ], - "mAssetSupply": "275414800516474116538875792" + "mAssetSupply": "2686598881254071531392148343" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "63283142870032637952", - "expectedQty": "61669207779234092487", - "swapFee": "37969885722019582", + "inputQty": "144782250733849509888", + "expectedQty": "145039982879480589210", "reserves": [ - "31657580344421015438094912", - "156531922261511098702293557", - "87820404985540417818897005" - ], - "mAssetSupply": "275414737271301132228257422" + "734935097979645667895073761", + "1000111863222097527840375402", + "951750974266686123262559916" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "15972326128306857443328", - "14248490295081186623488", - "23164369742085618663424" - ], - "expectedQty": "53643211229083099252292", + "type": "redeem", + "inputIndex": 0, + "inputQty": "2253648583063602102009856", + "expectedQty": "2248268916041438664518764", + "swapFee": "1352189149838161261205", "reserves": [ - "31673552670549322295538240", - "156546170751806179888917045", - "87843569355282503437560429" + "732686829063604229230554997", + "1000111863222097527840375402", + "951750974266686123262559916" ], - "mAssetSupply": "275468380482530215327509714" + "mAssetSupply": "2684346729900140646931988902" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "361114344482968640", - "expectedQty": "358172902002262985", + "type": "redeem", + "inputIndex": 2, + "inputQty": "563187295919562424320", + "expectedQty": "563177685782366770038", + "swapFee": "337912377551737454", "reserves": [ - "31673552670549322295538240", - "156546171112920524371885685", - "87843569355282503437560429" - ] + "732686829063604229230554997", + "1000111863222097527840375402", + "951750411089000340895789878" + ], + "mAssetSupply": "2684346167050757104921302036" }, { "type": "redeemBassets", "inputQtys": [ - "9240721622268988358656", - "340032476098370620882944", - "271576364842853834162176" + "513181341908099456", + "616991088877376000", + "312521756579096512" ], - "expectedQty": "617922229590565702070016", - "swapFee": "370975923308324415891", + "expectedQty": "1442839355691169165", + "swapFee": "866223347423155", "reserves": [ - "31664311948927053307179584", - "156206138636822153751002741", - "87571992990439649603398253" + "732686828550422887322455541", + "1000111862605106438962999402", + "951750410776478584316693366" ], - "mAssetSupply": "274850458611112551627702683" + "mAssetSupply": "2684346165607917749230132871" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "643999592634694326288384", - "72455510146189241614336", - "1135938158599207693320192" + "260205000440383438585856", + "419431592961560629215232", + "449113365465963807375360" + ], + "expectedQty": "1128550897112766218040993", + "swapFee": "677537060503962108089", + "reserves": [ + "732426623549982503883869685", + "999692431012144878333784170", + "951301297411012620509318006" ], - "expectedQty": "1866248330707724584831610", + "mAssetSupply": "2683217614710804983012091878" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "4600515551429742559232", + "expectedQty": "4597835763932798423568", + "reserves": [ + "732426623549982503883869685", + "999692431012144878333784170", + "951305897926564050251877238" + ] + }, + { + "type": "redeem", + "inputIndex": 2, + "inputQty": "14443609085771225942196224", + "expectedQty": "14442763877995706426397874", + "swapFee": "8666165451462735565317", "reserves": [ - "32308311541561747633467968", - "156278594146968342992617077", - "88707931149038857296718445" + "732426623549982503883869685", + "999692431012144878333784170", + "936863134048568343825479364" ], - "mAssetSupply": "276716706941820276212534293" + "mAssetSupply": "2668787269626249152603884539" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "688685740080241626316800", - "expectedQty": "671411342276951221192331", - "swapFee": "413211444048144975790", + "inputQty": "7150754071736269863387136", + "expectedQty": "7133744922871253332848242", + "swapFee": "4290452443041761918032", "reserves": [ - "31636900199284796412275637", - "156278594146968342992617077", - "88707931149038857296718445" + "725292878627111250551021443", + "999692431012144878333784170", + "936863134048568343825479364" ], - "mAssetSupply": "276028434413184082731193283" + "mAssetSupply": "2661640806006955924502415435" }, { "type": "redeemBassets", "inputQtys": [ - "1940048790136884992", - "1842539412046015488", - "1349989111712934400" + "73348925552077289029632", + "13667736595560885387264", + "96001017199983331377152" ], - "expectedQty": "5165280665391055649", - "swapFee": "3101029016644620", + "expectedQty": "183086357118432114637569", + "swapFee": "109917764930017279150", "reserves": [ - "31636898259236006275390645", - "156278592304428930946601589", - "88707929799049745583784045" + "725219529701559173261991811", + "999678763275549317448396906", + "936767133031368360494102212" ], - "mAssetSupply": "276028429247903417340137634" + "mAssetSupply": "2661457719649837492387777866" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "3586401752358666240", - "expectedQty": "3557335518245653524", + "inputIndex": 0, + "inputQty": "280083203301190205440", + "expectedQty": "280592742348131679070", "reserves": [ - "31636898259236006275390645", - "156278595890830683305267829", - "88707929799049745583784045" + "725219809784762474452197251", + "999678763275549317448396906", + "936767133031368360494102212" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "78574336755974281363456", - "outputIndex": 0, - "expectedQty": "76436496995268216605126", - "swapFee": "47069999158687317988", + "type": "redeemBassets", + "inputQtys": [ + "9787758584714210836480", + "1357667645066871570432", + "20620537542904073158656" + ], + "expectedQty": "31771495647180668719633", + "swapFee": "19074341993504503934", "reserves": [ - "31560461762240738058785519", - "156278595890830683305267829", - "88786504135805719865147501" + "725210022026177760241360771", + "999677405607904250576826474", + "936746512493825456420943556" ], - "mAssetSupply": "276028479875238094273109146", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2661426228746932659850737303" }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "132323139255324389670912", - "outputIndex": 2, - "expectedQty": "131377507399467397215343", - "swapFee": "78748756352735893830", + "type": "redeemBassets", + "inputQtys": [ + "3835991235594991173632", + "7539078779321086640128", + "9815312327756371460096" + ], + "expectedQty": "21184394599541196481456", + "swapFee": "12718267720356932048", "reserves": [ - "31560461762240738058785519", - "156410919030086007694938741", - "88655126628406252467932158" + "725206186034942165250187139", + "999669866529124929490186346", + "936736697181497700049483460" ], - "mAssetSupply": "276028558623994447009002976", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2661405044352333118654255847" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "5320318403091307167744", - "7994469312645680857088", - "2064489844065792163840" + "82622654355571763838976", + "42572998008985230508032", + "478732976006334112595968" ], - "expectedQty": "15448254850990504160215", + "expectedQty": "603783054456791044184897", + "swapFee": "362487325069116096168", "reserves": [ - "31565782080643829365953263", - "156418913499398653375795829", - "88657191118250318260095998" + "725123563380586593486348163", + "999627293531115944259678314", + "936257964205491365936887492" ], - "mAssetSupply": "276044006878845437513163191" + "mAssetSupply": "2660801261297876327610070950" }, { - "type": "redeemMasset", - "inputQty": "2481562585207900569", - "expectedQtys": [ - "283682898717616265", - "1405742797134093039", - "796765589534031667" - ], - "redemptionFee": "744468775562370", + "type": "redeem", + "inputIndex": 2, + "inputQty": "2525418717297060853317632", + "expectedQty": "2525210337090801801522101", + "swapFee": "1515251230378236511990", "reserves": [ - "31565781796960930648336998", - "156418912093655856241702790", - "88657190321484728726064331" + "725123563380586593486348163", + "999627293531115944259678314", + "933732753868400564135365391" ], - "mAssetSupply": "276044004398027321080824992" + "mAssetSupply": "2658277357831809644993265308" }, { "type": "redeemMasset", - "inputQty": "810931260662186980147", + "inputQty": "149458246796737996", "expectedQtys": [ - "92702610869718258438", - "459372165522569442510", - "260369062551348885984" + "40756914798870492", + "56185906086311520", + "52482181267022348" ], - "redemptionFee": "243279378198656094", + "redemptionFee": "44837474039021", "reserves": [ - "31565689094350060930078560", - "156418452721490333672260280", - "88656929952422177377178347" + "725123563339829678687477671", + "999627293474930038173366794", + "933732753815918382868343043" ], - "mAssetSupply": "276043193710046037092500939" + "mAssetSupply": "2658277357682396235670566333" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "3094140509669607", - "expectedQty": "3097169562654248", - "swapFee": "1856484305801", + "type": "swap", + "inputIndex": 0, + "inputQty": "27537990794142892001591296", + "outputIndex": 1, + "expectedQty": "27591440150369745992455564", + "swapFee": "16550426828194116333220", "reserves": [ - "31565689094350060930078560", - "156418452721490333672260280", - "88656929949325007814524099" + "752661554133972570689068967", + "972035853324560292180911230", + "933732753815918382868343043" ], - "mAssetSupply": "276043193706953753067137133" + "mAssetSupply": "2658293908109224429786899553", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", "inputIndex": 0, - "inputQty": "87876811097630687232", - "expectedQty": "90143779064115728495", + "inputQty": "53914578187133575747338240", + "expectedQty": "53979605657187352422688094", "reserves": [ - "31565776971161158560765792", - "156418452721490333672260280", - "88656929949325007814524099" + "806576132321106146436407207", + "972035853324560292180911230", + "933732753815918382868343043" ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "76411621045704523776", - "24689209540237795328", - "71998298324638867456" + "49288159713102581989376", + "150784387809840057024512", + "238848911554657606696960" ], - "expectedQty": "174755929942190538822", - "swapFee": "104916507870036345", + "expectedQty": "438808495507444518762586", "reserves": [ - "31565700559540112856242016", - "156418428032280793434464952", - "88656857951026683175656643" + "806625420480819249018396583", + "972186637712370132237935742", + "933971602727473040475040003" ], - "mAssetSupply": "276043109094802874992326806" - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "104912222554193045487616", - "expectedQty": "107609596684090364838689", - "reserves": [ - "31670612782094305901729632", - "156418428032280793434464952", - "88656857951026683175656643" - ] + "mAssetSupply": "2712712322261919226728350233" }, { "type": "redeemMasset", - "inputQty": "1763840436704402432", + "inputQty": "1392287699368388403", "expectedQtys": [ - "202227063440710633", - "998782043992030506", - "566102593614885909" - ], - "redemptionFee": "529152131011320", - "reserves": [ - "31670612579867242461018999", - "156418427033498749442434446", - "88656857384924089560770734" - ], - "mAssetSupply": "276150716928175680783774383" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "603201624213198864384", - "expectedQty": "602259197596238947587", - "reserves": [ - "31670612579867242461018999", - "156418427033498749442434446", - "88657460586548302759635118" - ] - }, - { - "type": "redeemBassets", - "inputQtys": [ - "32777957101661086285824", - "60207872300931832872960", - "348287783200599244800" + "413872759497723670", + "498820835893058908", + "479213020937173194" ], - "expectedQty": "93685857005349788733434", - "swapFee": "56245261360025888773", + "redemptionFee": "417686309810516", "reserves": [ - "31637834622765581374733175", - "156358219161197817609561486", - "88657112298765102160390318" + "806625420066946489520672913", + "972186637213549296344876834", + "933971602248260019537866809" ], - "mAssetSupply": "276057633330367927233988536" + "mAssetSupply": "2712712320870049213669772346" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "648113055983853010681856", - "expectedQty": "642840819898057607663054", - "reserves": [ - "31637834622765581374733175", - "157006332217181670620243342", - "88657112298765102160390318" - ] - }, - { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "361585852489676875628544", - "outputIndex": 0, - "expectedQty": "351600708621265915561828", - "swapFee": "216611605132773625365", + "inputQty": "102934792398541307904", + "expectedQty": "102903043231666171273", + "swapFee": "61760875439124784", "reserves": [ - "31286233914144315459171347", - "157006332217181670620243342", - "89018698151254779036018862" + "806625420066946489520672913", + "972186637213549296344876834", + "933971499345216787871695536" ], - "mAssetSupply": "276700690761871117615276955", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "37307968092262551781376", - "expectedQty": "37246760237887142448886", - "reserves": [ - "31286233914144315459171347", - "157006332217181670620243342", - "89056006119347041587800238" - ] + "mAssetSupply": "2712712217997017690567589226" }, { "type": "mintMulti", "inputQtys": [ - "107515128335612178857984", - "329380670116189542809600", - "309085705641932691079168" + "154968653475875955671040", + "13842076752841132736512", + "132663970488765305061376" ], - "expectedQty": "745606786859256325491145", + "expectedQty": "301579908007039481143676", "reserves": [ - "31393749042479927638029331", - "157335712887297860163052942", - "89365091824988974278879406" + "806780388720422365476343953", + "972200479290302137477613346", + "934104163315705553176756912" ], - "mAssetSupply": "277483544308968261083216986" + "mAssetSupply": "2713013797905024730048732902" }, { "type": "redeemBassets", "inputQtys": [ - "3644761122622417666048", - "5705147261887629492224", - "10484421637146666860544" + "231218686576948838137856", + "1287433468299027947716608", + "417189338632079842213888" ], - "expectedQty": "19866444831787227561180", - "swapFee": "11927023112940100597", + "expectedQty": "1935166171998411189582579", + "swapFee": "1161796781267807398188", "reserves": [ - "31390104281357305220363283", - "157330007740035972533560718", - "89354607403351827612018862" + "806549170033845416638206097", + "970913045822003109529896738", + "933686973977073473334543024" ], - "mAssetSupply": "277463677864136473855655806" + "mAssetSupply": "2711078631733026318859150323" }, { "type": "redeemBassets", "inputQtys": [ - "139115260192374850060288", - "81279008455020767084544", - "119967607662760500920320" + "161282669827911493615616", + "76969857107828936802304", + "265924536192169685286912" ], - "expectedQty": "343183780179578310524984", - "swapFee": "206033888440811473198", + "expectedQty": "504210457042898485473205", + "swapFee": "302707898965118162181", "reserves": [ - "31250989021164930370302995", - "157248728731580951766476174", - "89234639795689067111098542" + "806387887364017505144590481", + "970836075964895280593094434", + "933421049440881303649256112" ], - "mAssetSupply": "277120494083956895545130822" + "mAssetSupply": "2710574421275983420373677118" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2343340786544447062016", - "expectedQty": "2361423320359146477094", - "swapFee": "1406004471926668237", + "inputIndex": 2, + "inputQty": "58066514005363238371328", + "expectedQty": "58048671402381412766836", + "swapFee": "34839908403217943022", "reserves": [ - "31250989021164930370302995", - "157246367308260592619999080", - "89234639795689067111098542" + "806387887364017505144590481", + "970836075964895280593094434", + "933363000769478922236489276" ], - "mAssetSupply": "277118152149174823024737043" + "mAssetSupply": "2710516389601886460353248812" }, { - "type": "redeemBassets", - "inputQtys": [ - "1497503199038219485184", - "1412921058980600217600", - "369771331674188546048" - ], - "expectedQty": "3307790468117576189142", - "swapFee": "1985865800350756167", + "type": "swap", + "inputIndex": 1, + "inputQty": "1901645682376479889948672", + "outputIndex": 2, + "expectedQty": "1899882117296618381508820", + "swapFee": "1140292070592233356118", "reserves": [ - "31249491517965892150817811", - "157244954387201612019781480", - "89234270024357392922552494" + "806387887364017505144590481", + "972737721647271760483043106", + "931463118652182303854980456" ], - "mAssetSupply": "277114844358706705448547901" + "mAssetSupply": "2710517529893957052586604930", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "swap", "inputIndex": 1, - "inputQty": "937299018768016532832256", + "inputQty": "2030017178725374", "outputIndex": 2, - "expectedQty": "930437637761995624007350", - "swapFee": "557719208846776077408", + "expectedQty": "2028102432131476", + "swapFee": "1217255448205", "reserves": [ - "31249491517965892150817811", - "158182253405969628552613736", - "88303832386595397298545144" + "806387887364017505144590481", + "972737721649301777661768480", + "931463118650154201422848980" ], - "mAssetSupply": "277115402077915552224625309", + "mAssetSupply": "2710517529893958269842053135", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "43996859190605045039104", - "230409853474978119286784", - "59101185482274499461120" - ], - "expectedQty": "332669716522496874797512", - "swapFee": "199721662911244871801", + "type": "swap", + "inputIndex": 0, + "inputQty": "59842146122626144711737344", + "outputIndex": 2, + "expectedQty": "59845182580745189737277708", + "swapFee": "35932337730674359351261", "reserves": [ - "31205494658775287105778707", - "157951843552494650433326952", - "88244731201113122799084024" + "866230033486643649856327825", + "972737721649301777661768480", + "871617936069409011685571272" ], - "mAssetSupply": "276782732361393055349827797" + "mAssetSupply": "2710553462231688944201404396", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "8644726230382746271744", - "31584794438537050062848", - "111491840253116087795712" + "64816309036337304961024", + "101349985251198607818752", + "104464380460506613284864" ], - "expectedQty": "151519051984026293525090", - "swapFee": "90966010796893912462", + "expectedQty": "270622518439301045090213", + "swapFee": "162470993659776492949", "reserves": [ - "31196849932544904359506963", - "157920258758056113383264104", - "88133239360860006711288312" + "866165217177607312551366801", + "972636371664050579053949728", + "871513471688948505072286408" ], - "mAssetSupply": "276631213309409029056302707" + "mAssetSupply": "2710282839713249643156314183" }, { "type": "redeemBassets", "inputQtys": [ - "1302342292982471589888", - "6017141648295400046592", - "3345200779254143909888" + "308472653927918", + "186996255436720", + "87526274796050" ], - "expectedQty": "10644152017508537982532", - "swapFee": "6390325405748571932", + "expectedQty": "583014618066327", + "swapFee": "350018782109", "reserves": [ - "31195547590251921887917075", - "157914241616407817983217512", - "88129894160080752567378424" + "866165217177298839897438883", + "972636371663863582798513008", + "871513471688860978797490358" ], - "mAssetSupply": "276620569157391520518320175" + "mAssetSupply": "2710282839712666628538247856" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "1612334654234876207693824", - "expectedQty": "1598769885746732859211769", + "type": "redeemMasset", + "inputQty": "2519807912537964622643", + "expectedQtys": [ + "805050736715544254227", + "904009549259061790277", + "810021631585586119835" + ], + "redemptionFee": "755942373761389386", "reserves": [ - "31195547590251921887917075", - "159526576270642694190911336", - "88129894160080752567378424" - ] + "866164412126562124353184656", + "972635467654314323736722731", + "871512661667229393211370523" + ], + "mAssetSupply": "2710280320660696464335014599" }, { - "type": "redeemBassets", - "inputQtys": [ - "560034019186595189489664", - "545122446239750206521344", - "575484230969364978860032" - ], - "expectedQty": "1690561147399142477104421", - "swapFee": "1014945655832985277429", + "type": "swap", + "inputIndex": 0, + "inputQty": "16183707255491586399666176", + "outputIndex": 2, + "expectedQty": "16172257220900282889156115", + "swapFee": "9713057423515036807453", "reserves": [ - "30635513571065326698427411", - "158981453824402943984389992", - "87554409929111387588518392" + "882348119382053710752850832", + "972635467654314323736722731", + "855340404446329110322214408" ], - "mAssetSupply": "276528777895739110900427523" + "mAssetSupply": "2710290033718119979371822052", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "9882167381016793088", - "expectedQty": "9961943811530340881", - "swapFee": "5929300428610075", + "type": "swap", + "inputIndex": 0, + "inputQty": "1854011335742895194898432", + "outputIndex": 2, + "expectedQty": "1852367731072883584703088", + "swapFee": "1112606996612358215467", "reserves": [ - "30635513571065326698427411", - "158981443862459132454049111", - "87554409929111387588518392" + "884202130717796605947749264", + "972635467654314323736722731", + "853488036715256226737511320" ], - "mAssetSupply": "276528768019501030312244510" + "mAssetSupply": "2710291146325116591730037519", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "649933467222548005519360", - "518423451836854183133184", - "223408157161224004435968" - ], - "expectedQty": "1405412951199169654177066", - "swapFee": "843754023133381821599", + "type": "swap", + "inputIndex": 1, + "inputQty": "18994209372671862466674688", + "outputIndex": 0, + "expectedQty": "18964993224057922170364466", + "swapFee": "11389076254110466015367", "reserves": [ - "29985580103842778692908051", - "158463020410622278270915927", - "87331001771950163584082424" + "865237137493738683777384798", + "991629677026986186203397419", + "853488036715256226737511320" ], - "mAssetSupply": "275123355068301860658067444" + "mAssetSupply": "2710302535401370702196052886", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "230394834788308192", - "281558871293104224", - "186865022603910848" + "type": "redeemMasset", + "inputQty": "4538228905532237597900", + "expectedQtys": [ + "1448349821831412811310", + "1659922585159690019343", + "1428682603121308007366" ], - "expectedQty": "702735354586512174", - "swapFee": "421894349361524", + "redemptionFee": "1361468671659671279", "reserves": [ - "29985579873447943904599859", - "158463020129063406977811703", - "87331001585085140980171576" + "865235689143916852364573488", + "991628017104401026513378076", + "853486608032653105429503954" ], - "mAssetSupply": "275123354365566506071555270" + "mAssetSupply": "2710297998533933841618126265" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "6277856459654427574272", - "expectedQty": "6284020818220661436077", - "swapFee": "3766713875792656544", + "inputIndex": 0, + "inputQty": "16386281528302486704619520", + "expectedQty": "16369838860843658954015254", + "swapFee": "9831768916981492022771", "reserves": [ - "29985579873447943904599859", - "158463020129063406977811703", - "87324717564266920318735499" + "848865850283073193410558234", + "991628017104401026513378076", + "853486608032653105429503954" ], - "mAssetSupply": "275117080275820727436637542" + "mAssetSupply": "2693921548774548336405529516" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "4840145613039142436864", - "34826236452794785595392", - "48099882030276364206080" + "16961618049097804021760", + "29203856006134825484288", + "30524251960444683550720" ], - "expectedQty": "87525592277300206231912", + "expectedQty": "76686515059455366961928", + "swapFee": "46039532755326416026", "reserves": [ - "29990420019060983047036723", - "158497846365516201763407095", - "87372817446297196682941579" + "848848888665024095606536474", + "991598813248394891687893788", + "853456083780692660745953234" ], - "mAssetSupply": "275204605868098027642869454" + "mAssetSupply": "2693844862259488881038567588" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "100295018700968044789760", - "133322140968489632923648", - "120379394440811576819712" + "5686856971135635452592128", + "5185163776331011703439360", + "2028160872767439014723584" ], - "expectedQty": "355551151614442788208139", - "swapFee": "213458766228402714553", + "expectedQty": "12899407432848735796846657", "reserves": [ - "29890125000360015002246963", - "158364524224547712130483447", - "87252438051856385106121867" + "854535745636159731059128602", + "996783977024725903391333148", + "855484244653460099760676818" ], - "mAssetSupply": "274849054716483584854661315" + "mAssetSupply": "2706744269692337616835414245" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "548153217253872001613824", - "expectedQty": "563829194737194493556678", + "type": "mintMulti", + "inputQtys": [ + "15255632150682628096", + "21497516919628271616", + "18005710433215307776" + ], + "expectedQty": "54755972678528860527", "reserves": [ - "30438278217613887003860787", - "158364524224547712130483447", - "87252438051856385106121867" - ] + "854535760891791881741756698", + "996783998522242823019604764", + "855484262659170532975984594" + ], + "mAssetSupply": "2706744324448310295364274772" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "8923783544879897600", - "expectedQty": "8674848674368769180", - "swapFee": "5354270126927938", + "inputQty": "12576718809864196096", + "expectedQty": "12563604688318940348", + "swapFee": "7546031285918517", "reserves": [ - "30438269542765212635091607", - "158364524224547712130483447", - "87252438051856385106121867" + "854535748328187193422816350", + "996783998522242823019604764", + "855484262659170532975984594" ], - "mAssetSupply": "275412874992791504595248331" + "mAssetSupply": "2706744311879137516785997193" }, { - "type": "redeemMasset", - "inputQty": "7580032162666081484", - "expectedQtys": [ - "837483887408908151", - "4357269298404000123", - "2400678885601827105" + "type": "redeemBassets", + "inputQtys": [ + "3516435165722215387758592", + "1521855448094405008818176", + "2366623414662595340140544" ], - "redemptionFee": "2274009648799824", + "expectedQty": "7406275615774013731522042", + "swapFee": "4446433229402049468594", "reserves": [ - "30438268705281325226183456", - "158364519867278413726483324", - "87252435651177499504294762" + "851019313162464978035057758", + "995262143074148418010786588", + "853117639244507937635844050" ], - "mAssetSupply": "275412867415033351577966671" + "mAssetSupply": "2699338036263363503054475151" }, { "type": "mintMulti", "inputQtys": [ - "1306968542166984660353024", - "424255615707535623847936", - "432102659885318004539392" + "175933028061450805968896", + "1989769734847725517668352", + "1937567045503008349618176" ], - "expectedQty": "2194408606884125105150890", + "expectedQty": "4102544845875181519894915", "reserves": [ - "31745237247448309886536480", - "158788775482985949350331260", - "87684538311062817508834154" + "851195246190526428841026654", + "997251912808996143528454940", + "855055206290010945985462226" ], - "mAssetSupply": "277607276021917476683117561" + "mAssetSupply": "2703440581109238684574370066" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "120804153588075433295872", - "690613529861931688525824", - "486378970023832076681216" + "8009064620332710625280000", + "44124783217579347457081344", + "41793660418432271269232640" ], - "expectedQty": "1294549022023421558573896", - "swapFee": "777195730652444401785", + "expectedQty": "93909209365883572423923975", "reserves": [ - "31624433093860234453240608", - "158098161953124017661805436", - "87198159341038985432152938" + "859204310810859139466306654", + "1041376696026575490985536284", + "896848866708443217254694866" ], - "mAssetSupply": "276312726999894055124543665" + "mAssetSupply": "2797349790475122256998294041" }, { - "type": "redeemBassets", - "inputQtys": [ - "3790678564251367374848", - "2421364506104196759552", - "2766067784764036218880" - ], - "expectedQty": "9052585440669908990982", - "swapFee": "5434812151692961171", + "type": "redeem", + "inputIndex": 0, + "inputQty": "67001606192111602892800", + "expectedQty": "66915664327385640074430", + "swapFee": "40200963715266961735", "reserves": [ - "31620642415295983085865760", - "158095740588617913465045884", - "87195393273254221395934058" + "859137395146531753826232224", + "1041376696026575490985536284", + "896848866708443217254694866" ], - "mAssetSupply": "276303674414453385215552683" + "mAssetSupply": "2797282829069893860662362976" }, { "type": "redeemMasset", - "inputQty": "171739723858864275403571", + "inputQty": "2746792374616339356057", "expectedQtys": [ - "19648277396342313227616", - "98236744385772243726269", - "54181039468297052777089" + "843377029882583415653", + "1022273259021667483648", + "880396706895899592827" ], - "redemptionFee": "51521917157659282621", + "redemptionFee": "824037712384901806", "reserves": [ - "31600994137899640772638144", - "157997503844232141221319615", - "87141212233785924343156969" + "859136551769501871242816571", + "1041375673753316469318052636", + "896847986311736321355102039" ], - "mAssetSupply": "276131986212511678599431733" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "662907058983185558798336", - "expectedQty": "657393503756359900676797", - "reserves": [ - "31600994137899640772638144", - "158660410903215326780117951", - "87141212233785924343156969" - ] + "mAssetSupply": "2797280083101556956707908725" }, { "type": "mintMulti", "inputQtys": [ - "202547147800841420800", - "11216451242076399616", - "92503767963311292416" + "916883389006578748227584", + "315914755002287618260992", + "169932564130093133201408" ], - "expectedQty": "311337172273477092300", + "expectedQty": "1403122430205251248543487", "reserves": [ - "31601196685047441614058944", - "158660422119666568856517567", - "87141304737553887654449385" + "860053435158508449991044155", + "1041691588508318756936313628", + "897017918875866414488303447" ], - "mAssetSupply": "276789691053440311977200830" + "mAssetSupply": "2798683205531762207956452212" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "117134934099229251993600", - "expectedQty": "117217672674956761408105", - "swapFee": "70280960459537551196", + "inputIndex": 1, + "inputQty": "2915929720754841709445120", + "expectedQty": "2916784845667685115694693", + "swapFee": "1749557832452905025667", "reserves": [ - "31601196685047441614058944", - "158660422119666568856517567", - "87024087064878930893041280" + "860053435158508449991044155", + "1038774803662651071820618935", + "897017918875866414488303447" ], - "mAssetSupply": "276672626400301542262758426" + "mAssetSupply": "2795769025368839819152032759" }, { "type": "swap", - "inputIndex": 2, - "inputQty": "150935059977187272687616", + "inputIndex": 1, + "inputQty": "4350619748014450", "outputIndex": 0, - "expectedQty": "146798328188186086615068", - "swapFee": "90442631435023760074", + "expectedQty": "4341249036865502", + "swapFee": "2608059536660", "reserves": [ - "31454398356859255527443876", - "158660422119666568856517567", - "87175022124856118165728896" + "860053435154167200954178653", + "1038774803667001691568633385", + "897017918875866414488303447" ], - "mAssetSupply": "276672716842932977286518500", + "mAssetSupply": "2795769025368842427211569419", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "159985253951823183872", - "expectedQty": "159771319729161943149", + "type": "redeem", + "inputIndex": 0, + "inputQty": "10369259842366123016192", + "expectedQty": "10356098935387620020331", + "swapFee": "6221555905419673809", "reserves": [ - "31454398356859255527443876", - "158660422119666568856517567", - "87175182110110069988912768" - ] + "860043079055231813334158322", + "1038774803667001691568633385", + "897017918875866414488303447" + ], + "mAssetSupply": "2795758662330555966508227036" }, { - "type": "redeemMasset", - "inputQty": "15973516915281009573888", - "expectedQtys": [ - "1815453105308622825033", - "9157401542347816821128", - "5031488864358830173736" - ], - "redemptionFee": "4792055074584302872", + "type": "mint", + "inputIndex": 0, + "inputQty": "5527957107353248071680", + "expectedQty": "5531661341487771612794", "reserves": [ - "31452582903753946904618843", - "158651264718124221039696439", - "87170150621245711158739032" - ], - "mAssetSupply": "276656907889392500023190633" + "860048607012339166582230002", + "1038774803667001691568633385", + "897017918875866414488303447" + ] }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2441736914251075813376", - "2933540657616824303616", - "1141116419954727321600" - ], - "expectedQty": "6554618533742051184402", - "swapFee": "3935132199564969692", - "reserves": [ - "31450141166839695828805467", - "158648331177466604215392823", - "87169009504825756431417432" + "576366420213272261165056", + "571068625611970326822912", + "326353287510705649483776" ], - "mAssetSupply": "276650353270858757972006231" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "4498801846693906087936", - "outputIndex": 0, - "expectedQty": "4374808797060587983379", - "swapFee": "2695669977210094432", + "expectedQty": "1473765533215956233850022", "reserves": [ - "31445766358042635240822088", - "158648331177466604215392823", - "87173508306672450337505368" + "860624973432552438843395058", + "1039345872292613661895456297", + "897344272163377120137787223" ], - "mAssetSupply": "276650355966528735182100663", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2797237959525113410513689852" }, { - "type": "redeemBassets", - "inputQtys": [ - "130925052896741559369728", - "197803285183751136477184", - "139897369308330813554688" + "type": "redeemMasset", + "inputQty": "32441509271013652063846", + "expectedQtys": [ + "9978270517714635687183", + "12050398948850114644150", + "10404001942281132889848" ], - "expectedQty": "470238320534795800167584", - "swapFee": "282312379748726716130", + "redemptionFee": "9732452781304095619", "reserves": [ - "31314841305145893681452360", - "158450527892282853078915639", - "87033610937364119523950680" + "860614995162034724207707875", + "1039333821893664811780812147", + "897333868161434839004897375" ], - "mAssetSupply": "276180117645993939381933079" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "42318514310075637760", - "expectedQty": "41962879854577176402", - "reserves": [ - "31314841305145893681452360", - "158450570210797163154553399", - "87033610937364119523950680" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "524083364142053720064", - "expectedQty": "537974559885051337049", - "reserves": [ - "31315365388510035735172424", - "158450570210797163154553399", - "87033610937364119523950680" - ] + "mAssetSupply": "2797205527748295178165721625" }, { "type": "mintMulti", "inputQtys": [ - "408249142441088890437632", - "640500108823447855955968", - "215375128551449052577792" + "2726157583862932176896", + "924460311888307945472", + "2711900317212760604672" ], - "expectedQty": "1269198775056627367248527", + "expectedQty": "6364332648297384437353", "reserves": [ - "31723614530951124625610056", - "159091070319620611010509367", - "87248986065915568576528472" + "860617721319618587139884771", + "1039334746353976700088757619", + "897336580061752051765502047" ], - "mAssetSupply": "277449896358490306377695057" + "mAssetSupply": "2797211892080943475550158978" }, { - "type": "mint", - "inputIndex": 1, - "inputQty": "85366214326166375890944", - "expectedQty": "84654295792213032445515", + "type": "redeemMasset", + "inputQty": "201734672968275375371059", + "expectedQtys": [ + "62049053245525387354607", + "74934242485220852781756", + "64696419625236986615976" + ], + "redemptionFee": "60520401890482612611", "reserves": [ - "31723614530951124625610056", - "159176436533946777386400311", - "87248986065915568576528472" - ] + "860555672266373061752530164", + "1039259812111491479235975863", + "897271883642126814778886071" + ], + "mAssetSupply": "2797010217928377090657400530" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "72003494000796328", - "expectedQty": "71910705535596093", + "inputIndex": 0, + "inputQty": "468922612710693117362176", + "expectedQty": "469235438164861975074239", "reserves": [ - "31723614530951124625610056", - "159176436533946777386400311", - "87248986137919062577324800" + "861024594879083754869892340", + "1039259812111491479235975863", + "897271883642126814778886071" ] }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "492229610550075974483968", - "expectedQty": "492554391959595439042240", - "swapFee": "295337766330045584690", - "reserves": [ - "31723614530951124625610056", - "159176436533946777386400311", - "86756431745959467138282560" - ], - "mAssetSupply": "277042616453409479016837387" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "147557176120977318215680", - "expectedQty": "148711298991853816847732", - "swapFee": "88534305672586390929", - "reserves": [ - "31723614530951124625610056", - "159027725234954923569552579", - "86756431745959467138282560" - ], - "mAssetSupply": "276895147811594174285012636" - }, - { - "type": "mintMulti", - "inputQtys": [ - "472573751483198380965888", - "636117973742528631930880", - "561013941059338222174208" + "type": "redeemMasset", + "inputQty": "8854670663363777160806", + "expectedQtys": [ + "2724524744863474880322", + "3288511258888671580053", + "2839221393201367343002" ], - "expectedQty": "1675863567755657288331689", + "redemptionFee": "2656401199009133148", "reserves": [ - "32196188282434323006575944", - "159663843208697452201483459", - "87317445687018805360456768" + "861021870354338891395012018", + "1039256523600232590564395810", + "897269044420733613411543069" ], - "mAssetSupply": "278571011379349831573344325" + "mAssetSupply": "2797470601352279787864447111" }, { "type": "swap", "inputIndex": 2, - "inputQty": "190224902576061353558016", + "inputQty": "53065124216973817806848", "outputIndex": 0, - "expectedQty": "185143612743165878959447", - "swapFee": "113995159495005030674", + "expectedQty": "53013906750726935091751", + "swapFee": "31848631823474115823", "reserves": [ - "32011044669691157127616497", - "159663843208697452201483459", - "87507670589594866714014784" + "860968856447588164459920267", + "1039256523600232590564395810", + "897322109544950587229349917" ], - "mAssetSupply": "278571125374509326578374999", + "mAssetSupply": "2797470633200911611338562934", "hardLimitError": false, "insufficientLiquidityError": false }, - { - "type": "redeemBassets", - "inputQtys": [ - "60009698008857", - "167552482800009", - "45282366009856" - ], - "expectedQty": "272941087472421", - "swapFee": "163862970265", - "reserves": [ - "32011044669631147429607640", - "159663843208529899718683450", - "87507670589549584348004928" - ], - "mAssetSupply": "278571125374236385490902578" - }, { "type": "swap", "inputIndex": 2, - "inputQty": "985112786652226438299648", + "inputQty": "18746047351964663751376896", "outputIndex": 1, - "expectedQty": "991374593893270555752123", - "swapFee": "590287607036173832229", + "expectedQty": "18754026390660833818213546", + "swapFee": "11250328008705721001061", "reserves": [ - "32011044669631147429607640", - "158672468614636629162931327", - "88492783376201810786304576" + "860968856447588164459920267", + "1020502497209571756746182264", + "916068156896915250980726813" ], - "mAssetSupply": "278571715661843421664734807", + "mAssetSupply": "2797481883528920317059563995", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "490889469809477113872384", - "431525818874893936099328", - "315615385481071793537024" - ], - "expectedQty": "1246752517689640356112067", - "swapFee": "748500610980372437129", + "type": "redeem", + "inputIndex": 0, + "inputQty": "8403018926381050363904", + "expectedQty": "8392344103884760940692", + "swapFee": "5041811355828630218", "reserves": [ - "31520155199821670315735256", - "158240942795761735226831999", - "88177167990720738992767552" + "860960464103484279698979575", + "1020502497209571756746182264", + "916068156896915250980726813" ], - "mAssetSupply": "277324963144153781308622740" + "mAssetSupply": "2797473485551805291837830309" }, { - "type": "redeemMasset", - "inputQty": "17108356529327358083072", - "expectedQtys": [ - "1943915432243842059896", - "9759057617687002645775", - "5438074671335677615838" - ], - "redemptionFee": "5132506958798207424", + "type": "redeem", + "inputIndex": 2, + "inputQty": "652477585154926848", + "expectedQty": "652002107810376578", + "swapFee": "391486551092956", "reserves": [ - "31518211284389426473675360", - "158231183738144048224186224", - "88171729916049403315151714" + "860960464103484279698979575", + "1020502497209571756746182264", + "916068156244913143170350235" ], - "mAssetSupply": "277307859920131412748747092" + "mAssetSupply": "2797473484899719193233996417" }, { "type": "mint", "inputIndex": 2, - "inputQty": "470735590267674452557824", - "expectedQty": "470034206562289997821236", + "inputQty": "25856045945411710976", + "expectedQty": "25859376714557406314", "reserves": [ - "31518211284389426473675360", - "158231183738144048224186224", - "88642465506317077767709538" + "860960464103484279698979575", + "1020502497209571756746182264", + "916068182100959088582061211" ] }, { - "type": "mintMulti", - "inputQtys": [ - "132968950118868647936", - "19126614688479023104", - "130502186833893982208" - ], - "expectedQty": "285743072285666781568", + "type": "mint", + "inputIndex": 2, + "inputQty": "93387706467432464384", + "expectedQty": "93399736613246123972", "reserves": [ - "31518344253339545342323296", - "158231202864758736703209328", - "88642596008503911661691746" - ], - "mAssetSupply": "277778179869765988413349896" + "860960464103484279698979575", + "1020502497209571756746182264", + "916068275488665556014525595" + ] }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "6721877914399365304156160", - "outputIndex": 0, - "expectedQty": "6481990262043605260877091", - "swapFee": "4025502002089006751640", + "inputQty": "4661424211641036701696", + "expectedQty": "4658027247359448200202", + "swapFee": "2796854526984622021", "reserves": [ - "25036353991295940081446205", - "158231202864758736703209328", - "95364473922903276965847906" + "860960464103484279698979575", + "1020502497209571756746182264", + "916063617461418196566325393" ], - "mAssetSupply": "277782205371768077420101536", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2797468945531475406985447028" }, { - "type": "redeemMasset", - "inputQty": "11936329113669317427", - "expectedQtys": [ - "1075491887604136714", - "6797170830307617508", - "4096591624538289274" + "type": "mintMulti", + "inputQtys": [ + "945488302155716230119424", + "171839947543486773854208", + "866908293922844068282368" ], - "redemptionFee": "3580898734100795", + "expectedQty": "1984854019001982451759118", "reserves": [ - "25036352915804052477309491", - "158231196067587906395591820", - "95364469826311652427558632" + "861905952405639995929098999", + "1020674337157115243520036472", + "916930525755341040634607761" ], - "mAssetSupply": "277782193439019862484884904" + "mAssetSupply": "2799453799550477389437206146" }, { - "type": "redeemMasset", - "inputQty": "869207376084431326412", - "expectedQtys": [ - "78317669756100702646", - "494972195048089582709", - "298315137170323160218" + "type": "mintMulti", + "inputQtys": [ + "764922019467271396655104", + "422708122170578603868160", + "705751320760760894750720" ], - "redemptionFee": "260762212825329397", + "expectedQty": "1893671273588850570110764", "reserves": [ - "25036274598134296376606845", - "158230701095392858306009111", - "95364171511174482104398414" + "862670874425107267325754103", + "1021097045279285822123904632", + "917636277076101801529358481" ], - "mAssetSupply": "277781324492405990878887889" + "mAssetSupply": "2801347470824066240007316910" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "56496010611701506048", - "90147045277809917952", - "189685593717005778944" + "44476939148107145216", + "21670261135282757632", + "8386970521127665664" ], - "expectedQty": "337200027841088909835", - "swapFee": "202441481593609511", + "expectedQty": "74548996360040257745", "reserves": [ - "25036218102123684675100797", - "158230610948347580496091159", - "95363981825580765098619470" + "862670918902046415432899319", + "1021097066949546957406662264", + "917636285463072322657024145" ], - "mAssetSupply": "277780987292378149789978054" + "mAssetSupply": "2801347545373062600047574655" }, { "type": "redeemMasset", - "inputQty": "1653533221247064", + "inputQty": "23184135391746001679155", "expectedQtys": [ - "148987154607445", - "941609008230860", - "567498183882027" + "7137379055860627187755", + "8448130868862565418395", + "7592139553165525672703" ], - "redemptionFee": "496059966374", + "redemptionFee": "6955240617523800503", "reserves": [ - "25036218101974697520493352", - "158230610947405971487860299", - "95363981825013266914737443" + "862663781522990554805711564", + "1021088618818678094841243869", + "917628693323519157131351442" ], - "mAssetSupply": "277780987290725112628697364" + "mAssetSupply": "2801324368192911471569696003" }, { - "type": "mintMulti", - "inputQtys": [ - "6949137754340725760", - "893984303378443648", - "3638311893163934720" - ], - "expectedQty": "11760584434562717788", + "type": "mint", + "inputIndex": 2, + "inputQty": "11606742308648892980264960", + "expectedQty": "11607797455956434986395063", "reserves": [ - "25036225051112451861219112", - "158230611841390274866303947", - "95363985463325160078672163" - ], - "mAssetSupply": "277780999051309547191415152" + "862663781522990554805711564", + "1021088618818678094841243869", + "929235435632168050111616402" + ] }, { "type": "redeem", - "inputIndex": 0, - "inputQty": "821431666396573440", - "expectedQty": "786865754373425931", - "swapFee": "492858999837944", - "reserves": [ - "25036224264246697487793181", - "158230611841390274866303947", - "95363985463325160078672163" - ], - "mAssetSupply": "277780998230370739794679656" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "2219508810566707183616", - "680393917701552078848", - "1364158499574824828928" - ], - "expectedQty": "4348526549290906972075", - "swapFee": "2610682338977930941", + "inputIndex": 1, + "inputQty": "26802483047815316504576", + "expectedQty": "26805157071658177448226", + "swapFee": "16081489828689189902", "reserves": [ - "25034004755436130780609565", - "158229931447472573314225099", - "95362621304825585253843235" + "862663781522990554805711564", + "1021061813661606436663795643", + "929235435632168050111616402" ], - "mAssetSupply": "277776649703821448887707581" + "mAssetSupply": "2812905379247309919928776392" }, { "type": "mint", "inputIndex": 0, - "inputQty": "8808544388372146159616", - "expectedQty": "9189902863261748391638", + "inputQty": "44105124253854801969807360", + "expectedQty": "44129494584065545095459569", "reserves": [ - "25042813299824502926769181", - "158229931447472573314225099", - "95362621304825585253843235" + "906768905776845356775518924", + "1021061813661606436663795643", + "929235435632168050111616402" ] }, { - "type": "mintMulti", - "inputQtys": [ - "85586440254755344220160", - "27944748387622423887872", - "28834291013032786001920" - ], - "expectedQty": "145675192624035372126967", + "type": "redeem", + "inputIndex": 1, + "inputQty": "27709829452619866701824", + "expectedQty": "27708974080434805217312", + "swapFee": "16625897671571920021", "reserves": [ - "25128399740079258270989341", - "158257876195860195738112971", - "95391455595838618039845155" + "906768905776845356775518924", + "1021034104687526001858578331", + "929235435632168050111616402" ], - "mAssetSupply": "277931514799308746008226186" + "mAssetSupply": "2857007180627820516729454158" }, { - "type": "redeemMasset", - "inputQty": "1518270103882022309068", - "expectedQtys": [ - "137228959450225146528", - "864263697640936613974", - "520943248565895398226" + "type": "redeemBassets", + "inputQtys": [ + "340715522567594048", + "1012549384255278848", + "415062162929142784" ], - "redemptionFee": "455481031164606692", + "expectedQty": "1767970306948012050", + "swapFee": "1061419035590161", "reserves": [ - "25128262511119808045842813", - "158257011932162554801498997", - "95390934652590052144446929" + "906768905436129834207924876", + "1021034103674976617603299483", + "929235435217105887182473618" ], - "mAssetSupply": "277929996984685895150523810" + "mAssetSupply": "2857007178859850209781442108" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "93326656351108876730368", - "expectedQty": "93595536279483010628510", - "swapFee": "55995993810665326038", + "type": "mint", + "inputIndex": 1, + "inputQty": "2329854223642137638993920", + "expectedQty": "2328514515644407354302936", "reserves": [ - "25128262511119808045842813", - "158257011932162554801498997", - "95297339116310569133818419" - ], - "mAssetSupply": "277836726324328596939119480" + "906768905436129834207924876", + "1023363957898618755242293403", + "929235435217105887182473618" + ] }, { "type": "redeemBassets", "inputQtys": [ - "17832222393550161920", - "13445419841605408768", - "16735837186619901952" + "4290036364850270720", + "2687022027253726720", + "2389374206018198528" ], - "expectedQty": "48586388279439347991", - "swapFee": "29169334568404651", + "expectedQty": "9367124862813282637", + "swapFee": "5623649107152260", "reserves": [ - "25128244678897414495680893", - "158256998486742713196090229", - "95297322380473382513916467" + "906768901146093469357654156", + "1023363955211596727988566683", + "929235432827731681164275090" ], - "mAssetSupply": "277836677737940317499771489" + "mAssetSupply": "2859335684008369754322462407" }, { "type": "redeemBassets", "inputQtys": [ - "142616637687249070194688", - "155291305928036769071104", - "242832687513624922554368" - ], - "expectedQty": "544484191040382443631451", - "swapFee": "326886646612196784249", - "reserves": [ - "24985628041210165425486205", - "158101707180814676427019125", - "95054489692959757591362099" + "1180541907425840452337664", + "1693518465045615354052608", + "107502248484841958932480" ], - "mAssetSupply": "277292193546899935056140038" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "29493719089958136840192", - "expectedQty": "29578793494023425543860", - "swapFee": "17696231453974882104", + "expectedQty": "2981092945654456065941240", + "swapFee": "1789729605155767099824", "reserves": [ - "24985628041210165425486205", - "158101707180814676427019125", - "95024910899465734165818239" + "905588359238667628905316492", + "1021670436746551112634514075", + "929127930579246839205342610" ], - "mAssetSupply": "277262717524041430894181950" + "mAssetSupply": "2856354591062715298256521167" }, { "type": "redeemMasset", - "inputQty": "68878719327413782917939", + "inputQty": "28576215556944864215040", "expectedQtys": [ - "6205168091170326128206", - "39264479041305264472793", - "23599388576790361265305" + "9057182449953156076079", + "10218169717990039274374", + "9292611925443051276671" ], - "redemptionFee": "20663615798224134875", + "redemptionFee": "8572864667083459264", "reserves": [ - "24979422873118995099357999", - "158062442701773371162546332", - "95001311510888943804552934" + "905579302056217675749240413", + "1021660218576833122595239701", + "929118637967321396154065939" ], - "mAssetSupply": "277193859468329815335398886" + "mAssetSupply": "2856326023420023020475765391" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "15811193217612477628416", - "50667431986393815973888", - "42659067621087459147776" + "179805598034794545152", + "61231724747005902848", + "168654181009532289024" ], - "expectedQty": "109161396033793373636948", - "swapFee": "65536159315865543508", + "expectedQty": "409763629236979022085", "reserves": [ - "24963611679901382621729583", - "158011775269786977346572444", - "94958652443267856345405158" + "905579481861815710543785565", + "1021660279808557869601142549", + "929118806621502405686354963" ], - "mAssetSupply": "277084698072296021961761938" + "mAssetSupply": "2856326433183652257454787476" }, { - "type": "redeemMasset", - "inputQty": "8179575032202572595", - "expectedQtys": [ - "736707868425190567", - "4663128061666150341", - "2802350370092150754" - ], - "redemptionFee": "2453872509660771", + "type": "redeem", + "inputIndex": 0, + "inputQty": "5864769736858821407539200", + "expectedQty": "5858707283830888979064736", + "swapFee": "3518861842115292844523", "reserves": [ - "24963610943193514196539016", - "158011770606658915680422103", - "94958649640917486253254404" + "899720774577984821564720829", + "1021660279808557869601142549", + "929118806621502405686354963" ], - "mAssetSupply": "277084689895174862268850114" + "mAssetSupply": "2850465182308635551340092799" }, { - "type": "redeemMasset", - "inputQty": "159603351936811547597209", - "expectedQtys": [ - "14374957713080854031818", - "90988940895149990002700", - "54680654020192234425316" + "type": "redeemBassets", + "inputQtys": [ + "102493581098877146103808", + "104350883486587827519488", + "21044054467974919094272" ], - "redemptionFee": "47881005581043464279", + "expectedQty": "227876811077608267962449", + "swapFee": "136808171549494657572", "reserves": [ - "24949235985480433342507198", - "157920781665763765690419403", - "94903968986897294018829088" + "899618280996885944418617021", + "1021555928925071281773623061", + "929097762567034430767260691" ], - "mAssetSupply": "276925134424243631764717184" + "mAssetSupply": "2850237305497557943072130350" }, { - "type": "redeemMasset", - "inputQty": "3464155561276830698700", - "expectedQtys": [ - "312005287486715465612", - "1974894899083405467637", - "1186831538433461391259" + "type": "redeem", + "inputIndex": 1, + "inputQty": "4253908412775608577163264", + "expectedQty": "4253831643561819326057588", + "swapFee": "2552345047665365146297", + "reserves": [ + "899618280996885944418617021", + "1017302097281509462447565473", + "929097762567034430767260691" ], - "redemptionFee": "1039246668383049209", + "mAssetSupply": "2845985949429829999860113383" + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "10366934417819805356654592", + "outputIndex": 0, + "expectedQty": "10349292943748828457286373", + "swapFee": "6216443977007645238514", "reserves": [ - "24948923980192946627041586", - "157918806770864682284951766", - "94902782155358860557437829" + "889268988053137115961330648", + "1027669031699329267804220065", + "929097762567034430767260691" ], - "mAssetSupply": "276921671307929023317067693" + "mAssetSupply": "2845992165873807007505351897", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "4172323875298184058109952", - "expectedQty": "4156832482769813797650629", + "inputIndex": 1, + "inputQty": "37623304859256266686464", + "expectedQty": "37598694948802639570515", "reserves": [ - "24948923980192946627041586", - "157918806770864682284951766", - "99075106030657044615547781" + "889268988053137115961330648", + "1027706655004188524070906529", + "929097762567034430767260691" ] }, { - "type": "redeemMasset", - "inputQty": "177828862129469687804723", - "expectedQtys": [ - "15779605026025809551835", - "99879914620921599038177", - "62662664021765372572920" + "type": "mintMulti", + "inputQtys": [ + "41735939459083243880448", + "78089369186107951939584", + "24127478910780312649728" ], - "redemptionFee": "53348658638840906341", + "expectedQty": "143928087687650531758544", "reserves": [ - "24933144375166920817489751", - "157818926856243760685913589", - "99012443366635279242974861" + "889310723992596199205211096", + "1027784744373374632022846113", + "929121890045945211079910419" ], - "mAssetSupply": "280900728277228006267819940" + "mAssetSupply": "2846173692656443460676680956" }, { "type": "mint", "inputIndex": 1, - "inputQty": "111414926552281726976", - "expectedQty": "110299705538579196219", + "inputQty": "91514134794351629404471296", + "expectedQty": "91433888830156539661730816", "reserves": [ - "24933144375166920817489751", - "157819038271170312967640565", - "99012443366635279242974861" + "889310723992596199205211096", + "1119298879167726261427317409", + "929121890045945211079910419" ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "10127710554320747364352", - "expectedQty": "10087726029100140781048", + "inputQty": "3758708788074020199202816", + "expectedQty": "3760206157763095179828457", "reserves": [ - "24933144375166920817489751", - "157819038271170312967640565", - "99022571077189599990339213" + "889310723992596199205211096", + "1119298879167726261427317409", + "932880598834019231279113235" ] }, - { - "type": "redeemBassets", - "inputQtys": [ - "5831480830317539885056", - "67940472968634729234432", - "16731682658543644704768" - ], - "expectedQty": "90016450649507160380042", - "swapFee": "54042295767164594985", - "reserves": [ - "24927312894336603277604695", - "157751097798201678238406133", - "99005839394531056345634445" - ], - "mAssetSupply": "280820909852313137827417165" - }, { "type": "mintMulti", "inputQtys": [ - "2190485884537303182868480", - "2013819831128538616954880", - "1634651793513400267440128" + "150533372843390306091008", + "332193091147085308231680", + "290490764924934141509632" ], - "expectedQty": "5904026526163543529195163", + "expectedQty": "773093314593169284619696", "reserves": [ - "27117798778873906460473175", - "159764917629330216855361013", - "100640491188044456613074573" + "889461257365439589511302104", + "1119631072258873346735549089", + "933171089598944165420622867" ], - "mAssetSupply": "286724936378476681356612328" + "mAssetSupply": "2942140880958956264802859925" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "38022756375258864", - "expectedQty": "36588135634482440", - "swapFee": "22813653825155", + "inputQty": "28834429640733944075780096", + "expectedQty": "28790557986433692026598728", + "swapFee": "17300657784440366445468", "reserves": [ - "27117798742285770825990735", - "159764917629330216855361013", - "100640491188044456613074573" + "860670699379005897484703376", + "1119631072258873346735549089", + "933171089598944165420622867" ], - "mAssetSupply": "286724936340476738635178619" + "mAssetSupply": "2913323751976006761093525297" }, { - "type": "mintMulti", - "inputQtys": [ - "2836927415744402432", - "1659248503555760640", - "1686069373845340416" - ], - "expectedQty": "6270276477801800257", - "reserves": [ - "27117801579213186570393167", - "159764919288578720411121653", - "100640492874113830458414989" + "type": "redeemMasset", + "inputQty": "1452415115809154452684", + "expectedQtys": [ + "428952023380319155414", + "558015991750903900350", + "465085691115428549411" ], - "mAssetSupply": "286724942610753216436978876" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "1337593368405778366464", - "outputIndex": 0, - "expectedQty": "1275143325306210571367", - "swapFee": "795086742736396054", + "redemptionFee": "435724534742746335", "reserves": [ - "27116526435887880359821800", - "159766256881947126189488117", - "100640492874113830458414989" + "860670270426982517165547962", + "1119630514242881595831648739", + "933170624513253049992073456" ], - "mAssetSupply": "286724943405839959173374930", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2913322299996615486681818948" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "1374823766226139235745792", - "2532546831412938386964480", - "2312931260297977595428864" + "493502423754829560020992", + "280413215754927072083968", + "1077331361847383871717376" ], - "expectedQty": "6242765827963841895194309", - "swapFee": "3747908241723339140600", + "expectedQty": "1851739720597497825357797", "reserves": [ - "25741702669661741124076008", - "157233710050534187802523637", - "98327561613815852862986125" + "861163772850737346725568954", + "1119910927458636522903732707", + "934247955875100433863790832" ], - "mAssetSupply": "280482177577876117278180621" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "35164381962740393050112", - "expectedQty": "34824304086256726240945", - "reserves": [ - "25741702669661741124076008", - "157268874432496928195573749", - "98327561613815852862986125" - ] + "mAssetSupply": "2915174039717212984507176745" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "24821762072354748", - "outputIndex": 1, - "expectedQty": "26083676909838525", - "swapFee": "15508134538624", - "reserves": [ - "25741702694483503196430756", - "157268874406413251285735224", - "98327561613815852862986125" + "type": "mintMulti", + "inputQtys": [ + "11957241588595558616924160", + "4760810069816747709431808", + "17998769383217967759622144" ], - "mAssetSupply": "280517001881977882138960190", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "66111641829383524581376", - "expectedQty": "63445284565613566251518", - "swapFee": "39666985097630114748", + "expectedQty": "34728276255032546079931819", "reserves": [ - "25678257409917889630179238", - "157268874406413251285735224", - "98327561613815852862986125" + "873121014439332905342493114", + "1124671737528453270613164515", + "952246725258318401623412976" ], - "mAssetSupply": "280450929907133596244493562" + "mAssetSupply": "2949902315972245530587108564" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "540743615556720394240", - "expectedQty": "542430187130784969279", - "swapFee": "324446169334032236", - "reserves": [ - "25678257409917889630179238", - "157268874406413251285735224", - "98327019183628722078016846" + "type": "redeemMasset", + "inputQty": "12312240308010969622118", + "expectedQtys": [ + "3643120881270622351590", + "4692723029001742832731", + "3973275034661528225778" ], - "mAssetSupply": "280450389487964208858131558" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "5672278438181680418127872", - "expectedQty": "5688149072050308407829471", - "swapFee": "3403367062909008250876", + "redemptionFee": "3693672092403290886", "reserves": [ - "25678257409917889630179238", - "157268874406413251285735224", - "92638870111578413670187375" + "873117371318451634720141524", + "1124667044805424268870331784", + "952242751983283740095187198" ], - "mAssetSupply": "274781514416845437448254562" + "mAssetSupply": "2949890007425609612020777332" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "1737200640950377176367104", - "expectedQty": "1753351186866504305795202", - "swapFee": "1042320384570226305820", + "type": "mintMulti", + "inputQtys": [ + "15952445617317989056512", + "10480146155853938950144", + "20118482323989065629696" + ], + "expectedQty": "46560284299109191342463", "reserves": [ - "25678257409917889630179238", - "155515523219546746979940022", - "92638870111578413670187375" + "873133323764068952709198036", + "1124677524951580122809281928", + "952262870465607729160816894" ], - "mAssetSupply": "273045356096279630498193278" + "mAssetSupply": "2949936567709908721212119795" }, { "type": "redeemMasset", - "inputQty": "137357165004897987120332", + "inputQty": "566067456862874448691", "expectedQtys": [ - "12913731852875677345377", - "78209581505371693899412", - "46588579149932593495640" + "167496511547335400970", + "215751199636933505785", + "182676235733891672855" ], - "redemptionFee": "41207149501469396136", + "redemptionFee": "169820237058862334", "reserves": [ - "25665343678065013952833861", - "155437313638041375286040610", - "92592281532428481076691735" + "873133156267557405373797066", + "1124677309200380485875776143", + "952262687789371995269144039" ], - "mAssetSupply": "272908040138424233980469082" + "mAssetSupply": "2949936001812272095396533438" }, { "type": "mintMulti", "inputQtys": [ - "478005947208570880", - "435516412665230208", - "481566996622493120" + "2524655759026925101645824", + "1647226251826571350376448", + "403589269812461053149184" ], - "expectedQty": "1408250517170475592", + "expectedQty": "4576295190114795244712404", "reserves": [ - "25665344156070961161404741", - "155437314073557787951270818", - "92592282013995477699184855" + "875657812026584330475442890", + "1126324535452207057226152591", + "952666277059184456322293223" ], - "mAssetSupply": "272908041546674751150944674" + "mAssetSupply": "2954512297002386890641245842" }, { "type": "redeemMasset", - "inputQty": "83728749785074699442585", + "inputQty": "1470065356231524950317465", "expectedQtys": [ - "7871818245672259080583", - "47674181867266857069840", - "28398980763084442794806" + "435566991010810005903480", + "560252854563321454233668", + "473872302670146283964159" ], - "redemptionFee": "25118624935522409832", + "redemptionFee": "441019606869457485095", "reserves": [ - "25657472337825288902324158", - "155389639891690521094200978", - "92563883033232393256390049" + "875222245035573520469539410", + "1125764282597643735771918923", + "952192404756514310038329064" ], - "mAssetSupply": "272824337915514611973911921" + "mAssetSupply": "2953042672665762235148413472" }, { "type": "mint", "inputIndex": 2, - "inputQty": "28943187263100981248", - "expectedQty": "28852910527406904560", + "inputQty": "20502411649094904709120", + "expectedQty": "20507288285690730125499", "reserves": [ - "25657472337825288902324158", - "155389639891690521094200978", - "92563911976419656357371297" + "875222245035573520469539410", + "1125764282597643735771918923", + "952212907168163404943038184" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "15501763684015328460800", - "expectedQty": "15644737513309947727306", - "swapFee": "9301058210409197076", + "type": "redeemBassets", + "inputQtys": [ + "4579642886530762534813696", + "4402107815590931027984384", + "6466354438924164602527744" + ], + "expectedQty": "15449401366701942009358657", + "swapFee": "9275205943587317596172", "reserves": [ - "25657472337825288902324158", - "155373995154177211146473672", - "92563911976419656357371297" + "870642602149042757934725714", + "1121362174782052804743934539", + "945746552729239240340510440" ], - "mAssetSupply": "272808874305799334461552757" + "mAssetSupply": "2937613778587345983869180314" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "654137628246011830861824", + "expectedQty": "654300384475535704414792", + "reserves": [ + "870642602149042757934725714", + "1121362174782052804743934539", + "946400690357485252171372264" + ] }, { "type": "redeemMasset", - "inputQty": "66879397243601259855872", + "inputQty": "60966720496124853800140", "expectedQtys": [ - "6288070731672078658618", - "38078679712794780602348", - "22685337746614875191700" + "18059720448841742808530", + "23260391058835752553241", + "19631168815147337887680" ], - "redemptionFee": "20063819173080377956", + "redemptionFee": "18290016148837456140", "reserves": [ - "25651184267093616823665540", - "155335916474464416365871324", - "92541226638673041482179597" + "870624542428593916191917184", + "1121338914390993968991381298", + "946381059188670104833484584" ], - "mAssetSupply": "272742014972374906282074841" + "mAssetSupply": "2938207130541341543557251106" }, { - "type": "mintMulti", - "inputQtys": [ - "1691490636556460837830656", - "459497483677169700831232", - "346871821515957272051712" - ], - "expectedQty": "2555450733968480846183616", + "type": "mint", + "inputIndex": 0, + "inputQty": "400564917497759776374784", + "expectedQty": "400966251577836406277865", + "reserves": [ + "871025107346091675968291968", + "1121338914390993968991381298", + "946381059188670104833484584" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "768266823717736010481664", + "outputIndex": 0, + "expectedQty": "766182825613406928930152", + "swapFee": "460448234833102452937", "reserves": [ - "27342674903650077661496196", - "155795413958141586066702556", - "92888098460188998754231309" + "870258924520478269039361816", + "1122107181214711705001862962", + "946381059188670104833484584" ], - "mAssetSupply": "275297465706343387128258457" + "mAssetSupply": "2938608557241154213065981908", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "91391636142779138048", - "4783029655673032933376", - "3910103723428428644352" + "58387707269864210038784", + "61914888954005967339520", + "31122188754728240807936" ], - "expectedQty": "8732992142711135194471", - "swapFee": "5242941050256835217", + "expectedQty": "151422366793307970371471", "reserves": [ - "27342583512013934882358148", - "155790630928485913033769180", - "92884188356465570325586957" + "870317312227748133249400600", + "1122169096103665710969202482", + "946412181377424833074292520" ], - "mAssetSupply": "275288732714200675993063986" + "mAssetSupply": "2938759979607947521036353379" }, { - "type": "redeemMasset", - "inputQty": "1987399347562902192128", - "expectedQtys": [ - "197335829574504850998", - "1124366078307860693676", - "670360149238422713104" - ], - "redemptionFee": "596219804268870657", + "type": "redeem", + "inputIndex": 0, + "inputQty": "9660380640224007421952", + "expectedQty": "9644859479437854667268", + "swapFee": "5796228384134404453", "reserves": [ - "27342386176184360377507150", - "155789506562407605173075504", - "92883517996316331902873853" + "870307667368268695394733332", + "1122169096103665710969202482", + "946412181377424833074292520" ], - "mAssetSupply": "275286745911072917359742515" + "mAssetSupply": "2938750325023535681163335880" }, { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "1637944388884312883200", - "expectedQty": "1641542336454635985099", - "swapFee": "982766633330587729", + "inputQty": "10077779398691127296", + "outputIndex": 1, + "expectedQty": "10085468403767577409", + "swapFee": "6048165748211498", "reserves": [ - "27342386176184360377507150", - "155789506562407605173075504", - "92881876453979877266888754" + "870307667368268695394733332", + "1122169086018197307201625073", + "946412191455204231765419816" ], - "mAssetSupply": "275285108949450666377447044" + "mAssetSupply": "2938750325029583846911547378", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "29846782166005822259", - "expectedQtys": [ - "2963608974490378770", - "16885840789635472102", - "10067356991186157290" + "type": "mintMulti", + "inputQtys": [ + "1886145867884290906259456", + "1712593760507737445236736", + "2148870562561866009149440" ], - "redemptionFee": "8954034649801746", + "expectedQty": "5748134378904688339159524", "reserves": [ - "27342383212575385887128380", - "155789489676566815537603402", - "92881866386622886080731464" + "872193813236152986300992788", + "1123881679778705044646861809", + "948561062017766097774569256" ], - "mAssetSupply": "275285079111622535021426531" + "mAssetSupply": "2944498459408488535250706902" }, { "type": "mintMulti", "inputQtys": [ - "15764244562134209396736", - "26390813554641645600768", - "18517603407071291637760" + "779322434313942158278656", + "83968220611981709672448", + "4415267923260008891940864" ], - "expectedQty": "60931302984679258364915", + "expectedQty": "5280283238391915314809587", "reserves": [ - "27358147457137520096525116", - "155815880490121457183204170", - "92900383990029957372369224" + "872973135670466928459271444", + "1123965647999317026356534257", + "952976329941026106666510120" ], - "mAssetSupply": "275346010414607214279791446" + "mAssetSupply": "2949778742646880450565516489" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "6197246470142664704", - "expectedQty": "6414178204868464756", + "inputIndex": 1, + "inputQty": "11255668249792154198605824", + "expectedQty": "11243029292601605177273362", "reserves": [ - "27358153654383990239189820", - "155815880490121457183204170", - "92900383990029957372369224" + "872973135670466928459271444", + "1135221316249109180555140081", + "952976329941026106666510120" ] }, { "type": "redeemMasset", - "inputQty": "123300152848409808810803", + "inputQty": "1272455365659174707", "expectedQtys": [ - "12247326424825594939910", - "69753535806621678794995", - "41588381368536377031159" + "375034765120169672", + "487698237554479815", + "409404641976779469" ], - "redemptionFee": "36990045854522942643", + "redemptionFee": "381736609697752", "reserves": [ - "27345906327959164644249910", - "155746126954314835504409175", - "92858795608661420995338065" + "872973135295432163339101772", + "1135221315761410943000660266", + "952976329531621464689730651" ], - "mAssetSupply": "275222753665982863862388042" + "mAssetSupply": "2961021770667408426693312896" }, { - "type": "mintMulti", - "inputQtys": [ - "27849522682189976698880", - "492402572932924038971392", - "301132362927198707908608" + "type": "redeemMasset", + "inputQty": "74409409346196192047923", + "expectedQtys": [ + "21930918843998068205554", + "28519143991200526506179", + "23940767130406913718055" ], - "expectedQty": "817005568711859258316946", + "redemptionFee": "22322822803858857614", "reserves": [ - "27373755850641354620948790", - "156238529527247759543380567", - "93159927971588619703246673" + "872951204376588165270896218", + "1135192796617419742474154087", + "952952388764491057776012596" ], - "mAssetSupply": "276039759234694723120704988" + "mAssetSupply": "2960947383580885034360122587" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "156634917731430629376", - "expectedQty": "151224497398792751008", - "swapFee": "93980950638858377", - "reserves": [ - "27373604626143955828197782", - "156238529527247759543380567", - "93159927971588619703246673" + "type": "redeemBassets", + "inputQtys": [ + "128004702802286832", + "436603725655297024", + "115694796484906848" ], - "mAssetSupply": "276039602693757942328933989" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "744957705208394489528320", - "expectedQty": "746570195037523988861977", - "swapFee": "446974623125036693716", + "expectedQty": "679965163468545467", + "swapFee": "408224032500627", "reserves": [ - "27373604626143955828197782", - "156238529527247759543380567", - "92413357776551095714384696" + "872951204248583462468609386", + "1135192796180816016818857063", + "952952388648796261291105748" ], - "mAssetSupply": "275295091963172672876099385" + "mAssetSupply": "2960947382900919870891577120" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "622158874606743081451520", - "expectedQty": "627545044018169657567820", - "swapFee": "373295324764045848870", - "reserves": [ - "27373604626143955828197782", - "155610984483229589885812747", - "92413357776551095714384696" + "type": "mintMulti", + "inputQtys": [ + "3464158335187128160354304", + "53695959077579294507008", + "3152946320993652064649216" ], - "mAssetSupply": "274673306383890693840496735" - }, - { - "type": "swap", - "inputIndex": 2, - "inputQty": "11734937482044342", - "outputIndex": 1, - "expectedQty": "11803842777058419", - "swapFee": "7021691879826", + "expectedQty": "6675124492004940394273874", "reserves": [ - "27373604626143955828197782", - "155610984471425747108754328", - "92413357788286033196429038" + "876415362583770590628963690", + "1135246492139893596113364071", + "956105334969789913355754964" ], - "mAssetSupply": "274673306383897715532376561", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2967622507392924811285850994" }, { - "type": "redeemMasset", - "inputQty": "5009336280623692015206", - "expectedQtys": [ - "499074538813619989335", - "2837093666328377336646", - "1684876893208195238402" + "type": "redeemBassets", + "inputQtys": [ + "785556793162553491456", + "42507442549286510592", + "768382075499837521920" ], - "redemptionFee": "1502800884187107604", + "expectedQty": "1597396864864729509098", + "swapFee": "959013527035058740", "reserves": [ - "27373105551605142208208447", - "155608147377759418731417682", - "92411672911392825001190636" + "876414577026977428075472234", + "1135246449632451046826853479", + "956104566587714413518233044" ], - "mAssetSupply": "274668298550417976027468959" + "mAssetSupply": "2967620909996059946556341896" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "3843794254279844953063424", - "expectedQty": "3832450353739594484452769", + "inputIndex": 1, + "inputQty": "1490265388343462853607424", + "expectedQty": "1488576493924008483137576", "reserves": [ - "27373105551605142208208447", - "155608147377759418731417682", - "96255467165672669954254060" + "876414577026977428075472234", + "1136736715020794509680460903", + "956104566587714413518233044" ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "117546269955457952", - "1193575137280098816", - "1428621869088088832" + "12851656053433071616", + "13798417026826426368", + "8768040920204741632" ], - "expectedQty": "2728628626901349504", + "expectedQty": "35417934995663468759", + "swapFee": "21263519108863399", "reserves": [ - "27373105669151412163666399", - "155608148571334556011516498", - "96255468594294539042342892" + "876414564175321374642400618", + "1136736701222377482854034535", + "956104557819673493313491412" ], - "mAssetSupply": "278500751632786197413271232" + "mAssetSupply": "2969109451072048959376010713" }, { - "type": "mintMulti", - "inputQtys": [ - "334903273159270370115584", - "404730571468744704393216", - "34950971176762805846016" + "type": "redeemMasset", + "inputQty": "4542429372411773819289", + "expectedQtys": [ + "1340421095593101314747", + "1738567473359079250478", + "1462301941661744954953" ], - "expectedQty": "782629137137354216191744", + "redemptionFee": "1362728811723532145", "reserves": [ - "27708008942310682533781983", - "156012879142803300715909714", - "96290419565471301848188908" + "876413223754225781541085871", + "1136734962654904123774784057", + "956103095517731831568536459" ], - "mAssetSupply": "279283380769923551629462976" + "mAssetSupply": "2969104910005405359325723569" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "181410146553056857161728", - "outputIndex": 1, - "expectedQty": "189262005812395752756776", - "swapFee": "112615537700451792719", + "type": "redeemBassets", + "inputQtys": [ + "961503011541774411759616", + "1450537686125268845985792", + "163094113161857281818624" + ], + "expectedQty": "2574527464552088637146065", + "swapFee": "1545643865050283352299", "reserves": [ - "27889419088863739390943711", - "155823617136990904963152938", - "96290419565471301848188908" + "875451720742684007129326255", + "1135284424968778854928798265", + "955940001404569974286717835" ], - "mAssetSupply": "279283493385461252081255695", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2966530382540853270688577504" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "219215039510738632704", - "expectedQty": "226744177117792099664", + "inputIndex": 1, + "inputQty": "12192987573661772002885632", + "expectedQty": "12178835767252261001786082", "reserves": [ - "27889638303903250129576415", - "155823617136990904963152938", - "96290419565471301848188908" + "875451720742684007129326255", + "1147477412542440626931683897", + "955940001404569974286717835" ] }, { "type": "mint", - "inputIndex": 0, - "inputQty": "305515640424183132848128", - "expectedQty": "315895301637310167897417", + "inputIndex": 2, + "inputQty": "5869441158541675520", + "expectedQty": "5871040200234301956", "reserves": [ - "28195153944327433262424543", - "155823617136990904963152938", - "96290419565471301848188908" + "875451720742684007129326255", + "1147477412542440626931683897", + "955940007274011132828393355" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "719587308372088108089344", - "expectedQty": "717405531961310370912882", + "type": "redeemBassets", + "inputQtys": [ + "508506835409995621728256", + "484786680492515127197696", + "457201214964989710827520" + ], + "expectedQty": "1450591039323922492160798", + "swapFee": "870877149884284065735", "reserves": [ - "28195153944327433262424543", - "155823617136990904963152938", - "97010006873843389956278252" - ] + "874943213907274011507597999", + "1146992625861948111804486201", + "955482806059046143117565835" + ], + "mAssetSupply": "2977258633139821809432504744" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "18395977071491620536320", - "expectedQty": "18339492775457436151444", + "type": "mintMulti", + "inputQtys": [ + "2356739632230156690522112", + "3266664610475781417598976", + "3970457530803715053715456" + ], + "expectedQty": "9593595242150670488421931", "reserves": [ - "28195153944327433262424543", - "155823617136990904963152938", - "97028402850914881576814572" - ] + "877299953539504168198120111", + "1150259290472423893222085177", + "959453263589849858171281291" + ], + "mAssetSupply": "2986852228381972479920926675" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "269079110121119398494208", - "expectedQty": "268248897999090634891532", + "type": "redeemBassets", + "inputQtys": [ + "4250045084719368372224", + "10192003442662149455872", + "11851376809520431890432" + ], + "expectedQty": "26289075872312043501991", + "swapFee": "15782915272550756555", "reserves": [ - "28195153944327433262424543", - "155823617136990904963152938", - "97297481961036000975308780" - ] + "877295703494419448829747887", + "1150249098468981231072629305", + "959441412213040337739390859" + ], + "mAssetSupply": "2986825939306100167877424684" + }, + { + "type": "redeemBassets", + "inputQtys": [ + "83482297748895773491200", + "27713271602481851269120", + "36825620606433376600064" + ], + "expectedQty": "148088461276069599081379", + "swapFee": "88906420618012566989", + "reserves": [ + "877212221196670553056256687", + "1150221385197378749221360185", + "959404586592433904362790795" + ], + "mAssetSupply": "2986677850844824098278343305" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "328087242871868227584", - "expectedQty": "330786290964318486392", - "swapFee": "196852345723120936", + "inputIndex": 0, + "inputQty": "3852215698278870989930496", + "expectedQty": "3845683890419277529587532", + "swapFee": "2311329418967322593958", "reserves": [ - "28195153944327433262424543", - "155823286350699940644666546", - "97297481961036000975308780" + "873366537306251275526669155", + "1150221385197378749221360185", + "959404586592433904362790795" ], - "mAssetSupply": "280603281463621012338101986" + "mAssetSupply": "2982827946475964194611006767" }, { - "type": "mintMulti", - "inputQtys": [ - "240851683184066275835904", - "1848882275879680257032192", - "651439295646109276307456" + "type": "redeemMasset", + "inputQty": "583310510896720637853696", + "expectedQtys": [ + "170741007208807942209380", + "224865448162740143556734", + "187561233958865650637120" ], - "expectedQty": "2731095331289630254092587", + "redemptionFee": "174993153269016191356", "reserves": [ - "28436005627511499538260447", - "157672168626579620901698738", - "97948921256682110251616236" + "873195796299042467584459775", + "1149996519749216009077803451", + "959217025358475038712153675" ], - "mAssetSupply": "283334376794910642592194573" + "mAssetSupply": "2982244810958220742989344427" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "682962927076203879727104", - "expectedQty": "684627813363008777387630", - "swapFee": "409777756245722327836", + "inputQty": "20404366124724522166779904", + "expectedQty": "20385714010749214606593160", + "swapFee": "12242619674834713300067", "reserves": [ - "28436005627511499538260447", - "157672168626579620901698738", - "97264293443319101474228606" + "873195796299042467584459775", + "1149996519749216009077803451", + "938831311347725824105560515" ], - "mAssetSupply": "282651823645590684434795305" + "mAssetSupply": "2961852687453171055535864590" }, { - "type": "redeemBassets", - "inputQtys": [ - "2160151116065072742400", - "2774324527873822031872", - "5175204755846177226752" - ], - "expectedQty": "10142723994165660782752", - "swapFee": "6089287969280965048", + "type": "swap", + "inputIndex": 1, + "inputQty": "605022374953686537338880", + "outputIndex": 2, + "expectedQty": "603672027691943696974395", + "swapFee": "362558962349238428764", "reserves": [ - "28433845476395434465518047", - "157669394302051747079666866", - "97259118238563255297001854" + "873195796299042467584459775", + "1150601542124169695615142331", + "938227639320033880408586120" ], - "mAssetSupply": "282641680921596518774012553" + "mAssetSupply": "2961853050012133404774293354", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "18471002643984043181342720", + "expectedQty": "18477017931901931529275902", + "reserves": [ + "873195796299042467584459775", + "1150601542124169695615142331", + "956698641964017923589928840" + ] }, { "type": "redeemMasset", - "inputQty": "107490564588894001561", + "inputQty": "597026328239345588659814", "expectedQtys": [ - "10810341852968161761", - "59944760323417380639", - "36977211448586876838" + "174868042113852797838419", + "230421905118204835269193", + "191590499086571381310577" ], - "redemptionFee": "32247169376668200", + "redemptionFee": "179107898471803676597", "reserves": [ - "28433834666053581497356286", - "157669334357291423662286227", - "97259081261351806710125016" + "873020928256928614786621356", + "1150371120219051490779873138", + "956507051464931352208618263" ], - "mAssetSupply": "282641573463279099256679192" + "mAssetSupply": "2979733220723694462518586039" }, { - "type": "mintMulti", - "inputQtys": [ - "1734856654963571463028736", - "785929766974649605816320", - "2288543632666975182782464" - ], - "expectedQty": "4851701485435601908970017", + "type": "redeem", + "inputIndex": 0, + "inputQty": "15420083695968530432", + "expectedQty": "15393814518021598707", + "swapFee": "9252050217581118", "reserves": [ - "30168691321017152960385022", - "158455264124266073268102547", - "99547624894018781892907480" + "873020912863114096765022649", + "1150371120219051490779873138", + "956507051464931352208618263" ], - "mAssetSupply": "287493274948714701165649209" + "mAssetSupply": "2979733205312862816767636725" + }, + { + "type": "mint", + "inputIndex": 2, + "inputQty": "15742506809503122037145600", + "expectedQty": "15745983374962773494563911", + "reserves": [ + "873020912863114096765022649", + "1150371120219051490779873138", + "972249558274434474245763863" + ] }, { "type": "redeemMasset", - "inputQty": "24079699854524048159539", + "inputQty": "76266872637492507443", "expectedQtys": [ - "2526094205973426631893", - "13267825254701903121442", - "8335352560951542288551" + "22221019010959999378", + "29280419466944626065", + "24746687736220521585" ], - "redemptionFee": "7223909956357214447", + "redemptionFee": "22880061791247752", "reserves": [ - "30166165226811179533753129", - "158441996299011371364981105", - "99539289541457830350618929" + "873020890642095085805023271", + "1150371090938632023835247073", + "972249533527746738025242278" ], - "mAssetSupply": "287469202472770133474704117" + "mAssetSupply": "2995479112443833014560940945" }, { "type": "mint", "inputIndex": 2, - "inputQty": "357647765444830836031488", - "expectedQty": "356610235525936931997435", + "inputQty": "8010550253737601925120", + "expectedQty": "8011940917409890563846", "reserves": [ - "30166165226811179533753129", - "158441996299011371364981105", - "99896937306902661186650417" + "873020890642095085805023271", + "1150371090938632023835247073", + "972257544078000475627167398" ] }, { "type": "redeemBassets", "inputQtys": [ - "70212875899286082027520", - "11791600110529526366208", - "36537493605540559847424" + "8715017673442062336", + "3999532350769128448", + "13656585699639230464" ], - "expectedQty": "120497677518764573391904", - "swapFee": "72342011718289717865", + "expectedQty": "26378926204514881092", + "swapFee": "15836857837411375", "reserves": [ - "30095952350911893451725609", - "158430204698900841838614897", - "99860399813297120626802993" + "873020881927077412362960935", + "1150371086939099673066118625", + "972257530421414775987936934" ], - "mAssetSupply": "287705315030777305833309648" + "mAssetSupply": "2995487098005824219936623699" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "140244726764320669696", - "outputIndex": 0, - "expectedQty": "134837584986195092280", - "swapFee": "83447374135645702", + "inputIndex": 0, + "inputQty": "3337742324428977395990528", + "outputIndex": 2, + "expectedQty": "3338907889814790197840599", + "swapFee": "2004937121993295906587", "reserves": [ - "30095817513326907256633329", - "158430344943627606159284593", - "99860399813297120626802993" + "876358624251506389758951463", + "1150371086939099673066118625", + "968918622531599985790096335" ], - "mAssetSupply": "287705315114224679968955350", + "mAssetSupply": "2995489102942946213232530286", "hardLimitError": false, "insufficientLiquidityError": false }, + { + "type": "redeemBassets", + "inputQtys": [ + "673168355047561603579904", + "98716747895274001661952", + "484637846459007411159040" + ], + "expectedQty": "1257262637139148852766182", + "swapFee": "754810468564628088512", + "reserves": [ + "875685455896458828155371559", + "1150272370191204399064456673", + "968433984685140978378937295" + ], + "mAssetSupply": "2994231840305807064379764104" + }, { "type": "swap", - "inputIndex": 0, - "inputQty": "22618323308061652942848", - "outputIndex": 1, - "expectedQty": "23496430015312373272658", - "swapFee": "13989163882434776194", + "inputIndex": 2, + "inputQty": "748593196350251057807360", + "outputIndex": 0, + "expectedQty": "747451461988265057637359", + "swapFee": "449246903049876456631", "reserves": [ - "30118435836634968909576177", - "158406848513612293786011935", - "99860399813297120626802993" + "874938004434470563097734200", + "1150272370191204399064456673", + "969182577881491229436744655" ], - "mAssetSupply": "287705329103388562403731544", + "mAssetSupply": "2994232289552710114256220735", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "156183793693711694561280", - "expectedQty": "157396317285679630159003", - "swapFee": "93710276216227016736", + "type": "mint", + "inputIndex": 2, + "inputQty": "9953579990190562440380416", + "expectedQty": "9955255525410784738624617", "reserves": [ - "30118435836634968909576177", - "158249452196326614155852932", - "99860399813297120626802993" - ], - "mAssetSupply": "287549239019971066936187000" + "874938004434470563097734200", + "1150272370191204399064456673", + "979136157871681791877125071" + ] }, { "type": "redeemMasset", - "inputQty": "13271287013659482521", + "inputQty": "128231707564835869609164", "expectedQtys": [ - "1389641977945906719", - "7301510707653314145", - "4607483744100158120" + "37334931391837875255660", + "49083866291502248564230", + "41781224603491181827470" ], - "redemptionFee": "3981386104097844", + "redemptionFee": "38469512269450760882", "reserves": [ - "30118434446992990963669458", - "158249444894815906502538787", - "99860395205813376526644873" + "874900669503078725222478540", + "1150223286324912896815892443", + "979094376647078300695297601" ], - "mAssetSupply": "287549225752665439380802323" + "mAssetSupply": "3004059351840068332575997070" }, { - "type": "redeemBassets", - "inputQtys": [ - "6693320073470389", - "4969727890226080", - "7232763735341721" + "type": "redeemMasset", + "inputQty": "36061561424829014133964", + "expectedQtys": [ + "10499399464035062014371", + "13803456983087771077423", + "11749794384369141987793" ], - "expectedQty": "19039167595490503", - "swapFee": "11430358772557", + "redemptionFee": "10818468427448704240", "reserves": [ - "30118434440299670890199069", - "158249444889846178612312707", - "99860395198580612791303152" + "874890170103614690160464169", + "1150209482867929809044815020", + "979082626852693931553309808" ], - "mAssetSupply": "287549225733626271785311820" + "mAssetSupply": "3004023301097111931010567346" }, { "type": "redeemBassets", "inputQtys": [ - "50263663743428824", - "2309261038913002496", - "2050691189034958080" + "2186664535369423685419008", + "1078964345206652589309952", + "1409581897805136715055104" ], - "expectedQty": "4386603390677412878", - "swapFee": "2633542159702269", + "expectedQty": "4676726194822946384276862", + "swapFee": "2807720349103229768427", "reserves": [ - "30118434390036007146770245", - "158249442580585139699310211", - "99860393147889423756345072" + "872703505568245266475045161", + "1149130518522723156455505068", + "977673044954888794838254704" ], - "mAssetSupply": "287549221347022881107898942" + "mAssetSupply": "2999346574902288984626290484" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "1251112398498420481851392", - "1653331888222961181655040", - "730098016819108028350464" + "7488684824043738233831424", + "1719731194948013680230400", + "312989697397002604642304" ], - "expectedQty": "3656236418191095020964722", + "expectedQty": "9528434997039573997690227", + "swapFee": "5720493294200264557348", "reserves": [ - "31369546788534427628621637", - "159902774468808100880965251", - "100590491164708531784695536" + "865214820744201528241213737", + "1147410787327775142775274668", + "977360055257491792233612400" ], - "mAssetSupply": "291205457765213976128863664" + "mAssetSupply": "2989818139905249410628600257" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "686201594306068045889536", - "expectedQty": "691341217532706942133357", - "swapFee": "411720956583640827533", + "type": "redeemBassets", + "inputQtys": [ + "2613989330598517276672", + "436795927522540978176", + "1341460254270812323840" + ], + "expectedQty": "4395086356482595429702", + "swapFee": "2638634994886489151", "reserves": [ - "31369546788534427628621637", - "159211433251275393938831894", - "100590491164708531784695536" + "865212206754870929723937065", + "1147410350531847620234296492", + "977358713797237521421288560" ], - "mAssetSupply": "290519667891864491723801661" + "mAssetSupply": "2989813744818892928033170555" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "27622365111417430867968", - "expectedQty": "26834982039880635545896", - "swapFee": "16573419066850458520", + "type": "mint", + "inputIndex": 2, + "inputQty": "213236216286641674780672", + "expectedQty": "213259630669970340226299", "reserves": [ - "31342711806494546993075741", - "159211433251275393938831894", - "100590491164708531784695536" - ], - "mAssetSupply": "290492062100172141143392213" + "865212206754870929723937065", + "1147410350531847620234296492", + "977571950013524163096069232" + ] }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "1529153910567991508992", - "expectedQty": "1540581467742728386227", - "swapFee": "917492346340794905", + "inputIndex": 2, + "inputQty": "230843914890611425280", + "expectedQty": "230680222831574698661", + "swapFee": "138506348934366855", "reserves": [ - "31342711806494546993075741", - "159209892669807651210445667", - "100590491164708531784695536" + "865212206754870929723937065", + "1147410350531847620234296492", + "977571719333301331521370571" ], - "mAssetSupply": "290490533863753919492678126" + "mAssetSupply": "2990026773744154356696338429" }, { "type": "redeemMasset", - "inputQty": "492247223313348581706956", + "inputQty": "432132636067316668091596", "expectedQtys": [ - "53095480062128779142919", - "269706263265701693579552", - "170403264754163070023006" + "125006996263467672297732", + "165779354800799922918187", + "141240846247782892109434" ], - "redemptionFee": "147674166994004574512", + "redemptionFee": "129639790820195000427", "reserves": [ - "31289616326432418213932822", - "158940186406541949516866115", - "100420087899954368714672530" + "865087199758607462051639333", + "1147244571177046820311378305", + "977430478487053548629261137" ], - "mAssetSupply": "289998434314607564915545682" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "5011551444313584045129728", - "expectedQty": "4996545992011786559035696", - "reserves": [ - "31289616326432418213932822", - "158940186406541949516866115", - "105431639344267952759802258" - ] + "mAssetSupply": "2989594770747877860223247260" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "8221835309767265878016", - "2794631094521393840128", - "8571648010500861591552" + "476831216351322496", + "10810852773563430912", + "6589821708961872896" ], - "expectedQty": "19781821092473839066054", + "expectedQty": "17866237538135505393", + "swapFee": "10726178229819194", "reserves": [ - "31297838161742185479810838", - "158942981037636470910706243", - "105440210992278453621393810" + "865087199281776245700316837", + "1147244560366194046747947393", + "977430471897231839667388241" ], - "mAssetSupply": "295014762127711825313647432" + "mAssetSupply": "2989594752881640322087741867" }, { "type": "redeemMasset", - "inputQty": "500595108853469566468096", + "inputQty": "14209852792640675145318", "expectedQtys": [ - "53091731156370827978154", - "269621114878070285994506", - "178862300525150793001495" + "4110615298016614492952", + "5451336055281943444355", + "4644434288085759246771" ], - "redemptionFee": "150178532656040869940", + "redemptionFee": "4262955837792202543", "reserves": [ - "31244746430585814651832684", - "158673359922758400624711737", - "105261348691753302828392315" + "865083088666478229085823885", + "1147239109030138764804503038", + "977425827462943753908141470" ], - "mAssetSupply": "294514317197391011788049276" + "mAssetSupply": "2989580547291803519204799092" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "7639225738276039032832", - "outputIndex": 1, - "expectedQty": "7922934171196245270654", - "swapFee": "4719131453054384858", + "type": "redeem", + "inputIndex": 1, + "inputQty": "2487177335967305013657600", + "expectedQty": "2488565187983991929249851", + "swapFee": "1492306401580383008194", "reserves": [ - "31252385656324090690865516", - "158665436988587204379441083", - "105261348691753302828392315" + "865083088666478229085823885", + "1144750543842154772875253187", + "977425827462943753908141470" ], - "mAssetSupply": "294514321916522464842434134", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "1723829062046376154628096", - "expectedQty": "1772139322694705756481508", - "reserves": [ - "32976214718370466845493612", - "158665436988587204379441083", - "105261348691753302828392315" - ] + "mAssetSupply": "2987094862262237794574149686" }, { - "type": "redeem", - "inputIndex": 2, - "inputQty": "523785787385805155598336", - "expectedQty": "524998963131498141430911", - "swapFee": "314271472431483093359", + "type": "mintMulti", + "inputQtys": [ + "5969463408164697276416", + "5125451765646540931072", + "1025728696987250851840" + ], + "expectedQty": "12122114508706870670344", "reserves": [ - "32976214718370466845493612", - "158665436988587204379441083", - "104736349728621804686961404" + "865089058129886393783100301", + "1144755669293920419416184259", + "977426853191640741158993310" ], - "mAssetSupply": "295762989723303796926410665" + "mAssetSupply": "2987106984376746501444820030" }, { "type": "redeemMasset", - "inputQty": "20096586552445769036595", + "inputQty": "363929348432167424", "expectedQtys": [ - "2240004880507838663922", - "10777809286411241660294", - "7114519861128622347702" + "105365107282053987", + "139427614733261012", + "119047494912870589" ], - "redemptionFee": "6028975965733730710", + "redemptionFee": "109178804529650", "reserves": [ - "32973974713489959006829690", - "158654659179300793137780789", - "104729235208760676064613702" + "865089058024521286501046314", + "1144755669154492804682923247", + "977426853072593246246122721" ], - "mAssetSupply": "295742899165727316891104780" + "mAssetSupply": "2987106984012926331817182256" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "31917726893497204604928", - "expectedQty": "31990882702081120536065", - "swapFee": "19150636136098322762", + "inputQty": "25504337253372997632", + "expectedQty": "25486411560798034454", + "swapFee": "15302602352023798", "reserves": [ - "32973974713489959006829690", - "158654659179300793137780789", - "104697244326058594944077637" + "865089058024521286501046314", + "1144755669154492804682923247", + "977426827586181685448088267" ], - "mAssetSupply": "295711000589469955784822614" + "mAssetSupply": "2987106958523891680796208422" }, { - "type": "mintMulti", - "inputQtys": [ - "156503531984101549539328", - "47191311971362149498880", - "266339448351640598347776" - ], - "expectedQty": "473041457148761939737087", + "type": "redeem", + "inputIndex": 0, + "inputQty": "13819606152575373541376", + "expectedQty": "13794517064125877675065", + "swapFee": "8291763691545224124", "reserves": [ - "33130478245474060556369018", - "158701850491272155287279669", - "104963583774410235542425413" + "865075263507457160623371249", + "1144755669154492804682923247", + "977426827586181685448088267" ], - "mAssetSupply": "296184042046618717724559701" + "mAssetSupply": "2987093147209502796967891170" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "11410466677254744064", - "expectedQty": "11377590137516830623", + "type": "redeemBassets", + "inputQtys": [ + "50323494753253862552895488", + "59567353888594957915127808", + "30868049704792370454724608" + ], + "expectedQty": "140756443391650814464066204", + "swapFee": "84504568776256242423894", "reserves": [ - "33130478245474060556369018", - "158701850491272155287279669", - "104963595184876912797169477" - ] + "814751768754203298070475761", + "1085188315265897846767795439", + "946558777881389314993363659" + ], + "mAssetSupply": "2846336703817851982503824966" }, { "type": "redeemMasset", - "inputQty": "1952103109555973734", + "inputQty": "115243601133154402304", "expectedQtys": [ - "218292330811556875", - "1045665462211661251", - "691591219224177345" + "32978094002925838936", + "43924350512839403116", + "38313147087728877828" ], - "redemptionFee": "585630932866792", + "redemptionFee": "34573080339946320", "reserves": [ - "33130478027181729744812143", - "158701849445606693075618418", - "104963594493285693572992132" + "814751735776109295144636825", + "1085188271341547333928392323", + "946558739568242227264485831" ], - "mAssetSupply": "296184051472691376618283382" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "20105590246188804734976", - "expectedQty": "19956117957144136977730", - "reserves": [ - "33130478027181729744812143", - "158721955035852881880353394", - "104963594493285693572992132" - ] + "mAssetSupply": "2846336588608823929689368982" }, { "type": "mint", "inputIndex": 2, - "inputQty": "14249823607992655872", - "expectedQty": "14208773055219319998", + "inputQty": "30328072672366120927232", + "expectedQty": "30326956588744671488018", "reserves": [ - "33130478027181729744812143", - "158721955035852881880353394", - "104963608743109301565648004" + "814751735776109295144636825", + "1085188271341547333928392323", + "946589067640914593385413063" ] }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3494385872126205952", - "expectedQty": "3518448929589501445", - "swapFee": "2096631523275723", - "reserves": [ - "33130478027181729744812143", - "158721951517403952290851949", - "104963608743109301565648004" + "type": "mintMulti", + "inputQtys": [ + "5087449998776934400", + "3581477594302592000", + "678911327403126144" ], - "mAssetSupply": "296204018307132335371650881" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "20751616340829839294464", - "expectedQty": "20799064227147236040890", - "swapFee": "12450969804497903576", + "expectedQty": "9350585620766556965", "reserves": [ - "33130478027181729744812143", - "158721951517403952290851949", - "104942809678882154329607114" + "814751740863559293921571225", + "1085188274923024928230984323", + "946589068319825920788539207" ], - "mAssetSupply": "296183279141761310030259993" + "mAssetSupply": "2846366924915998295127413965" }, { "type": "mint", - "inputIndex": 1, - "inputQty": "160477216754844817162240", - "expectedQty": "159283164669330333180823", + "inputIndex": 2, + "inputQty": "223272894332444999680", + "expectedQty": "223264657515433805865", "reserves": [ - "33130478027181729744812143", - "158882428734158797108014189", - "104942809678882154329607114" + "814751740863559293921571225", + "1085188274923024928230984323", + "946589291592720253233538887" ] }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "3942577979470091264", - "outputIndex": 2, - "expectedQty": "4055528026707730853", - "swapFee": "2427777457117501", - "reserves": [ - "33130481969759709214903407", - "158882428734158797108014189", - "104942805623354127621876261" + "type": "redeemMasset", + "inputQty": "753754549224987827791462", + "expectedQtys": [ + "215691989948645498260202", + "287285570251125718660371", + "250593791614743752205201" ], - "mAssetSupply": "296342562308858417820558317", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "6787630764035417971884032", - "expectedQty": "6801053837517836378352223", - "swapFee": "4072578458421250783130", + "redemptionFee": "226126364767496348337", "reserves": [ - "33130481969759709214903407", - "158882428734158797108014189", - "98141751785836291243524038" + "814536048873610648423311023", + "1084900989352773802512323952", + "946338697801105509481333686" ], - "mAssetSupply": "289559004123281421099457415" + "mAssetSupply": "2845613619757795590229776705" }, { "type": "redeemMasset", - "inputQty": "3726473237869354811392", + "inputQty": "1846395140346877470310", "expectedQtys": [ - "426244097763056812709", - "2044120503529332522839", - "1262654207114242709978" + "528358525281752365929", + "703733969299239905791", + "613853885876118678737" ], - "redemptionFee": "1117941971360806443", + "redemptionFee": "553918542104063241", "reserves": [ - "33130055725661946158090698", - "158880384613655267775491350", - "98140489131629177000814060" + "814535520515085366670945094", + "1084900285618804503272418161", + "946338083947219633362654949" ], - "mAssetSupply": "289555278767985523105452466" + "mAssetSupply": "2845611773916573785456369636" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "23188594259642611138560", - "expectedQty": "23352706067651438347939", - "swapFee": "13913156555785566683", + "type": "redeemBassets", + "inputQtys": [ + "167334310945335132815360", + "65026655170856673607680", + "127502620078315386437632" + ], + "expectedQty": "360009007148474950156628", + "swapFee": "216135085340289143580", "reserves": [ - "33130055725661946158090698", - "158857031907587616337143411", - "98140489131629177000814060" + "814368186204140031538129734", + "1084835258963633646598810481", + "946210581327141317976217317" ], - "mAssetSupply": "289532104086882436279880589" + "mAssetSupply": "2845251764909425310506213008" }, { - "type": "mintMulti", - "inputQtys": [ - "822989399370502057754624", - "1012255157649746094456832", - "190117348196591234711552" + "type": "redeemMasset", + "inputQty": "134747593218346789843763", + "expectedQtys": [ + "38555896596435347066418", + "51361038873250110920726", + "44797915672699413612282" ], - "expectedQty": "2037685785273166098279713", + "redemptionFee": "40424277965504036953", "reserves": [ - "33953045125032448215845322", - "159869287065237362431600243", - "98330606479825768235525612" + "814329630307543596191063316", + "1084783897924760396487889755", + "946165783411468618562605035" ], - "mAssetSupply": "291569789872155602378160302" + "mAssetSupply": "2845117057740484929220406198" }, { "type": "redeemBassets", "inputQtys": [ - "673126549693269120", - "101967135261151248", - "500655623750005440" + "6044162765756028665462784", + "10056975759374312651358208", + "4025241731550465665007616" ], - "expectedQty": "1290273872778248422", - "swapFee": "774629101127625", + "expectedQty": "20123098840478611786093224", + "swapFee": "12081107969068608236597", "reserves": [ - "33953044451905898522576202", - "159869286963270227170448995", - "98330605979170144485520172" + "808285467541787567525600532", + "1074726922165386083836531547", + "942140541679918152897597419" ], - "mAssetSupply": "291569788581881729599911880" + "mAssetSupply": "2824993958900006317434312974" }, { - "type": "mintMulti", - "inputQtys": [ - "152475920093857185792", - "114187562296428167168", - "4167443271508783104" + "type": "redeem", + "inputIndex": 2, + "inputQty": "77177582416505782272", + "expectedQty": "77135908181335513666", + "swapFee": "46306549449903469", + "reserves": [ + "808285467541787567525600532", + "1074726922165386083836531547", + "942140464544009971562083753" ], - "expectedQty": "273670923449713433750", + "mAssetSupply": "2824993881768730450378434171" + }, + { + "type": "redeem", + "inputIndex": 1, + "inputQty": "5322389609103329591296", + "expectedQty": "5325051096930496247597", + "swapFee": "3193433765461997754", "reserves": [ - "33953196927825992379761994", - "159869401150832523598616163", - "98330610146613415994303276" + "808285467541787567525600532", + "1074721597114289153340283950", + "942140464544009971562083753" ], - "mAssetSupply": "291570062252805179313345630" + "mAssetSupply": "2824988562572555112510840629" }, { - "type": "mintMulti", - "inputQtys": [ - "949603964290479859695616", - "631361974118712835309568", - "148517349777435753709568" + "type": "redeemMasset", + "inputQty": "125809445254861946880", + "expectedQtys": [ + "35985787922107512416", + "47847827311164713312", + "41945164562993715674" ], - "expectedQty": "1747009790500937952240792", + "redemptionFee": "37742833576458584", "reserves": [ - "34902800892116472239457610", - "160500763124951236433925731", - "98479127496390851748012844" + "808285431555999645418088116", + "1074721549266461842175570638", + "942140422598845408568368079" ], - "mAssetSupply": "293317072043306117265586422" + "mAssetSupply": "2824988436800852691225352333" }, { - "type": "redeemBassets", - "inputQtys": [ - "6509363907607", - "2645011697256", - "12600822298653" + "type": "redeemMasset", + "inputQty": "883047526715319496841625", + "expectedQtys": [ + "252581679834495705686148", + "335840488607455149806583", + "294410119605763538080408" ], - "expectedQty": "21861213732768", - "swapFee": "13124603001", + "redemptionFee": "264914258014595849052", "reserves": [ - "34902800892109962875550003", - "160500763124948591422228475", - "98479127496378250925714191" + "808032849876165149712401968", + "1074385708777854387025764055", + "941846012479239645030287671" ], - "mAssetSupply": "293317072043284256051853654" + "mAssetSupply": "2824105654188395386324359760" }, { - "type": "swap", + "type": "mint", "inputIndex": 0, - "inputQty": "62964984689560794431488", - "outputIndex": 1, - "expectedQty": "64854462589418026830772", - "swapFee": "38651284556000831319", + "inputQty": "2488634054977105822744576", + "expectedQty": "2491931012605045060038272", + "reserves": [ + "810521483931142255535146544", + "1074385708777854387025764055", + "941846012479239645030287671" + ] + }, + { + "type": "swap", + "inputIndex": 1, + "inputQty": "20003095032530110251008", + "outputIndex": 0, + "expectedQty": "19943059777133427352922", + "swapFee": "11988758466136618183", "reserves": [ - "34965765876799523669981491", - "160435908662359173395397703", - "98479127496378250925714191" + "810501540871365122107793622", + "1074405711872886917136015063", + "941846012479239645030287671" ], - "mAssetSupply": "293317110694568812052684973", + "mAssetSupply": "2826597597189758897521016215", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "954717410419744046055424", - "433896174616982360948736", - "796687394500367039332352" + "3660181799006665965568", + "1049514010732270190592", + "3909485978616361123840" ], - "expectedQty": "2202991466493197453874027", - "swapFee": "1322588432955691887456", + "expectedQty": "8622646788721322530706", "reserves": [ - "34011048466379779623926067", - "160002012487742191034448967", - "97682440101877883886381839" + "810505201053164128773759190", + "1074406761386897649406205655", + "941849921965218261391411511" ], - "mAssetSupply": "291114119228075614598810946" + "mAssetSupply": "2826606219836547618843546921" }, { "type": "mint", "inputIndex": 1, - "inputQty": "78717408182267134607360", - "expectedQty": "78125921746901040857701", + "inputQty": "378869724739775616", + "expectedQty": "378456198691323093", "reserves": [ - "34011048466379779623926067", - "160080729895924458169056327", - "97682440101877883886381839" + "810505201053164128773759190", + "1074406761765767374145981271", + "941849921965218261391411511" ] }, { - "type": "redeemMasset", - "inputQty": "497385102285568196214784", - "expectedQtys": [ - "58076800207857268988229", - "273351660313668717561393", - "166801195888466645753020" + "type": "redeemBassets", + "inputQtys": [ + "223761252832636435431424", + "78576287227478844375040", + "7198396452811266064384" ], - "redemptionFee": "149215530685670458864", + "expectedQty": "309744116499342866684722", + "swapFee": "185958044726441584961", "reserves": [ - "33952971666171922354937838", - "159807378235610789451494934", - "97515638905989417240628819" + "810281439800331492338327766", + "1074328185478539895301606231", + "941842723568765450125347127" ], - "mAssetSupply": "290695009263067633113912727" + "mAssetSupply": "2826296476098504474668185292" }, { "type": "redeemMasset", - "inputQty": "96732254847243467410636", + "inputQty": "4807526470308762798469939", "expectedQtys": [ - "11294869533895762331174", - "53161870644846115753095", - "32439764913273115422703" + "1377874143187797387849057", + "1826882556304776206827609", + "1601592572668037167773425" ], - "redemptionFee": "29019676454173040223", + "redemptionFee": "1442257941092628839540", "reserves": [ - "33941676796638026592606664", - "159754216364965943335741839", - "97483199141076144125206116" + "808903565657143694950478709", + "1072501302922235119094778622", + "940241130996097412957573702" ], - "mAssetSupply": "290598306027896843819542314" + "mAssetSupply": "2821490391886136804498554893" }, { - "type": "redeemBassets", - "inputQtys": [ - "65630726405609243017216", - "51089053020672730595328", - "46031780603490700623872" - ], - "expectedQty": "163861366702906782482588", - "swapFee": "98375845529061506393", + "type": "swap", + "inputIndex": 1, + "inputQty": "5565544745330274558017536", + "outputIndex": 0, + "expectedQty": "5548524242817365902526443", + "swapFee": "3335636551170656017105", "reserves": [ - "33876046070232417349589448", - "159703127311945270605146511", - "97437167360472653424582244" + "803355041414326329047952266", + "1078066847667565393652796158", + "940241130996097412957573702" ], - "mAssetSupply": "290434444661193937037059726" + "mAssetSupply": "2821493727522687975154571998", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "33107079056022396993536", - "757926805985353158098944", - "24057090692534530736128" - ], - "expectedQty": "810124425297936580341740", + "type": "redeem", + "inputIndex": 1, + "inputQty": "1152394370419944742453248", + "expectedQty": "1153010310961127698830869", + "swapFee": "691436622251966845471", "reserves": [ - "33909153149288439746582984", - "160461054117930623763245455", - "97461224451165187955318372" + "803355041414326329047952266", + "1076913837356604265953965289", + "940241130996097412957573702" ], - "mAssetSupply": "291244569086491873617401466" + "mAssetSupply": "2820342024588890282378964221" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "1203085457717099208114176", - "expectedQty": "1231390916391969020074522", - "reserves": [ - "35112238607005538954697160", - "160461054117930623763245455", - "97461224451165187955318372" - ] - }, - { - "type": "mintMulti", - "inputQtys": [ - "936183245777477", - "226454189996646", - "631538558889879" + "type": "redeemMasset", + "inputQty": "18145597710574858063052", + "expectedQtys": [ + "5167098198017573570951", + "6926600645499188682515", + "6047535651383666409990" ], - "expectedQty": "1812597425123475", + "redemptionFee": "5443679313172457418", "reserves": [ - "35112238607941722200474637", - "160461054118157077953242101", - "97461224451796726514208251" + "803349874316128311474381315", + "1076906910755958766765282774", + "940235083460446029291163712" ], - "mAssetSupply": "292475960004696440062599463" + "mAssetSupply": "2820323884434859020693358587" }, { - "type": "redeemBassets", - "inputQtys": [ - "1218092480546765537280", - "643966950577663377408", - "1047967487529201565696" + "type": "redeemMasset", + "inputQty": "23885789004343740989440", + "expectedQtys": [ + "6801661719340659116012", + "9117766423275530566011", + "7960617383301424316641" ], - "expectedQty": "2931017836579303554200", - "swapFee": "1759666501848691347", + "redemptionFee": "7165736701303122296", "reserves": [ - "35111020515461175434937357", - "160460410151206500289864693", - "97460176484309197312642555" + "803343072654408970815265303", + "1076897792989535491234716763", + "940227122843062727866847071" ], - "mAssetSupply": "292473028986859860759045263" + "mAssetSupply": "2820300005811591378255491443" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "39609859695829802024960", - "expectedQty": "39877618504900659921161", - "swapFee": "23765915817497881214", + "type": "redeemMasset", + "inputQty": "1247587856214378151936", + "expectedQtys": [ + "355260216088505845341", + "476233574005410593543", + "415794076284012842762" + ], + "redemptionFee": "374276356864313445", "reserves": [ - "35111020515461175434937357", - "160420532532701599629943532", - "97460176484309197312642555" + "803342717394192882309419962", + "1076897316755961485824123220", + "940226707048986443854004309" ], - "mAssetSupply": "292433442893079848454901517" + "mAssetSupply": "2820298758598011520741652952" }, { - "type": "mintMulti", - "inputQtys": [ - "127527236325111431168", - "20556767426185990144", - "105334373715998539776" - ], - "expectedQty": "255965809211347570313", + "type": "mint", + "inputIndex": 1, + "inputQty": "792257147980799262326784", + "expectedQty": "791359500610755546108662", "reserves": [ - "35111148042697500546368525", - "160420553089469025815933676", - "97460281818682913311182331" - ], - "mAssetSupply": "292433698858889059802471830" + "803342717394192882309419962", + "1077689573903942285086450004", + "940226707048986443854004309" + ] }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "599035111985424459890688", - "989092543464559079325696", - "848443935292850113085440" + "34907801554556215296", + "21586979922025447424", + "10497904739711242240" ], - "expectedQty": "2441265205942475911581119", + "expectedQty": "67015759850404713503", + "swapFee": "40233596067883558", "reserves": [ - "35710183154682925006259213", - "161409645632933584895259372", - "98308725753975763424267771" + "803342682486391327753204666", + "1077689552316962363061002580", + "940226696551081704142762069" ], - "mAssetSupply": "294874964064831535714052949" + "mAssetSupply": "2821090051082862425883048111" }, { - "type": "mintMulti", - "inputQtys": [ - "66765313231614746624", - "99655259126414786560", - "17312800101917454336" - ], - "expectedQty": "184466579566515591306", + "type": "redeem", + "inputIndex": 0, + "inputQty": "50109174450049913307791360", + "expectedQty": "49998900085206712716004738", + "swapFee": "30065504670029947984674", "reserves": [ - "35710249919996156621005837", - "161409745288192711310045932", - "98308743066775865341722107" + "753343782401184615037199928", + "1077689552316962363061002580", + "940226696551081704142762069" ], - "mAssetSupply": "294875148531411102229644255" + "mAssetSupply": "2771010942137482542523241425" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "20148698901726059560960", - "expectedQty": "20283122187750997406787", - "swapFee": "12089219341035635736", + "inputQty": "380112810753925048172544", + "expectedQty": "380381948660478755472356", + "swapFee": "228067686452355028903", "reserves": [ - "35710249919996156621005837", - "161389462166004960312639145", - "98308743066775865341722107" + "753343782401184615037199928", + "1077309170368301884305530224", + "940226696551081704142762069" ], - "mAssetSupply": "294855011921728717205719031" + "mAssetSupply": "2770631057394415069830097784" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "225314159864098085404672", - "expectedQty": "220249703213355308615965", - "swapFee": "135188495918458851242", + "type": "mintMulti", + "inputQtys": [ + "193328970297228128", + "13784709549355144", + "721644208437160064" + ], + "expectedQty": "928921795367436256", "reserves": [ - "35490000216782801312389872", - "161389462166004960312639145", - "98308743066775865341722107" + "753343782594513585334428056", + "1077309170382086593854885368", + "940226697272725912579922133" ], - "mAssetSupply": "294629832950360537579165601" + "mAssetSupply": "2770631058323336865197534040" }, { "type": "mint", "inputIndex": 0, - "inputQty": "36479375758822563905536", - "expectedQty": "37300083058121511489283", - "reserves": [ - "35526479592541623876295408", - "161389462166004960312639145", - "98308743066775865341722107" - ] - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1171192053531688799567872", - "expectedQty": "1168932828942766219962003", + "inputQty": "6732174470015343394816", + "expectedQty": "6744546840545603467413", "reserves": [ - "35526479592541623876295408", - "161389462166004960312639145", - "99479935120307554141289979" + "753350514768983600677822872", + "1077309170382086593854885368", + "940226697272725912579922133" ] }, { "type": "redeemBassets", "inputQtys": [ - "22101752013249927184384", - "24152048702347011948544", - "32065744922288022618112" + "16493664803520186941440", + "8536252317384766914560", + "2121154668433621123072" ], - "expectedQty": "78581649605761927611843", - "swapFee": "47177296141141841672", + "expectedQty": "27169724515102388133751", + "swapFee": "16311621682070675285", "reserves": [ - "35504377840528373949111024", - "161365310117302613300690601", - "99447869375385266118671867" + "753334021104180080490881432", + "1077300634129769209087970808", + "940224576118057478958799061" ], - "mAssetSupply": "295757484212755663383005044" + "mAssetSupply": "2770610633145662308412867702" }, { - "type": "mintMulti", - "inputQtys": [ - "186495847337874685952", - "217981685574502285312", - "231950542947124510720" - ], - "expectedQty": "638615083787423971051", - "reserves": [ - "35504564336375711823796976", - "161365528098988187802975913", - "99448101325928213243182587" + "type": "redeemMasset", + "inputQty": "97069497212947465764864", + "expectedQtys": [ + "26385453105906979480153", + "37732353201215530828075", + "32931277185413998240487" ], - "mAssetSupply": "295758122827839450806976095" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "104762751742911969230848", - "outputIndex": 0, - "expectedQty": "101632075358497333839426", - "swapFee": "62402925734086013250", + "redemptionFee": "29120849163884239729", "reserves": [ - "35402932261017214489957550", - "161470290850731099772206761", - "99448101325928213243182587" + "753307635651074173511401279", + "1077262901776567993557142733", + "940191644840872064960558574" ], - "mAssetSupply": "295758185230765184892989345", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1869437530488471885447168", - "expectedQty": "1865550935224201718260826", - "reserves": [ - "35402932261017214489957550", - "161470290850731099772206761", - "101317538856416685128629755" - ] - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "7532958196598753280", - "expectedQty": "7706568114970187518", - "reserves": [ - "35402939793975411088710830", - "161470290850731099772206761", - "101317538856416685128629755" - ] + "mAssetSupply": "2770513592769298524831342567" }, { "type": "redeemBassets", "inputQtys": [ - "7157250770825004032", - "54702500648515846144", - "141435803813496668160" + "2507853407708836265984", + "4691096890140423356416", + "1514828442147055468544" ], - "expectedQty": "202760292830018762578", - "swapFee": "121729213225946825", + "expectedQty": "8711896283182009624776", + "swapFee": "5230275935470488067", "reserves": [ - "35402932636724640263706798", - "161470236148230451256360617", - "101317397420612871631961595" + "753305127797666464675135295", + "1077258210679677853133786317", + "940190130012429917905090030" ], - "mAssetSupply": "297623541112264671562675111" + "mAssetSupply": "2770504880873015342821717791" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "2753812736016102400", - "expectedQty": "2772140324245765241", - "swapFee": "1652287641609661", + "type": "mintMulti", + "inputQtys": [ + "3736299198557203726336", + "17656982155595536662528", + "57948172561109076672512" + ], + "expectedQty": "79311323186740024805920", "reserves": [ - "35402932636724640263706798", - "161470233376090127010595376", - "101317397420612871631961595" + "753308864096865021878861631", + "1077275867661833448670448845", + "940248078184991026981762542" ], - "mAssetSupply": "297623538360104223188182372" + "mAssetSupply": "2770584192196202082846523711" }, { - "type": "redeemBassets", - "inputQtys": [ - "3560279044074277682806784", - "3829989033061585636032512", - "282012438065659135393792" - ], - "expectedQty": "7732594666580214563612386", - "swapFee": "4642342205271291513075", + "type": "redeem", + "inputIndex": 2, + "inputQty": "5790703190338044952576", + "expectedQty": "5788621517477844866643", + "swapFee": "3474421914202826971", "reserves": [ - "31842653592650362580900014", - "157640244343028541374562864", - "101035384982547212496567803" + "753308864096865021878861631", + "1077275867661833448670448845", + "940242289563473549136895899" ], - "mAssetSupply": "289890943693524008624569986" + "mAssetSupply": "2770578404967433659004398106" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "4576341699959376576512", - "expectedQty": "4609409415565759873835", - "swapFee": "2745805019975625945", + "inputQty": "13919782671758827454464", + "expectedQty": "13929624413862651923101", + "swapFee": "8351869603055296472", "reserves": [ - "31842653592650362580900014", - "157635634933612975614689029", - "101035384982547212496567803" + "753308864096865021878861631", + "1077261938037419586018525744", + "940242289563473549136895899" ], - "mAssetSupply": "289886370097629069223619419" + "mAssetSupply": "2770564493536631503232240114" }, { - "type": "mintMulti", - "inputQtys": [ - "950347871936050233344", - "1819540132874697048064", - "2000511898251796938752" + "type": "redeemMasset", + "inputQty": "25743658770476", + "expectedQtys": [ + "6997530111067", + "10006749167835", + "8733965636801" ], - "expectedQty": "4776898395699820724513", + "redemptionFee": "7723097631", "reserves": [ - "31843603940522298631133358", - "157637454473745850311737093", - "101037385494445464293506555" + "753308864096858024348750564", + "1077261938037409579269357909", + "940242289563464815171259098" ], - "mAssetSupply": "289891146996024769044343932" + "mAssetSupply": "2770564493536605767296567269" }, { "type": "redeem", - "inputIndex": 1, - "inputQty": "2454675393564694282240", - "expectedQty": "2472411377716308573114", - "swapFee": "1472805236138816569", + "inputIndex": 0, + "inputQty": "58536646600601925966626816", + "expectedQty": "58376315639315881745517305", + "swapFee": "35121987960361155579976", "reserves": [ - "31843603940522298631133358", - "157634982062368134003163979", - "101037385494445464293506555" + "694932548457542142603233259", + "1077261938037409579269357909", + "940242289563464815171259098" ], - "mAssetSupply": "289888693793436440488878261" + "mAssetSupply": "2712062968923964202485520429" }, { "type": "redeemMasset", - "inputQty": "15618616158386656169164", + "inputQty": "2305347330607428664085708", "expectedQtys": [ - "1715154236035438216870", - "8490505903057857348069", - "5442056748740648309382" + "590539488065644851768572", + "915435195564283883899364", + "798998696447446789716967" ], - "redemptionFee": "4685584847515996850", + "redemptionFee": "691604199182228599225", "reserves": [ - "31841888786286263192916488", - "157626491556465076145815910", - "101031943437696723645197173" + "694342008969476497751464687", + "1076346502841845295385458545", + "939443290867017368381542131" ], - "mAssetSupply": "289873079862862901348705947" + "mAssetSupply": "2709758313197555956050033946" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "6134877870511199994511360", - "expectedQty": "6116235114990371175829979", + "inputIndex": 1, + "inputQty": "35229793272819287563698176", + "expectedQty": "35172892083169604136996682", "reserves": [ - "31841888786286263192916488", - "157626491556465076145815910", - "107166821308207923639708533" + "694342008969476497751464687", + "1111576296114664582949156721", + "939443290867017368381542131" ] }, { "type": "mintMulti", "inputQtys": [ - "3545049989394381406208", - "3861699002806937583616", - "1370135496973047037952" + "495837549719899602944", + "974748647798001893376", + "450289877625274957824" ], - "expectedQty": "8844160682842591065803", + "expectedQty": "1920345744723377725488", "reserves": [ - "31845433836275657574322696", - "157630353255467883083399526", - "107168191443704896686746485" + "694342504807026217651067631", + "1111577270863312380951050097", + "939443741156894993656499955" ], - "mAssetSupply": "295998159138536115115601729" + "mAssetSupply": "2744933125626470283564756116" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "61738833538253785661440", - "20385860792835230400512", - "11440160940784086941696" + "255669581653104263168", + "1972935059399774306304", + "3798717840155130462208" ], - "expectedQty": "95137463734357984629346", - "swapFee": "57116748289588543903", + "expectedQty": "6023186729736402303960", "reserves": [ - "31783695002737403788661256", - "157609967394675047852999014", - "107156751282764112599804789" + "694342760476607870755330799", + "1111579243798371780725356401", + "939447539874735148786962163" ], - "mAssetSupply": "295903021674801757130972383" + "mAssetSupply": "2744939148813200019967060076" }, { - "type": "redeemMasset", - "inputQty": "421025603653248113390387", - "expectedQtys": [ - "45209862252599607348794", - "224188059787771090875155", - "152422239280631172451955" - ], - "redemptionFee": "126307681095974434017", + "type": "swap", + "inputIndex": 2, + "inputQty": "504187185454561034240", + "outputIndex": 1, + "expectedQty": "504548904936670517080", + "swapFee": "302396551686787044", "reserves": [ - "31738485140484804181312462", - "157385779334887276762123859", - "107004329043483481427352834" + "694342760476607870755330799", + "1111578739249466844054839321", + "939448044061920603347996403" ], - "mAssetSupply": "295482122378829604992016013" + "mAssetSupply": "2744939149115596571653847120", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "245983386946123054710784", - "expectedQty": "252977800371460432267051", + "type": "redeemBassets", + "inputQtys": [ + "413633640364322032975872", + "44539960338311622426624", + "1019419684719840647446528" + ], + "expectedQty": "1478212361533007350779165", + "swapFee": "887459892855517721100", "reserves": [ - "31984468527430927236023246", - "157385779334887276762123859", - "107004329043483481427352834" - ] + "693929126836243548722354927", + "1111534199289128532432412697", + "938428624377200762700549875" + ], + "mAssetSupply": "2743460936754063564303067955" }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "60389063274533068800", - "expectedQty": "58696674132508193949", - "swapFee": "36233437964719841", + "type": "redeemMasset", + "inputQty": "115586396613511935216844", + "expectedQtys": [ + "29227572943265622292619", + "46816664169688156029796", + "39525637432287272935079" + ], + "redemptionFee": "34675918984053580565", "reserves": [ - "31984409830756794727829297", - "157385779334887276762123859", - "107004329043483481427352834" + "693899899263300283100062308", + "1111487382624958844276382901", + "938389098739768475427614796" ], - "mAssetSupply": "295735039826371228855934105" + "mAssetSupply": "2743345385033369036421431676" }, { "type": "mintMulti", "inputQtys": [ - "12473394229634620456960", - "1443804111989653372928", - "10242311730527012388864" + "490906516361470852202496", + "1700674211645069671268352", + "2962644929107384330092544" ], - "expectedQty": "24466875790140134109846", + "expectedQty": "5151481494814463811037507", "reserves": [ - "31996883224986429348286257", - "157387223138999266415496787", - "107014571355214008439741698" + "694390805779661753952264804", + "1113188056836603913947651253", + "941351743668875859757707340" ], - "mAssetSupply": "295759506702161368990043951" + "mAssetSupply": "2748496866528183500232469183" }, { - "type": "redeemMasset", - "inputQty": "348270236304912783769", - "expectedQtys": [ - "37666478205147670428", - "185274995956620812252", - "125976708145019591537" - ], - "redemptionFee": "104481070891473835", + "type": "mint", + "inputIndex": 2, + "inputQty": "2800939228485405080813568", + "expectedQty": "2799823428720423502308347", "reserves": [ - "31996845558508224200615829", - "157387037864003309794684535", - "107014445378505863420150161" - ], - "mAssetSupply": "295759158536406134968734017" + "694390805779661753952264804", + "1113188056836603913947651253", + "944152682897361264838520908" + ] }, { - "type": "redeemBassets", - "inputQtys": [ - "1083175489797698816", - "865186931234312320", - "584546705066582272" + "type": "redeemMasset", + "inputQty": "244575568930687587817881", + "expectedQtys": [ + "61709112541600753776570", + "98926780866815222041631", + "83904947589203858958202" ], - "expectedQty": "2554989083305367179", - "swapFee": "1533913798262177", + "redemptionFee": "73372670679206276345", "reserves": [ - "31996844475332734402917013", - "157387036998816378560372215", - "107014444793959158353567889" + "694329096667120153198488234", + "1113089130055737098725609622", + "944068777949772060979562706" ], - "mAssetSupply": "295759155981417051663366838" + "mAssetSupply": "2751052187760643915353235994" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "630727536846775123968", - "expectedQty": "635156088228771315153", - "swapFee": "378436522108065074", + "inputQty": "80706992186928869876432896", + "expectedQty": "80779783072613097140546490", + "swapFee": "48424195312157321925859", "reserves": [ - "31996844475332734402917013", - "157386401842728149789057062", - "107014444793959158353567889" + "694329096667120153198488234", + "1032309346983124001585063132", + "944068777949772060979562706" ], - "mAssetSupply": "295758525632316726996307944" + "mAssetSupply": "2670393619769027202798728957" }, { "type": "mint", "inputIndex": 1, - "inputQty": "1559289803115434713546752", - "expectedQty": "1547409698328518256157952", + "inputQty": "140104428933640292925440", + "expectedQty": "139921931171461183390366", "reserves": [ - "31996844475332734402917013", - "158945691645843584502603814", - "107014444793959158353567889" + "694329096667120153198488234", + "1032449451412057641877988572", + "944068777949772060979562706" ] }, { "type": "mintMulti", "inputQtys": [ - "338644617017127168114688", - "1579024636336382050041856", - "366222422259466881728512" + "1265472828912714", + "1872895391727718", + "7337924132792757" ], - "expectedQty": "2280249658937457697803838", + "expectedQty": "10472316846039672", "reserves": [ - "32335489092349861571031701", - "160524716282179966552645670", - "107380667216218625235296401" + "694329096668385626027400948", + "1032449451413930537269716290", + "944068777957109985112355463" ], - "mAssetSupply": "299586184989582702950269734" + "mAssetSupply": "2670533541710670980828158995" }, { - "type": "redeemMasset", - "inputQty": "90391217425419707665612", - "expectedQtys": [ - "9753344841111268262950", - "48419026814474942983866", - "32389201648914402735923" + "type": "mintMulti", + "inputQtys": [ + "710505250819131635138560", + "1427537487058932919697408", + "1213549181121143211294720" ], - "redemptionFee": "27117365227625912299", + "expectedQty": "3350636635440729670328708", "reserves": [ - "32325735747508750302768751", - "160476297255365491609661804", - "107348278014569710832560478" + "695039601919204757662539508", + "1033876988900989470189413698", + "945282327138231128323650183" ], - "mAssetSupply": "299495820889522510868516421" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "1637542968330742661120", - "expectedQty": "1632345886505346580562", - "reserves": [ - "32325735747508750302768751", - "160476297255365491609661804", - "107349915557538041575221598" - ] + "mAssetSupply": "2673884178346111710498487703" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "140182572709291684265984", - "expectedQty": "141182211857748770076556", - "swapFee": "84109543625575010559", - "reserves": [ - "32325735747508750302768751", - "160335115043507742839585248", - "107349915557538041575221598" + "type": "mintMulti", + "inputQtys": [ + "53928183573712973332480", + "39578374718456959336448", + "59988239565728660848640" ], - "mAssetSupply": "299357354772243350105841558" - }, - { - "type": "mint", - "inputIndex": 1, - "inputQty": "5107600780125734881460224", - "expectedQty": "5067572715006576015344395", + "expectedQty": "153531502762807463072496", "reserves": [ - "32325735747508750302768751", - "165442715823633477721045472", - "107349915557538041575221598" - ] + "695093530102778470635871988", + "1033916567275707927148750146", + "945342315377796856984498823" + ], + "mAssetSupply": "2674037709848874517961560199" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "195984448166699663360", - "expectedQty": "197446924910310638999", - "swapFee": "117590668900019798", + "type": "redeemBassets", + "inputQtys": [ + "12326137703013928", + "18011965166297552", + "7453548377077279" + ], + "expectedQty": "37792156347200852", + "swapFee": "22688907152612", "reserves": [ - "32325735747508750302768751", - "165442518376708567410406473", - "107349915557538041575221598" + "695093530090452332932858060", + "1033916567257695961982452594", + "945342315370343308607421544" ], - "mAssetSupply": "304424731620392428321542391" + "mAssetSupply": "2674037709811082361614359347" }, { "type": "redeem", "inputIndex": 1, - "inputQty": "32844352463284809728", - "expectedQty": "33089443607820010531", - "swapFee": "19706611477970885", + "inputQty": "3256803338102496714293248", + "expectedQty": "3259072387242298280543872", + "swapFee": "1954082002861498028575", "reserves": [ - "32325735747508750302768751", - "165442485287264959590395942", - "107349915557538041575221598" + "695093530090452332932858060", + "1030657494870453663701908722", + "945342315370343308607421544" ], - "mAssetSupply": "304424698795746576514703548" + "mAssetSupply": "2670782860554982726398094674" }, { "type": "redeemBassets", "inputQtys": [ - "1022586827578104428363776", - "1313392764669011685277696", - "2885844306454504913502208" + "26405796272217771569315840", + "58720476794378571678220288", + "37571859714278425247088640" ], - "expectedQty": "5233293318758512417934117", - "swapFee": "3141861107919859366380", + "expectedQty": "122661053593093285837123894", + "swapFee": "73640816645843477588827", "reserves": [ - "31303148919930645874404975", - "164129092522595947905118246", - "104464071251083536661719390" + "668687733818234561363542220", + "971937018076075092023688434", + "907770455656064883360332904" ], - "mAssetSupply": "299191405476988064096769431" + "mAssetSupply": "2548121806961889440560970780" }, { "type": "redeemMasset", - "inputQty": "41501693418016623034368", + "inputQty": "9521352978473651535872", "expectedQtys": [ - "4340846446829245850339", - "22759984623923824174955", - "14486162196380970878825" + "2497879765828016323629", + "3630665987020148503525", + "3390972106295768481031" ], - "redemptionFee": "12450508025404986910", + "redemptionFee": "2856405893542095460", "reserves": [ - "31298808073483816628554636", - "164106332537972024080943291", - "104449585088887155690840565" + "668685235938468733347218591", + "971933387410088071875184909", + "907767064683958587591851873" ], - "mAssetSupply": "299149916234078072878721973" + "mAssetSupply": "2548112288465316860451530368" }, { "type": "redeemMasset", - "inputQty": "95163457836446914288025", + "inputQty": "1768993393857759436", "expectedQtys": [ - "9953568729270108386174", - "52188685779667271184688", - "33216796035334241428954" + "464086649701026621", + "674549526822846777", + "630016266422964903" ], - "redemptionFee": "28549037350934074286", + "redemptionFee": "530698018157327", "reserves": [ - "31288854504754546520168462", - "164054143852192356809758603", - "104416368292851821449411611" + "668685235474382083646191970", + "971933386735538545052338132", + "907767064053942321168886970" ], - "mAssetSupply": "299054781325278976898508234" - }, - { - "type": "mint", - "inputIndex": 2, - "inputQty": "2438247815261844339163136", - "expectedQty": "2430659347172824174947951", - "reserves": [ - "31288854504754546520168462", - "164054143852192356809758603", - "106854616108113665788574747" - ] + "mAssetSupply": "2548112286696854164611928259" }, { "type": "mintMulti", "inputQtys": [ - "2634781709147518976", - "152092007477127520", - "229504805758403008" + "4105820646104457147318272", + "2715673638886068942012416", + "3910511727988420418469888" ], - "expectedQty": "3096571656555195427", + "expectedQty": "10735264746703750148573293", "reserves": [ - "31288857139536255667687438", - "164054144004284364286886123", - "106854616337618471546977755" + "672791056120486540793510242", + "974649060374424613994350548", + "911677575781930741587356858" ], - "mAssetSupply": "301485443769023457628651612" + "mAssetSupply": "2558847551443557914760501552" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "677037056273813929459712", - "291119540144457499279360", - "936009161380133792120832" + "1955143019464614477824", + "43372925950352582246400", + "74178542766354528731136" ], - "expectedQty": "1920216580647952169246290", - "swapFee": "1152821641373595458823", + "expectedQty": "119411167283510189291305", "reserves": [ - "30611820083262441738227726", - "163763024464139906787606763", - "105918607176238337754856923" + "672793011263506005407988066", + "974692433300374966576596948", + "911751754324697096116087994" ], - "mAssetSupply": "299565227188375505459405322" + "mAssetSupply": "2558966962610841424949792857" }, { - "type": "redeemBassets", - "inputQtys": [ - "39581509870460124266496", - "44951736009667876225024", - "12813449743031968202752" + "type": "redeemMasset", + "inputQty": "200487725663673795162931", + "expectedQtys": [ + "52695590298224782548163", + "76341448665643042585629", + "71411706268102895415537" ], - "expectedQty": "98209098705948314885942", - "swapFee": "58960835725003991326", + "redemptionFee": "60146317699102138548", "reserves": [ - "30572238573391981613961230", - "163718072728130238911381739", - "105905793726495305786654171" + "672740315673207780625439903", + "974616091851709323534011319", + "911680342618428993220672457" ], - "mAssetSupply": "299467018089669557144519380" + "mAssetSupply": "2558766535031495450256768474" }, { "type": "mintMulti", "inputQtys": [ - "63624453153957156487168", - "42206846992639827378176", - "25233450104174158020608" + "198943368769317487247360", + "162395317459123911524352", + "5480710700817742561280" ], - "expectedQty": "132686336466529065279888", + "expectedQty": "367060836753627749492309", "reserves": [ - "30635863026545938770448398", - "163760279575122878738759915", - "105931027176599479944674779" + "672939259041977098112687263", + "974778487169168447445535671", + "911685823329129810963233737" ], - "mAssetSupply": "299599704426136086209799268" + "mAssetSupply": "2559133595868249078006260783" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "32636665798211576", - "18193636806893148", - "3872028748774113" + "1346354978036330496", + "1428193235977504768", + "1635197824267969280" ], - "expectedQty": "55590984628216333", + "expectedQty": "4409943422940630197", + "swapFee": "2647554586516287", "reserves": [ - "30635863059182604568659974", - "163760279593316515545653063", - "105931027180471508693448892" + "672939257695622120076356767", + "974778485740975211468030903", + "911685821693931986695264457" ], - "mAssetSupply": "299599704481727070838015601" + "mAssetSupply": "2559133591458305655065630586" }, { "type": "redeem", "inputIndex": 2, - "inputQty": "74490838908461400457216", - "expectedQty": "74689626040023125996412", - "swapFee": "44694503345076840274", + "inputQty": "20532494459019762564333568", + "expectedQty": "20532385184330296003561730", + "swapFee": "12319496675411857538600", "reserves": [ - "30635863059182604568659974", - "163760279593316515545653063", - "105856337554431485567452480" + "672939257695622120076356767", + "974778485740975211468030903", + "891153436509601690691702727" ], - "mAssetSupply": "299525258337321954514398659" + "mAssetSupply": "2538613416495961304358835618" }, { - "type": "redeemMasset", - "inputQty": "10584654142138", - "expectedQtys": [ - "1082288470835", - "5785241376828", - "3739639829268" + "type": "mintMulti", + "inputQtys": [ + "227105913965248704937984", + "192676427103724380356608", + "51964560513542987448320" ], - "redemptionFee": "3175396242", + "expectedQty": "471959921411196738677552", "reserves": [ - "30635863059181522280189139", - "163760279593310730304276235", - "105856337554427745927623212" + "673166363609587368781294751", + "974971162168078935848387511", + "891205401070115233679151047" ], - "mAssetSupply": "299525258337311373035652763" + "mAssetSupply": "2539085376417372501097513170" }, { "type": "mintMulti", "inputQtys": [ - "6194490701693829079105536", - "752893421755498433085440", - "2214919938948088209604608" + "32201285399683307430477824", + "8651157187220452379983872", + "1152563009541279630491648" ], - "expectedQty": "9317972673368542116847273", + "expectedQty": "42056777382767776850281467", "reserves": [ - "36830353760875351359294675", - "164513173015066228737361675", - "108071257493375834137227820" + "705367649009270676211772575", + "983622319355299388228371383", + "892357964079656513309642695" ], - "mAssetSupply": "308843231010679915152500036" + "mAssetSupply": "2581142153800140277947794637" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "4776934930422730395222016", - "expectedQty": "4764234254438825362928819", + "type": "redeemBassets", + "inputQtys": [ + "20714532084865708032", + "11857544318270633984", + "22244331601652908032" + ], + "expectedQty": "54831363546919122957", + "swapFee": "32918569269713301", "reserves": [ - "36830353760875351359294675", - "164513173015066228737361675", - "112848192423798564532449836" - ] + "705367628294738591346064543", + "983622307497755069957737399", + "892357941835324911656734663" + ], + "mAssetSupply": "2581142098968776731028671680" }, { "type": "redeemMasset", - "inputQty": "583872795255918", + "inputQty": "719472526464492607897", "expectedQtys": [ - "68549995485510", - "306197907864510", - "210037164764272" + "196556548370309305154", + "274094525898786374507", + "248662952369986180004" ], - "redemptionFee": "175161838576", + "redemptionFee": "215841757939347782", "reserves": [ - "36830353760806801363809165", - "164513173014760030829497165", - "112848192423588527367685564" + "705367431738190221036759389", + "983622033403229171171362892", + "892357693172372541670554659" ], - "mAssetSupply": "313607465264535042882011513" + "mAssetSupply": "2581141379712092024475411565" }, { "type": "redeemBassets", "inputQtys": [ - "141157935916260448534528", - "82593498322765751517184", - "138130291632101969100800" + "5690847767937088", + "5201224174643038", + "806592039482599" ], - "expectedQty": "364230985514621526841068", - "swapFee": "218669793184683726340", + "expectedQty": "11702584145062643", + "swapFee": "7025765946605", "reserves": [ - "36689195824890540915274637", - "164430579516437265077979981", - "112710062131956425398584764" + "705367431732499373268822301", + "983622033398027946996719854", + "892357693171565949631072060" ], - "mAssetSupply": "313243234279020421355170445" + "mAssetSupply": "2581141379700389440330348922" }, { - "type": "mintMulti", - "inputQtys": [ - "1416979979738535539245056", - "1396007178393259717165056", - "1465595677118933550235648" - ], - "expectedQty": "4297443275264634858348321", + "type": "swap", + "inputIndex": 0, + "inputQty": "29755955732258177320747008", + "outputIndex": 2, + "expectedQty": "29792032267117179098488366", + "swapFee": "17882825382735206361061", "reserves": [ - "38106175804629076454519693", - "165826586694830524795145037", - "114175657809075358948820412" + "735123387464757550589569309", + "983622033398027946996719854", + "862565660904448770532583694" ], - "mAssetSupply": "317540677554285056213518766" + "mAssetSupply": "2581159262525772175536709983", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "160695360174492246605824", - "28412311098032769728512", - "388496608380698994147328" + "73314647918685376741376", + "112895661246227033358336", + "71124175327392027377664" ], - "expectedQty": "579907996245475057093688", + "expectedQty": "257304021956041408361657", "reserves": [ - "38266871164803568701125517", - "165854999005928557564873549", - "114564154417456057942967740" + "735196702112676235966310685", + "983734929059274174030078190", + "862636785079776162559961358" ], - "mAssetSupply": "318120585550530531270612454" + "mAssetSupply": "2581416566547728216945071640" }, { - "type": "swap", + "type": "mint", "inputIndex": 2, - "inputQty": "59204022243408318824448", - "outputIndex": 1, - "expectedQty": "59397641495295023106393", - "swapFee": "35424588809363254441", + "inputQty": "4587515220213150274027520", + "expectedQty": "4587082285044111616887617", "reserves": [ - "38266871164803568701125517", - "165795601364433262541767156", - "114623358439699466261792188" - ], - "mAssetSupply": "318120620975119340633866895", - "hardLimitError": false, - "insufficientLiquidityError": false + "735196702112676235966310685", + "983734929059274174030078190", + "867224300299989312833988878" + ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "1833791343496574663655424", - "expectedQty": "1791177496035513216244716", - "swapFee": "1100274806097944798193", + "type": "mint", + "inputIndex": 1, + "inputQty": "6482257871311463075807232", + "expectedQty": "6475001910148697107774658", "reserves": [ - "36475693668768055484880801", - "165795601364433262541767156", - "114623358439699466261792188" - ], - "mAssetSupply": "316287929906428863915009664" + "735196702112676235966310685", + "990217186930585637105885422", + "867224300299989312833988878" + ] }, { "type": "redeemMasset", - "inputQty": "705894975481004617315123", + "inputQty": "236059396304536840490188", "expectedQtys": [ - "81382443183703909438638", - "369913488984642118481451", - "255740961102857855063842" + "66923607872020878620179", + "90137655046392930010822", + "78941838073519124695805" ], - "redemptionFee": "211768492644301385194", + "redemptionFee": "70817818891361052147", "reserves": [ - "36394311225584351575442163", - "165425687875448620423285705", - "114367617478596608406728346" + "735129778504804215087690506", + "990127049275539244175874600", + "867145358461915793709293073" ], - "mAssetSupply": "315582246699440503599079735" + "mAssetSupply": "2592242662164435380190295874" }, { - "type": "swap", + "type": "redeem", "inputIndex": 2, - "inputQty": "3092465615825738433298432", - "outputIndex": 0, - "expectedQty": "2999972788897065133056095", - "swapFee": "1849698662286063922119", + "inputQty": "1131806928836396406800384", + "expectedQty": "1131226487028673300730194", + "swapFee": "679084157301837844080", "reserves": [ - "33394338436687286442386068", - "165425687875448620423285705", - "117460083094422346840026778" + "735129778504804215087690506", + "990127049275539244175874600", + "866014131974887120408562879" ], - "mAssetSupply": "315584096398102789663001854", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2591111534319756285621339570" }, { "type": "redeem", - "inputIndex": 2, - "inputQty": "709959225641468800", - "expectedQty": "712170437811393789", - "swapFee": "425975535384881", + "inputIndex": 1, + "inputQty": "1654358262326293921005568", + "expectedQty": "1655244469449632961103699", + "swapFee": "992614957395776352603", "reserves": [ - "33394338436687286442386068", - "165425687875448620423285705", - "117460082382251909028632989" + "735129778504804215087690506", + "988471804806089611214770901", + "866014131974887120408562879" ], - "mAssetSupply": "315584095688569539556917935" + "mAssetSupply": "2589458168672387387476686605" }, { - "type": "redeemMasset", - "inputQty": "47374310104878171553792", - "expectedQtys": [ - "5011529910189660004641", - "24825638761291477848209", - "17627380677956363131910" - ], - "redemptionFee": "14212293031463451466", + "type": "redeem", + "inputIndex": 0, + "inputQty": "11848115950679227476475904", + "expectedQty": "11823670984968901944635017", + "swapFee": "7108869570407536485885", "reserves": [ - "33389326906777096782381427", - "165400862236687328945437496", - "117442455001573952665501079" + "723306107519835313143055489", + "988471804806089611214770901", + "866014131974887120408562879" ], - "mAssetSupply": "315536735590757692848815609" + "mAssetSupply": "2577617161591278567536696586" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "36037114841946761723904", - "38263111898992371302400", - "63341530098058037035008" + "9561705934485114880", + "994681434290230132736", + "2706335712438941908992" ], - "expectedQty": "138179566303899659325764", + "expectedQty": "3709063401295837589714", + "swapFee": "2226774105240646941", "reserves": [ - "33425364021619043544105331", - "165439125348586321316739896", - "117505796531672010702536087" + "723306097958129378657940609", + "988470810124655320984638165", + "866011425639174681466653887" ], - "mAssetSupply": "315674915157061592508141373" + "mAssetSupply": "2577613452527877271699106872" }, { "type": "mint", "inputIndex": 1, - "inputQty": "22572584776207934947328", - "expectedQty": "22402997226364675186421", + "inputQty": "61271134417718890987520", + "expectedQty": "61199183539836648264658", "reserves": [ - "33425364021619043544105331", - "165461697933362529251687224", - "117505796531672010702536087" + "723306097958129378657940609", + "988532081259073039875625685", + "866011425639174681466653887" ] }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "5463716059576565304918016", - "expectedQty": "5442375660797506960538351", + "type": "swap", + "inputIndex": 0, + "inputQty": "2361370095469791281152", + "outputIndex": 2, + "expectedQty": "2363863816114490553605", + "swapFee": "1418980181825820565", "reserves": [ - "33425364021619043544105331", - "165461697933362529251687224", - "122969512591248576007454103" - ] + "723308459328224848449221761", + "988532081259073039875625685", + "866009061775358566976100282" + ], + "mAssetSupply": "2577674653130397290173192095", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemMasset", - "inputQty": "53732409928378182", - "expectedQtys": [ - "5590982954104288", - "27676393654359175", - "20568824570691443" + "type": "redeemBassets", + "inputQtys": [ + "2223928608360662827008", + "1992750143672874696704", + "4612785244578987900928" ], - "redemptionFee": "16119722978513", + "expectedQty": "8829894827202042778623", + "swapFee": "5301117566861342472", "reserves": [ - "33425364016028060590001043", - "165461697905686135597328049", - "122969512570679751436762660" + "723306235399616487786394753", + "988530088508929367000928981", + "866004448990113987988199354" ], - "mAssetSupply": "321139693761369173938466476" + "mAssetSupply": "2577665823235570088130413472" }, { - "type": "mintMulti", - "inputQtys": [ - "29363433659116491374592", - "40833049894266140098560", - "102501274308828718956544" - ], - "expectedQty": "172864942728865150175137", + "type": "swap", + "inputIndex": 2, + "inputQty": "1830341239683388538880", + "outputIndex": 1, + "expectedQty": "1831149281431504158784", + "swapFee": "1098058035955893733", "reserves": [ - "33454727449687177081375635", - "165502530955580401737426609", - "123072013844988580155719204" + "723306235399616487786394753", + "988528257359647935496770197", + "866006279331353671376738234" ], - "mAssetSupply": "321312558704098039088641613" + "mAssetSupply": "2577665824333628124086307205", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "11216696331879866957824", - "expectedQty": "11170601404715630310882", + "inputIndex": 0, + "inputQty": "651457519308798", + "expectedQty": "652449813477540", "reserves": [ - "33454727449687177081375635", - "165502530955580401737426609", - "123083230541320460022677028" + "723306235400267945305703551", + "988528257359647935496770197", + "866006279331353671376738234" ] }, { "type": "redeemMasset", - "inputQty": "374301304862858956", + "inputQty": "11554464961415801628262", "expectedQtys": [ - "38958814280117220", - "192731576608557875", - "143333306985317962" - ], - "redemptionFee": "112290391458857", - "reserves": [ - "33454727410728362801258415", - "165502530762848825128868734", - "123083230397987153037359066" - ], - "mAssetSupply": "321323728931313740247552396" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "204733787784417407664128", - "expectedQty": "205453810357739873770729", - "swapFee": "122840272670650444598", - "reserves": [ - "33454727410728362801258415", - "165502530762848825128868734", - "122877776587629413163588337" - ], - "mAssetSupply": "321119117983801993490332866" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "45075834727214222409728", - "19680971047750189711360", - "3694524456122479804416" + "3241269387779445732231", + "4429778457200344903137", + "3880734750293088041800" ], - "expectedQty": "69657309490550691102967", - "swapFee": "41819477380758869983", + "redemptionFee": "3466339488424740488", "reserves": [ - "33409651576001148578848687", - "165482849791801074939157374", - "122874082063173290683783921" + "723302994130880165859971320", + "988523827581190735151867060", + "866002398596603378288696434" ], - "mAssetSupply": "321049460674311442799229899" + "mAssetSupply": "2577654273335658646522896971" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "42445396967879711129600", - "expectedQty": "42271173659074858913825", + "inputIndex": 0, + "inputQty": "55756320253566965266776064", + "expectedQty": "55826937610771266550002480", "reserves": [ - "33409651576001148578848687", - "165482849791801074939157374", - "122916527460141170394913521" + "779059314384447131126747384", + "988523827581190735151867060", + "866002398596603378288696434" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "263717623931414819897344", - "39325670698571660263424", - "3922110674956829881008128" - ], - "expectedQty": "4217208103129151357837454", - "swapFee": "2531843968258445882231", + "type": "swap", + "inputIndex": 0, + "inputQty": "726492563984650537533440", + "outputIndex": 1, + "expectedQty": "727505633012549991932298", + "swapFee": "436340256592902625740", "reserves": [ - "33145933952069733758951343", - "165443524121102503278893950", - "118994416785184340513905393" + "779785806948431781664280824", + "987796321948178185159934762", + "866002398596603378288696434" ], - "mAssetSupply": "316874523744841366300306270" + "mAssetSupply": "2633481647286686505975525191", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "11863788341579401216", - "472163757245076602880", - "375781963604904116224" + "1036263927441043849478144", + "893687059724192098287616", + "941497230476238496202752" ], - "expectedQty": "855151155719912812152", - "swapFee": "513398732671550617", + "expectedQty": "2871702414470114026355874", "reserves": [ - "33145922088281392179550127", - "165443051957345258202291070", - "118994041003220735609789169" + "780822070875872825513758968", + "988690009007902377258222378", + "866943895827079616784899186" ], - "mAssetSupply": "316873668593685646387494118" + "mAssetSupply": "2636353349701156620001881065" }, { "type": "redeemBassets", "inputQtys": [ - "74579686131753091072", - "64706670518980198400", - "13829048357279565824" - ], - "expectedQty": "154821881696897687351", - "swapFee": "92948898357152904", - "reserves": [ - "33145847508595260426459055", - "165442987250674739222092670", - "118994027174172378330223345" - ], - "mAssetSupply": "316873513771803949489806767" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "56184964882763698143232", - "expectedQty": "56578282293600781343028", - "swapFee": "33710978929658218885", - "reserves": [ - "33145847508595260426459055", - "165386408968381138440749642", - "118994027174172378330223345" - ], - "mAssetSupply": "316817362517900115449882420" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "733280794689118848", - "outputIndex": 2, - "expectedQty": "730131969912577861", - "swapFee": "436648550101680", - "reserves": [ - "33145847508595260426459055", - "165386409701661933129868490", - "118994026444040408417645484" + "24754405594129207296", + "9337898109035544576", + "47484428904397029376" ], - "mAssetSupply": "316817362518336763999984100", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "2734678795787823300476928", - "expectedQty": "2743349883813521786045235", - "swapFee": "1640807277472693980286", + "expectedQty": "81596342850960292800", + "swapFee": "48987198029393811", "reserves": [ - "33145847508595260426459055", - "165386409701661933129868490", - "116250676560226886631600249" + "780822046121467231384551672", + "988689999670004268222677802", + "866943848342650712387869810" ], - "mAssetSupply": "314084324529826413393487458" + "mAssetSupply": "2636353268104813769041588265" }, { - "type": "mintMulti", + "type": "redeemBassets", "inputQtys": [ - "406053218545176598806528", - "169129928689228525338624", - "403030669336124302819328" - ], - "expectedQty": "987390963179589341574979", - "reserves": [ - "33551900727140437025265583", - "165555539630351161655207114", - "116653707229563010934419577" + "42360806971371876777984", + "56695355327677370204160", + "3020772225645272367104" ], - "mAssetSupply": "315071715493006002735062437" - }, - { - "type": "redeem", - "inputIndex": 1, - "inputQty": "907306234093146734592", - "expectedQty": "913620350299309193577", - "swapFee": "544383740455888040", + "expectedQty": "102065070024738385995125", + "swapFee": "61275807499342637179", "reserves": [ - "33551900727140437025265583", - "165554626010000862346013537", - "116653707229563010934419577" + "780779685314495859507773688", + "988633304314676590852473642", + "866940827570425067115502706" ], - "mAssetSupply": "315070808731155650044215885" + "mAssetSupply": "2636251203034789030655593140" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "924706729031402", - "outputIndex": 2, - "expectedQty": "954446231013887", - "swapFee": "570941984169", - "reserves": [ - "33551900728065143754296985", - "165554626010000862346013537", - "116653707228608564703405690" + "type": "redeemMasset", + "inputQty": "663707712466669010944", + "expectedQtys": [ + "196511635702430108143", + "248825566795479367182", + "218197224245736520753" ], - "mAssetSupply": "315070808731156220986200054", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "24906151090559398182912", - "expectedQty": "24188024817078969661442", - "swapFee": "14943690654335638909", + "redemptionFee": "199112313740000703", "reserves": [ - "33527712703248064784635543", - "165554626010000862346013537", - "116653707228608564703405690" + "780779488802860157077665545", + "988633055489109795373106460", + "866940609373200821378981953" ], - "mAssetSupply": "315045917523756315923656051" + "mAssetSupply": "2636250539526188877726582899" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "2620490365484489244672", - "835321500832367509504", - "11680232189837933805568" + "67780763958873298042880", + "70467597265230041710592", + "114474797346478763278336" ], - "expectedQty": "15163777172739454828054", - "swapFee": "9103728540768133777", + "expectedQty": "252732100303389593843205", "reserves": [ - "33525092212882580295390871", - "165553790688500029978504033", - "116642026996418726769600122" + "780847269566819030375708425", + "988703523086375025414817052", + "867055084170547300142260289" ], - "mAssetSupply": "315030753746583576468827997" + "mAssetSupply": "2636503271626492267320426104" }, { "type": "redeem", "inputIndex": 0, - "inputQty": "14594139190258040832000", - "expectedQty": "14172850941479655084061", - "swapFee": "8756483514154824499", + "inputQty": "881717160546780053504", + "expectedQty": "880296500341880953610", + "swapFee": "529030296328068032", "reserves": [ - "33510919361941100640306810", - "165553790688500029978504033", - "116642026996418726769600122" + "780846389270318688494754815", + "988703523086375025414817052", + "867055084170547300142260289" ], - "mAssetSupply": "315016168363876832582820496" + "mAssetSupply": "2636502390438362016868440632" }, { "type": "redeemBassets", "inputQtys": [ - "8660364506006144235339776", - "476412580246274764177408", - "758535230173927752859648" + "3778875170493413294342144", + "1603131960081025557594112", + "3455035970036465678680064" ], - "expectedQty": "10225746173932446880089425", - "swapFee": "6139131183069309713881", + "expectedQty": "8839597312091110206377228", + "swapFee": "5306942552786337926582", "reserves": [ - "24850554855934956404967034", - "165077378108253755214326625", - "115883491766244799016740474" + "777067514099825275200412671", + "987100391126293999857222940", + "863600048200510834463580225" ], - "mAssetSupply": "304790422189944385702731071" + "mAssetSupply": "2627662793126270906662063404" }, { - "type": "redeemBassets", - "inputQtys": [ - "697125584466951222067200", - "874785547881647330820096", - "566835888719833675595776" - ], - "expectedQty": "2163851022338921950920268", - "swapFee": "1299090067443819462229", - "reserves": [ - "24153429271468005182899834", - "164202592560372107883506529", - "115316655877524965341144698" + "type": "redeemMasset", + "inputQty": "5555287688713890430976", + "expectedQtys": [ + "1642348689332974270532", + "2086257634234435354732", + "1825237037367383221520" ], - "mAssetSupply": "302626571167605463751810803" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "16296728714177142587392", - "outputIndex": 1, - "expectedQty": "17358995248225468857401", - "swapFee": "10312942837542441411", + "redemptionFee": "1666586306614167129", "reserves": [ - "24169726000182182325487226", - "164185233565123882414649128", - "115316655877524965341144698" + "777065871751135942226142139", + "987098304868659765421868208", + "863598222963473467080358705" ], - "mAssetSupply": "302626581480548301294252214", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2627657239505168499385799557" }, { "type": "mint", "inputIndex": 0, - "inputQty": "151014602924455329792", - "expectedQty": "159269140023767974688", + "inputQty": "8515522949620028145664", + "expectedQty": "8524262006155798523165", "reserves": [ - "24169877014785106780817018", - "164185233565123882414649128", - "115316655877524965341144698" + "777074387274085562254287803", + "987098304868659765421868208", + "863598222963473467080358705" ] }, { - "type": "redeemBassets", - "inputQtys": [ - "80216179515320631296", - "6094698447101757440", - "32704656268392828928" + "type": "redeemMasset", + "inputQty": "9520449438620973216563", + "expectedQtys": [ + "2814619000196933788097", + "3575340648778282325142", + "3128014520483682828290" ], - "expectedQty": "123151222174570895402", - "swapFee": "73935094361359352", + "redemptionFee": "2856134831586291964", "reserves": [ - "24169796798605591460185722", - "164185227470425435312891688", - "115316623172868696948315770" + "777071572655085365320499706", + "987094729528010987139543066", + "863595094948952983397530415" ], - "mAssetSupply": "302626617598466150491331500" + "mAssetSupply": "2627656246173870865797398123" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "4990683799818809344", - "4545778978137122816", - "6839459003343613952" + "5130247849343336448", + "2619964544534973440", + "575236411696485440" ], - "expectedQty": "16562531928088096239", - "swapFee": "9943485248001658", + "expectedQty": "8328181174133831083", "reserves": [ - "24169791807921791641376378", - "164185222924646457175768872", - "115316616333409693604701818" + "777071577785333214663836154", + "987094732147975531674516506", + "863595095524189395094015855" ], - "mAssetSupply": "302626601035934222403235261" + "mAssetSupply": "2627656254502052039931229206" }, { "type": "mintMulti", "inputQtys": [ - "195572196223115648", - "263623865471309984", - "28944547039015180" + "36172484797209096749056", + "277289518468264670265344", + "296347261240210609930240" ], - "expectedQty": "495916970736211233", + "expectedQty": "609596929903747806800053", "reserves": [ - "24169792003493987864492026", - "164185223188270322647078856", - "115316616362354240643716998" + "777107750270130423760585210", + "987372021666443796344781850", + "863891442785429605703946095" ], - "mAssetSupply": "302626601531851193139446494" + "mAssetSupply": "2628265851431955787738029259" }, { - "type": "mintMulti", - "inputQtys": [ - "2519686403718907", - "540193667629018", - "5336768562812330" + "type": "swap", + "inputIndex": 2, + "inputQty": "15347945043131178680320", + "outputIndex": 1, + "expectedQty": "15355056929161813950148", + "swapFee": "9209490363652742572", + "reserves": [ + "777107750270130423760585210", + "987356666609514634530831702", + "863906790730472736882626415" ], - "expectedQty": "8498489875477708", + "mAssetSupply": "2628265860641446151390771831", + "hardLimitError": false, + "insufficientLiquidityError": false + }, + { + "type": "swap", + "inputIndex": 2, + "inputQty": "3098943387907009353351168", + "outputIndex": 0, + "expectedQty": "3094040454748870194551118", + "swapFee": "1859493040134798320697", "reserves": [ - "24169792006013674268210933", - "164185223188810516314707874", - "115316616367691009206529328" + "774013709815381553566034092", + "987356666609514634530831702", + "867005734118379746235977583" ], - "mAssetSupply": "302626601540349683014924202" + "mAssetSupply": "2628267720134486286189092528", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 0, - "inputQty": "2405819032676882771345408", - "expectedQty": "2525568943587590388176162", + "inputIndex": 1, + "inputQty": "47578472072888562221056", + "expectedQty": "47531558303897741564992", "reserves": [ - "26575611038690557039556341", - "164185223188810516314707874", - "115316616367691009206529328" + "774013709815381553566034092", + "987404245081587523093052758", + "867005734118379746235977583" ] }, { - "type": "mintMulti", - "inputQtys": [ - "816371064190745175916544", - "2154755442905511295451136", - "1912912035901752167366656" - ], - "expectedQty": "4890778370846523456782452", + "type": "swap", + "inputIndex": 2, + "inputQty": "72095804244387715612672", + "outputIndex": 1, + "expectedQty": "72127023394813630656935", + "swapFee": "43259509851194529180", "reserves": [ - "27391982102881302215472885", - "166339978631716027610159010", - "117229528403592761373895984" + "774013709815381553566034092", + "987332118058192709462395823", + "867077829922624133951590255" ], - "mAssetSupply": "310042948854783796859882816" + "mAssetSupply": "2628315294952300035125186700", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2714022111030409963765760", - "expectedQty": "2700396214091207900190738", + "inputIndex": 0, + "inputQty": "8568533287940186716504064", + "expectedQty": "8577354612307039712044755", "reserves": [ - "27391982102881302215472885", - "166339978631716027610159010", - "119943550514623171337661744" + "782582243103321740282538156", + "987332118058192709462395823", + "867077829922624133951590255" ] }, { "type": "redeemBassets", "inputQtys": [ - "1245538995414422337355776", - "4988586008599949912047616", - "3730787861559956373241856" + "153888901938046809669632", + "104582881755124968980480", + "293222406548196058726400" ], - "expectedQty": "9955465913847026313345618", - "swapFee": "5976865667708841092662", + "expectedQty": "551769905886933361775412", + "swapFee": "331260699952131295842", "reserves": [ - "26146443107466879878117109", - "161351392623116077698111394", - "116212762653063214964419888" + "782428354201383693472868524", + "987227535176437584493415343", + "866784607516075937892863855" ], - "mAssetSupply": "302787879155027978446727936" + "mAssetSupply": "2636340879658720141475456043" }, { - "type": "mint", - "inputIndex": 2, - "inputQty": "3433445746985603946250240", - "expectedQty": "3414942071420345194786421", + "type": "swap", + "inputIndex": 1, + "inputQty": "560724208164000000", + "outputIndex": 2, + "expectedQty": "559807269685495092", + "swapFee": "336112377521277", "reserves": [ - "26146443107466879878117109", - "161351392623116077698111394", - "119646208400048818910670128" - ] + "782428354201383693472868524", + "987227535737161792657415343", + "866784606956268668207368763" + ], + "mAssetSupply": "2636340879659056253852977320", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "7389552999563733762048", - "6361733125473585594368", - "1775312715330183495680" + "1916698004424926429184", + "1226630792423638827008", + "1803377607568317480960" ], - "expectedQty": "15804285558042796550136", - "swapFee": "9488264293401718961", + "expectedQty": "4947578421418467267353", "reserves": [ - "26139053554467316144355061", - "161345030889990604112517026", - "119644433087333488727174448" + "782430270899388118399297708", + "987228762367954216296242351", + "866786410333876236524849723" ], - "mAssetSupply": "306187016940890280844964221" + "mAssetSupply": "2636345827237477672320244673" }, { - "type": "mint", - "inputIndex": 0, - "inputQty": "5780050754495892684800", - "expectedQty": "6051395781898059186129", + "type": "swap", + "inputIndex": 2, + "inputQty": "2888233228817485422133248", + "outputIndex": 0, + "expectedQty": "2883769049132957581305236", + "swapFee": "1733059555291248073823", "reserves": [ - "26144833605221812037039861", - "161345030889990604112517026", - "119644433087333488727174448" - ] + "779546501850255160817992472", + "987228762367954216296242351", + "869674643562693721946982971" + ], + "mAssetSupply": "2636347560297032963568318496", + "hardLimitError": false, + "insufficientLiquidityError": false }, { - "type": "mintMulti", - "inputQtys": [ - "2629227948272089", - "745872862157131", - "3526871633077522" + "type": "redeemMasset", + "inputQty": "1666952175591052461001932", + "expectedQtys": [ + "492756310577707846909902", + "624033590665865875778924", + "549726883191446661958122" ], - "expectedQty": "6998878644680903", + "redemptionFee": "500085652677315738300", "reserves": [ - "26144833607851039985311950", - "161345030890736476974674157", - "119644433090860360360251970" + "779053745539677452971082570", + "986604728777288350420463427", + "869124916679502275285024849" ], - "mAssetSupply": "306193068343671057548831253" + "mAssetSupply": "2634681108207094588423054864" }, { "type": "mintMulti", "inputQtys": [ - "22441523644353245184", - "10414148877330526208", - "15302595724505092096" + "5461814032467245668499456", + "2502985523292491550294016", + "5967544436450187030822912" ], - "expectedQty": "49029612666178007811", + "expectedQty": "13935804403323257438033186", "reserves": [ - "26144856049374684338557134", - "161345041304885354305200365", - "119644448393456084865344066" + "784515559572144698639582026", + "989107714300580841970757443", + "875092461115952462315847761" ], - "mAssetSupply": "306193117373283723726839064" + "mAssetSupply": "2648616912610417845861088050" }, { "type": "swap", - "inputIndex": 1, - "inputQty": "428202213506446880931840", - "outputIndex": 2, - "expectedQty": "426295154036032663276351", - "swapFee": "254519799367984019295", + "inputIndex": 2, + "inputQty": "9451033048398711226368", + "outputIndex": 1, + "expectedQty": "9454568984623008176644", + "swapFee": "5670832034877184812", "reserves": [ - "26144856049374684338557134", - "161773243518391801186132205", - "119218153239420052202067715" + "784515559572144698639582026", + "989098259731596218962580799", + "875101912149000861027074129" ], - "mAssetSupply": "306193371893083091710858359", + "mAssetSupply": "2648616918281249880738272862", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "62703579503591151370240", - "outputIndex": 1, - "expectedQty": "62910822026968281580874", - "swapFee": "37415342996888637870", + "type": "mint", + "inputIndex": 1, + "inputQty": "28116210080159350390784", + "expectedQty": "28089881196952383626796", "reserves": [ - "26144856049374684338557134", - "161710332696364832904551331", - "119280856818923643353437955" + "784515559572144698639582026", + "989126375941676378312971583", + "875101912149000861027074129" + ] + }, + { + "type": "redeemBassets", + "inputQtys": [ + "4604590736718655127552", + "26911821628720411574272", + "4953267180996420173824" ], - "mAssetSupply": "306193409308426088599496229", - "hardLimitError": false, - "insufficientLiquidityError": false + "expectedQty": "36449327610883414987581", + "swapFee": "21882726202251399832", + "reserves": [ + "784510954981407979984454474", + "989099464120047657901397311", + "875096958881819864606900305" + ], + "mAssetSupply": "2648608558834835949706912077" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "556613988178295835852800", - "expectedQty": "553538757954275751633546", + "inputIndex": 1, + "inputQty": "3648212038622749655040", + "expectedQty": "3644795841411270643197", "reserves": [ - "26144856049374684338557134", - "161710332696364832904551331", - "119837470807101939189290755" + "784510954981407979984454474", + "989103112332086280651052351", + "875096958881819864606900305" ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "30705932487422120", - "expectedQty": "30535547436729649", + "inputQty": "18509390057940545536", + "expectedQty": "18510082193747633597", "reserves": [ - "26144856049374684338557134", - "161710332696364832904551331", - "119837470837807871676712875" + "784510954981407979984454474", + "989103112332086280651052351", + "875096977391209922547445841" ] }, { "type": "redeemBassets", "inputQtys": [ - "41481051238923583488", - "152357157205190672384", - "59143982982272294912" + "199918451978037002240", + "156574484785613373440", + "20916429122370961408" ], - "expectedQty": "253183453073912668678", - "swapFee": "152001272607912348", + "expectedQty": "377466035302935964410", + "swapFee": "226615590536083228", "reserves": [ - "26144814568323445414973646", - "161710180339207627713878947", - "119837411693824889404417963" + "784510755062956001947452234", + "989102955757601495037678911", + "875096956474780800176484433" ], - "mAssetSupply": "306746694913462837875190746" + "mAssetSupply": "2648611844674724251789224461" }, { "type": "redeemMasset", - "inputQty": "810955847423315", + "inputQty": "371346773241710437937971", "expectedQtys": [ - "69099129406702", - "427390014507064", - "316722874310559" + "109958784783949221280488", + "138634885932940782863514", + "122655549692722183269446" ], - "redemptionFee": "243286754226", + "redemptionFee": "111404031972513131381", "reserves": [ - "26144814568254346285566944", - "161710180338780237699371883", - "119837411693508166530107404" + "784400796278172052726171746", + "988964320871668554254815397", + "874974300925088077993214987" ], - "mAssetSupply": "306746694912652125314521657" + "mAssetSupply": "2648240609305514513864417871" }, { "type": "redeemMasset", - "inputQty": "43210142749908864", + "inputQty": "130819185877819682979840", "expectedQtys": [ - "3681807406710170", - "22772612831405969", - "16875938011427786" + "38736619629080709728992", + "48838724930045049552359", + "43209475106315764436965" ], - "redemptionFee": "12963042824972", + "redemptionFee": "39245755763345904893", "reserves": [ - "26144814564572538878856774", - "161710180316007624867965914", - "119837411676632228518679618" + "784362059658542972016442754", + "988915482146738509205263038", + "874931091449981762228778022" ], - "mAssetSupply": "306746694869454945607437765" + "mAssetSupply": "2648109829365392457527342924" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "3323011600467863514644480", - "expectedQty": "3351960722755096349429738", - "swapFee": "1993806960280718108786", - "reserves": [ - "26144814564572538878856774", - "158358219593252528518536176", - "119837411676632228518679618" + "type": "mintMulti", + "inputQtys": [ + "6602250530599190134784", + "6906787441928518500352", + "7754790969339471200256" ], - "mAssetSupply": "303425677075947362810902071" - }, - { - "type": "swap", - "inputIndex": 0, - "inputQty": "11311361112372647297024", - "outputIndex": 2, - "expectedQty": "11889882709487407746517", - "swapFee": "7098183077040738019", + "expectedQty": "21264338998654379479458", "reserves": [ - "26156125925684911526153798", - "158358219593252528518536176", - "119825521793922741110933101" + "784368661909073571206577538", + "988922388934180437723763390", + "874938846240951101699978278" ], - "mAssetSupply": "303425684174130439851640090", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2648131093704391111906822382" }, { "type": "mintMulti", "inputQtys": [ - "15028778485295469297664", - "10534888317630258610176", - "14265427009330929991680" + "16295326510634493804544", + "4474180955400845131776", + "6309278331608320966656" ], - "expectedQty": "40342058463266636747310", + "expectedQty": "27091337616622457729646", "reserves": [ - "26171154704170206995451462", - "158368754481570158777146352", - "119839787220932072040924781" + "784384957235584205700382082", + "988926863115135838568895166", + "874945155519282710020944934" ], - "mAssetSupply": "303466026232593706488387400" + "mAssetSupply": "2648158185042007734364552028" }, { - "type": "redeemMasset", - "inputQty": "1029012448515139015226163", - "expectedQtys": [ - "88716240113076322593252", - "536846027919320315364293", - "406238679888972792686329" + "type": "redeemBassets", + "inputQtys": [ + "221469472380972138496", + "128652908804704862208", + "183310347141968101376" ], - "redemptionFee": "308703734554541704567", + "expectedQty": "533543436040080628620", + "swapFee": "320318252575593733", "reserves": [ - "26082438464057130672858210", - "157831908453650838461782059", - "119433548541043099248238452" + "784384735766111824728243586", + "988926734462227033864032958", + "874944972208935568052843558" ], - "mAssetSupply": "302437322487813122014865804" + "mAssetSupply": "2648157651498571694283923408" }, { - "type": "redeemBassets", - "inputQtys": [ - "727470398841925819957248", - "1566603168588647253409792", - "2157654816696786967592960" - ], - "expectedQty": "4459010706091027560070538", - "swapFee": "2677012631233356549972", + "type": "redeem", + "inputIndex": 1, + "inputQty": "62259763616233545728", + "expectedQty": "62280724631282989759", + "swapFee": "37355858169740127", "reserves": [ - "25354968065215204852900962", - "156265305285062191208372267", - "117275893724346312280645492" + "784384735766111824728243586", + "988926672181502402581043199", + "874944972208935568052843558" ], - "mAssetSupply": "297978311781722094454795266" + "mAssetSupply": "2648157589276163936220117807" }, { "type": "mint", - "inputIndex": 2, - "inputQty": "123959988618594499952640", - "expectedQty": "123258525246536392303623", + "inputIndex": 1, + "inputQty": "4640784891077123299606528", + "expectedQty": "4636383765956509077690572", "reserves": [ - "25354968065215204852900962", - "156265305285062191208372267", - "117399853712964906780598132" + "784384735766111824728243586", + "993567457072579525880649727", + "874944972208935568052843558" ] }, { "type": "mint", "inputIndex": 0, - "inputQty": "6052403170994065244160", - "expectedQty": "6338321827519501762218", + "inputQty": "178107126650751135252480", + "expectedQty": "178290154179747233167172", "reserves": [ - "25361020468386198918145122", - "156265305285062191208372267", - "117399853712964906780598132" + "784562842892762575863496066", + "993567457072579525880649727", + "874944972208935568052843558" ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "31060384238167826366464", - "outputIndex": 0, - "expectedQty": "29472117784086575881479", - "swapFee": "18530677834806305054", + "type": "mint", + "inputIndex": 1, + "inputQty": "271768659995136500957184", + "expectedQty": "271507641478017763720357", "reserves": [ - "25331548350602112342263643", - "156265305285062191208372267", - "117430914097203074606964596" - ], - "mAssetSupply": "298107927159473985155166161", - "hardLimitError": false, - "insufficientLiquidityError": false + "784562842892762575863496066", + "993839225732574662381606911", + "874944972208935568052843558" + ] }, { "type": "mint", - "inputIndex": 2, - "inputQty": "2238446660632739", - "expectedQty": "2225746258618836", + "inputIndex": 1, + "inputQty": "45583818869063937052114944", + "expectedQty": "45534744573536015687218245", "reserves": [ - "25331548350602112342263643", - "156265305285062191208372267", - "117430914099441521267597335" + "784562842892762575863496066", + "1039423044601638599433721855", + "874944972208935568052843558" ] }, { - "type": "redeemMasset", - "inputQty": "20068832535718595972300", - "expectedQtys": [ - "1704825813177745266097", - "10516732829232781995159", - "7903158972002899848631" + "type": "redeemBassets", + "inputQtys": [ + "21475052089454387924041728", + "15529717546670767690743808", + "15870637434056247443718144" ], - "redemptionFee": "6020649760715578791", + "expectedQty": "52885486568855071715404873", + "swapFee": "31750342146601003631421", "reserves": [ - "25329843524788934596997546", - "156254788552232958426377108", - "117423010940469518367748704" + "763087790803308187939454338", + "1023893327054967831742978047", + "859074334774879320609125414" ], - "mAssetSupply": "298087864349813773533391488" + "mAssetSupply": "2645893028842459154266509280" }, { "type": "swap", "inputIndex": 1, - "inputQty": "257441489322992327458816", + "inputQty": "1161917385875087853355008", "outputIndex": 2, - "expectedQty": "256342564537071488298434", - "swapFee": "153027186619952507265", + "expectedQty": "1159588094677364917371632", + "swapFee": "696289881494861565684", "reserves": [ - "25329843524788934596997546", - "156512230041555950753835924", - "117166668375932446879450270" + "763087790803308187939454338", + "1025055244440842919596333055", + "857914746680201955691753782" ], - "mAssetSupply": "298088017377000393485898753", + "mAssetSupply": "2645893725132340649128074964", "hardLimitError": false, "insufficientLiquidityError": false }, { - "type": "redeemBassets", - "inputQtys": [ - "1628536812237642679713792", - "843199504699718516080640", - "874220667074538194862080" - ], - "expectedQty": "3414583625563024002471763", - "swapFee": "2049980163435875927039", - "reserves": [ - "23701306712551291917283754", - "155669030536856232237755284", - "116292447708857908684588190" + "type": "redeemMasset", + "inputQty": "1377147696318", + "expectedQtys": [ + "397056509803", + "533365705256", + "446397700410" ], - "mAssetSupply": "294673433751437369483426990" - }, - { - "type": "swap", - "inputIndex": 1, - "inputQty": "25999567224853488", - "outputIndex": 0, - "expectedQty": "24422813075838328", - "swapFee": "15444783685580", + "redemptionFee": "413144308", "reserves": [ - "23701306688128478841445426", - "155669030562855799462608772", - "116292447708857908684588190" + "763087790803307790882944535", + "1025055244440842386230627799", + "857914746680201509294053372" ], - "mAssetSupply": "294673433751452814267112570", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2645893725132339272393522954" }, { "type": "redeemBassets", "inputQtys": [ - "135098768962114306048", - "146342116768139182080", - "43634121916018065408" + "196781158665745825792", + "388127685428457766912", + "605672573805453770752" ], - "expectedQty": "330563905852073573641", - "swapFee": "198457417962021356", + "expectedQty": "1190452933155463411644", + "swapFee": "714700580241422900", "reserves": [ - "23701171589359516727139378", - "155668884220739031323426692", - "116292404074735992666522782" + "763087594022149125137118743", + "1025054856313156957772860887", + "857914141007627703840282620" ], - "mAssetSupply": "294673103187546962193538929" + "mAssetSupply": "2645892534679406116930111310" }, { - "type": "redeemBassets", - "inputQtys": [ - "19138487437925924", - "38977379099837648", - "28081224964832076" - ], - "expectedQty": "86660170197556587", - "swapFee": "52027318509639", + "type": "mint", + "inputIndex": 1, + "inputQty": "273944650573535019008", + "expectedQty": "273604794389190124834", "reserves": [ - "23701171570221029289213454", - "155668884181761652223589044", - "116292404046654767701690706" - ], - "mAssetSupply": "294673103100886791995982342" + "763087594022149125137118743", + "1025055130257807531307879895", + "857914141007627703840282620" + ] }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "23936105581437591552", - "outputIndex": 1, - "expectedQty": "24014733505530616900", - "swapFee": "14274276907957297", + "type": "mintMulti", + "inputQtys": [ + "378858718708327111458816", + "326721555638846543101952", + "336229319256054444326912" + ], + "expectedQty": "1041938388894121881838392", "reserves": [ - "23701171570221029289213454", - "155668860167028146692972144", - "116292427982760349139282258" + "763466452740857452248577559", + "1025381851813446377850981847", + "858250370326883758284609532" ], - "mAssetSupply": "294673103115161068903939639", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2646934746673094628002074536" }, { - "type": "redeemMasset", - "inputQty": "86251636166569059942", - "expectedQtys": [ - "6935317563576059065", - "45551038556031505232", - "34028905107504794682" - ], - "redemptionFee": "25875490849970717", + "type": "redeem", + "inputIndex": 0, + "inputQty": "220492667562753276248064", + "expectedQty": "220084294745211986106186", + "swapFee": "132295600537651965748", "reserves": [ - "23701164634903465713154389", - "155668814615989590661466912", - "116292393953855241634487576" + "763246368446112240262471373", + "1025381851813446377850981847", + "858250370326883758284609532" ], - "mAssetSupply": "294673016889400393184850414" + "mAssetSupply": "2646714386301132412377792220" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "1854109591069742373797888", - "outputIndex": 0, - "expectedQty": "1740328528792326487307517", - "swapFee": "1105601638895334685078", + "type": "mintMulti", + "inputQtys": [ + "360860948046855744", + "921695499414404992", + "927094587160106240" + ], + "expectedQty": "2209122344235763514", "reserves": [ - "21960836106111139225846872", - "155668814615989590661466912", - "118146503544924984008285464" + "763246368806973188309327117", + "1025381852735141877265386839", + "858250371253978345444715772" ], - "mAssetSupply": "294674122491039288519535492", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2646714388510254756613555734" }, { "type": "redeemMasset", - "inputQty": "411905530005191812710", + "inputQty": "1037473828307714946629632", "expectedQtys": [ - "30688395785310798682", - "217533894032216883465", - "165099663961716657156" + "299091802721504352827753", + "401814301837878270248854", + "336320827999473521003707" ], - "redemptionFee": "123571659001557543", + "redemptionFee": "311242148492314483988", "reserves": [ - "21960805417715353915048190", - "155668597082095558444583447", - "118146338445261022291628308" + "762947277004251683956499364", + "1024980038433303998995137985", + "857914050425978871923712065" ], - "mAssetSupply": "294673710709080942329280325" + "mAssetSupply": "2645677225924095533981410090" }, { - "type": "redeem", - "inputIndex": 1, - "inputQty": "51237834460109241057280", - "expectedQty": "51761119678896375780875", - "swapFee": "30742700676065544634", + "type": "redeemBassets", + "inputQtys": [ + "11091844322779279130624", + "58102846847516793634816", + "67109745413311571165184" + ], + "expectedQty": "136257995912507252369310", + "swapFee": "81803879875429609187", "reserves": [ - "21960805417715353915048190", - "155616835962416662068802572", - "118146338445261022291628308" + "762936185159928904677368740", + "1024921935586456482201503169", + "857846940680565560352546881" ], - "mAssetSupply": "294622503617321509153767679" + "mAssetSupply": "2645540967928183026729040780" }, { "type": "mintMulti", "inputQtys": [ - "1336014614420646973669376", - "1639639616636668191178752", - "1285083388199520367017984" + "618115290533072", + "403934953390894", + "429933266646440" ], - "expectedQty": "4314875403749827406742187", + "expectedQty": "1452333284107626", "reserves": [ - "23296820032136000888717566", - "157256475579053330259981324", - "119431421833460542658646292" + "762936185160547019967901812", + "1024921935586860417154894063", + "857846940680995493619193321" ], - "mAssetSupply": "298937379021071336560509866" + "mAssetSupply": "2645540967929635360013148406" }, { - "type": "swap", - "inputIndex": 0, - "inputQty": "6895680762887489", - "outputIndex": 1, - "expectedQty": "7359129027844623", - "swapFee": "4373153937944", - "reserves": [ - "23296820039031681651605055", - "157256475571694201232136701", - "119431421833460542658646292" + "type": "mintMulti", + "inputQtys": [ + "31215824163757287800832", + "45699045872794446331904", + "45431689662016482443264" ], - "mAssetSupply": "298937379021075709714447810", - "hardLimitError": false, - "insufficientLiquidityError": false - }, - { - "type": "mint", - "inputIndex": 0, - "inputQty": "38183160941522492325888", - "expectedQty": "40355296625779272049680", + "expectedQty": "122336982024607258932574", "reserves": [ - "23335003199973204143930943", - "157256475571694201232136701", - "119431421833460542658646292" - ] + "762967400984710777255702644", + "1024967634632733211601225967", + "857892372370657510101636585" + ], + "mAssetSupply": "2645663304911659967272080980" }, { - "type": "mintMulti", - "inputQtys": [ - "916775220873707913216", - "299379284493222281216", - "290771079290988462080" + "type": "redeemMasset", + "inputQty": "5169980309830050563227648", + "expectedQtys": [ + "1490493168529921352043553", + "2002323107661811149652096", + "1675933622723700341702241" ], - "expectedQty": "1554069737240073722365", + "redemptionFee": "1550994092949015168968", "reserves": [ - "23335919975194077851844159", - "157256774950978694454417917", - "119431712604539833647108372" + "761476907816180855903659091", + "1022965311525071400451573871", + "856216438747933809759934344" ], - "mAssetSupply": "298979288387438729060219855" + "mAssetSupply": "2640494875595922865724022300" }, { - "type": "swap", - "inputIndex": 2, - "inputQty": "738647720772402400985088", - "outputIndex": 0, - "expectedQty": "692700041183764825330064", - "swapFee": "440307505442950911720", + "type": "redeemBassets", + "inputQtys": [ + "9764982131290573971128320", + "11309730350615661069205504", + "7901834776570878503157760" + ], + "expectedQty": "28976177215600005517903503", + "swapFee": "17396144015769464989735", "reserves": [ - "22643219934010313026514095", - "157256774950978694454417917", - "120170360325312236048093460" + "751711925684890281932530771", + "1011655581174455739382368367", + "848314603971362931256776584" ], - "mAssetSupply": "298979728694944172011131575", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2611518698380322860206118797" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "67254789539236", - "expectedQty": "71325790257100", + "inputIndex": 1, + "inputQty": "60325347533942040", + "expectedQty": "60250495405288018", "reserves": [ - "22643219934077567816053331", - "157256774950978694454417917", - "120170360325312236048093460" + "751711925684890281932530771", + "1011655581234781086916310407", + "848314603971362931256776584" ] }, { - "type": "swap", - "inputIndex": 1, - "inputQty": "7699867802682083162193920", - "outputIndex": 0, - "expectedQty": "6970310500114721287693849", - "swapFee": "4570088366388534076069", + "type": "redeemMasset", + "inputQty": "28374394597895923302", + "expectedQtys": [ + "8164970063135663645", + "10988434868131465094", + "9214252307140415305" + ], + "redemptionFee": "8512318379368776", "reserves": [ - "15672909433962846528359482", - "164956642753660777616611837", - "120170360325312236048093460" + "751711917519920218796867126", + "1011655570246346218784845313", + "848314594757110624116361279" ], - "mAssetSupply": "298984298783381886335464744", - "hardLimitError": false, - "insufficientLiquidityError": false + "mAssetSupply": "2611518670074691076094852289" }, { - "type": "mintMulti", - "inputQtys": [ - "20916055089104327540736", - "22485087061517614972928", - "36753529158119731494912" + "type": "redeemMasset", + "inputQty": "2752475156291332236902", + "expectedQtys": [ + "792047815261930345800", + "1065939711126033964199", + "893834068307655758948" ], - "expectedQty": "82172531021098776425372", + "redemptionFee": "825742546887399671", "reserves": [ - "15693825489051950855900218", - "164979127840722295231584765", - "120207113854470355779588372" + "751711125472104956866521326", + "1011654504306635092750881114", + "848313700923042316460602331" ], - "mAssetSupply": "299066471314402985111890116" + "mAssetSupply": "2611515918425277331650015058" }, { "type": "swap", - "inputIndex": 0, - "inputQty": "31820301868020111769600", - "outputIndex": 1, - "expectedQty": "36563723681204629646158", - "swapFee": "21600074534077048773", + "inputIndex": 2, + "inputQty": "5549031208630010880", + "outputIndex": 0, + "expectedQty": "5539531037960087853", + "swapFee": "3329948001812355", "reserves": [ - "15725645790919970967669818", - "164942564117041090601938607", - "120207113854470355779588372" + "751711119932573918906433473", + "1011654504306635092750881114", + "848313706472073525090613211" ], - "mAssetSupply": "299066492914477519188938889", + "mAssetSupply": "2611515918428607279651827413", "hardLimitError": false, "insufficientLiquidityError": false }, { "type": "redeemBassets", "inputQtys": [ - "8885823965088731627520", - "7282813262249343320064", - "8871985024437395128320" - ], - "expectedQty": "25998389277610941251486", - "swapFee": "15608398605730002752", - "reserves": [ - "15716759966954882236042298", - "164935281303778841258618543", - "120198241869445918384460052" + "1163575959079302039863296", + "6500394668154653511778304", + "4426441963570807391125504" ], - "mAssetSupply": "299040494525199908247687403" - }, - { - "type": "redeem", - "inputIndex": 2, - "inputQty": "5318260364694597402624", - "expectedQty": "5370059780865009161472", - "swapFee": "3190956218816758441", + "expectedQty": "12084581807027984367500267", + "swapFee": "7255102145504093076345", "reserves": [ - "15716759966954882236042298", - "164935281303778841258618543", - "120192871809665053375298580" + "750547543973494616866570177", + "1005154109638480439239102810", + "843887264508502717699487707" ], - "mAssetSupply": "299035179455791432467043220" + "mAssetSupply": "2599431336621579295284327146" }, { "type": "mint", - "inputIndex": 0, - "inputQty": "13129776336389042864128", - "expectedQty": "14850851244759313619426", + "inputIndex": 2, + "inputQty": "79972514488564596736", + "expectedQty": "79985781697184905582", "reserves": [ - "15729889743291271278906426", - "164935281303778841258618543", - "120192871809665053375298580" + "750547543973494616866570177", + "1005154109638480439239102810", + "843887344481017206264084443" ] }, { - "type": "redeem", - "inputIndex": 0, - "inputQty": "5189928474133981560832", - "expectedQty": "4585991733215748493500", - "swapFee": "3113957084480388936", - "reserves": [ - "15725303751558055530412926", - "164935281303778841258618543", - "120192871809665053375298580" - ], - "mAssetSupply": "299044843492519142279490750" - }, - { - "type": "redeem", + "type": "swap", "inputIndex": 2, - "inputQty": "373632649011436068012032", - "expectedQty": "377260143150057392359532", - "swapFee": "224179589406861640807", + "inputQty": "3105270408839675863105536", + "outputIndex": 0, + "expectedQty": "3099953089445043653396795", + "swapFee": "1863451543427134170425", "reserves": [ - "15725303751558055530412926", - "164935281303778841258618543", - "119815611666514995982939048" + "747447590884049573213173382", + "1005154109638480439239102810", + "846992614889856882127189979" ], - "mAssetSupply": "298671435023097113073119525" + "mAssetSupply": "2599433280058904419603403153", + "hardLimitError": false, + "insufficientLiquidityError": false }, { "type": "mintMulti", "inputQtys": [ - "32525949200629827108864", - "34964394166904751652864", - "99178605798403004694528" + "3047812827746025605169152", + "5843312004761699248766976", + "7085349218780703344295936" ], - "expectedQty": "169346780271759182485838", + "expectedQty": "15974125723256234538794912", "reserves": [ - "15757829700758685357521790", - "164970245697945746010271407", - "119914790272313398987633576" + "750495403711795598818342534", + "1010997421643242138487869786", + "854077964108637585471485915" ], - "mAssetSupply": "298840781803368872255605363" + "mAssetSupply": "2615407405782160654142198065" }, { - "type": "redeemBassets", + "type": "mintMulti", "inputQtys": [ - "111857441627337652174848", - "81032076011155035783168", - "114835611256769398964224" + "95951920808875918360576", + "90149517109378903179264", + "12694434254264597479424" ], - "expectedQty": "319926835597820777183505", - "swapFee": "192071344165191581258", + "expectedQty": "198811928178495621143267", "reserves": [ - "15645972259131347705346942", - "164889213621934590974488239", - "119799954661056629588669352" + "750591355632604474736703110", + "1011087571160351517391049050", + "854090658542891850068965339" ], - "mAssetSupply": "298520854967771051478421858" + "mAssetSupply": "2615606217710339149763341332" }, { - "type": "mintMulti", - "inputQtys": [ - "48190373329741316882432", - "99457550228761453002752", - "46982125865769193439232" - ], - "expectedQty": "198897210379163972681727", + "type": "mint", + "inputIndex": 1, + "inputQty": "67147266146990221688832", + "expectedQty": "67064987434879596329993", "reserves": [ - "15694162632461089022229374", - "164988671172163352427490991", - "119846936786922398782108584" - ], - "mAssetSupply": "298719752178150215451103585" + "750591355632604474736703110", + "1011154718426498507612737882", + "854090658542891850068965339" + ] }, { "type": "redeemBassets", "inputQtys": [ - "785513975665684631257088", - "1643147999396510342053888", - "457418854768906065674240" + "16775392581703245496320", + "35722668341183807225856", + "9852193425882460717056" ], - "expectedQty": "2962001231918457396000710", - "swapFee": "1778267699770936999800", + "expectedQty": "62329464927447437898349", + "swapFee": "37420131035089516448", "reserves": [ - "14908648656795404390972286", - "163345523172766842085437103", - "119389517932153492716434344" + "750574580240022771491206790", + "1011118995758157323805512026", + "854080806349465967608248283" ], - "mAssetSupply": "295757750946231758055102875" + "mAssetSupply": "2615610953232846581921772976" + }, + { + "type": "mint", + "inputIndex": 1, + "inputQty": "1696924419403523689545728", + "expectedQty": "1694837710202186226528038", + "reserves": [ + "750574580240022771491206790", + "1012815920177560847495057754", + "854080806349465967608248283" + ] }, { "type": "mintMulti", "inputQtys": [ - "116809821723723759616", - "50069443874440339456", - "74091273508332388352" + "653373148181397581594624", + "201631002922701402669056", + "284382169740506958921728" ], - "expectedQty": "256029814394488282679", + "expectedQty": "1140025807802753055585547", "reserves": [ - "14908765466617128114731902", - "163345573242210716525776559", - "119389592023427001048822696" + "751227953388204169072801414", + "1013017551180483548897726810", + "854365188519206474567170011" ], - "mAssetSupply": "295758006976046152543385554" + "mAssetSupply": "2618445816750851521203886561" }, { "type": "redeemMasset", - "inputQty": "1606661859630408898969", + "inputQty": "169795597439950524304588", "expectedQtys": [ - "80965378049336502415", - "887084589254194566455", - "648371823607885603421" - ], - "redemptionFee": "481998557889122669", - "reserves": [ - "14908684501239078778229487", - "163344686157621462331210104", - "119388943651603393163219275" - ], - "mAssetSupply": "295756400796185080023609254" - }, - { - "type": "redeemBassets", - "inputQtys": [ - "72848647814993903616", - "81702634120276426752", - "66802433119569649664" + "48699473475309681734028", + "65670374939101358523511", + "55385498700975747673504" ], - "expectedQty": "229680134670347364987", - "swapFee": "137890815291383248", - "reserves": [ - "14908611652591263784325871", - "163344604454987342054783352", - "119388876849170273593569611" - ], - "mAssetSupply": "295756171116050409676244267" - }, - { - "type": "redeem", - "inputIndex": 0, - "inputQty": "94323225620436058112", - "expectedQty": "82478148213311384738", - "swapFee": "56593935372261634", + "redemptionFee": "50938679231985157291", "reserves": [ - "14908529174443050472941133", - "163344604454987342054783352", - "119388876849170273593569611" + "751179253914728859391067386", + "1012951880805544447539203299", + "854309803020505498819496507" ], - "mAssetSupply": "295756076849418724612447789" + "mAssetSupply": "2618276072092090802664739264" }, { "type": "redeemMasset", - "inputQty": "328880846903189760", + "inputQty": "12573228730380606190387", "expectedQtys": [ - "16573315464138652", - "181584757780009969", - "132720639023360778" + "3606157216595205345240", + "4862838950881436616683", + "4101252058433635472489" ], - "redemptionFee": "98664254070956", + "redemptionFee": "3771968619114181857", "reserves": [ - "14908529157869735008802481", - "163344604273402584274773383", - "119388876716449634570208833" + "751175647757512264185722146", + "1012947017966593566102586616", + "854305701768447065184024018" ], - "mAssetSupply": "295756076520636541963328985" + "mAssetSupply": "2618263502635329041172730734" }, { - "type": "redeem", + "type": "mint", "inputIndex": 0, - "inputQty": "44480040916816788193280", - "hardLimitError": true - }, - { - "type": "redeemBassets", - "inputQtys": [ - "66395300897630638309376", - "83330026972762278461440", - "106476478831342378811392" - ], - "hardLimitError": true + "inputQty": "39750644532934426624", + "expectedQty": "39802525619891784008", + "reserves": [ + "751175687508156797120148770", + "1012947017966593566102586616", + "854305701768447065184024018" + ] }, { "type": "mint", "inputIndex": 2, - "inputQty": "5067038673395691317886976", - "hardLimitError": true + "inputQty": "270896052182424490082304", + "expectedQty": "270928323385354104065923", + "reserves": [ + "751175687508156797120148770", + "1012947017966593566102586616", + "854576597820629489674106322" + ] }, { - "type": "mintMulti", - "inputQtys": [ - "948240132011665859280896", - "1014067298020965547507712", - "180878029734470211338240" - ], - "expectedQty": "2253028755371572451547718", + "type": "swap", + "inputIndex": 0, + "inputQty": "4853878387347101696", + "outputIndex": 2, + "expectedQty": "4856728200630488204", + "swapFee": "2916131081272542", "reserves": [ - "15856769289881400868083377", - "164358671571423549822281095", - "119569754746184104781547073" + "751175692362035184467250466", + "1012947017966593566102586616", + "854576592963901289043618118" ], - "mAssetSupply": "298009105276008114414876703" + "mAssetSupply": "2618534470764156146249853207", + "hardLimitError": false, + "insufficientLiquidityError": false } ] } \ No newline at end of file diff --git a/test-utils/validator-data/masset/mintMultiTestData.json b/test-utils/validator-data/masset/mintMultiTestData.json index f5beae81..555930b6 100644 --- a/test-utils/validator-data/masset/mintMultiTestData.json +++ b/test-utils/validator-data/masset/mintMultiTestData.json @@ -1,10 +1,10 @@ [ { - "reserve0": "5503000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "5005000000000000031457280", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -15,7 +15,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -23,7 +23,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -31,7 +31,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -39,7 +39,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -47,7 +47,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -55,87 +55,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -143,7 +143,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -151,7 +151,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -159,7 +159,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -167,7 +167,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -175,7 +175,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -183,87 +183,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -271,7 +271,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -279,7 +279,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -287,7 +287,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -295,7 +295,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -303,7 +303,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -311,96 +311,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "5005000000000000031457280", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -411,7 +411,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -419,7 +419,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -427,7 +427,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -435,7 +435,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -443,7 +443,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -451,87 +451,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -539,7 +539,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -547,7 +547,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -555,7 +555,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -563,7 +563,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -571,7 +571,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -579,87 +579,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -667,7 +667,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -675,7 +675,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -683,7 +683,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -691,7 +691,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -699,7 +699,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -707,96 +707,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" } ] }, { - "reserve0": "5503000000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "39964999999999992615927808", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -807,7 +807,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -815,7 +815,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -823,7 +823,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -831,7 +831,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -839,7 +839,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -847,87 +847,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -935,7 +935,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -943,7 +943,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -951,7 +951,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -959,7 +959,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -967,7 +967,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -975,87 +975,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -1063,7 +1063,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -1071,7 +1071,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -1079,7 +1079,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -1087,7 +1087,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -1095,7 +1095,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -1103,96 +1103,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" } ] }, { - "reserve0": "2007000000000000960000000", - "reserve1": "3996499999999999360000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "20070000000000010942939136", + "reserve1": "39964999999999992615927808", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1211,7 +1211,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1000616202798095" + "expectedQty": "1000616202798180" }, { "bAssetQtys": [ @@ -1219,7 +1219,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "100061620278871720" + "expectedQty": "100061620279724314" }, { "bAssetQtys": [ @@ -1227,7 +1227,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1000616202703457733" + "expectedQty": "1000616202788717174" }, { "bAssetQtys": [ @@ -1235,7 +1235,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10006162018508647736" + "expectedQty": "10006162027034578477" }, { "bAssetQtys": [ @@ -1243,87 +1243,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "100061619332506863358" + "expectedQty": "100061620185086480412" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "699589172569064088513914" + "expectedQty": "6995891725690639876702128" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1399110113009977714491450" + "expectedQty": "13991101130099775128476882" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2098579763704496996113493" + "expectedQty": "20985797637044969152376055" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2798009813075099253271636" + "expectedQty": "27980098130750988501093494" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3497408599942144636779437" + "expectedQty": "34974085999421449585422616" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4196782242397675221053972" + "expectedQty": "41967822423976750594597499" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4896135336985582089078779" + "expectedQty": "48961353369855816052562881" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5595471408100876355649496" + "expectedQty": "55954714081008755496177737" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6294793206161822055345982" + "expectedQty": "62947932061618215714713247" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "6994102910962511597493255" + "expectedQty": "69941029109625122411933126" }, { "bAssetQtys": [ @@ -1339,7 +1339,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1000616202798095" + "expectedQty": "1000616202798180" }, { "bAssetQtys": [ @@ -1347,7 +1347,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "100061620278871720" + "expectedQty": "100061620279724314" }, { "bAssetQtys": [ @@ -1355,7 +1355,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1000616202703457733" + "expectedQty": "1000616202788717174" }, { "bAssetQtys": [ @@ -1363,7 +1363,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10006162018508647736" + "expectedQty": "10006162027034578477" }, { "bAssetQtys": [ @@ -1371,87 +1371,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "100061619332506863358" + "expectedQty": "100061620185086480412" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "699589172569064088513914" + "expectedQty": "6995891725690639876702128" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1399110113009977714491450" + "expectedQty": "13991101130099775128476882" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2098579763704496996113493" + "expectedQty": "20985797637044969152376055" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2798009813075099253271636" + "expectedQty": "27980098130750988501093494" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3497408599942144636779437" + "expectedQty": "34974085999421449585422616" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4196782242397675221053972" + "expectedQty": "41967822423976750594597499" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4896135336985582089078779" + "expectedQty": "48961353369855816052562881" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5595471408100876355649496" + "expectedQty": "55954714081008755496177737" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6294793206161822055345982" + "expectedQty": "62947932061618215714713247" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "6994102910962511597493255" + "expectedQty": "69941029109625122411933126" }, { "bAssetQtys": [ @@ -1467,7 +1467,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1000616202798095" + "expectedQty": "1000616202798180" }, { "bAssetQtys": [ @@ -1475,7 +1475,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "100061620278871720" + "expectedQty": "100061620279724314" }, { "bAssetQtys": [ @@ -1483,7 +1483,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1000616202703457733" + "expectedQty": "1000616202788717174" }, { "bAssetQtys": [ @@ -1491,7 +1491,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10006162018508647736" + "expectedQty": "10006162027034578477" }, { "bAssetQtys": [ @@ -1499,96 +1499,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "100061619332506863358" + "expectedQty": "100061620185086480412" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "699589172569064088513914" + "expectedQty": "6995891725690639876702128" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1399110113009977714491450" + "expectedQty": "13991101130099775128476882" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2098579763704496996113493" + "expectedQty": "20985797637044969152376055" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2798009813075099253271636" + "expectedQty": "27980098130750988501093494" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3497408599942144636779437" + "expectedQty": "34974085999421449585422616" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4196782242397675221053972" + "expectedQty": "41967822423976750594597499" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4896135336985582089078779" + "expectedQty": "48961353369855816052562881" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5595471408100876355649496" + "expectedQty": "55954714081008755496177737" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6294793206161822055345982" + "expectedQty": "62947932061618215714713247" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "6994102910962511597493255" + "expectedQty": "69941029109625122411933126" } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "74925000000000000232783872", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1599,7 +1599,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -1607,7 +1607,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -1615,7 +1615,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -1623,7 +1623,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -1631,7 +1631,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -1639,87 +1639,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -1727,7 +1727,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -1735,7 +1735,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -1743,7 +1743,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -1751,7 +1751,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -1759,7 +1759,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -1767,87 +1767,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -1855,7 +1855,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -1863,7 +1863,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -1871,7 +1871,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -1879,7 +1879,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -1887,7 +1887,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -1895,96 +1895,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "5503000000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "55030000000000001379926016", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1995,7 +1995,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -2003,7 +2003,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -2011,7 +2011,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -2019,7 +2019,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -2027,7 +2027,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -2035,87 +2035,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -2123,7 +2123,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -2131,7 +2131,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -2139,7 +2139,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -2147,7 +2147,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -2155,7 +2155,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -2163,87 +2163,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -2251,7 +2251,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -2259,7 +2259,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -2267,7 +2267,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -2275,7 +2275,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -2283,7 +2283,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -2291,96 +2291,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "20069999999999998058037248", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2391,7 +2391,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -2399,7 +2399,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -2407,7 +2407,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -2415,7 +2415,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -2423,7 +2423,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -2431,87 +2431,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -2519,7 +2519,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -2527,7 +2527,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -2535,7 +2535,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -2543,7 +2543,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -2551,7 +2551,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -2559,87 +2559,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -2647,7 +2647,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -2655,7 +2655,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -2663,7 +2663,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -2671,7 +2671,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -2679,7 +2679,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -2687,96 +2687,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "5503000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "55030000000000001379926016", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2787,7 +2787,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -2795,7 +2795,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -2803,7 +2803,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -2811,7 +2811,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -2819,7 +2819,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -2827,87 +2827,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -2915,7 +2915,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -2923,7 +2923,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -2931,7 +2931,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -2939,7 +2939,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -2947,7 +2947,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -2955,87 +2955,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -3043,7 +3043,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -3051,7 +3051,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -3059,7 +3059,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -3067,7 +3067,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -3075,7 +3075,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -3083,96 +3083,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "2007000000000000960000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "20070000000000010942939136", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3191,7 +3191,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1000616202798095" + "expectedQty": "1000616202798180" }, { "bAssetQtys": [ @@ -3199,7 +3199,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "100061620278871720" + "expectedQty": "100061620279724314" }, { "bAssetQtys": [ @@ -3207,7 +3207,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1000616202703457733" + "expectedQty": "1000616202788717174" }, { "bAssetQtys": [ @@ -3215,7 +3215,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10006162018508647736" + "expectedQty": "10006162027034578477" }, { "bAssetQtys": [ @@ -3223,87 +3223,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "100061619332506863358" + "expectedQty": "100061620185086480412" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "699589172569064088513914" + "expectedQty": "6995891725690639876702128" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1399110113009977714491450" + "expectedQty": "13991101130099775128476882" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2098579763704496996113493" + "expectedQty": "20985797637044969152376055" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2798009813075099253271636" + "expectedQty": "27980098130750988501093494" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3497408599942144636779437" + "expectedQty": "34974085999421449585422616" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4196782242397675221053972" + "expectedQty": "41967822423976750594597499" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4896135336985582089078779" + "expectedQty": "48961353369855816052562881" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5595471408100876355649496" + "expectedQty": "55954714081008755496177737" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6294793206161822055345982" + "expectedQty": "62947932061618215714713247" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "6994102910962511597493255" + "expectedQty": "69941029109625122411933126" }, { "bAssetQtys": [ @@ -3319,7 +3319,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1000616202798095" + "expectedQty": "1000616202798180" }, { "bAssetQtys": [ @@ -3327,7 +3327,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "100061620278871720" + "expectedQty": "100061620279724314" }, { "bAssetQtys": [ @@ -3335,7 +3335,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1000616202703457733" + "expectedQty": "1000616202788717174" }, { "bAssetQtys": [ @@ -3343,7 +3343,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10006162018508647736" + "expectedQty": "10006162027034578477" }, { "bAssetQtys": [ @@ -3351,87 +3351,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "100061619332506863358" + "expectedQty": "100061620185086480412" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "699589172569064088513914" + "expectedQty": "6995891725690639876702128" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1399110113009977714491450" + "expectedQty": "13991101130099775128476882" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2098579763704496996113493" + "expectedQty": "20985797637044969152376055" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2798009813075099253271636" + "expectedQty": "27980098130750988501093494" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3497408599942144636779437" + "expectedQty": "34974085999421449585422616" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4196782242397675221053972" + "expectedQty": "41967822423976750594597499" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4896135336985582089078779" + "expectedQty": "48961353369855816052562881" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5595471408100876355649496" + "expectedQty": "55954714081008755496177737" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6294793206161822055345982" + "expectedQty": "62947932061618215714713247" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "6994102910962511597493255" + "expectedQty": "69941029109625122411933126" }, { "bAssetQtys": [ @@ -3447,7 +3447,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1000616202798095" + "expectedQty": "1000616202798180" }, { "bAssetQtys": [ @@ -3455,7 +3455,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "100061620278871720" + "expectedQty": "100061620279724314" }, { "bAssetQtys": [ @@ -3463,7 +3463,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1000616202703457733" + "expectedQty": "1000616202788717174" }, { "bAssetQtys": [ @@ -3471,7 +3471,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10006162018508647736" + "expectedQty": "10006162027034578477" }, { "bAssetQtys": [ @@ -3479,96 +3479,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "100061619332506863358" + "expectedQty": "100061620185086480412" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "699589172569064088513914" + "expectedQty": "6995891725690639876702128" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1399110113009977714491450" + "expectedQty": "13991101130099775128476882" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2098579763704496996113493" + "expectedQty": "20985797637044969152376055" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2798009813075099253271636" + "expectedQty": "27980098130750988501093494" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3497408599942144636779437" + "expectedQty": "34974085999421449585422616" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4196782242397675221053972" + "expectedQty": "41967822423976750594597499" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4896135336985582089078779" + "expectedQty": "48961353369855816052562881" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5595471408100876355649496" + "expectedQty": "55954714081008755496177737" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6294793206161822055345982" + "expectedQty": "62947932061618215714713247" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "6994102910962511597493255" + "expectedQty": "69941029109625122411933126" } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "20069999999999998058037248", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3579,7 +3579,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -3587,7 +3587,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -3595,7 +3595,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -3603,7 +3603,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -3611,7 +3611,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -3619,87 +3619,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -3707,7 +3707,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -3715,7 +3715,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -3723,7 +3723,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -3731,7 +3731,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -3739,7 +3739,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -3747,87 +3747,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -3835,7 +3835,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -3843,7 +3843,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -3851,7 +3851,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -3859,7 +3859,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -3867,7 +3867,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -3875,96 +3875,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "39964999999999992615927808", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3975,7 +3975,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -3983,7 +3983,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -3991,7 +3991,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -3999,7 +3999,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -4007,7 +4007,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -4015,87 +4015,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -4103,7 +4103,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -4111,7 +4111,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -4119,7 +4119,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -4127,7 +4127,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -4135,7 +4135,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -4143,87 +4143,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -4231,7 +4231,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -4239,7 +4239,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -4247,7 +4247,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -4255,7 +4255,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -4263,7 +4263,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -4271,96 +4271,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "74925000000000000232783872", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -4371,7 +4371,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -4379,7 +4379,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -4387,7 +4387,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -4395,7 +4395,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -4403,7 +4403,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -4411,87 +4411,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -4499,7 +4499,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -4507,7 +4507,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -4515,7 +4515,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -4523,7 +4523,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -4531,7 +4531,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -4539,87 +4539,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -4627,7 +4627,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -4635,7 +4635,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -4643,7 +4643,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -4651,7 +4651,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -4659,7 +4659,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -4667,96 +4667,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "500500000000000000000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "5005000000000000031457280", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -4767,7 +4767,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -4775,7 +4775,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -4783,7 +4783,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -4791,7 +4791,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -4799,7 +4799,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -4807,87 +4807,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -4895,7 +4895,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -4903,7 +4903,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -4911,7 +4911,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -4919,7 +4919,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -4927,7 +4927,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -4935,87 +4935,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" }, { "bAssetQtys": [ @@ -5023,7 +5023,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10385912127727" + "expectedQty": "10385912127728" }, { "bAssetQtys": [ @@ -5031,7 +5031,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1038591212748137" + "expectedQty": "1038591212770505" }, { "bAssetQtys": [ @@ -5039,7 +5039,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "103859121028758490" + "expectedQty": "103859121252445109" }, { "bAssetQtys": [ @@ -5047,7 +5047,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1038591187918937221" + "expectedQty": "1038591210287584870" }, { "bAssetQtys": [ @@ -5055,7 +5055,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10385909642338954743" + "expectedQty": "10385911879189373398" }, { "bAssetQtys": [ @@ -5063,96 +5063,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "103858872752693091205" + "expectedQty": "103859096423389550639" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "717819511157338147988270" + "expectedQty": "7178195111573380455997321" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1426858395787741341108746" + "expectedQty": "14268583957877411378370155" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2132169018987193819175100" + "expectedQty": "21321690189871937383681618" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2835548601135555974061802" + "expectedQty": "28355486011355555697278469" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3537797483589527161733747" + "expectedQty": "35377974835895274854622768" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4239326362763222019077212" + "expectedQty": "42393263627632218579656084" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4940367822219734927726353" + "expectedQty": "49403678222197344438527129" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5641063534359531162361781" + "expectedQty": "56410635343595303559666490" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6341504785730401684633876" + "expectedQty": "63415047857304012011574937" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7041753089676310563468007" + "expectedQty": "70417530896763112091139007" } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "3996499999999999360000000", - "reserve2": "2007000000000000960000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "39964999999999992615927808", + "reserve2": "20070000000000010942939136", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -5171,7 +5171,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1000616202798095" + "expectedQty": "1000616202798180" }, { "bAssetQtys": [ @@ -5179,7 +5179,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "100061620278871720" + "expectedQty": "100061620279724314" }, { "bAssetQtys": [ @@ -5187,7 +5187,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1000616202703457733" + "expectedQty": "1000616202788717174" }, { "bAssetQtys": [ @@ -5195,7 +5195,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10006162018508647736" + "expectedQty": "10006162027034578477" }, { "bAssetQtys": [ @@ -5203,87 +5203,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "100061619332506863358" + "expectedQty": "100061620185086480412" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "699589172569064088513914" + "expectedQty": "6995891725690639876702128" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1399110113009977714491450" + "expectedQty": "13991101130099775128476882" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2098579763704496996113493" + "expectedQty": "20985797637044969152376055" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2798009813075099253271636" + "expectedQty": "27980098130750988501093494" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3497408599942144636779437" + "expectedQty": "34974085999421449585422616" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4196782242397675221053972" + "expectedQty": "41967822423976750594597499" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4896135336985582089078779" + "expectedQty": "48961353369855816052562881" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5595471408100876355649496" + "expectedQty": "55954714081008755496177737" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6294793206161822055345982" + "expectedQty": "62947932061618215714713247" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "6994102910962511597493255" + "expectedQty": "69941029109625122411933126" }, { "bAssetQtys": [ @@ -5299,7 +5299,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1000616202798095" + "expectedQty": "1000616202798180" }, { "bAssetQtys": [ @@ -5307,7 +5307,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "100061620278871720" + "expectedQty": "100061620279724314" }, { "bAssetQtys": [ @@ -5315,7 +5315,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1000616202703457733" + "expectedQty": "1000616202788717174" }, { "bAssetQtys": [ @@ -5323,7 +5323,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10006162018508647736" + "expectedQty": "10006162027034578477" }, { "bAssetQtys": [ @@ -5331,87 +5331,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "100061619332506863358" + "expectedQty": "100061620185086480412" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "699589172569064088513914" + "expectedQty": "6995891725690639876702128" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1399110113009977714491450" + "expectedQty": "13991101130099775128476882" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2098579763704496996113493" + "expectedQty": "20985797637044969152376055" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2798009813075099253271636" + "expectedQty": "27980098130750988501093494" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3497408599942144636779437" + "expectedQty": "34974085999421449585422616" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4196782242397675221053972" + "expectedQty": "41967822423976750594597499" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4896135336985582089078779" + "expectedQty": "48961353369855816052562881" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5595471408100876355649496" + "expectedQty": "55954714081008755496177737" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6294793206161822055345982" + "expectedQty": "62947932061618215714713247" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "6994102910962511597493255" + "expectedQty": "69941029109625122411933126" }, { "bAssetQtys": [ @@ -5427,7 +5427,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1000616202798095" + "expectedQty": "1000616202798180" }, { "bAssetQtys": [ @@ -5435,7 +5435,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "100061620278871720" + "expectedQty": "100061620279724314" }, { "bAssetQtys": [ @@ -5443,7 +5443,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1000616202703457733" + "expectedQty": "1000616202788717174" }, { "bAssetQtys": [ @@ -5451,7 +5451,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10006162018508647736" + "expectedQty": "10006162027034578477" }, { "bAssetQtys": [ @@ -5459,96 +5459,96 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "100061619332506863358" + "expectedQty": "100061620185086480412" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "699589172569064088513914" + "expectedQty": "6995891725690639876702128" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1399110113009977714491450" + "expectedQty": "13991101130099775128476882" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2098579763704496996113493" + "expectedQty": "20985797637044969152376055" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2798009813075099253271636" + "expectedQty": "27980098130750988501093494" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3497408599942144636779437" + "expectedQty": "34974085999421449585422616" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4196782242397675221053972" + "expectedQty": "41967822423976750594597499" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4896135336985582089078779" + "expectedQty": "48961353369855816052562881" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5595471408100876355649496" + "expectedQty": "55954714081008755496177737" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6294793206161822055345982" + "expectedQty": "62947932061618215714713247" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "6994102910962511597493255" + "expectedQty": "69941029109625122411933126" } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "5005000000000000031457280", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -5559,7 +5559,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -5567,7 +5567,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -5575,7 +5575,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -5583,7 +5583,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -5591,7 +5591,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -5599,87 +5599,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -5687,7 +5687,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -5695,7 +5695,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -5703,7 +5703,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -5711,7 +5711,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -5719,7 +5719,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -5727,87 +5727,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" }, { "bAssetQtys": [ @@ -5815,7 +5815,7 @@ "3333333333333", "3333333333333" ], - "expectedQty": "10616212599789" + "expectedQty": "10616212599792" }, { "bAssetQtys": [ @@ -5823,7 +5823,7 @@ "333333333333333", "333333333333333" ], - "expectedQty": "1061621259940193" + "expectedQty": "1061621259975436" }, { "bAssetQtys": [ @@ -5831,7 +5831,7 @@ "33333333333333332", "33333333333333332" ], - "expectedQty": "106162125606333410" + "expectedQty": "106162125958775149" }, { "bAssetQtys": [ @@ -5839,7 +5839,7 @@ "333333333333333312", "333333333333333312" ], - "expectedQty": "1061621220819182343" + "expectedQty": "1061621256063334069" }, { "bAssetQtys": [ @@ -5847,7 +5847,7 @@ "3333333333333333504", "3333333333333333504" ], - "expectedQty": "10616208683798909905" + "expectedQty": "10616212208191824668" }, { "bAssetQtys": [ @@ -5855,87 +5855,87 @@ "33333333333333336064", "33333333333333336064" ], - "expectedQty": "106161734420953940818" + "expectedQty": "106162086837989102468" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "expectedQty": "729045507934045981147445" + "expectedQty": "7290455079340458783228171" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "expectedQty": "1444093165885337491540905" + "expectedQty": "14440931658853372880042012" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "expectedQty": "2153151422959607051690973" + "expectedQty": "21531514229596069718245443" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "expectedQty": "2859096981577989191295531" + "expectedQty": "28590969815779887871573252" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "expectedQty": "3563217561037023690548355" + "expectedQty": "35632175610370240165703572" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "expectedQty": "4266175833285971337758877" + "expectedQty": "42661758332859711779809755" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "expectedQty": "4968347620679184766532063" + "expectedQty": "49683476206791842836412823" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], - "expectedQty": "5669961970717048793425226" + "expectedQty": "56699619707170479877988724" }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], - "expectedQty": "6371166461806356373525737" + "expectedQty": "63711664618063558913312135" }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], - "expectedQty": "7072060493137874105294090" + "expectedQty": "70720604931378747532843860" } ] } diff --git a/test-utils/validator-data/masset/mintTestData.json b/test-utils/validator-data/masset/mintTestData.json index b5c6c892..074ef99b 100644 --- a/test-utils/validator-data/masset/mintTestData.json +++ b/test-utils/validator-data/masset/mintTestData.json @@ -1,10 +1,10 @@ [ { - "reserve0": "5503000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "5005000000000000031457280", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -12,279 +12,279 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "9832251954605", - "priceReceived": 1.0170609994708724 + "expectedQty": "9832251954604", + "priceReceived": 1.0170609994709758 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "983225195458701", - "priceReceived": 1.0170609994727333 + "expectedQty": "983225195460274", + "priceReceived": 1.0170609994711062 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "98322519528556775", - "priceReceived": 1.0170609996518245 + "expectedQty": "98322519544296074", + "priceReceived": 1.0170609994890152 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "983225193711637753", - "priceReceived": 1.0170610012799184 + "expectedQty": "983225195285567742", + "priceReceived": 1.0170609996518245 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "9832251779723363751", - "priceReceived": 1.0170610175608579 + "expectedQty": "9832251937116377522", + "priceReceived": 1.0170610012799184 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "98322502057917477303", - "priceReceived": 1.0170611803704344 + "expectedQty": "98322517797233637458", + "priceReceived": 1.0170610175608579 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "11432866386092", - "priceReceived": 0.8746712908466182 + "expectedQty": "11432866386117", + "priceReceived": 0.8746712908447055 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "1143286638334208", - "priceReceived": 0.8746712910570007 + "expectedQty": "1143286638584193", + "priceReceived": 0.8746712908657498 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "114328661083569904", - "priceReceived": 0.8746713120947319 + "expectedQty": "114328663583434226", + "priceReceived": 0.8746712929695227 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "1143286360849746210", - "priceReceived": 0.874671503346503 + "expectedQty": "1143286610835699035", + "priceReceived": 0.8746713120947319 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "11432838610381658208", - "priceReceived": 0.8746734158321311 + "expectedQty": "11432863608497462099", + "priceReceived": 0.874671503346503 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "114325886771621960149", - "priceReceived": 0.8746925374806894 + "expectedQty": "114328386103816582123", + "priceReceived": 0.8746734158321311 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", - "expectedQty": "741678171179218686429800", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7416781711792186591772873", "priceReceived": 0.9427269497338971 }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1452105731306633575856596", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14521057313066335220327490", "priceReceived": 0.9630152748875194 }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2156200194980878262700900", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21562001949808781013137809", "priceReceived": 0.9728224702338467 }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2857835872184337931168178", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28578358721843378240109602", "priceReceived": 0.9786426250792051 }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3558180045961155437097768", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35581800459611552226250919", "priceReceived": 0.9825247612099519 }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4257701656529446269530387", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42577016565294459478970534", "priceReceived": 0.9853203297056767 }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4956622542256418842610799", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49566225422564192722621093", "priceReceived": 0.9874465844986265 }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5655058851205474401832123", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56550588512054741878608622", "priceReceived": 0.9891320580700282 }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6353075328572007239119684", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63530753285720074539091872", "priceReceived": 0.9905124171437212 }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7050709272680501025142512", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70507092726805005971719016", "priceReceived": 0.9916732813097283 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "9892618042466", - "priceReceived": 1.0108547562508774 + "expectedQty": "9892618042465", + "priceReceived": 1.0108547562509795 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "989261804244580", - "priceReceived": 1.0108547562529415 + "expectedQty": "989261804246359", + "priceReceived": 1.0108547562511236 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "98926180404884481", - "priceReceived": 1.010854756452949 + "expectedQty": "98926180422678563", + "priceReceived": 1.0108547562711243 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "989261802269436564", - "priceReceived": 1.010854758271197 + "expectedQty": "989261804048844801", + "priceReceived": 1.010854756452949 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "9892617844753675832", - "priceReceived": 1.0108547764536635 + "expectedQty": "9892618022694365643", + "priceReceived": 1.010854758271197 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "98926160653601652020", - "priceReceived": 1.010854958276997 + "expectedQty": "98926178447536758369", + "priceReceived": 1.0108547764536635 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "5005000000000000031457280", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -292,183 +292,183 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "10143890658606", - "priceReceived": 0.9858150424281314 + "expectedQty": "10143890658607", + "priceReceived": 0.9858150424280343 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "1014389065847321", - "priceReceived": 0.9858150424410363 + "expectedQty": "1014389065859345", + "priceReceived": 0.985815042429351 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "101438906452467690", - "priceReceived": 0.9858150437264234 + "expectedQty": "101438906572708043", + "priceReceived": 0.9858150425578899 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "1014389052500646933", - "priceReceived": 0.9858150554117522 + "expectedQty": "1014389064524676899", + "priceReceived": 0.9858150437264234 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "10143889322608810609", - "priceReceived": 0.9858151722645367 + "expectedQty": "10143890525006469383", + "priceReceived": 0.9858150554117521 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "101438772991659315644", - "priceReceived": 0.9858163407420394 + "expectedQty": "101438893226088106622", + "priceReceived": 0.9858151722645367 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "12016287095094", - "priceReceived": 0.8322038181064092 + "expectedQty": "12016287095129", + "priceReceived": 0.8322038181039852 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "1201628709124981", - "priceReceived": 0.8322038183726437 + "expectedQty": "1201628709474437", + "priceReceived": 0.8322038181306234 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "120162867068477766", - "priceReceived": 0.8322038449949146 + "expectedQty": "120162870563041570", + "priceReceived": 0.832203820792851 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "1201628321229059126", - "priceReceived": 0.8322040870151696 + "expectedQty": "1201628670684777657", + "priceReceived": 0.8322038449949146 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "12016248267380638563", - "priceReceived": 0.8322065071796199 + "expectedQty": "12016283212290591268", + "priceReceived": 0.8322040870151696 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "120158988844584723142", - "priceReceived": 0.832230705014848 + "expectedQty": "120162482673806385710", + "priceReceived": 0.8322065071796199 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", - "expectedQty": "758915093464738136563169", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7589150934647381091832816", "priceReceived": 0.9213151853495023 }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1473400530309341117742129", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14734005303093410638320271", "priceReceived": 0.9490969843117983 }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2178783980315529571380871", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21787839803155294097975382", "priceReceived": 0.9627388575237401 }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2880620127293826852497696", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28806201272938267451228581", "priceReceived": 0.9709020545612271 }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3580589386958113473567706", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35805893869581132588150497", "priceReceived": 0.9763755689869884 }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4279368449887122287928618", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42793684498871219659941169", "priceReceived": 0.9803315720829454 }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4977278016127211467001887", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49772780161272118949685368", "priceReceived": 0.9833487267822547 }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5674486299978109779032834", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56744862999781095641627655", "priceReceived": 0.9857456171885689 }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6371087286239571166925768", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63710872862395713796044591", "priceReceived": 0.9877120995644404 }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7067135305137869045136995", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70671353051378686161669679", "priceReceived": 0.9893683505559537 }, { @@ -480,91 +480,91 @@ { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "968846004561237", - "priceReceived": 1.0321557763484526 + "expectedQty": "968846004563827", + "priceReceived": 1.0321557763456932 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "96884600427629503", - "priceReceived": 1.0321557766520142 + "expectedQty": "96884600453533259", + "priceReceived": 1.0321557763760498 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "968846001685919294", - "priceReceived": 1.0321557794116596 + "expectedQty": "968846004276295020", + "priceReceived": 1.0321557766520142 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "9688459757821565729", - "priceReceived": 1.0321558070081187 + "expectedQty": "9688460016859192923", + "priceReceived": 1.0321557794116596 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "96884571674398445885", - "priceReceived": 1.0321560829733718 + "expectedQty": "96884597578215657135", + "priceReceived": 1.0321558070081187 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "5503000000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "39964999999999992615927808", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -572,279 +572,279 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "9832251954605", - "priceReceived": 1.0170609994708724 + "expectedQty": "9832251954604", + "priceReceived": 1.0170609994709758 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "983225195458701", - "priceReceived": 1.0170609994727333 + "expectedQty": "983225195460274", + "priceReceived": 1.0170609994711062 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "98322519528556775", - "priceReceived": 1.0170609996518245 + "expectedQty": "98322519544296074", + "priceReceived": 1.0170609994890152 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "983225193711637753", - "priceReceived": 1.0170610012799184 + "expectedQty": "983225195285567742", + "priceReceived": 1.0170609996518245 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "9832251779723363751", - "priceReceived": 1.0170610175608579 + "expectedQty": "9832251937116377522", + "priceReceived": 1.0170610012799184 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "98322502057917477303", - "priceReceived": 1.0170611803704344 + "expectedQty": "98322517797233637458", + "priceReceived": 1.0170610175608579 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "9892618042466", - "priceReceived": 1.0108547562508774 + "expectedQty": "9892618042465", + "priceReceived": 1.0108547562509795 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "989261804244580", - "priceReceived": 1.0108547562529415 + "expectedQty": "989261804246359", + "priceReceived": 1.0108547562511236 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "98926180404884481", - "priceReceived": 1.010854756452949 + "expectedQty": "98926180422678563", + "priceReceived": 1.0108547562711243 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "989261802269436564", - "priceReceived": 1.010854758271197 + "expectedQty": "989261804048844801", + "priceReceived": 1.010854756452949 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "9892617844753675832", - "priceReceived": 1.0108547764536635 + "expectedQty": "9892618022694365643", + "priceReceived": 1.010854758271197 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "98926160653601652020", - "priceReceived": 1.010854958276997 + "expectedQty": "98926178447536758369", + "priceReceived": 1.0108547764536635 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "11432866386092", - "priceReceived": 0.8746712908466182 + "expectedQty": "11432866386117", + "priceReceived": 0.8746712908447055 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "1143286638334208", - "priceReceived": 0.8746712910570007 + "expectedQty": "1143286638584193", + "priceReceived": 0.8746712908657498 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "114328661083569904", - "priceReceived": 0.8746713120947319 + "expectedQty": "114328663583434226", + "priceReceived": 0.8746712929695227 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "1143286360849746210", - "priceReceived": 0.874671503346503 + "expectedQty": "1143286610835699035", + "priceReceived": 0.8746713120947319 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "11432838610381658208", - "priceReceived": 0.8746734158321311 + "expectedQty": "11432863608497462099", + "priceReceived": 0.874671503346503 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "114325886771621960149", - "priceReceived": 0.8746925374806894 + "expectedQty": "114328386103816582123", + "priceReceived": 0.8746734158321311 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", - "expectedQty": "741678171179218686429800", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7416781711792186591772873", "priceReceived": 0.9427269497338971 }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1452105731306633575856596", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14521057313066335220327490", "priceReceived": 0.9630152748875194 }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2156200194980878262700900", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21562001949808781013137809", "priceReceived": 0.9728224702338467 }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2857835872184337931168178", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28578358721843378240109602", "priceReceived": 0.9786426250792051 }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3558180045961155437097768", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35581800459611552226250919", "priceReceived": 0.9825247612099519 }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4257701656529446269530387", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42577016565294459478970534", "priceReceived": 0.9853203297056767 }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4956622542256418842610799", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49566225422564192722621093", "priceReceived": 0.9874465844986265 }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5655058851205474401832123", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56550588512054741878608622", "priceReceived": 0.9891320580700282 }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6353075328572007239119684", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63530753285720074539091872", "priceReceived": 0.9905124171437212 }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7050709272680501025142512", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70507092726805005971719016", "priceReceived": 0.9916732813097283 } ] }, { - "reserve0": "2007000000000000960000000", - "reserve1": "3996499999999999360000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "20070000000000010942939136", + "reserve1": "39964999999999992615927808", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -852,97 +852,97 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "10058614942598", - "priceReceived": 0.9941726626446582 + "expectedQty": "10058614942597", + "priceReceived": 0.9941726626447571 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "1005861494256321", - "priceReceived": 0.9941726626480968 + "expectedQty": "1005861494259417", + "priceReceived": 0.9941726626450368 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "100586149391571656", - "priceReceived": 0.9941726629847432 + "expectedQty": "100586149422535636", + "priceReceived": 0.9941726626787016 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "1005861490819319821", - "priceReceived": 0.9941726660451576 + "expectedQty": "1005861493915716551", + "priceReceived": 0.9941726629847432 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "10058614598554929567", - "priceReceived": 0.9941726966491637 + "expectedQty": "10058614908193198198", + "priceReceived": 0.9941726660451576 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "100586115023126883866", - "priceReceived": 0.9941730026754476 + "expectedQty": "100586145985549295538", + "priceReceived": 0.9941726966491637 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", - "expectedQty": "702016130027513514676957", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7020161300275134871429446", "priceReceived": 0.9959885109372015 }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1402409205977358729703359", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14024092059773586749954766", "priceReceived": 0.9971412010415572 }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2101865542055031215754228", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21018655420550310535002565", "priceReceived": 0.9979705923287269 }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2800665664244178037349474", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28006656642441779286626762", "priceReceived": 0.9986197337677502 }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3498941539257549736263678", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "34989415392575495202746789", "priceReceived": 0.9991593059716642 }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4196760179169993801281722", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "41967601791699934781240948", "priceReceived": 0.9996282420001654 }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4894156522336345491706039", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "48941565223363459180248539", "priceReceived": 1.0000497486466857 }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5591148198088038016553653", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "55911481980880378004214414", "priceReceived": 1.0004385149212822 }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6287742841543760775892450", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "62877428415437609874699716", "priceReceived": 1.0008042883724229 }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "6983942004489696902085786", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "69839420044896964720474647", "priceReceived": 1.0011537890069997 }, { @@ -954,91 +954,91 @@ { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "997993557066692", - "priceReceived": 1.0020104768403568 + "expectedQty": "997993557067334", + "priceReceived": 1.0020104768397122 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "99799355699606328", - "priceReceived": 1.0020104769112699 + "expectedQty": "99799355706027116", + "priceReceived": 1.0020104768468037 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "997993556353984498", - "priceReceived": 1.002010477555933 + "expectedQty": "997993556996063279", + "priceReceived": 1.0020104769112699 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "9979935499332013774", - "priceReceived": 1.0020104840025599 + "expectedQty": "9979935563539844983", + "priceReceived": 1.002010477555933 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "99799348572583949084", - "priceReceived": 1.0020105484683612 + "expectedQty": "99799354993320137768", + "priceReceived": 1.0020104840025599 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", - "expectedQty": "697463049145752630825887", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "6974630491457526042878620", "priceReceived": 1.0024903840517068 }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1394297537312687357246463", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "13942975373126873042307325", "priceReceived": 1.0029423150923866 }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2090534177142072198604999", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "20905341771420720390188713", "priceReceived": 1.0033799126248142 }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2786181338416885026428332", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "27861813384168849206482286", "priceReceived": 1.0038111882513536 }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3481235579829406229717057", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "34812355798294060176379307", "priceReceived": 1.0042411436491516 }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4175686799036286876935350", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "41756867990362865587699466", "priceReceived": 1.0046730518601674 }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4869520959749015472848888", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "48695209597490159008343907", "priceReceived": 1.0051091350579722 }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5562721630840957913206527", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "55627216308409577027524495", "priceReceived": 1.005550946318767 }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6255270901791376247372883", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "62552709017913764627308480", "priceReceived": 1.005999595988381 }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "6947149951809925188879129", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "69471499518099247672725350", "priceReceived": 1.0064558917687376 }, { @@ -1050,101 +1050,101 @@ { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "997993557066692", - "priceReceived": 1.0020104768403568 + "expectedQty": "997993557067334", + "priceReceived": 1.0020104768397122 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "99799355699606328", - "priceReceived": 1.0020104769112699 + "expectedQty": "99799355706027116", + "priceReceived": 1.0020104768468037 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "997993556353984498", - "priceReceived": 1.002010477555933 + "expectedQty": "997993556996063279", + "priceReceived": 1.0020104769112699 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "9979935499332013774", - "priceReceived": 1.0020104840025599 + "expectedQty": "9979935563539844983", + "priceReceived": 1.002010477555933 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "99799348572583949084", - "priceReceived": 1.0020105484683612 + "expectedQty": "99799354993320137768", + "priceReceived": 1.0020104840025599 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", - "expectedQty": "697463049145752630825887", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "6974630491457526042878620", "priceReceived": 1.0024903840517068 }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1394297537312687357246463", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "13942975373126873042307325", "priceReceived": 1.0029423150923866 }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2090534177142072198604999", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "20905341771420720390188713", "priceReceived": 1.0033799126248142 }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2786181338416885026428332", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "27861813384168849206482286", "priceReceived": 1.0038111882513536 }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3481235579829406229717057", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "34812355798294060176379307", "priceReceived": 1.0042411436491516 }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4175686799036286876935350", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "41756867990362865587699466", "priceReceived": 1.0046730518601674 }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4869520959749015472848888", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "48695209597490159008343907", "priceReceived": 1.0051091350579722 }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5562721630840957913206527", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "55627216308409577027524495", "priceReceived": 1.005550946318767 }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6255270901791376247372883", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "62552709017913764627308480", "priceReceived": 1.005999595988381 }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "6947149951809925188879129", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "69471499518099247672725350", "priceReceived": 1.0064558917687376 } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "74925000000000000232783872", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1152,87 +1152,87 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "10143890658606", - "priceReceived": 0.9858150424281314 + "expectedQty": "10143890658607", + "priceReceived": 0.9858150424280343 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "1014389065847321", - "priceReceived": 0.9858150424410363 + "expectedQty": "1014389065859345", + "priceReceived": 0.985815042429351 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "101438906452467690", - "priceReceived": 0.9858150437264234 + "expectedQty": "101438906572708043", + "priceReceived": 0.9858150425578899 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "1014389052500646933", - "priceReceived": 0.9858150554117522 + "expectedQty": "1014389064524676899", + "priceReceived": 0.9858150437264234 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "10143889322608810609", - "priceReceived": 0.9858151722645367 + "expectedQty": "10143890525006469383", + "priceReceived": 0.9858150554117521 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "101438772991659315644", - "priceReceived": 0.9858163407420394 + "expectedQty": "101438893226088106622", + "priceReceived": 0.9858151722645367 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -1244,187 +1244,187 @@ { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "968846004561237", - "priceReceived": 1.0321557763484526 + "expectedQty": "968846004563827", + "priceReceived": 1.0321557763456932 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "96884600427629503", - "priceReceived": 1.0321557766520142 + "expectedQty": "96884600453533259", + "priceReceived": 1.0321557763760498 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "968846001685919294", - "priceReceived": 1.0321557794116596 + "expectedQty": "968846004276295020", + "priceReceived": 1.0321557766520142 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "9688459757821565729", - "priceReceived": 1.0321558070081187 + "expectedQty": "9688460016859192923", + "priceReceived": 1.0321557794116596 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "96884571674398445885", - "priceReceived": 1.0321560829733718 + "expectedQty": "96884597578215657135", + "priceReceived": 1.0321558070081187 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "12016287095094", - "priceReceived": 0.8322038181064092 + "expectedQty": "12016287095129", + "priceReceived": 0.8322038181039852 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "1201628709124981", - "priceReceived": 0.8322038183726437 + "expectedQty": "1201628709474437", + "priceReceived": 0.8322038181306234 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "120162867068477766", - "priceReceived": 0.8322038449949146 + "expectedQty": "120162870563041570", + "priceReceived": 0.832203820792851 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "1201628321229059126", - "priceReceived": 0.8322040870151696 + "expectedQty": "1201628670684777657", + "priceReceived": 0.8322038449949146 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "12016248267380638563", - "priceReceived": 0.8322065071796199 + "expectedQty": "12016283212290591268", + "priceReceived": 0.8322040870151696 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "120158988844584723142", - "priceReceived": 0.832230705014848 + "expectedQty": "120162482673806385710", + "priceReceived": 0.8322065071796199 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", - "expectedQty": "758915093464738136563169", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7589150934647381091832816", "priceReceived": 0.9213151853495023 }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1473400530309341117742129", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14734005303093410638320271", "priceReceived": 0.9490969843117983 }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2178783980315529571380871", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21787839803155294097975382", "priceReceived": 0.9627388575237401 }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2880620127293826852497696", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28806201272938267451228581", "priceReceived": 0.9709020545612271 }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3580589386958113473567706", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35805893869581132588150497", "priceReceived": 0.9763755689869884 }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4279368449887122287928618", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42793684498871219659941169", "priceReceived": 0.9803315720829454 }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4977278016127211467001887", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49772780161272118949685368", "priceReceived": 0.9833487267822547 }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5674486299978109779032834", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56744862999781095641627655", "priceReceived": 0.9857456171885689 }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6371087286239571166925768", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63710872862395713796044591", "priceReceived": 0.9877120995644404 }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7067135305137869045136995", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70671353051378686161669679", "priceReceived": 0.9893683505559537 } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "5503000000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "55030000000000001379926016", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1432,279 +1432,279 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "11432866386092", - "priceReceived": 0.8746712908466182 + "expectedQty": "11432866386117", + "priceReceived": 0.8746712908447055 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "1143286638334208", - "priceReceived": 0.8746712910570007 + "expectedQty": "1143286638584193", + "priceReceived": 0.8746712908657498 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "114328661083569904", - "priceReceived": 0.8746713120947319 + "expectedQty": "114328663583434226", + "priceReceived": 0.8746712929695227 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "1143286360849746210", - "priceReceived": 0.874671503346503 + "expectedQty": "1143286610835699035", + "priceReceived": 0.8746713120947319 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "11432838610381658208", - "priceReceived": 0.8746734158321311 + "expectedQty": "11432863608497462099", + "priceReceived": 0.874671503346503 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "114325886771621960149", - "priceReceived": 0.8746925374806894 + "expectedQty": "114328386103816582123", + "priceReceived": 0.8746734158321311 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", - "expectedQty": "741678171179218686429800", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7416781711792186591772873", "priceReceived": 0.9427269497338971 }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1452105731306633575856596", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14521057313066335220327490", "priceReceived": 0.9630152748875194 }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2156200194980878262700900", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21562001949808781013137809", "priceReceived": 0.9728224702338467 }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2857835872184337931168178", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28578358721843378240109602", "priceReceived": 0.9786426250792051 }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3558180045961155437097768", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35581800459611552226250919", "priceReceived": 0.9825247612099519 }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4257701656529446269530387", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42577016565294459478970534", "priceReceived": 0.9853203297056767 }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4956622542256418842610799", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49566225422564192722621093", "priceReceived": 0.9874465844986265 }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5655058851205474401832123", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56550588512054741878608622", "priceReceived": 0.9891320580700282 }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6353075328572007239119684", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63530753285720074539091872", "priceReceived": 0.9905124171437212 }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7050709272680501025142512", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70507092726805005971719016", "priceReceived": 0.9916732813097283 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "9832251954605", - "priceReceived": 1.0170609994708724 + "expectedQty": "9832251954604", + "priceReceived": 1.0170609994709758 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "983225195458701", - "priceReceived": 1.0170609994727333 + "expectedQty": "983225195460274", + "priceReceived": 1.0170609994711062 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "98322519528556775", - "priceReceived": 1.0170609996518245 + "expectedQty": "98322519544296074", + "priceReceived": 1.0170609994890152 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "983225193711637753", - "priceReceived": 1.0170610012799184 + "expectedQty": "983225195285567742", + "priceReceived": 1.0170609996518245 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "9832251779723363751", - "priceReceived": 1.0170610175608579 + "expectedQty": "9832251937116377522", + "priceReceived": 1.0170610012799184 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "98322502057917477303", - "priceReceived": 1.0170611803704344 + "expectedQty": "98322517797233637458", + "priceReceived": 1.0170610175608579 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "9892618042466", - "priceReceived": 1.0108547562508774 + "expectedQty": "9892618042465", + "priceReceived": 1.0108547562509795 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "989261804244580", - "priceReceived": 1.0108547562529415 + "expectedQty": "989261804246359", + "priceReceived": 1.0108547562511236 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "98926180404884481", - "priceReceived": 1.010854756452949 + "expectedQty": "98926180422678563", + "priceReceived": 1.0108547562711243 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "989261802269436564", - "priceReceived": 1.010854758271197 + "expectedQty": "989261804048844801", + "priceReceived": 1.010854756452949 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "9892617844753675832", - "priceReceived": 1.0108547764536635 + "expectedQty": "9892618022694365643", + "priceReceived": 1.010854758271197 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "98926160653601652020", - "priceReceived": 1.010854958276997 + "expectedQty": "98926178447536758369", + "priceReceived": 1.0108547764536635 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "20069999999999998058037248", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1712,183 +1712,183 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "12016287095094", - "priceReceived": 0.8322038181064092 + "expectedQty": "12016287095129", + "priceReceived": 0.8322038181039852 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "1201628709124981", - "priceReceived": 0.8322038183726437 + "expectedQty": "1201628709474437", + "priceReceived": 0.8322038181306234 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "120162867068477766", - "priceReceived": 0.8322038449949146 + "expectedQty": "120162870563041570", + "priceReceived": 0.832203820792851 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "1201628321229059126", - "priceReceived": 0.8322040870151696 + "expectedQty": "1201628670684777657", + "priceReceived": 0.8322038449949146 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "12016248267380638563", - "priceReceived": 0.8322065071796199 + "expectedQty": "12016283212290591268", + "priceReceived": 0.8322040870151696 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "120158988844584723142", - "priceReceived": 0.832230705014848 + "expectedQty": "120162482673806385710", + "priceReceived": 0.8322065071796199 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", - "expectedQty": "758915093464738136563169", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7589150934647381091832816", "priceReceived": 0.9213151853495023 }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1473400530309341117742129", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14734005303093410638320271", "priceReceived": 0.9490969843117983 }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2178783980315529571380871", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21787839803155294097975382", "priceReceived": 0.9627388575237401 }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2880620127293826852497696", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28806201272938267451228581", "priceReceived": 0.9709020545612271 }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3580589386958113473567706", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35805893869581132588150497", "priceReceived": 0.9763755689869884 }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4279368449887122287928618", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42793684498871219659941169", "priceReceived": 0.9803315720829454 }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4977278016127211467001887", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49772780161272118949685368", "priceReceived": 0.9833487267822547 }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5674486299978109779032834", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56744862999781095641627655", "priceReceived": 0.9857456171885689 }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6371087286239571166925768", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63710872862395713796044591", "priceReceived": 0.9877120995644404 }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7067135305137869045136995", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70671353051378686161669679", "priceReceived": 0.9893683505559537 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "10143890658606", - "priceReceived": 0.9858150424281314 + "expectedQty": "10143890658607", + "priceReceived": 0.9858150424280343 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "1014389065847321", - "priceReceived": 0.9858150424410363 + "expectedQty": "1014389065859345", + "priceReceived": 0.985815042429351 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "101438906452467690", - "priceReceived": 0.9858150437264234 + "expectedQty": "101438906572708043", + "priceReceived": 0.9858150425578899 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "1014389052500646933", - "priceReceived": 0.9858150554117522 + "expectedQty": "1014389064524676899", + "priceReceived": 0.9858150437264234 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "10143889322608810609", - "priceReceived": 0.9858151722645367 + "expectedQty": "10143890525006469383", + "priceReceived": 0.9858150554117521 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "101438772991659315644", - "priceReceived": 0.9858163407420394 + "expectedQty": "101438893226088106622", + "priceReceived": 0.9858151722645367 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -1900,91 +1900,91 @@ { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "968846004561237", - "priceReceived": 1.0321557763484526 + "expectedQty": "968846004563827", + "priceReceived": 1.0321557763456932 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "96884600427629503", - "priceReceived": 1.0321557766520142 + "expectedQty": "96884600453533259", + "priceReceived": 1.0321557763760498 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "968846001685919294", - "priceReceived": 1.0321557794116596 + "expectedQty": "968846004276295020", + "priceReceived": 1.0321557766520142 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "9688459757821565729", - "priceReceived": 1.0321558070081187 + "expectedQty": "9688460016859192923", + "priceReceived": 1.0321557794116596 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "96884571674398445885", - "priceReceived": 1.0321560829733718 + "expectedQty": "96884597578215657135", + "priceReceived": 1.0321558070081187 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "5503000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "55030000000000001379926016", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1992,279 +1992,279 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "9892618042466", - "priceReceived": 1.0108547562508774 + "expectedQty": "9892618042465", + "priceReceived": 1.0108547562509795 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "989261804244580", - "priceReceived": 1.0108547562529415 + "expectedQty": "989261804246359", + "priceReceived": 1.0108547562511236 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "98926180404884481", - "priceReceived": 1.010854756452949 + "expectedQty": "98926180422678563", + "priceReceived": 1.0108547562711243 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "989261802269436564", - "priceReceived": 1.010854758271197 + "expectedQty": "989261804048844801", + "priceReceived": 1.010854756452949 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "9892617844753675832", - "priceReceived": 1.0108547764536635 + "expectedQty": "9892618022694365643", + "priceReceived": 1.010854758271197 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "98926160653601652020", - "priceReceived": 1.010854958276997 + "expectedQty": "98926178447536758369", + "priceReceived": 1.0108547764536635 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "9832251954605", - "priceReceived": 1.0170609994708724 + "expectedQty": "9832251954604", + "priceReceived": 1.0170609994709758 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "983225195458701", - "priceReceived": 1.0170609994727333 + "expectedQty": "983225195460274", + "priceReceived": 1.0170609994711062 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "98322519528556775", - "priceReceived": 1.0170609996518245 + "expectedQty": "98322519544296074", + "priceReceived": 1.0170609994890152 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "983225193711637753", - "priceReceived": 1.0170610012799184 + "expectedQty": "983225195285567742", + "priceReceived": 1.0170609996518245 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "9832251779723363751", - "priceReceived": 1.0170610175608579 + "expectedQty": "9832251937116377522", + "priceReceived": 1.0170610012799184 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "98322502057917477303", - "priceReceived": 1.0170611803704344 + "expectedQty": "98322517797233637458", + "priceReceived": 1.0170610175608579 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "11432866386092", - "priceReceived": 0.8746712908466182 + "expectedQty": "11432866386117", + "priceReceived": 0.8746712908447055 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "1143286638334208", - "priceReceived": 0.8746712910570007 + "expectedQty": "1143286638584193", + "priceReceived": 0.8746712908657498 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "114328661083569904", - "priceReceived": 0.8746713120947319 + "expectedQty": "114328663583434226", + "priceReceived": 0.8746712929695227 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "1143286360849746210", - "priceReceived": 0.874671503346503 + "expectedQty": "1143286610835699035", + "priceReceived": 0.8746713120947319 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "11432838610381658208", - "priceReceived": 0.8746734158321311 + "expectedQty": "11432863608497462099", + "priceReceived": 0.874671503346503 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "114325886771621960149", - "priceReceived": 0.8746925374806894 + "expectedQty": "114328386103816582123", + "priceReceived": 0.8746734158321311 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", - "expectedQty": "741678171179218686429800", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7416781711792186591772873", "priceReceived": 0.9427269497338971 }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1452105731306633575856596", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14521057313066335220327490", "priceReceived": 0.9630152748875194 }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2156200194980878262700900", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21562001949808781013137809", "priceReceived": 0.9728224702338467 }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2857835872184337931168178", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28578358721843378240109602", "priceReceived": 0.9786426250792051 }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3558180045961155437097768", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35581800459611552226250919", "priceReceived": 0.9825247612099519 }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4257701656529446269530387", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42577016565294459478970534", "priceReceived": 0.9853203297056767 }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4956622542256418842610799", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49566225422564192722621093", "priceReceived": 0.9874465844986265 }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5655058851205474401832123", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56550588512054741878608622", "priceReceived": 0.9891320580700282 }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6353075328572007239119684", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63530753285720074539091872", "priceReceived": 0.9905124171437212 }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7050709272680501025142512", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70507092726805005971719016", "priceReceived": 0.9916732813097283 } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "2007000000000000960000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "20070000000000010942939136", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2278,187 +2278,187 @@ { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "997993557066692", - "priceReceived": 1.0020104768403568 + "expectedQty": "997993557067334", + "priceReceived": 1.0020104768397122 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "99799355699606328", - "priceReceived": 1.0020104769112699 + "expectedQty": "99799355706027116", + "priceReceived": 1.0020104768468037 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "997993556353984498", - "priceReceived": 1.002010477555933 + "expectedQty": "997993556996063279", + "priceReceived": 1.0020104769112699 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "9979935499332013774", - "priceReceived": 1.0020104840025599 + "expectedQty": "9979935563539844983", + "priceReceived": 1.002010477555933 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "99799348572583949084", - "priceReceived": 1.0020105484683612 + "expectedQty": "99799354993320137768", + "priceReceived": 1.0020104840025599 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", - "expectedQty": "697463049145752630825887", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "6974630491457526042878620", "priceReceived": 1.0024903840517068 }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1394297537312687357246463", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "13942975373126873042307325", "priceReceived": 1.0029423150923866 }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2090534177142072198604999", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "20905341771420720390188713", "priceReceived": 1.0033799126248142 }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2786181338416885026428332", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "27861813384168849206482286", "priceReceived": 1.0038111882513536 }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3481235579829406229717057", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "34812355798294060176379307", "priceReceived": 1.0042411436491516 }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4175686799036286876935350", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "41756867990362865587699466", "priceReceived": 1.0046730518601674 }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4869520959749015472848888", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "48695209597490159008343907", "priceReceived": 1.0051091350579722 }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5562721630840957913206527", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "55627216308409577027524495", "priceReceived": 1.005550946318767 }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6255270901791376247372883", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "62552709017913764627308480", "priceReceived": 1.005999595988381 }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "6947149951809925188879129", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "69471499518099247672725350", "priceReceived": 1.0064558917687376 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "10058614942598", - "priceReceived": 0.9941726626446582 + "expectedQty": "10058614942597", + "priceReceived": 0.9941726626447571 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "1005861494256321", - "priceReceived": 0.9941726626480968 + "expectedQty": "1005861494259417", + "priceReceived": 0.9941726626450368 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "100586149391571656", - "priceReceived": 0.9941726629847432 + "expectedQty": "100586149422535636", + "priceReceived": 0.9941726626787016 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "1005861490819319821", - "priceReceived": 0.9941726660451576 + "expectedQty": "1005861493915716551", + "priceReceived": 0.9941726629847432 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "10058614598554929567", - "priceReceived": 0.9941726966491637 + "expectedQty": "10058614908193198198", + "priceReceived": 0.9941726660451576 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "100586115023126883866", - "priceReceived": 0.9941730026754476 + "expectedQty": "100586145985549295538", + "priceReceived": 0.9941726966491637 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", - "expectedQty": "702016130027513514676957", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7020161300275134871429446", "priceReceived": 0.9959885109372015 }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1402409205977358729703359", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14024092059773586749954766", "priceReceived": 0.9971412010415572 }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2101865542055031215754228", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21018655420550310535002565", "priceReceived": 0.9979705923287269 }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2800665664244178037349474", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28006656642441779286626762", "priceReceived": 0.9986197337677502 }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3498941539257549736263678", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "34989415392575495202746789", "priceReceived": 0.9991593059716642 }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4196760179169993801281722", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "41967601791699934781240948", "priceReceived": 0.9996282420001654 }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4894156522336345491706039", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "48941565223363459180248539", "priceReceived": 1.0000497486466857 }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5591148198088038016553653", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "55911481980880378004214414", "priceReceived": 1.0004385149212822 }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6287742841543760775892450", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "62877428415437609874699716", "priceReceived": 1.0008042883724229 }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "6983942004489696902085786", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "69839420044896964720474647", "priceReceived": 1.0011537890069997 }, { @@ -2470,101 +2470,101 @@ { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "997993557066692", - "priceReceived": 1.0020104768403568 + "expectedQty": "997993557067334", + "priceReceived": 1.0020104768397122 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "99799355699606328", - "priceReceived": 1.0020104769112699 + "expectedQty": "99799355706027116", + "priceReceived": 1.0020104768468037 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "997993556353984498", - "priceReceived": 1.002010477555933 + "expectedQty": "997993556996063279", + "priceReceived": 1.0020104769112699 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "9979935499332013774", - "priceReceived": 1.0020104840025599 + "expectedQty": "9979935563539844983", + "priceReceived": 1.002010477555933 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "99799348572583949084", - "priceReceived": 1.0020105484683612 + "expectedQty": "99799354993320137768", + "priceReceived": 1.0020104840025599 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", - "expectedQty": "697463049145752630825887", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "6974630491457526042878620", "priceReceived": 1.0024903840517068 }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1394297537312687357246463", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "13942975373126873042307325", "priceReceived": 1.0029423150923866 }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2090534177142072198604999", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "20905341771420720390188713", "priceReceived": 1.0033799126248142 }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2786181338416885026428332", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "27861813384168849206482286", "priceReceived": 1.0038111882513536 }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3481235579829406229717057", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "34812355798294060176379307", "priceReceived": 1.0042411436491516 }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4175686799036286876935350", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "41756867990362865587699466", "priceReceived": 1.0046730518601674 }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4869520959749015472848888", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "48695209597490159008343907", "priceReceived": 1.0051091350579722 }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5562721630840957913206527", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "55627216308409577027524495", "priceReceived": 1.005550946318767 }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6255270901791376247372883", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "62552709017913764627308480", "priceReceived": 1.005999595988381 }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "6947149951809925188879129", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "69471499518099247672725350", "priceReceived": 1.0064558917687376 } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "20069999999999998058037248", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2578,273 +2578,273 @@ { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "968846004561237", - "priceReceived": 1.0321557763484526 + "expectedQty": "968846004563827", + "priceReceived": 1.0321557763456932 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "96884600427629503", - "priceReceived": 1.0321557766520142 + "expectedQty": "96884600453533259", + "priceReceived": 1.0321557763760498 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "968846001685919294", - "priceReceived": 1.0321557794116596 + "expectedQty": "968846004276295020", + "priceReceived": 1.0321557766520142 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "9688459757821565729", - "priceReceived": 1.0321558070081187 + "expectedQty": "9688460016859192923", + "priceReceived": 1.0321557794116596 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "96884571674398445885", - "priceReceived": 1.0321560829733718 + "expectedQty": "96884597578215657135", + "priceReceived": 1.0321558070081187 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "10143890658606", - "priceReceived": 0.9858150424281314 + "expectedQty": "10143890658607", + "priceReceived": 0.9858150424280343 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "1014389065847321", - "priceReceived": 0.9858150424410363 + "expectedQty": "1014389065859345", + "priceReceived": 0.985815042429351 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "101438906452467690", - "priceReceived": 0.9858150437264234 + "expectedQty": "101438906572708043", + "priceReceived": 0.9858150425578899 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "1014389052500646933", - "priceReceived": 0.9858150554117522 + "expectedQty": "1014389064524676899", + "priceReceived": 0.9858150437264234 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "10143889322608810609", - "priceReceived": 0.9858151722645367 + "expectedQty": "10143890525006469383", + "priceReceived": 0.9858150554117521 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "101438772991659315644", - "priceReceived": 0.9858163407420394 + "expectedQty": "101438893226088106622", + "priceReceived": 0.9858151722645367 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "12016287095094", - "priceReceived": 0.8322038181064092 + "expectedQty": "12016287095129", + "priceReceived": 0.8322038181039852 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "1201628709124981", - "priceReceived": 0.8322038183726437 + "expectedQty": "1201628709474437", + "priceReceived": 0.8322038181306234 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "120162867068477766", - "priceReceived": 0.8322038449949146 + "expectedQty": "120162870563041570", + "priceReceived": 0.832203820792851 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "1201628321229059126", - "priceReceived": 0.8322040870151696 + "expectedQty": "1201628670684777657", + "priceReceived": 0.8322038449949146 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "12016248267380638563", - "priceReceived": 0.8322065071796199 + "expectedQty": "12016283212290591268", + "priceReceived": 0.8322040870151696 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "120158988844584723143", - "priceReceived": 0.832230705014848 + "expectedQty": "120162482673806385710", + "priceReceived": 0.8322065071796199 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", - "expectedQty": "758915093464738136563169", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7589150934647381091832816", "priceReceived": 0.9213151853495023 }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1473400530309341117742129", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14734005303093410638320271", "priceReceived": 0.9490969843117983 }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2178783980315529571380871", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21787839803155294097975382", "priceReceived": 0.9627388575237401 }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2880620127293826852497696", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28806201272938267451228581", "priceReceived": 0.9709020545612271 }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3580589386958113473567706", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35805893869581132588150497", "priceReceived": 0.9763755689869884 }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4279368449887122287928618", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42793684498871219659941169", "priceReceived": 0.9803315720829454 }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4977278016127211467001887", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49772780161272118949685368", "priceReceived": 0.9833487267822547 }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5674486299978109779032834", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56744862999781095641627655", "priceReceived": 0.9857456171885689 }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6371087286239571166925768", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63710872862395713796044591", "priceReceived": 0.9877120995644404 }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7067135305137869045136995", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70671353051378686161669679", "priceReceived": 0.9893683505559537 } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "39964999999999992615927808", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2852,279 +2852,279 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "11432866386092", - "priceReceived": 0.8746712908466182 + "expectedQty": "11432866386117", + "priceReceived": 0.8746712908447055 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "1143286638334208", - "priceReceived": 0.8746712910570007 + "expectedQty": "1143286638584193", + "priceReceived": 0.8746712908657498 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "114328661083569904", - "priceReceived": 0.8746713120947319 + "expectedQty": "114328663583434226", + "priceReceived": 0.8746712929695227 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "1143286360849746210", - "priceReceived": 0.874671503346503 + "expectedQty": "1143286610835699035", + "priceReceived": 0.8746713120947319 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "11432838610381658208", - "priceReceived": 0.8746734158321311 + "expectedQty": "11432863608497462099", + "priceReceived": 0.874671503346503 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "114325886771621960149", - "priceReceived": 0.8746925374806894 + "expectedQty": "114328386103816582123", + "priceReceived": 0.8746734158321311 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", - "expectedQty": "741678171179218686429800", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7416781711792186591772873", "priceReceived": 0.9427269497338971 }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1452105731306633575856596", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14521057313066335220327490", "priceReceived": 0.9630152748875194 }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2156200194980878262700900", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21562001949808781013137809", "priceReceived": 0.9728224702338467 }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2857835872184337931168178", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28578358721843378240109602", "priceReceived": 0.9786426250792051 }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3558180045961155437097768", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35581800459611552226250919", "priceReceived": 0.9825247612099519 }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4257701656529446269530387", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42577016565294459478970534", "priceReceived": 0.9853203297056767 }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4956622542256418842610799", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49566225422564192722621093", "priceReceived": 0.9874465844986265 }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5655058851205474401832123", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56550588512054741878608622", "priceReceived": 0.9891320580700282 }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6353075328572007239119684", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63530753285720074539091872", "priceReceived": 0.9905124171437212 }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7050709272680501025142512", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70507092726805005971719016", "priceReceived": 0.9916732813097283 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "9892618042466", - "priceReceived": 1.0108547562508774 + "expectedQty": "9892618042465", + "priceReceived": 1.0108547562509795 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "989261804244580", - "priceReceived": 1.0108547562529415 + "expectedQty": "989261804246359", + "priceReceived": 1.0108547562511236 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "98926180404884481", - "priceReceived": 1.010854756452949 + "expectedQty": "98926180422678563", + "priceReceived": 1.0108547562711243 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "989261802269436564", - "priceReceived": 1.010854758271197 + "expectedQty": "989261804048844801", + "priceReceived": 1.010854756452949 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "9892617844753675832", - "priceReceived": 1.0108547764536635 + "expectedQty": "9892618022694365643", + "priceReceived": 1.010854758271197 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "98926160653601652020", - "priceReceived": 1.010854958276997 + "expectedQty": "98926178447536758369", + "priceReceived": 1.0108547764536635 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "9832251954605", - "priceReceived": 1.0170609994708724 + "expectedQty": "9832251954604", + "priceReceived": 1.0170609994709758 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "983225195458701", - "priceReceived": 1.0170609994727333 + "expectedQty": "983225195460274", + "priceReceived": 1.0170609994711062 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "98322519528556775", - "priceReceived": 1.0170609996518245 + "expectedQty": "98322519544296074", + "priceReceived": 1.0170609994890152 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "983225193711637753", - "priceReceived": 1.0170610012799184 + "expectedQty": "983225195285567742", + "priceReceived": 1.0170609996518245 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "9832251779723363751", - "priceReceived": 1.0170610175608579 + "expectedQty": "9832251937116377522", + "priceReceived": 1.0170610012799184 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "98322502057917477303", - "priceReceived": 1.0170611803704344 + "expectedQty": "98322517797233637458", + "priceReceived": 1.0170610175608579 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "74925000000000000232783872", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3132,97 +3132,97 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "12016287095094", - "priceReceived": 0.8322038181064092 + "expectedQty": "12016287095129", + "priceReceived": 0.8322038181039852 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "1201628709124981", - "priceReceived": 0.8322038183726437 + "expectedQty": "1201628709474437", + "priceReceived": 0.8322038181306234 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "120162867068477766", - "priceReceived": 0.8322038449949146 + "expectedQty": "120162870563041570", + "priceReceived": 0.832203820792851 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "1201628321229059126", - "priceReceived": 0.8322040870151696 + "expectedQty": "1201628670684777657", + "priceReceived": 0.8322038449949146 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "12016248267380638563", - "priceReceived": 0.8322065071796199 + "expectedQty": "12016283212290591268", + "priceReceived": 0.8322040870151696 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "120158988844584723142", - "priceReceived": 0.832230705014848 + "expectedQty": "120162482673806385710", + "priceReceived": 0.8322065071796199 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", - "expectedQty": "758915093464738136563169", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7589150934647381091832816", "priceReceived": 0.9213151853495023 }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1473400530309341117742129", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14734005303093410638320271", "priceReceived": 0.9490969843117983 }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2178783980315529571380871", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21787839803155294097975382", "priceReceived": 0.9627388575237401 }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2880620127293826852497696", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28806201272938267451228581", "priceReceived": 0.9709020545612271 }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3580589386958113473567706", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35805893869581132588150497", "priceReceived": 0.9763755689869884 }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4279368449887122287928618", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42793684498871219659941169", "priceReceived": 0.9803315720829454 }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4977278016127211467001887", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49772780161272118949685368", "priceReceived": 0.9833487267822547 }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5674486299978109779032834", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56744862999781095641627655", "priceReceived": 0.9857456171885689 }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6371087286239571166925768", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63710872862395713796044591", "priceReceived": 0.9877120995644404 }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7067135305137869045136995", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70671353051378686161669679", "priceReceived": 0.9893683505559537 }, { @@ -3234,177 +3234,177 @@ { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "968846004561237", - "priceReceived": 1.0321557763484526 + "expectedQty": "968846004563827", + "priceReceived": 1.0321557763456932 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "96884600427629503", - "priceReceived": 1.0321557766520142 + "expectedQty": "96884600453533259", + "priceReceived": 1.0321557763760498 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "968846001685919294", - "priceReceived": 1.0321557794116596 + "expectedQty": "968846004276295020", + "priceReceived": 1.0321557766520142 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "9688459757821565729", - "priceReceived": 1.0321558070081187 + "expectedQty": "9688460016859192923", + "priceReceived": 1.0321557794116596 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "96884571674398445885", - "priceReceived": 1.0321560829733718 + "expectedQty": "96884597578215657135", + "priceReceived": 1.0321558070081187 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "10143890658606", - "priceReceived": 0.9858150424281314 + "expectedQty": "10143890658607", + "priceReceived": 0.9858150424280343 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "1014389065847321", - "priceReceived": 0.9858150424410363 + "expectedQty": "1014389065859345", + "priceReceived": 0.985815042429351 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "101438906452467690", - "priceReceived": 0.9858150437264234 + "expectedQty": "101438906572708043", + "priceReceived": 0.9858150425578899 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "1014389052500646933", - "priceReceived": 0.9858150554117522 + "expectedQty": "1014389064524676899", + "priceReceived": 0.9858150437264234 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "10143889322608810609", - "priceReceived": 0.9858151722645367 + "expectedQty": "10143890525006469383", + "priceReceived": 0.9858150554117521 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "101438772991659315644", - "priceReceived": 0.9858163407420394 + "expectedQty": "101438893226088106622", + "priceReceived": 0.9858151722645367 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "500500000000000000000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "5005000000000000031457280", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3412,279 +3412,279 @@ { "bAssetIndex": 0, "bAssetQty": "10000000000000", - "expectedQty": "9892618042466", - "priceReceived": 1.0108547562508774 + "expectedQty": "9892618042465", + "priceReceived": 1.0108547562509795 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "989261804244580", - "priceReceived": 1.0108547562529415 + "expectedQty": "989261804246359", + "priceReceived": 1.0108547562511236 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "98926180404884481", - "priceReceived": 1.010854756452949 + "expectedQty": "98926180422678563", + "priceReceived": 1.0108547562711243 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "989261802269436564", - "priceReceived": 1.010854758271197 + "expectedQty": "989261804048844801", + "priceReceived": 1.010854756452949 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "9892617844753675832", - "priceReceived": 1.0108547764536635 + "expectedQty": "9892618022694365643", + "priceReceived": 1.010854758271197 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "98926160653601652020", - "priceReceived": 1.010854958276997 + "expectedQty": "98926178447536758369", + "priceReceived": 1.0108547764536635 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "11432866386092", - "priceReceived": 0.8746712908466182 + "expectedQty": "11432866386117", + "priceReceived": 0.8746712908447055 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "1143286638334208", - "priceReceived": 0.8746712910570007 + "expectedQty": "1143286638584193", + "priceReceived": 0.8746712908657498 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "114328661083569904", - "priceReceived": 0.8746713120947319 + "expectedQty": "114328663583434226", + "priceReceived": 0.8746712929695227 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "1143286360849746210", - "priceReceived": 0.874671503346503 + "expectedQty": "1143286610835699035", + "priceReceived": 0.8746713120947319 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "11432838610381658208", - "priceReceived": 0.8746734158321311 + "expectedQty": "11432863608497462099", + "priceReceived": 0.874671503346503 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "114325886771621960149", - "priceReceived": 0.8746925374806894 + "expectedQty": "114328386103816582123", + "priceReceived": 0.8746734158321311 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", - "expectedQty": "741678171179218686429800", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7416781711792186591772873", "priceReceived": 0.9427269497338971 }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1452105731306633575856596", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14521057313066335220327490", "priceReceived": 0.9630152748875194 }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2156200194980878262700900", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21562001949808781013137809", "priceReceived": 0.9728224702338467 }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2857835872184337931168178", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28578358721843378240109602", "priceReceived": 0.9786426250792051 }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3558180045961155437097768", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35581800459611552226250919", "priceReceived": 0.9825247612099519 }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4257701656529446269530387", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42577016565294459478970534", "priceReceived": 0.9853203297056767 }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4956622542256418842610799", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49566225422564192722621093", "priceReceived": 0.9874465844986265 }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5655058851205474401832123", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56550588512054741878608622", "priceReceived": 0.9891320580700282 }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6353075328572007239119684", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63530753285720074539091872", "priceReceived": 0.9905124171437212 }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7050709272680501025142512", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70507092726805005971719016", "priceReceived": 0.9916732813097283 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "9832251954605", - "priceReceived": 1.0170609994708724 + "expectedQty": "9832251954604", + "priceReceived": 1.0170609994709758 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "983225195458701", - "priceReceived": 1.0170609994727333 + "expectedQty": "983225195460274", + "priceReceived": 1.0170609994711062 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "98322519528556775", - "priceReceived": 1.0170609996518245 + "expectedQty": "98322519544296074", + "priceReceived": 1.0170609994890152 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "983225193711637753", - "priceReceived": 1.0170610012799184 + "expectedQty": "983225195285567742", + "priceReceived": 1.0170609996518245 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "9832251779723363751", - "priceReceived": 1.0170610175608579 + "expectedQty": "9832251937116377522", + "priceReceived": 1.0170610012799184 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "98322502057917477303", - "priceReceived": 1.0170611803704344 + "expectedQty": "98322517797233637458", + "priceReceived": 1.0170610175608579 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "3996499999999999360000000", - "reserve2": "2007000000000000960000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "39964999999999992615927808", + "reserve2": "20070000000000010942939136", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3698,91 +3698,91 @@ { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "997993557066692", - "priceReceived": 1.0020104768403568 + "expectedQty": "997993557067334", + "priceReceived": 1.0020104768397122 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "99799355699606328", - "priceReceived": 1.0020104769112699 + "expectedQty": "99799355706027116", + "priceReceived": 1.0020104768468037 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "997993556353984498", - "priceReceived": 1.002010477555933 + "expectedQty": "997993556996063279", + "priceReceived": 1.0020104769112699 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "9979935499332013774", - "priceReceived": 1.0020104840025599 + "expectedQty": "9979935563539844983", + "priceReceived": 1.002010477555933 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "99799348572583949084", - "priceReceived": 1.0020105484683612 + "expectedQty": "99799354993320137768", + "priceReceived": 1.0020104840025599 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", - "expectedQty": "697463049145752630825887", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "6974630491457526042878620", "priceReceived": 1.0024903840517068 }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1394297537312687357246463", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "13942975373126873042307325", "priceReceived": 1.0029423150923866 }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2090534177142072198604999", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "20905341771420720390188713", "priceReceived": 1.0033799126248142 }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2786181338416885026428332", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "27861813384168849206482286", "priceReceived": 1.0038111882513536 }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3481235579829406229717057", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "34812355798294060176379307", "priceReceived": 1.0042411436491516 }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4175686799036286876935350", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "41756867990362865587699466", "priceReceived": 1.0046730518601674 }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4869520959749015472848888", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "48695209597490159008343907", "priceReceived": 1.0051091350579722 }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5562721630840957913206527", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "55627216308409577027524495", "priceReceived": 1.005550946318767 }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6255270901791376247372883", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "62552709017913764627308480", "priceReceived": 1.005999595988381 }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "6947149951809925188879129", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "69471499518099247672725350", "priceReceived": 1.0064558917687376 }, { @@ -3794,197 +3794,197 @@ { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "997993557066692", - "priceReceived": 1.0020104768403568 + "expectedQty": "997993557067334", + "priceReceived": 1.0020104768397122 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "99799355699606328", - "priceReceived": 1.0020104769112699 + "expectedQty": "99799355706027116", + "priceReceived": 1.0020104768468037 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "997993556353984498", - "priceReceived": 1.002010477555933 + "expectedQty": "997993556996063279", + "priceReceived": 1.0020104769112699 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "9979935499332013774", - "priceReceived": 1.0020104840025599 + "expectedQty": "9979935563539844983", + "priceReceived": 1.002010477555933 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "99799348572583949084", - "priceReceived": 1.0020105484683612 + "expectedQty": "99799354993320137768", + "priceReceived": 1.0020104840025599 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", - "expectedQty": "697463049145752630825887", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "6974630491457526042878620", "priceReceived": 1.0024903840517068 }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1394297537312687357246463", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "13942975373126873042307325", "priceReceived": 1.0029423150923866 }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2090534177142072198604999", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "20905341771420720390188713", "priceReceived": 1.0033799126248142 }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2786181338416885026428332", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "27861813384168849206482286", "priceReceived": 1.0038111882513536 }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3481235579829406229717057", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "34812355798294060176379307", "priceReceived": 1.0042411436491516 }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4175686799036286876935350", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "41756867990362865587699466", "priceReceived": 1.0046730518601674 }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4869520959749015472848888", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "48695209597490159008343907", "priceReceived": 1.0051091350579722 }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5562721630840957913206527", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "55627216308409577027524495", "priceReceived": 1.005550946318767 }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6255270901791376247372883", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "62552709017913764627308480", "priceReceived": 1.005999595988381 }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "6947149951809925188879129", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "69471499518099247672725350", "priceReceived": 1.0064558917687376 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "10058614942598", - "priceReceived": 0.9941726626446582 + "expectedQty": "10058614942597", + "priceReceived": 0.9941726626447571 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "1005861494256321", - "priceReceived": 0.9941726626480968 + "expectedQty": "1005861494259417", + "priceReceived": 0.9941726626450368 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "100586149391571656", - "priceReceived": 0.9941726629847432 + "expectedQty": "100586149422535636", + "priceReceived": 0.9941726626787016 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "1005861490819319821", - "priceReceived": 0.9941726660451576 + "expectedQty": "1005861493915716551", + "priceReceived": 0.9941726629847432 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "10058614598554929567", - "priceReceived": 0.9941726966491637 + "expectedQty": "10058614908193198198", + "priceReceived": 0.9941726660451576 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "100586115023126883866", - "priceReceived": 0.9941730026754476 + "expectedQty": "100586145985549295538", + "priceReceived": 0.9941726966491637 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", - "expectedQty": "702016130027513514676957", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7020161300275134871429446", "priceReceived": 0.9959885109372015 }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1402409205977358729703359", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14024092059773586749954766", "priceReceived": 0.9971412010415572 }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2101865542055031215754228", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21018655420550310535002565", "priceReceived": 0.9979705923287269 }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2800665664244178037349474", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28006656642441779286626762", "priceReceived": 0.9986197337677502 }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3498941539257549736263678", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "34989415392575495202746789", "priceReceived": 0.9991593059716642 }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4196760179169993801281722", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "41967601791699934781240948", "priceReceived": 0.9996282420001654 }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4894156522336345491706039", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "48941565223363459180248539", "priceReceived": 1.0000497486466857 }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5591148198088038016553653", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "55911481980880378004214414", "priceReceived": 1.0004385149212822 }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6287742841543760775892450", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "62877428415437609874699716", "priceReceived": 1.0008042883724229 }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "6983942004489696902085786", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "69839420044896964720474647", "priceReceived": 1.0011537890069997 } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "5005000000000000031457280", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3998,263 +3998,263 @@ { "bAssetIndex": 0, "bAssetQty": "1000000000000000", - "expectedQty": "968846004561237", - "priceReceived": 1.0321557763484526 + "expectedQty": "968846004563827", + "priceReceived": 1.0321557763456932 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000", - "expectedQty": "96884600427629503", - "priceReceived": 1.0321557766520142 + "expectedQty": "96884600453533259", + "priceReceived": 1.0321557763760498 }, { "bAssetIndex": 0, "bAssetQty": "1000000000000000000", - "expectedQty": "968846001685919294", - "priceReceived": 1.0321557794116596 + "expectedQty": "968846004276295020", + "priceReceived": 1.0321557766520142 }, { "bAssetIndex": 0, "bAssetQty": "10000000000000000000", - "expectedQty": "9688459757821565729", - "priceReceived": 1.0321558070081187 + "expectedQty": "9688460016859192923", + "priceReceived": 1.0321557794116596 }, { "bAssetIndex": 0, "bAssetQty": "100000000000000000000", - "expectedQty": "96884571674398445885", - "priceReceived": 1.0321560829733718 + "expectedQty": "96884597578215657135", + "priceReceived": 1.0321558070081187 }, { "bAssetIndex": 0, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 1, "bAssetQty": "10000000000000", - "expectedQty": "12016287095094", - "priceReceived": 0.8322038181064092 + "expectedQty": "12016287095129", + "priceReceived": 0.8322038181039852 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000", - "expectedQty": "1201628709124981", - "priceReceived": 0.8322038183726437 + "expectedQty": "1201628709474437", + "priceReceived": 0.8322038181306234 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000", - "expectedQty": "120162867068477766", - "priceReceived": 0.8322038449949146 + "expectedQty": "120162870563041570", + "priceReceived": 0.832203820792851 }, { "bAssetIndex": 1, "bAssetQty": "1000000000000000000", - "expectedQty": "1201628321229059126", - "priceReceived": 0.8322040870151696 + "expectedQty": "1201628670684777657", + "priceReceived": 0.8322038449949146 }, { "bAssetIndex": 1, "bAssetQty": "10000000000000000000", - "expectedQty": "12016248267380638563", - "priceReceived": 0.8322065071796199 + "expectedQty": "12016283212290591268", + "priceReceived": 0.8322040870151696 }, { "bAssetIndex": 1, "bAssetQty": "100000000000000000000", - "expectedQty": "120158988844584723142", - "priceReceived": 0.832230705014848 + "expectedQty": "120162482673806385710", + "priceReceived": 0.8322065071796199 }, { "bAssetIndex": 1, - "bAssetQty": "699200000000000050331648", - "expectedQty": "758915093464738136563169", + "bAssetQty": "6992000000000000234881024", + "expectedQty": "7589150934647381091832816", "priceReceived": 0.9213151853495023 }, { "bAssetIndex": 1, - "bAssetQty": "1398400000000000100663296", - "expectedQty": "1473400530309341117742129", + "bAssetQty": "13984000000000000469762048", + "expectedQty": "14734005303093410638320271", "priceReceived": 0.9490969843117983 }, { "bAssetIndex": 1, - "bAssetQty": "2097600000000000016777216", - "expectedQty": "2178783980315529571380871", + "bAssetQty": "20975999999999998557159424", + "expectedQty": "21787839803155294097975382", "priceReceived": 0.9627388575237401 }, { "bAssetIndex": 1, - "bAssetQty": "2796800000000000201326592", - "expectedQty": "2880620127293826852497696", + "bAssetQty": "27968000000000000939524096", + "expectedQty": "28806201272938267451228581", "priceReceived": 0.9709020545612271 }, { "bAssetIndex": 1, - "bAssetQty": "3496000000000000117440512", - "expectedQty": "3580589386958113473567706", + "bAssetQty": "34959999999999999026921472", + "expectedQty": "35805893869581132588150497", "priceReceived": 0.9763755689869884 }, { "bAssetIndex": 1, - "bAssetQty": "4195200000000000033554432", - "expectedQty": "4279368449887122287928618", + "bAssetQty": "41951999999999997114318848", + "expectedQty": "42793684498871219659941169", "priceReceived": 0.9803315720829454 }, { "bAssetIndex": 1, - "bAssetQty": "4894399999999999949668352", - "expectedQty": "4977278016127211467001887", + "bAssetQty": "48944000000000003791650816", + "expectedQty": "49772780161272118949685368", "priceReceived": 0.9833487267822547 }, { "bAssetIndex": 1, - "bAssetQty": "5593600000000000402653184", - "expectedQty": "5674486299978109779032834", + "bAssetQty": "55936000000000001879048192", + "expectedQty": "56744862999781095641627655", "priceReceived": 0.9857456171885689 }, { "bAssetIndex": 1, - "bAssetQty": "6292799999999999781896192", - "expectedQty": "6371087286239571166925768", + "bAssetQty": "62927999999999999966445568", + "expectedQty": "63710872862395713796044591", "priceReceived": 0.9877120995644404 }, { "bAssetIndex": 1, - "bAssetQty": "6992000000000000234881024", - "expectedQty": "7067135305137869045136995", + "bAssetQty": "69919999999999998053842944", + "expectedQty": "70671353051378686161669679", "priceReceived": 0.9893683505559537 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000", - "expectedQty": "10143890658606", - "priceReceived": 0.9858150424281314 + "expectedQty": "10143890658607", + "priceReceived": 0.9858150424280343 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000", - "expectedQty": "1014389065847321", - "priceReceived": 0.9858150424410363 + "expectedQty": "1014389065859345", + "priceReceived": 0.985815042429351 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000", - "expectedQty": "101438906452467690", - "priceReceived": 0.9858150437264234 + "expectedQty": "101438906572708043", + "priceReceived": 0.9858150425578899 }, { "bAssetIndex": 2, "bAssetQty": "1000000000000000000", - "expectedQty": "1014389052500646933", - "priceReceived": 0.9858150554117522 + "expectedQty": "1014389064524676899", + "priceReceived": 0.9858150437264234 }, { "bAssetIndex": 2, "bAssetQty": "10000000000000000000", - "expectedQty": "10143889322608810609", - "priceReceived": 0.9858151722645367 + "expectedQty": "10143890525006469383", + "priceReceived": 0.9858150554117521 }, { "bAssetIndex": 2, "bAssetQty": "100000000000000000000", - "expectedQty": "101438772991659315644", - "priceReceived": 0.9858163407420394 + "expectedQty": "101438893226088106622", + "priceReceived": 0.9858151722645367 }, { "bAssetIndex": 2, - "bAssetQty": "699200000000000050331648", + "bAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "1398400000000000100663296", + "bAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2097600000000000016777216", + "bAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "2796800000000000201326592", + "bAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "3496000000000000117440512", + "bAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4195200000000000033554432", + "bAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "4894399999999999949668352", + "bAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "5593600000000000402653184", + "bAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6292799999999999781896192", + "bAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "bAssetQty": "6992000000000000234881024", + "bAssetQty": "69919999999999998053842944", "hardLimitError": true } ] diff --git a/test-utils/validator-data/masset/redeemExactTestData.json b/test-utils/validator-data/masset/redeemExactTestData.json index cb8727bb..a68e488b 100644 --- a/test-utils/validator-data/masset/redeemExactTestData.json +++ b/test-utils/validator-data/masset/redeemExactTestData.json @@ -1,10 +1,10 @@ [ { - "reserve0": "5503000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "5005000000000000031457280", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -15,7 +15,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -24,8 +24,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -33,8 +33,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -42,8 +42,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -51,8 +51,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -60,86 +60,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -149,7 +149,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -158,8 +158,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -167,8 +167,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -176,8 +176,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -185,8 +185,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -194,86 +194,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -283,7 +283,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -292,8 +292,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -301,8 +301,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -310,8 +310,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -319,8 +319,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -328,97 +328,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "5005000000000000031457280", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -429,7 +429,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -438,8 +438,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -447,8 +447,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -456,8 +456,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -465,8 +465,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -474,86 +474,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -563,7 +563,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -572,8 +572,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -581,8 +581,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -590,8 +590,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -599,8 +599,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -608,86 +608,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -697,7 +697,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -706,8 +706,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -715,8 +715,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -724,8 +724,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -733,8 +733,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -742,97 +742,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "5503000000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "39964999999999992615927808", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -843,7 +843,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416178", "swapFee": "6235288449" }, { @@ -852,8 +852,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -861,8 +861,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -870,8 +870,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -879,8 +879,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -888,86 +888,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -977,7 +977,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416178", "swapFee": "6235288449" }, { @@ -986,8 +986,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -995,8 +995,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -1004,8 +1004,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -1013,8 +1013,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -1022,86 +1022,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -1111,7 +1111,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416178", "swapFee": "6235288449" }, { @@ -1120,8 +1120,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -1129,8 +1129,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -1138,8 +1138,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -1147,8 +1147,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -1156,97 +1156,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "2007000000000000960000000", - "reserve1": "3996499999999999360000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "20070000000000010942939136", + "reserve1": "39964999999999992615927808", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1266,7 +1266,7 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1001216932958058", + "mAssetQty": "1001216932957973", "swapFee": "600730159774" }, { @@ -1275,8 +1275,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "100121693296744420", - "swapFee": "60073015978046" + "mAssetQty": "100121693295891314", + "swapFee": "60073015977534" }, { "bAssetQtys": [ @@ -1284,8 +1284,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1001216933052754844", - "swapFee": "600730159831652" + "mAssetQty": "1001216932967444187", + "swapFee": "600730159780466" }, { "bAssetQtys": [ @@ -1293,8 +1293,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10012169339058628903", - "swapFee": "6007301603435177" + "mAssetQty": "10012169330527549605", + "swapFee": "6007301598316529" }, { "bAssetQtys": [ @@ -1302,93 +1302,93 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "100121694243707687525", - "swapFee": "60073016546224612" + "mAssetQty": "100121693390586292095", + "swapFee": "60073016034351775" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "mAssetQty": "700103049377134224963752", - "swapFee": "420061829626280534978" + "mAssetQty": "7001030493771341239932294", + "swapFee": "4200618296262804743959" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "mAssetQty": "1400340642413086499054609", - "swapFee": "840204385447851899432" + "mAssetQty": "14003406424130862970071410", + "swapFee": "8402043854478517782042" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "mAssetQty": "2100781755590947292822968", - "swapFee": "1260469053354568375693" + "mAssetQty": "21007817555909472114104494", + "swapFee": "12604690533545683268462" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "mAssetQty": "2801553941266024692391575", - "swapFee": "1680932364759614815434" + "mAssetQty": "28015539412660242874724661", + "swapFee": "16809323647596145724834" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "mAssetQty": "3502923377571130423392051", - "swapFee": "2101754026542678254035" + "mAssetQty": "35029233775711307446377589", + "swapFee": "21017540265426784467826" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "mAssetQty": "4205556642026964606593822", - "swapFee": "2523333985216178763956" + "mAssetQty": "42055566420269644406212496", + "swapFee": "25233339852161786643727" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "mAssetQty": "4911740252433022541656772", - "swapFee": "2947044151459813524994" + "mAssetQty": "49117402524330220419043743", + "swapFee": "29470441514598132251426" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "hardLimitError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -1407,7 +1407,7 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1001216932958058", + "mAssetQty": "1001216932957973", "swapFee": "600730159774" }, { @@ -1416,8 +1416,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "100121693296744420", - "swapFee": "60073015978046" + "mAssetQty": "100121693295891314", + "swapFee": "60073015977534" }, { "bAssetQtys": [ @@ -1425,8 +1425,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1001216933052754844", - "swapFee": "600730159831652" + "mAssetQty": "1001216932967444187", + "swapFee": "600730159780466" }, { "bAssetQtys": [ @@ -1434,8 +1434,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10012169339058628903", - "swapFee": "6007301603435177" + "mAssetQty": "10012169330527549605", + "swapFee": "6007301598316529" }, { "bAssetQtys": [ @@ -1443,93 +1443,93 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "100121694243707687525", - "swapFee": "60073016546224612" + "mAssetQty": "100121693390586292095", + "swapFee": "60073016034351775" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "mAssetQty": "700103049377134224963752", - "swapFee": "420061829626280534978" + "mAssetQty": "7001030493771341239932294", + "swapFee": "4200618296262804743959" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "mAssetQty": "1400340642413086499054609", - "swapFee": "840204385447851899432" + "mAssetQty": "14003406424130862970071410", + "swapFee": "8402043854478517782042" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "mAssetQty": "2100781755590947292822968", - "swapFee": "1260469053354568375693" + "mAssetQty": "21007817555909472114104494", + "swapFee": "12604690533545683268462" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "mAssetQty": "2801553941266024692391575", - "swapFee": "1680932364759614815434" + "mAssetQty": "28015539412660242874724661", + "swapFee": "16809323647596145724834" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "mAssetQty": "3502923377571130423392051", - "swapFee": "2101754026542678254035" + "mAssetQty": "35029233775711307446377589", + "swapFee": "21017540265426784467826" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "mAssetQty": "4205556642026964606593822", - "swapFee": "2523333985216178763956" + "mAssetQty": "42055566420269644406212496", + "swapFee": "25233339852161786643727" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "mAssetQty": "4911740252433022541656772", - "swapFee": "2947044151459813524994" + "mAssetQty": "49117402524330220419043743", + "swapFee": "29470441514598132251426" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "hardLimitError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -1548,7 +1548,7 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1001216932958058", + "mAssetQty": "1001216932957973", "swapFee": "600730159774" }, { @@ -1557,8 +1557,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "100121693296744420", - "swapFee": "60073015978046" + "mAssetQty": "100121693295891314", + "swapFee": "60073015977534" }, { "bAssetQtys": [ @@ -1566,8 +1566,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1001216933052754844", - "swapFee": "600730159831652" + "mAssetQty": "1001216932967444187", + "swapFee": "600730159780466" }, { "bAssetQtys": [ @@ -1575,8 +1575,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10012169339058628903", - "swapFee": "6007301603435177" + "mAssetQty": "10012169330527549605", + "swapFee": "6007301598316529" }, { "bAssetQtys": [ @@ -1584,104 +1584,104 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "100121694243707687525", - "swapFee": "60073016546224612" + "mAssetQty": "100121693390586292095", + "swapFee": "60073016034351775" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "mAssetQty": "700103049377134224963752", - "swapFee": "420061829626280534978" + "mAssetQty": "7001030493771341239932294", + "swapFee": "4200618296262804743959" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "mAssetQty": "1400340642413086499054609", - "swapFee": "840204385447851899432" + "mAssetQty": "14003406424130862970071410", + "swapFee": "8402043854478517782042" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "mAssetQty": "2100781755590947292822968", - "swapFee": "1260469053354568375693" + "mAssetQty": "21007817555909472114104494", + "swapFee": "12604690533545683268462" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "mAssetQty": "2801553941266024692391575", - "swapFee": "1680932364759614815434" + "mAssetQty": "28015539412660242874724661", + "swapFee": "16809323647596145724834" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "mAssetQty": "3502923377571130423392051", - "swapFee": "2101754026542678254035" + "mAssetQty": "35029233775711307446377589", + "swapFee": "21017540265426784467826" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "mAssetQty": "4205556642026964606593822", - "swapFee": "2523333985216178763956" + "mAssetQty": "42055566420269644406212496", + "swapFee": "25233339852161786643727" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "mAssetQty": "4911740252433022541656772", - "swapFee": "2947044151459813524994" + "mAssetQty": "49117402524330220419043743", + "swapFee": "29470441514598132251426" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "hardLimitError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "74925000000000000232783872", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1692,7 +1692,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -1701,8 +1701,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -1710,8 +1710,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -1719,8 +1719,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -1728,8 +1728,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -1737,86 +1737,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -1826,7 +1826,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -1835,8 +1835,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -1844,8 +1844,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -1853,8 +1853,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -1862,8 +1862,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -1871,86 +1871,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -1960,7 +1960,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -1969,8 +1969,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -1978,8 +1978,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -1987,8 +1987,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -1996,8 +1996,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -2005,97 +2005,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "5503000000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "55030000000000001379926016", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2106,7 +2106,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -2115,8 +2115,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -2124,8 +2124,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -2133,8 +2133,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -2142,8 +2142,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -2151,86 +2151,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -2240,7 +2240,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -2249,8 +2249,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -2258,8 +2258,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -2267,8 +2267,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -2276,8 +2276,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -2285,86 +2285,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -2374,7 +2374,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -2383,8 +2383,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -2392,8 +2392,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -2401,8 +2401,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -2410,8 +2410,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -2419,97 +2419,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "20069999999999998058037248", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2520,7 +2520,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -2529,8 +2529,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -2538,8 +2538,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -2547,8 +2547,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -2556,8 +2556,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -2565,86 +2565,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -2654,7 +2654,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -2663,8 +2663,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -2672,8 +2672,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -2681,8 +2681,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -2690,8 +2690,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -2699,86 +2699,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -2788,7 +2788,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -2797,8 +2797,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -2806,8 +2806,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -2815,8 +2815,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -2824,8 +2824,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -2833,97 +2833,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "5503000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "55030000000000001379926016", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2934,7 +2934,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416178", "swapFee": "6235288449" }, { @@ -2943,8 +2943,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -2952,8 +2952,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -2961,8 +2961,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -2970,8 +2970,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -2979,86 +2979,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -3068,7 +3068,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416178", "swapFee": "6235288449" }, { @@ -3077,8 +3077,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -3086,8 +3086,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -3095,8 +3095,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -3104,8 +3104,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -3113,86 +3113,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -3202,7 +3202,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416178", "swapFee": "6235288449" }, { @@ -3211,8 +3211,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -3220,8 +3220,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -3229,8 +3229,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -3238,8 +3238,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -3247,97 +3247,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "2007000000000000960000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "20070000000000010942939136", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3357,7 +3357,7 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1001216932958058", + "mAssetQty": "1001216932957973", "swapFee": "600730159774" }, { @@ -3366,8 +3366,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "100121693296744420", - "swapFee": "60073015978046" + "mAssetQty": "100121693295891314", + "swapFee": "60073015977534" }, { "bAssetQtys": [ @@ -3375,8 +3375,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1001216933052754844", - "swapFee": "600730159831652" + "mAssetQty": "1001216932967444187", + "swapFee": "600730159780466" }, { "bAssetQtys": [ @@ -3384,8 +3384,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10012169339058628903", - "swapFee": "6007301603435177" + "mAssetQty": "10012169330527549605", + "swapFee": "6007301598316529" }, { "bAssetQtys": [ @@ -3393,93 +3393,93 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "100121694243707687525", - "swapFee": "60073016546224612" + "mAssetQty": "100121693390586292095", + "swapFee": "60073016034351775" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "mAssetQty": "700103049377134224963752", - "swapFee": "420061829626280534978" + "mAssetQty": "7001030493771341239932294", + "swapFee": "4200618296262804743959" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "mAssetQty": "1400340642413086499054609", - "swapFee": "840204385447851899432" + "mAssetQty": "14003406424130862970071410", + "swapFee": "8402043854478517782042" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "mAssetQty": "2100781755590947292822968", - "swapFee": "1260469053354568375693" + "mAssetQty": "21007817555909472114104494", + "swapFee": "12604690533545683268462" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "mAssetQty": "2801553941266024692391575", - "swapFee": "1680932364759614815434" + "mAssetQty": "28015539412660242874724661", + "swapFee": "16809323647596145724834" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "mAssetQty": "3502923377571130423392051", - "swapFee": "2101754026542678254035" + "mAssetQty": "35029233775711307446377589", + "swapFee": "21017540265426784467826" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "mAssetQty": "4205556642026964606593822", - "swapFee": "2523333985216178763956" + "mAssetQty": "42055566420269644406212496", + "swapFee": "25233339852161786643727" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "mAssetQty": "4911740252433022541656772", - "swapFee": "2947044151459813524994" + "mAssetQty": "49117402524330220419043743", + "swapFee": "29470441514598132251426" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "hardLimitError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -3498,7 +3498,7 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1001216932958058", + "mAssetQty": "1001216932957973", "swapFee": "600730159774" }, { @@ -3507,8 +3507,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "100121693296744420", - "swapFee": "60073015978046" + "mAssetQty": "100121693295891314", + "swapFee": "60073015977534" }, { "bAssetQtys": [ @@ -3516,8 +3516,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1001216933052754844", - "swapFee": "600730159831652" + "mAssetQty": "1001216932967444187", + "swapFee": "600730159780466" }, { "bAssetQtys": [ @@ -3525,8 +3525,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10012169339058628903", - "swapFee": "6007301603435177" + "mAssetQty": "10012169330527549605", + "swapFee": "6007301598316529" }, { "bAssetQtys": [ @@ -3534,93 +3534,93 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "100121694243707687525", - "swapFee": "60073016546224612" + "mAssetQty": "100121693390586292095", + "swapFee": "60073016034351775" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "mAssetQty": "700103049377134224963752", - "swapFee": "420061829626280534978" + "mAssetQty": "7001030493771341239932294", + "swapFee": "4200618296262804743959" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "mAssetQty": "1400340642413086499054609", - "swapFee": "840204385447851899432" + "mAssetQty": "14003406424130862970071410", + "swapFee": "8402043854478517782042" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "mAssetQty": "2100781755590947292822968", - "swapFee": "1260469053354568375693" + "mAssetQty": "21007817555909472114104494", + "swapFee": "12604690533545683268462" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "mAssetQty": "2801553941266024692391575", - "swapFee": "1680932364759614815434" + "mAssetQty": "28015539412660242874724661", + "swapFee": "16809323647596145724834" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "mAssetQty": "3502923377571130423392051", - "swapFee": "2101754026542678254035" + "mAssetQty": "35029233775711307446377589", + "swapFee": "21017540265426784467826" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "mAssetQty": "4205556642026964606593822", - "swapFee": "2523333985216178763956" + "mAssetQty": "42055566420269644406212496", + "swapFee": "25233339852161786643727" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "mAssetQty": "4911740252433022541656772", - "swapFee": "2947044151459813524994" + "mAssetQty": "49117402524330220419043743", + "swapFee": "29470441514598132251426" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "hardLimitError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -3639,7 +3639,7 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1001216932958058", + "mAssetQty": "1001216932957973", "swapFee": "600730159774" }, { @@ -3648,8 +3648,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "100121693296744420", - "swapFee": "60073015978046" + "mAssetQty": "100121693295891314", + "swapFee": "60073015977534" }, { "bAssetQtys": [ @@ -3657,8 +3657,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1001216933052754844", - "swapFee": "600730159831652" + "mAssetQty": "1001216932967444187", + "swapFee": "600730159780466" }, { "bAssetQtys": [ @@ -3666,8 +3666,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10012169339058628903", - "swapFee": "6007301603435177" + "mAssetQty": "10012169330527549605", + "swapFee": "6007301598316529" }, { "bAssetQtys": [ @@ -3675,104 +3675,104 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "100121694243707687525", - "swapFee": "60073016546224612" + "mAssetQty": "100121693390586292095", + "swapFee": "60073016034351775" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "mAssetQty": "700103049377134224963752", - "swapFee": "420061829626280534978" + "mAssetQty": "7001030493771341239932294", + "swapFee": "4200618296262804743959" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "mAssetQty": "1400340642413086499054609", - "swapFee": "840204385447851899432" + "mAssetQty": "14003406424130862970071410", + "swapFee": "8402043854478517782042" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "mAssetQty": "2100781755590947292822968", - "swapFee": "1260469053354568375693" + "mAssetQty": "21007817555909472114104494", + "swapFee": "12604690533545683268462" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "mAssetQty": "2801553941266024692391575", - "swapFee": "1680932364759614815434" + "mAssetQty": "28015539412660242874724661", + "swapFee": "16809323647596145724834" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "mAssetQty": "3502923377571130423392051", - "swapFee": "2101754026542678254035" + "mAssetQty": "35029233775711307446377589", + "swapFee": "21017540265426784467826" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "mAssetQty": "4205556642026964606593822", - "swapFee": "2523333985216178763956" + "mAssetQty": "42055566420269644406212496", + "swapFee": "25233339852161786643727" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "mAssetQty": "4911740252433022541656772", - "swapFee": "2947044151459813524994" + "mAssetQty": "49117402524330220419043743", + "swapFee": "29470441514598132251426" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "hardLimitError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "20069999999999998058037248", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3783,7 +3783,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -3792,8 +3792,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -3801,8 +3801,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -3810,8 +3810,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -3819,8 +3819,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -3828,86 +3828,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -3917,7 +3917,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -3926,8 +3926,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -3935,8 +3935,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -3944,8 +3944,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -3953,8 +3953,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -3962,86 +3962,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -4051,7 +4051,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -4060,8 +4060,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -4069,8 +4069,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -4078,8 +4078,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -4087,8 +4087,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -4096,97 +4096,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "39964999999999992615927808", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -4197,7 +4197,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -4206,8 +4206,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -4215,8 +4215,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -4224,8 +4224,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -4233,8 +4233,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -4242,86 +4242,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -4331,7 +4331,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -4340,8 +4340,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -4349,8 +4349,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -4358,8 +4358,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -4367,8 +4367,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -4376,86 +4376,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -4465,7 +4465,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -4474,8 +4474,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -4483,8 +4483,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -4492,8 +4492,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -4501,8 +4501,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -4510,97 +4510,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "74925000000000000232783872", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -4611,7 +4611,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -4620,8 +4620,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -4629,8 +4629,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -4638,8 +4638,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -4647,8 +4647,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -4656,86 +4656,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -4745,7 +4745,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -4754,8 +4754,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -4763,8 +4763,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -4772,8 +4772,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -4781,8 +4781,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -4790,86 +4790,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -4879,7 +4879,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -4888,8 +4888,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -4897,8 +4897,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -4906,8 +4906,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -4915,8 +4915,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -4924,97 +4924,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "500500000000000000000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "5005000000000000031457280", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -5025,7 +5025,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -5034,8 +5034,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -5043,8 +5043,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -5052,8 +5052,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -5061,8 +5061,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -5070,86 +5070,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -5159,7 +5159,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -5168,8 +5168,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -5177,8 +5177,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -5186,8 +5186,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -5195,8 +5195,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -5204,86 +5204,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -5293,7 +5293,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10392147416180", + "mAssetQty": "10392147416179", "swapFee": "6235288449" }, { @@ -5302,8 +5302,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1039214741642829", - "swapFee": "623528844985" + "mAssetQty": "1039214741620449", + "swapFee": "623528844972" }, { "bAssetQtys": [ @@ -5311,8 +5311,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "103921474410486193", - "swapFee": "62352884646291" + "mAssetQty": "103921474186665250", + "swapFee": "62352884511999" }, { "bAssetQtys": [ @@ -5320,8 +5320,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1039214766486970714", - "swapFee": "623528859892182" + "mAssetQty": "1039214744104861919", + "swapFee": "623528846462917" }, { "bAssetQtys": [ @@ -5329,8 +5329,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10392149903094943109", - "swapFee": "6235289941856965" + "mAssetQty": "10392147664869708344", + "swapFee": "6235288598921825" }, { "bAssetQtys": [ @@ -5338,97 +5338,97 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "103921722867828995814", - "swapFee": "62353033720697397" + "mAssetQty": "103921499030949434316", + "swapFee": "62352899418569660" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "3996499999999999360000000", - "reserve2": "2007000000000000960000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "39964999999999992615927808", + "reserve2": "20070000000000010942939136", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -5448,7 +5448,7 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1001216932958058", + "mAssetQty": "1001216932957973", "swapFee": "600730159774" }, { @@ -5457,8 +5457,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "100121693296744420", - "swapFee": "60073015978046" + "mAssetQty": "100121693295891314", + "swapFee": "60073015977534" }, { "bAssetQtys": [ @@ -5466,8 +5466,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1001216933052754844", - "swapFee": "600730159831652" + "mAssetQty": "1001216932967444187", + "swapFee": "600730159780466" }, { "bAssetQtys": [ @@ -5475,8 +5475,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10012169339058628903", - "swapFee": "6007301603435177" + "mAssetQty": "10012169330527549605", + "swapFee": "6007301598316529" }, { "bAssetQtys": [ @@ -5484,93 +5484,93 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "100121694243707687525", - "swapFee": "60073016546224612" + "mAssetQty": "100121693390586292095", + "swapFee": "60073016034351775" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "mAssetQty": "700103049377134224963752", - "swapFee": "420061829626280534978" + "mAssetQty": "7001030493771341239932294", + "swapFee": "4200618296262804743959" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "mAssetQty": "1400340642413086499054609", - "swapFee": "840204385447851899432" + "mAssetQty": "14003406424130862970071410", + "swapFee": "8402043854478517782042" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "mAssetQty": "2100781755590947292822968", - "swapFee": "1260469053354568375693" + "mAssetQty": "21007817555909472114104494", + "swapFee": "12604690533545683268462" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "mAssetQty": "2801553941266024692391575", - "swapFee": "1680932364759614815434" + "mAssetQty": "28015539412660242874724661", + "swapFee": "16809323647596145724834" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "mAssetQty": "3502923377571130423392051", - "swapFee": "2101754026542678254035" + "mAssetQty": "35029233775711307446377589", + "swapFee": "21017540265426784467826" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "mAssetQty": "4205556642026964606593822", - "swapFee": "2523333985216178763956" + "mAssetQty": "42055566420269644406212496", + "swapFee": "25233339852161786643727" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "mAssetQty": "4911740252433022541656772", - "swapFee": "2947044151459813524994" + "mAssetQty": "49117402524330220419043743", + "swapFee": "29470441514598132251426" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "hardLimitError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -5589,7 +5589,7 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1001216932958058", + "mAssetQty": "1001216932957973", "swapFee": "600730159774" }, { @@ -5598,8 +5598,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "100121693296744420", - "swapFee": "60073015978046" + "mAssetQty": "100121693295891314", + "swapFee": "60073015977534" }, { "bAssetQtys": [ @@ -5607,8 +5607,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1001216933052754844", - "swapFee": "600730159831652" + "mAssetQty": "1001216932967444187", + "swapFee": "600730159780466" }, { "bAssetQtys": [ @@ -5616,8 +5616,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10012169339058628903", - "swapFee": "6007301603435177" + "mAssetQty": "10012169330527549605", + "swapFee": "6007301598316529" }, { "bAssetQtys": [ @@ -5625,93 +5625,93 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "100121694243707687525", - "swapFee": "60073016546224612" + "mAssetQty": "100121693390586292095", + "swapFee": "60073016034351775" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "mAssetQty": "700103049377134224963752", - "swapFee": "420061829626280534978" + "mAssetQty": "7001030493771341239932294", + "swapFee": "4200618296262804743959" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "mAssetQty": "1400340642413086499054609", - "swapFee": "840204385447851899432" + "mAssetQty": "14003406424130862970071410", + "swapFee": "8402043854478517782042" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "mAssetQty": "2100781755590947292822968", - "swapFee": "1260469053354568375693" + "mAssetQty": "21007817555909472114104494", + "swapFee": "12604690533545683268462" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "mAssetQty": "2801553941266024692391575", - "swapFee": "1680932364759614815434" + "mAssetQty": "28015539412660242874724661", + "swapFee": "16809323647596145724834" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "mAssetQty": "3502923377571130423392051", - "swapFee": "2101754026542678254035" + "mAssetQty": "35029233775711307446377589", + "swapFee": "21017540265426784467826" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "mAssetQty": "4205556642026964606593822", - "swapFee": "2523333985216178763956" + "mAssetQty": "42055566420269644406212496", + "swapFee": "25233339852161786643727" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "mAssetQty": "4911740252433022541656772", - "swapFee": "2947044151459813524994" + "mAssetQty": "49117402524330220419043743", + "swapFee": "29470441514598132251426" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "hardLimitError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -5730,7 +5730,7 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1001216932958058", + "mAssetQty": "1001216932957973", "swapFee": "600730159774" }, { @@ -5739,8 +5739,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "100121693296744420", - "swapFee": "60073015978046" + "mAssetQty": "100121693295891314", + "swapFee": "60073015977534" }, { "bAssetQtys": [ @@ -5748,8 +5748,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1001216933052754844", - "swapFee": "600730159831652" + "mAssetQty": "1001216932967444187", + "swapFee": "600730159780466" }, { "bAssetQtys": [ @@ -5757,8 +5757,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10012169339058628903", - "swapFee": "6007301603435177" + "mAssetQty": "10012169330527549605", + "swapFee": "6007301598316529" }, { "bAssetQtys": [ @@ -5766,104 +5766,104 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "100121694243707687525", - "swapFee": "60073016546224612" + "mAssetQty": "100121693390586292095", + "swapFee": "60073016034351775" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], - "mAssetQty": "700103049377134224963752", - "swapFee": "420061829626280534978" + "mAssetQty": "7001030493771341239932294", + "swapFee": "4200618296262804743959" }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], - "mAssetQty": "1400340642413086499054609", - "swapFee": "840204385447851899432" + "mAssetQty": "14003406424130862970071410", + "swapFee": "8402043854478517782042" }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], - "mAssetQty": "2100781755590947292822968", - "swapFee": "1260469053354568375693" + "mAssetQty": "21007817555909472114104494", + "swapFee": "12604690533545683268462" }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], - "mAssetQty": "2801553941266024692391575", - "swapFee": "1680932364759614815434" + "mAssetQty": "28015539412660242874724661", + "swapFee": "16809323647596145724834" }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], - "mAssetQty": "3502923377571130423392051", - "swapFee": "2101754026542678254035" + "mAssetQty": "35029233775711307446377589", + "swapFee": "21017540265426784467826" }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], - "mAssetQty": "4205556642026964606593822", - "swapFee": "2523333985216178763956" + "mAssetQty": "42055566420269644406212496", + "swapFee": "25233339852161786643727" }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], - "mAssetQty": "4911740252433022541656772", - "swapFee": "2947044151459813524994" + "mAssetQty": "49117402524330220419043743", + "swapFee": "29470441514598132251426" }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "hardLimitError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "5005000000000000031457280", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -5874,7 +5874,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -5883,8 +5883,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -5892,8 +5892,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -5901,8 +5901,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -5910,8 +5910,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -5919,86 +5919,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -6008,7 +6008,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -6017,8 +6017,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -6026,8 +6026,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -6035,8 +6035,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -6044,8 +6044,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -6053,86 +6053,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true }, @@ -6142,7 +6142,7 @@ "3333333333333", "3333333333333" ], - "mAssetQty": "10622586151486", + "mAssetQty": "10622586151483", "swapFee": "6373551690" }, { @@ -6151,8 +6151,8 @@ "333333333333333", "333333333333333" ], - "mAssetQty": "1062258615187624", - "swapFee": "637355169112" + "mAssetQty": "1062258615152359", + "swapFee": "637355169091" }, { "bAssetQtys": [ @@ -6160,8 +6160,8 @@ "33333333333333332", "33333333333333332" ], - "mAssetQty": "106225861906681338", - "swapFee": "63735517144008" + "mAssetQty": "106225861554027957", + "swapFee": "63735516932416" }, { "bAssetQtys": [ @@ -6169,8 +6169,8 @@ "333333333333333312", "333333333333333312" ], - "mAssetQty": "1062258654332173770", - "swapFee": "637355192599304" + "mAssetQty": "1062258619066813370", + "swapFee": "637355171440088" }, { "bAssetQtys": [ @@ -6178,8 +6178,8 @@ "3333333333333333504", "3333333333333333504" ], - "mAssetQty": "10622590069880050646", - "swapFee": "6373554041928030" + "mAssetQty": "10622586543321738950", + "swapFee": "6373551925993043" }, { "bAssetQtys": [ @@ -6187,86 +6187,86 @@ "33333333333333336064", "33333333333333336064" ], - "mAssetQty": "106226253376904511525", - "swapFee": "63735752026142706" + "mAssetQty": "106225900698800509889", + "swapFee": "63735540419280305" }, { "bAssetQtys": [ - "233066666666666672259072", - "233066666666666672259072", - "233066666666666672259072" + "2330666666666666387046400", + "2330666666666666387046400", + "2330666666666666387046400" ], "hardLimitError": true }, { "bAssetQtys": [ - "466133333333333344518144", - "466133333333333344518144", - "466133333333333344518144" + "4661333333333332774092800", + "4661333333333332774092800", + "4661333333333332774092800" ], "hardLimitError": true }, { "bAssetQtys": [ - "699200000000000050331648", - "699200000000000050331648", - "699200000000000050331648" + "6992000000000000234881024", + "6992000000000000234881024", + "6992000000000000234881024" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "932266666666666689036288", - "932266666666666689036288", - "932266666666666689036288" + "9322666666666665548185600", + "9322666666666665548185600", + "9322666666666665548185600" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1165333333333333193523200", - "1165333333333333193523200", - "1165333333333333193523200" + "11653333333333333008973824", + "11653333333333333008973824", + "11653333333333333008973824" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1398400000000000100663296", - "1398400000000000100663296", - "1398400000000000100663296" + "13984000000000000469762048", + "13984000000000000469762048", + "13984000000000000469762048" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1631466666666666739367936", - "1631466666666666739367936", - "1631466666666666739367936" + "16314666666666665783066624", + "16314666666666665783066624", + "16314666666666665783066624" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "1864533333333333378072576", - "1864533333333333378072576", - "1864533333333333378072576" + "18645333333333331096371200", + "18645333333333331096371200", + "18645333333333331096371200" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2097600000000000016777216", - "2097600000000000016777216", - "2097600000000000016777216" + "20975999999999998557159424", + "20975999999999998557159424", + "20975999999999998557159424" ], "insufficientLiquidityError": true }, { "bAssetQtys": [ - "2330666666666666387046400", - "2330666666666666387046400", - "2330666666666666387046400" + "23306666666666666017947648", + "23306666666666666017947648", + "23306666666666666017947648" ], "insufficientLiquidityError": true } diff --git a/test-utils/validator-data/masset/redeemMassetTestData.json b/test-utils/validator-data/masset/redeemMassetTestData.json index fba1a059..b419e73e 100644 --- a/test-utils/validator-data/masset/redeemMassetTestData.json +++ b/test-utils/validator-data/masset/redeemMassetTestData.json @@ -1,10 +1,10 @@ [ { - "reserve0": "5503000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "5005000000000000031457280", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -30,128 +30,128 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "55365125910640290", + "55365125910640291", "5035479832505080", - "40208381919293818" + "40208381919293817" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "553651259106402914", + "553651259106402926", "50354798325050818", - "402083819192938196" + "402083819192938184" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "5536512591064029155", - "503547983250508193", - "4020838191929381969" + "5536512591064029271", + "503547983250508194", + "4020838191929381853" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "55365125910640291565", - "5035479832505081941", - "40208381919293819699" + "55365125910640292719", + "5035479832505081951", + "40208381919293818539" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "387112960367196946497444", - "35208074988875535475552", - "281137006379702407582180" + "3871129603671969397093860", + "352080749888755341965919", + "2811370063797023886801253" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "774225920734393892994889", - "70416149977751070951106", - "562274012759404815164362" + "7742259207343938794187721", + "704161499777510683931839", + "5622740127594047773602507" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1161338881101590765182520", - "105624224966626599668153", - "843411019139107168779767" + "11613388811015907002324556", + "1056242249666265917761653", + "8434110191391070796935334" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1548451841468787785989780", - "140832299955502141902213", - "1124548025518809630328725" + "15484518414687877588375442", + "1408322999555021367863680", + "11245480255188095547205014" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1935564801835984658177411", - "176040374944377670619260", - "1405685031898511983944130" + "19355648018359845796512278", + "1760403749443776601693494", + "14056850318985118570537841" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "2322677762203181530365042", - "211248449933253199336307", - "1686822038278214337559535" + "23226777622031814004649113", + "2112484499332531835523308", + "16868220382782141593870668" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "2709790722570378402552673", - "246456524922128728053354", - "1967959044657916691174940" + "27097907225703786968614051", + "2464565249221287501897547", + "19679590446579168071077203" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "3096903682937575571979561", - "281664599911004283804427", - "2249096051037619260657451" + "30969036829375755176750886", + "2816645999110042735727361", + "22490960510376191094410030" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "3484016643304772146927935", - "316872674899879785487448", - "2530233057417321398405750" + "34840166433047723384887721", + "3168726748998797969557175", + "25302330574173214117742857" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "3871129603671969316354823", - "352080749888755341238521", - "2811370063797023967888261" + "38711296036719691593024557", + "3520807498887553203386990", + "28113700637970237141075684" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -174,128 +174,128 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "55365125910640290", + "55365125910640291", "5035479832505080", - "40208381919293818" + "40208381919293817" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "553651259106402914", + "553651259106402926", "50354798325050818", - "402083819192938196" + "402083819192938184" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "5536512591064029155", - "503547983250508193", - "4020838191929381969" + "5536512591064029271", + "503547983250508194", + "4020838191929381853" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "55365125910640291565", - "5035479832505081941", - "40208381919293819699" + "55365125910640292719", + "5035479832505081951", + "40208381919293818539" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "387112960367196946497444", - "35208074988875535475552", - "281137006379702407582180" + "3871129603671969397093860", + "352080749888755341965919", + "2811370063797023886801253" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "774225920734393892994889", - "70416149977751070951106", - "562274012759404815164362" + "7742259207343938794187721", + "704161499777510683931839", + "5622740127594047773602507" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1161338881101590765182520", - "105624224966626599668153", - "843411019139107168779767" + "11613388811015907002324556", + "1056242249666265917761653", + "8434110191391070796935334" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1548451841468787785989780", - "140832299955502141902213", - "1124548025518809630328725" + "15484518414687877588375442", + "1408322999555021367863680", + "11245480255188095547205014" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1935564801835984658177411", - "176040374944377670619260", - "1405685031898511983944130" + "19355648018359845796512278", + "1760403749443776601693494", + "14056850318985118570537841" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "2322677762203181530365042", - "211248449933253199336307", - "1686822038278214337559535" + "23226777622031814004649113", + "2112484499332531835523308", + "16868220382782141593870668" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "2709790722570378402552673", - "246456524922128728053354", - "1967959044657916691174940" + "27097907225703786968614051", + "2464565249221287501897547", + "19679590446579168071077203" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "3096903682937575571979561", - "281664599911004283804427", - "2249096051037619260657451" + "30969036829375755176750886", + "2816645999110042735727361", + "22490960510376191094410030" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "3484016643304772146927935", - "316872674899879785487448", - "2530233057417321398405750" + "34840166433047723384887721", + "3168726748998797969557175", + "25302330574173214117742857" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "3871129603671969316354823", - "352080749888755341238521", - "2811370063797023967888261" + "38711296036719691593024557", + "3520807498887553203386990", + "28113700637970237141075684" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -318,137 +318,137 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "55365125910640290", + "55365125910640291", "5035479832505080", - "40208381919293818" + "40208381919293817" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "553651259106402914", + "553651259106402926", "50354798325050818", - "402083819192938196" + "402083819192938184" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "5536512591064029155", - "503547983250508193", - "4020838191929381969" + "5536512591064029271", + "503547983250508194", + "4020838191929381853" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "55365125910640291565", - "5035479832505081941", - "40208381919293819699" + "55365125910640292719", + "5035479832505081951", + "40208381919293818539" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "387112960367196946497444", - "35208074988875535475552", - "281137006379702407582180" + "3871129603671969397093860", + "352080749888755341965919", + "2811370063797023886801253" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "774225920734393892994889", - "70416149977751070951106", - "562274012759404815164362" + "7742259207343938794187721", + "704161499777510683931839", + "5622740127594047773602507" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1161338881101590765182520", - "105624224966626599668153", - "843411019139107168779767" + "11613388811015907002324556", + "1056242249666265917761653", + "8434110191391070796935334" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1548451841468787785989780", - "140832299955502141902213", - "1124548025518809630328725" + "15484518414687877588375442", + "1408322999555021367863680", + "11245480255188095547205014" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1935564801835984658177411", - "176040374944377670619260", - "1405685031898511983944130" + "19355648018359845796512278", + "1760403749443776601693494", + "14056850318985118570537841" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "2322677762203181530365042", - "211248449933253199336307", - "1686822038278214337559535" + "23226777622031814004649113", + "2112484499332531835523308", + "16868220382782141593870668" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "2709790722570378402552673", - "246456524922128728053354", - "1967959044657916691174940" + "27097907225703786968614051", + "2464565249221287501897547", + "19679590446579168071077203" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "3096903682937575571979561", - "281664599911004283804427", - "2249096051037619260657451" + "30969036829375755176750886", + "2816645999110042735727361", + "22490960510376191094410030" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "3484016643304772146927935", - "316872674899879785487448", - "2530233057417321398405750" + "34840166433047723384887721", + "3168726748998797969557175", + "25302330574173214117742857" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "3871129603671969316354823", - "352080749888755341238521", - "2811370063797023967888261" + "38711296036719691593024557", + "3520807498887553203386990", + "28113700637970237141075684" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "5005000000000000031457280", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -474,128 +474,128 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "20274073724658181", + "20274073724658180", "5055891329940916", - "75686844734430211" + "75686844734430212" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "202740737246581828", - "50558913299409169", - "756868447344302121" + "202740737246581812", + "50558913299409171", + "756868447344302137" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "2027407372465818297", - "505589132994091707", - "7568684473443021227" + "2027407372465818136", + "505589132994091719", + "7568684473443021381" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "20274073724658182988", - "5055891329940917082", - "75686844734430212281" + "20274073724658181376", + "5055891329940917201", + "75686844734430213822" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "141756323482810025669551", - "35350792178946894792032", - "529202418383136082376241" + "1417563234828100089555120", + "353507921789468942666430", + "5292024183831360728291837" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "283512646965620051339103", - "70701584357893789584065", - "1058404836766272164752484" + "2835126469656200179110242", + "707015843578937885332862", + "10584048367662721456583675" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "425268970448430049797253", - "106052376536840677590196", - "1587607255149408145543562" + "4252689704484299833282945", + "1060523765368406719424854", + "15876072551494080559512899" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "567025293931240102678207", - "141403168715787579168132", - "2116809673532544329504969" + "5670252939312400358220485", + "1414031687157875770665725", + "21168096735325442913167351" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "708781617414050101136357", - "176753960894734467174262", - "2646012091915680310296047" + "7087816174140500012393188", + "1767539608947344604757717", + "26460120919156802016096575" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "850537940896860099594508", - "212104753073681355180393", - "3175214510298816291087126" + "8505379408968599666565892", + "2121047530736813438849709", + "31752145102988161119025798" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "992294264379670098052659", - "247455545252628243186524", - "3704416928681952271878205" + "9922942643796701062268267", + "2474555452526282707239460", + "37044169286819526723405479" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "1134050587862480205356415", - "282806337431575158336265", - "4233619347065088659009938" + "11340505878624800716440971", + "2828063374315751541331452", + "42336193470650885826334703" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "1275806911345290094968961", - "318157129610522019198786", - "4762821765448224233460363" + "12758069113452900370613675", + "3181571296105220375423444", + "47628217654482244929263927" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "1417563234828100202272716", - "353507921789468934348526", - "5292024183831360620592095" + "14175632348281000024786378", + "3535079217894689209515436", + "52920241838313604032193151" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -618,128 +618,128 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "20274073724658181", + "20274073724658180", "5055891329940916", - "75686844734430211" + "75686844734430212" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "202740737246581828", - "50558913299409169", - "756868447344302121" + "202740737246581812", + "50558913299409171", + "756868447344302137" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "2027407372465818297", - "505589132994091707", - "7568684473443021227" + "2027407372465818136", + "505589132994091719", + "7568684473443021381" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "20274073724658182988", - "5055891329940917082", - "75686844734430212281" + "20274073724658181376", + "5055891329940917201", + "75686844734430213822" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "141756323482810025669551", - "35350792178946894792032", - "529202418383136082376241" + "1417563234828100089555120", + "353507921789468942666430", + "5292024183831360728291837" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "283512646965620051339103", - "70701584357893789584065", - "1058404836766272164752484" + "2835126469656200179110242", + "707015843578937885332862", + "10584048367662721456583675" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "425268970448430049797253", - "106052376536840677590196", - "1587607255149408145543562" + "4252689704484299833282945", + "1060523765368406719424854", + "15876072551494080559512899" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "567025293931240102678207", - "141403168715787579168132", - "2116809673532544329504969" + "5670252939312400358220485", + "1414031687157875770665725", + "21168096735325442913167351" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "708781617414050101136357", - "176753960894734467174262", - "2646012091915680310296047" + "7087816174140500012393188", + "1767539608947344604757717", + "26460120919156802016096575" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "850537940896860099594508", - "212104753073681355180393", - "3175214510298816291087126" + "8505379408968599666565892", + "2121047530736813438849709", + "31752145102988161119025798" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "992294264379670098052659", - "247455545252628243186524", - "3704416928681952271878205" + "9922942643796701062268267", + "2474555452526282707239460", + "37044169286819526723405479" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "1134050587862480205356415", - "282806337431575158336265", - "4233619347065088659009938" + "11340505878624800716440971", + "2828063374315751541331452", + "42336193470650885826334703" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "1275806911345290094968961", - "318157129610522019198786", - "4762821765448224233460363" + "12758069113452900370613675", + "3181571296105220375423444", + "47628217654482244929263927" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "1417563234828100202272716", - "353507921789468934348526", - "5292024183831360620592095" + "14175632348281000024786378", + "3535079217894689209515436", + "52920241838313604032193151" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -762,137 +762,137 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "20274073724658181", + "20274073724658180", "5055891329940916", - "75686844734430211" + "75686844734430212" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "202740737246581828", - "50558913299409169", - "756868447344302121" + "202740737246581812", + "50558913299409171", + "756868447344302137" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "2027407372465818297", - "505589132994091707", - "7568684473443021227" + "2027407372465818136", + "505589132994091719", + "7568684473443021381" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "20274073724658182988", - "5055891329940917082", - "75686844734430212281" + "20274073724658181376", + "5055891329940917201", + "75686844734430213822" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "141756323482810025669551", - "35350792178946894792032", - "529202418383136082376241" + "1417563234828100089555120", + "353507921789468942666430", + "5292024183831360728291837" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "283512646965620051339103", - "70701584357893789584065", - "1058404836766272164752484" + "2835126469656200179110242", + "707015843578937885332862", + "10584048367662721456583675" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "425268970448430049797253", - "106052376536840677590196", - "1587607255149408145543562" + "4252689704484299833282945", + "1060523765368406719424854", + "15876072551494080559512899" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "567025293931240102678207", - "141403168715787579168132", - "2116809673532544329504969" + "5670252939312400358220485", + "1414031687157875770665725", + "21168096735325442913167351" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "708781617414050101136357", - "176753960894734467174262", - "2646012091915680310296047" + "7087816174140500012393188", + "1767539608947344604757717", + "26460120919156802016096575" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "850537940896860099594508", - "212104753073681355180393", - "3175214510298816291087126" + "8505379408968599666565892", + "2121047530736813438849709", + "31752145102988161119025798" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "992294264379670098052659", - "247455545252628243186524", - "3704416928681952271878205" + "9922942643796701062268267", + "2474555452526282707239460", + "37044169286819526723405479" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "1134050587862480205356415", - "282806337431575158336265", - "4233619347065088659009938" + "11340505878624800716440971", + "2828063374315751541331452", + "42336193470650885826334703" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "1275806911345290094968961", - "318157129610522019198786", - "4762821765448224233460363" + "12758069113452900370613675", + "3181571296105220375423444", + "47628217654482244929263927" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "1417563234828100202272716", - "353507921789468934348526", - "5292024183831360620592095" + "14175632348281000024786378", + "3535079217894689209515436", + "52920241838313604032193151" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "5503000000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "39964999999999992615927808", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -918,8 +918,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "55365125910640290", - "40208381919293818", + "55365125910640291", + "40208381919293817", "5035479832505080" ], "redemptionFee": "30000000000000" @@ -927,8 +927,8 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "553651259106402914", - "402083819192938196", + "553651259106402926", + "402083819192938184", "50354798325050818" ], "redemptionFee": "300000000000000" @@ -936,110 +936,110 @@ { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "5536512591064029155", - "4020838191929381969", - "503547983250508193" + "5536512591064029271", + "4020838191929381853", + "503547983250508194" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "55365125910640291565", - "40208381919293819699", - "5035479832505081941" + "55365125910640292719", + "40208381919293818539", + "5035479832505081951" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "387112960367196946497444", - "281137006379702407582180", - "35208074988875535475552" + "3871129603671969397093860", + "2811370063797023886801253", + "352080749888755341965919" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "774225920734393892994889", - "562274012759404815164362", - "70416149977751070951106" + "7742259207343938794187721", + "5622740127594047773602507", + "704161499777510683931839" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1161338881101590765182520", - "843411019139107168779767", - "105624224966626599668153" + "11613388811015907002324556", + "8434110191391070796935334", + "1056242249666265917761653" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1548451841468787785989780", - "1124548025518809630328725", - "140832299955502141902213" + "15484518414687877588375442", + "11245480255188095547205014", + "1408322999555021367863680" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1935564801835984658177411", - "1405685031898511983944130", - "176040374944377670619260" + "19355648018359845796512278", + "14056850318985118570537841", + "1760403749443776601693494" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "2322677762203181530365042", - "1686822038278214337559535", - "211248449933253199336307" + "23226777622031814004649113", + "16868220382782141593870668", + "2112484499332531835523308" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "2709790722570378402552673", - "1967959044657916691174940", - "246456524922128728053354" + "27097907225703786968614051", + "19679590446579168071077203", + "2464565249221287501897547" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "3096903682937575571979561", - "2249096051037619260657451", - "281664599911004283804427" + "30969036829375755176750886", + "22490960510376191094410030", + "2816645999110042735727361" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "3484016643304772146927935", - "2530233057417321398405750", - "316872674899879785487448" + "34840166433047723384887721", + "25302330574173214117742857", + "3168726748998797969557175" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "3871129603671969316354823", - "2811370063797023967888261", - "352080749888755341238521" + "38711296036719691593024557", + "28113700637970237141075684", + "3520807498887553203386990" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -1062,8 +1062,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "55365125910640290", - "40208381919293818", + "55365125910640291", + "40208381919293817", "5035479832505080" ], "redemptionFee": "30000000000000" @@ -1071,8 +1071,8 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "553651259106402914", - "402083819192938196", + "553651259106402926", + "402083819192938184", "50354798325050818" ], "redemptionFee": "300000000000000" @@ -1080,110 +1080,110 @@ { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "5536512591064029155", - "4020838191929381969", - "503547983250508193" + "5536512591064029271", + "4020838191929381853", + "503547983250508194" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "55365125910640291565", - "40208381919293819699", - "5035479832505081941" + "55365125910640292719", + "40208381919293818539", + "5035479832505081951" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "387112960367196946497444", - "281137006379702407582180", - "35208074988875535475552" + "3871129603671969397093860", + "2811370063797023886801253", + "352080749888755341965919" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "774225920734393892994889", - "562274012759404815164362", - "70416149977751070951106" + "7742259207343938794187721", + "5622740127594047773602507", + "704161499777510683931839" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1161338881101590765182520", - "843411019139107168779767", - "105624224966626599668153" + "11613388811015907002324556", + "8434110191391070796935334", + "1056242249666265917761653" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1548451841468787785989780", - "1124548025518809630328725", - "140832299955502141902213" + "15484518414687877588375442", + "11245480255188095547205014", + "1408322999555021367863680" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1935564801835984658177411", - "1405685031898511983944130", - "176040374944377670619260" + "19355648018359845796512278", + "14056850318985118570537841", + "1760403749443776601693494" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "2322677762203181530365042", - "1686822038278214337559535", - "211248449933253199336307" + "23226777622031814004649113", + "16868220382782141593870668", + "2112484499332531835523308" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "2709790722570378402552673", - "1967959044657916691174940", - "246456524922128728053354" + "27097907225703786968614051", + "19679590446579168071077203", + "2464565249221287501897547" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "3096903682937575571979561", - "2249096051037619260657451", - "281664599911004283804427" + "30969036829375755176750886", + "22490960510376191094410030", + "2816645999110042735727361" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "3484016643304772146927935", - "2530233057417321398405750", - "316872674899879785487448" + "34840166433047723384887721", + "25302330574173214117742857", + "3168726748998797969557175" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "3871129603671969316354823", - "2811370063797023967888261", - "352080749888755341238521" + "38711296036719691593024557", + "28113700637970237141075684", + "3520807498887553203386990" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -1206,8 +1206,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "55365125910640290", - "40208381919293818", + "55365125910640291", + "40208381919293817", "5035479832505080" ], "redemptionFee": "30000000000000" @@ -1215,8 +1215,8 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "553651259106402914", - "402083819192938196", + "553651259106402926", + "402083819192938184", "50354798325050818" ], "redemptionFee": "300000000000000" @@ -1224,119 +1224,119 @@ { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "5536512591064029155", - "4020838191929381969", - "503547983250508193" + "5536512591064029271", + "4020838191929381853", + "503547983250508194" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "55365125910640291565", - "40208381919293819699", - "5035479832505081941" + "55365125910640292719", + "40208381919293818539", + "5035479832505081951" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "387112960367196946497444", - "281137006379702407582180", - "35208074988875535475552" + "3871129603671969397093860", + "2811370063797023886801253", + "352080749888755341965919" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "774225920734393892994889", - "562274012759404815164362", - "70416149977751070951106" + "7742259207343938794187721", + "5622740127594047773602507", + "704161499777510683931839" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1161338881101590765182520", - "843411019139107168779767", - "105624224966626599668153" + "11613388811015907002324556", + "8434110191391070796935334", + "1056242249666265917761653" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1548451841468787785989780", - "1124548025518809630328725", - "140832299955502141902213" + "15484518414687877588375442", + "11245480255188095547205014", + "1408322999555021367863680" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1935564801835984658177411", - "1405685031898511983944130", - "176040374944377670619260" + "19355648018359845796512278", + "14056850318985118570537841", + "1760403749443776601693494" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "2322677762203181530365042", - "1686822038278214337559535", - "211248449933253199336307" + "23226777622031814004649113", + "16868220382782141593870668", + "2112484499332531835523308" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "2709790722570378402552673", - "1967959044657916691174940", - "246456524922128728053354" + "27097907225703786968614051", + "19679590446579168071077203", + "2464565249221287501897547" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "3096903682937575571979561", - "2249096051037619260657451", - "281664599911004283804427" + "30969036829375755176750886", + "22490960510376191094410030", + "2816645999110042735727361" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "3484016643304772146927935", - "2530233057417321398405750", - "316872674899879785487448" + "34840166433047723384887721", + "25302330574173214117742857", + "3168726748998797969557175" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "3871129603671969316354823", - "2811370063797023967888261", - "352080749888755341238521" + "38711296036719691593024557", + "28113700637970237141075684", + "3520807498887553203386990" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "2007000000000000960000000", - "reserve1": "3996499999999999360000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "20070000000000010942939136", + "reserve1": "39964999999999992615927808", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -1362,7 +1362,7 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "20072556965831529", + "20072556965831530", "39970091636245967", "39970091636245967" ], @@ -1371,119 +1371,119 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "200725569658315301", - "399700916362459686", - "399700916362459686" + "200725569658315315", + "399700916362459679", + "399700916362459679" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "2007255696583153021", - "3997009163624596876", - "3997009163624596876" + "2007255696583153168", + "3997009163624596802", + "3997009163624596802" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "20072556965831530227", - "39970091636245968777", - "39970091636245968777" + "20072556965831531693", + "39970091636245968038", + "39970091636245968038" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "140347318305094069457237", - "279470880720631833817400", - "279470880720631833817400" + "1403473183050940743213162", + "2794708807206318179214667", + "2794708807206318179214667" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "280694636610188138914476", - "558941761441263667634802", - "558941761441263667634802" + "2806946366101881486426325", + "5589417614412636358429335", + "5589417614412636358429335" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "421041954915282181430785", - "838412642161895447805254", - "838412642161895447805254" + "4210419549152821798584610", + "8384126421618953679292821", + "8384126421618953679292821" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "561389273220376277828953", - "1117883522882527335269605", - "1117883522882527335269605" + "5613892732203762972852651", + "11178835228825272716858670", + "11178835228825272716858670" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "701736591525470320345262", - "1397354403603159115440058", - "1397354403603159115440058" + "7017365915254703285010936", + "13973544036031590037722156", + "13973544036031590037722156" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "842083909830564362861571", - "1676825284323790895610510", - "1676825284323790895610510" + "8420839098305643597169221", + "16768252843237907358585642", + "16768252843237907358585642" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "982431228135658405377879", - "1956296165044422675780963", - "1956296165044422675780963" + "9824312281356585633547020", + "19562961650444228112853856", + "19562961650444228112853856" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "1122778546440752555657908", - "2235767045765054670539212", - "2235767045765054670539212" + "11227785464407525945705304", + "22357670457650545433717342", + "22357670457650545433717342" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "1263125864745846490410497", - "2515237926485686236121869", - "2515237926485686236121869" + "12631258647458466257863589", + "25152379264856862754580828", + "25152379264856862754580828" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "1403473183050940640690525", - "2794708807206318230880117", - "2794708807206318230880117" + "14034731830509406570021874", + "27947088072063180075444314", + "27947088072063180075444314" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -1506,7 +1506,7 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "20072556965831529", + "20072556965831530", "39970091636245967", "39970091636245967" ], @@ -1515,119 +1515,119 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "200725569658315301", - "399700916362459686", - "399700916362459686" + "200725569658315315", + "399700916362459679", + "399700916362459679" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "2007255696583153021", - "3997009163624596876", - "3997009163624596876" + "2007255696583153168", + "3997009163624596802", + "3997009163624596802" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "20072556965831530227", - "39970091636245968777", - "39970091636245968777" + "20072556965831531693", + "39970091636245968038", + "39970091636245968038" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "140347318305094069457237", - "279470880720631833817400", - "279470880720631833817400" + "1403473183050940743213162", + "2794708807206318179214667", + "2794708807206318179214667" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "280694636610188138914476", - "558941761441263667634802", - "558941761441263667634802" + "2806946366101881486426325", + "5589417614412636358429335", + "5589417614412636358429335" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "421041954915282181430785", - "838412642161895447805254", - "838412642161895447805254" + "4210419549152821798584610", + "8384126421618953679292821", + "8384126421618953679292821" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "561389273220376277828953", - "1117883522882527335269605", - "1117883522882527335269605" + "5613892732203762972852651", + "11178835228825272716858670", + "11178835228825272716858670" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "701736591525470320345262", - "1397354403603159115440058", - "1397354403603159115440058" + "7017365915254703285010936", + "13973544036031590037722156", + "13973544036031590037722156" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "842083909830564362861571", - "1676825284323790895610510", - "1676825284323790895610510" + "8420839098305643597169221", + "16768252843237907358585642", + "16768252843237907358585642" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "982431228135658405377879", - "1956296165044422675780963", - "1956296165044422675780963" + "9824312281356585633547020", + "19562961650444228112853856", + "19562961650444228112853856" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "1122778546440752555657908", - "2235767045765054670539212", - "2235767045765054670539212" + "11227785464407525945705304", + "22357670457650545433717342", + "22357670457650545433717342" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "1263125864745846490410497", - "2515237926485686236121869", - "2515237926485686236121869" + "12631258647458466257863589", + "25152379264856862754580828", + "25152379264856862754580828" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "1403473183050940640690525", - "2794708807206318230880117", - "2794708807206318230880117" + "14034731830509406570021874", + "27947088072063180075444314", + "27947088072063180075444314" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -1650,7 +1650,7 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "20072556965831529", + "20072556965831530", "39970091636245967", "39970091636245967" ], @@ -1659,128 +1659,128 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "200725569658315301", - "399700916362459686", - "399700916362459686" + "200725569658315315", + "399700916362459679", + "399700916362459679" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "2007255696583153021", - "3997009163624596876", - "3997009163624596876" + "2007255696583153168", + "3997009163624596802", + "3997009163624596802" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "20072556965831530227", - "39970091636245968777", - "39970091636245968777" + "20072556965831531693", + "39970091636245968038", + "39970091636245968038" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "140347318305094069457237", - "279470880720631833817400", - "279470880720631833817400" + "1403473183050940743213162", + "2794708807206318179214667", + "2794708807206318179214667" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "280694636610188138914476", - "558941761441263667634802", - "558941761441263667634802" + "2806946366101881486426325", + "5589417614412636358429335", + "5589417614412636358429335" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "421041954915282181430785", - "838412642161895447805254", - "838412642161895447805254" + "4210419549152821798584610", + "8384126421618953679292821", + "8384126421618953679292821" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "561389273220376277828953", - "1117883522882527335269605", - "1117883522882527335269605" + "5613892732203762972852651", + "11178835228825272716858670", + "11178835228825272716858670" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "701736591525470320345262", - "1397354403603159115440058", - "1397354403603159115440058" + "7017365915254703285010936", + "13973544036031590037722156", + "13973544036031590037722156" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "842083909830564362861571", - "1676825284323790895610510", - "1676825284323790895610510" + "8420839098305643597169221", + "16768252843237907358585642", + "16768252843237907358585642" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "982431228135658405377879", - "1956296165044422675780963", - "1956296165044422675780963" + "9824312281356585633547020", + "19562961650444228112853856", + "19562961650444228112853856" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "1122778546440752555657908", - "2235767045765054670539212", - "2235767045765054670539212" + "11227785464407525945705304", + "22357670457650545433717342", + "22357670457650545433717342" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "1263125864745846490410497", - "2515237926485686236121869", - "2515237926485686236121869" + "12631258647458466257863589", + "25152379264856862754580828", + "25152379264856862754580828" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "1403473183050940640690525", - "2794708807206318230880117", - "2794708807206318230880117" + "14034731830509406570021874", + "27947088072063180075444314", + "27947088072063180075444314" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "74925000000000000232783872", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -1806,8 +1806,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "20274073724658181", - "75686844734430211", + "20274073724658180", + "75686844734430212", "5055891329940916" ], "redemptionFee": "30000000000000" @@ -1815,119 +1815,119 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "202740737246581828", - "756868447344302121", - "50558913299409169" + "202740737246581812", + "756868447344302137", + "50558913299409171" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "2027407372465818297", - "7568684473443021227", - "505589132994091707" + "2027407372465818136", + "7568684473443021381", + "505589132994091719" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "20274073724658182988", - "75686844734430212281", - "5055891329940917082" + "20274073724658181376", + "75686844734430213822", + "5055891329940917201" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "141756323482810025669551", - "529202418383136082376241", - "35350792178946894792032" + "1417563234828100089555120", + "5292024183831360728291837", + "353507921789468942666430" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "283512646965620051339103", - "1058404836766272164752484", - "70701584357893789584065" + "2835126469656200179110242", + "10584048367662721456583675", + "707015843578937885332862" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "425268970448430049797253", - "1587607255149408145543562", - "106052376536840677590196" + "4252689704484299833282945", + "15876072551494080559512899", + "1060523765368406719424854" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "567025293931240102678207", - "2116809673532544329504969", - "141403168715787579168132" + "5670252939312400358220485", + "21168096735325442913167351", + "1414031687157875770665725" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "708781617414050101136357", - "2646012091915680310296047", - "176753960894734467174262" + "7087816174140500012393188", + "26460120919156802016096575", + "1767539608947344604757717" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "850537940896860099594508", - "3175214510298816291087126", - "212104753073681355180393" + "8505379408968599666565892", + "31752145102988161119025798", + "2121047530736813438849709" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "992294264379670098052659", - "3704416928681952271878205", - "247455545252628243186524" + "9922942643796701062268267", + "37044169286819526723405479", + "2474555452526282707239460" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "1134050587862480205356415", - "4233619347065088659009938", - "282806337431575158336265" + "11340505878624800716440971", + "42336193470650885826334703", + "2828063374315751541331452" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "1275806911345290094968961", - "4762821765448224233460363", - "318157129610522019198786" + "12758069113452900370613675", + "47628217654482244929263927", + "3181571296105220375423444" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "1417563234828100202272716", - "5292024183831360620592095", - "353507921789468934348526" + "14175632348281000024786378", + "52920241838313604032193151", + "3535079217894689209515436" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -1950,8 +1950,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "20274073724658181", - "75686844734430211", + "20274073724658180", + "75686844734430212", "5055891329940916" ], "redemptionFee": "30000000000000" @@ -1959,119 +1959,119 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "202740737246581828", - "756868447344302121", - "50558913299409169" + "202740737246581812", + "756868447344302137", + "50558913299409171" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "2027407372465818297", - "7568684473443021227", - "505589132994091707" + "2027407372465818136", + "7568684473443021381", + "505589132994091719" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "20274073724658182988", - "75686844734430212281", - "5055891329940917082" + "20274073724658181376", + "75686844734430213822", + "5055891329940917201" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "141756323482810025669551", - "529202418383136082376241", - "35350792178946894792032" + "1417563234828100089555120", + "5292024183831360728291837", + "353507921789468942666430" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "283512646965620051339103", - "1058404836766272164752484", - "70701584357893789584065" + "2835126469656200179110242", + "10584048367662721456583675", + "707015843578937885332862" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "425268970448430049797253", - "1587607255149408145543562", - "106052376536840677590196" + "4252689704484299833282945", + "15876072551494080559512899", + "1060523765368406719424854" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "567025293931240102678207", - "2116809673532544329504969", - "141403168715787579168132" + "5670252939312400358220485", + "21168096735325442913167351", + "1414031687157875770665725" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "708781617414050101136357", - "2646012091915680310296047", - "176753960894734467174262" + "7087816174140500012393188", + "26460120919156802016096575", + "1767539608947344604757717" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "850537940896860099594508", - "3175214510298816291087126", - "212104753073681355180393" + "8505379408968599666565892", + "31752145102988161119025798", + "2121047530736813438849709" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "992294264379670098052659", - "3704416928681952271878205", - "247455545252628243186524" + "9922942643796701062268267", + "37044169286819526723405479", + "2474555452526282707239460" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "1134050587862480205356415", - "4233619347065088659009938", - "282806337431575158336265" + "11340505878624800716440971", + "42336193470650885826334703", + "2828063374315751541331452" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "1275806911345290094968961", - "4762821765448224233460363", - "318157129610522019198786" + "12758069113452900370613675", + "47628217654482244929263927", + "3181571296105220375423444" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "1417563234828100202272716", - "5292024183831360620592095", - "353507921789468934348526" + "14175632348281000024786378", + "52920241838313604032193151", + "3535079217894689209515436" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -2094,8 +2094,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "20274073724658181", - "75686844734430211", + "20274073724658180", + "75686844734430212", "5055891329940916" ], "redemptionFee": "30000000000000" @@ -2103,128 +2103,128 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "202740737246581828", - "756868447344302121", - "50558913299409169" + "202740737246581812", + "756868447344302137", + "50558913299409171" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "2027407372465818297", - "7568684473443021227", - "505589132994091707" + "2027407372465818136", + "7568684473443021381", + "505589132994091719" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "20274073724658182988", - "75686844734430212281", - "5055891329940917082" + "20274073724658181376", + "75686844734430213822", + "5055891329940917201" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "141756323482810025669551", - "529202418383136082376241", - "35350792178946894792032" + "1417563234828100089555120", + "5292024183831360728291837", + "353507921789468942666430" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "283512646965620051339103", - "1058404836766272164752484", - "70701584357893789584065" + "2835126469656200179110242", + "10584048367662721456583675", + "707015843578937885332862" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "425268970448430049797253", - "1587607255149408145543562", - "106052376536840677590196" + "4252689704484299833282945", + "15876072551494080559512899", + "1060523765368406719424854" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "567025293931240102678207", - "2116809673532544329504969", - "141403168715787579168132" + "5670252939312400358220485", + "21168096735325442913167351", + "1414031687157875770665725" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "708781617414050101136357", - "2646012091915680310296047", - "176753960894734467174262" + "7087816174140500012393188", + "26460120919156802016096575", + "1767539608947344604757717" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "850537940896860099594508", - "3175214510298816291087126", - "212104753073681355180393" + "8505379408968599666565892", + "31752145102988161119025798", + "2121047530736813438849709" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "992294264379670098052659", - "3704416928681952271878205", - "247455545252628243186524" + "9922942643796701062268267", + "37044169286819526723405479", + "2474555452526282707239460" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "1134050587862480205356415", - "4233619347065088659009938", - "282806337431575158336265" + "11340505878624800716440971", + "42336193470650885826334703", + "2828063374315751541331452" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "1275806911345290094968961", - "4762821765448224233460363", - "318157129610522019198786" + "12758069113452900370613675", + "47628217654482244929263927", + "3181571296105220375423444" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "1417563234828100202272716", - "5292024183831360620592095", - "353507921789468934348526" + "14175632348281000024786378", + "52920241838313604032193151", + "3535079217894689209515436" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "5503000000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "55030000000000001379926016", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -2251,8 +2251,8 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5035479832505080", - "55365125910640290", - "40208381919293818" + "55365125910640291", + "40208381919293817" ], "redemptionFee": "30000000000000" }, @@ -2260,118 +2260,118 @@ "mAssetQty": "1000000000000000000", "bAssetQtys": [ "50354798325050818", - "553651259106402914", - "402083819192938196" + "553651259106402926", + "402083819192938184" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "503547983250508193", - "5536512591064029155", - "4020838191929381969" + "503547983250508194", + "5536512591064029271", + "4020838191929381853" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5035479832505081941", - "55365125910640291565", - "40208381919293819699" + "5035479832505081951", + "55365125910640292719", + "40208381919293818539" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35208074988875535475552", - "387112960367196946497444", - "281137006379702407582180" + "352080749888755341965919", + "3871129603671969397093860", + "2811370063797023886801253" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70416149977751070951106", - "774225920734393892994889", - "562274012759404815164362" + "704161499777510683931839", + "7742259207343938794187721", + "5622740127594047773602507" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "105624224966626599668153", - "1161338881101590765182520", - "843411019139107168779767" + "1056242249666265917761653", + "11613388811015907002324556", + "8434110191391070796935334" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "140832299955502141902213", - "1548451841468787785989780", - "1124548025518809630328725" + "1408322999555021367863680", + "15484518414687877588375442", + "11245480255188095547205014" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176040374944377670619260", - "1935564801835984658177411", - "1405685031898511983944130" + "1760403749443776601693494", + "19355648018359845796512278", + "14056850318985118570537841" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "211248449933253199336307", - "2322677762203181530365042", - "1686822038278214337559535" + "2112484499332531835523308", + "23226777622031814004649113", + "16868220382782141593870668" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "246456524922128728053354", - "2709790722570378402552673", - "1967959044657916691174940" + "2464565249221287501897547", + "27097907225703786968614051", + "19679590446579168071077203" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "281664599911004283804427", - "3096903682937575571979561", - "2249096051037619260657451" + "2816645999110042735727361", + "30969036829375755176750886", + "22490960510376191094410030" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "316872674899879785487448", - "3484016643304772146927935", - "2530233057417321398405750" + "3168726748998797969557175", + "34840166433047723384887721", + "25302330574173214117742857" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "352080749888755341238521", - "3871129603671969316354823", - "2811370063797023967888261" + "3520807498887553203386990", + "38711296036719691593024557", + "28113700637970237141075684" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -2395,8 +2395,8 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5035479832505080", - "55365125910640290", - "40208381919293818" + "55365125910640291", + "40208381919293817" ], "redemptionFee": "30000000000000" }, @@ -2404,118 +2404,118 @@ "mAssetQty": "1000000000000000000", "bAssetQtys": [ "50354798325050818", - "553651259106402914", - "402083819192938196" + "553651259106402926", + "402083819192938184" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "503547983250508193", - "5536512591064029155", - "4020838191929381969" + "503547983250508194", + "5536512591064029271", + "4020838191929381853" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5035479832505081941", - "55365125910640291565", - "40208381919293819699" + "5035479832505081951", + "55365125910640292719", + "40208381919293818539" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35208074988875535475552", - "387112960367196946497444", - "281137006379702407582180" + "352080749888755341965919", + "3871129603671969397093860", + "2811370063797023886801253" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70416149977751070951106", - "774225920734393892994889", - "562274012759404815164362" + "704161499777510683931839", + "7742259207343938794187721", + "5622740127594047773602507" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "105624224966626599668153", - "1161338881101590765182520", - "843411019139107168779767" + "1056242249666265917761653", + "11613388811015907002324556", + "8434110191391070796935334" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "140832299955502141902213", - "1548451841468787785989780", - "1124548025518809630328725" + "1408322999555021367863680", + "15484518414687877588375442", + "11245480255188095547205014" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176040374944377670619260", - "1935564801835984658177411", - "1405685031898511983944130" + "1760403749443776601693494", + "19355648018359845796512278", + "14056850318985118570537841" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "211248449933253199336307", - "2322677762203181530365042", - "1686822038278214337559535" + "2112484499332531835523308", + "23226777622031814004649113", + "16868220382782141593870668" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "246456524922128728053354", - "2709790722570378402552673", - "1967959044657916691174940" + "2464565249221287501897547", + "27097907225703786968614051", + "19679590446579168071077203" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "281664599911004283804427", - "3096903682937575571979561", - "2249096051037619260657451" + "2816645999110042735727361", + "30969036829375755176750886", + "22490960510376191094410030" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "316872674899879785487448", - "3484016643304772146927935", - "2530233057417321398405750" + "3168726748998797969557175", + "34840166433047723384887721", + "25302330574173214117742857" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "352080749888755341238521", - "3871129603671969316354823", - "2811370063797023967888261" + "3520807498887553203386990", + "38711296036719691593024557", + "28113700637970237141075684" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -2539,8 +2539,8 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5035479832505080", - "55365125910640290", - "40208381919293818" + "55365125910640291", + "40208381919293817" ], "redemptionFee": "30000000000000" }, @@ -2548,127 +2548,127 @@ "mAssetQty": "1000000000000000000", "bAssetQtys": [ "50354798325050818", - "553651259106402914", - "402083819192938196" + "553651259106402926", + "402083819192938184" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "503547983250508193", - "5536512591064029155", - "4020838191929381969" + "503547983250508194", + "5536512591064029271", + "4020838191929381853" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5035479832505081941", - "55365125910640291565", - "40208381919293819699" + "5035479832505081951", + "55365125910640292719", + "40208381919293818539" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35208074988875535475552", - "387112960367196946497444", - "281137006379702407582180" + "352080749888755341965919", + "3871129603671969397093860", + "2811370063797023886801253" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70416149977751070951106", - "774225920734393892994889", - "562274012759404815164362" + "704161499777510683931839", + "7742259207343938794187721", + "5622740127594047773602507" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "105624224966626599668153", - "1161338881101590765182520", - "843411019139107168779767" + "1056242249666265917761653", + "11613388811015907002324556", + "8434110191391070796935334" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "140832299955502141902213", - "1548451841468787785989780", - "1124548025518809630328725" + "1408322999555021367863680", + "15484518414687877588375442", + "11245480255188095547205014" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176040374944377670619260", - "1935564801835984658177411", - "1405685031898511983944130" + "1760403749443776601693494", + "19355648018359845796512278", + "14056850318985118570537841" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "211248449933253199336307", - "2322677762203181530365042", - "1686822038278214337559535" + "2112484499332531835523308", + "23226777622031814004649113", + "16868220382782141593870668" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "246456524922128728053354", - "2709790722570378402552673", - "1967959044657916691174940" + "2464565249221287501897547", + "27097907225703786968614051", + "19679590446579168071077203" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "281664599911004283804427", - "3096903682937575571979561", - "2249096051037619260657451" + "2816645999110042735727361", + "30969036829375755176750886", + "22490960510376191094410030" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "316872674899879785487448", - "3484016643304772146927935", - "2530233057417321398405750" + "3168726748998797969557175", + "34840166433047723384887721", + "25302330574173214117742857" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "352080749888755341238521", - "3871129603671969316354823", - "2811370063797023967888261" + "3520807498887553203386990", + "38711296036719691593024557", + "28113700637970237141075684" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "20069999999999998058037248", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -2695,127 +2695,127 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5055891329940916", - "20274073724658181", - "75686844734430211" + "20274073724658180", + "75686844734430212" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "50558913299409169", - "202740737246581828", - "756868447344302121" + "50558913299409171", + "202740737246581812", + "756868447344302137" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "505589132994091707", - "2027407372465818297", - "7568684473443021227" + "505589132994091719", + "2027407372465818136", + "7568684473443021381" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5055891329940917082", - "20274073724658182988", - "75686844734430212281" + "5055891329940917201", + "20274073724658181376", + "75686844734430213822" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35350792178946894792032", - "141756323482810025669551", - "529202418383136082376241" + "353507921789468942666430", + "1417563234828100089555120", + "5292024183831360728291837" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70701584357893789584065", - "283512646965620051339103", - "1058404836766272164752484" + "707015843578937885332862", + "2835126469656200179110242", + "10584048367662721456583675" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "106052376536840677590196", - "425268970448430049797253", - "1587607255149408145543562" + "1060523765368406719424854", + "4252689704484299833282945", + "15876072551494080559512899" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "141403168715787579168132", - "567025293931240102678207", - "2116809673532544329504969" + "1414031687157875770665725", + "5670252939312400358220485", + "21168096735325442913167351" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176753960894734467174262", - "708781617414050101136357", - "2646012091915680310296047" + "1767539608947344604757717", + "7087816174140500012393188", + "26460120919156802016096575" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "212104753073681355180393", - "850537940896860099594508", - "3175214510298816291087126" + "2121047530736813438849709", + "8505379408968599666565892", + "31752145102988161119025798" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "247455545252628243186524", - "992294264379670098052659", - "3704416928681952271878205" + "2474555452526282707239460", + "9922942643796701062268267", + "37044169286819526723405479" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "282806337431575158336265", - "1134050587862480205356415", - "4233619347065088659009938" + "2828063374315751541331452", + "11340505878624800716440971", + "42336193470650885826334703" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "318157129610522019198786", - "1275806911345290094968961", - "4762821765448224233460363" + "3181571296105220375423444", + "12758069113452900370613675", + "47628217654482244929263927" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "353507921789468934348526", - "1417563234828100202272716", - "5292024183831360620592095" + "3535079217894689209515436", + "14175632348281000024786378", + "52920241838313604032193151" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -2839,127 +2839,127 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5055891329940916", - "20274073724658181", - "75686844734430211" + "20274073724658180", + "75686844734430212" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "50558913299409169", - "202740737246581828", - "756868447344302121" + "50558913299409171", + "202740737246581812", + "756868447344302137" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "505589132994091707", - "2027407372465818297", - "7568684473443021227" + "505589132994091719", + "2027407372465818136", + "7568684473443021381" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5055891329940917082", - "20274073724658182988", - "75686844734430212281" + "5055891329940917201", + "20274073724658181376", + "75686844734430213822" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35350792178946894792032", - "141756323482810025669551", - "529202418383136082376241" + "353507921789468942666430", + "1417563234828100089555120", + "5292024183831360728291837" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70701584357893789584065", - "283512646965620051339103", - "1058404836766272164752484" + "707015843578937885332862", + "2835126469656200179110242", + "10584048367662721456583675" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "106052376536840677590196", - "425268970448430049797253", - "1587607255149408145543562" + "1060523765368406719424854", + "4252689704484299833282945", + "15876072551494080559512899" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "141403168715787579168132", - "567025293931240102678207", - "2116809673532544329504969" + "1414031687157875770665725", + "5670252939312400358220485", + "21168096735325442913167351" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176753960894734467174262", - "708781617414050101136357", - "2646012091915680310296047" + "1767539608947344604757717", + "7087816174140500012393188", + "26460120919156802016096575" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "212104753073681355180393", - "850537940896860099594508", - "3175214510298816291087126" + "2121047530736813438849709", + "8505379408968599666565892", + "31752145102988161119025798" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "247455545252628243186524", - "992294264379670098052659", - "3704416928681952271878205" + "2474555452526282707239460", + "9922942643796701062268267", + "37044169286819526723405479" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "282806337431575158336265", - "1134050587862480205356415", - "4233619347065088659009938" + "2828063374315751541331452", + "11340505878624800716440971", + "42336193470650885826334703" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "318157129610522019198786", - "1275806911345290094968961", - "4762821765448224233460363" + "3181571296105220375423444", + "12758069113452900370613675", + "47628217654482244929263927" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "353507921789468934348526", - "1417563234828100202272716", - "5292024183831360620592095" + "3535079217894689209515436", + "14175632348281000024786378", + "52920241838313604032193151" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -2983,136 +2983,136 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5055891329940916", - "20274073724658181", - "75686844734430211" + "20274073724658180", + "75686844734430212" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "50558913299409169", - "202740737246581828", - "756868447344302121" + "50558913299409171", + "202740737246581812", + "756868447344302137" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "505589132994091707", - "2027407372465818297", - "7568684473443021227" + "505589132994091719", + "2027407372465818136", + "7568684473443021381" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5055891329940917082", - "20274073724658182988", - "75686844734430212281" + "5055891329940917201", + "20274073724658181376", + "75686844734430213822" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35350792178946894792032", - "141756323482810025669551", - "529202418383136082376241" + "353507921789468942666430", + "1417563234828100089555120", + "5292024183831360728291837" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70701584357893789584065", - "283512646965620051339103", - "1058404836766272164752484" + "707015843578937885332862", + "2835126469656200179110242", + "10584048367662721456583675" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "106052376536840677590196", - "425268970448430049797253", - "1587607255149408145543562" + "1060523765368406719424854", + "4252689704484299833282945", + "15876072551494080559512899" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "141403168715787579168132", - "567025293931240102678207", - "2116809673532544329504969" + "1414031687157875770665725", + "5670252939312400358220485", + "21168096735325442913167351" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176753960894734467174262", - "708781617414050101136357", - "2646012091915680310296047" + "1767539608947344604757717", + "7087816174140500012393188", + "26460120919156802016096575" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "212104753073681355180393", - "850537940896860099594508", - "3175214510298816291087126" + "2121047530736813438849709", + "8505379408968599666565892", + "31752145102988161119025798" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "247455545252628243186524", - "992294264379670098052659", - "3704416928681952271878205" + "2474555452526282707239460", + "9922942643796701062268267", + "37044169286819526723405479" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "282806337431575158336265", - "1134050587862480205356415", - "4233619347065088659009938" + "2828063374315751541331452", + "11340505878624800716440971", + "42336193470650885826334703" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "318157129610522019198786", - "1275806911345290094968961", - "4762821765448224233460363" + "3181571296105220375423444", + "12758069113452900370613675", + "47628217654482244929263927" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "353507921789468934348526", - "1417563234828100202272716", - "5292024183831360620592095" + "3535079217894689209515436", + "14175632348281000024786378", + "52920241838313604032193151" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "5503000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "55030000000000001379926016", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -3138,8 +3138,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "40208381919293818", - "55365125910640290", + "40208381919293817", + "55365125910640291", "5035479832505080" ], "redemptionFee": "30000000000000" @@ -3147,8 +3147,8 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "402083819192938196", - "553651259106402914", + "402083819192938184", + "553651259106402926", "50354798325050818" ], "redemptionFee": "300000000000000" @@ -3156,110 +3156,110 @@ { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "4020838191929381969", - "5536512591064029155", - "503547983250508193" + "4020838191929381853", + "5536512591064029271", + "503547983250508194" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "40208381919293819699", - "55365125910640291565", - "5035479832505081941" + "40208381919293818539", + "55365125910640292719", + "5035479832505081951" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "281137006379702407582180", - "387112960367196946497444", - "35208074988875535475552" + "2811370063797023886801253", + "3871129603671969397093860", + "352080749888755341965919" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "562274012759404815164362", - "774225920734393892994889", - "70416149977751070951106" + "5622740127594047773602507", + "7742259207343938794187721", + "704161499777510683931839" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "843411019139107168779767", - "1161338881101590765182520", - "105624224966626599668153" + "8434110191391070796935334", + "11613388811015907002324556", + "1056242249666265917761653" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1124548025518809630328725", - "1548451841468787785989780", - "140832299955502141902213" + "11245480255188095547205014", + "15484518414687877588375442", + "1408322999555021367863680" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1405685031898511983944130", - "1935564801835984658177411", - "176040374944377670619260" + "14056850318985118570537841", + "19355648018359845796512278", + "1760403749443776601693494" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1686822038278214337559535", - "2322677762203181530365042", - "211248449933253199336307" + "16868220382782141593870668", + "23226777622031814004649113", + "2112484499332531835523308" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1967959044657916691174940", - "2709790722570378402552673", - "246456524922128728053354" + "19679590446579168071077203", + "27097907225703786968614051", + "2464565249221287501897547" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2249096051037619260657451", - "3096903682937575571979561", - "281664599911004283804427" + "22490960510376191094410030", + "30969036829375755176750886", + "2816645999110042735727361" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2530233057417321398405750", - "3484016643304772146927935", - "316872674899879785487448" + "25302330574173214117742857", + "34840166433047723384887721", + "3168726748998797969557175" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2811370063797023967888261", - "3871129603671969316354823", - "352080749888755341238521" + "28113700637970237141075684", + "38711296036719691593024557", + "3520807498887553203386990" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -3282,8 +3282,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "40208381919293818", - "55365125910640290", + "40208381919293817", + "55365125910640291", "5035479832505080" ], "redemptionFee": "30000000000000" @@ -3291,8 +3291,8 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "402083819192938196", - "553651259106402914", + "402083819192938184", + "553651259106402926", "50354798325050818" ], "redemptionFee": "300000000000000" @@ -3300,110 +3300,110 @@ { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "4020838191929381969", - "5536512591064029155", - "503547983250508193" + "4020838191929381853", + "5536512591064029271", + "503547983250508194" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "40208381919293819699", - "55365125910640291565", - "5035479832505081941" + "40208381919293818539", + "55365125910640292719", + "5035479832505081951" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "281137006379702407582180", - "387112960367196946497444", - "35208074988875535475552" + "2811370063797023886801253", + "3871129603671969397093860", + "352080749888755341965919" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "562274012759404815164362", - "774225920734393892994889", - "70416149977751070951106" + "5622740127594047773602507", + "7742259207343938794187721", + "704161499777510683931839" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "843411019139107168779767", - "1161338881101590765182520", - "105624224966626599668153" + "8434110191391070796935334", + "11613388811015907002324556", + "1056242249666265917761653" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1124548025518809630328725", - "1548451841468787785989780", - "140832299955502141902213" + "11245480255188095547205014", + "15484518414687877588375442", + "1408322999555021367863680" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1405685031898511983944130", - "1935564801835984658177411", - "176040374944377670619260" + "14056850318985118570537841", + "19355648018359845796512278", + "1760403749443776601693494" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1686822038278214337559535", - "2322677762203181530365042", - "211248449933253199336307" + "16868220382782141593870668", + "23226777622031814004649113", + "2112484499332531835523308" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1967959044657916691174940", - "2709790722570378402552673", - "246456524922128728053354" + "19679590446579168071077203", + "27097907225703786968614051", + "2464565249221287501897547" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2249096051037619260657451", - "3096903682937575571979561", - "281664599911004283804427" + "22490960510376191094410030", + "30969036829375755176750886", + "2816645999110042735727361" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2530233057417321398405750", - "3484016643304772146927935", - "316872674899879785487448" + "25302330574173214117742857", + "34840166433047723384887721", + "3168726748998797969557175" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2811370063797023967888261", - "3871129603671969316354823", - "352080749888755341238521" + "28113700637970237141075684", + "38711296036719691593024557", + "3520807498887553203386990" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -3426,8 +3426,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "40208381919293818", - "55365125910640290", + "40208381919293817", + "55365125910640291", "5035479832505080" ], "redemptionFee": "30000000000000" @@ -3435,8 +3435,8 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "402083819192938196", - "553651259106402914", + "402083819192938184", + "553651259106402926", "50354798325050818" ], "redemptionFee": "300000000000000" @@ -3444,119 +3444,119 @@ { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "4020838191929381969", - "5536512591064029155", - "503547983250508193" + "4020838191929381853", + "5536512591064029271", + "503547983250508194" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "40208381919293819699", - "55365125910640291565", - "5035479832505081941" + "40208381919293818539", + "55365125910640292719", + "5035479832505081951" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "281137006379702407582180", - "387112960367196946497444", - "35208074988875535475552" + "2811370063797023886801253", + "3871129603671969397093860", + "352080749888755341965919" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "562274012759404815164362", - "774225920734393892994889", - "70416149977751070951106" + "5622740127594047773602507", + "7742259207343938794187721", + "704161499777510683931839" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "843411019139107168779767", - "1161338881101590765182520", - "105624224966626599668153" + "8434110191391070796935334", + "11613388811015907002324556", + "1056242249666265917761653" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1124548025518809630328725", - "1548451841468787785989780", - "140832299955502141902213" + "11245480255188095547205014", + "15484518414687877588375442", + "1408322999555021367863680" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1405685031898511983944130", - "1935564801835984658177411", - "176040374944377670619260" + "14056850318985118570537841", + "19355648018359845796512278", + "1760403749443776601693494" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1686822038278214337559535", - "2322677762203181530365042", - "211248449933253199336307" + "16868220382782141593870668", + "23226777622031814004649113", + "2112484499332531835523308" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1967959044657916691174940", - "2709790722570378402552673", - "246456524922128728053354" + "19679590446579168071077203", + "27097907225703786968614051", + "2464565249221287501897547" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2249096051037619260657451", - "3096903682937575571979561", - "281664599911004283804427" + "22490960510376191094410030", + "30969036829375755176750886", + "2816645999110042735727361" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2530233057417321398405750", - "3484016643304772146927935", - "316872674899879785487448" + "25302330574173214117742857", + "34840166433047723384887721", + "3168726748998797969557175" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2811370063797023967888261", - "3871129603671969316354823", - "352080749888755341238521" + "28113700637970237141075684", + "38711296036719691593024557", + "3520807498887553203386990" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "2007000000000000960000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "20070000000000010942939136", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -3583,7 +3583,7 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "39970091636245967", - "20072556965831529", + "20072556965831530", "39970091636245967" ], "redemptionFee": "30000000000000" @@ -3591,119 +3591,119 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "399700916362459686", - "200725569658315301", - "399700916362459686" + "399700916362459679", + "200725569658315315", + "399700916362459679" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "3997009163624596876", - "2007255696583153021", - "3997009163624596876" + "3997009163624596802", + "2007255696583153168", + "3997009163624596802" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "39970091636245968777", - "20072556965831530227", - "39970091636245968777" + "39970091636245968038", + "20072556965831531693", + "39970091636245968038" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "279470880720631833817400", - "140347318305094069457237", - "279470880720631833817400" + "2794708807206318179214667", + "1403473183050940743213162", + "2794708807206318179214667" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "558941761441263667634802", - "280694636610188138914476", - "558941761441263667634802" + "5589417614412636358429335", + "2806946366101881486426325", + "5589417614412636358429335" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "838412642161895447805254", - "421041954915282181430785", - "838412642161895447805254" + "8384126421618953679292821", + "4210419549152821798584610", + "8384126421618953679292821" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1117883522882527335269605", - "561389273220376277828953", - "1117883522882527335269605" + "11178835228825272716858670", + "5613892732203762972852651", + "11178835228825272716858670" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1397354403603159115440058", - "701736591525470320345262", - "1397354403603159115440058" + "13973544036031590037722156", + "7017365915254703285010936", + "13973544036031590037722156" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1676825284323790895610510", - "842083909830564362861571", - "1676825284323790895610510" + "16768252843237907358585642", + "8420839098305643597169221", + "16768252843237907358585642" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1956296165044422675780963", - "982431228135658405377879", - "1956296165044422675780963" + "19562961650444228112853856", + "9824312281356585633547020", + "19562961650444228112853856" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2235767045765054670539212", - "1122778546440752555657908", - "2235767045765054670539212" + "22357670457650545433717342", + "11227785464407525945705304", + "22357670457650545433717342" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2515237926485686236121869", - "1263125864745846490410497", - "2515237926485686236121869" + "25152379264856862754580828", + "12631258647458466257863589", + "25152379264856862754580828" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2794708807206318230880117", - "1403473183050940640690525", - "2794708807206318230880117" + "27947088072063180075444314", + "14034731830509406570021874", + "27947088072063180075444314" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -3727,7 +3727,7 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "39970091636245967", - "20072556965831529", + "20072556965831530", "39970091636245967" ], "redemptionFee": "30000000000000" @@ -3735,119 +3735,119 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "399700916362459686", - "200725569658315301", - "399700916362459686" + "399700916362459679", + "200725569658315315", + "399700916362459679" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "3997009163624596876", - "2007255696583153021", - "3997009163624596876" + "3997009163624596802", + "2007255696583153168", + "3997009163624596802" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "39970091636245968777", - "20072556965831530227", - "39970091636245968777" + "39970091636245968038", + "20072556965831531693", + "39970091636245968038" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "279470880720631833817400", - "140347318305094069457237", - "279470880720631833817400" + "2794708807206318179214667", + "1403473183050940743213162", + "2794708807206318179214667" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "558941761441263667634802", - "280694636610188138914476", - "558941761441263667634802" + "5589417614412636358429335", + "2806946366101881486426325", + "5589417614412636358429335" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "838412642161895447805254", - "421041954915282181430785", - "838412642161895447805254" + "8384126421618953679292821", + "4210419549152821798584610", + "8384126421618953679292821" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1117883522882527335269605", - "561389273220376277828953", - "1117883522882527335269605" + "11178835228825272716858670", + "5613892732203762972852651", + "11178835228825272716858670" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1397354403603159115440058", - "701736591525470320345262", - "1397354403603159115440058" + "13973544036031590037722156", + "7017365915254703285010936", + "13973544036031590037722156" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1676825284323790895610510", - "842083909830564362861571", - "1676825284323790895610510" + "16768252843237907358585642", + "8420839098305643597169221", + "16768252843237907358585642" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1956296165044422675780963", - "982431228135658405377879", - "1956296165044422675780963" + "19562961650444228112853856", + "9824312281356585633547020", + "19562961650444228112853856" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2235767045765054670539212", - "1122778546440752555657908", - "2235767045765054670539212" + "22357670457650545433717342", + "11227785464407525945705304", + "22357670457650545433717342" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2515237926485686236121869", - "1263125864745846490410497", - "2515237926485686236121869" + "25152379264856862754580828", + "12631258647458466257863589", + "25152379264856862754580828" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2794708807206318230880117", - "1403473183050940640690525", - "2794708807206318230880117" + "27947088072063180075444314", + "14034731830509406570021874", + "27947088072063180075444314" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -3871,7 +3871,7 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "39970091636245967", - "20072556965831529", + "20072556965831530", "39970091636245967" ], "redemptionFee": "30000000000000" @@ -3879,128 +3879,128 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "399700916362459686", - "200725569658315301", - "399700916362459686" + "399700916362459679", + "200725569658315315", + "399700916362459679" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "3997009163624596876", - "2007255696583153021", - "3997009163624596876" + "3997009163624596802", + "2007255696583153168", + "3997009163624596802" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "39970091636245968777", - "20072556965831530227", - "39970091636245968777" + "39970091636245968038", + "20072556965831531693", + "39970091636245968038" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "279470880720631833817400", - "140347318305094069457237", - "279470880720631833817400" + "2794708807206318179214667", + "1403473183050940743213162", + "2794708807206318179214667" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "558941761441263667634802", - "280694636610188138914476", - "558941761441263667634802" + "5589417614412636358429335", + "2806946366101881486426325", + "5589417614412636358429335" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "838412642161895447805254", - "421041954915282181430785", - "838412642161895447805254" + "8384126421618953679292821", + "4210419549152821798584610", + "8384126421618953679292821" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1117883522882527335269605", - "561389273220376277828953", - "1117883522882527335269605" + "11178835228825272716858670", + "5613892732203762972852651", + "11178835228825272716858670" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1397354403603159115440058", - "701736591525470320345262", - "1397354403603159115440058" + "13973544036031590037722156", + "7017365915254703285010936", + "13973544036031590037722156" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1676825284323790895610510", - "842083909830564362861571", - "1676825284323790895610510" + "16768252843237907358585642", + "8420839098305643597169221", + "16768252843237907358585642" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1956296165044422675780963", - "982431228135658405377879", - "1956296165044422675780963" + "19562961650444228112853856", + "9824312281356585633547020", + "19562961650444228112853856" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2235767045765054670539212", - "1122778546440752555657908", - "2235767045765054670539212" + "22357670457650545433717342", + "11227785464407525945705304", + "22357670457650545433717342" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2515237926485686236121869", - "1263125864745846490410497", - "2515237926485686236121869" + "25152379264856862754580828", + "12631258647458466257863589", + "25152379264856862754580828" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2794708807206318230880117", - "1403473183050940640690525", - "2794708807206318230880117" + "27947088072063180075444314", + "14034731830509406570021874", + "27947088072063180075444314" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "20069999999999998058037248", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -4026,8 +4026,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "75686844734430211", - "20274073724658181", + "75686844734430212", + "20274073724658180", "5055891329940916" ], "redemptionFee": "30000000000000" @@ -4035,119 +4035,119 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "756868447344302121", - "202740737246581828", - "50558913299409169" + "756868447344302137", + "202740737246581812", + "50558913299409171" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "7568684473443021227", - "2027407372465818297", - "505589132994091707" + "7568684473443021381", + "2027407372465818136", + "505589132994091719" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "75686844734430212281", - "20274073724658182988", - "5055891329940917082" + "75686844734430213822", + "20274073724658181376", + "5055891329940917201" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "529202418383136082376241", - "141756323482810025669551", - "35350792178946894792032" + "5292024183831360728291837", + "1417563234828100089555120", + "353507921789468942666430" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "1058404836766272164752484", - "283512646965620051339103", - "70701584357893789584065" + "10584048367662721456583675", + "2835126469656200179110242", + "707015843578937885332862" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1587607255149408145543562", - "425268970448430049797253", - "106052376536840677590196" + "15876072551494080559512899", + "4252689704484299833282945", + "1060523765368406719424854" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "2116809673532544329504969", - "567025293931240102678207", - "141403168715787579168132" + "21168096735325442913167351", + "5670252939312400358220485", + "1414031687157875770665725" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "2646012091915680310296047", - "708781617414050101136357", - "176753960894734467174262" + "26460120919156802016096575", + "7087816174140500012393188", + "1767539608947344604757717" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "3175214510298816291087126", - "850537940896860099594508", - "212104753073681355180393" + "31752145102988161119025798", + "8505379408968599666565892", + "2121047530736813438849709" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "3704416928681952271878205", - "992294264379670098052659", - "247455545252628243186524" + "37044169286819526723405479", + "9922942643796701062268267", + "2474555452526282707239460" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "4233619347065088659009938", - "1134050587862480205356415", - "282806337431575158336265" + "42336193470650885826334703", + "11340505878624800716440971", + "2828063374315751541331452" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "4762821765448224233460363", - "1275806911345290094968961", - "318157129610522019198786" + "47628217654482244929263927", + "12758069113452900370613675", + "3181571296105220375423444" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "5292024183831360620592095", - "1417563234828100202272716", - "353507921789468934348526" + "52920241838313604032193151", + "14175632348281000024786378", + "3535079217894689209515436" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -4170,8 +4170,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "75686844734430211", - "20274073724658181", + "75686844734430212", + "20274073724658180", "5055891329940916" ], "redemptionFee": "30000000000000" @@ -4179,119 +4179,119 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "756868447344302121", - "202740737246581828", - "50558913299409169" + "756868447344302137", + "202740737246581812", + "50558913299409171" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "7568684473443021227", - "2027407372465818297", - "505589132994091707" + "7568684473443021381", + "2027407372465818136", + "505589132994091719" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "75686844734430212281", - "20274073724658182988", - "5055891329940917082" + "75686844734430213822", + "20274073724658181376", + "5055891329940917201" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "529202418383136082376241", - "141756323482810025669551", - "35350792178946894792032" + "5292024183831360728291837", + "1417563234828100089555120", + "353507921789468942666430" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "1058404836766272164752484", - "283512646965620051339103", - "70701584357893789584065" + "10584048367662721456583675", + "2835126469656200179110242", + "707015843578937885332862" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1587607255149408145543562", - "425268970448430049797253", - "106052376536840677590196" + "15876072551494080559512899", + "4252689704484299833282945", + "1060523765368406719424854" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "2116809673532544329504969", - "567025293931240102678207", - "141403168715787579168132" + "21168096735325442913167351", + "5670252939312400358220485", + "1414031687157875770665725" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "2646012091915680310296047", - "708781617414050101136357", - "176753960894734467174262" + "26460120919156802016096575", + "7087816174140500012393188", + "1767539608947344604757717" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "3175214510298816291087126", - "850537940896860099594508", - "212104753073681355180393" + "31752145102988161119025798", + "8505379408968599666565892", + "2121047530736813438849709" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "3704416928681952271878205", - "992294264379670098052659", - "247455545252628243186524" + "37044169286819526723405479", + "9922942643796701062268267", + "2474555452526282707239460" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "4233619347065088659009938", - "1134050587862480205356415", - "282806337431575158336265" + "42336193470650885826334703", + "11340505878624800716440971", + "2828063374315751541331452" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "4762821765448224233460363", - "1275806911345290094968961", - "318157129610522019198786" + "47628217654482244929263927", + "12758069113452900370613675", + "3181571296105220375423444" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "5292024183831360620592095", - "1417563234828100202272716", - "353507921789468934348526" + "52920241838313604032193151", + "14175632348281000024786378", + "3535079217894689209515436" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -4314,8 +4314,8 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "75686844734430211", - "20274073724658181", + "75686844734430212", + "20274073724658180", "5055891329940916" ], "redemptionFee": "30000000000000" @@ -4323,128 +4323,128 @@ { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "756868447344302121", - "202740737246581828", - "50558913299409169" + "756868447344302137", + "202740737246581812", + "50558913299409171" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "7568684473443021227", - "2027407372465818297", - "505589132994091707" + "7568684473443021381", + "2027407372465818136", + "505589132994091719" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "75686844734430212281", - "20274073724658182988", - "5055891329940917082" + "75686844734430213822", + "20274073724658181376", + "5055891329940917201" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "529202418383136082376241", - "141756323482810025669551", - "35350792178946894792032" + "5292024183831360728291837", + "1417563234828100089555120", + "353507921789468942666430" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "1058404836766272164752484", - "283512646965620051339103", - "70701584357893789584065" + "10584048367662721456583675", + "2835126469656200179110242", + "707015843578937885332862" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1587607255149408145543562", - "425268970448430049797253", - "106052376536840677590196" + "15876072551494080559512899", + "4252689704484299833282945", + "1060523765368406719424854" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "2116809673532544329504969", - "567025293931240102678207", - "141403168715787579168132" + "21168096735325442913167351", + "5670252939312400358220485", + "1414031687157875770665725" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "2646012091915680310296047", - "708781617414050101136357", - "176753960894734467174262" + "26460120919156802016096575", + "7087816174140500012393188", + "1767539608947344604757717" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "3175214510298816291087126", - "850537940896860099594508", - "212104753073681355180393" + "31752145102988161119025798", + "8505379408968599666565892", + "2121047530736813438849709" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "3704416928681952271878205", - "992294264379670098052659", - "247455545252628243186524" + "37044169286819526723405479", + "9922942643796701062268267", + "2474555452526282707239460" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "4233619347065088659009938", - "1134050587862480205356415", - "282806337431575158336265" + "42336193470650885826334703", + "11340505878624800716440971", + "2828063374315751541331452" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "4762821765448224233460363", - "1275806911345290094968961", - "318157129610522019198786" + "47628217654482244929263927", + "12758069113452900370613675", + "3181571296105220375423444" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "5292024183831360620592095", - "1417563234828100202272716", - "353507921789468934348526" + "52920241838313604032193151", + "14175632348281000024786378", + "3535079217894689209515436" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "39964999999999992615927808", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -4471,8 +4471,8 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5035479832505080", - "40208381919293818", - "55365125910640290" + "40208381919293817", + "55365125910640291" ], "redemptionFee": "30000000000000" }, @@ -4480,118 +4480,118 @@ "mAssetQty": "1000000000000000000", "bAssetQtys": [ "50354798325050818", - "402083819192938196", - "553651259106402914" + "402083819192938184", + "553651259106402926" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "503547983250508193", - "4020838191929381969", - "5536512591064029155" + "503547983250508194", + "4020838191929381853", + "5536512591064029271" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5035479832505081941", - "40208381919293819699", - "55365125910640291565" + "5035479832505081951", + "40208381919293818539", + "55365125910640292719" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35208074988875535475552", - "281137006379702407582180", - "387112960367196946497444" + "352080749888755341965919", + "2811370063797023886801253", + "3871129603671969397093860" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70416149977751070951106", - "562274012759404815164362", - "774225920734393892994889" + "704161499777510683931839", + "5622740127594047773602507", + "7742259207343938794187721" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "105624224966626599668153", - "843411019139107168779767", - "1161338881101590765182520" + "1056242249666265917761653", + "8434110191391070796935334", + "11613388811015907002324556" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "140832299955502141902213", - "1124548025518809630328725", - "1548451841468787785989780" + "1408322999555021367863680", + "11245480255188095547205014", + "15484518414687877588375442" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176040374944377670619260", - "1405685031898511983944130", - "1935564801835984658177411" + "1760403749443776601693494", + "14056850318985118570537841", + "19355648018359845796512278" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "211248449933253199336307", - "1686822038278214337559535", - "2322677762203181530365042" + "2112484499332531835523308", + "16868220382782141593870668", + "23226777622031814004649113" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "246456524922128728053354", - "1967959044657916691174940", - "2709790722570378402552673" + "2464565249221287501897547", + "19679590446579168071077203", + "27097907225703786968614051" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "281664599911004283804427", - "2249096051037619260657451", - "3096903682937575571979561" + "2816645999110042735727361", + "22490960510376191094410030", + "30969036829375755176750886" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "316872674899879785487448", - "2530233057417321398405750", - "3484016643304772146927935" + "3168726748998797969557175", + "25302330574173214117742857", + "34840166433047723384887721" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "352080749888755341238521", - "2811370063797023967888261", - "3871129603671969316354823" + "3520807498887553203386990", + "28113700637970237141075684", + "38711296036719691593024557" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -4615,8 +4615,8 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5035479832505080", - "40208381919293818", - "55365125910640290" + "40208381919293817", + "55365125910640291" ], "redemptionFee": "30000000000000" }, @@ -4624,118 +4624,118 @@ "mAssetQty": "1000000000000000000", "bAssetQtys": [ "50354798325050818", - "402083819192938196", - "553651259106402914" + "402083819192938184", + "553651259106402926" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "503547983250508193", - "4020838191929381969", - "5536512591064029155" + "503547983250508194", + "4020838191929381853", + "5536512591064029271" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5035479832505081941", - "40208381919293819699", - "55365125910640291565" + "5035479832505081951", + "40208381919293818539", + "55365125910640292719" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35208074988875535475552", - "281137006379702407582180", - "387112960367196946497444" + "352080749888755341965919", + "2811370063797023886801253", + "3871129603671969397093860" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70416149977751070951106", - "562274012759404815164362", - "774225920734393892994889" + "704161499777510683931839", + "5622740127594047773602507", + "7742259207343938794187721" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "105624224966626599668153", - "843411019139107168779767", - "1161338881101590765182520" + "1056242249666265917761653", + "8434110191391070796935334", + "11613388811015907002324556" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "140832299955502141902213", - "1124548025518809630328725", - "1548451841468787785989780" + "1408322999555021367863680", + "11245480255188095547205014", + "15484518414687877588375442" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176040374944377670619260", - "1405685031898511983944130", - "1935564801835984658177411" + "1760403749443776601693494", + "14056850318985118570537841", + "19355648018359845796512278" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "211248449933253199336307", - "1686822038278214337559535", - "2322677762203181530365042" + "2112484499332531835523308", + "16868220382782141593870668", + "23226777622031814004649113" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "246456524922128728053354", - "1967959044657916691174940", - "2709790722570378402552673" + "2464565249221287501897547", + "19679590446579168071077203", + "27097907225703786968614051" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "281664599911004283804427", - "2249096051037619260657451", - "3096903682937575571979561" + "2816645999110042735727361", + "22490960510376191094410030", + "30969036829375755176750886" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "316872674899879785487448", - "2530233057417321398405750", - "3484016643304772146927935" + "3168726748998797969557175", + "25302330574173214117742857", + "34840166433047723384887721" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "352080749888755341238521", - "2811370063797023967888261", - "3871129603671969316354823" + "3520807498887553203386990", + "28113700637970237141075684", + "38711296036719691593024557" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -4759,8 +4759,8 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5035479832505080", - "40208381919293818", - "55365125910640290" + "40208381919293817", + "55365125910640291" ], "redemptionFee": "30000000000000" }, @@ -4768,127 +4768,127 @@ "mAssetQty": "1000000000000000000", "bAssetQtys": [ "50354798325050818", - "402083819192938196", - "553651259106402914" + "402083819192938184", + "553651259106402926" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "503547983250508193", - "4020838191929381969", - "5536512591064029155" + "503547983250508194", + "4020838191929381853", + "5536512591064029271" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5035479832505081941", - "40208381919293819699", - "55365125910640291565" + "5035479832505081951", + "40208381919293818539", + "55365125910640292719" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35208074988875535475552", - "281137006379702407582180", - "387112960367196946497444" + "352080749888755341965919", + "2811370063797023886801253", + "3871129603671969397093860" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70416149977751070951106", - "562274012759404815164362", - "774225920734393892994889" + "704161499777510683931839", + "5622740127594047773602507", + "7742259207343938794187721" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "105624224966626599668153", - "843411019139107168779767", - "1161338881101590765182520" + "1056242249666265917761653", + "8434110191391070796935334", + "11613388811015907002324556" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "140832299955502141902213", - "1124548025518809630328725", - "1548451841468787785989780" + "1408322999555021367863680", + "11245480255188095547205014", + "15484518414687877588375442" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176040374944377670619260", - "1405685031898511983944130", - "1935564801835984658177411" + "1760403749443776601693494", + "14056850318985118570537841", + "19355648018359845796512278" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "211248449933253199336307", - "1686822038278214337559535", - "2322677762203181530365042" + "2112484499332531835523308", + "16868220382782141593870668", + "23226777622031814004649113" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "246456524922128728053354", - "1967959044657916691174940", - "2709790722570378402552673" + "2464565249221287501897547", + "19679590446579168071077203", + "27097907225703786968614051" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "281664599911004283804427", - "2249096051037619260657451", - "3096903682937575571979561" + "2816645999110042735727361", + "22490960510376191094410030", + "30969036829375755176750886" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "316872674899879785487448", - "2530233057417321398405750", - "3484016643304772146927935" + "3168726748998797969557175", + "25302330574173214117742857", + "34840166433047723384887721" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "352080749888755341238521", - "2811370063797023967888261", - "3871129603671969316354823" + "3520807498887553203386990", + "28113700637970237141075684", + "38711296036719691593024557" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "74925000000000000232783872", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -4915,127 +4915,127 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5055891329940916", - "75686844734430211", - "20274073724658181" + "75686844734430212", + "20274073724658180" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "50558913299409169", - "756868447344302121", - "202740737246581828" + "50558913299409171", + "756868447344302137", + "202740737246581812" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "505589132994091707", - "7568684473443021227", - "2027407372465818297" + "505589132994091719", + "7568684473443021381", + "2027407372465818136" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5055891329940917082", - "75686844734430212281", - "20274073724658182988" + "5055891329940917201", + "75686844734430213822", + "20274073724658181376" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35350792178946894792032", - "529202418383136082376241", - "141756323482810025669551" + "353507921789468942666430", + "5292024183831360728291837", + "1417563234828100089555120" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70701584357893789584065", - "1058404836766272164752484", - "283512646965620051339103" + "707015843578937885332862", + "10584048367662721456583675", + "2835126469656200179110242" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "106052376536840677590196", - "1587607255149408145543562", - "425268970448430049797253" + "1060523765368406719424854", + "15876072551494080559512899", + "4252689704484299833282945" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "141403168715787579168132", - "2116809673532544329504969", - "567025293931240102678207" + "1414031687157875770665725", + "21168096735325442913167351", + "5670252939312400358220485" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176753960894734467174262", - "2646012091915680310296047", - "708781617414050101136357" + "1767539608947344604757717", + "26460120919156802016096575", + "7087816174140500012393188" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "212104753073681355180393", - "3175214510298816291087126", - "850537940896860099594508" + "2121047530736813438849709", + "31752145102988161119025798", + "8505379408968599666565892" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "247455545252628243186524", - "3704416928681952271878205", - "992294264379670098052659" + "2474555452526282707239460", + "37044169286819526723405479", + "9922942643796701062268267" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "282806337431575158336265", - "4233619347065088659009938", - "1134050587862480205356415" + "2828063374315751541331452", + "42336193470650885826334703", + "11340505878624800716440971" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "318157129610522019198786", - "4762821765448224233460363", - "1275806911345290094968961" + "3181571296105220375423444", + "47628217654482244929263927", + "12758069113452900370613675" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "353507921789468934348526", - "5292024183831360620592095", - "1417563234828100202272716" + "3535079217894689209515436", + "52920241838313604032193151", + "14175632348281000024786378" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -5059,127 +5059,127 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5055891329940916", - "75686844734430211", - "20274073724658181" + "75686844734430212", + "20274073724658180" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "50558913299409169", - "756868447344302121", - "202740737246581828" + "50558913299409171", + "756868447344302137", + "202740737246581812" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "505589132994091707", - "7568684473443021227", - "2027407372465818297" + "505589132994091719", + "7568684473443021381", + "2027407372465818136" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5055891329940917082", - "75686844734430212281", - "20274073724658182988" + "5055891329940917201", + "75686844734430213822", + "20274073724658181376" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35350792178946894792032", - "529202418383136082376241", - "141756323482810025669551" + "353507921789468942666430", + "5292024183831360728291837", + "1417563234828100089555120" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70701584357893789584065", - "1058404836766272164752484", - "283512646965620051339103" + "707015843578937885332862", + "10584048367662721456583675", + "2835126469656200179110242" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "106052376536840677590196", - "1587607255149408145543562", - "425268970448430049797253" + "1060523765368406719424854", + "15876072551494080559512899", + "4252689704484299833282945" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "141403168715787579168132", - "2116809673532544329504969", - "567025293931240102678207" + "1414031687157875770665725", + "21168096735325442913167351", + "5670252939312400358220485" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176753960894734467174262", - "2646012091915680310296047", - "708781617414050101136357" + "1767539608947344604757717", + "26460120919156802016096575", + "7087816174140500012393188" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "212104753073681355180393", - "3175214510298816291087126", - "850537940896860099594508" + "2121047530736813438849709", + "31752145102988161119025798", + "8505379408968599666565892" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "247455545252628243186524", - "3704416928681952271878205", - "992294264379670098052659" + "2474555452526282707239460", + "37044169286819526723405479", + "9922942643796701062268267" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "282806337431575158336265", - "4233619347065088659009938", - "1134050587862480205356415" + "2828063374315751541331452", + "42336193470650885826334703", + "11340505878624800716440971" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "318157129610522019198786", - "4762821765448224233460363", - "1275806911345290094968961" + "3181571296105220375423444", + "47628217654482244929263927", + "12758069113452900370613675" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "353507921789468934348526", - "5292024183831360620592095", - "1417563234828100202272716" + "3535079217894689209515436", + "52920241838313604032193151", + "14175632348281000024786378" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -5203,136 +5203,136 @@ "mAssetQty": "100000000000000000", "bAssetQtys": [ "5055891329940916", - "75686844734430211", - "20274073724658181" + "75686844734430212", + "20274073724658180" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "50558913299409169", - "756868447344302121", - "202740737246581828" + "50558913299409171", + "756868447344302137", + "202740737246581812" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "505589132994091707", - "7568684473443021227", - "2027407372465818297" + "505589132994091719", + "7568684473443021381", + "2027407372465818136" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "5055891329940917082", - "75686844734430212281", - "20274073724658182988" + "5055891329940917201", + "75686844734430213822", + "20274073724658181376" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "35350792178946894792032", - "529202418383136082376241", - "141756323482810025669551" + "353507921789468942666430", + "5292024183831360728291837", + "1417563234828100089555120" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "70701584357893789584065", - "1058404836766272164752484", - "283512646965620051339103" + "707015843578937885332862", + "10584048367662721456583675", + "2835126469656200179110242" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "106052376536840677590196", - "1587607255149408145543562", - "425268970448430049797253" + "1060523765368406719424854", + "15876072551494080559512899", + "4252689704484299833282945" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "141403168715787579168132", - "2116809673532544329504969", - "567025293931240102678207" + "1414031687157875770665725", + "21168096735325442913167351", + "5670252939312400358220485" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "176753960894734467174262", - "2646012091915680310296047", - "708781617414050101136357" + "1767539608947344604757717", + "26460120919156802016096575", + "7087816174140500012393188" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "212104753073681355180393", - "3175214510298816291087126", - "850537940896860099594508" + "2121047530736813438849709", + "31752145102988161119025798", + "8505379408968599666565892" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "247455545252628243186524", - "3704416928681952271878205", - "992294264379670098052659" + "2474555452526282707239460", + "37044169286819526723405479", + "9922942643796701062268267" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "282806337431575158336265", - "4233619347065088659009938", - "1134050587862480205356415" + "2828063374315751541331452", + "42336193470650885826334703", + "11340505878624800716440971" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "318157129610522019198786", - "4762821765448224233460363", - "1275806911345290094968961" + "3181571296105220375423444", + "47628217654482244929263927", + "12758069113452900370613675" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "353507921789468934348526", - "5292024183831360620592095", - "1417563234828100202272716" + "3535079217894689209515436", + "52920241838313604032193151", + "14175632348281000024786378" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "500500000000000000000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "5005000000000000031457280", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -5358,128 +5358,128 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "40208381919293818", + "40208381919293817", "5035479832505080", - "55365125910640290" + "55365125910640291" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "402083819192938196", + "402083819192938184", "50354798325050818", - "553651259106402914" + "553651259106402926" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "4020838191929381969", - "503547983250508193", - "5536512591064029155" + "4020838191929381853", + "503547983250508194", + "5536512591064029271" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "40208381919293819699", - "5035479832505081941", - "55365125910640291565" + "40208381919293818539", + "5035479832505081951", + "55365125910640292719" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "281137006379702407582180", - "35208074988875535475552", - "387112960367196946497444" + "2811370063797023886801253", + "352080749888755341965919", + "3871129603671969397093860" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "562274012759404815164362", - "70416149977751070951106", - "774225920734393892994889" + "5622740127594047773602507", + "704161499777510683931839", + "7742259207343938794187721" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "843411019139107168779767", - "105624224966626599668153", - "1161338881101590765182520" + "8434110191391070796935334", + "1056242249666265917761653", + "11613388811015907002324556" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1124548025518809630328725", - "140832299955502141902213", - "1548451841468787785989780" + "11245480255188095547205014", + "1408322999555021367863680", + "15484518414687877588375442" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1405685031898511983944130", - "176040374944377670619260", - "1935564801835984658177411" + "14056850318985118570537841", + "1760403749443776601693494", + "19355648018359845796512278" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1686822038278214337559535", - "211248449933253199336307", - "2322677762203181530365042" + "16868220382782141593870668", + "2112484499332531835523308", + "23226777622031814004649113" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1967959044657916691174940", - "246456524922128728053354", - "2709790722570378402552673" + "19679590446579168071077203", + "2464565249221287501897547", + "27097907225703786968614051" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2249096051037619260657451", - "281664599911004283804427", - "3096903682937575571979561" + "22490960510376191094410030", + "2816645999110042735727361", + "30969036829375755176750886" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2530233057417321398405750", - "316872674899879785487448", - "3484016643304772146927935" + "25302330574173214117742857", + "3168726748998797969557175", + "34840166433047723384887721" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2811370063797023967888261", - "352080749888755341238521", - "3871129603671969316354823" + "28113700637970237141075684", + "3520807498887553203386990", + "38711296036719691593024557" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -5502,128 +5502,128 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "40208381919293818", + "40208381919293817", "5035479832505080", - "55365125910640290" + "55365125910640291" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "402083819192938196", + "402083819192938184", "50354798325050818", - "553651259106402914" + "553651259106402926" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "4020838191929381969", - "503547983250508193", - "5536512591064029155" + "4020838191929381853", + "503547983250508194", + "5536512591064029271" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "40208381919293819699", - "5035479832505081941", - "55365125910640291565" + "40208381919293818539", + "5035479832505081951", + "55365125910640292719" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "281137006379702407582180", - "35208074988875535475552", - "387112960367196946497444" + "2811370063797023886801253", + "352080749888755341965919", + "3871129603671969397093860" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "562274012759404815164362", - "70416149977751070951106", - "774225920734393892994889" + "5622740127594047773602507", + "704161499777510683931839", + "7742259207343938794187721" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "843411019139107168779767", - "105624224966626599668153", - "1161338881101590765182520" + "8434110191391070796935334", + "1056242249666265917761653", + "11613388811015907002324556" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1124548025518809630328725", - "140832299955502141902213", - "1548451841468787785989780" + "11245480255188095547205014", + "1408322999555021367863680", + "15484518414687877588375442" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1405685031898511983944130", - "176040374944377670619260", - "1935564801835984658177411" + "14056850318985118570537841", + "1760403749443776601693494", + "19355648018359845796512278" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1686822038278214337559535", - "211248449933253199336307", - "2322677762203181530365042" + "16868220382782141593870668", + "2112484499332531835523308", + "23226777622031814004649113" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1967959044657916691174940", - "246456524922128728053354", - "2709790722570378402552673" + "19679590446579168071077203", + "2464565249221287501897547", + "27097907225703786968614051" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2249096051037619260657451", - "281664599911004283804427", - "3096903682937575571979561" + "22490960510376191094410030", + "2816645999110042735727361", + "30969036829375755176750886" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2530233057417321398405750", - "316872674899879785487448", - "3484016643304772146927935" + "25302330574173214117742857", + "3168726748998797969557175", + "34840166433047723384887721" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2811370063797023967888261", - "352080749888755341238521", - "3871129603671969316354823" + "28113700637970237141075684", + "3520807498887553203386990", + "38711296036719691593024557" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -5646,137 +5646,137 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "40208381919293818", + "40208381919293817", "5035479832505080", - "55365125910640290" + "55365125910640291" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "402083819192938196", + "402083819192938184", "50354798325050818", - "553651259106402914" + "553651259106402926" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "4020838191929381969", - "503547983250508193", - "5536512591064029155" + "4020838191929381853", + "503547983250508194", + "5536512591064029271" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "40208381919293819699", - "5035479832505081941", - "55365125910640291565" + "40208381919293818539", + "5035479832505081951", + "55365125910640292719" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "281137006379702407582180", - "35208074988875535475552", - "387112960367196946497444" + "2811370063797023886801253", + "352080749888755341965919", + "3871129603671969397093860" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "562274012759404815164362", - "70416149977751070951106", - "774225920734393892994889" + "5622740127594047773602507", + "704161499777510683931839", + "7742259207343938794187721" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "843411019139107168779767", - "105624224966626599668153", - "1161338881101590765182520" + "8434110191391070796935334", + "1056242249666265917761653", + "11613388811015907002324556" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1124548025518809630328725", - "140832299955502141902213", - "1548451841468787785989780" + "11245480255188095547205014", + "1408322999555021367863680", + "15484518414687877588375442" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1405685031898511983944130", - "176040374944377670619260", - "1935564801835984658177411" + "14056850318985118570537841", + "1760403749443776601693494", + "19355648018359845796512278" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1686822038278214337559535", - "211248449933253199336307", - "2322677762203181530365042" + "16868220382782141593870668", + "2112484499332531835523308", + "23226777622031814004649113" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1967959044657916691174940", - "246456524922128728053354", - "2709790722570378402552673" + "19679590446579168071077203", + "2464565249221287501897547", + "27097907225703786968614051" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2249096051037619260657451", - "281664599911004283804427", - "3096903682937575571979561" + "22490960510376191094410030", + "2816645999110042735727361", + "30969036829375755176750886" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2530233057417321398405750", - "316872674899879785487448", - "3484016643304772146927935" + "25302330574173214117742857", + "3168726748998797969557175", + "34840166433047723384887721" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2811370063797023967888261", - "352080749888755341238521", - "3871129603671969316354823" + "28113700637970237141075684", + "3520807498887553203386990", + "38711296036719691593024557" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "3996499999999999360000000", - "reserve2": "2007000000000000960000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "39964999999999992615927808", + "reserve2": "20070000000000010942939136", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -5804,126 +5804,126 @@ "bAssetQtys": [ "39970091636245967", "39970091636245967", - "20072556965831529" + "20072556965831530" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "399700916362459686", - "399700916362459686", - "200725569658315301" + "399700916362459679", + "399700916362459679", + "200725569658315315" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "3997009163624596876", - "3997009163624596876", - "2007255696583153021" + "3997009163624596802", + "3997009163624596802", + "2007255696583153168" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "39970091636245968777", - "39970091636245968777", - "20072556965831530227" + "39970091636245968038", + "39970091636245968038", + "20072556965831531693" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "279470880720631833817400", - "279470880720631833817400", - "140347318305094069457237" + "2794708807206318179214667", + "2794708807206318179214667", + "1403473183050940743213162" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "558941761441263667634802", - "558941761441263667634802", - "280694636610188138914476" + "5589417614412636358429335", + "5589417614412636358429335", + "2806946366101881486426325" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "838412642161895447805254", - "838412642161895447805254", - "421041954915282181430785" + "8384126421618953679292821", + "8384126421618953679292821", + "4210419549152821798584610" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1117883522882527335269605", - "1117883522882527335269605", - "561389273220376277828953" + "11178835228825272716858670", + "11178835228825272716858670", + "5613892732203762972852651" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1397354403603159115440058", - "1397354403603159115440058", - "701736591525470320345262" + "13973544036031590037722156", + "13973544036031590037722156", + "7017365915254703285010936" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1676825284323790895610510", - "1676825284323790895610510", - "842083909830564362861571" + "16768252843237907358585642", + "16768252843237907358585642", + "8420839098305643597169221" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1956296165044422675780963", - "1956296165044422675780963", - "982431228135658405377879" + "19562961650444228112853856", + "19562961650444228112853856", + "9824312281356585633547020" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2235767045765054670539212", - "2235767045765054670539212", - "1122778546440752555657908" + "22357670457650545433717342", + "22357670457650545433717342", + "11227785464407525945705304" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2515237926485686236121869", - "2515237926485686236121869", - "1263125864745846490410497" + "25152379264856862754580828", + "25152379264856862754580828", + "12631258647458466257863589" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2794708807206318230880117", - "2794708807206318230880117", - "1403473183050940640690525" + "27947088072063180075444314", + "27947088072063180075444314", + "14034731830509406570021874" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -5948,126 +5948,126 @@ "bAssetQtys": [ "39970091636245967", "39970091636245967", - "20072556965831529" + "20072556965831530" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "399700916362459686", - "399700916362459686", - "200725569658315301" + "399700916362459679", + "399700916362459679", + "200725569658315315" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "3997009163624596876", - "3997009163624596876", - "2007255696583153021" + "3997009163624596802", + "3997009163624596802", + "2007255696583153168" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "39970091636245968777", - "39970091636245968777", - "20072556965831530227" + "39970091636245968038", + "39970091636245968038", + "20072556965831531693" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "279470880720631833817400", - "279470880720631833817400", - "140347318305094069457237" + "2794708807206318179214667", + "2794708807206318179214667", + "1403473183050940743213162" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "558941761441263667634802", - "558941761441263667634802", - "280694636610188138914476" + "5589417614412636358429335", + "5589417614412636358429335", + "2806946366101881486426325" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "838412642161895447805254", - "838412642161895447805254", - "421041954915282181430785" + "8384126421618953679292821", + "8384126421618953679292821", + "4210419549152821798584610" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1117883522882527335269605", - "1117883522882527335269605", - "561389273220376277828953" + "11178835228825272716858670", + "11178835228825272716858670", + "5613892732203762972852651" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1397354403603159115440058", - "1397354403603159115440058", - "701736591525470320345262" + "13973544036031590037722156", + "13973544036031590037722156", + "7017365915254703285010936" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1676825284323790895610510", - "1676825284323790895610510", - "842083909830564362861571" + "16768252843237907358585642", + "16768252843237907358585642", + "8420839098305643597169221" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1956296165044422675780963", - "1956296165044422675780963", - "982431228135658405377879" + "19562961650444228112853856", + "19562961650444228112853856", + "9824312281356585633547020" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2235767045765054670539212", - "2235767045765054670539212", - "1122778546440752555657908" + "22357670457650545433717342", + "22357670457650545433717342", + "11227785464407525945705304" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2515237926485686236121869", - "2515237926485686236121869", - "1263125864745846490410497" + "25152379264856862754580828", + "25152379264856862754580828", + "12631258647458466257863589" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2794708807206318230880117", - "2794708807206318230880117", - "1403473183050940640690525" + "27947088072063180075444314", + "27947088072063180075444314", + "14034731830509406570021874" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -6092,135 +6092,135 @@ "bAssetQtys": [ "39970091636245967", "39970091636245967", - "20072556965831529" + "20072556965831530" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "399700916362459686", - "399700916362459686", - "200725569658315301" + "399700916362459679", + "399700916362459679", + "200725569658315315" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "3997009163624596876", - "3997009163624596876", - "2007255696583153021" + "3997009163624596802", + "3997009163624596802", + "2007255696583153168" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "39970091636245968777", - "39970091636245968777", - "20072556965831530227" + "39970091636245968038", + "39970091636245968038", + "20072556965831531693" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "279470880720631833817400", - "279470880720631833817400", - "140347318305094069457237" + "2794708807206318179214667", + "2794708807206318179214667", + "1403473183050940743213162" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "558941761441263667634802", - "558941761441263667634802", - "280694636610188138914476" + "5589417614412636358429335", + "5589417614412636358429335", + "2806946366101881486426325" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "838412642161895447805254", - "838412642161895447805254", - "421041954915282181430785" + "8384126421618953679292821", + "8384126421618953679292821", + "4210419549152821798584610" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "1117883522882527335269605", - "1117883522882527335269605", - "561389273220376277828953" + "11178835228825272716858670", + "11178835228825272716858670", + "5613892732203762972852651" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "1397354403603159115440058", - "1397354403603159115440058", - "701736591525470320345262" + "13973544036031590037722156", + "13973544036031590037722156", + "7017365915254703285010936" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "1676825284323790895610510", - "1676825284323790895610510", - "842083909830564362861571" + "16768252843237907358585642", + "16768252843237907358585642", + "8420839098305643597169221" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "1956296165044422675780963", - "1956296165044422675780963", - "982431228135658405377879" + "19562961650444228112853856", + "19562961650444228112853856", + "9824312281356585633547020" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "2235767045765054670539212", - "2235767045765054670539212", - "1122778546440752555657908" + "22357670457650545433717342", + "22357670457650545433717342", + "11227785464407525945705304" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "2515237926485686236121869", - "2515237926485686236121869", - "1263125864745846490410497" + "25152379264856862754580828", + "25152379264856862754580828", + "12631258647458466257863589" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "2794708807206318230880117", - "2794708807206318230880117", - "1403473183050940640690525" + "27947088072063180075444314", + "27947088072063180075444314", + "14034731830509406570021874" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "5005000000000000031457280", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "redemptionFeeRate": 300000000000000, @@ -6246,128 +6246,128 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "75686844734430211", + "75686844734430212", "5055891329940916", - "20274073724658181" + "20274073724658180" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "756868447344302121", - "50558913299409169", - "202740737246581828" + "756868447344302137", + "50558913299409171", + "202740737246581812" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "7568684473443021227", - "505589132994091707", - "2027407372465818297" + "7568684473443021381", + "505589132994091719", + "2027407372465818136" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "75686844734430212281", - "5055891329940917082", - "20274073724658182988" + "75686844734430213822", + "5055891329940917201", + "20274073724658181376" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "529202418383136082376241", - "35350792178946894792032", - "141756323482810025669551" + "5292024183831360728291837", + "353507921789468942666430", + "1417563234828100089555120" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "1058404836766272164752484", - "70701584357893789584065", - "283512646965620051339103" + "10584048367662721456583675", + "707015843578937885332862", + "2835126469656200179110242" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1587607255149408145543562", - "106052376536840677590196", - "425268970448430049797253" + "15876072551494080559512899", + "1060523765368406719424854", + "4252689704484299833282945" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "2116809673532544329504969", - "141403168715787579168132", - "567025293931240102678207" + "21168096735325442913167351", + "1414031687157875770665725", + "5670252939312400358220485" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "2646012091915680310296047", - "176753960894734467174262", - "708781617414050101136357" + "26460120919156802016096575", + "1767539608947344604757717", + "7087816174140500012393188" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "3175214510298816291087126", - "212104753073681355180393", - "850537940896860099594508" + "31752145102988161119025798", + "2121047530736813438849709", + "8505379408968599666565892" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "3704416928681952271878205", - "247455545252628243186524", - "992294264379670098052659" + "37044169286819526723405479", + "2474555452526282707239460", + "9922942643796701062268267" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "4233619347065088659009938", - "282806337431575158336265", - "1134050587862480205356415" + "42336193470650885826334703", + "2828063374315751541331452", + "11340505878624800716440971" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "4762821765448224233460363", - "318157129610522019198786", - "1275806911345290094968961" + "47628217654482244929263927", + "3181571296105220375423444", + "12758069113452900370613675" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "5292024183831360620592095", - "353507921789468934348526", - "1417563234828100202272716" + "52920241838313604032193151", + "3535079217894689209515436", + "14175632348281000024786378" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -6390,128 +6390,128 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "75686844734430211", + "75686844734430212", "5055891329940916", - "20274073724658181" + "20274073724658180" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "756868447344302121", - "50558913299409169", - "202740737246581828" + "756868447344302137", + "50558913299409171", + "202740737246581812" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "7568684473443021227", - "505589132994091707", - "2027407372465818297" + "7568684473443021381", + "505589132994091719", + "2027407372465818136" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "75686844734430212281", - "5055891329940917082", - "20274073724658182988" + "75686844734430213822", + "5055891329940917201", + "20274073724658181376" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "529202418383136082376241", - "35350792178946894792032", - "141756323482810025669551" + "5292024183831360728291837", + "353507921789468942666430", + "1417563234828100089555120" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "1058404836766272164752484", - "70701584357893789584065", - "283512646965620051339103" + "10584048367662721456583675", + "707015843578937885332862", + "2835126469656200179110242" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1587607255149408145543562", - "106052376536840677590196", - "425268970448430049797253" + "15876072551494080559512899", + "1060523765368406719424854", + "4252689704484299833282945" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "2116809673532544329504969", - "141403168715787579168132", - "567025293931240102678207" + "21168096735325442913167351", + "1414031687157875770665725", + "5670252939312400358220485" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "2646012091915680310296047", - "176753960894734467174262", - "708781617414050101136357" + "26460120919156802016096575", + "1767539608947344604757717", + "7087816174140500012393188" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "3175214510298816291087126", - "212104753073681355180393", - "850537940896860099594508" + "31752145102988161119025798", + "2121047530736813438849709", + "8505379408968599666565892" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "3704416928681952271878205", - "247455545252628243186524", - "992294264379670098052659" + "37044169286819526723405479", + "2474555452526282707239460", + "9922942643796701062268267" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "4233619347065088659009938", - "282806337431575158336265", - "1134050587862480205356415" + "42336193470650885826334703", + "2828063374315751541331452", + "11340505878624800716440971" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "4762821765448224233460363", - "318157129610522019198786", - "1275806911345290094968961" + "47628217654482244929263927", + "3181571296105220375423444", + "12758069113452900370613675" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "5292024183831360620592095", - "353507921789468934348526", - "1417563234828100202272716" + "52920241838313604032193151", + "3535079217894689209515436", + "14175632348281000024786378" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" }, { "mAssetQty": "10000000000000", @@ -6534,128 +6534,128 @@ { "mAssetQty": "100000000000000000", "bAssetQtys": [ - "75686844734430211", + "75686844734430212", "5055891329940916", - "20274073724658181" + "20274073724658180" ], "redemptionFee": "30000000000000" }, { "mAssetQty": "1000000000000000000", "bAssetQtys": [ - "756868447344302121", - "50558913299409169", - "202740737246581828" + "756868447344302137", + "50558913299409171", + "202740737246581812" ], "redemptionFee": "300000000000000" }, { "mAssetQty": "10000000000000000000", "bAssetQtys": [ - "7568684473443021227", - "505589132994091707", - "2027407372465818297" + "7568684473443021381", + "505589132994091719", + "2027407372465818136" ], "redemptionFee": "3000000000000000" }, { "mAssetQty": "100000000000000000000", "bAssetQtys": [ - "75686844734430212281", - "5055891329940917082", - "20274073724658182988" + "75686844734430213822", + "5055891329940917201", + "20274073724658181376" ], "redemptionFee": "30000000000000000" }, { - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "bAssetQtys": [ - "529202418383136082376241", - "35350792178946894792032", - "141756323482810025669551" + "5292024183831360728291837", + "353507921789468942666430", + "1417563234828100089555120" ], - "redemptionFee": "209760000000000015099" + "redemptionFee": "2097600000000000070464" }, { - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "bAssetQtys": [ - "1058404836766272164752484", - "70701584357893789584065", - "283512646965620051339103" + "10584048367662721456583675", + "707015843578937885332862", + "2835126469656200179110242" ], - "redemptionFee": "419520000000000030198" + "redemptionFee": "4195200000000000140928" }, { - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "bAssetQtys": [ - "1587607255149408145543562", - "106052376536840677590196", - "425268970448430049797253" + "15876072551494080559512899", + "1060523765368406719424854", + "4252689704484299833282945" ], - "redemptionFee": "629280000000000005033" + "redemptionFee": "6292799999999999567147" }, { - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "bAssetQtys": [ - "2116809673532544329504969", - "141403168715787579168132", - "567025293931240102678207" + "21168096735325442913167351", + "1414031687157875770665725", + "5670252939312400358220485" ], - "redemptionFee": "839040000000000060397" + "redemptionFee": "8390400000000000281857" }, { - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "bAssetQtys": [ - "2646012091915680310296047", - "176753960894734467174262", - "708781617414050101136357" + "26460120919156802016096575", + "1767539608947344604757717", + "7087816174140500012393188" ], - "redemptionFee": "1048800000000000035232" + "redemptionFee": "10487999999999999708076" }, { - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "bAssetQtys": [ - "3175214510298816291087126", - "212104753073681355180393", - "850537940896860099594508" + "31752145102988161119025798", + "2121047530736813438849709", + "8505379408968599666565892" ], - "redemptionFee": "1258560000000000010066" + "redemptionFee": "12585599999999999134295" }, { - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "bAssetQtys": [ - "3704416928681952271878205", - "247455545252628243186524", - "992294264379670098052659" + "37044169286819526723405479", + "2474555452526282707239460", + "9922942643796701062268267" ], - "redemptionFee": "1468319999999999984900" + "redemptionFee": "14683200000000001137495" }, { - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "bAssetQtys": [ - "4233619347065088659009938", - "282806337431575158336265", - "1134050587862480205356415" + "42336193470650885826334703", + "2828063374315751541331452", + "11340505878624800716440971" ], - "redemptionFee": "1678080000000000120795" + "redemptionFee": "16780800000000000563714" }, { - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "bAssetQtys": [ - "4762821765448224233460363", - "318157129610522019198786", - "1275806911345290094968961" + "47628217654482244929263927", + "3181571296105220375423444", + "12758069113452900370613675" ], - "redemptionFee": "1887839999999999934568" + "redemptionFee": "18878399999999999989933" }, { - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "bAssetQtys": [ - "5292024183831360620592095", - "353507921789468934348526", - "1417563234828100202272716" + "52920241838313604032193151", + "3535079217894689209515436", + "14175632348281000024786378" ], - "redemptionFee": "2097600000000000070464" + "redemptionFee": "20975999999999999416152" } ] } diff --git a/test-utils/validator-data/masset/redeemTestData.json b/test-utils/validator-data/masset/redeemTestData.json index 8ec6eb39..9436cb57 100644 --- a/test-utils/validator-data/masset/redeemTestData.json +++ b/test-utils/validator-data/masset/redeemTestData.json @@ -1,10 +1,10 @@ [ { - "reserve0": "5503000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "5005000000000000031457280", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -19,190 +19,190 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "1016450762869405", + "outputQty": "1016450762871059", "swapFee": "600000000000", - "priceReceived": 0.9838154847530783 + "priceReceived": 0.9838154847514775 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "101645076268747784", + "outputQty": "101645076285286626", "swapFee": "60000000000000", - "priceReceived": 0.9838154849291644 + "priceReceived": 0.9838154847690861 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "1016450761033593659", + "outputQty": "1016450762687477840", "swapFee": "600000000000000", - "priceReceived": 0.9838154865299471 + "priceReceived": 0.9838154849291644 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "10164507444947540299", + "outputQty": "10164507610335936604", "swapFee": "6000000000000000", - "priceReceived": 0.9838155025377731 + "priceReceived": 0.9838154865299471 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "101645057910657481556", + "outputQty": "101645074449475403044", "swapFee": "60000000000000000", - "priceReceived": 0.9838156626158506 + "priceReceived": 0.9838155025377731 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", - "outputQty": "709811194731357498535926", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7098111947313574716357553", + "swapFee": "4195200000000000140928", "priceReceived": 0.9850506799412012 }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1417856802946775499008223", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14178568029467754453421430", + "swapFee": "8390400000000000281857", "priceReceived": 0.9862773145311023 }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2124117621986889874550225", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21241176219868897130462969", + "swapFee": "12585599999999999134295", "priceReceived": 0.987515935222982 }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2828453206635174009338277", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28284532066351739027267067", + "swapFee": "16780800000000000563714", "priceReceived": 0.9888090046669609 }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3530389470952646920936233", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35303894709526467078527380", + "swapFee": "20975999999999999416152", "priceReceived": 0.9902590149796229 }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4228234336159812906095991", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42282343361598125897052126", + "swapFee": "25171199999999998268591", "priceReceived": 0.9921872030891704 }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 1, "mAssetQty": "10000000000000", - "outputQty": "8741464880681", + "outputQty": "8741464880698", "swapFee": "6000000000", - "priceReceived": 1.1439730224279017 + "priceReceived": 1.1439730224256768 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "874146487884345", + "outputQty": "874146488051427", "swapFee": "600000000000", - "priceReceived": 1.143973022668377 + "priceReceived": 1.143973022449721 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "87414646950531602", + "outputQty": "87414648621352497", "swapFee": "60000000000000", - "priceReceived": 1.14397304672054 + "priceReceived": 1.1439730248549362 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "874146302423016603", + "outputQty": "874146469505316022", "swapFee": "600000000000000", - "priceReceived": 1.1439732653768984 + "priceReceived": 1.14397304672054 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "8741446315790339457", + "outputQty": "8741463024230166031", "swapFee": "6000000000000000", - "priceReceived": 1.143975451972546 + "priceReceived": 1.1439732653768984 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "87412792104014619454", + "outputQty": "87414463157903394545", "swapFee": "60000000000000000", - "priceReceived": 1.1439973211358763 + "priceReceived": 1.143975451972546 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -215,102 +215,102 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "1010248243395131", + "outputQty": "1010248243396967", "swapFee": "600000000000", - "priceReceived": 0.9898557176791619 + "priceReceived": 0.9898557176773629 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "101024824319319536", + "outputQty": "101024824337677335", "swapFee": "60000000000000", - "priceReceived": 0.9898557178770213 + "priceReceived": 0.989855717697149 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "1010248241357415368", + "outputQty": "1010248243193195369", "swapFee": "600000000000000", - "priceReceived": 0.9898557196757449 + "priceReceived": 0.9898557178770213 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "10102482229996021343", + "outputQty": "10102482413574153677", "swapFee": "6000000000000000", - "priceReceived": 0.989855737662994 + "priceReceived": 0.9898557196757449 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "101024803942014778472", + "outputQty": "101024822299960213375", "swapFee": "60000000000000000", - "priceReceived": 0.9898559175368161 + "priceReceived": 0.989855737662994 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", - "outputQty": "705304582913346103367752", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7053045829133460758889939", + "swapFee": "4195200000000000140928", "priceReceived": 0.9913447564906919 }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1408072410479239344834297", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14080724104792392899337658", + "swapFee": "8390400000000000281857", "priceReceived": 0.9931307435560454 }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2106940933929894641926187", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21069409339298944794749637", + "swapFee": "12585599999999999134295", "priceReceived": 0.9955665895614493 }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "5005000000000000031457280", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -325,178 +325,178 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "985223553389812", + "outputQty": "985223553401317", "swapFee": "600000000000", - "priceReceived": 1.0149980647126708 + "priceReceived": 1.0149980647008183 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "98522355212417833", + "outputQty": "98522355327475428", "swapFee": "60000000000000", - "priceReceived": 1.0149980660165534 + "priceReceived": 1.0149980648312058 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "985223540618413979", + "outputQty": "985223552124178321", "swapFee": "600000000000000", - "priceReceived": 1.0149980778700345 + "priceReceived": 1.0149980660165534 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "9852234255602968696", + "outputQty": "9852235406184139738", "swapFee": "6000000000000000", - "priceReceived": 1.014998196405348 + "priceReceived": 1.0149980778700345 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "98522227493176110124", + "outputQty": "98522342556029686443", "swapFee": "60000000000000000", - "priceReceived": 1.014999381808803 + "priceReceived": 1.014998196405348 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 1, "mAssetQty": "10000000000000", - "outputQty": "8317044958106", + "outputQty": "8317044958126", "swapFee": "6000000000", - "priceReceived": 1.202350119588298 + "priceReceived": 1.2023501195854067 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "831704495589349", + "outputQty": "831704495790517", "swapFee": "600000000000", - "priceReceived": 1.2023501199081486 + "priceReceived": 1.202350119617331 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "83170447346076645", + "outputQty": "83170449357766001", "swapFee": "60000000000000", - "priceReceived": 1.202350151898242 + "priceReceived": 1.2023501228163382 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "831704272291620904", + "outputQty": "831704473460766447", "swapFee": "600000000000000", - "priceReceived": 1.2023504427176603 + "priceReceived": 1.202350151898242 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "8317022605791788171", + "outputQty": "8317042722916209035", "swapFee": "6000000000000000", - "priceReceived": 1.202353350949921 + "priceReceived": 1.2023504427176603 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "83168214135594263901", + "outputQty": "83170226057917881648", "swapFee": "60000000000000000", - "priceReceived": 1.2023824370806355 + "priceReceived": 1.202353350949921 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -509,116 +509,116 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "1031536482876419", + "outputQty": "1031536482879263", "swapFee": "600000000000", - "priceReceived": 0.9694276611637815 + "priceReceived": 0.9694276611611087 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "103153648256347236", + "outputQty": "103153648284796902", "swapFee": "60000000000000", - "priceReceived": 0.9694276614578856 + "priceReceived": 0.9694276611905185 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "1031536479718505769", + "outputQty": "1031536482563472361", "swapFee": "600000000000000", - "priceReceived": 0.9694276641315568 + "priceReceived": 0.9694276614578856 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "10315364512688477585", + "outputQty": "10315364797185057705", "swapFee": "6000000000000000", - "priceReceived": 0.9694276908682614 + "priceReceived": 0.9694276641315568 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "103153616677305760855", + "outputQty": "103153645126884776012", "swapFee": "60000000000000000", - "priceReceived": 0.9694279582346474 + "priceReceived": 0.9694276908682614 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", - "outputQty": "719735295724774695853497", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7197352957247746692863715", + "swapFee": "4195200000000000140928", "priceReceived": 0.9714682663935558 }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1436562510306433132366436", - "swapFee": "839040000000000060397", - "priceReceived": 0.9734348418306611 + "mAssetQty": "13984000000000000469762048", + "outputQty": "14365625103064330792606474", + "swapFee": "8390400000000000281857", + "priceReceived": 0.973434841830661 }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2150665089589668874928626", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21506650895896687132118871", + "swapFee": "12585599999999999134295", "priceReceived": 0.975326195674756 }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2862225880440749949280956", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28622258804407498431703261", + "swapFee": "16780800000000000563714", "priceReceived": 0.9771416082539667 }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3571424149396287304299315", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35714241493962870901681763", + "swapFee": "20975999999999999416152", "priceReceived": 0.9788812120204101 }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4278428870450291387040727", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42784288704502910654070172", + "swapFee": "25171199999999998268591", "priceReceived": 0.980546861249669 }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", - "outputQty": "4983381031041406904758446", - "swapFee": "2936639999999999969801", + "mAssetQty": "48944000000000003791650816", + "outputQty": "49833810310414073409637533", + "swapFee": "29366400000000002274990", "priceReceived": 0.9821444456108924 }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", - "outputQty": "5686335360077022575227123", - "swapFee": "3356160000000000241591", + "mAssetQty": "55936000000000001879048192", + "outputQty": "56863353600770223635906344", + "swapFee": "33561600000000001127428", "priceReceived": 0.9836915422315566 }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", - "outputQty": "6386983946516870516850932", - "swapFee": "3775679999999999869137", + "mAssetQty": "62927999999999999966445568", + "outputQty": "63869839465168707357916789", + "swapFee": "37756799999999999979867", "priceReceived": 0.9852537680843501 }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", - "outputQty": "7081669723679473743584718", - "swapFee": "4195200000000000140928", + "mAssetQty": "69919999999999998053842944", + "outputQty": "70816697236794733290057049", + "swapFee": "41951999999999998832305", "priceReceived": 0.9873377710090547 } ] }, { - "reserve0": "5503000000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "39964999999999992615927808", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -633,98 +633,98 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "1016450762869405", + "outputQty": "1016450762871059", "swapFee": "600000000000", - "priceReceived": 0.9838154847530783 + "priceReceived": 0.9838154847514775 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "101645076268747784", + "outputQty": "101645076285286626", "swapFee": "60000000000000", - "priceReceived": 0.9838154849291644 + "priceReceived": 0.9838154847690861 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "1016450761033593659", + "outputQty": "1016450762687477840", "swapFee": "600000000000000", - "priceReceived": 0.9838154865299471 + "priceReceived": 0.9838154849291644 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "10164507444947540299", + "outputQty": "10164507610335936604", "swapFee": "6000000000000000", - "priceReceived": 0.9838155025377731 + "priceReceived": 0.9838154865299471 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "101645057910657481556", + "outputQty": "101645074449475403044", "swapFee": "60000000000000000", - "priceReceived": 0.9838156626158506 + "priceReceived": 0.9838155025377731 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", - "outputQty": "709811194731357498535926", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7098111947313574716357553", + "swapFee": "4195200000000000140928", "priceReceived": 0.9850506799412012 }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1417856802946775499008223", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14178568029467754453421430", + "swapFee": "8390400000000000281857", "priceReceived": 0.9862773145311023 }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2124117621986889874550225", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21241176219868897130462969", + "swapFee": "12585599999999999134295", "priceReceived": 0.987515935222982 }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2828453206635174009338277", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28284532066351739027267067", + "swapFee": "16780800000000000563714", "priceReceived": 0.9888090046669609 }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3530389470952646920936233", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35303894709526467078527380", + "swapFee": "20975999999999999416152", "priceReceived": 0.9902590149796229 }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4228234336159812906095991", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42282343361598125897052126", + "swapFee": "25171199999999998268591", "priceReceived": 0.9921872030891704 }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -737,194 +737,194 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "1010248243395131", + "outputQty": "1010248243396967", "swapFee": "600000000000", - "priceReceived": 0.9898557176791619 + "priceReceived": 0.9898557176773629 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "101024824319319536", + "outputQty": "101024824337677335", "swapFee": "60000000000000", - "priceReceived": 0.9898557178770213 + "priceReceived": 0.989855717697149 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "1010248241357415368", + "outputQty": "1010248243193195369", "swapFee": "600000000000000", - "priceReceived": 0.9898557196757449 + "priceReceived": 0.9898557178770213 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "10102482229996021343", + "outputQty": "10102482413574153677", "swapFee": "6000000000000000", - "priceReceived": 0.989855737662994 + "priceReceived": 0.9898557196757449 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "101024803942014778472", + "outputQty": "101024822299960213375", "swapFee": "60000000000000000", - "priceReceived": 0.9898559175368161 + "priceReceived": 0.989855737662994 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", - "outputQty": "705304582913346103367752", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7053045829133460758889939", + "swapFee": "4195200000000000140928", "priceReceived": 0.9913447564906919 }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1408072410479239344834297", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14080724104792392899337658", + "swapFee": "8390400000000000281857", "priceReceived": 0.9931307435560454 }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2106940933929894641926187", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21069409339298944794749637", + "swapFee": "12585599999999999134295", "priceReceived": 0.9955665895614493 }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 2, "mAssetQty": "10000000000000", - "outputQty": "8741464880681", + "outputQty": "8741464880698", "swapFee": "6000000000", - "priceReceived": 1.1439730224279017 + "priceReceived": 1.1439730224256768 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "874146487884345", + "outputQty": "874146488051427", "swapFee": "600000000000", - "priceReceived": 1.143973022668377 + "priceReceived": 1.143973022449721 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "87414646950531602", + "outputQty": "87414648621352497", "swapFee": "60000000000000", - "priceReceived": 1.14397304672054 + "priceReceived": 1.1439730248549362 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "874146302423016603", + "outputQty": "874146469505316022", "swapFee": "600000000000000", - "priceReceived": 1.1439732653768984 + "priceReceived": 1.14397304672054 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "8741446315790339457", + "outputQty": "8741463024230166031", "swapFee": "6000000000000000", - "priceReceived": 1.143975451972546 + "priceReceived": 1.1439732653768984 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "87412792104014619454", + "outputQty": "87414463157903394545", "swapFee": "60000000000000000", - "priceReceived": 1.1439973211358763 + "priceReceived": 1.143975451972546 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "2007000000000000960000000", - "reserve1": "3996499999999999360000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "20070000000000010942939136", + "reserve1": "39964999999999992615927808", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -939,90 +939,90 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "993576159043733", + "outputQty": "993576159046772", "swapFee": "600000000000", - "priceReceived": 1.0064653734872722 + "priceReceived": 1.0064653734841937 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "99357615870945108", + "outputQty": "99357615901334428", "swapFee": "60000000000000", - "priceReceived": 1.0064653738258904 + "priceReceived": 1.006465373518055 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "993576155670517734", + "outputQty": "993576158709451080", "swapFee": "600000000000000", - "priceReceived": 1.0064653769042466 + "priceReceived": 1.0064653738258904 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "9935761252810493721", + "outputQty": "9935761556705177358", "swapFee": "6000000000000000", - "priceReceived": 1.006465407687945 + "priceReceived": 1.0064653769042466 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "99357582137287342596", + "outputQty": "99357612528104937336", "swapFee": "60000000000000000", - "priceReceived": 1.0064657155386993 + "priceReceived": 1.006465407687945 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", - "outputQty": "692277120953961843804569", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "6922771209539618188729805", + "swapFee": "4195200000000000140928", "priceReceived": 1.01000015577071 }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1370416125300544307124714", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "13704161253005442650613887", + "swapFee": "8390400000000000281857", "priceReceived": 1.0204199835238503 }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -1035,96 +1035,96 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "1001409270552820", + "outputQty": "1001409270553465", "swapFee": "600000000000", - "priceReceived": 0.9985927126957372 + "priceReceived": 0.9985927126950941 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "100140927048184973", + "outputQty": "100140927054636817", "swapFee": "60000000000000", - "priceReceived": 0.998592712766508 + "priceReceived": 0.998592712702171 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "1001409269836665323", + "outputQty": "1001409270481849734", "swapFee": "600000000000000", - "priceReceived": 0.9985927134098777 + "priceReceived": 0.998592712766508 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "10014092633848165782", + "outputQty": "10014092698366653230", "swapFee": "6000000000000000", - "priceReceived": 0.99859271984358 + "priceReceived": 0.9985927134098777 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "100140919886586598600", + "outputQty": "100140926338481657790", "swapFee": "60000000000000000", - "priceReceived": 0.9985927841810701 + "priceReceived": 0.99859271984358 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", - "outputQty": "699812492593522390954084", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "6998124925935223638805665", + "swapFee": "4195200000000000140928", "priceReceived": 0.9991247761364584 }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1398732791081049832328563", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "13987327910810497782474809", + "swapFee": "8390400000000000281857", "priceReceived": 0.9997620767288994 }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2096274676868418159589052", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "20962746768684179983734094", + "swapFee": "12585599999999999134295", "priceReceived": 1.0006322278021131 }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2790798619219561685672826", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "27907986192195615780073837", + "swapFee": "16780800000000000563714", "priceReceived": 1.0021504169950166 }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3472493299533946121231065", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "34724932995339459127674680", + "swapFee": "20975999999999999416152", "priceReceived": 1.0067694012452693 }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -1137,106 +1137,106 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "1001409270552820", + "outputQty": "1001409270553465", "swapFee": "600000000000", - "priceReceived": 0.9985927126957372 + "priceReceived": 0.9985927126950941 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "100140927048184973", + "outputQty": "100140927054636817", "swapFee": "60000000000000", - "priceReceived": 0.998592712766508 + "priceReceived": 0.998592712702171 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "1001409269836665323", + "outputQty": "1001409270481849734", "swapFee": "600000000000000", - "priceReceived": 0.9985927134098777 + "priceReceived": 0.998592712766508 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "10014092633848165782", + "outputQty": "10014092698366653230", "swapFee": "6000000000000000", - "priceReceived": 0.99859271984358 + "priceReceived": 0.9985927134098777 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "100140919886586598600", + "outputQty": "100140926338481657790", "swapFee": "60000000000000000", - "priceReceived": 0.9985927841810701 + "priceReceived": 0.99859271984358 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", - "outputQty": "699812492593522390954084", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "6998124925935223638805665", + "swapFee": "4195200000000000140928", "priceReceived": 0.9991247761364584 }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1398732791081049832328563", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "13987327910810497782474809", + "swapFee": "8390400000000000281857", "priceReceived": 0.9997620767288994 }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2096274676868418159589052", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "20962746768684179983734094", + "swapFee": "12585599999999999134295", "priceReceived": 1.0006322278021131 }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2790798619219561685672826", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "27907986192195615780073837", + "swapFee": "16780800000000000563714", "priceReceived": 1.0021504169950166 }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3472493299533946121231065", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "34724932995339459127674680", + "swapFee": "20975999999999999416152", "priceReceived": 1.0067694012452693 }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "74925000000000000232783872", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1251,86 +1251,86 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "985223553389812", + "outputQty": "985223553401317", "swapFee": "600000000000", - "priceReceived": 1.0149980647126708 + "priceReceived": 1.0149980647008183 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "98522355212417833", + "outputQty": "98522355327475428", "swapFee": "60000000000000", - "priceReceived": 1.0149980660165534 + "priceReceived": 1.0149980648312058 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "985223540618413979", + "outputQty": "985223552124178321", "swapFee": "600000000000000", - "priceReceived": 1.0149980778700345 + "priceReceived": 1.0149980660165534 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "9852234255602968696", + "outputQty": "9852235406184139738", "swapFee": "6000000000000000", - "priceReceived": 1.014998196405348 + "priceReceived": 1.0149980778700345 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "98522227493176110124", + "outputQty": "98522342556029686443", "swapFee": "60000000000000000", - "priceReceived": 1.014999381808803 + "priceReceived": 1.014998196405348 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -1343,208 +1343,208 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "1031536482876419", + "outputQty": "1031536482879263", "swapFee": "600000000000", - "priceReceived": 0.9694276611637815 + "priceReceived": 0.9694276611611087 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "103153648256347236", + "outputQty": "103153648284796902", "swapFee": "60000000000000", - "priceReceived": 0.9694276614578856 + "priceReceived": 0.9694276611905185 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "1031536479718505769", + "outputQty": "1031536482563472361", "swapFee": "600000000000000", - "priceReceived": 0.9694276641315568 + "priceReceived": 0.9694276614578856 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "10315364512688477585", + "outputQty": "10315364797185057705", "swapFee": "6000000000000000", - "priceReceived": 0.9694276908682614 + "priceReceived": 0.9694276641315568 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "103153616677305760855", + "outputQty": "103153645126884776012", "swapFee": "60000000000000000", - "priceReceived": 0.9694279582346474 + "priceReceived": 0.9694276908682614 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", - "outputQty": "719735295724774695853497", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7197352957247746692863715", + "swapFee": "4195200000000000140928", "priceReceived": 0.9714682663935558 }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1436562510306433132366436", - "swapFee": "839040000000000060397", - "priceReceived": 0.9734348418306611 + "mAssetQty": "13984000000000000469762048", + "outputQty": "14365625103064330792606474", + "swapFee": "8390400000000000281857", + "priceReceived": 0.973434841830661 }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2150665089589668874928626", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21506650895896687132118871", + "swapFee": "12585599999999999134295", "priceReceived": 0.975326195674756 }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2862225880440749949280956", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28622258804407498431703261", + "swapFee": "16780800000000000563714", "priceReceived": 0.9771416082539667 }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3571424149396287304299315", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35714241493962870901681763", + "swapFee": "20975999999999999416152", "priceReceived": 0.9788812120204101 }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4278428870450291387040727", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42784288704502910654070172", + "swapFee": "25171199999999998268591", "priceReceived": 0.980546861249669 }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", - "outputQty": "4983381031041406904758446", - "swapFee": "2936639999999999969801", + "mAssetQty": "48944000000000003791650816", + "outputQty": "49833810310414073409637533", + "swapFee": "29366400000000002274990", "priceReceived": 0.9821444456108924 }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", - "outputQty": "5686335360077022575227123", - "swapFee": "3356160000000000241591", + "mAssetQty": "55936000000000001879048192", + "outputQty": "56863353600770223635906344", + "swapFee": "33561600000000001127428", "priceReceived": 0.9836915422315566 }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", - "outputQty": "6386983946516870516850932", - "swapFee": "3775679999999999869137", + "mAssetQty": "62927999999999999966445568", + "outputQty": "63869839465168707357916789", + "swapFee": "37756799999999999979867", "priceReceived": 0.9852537680843501 }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", - "outputQty": "7081669723679473743584718", - "swapFee": "4195200000000000140928", + "mAssetQty": "69919999999999998053842944", + "outputQty": "70816697236794733290057049", + "swapFee": "41951999999999998832305", "priceReceived": 0.9873377710090547 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000", - "outputQty": "8317044958106", + "outputQty": "8317044958126", "swapFee": "6000000000", - "priceReceived": 1.202350119588298 + "priceReceived": 1.2023501195854067 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "831704495589349", + "outputQty": "831704495790517", "swapFee": "600000000000", - "priceReceived": 1.2023501199081486 + "priceReceived": 1.202350119617331 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "83170447346076645", + "outputQty": "83170449357766001", "swapFee": "60000000000000", - "priceReceived": 1.202350151898242 + "priceReceived": 1.2023501228163382 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "831704272291620904", + "outputQty": "831704473460766447", "swapFee": "600000000000000", - "priceReceived": 1.2023504427176603 + "priceReceived": 1.202350151898242 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "8317022605791788171", + "outputQty": "8317042722916209035", "swapFee": "6000000000000000", - "priceReceived": 1.202353350949921 + "priceReceived": 1.2023504427176603 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "83168214135594263901", + "outputQty": "83170226057917881648", "swapFee": "60000000000000000", - "priceReceived": 1.2023824370806355 + "priceReceived": 1.202353350949921 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "5503000000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "55030000000000001379926016", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1552,93 +1552,93 @@ { "bAssetIndex": 0, "mAssetQty": "10000000000000", - "outputQty": "8741464880681", + "outputQty": "8741464880698", "swapFee": "6000000000", - "priceReceived": 1.1439730224279017 + "priceReceived": 1.1439730224256768 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "874146487884345", + "outputQty": "874146488051427", "swapFee": "600000000000", - "priceReceived": 1.143973022668377 + "priceReceived": 1.143973022449721 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "87414646950531602", + "outputQty": "87414648621352497", "swapFee": "60000000000000", - "priceReceived": 1.14397304672054 + "priceReceived": 1.1439730248549362 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "874146302423016603", + "outputQty": "874146469505316022", "swapFee": "600000000000000", - "priceReceived": 1.1439732653768984 + "priceReceived": 1.14397304672054 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "8741446315790339457", + "outputQty": "8741463024230166031", "swapFee": "6000000000000000", - "priceReceived": 1.143975451972546 + "priceReceived": 1.1439732653768984 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "87412792104014619454", + "outputQty": "87414463157903394545", "swapFee": "60000000000000000", - "priceReceived": 1.1439973211358763 + "priceReceived": 1.143975451972546 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -1651,98 +1651,98 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "1016450762869405", + "outputQty": "1016450762871059", "swapFee": "600000000000", - "priceReceived": 0.9838154847530783 + "priceReceived": 0.9838154847514775 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "101645076268747784", + "outputQty": "101645076285286626", "swapFee": "60000000000000", - "priceReceived": 0.9838154849291644 + "priceReceived": 0.9838154847690861 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "1016450761033593659", + "outputQty": "1016450762687477840", "swapFee": "600000000000000", - "priceReceived": 0.9838154865299471 + "priceReceived": 0.9838154849291644 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "10164507444947540299", + "outputQty": "10164507610335936604", "swapFee": "6000000000000000", - "priceReceived": 0.9838155025377731 + "priceReceived": 0.9838154865299471 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "101645057910657481556", + "outputQty": "101645074449475403044", "swapFee": "60000000000000000", - "priceReceived": 0.9838156626158506 + "priceReceived": 0.9838155025377731 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", - "outputQty": "709811194731357498535926", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7098111947313574716357553", + "swapFee": "4195200000000000140928", "priceReceived": 0.9850506799412012 }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1417856802946775499008223", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14178568029467754453421430", + "swapFee": "8390400000000000281857", "priceReceived": 0.9862773145311023 }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2124117621986889874550225", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21241176219868897130462969", + "swapFee": "12585599999999999134295", "priceReceived": 0.987515935222982 }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2828453206635174009338277", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28284532066351739027267067", + "swapFee": "16780800000000000563714", "priceReceived": 0.9888090046669609 }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3530389470952646920936233", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35303894709526467078527380", + "swapFee": "20975999999999999416152", "priceReceived": 0.9902590149796229 }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4228234336159812906095991", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42282343361598125897052126", + "swapFee": "25171199999999998268591", "priceReceived": 0.9921872030891704 }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -1755,102 +1755,102 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "1010248243395131", + "outputQty": "1010248243396967", "swapFee": "600000000000", - "priceReceived": 0.9898557176791619 + "priceReceived": 0.9898557176773629 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "101024824319319536", + "outputQty": "101024824337677335", "swapFee": "60000000000000", - "priceReceived": 0.9898557178770213 + "priceReceived": 0.989855717697149 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "1010248241357415368", + "outputQty": "1010248243193195369", "swapFee": "600000000000000", - "priceReceived": 0.9898557196757449 + "priceReceived": 0.9898557178770213 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "10102482229996021343", + "outputQty": "10102482413574153677", "swapFee": "6000000000000000", - "priceReceived": 0.989855737662994 + "priceReceived": 0.9898557196757449 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "101024803942014778472", + "outputQty": "101024822299960213375", "swapFee": "60000000000000000", - "priceReceived": 0.9898559175368161 + "priceReceived": 0.989855737662994 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", - "outputQty": "705304582913346103367752", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7053045829133460758889939", + "swapFee": "4195200000000000140928", "priceReceived": 0.9913447564906919 }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1408072410479239344834297", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14080724104792392899337658", + "swapFee": "8390400000000000281857", "priceReceived": 0.9931307435560454 }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2106940933929894641926187", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21069409339298944794749637", + "swapFee": "12585599999999999134295", "priceReceived": 0.9955665895614493 }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "20069999999999998058037248", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1858,93 +1858,93 @@ { "bAssetIndex": 0, "mAssetQty": "10000000000000", - "outputQty": "8317044958106", + "outputQty": "8317044958126", "swapFee": "6000000000", - "priceReceived": 1.202350119588298 + "priceReceived": 1.2023501195854067 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "831704495589349", + "outputQty": "831704495790517", "swapFee": "600000000000", - "priceReceived": 1.2023501199081486 + "priceReceived": 1.202350119617331 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "83170447346076645", + "outputQty": "83170449357766001", "swapFee": "60000000000000", - "priceReceived": 1.202350151898242 + "priceReceived": 1.2023501228163382 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "831704272291620904", + "outputQty": "831704473460766447", "swapFee": "600000000000000", - "priceReceived": 1.2023504427176603 + "priceReceived": 1.202350151898242 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "8317022605791788171", + "outputQty": "8317042722916209035", "swapFee": "6000000000000000", - "priceReceived": 1.202353350949921 + "priceReceived": 1.2023504427176603 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "83168214135594263901", + "outputQty": "83170226057917881648", "swapFee": "60000000000000000", - "priceReceived": 1.2023824370806355 + "priceReceived": 1.202353350949921 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -1957,86 +1957,86 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "985223553389812", + "outputQty": "985223553401317", "swapFee": "600000000000", - "priceReceived": 1.0149980647126708 + "priceReceived": 1.0149980647008183 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "98522355212417833", + "outputQty": "98522355327475428", "swapFee": "60000000000000", - "priceReceived": 1.0149980660165534 + "priceReceived": 1.0149980648312058 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "985223540618413979", + "outputQty": "985223552124178321", "swapFee": "600000000000000", - "priceReceived": 1.0149980778700345 + "priceReceived": 1.0149980660165534 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "9852234255602968696", + "outputQty": "9852235406184139738", "swapFee": "6000000000000000", - "priceReceived": 1.014998196405348 + "priceReceived": 1.0149980778700345 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "98522227493176110124", + "outputQty": "98522342556029686443", "swapFee": "60000000000000000", - "priceReceived": 1.014999381808803 + "priceReceived": 1.014998196405348 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -2049,116 +2049,116 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "1031536482876419", + "outputQty": "1031536482879263", "swapFee": "600000000000", - "priceReceived": 0.9694276611637815 + "priceReceived": 0.9694276611611087 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "103153648256347236", + "outputQty": "103153648284796902", "swapFee": "60000000000000", - "priceReceived": 0.9694276614578856 + "priceReceived": 0.9694276611905185 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "1031536479718505769", + "outputQty": "1031536482563472361", "swapFee": "600000000000000", - "priceReceived": 0.9694276641315568 + "priceReceived": 0.9694276614578856 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "10315364512688477585", + "outputQty": "10315364797185057705", "swapFee": "6000000000000000", - "priceReceived": 0.9694276908682614 + "priceReceived": 0.9694276641315568 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "103153616677305760855", + "outputQty": "103153645126884776012", "swapFee": "60000000000000000", - "priceReceived": 0.9694279582346474 + "priceReceived": 0.9694276908682614 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", - "outputQty": "719735295724774695853497", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7197352957247746692863715", + "swapFee": "4195200000000000140928", "priceReceived": 0.9714682663935558 }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1436562510306433132366436", - "swapFee": "839040000000000060397", - "priceReceived": 0.9734348418306611 + "mAssetQty": "13984000000000000469762048", + "outputQty": "14365625103064330792606474", + "swapFee": "8390400000000000281857", + "priceReceived": 0.973434841830661 }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2150665089589668874928626", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21506650895896687132118871", + "swapFee": "12585599999999999134295", "priceReceived": 0.975326195674756 }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2862225880440749949280956", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28622258804407498431703261", + "swapFee": "16780800000000000563714", "priceReceived": 0.9771416082539667 }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3571424149396287304299315", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35714241493962870901681763", + "swapFee": "20975999999999999416152", "priceReceived": 0.9788812120204101 }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4278428870450291387040727", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42784288704502910654070172", + "swapFee": "25171199999999998268591", "priceReceived": 0.980546861249669 }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", - "outputQty": "4983381031041406904758446", - "swapFee": "2936639999999999969801", + "mAssetQty": "48944000000000003791650816", + "outputQty": "49833810310414073409637533", + "swapFee": "29366400000000002274990", "priceReceived": 0.9821444456108924 }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", - "outputQty": "5686335360077022575227123", - "swapFee": "3356160000000000241591", + "mAssetQty": "55936000000000001879048192", + "outputQty": "56863353600770223635906344", + "swapFee": "33561600000000001127428", "priceReceived": 0.9836915422315566 }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", - "outputQty": "6386983946516870516850932", - "swapFee": "3775679999999999869137", + "mAssetQty": "62927999999999999966445568", + "outputQty": "63869839465168707357916789", + "swapFee": "37756799999999999979867", "priceReceived": 0.9852537680843501 }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", - "outputQty": "7081669723679473743584718", - "swapFee": "4195200000000000140928", + "mAssetQty": "69919999999999998053842944", + "outputQty": "70816697236794733290057049", + "swapFee": "41951999999999998832305", "priceReceived": 0.9873377710090547 } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "5503000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "55030000000000001379926016", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2173,92 +2173,92 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "1010248243395131", + "outputQty": "1010248243396967", "swapFee": "600000000000", - "priceReceived": 0.9898557176791619 + "priceReceived": 0.9898557176773629 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "101024824319319536", + "outputQty": "101024824337677335", "swapFee": "60000000000000", - "priceReceived": 0.9898557178770213 + "priceReceived": 0.989855717697149 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "1010248241357415368", + "outputQty": "1010248243193195369", "swapFee": "600000000000000", - "priceReceived": 0.9898557196757449 + "priceReceived": 0.9898557178770213 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "10102482229996021343", + "outputQty": "10102482413574153677", "swapFee": "6000000000000000", - "priceReceived": 0.989855737662994 + "priceReceived": 0.9898557196757449 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "101024803942014778472", + "outputQty": "101024822299960213375", "swapFee": "60000000000000000", - "priceReceived": 0.9898559175368161 + "priceReceived": 0.989855737662994 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", - "outputQty": "705304582913346103367752", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7053045829133460758889939", + "swapFee": "4195200000000000140928", "priceReceived": 0.9913447564906919 }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1408072410479239344834297", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14080724104792392899337658", + "swapFee": "8390400000000000281857", "priceReceived": 0.9931307435560454 }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2106940933929894641926187", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21069409339298944794749637", + "swapFee": "12585599999999999134295", "priceReceived": 0.9955665895614493 }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -2271,200 +2271,200 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "1016450762869405", + "outputQty": "1016450762871059", "swapFee": "600000000000", - "priceReceived": 0.9838154847530783 + "priceReceived": 0.9838154847514775 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "101645076268747784", + "outputQty": "101645076285286626", "swapFee": "60000000000000", - "priceReceived": 0.9838154849291644 + "priceReceived": 0.9838154847690861 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "1016450761033593659", + "outputQty": "1016450762687477840", "swapFee": "600000000000000", - "priceReceived": 0.9838154865299471 + "priceReceived": 0.9838154849291644 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "10164507444947540299", + "outputQty": "10164507610335936604", "swapFee": "6000000000000000", - "priceReceived": 0.9838155025377731 + "priceReceived": 0.9838154865299471 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "101645057910657481556", + "outputQty": "101645074449475403044", "swapFee": "60000000000000000", - "priceReceived": 0.9838156626158506 + "priceReceived": 0.9838155025377731 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", - "outputQty": "709811194731357498535926", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7098111947313574716357553", + "swapFee": "4195200000000000140928", "priceReceived": 0.9850506799412012 }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1417856802946775499008223", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14178568029467754453421430", + "swapFee": "8390400000000000281857", "priceReceived": 0.9862773145311023 }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2124117621986889874550225", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21241176219868897130462969", + "swapFee": "12585599999999999134295", "priceReceived": 0.987515935222982 }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2828453206635174009338277", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28284532066351739027267067", + "swapFee": "16780800000000000563714", "priceReceived": 0.9888090046669609 }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3530389470952646920936233", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35303894709526467078527380", + "swapFee": "20975999999999999416152", "priceReceived": 0.9902590149796229 }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4228234336159812906095991", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42282343361598125897052126", + "swapFee": "25171199999999998268591", "priceReceived": 0.9921872030891704 }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 2, "mAssetQty": "10000000000000", - "outputQty": "8741464880681", + "outputQty": "8741464880698", "swapFee": "6000000000", - "priceReceived": 1.1439730224279017 + "priceReceived": 1.1439730224256768 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "874146487884345", + "outputQty": "874146488051427", "swapFee": "600000000000", - "priceReceived": 1.143973022668377 + "priceReceived": 1.143973022449721 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "87414646950531602", + "outputQty": "87414648621352497", "swapFee": "60000000000000", - "priceReceived": 1.14397304672054 + "priceReceived": 1.1439730248549362 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "874146302423016603", + "outputQty": "874146469505316022", "swapFee": "600000000000000", - "priceReceived": 1.1439732653768984 + "priceReceived": 1.14397304672054 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "8741446315790339457", + "outputQty": "8741463024230166031", "swapFee": "6000000000000000", - "priceReceived": 1.143975451972546 + "priceReceived": 1.1439732653768984 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "87412792104014619454", + "outputQty": "87414463157903394545", "swapFee": "60000000000000000", - "priceReceived": 1.1439973211358763 + "priceReceived": 1.143975451972546 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "2007000000000000960000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "20070000000000010942939136", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2479,96 +2479,96 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "1001409270552820", + "outputQty": "1001409270553465", "swapFee": "600000000000", - "priceReceived": 0.9985927126957372 + "priceReceived": 0.9985927126950941 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "100140927048184973", + "outputQty": "100140927054636817", "swapFee": "60000000000000", - "priceReceived": 0.998592712766508 + "priceReceived": 0.998592712702171 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "1001409269836665323", + "outputQty": "1001409270481849734", "swapFee": "600000000000000", - "priceReceived": 0.9985927134098777 + "priceReceived": 0.998592712766508 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "10014092633848165782", + "outputQty": "10014092698366653230", "swapFee": "6000000000000000", - "priceReceived": 0.99859271984358 + "priceReceived": 0.9985927134098777 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "100140919886586598600", + "outputQty": "100140926338481657790", "swapFee": "60000000000000000", - "priceReceived": 0.9985927841810701 + "priceReceived": 0.99859271984358 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", - "outputQty": "699812492593522390954084", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "6998124925935223638805665", + "swapFee": "4195200000000000140928", "priceReceived": 0.9991247761364584 }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1398732791081049832328563", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "13987327910810497782474809", + "swapFee": "8390400000000000281857", "priceReceived": 0.9997620767288994 }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2096274676868418159589052", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "20962746768684179983734094", + "swapFee": "12585599999999999134295", "priceReceived": 1.0006322278021131 }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2790798619219561685672826", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "27907986192195615780073837", + "swapFee": "16780800000000000563714", "priceReceived": 1.0021504169950166 }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3472493299533946121231065", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "34724932995339459127674680", + "swapFee": "20975999999999999416152", "priceReceived": 1.0067694012452693 }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -2581,90 +2581,90 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "993576159043733", + "outputQty": "993576159046772", "swapFee": "600000000000", - "priceReceived": 1.0064653734872722 + "priceReceived": 1.0064653734841937 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "99357615870945108", + "outputQty": "99357615901334428", "swapFee": "60000000000000", - "priceReceived": 1.0064653738258904 + "priceReceived": 1.006465373518055 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "993576155670517734", + "outputQty": "993576158709451080", "swapFee": "600000000000000", - "priceReceived": 1.0064653769042466 + "priceReceived": 1.0064653738258904 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "9935761252810493721", + "outputQty": "9935761556705177358", "swapFee": "6000000000000000", - "priceReceived": 1.006465407687945 + "priceReceived": 1.0064653769042466 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "99357582137287342596", + "outputQty": "99357612528104937336", "swapFee": "60000000000000000", - "priceReceived": 1.0064657155386993 + "priceReceived": 1.006465407687945 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", - "outputQty": "692277120953961843804569", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "6922771209539618188729805", + "swapFee": "4195200000000000140928", "priceReceived": 1.01000015577071 }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1370416125300544307124714", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "13704161253005442650613887", + "swapFee": "8390400000000000281857", "priceReceived": 1.0204199835238503 }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -2677,106 +2677,106 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "1001409270552820", + "outputQty": "1001409270553465", "swapFee": "600000000000", - "priceReceived": 0.9985927126957372 + "priceReceived": 0.9985927126950941 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "100140927048184973", + "outputQty": "100140927054636817", "swapFee": "60000000000000", - "priceReceived": 0.998592712766508 + "priceReceived": 0.998592712702171 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "1001409269836665323", + "outputQty": "1001409270481849734", "swapFee": "600000000000000", - "priceReceived": 0.9985927134098777 + "priceReceived": 0.998592712766508 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "10014092633848165782", + "outputQty": "10014092698366653230", "swapFee": "6000000000000000", - "priceReceived": 0.99859271984358 + "priceReceived": 0.9985927134098777 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "100140919886586598600", + "outputQty": "100140926338481657790", "swapFee": "60000000000000000", - "priceReceived": 0.9985927841810701 + "priceReceived": 0.99859271984358 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", - "outputQty": "699812492593522390954084", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "6998124925935223638805665", + "swapFee": "4195200000000000140928", "priceReceived": 0.9991247761364584 }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1398732791081049832328563", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "13987327910810497782474809", + "swapFee": "8390400000000000281857", "priceReceived": 0.9997620767288994 }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2096274676868418159589052", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "20962746768684179983734094", + "swapFee": "12585599999999999134295", "priceReceived": 1.0006322278021131 }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2790798619219561685672826", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "27907986192195615780073837", + "swapFee": "16780800000000000563714", "priceReceived": 1.0021504169950166 }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3472493299533946121231065", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "34724932995339459127674680", + "swapFee": "20975999999999999416152", "priceReceived": 1.0067694012452693 }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "20069999999999998058037248", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2791,106 +2791,106 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "1031536482876419", + "outputQty": "1031536482879263", "swapFee": "600000000000", - "priceReceived": 0.9694276611637815 + "priceReceived": 0.9694276611611087 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "103153648256347236", + "outputQty": "103153648284796902", "swapFee": "60000000000000", - "priceReceived": 0.9694276614578856 + "priceReceived": 0.9694276611905185 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "1031536479718505769", + "outputQty": "1031536482563472361", "swapFee": "600000000000000", - "priceReceived": 0.9694276641315568 + "priceReceived": 0.9694276614578856 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "10315364512688477585", + "outputQty": "10315364797185057705", "swapFee": "6000000000000000", - "priceReceived": 0.9694276908682614 + "priceReceived": 0.9694276641315568 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "103153616677305760855", + "outputQty": "103153645126884776012", "swapFee": "60000000000000000", - "priceReceived": 0.9694279582346474 + "priceReceived": 0.9694276908682614 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", - "outputQty": "719735295724774695853497", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7197352957247746692863715", + "swapFee": "4195200000000000140928", "priceReceived": 0.9714682663935558 }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1436562510306433132366436", - "swapFee": "839040000000000060397", - "priceReceived": 0.9734348418306611 + "mAssetQty": "13984000000000000469762048", + "outputQty": "14365625103064330792606474", + "swapFee": "8390400000000000281857", + "priceReceived": 0.973434841830661 }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2150665089589668874928626", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21506650895896687132118871", + "swapFee": "12585599999999999134295", "priceReceived": 0.975326195674756 }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2862225880440749949280956", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28622258804407498431703261", + "swapFee": "16780800000000000563714", "priceReceived": 0.9771416082539667 }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3571424149396287304299315", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35714241493962870901681763", + "swapFee": "20975999999999999416152", "priceReceived": 0.9788812120204101 }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4278428870450291387040727", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42784288704502910654070172", + "swapFee": "25171199999999998268591", "priceReceived": 0.980546861249669 }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", - "outputQty": "4983381031041406904758446", - "swapFee": "2936639999999999969801", + "mAssetQty": "48944000000000003791650816", + "outputQty": "49833810310414073409637533", + "swapFee": "29366400000000002274990", "priceReceived": 0.9821444456108924 }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", - "outputQty": "5686335360077022575227123", - "swapFee": "3356160000000000241591", + "mAssetQty": "55936000000000001879048192", + "outputQty": "56863353600770223635906344", + "swapFee": "33561600000000001127428", "priceReceived": 0.9836915422315566 }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", - "outputQty": "6386983946516870516850932", - "swapFee": "3775679999999999869137", + "mAssetQty": "62927999999999999966445568", + "outputQty": "63869839465168707357916789", + "swapFee": "37756799999999999979867", "priceReceived": 0.9852537680843501 }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", - "outputQty": "7081669723679473743584718", - "swapFee": "4195200000000000140928", + "mAssetQty": "69919999999999998053842944", + "outputQty": "70816697236794733290057049", + "swapFee": "41951999999999998832305", "priceReceived": 0.9873377710090547 }, { @@ -2903,188 +2903,188 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "985223553389812", + "outputQty": "985223553401317", "swapFee": "600000000000", - "priceReceived": 1.0149980647126708 + "priceReceived": 1.0149980647008183 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "98522355212417833", + "outputQty": "98522355327475428", "swapFee": "60000000000000", - "priceReceived": 1.0149980660165534 + "priceReceived": 1.0149980648312058 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "985223540618413979", + "outputQty": "985223552124178321", "swapFee": "600000000000000", - "priceReceived": 1.0149980778700345 + "priceReceived": 1.0149980660165534 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "9852234255602968696", + "outputQty": "9852235406184139738", "swapFee": "6000000000000000", - "priceReceived": 1.014998196405348 + "priceReceived": 1.0149980778700345 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "98522227493176110124", + "outputQty": "98522342556029686443", "swapFee": "60000000000000000", - "priceReceived": 1.014999381808803 + "priceReceived": 1.014998196405348 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 2, "mAssetQty": "10000000000000", - "outputQty": "8317044958106", + "outputQty": "8317044958126", "swapFee": "6000000000", - "priceReceived": 1.202350119588298 + "priceReceived": 1.2023501195854067 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "831704495589349", + "outputQty": "831704495790517", "swapFee": "600000000000", - "priceReceived": 1.2023501199081486 + "priceReceived": 1.202350119617331 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "83170447346076645", + "outputQty": "83170449357766001", "swapFee": "60000000000000", - "priceReceived": 1.202350151898242 + "priceReceived": 1.2023501228163382 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "831704272291620904", + "outputQty": "831704473460766447", "swapFee": "600000000000000", - "priceReceived": 1.2023504427176603 + "priceReceived": 1.202350151898242 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "8317022605791788171", + "outputQty": "8317042722916209035", "swapFee": "6000000000000000", - "priceReceived": 1.202353350949921 + "priceReceived": 1.2023504427176603 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "83168214135594263901", + "outputQty": "83170226057917881648", "swapFee": "60000000000000000", - "priceReceived": 1.2023824370806355 + "priceReceived": 1.202353350949921 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "39964999999999992615927808", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3092,93 +3092,93 @@ { "bAssetIndex": 0, "mAssetQty": "10000000000000", - "outputQty": "8741464880681", + "outputQty": "8741464880698", "swapFee": "6000000000", - "priceReceived": 1.1439730224279017 + "priceReceived": 1.1439730224256768 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "874146487884345", + "outputQty": "874146488051427", "swapFee": "600000000000", - "priceReceived": 1.143973022668377 + "priceReceived": 1.143973022449721 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "87414646950531602", + "outputQty": "87414648621352497", "swapFee": "60000000000000", - "priceReceived": 1.14397304672054 + "priceReceived": 1.1439730248549362 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "874146302423016603", + "outputQty": "874146469505316022", "swapFee": "600000000000000", - "priceReceived": 1.1439732653768984 + "priceReceived": 1.14397304672054 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "8741446315790339457", + "outputQty": "8741463024230166031", "swapFee": "6000000000000000", - "priceReceived": 1.143975451972546 + "priceReceived": 1.1439732653768984 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "87412792104014619454", + "outputQty": "87414463157903394545", "swapFee": "60000000000000000", - "priceReceived": 1.1439973211358763 + "priceReceived": 1.143975451972546 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -3191,92 +3191,92 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "1010248243395131", + "outputQty": "1010248243396967", "swapFee": "600000000000", - "priceReceived": 0.9898557176791619 + "priceReceived": 0.9898557176773629 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "101024824319319536", + "outputQty": "101024824337677335", "swapFee": "60000000000000", - "priceReceived": 0.9898557178770213 + "priceReceived": 0.989855717697149 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "1010248241357415368", + "outputQty": "1010248243193195369", "swapFee": "600000000000000", - "priceReceived": 0.9898557196757449 + "priceReceived": 0.9898557178770213 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "10102482229996021343", + "outputQty": "10102482413574153677", "swapFee": "6000000000000000", - "priceReceived": 0.989855737662994 + "priceReceived": 0.9898557196757449 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "101024803942014778472", + "outputQty": "101024822299960213375", "swapFee": "60000000000000000", - "priceReceived": 0.9898559175368161 + "priceReceived": 0.989855737662994 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", - "outputQty": "705304582913346103367752", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7053045829133460758889939", + "swapFee": "4195200000000000140928", "priceReceived": 0.9913447564906919 }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1408072410479239344834297", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14080724104792392899337658", + "swapFee": "8390400000000000281857", "priceReceived": 0.9931307435560454 }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2106940933929894641926187", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21069409339298944794749637", + "swapFee": "12585599999999999134295", "priceReceived": 0.9955665895614493 }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -3289,108 +3289,108 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "1016450762869405", + "outputQty": "1016450762871059", "swapFee": "600000000000", - "priceReceived": 0.9838154847530783 + "priceReceived": 0.9838154847514775 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "101645076268747784", + "outputQty": "101645076285286626", "swapFee": "60000000000000", - "priceReceived": 0.9838154849291644 + "priceReceived": 0.9838154847690861 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "1016450761033593659", + "outputQty": "1016450762687477840", "swapFee": "600000000000000", - "priceReceived": 0.9838154865299471 + "priceReceived": 0.9838154849291644 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "10164507444947540299", + "outputQty": "10164507610335936604", "swapFee": "6000000000000000", - "priceReceived": 0.9838155025377731 + "priceReceived": 0.9838154865299471 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "101645057910657481556", + "outputQty": "101645074449475403044", "swapFee": "60000000000000000", - "priceReceived": 0.9838156626158506 + "priceReceived": 0.9838155025377731 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", - "outputQty": "709811194731357498535926", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7098111947313574716357553", + "swapFee": "4195200000000000140928", "priceReceived": 0.9850506799412012 }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1417856802946775499008223", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14178568029467754453421430", + "swapFee": "8390400000000000281857", "priceReceived": 0.9862773145311023 }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2124117621986889874550225", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21241176219868897130462969", + "swapFee": "12585599999999999134295", "priceReceived": 0.987515935222982 }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2828453206635174009338277", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28284532066351739027267067", + "swapFee": "16780800000000000563714", "priceReceived": 0.9888090046669609 }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3530389470952646920936233", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35303894709526467078527380", + "swapFee": "20975999999999999416152", "priceReceived": 0.9902590149796229 }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4228234336159812906095991", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42282343361598125897052126", + "swapFee": "25171199999999998268591", "priceReceived": 0.9921872030891704 }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "74925000000000000232783872", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3398,93 +3398,93 @@ { "bAssetIndex": 0, "mAssetQty": "10000000000000", - "outputQty": "8317044958106", + "outputQty": "8317044958126", "swapFee": "6000000000", - "priceReceived": 1.202350119588298 + "priceReceived": 1.2023501195854067 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "831704495589349", + "outputQty": "831704495790517", "swapFee": "600000000000", - "priceReceived": 1.2023501199081486 + "priceReceived": 1.202350119617331 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "83170447346076645", + "outputQty": "83170449357766001", "swapFee": "60000000000000", - "priceReceived": 1.202350151898242 + "priceReceived": 1.2023501228163382 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "831704272291620904", + "outputQty": "831704473460766447", "swapFee": "600000000000000", - "priceReceived": 1.2023504427176603 + "priceReceived": 1.202350151898242 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "8317022605791788171", + "outputQty": "8317042722916209035", "swapFee": "6000000000000000", - "priceReceived": 1.202353350949921 + "priceReceived": 1.2023504427176603 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "83168214135594263901", + "outputQty": "83170226057917881648", "swapFee": "60000000000000000", - "priceReceived": 1.2023824370806355 + "priceReceived": 1.202353350949921 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -3497,106 +3497,106 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "1031536482876419", + "outputQty": "1031536482879263", "swapFee": "600000000000", - "priceReceived": 0.9694276611637815 + "priceReceived": 0.9694276611611087 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "103153648256347236", + "outputQty": "103153648284796902", "swapFee": "60000000000000", - "priceReceived": 0.9694276614578856 + "priceReceived": 0.9694276611905185 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "1031536479718505769", + "outputQty": "1031536482563472361", "swapFee": "600000000000000", - "priceReceived": 0.9694276641315568 + "priceReceived": 0.9694276614578856 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "10315364512688477585", + "outputQty": "10315364797185057705", "swapFee": "6000000000000000", - "priceReceived": 0.9694276908682614 + "priceReceived": 0.9694276641315568 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "103153616677305760855", + "outputQty": "103153645126884776012", "swapFee": "60000000000000000", - "priceReceived": 0.9694279582346474 + "priceReceived": 0.9694276908682614 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", - "outputQty": "719735295724774695853497", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7197352957247746692863715", + "swapFee": "4195200000000000140928", "priceReceived": 0.9714682663935558 }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1436562510306433132366436", - "swapFee": "839040000000000060397", - "priceReceived": 0.9734348418306611 + "mAssetQty": "13984000000000000469762048", + "outputQty": "14365625103064330792606474", + "swapFee": "8390400000000000281857", + "priceReceived": 0.973434841830661 }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2150665089589668874928626", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21506650895896687132118871", + "swapFee": "12585599999999999134295", "priceReceived": 0.975326195674756 }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2862225880440749949280956", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28622258804407498431703261", + "swapFee": "16780800000000000563714", "priceReceived": 0.9771416082539667 }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3571424149396287304299315", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35714241493962870901681763", + "swapFee": "20975999999999999416152", "priceReceived": 0.9788812120204101 }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4278428870450291387040727", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42784288704502910654070172", + "swapFee": "25171199999999998268591", "priceReceived": 0.980546861249669 }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", - "outputQty": "4983381031041406904758446", - "swapFee": "2936639999999999969801", + "mAssetQty": "48944000000000003791650816", + "outputQty": "49833810310414073409637533", + "swapFee": "29366400000000002274990", "priceReceived": 0.9821444456108924 }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", - "outputQty": "5686335360077022575227123", - "swapFee": "3356160000000000241591", + "mAssetQty": "55936000000000001879048192", + "outputQty": "56863353600770223635906344", + "swapFee": "33561600000000001127428", "priceReceived": 0.9836915422315566 }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", - "outputQty": "6386983946516870516850932", - "swapFee": "3775679999999999869137", + "mAssetQty": "62927999999999999966445568", + "outputQty": "63869839465168707357916789", + "swapFee": "37756799999999999979867", "priceReceived": 0.9852537680843501 }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", - "outputQty": "7081669723679473743584718", - "swapFee": "4195200000000000140928", + "mAssetQty": "69919999999999998053842944", + "outputQty": "70816697236794733290057049", + "swapFee": "41951999999999998832305", "priceReceived": 0.9873377710090547 }, { @@ -3609,96 +3609,96 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "985223553389812", + "outputQty": "985223553401317", "swapFee": "600000000000", - "priceReceived": 1.0149980647126708 + "priceReceived": 1.0149980647008183 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "98522355212417833", + "outputQty": "98522355327475428", "swapFee": "60000000000000", - "priceReceived": 1.0149980660165534 + "priceReceived": 1.0149980648312058 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "985223540618413979", + "outputQty": "985223552124178321", "swapFee": "600000000000000", - "priceReceived": 1.0149980778700345 + "priceReceived": 1.0149980660165534 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "9852234255602968696", + "outputQty": "9852235406184139738", "swapFee": "6000000000000000", - "priceReceived": 1.014998196405348 + "priceReceived": 1.0149980778700345 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "98522227493176110124", + "outputQty": "98522342556029686443", "swapFee": "60000000000000000", - "priceReceived": 1.014999381808803 + "priceReceived": 1.014998196405348 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "500500000000000000000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "5005000000000000031457280", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3713,184 +3713,184 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "1010248243395131", + "outputQty": "1010248243396967", "swapFee": "600000000000", - "priceReceived": 0.9898557176791619 + "priceReceived": 0.9898557176773629 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "101024824319319536", + "outputQty": "101024824337677335", "swapFee": "60000000000000", - "priceReceived": 0.9898557178770213 + "priceReceived": 0.989855717697149 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "1010248241357415368", + "outputQty": "1010248243193195369", "swapFee": "600000000000000", - "priceReceived": 0.9898557196757449 + "priceReceived": 0.9898557178770213 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "10102482229996021343", + "outputQty": "10102482413574153677", "swapFee": "6000000000000000", - "priceReceived": 0.989855737662994 + "priceReceived": 0.9898557196757449 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "101024803942014778472", + "outputQty": "101024822299960213375", "swapFee": "60000000000000000", - "priceReceived": 0.9898559175368161 + "priceReceived": 0.989855737662994 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", - "outputQty": "705304582913346103367752", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7053045829133460758889939", + "swapFee": "4195200000000000140928", "priceReceived": 0.9913447564906919 }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1408072410479239344834297", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14080724104792392899337658", + "swapFee": "8390400000000000281857", "priceReceived": 0.9931307435560454 }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2106940933929894641926187", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21069409339298944794749637", + "swapFee": "12585599999999999134295", "priceReceived": 0.9955665895614493 }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { "bAssetIndex": 1, "mAssetQty": "10000000000000", - "outputQty": "8741464880681", + "outputQty": "8741464880698", "swapFee": "6000000000", - "priceReceived": 1.1439730224279017 + "priceReceived": 1.1439730224256768 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "874146487884345", + "outputQty": "874146488051427", "swapFee": "600000000000", - "priceReceived": 1.143973022668377 + "priceReceived": 1.143973022449721 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "87414646950531602", + "outputQty": "87414648621352497", "swapFee": "60000000000000", - "priceReceived": 1.14397304672054 + "priceReceived": 1.1439730248549362 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "874146302423016603", + "outputQty": "874146469505316022", "swapFee": "600000000000000", - "priceReceived": 1.1439732653768984 + "priceReceived": 1.14397304672054 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "8741446315790339457", + "outputQty": "8741463024230166031", "swapFee": "6000000000000000", - "priceReceived": 1.143975451972546 + "priceReceived": 1.1439732653768984 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "87412792104014619454", + "outputQty": "87414463157903394545", "swapFee": "60000000000000000", - "priceReceived": 1.1439973211358763 + "priceReceived": 1.143975451972546 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -3903,108 +3903,108 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "1016450762869405", + "outputQty": "1016450762871059", "swapFee": "600000000000", - "priceReceived": 0.9838154847530783 + "priceReceived": 0.9838154847514775 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "101645076268747784", + "outputQty": "101645076285286626", "swapFee": "60000000000000", - "priceReceived": 0.9838154849291644 + "priceReceived": 0.9838154847690861 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "1016450761033593659", + "outputQty": "1016450762687477840", "swapFee": "600000000000000", - "priceReceived": 0.9838154865299471 + "priceReceived": 0.9838154849291644 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "10164507444947540299", + "outputQty": "10164507610335936604", "swapFee": "6000000000000000", - "priceReceived": 0.9838155025377731 + "priceReceived": 0.9838154865299471 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "101645057910657481556", + "outputQty": "101645074449475403044", "swapFee": "60000000000000000", - "priceReceived": 0.9838156626158506 + "priceReceived": 0.9838155025377731 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", - "outputQty": "709811194731357498535926", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7098111947313574716357553", + "swapFee": "4195200000000000140928", "priceReceived": 0.9850506799412012 }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1417856802946775499008223", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "14178568029467754453421430", + "swapFee": "8390400000000000281857", "priceReceived": 0.9862773145311023 }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2124117621986889874550225", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21241176219868897130462969", + "swapFee": "12585599999999999134295", "priceReceived": 0.987515935222982 }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2828453206635174009338277", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28284532066351739027267067", + "swapFee": "16780800000000000563714", "priceReceived": 0.9888090046669609 }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3530389470952646920936233", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35303894709526467078527380", + "swapFee": "20975999999999999416152", "priceReceived": 0.9902590149796229 }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4228234336159812906095991", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42282343361598125897052126", + "swapFee": "25171199999999998268591", "priceReceived": 0.9921872030891704 }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "3996499999999999360000000", - "reserve2": "2007000000000000960000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "39964999999999992615927808", + "reserve2": "20070000000000010942939136", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -4019,96 +4019,96 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "1001409270552820", + "outputQty": "1001409270553465", "swapFee": "600000000000", - "priceReceived": 0.9985927126957372 + "priceReceived": 0.9985927126950941 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "100140927048184973", + "outputQty": "100140927054636817", "swapFee": "60000000000000", - "priceReceived": 0.998592712766508 + "priceReceived": 0.998592712702171 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "1001409269836665323", + "outputQty": "1001409270481849734", "swapFee": "600000000000000", - "priceReceived": 0.9985927134098777 + "priceReceived": 0.998592712766508 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "10014092633848165782", + "outputQty": "10014092698366653230", "swapFee": "6000000000000000", - "priceReceived": 0.99859271984358 + "priceReceived": 0.9985927134098777 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "100140919886586598600", + "outputQty": "100140926338481657790", "swapFee": "60000000000000000", - "priceReceived": 0.9985927841810701 + "priceReceived": 0.99859271984358 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", - "outputQty": "699812492593522390954084", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "6998124925935223638805665", + "swapFee": "4195200000000000140928", "priceReceived": 0.9991247761364584 }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1398732791081049832328563", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "13987327910810497782474809", + "swapFee": "8390400000000000281857", "priceReceived": 0.9997620767288994 }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2096274676868418159589052", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "20962746768684179983734094", + "swapFee": "12585599999999999134295", "priceReceived": 1.0006322278021131 }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2790798619219561685672826", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "27907986192195615780073837", + "swapFee": "16780800000000000563714", "priceReceived": 1.0021504169950166 }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3472493299533946121231065", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "34724932995339459127674680", + "swapFee": "20975999999999999416152", "priceReceived": 1.0067694012452693 }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -4121,96 +4121,96 @@ { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "1001409270552820", + "outputQty": "1001409270553465", "swapFee": "600000000000", - "priceReceived": 0.9985927126957372 + "priceReceived": 0.9985927126950941 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "100140927048184973", + "outputQty": "100140927054636817", "swapFee": "60000000000000", - "priceReceived": 0.998592712766508 + "priceReceived": 0.998592712702171 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "1001409269836665323", + "outputQty": "1001409270481849734", "swapFee": "600000000000000", - "priceReceived": 0.9985927134098777 + "priceReceived": 0.998592712766508 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "10014092633848165782", + "outputQty": "10014092698366653230", "swapFee": "6000000000000000", - "priceReceived": 0.99859271984358 + "priceReceived": 0.9985927134098777 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "100140919886586598600", + "outputQty": "100140926338481657790", "swapFee": "60000000000000000", - "priceReceived": 0.9985927841810701 + "priceReceived": 0.99859271984358 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", - "outputQty": "699812492593522390954084", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "6998124925935223638805665", + "swapFee": "4195200000000000140928", "priceReceived": 0.9991247761364584 }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1398732791081049832328563", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "13987327910810497782474809", + "swapFee": "8390400000000000281857", "priceReceived": 0.9997620767288994 }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2096274676868418159589052", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "20962746768684179983734094", + "swapFee": "12585599999999999134295", "priceReceived": 1.0006322278021131 }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2790798619219561685672826", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "27907986192195615780073837", + "swapFee": "16780800000000000563714", "priceReceived": 1.0021504169950166 }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3472493299533946121231065", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "34724932995339459127674680", + "swapFee": "20975999999999999416152", "priceReceived": 1.0067694012452693 }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -4223,100 +4223,100 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "993576159043733", + "outputQty": "993576159046772", "swapFee": "600000000000", - "priceReceived": 1.0064653734872722 + "priceReceived": 1.0064653734841937 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "99357615870945108", + "outputQty": "99357615901334428", "swapFee": "60000000000000", - "priceReceived": 1.0064653738258904 + "priceReceived": 1.006465373518055 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "993576155670517734", + "outputQty": "993576158709451080", "swapFee": "600000000000000", - "priceReceived": 1.0064653769042466 + "priceReceived": 1.0064653738258904 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "9935761252810493721", + "outputQty": "9935761556705177358", "swapFee": "6000000000000000", - "priceReceived": 1.006465407687945 + "priceReceived": 1.0064653769042466 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "99357582137287342596", + "outputQty": "99357612528104937336", "swapFee": "60000000000000000", - "priceReceived": 1.0064657155386993 + "priceReceived": 1.006465407687945 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", - "outputQty": "692277120953961843804569", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "6922771209539618188729805", + "swapFee": "4195200000000000140928", "priceReceived": 1.01000015577071 }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1370416125300544307124714", - "swapFee": "839040000000000060397", + "mAssetQty": "13984000000000000469762048", + "outputQty": "13704161253005442650613887", + "swapFee": "8390400000000000281857", "priceReceived": 1.0204199835238503 }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "5005000000000000031457280", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -4331,198 +4331,198 @@ { "bAssetIndex": 0, "mAssetQty": "1000000000000000", - "outputQty": "1031536482876419", + "outputQty": "1031536482879263", "swapFee": "600000000000", - "priceReceived": 0.9694276611637815 + "priceReceived": 0.9694276611611087 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000", - "outputQty": "103153648256347236", + "outputQty": "103153648284796902", "swapFee": "60000000000000", - "priceReceived": 0.9694276614578856 + "priceReceived": 0.9694276611905185 }, { "bAssetIndex": 0, "mAssetQty": "1000000000000000000", - "outputQty": "1031536479718505769", + "outputQty": "1031536482563472361", "swapFee": "600000000000000", - "priceReceived": 0.9694276641315568 + "priceReceived": 0.9694276614578856 }, { "bAssetIndex": 0, "mAssetQty": "10000000000000000000", - "outputQty": "10315364512688477585", + "outputQty": "10315364797185057705", "swapFee": "6000000000000000", - "priceReceived": 0.9694276908682614 + "priceReceived": 0.9694276641315568 }, { "bAssetIndex": 0, "mAssetQty": "100000000000000000000", - "outputQty": "103153616677305760855", + "outputQty": "103153645126884776012", "swapFee": "60000000000000000", - "priceReceived": 0.9694279582346474 + "priceReceived": 0.9694276908682614 }, { "bAssetIndex": 0, - "mAssetQty": "699200000000000050331648", - "outputQty": "719735295724774695853497", - "swapFee": "419520000000000030198", + "mAssetQty": "6992000000000000234881024", + "outputQty": "7197352957247746692863715", + "swapFee": "4195200000000000140928", "priceReceived": 0.9714682663935558 }, { "bAssetIndex": 0, - "mAssetQty": "1398400000000000100663296", - "outputQty": "1436562510306433132366436", - "swapFee": "839040000000000060397", - "priceReceived": 0.9734348418306611 + "mAssetQty": "13984000000000000469762048", + "outputQty": "14365625103064330792606474", + "swapFee": "8390400000000000281857", + "priceReceived": 0.973434841830661 }, { "bAssetIndex": 0, - "mAssetQty": "2097600000000000016777216", - "outputQty": "2150665089589668874928626", - "swapFee": "1258560000000000010066", + "mAssetQty": "20975999999999998557159424", + "outputQty": "21506650895896687132118871", + "swapFee": "12585599999999999134295", "priceReceived": 0.975326195674756 }, { "bAssetIndex": 0, - "mAssetQty": "2796800000000000201326592", - "outputQty": "2862225880440749949280956", - "swapFee": "1678080000000000120795", + "mAssetQty": "27968000000000000939524096", + "outputQty": "28622258804407498431703261", + "swapFee": "16780800000000000563714", "priceReceived": 0.9771416082539667 }, { "bAssetIndex": 0, - "mAssetQty": "3496000000000000117440512", - "outputQty": "3571424149396287304299315", - "swapFee": "2097600000000000070464", + "mAssetQty": "34959999999999999026921472", + "outputQty": "35714241493962870901681763", + "swapFee": "20975999999999999416152", "priceReceived": 0.9788812120204101 }, { "bAssetIndex": 0, - "mAssetQty": "4195200000000000033554432", - "outputQty": "4278428870450291387040727", - "swapFee": "2517120000000000020132", + "mAssetQty": "41951999999999997114318848", + "outputQty": "42784288704502910654070172", + "swapFee": "25171199999999998268591", "priceReceived": 0.980546861249669 }, { "bAssetIndex": 0, - "mAssetQty": "4894399999999999949668352", - "outputQty": "4983381031041406904758446", - "swapFee": "2936639999999999969801", + "mAssetQty": "48944000000000003791650816", + "outputQty": "49833810310414073409637533", + "swapFee": "29366400000000002274990", "priceReceived": 0.9821444456108924 }, { "bAssetIndex": 0, - "mAssetQty": "5593600000000000402653184", - "outputQty": "5686335360077022575227123", - "swapFee": "3356160000000000241591", + "mAssetQty": "55936000000000001879048192", + "outputQty": "56863353600770223635906344", + "swapFee": "33561600000000001127428", "priceReceived": 0.9836915422315566 }, { "bAssetIndex": 0, - "mAssetQty": "6292799999999999781896192", - "outputQty": "6386983946516870516850932", - "swapFee": "3775679999999999869137", + "mAssetQty": "62927999999999999966445568", + "outputQty": "63869839465168707357916789", + "swapFee": "37756799999999999979867", "priceReceived": 0.9852537680843501 }, { "bAssetIndex": 0, - "mAssetQty": "6992000000000000234881024", - "outputQty": "7081669723679473743584718", - "swapFee": "4195200000000000140928", + "mAssetQty": "69919999999999998053842944", + "outputQty": "70816697236794733290057049", + "swapFee": "41951999999999998832305", "priceReceived": 0.9873377710090547 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000", - "outputQty": "8317044958106", + "outputQty": "8317044958126", "swapFee": "6000000000", - "priceReceived": 1.202350119588298 + "priceReceived": 1.2023501195854067 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000", - "outputQty": "831704495589349", + "outputQty": "831704495790517", "swapFee": "600000000000", - "priceReceived": 1.2023501199081486 + "priceReceived": 1.202350119617331 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000", - "outputQty": "83170447346076645", + "outputQty": "83170449357766001", "swapFee": "60000000000000", - "priceReceived": 1.202350151898242 + "priceReceived": 1.2023501228163382 }, { "bAssetIndex": 1, "mAssetQty": "1000000000000000000", - "outputQty": "831704272291620904", + "outputQty": "831704473460766447", "swapFee": "600000000000000", - "priceReceived": 1.2023504427176603 + "priceReceived": 1.202350151898242 }, { "bAssetIndex": 1, "mAssetQty": "10000000000000000000", - "outputQty": "8317022605791788171", + "outputQty": "8317042722916209035", "swapFee": "6000000000000000", - "priceReceived": 1.202353350949921 + "priceReceived": 1.2023504427176603 }, { "bAssetIndex": 1, "mAssetQty": "100000000000000000000", - "outputQty": "83168214135594263901", + "outputQty": "83170226057917881648", "swapFee": "60000000000000000", - "priceReceived": 1.2023824370806355 + "priceReceived": 1.202353350949921 }, { "bAssetIndex": 1, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 1, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true }, { @@ -4535,86 +4535,86 @@ { "bAssetIndex": 2, "mAssetQty": "1000000000000000", - "outputQty": "985223553389812", + "outputQty": "985223553401317", "swapFee": "600000000000", - "priceReceived": 1.0149980647126708 + "priceReceived": 1.0149980647008183 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000", - "outputQty": "98522355212417833", + "outputQty": "98522355327475428", "swapFee": "60000000000000", - "priceReceived": 1.0149980660165534 + "priceReceived": 1.0149980648312058 }, { "bAssetIndex": 2, "mAssetQty": "1000000000000000000", - "outputQty": "985223540618413979", + "outputQty": "985223552124178321", "swapFee": "600000000000000", - "priceReceived": 1.0149980778700345 + "priceReceived": 1.0149980660165534 }, { "bAssetIndex": 2, "mAssetQty": "10000000000000000000", - "outputQty": "9852234255602968696", + "outputQty": "9852235406184139738", "swapFee": "6000000000000000", - "priceReceived": 1.014998196405348 + "priceReceived": 1.0149980778700345 }, { "bAssetIndex": 2, "mAssetQty": "100000000000000000000", - "outputQty": "98522227493176110124", + "outputQty": "98522342556029686443", "swapFee": "60000000000000000", - "priceReceived": 1.014999381808803 + "priceReceived": 1.014998196405348 }, { "bAssetIndex": 2, - "mAssetQty": "699200000000000050331648", + "mAssetQty": "6992000000000000234881024", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "1398400000000000100663296", + "mAssetQty": "13984000000000000469762048", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2097600000000000016777216", + "mAssetQty": "20975999999999998557159424", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "2796800000000000201326592", + "mAssetQty": "27968000000000000939524096", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "3496000000000000117440512", + "mAssetQty": "34959999999999999026921472", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4195200000000000033554432", + "mAssetQty": "41951999999999997114318848", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "4894399999999999949668352", + "mAssetQty": "48944000000000003791650816", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "5593600000000000402653184", + "mAssetQty": "55936000000000001879048192", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6292799999999999781896192", + "mAssetQty": "62927999999999999966445568", "hardLimitError": true }, { "bAssetIndex": 2, - "mAssetQty": "6992000000000000234881024", + "mAssetQty": "69919999999999998053842944", "hardLimitError": true } ] diff --git a/test-utils/validator-data/masset/swapTestData.json b/test-utils/validator-data/masset/swapTestData.json index b9a00f7f..352a6f18 100644 --- a/test-utils/validator-data/masset/swapTestData.json +++ b/test-utils/validator-data/masset/swapTestData.json @@ -1,10 +1,10 @@ [ { - "reserve0": "5503000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "5005000000000000031457280", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -13,107 +13,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "8594828515917", + "outputQty": "8594828515934", "swapFee": "5899351172", - "priceReceived": 1.1628039617450947 + "priceReceived": 1.1628039617427948 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "859482851387857", - "swapFee": "589935117275", - "priceReceived": 1.1628039620207888 + "outputQty": "859482851573100", + "swapFee": "589935117276", + "priceReceived": 1.1628039617701704 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "85948283101101317", - "swapFee": "58993511717134", - "priceReceived": 1.1628039895889701 + "outputQty": "85948284953541642", + "swapFee": "58993511726577", + "priceReceived": 1.1628039645269872 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "859482645766757989", - "swapFee": "589935116226982", - "priceReceived": 1.1628042402091592 + "outputQty": "859482831011013166", + "swapFee": "589935117171340", + "priceReceived": 1.1628039895889701 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "8594807933019418572", - "swapFee": "5899351067834018", - "priceReceived": 1.1628067464471152 + "outputQty": "8594826457667579873", + "swapFee": "5899351162269826", + "priceReceived": 1.1628042402091592 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "85946226642713984426", - "swapFee": "58993501234750486", - "priceReceived": 1.1628318124334742 + "outputQty": "85948079330194185643", + "swapFee": "58993510678340182", + "priceReceived": 1.1628067464471152 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -121,109 +121,109 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "9933015265778", + "outputQty": "9933015265777", "swapFee": "5899351172", - "priceReceived": 1.006149732122174 + "priceReceived": 1.0061497321222754 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "993301526573337", - "swapFee": "589935117275", - "priceReceived": 1.0061497321266193 + "outputQty": "993301526577316", + "swapFee": "589935117276", + "priceReceived": 1.0061497321225878 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "99330152613560344", - "swapFee": "58993511717134", - "priceReceived": 1.0061497325701192 + "outputQty": "99330152653354297", + "swapFee": "58993511726577", + "priceReceived": 1.0061497321669373 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "993301522156207633", - "swapFee": "589935116226982", - "priceReceived": 1.0061497366019387 + "outputQty": "993301526135603437", + "swapFee": "589935117171340", + "priceReceived": 1.0061497325701192 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "9933014823622019721", - "swapFee": "5899351067834018", - "priceReceived": 1.006149776920183 + "outputQty": "9933015221562076308", + "swapFee": "5899351162269826", + "priceReceived": 1.0061497366019387 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "99330108441738514131", - "swapFee": "58993501234750486", - "priceReceived": 1.0061501801076262 + "outputQty": "99330148236220197105", + "swapFee": "58993510678340182", + "priceReceived": 1.006149776920183 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "692112050839051884447054", - "swapFee": "411965810390800782245", + "outputQty": "6921120508390518571560670", + "swapFee": "4119658103908007662584", "priceReceived": 1.0096458129033645 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -231,121 +231,121 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "11620945759945", + "outputQty": "11620945759973", "swapFee": "6859719831", - "priceReceived": 0.8599248707117532 + "priceReceived": 0.8599248707096812 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1162094575673868", - "swapFee": "685971983000", - "priceReceived": 0.8599248709491 + "outputQty": "1162094575965259", + "swapFee": "685971983150", + "priceReceived": 0.8599248707333478 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "116209454362088099", - "swapFee": "68597196650141", - "priceReceived": 0.8599248946818155 + "outputQty": "116209457275995952", + "swapFee": "68597198150060", + "priceReceived": 0.8599248731066195 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1162094252230663839", - "swapFee": "685971816509847", - "priceReceived": 0.8599251104334148 + "outputQty": "1162094543620880986", + "swapFee": "685971966501419", + "priceReceived": 0.8599248946818155 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "11620913383853133332", - "swapFee": "6859703166228994", - "priceReceived": 0.8599272679132866 + "outputQty": "11620942522306638392", + "swapFee": "6859718165098477", + "priceReceived": 0.8599251104334148 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "116206220561278555141", - "swapFee": "68595532062973176", - "priceReceived": 0.8599488391005764 + "outputQty": "116209133838531333411", + "swapFee": "68597031662289949", + "priceReceived": 0.8599272679132866 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "745890348448147376765907", - "swapFee": "445006902707531211857", + "outputQty": "7458903484481473496949241", + "swapFee": "4450069027075311955063", "priceReceived": 0.9368065889994129 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1455978176046775934050805", - "swapFee": "871263438783980145513", + "outputQty": "14559781760467758806400321", + "swapFee": "8712634387839801132196", "priceReceived": 0.9598555524752027 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2158527843482740112916076", - "swapFee": "1293720116988526957620", + "outputQty": "21585278434827399524990803", + "swapFee": "12937201169885268607882", "priceReceived": 0.9711740741322403 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2857415815532514252372830", - "swapFee": "1714701523310602758700", + "outputQty": "28574158155325141465359188", + "swapFee": "17147015233106026944065", "priceReceived": 0.9781864030019696 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3552759522564674531561542", - "swapFee": "2134908027576693262258", + "outputQty": "35527595225646743205896673", + "swapFee": "21349080275766931335750", "priceReceived": 0.9834229054293727 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, - "outputQty": "4241362748345309178531825", - "swapFee": "2554620993917667761718", + "outputQty": "42413627483453088679647375", + "swapFee": "25546209939176675687382", "priceReceived": 0.9885137461165676 }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, - "outputQty": "4904706719603051186243047", - "swapFee": "2973973525353851305566", + "outputQty": "49047067196030515854283801", + "swapFee": "29739735253538515633572", "priceReceived": 0.9972922554012608 }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -353,117 +353,117 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "11550033183542", + "outputQty": "11550033183569", "swapFee": "6859719831", - "priceReceived": 0.8652044649021905 + "priceReceived": 0.865204464900168 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1155003318045790", - "swapFee": "685971983000", - "priceReceived": 0.8652044651333047 + "outputQty": "1155003318326058", + "swapFee": "685971983150", + "priceReceived": 0.8652044649232282 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "115500328721628968", - "swapFee": "68597196650141", - "priceReceived": 0.8652044882417411 + "outputQty": "115500331524310723", + "swapFee": "68597198150060", + "priceReceived": 0.865204467234072 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1155003006948657823", - "swapFee": "685971816509847", - "priceReceived": 0.8652046983180812 + "outputQty": "1155003287216289672", + "swapFee": "685971966501419", + "priceReceived": 0.8652044882417411 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "11550002043267059664", - "swapFee": "6859703166228994", - "priceReceived": 0.8652067990463392 + "outputQty": "11550030069486578217", + "swapFee": "6859718165098477", + "priceReceived": 0.8652046983180812 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "115497218354278530158", - "swapFee": "68595532062973176", - "priceReceived": 0.865227802815176 + "outputQty": "115500020432670596614", + "swapFee": "68597031662289949", + "priceReceived": 0.8652067990463392 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "743166819088135044993130", - "swapFee": "445006902707531211857", + "outputQty": "7431668190881350175319736", + "swapFee": "4450069027075311955063", "priceReceived": 0.9402397619886531 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1450928056228897744391420", - "swapFee": "871263438783980145513", + "outputQty": "14509280562288976903095086", + "swapFee": "8712634387839801132196", "priceReceived": 0.9631964386942302 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2149425990449541609895316", - "swapFee": "1293720116988526957620", + "outputQty": "21494259904495414491405844", + "swapFee": "12937201169885268607882", "priceReceived": 0.9752865598524654 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2838442023752825260195309", - "swapFee": "1714701523310602758700", + "outputQty": "28384420237528251530525463", + "swapFee": "17147015233106026944065", "priceReceived": 0.9847251679219391 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3494131812367917204123626", - "swapFee": "2134908027576693262258", + "outputQty": "34941318123679170046454943", + "swapFee": "21349080275766931335750", "priceReceived": 0.9999236661895382 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -471,113 +471,113 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "10055359156058", + "outputQty": "10055359156057", "swapFee": "5935570825", - "priceReceived": 0.9939042727433488 + "priceReceived": 0.9939042727434476 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1005535915601292", - "swapFee": "593557082546", - "priceReceived": 0.9939042727477589 + "outputQty": "1005535915605344", + "swapFee": "593557082547", + "priceReceived": 0.9939042727437528 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "100553591515543302", - "swapFee": "59355708242930", - "priceReceived": 0.9939042731885764 + "outputQty": "100553591556075854", + "swapFee": "59355708253607", + "priceReceived": 0.9939042727878333 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1005535911102178221", - "swapFee": "593557081361661", - "priceReceived": 0.9939042771960065 + "outputQty": "1005535915155433012", + "swapFee": "593557082429306", + "priceReceived": 0.9939042731885764 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "10055358705696826886", - "swapFee": "5935570706852205", - "priceReceived": 0.9939043172702577 + "outputQty": "10055359111021782202", + "swapFee": "5935570813616619", + "priceReceived": 0.9939042771960065 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "100553546524996650939", - "swapFee": "59355696392160991", - "priceReceived": 0.9939047180077686 + "outputQty": "100553587056968268960", + "swapFee": "59355707068522055", + "priceReceived": 0.9939043172702577 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "701018217861898684511298", - "swapFee": "414460558510421777310", + "outputQty": "7010182178618986583342991", + "swapFee": "4144605585104217616380", "priceReceived": 0.9968150921566366 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1398171292102579103177398", - "swapFee": "827881449563621606965", + "outputQty": "13981712921025790511266833", + "swapFee": "8278814495636215756828", "priceReceived": 0.9995714591226933 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2091056554689476319158584", - "swapFee": "1240319563507359838670", + "outputQty": "20910565546894761623241457", + "swapFee": "12403195635073597444008", "priceReceived": 1.0025360986698917 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -585,118 +585,118 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "8647597319619", + "outputQty": "8647597319636", "swapFee": "5935570825", - "priceReceived": 1.155704186930772 + "priceReceived": 1.1557041869285 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "864759731762277", - "swapFee": "593557082546", - "priceReceived": 1.155704187197504 + "outputQty": "864759731943748", + "swapFee": "593557082547", + "priceReceived": 1.155704186954977 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "86475971180035582", - "swapFee": "59355708242930", - "priceReceived": 1.155704213875658 + "outputQty": "86475972994755656", + "swapFee": "59355708253607", + "priceReceived": 1.1557041896227904 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "864759530328127639", - "swapFee": "593557081361661", - "priceReceived": 1.1557044564046837 + "outputQty": "864759711800355814", + "swapFee": "593557082429306", + "priceReceived": 1.155704213875658 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "8647577155837814186", - "swapFee": "5935570706852205", - "priceReceived": 1.1557068817300284 + "outputQty": "8647595303281276377", + "swapFee": "5935570813616619", + "priceReceived": 1.1557044564046837 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "86473956593366315633", - "swapFee": "59355696392160991", - "priceReceived": 1.1557311384925644 + "outputQty": "86475771558378141871", + "swapFee": "59355707068522055", + "priceReceived": 1.1557068817300284 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "5005000000000000031457280", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -705,107 +705,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "8436719465774", + "outputQty": "8436719465795", "swapFee": "6086334395", - "priceReceived": 1.1845734240836394 + "priceReceived": 1.1845734240806909 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "843671946345970", - "swapFee": "608633439508", - "priceReceived": 1.1845734244085735 + "outputQty": "843671946556369", + "swapFee": "608633439515", + "priceReceived": 1.1845734241131505 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "84367192320212282", - "swapFee": "60863343871480", - "priceReceived": 1.1845734569050674 + "outputQty": "84367194424198382", + "swapFee": "60863343943624", + "priceReceived": 1.1845734273628 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "843671712803297357", - "swapFee": "608633431500388", - "priceReceived": 1.1845737523281268 + "outputQty": "843671923202122814", + "swapFee": "608633438714806", + "priceReceived": 1.1845734569050674 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "8436696087934987253", - "swapFee": "6086333593565286", - "priceReceived": 1.1845767065970727 + "outputQty": "8436717128032973610", + "swapFee": "6086334315003881", + "priceReceived": 1.1845737523281268 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "84364856654093899177", - "swapFee": "60863263794995589", - "priceReceived": 1.184606253122287 + "outputQty": "84366960879349872911", + "swapFee": "60863335935652863", + "priceReceived": 1.1845767065970727 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -813,121 +813,121 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "10463793292692", + "outputQty": "10463793292694", "swapFee": "6086334395", - "priceReceived": 0.9550947143217013 + "priceReceived": 0.9550947143215187 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1046379329243911", - "swapFee": "608633439508", - "priceReceived": 0.9550947143447764 + "outputQty": "1046379329266878", + "swapFee": "608633439515", + "priceReceived": 0.9550947143238064 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "104637932671762503", - "swapFee": "60863343871480", - "priceReceived": 0.955094716651431 + "outputQty": "104637932901424869", + "swapFee": "60863343943624", + "priceReceived": 0.9550947145544719 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1046379303751399330", - "swapFee": "608633431500388", - "priceReceived": 0.9550947376210117 + "outputQty": "1046379326717625022", + "swapFee": "608633438714806", + "priceReceived": 0.955094716651431 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "10463790740902354752", - "swapFee": "6086333593565286", - "priceReceived": 0.9550949473158712 + "outputQty": "10463793037513993371", + "swapFee": "6086334315003881", + "priceReceived": 0.9550947376210117 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "104637677758789146648", - "swapFee": "60863263794995589", - "priceReceived": 0.9550970441697376 + "outputQty": "104637907409023548229", + "swapFee": "60863335935652863", + "priceReceived": 0.9550949473158711 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "722263128479055491881378", - "swapFee": "422553559162174988487", + "outputQty": "7222631284790554675305345", + "swapFee": "4225535591621749738862", "priceReceived": 0.9674832050645118 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1433094677312411634245482", - "swapFee": "841275721935342452176", + "outputQty": "14330946773124115843896971", + "swapFee": "8412757219353424224745", "priceReceived": 0.975203345880127 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2137711494094160926435218", - "swapFee": "1257768754982574099612", + "outputQty": "21377114940941607698813472", + "swapFee": "12577687549825740067676", "priceReceived": 0.980647873689488 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2838008198118375113442264", - "swapFee": "1672697094452568553252", + "outputQty": "28380081981183750120066182", + "swapFee": "16726970944525684929565", "priceReceived": 0.9848904963554165 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3534438755467934405642287", - "swapFee": "2086377935724127709749", + "outputQty": "35344387554679341987849106", + "swapFee": "20863779357241275865535", "priceReceived": 0.988534209755095 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, - "outputQty": "4226394339111648882141178", - "swapFee": "2498975677928744759900", + "outputQty": "42263943391116485717951138", + "swapFee": "24989756779287445740732", "priceReceived": 0.9920278819044936 }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, - "outputQty": "4911782260367201108637264", - "swapFee": "2910579067931670693036", + "outputQty": "49117822603672015350811396", + "swapFee": "29105790679316709499221", "priceReceived": 0.9958685384735243 }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -935,107 +935,107 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "11838729070533", + "outputQty": "11838729070568", "swapFee": "7209772257", - "priceReceived": 0.8440762659748161 + "priceReceived": 0.8440762659723207 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1183872906668422", - "swapFee": "720977225474", - "priceReceived": 0.8440762662494169 + "outputQty": "1183872907018354", + "swapFee": "720977225684", + "priceReceived": 0.8440762659997454 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "118387286817586995", - "swapFee": "72097720241086", - "priceReceived": 0.8440762937132719 + "outputQty": "118387290316909778", + "swapFee": "72097722337824", + "priceReceived": 0.8440762687461311 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1183872518244243855", - "swapFee": "720976992737435", - "priceReceived": 0.8440765433842954 + "outputQty": "1183872868175869937", + "swapFee": "720977202410866", + "priceReceived": 0.8440762937132719 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "11838690189932096567", - "swapFee": "7209748960428383", - "priceReceived": 0.8440790400561101 + "outputQty": "11838725182442438493", + "swapFee": "7209769927374354", + "priceReceived": 0.8440765433842954 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "118383403300427069140", - "swapFee": "72095393306750833", - "priceReceived": 0.8441040029327553 + "outputQty": "118386901899320965131", + "swapFee": "72097489604283831", + "priceReceived": 0.8440790400561101 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -1043,235 +1043,235 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "12395238527337", + "outputQty": "12395238527380", "swapFee": "7209772257", - "priceReceived": 0.8061797443997922 + "priceReceived": 0.8061797443969956 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1239523852263400", - "swapFee": "720977225474", - "priceReceived": 0.8061797447058552 + "outputQty": "1239523852690938", + "swapFee": "720977225684", + "priceReceived": 0.8061797444276173 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "123952380523418314", - "swapFee": "72097720241086", - "priceReceived": 0.8061797753120162 + "outputQty": "123952384798801504", + "swapFee": "72097722337824", + "priceReceived": 0.8061797474882337 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1239523377696697198", - "swapFee": "720976992737435", - "priceReceived": 0.8061800535494049 + "outputQty": "1239523805234183136", + "swapFee": "720977202410866", + "priceReceived": 0.8061797753120162 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "12395191024051384203", - "swapFee": "7209748960428383", - "priceReceived": 0.8061828358796373 + "outputQty": "12395233776966972004", + "swapFee": "7209769927374354", + "priceReceived": 0.8061800535494049 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "123947635781796985191", - "swapFee": "72095393306750833", - "priceReceived": 0.8062106548172556 + "outputQty": "123951910240513842304", + "swapFee": "72097489604283831", + "priceReceived": 0.8061828358796373 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "768896006715057077927865", - "swapFee": "455349056078842881937", + "outputQty": "7688960067150570510686794", + "swapFee": "4553490560788428655099", "priceReceived": 0.908763532183185 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1485514801822270051395981", - "swapFee": "884040318185604670645", + "outputQty": "14855148018222699983548195", + "swapFee": "8840403181856046382992", "priceReceived": 0.9407620563372994 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2191692694525269933121433", - "swapFee": "1307270388189317742828", + "outputQty": "21916926945252697726438582", + "swapFee": "13072703881893176458785", "priceReceived": 0.9564720158296994 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2893745098578223596232972", - "swapFee": "1728372076376296111498", + "outputQty": "28937450985782234903190793", + "swapFee": "17283720763762960470737", "priceReceived": 0.9659011186911105 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3593394051728979159386178", - "swapFee": "2148353632174868084140", + "outputQty": "35933940517289789465416787", + "swapFee": "21483536321748679552890", "priceReceived": 0.9722984999896522 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, - "outputQty": "4291015906040761605294836", - "swapFee": "2567621069932273372757", + "outputQty": "42910159060407612861463358", + "swapFee": "25676210699322731795964", "priceReceived": 0.9770722063807332 }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, - "outputQty": "4986132009816772962673844", - "swapFee": "2986366809676326880201", + "outputQty": "49861320098167733903550826", + "swapFee": "29863668096763271369811", "priceReceived": 0.98100363639792 }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, - "outputQty": "5676824010962740152173763", - "swapFee": "3404691779986865867419", + "outputQty": "56768240109627399428847930", + "swapFee": "34046917799868657384976", "priceReceived": 0.9847399351159319 }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, - "outputQty": "6356304183245645467880735", - "swapFee": "3822652371743742700155", + "outputQty": "63563041832456456748662292", + "swapFee": "38226523717437428277626", "priceReceived": 0.989407864432471 }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, - "outputQty": "6988467216013139965717995", - "swapFee": "4240281183082721427082", + "outputQty": "69884672160131396226486936", + "swapFee": "42402811830827211697001", "priceReceived": 0.9998987621785502 }, { "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "9545299033164", + "outputQty": "9545299033166", "swapFee": "5813076027", - "priceReceived": 1.0470271166203795 + "priceReceived": 1.0470271166201601 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "954529903294338", - "swapFee": "581307602736", - "priceReceived": 1.0470271166445417 + "outputQty": "954529903314341", + "swapFee": "581307602738", + "priceReceived": 1.0470271166225984 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "95452990109381565", - "swapFee": "58130760256577", - "priceReceived": 1.0470271190584806 + "outputQty": "95452990309428983", + "swapFee": "58130760272119", + "priceReceived": 1.0470271168639909 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "954529881089065644", - "swapFee": "581307601011551", - "priceReceived": 1.0470271410033882 + "outputQty": "954529901093815634", + "swapFee": "581307602565777", + "priceReceived": 1.0470271190584806 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "9545296810407490515", - "swapFee": "5813075854692939", - "priceReceived": 1.04702736045341 + "outputQty": "9545298810890656370", + "swapFee": "5813076010115515", + "priceReceived": 1.0470271410033882 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "95452768047591845254", - "swapFee": "58130743004639067", - "priceReceived": 1.0470295550482653 + "outputQty": "95452968104074904497", + "swapFee": "58130758546929394", + "priceReceived": 1.04702736045341 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -1279,118 +1279,118 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "8057935777439", + "outputQty": "8057935777461", "swapFee": "5813076027", - "priceReceived": 1.2402912110512483 + "priceReceived": 1.240291211047862 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "805793577497443", - "swapFee": "581307602736", - "priceReceived": 1.2402912114305544 + "outputQty": "805793577721423", + "swapFee": "581307602738", + "priceReceived": 1.2402912110857982 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "80579355285952603", - "swapFee": "58130760256577", - "priceReceived": 1.2402912493538687 + "outputQty": "80579357525763237", + "swapFee": "58130760272119", + "priceReceived": 1.2402912148781275 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "805793328878247977", - "swapFee": "581307601011551", - "priceReceived": 1.240291594111716 + "outputQty": "805793552859526024", + "swapFee": "581307602565777", + "priceReceived": 1.2402912493538687 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "8057910890439978463", - "swapFee": "5813075854692939", - "priceReceived": 1.2402950417337768 + "outputQty": "8057933288782479751", + "swapFee": "5813076010115515", + "priceReceived": 1.240291594111716 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "80576868855441209889", - "swapFee": "58130743004639067", - "priceReceived": 1.2403295223136046 + "outputQty": "80579108904399784445", + "swapFee": "58130758546929394", + "priceReceived": 1.2402950417337768 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "5503000000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "55030000000000001379926016", + "reserve1": "39964999999999992615927808", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -1399,109 +1399,109 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "9933015265778", + "outputQty": "9933015265777", "swapFee": "5899351172", - "priceReceived": 1.006149732122174 + "priceReceived": 1.0061497321222754 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "993301526573337", - "swapFee": "589935117275", - "priceReceived": 1.0061497321266193 + "outputQty": "993301526577316", + "swapFee": "589935117276", + "priceReceived": 1.0061497321225878 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "99330152613560344", - "swapFee": "58993511717134", - "priceReceived": 1.0061497325701192 + "outputQty": "99330152653354297", + "swapFee": "58993511726577", + "priceReceived": 1.0061497321669373 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "993301522156207633", - "swapFee": "589935116226982", - "priceReceived": 1.0061497366019387 + "outputQty": "993301526135603437", + "swapFee": "589935117171340", + "priceReceived": 1.0061497325701192 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "9933014823622019721", - "swapFee": "5899351067834018", - "priceReceived": 1.006149776920183 + "outputQty": "9933015221562076308", + "swapFee": "5899351162269826", + "priceReceived": 1.0061497366019387 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "99330108441738514131", - "swapFee": "58993501234750486", - "priceReceived": 1.0061501801076262 + "outputQty": "99330148236220197105", + "swapFee": "58993510678340182", + "priceReceived": 1.006149776920183 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "692112050839051884447054", - "swapFee": "411965810390800782245", + "outputQty": "6921120508390518571560670", + "swapFee": "4119658103908007662584", "priceReceived": 1.0096458129033645 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -1509,107 +1509,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "8594828515917", + "outputQty": "8594828515934", "swapFee": "5899351172", - "priceReceived": 1.1628039617450947 + "priceReceived": 1.1628039617427948 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "859482851387857", - "swapFee": "589935117275", - "priceReceived": 1.1628039620207888 + "outputQty": "859482851573100", + "swapFee": "589935117276", + "priceReceived": 1.1628039617701704 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "85948283101101317", - "swapFee": "58993511717134", - "priceReceived": 1.1628039895889701 + "outputQty": "85948284953541642", + "swapFee": "58993511726577", + "priceReceived": 1.1628039645269872 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "859482645766757989", - "swapFee": "589935116226982", - "priceReceived": 1.1628042402091592 + "outputQty": "859482831011013166", + "swapFee": "589935117171340", + "priceReceived": 1.1628039895889701 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "8594807933019418572", - "swapFee": "5899351067834018", - "priceReceived": 1.1628067464471152 + "outputQty": "8594826457667579873", + "swapFee": "5899351162269826", + "priceReceived": 1.1628042402091592 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "85946226642713984426", - "swapFee": "58993501234750486", - "priceReceived": 1.1628318124334742 + "outputQty": "85948079330194185643", + "swapFee": "58993510678340182", + "priceReceived": 1.1628067464471152 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -1617,113 +1617,113 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "10055359156058", + "outputQty": "10055359156057", "swapFee": "5935570825", - "priceReceived": 0.9939042727433488 + "priceReceived": 0.9939042727434476 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1005535915601292", - "swapFee": "593557082546", - "priceReceived": 0.9939042727477589 + "outputQty": "1005535915605344", + "swapFee": "593557082547", + "priceReceived": 0.9939042727437528 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "100553591515543302", - "swapFee": "59355708242930", - "priceReceived": 0.9939042731885764 + "outputQty": "100553591556075854", + "swapFee": "59355708253607", + "priceReceived": 0.9939042727878333 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1005535911102178221", - "swapFee": "593557081361661", - "priceReceived": 0.9939042771960065 + "outputQty": "1005535915155433012", + "swapFee": "593557082429306", + "priceReceived": 0.9939042731885764 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "10055358705696826886", - "swapFee": "5935570706852205", - "priceReceived": 0.9939043172702577 + "outputQty": "10055359111021782202", + "swapFee": "5935570813616619", + "priceReceived": 0.9939042771960065 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "100553546524996650939", - "swapFee": "59355696392160991", - "priceReceived": 0.9939047180077686 + "outputQty": "100553587056968268960", + "swapFee": "59355707068522055", + "priceReceived": 0.9939043172702577 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "701018217861898684511298", - "swapFee": "414460558510421777310", + "outputQty": "7010182178618986583342991", + "swapFee": "4144605585104217616380", "priceReceived": 0.9968150921566366 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1398171292102579103177398", - "swapFee": "827881449563621606965", + "outputQty": "13981712921025790511266833", + "swapFee": "8278814495636215756828", "priceReceived": 0.9995714591226933 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2091056554689476319158584", - "swapFee": "1240319563507359838670", + "outputQty": "20910565546894761623241457", + "swapFee": "12403195635073597444008", "priceReceived": 1.0025360986698917 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -1731,107 +1731,107 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "8647597319619", + "outputQty": "8647597319636", "swapFee": "5935570825", - "priceReceived": 1.155704186930772 + "priceReceived": 1.1557041869285 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "864759731762277", - "swapFee": "593557082546", - "priceReceived": 1.155704187197504 + "outputQty": "864759731943748", + "swapFee": "593557082547", + "priceReceived": 1.155704186954977 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "86475971180035582", - "swapFee": "59355708242930", - "priceReceived": 1.155704213875658 + "outputQty": "86475972994755656", + "swapFee": "59355708253607", + "priceReceived": 1.1557041896227904 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "864759530328127639", - "swapFee": "593557081361661", - "priceReceived": 1.1557044564046837 + "outputQty": "864759711800355814", + "swapFee": "593557082429306", + "priceReceived": 1.155704213875658 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "8647577155837814186", - "swapFee": "5935570706852205", - "priceReceived": 1.1557068817300284 + "outputQty": "8647595303281276377", + "swapFee": "5935570813616619", + "priceReceived": 1.1557044564046837 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "86473956593366315633", - "swapFee": "59355696392160991", - "priceReceived": 1.1557311384925644 + "outputQty": "86475771558378141871", + "swapFee": "59355707068522055", + "priceReceived": 1.1557068817300284 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -1839,121 +1839,121 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "11620945759945", + "outputQty": "11620945759973", "swapFee": "6859719831", - "priceReceived": 0.8599248707117532 + "priceReceived": 0.8599248707096812 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1162094575673868", - "swapFee": "685971983000", - "priceReceived": 0.8599248709491 + "outputQty": "1162094575965259", + "swapFee": "685971983150", + "priceReceived": 0.8599248707333478 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "116209454362088099", - "swapFee": "68597196650141", - "priceReceived": 0.8599248946818155 + "outputQty": "116209457275995952", + "swapFee": "68597198150060", + "priceReceived": 0.8599248731066195 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1162094252230663839", - "swapFee": "685971816509847", - "priceReceived": 0.8599251104334148 + "outputQty": "1162094543620880986", + "swapFee": "685971966501419", + "priceReceived": 0.8599248946818155 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "11620913383853133332", - "swapFee": "6859703166228994", - "priceReceived": 0.8599272679132866 + "outputQty": "11620942522306638392", + "swapFee": "6859718165098477", + "priceReceived": 0.8599251104334148 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "116206220561278555141", - "swapFee": "68595532062973176", - "priceReceived": 0.8599488391005764 + "outputQty": "116209133838531333411", + "swapFee": "68597031662289949", + "priceReceived": 0.8599272679132866 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "745890348448147376765907", - "swapFee": "445006902707531211857", + "outputQty": "7458903484481473496949241", + "swapFee": "4450069027075311955063", "priceReceived": 0.9368065889994129 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1455978176046775934050805", - "swapFee": "871263438783980145513", + "outputQty": "14559781760467758806400321", + "swapFee": "8712634387839801132196", "priceReceived": 0.9598555524752027 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2158527843482740112916076", - "swapFee": "1293720116988526957620", + "outputQty": "21585278434827399524990803", + "swapFee": "12937201169885268607882", "priceReceived": 0.9711740741322403 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2857415815532514252372830", - "swapFee": "1714701523310602758700", + "outputQty": "28574158155325141465359188", + "swapFee": "17147015233106026944065", "priceReceived": 0.9781864030019696 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3552759522564674531561542", - "swapFee": "2134908027576693262258", + "outputQty": "35527595225646743205896673", + "swapFee": "21349080275766931335750", "priceReceived": 0.9834229054293727 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, - "outputQty": "4241362748345309178531825", - "swapFee": "2554620993917667761718", + "outputQty": "42413627483453088679647375", + "swapFee": "25546209939176675687382", "priceReceived": 0.9885137461165676 }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, - "outputQty": "4904706719603051186243047", - "swapFee": "2973973525353851305566", + "outputQty": "49047067196030515854283801", + "swapFee": "29739735253538515633572", "priceReceived": 0.9972922554012608 }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -1961,128 +1961,128 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "11550033183542", + "outputQty": "11550033183569", "swapFee": "6859719831", - "priceReceived": 0.8652044649021905 + "priceReceived": 0.865204464900168 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1155003318045790", - "swapFee": "685971983000", - "priceReceived": 0.8652044651333047 + "outputQty": "1155003318326058", + "swapFee": "685971983150", + "priceReceived": 0.8652044649232282 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "115500328721628968", - "swapFee": "68597196650141", - "priceReceived": 0.8652044882417411 + "outputQty": "115500331524310723", + "swapFee": "68597198150060", + "priceReceived": 0.865204467234072 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1155003006948657823", - "swapFee": "685971816509847", - "priceReceived": 0.8652046983180812 + "outputQty": "1155003287216289672", + "swapFee": "685971966501419", + "priceReceived": 0.8652044882417411 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "11550002043267059664", - "swapFee": "6859703166228994", - "priceReceived": 0.8652067990463392 + "outputQty": "11550030069486578217", + "swapFee": "6859718165098477", + "priceReceived": 0.8652046983180812 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "115497218354278530158", - "swapFee": "68595532062973176", - "priceReceived": 0.865227802815176 + "outputQty": "115500020432670596614", + "swapFee": "68597031662289949", + "priceReceived": 0.8652067990463392 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "743166819088135044993130", - "swapFee": "445006902707531211857", + "outputQty": "7431668190881350175319736", + "swapFee": "4450069027075311955063", "priceReceived": 0.9402397619886531 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1450928056228897744391420", - "swapFee": "871263438783980145513", + "outputQty": "14509280562288976903095086", + "swapFee": "8712634387839801132196", "priceReceived": 0.9631964386942302 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2149425990449541609895316", - "swapFee": "1293720116988526957620", + "outputQty": "21494259904495414491405844", + "swapFee": "12937201169885268607882", "priceReceived": 0.9752865598524654 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2838442023752825260195309", - "swapFee": "1714701523310602758700", + "outputQty": "28384420237528251530525463", + "swapFee": "17147015233106026944065", "priceReceived": 0.9847251679219391 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3494131812367917204123626", - "swapFee": "2134908027576693262258", + "outputQty": "34941318123679170046454943", + "swapFee": "21349080275766931335750", "priceReceived": 0.9999236661895382 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "2007000000000000960000000", - "reserve1": "3996499999999999360000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "20070000000000010942939136", + "reserve1": "39964999999999992615927808", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2099,109 +2099,109 @@ "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1007279025238644", - "swapFee": "603516896553", - "priceReceived": 0.9921744204558122 + "outputQty": "1007279025243967", + "swapFee": "603516896555", + "priceReceived": 0.992174420450567 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "100727902465311571", - "swapFee": "60351689634942", - "priceReceived": 0.9921744210327623 + "outputQty": "100727902518541348", + "swapFee": "60351689653521", + "priceReceived": 0.9921744205082621 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1007279019330139954", - "swapFee": "603516894491591", - "priceReceived": 0.9921744262777621 + "outputQty": "1007279024653115691", + "swapFee": "603516896349429", + "priceReceived": 0.9921744210327623 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "10072789661005997875", - "swapFee": "6035168759132957", - "priceReceived": 0.9921744787275486 + "outputQty": "10072790193301399524", + "swapFee": "6035168944915918", + "priceReceived": 0.9921744262777621 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "100727843382691828833", - "swapFee": "60351669013876130", - "priceReceived": 0.9921750032043162 + "outputQty": "100727896610059978587", + "swapFee": "60351687591329577", + "priceReceived": 0.9921744787275486 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "701990061873335666661480", - "swapFee": "421209678016508108806", + "outputQty": "7019900618733356390054438", + "swapFee": "4212096780165080922857", "priceReceived": 0.9954254743396473 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1400520690043401824861045", - "swapFee": "841445523586415237822", + "outputQty": "14005206900434017700522543", + "swapFee": "8414455235864152049972", "priceReceived": 0.9978849755037205 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2095431279847674350793501", - "swapFee": "1261119325233018729452", + "outputQty": "20954312798476741893531412", + "swapFee": "12611193252330186321001", "priceReceived": 1.0004331331863856 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2783047691616111483913211", - "swapFee": "1680399398546506822409", + "outputQty": "27830476916161113758475243", + "swapFee": "16803993985465067571976", "priceReceived": 1.004337657964579 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3441701398292317538340882", - "swapFee": "2099364923554529841758", + "outputQty": "34417013982923173367961614", + "swapFee": "20993649235545297121648", "priceReceived": 1.0151666954053677 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -2217,109 +2217,109 @@ "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1007279025238644", - "swapFee": "603516896553", - "priceReceived": 0.9921744204558122 + "outputQty": "1007279025243967", + "swapFee": "603516896555", + "priceReceived": 0.992174420450567 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "100727902465311571", - "swapFee": "60351689634942", - "priceReceived": 0.9921744210327623 + "outputQty": "100727902518541348", + "swapFee": "60351689653521", + "priceReceived": 0.9921744205082621 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1007279019330139954", - "swapFee": "603516894491591", - "priceReceived": 0.9921744262777621 + "outputQty": "1007279024653115691", + "swapFee": "603516896349429", + "priceReceived": 0.9921744210327623 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "10072789661005997875", - "swapFee": "6035168759132957", - "priceReceived": 0.9921744787275486 + "outputQty": "10072790193301399524", + "swapFee": "6035168944915918", + "priceReceived": 0.9921744262777621 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "100727843382691828833", - "swapFee": "60351669013876130", - "priceReceived": 0.9921750032043162 + "outputQty": "100727896610059978587", + "swapFee": "60351687591329577", + "priceReceived": 0.9921744787275486 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "701990061873335666661480", - "swapFee": "421209678016508108806", + "outputQty": "7019900618733356390054438", + "swapFee": "4212096780165080922857", "priceReceived": 0.9954254743396473 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1400520690043401824861045", - "swapFee": "841445523586415237822", + "outputQty": "14005206900434017700522543", + "swapFee": "8414455235864152049972", "priceReceived": 0.9978849755037205 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2095431279847674350793501", - "swapFee": "1261119325233018729452", + "outputQty": "20954312798476741893531412", + "swapFee": "12611193252330186321001", "priceReceived": 1.0004331331863856 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2783047691616111483913211", - "swapFee": "1680399398546506822409", + "outputQty": "27830476916161113758475243", + "swapFee": "16803993985465067571976", "priceReceived": 1.004337657964579 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3441701398292317538340882", - "swapFee": "2099364923554529841758", + "outputQty": "34417013982923173367961614", + "swapFee": "20993649235545297121648", "priceReceived": 1.0151666954053677 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -2327,111 +2327,111 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "9915826051847", + "outputQty": "9915826051848", "swapFee": "5987961342", - "priceReceived": 1.0078849695831884 + "priceReceived": 1.0078849695830867 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "991582605179020", + "outputQty": "991582605184218", "swapFee": "598796134240", - "priceReceived": 1.0078849695889214 + "priceReceived": 1.0078849695836378 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "99158260460728360", - "swapFee": "59879613419763", - "priceReceived": 1.0078849701701003 + "outputQty": "99158260512704440", + "swapFee": "59879613423616", + "priceReceived": 1.0078849696417553 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "991582599409673433", - "swapFee": "598796133812390", - "priceReceived": 1.0078849754535517 + "outputQty": "991582604607283589", + "swapFee": "598796134197637", + "priceReceived": 1.0078849701701003 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "9915825474333675757", - "swapFee": "5987961299599208", - "priceReceived": 1.0078850282882756 + "outputQty": "9915825994096734336", + "swapFee": "5987961338123906", + "priceReceived": 1.0078849754535517 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "99158202764987759654", - "swapFee": "59879609143550369", - "priceReceived": 1.0078855566565874 + "outputQty": "99158254743336757731", + "swapFee": "59879612995992082", + "priceReceived": 1.0078850282882756 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "689282551659223245636916", - "swapFee": "418477829487451578495", + "outputQty": "6892825516592232213450364", + "swapFee": "4184778294874515625727", "priceReceived": 1.0137809530916222 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1356366996729241375923282", - "swapFee": "836578522387612414347", + "outputQty": "13563669967292413382079503", + "swapFee": "8365785223876123825384", "priceReceived": 1.0303726239636564 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -2447,109 +2447,109 @@ "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "999399999998011", + "outputQty": "999399999999801", "swapFee": "598796134240", - "priceReceived": 1.0000012045905033 + "priceReceived": 1.0000012045887123 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "99939999980116059", - "swapFee": "59879613419763", - "priceReceived": 1.0000012047875144 + "outputQty": "99939999998011605", + "swapFee": "59879613423616", + "priceReceived": 1.0000012046084128 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "999399998011605799", - "swapFee": "598796133812390", - "priceReceived": 1.0000012065785313 + "outputQty": "999399999801160579", + "swapFee": "598796134197637", + "priceReceived": 1.0000012047875146 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "9993999801160583413", - "swapFee": "5987961299599208", - "priceReceived": 1.0000012244886993 + "outputQty": "9993999980116057978", + "swapFee": "5987961338123906", + "priceReceived": 1.0000012065785313 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "99939980116061969608", - "swapFee": "59879609143550369", - "priceReceived": 1.0000014035903781 + "outputQty": "99939998011605834131", + "swapFee": "59879612995992082", + "priceReceived": 1.0000012244886993 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "697779736747200745522864", - "swapFee": "418477829487451578495", + "outputQty": "6977797367472007187658805", + "swapFee": "4184778294874515625727", "priceReceived": 1.0014356757162106 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1393157070614067945102172", - "swapFee": "836578522387612414347", + "outputQty": "13931570706140678917696156", + "swapFee": "8365785223876123825384", "priceReceived": 1.0031628528875085 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2084449282114052419694637", - "swapFee": "1254320506285243319162", + "outputQty": "20844492821140522609131861", + "swapFee": "12543205062852432234113", "priceReceived": 1.0057072136423473 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2765917160800186035881131", - "swapFee": "1671708803050131015856", + "outputQty": "27659171608001859312744738", + "swapFee": "16717088030501309523889", "priceReceived": 1.0105611009652629 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3409504832193172411327541", - "swapFee": "2088741347897643737830", + "outputQty": "34095048321931722196464870", + "swapFee": "20887413478976436105827", "priceReceived": 1.0247562125919134 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -2557,111 +2557,111 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "9915826051847", + "outputQty": "9915826051848", "swapFee": "5987961342", - "priceReceived": 1.0078849695831884 + "priceReceived": 1.0078849695830867 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "991582605179020", + "outputQty": "991582605184218", "swapFee": "598796134240", - "priceReceived": 1.0078849695889214 + "priceReceived": 1.0078849695836378 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "99158260460728360", - "swapFee": "59879613419763", - "priceReceived": 1.0078849701701003 + "outputQty": "99158260512704440", + "swapFee": "59879613423616", + "priceReceived": 1.0078849696417553 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "991582599409673433", - "swapFee": "598796133812390", - "priceReceived": 1.0078849754535517 + "outputQty": "991582604607283589", + "swapFee": "598796134197637", + "priceReceived": 1.0078849701701003 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "9915825474333675757", - "swapFee": "5987961299599208", - "priceReceived": 1.0078850282882756 + "outputQty": "9915825994096734336", + "swapFee": "5987961338123906", + "priceReceived": 1.0078849754535517 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "99158202764987759654", - "swapFee": "59879609143550369", - "priceReceived": 1.0078855566565874 + "outputQty": "99158254743336757731", + "swapFee": "59879612995992082", + "priceReceived": 1.0078850282882756 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "689282551659223245636916", - "swapFee": "418477829487451578495", + "outputQty": "6892825516592232213450364", + "swapFee": "4184778294874515625727", "priceReceived": 1.0137809530916222 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1356366996729241375923282", - "swapFee": "836578522387612414347", + "outputQty": "13563669967292413382079503", + "swapFee": "8365785223876123825384", "priceReceived": 1.0303726239636564 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -2677,120 +2677,120 @@ "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "999399999998011", + "outputQty": "999399999999801", "swapFee": "598796134240", - "priceReceived": 1.0000012045905033 + "priceReceived": 1.0000012045887123 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "99939999980116059", - "swapFee": "59879613419763", - "priceReceived": 1.0000012047875144 + "outputQty": "99939999998011605", + "swapFee": "59879613423616", + "priceReceived": 1.0000012046084128 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "999399998011605799", - "swapFee": "598796133812390", - "priceReceived": 1.0000012065785313 + "outputQty": "999399999801160579", + "swapFee": "598796134197637", + "priceReceived": 1.0000012047875146 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "9993999801160583413", - "swapFee": "5987961299599208", - "priceReceived": 1.0000012244886993 + "outputQty": "9993999980116057978", + "swapFee": "5987961338123906", + "priceReceived": 1.0000012065785313 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "99939980116061969608", - "swapFee": "59879609143550369", - "priceReceived": 1.0000014035903781 + "outputQty": "99939998011605834131", + "swapFee": "59879612995992082", + "priceReceived": 1.0000012244886993 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "697779736747200745522864", - "swapFee": "418477829487451578495", + "outputQty": "6977797367472007187658805", + "swapFee": "4184778294874515625727", "priceReceived": 1.0014356757162106 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1393157070614067945102172", - "swapFee": "836578522387612414347", + "outputQty": "13931570706140678917696156", + "swapFee": "8365785223876123825384", "priceReceived": 1.0031628528875085 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2084449282114052419694637", - "swapFee": "1254320506285243319162", + "outputQty": "20844492821140522609131861", + "swapFee": "12543205062852432234113", "priceReceived": 1.0057072136423473 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2765917160800186035881131", - "swapFee": "1671708803050131015856", + "outputQty": "27659171608001859312744738", + "swapFee": "16717088030501309523889", "priceReceived": 1.0105611009652629 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3409504832193172411327541", - "swapFee": "2088741347897643737830", + "outputQty": "34095048321931722196464870", + "swapFee": "20887413478976436105827", "priceReceived": 1.0247562125919134 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "2007000000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "20069999999999998058037248", + "reserve1": "74925000000000000232783872", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -2799,121 +2799,121 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "10463793292692", + "outputQty": "10463793292694", "swapFee": "6086334395", - "priceReceived": 0.9550947143217013 + "priceReceived": 0.9550947143215187 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1046379329243911", - "swapFee": "608633439508", - "priceReceived": 0.9550947143447764 + "outputQty": "1046379329266878", + "swapFee": "608633439515", + "priceReceived": 0.9550947143238064 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "104637932671762503", - "swapFee": "60863343871480", - "priceReceived": 0.955094716651431 + "outputQty": "104637932901424869", + "swapFee": "60863343943624", + "priceReceived": 0.9550947145544719 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1046379303751399330", - "swapFee": "608633431500388", - "priceReceived": 0.9550947376210117 + "outputQty": "1046379326717625022", + "swapFee": "608633438714806", + "priceReceived": 0.955094716651431 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "10463790740902354752", - "swapFee": "6086333593565286", - "priceReceived": 0.9550949473158712 + "outputQty": "10463793037513993371", + "swapFee": "6086334315003881", + "priceReceived": 0.9550947376210117 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "104637677758789146648", - "swapFee": "60863263794995589", - "priceReceived": 0.9550970441697376 + "outputQty": "104637907409023548229", + "swapFee": "60863335935652863", + "priceReceived": 0.9550949473158711 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "722263128479055491881378", - "swapFee": "422553559162174988487", + "outputQty": "7222631284790554675305345", + "swapFee": "4225535591621749738862", "priceReceived": 0.9674832050645118 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1433094677312411634245482", - "swapFee": "841275721935342452176", + "outputQty": "14330946773124115843896971", + "swapFee": "8412757219353424224745", "priceReceived": 0.975203345880127 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2137711494094160926435218", - "swapFee": "1257768754982574099612", + "outputQty": "21377114940941607698813472", + "swapFee": "12577687549825740067676", "priceReceived": 0.980647873689488 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2838008198118375113442264", - "swapFee": "1672697094452568553252", + "outputQty": "28380081981183750120066182", + "swapFee": "16726970944525684929565", "priceReceived": 0.9848904963554165 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3534438755467934405642287", - "swapFee": "2086377935724127709749", + "outputQty": "35344387554679341987849106", + "swapFee": "20863779357241275865535", "priceReceived": 0.988534209755095 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, - "outputQty": "4226394339111648882141178", - "swapFee": "2498975677928744759900", + "outputQty": "42263943391116485717951138", + "swapFee": "24989756779287445740732", "priceReceived": 0.9920278819044936 }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, - "outputQty": "4911782260367201108637264", - "swapFee": "2910579067931670693036", + "outputQty": "49117822603672015350811396", + "swapFee": "29105790679316709499221", "priceReceived": 0.9958685384735243 }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -2921,107 +2921,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "8436719465774", + "outputQty": "8436719465795", "swapFee": "6086334395", - "priceReceived": 1.1845734240836394 + "priceReceived": 1.1845734240806909 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "843671946345970", - "swapFee": "608633439508", - "priceReceived": 1.1845734244085735 + "outputQty": "843671946556369", + "swapFee": "608633439515", + "priceReceived": 1.1845734241131505 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "84367192320212282", - "swapFee": "60863343871480", - "priceReceived": 1.1845734569050674 + "outputQty": "84367194424198382", + "swapFee": "60863343943624", + "priceReceived": 1.1845734273628 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "843671712803297357", - "swapFee": "608633431500388", - "priceReceived": 1.1845737523281268 + "outputQty": "843671923202122814", + "swapFee": "608633438714806", + "priceReceived": 1.1845734569050674 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "8436696087934987253", - "swapFee": "6086333593565286", - "priceReceived": 1.1845767065970727 + "outputQty": "8436717128032973610", + "swapFee": "6086334315003881", + "priceReceived": 1.1845737523281268 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "84364856654093899177", - "swapFee": "60863263794995589", - "priceReceived": 1.184606253122287 + "outputQty": "84366960879349872911", + "swapFee": "60863335935652863", + "priceReceived": 1.1845767065970727 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -3029,107 +3029,107 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "9545299033164", + "outputQty": "9545299033166", "swapFee": "5813076027", - "priceReceived": 1.0470271166203795 + "priceReceived": 1.0470271166201601 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "954529903294338", - "swapFee": "581307602736", - "priceReceived": 1.0470271166445417 + "outputQty": "954529903314341", + "swapFee": "581307602738", + "priceReceived": 1.0470271166225984 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "95452990109381565", - "swapFee": "58130760256577", - "priceReceived": 1.0470271190584806 + "outputQty": "95452990309428983", + "swapFee": "58130760272119", + "priceReceived": 1.0470271168639909 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "954529881089065644", - "swapFee": "581307601011551", - "priceReceived": 1.0470271410033882 + "outputQty": "954529901093815635", + "swapFee": "581307602565777", + "priceReceived": 1.0470271190584806 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "9545296810407490515", - "swapFee": "5813075854692939", - "priceReceived": 1.04702736045341 + "outputQty": "9545298810890656370", + "swapFee": "5813076010115515", + "priceReceived": 1.0470271410033882 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "95452768047591845254", - "swapFee": "58130743004639067", - "priceReceived": 1.0470295550482653 + "outputQty": "95452968104074904497", + "swapFee": "58130758546929394", + "priceReceived": 1.04702736045341 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -3137,107 +3137,107 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "8057935777439", + "outputQty": "8057935777461", "swapFee": "5813076027", - "priceReceived": 1.2402912110512483 + "priceReceived": 1.240291211047862 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "805793577497443", - "swapFee": "581307602736", - "priceReceived": 1.2402912114305544 + "outputQty": "805793577721423", + "swapFee": "581307602738", + "priceReceived": 1.2402912110857982 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "80579355285952603", - "swapFee": "58130760256577", - "priceReceived": 1.2402912493538687 + "outputQty": "80579357525763237", + "swapFee": "58130760272119", + "priceReceived": 1.2402912148781275 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "805793328878247977", - "swapFee": "581307601011551", - "priceReceived": 1.240291594111716 + "outputQty": "805793552859526024", + "swapFee": "581307602565777", + "priceReceived": 1.2402912493538687 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "8057910890439978463", - "swapFee": "5813075854692939", - "priceReceived": 1.2402950417337768 + "outputQty": "8057933288782479751", + "swapFee": "5813076010115515", + "priceReceived": 1.240291594111716 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "80576868855441209889", - "swapFee": "58130743004639067", - "priceReceived": 1.2403295223136046 + "outputQty": "80579108904399784445", + "swapFee": "58130758546929394", + "priceReceived": 1.2402950417337768 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -3245,107 +3245,107 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "11838729070533", + "outputQty": "11838729070568", "swapFee": "7209772257", - "priceReceived": 0.8440762659748161 + "priceReceived": 0.8440762659723207 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1183872906668422", - "swapFee": "720977225474", - "priceReceived": 0.8440762662494169 + "outputQty": "1183872907018354", + "swapFee": "720977225684", + "priceReceived": 0.8440762659997454 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "118387286817586995", - "swapFee": "72097720241086", - "priceReceived": 0.8440762937132719 + "outputQty": "118387290316909778", + "swapFee": "72097722337824", + "priceReceived": 0.8440762687461311 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1183872518244243855", - "swapFee": "720976992737435", - "priceReceived": 0.8440765433842954 + "outputQty": "1183872868175869937", + "swapFee": "720977202410866", + "priceReceived": 0.8440762937132719 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "11838690189932096568", - "swapFee": "7209748960428383", - "priceReceived": 0.8440790400561101 + "outputQty": "11838725182442438493", + "swapFee": "7209769927374354", + "priceReceived": 0.8440765433842954 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "118383403300427069140", - "swapFee": "72095393306750833", - "priceReceived": 0.8441040029327553 + "outputQty": "118386901899320965131", + "swapFee": "72097489604283831", + "priceReceived": 0.8440790400561101 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -3353,138 +3353,138 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "12395238527337", + "outputQty": "12395238527380", "swapFee": "7209772257", - "priceReceived": 0.8061797443997922 + "priceReceived": 0.8061797443969956 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1239523852263400", - "swapFee": "720977225474", - "priceReceived": 0.8061797447058552 + "outputQty": "1239523852690938", + "swapFee": "720977225684", + "priceReceived": 0.8061797444276173 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "123952380523418314", - "swapFee": "72097720241086", - "priceReceived": 0.8061797753120162 + "outputQty": "123952384798801504", + "swapFee": "72097722337824", + "priceReceived": 0.8061797474882337 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1239523377696697198", - "swapFee": "720976992737435", - "priceReceived": 0.8061800535494049 + "outputQty": "1239523805234183136", + "swapFee": "720977202410866", + "priceReceived": 0.8061797753120162 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "12395191024051384203", - "swapFee": "7209748960428383", - "priceReceived": 0.8061828358796373 + "outputQty": "12395233776966972004", + "swapFee": "7209769927374354", + "priceReceived": 0.8061800535494049 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "123947635781796985191", - "swapFee": "72095393306750833", - "priceReceived": 0.8062106548172556 + "outputQty": "123951910240513842304", + "swapFee": "72097489604283831", + "priceReceived": 0.8061828358796373 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "768896006715057077927865", - "swapFee": "455349056078842881937", + "outputQty": "7688960067150570510686794", + "swapFee": "4553490560788428655099", "priceReceived": 0.908763532183185 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1485514801822270051395981", - "swapFee": "884040318185604670645", + "outputQty": "14855148018222699983548195", + "swapFee": "8840403181856046382992", "priceReceived": 0.9407620563372994 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2191692694525269933121433", - "swapFee": "1307270388189317742828", + "outputQty": "21916926945252697726438582", + "swapFee": "13072703881893176458785", "priceReceived": 0.9564720158296994 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2893745098578223596232972", - "swapFee": "1728372076376296111498", + "outputQty": "28937450985782234903190793", + "swapFee": "17283720763762960470737", "priceReceived": 0.9659011186911105 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3593394051728979159386178", - "swapFee": "2148353632174868084140", + "outputQty": "35933940517289789465416787", + "swapFee": "21483536321748679552890", "priceReceived": 0.9722984999896522 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, - "outputQty": "4291015906040761605294836", - "swapFee": "2567621069932273372757", + "outputQty": "42910159060407612861463358", + "swapFee": "25676210699322731795964", "priceReceived": 0.9770722063807332 }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, - "outputQty": "4986132009816772962673844", - "swapFee": "2986366809676326880201", + "outputQty": "49861320098167733903550826", + "swapFee": "29863668096763271369811", "priceReceived": 0.98100363639792 }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, - "outputQty": "5676824010962740152173763", - "swapFee": "3404691779986865867419", + "outputQty": "56768240109627399428847930", + "swapFee": "34046917799868657384976", "priceReceived": 0.9847399351159319 }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, - "outputQty": "6356304183245645467880735", - "swapFee": "3822652371743742700155", + "outputQty": "63563041832456456748662292", + "swapFee": "38226523717437428277626", "priceReceived": 0.989407864432471 }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, - "outputQty": "6988467216013139965717995", - "swapFee": "4240281183082721427082", + "outputQty": "69884672160131396226486936", + "swapFee": "42402811830827211697001", "priceReceived": 0.9998987621785502 } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "5503000000000000000000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "55030000000000001379926016", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -3493,121 +3493,121 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "11620945759945", + "outputQty": "11620945759973", "swapFee": "6859719831", - "priceReceived": 0.8599248707117532 + "priceReceived": 0.8599248707096812 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1162094575673868", - "swapFee": "685971983000", - "priceReceived": 0.8599248709491 + "outputQty": "1162094575965259", + "swapFee": "685971983150", + "priceReceived": 0.8599248707333478 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "116209454362088099", - "swapFee": "68597196650141", - "priceReceived": 0.8599248946818155 + "outputQty": "116209457275995952", + "swapFee": "68597198150060", + "priceReceived": 0.8599248731066195 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1162094252230663839", - "swapFee": "685971816509847", - "priceReceived": 0.8599251104334148 + "outputQty": "1162094543620880986", + "swapFee": "685971966501419", + "priceReceived": 0.8599248946818155 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "11620913383853133332", - "swapFee": "6859703166228994", - "priceReceived": 0.8599272679132866 + "outputQty": "11620942522306638392", + "swapFee": "6859718165098477", + "priceReceived": 0.8599251104334148 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "116206220561278555141", - "swapFee": "68595532062973176", - "priceReceived": 0.8599488391005764 + "outputQty": "116209133838531333411", + "swapFee": "68597031662289949", + "priceReceived": 0.8599272679132866 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "745890348448147376765907", - "swapFee": "445006902707531211857", + "outputQty": "7458903484481473496949241", + "swapFee": "4450069027075311955063", "priceReceived": 0.9368065889994129 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1455978176046775934050805", - "swapFee": "871263438783980145513", + "outputQty": "14559781760467758806400321", + "swapFee": "8712634387839801132196", "priceReceived": 0.9598555524752027 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2158527843482740112916076", - "swapFee": "1293720116988526957620", + "outputQty": "21585278434827399524990803", + "swapFee": "12937201169885268607882", "priceReceived": 0.9711740741322403 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2857415815532514252372830", - "swapFee": "1714701523310602758700", + "outputQty": "28574158155325141465359188", + "swapFee": "17147015233106026944065", "priceReceived": 0.9781864030019696 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3552759522564674531561542", - "swapFee": "2134908027576693262258", + "outputQty": "35527595225646743205896673", + "swapFee": "21349080275766931335750", "priceReceived": 0.9834229054293727 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, - "outputQty": "4241362748345309178531825", - "swapFee": "2554620993917667761718", + "outputQty": "42413627483453088679647375", + "swapFee": "25546209939176675687382", "priceReceived": 0.9885137461165676 }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, - "outputQty": "4904706719603051186243047", - "swapFee": "2973973525353851305566", + "outputQty": "49047067196030515854283801", + "swapFee": "29739735253538515633572", "priceReceived": 0.9972922554012608 }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -3615,117 +3615,117 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "11550033183542", + "outputQty": "11550033183569", "swapFee": "6859719831", - "priceReceived": 0.8652044649021905 + "priceReceived": 0.865204464900168 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1155003318045790", - "swapFee": "685971983000", - "priceReceived": 0.8652044651333047 + "outputQty": "1155003318326058", + "swapFee": "685971983150", + "priceReceived": 0.8652044649232282 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "115500328721628968", - "swapFee": "68597196650141", - "priceReceived": 0.8652044882417411 + "outputQty": "115500331524310723", + "swapFee": "68597198150060", + "priceReceived": 0.865204467234072 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1155003006948657823", - "swapFee": "685971816509847", - "priceReceived": 0.8652046983180812 + "outputQty": "1155003287216289672", + "swapFee": "685971966501419", + "priceReceived": 0.8652044882417411 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "11550002043267059664", - "swapFee": "6859703166228994", - "priceReceived": 0.8652067990463392 + "outputQty": "11550030069486578217", + "swapFee": "6859718165098477", + "priceReceived": 0.8652046983180812 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "115497218354278530158", - "swapFee": "68595532062973176", - "priceReceived": 0.865227802815176 + "outputQty": "115500020432670596614", + "swapFee": "68597031662289949", + "priceReceived": 0.8652067990463392 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "743166819088135044993130", - "swapFee": "445006902707531211857", + "outputQty": "7431668190881350175319736", + "swapFee": "4450069027075311955063", "priceReceived": 0.9402397619886531 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1450928056228897744391420", - "swapFee": "871263438783980145513", + "outputQty": "14509280562288976903095086", + "swapFee": "8712634387839801132196", "priceReceived": 0.9631964386942302 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2149425990449541609895316", - "swapFee": "1293720116988526957620", + "outputQty": "21494259904495414491405844", + "swapFee": "12937201169885268607882", "priceReceived": 0.9752865598524654 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2838442023752825260195309", - "swapFee": "1714701523310602758700", + "outputQty": "28384420237528251530525463", + "swapFee": "17147015233106026944065", "priceReceived": 0.9847251679219391 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3494131812367917204123626", - "swapFee": "2134908027576693262258", + "outputQty": "34941318123679170046454943", + "swapFee": "21349080275766931335750", "priceReceived": 0.9999236661895382 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -3733,107 +3733,107 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "8594828515917", + "outputQty": "8594828515934", "swapFee": "5899351172", - "priceReceived": 1.1628039617450947 + "priceReceived": 1.1628039617427948 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "859482851387857", - "swapFee": "589935117275", - "priceReceived": 1.1628039620207888 + "outputQty": "859482851573100", + "swapFee": "589935117276", + "priceReceived": 1.1628039617701704 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "85948283101101317", - "swapFee": "58993511717134", - "priceReceived": 1.1628039895889701 + "outputQty": "85948284953541642", + "swapFee": "58993511726577", + "priceReceived": 1.1628039645269872 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "859482645766757989", - "swapFee": "589935116226982", - "priceReceived": 1.1628042402091592 + "outputQty": "859482831011013166", + "swapFee": "589935117171340", + "priceReceived": 1.1628039895889701 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "8594807933019418572", - "swapFee": "5899351067834018", - "priceReceived": 1.1628067464471152 + "outputQty": "8594826457667579873", + "swapFee": "5899351162269826", + "priceReceived": 1.1628042402091592 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "85946226642713984426", - "swapFee": "58993501234750486", - "priceReceived": 1.1628318124334742 + "outputQty": "85948079330194185643", + "swapFee": "58993510678340182", + "priceReceived": 1.1628067464471152 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -3841,109 +3841,109 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "9933015265778", + "outputQty": "9933015265777", "swapFee": "5899351172", - "priceReceived": 1.006149732122174 + "priceReceived": 1.0061497321222754 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "993301526573337", - "swapFee": "589935117275", - "priceReceived": 1.0061497321266193 + "outputQty": "993301526577316", + "swapFee": "589935117276", + "priceReceived": 1.0061497321225878 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "99330152613560344", - "swapFee": "58993511717134", - "priceReceived": 1.0061497325701192 + "outputQty": "99330152653354297", + "swapFee": "58993511726577", + "priceReceived": 1.0061497321669373 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "993301522156207633", - "swapFee": "589935116226982", - "priceReceived": 1.0061497366019387 + "outputQty": "993301526135603437", + "swapFee": "589935117171340", + "priceReceived": 1.0061497325701192 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "9933014823622019721", - "swapFee": "5899351067834018", - "priceReceived": 1.006149776920183 + "outputQty": "9933015221562076308", + "swapFee": "5899351162269826", + "priceReceived": 1.0061497366019387 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "99330108441738514131", - "swapFee": "58993501234750486", - "priceReceived": 1.0061501801076262 + "outputQty": "99330148236220197105", + "swapFee": "58993510678340182", + "priceReceived": 1.006149776920183 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "692112050839051884447054", - "swapFee": "411965810390800782245", + "outputQty": "6921120508390518571560670", + "swapFee": "4119658103908007662584", "priceReceived": 1.0096458129033645 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -3951,107 +3951,107 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "8647597319619", + "outputQty": "8647597319636", "swapFee": "5935570825", - "priceReceived": 1.155704186930772 + "priceReceived": 1.1557041869285 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "864759731762277", - "swapFee": "593557082546", - "priceReceived": 1.155704187197504 + "outputQty": "864759731943748", + "swapFee": "593557082547", + "priceReceived": 1.155704186954977 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "86475971180035582", - "swapFee": "59355708242930", - "priceReceived": 1.155704213875658 + "outputQty": "86475972994755656", + "swapFee": "59355708253607", + "priceReceived": 1.1557041896227904 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "864759530328127639", - "swapFee": "593557081361661", - "priceReceived": 1.1557044564046837 + "outputQty": "864759711800355814", + "swapFee": "593557082429306", + "priceReceived": 1.155704213875658 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "8647577155837814186", - "swapFee": "5935570706852205", - "priceReceived": 1.1557068817300284 + "outputQty": "8647595303281276377", + "swapFee": "5935570813616619", + "priceReceived": 1.1557044564046837 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "86473956593366315633", - "swapFee": "59355696392160991", - "priceReceived": 1.1557311384925644 + "outputQty": "86475771558378141871", + "swapFee": "59355707068522055", + "priceReceived": 1.1557068817300284 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -4059,124 +4059,124 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "10055359156058", + "outputQty": "10055359156057", "swapFee": "5935570825", - "priceReceived": 0.9939042727433488 + "priceReceived": 0.9939042727434476 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1005535915601292", - "swapFee": "593557082546", - "priceReceived": 0.9939042727477589 + "outputQty": "1005535915605344", + "swapFee": "593557082547", + "priceReceived": 0.9939042727437528 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "100553591515543302", - "swapFee": "59355708242930", - "priceReceived": 0.9939042731885764 + "outputQty": "100553591556075854", + "swapFee": "59355708253607", + "priceReceived": 0.9939042727878333 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1005535911102178221", - "swapFee": "593557081361661", - "priceReceived": 0.9939042771960065 + "outputQty": "1005535915155433012", + "swapFee": "593557082429306", + "priceReceived": 0.9939042731885764 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "10055358705696826886", - "swapFee": "5935570706852205", - "priceReceived": 0.9939043172702577 + "outputQty": "10055359111021782202", + "swapFee": "5935570813616619", + "priceReceived": 0.9939042771960065 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "100553546524996650939", - "swapFee": "59355696392160991", - "priceReceived": 0.9939047180077686 + "outputQty": "100553587056968268960", + "swapFee": "59355707068522055", + "priceReceived": 0.9939043172702577 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "701018217861898684511298", - "swapFee": "414460558510421777310", + "outputQty": "7010182178618986583342991", + "swapFee": "4144605585104217616380", "priceReceived": 0.9968150921566366 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1398171292102579103177398", - "swapFee": "827881449563621606965", + "outputQty": "13981712921025790511266833", + "swapFee": "8278814495636215756828", "priceReceived": 0.9995714591226933 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2091056554689476319158584", - "swapFee": "1240319563507359838670", + "outputQty": "20910565546894761623241457", + "swapFee": "12403195635073597444008", "priceReceived": 1.0025360986698917 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "7492500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "20069999999999998058037248", + "reserve2": "74925000000000000232783872", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -4185,107 +4185,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "11838729070533", + "outputQty": "11838729070568", "swapFee": "7209772257", - "priceReceived": 0.8440762659748161 + "priceReceived": 0.8440762659723207 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1183872906668422", - "swapFee": "720977225474", - "priceReceived": 0.8440762662494169 + "outputQty": "1183872907018354", + "swapFee": "720977225684", + "priceReceived": 0.8440762659997454 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "118387286817586995", - "swapFee": "72097720241086", - "priceReceived": 0.8440762937132719 + "outputQty": "118387290316909778", + "swapFee": "72097722337824", + "priceReceived": 0.8440762687461311 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1183872518244243855", - "swapFee": "720976992737435", - "priceReceived": 0.8440765433842954 + "outputQty": "1183872868175869937", + "swapFee": "720977202410866", + "priceReceived": 0.8440762937132719 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "11838690189932096567", - "swapFee": "7209748960428383", - "priceReceived": 0.8440790400561101 + "outputQty": "11838725182442438493", + "swapFee": "7209769927374354", + "priceReceived": 0.8440765433842954 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "118383403300427069140", - "swapFee": "72095393306750833", - "priceReceived": 0.8441040029327553 + "outputQty": "118386901899320965131", + "swapFee": "72097489604283831", + "priceReceived": 0.8440790400561101 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -4293,235 +4293,235 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "12395238527337", + "outputQty": "12395238527380", "swapFee": "7209772257", - "priceReceived": 0.8061797443997922 + "priceReceived": 0.8061797443969956 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1239523852263400", - "swapFee": "720977225474", - "priceReceived": 0.8061797447058552 + "outputQty": "1239523852690938", + "swapFee": "720977225684", + "priceReceived": 0.8061797444276173 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "123952380523418314", - "swapFee": "72097720241086", - "priceReceived": 0.8061797753120162 + "outputQty": "123952384798801504", + "swapFee": "72097722337824", + "priceReceived": 0.8061797474882337 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1239523377696697198", - "swapFee": "720976992737435", - "priceReceived": 0.8061800535494049 + "outputQty": "1239523805234183136", + "swapFee": "720977202410866", + "priceReceived": 0.8061797753120162 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "12395191024051384203", - "swapFee": "7209748960428383", - "priceReceived": 0.8061828358796373 + "outputQty": "12395233776966972004", + "swapFee": "7209769927374354", + "priceReceived": 0.8061800535494049 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "123947635781796985191", - "swapFee": "72095393306750833", - "priceReceived": 0.8062106548172556 + "outputQty": "123951910240513842304", + "swapFee": "72097489604283831", + "priceReceived": 0.8061828358796373 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "768896006715057077927865", - "swapFee": "455349056078842881937", + "outputQty": "7688960067150570510686794", + "swapFee": "4553490560788428655099", "priceReceived": 0.908763532183185 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1485514801822270051395981", - "swapFee": "884040318185604670645", + "outputQty": "14855148018222699983548195", + "swapFee": "8840403181856046382992", "priceReceived": 0.9407620563372994 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2191692694525269933121433", - "swapFee": "1307270388189317742828", + "outputQty": "21916926945252697726438582", + "swapFee": "13072703881893176458785", "priceReceived": 0.9564720158296994 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2893745098578223596232972", - "swapFee": "1728372076376296111498", + "outputQty": "28937450985782234903190793", + "swapFee": "17283720763762960470737", "priceReceived": 0.9659011186911105 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3593394051728979159386178", - "swapFee": "2148353632174868084140", + "outputQty": "35933940517289789465416787", + "swapFee": "21483536321748679552890", "priceReceived": 0.9722984999896522 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, - "outputQty": "4291015906040761605294836", - "swapFee": "2567621069932273372757", + "outputQty": "42910159060407612861463358", + "swapFee": "25676210699322731795964", "priceReceived": 0.9770722063807332 }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, - "outputQty": "4986132009816772962673844", - "swapFee": "2986366809676326880201", + "outputQty": "49861320098167733903550826", + "swapFee": "29863668096763271369811", "priceReceived": 0.98100363639792 }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, - "outputQty": "5676824010962740152173763", - "swapFee": "3404691779986865867419", + "outputQty": "56768240109627399428847930", + "swapFee": "34046917799868657384976", "priceReceived": 0.9847399351159319 }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, - "outputQty": "6356304183245645467880735", - "swapFee": "3822652371743742700155", + "outputQty": "63563041832456456748662292", + "swapFee": "38226523717437428277626", "priceReceived": 0.989407864432471 }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, - "outputQty": "6988467216013139965717995", - "swapFee": "4240281183082721427082", + "outputQty": "69884672160131396226486936", + "swapFee": "42402811830827211697001", "priceReceived": 0.9998987621785502 }, { "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "8436719465774", + "outputQty": "8436719465795", "swapFee": "6086334395", - "priceReceived": 1.1845734240836394 + "priceReceived": 1.1845734240806909 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "843671946345970", - "swapFee": "608633439508", - "priceReceived": 1.1845734244085735 + "outputQty": "843671946556369", + "swapFee": "608633439515", + "priceReceived": 1.1845734241131505 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "84367192320212282", - "swapFee": "60863343871480", - "priceReceived": 1.1845734569050674 + "outputQty": "84367194424198382", + "swapFee": "60863343943624", + "priceReceived": 1.1845734273628 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "843671712803297357", - "swapFee": "608633431500388", - "priceReceived": 1.1845737523281268 + "outputQty": "843671923202122814", + "swapFee": "608633438714806", + "priceReceived": 1.1845734569050674 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "8436696087934987253", - "swapFee": "6086333593565286", - "priceReceived": 1.1845767065970727 + "outputQty": "8436717128032973610", + "swapFee": "6086334315003881", + "priceReceived": 1.1845737523281268 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "84364856654093899177", - "swapFee": "60863263794995589", - "priceReceived": 1.184606253122287 + "outputQty": "84366960879349872911", + "swapFee": "60863335935652863", + "priceReceived": 1.1845767065970727 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -4529,121 +4529,121 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "10463793292692", + "outputQty": "10463793292694", "swapFee": "6086334395", - "priceReceived": 0.9550947143217013 + "priceReceived": 0.9550947143215187 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1046379329243911", - "swapFee": "608633439508", - "priceReceived": 0.9550947143447764 + "outputQty": "1046379329266878", + "swapFee": "608633439515", + "priceReceived": 0.9550947143238064 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "104637932671762503", - "swapFee": "60863343871480", - "priceReceived": 0.955094716651431 + "outputQty": "104637932901424869", + "swapFee": "60863343943624", + "priceReceived": 0.9550947145544719 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1046379303751399330", - "swapFee": "608633431500388", - "priceReceived": 0.9550947376210117 + "outputQty": "1046379326717625022", + "swapFee": "608633438714806", + "priceReceived": 0.955094716651431 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "10463790740902354752", - "swapFee": "6086333593565286", - "priceReceived": 0.9550949473158712 + "outputQty": "10463793037513993371", + "swapFee": "6086334315003881", + "priceReceived": 0.9550947376210117 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "104637677758789146648", - "swapFee": "60863263794995589", - "priceReceived": 0.9550970441697376 + "outputQty": "104637907409023548229", + "swapFee": "60863335935652863", + "priceReceived": 0.9550949473158711 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "722263128479055491881378", - "swapFee": "422553559162174988487", + "outputQty": "7222631284790554675305345", + "swapFee": "4225535591621749738862", "priceReceived": 0.9674832050645118 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1433094677312411634245482", - "swapFee": "841275721935342452176", + "outputQty": "14330946773124115843896971", + "swapFee": "8412757219353424224745", "priceReceived": 0.975203345880127 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2137711494094160926435218", - "swapFee": "1257768754982574099612", + "outputQty": "21377114940941607698813472", + "swapFee": "12577687549825740067676", "priceReceived": 0.980647873689488 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2838008198118375113442264", - "swapFee": "1672697094452568553252", + "outputQty": "28380081981183750120066182", + "swapFee": "16726970944525684929565", "priceReceived": 0.9848904963554165 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3534438755467934405642287", - "swapFee": "2086377935724127709749", + "outputQty": "35344387554679341987849106", + "swapFee": "20863779357241275865535", "priceReceived": 0.988534209755095 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, - "outputQty": "4226394339111648882141178", - "swapFee": "2498975677928744759900", + "outputQty": "42263943391116485717951138", + "swapFee": "24989756779287445740732", "priceReceived": 0.9920278819044936 }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, - "outputQty": "4911782260367201108637264", - "swapFee": "2910579067931670693036", + "outputQty": "49117822603672015350811396", + "swapFee": "29105790679316709499221", "priceReceived": 0.9958685384735243 }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -4651,107 +4651,107 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "8057935777439", + "outputQty": "8057935777461", "swapFee": "5813076027", - "priceReceived": 1.2402912110512483 + "priceReceived": 1.240291211047862 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "805793577497443", - "swapFee": "581307602736", - "priceReceived": 1.2402912114305544 + "outputQty": "805793577721423", + "swapFee": "581307602738", + "priceReceived": 1.2402912110857982 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "80579355285952603", - "swapFee": "58130760256577", - "priceReceived": 1.2402912493538687 + "outputQty": "80579357525763237", + "swapFee": "58130760272119", + "priceReceived": 1.2402912148781275 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "805793328878247977", - "swapFee": "581307601011551", - "priceReceived": 1.240291594111716 + "outputQty": "805793552859526024", + "swapFee": "581307602565777", + "priceReceived": 1.2402912493538687 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "8057910890439978463", - "swapFee": "5813075854692939", - "priceReceived": 1.2402950417337768 + "outputQty": "8057933288782479751", + "swapFee": "5813076010115515", + "priceReceived": 1.240291594111716 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "80576868855441209889", - "swapFee": "58130743004639067", - "priceReceived": 1.2403295223136046 + "outputQty": "80579108904399784445", + "swapFee": "58130758546929394", + "priceReceived": 1.2402950417337768 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -4759,118 +4759,118 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "9545299033164", + "outputQty": "9545299033166", "swapFee": "5813076027", - "priceReceived": 1.0470271166203795 + "priceReceived": 1.0470271166201601 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "954529903294338", - "swapFee": "581307602736", - "priceReceived": 1.0470271166445417 + "outputQty": "954529903314341", + "swapFee": "581307602738", + "priceReceived": 1.0470271166225984 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "95452990109381565", - "swapFee": "58130760256577", - "priceReceived": 1.0470271190584806 + "outputQty": "95452990309428983", + "swapFee": "58130760272119", + "priceReceived": 1.0470271168639909 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "954529881089065644", - "swapFee": "581307601011551", - "priceReceived": 1.0470271410033882 + "outputQty": "954529901093815634", + "swapFee": "581307602565777", + "priceReceived": 1.0470271190584806 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "9545296810407490515", - "swapFee": "5813075854692939", - "priceReceived": 1.04702736045341 + "outputQty": "9545298810890656370", + "swapFee": "5813076010115515", + "priceReceived": 1.0470271410033882 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "95452768047591845254", - "swapFee": "58130743004639067", - "priceReceived": 1.0470295550482653 + "outputQty": "95452968104074904497", + "swapFee": "58130758546929394", + "priceReceived": 1.04702736045341 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "5503000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "55030000000000001379926016", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -4879,113 +4879,113 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "10055359156058", + "outputQty": "10055359156057", "swapFee": "5935570825", - "priceReceived": 0.9939042727433488 + "priceReceived": 0.9939042727434476 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1005535915601292", - "swapFee": "593557082546", - "priceReceived": 0.9939042727477589 + "outputQty": "1005535915605344", + "swapFee": "593557082547", + "priceReceived": 0.9939042727437528 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "100553591515543302", - "swapFee": "59355708242930", - "priceReceived": 0.9939042731885764 + "outputQty": "100553591556075854", + "swapFee": "59355708253607", + "priceReceived": 0.9939042727878333 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1005535911102178221", - "swapFee": "593557081361661", - "priceReceived": 0.9939042771960065 + "outputQty": "1005535915155433012", + "swapFee": "593557082429306", + "priceReceived": 0.9939042731885764 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "10055358705696826886", - "swapFee": "5935570706852205", - "priceReceived": 0.9939043172702577 + "outputQty": "10055359111021782202", + "swapFee": "5935570813616619", + "priceReceived": 0.9939042771960065 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "100553546524996650939", - "swapFee": "59355696392160991", - "priceReceived": 0.9939047180077686 + "outputQty": "100553587056968268960", + "swapFee": "59355707068522055", + "priceReceived": 0.9939043172702577 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "701018217861898684511298", - "swapFee": "414460558510421777310", + "outputQty": "7010182178618986583342991", + "swapFee": "4144605585104217616380", "priceReceived": 0.9968150921566366 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1398171292102579103177398", - "swapFee": "827881449563621606965", + "outputQty": "13981712921025790511266833", + "swapFee": "8278814495636215756828", "priceReceived": 0.9995714591226933 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2091056554689476319158584", - "swapFee": "1240319563507359838670", + "outputQty": "20910565546894761623241457", + "swapFee": "12403195635073597444008", "priceReceived": 1.0025360986698917 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -4993,107 +4993,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "8647597319619", + "outputQty": "8647597319636", "swapFee": "5935570825", - "priceReceived": 1.155704186930772 + "priceReceived": 1.1557041869285 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "864759731762277", - "swapFee": "593557082546", - "priceReceived": 1.155704187197504 + "outputQty": "864759731943748", + "swapFee": "593557082547", + "priceReceived": 1.155704186954977 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "86475971180035582", - "swapFee": "59355708242930", - "priceReceived": 1.155704213875658 + "outputQty": "86475972994755656", + "swapFee": "59355708253607", + "priceReceived": 1.1557041896227904 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "864759530328127639", - "swapFee": "593557081361661", - "priceReceived": 1.1557044564046837 + "outputQty": "864759711800355814", + "swapFee": "593557082429306", + "priceReceived": 1.155704213875658 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "8647577155837814186", - "swapFee": "5935570706852205", - "priceReceived": 1.1557068817300284 + "outputQty": "8647595303281276377", + "swapFee": "5935570813616619", + "priceReceived": 1.1557044564046837 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "86473956593366315633", - "swapFee": "59355696392160991", - "priceReceived": 1.1557311384925644 + "outputQty": "86475771558378141871", + "swapFee": "59355707068522055", + "priceReceived": 1.1557068817300284 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -5101,109 +5101,109 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "9933015265778", + "outputQty": "9933015265777", "swapFee": "5899351172", - "priceReceived": 1.006149732122174 + "priceReceived": 1.0061497321222754 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "993301526573337", - "swapFee": "589935117275", - "priceReceived": 1.0061497321266193 + "outputQty": "993301526577316", + "swapFee": "589935117276", + "priceReceived": 1.0061497321225878 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "99330152613560344", - "swapFee": "58993511717134", - "priceReceived": 1.0061497325701192 + "outputQty": "99330152653354297", + "swapFee": "58993511726577", + "priceReceived": 1.0061497321669373 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "993301522156207633", - "swapFee": "589935116226982", - "priceReceived": 1.0061497366019387 + "outputQty": "993301526135603437", + "swapFee": "589935117171340", + "priceReceived": 1.0061497325701192 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "9933014823622019721", - "swapFee": "5899351067834018", - "priceReceived": 1.006149776920183 + "outputQty": "9933015221562076308", + "swapFee": "5899351162269826", + "priceReceived": 1.0061497366019387 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "99330108441738514131", - "swapFee": "58993501234750486", - "priceReceived": 1.0061501801076262 + "outputQty": "99330148236220197105", + "swapFee": "58993510678340182", + "priceReceived": 1.006149776920183 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "692112050839051884447054", - "swapFee": "411965810390800782245", + "outputQty": "6921120508390518571560670", + "swapFee": "4119658103908007662584", "priceReceived": 1.0096458129033645 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -5211,107 +5211,107 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "8594828515917", + "outputQty": "8594828515934", "swapFee": "5899351172", - "priceReceived": 1.1628039617450947 + "priceReceived": 1.1628039617427948 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "859482851387857", - "swapFee": "589935117275", - "priceReceived": 1.1628039620207888 + "outputQty": "859482851573100", + "swapFee": "589935117276", + "priceReceived": 1.1628039617701704 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "85948283101101317", - "swapFee": "58993511717134", - "priceReceived": 1.1628039895889701 + "outputQty": "85948284953541642", + "swapFee": "58993511726577", + "priceReceived": 1.1628039645269872 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "859482645766757989", - "swapFee": "589935116226982", - "priceReceived": 1.1628042402091592 + "outputQty": "859482831011013166", + "swapFee": "589935117171340", + "priceReceived": 1.1628039895889701 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "8594807933019418572", - "swapFee": "5899351067834018", - "priceReceived": 1.1628067464471152 + "outputQty": "8594826457667579873", + "swapFee": "5899351162269826", + "priceReceived": 1.1628042402091592 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "85946226642713984426", - "swapFee": "58993501234750486", - "priceReceived": 1.1628318124334742 + "outputQty": "85948079330194185643", + "swapFee": "58993510678340182", + "priceReceived": 1.1628067464471152 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -5319,117 +5319,117 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "11550033183542", + "outputQty": "11550033183569", "swapFee": "6859719831", - "priceReceived": 0.8652044649021905 + "priceReceived": 0.865204464900168 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1155003318045790", - "swapFee": "685971983000", - "priceReceived": 0.8652044651333047 + "outputQty": "1155003318326058", + "swapFee": "685971983150", + "priceReceived": 0.8652044649232282 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "115500328721628968", - "swapFee": "68597196650141", - "priceReceived": 0.8652044882417411 + "outputQty": "115500331524310723", + "swapFee": "68597198150060", + "priceReceived": 0.865204467234072 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1155003006948657823", - "swapFee": "685971816509847", - "priceReceived": 0.8652046983180812 + "outputQty": "1155003287216289672", + "swapFee": "685971966501419", + "priceReceived": 0.8652044882417411 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "11550002043267059664", - "swapFee": "6859703166228994", - "priceReceived": 0.8652067990463392 + "outputQty": "11550030069486578217", + "swapFee": "6859718165098477", + "priceReceived": 0.8652046983180812 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "115497218354278530158", - "swapFee": "68595532062973176", - "priceReceived": 0.865227802815176 + "outputQty": "115500020432670596614", + "swapFee": "68597031662289949", + "priceReceived": 0.8652067990463392 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "743166819088135044993130", - "swapFee": "445006902707531211857", + "outputQty": "7431668190881350175319736", + "swapFee": "4450069027075311955063", "priceReceived": 0.9402397619886531 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1450928056228897744391420", - "swapFee": "871263438783980145513", + "outputQty": "14509280562288976903095086", + "swapFee": "8712634387839801132196", "priceReceived": 0.9631964386942302 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2149425990449541609895316", - "swapFee": "1293720116988526957620", + "outputQty": "21494259904495414491405844", + "swapFee": "12937201169885268607882", "priceReceived": 0.9752865598524654 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2838442023752825260195309", - "swapFee": "1714701523310602758700", + "outputQty": "28384420237528251530525463", + "swapFee": "17147015233106026944065", "priceReceived": 0.9847251679219391 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3494131812367917204123626", - "swapFee": "2134908027576693262258", + "outputQty": "34941318123679170046454943", + "swapFee": "21349080275766931335750", "priceReceived": 0.9999236661895382 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -5437,132 +5437,132 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "11620945759945", + "outputQty": "11620945759973", "swapFee": "6859719831", - "priceReceived": 0.8599248707117532 + "priceReceived": 0.8599248707096812 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1162094575673868", - "swapFee": "685971983000", - "priceReceived": 0.8599248709491 + "outputQty": "1162094575965259", + "swapFee": "685971983150", + "priceReceived": 0.8599248707333478 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "116209454362088099", - "swapFee": "68597196650141", - "priceReceived": 0.8599248946818155 + "outputQty": "116209457275995952", + "swapFee": "68597198150060", + "priceReceived": 0.8599248731066195 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1162094252230663839", - "swapFee": "685971816509847", - "priceReceived": 0.8599251104334148 + "outputQty": "1162094543620880986", + "swapFee": "685971966501419", + "priceReceived": 0.8599248946818155 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "11620913383853133332", - "swapFee": "6859703166228994", - "priceReceived": 0.8599272679132866 + "outputQty": "11620942522306638392", + "swapFee": "6859718165098477", + "priceReceived": 0.8599251104334148 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "116206220561278555141", - "swapFee": "68595532062973176", - "priceReceived": 0.8599488391005764 + "outputQty": "116209133838531333411", + "swapFee": "68597031662289949", + "priceReceived": 0.8599272679132866 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "745890348448147376765907", - "swapFee": "445006902707531211857", + "outputQty": "7458903484481473496949241", + "swapFee": "4450069027075311955063", "priceReceived": 0.9368065889994129 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1455978176046775934050805", - "swapFee": "871263438783980145513", + "outputQty": "14559781760467758806400321", + "swapFee": "8712634387839801132196", "priceReceived": 0.9598555524752027 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2158527843482740112916076", - "swapFee": "1293720116988526957620", + "outputQty": "21585278434827399524990803", + "swapFee": "12937201169885268607882", "priceReceived": 0.9711740741322403 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2857415815532514252372830", - "swapFee": "1714701523310602758700", + "outputQty": "28574158155325141465359188", + "swapFee": "17147015233106026944065", "priceReceived": 0.9781864030019696 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3552759522564674531561542", - "swapFee": "2134908027576693262258", + "outputQty": "35527595225646743205896673", + "swapFee": "21349080275766931335750", "priceReceived": 0.9834229054293727 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, - "outputQty": "4241362748345309178531825", - "swapFee": "2554620993917667761718", + "outputQty": "42413627483453088679647375", + "swapFee": "25546209939176675687382", "priceReceived": 0.9885137461165676 }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, - "outputQty": "4904706719603051186243047", - "swapFee": "2973973525353851305566", + "outputQty": "49047067196030515854283801", + "swapFee": "29739735253538515633572", "priceReceived": 0.9972922554012608 }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "2007000000000000960000000", - "reserve2": "3996499999999999360000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "20070000000000010942939136", + "reserve2": "39964999999999992615927808", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -5571,111 +5571,111 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "9915826051847", + "outputQty": "9915826051848", "swapFee": "5987961342", - "priceReceived": 1.0078849695831884 + "priceReceived": 1.0078849695830867 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "991582605179020", + "outputQty": "991582605184218", "swapFee": "598796134240", - "priceReceived": 1.0078849695889214 + "priceReceived": 1.0078849695836378 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "99158260460728360", - "swapFee": "59879613419763", - "priceReceived": 1.0078849701701003 + "outputQty": "99158260512704440", + "swapFee": "59879613423616", + "priceReceived": 1.0078849696417553 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "991582599409673433", - "swapFee": "598796133812390", - "priceReceived": 1.0078849754535517 + "outputQty": "991582604607283589", + "swapFee": "598796134197637", + "priceReceived": 1.0078849701701003 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "9915825474333675757", - "swapFee": "5987961299599208", - "priceReceived": 1.0078850282882756 + "outputQty": "9915825994096734336", + "swapFee": "5987961338123906", + "priceReceived": 1.0078849754535517 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "99158202764987759654", - "swapFee": "59879609143550369", - "priceReceived": 1.0078855566565874 + "outputQty": "99158254743336757731", + "swapFee": "59879612995992082", + "priceReceived": 1.0078850282882756 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "689282551659223245636916", - "swapFee": "418477829487451578495", + "outputQty": "6892825516592232213450364", + "swapFee": "4184778294874515625727", "priceReceived": 1.0137809530916222 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1356366996729241375923282", - "swapFee": "836578522387612414347", + "outputQty": "13563669967292413382079503", + "swapFee": "8365785223876123825384", "priceReceived": 1.0303726239636564 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -5691,109 +5691,109 @@ "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "999399999998011", + "outputQty": "999399999999801", "swapFee": "598796134240", - "priceReceived": 1.0000012045905033 + "priceReceived": 1.0000012045887123 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "99939999980116059", - "swapFee": "59879613419763", - "priceReceived": 1.0000012047875144 + "outputQty": "99939999998011605", + "swapFee": "59879613423616", + "priceReceived": 1.0000012046084128 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "999399998011605799", - "swapFee": "598796133812390", - "priceReceived": 1.0000012065785313 + "outputQty": "999399999801160579", + "swapFee": "598796134197637", + "priceReceived": 1.0000012047875146 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "9993999801160583413", - "swapFee": "5987961299599208", - "priceReceived": 1.0000012244886993 + "outputQty": "9993999980116057978", + "swapFee": "5987961338123906", + "priceReceived": 1.0000012065785313 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "99939980116061969608", - "swapFee": "59879609143550369", - "priceReceived": 1.0000014035903781 + "outputQty": "99939998011605834131", + "swapFee": "59879612995992082", + "priceReceived": 1.0000012244886993 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "697779736747200745522864", - "swapFee": "418477829487451578495", + "outputQty": "6977797367472007187658805", + "swapFee": "4184778294874515625727", "priceReceived": 1.0014356757162106 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1393157070614067945102172", - "swapFee": "836578522387612414347", + "outputQty": "13931570706140678917696156", + "swapFee": "8365785223876123825384", "priceReceived": 1.0031628528875085 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2084449282114052419694637", - "swapFee": "1254320506285243319162", + "outputQty": "20844492821140522609131861", + "swapFee": "12543205062852432234113", "priceReceived": 1.0057072136423473 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2765917160800186035881131", - "swapFee": "1671708803050131015856", + "outputQty": "27659171608001859312744738", + "swapFee": "16717088030501309523889", "priceReceived": 1.0105611009652629 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3409504832193172411327541", - "swapFee": "2088741347897643737830", + "outputQty": "34095048321931722196464870", + "swapFee": "20887413478976436105827", "priceReceived": 1.0247562125919134 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -5809,109 +5809,109 @@ "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1007279025238644", - "swapFee": "603516896553", - "priceReceived": 0.9921744204558122 + "outputQty": "1007279025243967", + "swapFee": "603516896555", + "priceReceived": 0.992174420450567 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "100727902465311571", - "swapFee": "60351689634942", - "priceReceived": 0.9921744210327623 + "outputQty": "100727902518541348", + "swapFee": "60351689653521", + "priceReceived": 0.9921744205082621 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1007279019330139954", - "swapFee": "603516894491591", - "priceReceived": 0.9921744262777621 + "outputQty": "1007279024653115691", + "swapFee": "603516896349429", + "priceReceived": 0.9921744210327623 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "10072789661005997875", - "swapFee": "6035168759132957", - "priceReceived": 0.9921744787275486 + "outputQty": "10072790193301399524", + "swapFee": "6035168944915918", + "priceReceived": 0.9921744262777621 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "100727843382691828833", - "swapFee": "60351669013876130", - "priceReceived": 0.9921750032043162 + "outputQty": "100727896610059978587", + "swapFee": "60351687591329577", + "priceReceived": 0.9921744787275486 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "701990061873335666661480", - "swapFee": "421209678016508108806", + "outputQty": "7019900618733356390054438", + "swapFee": "4212096780165080922857", "priceReceived": 0.9954254743396473 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1400520690043401824861045", - "swapFee": "841445523586415237822", + "outputQty": "14005206900434017700522543", + "swapFee": "8414455235864152049972", "priceReceived": 0.9978849755037205 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2095431279847674350793501", - "swapFee": "1261119325233018729452", + "outputQty": "20954312798476741893531412", + "swapFee": "12611193252330186321001", "priceReceived": 1.0004331331863856 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2783047691616111483913211", - "swapFee": "1680399398546506822409", + "outputQty": "27830476916161113758475243", + "swapFee": "16803993985465067571976", "priceReceived": 1.004337657964579 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3441701398292317538340882", - "swapFee": "2099364923554529841758", + "outputQty": "34417013982923173367961614", + "swapFee": "20993649235545297121648", "priceReceived": 1.0151666954053677 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -5927,109 +5927,109 @@ "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1007279025238644", - "swapFee": "603516896553", - "priceReceived": 0.9921744204558122 + "outputQty": "1007279025243967", + "swapFee": "603516896555", + "priceReceived": 0.992174420450567 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "100727902465311571", - "swapFee": "60351689634942", - "priceReceived": 0.9921744210327623 + "outputQty": "100727902518541348", + "swapFee": "60351689653521", + "priceReceived": 0.9921744205082621 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1007279019330139954", - "swapFee": "603516894491591", - "priceReceived": 0.9921744262777621 + "outputQty": "1007279024653115691", + "swapFee": "603516896349429", + "priceReceived": 0.9921744210327623 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "10072789661005997875", - "swapFee": "6035168759132957", - "priceReceived": 0.9921744787275486 + "outputQty": "10072790193301399524", + "swapFee": "6035168944915918", + "priceReceived": 0.9921744262777621 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "100727843382691828833", - "swapFee": "60351669013876130", - "priceReceived": 0.9921750032043162 + "outputQty": "100727896610059978587", + "swapFee": "60351687591329577", + "priceReceived": 0.9921744787275486 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "701990061873335666661480", - "swapFee": "421209678016508108806", + "outputQty": "7019900618733356390054438", + "swapFee": "4212096780165080922857", "priceReceived": 0.9954254743396473 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1400520690043401824861045", - "swapFee": "841445523586415237822", + "outputQty": "14005206900434017700522543", + "swapFee": "8414455235864152049972", "priceReceived": 0.9978849755037205 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2095431279847674350793501", - "swapFee": "1261119325233018729452", + "outputQty": "20954312798476741893531412", + "swapFee": "12611193252330186321001", "priceReceived": 1.0004331331863856 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2783047691616111483913211", - "swapFee": "1680399398546506822409", + "outputQty": "27830476916161113758475243", + "swapFee": "16803993985465067571976", "priceReceived": 1.004337657964579 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3441701398292317538340882", - "swapFee": "2099364923554529841758", + "outputQty": "34417013982923173367961614", + "swapFee": "20993649235545297121648", "priceReceived": 1.0151666954053677 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -6045,109 +6045,109 @@ "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "999399999998011", + "outputQty": "999399999999801", "swapFee": "598796134240", - "priceReceived": 1.0000012045905033 + "priceReceived": 1.0000012045887123 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "99939999980116059", - "swapFee": "59879613419763", - "priceReceived": 1.0000012047875144 + "outputQty": "99939999998011605", + "swapFee": "59879613423616", + "priceReceived": 1.0000012046084128 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "999399998011605799", - "swapFee": "598796133812390", - "priceReceived": 1.0000012065785313 + "outputQty": "999399999801160579", + "swapFee": "598796134197637", + "priceReceived": 1.0000012047875146 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "9993999801160583413", - "swapFee": "5987961299599208", - "priceReceived": 1.0000012244886993 + "outputQty": "9993999980116057978", + "swapFee": "5987961338123906", + "priceReceived": 1.0000012065785313 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "99939980116061969608", - "swapFee": "59879609143550369", - "priceReceived": 1.0000014035903781 + "outputQty": "99939998011605834131", + "swapFee": "59879612995992082", + "priceReceived": 1.0000012244886993 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "697779736747200745522864", - "swapFee": "418477829487451578495", + "outputQty": "6977797367472007187658805", + "swapFee": "4184778294874515625727", "priceReceived": 1.0014356757162106 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1393157070614067945102172", - "swapFee": "836578522387612414347", + "outputQty": "13931570706140678917696156", + "swapFee": "8365785223876123825384", "priceReceived": 1.0031628528875085 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2084449282114052419694637", - "swapFee": "1254320506285243319162", + "outputQty": "20844492821140522609131861", + "swapFee": "12543205062852432234113", "priceReceived": 1.0057072136423473 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2765917160800186035881131", - "swapFee": "1671708803050131015856", + "outputQty": "27659171608001859312744738", + "swapFee": "16717088030501309523889", "priceReceived": 1.0105611009652629 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3409504832193172411327541", - "swapFee": "2088741347897643737830", + "outputQty": "34095048321931722196464870", + "swapFee": "20887413478976436105827", "priceReceived": 1.0247562125919134 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -6155,122 +6155,122 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "9915826051847", + "outputQty": "9915826051848", "swapFee": "5987961342", - "priceReceived": 1.0078849695831884 + "priceReceived": 1.0078849695830867 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "991582605179020", + "outputQty": "991582605184218", "swapFee": "598796134240", - "priceReceived": 1.0078849695889214 + "priceReceived": 1.0078849695836378 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "99158260460728360", - "swapFee": "59879613419763", - "priceReceived": 1.0078849701701003 + "outputQty": "99158260512704440", + "swapFee": "59879613423616", + "priceReceived": 1.0078849696417553 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "991582599409673433", - "swapFee": "598796133812390", - "priceReceived": 1.0078849754535517 + "outputQty": "991582604607283589", + "swapFee": "598796134197637", + "priceReceived": 1.0078849701701003 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "9915825474333675757", - "swapFee": "5987961299599208", - "priceReceived": 1.0078850282882756 + "outputQty": "9915825994096734336", + "swapFee": "5987961338123906", + "priceReceived": 1.0078849754535517 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "99158202764987759654", - "swapFee": "59879609143550369", - "priceReceived": 1.0078855566565874 + "outputQty": "99158254743336757731", + "swapFee": "59879612995992082", + "priceReceived": 1.0078850282882756 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "689282551659223245636916", - "swapFee": "418477829487451578495", + "outputQty": "6892825516592232213450364", + "swapFee": "4184778294874515625727", "priceReceived": 1.0137809530916222 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1356366996729241375923282", - "swapFee": "836578522387612414347", + "outputQty": "13563669967292413382079503", + "swapFee": "8365785223876123825384", "priceReceived": 1.0303726239636564 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "2007000000000000000000000", - "reserve2": "500500000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "20069999999999998058037248", + "reserve2": "5005000000000000031457280", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -6279,107 +6279,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "9545299033164", + "outputQty": "9545299033166", "swapFee": "5813076027", - "priceReceived": 1.0470271166203795 + "priceReceived": 1.0470271166201601 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "954529903294338", - "swapFee": "581307602736", - "priceReceived": 1.0470271166445417 + "outputQty": "954529903314341", + "swapFee": "581307602738", + "priceReceived": 1.0470271166225984 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "95452990109381565", - "swapFee": "58130760256577", - "priceReceived": 1.0470271190584806 + "outputQty": "95452990309428983", + "swapFee": "58130760272119", + "priceReceived": 1.0470271168639909 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "954529881089065644", - "swapFee": "581307601011551", - "priceReceived": 1.0470271410033882 + "outputQty": "954529901093815635", + "swapFee": "581307602565777", + "priceReceived": 1.0470271190584806 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "9545296810407490515", - "swapFee": "5813075854692939", - "priceReceived": 1.04702736045341 + "outputQty": "9545298810890656370", + "swapFee": "5813076010115515", + "priceReceived": 1.0470271410033882 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "95452768047591845254", - "swapFee": "58130743004639067", - "priceReceived": 1.0470295550482653 + "outputQty": "95452968104074904497", + "swapFee": "58130758546929394", + "priceReceived": 1.04702736045341 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -6387,107 +6387,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "8057935777439", + "outputQty": "8057935777461", "swapFee": "5813076027", - "priceReceived": 1.2402912110512483 + "priceReceived": 1.240291211047862 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "805793577497443", - "swapFee": "581307602736", - "priceReceived": 1.2402912114305544 + "outputQty": "805793577721423", + "swapFee": "581307602738", + "priceReceived": 1.2402912110857982 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "80579355285952603", - "swapFee": "58130760256577", - "priceReceived": 1.2402912493538687 + "outputQty": "80579357525763237", + "swapFee": "58130760272119", + "priceReceived": 1.2402912148781275 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "805793328878247977", - "swapFee": "581307601011551", - "priceReceived": 1.240291594111716 + "outputQty": "805793552859526024", + "swapFee": "581307602565777", + "priceReceived": 1.2402912493538687 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "8057910890439978463", - "swapFee": "5813075854692939", - "priceReceived": 1.2402950417337768 + "outputQty": "8057933288782479751", + "swapFee": "5813076010115515", + "priceReceived": 1.240291594111716 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "80576868855441209889", - "swapFee": "58130743004639067", - "priceReceived": 1.2403295223136046 + "outputQty": "80579108904399784445", + "swapFee": "58130758546929394", + "priceReceived": 1.2402950417337768 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -6495,121 +6495,121 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "10463793292692", + "outputQty": "10463793292694", "swapFee": "6086334395", - "priceReceived": 0.9550947143217013 + "priceReceived": 0.9550947143215187 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1046379329243911", - "swapFee": "608633439508", - "priceReceived": 0.9550947143447764 + "outputQty": "1046379329266878", + "swapFee": "608633439515", + "priceReceived": 0.9550947143238064 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "104637932671762503", - "swapFee": "60863343871480", - "priceReceived": 0.955094716651431 + "outputQty": "104637932901424869", + "swapFee": "60863343943624", + "priceReceived": 0.9550947145544719 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1046379303751399330", - "swapFee": "608633431500388", - "priceReceived": 0.9550947376210117 + "outputQty": "1046379326717625022", + "swapFee": "608633438714806", + "priceReceived": 0.955094716651431 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "10463790740902354752", - "swapFee": "6086333593565286", - "priceReceived": 0.9550949473158712 + "outputQty": "10463793037513993371", + "swapFee": "6086334315003881", + "priceReceived": 0.9550947376210117 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "104637677758789146648", - "swapFee": "60863263794995589", - "priceReceived": 0.9550970441697376 + "outputQty": "104637907409023548229", + "swapFee": "60863335935652863", + "priceReceived": 0.9550949473158711 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "722263128479055491881378", - "swapFee": "422553559162174988487", + "outputQty": "7222631284790554675305345", + "swapFee": "4225535591621749738862", "priceReceived": 0.9674832050645118 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1433094677312411634245482", - "swapFee": "841275721935342452176", + "outputQty": "14330946773124115843896971", + "swapFee": "8412757219353424224745", "priceReceived": 0.975203345880127 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2137711494094160926435218", - "swapFee": "1257768754982574099612", + "outputQty": "21377114940941607698813472", + "swapFee": "12577687549825740067676", "priceReceived": 0.980647873689488 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2838008198118375113442264", - "swapFee": "1672697094452568553252", + "outputQty": "28380081981183750120066182", + "swapFee": "16726970944525684929565", "priceReceived": 0.9848904963554165 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3534438755467934405642287", - "swapFee": "2086377935724127709749", + "outputQty": "35344387554679341987849106", + "swapFee": "20863779357241275865535", "priceReceived": 0.988534209755095 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, - "outputQty": "4226394339111648882141178", - "swapFee": "2498975677928744759900", + "outputQty": "42263943391116485717951138", + "swapFee": "24989756779287445740732", "priceReceived": 0.9920278819044936 }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, - "outputQty": "4911782260367201108637264", - "swapFee": "2910579067931670693036", + "outputQty": "49117822603672015350811396", + "swapFee": "29105790679316709499221", "priceReceived": 0.9958685384735243 }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -6617,107 +6617,107 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "8436719465774", + "outputQty": "8436719465795", "swapFee": "6086334395", - "priceReceived": 1.1845734240836394 + "priceReceived": 1.1845734240806909 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "843671946345970", - "swapFee": "608633439508", - "priceReceived": 1.1845734244085735 + "outputQty": "843671946556369", + "swapFee": "608633439515", + "priceReceived": 1.1845734241131505 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "84367192320212282", - "swapFee": "60863343871480", - "priceReceived": 1.1845734569050674 + "outputQty": "84367194424198382", + "swapFee": "60863343943624", + "priceReceived": 1.1845734273628 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "843671712803297357", - "swapFee": "608633431500388", - "priceReceived": 1.1845737523281268 + "outputQty": "843671923202122814", + "swapFee": "608633438714806", + "priceReceived": 1.1845734569050674 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "8436696087934987253", - "swapFee": "6086333593565286", - "priceReceived": 1.1845767065970727 + "outputQty": "8436717128032973610", + "swapFee": "6086334315003881", + "priceReceived": 1.1845737523281268 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "84364856654093899177", - "swapFee": "60863263794995589", - "priceReceived": 1.184606253122287 + "outputQty": "84366960879349872911", + "swapFee": "60863335935652863", + "priceReceived": 1.1845767065970727 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -6725,246 +6725,246 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "12395238527337", + "outputQty": "12395238527380", "swapFee": "7209772257", - "priceReceived": 0.8061797443997922 + "priceReceived": 0.8061797443969956 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1239523852263400", - "swapFee": "720977225474", - "priceReceived": 0.8061797447058552 + "outputQty": "1239523852690938", + "swapFee": "720977225684", + "priceReceived": 0.8061797444276173 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "123952380523418314", - "swapFee": "72097720241086", - "priceReceived": 0.8061797753120162 + "outputQty": "123952384798801504", + "swapFee": "72097722337824", + "priceReceived": 0.8061797474882337 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1239523377696697198", - "swapFee": "720976992737435", - "priceReceived": 0.8061800535494049 + "outputQty": "1239523805234183136", + "swapFee": "720977202410866", + "priceReceived": 0.8061797753120162 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "12395191024051384203", - "swapFee": "7209748960428383", - "priceReceived": 0.8061828358796373 + "outputQty": "12395233776966972004", + "swapFee": "7209769927374354", + "priceReceived": 0.8061800535494049 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "123947635781796985191", - "swapFee": "72095393306750833", - "priceReceived": 0.8062106548172556 + "outputQty": "123951910240513842304", + "swapFee": "72097489604283831", + "priceReceived": 0.8061828358796373 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "768896006715057077927865", - "swapFee": "455349056078842881937", + "outputQty": "7688960067150570510686794", + "swapFee": "4553490560788428655099", "priceReceived": 0.908763532183185 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1485514801822270051395981", - "swapFee": "884040318185604670645", + "outputQty": "14855148018222699983548195", + "swapFee": "8840403181856046382992", "priceReceived": 0.9407620563372994 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2191692694525269933121433", - "swapFee": "1307270388189317742828", + "outputQty": "21916926945252697726438582", + "swapFee": "13072703881893176458785", "priceReceived": 0.9564720158296994 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2893745098578223596232972", - "swapFee": "1728372076376296111498", + "outputQty": "28937450985782234903190793", + "swapFee": "17283720763762960470737", "priceReceived": 0.9659011186911105 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3593394051728979159386178", - "swapFee": "2148353632174868084140", + "outputQty": "35933940517289789465416787", + "swapFee": "21483536321748679552890", "priceReceived": 0.9722984999896522 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, - "outputQty": "4291015906040761605294836", - "swapFee": "2567621069932273372757", + "outputQty": "42910159060407612861463358", + "swapFee": "25676210699322731795964", "priceReceived": 0.9770722063807332 }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, - "outputQty": "4986132009816772962673844", - "swapFee": "2986366809676326880201", + "outputQty": "49861320098167733903550826", + "swapFee": "29863668096763271369811", "priceReceived": 0.98100363639792 }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, - "outputQty": "5676824010962740152173763", - "swapFee": "3404691779986865867419", + "outputQty": "56768240109627399428847930", + "swapFee": "34046917799868657384976", "priceReceived": 0.9847399351159319 }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, - "outputQty": "6356304183245645467880735", - "swapFee": "3822652371743742700155", + "outputQty": "63563041832456456748662292", + "swapFee": "38226523717437428277626", "priceReceived": 0.989407864432471 }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, - "outputQty": "6988467216013139965717995", - "swapFee": "4240281183082721427082", + "outputQty": "69884672160131396226486936", + "swapFee": "42402811830827211697001", "priceReceived": 0.9998987621785502 }, { "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "11838729070533", + "outputQty": "11838729070568", "swapFee": "7209772257", - "priceReceived": 0.8440762659748161 + "priceReceived": 0.8440762659723207 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1183872906668422", - "swapFee": "720977225474", - "priceReceived": 0.8440762662494169 + "outputQty": "1183872907018354", + "swapFee": "720977225684", + "priceReceived": 0.8440762659997454 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "118387286817586995", - "swapFee": "72097720241086", - "priceReceived": 0.8440762937132719 + "outputQty": "118387290316909778", + "swapFee": "72097722337824", + "priceReceived": 0.8440762687461311 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1183872518244243855", - "swapFee": "720976992737435", - "priceReceived": 0.8440765433842954 + "outputQty": "1183872868175869937", + "swapFee": "720977202410866", + "priceReceived": 0.8440762937132719 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "11838690189932096568", - "swapFee": "7209748960428383", - "priceReceived": 0.8440790400561101 + "outputQty": "11838725182442438493", + "swapFee": "7209769927374354", + "priceReceived": 0.8440765433842954 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "118383403300427069140", - "swapFee": "72095393306750833", - "priceReceived": 0.8441040029327553 + "outputQty": "118386901899320965131", + "swapFee": "72097489604283831", + "priceReceived": 0.8440790400561101 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "3996499999999999360000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "5005000000000000031457280", + "reserve1": "39964999999999992615927808", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -6973,117 +6973,117 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "11550033183542", + "outputQty": "11550033183569", "swapFee": "6859719831", - "priceReceived": 0.8652044649021905 + "priceReceived": 0.865204464900168 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1155003318045790", - "swapFee": "685971983000", - "priceReceived": 0.8652044651333047 + "outputQty": "1155003318326058", + "swapFee": "685971983150", + "priceReceived": 0.8652044649232282 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "115500328721628968", - "swapFee": "68597196650141", - "priceReceived": 0.8652044882417411 + "outputQty": "115500331524310723", + "swapFee": "68597198150060", + "priceReceived": 0.865204467234072 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1155003006948657823", - "swapFee": "685971816509847", - "priceReceived": 0.8652046983180812 + "outputQty": "1155003287216289672", + "swapFee": "685971966501419", + "priceReceived": 0.8652044882417411 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "11550002043267059664", - "swapFee": "6859703166228994", - "priceReceived": 0.8652067990463392 + "outputQty": "11550030069486578217", + "swapFee": "6859718165098477", + "priceReceived": 0.8652046983180812 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "115497218354278530158", - "swapFee": "68595532062973176", - "priceReceived": 0.865227802815176 + "outputQty": "115500020432670596614", + "swapFee": "68597031662289949", + "priceReceived": 0.8652067990463392 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "743166819088135044993130", - "swapFee": "445006902707531211857", + "outputQty": "7431668190881350175319736", + "swapFee": "4450069027075311955063", "priceReceived": 0.9402397619886531 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1450928056228897744391420", - "swapFee": "871263438783980145513", + "outputQty": "14509280562288976903095086", + "swapFee": "8712634387839801132196", "priceReceived": 0.9631964386942302 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2149425990449541609895316", - "swapFee": "1293720116988526957620", + "outputQty": "21494259904495414491405844", + "swapFee": "12937201169885268607882", "priceReceived": 0.9752865598524654 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2838442023752825260195309", - "swapFee": "1714701523310602758700", + "outputQty": "28384420237528251530525463", + "swapFee": "17147015233106026944065", "priceReceived": 0.9847251679219391 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3494131812367917204123626", - "swapFee": "2134908027576693262258", + "outputQty": "34941318123679170046454943", + "swapFee": "21349080275766931335750", "priceReceived": 0.9999236661895382 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -7091,121 +7091,121 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "11620945759945", + "outputQty": "11620945759973", "swapFee": "6859719831", - "priceReceived": 0.8599248707117532 + "priceReceived": 0.8599248707096812 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1162094575673868", - "swapFee": "685971983000", - "priceReceived": 0.8599248709491 + "outputQty": "1162094575965259", + "swapFee": "685971983150", + "priceReceived": 0.8599248707333478 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "116209454362088099", - "swapFee": "68597196650141", - "priceReceived": 0.8599248946818155 + "outputQty": "116209457275995952", + "swapFee": "68597198150060", + "priceReceived": 0.8599248731066195 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1162094252230663839", - "swapFee": "685971816509847", - "priceReceived": 0.8599251104334148 + "outputQty": "1162094543620880986", + "swapFee": "685971966501419", + "priceReceived": 0.8599248946818155 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "11620913383853133332", - "swapFee": "6859703166228994", - "priceReceived": 0.8599272679132866 + "outputQty": "11620942522306638392", + "swapFee": "6859718165098477", + "priceReceived": 0.8599251104334148 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "116206220561278555141", - "swapFee": "68595532062973176", - "priceReceived": 0.8599488391005764 + "outputQty": "116209133838531333411", + "swapFee": "68597031662289949", + "priceReceived": 0.8599272679132866 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "745890348448147376765907", - "swapFee": "445006902707531211857", + "outputQty": "7458903484481473496949241", + "swapFee": "4450069027075311955063", "priceReceived": 0.9368065889994129 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1455978176046775934050805", - "swapFee": "871263438783980145513", + "outputQty": "14559781760467758806400321", + "swapFee": "8712634387839801132196", "priceReceived": 0.9598555524752027 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2158527843482740112916076", - "swapFee": "1293720116988526957620", + "outputQty": "21585278434827399524990803", + "swapFee": "12937201169885268607882", "priceReceived": 0.9711740741322403 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2857415815532514252372830", - "swapFee": "1714701523310602758700", + "outputQty": "28574158155325141465359188", + "swapFee": "17147015233106026944065", "priceReceived": 0.9781864030019696 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3552759522564674531561542", - "swapFee": "2134908027576693262258", + "outputQty": "35527595225646743205896673", + "swapFee": "21349080275766931335750", "priceReceived": 0.9834229054293727 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, - "outputQty": "4241362748345309178531825", - "swapFee": "2554620993917667761718", + "outputQty": "42413627483453088679647375", + "swapFee": "25546209939176675687382", "priceReceived": 0.9885137461165676 }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, - "outputQty": "4904706719603051186243047", - "swapFee": "2973973525353851305566", + "outputQty": "49047067196030515854283801", + "swapFee": "29739735253538515633572", "priceReceived": 0.9972922554012608 }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -7213,107 +7213,107 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "8647597319619", + "outputQty": "8647597319636", "swapFee": "5935570825", - "priceReceived": 1.155704186930772 + "priceReceived": 1.1557041869285 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "864759731762277", - "swapFee": "593557082546", - "priceReceived": 1.155704187197504 + "outputQty": "864759731943748", + "swapFee": "593557082547", + "priceReceived": 1.155704186954977 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "86475971180035582", - "swapFee": "59355708242930", - "priceReceived": 1.155704213875658 + "outputQty": "86475972994755656", + "swapFee": "59355708253607", + "priceReceived": 1.1557041896227904 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "864759530328127639", - "swapFee": "593557081361661", - "priceReceived": 1.1557044564046837 + "outputQty": "864759711800355814", + "swapFee": "593557082429306", + "priceReceived": 1.155704213875658 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "8647577155837814186", - "swapFee": "5935570706852205", - "priceReceived": 1.1557068817300284 + "outputQty": "8647595303281276377", + "swapFee": "5935570813616619", + "priceReceived": 1.1557044564046837 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "86473956593366315633", - "swapFee": "59355696392160991", - "priceReceived": 1.1557311384925644 + "outputQty": "86475771558378141871", + "swapFee": "59355707068522055", + "priceReceived": 1.1557068817300284 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -7321,113 +7321,113 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "10055359156058", + "outputQty": "10055359156057", "swapFee": "5935570825", - "priceReceived": 0.9939042727433488 + "priceReceived": 0.9939042727434476 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1005535915601292", - "swapFee": "593557082546", - "priceReceived": 0.9939042727477589 + "outputQty": "1005535915605344", + "swapFee": "593557082547", + "priceReceived": 0.9939042727437528 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "100553591515543302", - "swapFee": "59355708242930", - "priceReceived": 0.9939042731885764 + "outputQty": "100553591556075854", + "swapFee": "59355708253607", + "priceReceived": 0.9939042727878333 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1005535911102178221", - "swapFee": "593557081361661", - "priceReceived": 0.9939042771960065 + "outputQty": "1005535915155433012", + "swapFee": "593557082429306", + "priceReceived": 0.9939042731885764 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "10055358705696826886", - "swapFee": "5935570706852205", - "priceReceived": 0.9939043172702577 + "outputQty": "10055359111021782202", + "swapFee": "5935570813616619", + "priceReceived": 0.9939042771960065 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "100553546524996650939", - "swapFee": "59355696392160991", - "priceReceived": 0.9939047180077686 + "outputQty": "100553587056968268960", + "swapFee": "59355707068522055", + "priceReceived": 0.9939043172702577 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "701018217861898684511298", - "swapFee": "414460558510421777310", + "outputQty": "7010182178618986583342991", + "swapFee": "4144605585104217616380", "priceReceived": 0.9968150921566366 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1398171292102579103177398", - "swapFee": "827881449563621606965", + "outputQty": "13981712921025790511266833", + "swapFee": "8278814495636215756828", "priceReceived": 0.9995714591226933 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2091056554689476319158584", - "swapFee": "1240319563507359838670", + "outputQty": "20910565546894761623241457", + "swapFee": "12403195635073597444008", "priceReceived": 1.0025360986698917 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -7435,107 +7435,107 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "8594828515917", + "outputQty": "8594828515934", "swapFee": "5899351172", - "priceReceived": 1.1628039617450947 + "priceReceived": 1.1628039617427948 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "859482851387857", - "swapFee": "589935117275", - "priceReceived": 1.1628039620207888 + "outputQty": "859482851573100", + "swapFee": "589935117276", + "priceReceived": 1.1628039617701704 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "85948283101101317", - "swapFee": "58993511717134", - "priceReceived": 1.1628039895889701 + "outputQty": "85948284953541642", + "swapFee": "58993511726577", + "priceReceived": 1.1628039645269872 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "859482645766757989", - "swapFee": "589935116226982", - "priceReceived": 1.1628042402091592 + "outputQty": "859482831011013166", + "swapFee": "589935117171340", + "priceReceived": 1.1628039895889701 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "8594807933019418572", - "swapFee": "5899351067834018", - "priceReceived": 1.1628067464471152 + "outputQty": "8594826457667579873", + "swapFee": "5899351162269826", + "priceReceived": 1.1628042402091592 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "85946226642713984426", - "swapFee": "58993501234750486", - "priceReceived": 1.1628318124334742 + "outputQty": "85948079330194185643", + "swapFee": "58993510678340182", + "priceReceived": 1.1628067464471152 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -7543,120 +7543,120 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "9933015265778", + "outputQty": "9933015265777", "swapFee": "5899351172", - "priceReceived": 1.006149732122174 + "priceReceived": 1.0061497321222754 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "993301526573337", - "swapFee": "589935117275", - "priceReceived": 1.0061497321266193 + "outputQty": "993301526577316", + "swapFee": "589935117276", + "priceReceived": 1.0061497321225878 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "99330152613560344", - "swapFee": "58993511717134", - "priceReceived": 1.0061497325701192 + "outputQty": "99330152653354297", + "swapFee": "58993511726577", + "priceReceived": 1.0061497321669373 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "993301522156207633", - "swapFee": "589935116226982", - "priceReceived": 1.0061497366019387 + "outputQty": "993301526135603437", + "swapFee": "589935117171340", + "priceReceived": 1.0061497325701192 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "9933014823622019721", - "swapFee": "5899351067834018", - "priceReceived": 1.006149776920183 + "outputQty": "9933015221562076308", + "swapFee": "5899351162269826", + "priceReceived": 1.0061497366019387 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "99330108441738514131", - "swapFee": "58993501234750486", - "priceReceived": 1.0061501801076262 + "outputQty": "99330148236220197105", + "swapFee": "58993510678340182", + "priceReceived": 1.006149776920183 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "692112050839051884447054", - "swapFee": "411965810390800782245", + "outputQty": "6921120508390518571560670", + "swapFee": "4119658103908007662584", "priceReceived": 1.0096458129033645 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "500500000000000000000000", - "reserve1": "7492500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "5005000000000000031457280", + "reserve1": "74925000000000000232783872", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -7665,235 +7665,235 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "12395238527337", + "outputQty": "12395238527380", "swapFee": "7209772257", - "priceReceived": 0.8061797443997922 + "priceReceived": 0.8061797443969956 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1239523852263400", - "swapFee": "720977225474", - "priceReceived": 0.8061797447058552 + "outputQty": "1239523852690938", + "swapFee": "720977225684", + "priceReceived": 0.8061797444276173 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "123952380523418314", - "swapFee": "72097720241086", - "priceReceived": 0.8061797753120162 + "outputQty": "123952384798801504", + "swapFee": "72097722337824", + "priceReceived": 0.8061797474882337 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1239523377696697198", - "swapFee": "720976992737435", - "priceReceived": 0.8061800535494049 + "outputQty": "1239523805234183136", + "swapFee": "720977202410866", + "priceReceived": 0.8061797753120162 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "12395191024051384203", - "swapFee": "7209748960428383", - "priceReceived": 0.8061828358796373 + "outputQty": "12395233776966972004", + "swapFee": "7209769927374354", + "priceReceived": 0.8061800535494049 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "123947635781796985191", - "swapFee": "72095393306750833", - "priceReceived": 0.8062106548172556 + "outputQty": "123951910240513842304", + "swapFee": "72097489604283831", + "priceReceived": 0.8061828358796373 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "768896006715057077927865", - "swapFee": "455349056078842881937", + "outputQty": "7688960067150570510686794", + "swapFee": "4553490560788428655099", "priceReceived": 0.908763532183185 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1485514801822270051395981", - "swapFee": "884040318185604670645", + "outputQty": "14855148018222699983548195", + "swapFee": "8840403181856046382992", "priceReceived": 0.9407620563372994 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2191692694525269933121433", - "swapFee": "1307270388189317742828", + "outputQty": "21916926945252697726438582", + "swapFee": "13072703881893176458785", "priceReceived": 0.9564720158296994 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2893745098578223596232972", - "swapFee": "1728372076376296111498", + "outputQty": "28937450985782234903190793", + "swapFee": "17283720763762960470737", "priceReceived": 0.9659011186911105 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3593394051728979159386178", - "swapFee": "2148353632174868084140", + "outputQty": "35933940517289789465416787", + "swapFee": "21483536321748679552890", "priceReceived": 0.9722984999896522 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, - "outputQty": "4291015906040761605294836", - "swapFee": "2567621069932273372757", + "outputQty": "42910159060407612861463358", + "swapFee": "25676210699322731795964", "priceReceived": 0.9770722063807332 }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, - "outputQty": "4986132009816772962673844", - "swapFee": "2986366809676326880201", + "outputQty": "49861320098167733903550826", + "swapFee": "29863668096763271369811", "priceReceived": 0.98100363639792 }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, - "outputQty": "5676824010962740152173763", - "swapFee": "3404691779986865867419", + "outputQty": "56768240109627399428847930", + "swapFee": "34046917799868657384976", "priceReceived": 0.9847399351159319 }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, - "outputQty": "6356304183245645467880735", - "swapFee": "3822652371743742700155", + "outputQty": "63563041832456456748662292", + "swapFee": "38226523717437428277626", "priceReceived": 0.989407864432471 }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, - "outputQty": "6988467216013139965717995", - "swapFee": "4240281183082721427082", + "outputQty": "69884672160131396226486936", + "swapFee": "42402811830827211697001", "priceReceived": 0.9998987621785502 }, { "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "11838729070533", + "outputQty": "11838729070568", "swapFee": "7209772257", - "priceReceived": 0.8440762659748161 + "priceReceived": 0.8440762659723207 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1183872906668422", - "swapFee": "720977225474", - "priceReceived": 0.8440762662494169 + "outputQty": "1183872907018354", + "swapFee": "720977225684", + "priceReceived": 0.8440762659997454 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "118387286817586995", - "swapFee": "72097720241086", - "priceReceived": 0.8440762937132719 + "outputQty": "118387290316909778", + "swapFee": "72097722337824", + "priceReceived": 0.8440762687461311 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1183872518244243855", - "swapFee": "720976992737435", - "priceReceived": 0.8440765433842954 + "outputQty": "1183872868175869937", + "swapFee": "720977202410866", + "priceReceived": 0.8440762937132719 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "11838690189932096567", - "swapFee": "7209748960428383", - "priceReceived": 0.8440790400561101 + "outputQty": "11838725182442438493", + "swapFee": "7209769927374354", + "priceReceived": 0.8440765433842954 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "118383403300427069140", - "swapFee": "72095393306750833", - "priceReceived": 0.8441040029327553 + "outputQty": "118386901899320965131", + "swapFee": "72097489604283831", + "priceReceived": 0.8440790400561101 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -7901,107 +7901,107 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "8057935777439", + "outputQty": "8057935777461", "swapFee": "5813076027", - "priceReceived": 1.2402912110512483 + "priceReceived": 1.240291211047862 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "805793577497443", - "swapFee": "581307602736", - "priceReceived": 1.2402912114305544 + "outputQty": "805793577721423", + "swapFee": "581307602738", + "priceReceived": 1.2402912110857982 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "80579355285952603", - "swapFee": "58130760256577", - "priceReceived": 1.2402912493538687 + "outputQty": "80579357525763237", + "swapFee": "58130760272119", + "priceReceived": 1.2402912148781275 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "805793328878247977", - "swapFee": "581307601011551", - "priceReceived": 1.240291594111716 + "outputQty": "805793552859526024", + "swapFee": "581307602565777", + "priceReceived": 1.2402912493538687 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "8057910890439978463", - "swapFee": "5813075854692939", - "priceReceived": 1.2402950417337768 + "outputQty": "8057933288782479751", + "swapFee": "5813076010115515", + "priceReceived": 1.240291594111716 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "80576868855441209889", - "swapFee": "58130743004639067", - "priceReceived": 1.2403295223136046 + "outputQty": "80579108904399784445", + "swapFee": "58130758546929394", + "priceReceived": 1.2402950417337768 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -8009,107 +8009,107 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "9545299033164", + "outputQty": "9545299033166", "swapFee": "5813076027", - "priceReceived": 1.0470271166203795 + "priceReceived": 1.0470271166201601 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "954529903294338", - "swapFee": "581307602736", - "priceReceived": 1.0470271166445417 + "outputQty": "954529903314341", + "swapFee": "581307602738", + "priceReceived": 1.0470271166225984 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "95452990109381565", - "swapFee": "58130760256577", - "priceReceived": 1.0470271190584806 + "outputQty": "95452990309428983", + "swapFee": "58130760272119", + "priceReceived": 1.0470271168639909 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "954529881089065644", - "swapFee": "581307601011551", - "priceReceived": 1.0470271410033882 + "outputQty": "954529901093815634", + "swapFee": "581307602565777", + "priceReceived": 1.0470271190584806 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "9545296810407490515", - "swapFee": "5813075854692939", - "priceReceived": 1.04702736045341 + "outputQty": "9545298810890656370", + "swapFee": "5813076010115515", + "priceReceived": 1.0470271410033882 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "95452768047591845254", - "swapFee": "58130743004639067", - "priceReceived": 1.0470295550482653 + "outputQty": "95452968104074904497", + "swapFee": "58130758546929394", + "priceReceived": 1.04702736045341 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -8117,107 +8117,107 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "8436719465774", + "outputQty": "8436719465795", "swapFee": "6086334395", - "priceReceived": 1.1845734240836394 + "priceReceived": 1.1845734240806909 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "843671946345970", - "swapFee": "608633439508", - "priceReceived": 1.1845734244085735 + "outputQty": "843671946556369", + "swapFee": "608633439515", + "priceReceived": 1.1845734241131505 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "84367192320212282", - "swapFee": "60863343871480", - "priceReceived": 1.1845734569050674 + "outputQty": "84367194424198382", + "swapFee": "60863343943624", + "priceReceived": 1.1845734273628 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "843671712803297357", - "swapFee": "608633431500388", - "priceReceived": 1.1845737523281268 + "outputQty": "843671923202122814", + "swapFee": "608633438714806", + "priceReceived": 1.1845734569050674 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "8436696087934987253", - "swapFee": "6086333593565286", - "priceReceived": 1.1845767065970727 + "outputQty": "8436717128032973610", + "swapFee": "6086334315003881", + "priceReceived": 1.1845737523281268 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "84364856654093899177", - "swapFee": "60863263794995589", - "priceReceived": 1.184606253122287 + "outputQty": "84366960879349872911", + "swapFee": "60863335935652863", + "priceReceived": 1.1845767065970727 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -8225,132 +8225,132 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "10463793292692", + "outputQty": "10463793292694", "swapFee": "6086334395", - "priceReceived": 0.9550947143217013 + "priceReceived": 0.9550947143215187 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1046379329243911", - "swapFee": "608633439508", - "priceReceived": 0.9550947143447764 + "outputQty": "1046379329266878", + "swapFee": "608633439515", + "priceReceived": 0.9550947143238064 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "104637932671762503", - "swapFee": "60863343871480", - "priceReceived": 0.955094716651431 + "outputQty": "104637932901424869", + "swapFee": "60863343943624", + "priceReceived": 0.9550947145544719 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1046379303751399330", - "swapFee": "608633431500388", - "priceReceived": 0.9550947376210117 + "outputQty": "1046379326717625022", + "swapFee": "608633438714806", + "priceReceived": 0.955094716651431 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "10463790740902354752", - "swapFee": "6086333593565286", - "priceReceived": 0.9550949473158712 + "outputQty": "10463793037513993371", + "swapFee": "6086334315003881", + "priceReceived": 0.9550947376210117 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "104637677758789146648", - "swapFee": "60863263794995589", - "priceReceived": 0.9550970441697376 + "outputQty": "104637907409023548229", + "swapFee": "60863335935652863", + "priceReceived": 0.9550949473158711 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "722263128479055491881378", - "swapFee": "422553559162174988487", + "outputQty": "7222631284790554675305345", + "swapFee": "4225535591621749738862", "priceReceived": 0.9674832050645118 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1433094677312411634245482", - "swapFee": "841275721935342452176", + "outputQty": "14330946773124115843896971", + "swapFee": "8412757219353424224745", "priceReceived": 0.975203345880127 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2137711494094160926435218", - "swapFee": "1257768754982574099612", + "outputQty": "21377114940941607698813472", + "swapFee": "12577687549825740067676", "priceReceived": 0.980647873689488 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2838008198118375113442264", - "swapFee": "1672697094452568553252", + "outputQty": "28380081981183750120066182", + "swapFee": "16726970944525684929565", "priceReceived": 0.9848904963554165 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3534438755467934405642287", - "swapFee": "2086377935724127709749", + "outputQty": "35344387554679341987849106", + "swapFee": "20863779357241275865535", "priceReceived": 0.988534209755095 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, - "outputQty": "4226394339111648882141178", - "swapFee": "2498975677928744759900", + "outputQty": "42263943391116485717951138", + "swapFee": "24989756779287445740732", "priceReceived": 0.9920278819044936 }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, - "outputQty": "4911782260367201108637264", - "swapFee": "2910579067931670693036", + "outputQty": "49117822603672015350811396", + "swapFee": "29105790679316709499221", "priceReceived": 0.9958685384735243 }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "500500000000000000000000", - "reserve2": "5503000000000000000000000", - "A": 120, - "mAssetSupply": "9936488013915504712820075", + "reserve0": "39964999999999992615927808", + "reserve1": "5005000000000000031457280", + "reserve2": "55030000000000001379926016", + "A": 12000, + "mAssetSupply": "99364880139155047547438442", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -8359,107 +8359,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "8647597319619", + "outputQty": "8647597319636", "swapFee": "5935570825", - "priceReceived": 1.155704186930772 + "priceReceived": 1.1557041869285 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "864759731762277", - "swapFee": "593557082546", - "priceReceived": 1.155704187197504 + "outputQty": "864759731943748", + "swapFee": "593557082547", + "priceReceived": 1.155704186954977 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "86475971180035582", - "swapFee": "59355708242930", - "priceReceived": 1.155704213875658 + "outputQty": "86475972994755656", + "swapFee": "59355708253607", + "priceReceived": 1.1557041896227904 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "864759530328127639", - "swapFee": "593557081361661", - "priceReceived": 1.1557044564046837 + "outputQty": "864759711800355814", + "swapFee": "593557082429306", + "priceReceived": 1.155704213875658 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "8647577155837814186", - "swapFee": "5935570706852205", - "priceReceived": 1.1557068817300284 + "outputQty": "8647595303281276377", + "swapFee": "5935570813616619", + "priceReceived": 1.1557044564046837 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "86473956593366315633", - "swapFee": "59355696392160991", - "priceReceived": 1.1557311384925644 + "outputQty": "86475771558378141871", + "swapFee": "59355707068522055", + "priceReceived": 1.1557068817300284 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -8467,113 +8467,113 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "10055359156058", + "outputQty": "10055359156057", "swapFee": "5935570825", - "priceReceived": 0.9939042727433488 + "priceReceived": 0.9939042727434476 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1005535915601292", - "swapFee": "593557082546", - "priceReceived": 0.9939042727477589 + "outputQty": "1005535915605344", + "swapFee": "593557082547", + "priceReceived": 0.9939042727437528 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "100553591515543302", - "swapFee": "59355708242930", - "priceReceived": 0.9939042731885764 + "outputQty": "100553591556075854", + "swapFee": "59355708253607", + "priceReceived": 0.9939042727878333 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1005535911102178221", - "swapFee": "593557081361661", - "priceReceived": 0.9939042771960065 + "outputQty": "1005535915155433012", + "swapFee": "593557082429306", + "priceReceived": 0.9939042731885764 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "10055358705696826886", - "swapFee": "5935570706852205", - "priceReceived": 0.9939043172702577 + "outputQty": "10055359111021782202", + "swapFee": "5935570813616619", + "priceReceived": 0.9939042771960065 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "100553546524996650939", - "swapFee": "59355696392160991", - "priceReceived": 0.9939047180077686 + "outputQty": "100553587056968268960", + "swapFee": "59355707068522055", + "priceReceived": 0.9939043172702577 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "701018217861898684511298", - "swapFee": "414460558510421777310", + "outputQty": "7010182178618986583342991", + "swapFee": "4144605585104217616380", "priceReceived": 0.9968150921566366 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1398171292102579103177398", - "swapFee": "827881449563621606965", + "outputQty": "13981712921025790511266833", + "swapFee": "8278814495636215756828", "priceReceived": 0.9995714591226933 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2091056554689476319158584", - "swapFee": "1240319563507359838670", + "outputQty": "20910565546894761623241457", + "swapFee": "12403195635073597444008", "priceReceived": 1.0025360986698917 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -8581,117 +8581,117 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "11550033183542", + "outputQty": "11550033183569", "swapFee": "6859719831", - "priceReceived": 0.8652044649021905 + "priceReceived": 0.865204464900168 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1155003318045790", - "swapFee": "685971983000", - "priceReceived": 0.8652044651333047 + "outputQty": "1155003318326058", + "swapFee": "685971983150", + "priceReceived": 0.8652044649232282 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "115500328721628968", - "swapFee": "68597196650141", - "priceReceived": 0.8652044882417411 + "outputQty": "115500331524310723", + "swapFee": "68597198150060", + "priceReceived": 0.865204467234072 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1155003006948657823", - "swapFee": "685971816509847", - "priceReceived": 0.8652046983180812 + "outputQty": "1155003287216289672", + "swapFee": "685971966501419", + "priceReceived": 0.8652044882417411 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "11550002043267059664", - "swapFee": "6859703166228994", - "priceReceived": 0.8652067990463392 + "outputQty": "11550030069486578217", + "swapFee": "6859718165098477", + "priceReceived": 0.8652046983180812 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "115497218354278530158", - "swapFee": "68595532062973176", - "priceReceived": 0.865227802815176 + "outputQty": "115500020432670596614", + "swapFee": "68597031662289949", + "priceReceived": 0.8652067990463392 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "743166819088135044993130", - "swapFee": "445006902707531211857", + "outputQty": "7431668190881350175319736", + "swapFee": "4450069027075311955063", "priceReceived": 0.9402397619886531 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1450928056228897744391420", - "swapFee": "871263438783980145513", + "outputQty": "14509280562288976903095086", + "swapFee": "8712634387839801132196", "priceReceived": 0.9631964386942302 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2149425990449541609895316", - "swapFee": "1293720116988526957620", + "outputQty": "21494259904495414491405844", + "swapFee": "12937201169885268607882", "priceReceived": 0.9752865598524654 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2838442023752825260195309", - "swapFee": "1714701523310602758700", + "outputQty": "28384420237528251530525463", + "swapFee": "17147015233106026944065", "priceReceived": 0.9847251679219391 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3494131812367917204123626", - "swapFee": "2134908027576693262258", + "outputQty": "34941318123679170046454943", + "swapFee": "21349080275766931335750", "priceReceived": 0.9999236661895382 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -8699,121 +8699,121 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "11620945759945", + "outputQty": "11620945759973", "swapFee": "6859719831", - "priceReceived": 0.8599248707117532 + "priceReceived": 0.8599248707096812 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1162094575673868", - "swapFee": "685971983000", - "priceReceived": 0.8599248709491 + "outputQty": "1162094575965259", + "swapFee": "685971983150", + "priceReceived": 0.8599248707333478 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "116209454362088099", - "swapFee": "68597196650141", - "priceReceived": 0.8599248946818155 + "outputQty": "116209457275995952", + "swapFee": "68597198150060", + "priceReceived": 0.8599248731066195 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1162094252230663839", - "swapFee": "685971816509847", - "priceReceived": 0.8599251104334148 + "outputQty": "1162094543620880986", + "swapFee": "685971966501419", + "priceReceived": 0.8599248946818155 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "11620913383853133332", - "swapFee": "6859703166228994", - "priceReceived": 0.8599272679132866 + "outputQty": "11620942522306638392", + "swapFee": "6859718165098477", + "priceReceived": 0.8599251104334148 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "116206220561278555141", - "swapFee": "68595532062973176", - "priceReceived": 0.8599488391005764 + "outputQty": "116209133838531333411", + "swapFee": "68597031662289949", + "priceReceived": 0.8599272679132866 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "745890348448147376765907", - "swapFee": "445006902707531211857", + "outputQty": "7458903484481473496949241", + "swapFee": "4450069027075311955063", "priceReceived": 0.9368065889994129 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1455978176046775934050805", - "swapFee": "871263438783980145513", + "outputQty": "14559781760467758806400321", + "swapFee": "8712634387839801132196", "priceReceived": 0.9598555524752027 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, - "outputQty": "2158527843482740112916076", - "swapFee": "1293720116988526957620", + "outputQty": "21585278434827399524990803", + "swapFee": "12937201169885268607882", "priceReceived": 0.9711740741322403 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, - "outputQty": "2857415815532514252372830", - "swapFee": "1714701523310602758700", + "outputQty": "28574158155325141465359188", + "swapFee": "17147015233106026944065", "priceReceived": 0.9781864030019696 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, - "outputQty": "3552759522564674531561542", - "swapFee": "2134908027576693262258", + "outputQty": "35527595225646743205896673", + "swapFee": "21349080275766931335750", "priceReceived": 0.9834229054293727 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, - "outputQty": "4241362748345309178531825", - "swapFee": "2554620993917667761718", + "outputQty": "42413627483453088679647375", + "swapFee": "25546209939176675687382", "priceReceived": 0.9885137461165676 }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, - "outputQty": "4904706719603051186243047", - "swapFee": "2973973525353851305566", + "outputQty": "49047067196030515854283801", + "swapFee": "29739735253538515633572", "priceReceived": 0.9972922554012608 }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -8821,109 +8821,109 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "9933015265778", + "outputQty": "9933015265777", "swapFee": "5899351172", - "priceReceived": 1.006149732122174 + "priceReceived": 1.0061497321222754 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "993301526573337", - "swapFee": "589935117275", - "priceReceived": 1.0061497321266193 + "outputQty": "993301526577316", + "swapFee": "589935117276", + "priceReceived": 1.0061497321225878 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "99330152613560344", - "swapFee": "58993511717134", - "priceReceived": 1.0061497325701192 + "outputQty": "99330152653354297", + "swapFee": "58993511726577", + "priceReceived": 1.0061497321669373 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "993301522156207633", - "swapFee": "589935116226982", - "priceReceived": 1.0061497366019387 + "outputQty": "993301526135603437", + "swapFee": "589935117171340", + "priceReceived": 1.0061497325701192 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "9933014823622019721", - "swapFee": "5899351067834018", - "priceReceived": 1.006149776920183 + "outputQty": "9933015221562076308", + "swapFee": "5899351162269826", + "priceReceived": 1.0061497366019387 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "99330108441738514131", - "swapFee": "58993501234750486", - "priceReceived": 1.0061501801076262 + "outputQty": "99330148236220197105", + "swapFee": "58993510678340182", + "priceReceived": 1.006149776920183 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "692112050839051884447054", - "swapFee": "411965810390800782245", + "outputQty": "6921120508390518571560670", + "swapFee": "4119658103908007662584", "priceReceived": 1.0096458129033645 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -8931,118 +8931,118 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "8594828515917", + "outputQty": "8594828515934", "swapFee": "5899351172", - "priceReceived": 1.1628039617450947 + "priceReceived": 1.1628039617427948 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "859482851387857", - "swapFee": "589935117275", - "priceReceived": 1.1628039620207888 + "outputQty": "859482851573100", + "swapFee": "589935117276", + "priceReceived": 1.1628039617701704 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "85948283101101317", - "swapFee": "58993511717134", - "priceReceived": 1.1628039895889701 + "outputQty": "85948284953541642", + "swapFee": "58993511726577", + "priceReceived": 1.1628039645269872 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "859482645766757989", - "swapFee": "589935116226982", - "priceReceived": 1.1628042402091592 + "outputQty": "859482831011013166", + "swapFee": "589935117171340", + "priceReceived": 1.1628039895889701 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "8594807933019418572", - "swapFee": "5899351067834018", - "priceReceived": 1.1628067464471152 + "outputQty": "8594826457667579873", + "swapFee": "5899351162269826", + "priceReceived": 1.1628042402091592 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "85946226642713984426", - "swapFee": "58993501234750486", - "priceReceived": 1.1628318124334742 + "outputQty": "85948079330194185643", + "swapFee": "58993510678340182", + "priceReceived": 1.1628067464471152 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "3996499999999999360000000", - "reserve1": "3996499999999999360000000", - "reserve2": "2007000000000000960000000", - "A": 120, - "mAssetSupply": "9995726520619110731126433", + "reserve0": "39964999999999992615927808", + "reserve1": "39964999999999992615927808", + "reserve2": "20070000000000010942939136", + "A": 12000, + "mAssetSupply": "99957265206191106697879690", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -9059,109 +9059,109 @@ "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "999399999998011", + "outputQty": "999399999999801", "swapFee": "598796134240", - "priceReceived": 1.0000012045905033 + "priceReceived": 1.0000012045887123 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "99939999980116059", - "swapFee": "59879613419763", - "priceReceived": 1.0000012047875144 + "outputQty": "99939999998011605", + "swapFee": "59879613423616", + "priceReceived": 1.0000012046084128 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "999399998011605799", - "swapFee": "598796133812390", - "priceReceived": 1.0000012065785313 + "outputQty": "999399999801160579", + "swapFee": "598796134197637", + "priceReceived": 1.0000012047875146 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "9993999801160583413", - "swapFee": "5987961299599208", - "priceReceived": 1.0000012244886993 + "outputQty": "9993999980116057978", + "swapFee": "5987961338123906", + "priceReceived": 1.0000012065785313 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "99939980116061969608", - "swapFee": "59879609143550369", - "priceReceived": 1.0000014035903781 + "outputQty": "99939998011605834131", + "swapFee": "59879612995992082", + "priceReceived": 1.0000012244886993 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "697779736747200745522864", - "swapFee": "418477829487451578495", + "outputQty": "6977797367472007187658805", + "swapFee": "4184778294874515625727", "priceReceived": 1.0014356757162106 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1393157070614067945102172", - "swapFee": "836578522387612414347", + "outputQty": "13931570706140678917696156", + "swapFee": "8365785223876123825384", "priceReceived": 1.0031628528875085 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2084449282114052419694637", - "swapFee": "1254320506285243319162", + "outputQty": "20844492821140522609131861", + "swapFee": "12543205062852432234113", "priceReceived": 1.0057072136423473 }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2765917160800186035881131", - "swapFee": "1671708803050131015856", + "outputQty": "27659171608001859312744738", + "swapFee": "16717088030501309523889", "priceReceived": 1.0105611009652629 }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3409504832193172411327541", - "swapFee": "2088741347897643737830", + "outputQty": "34095048321931722196464870", + "swapFee": "20887413478976436105827", "priceReceived": 1.0247562125919134 }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -9169,111 +9169,111 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "9915826051847", + "outputQty": "9915826051848", "swapFee": "5987961342", - "priceReceived": 1.0078849695831884 + "priceReceived": 1.0078849695830867 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "991582605179020", + "outputQty": "991582605184218", "swapFee": "598796134240", - "priceReceived": 1.0078849695889214 + "priceReceived": 1.0078849695836378 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "99158260460728360", - "swapFee": "59879613419763", - "priceReceived": 1.0078849701701003 + "outputQty": "99158260512704440", + "swapFee": "59879613423616", + "priceReceived": 1.0078849696417553 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "991582599409673433", - "swapFee": "598796133812390", - "priceReceived": 1.0078849754535517 + "outputQty": "991582604607283589", + "swapFee": "598796134197637", + "priceReceived": 1.0078849701701003 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "9915825474333675757", - "swapFee": "5987961299599208", - "priceReceived": 1.0078850282882756 + "outputQty": "9915825994096734336", + "swapFee": "5987961338123906", + "priceReceived": 1.0078849754535517 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "99158202764987759654", - "swapFee": "59879609143550369", - "priceReceived": 1.0078855566565874 + "outputQty": "99158254743336757731", + "swapFee": "59879612995992082", + "priceReceived": 1.0078850282882756 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "689282551659223245636916", - "swapFee": "418477829487451578495", + "outputQty": "6892825516592232213450364", + "swapFee": "4184778294874515625727", "priceReceived": 1.0137809530916222 }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1356366996729241375923282", - "swapFee": "836578522387612414347", + "outputQty": "13563669967292413382079503", + "swapFee": "8365785223876123825384", "priceReceived": 1.0303726239636564 }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -9289,109 +9289,109 @@ "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "999399999998011", + "outputQty": "999399999999801", "swapFee": "598796134240", - "priceReceived": 1.0000012045905033 + "priceReceived": 1.0000012045887123 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "99939999980116059", - "swapFee": "59879613419763", - "priceReceived": 1.0000012047875144 + "outputQty": "99939999998011605", + "swapFee": "59879613423616", + "priceReceived": 1.0000012046084128 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "999399998011605799", - "swapFee": "598796133812390", - "priceReceived": 1.0000012065785313 + "outputQty": "999399999801160579", + "swapFee": "598796134197637", + "priceReceived": 1.0000012047875146 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "9993999801160583413", - "swapFee": "5987961299599208", - "priceReceived": 1.0000012244886993 + "outputQty": "9993999980116057978", + "swapFee": "5987961338123906", + "priceReceived": 1.0000012065785313 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "99939980116061969608", - "swapFee": "59879609143550369", - "priceReceived": 1.0000014035903781 + "outputQty": "99939998011605834131", + "swapFee": "59879612995992082", + "priceReceived": 1.0000012244886993 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "697779736747200745522864", - "swapFee": "418477829487451578495", + "outputQty": "6977797367472007187658805", + "swapFee": "4184778294874515625727", "priceReceived": 1.0014356757162106 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1393157070614067945102172", - "swapFee": "836578522387612414347", + "outputQty": "13931570706140678917696156", + "swapFee": "8365785223876123825384", "priceReceived": 1.0031628528875085 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2084449282114052419694637", - "swapFee": "1254320506285243319162", + "outputQty": "20844492821140522609131861", + "swapFee": "12543205062852432234113", "priceReceived": 1.0057072136423473 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2765917160800186035881131", - "swapFee": "1671708803050131015856", + "outputQty": "27659171608001859312744738", + "swapFee": "16717088030501309523889", "priceReceived": 1.0105611009652629 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3409504832193172411327541", - "swapFee": "2088741347897643737830", + "outputQty": "34095048321931722196464870", + "swapFee": "20887413478976436105827", "priceReceived": 1.0247562125919134 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -9399,111 +9399,111 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "9915826051847", + "outputQty": "9915826051848", "swapFee": "5987961342", - "priceReceived": 1.0078849695831884 + "priceReceived": 1.0078849695830867 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "991582605179020", + "outputQty": "991582605184218", "swapFee": "598796134240", - "priceReceived": 1.0078849695889214 + "priceReceived": 1.0078849695836378 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "99158260460728360", - "swapFee": "59879613419763", - "priceReceived": 1.0078849701701003 + "outputQty": "99158260512704440", + "swapFee": "59879613423616", + "priceReceived": 1.0078849696417553 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "991582599409673433", - "swapFee": "598796133812390", - "priceReceived": 1.0078849754535517 + "outputQty": "991582604607283589", + "swapFee": "598796134197637", + "priceReceived": 1.0078849701701003 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "9915825474333675757", - "swapFee": "5987961299599208", - "priceReceived": 1.0078850282882756 + "outputQty": "9915825994096734336", + "swapFee": "5987961338123906", + "priceReceived": 1.0078849754535517 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "99158202764987759654", - "swapFee": "59879609143550369", - "priceReceived": 1.0078855566565874 + "outputQty": "99158254743336757731", + "swapFee": "59879612995992082", + "priceReceived": 1.0078850282882756 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, - "outputQty": "689282551659223245636916", - "swapFee": "418477829487451578495", + "outputQty": "6892825516592232213450364", + "swapFee": "4184778294874515625727", "priceReceived": 1.0137809530916222 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, - "outputQty": "1356366996729241375923282", - "swapFee": "836578522387612414347", + "outputQty": "13563669967292413382079503", + "swapFee": "8365785223876123825384", "priceReceived": 1.0303726239636564 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -9519,109 +9519,109 @@ "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1007279025238644", - "swapFee": "603516896553", - "priceReceived": 0.9921744204558122 + "outputQty": "1007279025243967", + "swapFee": "603516896555", + "priceReceived": 0.992174420450567 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "100727902465311571", - "swapFee": "60351689634942", - "priceReceived": 0.9921744210327623 + "outputQty": "100727902518541348", + "swapFee": "60351689653521", + "priceReceived": 0.9921744205082621 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1007279019330139954", - "swapFee": "603516894491591", - "priceReceived": 0.9921744262777621 + "outputQty": "1007279024653115691", + "swapFee": "603516896349429", + "priceReceived": 0.9921744210327623 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "10072789661005997875", - "swapFee": "6035168759132957", - "priceReceived": 0.9921744787275486 + "outputQty": "10072790193301399524", + "swapFee": "6035168944915918", + "priceReceived": 0.9921744262777621 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "100727843382691828833", - "swapFee": "60351669013876130", - "priceReceived": 0.9921750032043162 + "outputQty": "100727896610059978587", + "swapFee": "60351687591329577", + "priceReceived": 0.9921744787275486 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "701990061873335666661480", - "swapFee": "421209678016508108806", + "outputQty": "7019900618733356390054438", + "swapFee": "4212096780165080922857", "priceReceived": 0.9954254743396473 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1400520690043401824861045", - "swapFee": "841445523586415237822", + "outputQty": "14005206900434017700522543", + "swapFee": "8414455235864152049972", "priceReceived": 0.9978849755037205 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2095431279847674350793501", - "swapFee": "1261119325233018729452", + "outputQty": "20954312798476741893531412", + "swapFee": "12611193252330186321001", "priceReceived": 1.0004331331863856 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2783047691616111483913211", - "swapFee": "1680399398546506822409", + "outputQty": "27830476916161113758475243", + "swapFee": "16803993985465067571976", "priceReceived": 1.004337657964579 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3441701398292317538340882", - "swapFee": "2099364923554529841758", + "outputQty": "34417013982923173367961614", + "swapFee": "20993649235545297121648", "priceReceived": 1.0151666954053677 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -9637,120 +9637,120 @@ "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "1007279025238644", - "swapFee": "603516896553", - "priceReceived": 0.9921744204558122 + "outputQty": "1007279025243967", + "swapFee": "603516896555", + "priceReceived": 0.992174420450567 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "100727902465311571", - "swapFee": "60351689634942", - "priceReceived": 0.9921744210327623 + "outputQty": "100727902518541348", + "swapFee": "60351689653521", + "priceReceived": 0.9921744205082621 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "1007279019330139954", - "swapFee": "603516894491591", - "priceReceived": 0.9921744262777621 + "outputQty": "1007279024653115691", + "swapFee": "603516896349429", + "priceReceived": 0.9921744210327623 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "10072789661005997875", - "swapFee": "6035168759132957", - "priceReceived": 0.9921744787275486 + "outputQty": "10072790193301399524", + "swapFee": "6035168944915918", + "priceReceived": 0.9921744262777621 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "100727843382691828833", - "swapFee": "60351669013876130", - "priceReceived": 0.9921750032043162 + "outputQty": "100727896610059978587", + "swapFee": "60351687591329577", + "priceReceived": 0.9921744787275486 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, - "outputQty": "701990061873335666661480", - "swapFee": "421209678016508108806", + "outputQty": "7019900618733356390054438", + "swapFee": "4212096780165080922857", "priceReceived": 0.9954254743396473 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, - "outputQty": "1400520690043401824861045", - "swapFee": "841445523586415237822", + "outputQty": "14005206900434017700522543", + "swapFee": "8414455235864152049972", "priceReceived": 0.9978849755037205 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, - "outputQty": "2095431279847674350793501", - "swapFee": "1261119325233018729452", + "outputQty": "20954312798476741893531412", + "swapFee": "12611193252330186321001", "priceReceived": 1.0004331331863856 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, - "outputQty": "2783047691616111483913211", - "swapFee": "1680399398546506822409", + "outputQty": "27830476916161113758475243", + "swapFee": "16803993985465067571976", "priceReceived": 1.004337657964579 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, - "outputQty": "3441701398292317538340882", - "swapFee": "2099364923554529841758", + "outputQty": "34417013982923173367961614", + "swapFee": "20993649235545297121648", "priceReceived": 1.0151666954053677 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } ] }, { - "reserve0": "7492500000000000000000000", - "reserve1": "500500000000000000000000", - "reserve2": "2007000000000000000000000", - "A": 120, - "mAssetSupply": "9896372713490403790662354", + "reserve0": "74925000000000000232783872", + "reserve1": "5005000000000000031457280", + "reserve2": "20069999999999998058037248", + "A": 12000, + "mAssetSupply": "98963727134904036200049462", "hardMin": 50000000000000000, "hardMax": 750000000000000000, "swapFeeRate": 600000000000000, @@ -9759,107 +9759,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "8057935777439", + "outputQty": "8057935777461", "swapFee": "5813076027", - "priceReceived": 1.2402912110512483 + "priceReceived": 1.240291211047862 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "805793577497443", - "swapFee": "581307602736", - "priceReceived": 1.2402912114305544 + "outputQty": "805793577721423", + "swapFee": "581307602738", + "priceReceived": 1.2402912110857982 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "80579355285952603", - "swapFee": "58130760256577", - "priceReceived": 1.2402912493538687 + "outputQty": "80579357525763237", + "swapFee": "58130760272119", + "priceReceived": 1.2402912148781275 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "805793328878247977", - "swapFee": "581307601011551", - "priceReceived": 1.240291594111716 + "outputQty": "805793552859526024", + "swapFee": "581307602565777", + "priceReceived": 1.2402912493538687 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "8057910890439978463", - "swapFee": "5813075854692939", - "priceReceived": 1.2402950417337768 + "outputQty": "8057933288782479751", + "swapFee": "5813076010115515", + "priceReceived": 1.240291594111716 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "80576868855441209889", - "swapFee": "58130743004639067", - "priceReceived": 1.2403295223136046 + "outputQty": "80579108904399784445", + "swapFee": "58130758546929394", + "priceReceived": 1.2402950417337768 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true }, @@ -9867,107 +9867,107 @@ "inputIndex": 0, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "9545299033164", + "outputQty": "9545299033166", "swapFee": "5813076027", - "priceReceived": 1.0470271166203795 + "priceReceived": 1.0470271166201601 }, { "inputIndex": 0, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "954529903294338", - "swapFee": "581307602736", - "priceReceived": 1.0470271166445417 + "outputQty": "954529903314341", + "swapFee": "581307602738", + "priceReceived": 1.0470271166225984 }, { "inputIndex": 0, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "95452990109381565", - "swapFee": "58130760256577", - "priceReceived": 1.0470271190584806 + "outputQty": "95452990309428983", + "swapFee": "58130760272119", + "priceReceived": 1.0470271168639909 }, { "inputIndex": 0, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "954529881089065644", - "swapFee": "581307601011551", - "priceReceived": 1.0470271410033882 + "outputQty": "954529901093815635", + "swapFee": "581307602565777", + "priceReceived": 1.0470271190584806 }, { "inputIndex": 0, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "9545296810407490515", - "swapFee": "5813075854692939", - "priceReceived": 1.04702736045341 + "outputQty": "9545298810890656370", + "swapFee": "5813076010115515", + "priceReceived": 1.0470271410033882 }, { "inputIndex": 0, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "95452768047591845254", - "swapFee": "58130743004639067", - "priceReceived": 1.0470295550482653 + "outputQty": "95452968104074904497", + "swapFee": "58130758546929394", + "priceReceived": 1.04702736045341 }, { "inputIndex": 0, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 0, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -9975,235 +9975,235 @@ "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "12395238527337", + "outputQty": "12395238527380", "swapFee": "7209772257", - "priceReceived": 0.8061797443997922 + "priceReceived": 0.8061797443969956 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1239523852263400", - "swapFee": "720977225474", - "priceReceived": 0.8061797447058552 + "outputQty": "1239523852690938", + "swapFee": "720977225684", + "priceReceived": 0.8061797444276173 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "123952380523418314", - "swapFee": "72097720241086", - "priceReceived": 0.8061797753120162 + "outputQty": "123952384798801504", + "swapFee": "72097722337824", + "priceReceived": 0.8061797474882337 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1239523377696697198", - "swapFee": "720976992737435", - "priceReceived": 0.8061800535494049 + "outputQty": "1239523805234183136", + "swapFee": "720977202410866", + "priceReceived": 0.8061797753120162 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "12395191024051384203", - "swapFee": "7209748960428383", - "priceReceived": 0.8061828358796373 + "outputQty": "12395233776966972004", + "swapFee": "7209769927374354", + "priceReceived": 0.8061800535494049 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "123947635781796985191", - "swapFee": "72095393306750833", - "priceReceived": 0.8062106548172556 + "outputQty": "123951910240513842304", + "swapFee": "72097489604283831", + "priceReceived": 0.8061828358796373 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "768896006715057077927865", - "swapFee": "455349056078842881937", + "outputQty": "7688960067150570510686794", + "swapFee": "4553490560788428655099", "priceReceived": 0.908763532183185 }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1485514801822270051395981", - "swapFee": "884040318185604670645", + "outputQty": "14855148018222699983548195", + "swapFee": "8840403181856046382992", "priceReceived": 0.9407620563372994 }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2191692694525269933121433", - "swapFee": "1307270388189317742828", + "outputQty": "21916926945252697726438582", + "swapFee": "13072703881893176458785", "priceReceived": 0.9564720158296994 }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2893745098578223596232972", - "swapFee": "1728372076376296111498", + "outputQty": "28937450985782234903190793", + "swapFee": "17283720763762960470737", "priceReceived": 0.9659011186911105 }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3593394051728979159386178", - "swapFee": "2148353632174868084140", + "outputQty": "35933940517289789465416787", + "swapFee": "21483536321748679552890", "priceReceived": 0.9722984999896522 }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, - "outputQty": "4291015906040761605294836", - "swapFee": "2567621069932273372757", + "outputQty": "42910159060407612861463358", + "swapFee": "25676210699322731795964", "priceReceived": 0.9770722063807332 }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, - "outputQty": "4986132009816772962673844", - "swapFee": "2986366809676326880201", + "outputQty": "49861320098167733903550826", + "swapFee": "29863668096763271369811", "priceReceived": 0.98100363639792 }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, - "outputQty": "5676824010962740152173763", - "swapFee": "3404691779986865867419", + "outputQty": "56768240109627399428847930", + "swapFee": "34046917799868657384976", "priceReceived": 0.9847399351159319 }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, - "outputQty": "6356304183245645467880735", - "swapFee": "3822652371743742700155", + "outputQty": "63563041832456456748662292", + "swapFee": "38226523717437428277626", "priceReceived": 0.989407864432471 }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, - "outputQty": "6988467216013139965717995", - "swapFee": "4240281183082721427082", + "outputQty": "69884672160131396226486936", + "swapFee": "42402811830827211697001", "priceReceived": 0.9998987621785502 }, { "inputIndex": 1, "inputQty": "10000000000000", "outputIndex": 2, - "outputQty": "11838729070533", + "outputQty": "11838729070568", "swapFee": "7209772257", - "priceReceived": 0.8440762659748161 + "priceReceived": 0.8440762659723207 }, { "inputIndex": 1, "inputQty": "1000000000000000", "outputIndex": 2, - "outputQty": "1183872906668422", - "swapFee": "720977225474", - "priceReceived": 0.8440762662494169 + "outputQty": "1183872907018354", + "swapFee": "720977225684", + "priceReceived": 0.8440762659997454 }, { "inputIndex": 1, "inputQty": "100000000000000000", "outputIndex": 2, - "outputQty": "118387286817586995", - "swapFee": "72097720241086", - "priceReceived": 0.8440762937132719 + "outputQty": "118387290316909778", + "swapFee": "72097722337824", + "priceReceived": 0.8440762687461311 }, { "inputIndex": 1, "inputQty": "1000000000000000000", "outputIndex": 2, - "outputQty": "1183872518244243855", - "swapFee": "720976992737435", - "priceReceived": 0.8440765433842954 + "outputQty": "1183872868175869937", + "swapFee": "720977202410866", + "priceReceived": 0.8440762937132719 }, { "inputIndex": 1, "inputQty": "10000000000000000000", "outputIndex": 2, - "outputQty": "11838690189932096568", - "swapFee": "7209748960428383", - "priceReceived": 0.8440790400561101 + "outputQty": "11838725182442438493", + "swapFee": "7209769927374354", + "priceReceived": 0.8440765433842954 }, { "inputIndex": 1, "inputQty": "100000000000000000000", "outputIndex": 2, - "outputQty": "118383403300427069140", - "swapFee": "72095393306750833", - "priceReceived": 0.8441040029327553 + "outputQty": "118386901899320965131", + "swapFee": "72097489604283831", + "priceReceived": 0.8440790400561101 }, { "inputIndex": 1, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 2, "hardLimitError": true }, { "inputIndex": 1, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 2, "hardLimitError": true }, @@ -10211,121 +10211,121 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 0, - "outputQty": "10463793292692", + "outputQty": "10463793292694", "swapFee": "6086334395", - "priceReceived": 0.9550947143217013 + "priceReceived": 0.9550947143215187 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 0, - "outputQty": "1046379329243911", - "swapFee": "608633439508", - "priceReceived": 0.9550947143447764 + "outputQty": "1046379329266878", + "swapFee": "608633439515", + "priceReceived": 0.9550947143238064 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 0, - "outputQty": "104637932671762503", - "swapFee": "60863343871480", - "priceReceived": 0.955094716651431 + "outputQty": "104637932901424869", + "swapFee": "60863343943624", + "priceReceived": 0.9550947145544719 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 0, - "outputQty": "1046379303751399330", - "swapFee": "608633431500388", - "priceReceived": 0.9550947376210117 + "outputQty": "1046379326717625022", + "swapFee": "608633438714806", + "priceReceived": 0.955094716651431 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 0, - "outputQty": "10463790740902354752", - "swapFee": "6086333593565286", - "priceReceived": 0.9550949473158712 + "outputQty": "10463793037513993371", + "swapFee": "6086334315003881", + "priceReceived": 0.9550947376210117 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 0, - "outputQty": "104637677758789146648", - "swapFee": "60863263794995589", - "priceReceived": 0.9550970441697376 + "outputQty": "104637907409023548229", + "swapFee": "60863335935652863", + "priceReceived": 0.9550949473158711 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 0, - "outputQty": "722263128479055491881378", - "swapFee": "422553559162174988487", + "outputQty": "7222631284790554675305345", + "swapFee": "4225535591621749738862", "priceReceived": 0.9674832050645118 }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 0, - "outputQty": "1433094677312411634245482", - "swapFee": "841275721935342452176", + "outputQty": "14330946773124115843896971", + "swapFee": "8412757219353424224745", "priceReceived": 0.975203345880127 }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 0, - "outputQty": "2137711494094160926435218", - "swapFee": "1257768754982574099612", + "outputQty": "21377114940941607698813472", + "swapFee": "12577687549825740067676", "priceReceived": 0.980647873689488 }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 0, - "outputQty": "2838008198118375113442264", - "swapFee": "1672697094452568553252", + "outputQty": "28380081981183750120066182", + "swapFee": "16726970944525684929565", "priceReceived": 0.9848904963554165 }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 0, - "outputQty": "3534438755467934405642287", - "swapFee": "2086377935724127709749", + "outputQty": "35344387554679341987849106", + "swapFee": "20863779357241275865535", "priceReceived": 0.988534209755095 }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 0, - "outputQty": "4226394339111648882141178", - "swapFee": "2498975677928744759900", + "outputQty": "42263943391116485717951138", + "swapFee": "24989756779287445740732", "priceReceived": 0.9920278819044936 }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 0, - "outputQty": "4911782260367201108637264", - "swapFee": "2910579067931670693036", + "outputQty": "49117822603672015350811396", + "swapFee": "29105790679316709499221", "priceReceived": 0.9958685384735243 }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 0, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 0, "hardLimitError": true }, @@ -10333,107 +10333,107 @@ "inputIndex": 2, "inputQty": "10000000000000", "outputIndex": 1, - "outputQty": "8436719465774", + "outputQty": "8436719465795", "swapFee": "6086334395", - "priceReceived": 1.1845734240836394 + "priceReceived": 1.1845734240806909 }, { "inputIndex": 2, "inputQty": "1000000000000000", "outputIndex": 1, - "outputQty": "843671946345970", - "swapFee": "608633439508", - "priceReceived": 1.1845734244085735 + "outputQty": "843671946556369", + "swapFee": "608633439515", + "priceReceived": 1.1845734241131505 }, { "inputIndex": 2, "inputQty": "100000000000000000", "outputIndex": 1, - "outputQty": "84367192320212282", - "swapFee": "60863343871480", - "priceReceived": 1.1845734569050674 + "outputQty": "84367194424198382", + "swapFee": "60863343943624", + "priceReceived": 1.1845734273628 }, { "inputIndex": 2, "inputQty": "1000000000000000000", "outputIndex": 1, - "outputQty": "843671712803297357", - "swapFee": "608633431500388", - "priceReceived": 1.1845737523281268 + "outputQty": "843671923202122814", + "swapFee": "608633438714806", + "priceReceived": 1.1845734569050674 }, { "inputIndex": 2, "inputQty": "10000000000000000000", "outputIndex": 1, - "outputQty": "8436696087934987253", - "swapFee": "6086333593565286", - "priceReceived": 1.1845767065970727 + "outputQty": "8436717128032973610", + "swapFee": "6086334315003881", + "priceReceived": 1.1845737523281268 }, { "inputIndex": 2, "inputQty": "100000000000000000000", "outputIndex": 1, - "outputQty": "84364856654093899177", - "swapFee": "60863263794995589", - "priceReceived": 1.184606253122287 + "outputQty": "84366960879349872911", + "swapFee": "60863335935652863", + "priceReceived": 1.1845767065970727 }, { "inputIndex": 2, - "inputQty": "699200000000000050331648", + "inputQty": "6992000000000000234881024", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "1398400000000000100663296", + "inputQty": "13984000000000000469762048", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2097600000000000016777216", + "inputQty": "20975999999999998557159424", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "2796800000000000201326592", + "inputQty": "27968000000000000939524096", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "3496000000000000117440512", + "inputQty": "34959999999999999026921472", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4195200000000000033554432", + "inputQty": "41951999999999997114318848", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "4894399999999999949668352", + "inputQty": "48944000000000003791650816", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "5593600000000000402653184", + "inputQty": "55936000000000001879048192", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6292799999999999781896192", + "inputQty": "62927999999999999966445568", "outputIndex": 1, "hardLimitError": true }, { "inputIndex": 2, - "inputQty": "6992000000000000234881024", + "inputQty": "69919999999999998053842944", "outputIndex": 1, "hardLimitError": true } diff --git a/test/feeders/admin.spec.ts b/test/feeders/admin.spec.ts index 0528552c..5fba3f3a 100644 --- a/test/feeders/admin.spec.ts +++ b/test/feeders/admin.spec.ts @@ -28,7 +28,7 @@ describe("Feeder Admin", () => { feederWeights?: Array, mAssetWeights?: Array, ): Promise => { - details = await feederMachine.deployFeeder(false, feederWeights, mAssetWeights, useLendingMarkets, useInterestValidator) + details = await feederMachine.deployFeeder(feederWeights, mAssetWeights, useLendingMarkets, useInterestValidator) } before("Init contract", async () => { @@ -48,31 +48,24 @@ describe("Feeder Admin", () => { describe("should allow changing of the cache size to ", () => { it("zero", async () => { const tx = pool.setCacheSize(0) - await expect(tx) - .to.emit(pool, "CacheSizeChanged") - .withArgs(0) - const poolData = await pool.data() - expect(poolData.cacheSize).eq(0) + await expect(tx).to.emit(pool, "CacheSizeChanged").withArgs(0) + const { cacheSize } = await pool.data() + expect(cacheSize).eq(0) }) it("1%", async () => { - let poolData = await pool.data() - const oldSize = poolData.cacheSize + const { cacheSize: oldSize } = await pool.data() expect(oldSize).not.eq(newSize) const tx = pool.setCacheSize(newSize) - await expect(tx) - .to.emit(pool, "CacheSizeChanged") - .withArgs(newSize) - poolData = await pool.data() - expect(poolData.cacheSize).eq(newSize) + await expect(tx).to.emit(pool, "CacheSizeChanged").withArgs(newSize) + const { cacheSize } = await pool.data() + expect(cacheSize).eq(newSize) }) it("20% (cap limit)", async () => { const capLimit = simpleToExactAmount(20, 16) // 20% const tx = pool.setCacheSize(capLimit) - await expect(tx) - .to.emit(pool, "CacheSizeChanged") - .withArgs(capLimit) - const poolData = await pool.data() - expect(poolData.cacheSize).eq(capLimit) + await expect(tx).to.emit(pool, "CacheSizeChanged").withArgs(capLimit) + const { cacheSize } = await pool.data() + expect(cacheSize).eq(capLimit) }) }) describe("should fail changing the cache size if", () => { @@ -94,7 +87,7 @@ describe("Feeder Admin", () => { }) describe("should change swap and redemption fees to", () => { it("0.5% and 0.25%", async () => { - let poolData = await pool.data() + const poolData = await pool.data() const newSwapFee = simpleToExactAmount(0.5, 16) const newRedemptionFee = simpleToExactAmount(0.25, 16) const newGovFee = simpleToExactAmount(2, 17) @@ -102,35 +95,29 @@ describe("Feeder Admin", () => { expect(poolData.redemptionFee).not.eq(newRedemptionFee) expect(poolData.govFee).not.eq(newGovFee) const tx = pool.setFees(newSwapFee, newRedemptionFee, newGovFee) - await expect(tx) - .to.emit(pool, "FeesChanged") - .withArgs(newSwapFee, newRedemptionFee, newGovFee) - poolData = await pool.data() - expect(poolData.swapFee).eq(newSwapFee) - expect(poolData.redemptionFee).eq(newRedemptionFee) - expect(poolData.govFee).eq(newGovFee) + await expect(tx).to.emit(pool, "FeesChanged").withArgs(newSwapFee, newRedemptionFee, newGovFee) + const { swapFee, redemptionFee, govFee } = await pool.data() + expect(swapFee).eq(newSwapFee) + expect(redemptionFee).eq(newRedemptionFee) + expect(govFee).eq(newGovFee) }) it("1% (limit)", async () => { const newFee = simpleToExactAmount(1, 16) const tx = pool.setFees(newFee, newFee, newFee) - await expect(tx) - .to.emit(pool, "FeesChanged") - .withArgs(newFee, newFee, newFee) - const poolData = await pool.data() - expect(poolData.swapFee).eq(newFee) - expect(poolData.redemptionFee).eq(newFee) + await expect(tx).to.emit(pool, "FeesChanged").withArgs(newFee, newFee, newFee) + const { swapFee, redemptionFee } = await pool.data() + expect(swapFee).eq(newFee) + expect(redemptionFee).eq(newFee) }) it("50% limit for gov fee", async () => { const newFee = simpleToExactAmount(1, 15) - const govFee = simpleToExactAmount(5, 17) - const tx = pool.setFees(newFee, newFee, govFee) - await expect(tx) - .to.emit(pool, "FeesChanged") - .withArgs(newFee, newFee, govFee) - const poolData = await pool.data() - expect(poolData.swapFee).eq(newFee) - expect(poolData.redemptionFee).eq(newFee) - expect(poolData.govFee).eq(govFee) + const newGovFee = simpleToExactAmount(5, 17) + const tx = pool.setFees(newFee, newFee, newGovFee) + await expect(tx).to.emit(pool, "FeesChanged").withArgs(newFee, newFee, newGovFee) + const { swapFee, redemptionFee, govFee } = await pool.data() + expect(swapFee).eq(newFee) + expect(redemptionFee).eq(newFee) + expect(govFee).eq(newGovFee) }) }) describe("should fail to change swap fee rate when", () => { @@ -165,9 +152,7 @@ describe("Feeder Admin", () => { const newMinWeight = simpleToExactAmount(30, 16) const newMaxWeight = simpleToExactAmount(70, 16) const tx = pool.setWeightLimits(newMinWeight, newMaxWeight) - await expect(tx, "WeightLimitsChanged event") - .to.emit(pool, "WeightLimitsChanged") - .withArgs(newMinWeight, newMaxWeight) + await expect(tx, "WeightLimitsChanged event").to.emit(pool, "WeightLimitsChanged").withArgs(newMinWeight, newMaxWeight) await tx poolData = await pool.data() const afterWeightLimits = poolData.weightLimits @@ -241,7 +226,7 @@ describe("Feeder Admin", () => { }) it("should succeed in starting increase over 2 weeks", async () => { const pool = details.pool.connect(sa.governor.signer) - const ampDataBefore = (await pool.data()).ampData + const { ampData: ampDataBefore } = await pool.data() // default values expect(ampDataBefore.initialA, "before initialA").to.eq(30000) @@ -252,12 +237,10 @@ describe("Feeder Admin", () => { const startTime = await getTimestamp() const endTime = startTime.add(ONE_WEEK.mul(2)) const tx = pool.startRampA(400, endTime) - await expect(tx) - .to.emit(pool, "StartRampA") - .withArgs(30000, 40000, startTime.add(1), endTime) + await expect(tx).to.emit(pool, "StartRampA").withArgs(30000, 40000, startTime.add(1), endTime) // after values - const ampDataAfter = (await pool.data()).ampData + const { ampData: ampDataAfter } = await pool.data() expect(ampDataAfter.initialA, "after initialA").to.eq(30000) expect(ampDataAfter.targetA, "after targetA").to.eq(40000) expect(ampDataAfter.rampStartTime, "after rampStartTime").to.eq(startTime.add(1)) @@ -339,7 +322,7 @@ describe("Feeder Admin", () => { }) it("should increase target A 10x", async () => { const { pool } = details - const ampDataBefore = (await details.pool.data()).ampData + const { ampData: ampDataBefore } = await details.pool.data() expect(ampDataBefore.initialA, "before initialA").to.eq(currentA) expect(ampDataBefore.targetA, "before targetA").to.eq(currentA) @@ -347,13 +330,13 @@ describe("Feeder Admin", () => { const tx = details.pool.connect(sa.governor.signer).startRampA(targetA, endTime) await expect(tx).to.emit(pool, "StartRampA") - const ampDataAfter = (await details.pool.data()).ampData + const { ampData: ampDataAfter } = await details.pool.data() expect(ampDataAfter.initialA, "after initialA").to.eq(currentA) expect(ampDataAfter.targetA, "after targetA").to.eq(currentA.mul(10)) }) it("should decrease target A 10x", async () => { const { pool } = details - const ampDataBefore = (await details.pool.data()).ampData + const { ampData: ampDataBefore } = await details.pool.data() expect(ampDataBefore.initialA, "before initialA").to.eq(currentA) expect(ampDataBefore.targetA, "before targetA").to.eq(currentA) @@ -361,7 +344,7 @@ describe("Feeder Admin", () => { const tx = details.pool.connect(sa.governor.signer).startRampA(targetA, endTime) await expect(tx).to.emit(pool, "StartRampA") - const ampDataAfter = (await details.pool.data()).ampData + const { ampData: ampDataAfter } = await details.pool.data() expect(ampDataAfter.initialA, "after initialA").to.eq(currentA) expect(ampDataAfter.targetA, "after targetA").to.eq(currentA.div(10)) }) @@ -510,13 +493,11 @@ describe("Feeder Admin", () => { const currentA = config.a const currentTime = await getTimestamp() const tx = pool.stopRampA() - await expect(tx) - .to.emit(pool, "StopRampA") - .withArgs(currentA, currentTime.add(1)) + await expect(tx).to.emit(pool, "StopRampA").withArgs(currentA, currentTime.add(1)) config = await details.pool.getConfig() expect(config.a).to.eq(currentA) - const ampDataAfter = (await pool.data()).ampData + const { ampData: ampDataAfter } = await pool.data() expect(ampDataAfter.initialA, "after initialA").to.eq(currentA) expect(ampDataAfter.targetA, "after targetA").to.eq(currentA) expect(ampDataAfter.rampStartTime.toNumber(), "after rampStartTime").to.within( @@ -557,9 +538,7 @@ describe("Feeder Admin", () => { it("Should collect zero platform interest", async () => { const { pool } = details const tx = pool.connect(sa.mockInterestValidator.signer).collectPlatformInterest() - await expect(tx) - .to.emit(pool, "MintedMulti") - .withArgs(pool.address, sa.mockInterestValidator.address, 0, [], [0, 0]) + await expect(tx).to.emit(pool, "MintedMulti").withArgs(pool.address, sa.mockInterestValidator.address, 0, [], [0, 0]) }) it("Should collect zero platform interest even after minting a mAsset", async () => { const { pool, mAsset } = details @@ -572,9 +551,7 @@ describe("Feeder Admin", () => { await pool.mint(mAsset.address, simpleToExactAmount(500), 0, sa.default.address) const tx = pool.connect(sa.mockInterestValidator.signer).collectPlatformInterest() - await expect(tx) - .to.emit(pool, "MintedMulti") - .withArgs(pool.address, sa.mockInterestValidator.address, 0, [], [0, 0]) + await expect(tx).to.emit(pool, "MintedMulti").withArgs(pool.address, sa.mockInterestValidator.address, 0, [], [0, 0]) }) }) context("mocking the interest validator", () => { @@ -704,20 +681,18 @@ describe("Feeder Admin", () => { const { interestValidator, pool, bAssets, mAsset } = details // Accrue some fees for gov await pool.redeem(bAssets[0].address, simpleToExactAmount(10), 0, sa.default.address) - const data = await pool.data() - expect(data.pendingFees).gt(simpleToExactAmount(1, 13)) - const expectedOutput = await pool["getRedeemOutput(address,uint256)"](mAsset.address, data.pendingFees) + const { pendingFees: beforePendingFees } = await pool.data() + expect(beforePendingFees).gt(simpleToExactAmount(1, 13)) + const expectedOutput = await pool["getRedeemOutput(address,uint256)"](mAsset.address, beforePendingFees) // Get balance of SM const balBefore = await mAsset.balanceOf(sa.mockSavingsManager.address) const tx = interestValidator.connect(sa.governor.signer).collectGovFees([pool.address]) - await expect(tx) - .to.emit(interestValidator, "GovFeeCollected") - .withArgs(pool.address, mAsset.address, expectedOutput) + await expect(tx).to.emit(interestValidator, "GovFeeCollected").withArgs(pool.address, mAsset.address, expectedOutput) await (await tx).wait() - const dataAfter = await pool.data() + const { pendingFees: afterPendingFees } = await pool.data() const balAfter = await mAsset.balanceOf(sa.mockSavingsManager.address) - expect(dataAfter.pendingFees).lt(data.pendingFees) + expect(afterPendingFees).lt(beforePendingFees) expect(balAfter).eq(balBefore.add(expectedOutput)) }) it("fails if given invalid fPool addr", async () => { @@ -843,9 +818,7 @@ describe("Feeder Admin", () => { // call migrate const tx = pool.connect(sa.governor.signer).migrateBassets([transferringAsset.address], newMigration.address) // emits BassetsMigrated - await expect(tx) - .to.emit(pool, "BassetsMigrated") - .withArgs([transferringAsset.address], newMigration.address) + await expect(tx).to.emit(pool, "BassetsMigrated").withArgs([transferringAsset.address], newMigration.address) // moves all bAssets from old to new const migratedBal = await newMigration.callStatic.checkBalance(transferringAsset.address) expect(migratedBal).eq(bal) @@ -892,9 +865,7 @@ describe("Feeder Admin", () => { // call migrate const tx = pool.connect(sa.governor.signer).migrateBassets([transferringAsset.address], newMigration.address) // emits BassetsMigrated - await expect(tx) - .to.emit(pool, "BassetsMigrated") - .withArgs([transferringAsset.address], newMigration.address) + await expect(tx).to.emit(pool, "BassetsMigrated").withArgs([transferringAsset.address], newMigration.address) // moves all bAssets from old to new const migratedBal = await newMigration.callStatic.checkBalance(transferringAsset.address) expect(migratedBal).eq(bal) @@ -929,9 +900,7 @@ describe("Feeder Admin", () => { // call migrate const tx = pool.connect(sa.governor.signer).migrateBassets([transferringAsset.address], newMigration.address) // emits BassetsMigrated - await expect(tx) - .to.emit(pool, "BassetsMigrated") - .withArgs([transferringAsset.address], newMigration.address) + await expect(tx).to.emit(pool, "BassetsMigrated").withArgs([transferringAsset.address], newMigration.address) // moves all bAssets from old to new const migratedBal = await newMigration.callStatic.checkBalance(transferringAsset.address) expect(migratedBal).eq(0) diff --git a/test/feeders/basic-fns.spec.ts b/test/feeders/basic-fns.spec.ts index 4d5310dd..b3e029bb 100644 --- a/test/feeders/basic-fns.spec.ts +++ b/test/feeders/basic-fns.spec.ts @@ -16,7 +16,7 @@ describe("Feeder Pools", () => { feederWeights?: Array, mAssetWeights?: Array, ): Promise => { - feeder = await feederMachine.deployFeeder(false, feederWeights, mAssetWeights, useLendingMarkets, useInterestValidator) + feeder = await feederMachine.deployFeeder(feederWeights, mAssetWeights, useLendingMarkets, useInterestValidator) } before("Init contract", async () => { diff --git a/test/feeders/from-data/cross.spec.ts b/test/feeders/from-data/cross.spec.ts index 0d086604..5604b5ce 100644 --- a/test/feeders/from-data/cross.spec.ts +++ b/test/feeders/from-data/cross.spec.ts @@ -10,6 +10,7 @@ import { FeederLogic__factory, MockERC20, FeederManager__factory, + Masset, } from "types/generated" import { assertBNClose } from "@utils/assertions" import { MassetMachine, StandardAccounts } from "@utils/machines" @@ -26,13 +27,13 @@ const config = { max: simpleToExactAmount(80, 16), }, } -const massetA = 300 +const massetA = 120 const maxAction = 100 const feederFees = { swap: simpleToExactAmount(8, 14), redeem: simpleToExactAmount(6, 14), gov: simpleToExactAmount(1, 17) } -const mAssetFees = { swap: simpleToExactAmount(4, 14), redeem: simpleToExactAmount(2, 14) } +const mAssetFees = { swap: simpleToExactAmount(6, 14), redeem: simpleToExactAmount(3, 14) } const ratio = simpleToExactAmount(1, 8) -const tolerance = BN.from(10) +const tolerance = BN.from(20) const cv = (n: number | string): BN => BN.from(BigInt(n).toString()) const getMPReserves = (data: any) => [0, 1, 2, 3, 4, 5] @@ -63,21 +64,21 @@ interface Data { vaultBalances: BN[] } } -const getData = async (_feederPool: ExposedFeederPool, _mAsset: ExposedMasset): Promise => ({ +const getData = async (_feederPool: ExposedFeederPool, _mAsset: Masset | ExposedMasset): Promise => ({ fp: { totalSupply: (await _feederPool.totalSupply()).add((await _feederPool.data()).pendingFees), vaultBalances: (await _feederPool.getBassets())[1].map((b) => b[1]), value: await _feederPool.getPrice(), }, mAsset: { - totalSupply: (await _mAsset.totalSupply()).add(await _mAsset.surplus()), + totalSupply: (await _mAsset.getConfig()).supply, // gets the total supply plus any surplus vaultBalances: (await _mAsset.getBassets())[1].map((b) => b[1]), }, }) describe("Cross swap - One basket many tests", () => { let feederPool: ExposedFeederPool - let mAsset: ExposedMasset + let mAsset: Masset | ExposedMasset let sa: StandardAccounts let recipient: string let fpAssetAddresses: string[] diff --git a/test/feeders/from-data/integration.spec.ts b/test/feeders/from-data/integration.spec.ts index fb191eff..0914a18c 100644 --- a/test/feeders/from-data/integration.spec.ts +++ b/test/feeders/from-data/integration.spec.ts @@ -43,7 +43,7 @@ describe("Feeder Validation - One basket many tests", () => { sa = mAssetMachine.sa recipient = await sa.default.address - const mAssetDetails = await mAssetMachine.deployMasset(false, false, false, massetA) + const mAssetDetails = await mAssetMachine.deployMasset(false, false, massetA) await mAssetMachine.seedWithWeightings(mAssetDetails, [25000000, 25000000, 25000000, 25000000]) const bBtc = await mAssetMachine.loadBassetProxy("Binance BTC", "bBTC", 18) const bAssets = [mAssetDetails.mAsset as MockERC20, bBtc] diff --git a/test/feeders/from-data/single.spec.ts b/test/feeders/from-data/single.spec.ts index e1b50201..ff6743e7 100644 --- a/test/feeders/from-data/single.spec.ts +++ b/test/feeders/from-data/single.spec.ts @@ -232,7 +232,7 @@ describe("Feeder Validator - One basket one test", () => { sa = mAssetMachine.sa recipient = await sa.default.address - const mAssetDetails = await mAssetMachine.deployMasset(false, false, false) + const mAssetDetails = await mAssetMachine.deployMasset(false, false) await mAssetMachine.seedWithWeightings(mAssetDetails, [25000000, 25000000, 25000000, 25000000]) mAssetBassets = mAssetDetails.bAssets const bBtc = await mAssetMachine.loadBassetProxy("Binance BTC", "bBTC", 18) diff --git a/test/feeders/mint.spec.ts b/test/feeders/mint.spec.ts index af6d027b..38cda819 100644 --- a/test/feeders/mint.spec.ts +++ b/test/feeders/mint.spec.ts @@ -28,7 +28,7 @@ describe("Feeder - Mint", () => { mAssetWeights?: Array, use2dp = false, ): Promise => { - details = await feederMachine.deployFeeder(false, feederWeights, mAssetWeights, useLendingMarkets, useInterestValidator, use2dp) + details = await feederMachine.deployFeeder(feederWeights, mAssetWeights, useLendingMarkets, useInterestValidator, use2dp) } before("Init contract", async () => { diff --git a/test/feeders/redeem.spec.ts b/test/feeders/redeem.spec.ts index 281fad9f..4eb6d038 100644 --- a/test/feeders/redeem.spec.ts +++ b/test/feeders/redeem.spec.ts @@ -28,7 +28,7 @@ describe("Feeder - Redeem", () => { mAssetWeights?: Array, use2dp = false, ): Promise => { - details = await feederMachine.deployFeeder(false, feederWeights, mAssetWeights, useLendingMarkets, useInterestValidator, use2dp) + details = await feederMachine.deployFeeder(feederWeights, mAssetWeights, useLendingMarkets, useInterestValidator, use2dp) } before("Init contract", async () => { @@ -186,8 +186,8 @@ describe("Feeder - Redeem", () => { expect(redeemEvent.args.recipient, "recipient in Redeemer event").to.eq(recipient) expect(redeemEvent.args.mAssetQuantity, "mAssetQuantity in Redeemer event").to.eq(fpTokenQuantityExact) expect(redeemEvent.args.output, "output in Redeemer event").to.eq(outputAsset.address) - if (outputQuantityExpectedExact.gte(0)) { - expect(redeemEvent.args.outputQuantity, "outputQuantity in Redeemer event").to.eq(outputQuantityExpectedExact) + if (outputActual.gte(0)) { + expect(redeemEvent.args.outputQuantity, "outputQuantity in Redeemer event").to.eq(outputActual) } expect(redeemEvent.args.scaledFee, "scaledFee in Redeemed event").to.gte(0) @@ -202,7 +202,7 @@ describe("Feeder - Redeem", () => { .withArgs( assetBefore.integrator ? assetBefore.integratorAddr : assetBefore.feederPoolOrMassetContract.address, recipient, - outputQuantityExpectedExact, + outputActual, ) // Withdraw from lending platform, feeder pool or main pool @@ -215,23 +215,21 @@ describe("Feeder - Redeem", () => { .to.emit(fd.mAssetDetails.platform, "Withdraw") .withArgs(outputAsset.address, assetBefore.pToken, platformInteraction.amount) } else { - expect(integratorBalAfter, "integrator balance after").eq(integratorBalBefore.sub(outputQuantityExpectedExact)) + expect(integratorBalAfter, "integrator balance after").eq(integratorBalBefore.sub(outputActual)) } // Recipient should have redeemed asset after const recipientBalAfter = await outputAsset.balanceOf(recipient) - expect(recipientBalAfter, "recipient balance after").eq(recipientBalBefore.add(outputQuantityExpectedExact)) + expect(recipientBalAfter, "recipient balance after").eq(recipientBalBefore.add(outputActual)) // Sender should have less asset after const senderFpTokenBalAfter = await pool.balanceOf(sender.address) expect(senderFpTokenBalAfter, "sender balance after").eq(senderFpTokenBalBefore.sub(fpTokenQuantityExact)) // VaultBalance should update for this asset const assetAfter = await feederMachine.getAsset(details, outputAsset.address) - expect(BN.from(assetAfter.vaultBalance), "vault balance after").eq( - BN.from(assetBefore.vaultBalance).sub(outputQuantityExpectedExact), - ) + expect(BN.from(assetAfter.vaultBalance), "vault balance after").eq(BN.from(assetBefore.vaultBalance).sub(outputActual)) return { - outputQuantity: outputQuantityExpectedExact, + outputQuantity: outputActual, senderBassetBalBefore: senderFpTokenBalBefore, senderBassetBalAfter: senderFpTokenBalAfter, recipientBalBefore, @@ -498,13 +496,7 @@ describe("Feeder - Redeem", () => { }) it("should redeem a single main pool asset", async () => { const { mAssetDetails } = details - await assertBasicRedeem( - details, - mAssetDetails.bAssets[0], - simpleToExactAmount(1), - "998990470317456043", - "998990470317456043", - ) + await assertBasicRedeem(details, mAssetDetails.bAssets[0], simpleToExactAmount(1)) }) }) @@ -542,7 +534,7 @@ describe("Feeder - Redeem", () => { pool, mAssetDetails.bAssets[0], simpleToExactAmount(1), - "998990470317456043", + "998990470317456042", ) }) it("should redeem a single mStable asset", async () => { diff --git a/test/feeders/swap.spec.ts b/test/feeders/swap.spec.ts index 9fc08d46..e13bf8b6 100644 --- a/test/feeders/swap.spec.ts +++ b/test/feeders/swap.spec.ts @@ -6,6 +6,7 @@ import { simpleToExactAmount, BN } from "@utils/math" import { MassetMachine, StandardAccounts, Account, FeederMachine, FeederDetails } from "@utils/machines" import { FeederPool, MockERC20 } from "types/generated" import { ZERO_ADDRESS } from "@utils/constants" +import { assertBNClosePercent } from "@utils/assertions" describe("Feeder - Swap", () => { let sa: StandardAccounts @@ -19,7 +20,7 @@ describe("Feeder - Swap", () => { mAssetWeights?: Array, use2dp = false, ): Promise => { - details = await feederMachine.deployFeeder(false, feederWeights, mAssetWeights, useLendingMarkets, useInterestValidator, use2dp) + details = await feederMachine.deployFeeder(feederWeights, mAssetWeights, useLendingMarkets, useInterestValidator, use2dp) } before("Init contract", async () => { @@ -112,6 +113,7 @@ describe("Feeder - Swap", () => { recipient: string = sa.default.address, sender: Account = sa.default, skipEmits = false, + looseAmounts = false, ): Promise => { const pool = fd.pool.connect(sender.signer) @@ -136,16 +138,15 @@ describe("Feeder - Swap", () => { // Call the swap output function to check if results match const swapOutput = await pool.getSwapOutput(inputAsset.address, outputAsset.address, inputQuantityExact) - expect(swapOutput, "swap output").to.eq(outputExpectedExact) + if (looseAmounts) { + assertBNClosePercent(swapOutput, outputExpectedExact, "0.1") + } else { + expect(swapOutput, "swap output").to.eq(outputExpectedExact) + } // Expect to be used in cache const platformInteractionIn = await FeederMachine.getPlatformInteraction(pool, "deposit", inputQuantityExact, inputAssetBefore) - const platformInteractionOut = await FeederMachine.getPlatformInteraction( - pool, - "withdrawal", - outputExpectedExact, - outputAssetBefore, - ) + const platformInteractionOut = await FeederMachine.getPlatformInteraction(pool, "withdrawal", swapOutput, outputAssetBefore) // FIXME can await when Waffle 3.2.2 is included in @nomiclabs/hardhat-waffle // https://github.com/EthWorks/Waffle/issues/119 @@ -160,7 +161,7 @@ describe("Feeder - Swap", () => { .withArgs(sender.address, inputAssetBefore.integrator ? inputAssetBefore.integratorAddr : pool.address, inputQuantityExact) await expect(swapTx, "Transfer event for output asset from platform integration or mAsset to recipient") .to.emit(outputAsset, "Transfer") - .withArgs(outputAssetBefore.integrator ? outputAssetBefore.integratorAddr : pool.address, recipient, outputExpectedExact) + .withArgs(outputAssetBefore.integrator ? outputAssetBefore.integratorAddr : pool.address, recipient, swapOutput) await swapTx const inputIntegratorBalAfter = await inputAssetBefore.contract.balanceOf( @@ -203,16 +204,14 @@ describe("Feeder - Swap", () => { // } // Recipient should have output asset quantity after (minus fee) const recipientBalAfter = await outputAsset.balanceOf(recipient) - expect(recipientBalAfter, "recipientBalAfter").eq(recipientOutputBalBefore.add(outputExpectedExact)) + expect(recipientBalAfter, "recipientBalAfter").eq(recipientOutputBalBefore.add(swapOutput)) // Swap estimation should match up - expect(outputExpectedExact, "expectedOutputValue").eq(recipientBalAfter.sub(recipientOutputBalBefore)) + expect(swapOutput, "expectedOutputValue").eq(recipientBalAfter.sub(recipientOutputBalBefore)) // VaultBalance should update for output asset const outputAssetAfter = await feederMachine.getAsset(details, outputAsset.address) - expect(BN.from(outputAssetAfter.vaultBalance), "output asset after").eq( - BN.from(outputAssetBefore.vaultBalance).sub(outputExpectedExact), - ) + expect(BN.from(outputAssetAfter.vaultBalance), "output asset after").eq(BN.from(outputAssetBefore.vaultBalance).sub(swapOutput)) - return outputExpectedExact + return swapOutput } describe("swapping assets", () => { @@ -249,12 +248,13 @@ describe("Feeder - Swap", () => { fAsset, mAssetDetails.bAssets[0], simpleToExactAmount(10), - "9990535039807787103", + simpleToExactAmount(10), undefined, undefined, undefined, undefined, true, + true, ) }) it("should swap feeder asset for main pool asset with 6 decimals", async () => { diff --git a/test/masset/admin.spec.ts b/test/masset/admin.spec.ts index ac13d872..78b5dfc5 100644 --- a/test/masset/admin.spec.ts +++ b/test/masset/admin.spec.ts @@ -19,7 +19,7 @@ import { keccak256, toUtf8Bytes } from "ethers/lib/utils" import { BassetStatus } from "@utils/mstable-objects" import { getTimestamp, increaseTime } from "@utils/time" -describe("Masset Admin", () => { +describe("Feeder Admin", () => { let sa: StandardAccounts let mAssetMachine: MassetMachine let details: MassetDetails @@ -33,10 +33,9 @@ describe("Masset Admin", () => { seedBasket = true, useTransferFees = false, useLendingMarkets = false, - useMockValidator = true, weights: number[] = [25, 25, 25, 25], ): Promise => { - details = await mAssetMachine.deployMasset(useMockValidator, useLendingMarkets, useTransferFees) + details = await mAssetMachine.deployMasset(useLendingMarkets, useTransferFees) if (seedBasket) { await mAssetMachine.seedWithWeightings(details, weights) } @@ -60,21 +59,30 @@ describe("Masset Admin", () => { describe("should allow changing of the cache size to ", () => { it("zero", async () => { const tx = mAsset.setCacheSize(0) - await expect(tx).to.emit(mAsset, "CacheSizeChanged").withArgs(0) - expect(await mAsset.cacheSize()).eq(0) + await expect(tx) + .to.emit(mAsset, "CacheSizeChanged") + .withArgs(0) + const { cacheSize } = await mAsset.data() + expect(cacheSize).eq(0) }) it("1%", async () => { - const oldSize = await mAsset.cacheSize() + const { cacheSize: oldSize } = await mAsset.data() expect(oldSize).not.eq(newSize) const tx = mAsset.setCacheSize(newSize) - await expect(tx).to.emit(mAsset, "CacheSizeChanged").withArgs(newSize) - expect(await mAsset.cacheSize()).eq(newSize) + await expect(tx) + .to.emit(mAsset, "CacheSizeChanged") + .withArgs(newSize) + const { cacheSize } = await mAsset.data() + expect(cacheSize).eq(newSize) }) it("20% (cap limit)", async () => { const capLimit = simpleToExactAmount(20, 16) // 20% const tx = mAsset.setCacheSize(capLimit) - await expect(tx).to.emit(mAsset, "CacheSizeChanged").withArgs(capLimit) - expect(await mAsset.cacheSize()).eq(capLimit) + await expect(tx) + .to.emit(mAsset, "CacheSizeChanged") + .withArgs(capLimit) + const { cacheSize } = await mAsset.data() + expect(cacheSize).eq(capLimit) }) }) describe("should fail changing the cache size if", () => { @@ -96,54 +104,45 @@ describe("Masset Admin", () => { await expect(mAsset.setCacheSize(MAX_UINT256)).to.be.revertedWith("Must be <= 20%") }) }) - it("should allow upgrade of the ForgeValidator by governor", async () => { - const otherAddress = sa.other.address - const tx = mAsset.upgradeForgeValidator(otherAddress) - await expect(tx).to.emit(mAsset, "ForgeValidatorChanged").withArgs(otherAddress) - expect(await mAsset.forgeValidator()).eq(otherAddress) - }) - describe("should fail to upgrade the ForgeValidator if", () => { - it("not governor", async () => { - await expect(details.mAsset.upgradeForgeValidator(sa.dummy2.address)).to.be.revertedWith("Only governor can execute") - }) - it("zero contract address", async () => { - await expect(mAsset.upgradeForgeValidator(ZERO_ADDRESS)).to.be.revertedWith("Null address") - }) - }) describe("should change swap and redemption fees to", () => { it("0.5% and 0.25%", async () => { - const oldSwapFee = await mAsset.swapFee() - const oldRedemptionFee = await mAsset.redemptionFee() + const { swapFee: oldSwapFee, redemptionFee: oldRedemptionFee } = await mAsset.data() const newSwapFee = simpleToExactAmount(0.5, 16) const newRedemptionFee = simpleToExactAmount(0.25, 16) expect(oldSwapFee).not.eq(newSwapFee) expect(oldRedemptionFee).not.eq(newRedemptionFee) const tx = mAsset.setFees(newSwapFee, newRedemptionFee) - await expect(tx).to.emit(mAsset, "FeesChanged").withArgs(newSwapFee, newRedemptionFee) - expect(await mAsset.swapFee()).eq(newSwapFee) - expect(await mAsset.redemptionFee()).eq(newRedemptionFee) - }) - it("2% (limit)", async () => { - const newFee = simpleToExactAmount(2, 16) + await expect(tx) + .to.emit(mAsset, "FeesChanged") + .withArgs(newSwapFee, newRedemptionFee) + const { swapFee, redemptionFee } = await mAsset.data() + expect(swapFee).eq(newSwapFee) + expect(redemptionFee).eq(newRedemptionFee) + }) + it("1% (limit)", async () => { + const newFee = simpleToExactAmount(1, 16) await mAsset.setFees(newFee, newFee) const tx = mAsset.setFees(newFee, newFee) - await expect(tx).to.emit(mAsset, "FeesChanged").withArgs(newFee, newFee) - expect(await mAsset.swapFee()).eq(newFee) - expect(await mAsset.redemptionFee()).eq(newFee) + await expect(tx) + .to.emit(mAsset, "FeesChanged") + .withArgs(newFee, newFee) + const { swapFee, redemptionFee } = await mAsset.data() + expect(swapFee).eq(newFee) + expect(redemptionFee).eq(newFee) }) }) describe("should fail to change swap fee rate when", () => { it("not governor", async () => { - const fee = simpleToExactAmount(2, 16) + const fee = simpleToExactAmount(1, 16) await expect(details.mAsset.setFees(fee, fee)).to.be.revertedWith("Only governor can execute") }) - it("Swap rate just exceeds 2% cap", async () => { - await expect(mAsset.setFees("20000000000000001", "20000000000000000")).to.be.revertedWith("Swap rate oob") + it("Swap rate just exceeds 1% cap", async () => { + await expect(mAsset.setFees("10000000000000001", "10000000000000000")).to.be.revertedWith("Swap rate oob") }) - it("Redemption rate just exceeds 2% cap", async () => { - await expect(mAsset.setFees("20000000000000000", "20000000000000001")).to.be.revertedWith("Redemption rate oob") + it("Redemption rate just exceeds 1% cap", async () => { + await expect(mAsset.setFees("10000000000000000", "10000000000000001")).to.be.revertedWith("Redemption rate oob") }) - it("3% rate exceeds 2% cap", async () => { + it("3% rate exceeds 1% cap", async () => { const fee = simpleToExactAmount(3, 16) // 3% await expect(mAsset.setFees(fee, fee)).to.be.revertedWith("Swap rate oob") }) @@ -152,49 +151,16 @@ describe("Masset Admin", () => { await expect(mAsset.setFees(fee, fee)).to.be.revertedWith("Swap rate oob") }) }) - describe("should set transfer fee flag", async () => { - it("when no integration balance", async () => { - let personalData = await mAsset.bAssetPersonal(3) - expect(personalData.hasTxFee).to.be.false - - const tx = mAsset.connect(sa.governor.signer).setTransferFeesFlag(personalData.addr, true) - await expect(tx).to.emit(details.wrappedManagerLib, "TransferFeeEnabled").withArgs(personalData.addr, true) - personalData = await mAsset.bAssetPersonal(3) - expect(personalData.hasTxFee).to.be.true - - // restore the flag back to false - const tx2 = mAsset.connect(sa.governor.signer).setTransferFeesFlag(personalData.addr, false) - await expect(tx2).to.emit(details.wrappedManagerLib, "TransferFeeEnabled").withArgs(personalData.addr, false) - await tx2 - personalData = await mAsset.bAssetPersonal(3) - expect(personalData.hasTxFee).to.be.false - }) - it("when an integration balance", async () => { - await runSetup(true, false, true) - - const personalData = await details.mAsset.bAssetPersonal(2) - expect(personalData.hasTxFee).to.be.false - - const tx = details.mAsset.connect(sa.governor.signer).setTransferFeesFlag(personalData.addr, true) - await expect(tx).to.emit(details.wrappedManagerLib, "TransferFeeEnabled").withArgs(personalData.addr, true) - const personalDataAfter = await details.mAsset.bAssetPersonal(2) - expect(personalDataAfter.hasTxFee).to.be.true - - // restore the flag back to false - const tx2 = details.mAsset.connect(sa.governor.signer).setTransferFeesFlag(personalData.addr, false) - await expect(tx2).to.emit(details.wrappedManagerLib, "TransferFeeEnabled").withArgs(personalData.addr, false) - const personalDataAfterRestore = await details.mAsset.bAssetPersonal(2) - expect(personalDataAfterRestore.hasTxFee).to.be.false - }) - }) it("should set max weight", async () => { - const beforeWeightLimits = await mAsset.weightLimits() + const { weightLimits: beforeWeightLimits } = await mAsset.data() const newMinWeight = simpleToExactAmount(1, 16) const newMaxWeight = simpleToExactAmount(334, 15) const tx = mAsset.setWeightLimits(newMinWeight, newMaxWeight) - await expect(tx, "WeightLimitsChanged event").to.emit(mAsset, "WeightLimitsChanged").withArgs(newMinWeight, newMaxWeight) + await expect(tx, "WeightLimitsChanged event") + .to.emit(mAsset, "WeightLimitsChanged") + .withArgs(newMinWeight, newMaxWeight) await tx - const afterWeightLimits = await mAsset.weightLimits() + const { weightLimits: afterWeightLimits } = await mAsset.data() expect(afterWeightLimits.min, "before and after min weight not equal").not.to.eq(beforeWeightLimits.min) expect(afterWeightLimits.max, "before and after max weight not equal").not.to.eq(beforeWeightLimits.max) expect(afterWeightLimits.min, "min weight set").to.eq(newMinWeight) @@ -220,6 +186,52 @@ describe("Masset Admin", () => { await expect(mAsset.setWeightLimits(simpleToExactAmount(14, 16), newMaxWeight)).to.revertedWith("Min weight oob") }) }) + describe("should set transfer fee flag", async () => { + before(async () => { + await runSetup(true, false, true) + }) + it("when no integration balance", async () => { + const { personal } = await details.mAsset.getBasset(details.bAssets[3].address) + expect(personal.hasTxFee).to.be.false + + const tx = details.mAsset.connect(sa.governor.signer).setTransferFeesFlag(personal.addr, true) + await expect(tx) + .to.emit(details.wrappedManagerLib, "TransferFeeEnabled") + .withArgs(personal.addr, true) + const { personal: after } = await details.mAsset.getBasset(details.bAssets[3].address) + expect(after.hasTxFee).to.be.true + + // restore the flag back to false + const tx2 = details.mAsset.connect(sa.governor.signer).setTransferFeesFlag(personal.addr, false) + await expect(tx2) + .to.emit(details.wrappedManagerLib, "TransferFeeEnabled") + .withArgs(personal.addr, false) + await tx2 + const { personal: end } = await details.mAsset.getBasset(details.bAssets[3].address) + expect(end.hasTxFee).to.be.false + }) + it("when an integration balance", async () => { + const { personal } = await details.mAsset.getBasset(details.bAssets[2].address) + expect(personal.hasTxFee).to.be.false + + const tx = details.mAsset.connect(sa.governor.signer).setTransferFeesFlag(personal.addr, true) + await expect(tx) + .to.emit(details.wrappedManagerLib, "TransferFeeEnabled") + .withArgs(personal.addr, true) + + const { personal: after } = await details.mAsset.getBasset(details.bAssets[2].address) + expect(after.hasTxFee).to.be.true + + // restore the flag back to false + const tx2 = details.mAsset.connect(sa.governor.signer).setTransferFeesFlag(personal.addr, false) + await expect(tx2) + .to.emit(details.wrappedManagerLib, "TransferFeeEnabled") + .withArgs(personal.addr, false) + + const { personal: end } = await details.mAsset.getBasset(details.bAssets[2].address) + expect(end.hasTxFee).to.be.false + }) + }) }) context("getters without setters", () => { before("init basset", async () => { @@ -229,8 +241,9 @@ describe("Masset Admin", () => { const { mAsset } = details const config = await mAsset.getConfig() expect(config.limits.min, "minWeight").to.eq(simpleToExactAmount(5, 16)) - expect(config.limits.max, "maxWeight").to.eq(simpleToExactAmount(55, 16)) + expect(config.limits.max, "maxWeight").to.eq(simpleToExactAmount(65, 16)) expect(config.a, "a value").to.eq(10000) + expect(config.recolFee, "a value").to.eq(simpleToExactAmount(5, 13)) }) it("should get bAsset", async () => { const { mAsset, bAssets } = details @@ -248,9 +261,9 @@ describe("Masset Admin", () => { }) }) context("collecting interest", async () => { - const unbalancedWeights = [0, 1, 200, 300] + const unbalancedWeights = [50, 50, 200, 300] beforeEach("init basset with vaults", async () => { - await runSetup(true, false, true, true, unbalancedWeights) + await runSetup(true, false, true, unbalancedWeights) // 1.0 Simulate some activity on the lending markets // Fast forward a bit so platform interest can be collected await increaseTime(TEN_MINS.toNumber()) @@ -259,7 +272,8 @@ describe("Masset Admin", () => { const { mAsset } = details // 1.0 Get all balances and data before - expect(await mAsset.surplus()).to.eq(0) + const { surplus } = await mAsset.data() + expect(surplus).to.eq(0) const totalSupplyBefore = await mAsset.totalSupply() // 2.0 Static call collectInterest to validate the return values @@ -272,7 +286,8 @@ describe("Masset Admin", () => { await expect(tx).to.not.emit(mAsset, "MintedMulti") // 4.0 Check outputs - expect(await mAsset.surplus()).to.eq(0) + const { surplus: after } = await mAsset.data() + expect(after).to.eq(0) }) it("should collect interest after fees generated from swap", async () => { const { bAssets, mAsset } = details @@ -283,7 +298,7 @@ describe("Masset Admin", () => { await mAsset.swap(bAssets[3].address, bAssets[2].address, simpleToExactAmount(20, 18), 0, sa.dummy1.address) // 2.0 Get all balances and data before - const surplus = await mAsset.surplus() + const { surplus } = await mAsset.data() const mAssetBalBefore = await mAsset.balanceOf(sa.mockSavingsManager.address) const totalSupplyBefore = await mAsset.totalSupply() @@ -306,7 +321,8 @@ describe("Masset Admin", () => { await tx // 7.0 Check outputs - expect(await mAsset.surplus(), "after surplus").to.eq(1) + const { surplus: surplusEnd } = await mAsset.data() + expect(surplusEnd, "after surplus").to.eq(1) expect(await mAsset.balanceOf(sa.mockSavingsManager.address), "after Saving Manager balance").eq( mAssetBalBefore.add(surplus).sub(1), ) @@ -356,7 +372,6 @@ describe("Masset Admin", () => { expect(b.vaultBalance, `balance of bAsset[${i}] not increased`).gt(bassetsBefore[i].vaultBalance) } }) - const sumOfVaultsAfter = bassetsAfter.reduce((p, c) => p.add(applyRatio(c.vaultBalance, c.ratio)), BN.from(0)) const totalSupplyAfter = await details.mAsset.totalSupply() expect(newSupply).to.eq(totalSupplyAfter) @@ -365,7 +380,6 @@ describe("Masset Admin", () => { assertBNSlightlyGTPercent(totalSupplyAfter, totalSupplyBefore, "0.01", true) // 6.2 check that increase in vault balance is equivalent to total balance const increasedTotalSupply = totalSupplyAfter.sub(totalSupplyBefore) - expect(increasedTotalSupply, "increasedTotalSupply").eq(sumOfVaultsAfter.sub(sumOfVaultsBefore)) expect(mintAmount).to.eq(increasedTotalSupply) // 6.3 Ensure that the SavingsManager received the mAsset expect(mAssetBalAfter, "mAssetBalAfter").eq(mAssetBalBefore.add(increasedTotalSupply)) @@ -393,7 +407,7 @@ describe("Masset Admin", () => { let maliciousIntegration: MaliciousAaveIntegration let transferringAsset: MockERC20 beforeEach(async () => { - await runSetup(false, false, true, true) + await runSetup(false, false, true) ;[, , , transferringAsset] = details.bAssets newMigration = await (await new MockPlatformIntegration__factory(sa.default.signer)).deploy( DEAD_ADDRESS, @@ -497,7 +511,7 @@ describe("Masset Admin", () => { let newMigration: MockPlatformIntegration let transferringAsset: MockERC20 before(async () => { - await runSetup(true, false, false, true) + await runSetup(true, false, false) const lendingDetail = await mAssetMachine.loadATokens(details.bAssets) ;[, , , transferringAsset] = details.bAssets newMigration = await (await new MockPlatformIntegration__factory(sa.default.signer)).deploy( @@ -542,7 +556,9 @@ describe("Masset Admin", () => { const basketBefore = await mAsset.getBasket() expect(basketBefore[0]).to.false const tx = mAsset.connect(sa.governor.signer).negateIsolation(bAssets[0].address) - await expect(tx).to.emit(wrappedManagerLib, "BassetStatusChanged").withArgs(bAssets[0].address, BassetStatus.Normal) + await expect(tx) + .to.emit(wrappedManagerLib, "BassetStatusChanged") + .withArgs(bAssets[0].address, BassetStatus.Normal) const afterBefore = await mAsset.getBasket() expect(afterBefore[0]).to.false }) @@ -576,7 +592,9 @@ describe("Masset Admin", () => { const tx = mAsset.connect(sa.governor.signer).negateIsolation(bAsset.address) - await expect(tx).to.emit(wrappedManagerLib, "BassetStatusChanged").withArgs(bAsset.address, BassetStatus.Normal) + await expect(tx) + .to.emit(wrappedManagerLib, "BassetStatusChanged") + .withArgs(bAsset.address, BassetStatus.Normal) await tx const basketAfterNegateIsolation = await mAsset.getBasket() expect(basketAfterNegateIsolation[0], "after negateIsolation undergoingRecol").to.false @@ -601,7 +619,9 @@ describe("Masset Admin", () => { const tx = mAsset.connect(sa.governor.signer).negateIsolation(bAssets[3].address) - await expect(tx).to.emit(wrappedManagerLib, "BassetStatusChanged").withArgs(bAssets[3].address, BassetStatus.Normal) + await expect(tx) + .to.emit(wrappedManagerLib, "BassetStatusChanged") + .withArgs(bAssets[3].address, BassetStatus.Normal) await tx const basketAfterNegateIsolation = await mAsset.getBasket() expect(basketAfterNegateIsolation[0], "after negateIsolation undergoingRecol").to.true @@ -619,7 +639,7 @@ describe("Masset Admin", () => { }) it("should succeed in starting increase over 2 weeks", async () => { const mAsset = details.mAsset.connect(sa.governor.signer) - const ampDataBefore = await mAsset.ampData() + const { ampData: ampDataBefore } = await mAsset.data() // default values expect(ampDataBefore.initialA, "before initialA").to.eq(10000) @@ -630,10 +650,12 @@ describe("Masset Admin", () => { const startTime = await getTimestamp() const endTime = startTime.add(ONE_WEEK.mul(2)) const tx = mAsset.startRampA(120, endTime) - await expect(tx).to.emit(details.wrappedManagerLib, "StartRampA").withArgs(10000, 12000, startTime.add(1), endTime) + await expect(tx) + .to.emit(details.wrappedManagerLib, "StartRampA") + .withArgs(10000, 12000, startTime.add(1), endTime) // after values - const ampDataAfter = await mAsset.ampData() + const { ampData: ampDataAfter } = await mAsset.data() expect(ampDataAfter.initialA, "after initialA").to.eq(10000) expect(ampDataAfter.targetA, "after targetA").to.eq(12000) expect(ampDataAfter.rampStartTime, "after rampStartTime").to.eq(startTime.add(1)) @@ -714,18 +736,18 @@ describe("Masset Admin", () => { // target = current * 10 / 100 // the 100 is the precision const targetA = currentA.div(10) - details.mAsset.connect(sa.governor.signer).startRampA(targetA, endTime) + await details.mAsset.connect(sa.governor.signer).startRampA(targetA, endTime) - const ampDataAfter = await details.mAsset.ampData() + const { ampData: ampDataAfter } = await details.mAsset.data() expect(ampDataAfter.targetA, "after targetA").to.eq(targetA.mul(100)) }) it("should decrease target A 10x", async () => { // target = current / 100 / 10 // the 100 is the precision const targetA = currentA.div(1000) - details.mAsset.connect(sa.governor.signer).startRampA(targetA, endTime) + await details.mAsset.connect(sa.governor.signer).startRampA(targetA, endTime) - const ampDataAfter = await details.mAsset.ampData() + const { ampData: ampDataAfter } = await details.mAsset.data() expect(ampDataAfter.targetA, "after targetA").to.eq(targetA.mul(100)) }) }) @@ -868,10 +890,12 @@ describe("Masset Admin", () => { const currentA = await mAsset.getA() const currentTime = await getTimestamp() const tx = mAsset.stopRampA() - await expect(tx).to.emit(details.wrappedManagerLib, "StopRampA").withArgs(currentA, currentTime.add(1)) + await expect(tx) + .to.emit(details.wrappedManagerLib, "StopRampA") + .withArgs(currentA, currentTime.add(1)) expect(await mAsset.getA()).to.eq(currentA) - const ampDataAfter = await mAsset.ampData() + const { ampData: ampDataAfter } = await mAsset.data() expect(ampDataAfter.initialA, "after initialA").to.eq(currentA) expect(ampDataAfter.targetA, "after targetA").to.eq(currentA) expect(ampDataAfter.rampStartTime.toNumber(), "after rampStartTime").to.within( diff --git a/test/masset/extra/large-basket.spec.ts b/test/masset/extra/large-basket.spec.ts index 295620eb..54d675d6 100644 --- a/test/masset/extra/large-basket.spec.ts +++ b/test/masset/extra/large-basket.spec.ts @@ -6,7 +6,7 @@ import { MassetDetails, MassetMachine, StandardAccounts } from "@utils/machines" import { DEAD_ADDRESS, ZERO_ADDRESS } from "@utils/constants" import { BasketComposition } from "types" -import { InvariantValidator__factory, Masset__factory, AssetProxy__factory, ExposedMasset__factory } from "types/generated" +import { Masset__factory, AssetProxy__factory, ExposedMasset__factory, MassetLogic, MassetManager, Masset } from "types/generated" import { assertBNClosePercent } from "@utils/assertions" describe("Many asset Masset", () => { @@ -21,17 +21,25 @@ describe("Many asset Masset", () => { const btc4 = await mAssetMachine.loadBassetProxy("BTC4", "BTC4", 18) const btc5 = await mAssetMachine.loadBassetProxy("BTC5", "BTC5", 18) const bAssets = [renBtc, sbtc, wbtc, btc4, btc5] - const forgeVal = await new InvariantValidator__factory(sa.default.signer).deploy() - const Manager = await ethers.getContractFactory("Manager") - const managerLib = await Manager.deploy() - const linkedAddress = { - __$1a38b0db2bd175b310a9a3f8697d44eb75$__: managerLib.address, - } - const impl = await new Masset__factory(linkedAddress, sa.default.signer).deploy(DEAD_ADDRESS) + + const LogicFactory = await ethers.getContractFactory("MassetLogic") + const logicLib = (await LogicFactory.deploy()) as MassetLogic + + const ManagerFactory = await ethers.getContractFactory("MassetManager") + const managerLib = (await ManagerFactory.deploy()) as MassetManager + + const factory = ( + await ethers.getContractFactory("ExposedMasset", { + libraries: { + MassetLogic: logicLib.address, + MassetManager: managerLib.address, + }, + }) + ).connect(sa.default.signer) + const impl = await factory.deploy(DEAD_ADDRESS, simpleToExactAmount(5, 13)) const data = impl.interface.encodeFunctionData("initialize", [ "mStable BTC", "mBTC", - forgeVal.address, bAssets.map((b) => ({ addr: b.address, integrator: ZERO_ADDRESS, @@ -48,7 +56,7 @@ describe("Many asset Masset", () => { ]) const mAsset = await new AssetProxy__factory(sa.default.signer).deploy(impl.address, DEAD_ADDRESS, data) details = { - mAsset: await new ExposedMasset__factory(linkedAddress, sa.default.signer).attach(mAsset.address), + mAsset: (await factory.attach(mAsset.address)) as Masset, bAssets, } } diff --git a/test/masset/extra/mint-swap-redeem.spec.ts b/test/masset/extra/mint-swap-redeem.spec.ts index 51e759ef..e962b85d 100644 --- a/test/masset/extra/mint-swap-redeem.spec.ts +++ b/test/masset/extra/mint-swap-redeem.spec.ts @@ -6,10 +6,10 @@ import { simpleToExactAmount } from "@utils/math" import { MassetDetails, MassetMachine, StandardAccounts } from "@utils/machines" import { DEAD_ADDRESS, ZERO_ADDRESS } from "@utils/constants" -import { Masset__factory, InvariantValidator__factory, AssetProxy__factory, ExposedMasset__factory } from "types/generated" +import { AssetProxy__factory, Masset, MassetLogic, MassetManager } from "types/generated" import { BasketComposition } from "types" -describe("Masset", () => { +describe("Masset - basic fns", () => { let sa: StandardAccounts let mAssetMachine: MassetMachine let details: MassetDetails @@ -19,17 +19,24 @@ describe("Masset", () => { const sbtc = await mAssetMachine.loadBassetProxy("Synthetix BTC", "sBTC", 18) const wbtc = await mAssetMachine.loadBassetProxy("Wrapped BTC", "wBTC", 12) const bAssets = [renBtc, sbtc, wbtc] - const forgeVal = await new InvariantValidator__factory(sa.default.signer).deploy() - const Manager = await ethers.getContractFactory("Manager") - const managerLib = await Manager.deploy() - const linkedAddress = { - __$1a38b0db2bd175b310a9a3f8697d44eb75$__: managerLib.address, + + const LogicFactory = await ethers.getContractFactory("MassetLogic") + const logicLib = (await LogicFactory.deploy()) as MassetLogic + + const ManagerFactory = await ethers.getContractFactory("MassetManager") + const managerLib = (await ManagerFactory.deploy()) as MassetManager + + const libs = { + libraries: { + MassetLogic: logicLib.address, + MassetManager: managerLib.address, + }, } - const impl = await new Masset__factory(linkedAddress, sa.default.signer).deploy(DEAD_ADDRESS) + const factory = await ethers.getContractFactory("Masset", libs) + const impl = await factory.deploy(DEAD_ADDRESS, simpleToExactAmount(5, 13)) const data = impl.interface.encodeFunctionData("initialize", [ "mStable BTC", "mBTC", - forgeVal.address, bAssets.map((b) => ({ addr: b.address, integrator: ZERO_ADDRESS, @@ -46,7 +53,7 @@ describe("Masset", () => { ]) const mAsset = await new AssetProxy__factory(sa.default.signer).deploy(impl.address, DEAD_ADDRESS, data) details = { - mAsset: await new ExposedMasset__factory(linkedAddress, sa.default.signer).attach(mAsset.address), + mAsset: factory.attach(mAsset.address) as Masset, bAssets, } } diff --git a/test/masset/from-data/integration.spec.ts b/test/masset/from-data/integration.spec.ts index 3af77399..fbcec058 100644 --- a/test/masset/from-data/integration.spec.ts +++ b/test/masset/from-data/integration.spec.ts @@ -1,9 +1,12 @@ +/* eslint-disable no-restricted-syntax */ +/* eslint-disable @typescript-eslint/no-loop-func */ + import { ethers } from "hardhat" import { expect } from "chai" import { simpleToExactAmount, BN } from "@utils/math" import { DEAD_ADDRESS, MAX_UINT256, ZERO_ADDRESS } from "@utils/constants" -import { ExposedInvariantValidator__factory, ExposedMasset } from "types/generated" +import { MassetLogic, MassetManager, ExposedMasset } from "types/generated" import { assertBNClose, assertBNSlightlyGT } from "@utils/assertions" import { MassetMachine, StandardAccounts } from "@utils/machines" import { mAssetData } from "@utils/validator-data" @@ -46,23 +49,26 @@ describe("Invariant Validator - One basket many tests", () => { const wBTC = await mAssetMachine.loadBassetProxy("Wrapped BTC", "wBTC", 18) const bAssets = [renBTC, sBTC, wBTC] bAssetAddresses = bAssets.map((b) => b.address) - const forgeVal = await new ExposedInvariantValidator__factory(sa.default.signer).deploy() - const ManagerFactory = await ethers.getContractFactory("Manager") - const managerLib = await ManagerFactory.deploy() + const LogicFactory = await ethers.getContractFactory("MassetLogic") + const logicLib = (await LogicFactory.deploy()) as MassetLogic + + // 3. Invariant Validator + const ManagerFactory = await ethers.getContractFactory("MassetManager") + const managerLib = (await ManagerFactory.deploy()) as MassetManager const MassetFactory = ( await ethers.getContractFactory("ExposedMasset", { libraries: { - Manager: managerLib.address, + MassetLogic: logicLib.address, + MassetManager: managerLib.address, }, }) ).connect(sa.default.signer) - mAsset = (await MassetFactory.deploy(DEAD_ADDRESS)) as ExposedMasset + mAsset = (await MassetFactory.deploy(DEAD_ADDRESS, simpleToExactAmount(5, 13))) as ExposedMasset await mAsset.initialize( "mStable Asset", "mAsset", - forgeVal.address, bAssets.map((b) => ({ addr: b.address, integrator: ZERO_ADDRESS, @@ -88,13 +94,16 @@ describe("Invariant Validator - One basket many tests", () => { totalSupply: BN surplus: BN vaultBalances: BN[] - k: BN + priceData: { + price: BN + k: BN + } } const getData = async (_mAsset: ExposedMasset): Promise => ({ totalSupply: await _mAsset.totalSupply(), - surplus: await _mAsset.surplus(), + surplus: (await _mAsset.data()).surplus, vaultBalances: (await _mAsset.getBassets())[1].map((b) => b[1]), - k: await _mAsset.getK(), + priceData: await _mAsset.getPrice(), }) describe("Run all the data", () => { @@ -326,18 +335,19 @@ describe("Invariant Validator - One basket many tests", () => { // After each action, this property should hold true, proving 100% that mint/swap/redeem hold, // and fees are being paid 100% accurately. This should show that the redeemBasset holds. assertBNSlightlyGT( - dataEnd.k, + dataEnd.priceData.k, dataEnd.surplus.add(dataEnd.totalSupply), BN.from(1000000000000), false, "K does not hold", ) // The dust collected should always increase in favour of the system - const newKDiff = dataEnd.k.sub(dataEnd.surplus.add(dataEnd.totalSupply)) + const newKDiff = dataEnd.priceData.k.sub(dataEnd.surplus.add(dataEnd.totalSupply)) const cachedLastDiff = lastKDiff lastKDiff = newKDiff if (testData.type !== "redeemMasset") { - expect(newKDiff, "Dust can only accumulate in favour of the system").gte(cachedLastDiff) + // 50 base unit tolerance on dust increase + expect(newKDiff, "Dust can only accumulate in favour of the system").gte(cachedLastDiff.sub(50)) } else if (newKDiff < cachedLastDiff) { assertBNClose(newKDiff, cachedLastDiff, BN.from(200), "K dust accrues on redeemMasset") } diff --git a/test/masset/from-data/single.spec.ts b/test/masset/from-data/single.spec.ts index 983ec188..fb6059a6 100644 --- a/test/masset/from-data/single.spec.ts +++ b/test/masset/from-data/single.spec.ts @@ -1,3 +1,6 @@ +/* eslint-disable no-restricted-syntax */ +/* eslint-disable @typescript-eslint/no-loop-func */ + import { assertBNClose } from "@utils/assertions" import { DEAD_ADDRESS, fullScale, MAX_UINT256, ZERO_ADDRESS } from "@utils/constants" import { MassetMachine, StandardAccounts } from "@utils/machines" @@ -6,16 +9,18 @@ import { mAssetData } from "@utils/validator-data" import { expect } from "chai" import { ethers } from "hardhat" -import { InvariantValidator, InvariantValidator__factory, Masset, Masset__factory, MockERC20 } from "types/generated" +import { Masset, Masset__factory, MockERC20, ExposedMassetLogic, MassetLogic, MassetManager } from "types/generated" const { mintData, mintMultiData, redeemData, redeemExactData, redeemMassetData, swapData } = mAssetData -const config = { +let config = { + supply: BN.from(0), a: BN.from(12000), limits: { min: simpleToExactAmount(5, 16), max: simpleToExactAmount(75, 16), }, + recolFee: simpleToExactAmount(5, 13), } const ratio = simpleToExactAmount(1, 8) @@ -33,22 +38,33 @@ const getReserves = (data: any) => const runLongTests = process.env.LONG_TESTS === "true" -describe("Invariant Validator - One basket one test", () => { - let validator: InvariantValidator +describe("Feeder Logic - One basket one test", () => { + let validator: ExposedMassetLogic let sa: StandardAccounts before(async () => { const accounts = await ethers.getSigners() const mAssetMachine = await new MassetMachine().initAccounts(accounts) sa = mAssetMachine.sa - validator = await new InvariantValidator__factory(sa.default.signer).deploy() + const LogicFactory = await ethers.getContractFactory("MassetLogic") + const logicLib = await LogicFactory.deploy() + const linkedAddress = { + libraries: { + MassetLogic: logicLib.address, + }, + } + const massetFactory = await ethers.getContractFactory("ExposedMassetLogic", linkedAddress) + validator = (await massetFactory.deploy()) as ExposedMassetLogic }) describe("Compute Mint", () => { let count = 0 const testMintData = runLongTests ? mintData : mintData.slice(0, 1) for (const testData of testMintData) { const reserves = getReserves(testData) - + config = { + ...config, + supply: cv(testData.mAssetSupply), + } describe(`reserves: ${testData.reserve0}, ${testData.reserve1}, ${testData.reserve2}`, () => { for (const testMint of testData.mints) { if (testMint.hardLimitError) { @@ -76,6 +92,10 @@ describe("Invariant Validator - One basket one test", () => { const testMultiMintData = runLongTests ? mintMultiData : mintMultiData.slice(0, 1) for (const testData of testMultiMintData) { const reserves = getReserves(testData) + config = { + ...config, + supply: cv(testData.mAssetSupply), + } describe(`reserves: ${testData.reserve0}, ${testData.reserve1}, ${testData.reserve2}`, () => { for (const testMint of testData.mints) { const qtys = testMint.bAssetQtys.map((b) => cv(b)) @@ -92,6 +112,10 @@ describe("Invariant Validator - One basket one test", () => { const testSwapData = runLongTests ? swapData : swapData.slice(0, 1) for (const testData of testSwapData) { const reserves = getReserves(testData) + config = { + ...config, + supply: cv(testData.mAssetSupply), + } describe(`reserves: ${testData.reserve0}, ${testData.reserve1}, ${testData.reserve2}`, () => { for (const testSwap of testData.swaps) { if (testSwap.hardLimitError) { @@ -133,24 +157,30 @@ describe("Invariant Validator - One basket one test", () => { const testRedeemData = runLongTests ? redeemData : redeemData.slice(0, 1) for (const testData of testRedeemData) { const reserves = getReserves(testData) + config = { + ...config, + supply: cv(testData.mAssetSupply), + } describe(`reserves: ${testData.reserve0}, ${testData.reserve1}, ${testData.reserve2}`, () => { for (const testRedeem of testData.redeems) { // Deduct swap fee before performing redemption - const netInput = cv(testRedeem.mAssetQty) - .mul(fullScale.sub(swapFeeRate)) - .div(fullScale) - if (testRedeem.hardLimitError) { it(`${(count += 1)} throws Max Weight error when redeeming ${testRedeem.mAssetQty} mAssets for bAsset ${ testRedeem.bAssetIndex }`, async () => { - await expect(validator.computeRedeem(reserves, testRedeem.bAssetIndex, netInput, config)).to.be.revertedWith( - "Exceeds weight limits", - ) + await expect( + validator.computeRedeem(reserves, testRedeem.bAssetIndex, cv(testRedeem.mAssetQty), config, swapFeeRate), + ).to.be.revertedWith("Exceeds weight limits") }) } else { it(`${(count += 1)} redeem ${testRedeem.mAssetQty} mAssets for bAsset ${testRedeem.bAssetIndex}`, async () => { - const bAssetQty = await validator.computeRedeem(reserves, testRedeem.bAssetIndex, netInput, config) + const [bAssetQty] = await validator.computeRedeem( + reserves, + testRedeem.bAssetIndex, + cv(testRedeem.mAssetQty), + config, + swapFeeRate, + ) assertBNClose(bAssetQty, cv(testRedeem.outputQty), 2) }) } @@ -163,27 +193,31 @@ describe("Invariant Validator - One basket one test", () => { const testRedeemExactData = runLongTests ? redeemExactData : redeemExactData.slice(0, 1) for (const testData of testRedeemExactData) { const reserves = getReserves(testData) - + config = { + ...config, + supply: cv(testData.mAssetSupply), + } describe(`reserves: ${testData.reserve0}, ${testData.reserve1}, ${testData.reserve2}`, () => { for (const testRedeem of testData.redeems) { // Deduct swap fee after performing redemption - const applyFee = (m: BN): BN => m.mul(fullScale).div(fullScale.sub(swapFeeRate)) const qtys = testRedeem.bAssetQtys.map((b) => cv(b)) if (testRedeem.insufficientLiquidityError) { it(`${(count += 1)} throws throw insufficient liquidity error when redeeming ${qtys} bAssets`, async () => { - await expect(validator.computeRedeemExact(reserves, [0, 1, 2], qtys, config)).to.be.revertedWith("VM Exception") + await expect(validator.computeRedeemExact(reserves, [0, 1, 2], qtys, config, swapFeeRate)).to.be.revertedWith( + "VM Exception", + ) }) } else if (testRedeem.hardLimitError) { it(`${(count += 1)} throws Max Weight error when redeeming ${qtys} bAssets`, async () => { - await expect(validator.computeRedeemExact(reserves, [0, 1, 2], qtys, config)).to.be.revertedWith( + await expect(validator.computeRedeemExact(reserves, [0, 1, 2], qtys, config, swapFeeRate)).to.be.revertedWith( "Exceeds weight limits", ) }) } else { it(`${(count += 1)} redeem ${qtys} bAssets`, async () => { - const mAssetQty = await validator.computeRedeemExact(reserves, [0, 1, 2], qtys, config) - assertBNClose(applyFee(mAssetQty), cv(testRedeem.mAssetQty), tolerance) + const [mAssetQty] = await validator.computeRedeemExact(reserves, [0, 1, 2], qtys, config, swapFeeRate) + assertBNClose(mAssetQty, cv(testRedeem.mAssetQty), tolerance) }) } } @@ -217,26 +251,27 @@ describe("Invariant Validator - One basket one test", () => { const wBTC = await mAssetMachine.loadBassetProxy("Wrapped BTC", "wBTC", 18) bAssets = [renBTC, sBTC, wBTC] bAssetAddresses = bAssets.map((b) => b.address) - const forgeVal = await new InvariantValidator__factory(sa.default.signer).deploy() - forgeValAddr = forgeVal.address - const ManagerFactory = await ethers.getContractFactory("Manager") - const managerLib = await ManagerFactory.deploy() + const LogicFactory = await ethers.getContractFactory("MassetLogic") + const logicLib = (await LogicFactory.deploy()) as MassetLogic + + const ManagerFactory = await ethers.getContractFactory("MassetManager") + const managerLib = (await ManagerFactory.deploy()) as MassetManager massetFactory = ( await ethers.getContractFactory("Masset", { libraries: { - Manager: managerLib.address, + MassetLogic: logicLib.address, + MassetManager: managerLib.address, }, }) ).connect(sa.default.signer) as Masset__factory }) beforeEach(async () => { - mAsset = (await massetFactory.deploy(DEAD_ADDRESS)) as Masset + mAsset = (await massetFactory.deploy(DEAD_ADDRESS, simpleToExactAmount(5, 13))) as Masset await mAsset.initialize( "mStable Asset", "mAsset", - forgeValAddr, bAssets.map((b) => ({ addr: b.address, integrator: ZERO_ADDRESS, diff --git a/test/masset/mint.spec.ts b/test/masset/mint.spec.ts index c7573764..f2e1e37a 100644 --- a/test/masset/mint.spec.ts +++ b/test/masset/mint.spec.ts @@ -2,7 +2,7 @@ import { expect } from "chai" import { Signer } from "ethers" import { ethers } from "hardhat" -import { assertBasketIsHealthy, assertBNSlightlyGTPercent } from "@utils/assertions" +import { assertBasketIsHealthy, assertBNClosePercent, assertBNSlightlyGTPercent } from "@utils/assertions" import { applyRatio, BN, simpleToExactAmount } from "@utils/math" import { Account, MassetDetails, MassetMachine, StandardAccounts } from "@utils/machines" import { BassetStatus } from "@utils/mstable-objects" @@ -24,7 +24,7 @@ describe("Masset - Mint", () => { let details: MassetDetails const runSetup = async (seedBasket = true, useTransferFees = false, useLendingMarkets = false): Promise => { - details = await mAssetMachine.deployMasset(true, useLendingMarkets, useTransferFees) + details = await mAssetMachine.deployMasset(useLendingMarkets, useTransferFees) if (seedBasket) { await mAssetMachine.seedWithWeightings(details, [25, 25, 25, 25]) } @@ -163,13 +163,22 @@ describe("Masset - Mint", () => { await mAssetMachine.approveMasset(bAsset, mAsset, bAssetQuantityExact, sender.signer, quantitiesAreExact) const mAssetOutput = await mAsset.getMintOutput(bAsset.address, bAssetQuantityExact) - expect(mAssetOutput, "mAssetOutput").to.eq(mAssetQuantityExact) + assertBNClosePercent(mAssetOutput, mAssetQuantityExact, "0.02", "mAssetOutput") const tx = mAsset.mint(bAsset.address, bAssetQuantityExact, minMassetQuantityExact, recipient) + // Minted event await expect(tx, "Minted event") .to.emit(mAsset, "Minted") - .withArgs(sender.address, recipient, mAssetQuantityExact, bAsset.address, bAssetQuantityExact) + .withArgs(sender.address, recipient, mAssetOutput, bAsset.address, bAssetQuantityExact) + // const { events } = await (await tx).wait() + // const mintedEvent = events.find((e) => e.event === "Minted") + // expect(mintedEvent.args[0]).to.eq(sender.address) + // expect(mintedEvent.args[1]).to.eq(recipient) + // expect(mintedEvent.args[2]).to.eq(mAssetOutput) + // expect(mintedEvent.args[3]).to.eq(bAsset.address) + // expect(mintedEvent.args[4]).to.eq(bAssetQuantityExact) + // Transfers to lending platform await expect(tx, "Transfer event") .to.emit(bAsset, "Transfer") @@ -181,20 +190,20 @@ describe("Masset - Mint", () => { ) expect(integratorBalAfter, "integratorBalAfter").eq(integratorBalBefore.add(bAssetQuantityExact)) if (platformInteraction.expectInteraction) { - await expect(tx) - .to.emit(platform, "Deposit") - .withArgs(bAsset.address, bAssetBefore.pToken, platformInteraction.amount) + await expect(tx).to.emit(platform, "Deposit").withArgs(bAsset.address, bAssetBefore.pToken, platformInteraction.amount) } // Recipient should have mAsset quantity after const recipientBalAfter = await mAsset.balanceOf(recipient) - expect(recipientBalAfter, "recipientBal after").eq(recipientBalBefore.add(mAssetQuantityExact)) + expect(recipientBalAfter, "recipientBal after").eq(recipientBalBefore.add(mAssetOutput)) // Sender should have less bAsset after const senderBassetBalAfter = await bAsset.balanceOf(sender.address) expect(senderBassetBalAfter, "senderBassetBal after").eq(senderBassetBalBefore.sub(bAssetQuantityExact)) // VaultBalance should update for this bAsset const bAssetAfter = await mAsset.getBasset(bAsset.address) - expect(BN.from(bAssetAfter.data.vaultBalance), "vaultBalance after").eq(BN.from(bAssetBefore.vaultBalance).add(bAssetQuantityExact)) + expect(BN.from(bAssetAfter.bData.vaultBalance), "vaultBalance after").eq( + BN.from(bAssetBefore.vaultBalance).add(bAssetQuantityExact), + ) // Complete basket should remain in healthy state if (!ignoreHealthAssertions) await assertBasketIsHealthy(mAssetMachine, md) @@ -214,8 +223,8 @@ describe("Masset - Mint", () => { await runSetup() }) it("should send mUSD when recipient is a contract", async () => { - const { bAssets, forgeValidator } = details - const recipient = forgeValidator.address + const { bAssets, managerLib } = details + const recipient = managerLib.address await assertBasicMint(details, bAssets[0], 1, 0, recipient) }) it("should send mUSD when the recipient is an EOA", async () => { @@ -242,7 +251,7 @@ describe("Masset - Mint", () => { }) context("using bAssets with transfer fees", async () => { before(async () => { - await runSetup(false, true, true) + await runSetup(true, true, true) }) it("should handle tokens with transfer fees", async () => { const { bAssets, mAsset, platform } = details @@ -269,9 +278,7 @@ describe("Masset - Mint", () => { // take 0.1% off for the transfer fee = amount * (1 - 0.001) const bAssetAmountLessFee = bAssetQuantity.mul(999).div(1000) // 3.1 Check Transfers to lending platform - await expect(tx) - .to.emit(bAsset, "Transfer") - .withArgs(sa.default.address, platform.address, bAssetAmountLessFee) + await expect(tx).to.emit(bAsset, "Transfer").withArgs(sa.default.address, platform.address, bAssetAmountLessFee) // 3.2 Check Deposits into lending platform await expect(tx) .to.emit(platform, "Deposit") @@ -282,13 +289,7 @@ describe("Masset - Mint", () => { assertBNSlightlyGTPercent(recipientBalBefore.add(mAssetQuantity), recipientBalAfter, "0.3", true) // Sender should have less bAsset after const minterBassetBalAfter = await bAsset.balanceOf(sa.default.address) - expect(minterBassetBalAfter).eq(minterBassetBalBefore.sub(bAssetQuantity)) - // VaultBalance should update for this bAsset - const bAssetAfter = await mAsset.getBasset(bAsset.address) - expect(BN.from(bAssetAfter.data.vaultBalance)).eq(recipientBalAfter) - - // Complete basket should remain in healthy state - // await assertBasketIsHealthy(mAssetMachine, details); + expect(minterBassetBalAfter, "minterBassetBalAfter").eq(minterBassetBalBefore.sub(bAssetQuantity)) }) it("should fail if the token charges a fee but we don't know about it", async () => { const { bAssets, mAsset } = details @@ -318,7 +319,19 @@ describe("Masset - Mint", () => { await mAsset.connect(sa.governor.signer).handlePegLoss(bAsset.address, true) const newBasset = await mAsset.getBasset(bAsset.address) expect(newBasset.personal.status).to.eq(BassetStatus.BrokenBelowPeg) - await assertFailedMint("Unhealthy", mAsset, bAsset, 1, 0, true, sa.default.signer, sa.default.address, false, 1) + await assertFailedMint( + "Unhealthy", + mAsset, + bAsset, + "1000000000000000000", + 0, + true, + sa.default.signer, + sa.default.address, + false, + "1000746841283429855", + true, + ) }) }) context("passing invalid arguments", async () => { @@ -327,7 +340,19 @@ describe("Masset - Mint", () => { }) it("should fail if recipient is 0x0", async () => { const { mAsset, bAssets } = details - await assertFailedMint("Invalid recipient", mAsset, bAssets[0], 1, 0, true, sa.default.signer, ZERO_ADDRESS, false, 1) + await assertFailedMint( + "Invalid recipient", + mAsset, + bAssets[0], + "1000000000000000000", + 0, + true, + sa.default.signer, + ZERO_ADDRESS, + false, + "999854806326923450", + true, + ) }) it("should revert when 0 quantities", async () => { const { bAssets, mAsset } = details @@ -342,13 +367,14 @@ describe("Masset - Mint", () => { "ERC20: transfer amount exceeds balance", mAsset, bAsset, - 100, - 99, + "100000000000000000000", + "99000000000000000000", true, sender.signer, sender.address, false, - 100, + "98939327585405193936", + true, ) }) it("should fail if sender doesn't give approval", async () => { @@ -409,23 +435,30 @@ describe("Masset - Mint", () => { const approvals: Array = await Promise.all( bAssets.map((b, i) => mAssetMachine.approveMasset(b, mAsset, mAssetMintAmounts[i])), ) - const tx = mAsset.connect(sender.signer).mintMulti( + + const mAssetOutput = await mAsset.getMintMultiOutput( bAssetBefore.map((b) => b.personal.addr), approvals, - 0, - recipient, ) - const mAssetQuantity = simpleToExactAmount( mAssetMintAmounts.reduce((p, c) => BN.from(p).add(BN.from(c)), BN.from(0)), 18, ) + assertBNClosePercent(mAssetOutput, mAssetQuantity, "0.25", "mAssetOutput") + + const tx = mAsset.connect(sender.signer).mintMulti( + bAssetBefore.map((b) => b.personal.addr), + approvals, + 0, + recipient, + ) + await expect(tx) .to.emit(mAsset, "MintedMulti") .withArgs( sender.address, recipient, - mAssetQuantity, + mAssetOutput, bAssetBefore.map((b) => b.personal.addr), approvals, ) @@ -433,14 +466,14 @@ describe("Masset - Mint", () => { const bAssetQuantities = mAssetMintAmounts.map((m, i) => simpleToExactAmount(m, bAssetDecimals[i])) // Recipient should have mAsset quantity after const recipientBalAfter = await mAsset.balanceOf(recipient) - expect(recipientBalAfter).eq(recipientBalBefore.add(mAssetQuantity)) + expect(recipientBalAfter, "recipientBalAfter").eq(recipientBalBefore.add(mAssetOutput)) // Sender should have less bAsset after const minterBassetBalAfter = await Promise.all(bAssets.map((b) => b.balanceOf(sender.address))) - minterBassetBalAfter.map((b, i) => expect(b).eq(minterBassetBalBefore[i].sub(bAssetQuantities[i]))) + minterBassetBalAfter.map((b, i) => expect(b, `minter bAsset ${i} bal`).eq(minterBassetBalBefore[i].sub(bAssetQuantities[i]))) // VaultBalance should updated for this bAsset const bAssetAfter = await Promise.all(bAssets.map((b) => mAsset.getBasset(b.address))) bAssetAfter.map((b, i) => - expect(BN.from(b.data.vaultBalance)).eq(BN.from(bAssetBefore[i].data.vaultBalance).add(bAssetQuantities[i])), + expect(b.bData.vaultBalance, `vault balance ${i}`).eq(BN.from(bAssetBefore[i].bData.vaultBalance).add(bAssetQuantities[i])), ) // Complete basket should remain in healthy state @@ -456,15 +489,15 @@ describe("Masset - Mint", () => { await runSetup() }) it("should mint selected bAssets only", async () => { - const comp = await mAssetMachine.getBasketComposition(details) + const compBefore = await mAssetMachine.getBasketComposition(details) await assertMintMulti(details, [5, 10], [details.bAssets[2], details.bAssets[0]]) const compAfter = await mAssetMachine.getBasketComposition(details) - expect(comp.bAssets[1].vaultBalance).eq(compAfter.bAssets[1].vaultBalance) - expect(comp.bAssets[3].vaultBalance).eq(compAfter.bAssets[3].vaultBalance) + expect(compBefore.bAssets[1].vaultBalance).eq(compAfter.bAssets[1].vaultBalance) + expect(compBefore.bAssets[3].vaultBalance).eq(compAfter.bAssets[3].vaultBalance) }) it("should send mUSD when recipient is a contract", async () => { - const { bAssets, forgeValidator } = details - const recipient = forgeValidator.address + const { bAssets, managerLib } = details + const recipient = managerLib.address await assertMintMulti(details, [1], [bAssets[0]], recipient) }) it("should send mUSD when the recipient is an EOA", async () => { @@ -505,7 +538,7 @@ describe("Masset - Mint", () => { }) context("using bAssets with transfer fees", async () => { before(async () => { - await runSetup(false, true, true) + await runSetup(true, true, true) }) it("should handle tokens with transfer fees", async () => { const { bAssets, mAsset, platform } = details @@ -533,31 +566,22 @@ describe("Masset - Mint", () => { const platformToken = await platform.bAssetToPToken(bAsset.address) const lendingPlatform = await platform.platformAddress() // 3.1 Check Transfers from sender to platform integration - await expect(tx) - .to.emit(bAsset, "Transfer") - .withArgs(sa.default.address, platform.address, bAssetAmountLessFee) + await expect(tx).to.emit(bAsset, "Transfer").withArgs(sa.default.address, platform.address, bAssetAmountLessFee) // 3.2 Check Transfers from platform integration to lending platform - await expect(tx) - .to.emit(bAsset, "Transfer") - .withArgs( - platform.address, - lendingPlatform, - bAssetAmountLessFee.mul(999).div(1000), // Take another 0.1% off the transfer value - ) + await expect(tx).to.emit(bAsset, "Transfer").withArgs( + platform.address, + lendingPlatform, + bAssetAmountLessFee.mul(999).div(1000), // Take another 0.1% off the transfer value + ) // 3.3 Check Deposits into lending platform - await expect(tx) - .to.emit(platform, "Deposit") - .withArgs(bAsset.address, platformToken, bAssetAmountLessFee) + await expect(tx).to.emit(platform, "Deposit").withArgs(bAsset.address, platformToken, bAssetAmountLessFee) // 4.0 Recipient should have mAsset quantity after const recipientBalAfter = await mAsset.balanceOf(recipient.address) // Assert that we minted gt 99% of the bAsset assertBNSlightlyGTPercent(recipientBalBefore.add(mAssetQuantity), recipientBalAfter, "0.3") - // Sender should have less bAsset afterz + // Sender should have less bAsset after const minterBassetBalAfter = await bAsset.balanceOf(sa.default.address) - expect(minterBassetBalAfter).eq(minterBassetBalBefore.sub(bAssetQuantity)) - // VaultBalance should update for this bAsset - const bAssetAfter = await mAsset.getBasset(bAsset.address) - expect(BN.from(bAssetAfter.data.vaultBalance)).eq(recipientBalAfter) + expect(minterBassetBalAfter, "minterBassetBalAfter").eq(minterBassetBalBefore.sub(bAssetQuantity)) // Complete basket should remain in healthy state await assertBasketIsHealthy(mAssetMachine, details) @@ -595,13 +619,14 @@ describe("Masset - Mint", () => { "Unhealthy", mAsset, [bAsset.address], - [1], + ["1000000000000000000"], 0, true, sa.default.signer, sa.default.address, false, - 1, + "1000746841283429855", + true, ) }) }) @@ -689,7 +714,7 @@ describe("Masset - Mint", () => { sender.signer, sender.address, false, - "100000000000000000000", // 100 + "98939327585405193936", // 0.989... true, ) }) @@ -702,13 +727,14 @@ describe("Masset - Mint", () => { "ERC20: transfer amount exceeds balance", mAsset, [bAsset.address], - [100], + ["100000000000000000000"], 0, false, sender.signer, sender.address, false, - 100, + "98939327585405193936", + true, ) }) it("should fail if sender doesn't give approval", async () => { @@ -781,7 +807,12 @@ describe("Masset - Mint", () => { sa.default.address, ) const mUsdBalAfter = await mAsset.balanceOf(sa.default.address) - expect(mUsdBalAfter, "Must mint 4 full units of mUSD").eq(mUsdBalBefore.add(simpleToExactAmount(4, 18))) + assertBNClosePercent( + mUsdBalAfter, + mUsdBalBefore.add(simpleToExactAmount(4, 18)), + "0.0001", + "Must mint 4 full units of mUSD", + ) }) it("should mint using 2 bAssets", async () => { const { bAssets, mAsset } = details diff --git a/test/masset/recol.spec.ts b/test/masset/recol.spec.ts new file mode 100644 index 00000000..04177e65 --- /dev/null +++ b/test/masset/recol.spec.ts @@ -0,0 +1,259 @@ +import { expect } from "chai" +import { ethers, network } from "hardhat" + +import { assertBNSlightlyGTPercent } from "@utils/assertions" +import { BN, simpleToExactAmount } from "@utils/math" +import { MassetDetails, MassetMachine, StandardAccounts } from "@utils/machines" +import { ONE_DAY } from "@utils/constants" +import { ExposedMassetLogic, MassetLogic__factory } from "types/generated" +import { getTimestamp, increaseTime } from "@utils/time" + +const one = simpleToExactAmount(1) +const swapFee = simpleToExactAmount(6, 14) +const recolFee = simpleToExactAmount(5, 13) + +const snapshot = async (): Promise => { + const id = await network.provider.request({ + method: "evm_snapshot", + }) + return id as number +} + +const revert = async (id: number): Promise => { + await network.provider.request({ + method: "evm_revert", + params: [id], + }) +} + +describe("Recol functions", () => { + let sa: StandardAccounts + let mAssetMachine: MassetMachine + + let details: MassetDetails + let validator: ExposedMassetLogic + + const runSetup = async (): Promise => { + details = await mAssetMachine.deployMasset() + await mAssetMachine.seedWithWeightings(details, [22, 28, 23, 24]) + + const logicLib = await new MassetLogic__factory(sa.default.signer).deploy() + const linkedAddress = { + libraries: { + MassetLogic: logicLib.address, + }, + } + const massetFactory = await ethers.getContractFactory("ExposedMassetLogic", linkedAddress) + validator = (await massetFactory.deploy()) as ExposedMassetLogic + } + + before("Init contract", async () => { + const accounts = await ethers.getSigners() + mAssetMachine = await new MassetMachine().initAccounts(accounts) + sa = mAssetMachine.sa + + await runSetup() + }) + + const changeCollateralisation = async (over: boolean) => { + const { mAsset } = details + const time = await getTimestamp() + const currentA = (await mAsset.getConfig()).a + const futureA = over ? currentA.mul(4) : currentA.div(4) + await mAsset.connect(sa.governor.signer).startRampA(futureA.div(100), time.add(ONE_DAY.add(1))) + await increaseTime(ONE_DAY.add(1)) + } + + describe("recol fee application", () => { + context("when over collateralised", () => { + before(async () => { + await runSetup() + await changeCollateralisation(true) + const price = await details.mAsset.getPrice() + expect(price.price).gt(one) + }) + it("should not apply fee", async () => { + const { mAsset } = details + const bAssetData = (await mAsset.getBassets())[1] + const config = await mAsset.getConfig() + const noRecol = { + ...config, + recolFee: BN.from(0), + } + const withRecol = { + ...config, + recolFee, + } + + // mint + const mintWithNone = await validator.computeMint(bAssetData, 0, one, noRecol) + const mintWithRecol = await validator.computeMint(bAssetData, 0, one, withRecol) + expect(mintWithNone).eq(mintWithRecol) + + // mintMulti + const multiWithNone = await validator.computeMintMulti(bAssetData, [0], [one], noRecol) + const multiWithRecol = await validator.computeMintMulti(bAssetData, [0], [one], withRecol) + expect(multiWithNone).eq(multiWithRecol) + + // swap + const [swapWithNone] = await validator.computeSwap(bAssetData, 0, 1, one, swapFee, noRecol) + const [swapWithRecol] = await validator.computeSwap(bAssetData, 0, 1, one, swapFee, withRecol) + expect(swapWithNone).eq(swapWithRecol) + + // redeem + const [redeemWithNone] = await validator.computeRedeem(bAssetData, 0, one, noRecol, swapFee) + const [redeemWithRecol] = await validator.computeRedeem(bAssetData, 0, one, withRecol, swapFee) + expect(redeemWithNone).eq(redeemWithRecol) + + // redeemExact + const [exactWithNone] = await validator.computeRedeemExact(bAssetData, [0], [one], noRecol, swapFee) + const [exactWithRecol] = await validator.computeRedeemExact(bAssetData, [0], [one], withRecol, swapFee) + expect(exactWithNone).eq(exactWithRecol) + + // redeemProportionately + const sID = await snapshot() + await mAsset.simulateRedeemMasset(one, [0, 0, 0, 0], 0) + const vaultsWithNone = (await mAsset.getBassets())[1] + await revert(sID) + await mAsset.simulateRedeemMasset(one, [0, 0, 0, 0], simpleToExactAmount(5, 13)) + const vaultsWithRecol = (await mAsset.getBassets())[1] + vaultsWithRecol.map((v, i) => expect(v.vaultBalance).eq(vaultsWithNone[i].vaultBalance)) + }) + }) + context("when under collateralised", () => { + before(async () => { + await runSetup() + await changeCollateralisation(false) + const price = await details.mAsset.getPrice() + expect(price.price).lt(one) + }) + it("should deduct fee if set", async () => { + const { mAsset } = details + const bAssetData = (await mAsset.getBassets())[1] + const config = await mAsset.getConfig() + const noRecol = { + ...config, + recolFee: BN.from(0), + } + const withRecol = { + ...config, + recolFee, + } + + // mint + const mintWithNone = await validator.computeMint(bAssetData, 0, one, noRecol) + const mintWithRecol = await validator.computeMint(bAssetData, 0, one, withRecol) + assertBNSlightlyGTPercent(mintWithNone, mintWithRecol, "0.006", true) + + // mintMulti + const multiWithNone = await validator.computeMintMulti(bAssetData, [0], [one], noRecol) + const multiWithRecol = await validator.computeMintMulti(bAssetData, [0], [one], withRecol) + assertBNSlightlyGTPercent(multiWithNone, multiWithRecol, "0.006", true) + + // swap + const [swapWithNone] = await validator.computeSwap(bAssetData, 0, 1, one, swapFee, noRecol) + const [swapWithRecol] = await validator.computeSwap(bAssetData, 0, 1, one, swapFee, withRecol) + assertBNSlightlyGTPercent(swapWithNone, swapWithRecol, "0.006", true) + + // redeem + const [redeemWithNone] = await validator.computeRedeem(bAssetData, 0, one, noRecol, swapFee) + const [redeemWithRecol] = await validator.computeRedeem(bAssetData, 0, one, withRecol, swapFee) + assertBNSlightlyGTPercent(redeemWithNone, redeemWithRecol, "0.006", true) + + // redeemExact + const [exactWithNone] = await validator.computeRedeemExact(bAssetData, [0], [one], noRecol, swapFee) + const [exactWithRecol] = await validator.computeRedeemExact(bAssetData, [0], [one], withRecol, swapFee) + assertBNSlightlyGTPercent(exactWithRecol, exactWithNone, "0.006", true) + + // redeemProportionately + const sID = await snapshot() + await mAsset.simulateRedeemMasset(one, [0, 0, 0, 0], 0) + const vaultsWithNone = (await mAsset.getBassets())[1] + await revert(sID) + await mAsset.simulateRedeemMasset(one, [0, 0, 0, 0], simpleToExactAmount(5, 13)) + const vaultsWithRecol = (await mAsset.getBassets())[1] + vaultsWithRecol.map((v, i) => assertBNSlightlyGTPercent(v.vaultBalance, vaultsWithNone[i].vaultBalance, "0.006", true)) + }) + }) + }) + describe("manually re-setting collateraliastion", () => { + context("when over collateralised", () => { + before(async () => { + await runSetup() + await changeCollateralisation(true) + const price = await details.mAsset.getPrice() + expect(price.price).gt(one) + }) + it("should fail to burnSurplus", async () => { + await expect(details.mAsset.connect(sa.governor.signer).burnSurplus()).to.be.revertedWith("No surplus") + }) + it("should distribute surplus to savers", async () => { + const { mAsset } = details + + const { surplus } = await mAsset.data() + let supply = await mAsset.totalSupply() + const { k } = await mAsset.getPrice() + + const diff = await k.sub(supply.add(surplus)) + + const tx = mAsset.connect(sa.governor.signer).mintDeficit() + await expect(tx) + .to.emit(mAsset, "DeficitMinted") + .withArgs(diff) + + const { surplus: surplusAfter } = await mAsset.data() + supply = await mAsset.totalSupply() + const { price, k: kAfter } = await mAsset.getPrice() + + expect(k).eq(kAfter) + expect(price).eq(simpleToExactAmount(1)) + expect(surplusAfter).eq(surplus.add(diff)) + expect(k).eq(supply.add(surplusAfter)) + }) + it("should do nothing if called again", async () => { + await expect(details.mAsset.connect(sa.governor.signer).mintDeficit()).to.be.revertedWith("No deficit") + }) + }) + context("when under collateralised", () => { + before(async () => { + await runSetup() + await changeCollateralisation(false) + const price = await details.mAsset.getPrice() + expect(price.price).lt(one) + }) + it("should fail to mintDeficit", async () => { + await expect(details.mAsset.connect(sa.governor.signer).mintDeficit()).to.be.revertedWith("No deficit") + }) + it("should deduct deficit from sender and reset", async () => { + const { mAsset } = details + + const balBefore = await mAsset.balanceOf(sa.default.address) + + const { surplus } = await mAsset.data() + const supplyBefore = await mAsset.totalSupply() + const { k } = await mAsset.getPrice() + + const diff = await supplyBefore.add(surplus).sub(k) + + const tx = mAsset.connect(sa.default.signer).burnSurplus() + await expect(tx) + .to.emit(mAsset, "SurplusBurned") + .withArgs(sa.default.address, diff) + + const balAfter = await mAsset.balanceOf(sa.default.address) + const { surplus: surplusAfter } = await mAsset.data() + const supplyafter = await mAsset.totalSupply() + const { price, k: kAfter } = await mAsset.getPrice() + + expect(k).eq(kAfter) + expect(price).eq(simpleToExactAmount(1)) + expect(surplusAfter).eq(surplus) + expect(balAfter).eq(balBefore.sub(diff)) + expect(supplyafter).eq(supplyBefore.sub(diff)) + }) + it("should do nothing if called again", async () => { + await expect(details.mAsset.connect(sa.default.signer).burnSurplus()).to.be.revertedWith("No surplus") + }) + }) + }) +}) diff --git a/test/masset/redeem.spec.ts b/test/masset/redeem.spec.ts index 7a5fc49f..6511787f 100644 --- a/test/masset/redeem.spec.ts +++ b/test/masset/redeem.spec.ts @@ -6,7 +6,7 @@ import { simpleToExactAmount, BN, applyRatio } from "@utils/math" import { MassetDetails, MassetMachine, StandardAccounts, Account } from "@utils/machines" import { MockERC20, Masset } from "types/generated" import { fullScale, ZERO_ADDRESS } from "@utils/constants" -import { assertBasketIsHealthy, assertBNSlightlyGTPercent } from "@utils/assertions" +import { assertBasketIsHealthy, assertBNClosePercent, assertBNSlightlyGTPercent } from "@utils/assertions" import { BassetStatus } from "@utils/mstable-objects" describe("Masset - Redeem", () => { @@ -23,10 +23,9 @@ describe("Masset - Redeem", () => { seedBasket = true, useTransferFees = false, useLendingMarkets = false, - useMockValidator = true, weights: number[] = [25, 25, 25, 25], ): Promise => { - details = await mAssetMachine.deployMasset(useMockValidator, useLendingMarkets, useTransferFees) + details = await mAssetMachine.deployMasset(useLendingMarkets, useTransferFees) if (seedBasket) { await mAssetMachine.seedWithWeightings(details, weights) } @@ -71,7 +70,7 @@ describe("Masset - Redeem", () => { ).to.be.revertedWith(expectedReason) } else { const redeemedBassetQuantity = await mAsset.getRedeemOutput(bAssetAddress, mAssetRedeemQuantityExact) - expect(redeemedBassetQuantity, "getRedeemOutput call output").eq(expectedBassetQuantityExact) + assertBNClosePercent(redeemedBassetQuantity, expectedBassetQuantityExact, "0.1", "getRedeemOutput call output") } } const assertFailedMassetRedemption = async ( @@ -132,7 +131,12 @@ describe("Masset - Redeem", () => { ).to.be.revertedWith(expectedReason) } else { const redeemedMassetQuantity = await mAsset.getRedeemExactBassetsOutput(bAssetAddresses, bAssetRedeemQuantitiesExact) - expect(redeemedMassetQuantity, "getRedeemExactBassetsOutput call output").eq(expectedMassetQuantityExact) + assertBNClosePercent( + redeemedMassetQuantity, + BN.from(expectedMassetQuantityExact), + "0.1", + "getRedeemExactBassetsOutput call output", + ) } } @@ -162,13 +166,11 @@ describe("Masset - Redeem", () => { const bAssetDecimals = await bAsset.decimals() const mAssetQuantityExact = quantitiesAreExact ? BN.from(mAssetBurnQuantity) : simpleToExactAmount(mAssetBurnQuantity, 18) const minBassetOutputExact = quantitiesAreExact ? BN.from(minBassetOutput) : simpleToExactAmount(minBassetOutput, bAssetDecimals) - const surplusBefore = await mAsset.surplus() + const { surplus: surplusBefore, swapFee: feeRate } = await mAsset.data() let scaledFee = BN.from(0) - let feeRate = BN.from(0) // If there is a fee expected, then deduct it from output if (expectFee) { - feeRate = await mAsset.swapFee() expect(feeRate, "fee rate > 0").gt(0) expect(feeRate, "fee rate < fullScale / 50").lt(fullScale.div(50)) scaledFee = mAssetQuantityExact.mul(feeRate).div(fullScale) @@ -231,7 +233,7 @@ describe("Masset - Redeem", () => { expect(BN.from(bAssetAfter.vaultBalance), "bAssetAfter.vaultBalance").eq( BN.from(bAssetBefore.vaultBalance).sub(bAssetQuantityExact), ) - const surplusAfter = await mAsset.surplus() + const { surplus: surplusAfter } = await mAsset.data() expect(surplusAfter, "surplusAfter").eq(surplusBefore.add(scaledFee)) // Complete basket should remain in healthy state @@ -271,44 +273,29 @@ describe("Masset - Redeem", () => { const senderMassetBalBefore = await mAsset.balanceOf(sender.address) const mAssetSupplyBefore = await mAsset.totalSupply() const recipientBassetBalsBefore: BN[] = await Promise.all(bAssets.map((b) => b.balanceOf(recipient))) - const surplusBefore = await mAsset.surplus() + const { surplus: surplusBefore } = await mAsset.data() - // Convert mBasset quantities to mAsset quantity - const mAssetsBurnt = bAssetRedeemQuantitiesExact.reduce((acc, bAssetRedeemQuantityExact, i) => { - const mAssetQuantity = applyRatio(bAssetRedeemQuantityExact, bAssetsBefore[i].ratio) - return acc.add(mAssetQuantity) - }, BN.from(0)) + const mAssetQuantityExact = await mAsset.getRedeemExactBassetsOutput(bAssetAddresses, bAssetRedeemQuantitiesExact) // Calculate redemption fee let scaledFee = BN.from(0) - let feeRate = BN.from(0) // If there is a fee expected, then deduct it from output if (expectFee) { - feeRate = await mAsset.swapFee() + const { swapFee: feeRate } = await mAsset.data() expect(feeRate, "fee rate > 0").gt(BN.from(0)) expect(feeRate, "fee rate < fullScale / 50").lt(fullScale.div(BN.from(50))) - // fee = mAsset qty * feeRate / (1 - feeRate) - scaledFee = mAssetsBurnt.mul(feeRate).div(fullScale.sub(feeRate)) + // fee = mAsset qty - (mAsset qty * feeRate / 1e18) + scaledFee = mAssetQuantityExact.mul(feeRate).div(fullScale) expect(scaledFee, "scaled fee > 0").gt(BN.from(0)) } - const mAssetQuantityExact = await mAsset.getRedeemExactBassetsOutput(bAssetAddresses, bAssetRedeemQuantitiesExact) - expect(mAssetQuantityExact, "mAssetQuantityExact").to.eq(mAssetsBurnt.add(scaledFee).add(1)) - // Execute the redemption const tx = mAsset.redeemExactBassets(bAssetAddresses, bAssetRedeemQuantitiesExact, maxMassetBurntQuantityExact, recipient) // Check the emitted events await expect(tx) .to.emit(mAsset, "RedeemedMulti") - .withArgs( - sender.address, - recipient, - mAssetsBurnt.add(scaledFee).add(1), - bAssetAddresses, - bAssetRedeemQuantitiesExact, - scaledFee, - ) + .withArgs(sender.address, recipient, mAssetQuantityExact, bAssetAddresses, bAssetRedeemQuantitiesExact, scaledFee) // Transfer events await expect(tx, "Transfer event to burn the redeemed mAssets") .to.emit(mAsset, "Transfer") @@ -351,7 +338,7 @@ describe("Masset - Redeem", () => { BN.from(bAssetsBefore[i].vaultBalance).sub(bAssetRedeemQuantitiesExact[i]), ) }) - const surplusAfter = await mAsset.surplus() + const { surplus: surplusAfter } = await mAsset.data() expect(surplusAfter, "surplusAfter").eq(surplusBefore.add(scaledFee)) // Complete basket should remain in healthy state @@ -388,14 +375,12 @@ describe("Masset - Redeem", () => { const senderMassetBalBefore = await mAsset.balanceOf(sender.address) const mAssetSupplyBefore = await mAsset.totalSupply() const recipientBassetBalsBefore: BN[] = await Promise.all(bAssets.map((b) => b.balanceOf(recipient))) - const surplusBefore = await mAsset.surplus() + const { surplus: surplusBefore, redemptionFee: feeRate } = await mAsset.data() // Calculate redemption fee let scaledFee = BN.from(0) - let feeRate = BN.from(0) // If there is a fee expected, then deduct it from output if (expectFee) { - feeRate = await mAsset.redemptionFee() expect(feeRate, "fee rate > 0").gt(BN.from(0)) expect(feeRate, "fee rate < fullScale / 50").lt(fullScale.div(BN.from(50))) // fee = mAsset qty * fee rate @@ -461,7 +446,7 @@ describe("Masset - Redeem", () => { BN.from(bAssetsBefore[i].vaultBalance).sub(bAssetRedeemQuantitiesExact[i]), ) }) - const surplusAfter = await mAsset.surplus() + const { surplus: surplusAfter } = await mAsset.data() expect(surplusAfter, "surplusAfter").eq(surplusBefore.add(scaledFee)) // Complete basket should remain in healthy state @@ -478,7 +463,7 @@ describe("Masset - Redeem", () => { }) it("should redeem 1 bAsset[0] to a contract", async () => { const { bAssets } = details - const recipient = details.forgeValidator.address + const recipient = details.managerLib.address await assertBasicRedemption(details, bAssets[0], 1, 0.9, true, recipient) }) it("should redeem 1 bAsset[1]", async () => { @@ -519,7 +504,7 @@ describe("Masset - Redeem", () => { }) it("should redeem 1 bAsset[0] to a contract", async () => { const { bAssets } = details - const recipient = details.forgeValidator.address + const recipient = details.managerLib.address await assertBasicRedemption(details, bAssets[0], 1, 0.9, true, recipient) }) it("should send 1 bAsset[1] to EOA", async () => { @@ -545,44 +530,40 @@ describe("Masset - Redeem", () => { it("should deduct the suitable fee", async () => { const { bAssets, mAsset } = details const bAsset = bAssets[0] - const bAssetBefore = await mAsset.getBasset(bAsset.address) // Set a new fee recipient const newSwapFee = simpleToExactAmount("8.1", 15) const newRedemptionFee = simpleToExactAmount("5.234234", 15) await mAsset.connect(sa.governor.signer).setFees(newSwapFee, newRedemptionFee) // Calc mAsset burn amounts based on bAsset quantities - const bAssetQuantity = simpleToExactAmount(BN.from(1), await bAsset.decimals()) - const mAssetQuantity = applyRatio(bAssetQuantity, bAssetBefore.data.ratio) - const bAssetFee = bAssetQuantity.mul(newSwapFee).div(fullScale) + const mAssetQuantity = simpleToExactAmount(1) + const fee = mAssetQuantity.mul(newSwapFee).div(fullScale) const massetBalBefore = await mAsset.balanceOf(sa.default.address) - const bassetBalBefore = await bAsset.balanceOf(sa.default.address) + const { surplus: surplusBefore } = await mAsset.data() // Run the redemption await assertBasicRedemption(details, bAsset, BN.from(1), BN.from(0)) const massetBalAfter = await mAsset.balanceOf(sa.default.address) - const bassetBalAfter = await bAsset.balanceOf(sa.default.address) + const { surplus: surplusAfter } = await mAsset.data() // Assert balance increase expect(massetBalAfter).eq(massetBalBefore.sub(mAssetQuantity)) - expect(bassetBalAfter).eq(bassetBalBefore.add(bAssetQuantity).sub(bAssetFee)) + expect(surplusAfter).eq(surplusBefore.add(fee)) }) it("should deduct nothing if the fee is 0", async () => { const { bAssets, mAsset } = details const bAsset = bAssets[0] - const bAssetBefore = await mAsset.getBasset(bAsset.address) // Set a new fee recipient const newFee = BN.from(0) await mAsset.connect(sa.governor.signer).setFees(newFee, newFee) // Calc mAsset burn amounts based on bAsset quantities - const bAssetQuantity = simpleToExactAmount(BN.from(1), await bAsset.decimals()) - const mAssetQuantity = applyRatio(bAssetQuantity, bAssetBefore.data.ratio) + const mAssetQuantity = simpleToExactAmount(1) const massetBalBefore = await mAsset.balanceOf(sa.default.address) - const bassetBalBefore = await bAsset.balanceOf(sa.default.address) + const { surplus: surplusBefore } = await mAsset.data() // Run the redemption - await assertBasicRedemption(details, bAsset, BN.from(1), BN.from(0), false) + await assertBasicRedemption(details, bAsset, 1, 0, false) const massetBalAfter = await mAsset.balanceOf(sa.default.address) - const bassetBalAfter = await bAsset.balanceOf(sa.default.address) + const { surplus: surplusAfter } = await mAsset.data() // Assert balance increase expect(massetBalAfter).eq(massetBalBefore.sub(mAssetQuantity)) - expect(bassetBalAfter).eq(bassetBalBefore.add(bAssetQuantity)) + expect(surplusAfter).eq(surplusBefore) }) }) context("passing invalid arguments", async () => { @@ -614,9 +595,7 @@ describe("Masset - Redeem", () => { undefined, true, false, - // Assuming 0.06% swap fee = 6 bps - // 10 * (1 - 0.06 / 100) = 9.994 - "9994000000000000000", + "9973332263398093325", ) }) it("should fail if recipient is 0x0", async () => { @@ -631,9 +610,7 @@ describe("Masset - Redeem", () => { ZERO_ADDRESS, true, false, - // Assuming 0.06% swap fee = 6 bps - // 10 * (1 - 0.06 / 100) = 9.994 - "9994000000000000000", + "9973332263398093325", ) }) it("should fail if sender doesn't have mAsset balance", async () => { @@ -641,16 +618,16 @@ describe("Masset - Redeem", () => { const sender = sa.dummy1 expect(await mAsset.balanceOf(sender.address)).eq(0) await assertFailedBasicRedemption( - "ERC20: burn amount exceeds balance", + "VM Exception while processing transaction: revert", mAsset, bAssets[0], - "10000000000000000000", + simpleToExactAmount(1), "9900000000000000000", sender.signer, undefined, + true, false, - false, - "9994000000000000000", + simpleToExactAmount(999, 15), ) }) }) @@ -668,13 +645,13 @@ describe("Masset - Redeem", () => { "In recol", mAsset, bAsset, - 1, + "1000000000000000000", 0, sa.default.signer, sa.default.address, + true, false, - false, - 0.9994, + "999248095248405016", ) }) it("should fail if bAsset in basket is broken below peg", async () => { @@ -694,7 +671,7 @@ describe("Masset - Redeem", () => { sa.default.address, false, false, - 0.9994, + 0.999248, ) }) it("should fail if other bAssets in basket have broken peg", async () => { @@ -765,27 +742,21 @@ describe("Masset - Redeem", () => { expect(recipientBassetBalBefore).eq(0) // 3.0 Do the redemption + const expectedBassetQuantity = await mAsset.getRedeemOutput(bAsset.address, simpleToExactAmount(1)) await assertBasicRedemption(details, bAsset, 1, BN.from(0), true, recipient.address, sa.default, false, false, true) - // const tx = await mAsset.redeemTo(bAsset.address, oneBasset, recipient) - const expectedBassetQuantity = applyRatio(oneBasset, bAssetBefore.data.ratio) - // expect(actualBassetQuantity, "bAsset quantity").to.eq(expectedBassetQuantity) - const feeRate = await mAsset.swapFee() - const bAssetFee = oneBasset.mul(feeRate).div(fullScale) // 4.0 Total supply goes down, and recipient bAsset goes up slightly const recipientBassetBalAfter = await bAsset.balanceOf(recipient.address) // Assert that we redeemed gt 99% of the bAsset - assertBNSlightlyGTPercent(recipientBassetBalBefore.add(oneBasset.sub(bAssetFee)), recipientBassetBalAfter, "0.4", true) + assertBNSlightlyGTPercent(recipientBassetBalBefore.add(expectedBassetQuantity), recipientBassetBalAfter, "0.4", true) // Total supply goes down full amount const totalSupplyAfter = await mAsset.totalSupply() - expect(totalSupplyAfter, "after total supply").eq(totalSupplyBefore.sub(expectedBassetQuantity)) + expect(totalSupplyAfter, "after total supply").eq(totalSupplyBefore.sub(simpleToExactAmount(1))) // VaultBalance should update for this bAsset const bAssetAfter = await mAsset.getBasset(bAsset.address) - expect(BN.from(bAssetAfter.data.vaultBalance), "before != after + fee").eq( - BN.from(bAssetBefore.data.vaultBalance) - .sub(oneBasset) - .add(bAssetFee), + expect(BN.from(bAssetAfter.bData.vaultBalance), "before != after + fee").eq( + BN.from(bAssetBefore.bData.vaultBalance).sub(expectedBassetQuantity), ) }) it("should send less output to user if fee unexpected", async () => { @@ -798,8 +769,8 @@ describe("Masset - Redeem", () => { const basket = await mAssetMachine.getBasketComposition(details) const bAssetDecimals = await bAsset.decimals() const oneBasset = simpleToExactAmount(1, bAssetDecimals) - const feeRate = await mAsset.swapFee() - const bAssetFee = oneBasset.mul(feeRate).div(fullScale) + const { swapFee } = await mAsset.data() + const bAssetFee = oneBasset.mul(swapFee).div(fullScale) expect(basket.bAssets[3].isTransferFeeCharged).to.eq(true) await mAsset.connect(sa.governor.signer).setTransferFeesFlag(bAsset.address, false) const recipientBassetBalBefore = await bAsset.balanceOf(recipient.address) @@ -819,32 +790,14 @@ describe("Masset - Redeem", () => { }) it("should redeem with all different bAsset quantities", async () => { const { bAssets } = details - const recipient = details.forgeValidator.address + const recipient = details.managerLib.address await assertExactBassetsRedemption(details, bAssets, [1, 2, 3, 4], 11, true, recipient) }) it("should redeem with only one bAsset quantity", async () => { const { bAssets } = details - const recipient = details.forgeValidator.address + const recipient = details.managerLib.address await assertExactBassetsRedemption(details, bAssets, [0, 0, 0, 10], 11, true, recipient) }) - it("should redeem when max equals mAsset redeem quantity", async () => { - const { bAssets } = details - const recipient = details.forgeValidator.address - await assertExactBassetsRedemption( - details, - bAssets, - ["1000000000000000000", "2000000", "3000000000000", "4000000000000000000"], - // mAsset = 10 / (1 - 0.06 / 100) = 10.00600360216129677807 - // but solidity calculate its to be 10.006003602161296778 - // and then 1 is added to give 10.006003602161296779 - "10006003602161296779", - true, - recipient, - undefined, - undefined, - true, - ) - }) }) context("passing invalid arguments", async () => { before(async () => { @@ -897,7 +850,7 @@ describe("Masset - Redeem", () => { it("should fail when all quantities are 0", async () => { const { bAssets, mAsset } = details await assertFailedExactBassetsRedemption( - "Must redeem some mAssets", + "Must redeem > 1e6 units", mAsset, bAssets, [0, 0, 0, 0], @@ -905,7 +858,7 @@ describe("Masset - Redeem", () => { undefined, undefined, false, - false, + true, ) }) it("should fail when max quantity is 0", async () => { @@ -966,12 +919,12 @@ describe("Masset - Redeem", () => { bAssets, ["1000000000000000000", "2000000", "3000000000000", "7000000000000000000"], // 13 * (1 - 0.06 / 100) = 13.00780468280968581149 - "13007804682809685811", + simpleToExactAmount(13), undefined, undefined, true, false, - "13007804682809685812", + simpleToExactAmount(13), ) }) }) @@ -1015,11 +968,11 @@ describe("Masset - Redeem", () => { await runSetup() }) it("should redeem with all different bAsset quantities", async () => { - const recipient = details.forgeValidator.address + const recipient = details.managerLib.address await assertMassetRedemption(details, 10, [2, 2, 2, 2], true, recipient) }) it("should redeem with bAsset minimums exactly equal", async () => { - const recipient = details.forgeValidator.address + const recipient = details.managerLib.address await assertMassetRedemption( details, "10000000000000000000", @@ -1034,19 +987,19 @@ describe("Masset - Redeem", () => { }) context("uneven bAsset weights", () => { before(async () => { - await runSetup(true, false, false, true, [1, 4, 30, 15]) + await runSetup(true, false, false, [3, 4, 30, 15]) }) it("should redeem", async () => { - const recipient = details.forgeValidator.address + const recipient = details.managerLib.address await assertMassetRedemption(details, 10, [0, 0, 5, 2], true, recipient) }) }) context("when most of basket in second bAsset", () => { beforeEach(async () => { - await runSetup(true, false, false, true, [25, 125, 25, 25]) + await runSetup(true, false, false, [25, 125, 25, 25]) }) it("should redeem some of the bAssets", async () => { - const recipient = details.forgeValidator.address + const recipient = details.managerLib.address // 10 * (1 - 0.03 / 100) - 0.000001 = 9996999 await assertMassetRedemption( details, diff --git a/test/masset/swap.spec.ts b/test/masset/swap.spec.ts index c20651ff..baa918f1 100644 --- a/test/masset/swap.spec.ts +++ b/test/masset/swap.spec.ts @@ -27,10 +27,9 @@ describe("Masset - Swap", () => { seedBasket = true, useTransferFees = false, useLendingMarkets = false, - useMockValidator = true, weights: number[] = [25, 25, 25, 25], ): Promise => { - details = await mAssetMachine.deployMasset(useMockValidator, useLendingMarkets, useTransferFees) + details = await mAssetMachine.deployMasset(useLendingMarkets, useTransferFees) if (seedBasket) { await mAssetMachine.seedWithWeightings(details, weights) } @@ -121,7 +120,6 @@ describe("Masset - Swap", () => { inputBasset: MockERC20, outputAsset: MockERC20, inputQuantity: BN | number, - expectSwapFee = true, recipient: string = sa.default.address, sender: Account = sa.default, ignoreHealthAssertions = false, @@ -141,7 +139,7 @@ describe("Masset - Swap", () => { // Get basic before data on the swap assets const inputBassetBefore = await mAssetMachine.getBasset(details, inputBasset.address) const outputBassetBefore = await mAssetMachine.getBasset(details, outputAsset.address) - const surplusBefore = await mAsset.surplus() + const { surplus: surplusBefore } = await mAsset.data() // 2. Do the necessary approvals and make the calls const approval0: BN = await mAssetMachine.approveMasset( @@ -158,21 +156,6 @@ describe("Masset - Swap", () => { // 3. Calculate expected responses const inputQuantityExact = approval0 - let fee = BN.from(0) - let scaledFee = BN.from(0) - let feeRate = BN.from(0) - // If there is a fee expected, then deduct it from output - if (expectSwapFee) { - feeRate = await mAsset.swapFee() - expect(feeRate, "fee rate > 0").gt(BN.from(0)) - expect(feeRate, "fee rate < fullScale / 50").lt(fullScale.div(BN.from(50))) - fee = expectedOutputValue - .mul(fullScale) - .div(fullScale.sub(feeRate)) - .sub(expectedOutputValue) - expect(fee, "fee > 0").gt(BN.from(0)) - scaledFee = fee.mul(BN.from(outputBassetBefore.ratio)).div(ratioScale) - } // Expect to be used in cache const platformInteractionIn = await MassetMachine.getPlatformInteraction(mAsset, "deposit", approval0, inputBassetBefore) const platformInteractionOut = await MassetMachine.getPlatformInteraction( @@ -185,10 +168,20 @@ describe("Masset - Swap", () => { // FIXME can await when Waffle 3.2.2 is included in @nomiclabs/hardhat-waffle // https://github.com/EthWorks/Waffle/issues/119 const swapTx = mAsset.swap(inputBasset.address, outputAsset.address, approval0, minOutputQuantity, recipient) + // 4. Validate any basic events that should occur - await expect(swapTx) - .to.emit(mAsset, "Swapped") - .withArgs(sender.address, inputBasset.address, outputAsset.address, expectedOutputValue, scaledFee, recipient) + // Swapped event + await expect(swapTx).to.emit(mAsset, "Swapped") + // .withArgs(sender.address, inputBasset.address, outputAsset.address, expectedOutputValue, scaledFee, recipient) + const { events } = await (await swapTx).wait() + const swappedEvent = events.find((e) => e.event === "Swapped") + expect(swappedEvent.args[0]).to.eq(sender.address) + expect(swappedEvent.args[1]).to.eq(inputBasset.address) + expect(swappedEvent.args[2]).to.eq(outputAsset.address) + expect(swappedEvent.args[3]).to.eq(expectedOutputValue) + const scaledFee = swappedEvent.args[4] + expect(swappedEvent.args[5]).to.eq(recipient) + // Input Transfer event await expect(swapTx, "Transfer event for input bAsset from sender to platform integration or mAsset") .to.emit(inputBasset, "Transfer") @@ -220,7 +213,7 @@ describe("Masset - Swap", () => { expect(swapperBassetBalAfter, "swapperBassetBalAfter incorrect").eq(swapperInputBalBefore.sub(inputQuantityExact)) // VaultBalance should update for input bAsset const inputBassetAfter = await mAsset.getBasset(inputBasset.address) - expect(BN.from(inputBassetAfter.data.vaultBalance), "inputBassetAfter incorrect").eq( + expect(BN.from(inputBassetAfter.bData.vaultBalance), "inputBassetAfter incorrect").eq( BN.from(inputBassetBefore.vaultBalance).add(inputQuantityExact), ) @@ -242,13 +235,13 @@ describe("Masset - Swap", () => { expect(expectedOutputValue, "expectedOutputValue incorrect").eq(recipientBalAfter.sub(recipientOutputBalBefore)) // VaultBalance should update for output bAsset const outputBassetAfter = await mAsset.getBasset(outputAsset.address) - expect(BN.from(outputBassetAfter.data.vaultBalance), "outputBassetAfter incorrect").eq( + expect(BN.from(outputBassetAfter.bData.vaultBalance), "outputBassetAfter incorrect").eq( BN.from(outputBassetBefore.vaultBalance).sub(expectedOutputValue), ) // Global // Fees should accrue to surplus - const surplusAfter = await mAsset.surplus() + const { surplus: surplusAfter } = await mAsset.data() expect(BN.from(surplusAfter), "surplusAfter incorrect").eq(BN.from(surplusBefore).add(scaledFee)) if (!ignoreHealthAssertions) await assertBasketIsHealthy(mAssetMachine, md) @@ -262,7 +255,7 @@ describe("Masset - Swap", () => { before(async () => { await runSetup() }) - const testQuantities = [1, 10, 14] + const testQuantities = [1, 10, 4] testQuantities.forEach((qty) => { it(`should swap using ${qty} quantity`, async () => { const { bAssets } = details @@ -270,38 +263,29 @@ describe("Masset - Swap", () => { }) }) }) - it("should swap using a different recipient to the sender", async () => { - const { bAssets } = details - await assertSwap(details, bAssets[0], bAssets[1], 2, true, sa.dummy1.address) - }) - it("should swap out asset when recipient is a contract", async () => { - const { bAssets } = details - await assertSwap(details, bAssets[0], bAssets[1], 3, true, details.forgeValidator.address) - }) - context("when bAssets have different decimals", () => { - it("should swap 6 decimals bAsset for 12 decimal bAsset", async () => { - const { bAssets } = details - await assertSwap(details, bAssets[1], bAssets[2], 10, true, details.forgeValidator.address) - }) - it("should swap 12 decimals bAsset for 6 decimal bAsset", async () => { - const { bAssets } = details - await assertSwap(details, bAssets[2], bAssets[1], 10, true, details.forgeValidator.address) - }) - it("should swap 6 decimals bAsset for 18 decimal bAsset", async () => { - const { bAssets } = details - await assertSwap(details, bAssets[1], bAssets[3], 10, true, details.forgeValidator.address) - }) - it("should swap 18 decimals bAsset for 18 decimal bAsset", async () => { - const { bAssets } = details - await assertSwap(details, bAssets[0], bAssets[3], 10, true, details.forgeValidator.address) - }) + it("should fail if min qty < output qty", async () => { + const { bAssets, mAsset } = details + await assertFailedSwap( + mAsset, + bAssets[2], // wBTC 12 decimal places + bAssets[1], // sBTC 6 decimal places + simpleToExactAmount(5, 12), // sBTC input qty + simpleToExactAmount(4.986727, 6), // min output qty = 0.06% of input + a bit + "Output qty < minimum qty", + sa.default.signer, + sa.default.address, + false, + false, + undefined, + true, // exact units + ) }) it("should swap with min qty same as qty less swap fee", async () => { const { bAssets, mAsset } = details const inputBasset = bAssets[2] // wBTC 12 decimal places const outputBasset = bAssets[1] // sBTC 6 decimal places const inputQty = simpleToExactAmount(5, 12) // wBTC input qty - const expectedOutputQty = simpleToExactAmount(4.997, 6) // min output qty = 0.06% of input + const expectedOutputQty = simpleToExactAmount(4.986726, 6) // min output qty ~= 0.06% of input const outputQty = await mAsset.getSwapOutput(inputBasset.address, outputBasset.address, inputQty) expect(outputQty, "incorrect swap output quantity").to.eq(expectedOutputQty) await assertSwap( @@ -309,7 +293,6 @@ describe("Masset - Swap", () => { inputBasset, outputBasset, inputQty, - true, undefined, undefined, undefined, @@ -317,22 +300,31 @@ describe("Masset - Swap", () => { expectedOutputQty, // min output qty ) }) - it("should fail if min qty < output qty", async () => { - const { bAssets, mAsset } = details - await assertFailedSwap( - mAsset, - bAssets[2], // wBTC 12 decimal places - bAssets[1], // sBTC 6 decimal places - simpleToExactAmount(5, 12), // sBTC input qty - simpleToExactAmount(4.9971, 6), // min output qty = 0.06% of input + a bit - "Output qty < minimum qty", - sa.default.signer, - sa.default.address, - false, - false, - undefined, - true, // exact units - ) + it("should swap using a different recipient to the sender", async () => { + const { bAssets } = details + await assertSwap(details, bAssets[0], bAssets[1], 2, sa.dummy1.address) + }) + it("should swap out asset when recipient is a contract", async () => { + const { bAssets } = details + await assertSwap(details, bAssets[0], bAssets[1], 3, details.managerLib.address) + }) + context("when bAssets have different decimals", () => { + it("should swap 6 decimals bAsset for 12 decimal bAsset", async () => { + const { bAssets } = details + await assertSwap(details, bAssets[1], bAssets[2], 10, details.managerLib.address) + }) + it("should swap 12 decimals bAsset for 6 decimal bAsset", async () => { + const { bAssets } = details + await assertSwap(details, bAssets[2], bAssets[1], 10, details.managerLib.address) + }) + it("should swap 6 decimals bAsset for 18 decimal bAsset", async () => { + const { bAssets } = details + await assertSwap(details, bAssets[1], bAssets[3], 10, details.managerLib.address) + }) + it("should swap 18 decimals bAsset for 18 decimal bAsset", async () => { + const { bAssets } = details + await assertSwap(details, bAssets[0], bAssets[3], 10, details.managerLib.address) + }) }) context("and specifying one bAsset base unit", async () => { before(async () => { @@ -344,19 +336,17 @@ describe("Masset - Swap", () => { const output = bAssets[1] expect(await input.decimals()).eq(18) expect(await output.decimals()).eq(6) - const outputQuantity = await mAsset.getSwapOutput(input.address, output.address, 1) - expect(outputQuantity, "output quantity not zero").to.eq(0) await assertFailedSwap( mAsset, input, output, 1, 0, - "Zero output quantity", + "Zero swap output", sa.default.signer, sa.default.address, false, - false, + true, undefined, true, ) @@ -367,7 +357,7 @@ describe("Masset - Swap", () => { const output = bAssets[0] expect(await input.decimals()).eq(6) expect(await output.decimals()).eq(18) - await assertSwap(details, input, output, 1, true, undefined, undefined, false, true) + await assertSwap(details, input, output, 1, undefined, undefined, false, true) }) }) context("passing invalid arguments", async () => { @@ -408,7 +398,7 @@ describe("Masset - Swap", () => { ZERO_ADDRESS, true, false, - 0.9994, + 0.999003, ) }) it("should fail if sender doesn't have sufficient liquidity", async () => { @@ -424,7 +414,7 @@ describe("Masset - Swap", () => { sa.dummy1.address, true, false, - 0.9994, + 0.999003, ) }) it("should fail if sender doesn't give approval", async () => { @@ -500,9 +490,9 @@ describe("Masset - Swap", () => { // 3. Calculate expected responses const inputQuantityExact = simpleToExactAmount(swapQuantity, await inputBasset.decimals()) const scaledInputQuantity = simpleToExactAmount(swapQuantity, 18) - const expectedOutputValue = scaledInputQuantity.mul(ratioScale).div(outputBassetBefore.data.ratio) + const expectedOutputValue = scaledInputQuantity.mul(ratioScale).div(outputBassetBefore.bData.ratio) - const feeRate = await mAsset.swapFee() + const { swapFee: feeRate } = await mAsset.data() const fee = expectedOutputValue.mul(feeRate).div(fullScale) // Input @@ -514,7 +504,7 @@ describe("Masset - Swap", () => { // Assert that only >99.7 && <100% of the asset got added to the vault assertBNSlightlyGTPercent( inputQuantityExact, - BN.from(inputBassetAfter.data.vaultBalance).sub(inputBassetBefore.data.vaultBalance), + BN.from(inputBassetAfter.bData.vaultBalance).sub(inputBassetBefore.bData.vaultBalance), "0.3", true, ) @@ -565,9 +555,9 @@ describe("Masset - Swap", () => { // 3. Calculate expected responses const inputQuantityExact = simpleToExactAmount(swapQuantity, await inputBasset.decimals()) const scaledInputQuantity = simpleToExactAmount(swapQuantity, 18) - const expectedOutputValue = scaledInputQuantity.mul(ratioScale).div(outputBassetBefore.data.ratio) + const expectedOutputValue = scaledInputQuantity.mul(ratioScale).div(outputBassetBefore.bData.ratio) - const feeRate = await mAsset.swapFee() + const { swapFee: feeRate } = await mAsset.data() const fee = expectedOutputValue.mul(feeRate).div(fullScale) // Input @@ -579,7 +569,7 @@ describe("Masset - Swap", () => { // Assert that only >99.7 && <100% of the asset got added to the vault assertBNSlightlyGTPercent( inputQuantityExact, - BN.from(inputBassetAfter.data.vaultBalance).sub(inputBassetBefore.data.vaultBalance), + BN.from(inputBassetAfter.bData.vaultBalance).sub(inputBassetBefore.bData.vaultBalance), "0.3", true, ) @@ -644,9 +634,9 @@ describe("Masset - Swap", () => { // 3. Calculate expected responses const inputQuantityExact = simpleToExactAmount(swapQuantity, await inputBasset.decimals()) const scaledInputQuantity = simpleToExactAmount(swapQuantity, 18) - const expectedOutputValue = scaledInputQuantity.mul(ratioScale).div(outputBassetBefore.data.ratio) + const expectedOutputValue = scaledInputQuantity.mul(ratioScale).div(outputBassetBefore.bData.ratio) - const feeRate = await mAsset.swapFee() + const { swapFee: feeRate } = await mAsset.data() const fee = expectedOutputValue.mul(feeRate).div(fullScale) // Input @@ -655,8 +645,8 @@ describe("Masset - Swap", () => { expect(swapperBassetBalAfter).eq(swapperInputBalBefore.sub(inputQuantityExact)) // VaultBalance should update for input bAsset const inputBassetAfter = await mAsset.getBasset(inputBasset.address) - expect(BN.from(inputBassetAfter.data.vaultBalance)).eq( - BN.from(inputBassetBefore.data.vaultBalance).add(inputQuantityExact), + expect(BN.from(inputBassetAfter.bData.vaultBalance)).eq( + BN.from(inputBassetBefore.bData.vaultBalance).add(inputQuantityExact), ) // Output // Recipient should have output asset quantity after (minus fee) @@ -697,9 +687,9 @@ describe("Masset - Swap", () => { // 3. Calculate expected responses const inputQuantityExact = simpleToExactAmount(swapQuantity, await inputBasset.decimals()) const scaledInputQuantity = simpleToExactAmount(swapQuantity, 18) - const expectedOutputValue = scaledInputQuantity.mul(ratioScale).div(outputBassetBefore.data.ratio) + const expectedOutputValue = scaledInputQuantity.mul(ratioScale).div(outputBassetBefore.bData.ratio) - const feeRate = await mAsset.swapFee() + const { swapFee: feeRate } = await mAsset.data() const fee = expectedOutputValue.mul(feeRate).div(fullScale) // Input @@ -708,8 +698,8 @@ describe("Masset - Swap", () => { expect(swapperBassetBalAfter).eq(swapperInputBalBefore.sub(inputQuantityExact)) // VaultBalance should update for input bAsset const inputBassetAfter = await mAsset.getBasset(inputBasset.address) - expect(BN.from(inputBassetAfter.data.vaultBalance)).eq( - BN.from(inputBassetBefore.data.vaultBalance).add(inputQuantityExact), + expect(BN.from(inputBassetAfter.bData.vaultBalance)).eq( + BN.from(inputBassetBefore.bData.vaultBalance).add(inputQuantityExact), ) // Output // Recipient should have output asset quantity after (minus fee) @@ -740,7 +730,7 @@ describe("Masset - Swap", () => { expect(inputBasset.personal.status).to.eq(BassetStatus.BrokenBelowPeg) const outputBasset = await mAsset.getBasset(output.address) expect(outputBasset.personal.status).to.eq(BassetStatus.Normal) - await assertFailedSwap(mAsset, input, output, 1, 0, "Unhealthy", undefined, undefined, true, false, 0.9994) + await assertFailedSwap(mAsset, input, output, 1, 0, "Unhealthy", undefined, undefined, true, false, 0.999003) }) it("should fail if output basset has lost its peg", async () => { const { bAssets, mAsset } = details @@ -754,7 +744,7 @@ describe("Masset - Swap", () => { expect(inputBasset.personal.status).to.eq(BassetStatus.Normal) const outputBasset = await mAsset.getBasset(output.address) expect(outputBasset.personal.status).to.eq(BassetStatus.BrokenBelowPeg) - await assertFailedSwap(mAsset, input, output, 1, 0, "Unhealthy", undefined, undefined, true, false, 0.9994) + await assertFailedSwap(mAsset, input, output, 1, 0, "Unhealthy", undefined, undefined, true, false, 0.999003) }) }) }) diff --git a/test/masset/validator-etc.spec.ts b/test/masset/validator-etc.spec.ts index 7b259b1b..b4bfc738 100644 --- a/test/masset/validator-etc.spec.ts +++ b/test/masset/validator-etc.spec.ts @@ -5,21 +5,25 @@ import { simpleToExactAmount, BN } from "@utils/math" import { ONE_WEEK } from "@utils/constants" import { MassetMachine, StandardAccounts } from "@utils/machines" import { increaseTime } from "@utils/time" -import { InvariantValidator, InvariantValidator__factory } from "types/generated" +import { ExposedMassetLogic } from "types/generated" const config = { + supply: BN.from(0), a: BN.from(10000), limits: { min: simpleToExactAmount(5, 16), max: simpleToExactAmount(55, 16), }, + recolFee: simpleToExactAmount(5, 13), } const looseConfig = { + supply: BN.from(0), a: BN.from(10000), limits: { min: simpleToExactAmount(1, 16), max: simpleToExactAmount(99, 16), }, + recolFee: simpleToExactAmount(5, 13), } const fee = simpleToExactAmount(6, 15) @@ -30,24 +34,32 @@ const getReserves = (simpleUnits: number[], decimals: number[] = simpleUnits.map })) describe("Invariant Validator", () => { - let validator: InvariantValidator + let validator: ExposedMassetLogic let sa: StandardAccounts before(async () => { const accounts = await ethers.getSigners() const mAssetMachine = await new MassetMachine().initAccounts(accounts) sa = mAssetMachine.sa - validator = await new InvariantValidator__factory(sa.default.signer).deploy() + await redeployValidator() }) const redeployValidator = async () => { - validator = await new InvariantValidator__factory(sa.default.signer).deploy() + const LogicFactory = await ethers.getContractFactory("MassetLogic") + const logicLib = await LogicFactory.deploy() + const linkedAddress = { + libraries: { + MassetLogic: logicLib.address, + }, + } + const massetFactory = await ethers.getContractFactory("ExposedMassetLogic", linkedAddress) + validator = (await massetFactory.deploy()) as ExposedMassetLogic } describe("Validating bAssets with different ratios", () => { const x1 = getReserves([10, 10, 10, 10], [10, 18, 6, 18]) const x2 = getReserves([10, 10, 10, 10], [18, 18, 6, 18]) - + looseConfig.supply = x1.reduce((p, c) => p.add(c.vaultBalance.mul(simpleToExactAmount(1, 8).div(c.ratio))), BN.from(0)) before(async () => { await redeployValidator() }) @@ -71,14 +83,26 @@ describe("Invariant Validator", () => { expect(r1[1]).eq(r2[1]) }) it("should treat them equally in redeem", async () => { - const r1 = await validator.computeRedeem(x1, 0, simpleToExactAmount(1, 18), looseConfig) - const r2 = await validator.computeRedeem(x2, 0, simpleToExactAmount(1, 18), looseConfig) + const [r1] = await validator.computeRedeem(x1, 0, simpleToExactAmount(1, 18), looseConfig, fee) + const [r2] = await validator.computeRedeem(x2, 0, simpleToExactAmount(1, 18), looseConfig, fee) expect(r1).eq(r2.div(simpleToExactAmount(1, 8))) }) it("should treat them equally in redeem multi", async () => { - const r1 = await validator.computeRedeemExact(x1, [0, 1], [simpleToExactAmount(1, 10), simpleToExactAmount(1, 18)], looseConfig) - const r2 = await validator.computeRedeemExact(x2, [0, 1], [simpleToExactAmount(1, 18), simpleToExactAmount(1, 18)], looseConfig) + const [r1] = await validator.computeRedeemExact( + x1, + [0, 1], + [simpleToExactAmount(1, 10), simpleToExactAmount(1, 18)], + looseConfig, + fee, + ) + const [r2] = await validator.computeRedeemExact( + x2, + [0, 1], + [simpleToExactAmount(1, 18), simpleToExactAmount(1, 18)], + looseConfig, + fee, + ) expect(r1).eq(r2) }) @@ -86,6 +110,7 @@ describe("Invariant Validator", () => { describe("With params in different orders", () => { const x = getReserves([10, 10, 10, 10], [10, 18, 6, 18]) + looseConfig.supply = x.reduce((p, c) => p.add(c.vaultBalance.mul(simpleToExactAmount(1, 8).div(c.ratio))), BN.from(0)) before(async () => { await redeployValidator() }) @@ -96,8 +121,20 @@ describe("Invariant Validator", () => { expect(r1).eq(r2) }) it("should treat them equally in redeem multi", async () => { - const r1 = await validator.computeRedeemExact(x, [0, 1], [simpleToExactAmount(1, 10), simpleToExactAmount(1, 18)], looseConfig) - const r2 = await validator.computeRedeemExact(x, [1, 0], [simpleToExactAmount(1, 18), simpleToExactAmount(1, 10)], looseConfig) + const [r1] = await validator.computeRedeemExact( + x, + [0, 1], + [simpleToExactAmount(1, 10), simpleToExactAmount(1, 18)], + looseConfig, + fee, + ) + const [r2] = await validator.computeRedeemExact( + x, + [1, 0], + [simpleToExactAmount(1, 18), simpleToExactAmount(1, 10)], + looseConfig, + fee, + ) expect(r1).eq(r2) }) @@ -105,6 +142,7 @@ describe("Invariant Validator", () => { describe("Exceeding max weights", () => { const x = getReserves([30, 10, 10, 10]) + looseConfig.supply = x.reduce((p, c) => p.add(c.vaultBalance.mul(simpleToExactAmount(1, 8).div(c.ratio))), BN.from(0)) before(async () => { await redeployValidator() }) @@ -118,6 +156,7 @@ describe("Invariant Validator", () => { describe("Using invalid args", () => { const x = getReserves([10, 10, 10, 10], [10, 18, 6, 18]) + looseConfig.supply = x.reduce((p, c) => p.add(c.vaultBalance.mul(simpleToExactAmount(1, 8).div(c.ratio))), BN.from(0)) it("should throw in mint", async () => { await expect(validator.computeMint(x, 4, simpleToExactAmount(1, 18), config)).to.be.reverted }) @@ -129,11 +168,11 @@ describe("Invariant Validator", () => { await expect(validator.computeSwap(x, 4, 1, simpleToExactAmount(1, 18), fee, config)).to.be.reverted }) it("should throw in redeem", async () => { - await expect(validator.computeRedeem(x, 4, simpleToExactAmount(1, 18), config)).to.be.reverted + await expect(validator.computeRedeem(x, 4, simpleToExactAmount(1, 18), config, fee)).to.be.reverted }) it("should throw in redeem multi", async () => { - await expect(validator.computeRedeemExact(x, [1, 4], [simpleToExactAmount(1, 18), simpleToExactAmount(1, 18)], config)).to.be - .reverted + await expect(validator.computeRedeemExact(x, [1, 4], [simpleToExactAmount(1, 18), simpleToExactAmount(1, 18)], config, fee)).to + .be.reverted }) }) }) diff --git a/test/shared/ERC20.behaviour.ts b/test/shared/ERC20.behaviour.ts index eb303029..93886621 100644 --- a/test/shared/ERC20.behaviour.ts +++ b/test/shared/ERC20.behaviour.ts @@ -46,7 +46,9 @@ const shouldBehaveLikeERC20Transfer = ( it("emits a transfer event", async () => { const tx = transfer(ctx.token, ctx.initialHolder, ctx.recipient.address, amount) - await expect(tx).to.emit(ctx.token, "Transfer").withArgs(ctx.initialHolder.address, ctx.recipient.address, amount) + await expect(tx) + .to.emit(ctx.token, "Transfer") + .withArgs(ctx.initialHolder.address, ctx.recipient.address, amount) }) }) @@ -64,7 +66,9 @@ const shouldBehaveLikeERC20Transfer = ( it("emits a transfer event", async () => { const tx = transfer(ctx.token, ctx.initialHolder, ctx.recipient.address, amount) - await expect(tx).to.emit(ctx.token, "Transfer").withArgs(ctx.initialHolder.address, ctx.recipient.address, amount) + await expect(tx) + .to.emit(ctx.token, "Transfer") + .withArgs(ctx.initialHolder.address, ctx.recipient.address, amount) }) }) }) @@ -97,7 +101,9 @@ const shouldBehaveLikeERC20Approve = ( it("emits an approval event", async () => { const tx = approve(owner, spender.address, amount) - await expect(tx).to.emit(ctx.token, "Approval").withArgs(owner.address, spender.address, amount) + await expect(tx) + .to.emit(ctx.token, "Approval") + .withArgs(owner.address, spender.address, amount) }) describe("when there was no approved amount before", () => { @@ -127,7 +133,9 @@ const shouldBehaveLikeERC20Approve = ( it("emits an approval event", async () => { const tx = approve(owner, spender.address, amount) - await expect(tx).to.emit(ctx.token, "Approval").withArgs(owner.address, spender.address, amount) + await expect(tx) + .to.emit(ctx.token, "Approval") + .withArgs(owner.address, spender.address, amount) }) describe("when there was no approved amount before", () => { @@ -235,14 +243,17 @@ export function shouldBehaveLikeERC20(ctx: IERC20BehaviourContext, errorPrefix: it("emits a transfer event", async () => { const tx = ctx.token.connect(spender.signer).transferFrom(tokenOwner.address, to.address, amount) - await expect(tx).to.emit(ctx.token, "Transfer").withArgs(tokenOwner.address, to.address, amount) + await expect(tx) + .to.emit(ctx.token, "Transfer") + .withArgs(tokenOwner.address, to.address, amount) }) it("emits an approval event", async () => { + const beforeAllowance = await ctx.token.allowance(spender.address, to.address) const tx = ctx.token.connect(spender.signer).approve(to.address, amount) await expect(tx) .to.emit(ctx.token, "Approval") - .withArgs(spender.address, to.address, await ctx.token.allowance(spender.address, to.address)) + .withArgs(spender.address, to.address, beforeAllowance.add(amount)) }) })